commit 23ee6e74ef74268b4745d1ccd76b85569a52a391 Author: Emmy D'Anello Date: Sun Feb 12 15:09:17 2023 +0100 Elections 2022 Signed-off-by: Emmy D'Anello diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57282a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +__pycache__ + +*.sqlite3 + +migrations/versions/* diff --git a/app.py b/app.py new file mode 100755 index 0000000..6759102 --- /dev/null +++ b/app.py @@ -0,0 +1,1237 @@ +#!/usr/bin/env python3 + +from collections import OrderedDict +import csv +from datetime import datetime +from math import log, pi, tan +import enum +import json + +from flask import Flask, Response, abort, redirect +from flask_migrate import Migrate +from flask_sqlalchemy import SQLAlchemy +import requests +from sqlalchemy import Boolean, Column, Date, Enum, Float, ForeignKey, Integer, JSON, String, desc, func +from sqlalchemy.orm import relationship +from tqdm import tqdm + +app = Flask(__name__) +app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://nupes:nupes@psql.adm.ynerant.fr:5432/nupes' +app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True +app.config['SECRET_KEY'] = "random string" +# app.config['SQLALCHEMY_ECHO'] = True + +db = SQLAlchemy(app) +Migrate(app, db) + + +class Nuance(db.Model): + __tablename__ = 'nuance' + code = Column(String(3), primary_key=True, nullable=False) + name = Column(String(255), unique=True, nullable=False) + color = Column(String(6), nullable=False) + + +class CandidatPresidentielle(db.Model): + __tablename__ = 'candidat_presidentielle' + id = Column(Integer, primary_key=True) + last_name = Column(String(255)) + first_name = Column(String(255)) + slug = Column(String(255), unique=True) + nuance_id = Column(String(3), ForeignKey('nuance.code')) + nuance = relationship('Nuance') + + +class CandidatLegislatives(db.Model): + class Gender(enum.Enum): + MALE = 'M' + FEMALE = 'F' + + __tablename__ = 'candidat_legislatives' + id = Column(Integer, primary_key=True) + last_name = Column(String(255)) + first_name = Column(String(255)) + birth_date = Column(Date) + gender = Column(Enum(Gender)) + nuance_id = Column(String(3), ForeignKey('nuance.code')) + nuance = relationship('Nuance') + circonscription_id = Column(String(8), ForeignKey('circonscription.id')) + circonscription = relationship('Circonscription') + pane_number = Column(Integer) + job = Column(String(255)) + exitting = Column(Boolean) + last_name_suppl = Column(String(255)) + first_name_suppl = Column(String(255)) + birth_date_suppl = Column(Date) + gender_suppl = Column(Enum(Gender)) + exitting_suppl = Column(Boolean) + + +class Region(db.Model): + __tablename__ = 'region' + id = Column(Integer, primary_key=True) + name = Column(String(32), unique=True) + code = Column(Integer, unique=True) + + +class Departement(db.Model): + __tablename__ = 'departement' + id = Column(Integer, primary_key=True) + name = Column(String(32), unique=True) + region_id = Column(Integer, ForeignKey('region.id')) + region = relationship('Region') + + +class Circonscription(db.Model): + __tablename__ = 'circonscription' + id = Column(String(8), primary_key=True) + number = Column(Integer) + label = Column(String(255)) + departement_id = Column(Integer, ForeignKey("departement.id")) + departement = relationship('Departement') + geometry = Column(JSON) + + +class Commune(db.Model): + __tablename__ = 'commune' + id = Column(Integer, primary_key=True) + code = Column(Integer) + name = Column(String(255), index=True) + departement_id = Column(Integer, ForeignKey('departement.id')) + departement = relationship('Departement') + + +class BureauVote(db.Model): + __tablename__ = 'bureauvote' + id = Column(String(16), primary_key=True) + label = Column(String(255)) + code = Column(String(8)) + epci_code = Column(Integer) + epci_name = Column(String(255)) + address = Column(String(255)) + circonscription_id = Column(String(8), ForeignKey('circonscription.id')) + circonscription = relationship('Circonscription') + commune_id = Column(Integer, ForeignKey('commune.id')) + commune = relationship('Commune') + latitude = Column(Float, nullable=True) + longitude = Column(Float, nullable=True) + + +class VotePresidentielle(db.Model): + __tablename__ = 'vote_presidentielle' + id = Column(Integer, primary_key=True) + bv_id = Column(String(16), ForeignKey('bureauvote.id')) + bv = relationship('BureauVote') + inscrits = Column(Integer) + votants = Column(Integer) + abstentions = Column(Integer) + exprimes = Column(Integer) + blancs = Column(Integer) + nuls = Column(Integer) + + +class VoteCandidatPresidentielle(db.Model): + __tablename__ = 'vote_candidat_presidentielle' + id = Column(Integer, primary_key=True) + vote_id = Column(Integer, ForeignKey('vote_presidentielle.id')) + vote = relationship('VotePresidentielle') + candidat_id = Column(Integer, ForeignKey('candidat_presidentielle.id')) + candidat = relationship('CandidatPresidentielle') + voix = Column(Integer) + + +class VoteLegislatives(db.Model): + __tablename__ = 'vote_legislatives' + id = Column(Integer, primary_key=True) + circonscription_id = Column(String(8), ForeignKey('circonscription.id')) + circonscription = relationship('Circonscription') + round = Column(Integer, default=1) + inscrits = Column(Integer) + votants = Column(Integer) + abstentions = Column(Integer) + exprimes = Column(Integer) + blancs = Column(Integer) + nuls = Column(Integer) + + +class VoteCandidatLegislatives(db.Model): + __tablename__ = 'vote_candidat_legislatives' + id = Column(Integer, primary_key=True) + vote_id = Column(Integer, ForeignKey('vote_legislatives.id')) + vote = relationship('VoteLegislatives') + candidat_id = Column(Integer, ForeignKey('candidat_legislatives.id')) + candidat = relationship('CandidatLegislatives') + voix = Column(Integer) + + +@app.get('/upload') +def upload(): + content = "" + + with open('elections-france-presidentielles-2022-1er-tour-par-bureau-de-vote.json') as f: + data = json.load(f) + #data = [] + + candidats = {candidat.last_name: candidat for candidat in CandidatPresidentielle.query.all()} + regs = {reg.code: reg for reg in Region.query.all()} + dpts = {dpt.id: dpt for dpt in Departement.query.all()} + circos = {circo.id: circo for circo in Circonscription.query.all()} + comms = {(comm.code, comm.name): comm for comm in Commune.query.all()} + bvs = {bv.id: bv for bv in BureauVote.query.all()} + vps = {vp.bv_id: vp for vp in VotePresidentielle.query.all()} + vcps = {(vcp.vote_id, vcp.candidat_id): vcp for vcp in VoteCandidatPresidentielle.query.all()} + + for i, record in enumerate(tqdm(data)): + try: + fields = record['fields'] + + dpt_id = fields['dep_code'] + dpt_name = fields['dep_name'] + if dpt_name == "Corse-du-Sud": + dpt_id = 201 + elif dpt_name == "Haute-Corse": + dpt_id = 202 + elif dpt_name == "Guadeloupe": + dpt_id = 971 + elif dpt_name == "Martinique": + dpt_id = 972 + elif dpt_name == "Guyane": + dpt_id = 973 + elif dpt_name == "La Réunion": + dpt_id = 974 + elif dpt_name == "Saint-Pierre-et-Miquelon": + dpt_id = 975 + elif dpt_name == "Mayotte": + dpt_id = 976 + elif dpt_name == "Saint-Martin/Saint-Barthélemy": + dpt_id = 977 + elif dpt_name == "Wallis et Futuna": + dpt_id = 986 + elif dpt_name == "Polynésie française": + dpt_id = 987 + elif dpt_name == "Nouvelle-Calédonie": + dpt_id = 988 + else: + dpt_id = int(dpt_id) + + reg_name = fields.get('reg_name', dpt_name) + reg_code = int(fields.get('reg_code', dpt_id)) + if reg_code in regs: + reg = regs[reg_code] + else: + q = Region.query.filter(Region.code == reg_code) + if True or not q.count(): + reg = Region(code=reg_code, name=reg_name) + db.session.add(reg) + else: + reg = q.one() + regs[reg_code] = reg + + if dpt_id in dpts: + dpt = dpts[dpt_id] + else: + q = Departement.query.filter(Departement.id == dpt_id) + if True or not q.count(): + dpt = Departement(id=dpt_id, name=dpt_name, region_id=reg.id) + db.session.add(dpt) + else: + dpt = q.one() + dpts[dpt_id] = dpt + + circo_label = fields['libelle_de_la_circonscription'] + circo_nb = int(fields['code_de_la_circonscription']) + circo_id = f"{dpt_id:003d}-{circo_nb:02d}" + if circo_id in circos: + circo = circos[circo_id] + else: + q = Circonscription.query.filter(Circonscription.id == circo_id) + if True or not q.count(): + circo = Circonscription(id=circo_id, number=circo_nb, + label=circo_label, departement_id=dpt.id) + db.session.add(circo) + else: + circo = q.one() + circos[circo_id] = circo + + com_code = int(fields['com_code'].replace('2A', '201').replace('2B', '202')) + com_name = fields['com_name'] + if (com_code, com_name) in comms: + com = comms[(com_code, com_name)] + else: + q = Commune.query.filter(Commune.code == com_code, Commune.name == com_name) + if True or not q.count(): + com = Commune(code=com_code, name=com_name, departement_id=dpt_id) + db.session.add(com) + else: + com = q.one() + comms[(com_code, com_name)] = com + + bv_code = fields['code_du_b_vote'] + if bv_code.endswith('.0'): + bv_code = bv_code[:-2] + bv_id = f"{com_code}-{bv_code}" + if bv_id in bvs: + bv = bvs[bv_id] + else: + q = BureauVote.query.filter(BureauVote.id == bv_id) + if True or not q.count(): + bv_label = fields.get('lib_du_b_vote', "") + bv_location = fields.get('location', None) + bv_address = fields.get('address', "") + bv_epci_name = fields.get('epci_name', "") + bv_epci_code = int(fields.get('epci_code', "0")) + bv = BureauVote(id=bv_id, code=bv_code, label=bv_label, address=bv_address, + epci_name=bv_epci_name, epci_code=bv_epci_code, + circonscription_id=circo.id, commune_id=com.id) + if bv_location: + bv.latitude, bv.longitude = bv_location + db.session.add(bv) + else: + bv = q.one() + bvs[bv_id] = bv + + # q = VotePresidentielle.query.filter(VotePresidentielle.bv_id == bv_id) + # if not q.count(): + if bv_id not in vps: + vp = VotePresidentielle(bv_id=bv_id, + inscrits=fields['inscrits'], + abstentions=fields['abstentions'], + votants=fields['votants'], + exprimes=fields['exprimes'], + nuls=fields['nuls'], + blancs=fields['blancs']) + vps[bv_id] = vp + db.session.add(vp) + else: + vp = vps[bv_id] + # vp = q.one() + + candidat = candidats[fields['nom']] + # candidat = CandidatPresidentielle.query.filter( + # CandidatPresidentielle.last_name == fields['nom']).one() + + if (vp.id, candidat.id) not in vcps: + # q = VoteCandidatPresidentielle.query.filter( + # VoteCandidatPresidentielle.vote_id == vp.id, + # VoteCandidatPresidentielle.candidat_id == candidat.id, + # ) + # if not q.count(): + vcp = VoteCandidatPresidentielle( + vote_id=vp.id, + candidat_id=candidat.id, + voix=fields['voix'], + ) + vcps[(vp.id, candidat.id)] = vcp + db.session.add(vcp) + except Exception: + print(record['fields']) + raise + + if i % 50000 == 0: + db.session.commit() + db.session.commit() + + return "done" + + +@app.get('/upload-circos') +def upload_circos(): + with open('france-circonscriptions-legislatives-2012.json') as f: + data = json.load(f) + + for feature in tqdm(data['features']): + prop = feature['properties'] + dpt_id = prop['code_dpt'] + num_circ = int(prop['num_circ']) + if dpt_id == '2A': + # Corse du Sud + dpt_id = 201 + elif dpt_id == '2B': + # Haute-Corse + dpt_id = 202 + elif dpt_id == 'ZA': + # Guadeloupe + dpt_id = 971 + elif dpt_id == 'ZB': + # Martinique + dpt_id = 972 + elif dpt_id == 'ZC': + # Guyane + dpt_id = 973 + elif dpt_id == 'ZD': + # La Réunion + dpt_id = 974 + elif dpt_id == 'ZS': + # Saint-Pierre-et-Miquelon + dpt_id = 975 + elif dpt_id == 'ZM': + # Mayotte + dpt_id = 976 + elif dpt_id == 'ZX': + # Saint-Martin / Saint-Barthélémy + dpt_id = 977 + elif dpt_id == 'ZW': + # Wallis-et-Futuna + dpt_id = 986 + elif dpt_id == 'ZP': + # Polynésie française + dpt_id = 987 + elif dpt_id == 'ZN': + # Nouvelle-Calédonie + dpt_id = 988 + else: + dpt_id = int(dpt_id) + circ = Circonscription.query.filter(Circonscription.departement_id == dpt_id, + Circonscription.number == num_circ).one() + circ.geometry = feature['geometry']['coordinates'] + db.session.add(circ) + db.session.commit() + + return "done" + + +@app.get('/upload-legislatives') +def upload_legislatives(): + with open('candidats-legislatives-2022.csv') as f: + csvfile = csv.DictReader(f) + + for row in tqdm(csvfile): + dpt_id = row['Code du département'] + if dpt_id == '2A': + # Corse du Sud + dpt_id = 201 + elif dpt_id == '2B': + # Haute-Corse + dpt_id = 202 + elif dpt_id == 'ZA': + # Guadeloupe + dpt_id = 971 + elif dpt_id == 'ZB': + # Martinique + dpt_id = 972 + elif dpt_id == 'ZC': + # Guyane + dpt_id = 973 + elif dpt_id == 'ZD': + # La Réunion + dpt_id = 974 + elif dpt_id == 'ZS': + # Saint-Pierre-et-Miquelon + dpt_id = 975 + elif dpt_id == 'ZM': + # Mayotte + dpt_id = 976 + elif dpt_id == 'ZX': + # Saint-Martin / Saint-Barthélémy + dpt_id = 977 + elif dpt_id == 'ZW': + # Wallis-et-Futuna + dpt_id = 986 + elif dpt_id == 'ZP': + # Polynésie française + dpt_id = 987 + elif dpt_id == 'ZN': + # Nouvelle-Calédonie + dpt_id = 988 + elif dpt_id == 'ZZ': + # Français⋅es établi⋅es à l'étranger + dpt_id = 97 + else: + dpt_id = int(dpt_id) + + circo_nb = int(row['Code circonscription']) + circo_id = f'{dpt_id:03d}-{circo_nb:02d}' + pane_id = row['N° panneau'] + last_name = row['Nom candidat'] + first_name = row['Prénom candidat'] + gender = CandidatLegislatives.Gender(row['Sexe candidat']) + birth_date = datetime.strptime(row['Date naissance candidat'], '%d/%m/%Y').date() + nuance_id = row['Nuance candidat'] + pane_number = row['N° panneau'] + job = row['Profession candidat'] + exitting = row['Le candidat est sortant'] == 'oui' + last_name_suppl = row['Nom remplaçant'] + first_name_suppl = row['Prénom remplaçant'] + birth_date_suppl = datetime.strptime(row['Date naiss. remplaçant'], '%d/%m/%Y').date() + gender_suppl = CandidatLegislatives.Gender(row['Sexe remplaçant']) + exitting_suppl = row['Le remplaçant est sortant'] == 'oui' + + q = CandidatLegislatives.query.filter( + CandidatLegislatives.last_name == last_name, + CandidatLegislatives.first_name == first_name, + CandidatLegislatives.circonscription_id == circo_id, + CandidatLegislatives.nuance_id == nuance_id, + ) + + if not q.count(): + candidat = CandidatLegislatives( + last_name=last_name, + first_name=first_name, + birth_date=birth_date, + gender=gender, + nuance_id=nuance_id, + circonscription_id=circo_id, + pane_number=pane_number, + job=job, + exitting=exitting, + last_name_suppl=last_name_suppl, + first_name_suppl=first_name_suppl, + gender_suppl=gender_suppl, + exitting_suppl=exitting_suppl, + ) + db.session.add(candidat) + + db.session.commit() + + return "" + + +@app.get('/draw/') +def draw(map_type: str): + groups = [ + (Circonscription.query.filter((Circonscription.departement_id <= 95) | (Circonscription.departement_id == 201) | (Circonscription.departement_id == 202)), 30000), + (Circonscription.query.filter(Circonscription.departement_id.in_([77, 78, 91, 95])), 60000), + (Circonscription.query.filter(Circonscription.departement_id.in_([75, 92, 93, 94])), 200000), + (Circonscription.query.filter(Circonscription.departement_id == 69), 60000), + (Circonscription.query.filter(Circonscription.departement_id == 13), 60000), + (Circonscription.query.filter(Circonscription.departement_id == 971), 40000), + (Circonscription.query.filter(Circonscription.departement_id == 972), 40000), + (Circonscription.query.filter(Circonscription.departement_id == 973), 10000), + (Circonscription.query.filter(Circonscription.departement_id == 974), 40000), + (Circonscription.query.filter(Circonscription.departement_id == 975), 40000), + (Circonscription.query.filter(Circonscription.departement_id == 976), 40000), + (Circonscription.query.filter(Circonscription.departement_id == 977), 60000), + (Circonscription.query.filter(Circonscription.departement_id == 986), 60000), + (Circonscription.query.filter(Circonscription.departement_id == 987), 5000), + (Circonscription.query.filter(Circonscription.departement_id == 988), 20000), + (Circonscription.query.filter(Circonscription.id == '097-01'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-02'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-03'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-04'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-05'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-06'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-07'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-08'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-09'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-10'), 30000), + (Circonscription.query.filter(Circonscription.id == '097-11'), 30000), + ] + + nuances = {n.code: n for n in Nuance.query.all()} + + content = "\n\n" + content += "\n\nÉlections législatives - 2ème tour\n\n\n\n" + + w, h = 20000, 20000 + + voix_pres = VoteCandidatPresidentielle.query\ + .filter(VoteCandidatPresidentielle.vote_id == VotePresidentielle.id)\ + .filter(VoteCandidatPresidentielle.candidat_id == CandidatPresidentielle.id)\ + .filter(BureauVote.id == VotePresidentielle.bv_id)\ + .group_by(CandidatPresidentielle.nuance_id, BureauVote.circonscription_id)\ + .with_entities(CandidatPresidentielle.nuance_id, BureauVote.circonscription_id, + func.sum(VoteCandidatPresidentielle.voix).label('tot_voix'))\ + .order_by(BureauVote.circonscription_id, desc('tot_voix')).all() + per_circo_pres = {} + for row in voix_pres: + per_circo_pres.setdefault(row[1], OrderedDict()) + per_circo_pres[row[1]][row[0]] = row[2] + + voix_leg_1 = VoteCandidatLegislatives.query\ + .filter(VoteCandidatLegislatives.vote_id == VoteLegislatives.id)\ + .filter(VoteLegislatives.round == 1)\ + .filter(VoteCandidatLegislatives.candidat_id == CandidatLegislatives.id)\ + .with_entities(CandidatLegislatives.circonscription_id, CandidatLegislatives.last_name, + CandidatLegislatives.first_name, CandidatLegislatives.nuance_id, + VoteCandidatLegislatives.voix)\ + .order_by(CandidatLegislatives.circonscription_id, VoteCandidatLegislatives.voix.desc(), + CandidatLegislatives.pane_number).all() + + voix_leg_2 = VoteCandidatLegislatives.query\ + .filter(VoteCandidatLegislatives.vote_id == VoteLegislatives.id)\ + .filter(VoteLegislatives.round == 2)\ + .filter(VoteCandidatLegislatives.candidat_id == CandidatLegislatives.id)\ + .with_entities(CandidatLegislatives.circonscription_id, CandidatLegislatives.last_name, + CandidatLegislatives.first_name, CandidatLegislatives.nuance_id, + VoteCandidatLegislatives.voix)\ + .order_by(CandidatLegislatives.circonscription_id, VoteCandidatLegislatives.voix.desc(), + CandidatLegislatives.pane_number).all() + + votes_leg_1 = {vl.circonscription_id: vl for vl in VoteLegislatives.query\ + .filter(VoteLegislatives.round == 1).all()} + votes_leg_2 = {vl.circonscription_id: vl for vl in VoteLegislatives.query\ + .filter(VoteLegislatives.round == 2).all()} + + scores_1_n = {n: 0 for n in nuances} + scores_2_n = {n: 0 for n in nuances} + stats_1 = { + 'inscrits': sum(vote.inscrits for vote in votes_leg_1.values() if vote.inscrits), + 'abstentions': sum(vote.abstentions for vote in votes_leg_1.values() if vote.abstentions), + 'votants': sum(vote.votants for vote in votes_leg_1.values() if vote.votants), + 'exprimes': sum(vote.exprimes for vote in votes_leg_1.values() if vote.exprimes), + 'blancs': sum(vote.blancs for vote in votes_leg_1.values() if vote.blancs), + 'nuls': sum(vote.nuls for vote in votes_leg_1.values() if vote.nuls), + } + stats_2 = { + 'inscrits': sum(vote.inscrits for vote in votes_leg_2.values() if vote.inscrits), + 'abstentions': sum(vote.abstentions for vote in votes_leg_2.values() if vote.abstentions), + 'votants': sum(vote.votants for vote in votes_leg_2.values() if vote.votants), + 'exprimes': sum(vote.exprimes for vote in votes_leg_2.values() if vote.exprimes), + 'blancs': sum(vote.blancs for vote in votes_leg_2.values() if vote.blancs), + 'nuls': sum(vote.nuls for vote in votes_leg_2.values() if vote.nuls), + } + + premier_tour, premier_tour_n = set(), {n: 0 for n in nuances} + second_tour_1, second_tour_1_n = set(), {n: 0 for n in nuances} + second_tour_2, second_tour_2_n = set(), {n: 0 for n in nuances} + configurations = {} + + winners = {n: 0 for n in nuances} + + per_circo_leg_1, per_circo_leg_2 = {}, {} + for row in voix_leg_1: + per_circo_leg_1.setdefault(row[0], []) + per_circo_leg_1[row[0]].append(row[1:]) + for row in voix_leg_2: + per_circo_leg_2.setdefault(row[0], []) + per_circo_leg_2[row[0]].append(row[1:]) + + for circo_id, rows in per_circo_leg_1.items(): + vote = votes_leg_1[circo_id] + if vote.exprimes: + winner_r = rows[0] + if winner_r[3] / vote.exprimes >= 0.5 and winner_r[3] / vote.inscrits >= 0.25: + premier_tour.add(f"{winner_r[1]} {winner_r[0]} ({winner_r[2]}) - {circo_id}") + premier_tour_n[winner_r[2]] += 1 + winners[winner_r[2]] += 1 + else: + second_tour_1.add(f"{winner_r[1]} {winner_r[0]} ({winner_r[2]}) - {circo_id}") + second_tour_1_n[winner_r[2]] += 1 + sec = rows[1] + second_tour_2.add(f"{sec[1]} {sec[0]} ({sec[2]}) - {circo_id}") + second_tour_2_n[sec[2]] += 1 + tr = rows[2] + config = [winner_r[2], sec[2]] + if tr[3] / vote.inscrits >= 0.125: + print("3ème position :", tr) + second_tour_2.add(f"{tr[1]} {tr[0]} ({tr[2]}) - {circo_id}") + second_tour_2_n[tr[2]] += 1 + config.append(tr[2]) + + config = tuple(sorted(config)) + configurations.setdefault(config, 0) + configurations[config] += 1 + + for r in rows: + scores_1_n[r[2]] += r[3] + + for circo_id, rows in per_circo_leg_2.items(): + vote = votes_leg_2[circo_id] + if vote.exprimes: + winners[rows[0][2]] += 1 + for r in rows: + scores_2_n[r[2]] += r[3] + + for group, ratio in groups: + minx, miny, maxx, maxy = w, h, 0, 0 + svg = "" + for circo in group: + if circo.departement_id != 97: + polygons = circo.geometry + if isinstance(polygons[0][0][0], float): + polygons = [polygons] + else: + polygons = [[[[0, 0], [0, 1], [1, 1], [1, 0]]]] + + color = 0xffffff + + scores = {} + if map_type.startswith('p'): + if circo.id in per_circo_pres: + scores = per_circo_pres[circo.id] + winner_id = next(iter(scores)) + winner = nuances[winner_id] + color = int(winner.color, 16) + elif map_type.startswith('l'): + if circo.id in per_circo_leg_2: + if '1' in map_type: + winner_r = per_circo_leg_1[circo.id][0] + winner = nuances[winner_r[2]] + if per_circo_leg_1[circo.id][0][3]: + color = int(winner.color, 16) + else: + winner_r = per_circo_leg_2[circo.id][0] + winner = nuances[winner_r[2]] + if per_circo_leg_2[circo.id][0][3] or len(per_circo_leg_2[circo.id]) == 1: + color = int(winner.color, 16) + scores_1 = {f"{s[1]} {s[0]} ({s[2]})": s[3] for s in per_circo_leg_1[circo.id]} + scores_2 = {f"{s[1]} {s[0]} ({s[2]})": s[3] for s in per_circo_leg_2[circo.id]} + + for polygon in polygons: + if len(polygon) > 1: + print(circo) + polygon = polygon[0] + cartesian = [(w * (p[0] + 180) / 360, h / 2 - w / (2 * pi) * log(tan(pi / 4 + p[1] * pi / 360))) for p in polygon] + points = cartesian + + minx = min(minx, min(p[0] for p in points)) + miny = min(miny, min(p[1] for p in points)) + maxx = max(maxx, max(p[0] for p in points)) + maxy = max(maxy, max(p[1] for p in points)) + + svg += f'\n' + svg += f'\n' + svg += "" + svg += f"{circo.label} de {circo.departement.name}\n" + tot_voix_1 = sum(scores_1.values()) + tot_voix_2 = sum(scores_2.values()) + svg += "\n2<sup>ème tour</sup>\n" + for name, voix in scores_2.items(): + if tot_voix_2: + svg += f"{name} : {100 * voix / tot_voix_2:.02f} % ({voix})\n" + else: + svg += f"{name}\n" + svg += "\n1<sup>er</sup> tour\n" + for name, voix in scores_1.items(): + if tot_voix_1: + svg += f"{name} : {100 * voix / tot_voix_1:.02f} % ({voix})\n" + else: + svg += f"{name}\n" + svg += "\n" + svg += "\n\n" + + svg += "\n" + svg = f'\n' + svg + content += svg + + if not map_type.startswith('l'): + content += "\n\n" + return content + + content += "
\n" + + content += "

Second tour

\n" + + content += "

Nombre de sièges

\n" + + content += f"Sièges attribués : {sum(winners.values())}/577\n" + + content += "
    \n" + for i, (n, seats) in enumerate(sorted(winners.items(), key=lambda x: -x[1])): + if seats: + content += f"
  • " + if i == 0: + content += "" + content += f"{nuances[n].name} : {seats} sièges" + if i == 0 and seats >= 289: + content += " MAJORITÉ ABSOLUE" + elif i == 0: + content += " MAJORITÉ RELATIVE" + content += "
  • \n" + content += "
\n" + + content += "

Statistiques nationales

\n" + + if not stats_2['inscrits']: + # Résultats pas encore arrivés + # On truque pour éviter les divisions par 0 en attendant + stats_2['inscrits'] = 1 + stats_2['votants'] = 1 + stats_2['exprimes'] = 1 + + content += "

Résultats nationaux

\n" + content += "
    \n" + for n, voix in sorted(scores_2_n.items(), key=lambda x: -x[1]): + content += f"
  • {nuances[n].name} : {100 * voix / stats_2['exprimes']:.02f} % ({voix:,d})
  • \n" + content += "
\n" + + content += "
    \n" + content += f"
  • Inscrits : {stats_2['inscrits']:,d}
  • \n" + content += f"
  • Votant⋅es : {stats_2['votants']:,d} ({100 * stats_2['votants'] / stats_2['inscrits']:.02f} %)
  • \n" + content += f"
  • Abstentions : {stats_2['abstentions']:,d} ({100 * stats_2['abstentions'] / stats_2['inscrits']:.02f} %)
  • \n" + content += f"
  • Exprimés : {stats_2['exprimes']:,d} ({100 * stats_2['exprimes'] / stats_2['votants']:.02f} %)
  • \n" + content += f"
  • Blancs : {stats_2['blancs']:,d} ({100 * stats_2['blancs'] / stats_2['exprimes']:.02f} %)
  • \n" + content += f"
  • Nuls : {stats_2['nuls']:,d} ({100 * stats_2['nuls'] / stats_2['exprimes']:.02f} %)
  • \n" + content += "
\n" + + content += "
\n" + + content += "

Premier tour

\n" + + content += "

Statistiques nationales

\n" + + content += "

Résultats nationaux

\n" + content += "
    \n" + for n, voix in sorted(scores_1_n.items(), key=lambda x: -x[1]): + content += f"
  • {nuances[n].name} : {100 * voix / stats_1['exprimes']:.02f} % ({voix:,d})
  • \n" + content += "
\n" + + content += "
    \n" + content += f"
  • Inscrits : {stats_1['inscrits']:,d}
  • \n" + content += f"
  • Votant⋅es : {stats_1['votants']:,d} ({100 * stats_1['votants'] / stats_1['inscrits']:.02f} %)
  • \n" + content += f"
  • Abstentions : {stats_1['abstentions']:,d} ({100 * stats_1['abstentions'] / stats_1['inscrits']:.02f} %)
  • \n" + content += f"
  • Exprimés : {stats_1['exprimes']:,d} ({100 * stats_1['exprimes'] / stats_1['votants']:.02f} %)
  • \n" + content += f"
  • Blancs : {stats_1['blancs']:,d} ({100 * stats_1['blancs'] / stats_1['exprimes']:.02f} %)
  • \n" + content += f"
  • Nuls : {stats_1['nuls']:,d} ({100 * stats_1['nuls'] / stats_1['exprimes']:.02f} %)
  • \n" + content += "
\n" + + content += "

Victoires au premier tour

\n" + content += "
    \n" + for c in premier_tour: + nuance_id = c[-13:-10] + circo_id = c[-6:] + content += f"
  • {c}
  • \n" + content += "
\n" + + content += "

Seconds tours

\n" + + second_tour_tot_n = {n: second_tour_1_n[n] + second_tour_2_n[n] for n in nuances} + second_tour_tot_n = {k: v for k, v in second_tour_tot_n.items() if v} + + content += "
    \n" + for n, tot in sorted(second_tour_tot_n.items(), key=lambda x: -x[1]): + content += f"
  • {nuances[n].name} : {tot} ({second_tour_1_n[n]} + {second_tour_2_n[n]})
  • \n" + content += "
\n" + + content += "

Configurations

\n" + content += "
    \n" + for config, tot in sorted(configurations.items(), key=lambda x: -x[1]): + content += f"
  • {' - '.join(config)} : {tot}
  • \n" + content += "
\n" + + content += "\n\n" + + return content + + +@app.get('/circo/') +def info_circo(circo_id: str): + circo = Circonscription.query.filter(Circonscription.id == circo_id) + if not circo.count(): + abort(404) + + circo = circo.one() + + nuances = {n.code: n for n in Nuance.query.all()} + voix_pres = VoteCandidatPresidentielle.query\ + .filter(VoteCandidatPresidentielle.vote_id == VotePresidentielle.id)\ + .filter(VoteCandidatPresidentielle.candidat_id == CandidatPresidentielle.id)\ + .filter(BureauVote.id == VotePresidentielle.bv_id)\ + .filter(BureauVote.circonscription_id == circo_id)\ + .group_by(CandidatPresidentielle.last_name, CandidatPresidentielle.first_name, + CandidatPresidentielle.nuance_id)\ + .with_entities(CandidatPresidentielle.last_name, CandidatPresidentielle.first_name, + CandidatPresidentielle.nuance_id, + func.sum(VoteCandidatPresidentielle.voix).label('tot_voix'), + func.sum(VotePresidentielle.inscrits), + func.sum(VotePresidentielle.votants), + func.sum(VotePresidentielle.abstentions), + func.sum(VotePresidentielle.exprimes), + func.sum(VotePresidentielle.blancs), + func.sum(VotePresidentielle.nuls))\ + .order_by(desc('tot_voix')).all() + voix_pres_nuance = VoteCandidatPresidentielle.query\ + .filter(VoteCandidatPresidentielle.vote_id == VotePresidentielle.id)\ + .filter(VoteCandidatPresidentielle.candidat_id == CandidatPresidentielle.id)\ + .filter(BureauVote.id == VotePresidentielle.bv_id)\ + .filter(BureauVote.circonscription_id == circo_id)\ + .group_by(CandidatPresidentielle.nuance_id)\ + .with_entities(CandidatPresidentielle.nuance_id, + func.sum(VoteCandidatPresidentielle.voix).label('tot_voix'))\ + .order_by(desc('tot_voix')).all() + + + + vote_leg_1 = VoteLegislatives.query.filter(VoteLegislatives.round == 1, + VoteLegislatives.circonscription_id == circo_id).one() + vote_leg_2 = VoteLegislatives.query.filter(VoteLegislatives.round == 2, + VoteLegislatives.circonscription_id == circo_id).one() + + voix_leg_1 = VoteCandidatLegislatives.query\ + .filter(VoteCandidatLegislatives.vote_id == VoteLegislatives.id)\ + .filter(VoteLegislatives.round == 1)\ + .filter(VoteCandidatLegislatives.candidat_id == CandidatLegislatives.id)\ + .filter(CandidatLegislatives.circonscription_id == circo_id)\ + .with_entities(CandidatLegislatives.last_name, CandidatLegislatives.first_name, + CandidatLegislatives.nuance_id, VoteCandidatLegislatives.voix)\ + .order_by(VoteCandidatLegislatives.voix.desc(), CandidatLegislatives.pane_number).all() + + voix_leg_2 = VoteCandidatLegislatives.query\ + .filter(VoteCandidatLegislatives.vote_id == VoteLegislatives.id)\ + .filter(VoteLegislatives.round == 2)\ + .filter(VoteCandidatLegislatives.candidat_id == CandidatLegislatives.id)\ + .filter(CandidatLegislatives.circonscription_id == circo_id)\ + .with_entities(CandidatLegislatives.last_name, CandidatLegislatives.first_name, + CandidatLegislatives.nuance_id, VoteCandidatLegislatives.voix)\ + .order_by(VoteCandidatLegislatives.voix.desc(), CandidatLegislatives.pane_number).all() + + has_results_1 = voix_leg_1[0][3] > 0 + has_results_2 = voix_leg_2[0][3] > 0 + + communes = Commune.query.filter(Commune.id == BureauVote.commune_id)\ + .filter(BureauVote.circonscription_id == circo_id).order_by(Commune.name).all() + + html = "\n\n" + html += f"\n\nCirconscription {circo_id}\n" + html += "\n\n\n" + + html += "Retour carte de France - Législatives 2ème tour
" + html += "Retour carte de France - Présidentielles 1er tour" + + html += f"

{circo.departement.name} - {circo.label}

\n" + + svg = "" + color = int(nuances[voix_leg_2[0][2] if has_results_2 else voix_leg_1[0][2]].color if has_results_1 else nuances[voix_pres[0][2]].color, 16) + + w, h = 500, 500 + minx, miny, maxx, maxy = w, h, 0, 0 + if circo.departement_id != 97: + polygons = circo.geometry + if isinstance(polygons[0][0][0], float): + polygons = [polygons] + else: + polygons = [[[[0, 0], [0, 1], [1, 1], [1, 0]]]] + + for polygon in polygons: + polygon = polygon[0] + cartesian = [(w * (p[0] + 180) / 360, h / 2 - w / (2 * pi) * log(tan(pi / 4 + p[1] * pi / 360))) for p in polygon] + points = cartesian + + minx = min(minx, min(p[0] for p in points)) + miny = min(miny, min(p[1] for p in points)) + maxx = max(maxx, max(p[0] for p in points)) + maxy = max(maxy, max(p[1] for p in points)) + + svg += f'\n' + + svg += "" + svg = f'\n' + svg + + html += svg + "\n" + + html += "

Communes

\n" + html += f"Département : {circo.departement.name} - {circo.departement.id} ({circo.departement.region.name})\n" + html += "
    \n" + for commune in communes: + html += f"
  • {commune.name}
  • \n" + html += "
\n" + + html += "

Résultats législatives 2ème tour

\n" + + if has_results_2: + tot_voix = sum(res[3] for res in voix_leg_2) + html += "
    \n" + for i, res in enumerate(voix_leg_2): + html += f"
  • " + if i == 0: + html += "" + html += f"{res[1]} {res[0]} ({res[2]}) : {100 * res[3] / tot_voix:.02f} % ({res[3]})" + if i == 0: + html += "" + html += "
  • \n" + html += "
\n" + + html += "Statistiques :\n" + + if vote_leg_2.inscrits == 0: + vote_leg_2.inscrits = 1 + vote_leg_2.votants = 1 + vote_leg_2.exprimes = 1 + + html += "
    \n" + html += f"
  • Inscrit⋅es : {vote_leg_2.inscrits}
  • \n" + html += f"
  • Votant⋅es : {vote_leg_2.votants} ({100 * vote_leg_2.votants / vote_leg_2.inscrits:.02f} %)
  • \n" + html += f"
  • Abstentionistes : {vote_leg_2.abstentions} ({100 * vote_leg_2.abstentions / vote_leg_2.inscrits:.02f} %)
  • \n" + html += f"
  • Voix exprimées : {vote_leg_2.exprimes}
  • \n" + html += f"
  • Bulletins blancs : {vote_leg_2.blancs} ({100 * vote_leg_2.blancs / vote_leg_2.exprimes:.02f} %)
  • \n" + html += f"
  • Bulletins nuls : {vote_leg_2.nuls} ({100 * vote_leg_2.nuls / vote_leg_2.exprimes:.02f} %)
  • \n" + html += "
\n" + else: + html += "Résultats indisponibles. Liste des candidats :\n" + html += "
    \n" + for res in voix_leg_2: + html += f"
  • {res[1]} {res[0]} ({res[2]})
  • \n" + html += "
\n" + + + html += "

Résultats législatives 1er tour

\n" + + if has_results_1: + tot_voix = sum(res[3] for res in voix_leg_1) + html += "
    \n" + for i, res in enumerate(voix_leg_1): + qualified = False + if i == 0: + qualified = True + elif voix_leg_1[0][3] / vote_leg_1.exprimes < 0.5 or voix_leg_1[0][3] / vote_leg_1.inscrits < 0.25: + if i == 1: + qualified = True + elif i == 2 and res[3] / vote_leg_1.inscrits >= 0.125: + qualified = True + + html += f"
  • " + if qualified: + html += "" + html += f"{res[1]} {res[0]} ({res[2]}) : {100 * res[3] / tot_voix:.02f} % ({res[3]})" + if qualified: + html += "" + html += "
  • \n" + html += "
\n" + html += "Statistiques :\n" + html += "
    \n" + html += f"
  • Inscrit⋅es : {vote_leg_1.inscrits}
  • \n" + html += f"
  • Votant⋅es : {vote_leg_1.votants} ({100 * vote_leg_1.votants / vote_leg_1.inscrits:.02f} %)
  • \n" + html += f"
  • Abstentionistes : {vote_leg_1.abstentions} ({100 * vote_leg_1.abstentions / vote_leg_1.inscrits:.02f} %)
  • \n" + html += f"
  • Voix exprimées : {vote_leg_1.exprimes}
  • \n" + html += f"
  • Bulletins blancs : {vote_leg_1.blancs} ({100 * vote_leg_1.blancs / vote_leg_1.exprimes:.02f} %)
  • \n" + html += f"
  • Bulletins nuls : {vote_leg_1.nuls} ({100 * vote_leg_1.nuls / vote_leg_1.exprimes:.02f} %)
  • \n" + html += "
\n" + else: + html += "Résultats indisponibles. Liste des candidats :\n" + html += "
    \n" + for res in voix_leg_1: + html += f"
  • {res[1]} {res[0]} ({res[2]})
  • \n" + html += "
\n" + + html += "

Rappels présidentielles 1er tour

\n" + tot_voix = sum(res[3] for res in voix_pres) + + html += "Par candidat :\n" + html += "
    \n" + for res in voix_pres: + html += f"
  • {res[1]} {res[0]} ({res[2]}) : {100 * res[3] / tot_voix:.02f} % ({res[3]})
  • \n" + html += "
\n" + + html += "Par nuance :\n" + html += "
    \n" + for res in voix_pres_nuance: + html += f"
  • {res[0]} : {100 * res[1] / tot_voix:.02f} % ({res[1]})
  • \n" + html += "
\n" + + html += "Statistiques :\n" + inscrits, votants, abstentions, exprimes, blancs, nuls = voix_pres[0][4:] + html += "
    \n" + html += f"
  • Inscrit⋅es : {inscrits}
  • \n" + html += f"
  • Votant⋅es : {votants} ({100 * votants / inscrits:.02f} %)
  • \n" + html += f"
  • Abstentionistes : {abstentions} ({100 * abstentions / inscrits:.02f} %)
  • \n" + html += f"
  • Voix exprimées : {exprimes}
  • \n" + html += f"
  • Bulletins blancs : {blancs} ({100 * blancs / exprimes:.02f} %)
  • \n" + html += f"
  • Bulletins nuls : {nuls} ({100 * nuls / exprimes:.02f} %)
  • \n" + html += "
\n" + html += "
    \n" + + html += "\n\n" + + return html + + +@app.get('/refresh/') +def refresh(circo_id: str): + circo = Circonscription.query.filter(Circonscription.id == circo_id) + + if not circo.count(): + abort(404) + + circo = circo.one() + vote = VoteLegislatives.query.filter(VoteLegislatives.circonscription_id == circo_id, + VoteLegislatives.round == 2).one() + + dpt_id = circo.departement_id + if dpt_id == 201: + dpt_id = '02A' + elif dpt_id == 202: + dpt_id = '02B' + elif dpt_id == 97: + dpt_id = '099' + else: + dpt_id = f'{dpt_id:03d}' + + url = f"https://www.resultats-elections.interieur.gouv.fr/legislatives-2022/{dpt_id}/{dpt_id}{circo.number:02d}.html" + resp = requests.get(url) + + if resp.status_code != 200: + abort(resp.status_code) + + data = {'status': 'OK', 'resultats': {}, 'statistiques': {'inscrits': 0, 'votants': 0, 'abstentions': 0, + 'exprimes': 0, 'blancs': 0, 'nuls': 0}} + + content = resp.content.decode('iso-8859-15').lower() + if "voix" not in content or "rappel" not in content: + return Response(json.dumps({'status': 'error', 'message': 'results are not available'}), mimetype='application/json', status=404) + + content = content[content.index('voix'):content.index('rappel')] + + lines = content.split('\n') + for i, line in enumerate(lines): + if ">m." in line or ">mme" in line: + name = line.split('>')[-2].split('<')[0] + full_name = name.split(' ', 1)[1] + field = func.concat(func.lower(CandidatLegislatives.first_name), ' ', + func.lower(CandidatLegislatives.last_name)) + nuance_code = lines[i + 1].split('>')[-2].split('<')[0].upper() + candidat = CandidatLegislatives.query.filter(CandidatLegislatives.circonscription_id == circo_id, + CandidatLegislatives.nuance_id == nuance_code, + field == full_name).one() + vc = VoteCandidatLegislatives.query.filter(VoteCandidatLegislatives.vote_id == vote.id, + VoteCandidatLegislatives.candidat_id == candidat.id).one() + for j in range(2, 10): + l = lines[i + j] + candidate = l.split('>')[-2].split('<', 2)[0].replace(' ', '') + if candidate.isnumeric(): + vc.voix = int(candidate) + data['resultats'][f"{candidat.first_name} {candidat.last_name} ({nuance_code})"] = vc.voix + db.session.add(vc) + break + elif '>inscrits' in line or '>abstentions' in line or '>votants' in line\ + or '>blancs' in line or '>nuls' in line or '>exprimés' in line: + name = line.split('>')[-2].split('<')[0].replace('é', 'e') + tot = int(lines[i + 1].split('>')[-2].split('<', 2)[0].replace(' ', '')) + setattr(vote, name, tot) + data['statistiques'][name] = tot + + db.session.add(vote) + db.session.commit() + + return Response(json.dumps(data), mimetype='application/json') + + +@app.get('/') +def index(): + return redirect('/draw/legislatives') + + +if __name__ == '__main__': + if Nuance.query.count() == 0: + db.session.add_all([ + Nuance(name="Divers extrême gauche", + code="DXG", + color="bb0000"), + Nuance(name="Parti radical de gauche", + code="RDG", + color="ffc0c0"), + Nuance(name="Nouvelle union populaire écologique et sociale", + code="NUP", + color="bb1840"), + Nuance(name="Divers gauche", + code="DVG", + color="ffc0c0"), + Nuance(name="Écologistes", + code="ECO", + color="77ff77"), + Nuance(name="Divers", + code="DIV", + color="eeeeee"), + Nuance(name="Régionalistes", + code="REG", + color="dcbfa3"), + Nuance(name="Ensemble", + code="ENS", + color="ffeb00"), + Nuance(name="Divers centre", + code="DVC", + color="fac577"), + Nuance(name="Union des Démocrates et des Indépendants", + code="UDI", + color="00ffff"), + Nuance(name="Les Républicains", + code="LR", + color="0066cc"), + Nuance(name="Divers droite", + code="DVD", + color="adc1fd"), + Nuance(name="Droite souverainiste", + code="DSV", + color="0082c4"), + Nuance(name="Reconquête !", + code="REC", + color="404040"), + Nuance(name="Rassemblement National", + code="RN", + color="0d378a"), + Nuance(name="Divers extrême droite", + code="DXD", + color="404040"), + + CandidatPresidentielle(last_name="ARTHAUD", + first_name="Nathalie", + slug="nathalie_arthaud", + nuance_id="DXG"), + CandidatPresidentielle(last_name="POUTOU", + first_name="Philippe", + slug="philippe_poutou", + nuance_id="DXG"), + CandidatPresidentielle(last_name="ROUSSEL", + first_name="Fabien", + slug="fabien_roussel", + nuance_id="NUP"), + CandidatPresidentielle(last_name="MÉLENCHON", + first_name="Jean-Luc", + slug="jean_luc_melenchon", + nuance_id="NUP"), + CandidatPresidentielle(last_name="HIDALGO", + first_name="Anne", + slug="anne_hidalgo", + nuance_id="NUP"), + CandidatPresidentielle(last_name="JADOT", + first_name="Yannick", + slug="yannick_jadot", + nuance_id="NUP"), + CandidatPresidentielle(last_name="MACRON", + first_name="Emmanuel", + slug="emmanuel_macron", + nuance_id="ENS"), + CandidatPresidentielle(last_name="LASSALLE", + first_name="Jean", + slug="jean_lassalle", + nuance_id="DIV"), + CandidatPresidentielle(last_name="PÉCRESSE", + first_name="Valérie", + slug="valerie_pecresse", + nuance_id="LR"), + CandidatPresidentielle(last_name="DUPONT-AIGNAN", + first_name="Nicolas", + slug="nicolas_dupont_aignan", + nuance_id="DSV"), + CandidatPresidentielle(last_name="LE PEN", + first_name="Marine", + slug="marine_le_pen", + nuance_id="RN"), + CandidatPresidentielle(last_name="ZEMMOUR", + first_name="Éric", + slug="eric_zemmour", + nuance_id="REC"), + ]) + db.session.commit() + + if VoteCandidatLegislatives.query.count() == 0: + for c in Circonscription.query.order_by(Circonscription.id).all(): + vote = VoteLegislatives(circonscription_id=c.id) + db.session.add(vote) + for candidat in CandidatLegislatives.query.filter(CandidatLegislatives.circonscription_id == c.id).all(): + db.session.add(VoteCandidatLegislatives(candidat_id=candidat.id, vote_id=vote.id)) + db.session.commit() + + app.run(debug=True) diff --git a/candidats-legislatives-2022.csv b/candidats-legislatives-2022.csv new file mode 100644 index 0000000..269b987 --- /dev/null +++ b/candidats-legislatives-2022.csv @@ -0,0 +1,6291 @@ +Code du département,Libellé du département,Code circonscription,Libellé circonscription,N° panneau,N° candidat,Sexe candidat,Nom candidat,Prénom candidat,Date naissance candidat,Nuance candidat,Profession candidat,Le candidat est sortant,Sexe remplaçant,Nom remplaçant,Prénom remplaçant,Date naiss. remplaçant,Le remplaçant est sortant +01,Ain,01,1ère circonscription,1,31,M,GUILLERMIN,Vincent,10/08/1976,ENS,Agriculteur sur petite exploitation,Non,F,DOUARD,Dominique,06/02/1953,Non +01,Ain,01,1ère circonscription,2,2,M,LAHY,Éric,24/02/1966,DXG,"Professeur, profession scientifique",Non,F,LÉPAGNOT,Maude,01/08/1979,Non +01,Ain,01,1ère circonscription,3,18,M,BRETON,Xavier,25/11/1962,LR,Cadre de la fonction publique,Oui,M,FLOCHON,Jean-Yves,15/08/1958,Non +01,Ain,01,1ère circonscription,4,21,F,PIROUX GIANNOTTI,Brigitte,04/11/1959,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,VOYANT,Serge,09/04/1953,Non +01,Ain,01,1ère circonscription,5,16,M,MENDES,Michael,24/08/1988,DSV,Chauffeur,Non,F,DARPHEUILLE,Lydia,01/04/1986,Non +01,Ain,01,1ère circonscription,6,22,M,BELLON,Julien,11/06/1978,REC,Cadre administratif et commercial d'entreprise,Non,F,JEAN-LOUIS,Fabienne,13/07/1954,Non +01,Ain,01,1ère circonscription,7,32,F,ARMENJON,Eliane,28/01/1930,ECO,Ancien employé,Non,M,JOURNET,Gauthier,05/12/1964,Non +01,Ain,01,1ère circonscription,8,20,M,GUÉRAUD,Sébastien,09/09/1973,NUP,"Professeur, profession scientifique",Non,F,WIEL,Monique,22/05/1960,Non +01,Ain,02,2ème circonscription,1,23,F,LAPRAY,Lumir,04/07/1992,NUP,"Professeur, profession scientifique",Non,M,CHARRONDIÈRE,Patrick,21/06/1962,Non +01,Ain,02,2ème circonscription,2,9,M,DAUBIÉ,Romain,05/05/1980,ENS,Profession libérale,Non,F,ANDRE-BRIGARD,Claire,28/10/1963,Non +01,Ain,02,2ème circonscription,3,8,M,GOUTAGNY,Vincent,17/03/1965,DXG,Ouvrier qualifié de type industriel,Non,F,GIRY,Annick,26/06/1957,Non +01,Ain,02,2ème circonscription,4,12,M,BARATAY,Denis,02/10/1950,DVD,Ancien cadre,Non,F,IPPOLITI,Sandrine,14/05/1979,Non +01,Ain,02,2ème circonscription,5,4,M,NANCHI,Alexandre,01/11/1975,LR,Cadre de la fonction publique,Non,M,PECHOUX,Marc,31/07/1957,Non +01,Ain,02,2ème circonscription,6,13,M,COSTA,Alexandre,03/05/1977,REC,Policier et militaire,Non,F,GOBET,Sophie,03/06/1972,Non +01,Ain,02,2ème circonscription,7,49,M,MARTET,Colin,30/12/1989,DIV,"Professeur, profession scientifique",Non,F,ROBIN,Swanny,08/07/1992,Non +01,Ain,02,2ème circonscription,8,26,M,IGLÉSIS,Thomas,17/03/1972,ECO,Employé civil et agent de service de la fonction publique,Non,F,DUPLOT,Fanny Anaïs,03/11/1987,Non +01,Ain,02,2ème circonscription,9,24,M,EYRAUD,Olivier,08/03/1955,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,SANCHEZ,Juan,06/07/2002,Non +01,Ain,02,2ème circonscription,10,25,F,CARRIER,Delphine,02/02/1981,DSV,Employé de commerce,Non,M,MOREL,Joël,15/01/1978,Non +01,Ain,03,3ème circonscription,1,7,F,DUBARRY,Karine,07/02/1975,REC,Cadre administratif et commercial d'entreprise,Non,M,LIEBART,Thibaut,19/12/1998,Non +01,Ain,03,3ème circonscription,2,17,M,VERGNAS,Thierry,09/07/1964,DSV,Cadre administratif et commercial d'entreprise,Non,F,METKO,Aksana,08/07/1972,Non +01,Ain,03,3ème circonscription,3,42,F,GIVERNET,Olga,17/10/1981,ENS,Ingénieur et cadre technique d'entreprise,Oui,M,PATERMO,Roger,17/06/1957,Non +01,Ain,03,3ème circonscription,4,48,M,FERTE,Maxence,20/03/1988,DIV,Employé civil et agent de service de la fonction publique,Non,F,MICOUD,Iselande,04/12/1981,Non +01,Ain,03,3ème circonscription,5,29,M,FRANCK,Frédéric,16/08/1960,RN,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,VEIL,Martine,24/07/1966,Non +01,Ain,03,3ème circonscription,6,37,M,JOLIE,Christian,24/06/1972,NUP,Ingénieur et cadre technique d'entreprise,Non,F,CARLE-FAYE,Céline,16/02/1982,Non +01,Ain,03,3ème circonscription,7,5,F,BAUDE,Véronique,10/11/1968,LR,Cadre de la fonction publique,Non,M,HÉDON,Jean-Yves,22/12/1962,Non +01,Ain,03,3ème circonscription,8,40,M,KASTLER,Jean-Loup,12/02/1982,ECO,"Professeur, profession scientifique",Non,F,MANNI,Myriam,20/03/1969,Non +01,Ain,03,3ème circonscription,9,41,M,KOUASSI,Fulgence,17/08/1980,DIV,Employé de commerce,Non,F,BOUHYADI,Hanane,02/12/1980,Non +01,Ain,03,3ème circonscription,10,6,F,MAISONNETTE,Cécile,09/10/1977,DXG,"Professeur, profession scientifique",Non,M,MEYER,Sam,31/08/1985,Non +01,Ain,03,3ème circonscription,11,44,F,MORVAN LEMBERT,Marine,16/03/1962,ECO,Profession libérale,Non,F,MARTIN,Chrystel,01/04/1969,Non +01,Ain,03,3ème circonscription,12,43,M,BISETTI,Frank,27/07/1976,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,SAÏD,Sarra,31/07/1987,Non +01,Ain,04,4ème circonscription,1,51,M,REIHANIAN,Aurane,13/01/1993,LR,Cadre de la fonction publique,Non,M,LARRIEU,Pierre,10/12/1960,Non +01,Ain,04,4ème circonscription,2,46,M,DEFRASNE,Alban,09/02/1989,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PIERRON,Romain,31/05/1985,Non +01,Ain,04,4ème circonscription,3,38,M,FAVRE,Nicolas,06/01/1990,ECO,Artisan,Non,M,FELIZ,Carlos,12/08/1972,Non +01,Ain,04,4ème circonscription,4,34,M,BUISSON,Jérôme,15/01/1973,RN,"Professeur, profession scientifique",Non,M,MAITRE,Christophe,22/04/1969,Non +01,Ain,04,4ème circonscription,5,10,M,COUSSON,Sylvain,19/07/1954,DXG,Ancienne profession intermédiaire,Non,F,BERAUD,Roberte,27/11/1952,Non +01,Ain,04,4ème circonscription,6,50,M,BENMEDJAHED,Ali,13/12/1960,RDG,"Professeur, profession scientifique",Non,F,DÉBIAS,Sonia,16/09/1971,Non +01,Ain,04,4ème circonscription,7,36,M,LERDA,Philippe,12/02/1958,NUP,Cadre de la fonction publique,Non,F,CHEVAT AGNÈS,Marie-Pierre,02/09/1963,Non +01,Ain,04,4ème circonscription,8,30,M,DE BOYSSON,Benoît,26/08/1981,REC,Profession libérale,Non,F,DURAND,Angélique,26/02/1977,Non +01,Ain,04,4ème circonscription,9,55,M,FORCA,Sacha,31/08/1976,DVD,"Contremaître, agent de maîtrise",Non,F,MANDRAS,Marie-Françoise,28/04/1957,Non +01,Ain,04,4ème circonscription,10,52,F,SEGUIN,Isabelle,16/05/1962,ENS,Chef d'entreprise de 10 salariés ou plus,Non,M,BERGER,Anthony,29/11/1984,Non +01,Ain,04,4ème circonscription,11,19,F,VEILLEROT,Annick,27/11/1957,DSV,Employé de commerce,Non,M,ROGNARD,Gérard,01/03/1954,Non +01,Ain,04,4ème circonscription,12,14,M,TROMPILLE,Stéphane,01/12/1982,DVC,Profession intermédiaire administrative et commerciale des entreprises,Oui,F,ZANCANARO-EMERIC,Isabelle,04/06/1958,Non +01,Ain,05,5ème circonscription,1,47,M,TOURNIER-BILLON,Philippe,13/06/1959,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,VAN DEN BRULE,Bernard,28/11/1949,Non +01,Ain,05,5ème circonscription,2,28,M,FABRIS,Grégory,13/09/1978,DSV,"Profession de l'information, des arts et des spectacles",Non,M,DELAROUZEE,Philippe,06/04/1961,Non +01,Ain,05,5ème circonscription,3,27,M,YILMAZ,Celil,30/10/1975,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,ORAN,Mahmut,09/06/1980,Non +01,Ain,05,5ème circonscription,4,53,M,ABAD,Damien,05/04/1980,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,LIÉBUS,Patrick,06/05/1955,Non +01,Ain,05,5ème circonscription,5,35,F,PISANI,Florence,02/07/1972,NUP,Cadre de la fonction publique,Non,M,BAUDET,Pascal,04/03/1971,Non +01,Ain,05,5ème circonscription,6,39,F,PARIS,Stéphanie,15/08/1975,DVD,"Professeur des écoles, instituteur et assimilé",Non,M,JUILLET,Claude,13/10/1952,Non +01,Ain,05,5ème circonscription,7,33,F,NAMBOTIN,Joëlle,14/02/1947,RN,Ancien employé,Non,M,BALLEYDIER,Aurélien,12/12/1994,Non +01,Ain,05,5ème circonscription,8,11,F,CROZET,Sylvie,03/06/1962,DXG,Profession intermédiaire de la santé et du travail social,Non,M,BOUVET,Didier,26/05/1963,Non +01,Ain,05,5ème circonscription,9,15,M,BOULMÉ,Jean-Michel,05/02/1947,DVG,Ancien cadre,Non,F,VINCENT,Michèle,02/05/1953,Non +01,Ain,05,5ème circonscription,10,54,M,MARTINEZ,Julien,09/10/1988,LR,Employé administratif d'entreprise,Non,F,ANTUNES,Alexandra,25/05/1980,Non +02,Aisne,01,1ère circonscription,1,16,F,BONO-VANDORME,Aude,03/08/1962,ENS,Ancien cadre,Oui,M,BOCHET,Eric,10/04/1958,Non +02,Aisne,01,1ère circonscription,2,22,M,CAUCHY,Benjamin,20/12/1979,REC,Cadre administratif et commercial d'entreprise,Non,M,WIART,Benoît,12/06/1965,Non +02,Aisne,01,1ère circonscription,3,12,M,PERNELLE,Jean-Loup,05/03/1953,DXG,Ancien employé,Non,F,LEDOUX,Claire,16/12/1957,Non +02,Aisne,01,1ère circonscription,4,19,M,FENIOUX,Olivier,31/01/1972,NUP,Profession intermédiaire de la santé et du travail social,Non,F,CAMISULI,Lucile,24/02/1962,Non +02,Aisne,01,1ère circonscription,5,4,F,RIBEIRO,Carole,13/08/1967,DVD,Technicien,Non,M,JOLY,Frédéric,15/09/1962,Non +02,Aisne,01,1ère circonscription,6,26,M,DEGOUY,Michel,20/10/1953,DSV,Ancien cadre,Non,M,TRICOTEAUX,Rudy,08/07/1982,Non +02,Aisne,01,1ère circonscription,7,5,M,DRAGON,Nicolas,19/04/1977,RN,Profession libérale,Non,F,FLAMANT,Sarah,18/05/1967,Non +02,Aisne,01,1ère circonscription,8,6,M,MOUGENOT,Paul,13/10/1988,LR,Agriculteur sur moyenne exploitation,Non,F,DUHANT,Nathalie,15/05/1966,Non +02,Aisne,02,2ème circonscription,1,32,M,RANSQUIN,Sulyvan,11/11/1994,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,LEMPEREUR,Sarah,25/03/1987,Non +02,Aisne,02,2ème circonscription,2,2,M,DIVE,Julien,21/05/1985,LR,Ancien cadre,Oui,F,MAITRE,Marie-Laurence,09/06/1958,Non +02,Aisne,02,2ème circonscription,3,14,F,ZANDITÉNAS,Anne,22/08/1965,DXG,"Professeur, profession scientifique",Non,M,VANKERKORE,Fabrice,23/03/1963,Non +02,Aisne,02,2ème circonscription,4,9,F,PUISSANT,Lola,12/10/1990,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,ANETTE,Sébastien,20/12/1984,Non +02,Aisne,02,2ème circonscription,5,20,F,EL OUASDI,Fatima,28/04/1994,ENS,Ingénieur et cadre technique d'entreprise,Non,M,WILLEMAIN,Alexis,26/03/2003,Non +02,Aisne,02,2ème circonscription,6,24,M,LEPEUPLE,Eric,05/11/1971,DIV,Commerçant et assimilé,Non,F,MAZOUR,Vanessa,15/03/1980,Non +02,Aisne,02,2ème circonscription,7,33,F,BÉCOURT,Corinne,10/02/1963,DVG,Employé civil et agent de service de la fonction publique,Non,M,JAN,Aurélien,02/08/1980,Non +02,Aisne,02,2ème circonscription,8,30,F,AMEWOUI,Cécé,22/11/1984,REC,Employé administratif d'entreprise,Non,M,DUMAND,Romain,26/02/1987,Non +02,Aisne,03,3ème circonscription,1,10,F,VOISIN,Laetitia,03/05/1972,DXG,"Professeur, profession scientifique",Non,F,MARQUET,Céline,24/09/1978,Non +02,Aisne,03,3ème circonscription,2,37,M,BERNARDEAU,Hervé,31/05/1955,REC,Profession libérale,Non,F,GUILLIOT,Lucie,28/11/1993,Non +02,Aisne,03,3ème circonscription,3,17,M,HANSEN-CATTA,Paul-Henry,25/07/1956,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,OLIVIER,Nicolas,17/12/1991,Non +02,Aisne,03,3ème circonscription,4,38,M,MOINEUSE,Jérome,06/02/1983,LR,Employé civil et agent de service de la fonction publique,Non,M,PETIAU,Eric,01/10/1963,Non +02,Aisne,03,3ème circonscription,5,25,F,CHOTIN,Agnès,05/10/1959,DSV,Ancien cadre,Non,M,BALCON,Sébastien,13/02/1972,Non +02,Aisne,03,3ème circonscription,6,11,M,BRICOUT,Jean-Louis,27/12/1957,NUP,Ancien cadre,Oui,M,WÉRY,Johann,16/08/1978,Non +02,Aisne,04,4ème circonscription,1,28,M,BEAURAIN,José,27/07/1971,RN,Artisan,Non,M,DEMARCQ,Florian,13/03/1989,Non +02,Aisne,04,4ème circonscription,2,13,M,GALL,Aurélien,30/06/1982,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,LEGRAND,Estelle,02/10/1968,Non +02,Aisne,04,4ème circonscription,3,34,M,BOBIN,David,24/08/1984,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,ARNOULD-DUJARDIN,Catherine,23/08/1965,Non +02,Aisne,04,4ème circonscription,4,39,F,VICENTE,Vanessa,29/03/1975,REC,"Professeur des écoles, instituteur et assimilé",Non,F,DUFLOT,Elisabeth,02/01/1958,Non +02,Aisne,04,4ème circonscription,5,15,F,BOUILLAGUET,Flora,14/05/1990,DXG,"Professeur, profession scientifique",Non,F,ALLOT,Catherine,18/04/1960,Non +02,Aisne,04,4ème circonscription,6,3,M,DELATTE,Marc,24/05/1961,ENS,Profession libérale,Oui,F,BASSET,Marion,19/05/1988,Non +02,Aisne,04,4ème circonscription,7,21,M,CRÉON,Damien,10/05/1983,DSV,Ouvrier non qualifié de type industriel,Non,M,FOLLET,Alexandre,16/03/2001,Non +02,Aisne,05,5ème circonscription,1,8,M,GARCIA,Francis,23/05/1948,DXG,Employé civil et agent de service de la fonction publique,Non,M,LEAR,Richard,12/03/1952,Non +02,Aisne,05,5ème circonscription,2,23,M,EUGÈNE,Sébastien,18/10/1985,DVC,Cadre administratif et commercial d'entreprise,Non,F,OMETYNCK,Sabine,20/11/1968,Non +02,Aisne,05,5ème circonscription,3,31,F,ROUSSEL,Jeanne,17/06/1974,ENS,Cadre de la fonction publique,Non,M,HAŸ,Etienne,19/09/1966,Non +02,Aisne,05,5ème circonscription,4,7,M,DESSIGNY,Jocelyn,29/06/1981,RN,Cadre administratif et commercial d'entreprise,Non,F,GAILLARD,Géraldine,09/12/1964,Non +02,Aisne,05,5ème circonscription,5,18,F,TRIBOULET,Florence,01/04/1970,REC,Cadre de la fonction publique,Non,M,DOCTRINAL,Jeoffrey,27/02/1999,Non +02,Aisne,05,5ème circonscription,6,35,F,VACCA,Françoise,06/04/1963,ECO,Cadre de la fonction publique,Non,M,ALKAN,Gilbert,26/03/1943,Non +02,Aisne,05,5ème circonscription,7,27,M,FRERE,Stéphane,30/08/1974,NUP,"Professeur, profession scientifique",Non,F,FENARDJI,Odile,31/10/1955,Non +02,Aisne,05,5ème circonscription,8,29,M,BOLLÉE,Joffrey,18/10/1989,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,MENUET,Hugo,29/09/1998,Non +02,Aisne,05,5ème circonscription,9,36,F,GILQUIN,Jade,03/05/1993,LR,"Professeur, profession scientifique",Non,M,LALLAU,Olivier,02/06/1969,Non +03,Allier,01,1ère circonscription,1,22,F,SENNEPIN,Marion,29/02/1992,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,RAHON,Benedicte,17/10/1977,Non +03,Allier,01,1ère circonscription,2,31,F,CIBERT,Marie,09/03/1954,RN,Employé administratif d'entreprise,Non,M,KEHRLI,Michel,18/01/1950,Non +03,Allier,01,1ère circonscription,3,15,M,BARBARIN,Michel,16/12/1952,ENS,Ingénieur et cadre technique d'entreprise,Non,M,LARZAT,Stéphane,25/03/1974,Non +03,Allier,01,1ère circonscription,4,16,M,MALLOT,Jean,20/08/1952,DVG,Ancien cadre,Non,F,RENAUD,Jackie,09/03/1975,Non +03,Allier,01,1ère circonscription,5,3,M,COLLOT,Jean-Marc,23/12/1964,DXG,Chauffeur,Non,F,DAVID,Christiane,19/08/1961,Non +03,Allier,01,1ère circonscription,6,10,M,DE NICOLAY,Pierre,11/01/1989,REC,Cadre administratif et commercial d'entreprise,Non,M,ROSATI,Jean-Antoine,30/09/1955,Non +03,Allier,01,1ère circonscription,7,33,M,MALAVAUD,Fabien,26/04/1994,DVD,Agriculteur sur petite exploitation,Non,F,DU REAU,Sophie,23/04/1965,Non +03,Allier,01,1ère circonscription,8,28,M,LITAUDON,Roger,15/06/1953,LR,Ancien cadre,Non,M,CARPENTIER,Julien,17/02/1979,Non +03,Allier,01,1ère circonscription,9,21,M,MONNET,Yannick,07/10/1975,NUP,Cadre de la fonction publique,Non,M,DUFREGNE,Jean-Paul,28/03/1958,Oui +03,Allier,02,2ème circonscription,1,17,M,TRIKI,Samir,05/05/1954,DVC,Cadre de la fonction publique,Non,M,PERCHE,Philippe,19/11/1987,Non +03,Allier,02,2ème circonscription,2,13,M,KEGELART,Jean-Jacques,26/05/1958,LR,Cadre de la fonction publique,Non,F,BENOIT-GOLA,Anne-Cécile,24/07/1973,Non +03,Allier,02,2ème circonscription,3,27,M,AFFRAIX,Christophe,02/08/1983,DSV,"Contremaître, agent de maîtrise",Non,M,LEROUX,Sylvain,25/06/1978,Non +03,Allier,02,2ème circonscription,4,9,F,DE NICOLAY,Axelle,26/03/1988,REC,Cadre administratif et commercial d'entreprise,Non,M,MARCONNET,Charles,09/07/1995,Non +03,Allier,02,2ème circonscription,5,26,M,GUILLAUMIN,Jean-Marie,14/10/1977,ECO,Chauffeur,Non,F,SAILA,Fernande,23/05/1944,Non +03,Allier,02,2ème circonscription,6,12,M,LEBEL,Bernard,05/02/1952,DXG,Ancien cadre,Non,M,REUL,Jean-François,14/09/1954,Non +03,Allier,02,2ème circonscription,7,6,M,CHATEL,Philippe,09/04/1968,REG,Cadre administratif et commercial d'entreprise,Non,M,MARQUET,Eric,13/06/1973,Non +03,Allier,02,2ème circonscription,8,8,F,LÉGUILLON,Marie-Claude,21/05/1957,RDG,Ancien cadre,Non,M,GUÉRUT,Jean-François,13/02/1961,Non +03,Allier,02,2ème circonscription,9,30,M,BOVET,Jorys,30/03/1993,RN,Chauffeur,Non,F,GALANGO,Amanthe,21/11/1956,Non +03,Allier,02,2ème circonscription,10,18,M,THOMAS,Luc,26/05/1986,REG,Employé civil et agent de service de la fonction publique,Non,M,PEYRONNET,Guillaume,31/10/1982,Non +03,Allier,02,2ème circonscription,11,7,F,VANCEUNEBROCK,Laurence,06/05/1970,ENS,Policier et militaire,Oui,M,PAULHAC,Thierry,15/05/1957,Non +03,Allier,02,2ème circonscription,12,32,M,POZZOLI,Bernard,08/01/1954,DVG,Ancien cadre,Non,F,WERTH,Juliette,25/01/1962,Non +03,Allier,02,2ème circonscription,13,5,F,HERITIER,Louise,25/02/1997,NUP,"Profession de l'information, des arts et des spectacles",Non,M,BEAUNE,Michel,06/11/1953,Non +03,Allier,03,3ème circonscription,1,4,M,RAMEAU,Jean-Francois,20/12/1951,DXG,"Professeur, profession scientifique",Non,F,BOTTERO,Joelle,20/08/1958,Non +03,Allier,03,3ème circonscription,2,24,M,DUCHÉ,Paul,25/09/1995,ECO,Cadre administratif et commercial d'entreprise,Non,F,DUCHÉ,Nathalie,21/05/1965,Non +03,Allier,03,3ème circonscription,3,25,M,RAY,Nicolas,14/05/1981,LR,Cadre de la fonction publique,Non,F,LASSALLE,Valerie,05/12/1972,Non +03,Allier,03,3ème circonscription,4,14,M,PENDELIAU,Yves-Marie,27/04/1953,DIV,Ancien cadre,Non,M,SERNEELS,Patrick,19/05/1963,Non +03,Allier,03,3ème circonscription,5,19,F,RÉCHARD,Isabelle,10/10/1969,RDG,Profession libérale,Non,M,GEVAERT,Steeve,30/12/1986,Non +03,Allier,03,3ème circonscription,6,20,F,PEYROL,Bénédicte,23/03/1991,ENS,Cadre administratif et commercial d'entreprise,Oui,M,BAUDELOT,Pascal,19/07/1963,Non +03,Allier,03,3ème circonscription,7,11,F,DENFERD,Elsa,22/06/1993,NUP,Cadre de la fonction publique,Non,M,DAUVERGNE,Remy,14/10/1986,Non +03,Allier,03,3ème circonscription,8,29,M,JULIEN,Quentin,01/08/1993,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,GARÇON,Julien,12/12/1995,Non +03,Allier,03,3ème circonscription,9,2,F,LACOUR,Sophie,06/09/1966,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LACOUR,Christian,04/06/1952,Non +03,Allier,03,3ème circonscription,10,23,F,CORBIN,Lydie,08/05/1963,DSV,Profession intermédiaire de la santé et du travail social,Non,M,PONCET,Eric,16/11/1961,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,1,6,F,MIFFRED,Laurine,08/01/1999,REC,"Elève, étudiant",Non,M,NAQUET,Paul,13/01/1990,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,2,23,F,LYONS,Sylvie,24/03/1975,DVG,Cadre de la fonction publique,Non,M,FATIO,Léon,16/06/1953,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,3,20,F,BLANC,Dominique,03/06/1962,DVD,Cadre de la fonction publique,Non,M,PELESTOR,Fabrice,18/12/1961,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,4,13,F,VAN HEESBEKE,Nicole,27/04/1954,ECO,Employé de commerce,Non,M,ORVOEN,Marc,25/11/1952,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,5,7,F,ROS,Annabel,18/06/1979,DXG,Employé de commerce,Non,M,ALMOSNINO,David,02/03/1979,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,6,15,M,POTIE,Bruno,28/10/1960,DIV,Agriculteur sur petite exploitation,Non,M,CHASSAING,Pascal-Henry,05/09/1960,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,7,11,M,AUDAN,Paul,16/03/1953,ENS,Ancien employé,Non,F,MARTIN,Emmanuelle,08/10/1971,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,8,16,M,RECOTILLET,Pascal,16/05/1963,REG,"Professeur des écoles, instituteur et assimilé",Non,F,DAST,Karine,03/12/1969,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,9,26,F,ROLLAND,Patricia,15/04/1969,ECO,Agriculteur sur moyenne exploitation,Non,M,STEPHAN,Frédéric,17/11/1962,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,10,14,F,BAGARRY,Delphine,09/01/1970,NUP,Profession libérale,Oui,F,TOUSSAINT,Carole,15/01/1976,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,11,19,M,GIRARD,Christian,07/05/1952,RN,Ancien cadre,Non,M,BENESSY,Yves,12/03/1954,Non +04,Alpes-de-Haute-Provence,01,1ère circonscription,12,24,M,GIACOMINO,Romaric,13/09/1984,DSV,"Professeur, profession scientifique",Non,F,CLUZEL,Mariane,06/01/1972,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,1,10,M,GUERRERA,Hervé,15/09/1957,REG,Cadre administratif et commercial d'entreprise,Non,F,OTTAVIANI,Martine,10/05/1963,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,2,17,F,FERREIRA,Marie,20/07/2001,UDI,"Elève, étudiant",Non,M,LAUGIER,Robert,13/10/1954,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,3,12,F,RAZEAU,Clémence,08/05/1976,ECO,Commerçant et assimilé,Non,F,HIDALGO Y TERAN ZORRILLA,Ana,22/03/1973,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,4,25,F,CADENEL,Myriam,06/01/1965,REC,Profession libérale,Non,M,HOUBARD,Philippe,30/06/1950,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,5,22,F,HUE-COURTIN,Nathalie,10/03/1966,ECO,Employé de commerce,Non,F,RENELIER,Bénédicte,18/09/1968,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,6,2,M,KECHRA,Frédéric,17/03/1971,DXG,"Professeur, profession scientifique",Non,M,IMBERT,Olivier,25/06/1954,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,7,4,F,DAUX,Danièle,28/01/1944,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BOIJOLS,Jacques,20/06/1950,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,8,21,F,ABEILLE,Aurélie,09/06/1989,RN,Personnel des services directs aux particuliers,Non,M,REYNIER,Ludovic,16/12/1983,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,9,5,M,VICENTE,Laurent,18/05/1972,DXG,Ouvrier qualifié de type artisanal,Non,F,SAULNIER,Mélanie,14/12/1982,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,10,8,M,SOLER,Jean-Luc,22/07/1959,DXG,Ingénieur et cadre technique d'entreprise,Non,F,PECOUL,Henriette,20/08/1961,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,11,3,M,CASTANER,Christophe,03/01/1966,ENS,Cadre de la fonction publique,Oui,F,JACQUES,Elisabeth,21/02/1982,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,12,18,M,WALTER,Léo,14/04/1972,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,ALLAMEL,Alice,23/08/1993,Non +04,Alpes-de-Haute-Provence,02,2ème circonscription,13,9,M,BEGNIS,Thierry,17/03/1955,ECO,Technicien,Non,F,BARRAL,Nadine,31/07/1962,Non +05,Hautes-Alpes,01,1ère circonscription,1,13,F,GAMERRE,Christine,21/03/1963,ECO,Cadre de la fonction publique,Non,M,CINQUEGRANA,Jean-Claude,03/06/1943,Non +05,Hautes-Alpes,01,1ère circonscription,2,10,M,PHILIPPO,Michel,23/12/1972,NUP,"Professeur, profession scientifique",Non,F,BRIANÇON,Marianna,19/09/1995,Non +05,Hautes-Alpes,01,1ère circonscription,3,18,F,BOYER,Pascale,28/09/1965,ENS,"Contremaître, agent de maîtrise",Oui,M,RICHIER,Nicolas,03/09/1984,Non +05,Hautes-Alpes,01,1ère circonscription,4,3,F,PRATALI,Fabienne,28/01/1972,ECO,"Profession de l'information, des arts et des spectacles",Non,F,PRATALI,Marie Claude,03/03/1941,Non +05,Hautes-Alpes,01,1ère circonscription,5,14,F,HERBAUT,Camille,21/12/1995,DSV,Profession libérale,Non,M,DENIS,Olivier,04/01/1972,Non +05,Hautes-Alpes,01,1ère circonscription,6,11,F,HOURS,Patricia,10/02/1958,REC,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,MADELAINE,Pierre-Louis,20/11/1999,Non +05,Hautes-Alpes,01,1ère circonscription,7,19,M,SCARAMOZZINO,Roland,05/07/1965,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,CHAVERNOZ,Eliane,27/10/1941,Non +05,Hautes-Alpes,01,1ère circonscription,8,20,F,RECOTILLET,Lise,14/06/1996,REG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PRAT,Micheu,04/04/1957,Non +05,Hautes-Alpes,01,1ère circonscription,9,7,M,SARLIN,Eric,27/04/1969,RN,Ancien cadre,Non,F,CHIORINO,Cyriane,30/09/1959,Non +05,Hautes-Alpes,01,1ère circonscription,10,8,M,PARA,Kevin,03/09/1992,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,MOSTACHI,Ginette,24/10/1958,Non +05,Hautes-Alpes,01,1ère circonscription,11,2,F,BUISSON,Véronique,21/05/1963,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,ILLY,Jean-Claude,18/04/1953,Non +05,Hautes-Alpes,02,2ème circonscription,1,9,M,GIRAUD,Joel,14/10/1959,ENS,Cadre de la fonction publique,Non,F,BOUCHET,Claire,09/01/1954,Oui +05,Hautes-Alpes,02,2ème circonscription,2,21,F,BESSONNIER,Sandrine,25/06/1981,DSV,Employé civil et agent de service de la fonction publique,Non,M,HAMMANN,Jonathan,04/05/1983,Non +05,Hautes-Alpes,02,2ème circonscription,3,15,M,ROUX,Rémi,13/05/1989,DVG,"Professeur des écoles, instituteur et assimilé",Non,F,MONINO,Chantal,03/09/1962,Non +05,Hautes-Alpes,02,2ème circonscription,4,12,F,PELISSIER,Margot,17/07/2003,REC,"Elève, étudiant",Non,M,TLIBA,Medhi,29/05/1990,Non +05,Hautes-Alpes,02,2ème circonscription,5,17,F,CHAUVET,Carole,24/01/1972,LR,"Professeur, profession scientifique",Non,M,FAURÉ,Michel,10/02/1957,Non +05,Hautes-Alpes,02,2ème circonscription,6,16,M,PASSEREAU,Yann,26/12/1989,ECO,Technicien,Non,F,DONVAL,Aurélie,13/06/1991,Non +05,Hautes-Alpes,02,2ème circonscription,7,4,M,GUIGNARD,Boris,01/04/1982,DXG,"Professeur, profession scientifique",Non,F,BOUIX,Valérie,31/12/1962,Non +05,Hautes-Alpes,02,2ème circonscription,8,6,M,ALBRAND,Louis,08/10/1949,RN,Ancien cadre,Non,M,KALTENBACH,Christophe,12/09/1976,Non +05,Hautes-Alpes,02,2ème circonscription,9,5,F,MOUNAL,Capucine,12/05/1985,NUP,Employé administratif d'entreprise,Non,F,LEVALLOIS,Juliette,17/08/1980,Non +06,Alpes-Maritimes,01,1ère circonscription,1,53,M,IMBERT,Florent,11/04/1989,DXG,"Professeur, profession scientifique",Non,F,ILLY,Sonia,17/04/1992,Non +06,Alpes-Maritimes,01,1ère circonscription,2,50,M,CIOTTI,Eric,28/09/1965,LR,Cadre de la fonction publique,Oui,M,VEROLA,Auguste,28/11/1947,Non +06,Alpes-Maritimes,01,1ère circonscription,3,96,F,DLOUSSKY,Nathalie,10/05/1983,DIV,Profession libérale,Non,M,LOISELLE,Thomas,11/08/1989,Non +06,Alpes-Maritimes,01,1ère circonscription,4,88,F,VITETTI,Muriel,30/01/1959,RN,Chef d'entreprise de 10 salariés ou plus,Non,F,TASSIERS,Marie,27/04/1999,Non +06,Alpes-Maritimes,01,1ère circonscription,5,22,M,LALANDE,Loïc,03/10/1995,ECO,Profession intermédiaire de la santé et du travail social,Non,F,FERRARO,Laura,06/09/1988,Non +06,Alpes-Maritimes,01,1ère circonscription,6,57,F,ATHANASOPOULOS,Kenza,04/05/1988,DVG,Commerçant et assimilé,Non,M,MEGDICHE,Samy,07/01/1981,Non +06,Alpes-Maritimes,01,1ère circonscription,7,13,F,ZAKRZEWSKI,Sylvie,31/03/1970,DSV,"Profession de l'information, des arts et des spectacles",Non,M,BOIZET,Éric,24/03/1961,Non +06,Alpes-Maritimes,01,1ère circonscription,8,28,M,MONETTI,Graig,17/04/1993,ENS,Cadre de la fonction publique,Non,F,RAMOS,Anne,31/05/1968,Non +06,Alpes-Maritimes,01,1ère circonscription,9,106,F,BEAUDET,Chantal,08/06/1946,DIV,Ancien employé,Non,M,CHAMINADE,Thomas,27/07/1983,Non +06,Alpes-Maritimes,01,1ère circonscription,10,67,M,RAZEAU,Christian,22/07/1941,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,F,NERVO,Viviane,29/01/1962,Non +06,Alpes-Maritimes,01,1ère circonscription,11,94,F,CHAINTRON,Anne-Laure,24/04/1980,NUP,"Professeur, profession scientifique",Non,M,INJEY,Robert,13/01/1962,Non +06,Alpes-Maritimes,01,1ère circonscription,12,34,F,BEN MOULAY,Lalla-Chama Gabrielle,05/01/1954,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,F,SERREAU,Gisèle,29/01/1953,Non +06,Alpes-Maritimes,02,2ème circonscription,1,4,M,MORLOT,Philippe,10/05/1953,DSV,Profession intermédiaire de la santé et du travail social,Non,F,ROCHETTE,Émilie,04/01/1984,Non +06,Alpes-Maritimes,02,2ème circonscription,2,81,F,SULTANI,Emmanuelle,22/11/1966,ECO,"Professeur des écoles, instituteur et assimilé",Non,M,ANDRÉ,Pierre-Marie,05/12/1943,Non +06,Alpes-Maritimes,02,2ème circonscription,3,85,M,MACARIO,Jean-Marc,01/02/1963,LR,Profession intermédiaire administrative de la fonction publique,Non,F,LABBE-GROETZ,Annick,31/03/1974,Non +06,Alpes-Maritimes,02,2ème circonscription,4,11,F,NAFFATI,Sonia,18/09/1987,NUP,Profession intermédiaire administrative de la fonction publique,Non,M,MARÉCHAL,Xavier,11/07/1966,Non +06,Alpes-Maritimes,02,2ème circonscription,5,47,M,GAIFFE,Alexandre,11/06/1979,DVD,Employé civil et agent de service de la fonction publique,Non,F,BERLINGERI,Franca,06/09/1967,Non +06,Alpes-Maritimes,02,2ème circonscription,6,61,F,REYNARD,Brigitte,15/03/1963,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,SALAZAR,Jacqueline,21/08/1947,Non +06,Alpes-Maritimes,02,2ème circonscription,7,56,M,ISNARD,Patrick,23/06/1962,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,CARDOT,Catherine,01/01/1970,Non +06,Alpes-Maritimes,02,2ème circonscription,8,24,M,AÏSSOU,Abdel,17/11/1958,DVD,Cadre de la fonction publique,Non,F,LEIBOFF,Denise,09/09/1958,Non +06,Alpes-Maritimes,02,2ème circonscription,9,36,M,TIVOLI,Lionel,29/02/1988,RN,Chef d'entreprise de 10 salariés ou plus,Non,F,PORET,Indiana,21/08/1995,Non +06,Alpes-Maritimes,02,2ème circonscription,10,54,M,BOUILLEAUX,Alain,27/05/1951,DXG,Ancien employé,Non,F,LAROCHE,Corine,04/11/1964,Non +06,Alpes-Maritimes,02,2ème circonscription,11,69,M,DOMBREVAL,Loïc,16/04/1966,ENS,Profession libérale,Oui,F,DOR,Margot,14/02/1960,Non +06,Alpes-Maritimes,02,2ème circonscription,12,100,M,POTENTIER,Laurent,06/11/1973,DIV,Cadre administratif et commercial d'entreprise,Non,F,CARRERE,"Claude, Marie",23/09/1953,Non +06,Alpes-Maritimes,03,3ème circonscription,1,39,F,JAQUET,Estelle,15/09/1967,DXG,"Professeur, profession scientifique",Non,F,MALTINTI,Rosette,10/04/1974,Non +06,Alpes-Maritimes,03,3ème circonscription,2,83,M,MERCIER,Gabriel-Kayne,23/04/2002,ECO,"Elève, étudiant",Non,F,BOURLIASCOS,Katherine,21/04/1950,Non +06,Alpes-Maritimes,03,3ème circonscription,3,45,M,VARDON,Philippe,02/09/1980,REC,Profession libérale,Non,F,FALICON,Hermine,24/02/1997,Non +06,Alpes-Maritimes,03,3ème circonscription,4,15,M,KANDEL,Benoît,15/10/1960,RN,Policier et militaire,Non,F,DE GUBERNATIS,Béatrice,01/04/1960,Non +06,Alpes-Maritimes,03,3ème circonscription,5,73,M,GIUSTI,Enzo,17/06/1988,NUP,Ingénieur et cadre technique d'entreprise,Non,F,DAMIANO,Mireille,11/01/1953,Non +06,Alpes-Maritimes,03,3ème circonscription,6,72,M,DARMON,David-André,16/05/1988,ECO,Profession libérale,Non,F,COSTAMAGNA,Jeanine,27/02/1960,Non +06,Alpes-Maritimes,03,3ème circonscription,7,51,M,PRADAL,Philippe,01/02/1963,ENS,Profession libérale,Non,F,SALLES BARBOSA,Jennifer,04/06/1980,Non +06,Alpes-Maritimes,03,3ème circonscription,8,103,F,CAUSSIN,Marie-Françoise,28/11/1959,ECO,"Professeur, profession scientifique",Non,F,PAYNE,Héléna,01/07/1997,Non +06,Alpes-Maritimes,03,3ème circonscription,9,62,M,CASTILLO,Laurent,12/03/1962,LR,"Professeur, profession scientifique",Non,F,MARTELLO,Isabelle,22/08/1961,Non +06,Alpes-Maritimes,03,3ème circonscription,10,58,F,BOY-MOTTARD,Dominique,22/01/1953,RDG,Ancien cadre,Non,M,KHACHANA,Saifedine,15/09/1999,Non +06,Alpes-Maritimes,03,3ème circonscription,11,104,M,BENOIT,Yann,11/05/1982,DIV,"Profession de l'information, des arts et des spectacles",Non,F,CHAYET,Odile,17/02/1948,Non +06,Alpes-Maritimes,03,3ème circonscription,12,98,F,BONALDI,Sylvie,09/06/1965,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,MICHAUT,William,02/08/1981,Non +06,Alpes-Maritimes,03,3ème circonscription,13,6,F,RIVIERE,Marie-Ange,18/01/1970,DSV,Commerçant et assimilé,Non,F,LECLAIR,Oksana,17/05/1997,Non +06,Alpes-Maritimes,04,4ème circonscription,1,42,M,MARKIEL,Joseph,07/08/1946,DXG,"Profession de l'information, des arts et des spectacles",Non,F,BERTRAND,Françoise,19/04/1966,Non +06,Alpes-Maritimes,04,4ème circonscription,2,64,M,BIEDER,David,11/09/1973,ECO,Ingénieur et cadre technique d'entreprise,Non,M,MONTAGNE,Laurent,22/06/1964,Non +06,Alpes-Maritimes,04,4ème circonscription,3,90,F,VALETTA-ARDISSON,Alexandra,07/06/1976,ENS,Cadre de la fonction publique,Oui,M,SFECCI,Adrien,05/01/1985,Non +06,Alpes-Maritimes,04,4ème circonscription,4,49,F,BEYL,Christine,19/04/1963,ECO,Commerçant et assimilé,Non,M,THRIERR,Corentin,17/08/1995,Non +06,Alpes-Maritimes,04,4ème circonscription,5,65,M,DUCREUX,Pascal,13/03/1956,ECO,Technicien,Non,F,BONINO,Jacqueline,28/01/1941,Non +06,Alpes-Maritimes,04,4ème circonscription,6,7,M,CARBONEL,Fabrice,20/03/1974,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MAUNAS,Jean-François,03/07/1969,Non +06,Alpes-Maritimes,04,4ème circonscription,7,59,F,BOURNOT-POULET,Sophie,06/07/1974,NUP,Cadre de la fonction publique,Non,F,REVILLET,Fabienne,05/07/1968,Non +06,Alpes-Maritimes,04,4ème circonscription,8,97,M,ROUX,Roger,07/11/1962,LR,Cadre de la fonction publique,Non,F,BINEAU,Gabrielle,18/12/1988,Non +06,Alpes-Maritimes,04,4ème circonscription,9,12,F,MASSON,Alexandra,02/07/1971,RN,Profession libérale,Non,M,CONTESSE,Guillaume,03/12/1974,Non +06,Alpes-Maritimes,04,4ème circonscription,10,31,M,RIEU,Damien,27/08/1989,REC,Cadre administratif et commercial d'entreprise,Non,F,VENNE,Elisabeth,04/03/1954,Non +06,Alpes-Maritimes,05,5ème circonscription,1,27,M,DELHEZ,Thibault,15/12/1985,DSV,Profession libérale,Non,F,MISSET,Françoise,06/02/1950,Non +06,Alpes-Maritimes,05,5ème circonscription,2,3,M,VELLA,Cédric,19/12/1994,REC,Profession libérale,Non,F,BONNAUD,Fabienne,11/02/1952,Non +06,Alpes-Maritimes,05,5ème circonscription,3,23,F,SOISSON,Nathalie,28/11/1957,ECO,Profession libérale,Non,M,VIALLET,Stéphane,02/06/1969,Non +06,Alpes-Maritimes,05,5ème circonscription,4,29,F,BRENIER-OHANESSIAN,Marine,11/08/1986,ENS,Cadre de la fonction publique,Oui,M,CONDOMITTI,Pascal,06/03/1975,Non +06,Alpes-Maritimes,05,5ème circonscription,5,26,M,KHALIFA,Frank,03/10/1961,RN,"Professeur, profession scientifique",Non,F,BIBAUT,Christelle,14/05/1970,Non +06,Alpes-Maritimes,05,5ème circonscription,6,5,F,D'INTORNI,Christelle,02/02/1985,LR,Profession libérale,Non,M,ANDRE,Stanislas,21/08/1986,Non +06,Alpes-Maritimes,05,5ème circonscription,7,41,F,BENKEMOUN,Agnès,08/09/1966,DXG,"Professeur, profession scientifique",Non,M,TEYSSEDRE,Éric,02/12/1973,Non +06,Alpes-Maritimes,05,5ème circonscription,8,48,M,BENASSAYA,Philippe,16/01/1959,NUP,"Professeur, profession scientifique",Non,F,DUCHEIN,Marie-Claude,29/01/1966,Non +06,Alpes-Maritimes,05,5ème circonscription,9,87,F,MAIYÉ,Géraldine,18/10/1973,ECO,Cadre administratif et commercial d'entreprise,Non,F,ULLMANN,Maryse,30/01/1952,Non +06,Alpes-Maritimes,05,5ème circonscription,10,101,M,SPACH,J-C. Wahid,10/01/1972,DIV,Commerçant et assimilé,Non,F,BOUAMAMA,Fafa,27/03/1963,Non +06,Alpes-Maritimes,06,6ème circonscription,1,38,F,BARTOLI,Danièle,19/01/1952,DXG,Ancien employé,Non,M,BARILLOT,Xavier,29/11/1964,Non +06,Alpes-Maritimes,06,6ème circonscription,2,79,F,TRASTOUR-ISNART,Laurence,06/03/1972,LR,Cadre de la fonction publique,Oui,M,COANUS,Christophe,01/12/1978,Non +06,Alpes-Maritimes,06,6ème circonscription,3,80,M,TOUZEAU-MENONI,Philippe,26/02/1966,DVC,"Profession de l'information, des arts et des spectacles",Non,F,REVEST,Françoise,06/01/1961,Non +06,Alpes-Maritimes,06,6ème circonscription,4,21,F,MAZZELLA,Nicole,11/09/1952,NUP,Ancien cadre,Non,M,BOUHACHI,Laury,28/10/1978,Non +06,Alpes-Maritimes,06,6ème circonscription,5,82,M,LOUVEZ,Philippe,06/10/1959,DSV,Ancienne profession intermédiaire,Non,M,CALVIFIORI,Thomas,28/02/1990,Non +06,Alpes-Maritimes,06,6ème circonscription,6,71,M,MION,Jean-Bernard,03/11/1967,ENS,Profession libérale,Non,F,BARTHELEMY,Noëlle,26/07/1966,Non +06,Alpes-Maritimes,06,6ème circonscription,7,66,M,ROBIONY,Philippe,04/05/1941,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,M,AYUSO,Stéphane,23/01/1965,Non +06,Alpes-Maritimes,06,6ème circonscription,8,14,M,MASSON,Bryan,21/12/1996,RN,Profession intermédiaire administrative de la fonction publique,Non,M,TRIBUIANI,Cyril,25/07/1981,Non +06,Alpes-Maritimes,06,6ème circonscription,9,25,M,PIACENTINI,Pierre,02/06/1961,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,CASBI,Yaël,03/08/1972,Non +06,Alpes-Maritimes,06,6ème circonscription,10,20,M,JULIEN,Guillaume,03/03/1969,ECO,Cadre administratif et commercial d'entreprise,Non,F,FRUTOS,Dominique,04/05/1960,Non +06,Alpes-Maritimes,06,6ème circonscription,11,70,M,CIESLIK,Denis,21/04/1995,REC,Cadre de la fonction publique,Non,F,PIRET,Josiane,25/12/1948,Non +06,Alpes-Maritimes,07,7ème circonscription,1,86,F,VALLADE,Marie-José,21/08/1948,ECO,Profession libérale,Non,M,LEBOUCHER,Jacques,14/07/1936,Non +06,Alpes-Maritimes,07,7ème circonscription,2,60,M,DELCASSE,Arnaud,10/05/1985,DVG,Ingénieur et cadre technique d'entreprise,Non,F,PETIT,Claire,24/09/1966,Non +06,Alpes-Maritimes,07,7ème circonscription,3,89,M,PAUGET,Eric,18/08/1970,LR,Commerçant et assimilé,Oui,F,MISSANA,Alexia,01/06/1988,Non +06,Alpes-Maritimes,07,7ème circonscription,4,30,M,MEYER-ABBATUCCI,Arthur,21/10/1991,NUP,Profession libérale,Non,F,GENARI-HACOT,Bernadette,30/10/1954,Non +06,Alpes-Maritimes,07,7ème circonscription,5,32,M,BELGUECHI,Yassin-Faïsal,28/04/1983,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,EISSMAN,Michael,06/01/1981,Non +06,Alpes-Maritimes,07,7ème circonscription,6,76,M,MELE,Eric,20/06/1960,ENS,Commerçant et assimilé,Non,F,DEBRAS,Guilaine,11/09/1962,Non +06,Alpes-Maritimes,07,7ème circonscription,7,92,F,MARIUS,Audrey,03/09/1982,REC,Cadre administratif et commercial d'entreprise,Non,M,DUBREU,Bernard,29/08/1953,Non +06,Alpes-Maritimes,07,7ème circonscription,8,75,M,HVIDSTEN,Axel,19/11/1966,ECO,Chauffeur,Non,F,EVANDRO,Valérie,13/04/1967,Non +06,Alpes-Maritimes,07,7ème circonscription,9,74,F,FEBVAY,Laurie,26/06/1990,DSV,Employé de commerce,Non,M,CHAMBIN,Frédéric,07/08/1964,Non +06,Alpes-Maritimes,07,7ème circonscription,10,10,F,PARGAUD,Megane,20/03/1992,ECO,Employé administratif d'entreprise,Non,F,BAILET,Chadia,30/09/1972,Non +06,Alpes-Maritimes,07,7ème circonscription,11,37,M,CORNEC,Tanguy,13/04/1961,RN,Profession libérale,Non,F,JABERT,Elisabeth,26/09/1970,Non +06,Alpes-Maritimes,07,7ème circonscription,12,2,F,HUMBERT,Bérengère,01/02/1967,DVD,Artisan,Non,M,ROY,Grégory,20/04/1996,Non +06,Alpes-Maritimes,07,7ème circonscription,13,93,M,MARECHAL,Stanislas,25/01/1988,DIV,Ingénieur et cadre technique d'entreprise,Non,M,DELHAYE,Sébastien,24/07/1993,Non +06,Alpes-Maritimes,07,7ème circonscription,14,77,M,PETARD,Christian,03/12/1954,DXG,Ancien employé,Non,M,LINZA,Philippe,29/08/1969,Non +06,Alpes-Maritimes,08,8ème circonscription,1,43,F,MARTINS,Adelia,24/02/1968,DSV,"Profession de l'information, des arts et des spectacles",Non,M,STUTZ,Thierry,04/07/1963,Non +06,Alpes-Maritimes,08,8ème circonscription,2,46,M,DESENS,Jean-Valéry,20/02/1977,ENS,Commerçant et assimilé,Non,F,ABRAVANEL,Aline,03/04/1978,Non +06,Alpes-Maritimes,08,8ème circonscription,3,52,M,DUBOIS,Damien,28/06/1986,DXG,Ingénieur et cadre technique d'entreprise,Non,F,COUTAN,Catherine,17/06/1948,Non +06,Alpes-Maritimes,08,8ème circonscription,4,8,F,FONTANESI,Chantal,18/06/1959,ECO,"Profession de l'information, des arts et des spectacles",Non,F,LEPETIT,Béatrice,17/09/1966,Non +06,Alpes-Maritimes,08,8ème circonscription,5,17,M,GROSJEAN,Adrien,23/05/1991,REC,Commerçant et assimilé,Non,M,BARTHELEMY,Nicolas,13/02/1990,Non +06,Alpes-Maritimes,08,8ème circonscription,6,9,F,BIBIANO,Marie,06/05/1960,ECO,Ancien employé,Non,M,BIBIANO,Jean-Pierre,17/04/1946,Non +06,Alpes-Maritimes,08,8ème circonscription,7,102,M,CLAUDEL,Bernard,29/08/1949,DIV,Cadre administratif et commercial d'entreprise,Non,F,COLOM,Marilyn,15/04/1971,Non +06,Alpes-Maritimes,08,8ème circonscription,8,44,F,HAMONET,Chantal,11/05/1955,ECO,Cadre administratif et commercial d'entreprise,Non,M,VILLON,Jean-Pierre,11/07/1943,Non +06,Alpes-Maritimes,08,8ème circonscription,9,16,F,PEREIRA,Marie-José,27/03/1960,DXG,Personnel des services directs aux particuliers,Non,M,IBERTI,Jean-Pierre,11/03/1949,Non +06,Alpes-Maritimes,08,8ème circonscription,10,95,F,MARTIN,Alexandra,25/10/1968,LR,Employé civil et agent de service de la fonction publique,Non,M,LISNARD,David,02/02/1969,Non +06,Alpes-Maritimes,08,8ème circonscription,11,18,F,SOUDANT,Lucia,19/07/1986,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,KUHN,Jean-Francois,13/07/1973,Non +06,Alpes-Maritimes,08,8ème circonscription,12,35,F,LANDERER,Dorette,03/01/1971,RN,Profession libérale,Non,M,RAVASCO,Éric,26/04/1973,Non +06,Alpes-Maritimes,09,9ème circonscription,1,19,M,PAUCHET,David,21/03/1982,DSV,Commerçant et assimilé,Non,F,EBELL,Isabelle,15/01/1962,Non +06,Alpes-Maritimes,09,9ème circonscription,2,84,F,TABAROT,Michèle,13/10/1962,LR,Chef d'entreprise de 10 salariés ou plus,Oui,M,VIAUD,Jérôme,13/09/1977,Non +06,Alpes-Maritimes,09,9ème circonscription,3,78,M,NGUYEN,Xuan Truong,25/10/1994,REC,Cadre administratif et commercial d'entreprise,Non,F,IMMORDINO,Marie,12/09/1990,Non +06,Alpes-Maritimes,09,9ème circonscription,4,55,M,CAMERANO,Jean-Paul,12/08/1966,DVC,Cadre administratif et commercial d'entreprise,Non,F,FILLEBEEN,Dominique,10/09/1955,Non +06,Alpes-Maritimes,09,9ème circonscription,5,99,M,BOULAY,Nicolas,10/05/1977,DIV,Ingénieur et cadre technique d'entreprise,Non,M,AUBERTIN,Samuel,01/06/1992,Non +06,Alpes-Maritimes,09,9ème circonscription,6,91,F,CHASSERIAUD,Chantal,11/09/1955,NUP,Ancien employé,Non,M,BREGEAUT,Jean-Jacques,25/09/1956,Non +06,Alpes-Maritimes,09,9ème circonscription,7,68,F,BARROERO,Evelyne,01/02/1955,ECO,Profession libérale,Non,F,DELATTRE,Evelyne,23/07/1956,Non +06,Alpes-Maritimes,09,9ème circonscription,8,63,F,TUDIESCHE,Mayaa,17/09/1966,ENS,Commerçant et assimilé,Non,M,CATELAIN,Antoine,03/06/1972,Non +06,Alpes-Maritimes,09,9ème circonscription,9,40,F,PÉCOUT,Liliane,16/05/1947,DXG,Ancien employé,Non,M,LANGOUET,Alain,25/12/1959,Non +06,Alpes-Maritimes,09,9ème circonscription,10,105,M,MATUSZEWSKI,Christian,06/09/1949,ECO,Ancien employé,Non,F,PALMERS,Joselane,07/03/1930,Non +06,Alpes-Maritimes,09,9ème circonscription,11,33,M,GALBERT,Franck,10/09/1972,RN,Ingénieur et cadre technique d'entreprise,Non,F,BARON,Nathalie,25/07/1964,Non +07,Ardèche,01,1ère circonscription,1,16,F,GINEYS,Severine,04/03/1977,ENS,Employé administratif d'entreprise,Non,M,KAPPEL,Roger,10/01/1962,Non +07,Ardèche,01,1ère circonscription,2,24,F,FLACH,Marie Élisabeth,02/05/1998,REC,"Professeur, profession scientifique",Non,M,CORDIER,Robin,07/09/1994,Non +07,Ardèche,01,1ère circonscription,3,27,M,LE LOHER,Erick,24/03/1968,DSV,Ingénieur et cadre technique d'entreprise,Non,M,RIBERI,Franck,21/06/1966,Non +07,Ardèche,01,1ère circonscription,4,2,M,SAULIGNAC,Hervé,06/11/1970,DVG,Cadre de la fonction publique,Oui,F,DEVE COLLETTE,Alexandra,01/08/1979,Non +07,Ardèche,01,1ère circonscription,5,13,M,TZAPRENKO,Boris,05/04/1953,ECO,Profession libérale,Non,M,FLEURET,Frédéric,10/04/1983,Non +07,Ardèche,01,1ère circonscription,6,12,F,VANDER DONCKT,Muriel,08/01/1972,DXG,"Professeur, profession scientifique",Non,M,SOUCHE,Christian,30/10/1970,Non +07,Ardèche,01,1ère circonscription,7,17,M,VALLA,Michel,01/04/1949,DVD,"Ancien artisan, commerçant, chef d'entreprise",Non,F,CHAIX,Marie-Pierre,28/02/1956,Non +07,Ardèche,01,1ère circonscription,8,7,F,PORQUET,Céline,06/10/1977,RN,Commerçant et assimilé,Non,M,DUPUIS,Olivier,28/12/1968,Non +07,Ardèche,01,1ère circonscription,9,8,M,CHAMBONNET,Pascal,22/09/1958,DXG,"Professeur, profession scientifique",Non,F,MATEO FERNANDEZ,Maria Bégonia,21/04/1956,Non +07,Ardèche,01,1ère circonscription,10,29,F,MADEIRA,Clara,12/07/2003,REG,"Elève, étudiant",Non,F,GUINAMANT,Cécile,04/02/1982,Non +07,Ardèche,02,2ème circonscription,1,14,F,GUILMIN,Claire,05/12/1992,DSV,Employé de commerce,Non,M,ROUBY,François,12/07/1961,Non +07,Ardèche,02,2ème circonscription,2,11,F,GAILLARD,Michèle,12/12/1964,DXG,Ouvrier non qualifié de type industriel,Non,M,ZANCHI,Angelino,31/12/1990,Non +07,Ardèche,02,2ème circonscription,3,9,M,GRANGIER,Cyrille,25/02/1977,RN,Commerçant et assimilé,Non,F,CLOT,Elisabeth,27/02/1970,Non +07,Ardèche,02,2ème circonscription,4,28,M,GLADIEUX,Sébastien,11/04/1979,DVD,Commerçant et assimilé,Non,M,DENIS,Stéphan,04/08/1986,Non +07,Ardèche,02,2ème circonscription,5,21,M,QUENETTE,Marc-Antoine,28/12/1977,LR,Cadre de la fonction publique,Non,M,BALAŸ,Pascal,09/07/1964,Non +07,Ardèche,02,2ème circonscription,6,30,M,CHAIZE,Martin,17/11/2003,REG,"Elève, étudiant",Non,F,DUNAND,Maëlys,02/04/2003,Non +07,Ardèche,02,2ème circonscription,7,25,M,GOULOUZELLE,Christophe,30/08/1975,NUP,Employé de commerce,Non,F,BERGER,Estelle,08/11/1977,Non +07,Ardèche,02,2ème circonscription,8,4,M,BORY,Philippe,22/06/1964,REC,Profession libérale,Non,F,DRAGON,Delphine,19/11/1970,Non +07,Ardèche,02,2ème circonscription,9,23,M,DUSSOPT,Olivier,16/08/1978,ENS,Cadre de la fonction publique,Non,F,HEYDEL GRILLERE,Laurence,18/11/1968,Non +07,Ardèche,03,3ème circonscription,1,22,F,CAUQUIL,Alexandra,15/04/1980,ENS,Cadre de la fonction publique,Non,M,SARRAZIN,Eric,12/05/1961,Non +07,Ardèche,03,3ème circonscription,2,18,F,PALLOT,Florence,29/11/1968,NUP,"Professeur, profession scientifique",Non,M,SOUCHON,Pierre,03/12/1981,Non +07,Ardèche,03,3ème circonscription,3,26,F,ALIROL,Anne,25/10/1976,REG,"Professeur, profession scientifique",Non,M,LEYNAUD,Gérard,22/04/1946,Non +07,Ardèche,03,3ème circonscription,4,10,M,BRUN,Fabrice,02/04/1968,LR,Commerçant et assimilé,Oui,F,BAULAND,Brigitte,26/07/1957,Non +07,Ardèche,03,3ème circonscription,5,19,F,TEILLET,Audrey,22/11/1987,ECO,Employé administratif d'entreprise,Non,F,VALUSSO,Christine,10/08/1960,Non +07,Ardèche,03,3ème circonscription,6,20,M,SILVA,Gonzague,22/05/1958,DSV,Ancien cadre,Non,F,BLEUZE,Christine,04/12/1962,Non +07,Ardèche,03,3ème circonscription,7,6,M,VERHEIJ,Johan,24/01/1975,RN,Artisan,Non,M,SERROUL,John,28/05/1995,Non +07,Ardèche,03,3ème circonscription,8,15,M,MARCHISIO,Christophe,15/07/1964,DXG,"Professeur, profession scientifique",Non,M,ANTRESSANGLE,Philippe,15/07/1966,Non +07,Ardèche,03,3ème circonscription,9,3,M,GANDON,Gérald,06/02/1970,REC,Commerçant et assimilé,Non,F,THEBAULT,Claudine,22/09/1952,Non +07,Ardèche,03,3ème circonscription,10,5,M,UGHETTO,Laurent,25/02/1968,DVG,Agriculteur sur petite exploitation,Non,F,RIFFARD,Astrid,16/07/1999,Non +08,Ardennes,01,1ère circonscription,1,8,M,RICHARD,Laurent,25/05/1976,RN,"Professeur, profession scientifique",Non,F,DELSUC,Nadine,04/10/1960,Non +08,Ardennes,01,1ère circonscription,2,28,M,DURUISSEAU,Julien,24/03/1984,NUP,"Professeur, profession scientifique",Non,M,EVRARD,Esteban,26/07/2002,Non +08,Ardennes,01,1ère circonscription,3,23,M,RENNESSON,Arnaud,08/07/2001,ECO,"Elève, étudiant",Non,F,RENNESSON,Vincenza,23/04/1970,Non +08,Ardennes,01,1ère circonscription,4,18,M,VUIBERT,Lionel,31/08/1968,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,LEQUEUX-LAMENIE,Armelle,10/01/1956,Non +08,Ardennes,01,1ère circonscription,5,13,M,KALMES,Patrick,15/06/1963,DSV,Chauffeur,Non,M,PUFF,Henri,02/05/1954,Non +08,Ardennes,01,1ère circonscription,6,15,F,OCTAVE,Nadia,10/04/1957,DXG,Ancien employé,Non,M,BROSSE,Johan,13/05/1962,Non +08,Ardennes,01,1ère circonscription,7,21,M,MARECHAL,Guillaume,17/09/1986,LR,Profession libérale,Non,F,BAELDEN,Franciane,05/05/1960,Non +08,Ardennes,01,1ère circonscription,8,24,F,DE CAUSANS,Juliette,21/12/1981,DVC,"Professeur, profession scientifique",Non,M,RONSIN,Jean-Emmanuel,13/02/1971,Non +08,Ardennes,01,1ère circonscription,9,10,M,LAURENT,Sébastien,04/12/1975,REC,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,PETITFILS,Romain,17/03/1993,Non +08,Ardennes,02,2ème circonscription,1,5,F,JACQUEMART,Nadège,16/08/1971,REC,Agriculteur sur moyenne exploitation,Non,F,BERGER,Pauline,23/11/1989,Non +08,Ardennes,02,2ème circonscription,2,17,F,BEDDELEM,Polina,28/03/1985,ENS,Profession intermédiaire de la santé et du travail social,Non,M,LEMAIRE,Yoann,03/04/1982,Non +08,Ardennes,02,2ème circonscription,3,26,M,LOYEZ,Gilles,21/03/1963,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,VELTER,Véronique,20/10/1971,Non +08,Ardennes,02,2ème circonscription,4,29,F,GALLET,Christelle,02/03/1977,ECO,Employé administratif d'entreprise,Non,F,CARNEL,Béatrice,04/01/1958,Non +08,Ardennes,02,2ème circonscription,5,14,F,TAKAWÉ,Mink,25/06/1979,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,NOUET,Joël,16/08/1955,Non +08,Ardennes,02,2ème circonscription,6,2,M,BENYOUCEF,Patrick,01/06/1953,DXG,Ancien employé,Non,F,PERPETE,Claude,13/11/1947,Non +08,Ardennes,02,2ème circonscription,7,12,F,BELLAY,Christelle,21/03/1972,DSV,Cadre administratif et commercial d'entreprise,Non,M,SAINT-LAURENT,Thomas,13/05/1993,Non +08,Ardennes,02,2ème circonscription,8,7,M,PHILIPPO,Baptiste,07/06/1991,RN,Profession intermédiaire administrative de la fonction publique,Non,F,HOURT,Divine,18/01/2001,Non +08,Ardennes,02,2ème circonscription,9,4,M,CORDIER,Pierre,27/05/1972,LR,Cadre de la fonction publique,Oui,F,COQUET,Isabelle,25/09/1964,Non +08,Ardennes,03,3ème circonscription,1,11,M,NORTH,Bruno,17/04/1964,REC,Profession libérale,Non,M,LAHOTTE,Hervé,03/03/1962,Non +08,Ardennes,03,3ème circonscription,2,6,F,BATISSE,Stella,19/11/1974,DSV,Profession intermédiaire de la santé et du travail social,Non,F,MANGLAVITI,Tatiana,24/03/1988,Non +08,Ardennes,03,3ème circonscription,3,22,F,DRION,Estelle,18/04/1971,ENS,"Professeur, profession scientifique",Non,M,LAURANT,Olivier,08/12/1971,Non +08,Ardennes,03,3ème circonscription,4,3,M,WARSMANN,Jean-Luc,22/10/1965,DVD,Profession intermédiaire administrative et commerciale des entreprises,Oui,M,VILLENET,Nicolas,07/05/1977,Non +08,Ardennes,03,3ème circonscription,5,19,F,PERRIN,Sophie,07/05/1970,NUP,Profession intermédiaire administrative de la fonction publique,Non,M,PINEAU,Christophe,18/08/1989,Non +08,Ardennes,03,3ème circonscription,6,20,F,AUGIER,Laure,13/11/1982,DXG,"Professeur, profession scientifique",Non,M,THIERY,Alain,21/06/1956,Non +08,Ardennes,03,3ème circonscription,7,27,F,PELTRIAUX,Monique,19/12/1929,ECO,Ancienne profession intermédiaire,Non,F,GOUBAUX,Michèle,17/11/1946,Non +08,Ardennes,03,3ème circonscription,8,16,M,LEMOINE,David,06/02/1968,RN,Commerçant et assimilé,Non,M,MORIEUX,Christophe,03/02/1972,Non +09,Ariège,01,1ère circonscription,1,7,M,GARNIER,Jean-Marc,25/03/1961,RN,Ancienne profession intermédiaire,Non,F,ALOZY,Michèle,24/02/1961,Non +09,Ariège,01,1ère circonscription,2,14,F,TAURINE,Bénédicte,18/06/1976,NUP,"Professeur, profession scientifique",Oui,M,LAZAROO,Gilbert,06/10/1951,Non +09,Ariège,01,1ère circonscription,3,2,M,JOSSINET,François-Xavier,09/07/1982,REC,"Profession de l'information, des arts et des spectacles",Non,M,VIREFLÉAU,Gervais,31/08/1959,Non +09,Ariège,01,1ère circonscription,4,18,M,FABART,Renaud,23/08/1948,ECO,Ancien cadre,Non,F,ROULLEAU,Florence,25/01/1970,Non +09,Ariège,01,1ère circonscription,5,4,M,LOMRÉ,Yannick,13/03/1984,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,BESSIS,Laurence,28/03/1961,Non +09,Ariège,01,1ère circonscription,6,19,F,COULY,Claire,26/06/1981,DVG,"Professeur, profession scientifique",Non,M,VILLET,Jean-Luc,06/10/1953,Non +09,Ariège,01,1ère circonscription,7,13,F,TRIBOUT,Anne-Sophie,06/10/1976,ENS,"Professeur, profession scientifique",Non,M,AZEMA,Jérôme,25/04/1973,Non +09,Ariège,01,1ère circonscription,8,15,F,LAPEYRE,Gisèle,15/03/1951,DXG,Ancienne profession intermédiaire,Non,M,JUNCA,Daniel,23/05/1952,Non +09,Ariège,01,1ère circonscription,9,3,F,FROGER,Martine,11/06/1961,DVG,Chef d'entreprise de 10 salariés ou plus,Non,M,SICRE,Jean-Pierre,29/10/1959,Non +09,Ariège,01,1ère circonscription,10,21,M,SALVAT,Jean-Pierre,09/05/1950,REG,Ancienne profession intermédiaire,Non,F,DOMEC,Pascale,14/08/1964,Non +09,Ariège,02,2ème circonscription,1,9,F,CARRIE,Bérengère,04/10/1966,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,MASQUÈRE,Stéphane,15/06/1979,Non +09,Ariège,02,2ème circonscription,2,5,M,CHAROY,Quentin,13/05/1994,ECO,Personnel des services directs aux particuliers,Non,M,BOUET-ANNOUN,Bastien,30/04/1978,Non +09,Ariège,02,2ème circonscription,3,6,F,TARRIEUX-ANTRANIKIAN,Alexandra,20/02/1989,REC,Technicien,Non,M,TARRIEUX,Anthony,24/07/1997,Non +09,Ariège,02,2ème circonscription,4,10,M,GARCIA,Enzo,14/12/2002,REG,"Elève, étudiant",Non,F,TIMBERT,Themis,11/08/2003,Non +09,Ariège,02,2ème circonscription,5,11,M,PANIFOUS,Laurent,21/12/1976,DVG,Cadre de la fonction publique,Non,F,ABADIE-AMIEL,Audrey,16/11/1974,Non +09,Ariège,02,2ème circonscription,6,17,M,LAFFONT,Patrick,26/10/1974,DVG,Employé administratif d'entreprise,Non,F,LAFFARGUE,Annick,21/02/1955,Non +09,Ariège,02,2ème circonscription,7,12,M,LARIVE,Michel,22/08/1966,NUP,Profession libérale,Oui,F,SENTENAC,Laetitia,16/02/1986,Non +09,Ariège,02,2ème circonscription,8,20,M,DE KERIMEL,Yann,29/12/1976,DIV,Agriculteur sur petite exploitation,Non,F,CAPDEVILLE,Muriel,24/07/1980,Non +09,Ariège,02,2ème circonscription,9,23,M,DUTRENOIS,Rémi,22/06/1980,ENS,Cadre administratif et commercial d'entreprise,Non,F,PARLOUER,Alexia,10/08/1979,Non +09,Ariège,02,2ème circonscription,10,22,M,AFONSO,Paul,27/02/1971,UDI,Profession intermédiaire administrative de la fonction publique,Non,F,FAURÉ,Laurence,01/03/1969,Non +09,Ariège,02,2ème circonscription,11,16,F,TESTARD,Théodora,28/08/1986,DXG,Profession libérale,Non,M,ISIERTE,Guilhem,24/07/1979,Non +10,Aube,01,1ère circonscription,1,13,F,FRAENKEL,Stéphanie,29/09/1978,LR,Profession libérale,Non,M,BORDE,Philippe,19/04/1967,Non +10,Aube,01,1ère circonscription,2,15,M,BESSON-MOREAU,Grégory,07/07/1982,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,BERTAIL,Sybille,06/01/1959,Non +10,Aube,01,1ère circonscription,3,5,M,GUITTON,Jordan,30/01/1995,RN,Profession intermédiaire administrative de la fonction publique,Non,F,DA ROCHA,Katia,31/03/1974,Non +10,Aube,01,1ère circonscription,4,16,M,GIACOMONI,Hervé,28/04/1964,REC,Artisan,Non,M,ROZÉ,Adrien,02/07/1996,Non +10,Aube,01,1ère circonscription,5,2,F,CANAUD,Marie-Elisabeth,21/01/1977,DIV,"Professeur, profession scientifique",Non,M,BERNARD,Claude,22/09/1964,Non +10,Aube,01,1ère circonscription,6,23,F,PIEPLU,Lydie,07/06/1951,DVC,"Profession de l'information, des arts et des spectacles",Non,F,PIEPLU,Catherine,10/07/1965,Non +10,Aube,01,1ère circonscription,7,20,M,SPAGNESI,Laurent,12/10/1956,NUP,Ancien cadre,Non,F,CORDEUIL,Annick,05/02/1955,Non +10,Aube,01,1ère circonscription,8,7,M,PAILLARD,Lionel,29/06/1977,DXG,"Professeur, profession scientifique",Non,M,CYNOBER,Julien,10/05/1977,Non +10,Aube,02,2ème circonscription,1,10,M,VALLÉE,Romain,05/04/1984,DXG,"Professeur, profession scientifique",Non,F,REICHLING,Pauline,19/07/1994,Non +10,Aube,02,2ème circonscription,2,26,M,RIGLET,Sébastien,07/12/1984,DVC,Cadre administratif et commercial d'entreprise,Non,F,GNAHOUA-FÉ,Aurélie,12/08/1983,Non +10,Aube,02,2ème circonscription,3,30,F,PUFF,Isabelle,08/04/1951,DSV,Ancien cadre,Non,F,VIERTZ,Thérèse,21/07/1950,Non +10,Aube,02,2ème circonscription,4,6,F,HENRY,Evelyne,22/02/1963,RN,Commerçant et assimilé,Non,M,ARBONA,Philippe,10/10/1962,Non +10,Aube,02,2ème circonscription,5,24,M,BEAUFUMÉ,Sébastien,27/09/1983,ECO,Employé de commerce,Non,F,GUENIOT,Corinne,25/01/1966,Non +10,Aube,02,2ème circonscription,6,14,F,FONTAINE-GARCIA,Salomé,09/08/1984,ENS,Agriculteur sur moyenne exploitation,Non,M,VIGNEZ,Valentin,05/08/1992,Non +10,Aube,02,2ème circonscription,7,17,F,FRAINCART,Sarah,06/07/1999,NUP,"Elève, étudiant",Non,M,ZAHOUANI,Mohamed,24/05/1990,Non +10,Aube,02,2ème circonscription,8,9,M,IGNATOVITCH,Etienne,01/04/1962,REC,Ingénieur et cadre technique d'entreprise,Non,M,LEFEVRE,Jean-Christophe,27/09/1987,Non +10,Aube,02,2ème circonscription,9,21,F,BAZIN-MALGRAS,Valérie,31/10/1969,LR,Cadre administratif et commercial d'entreprise,Oui,M,DE LA HAMAYDE,Bernard,20/02/1952,Non +10,Aube,03,3ème circonscription,1,11,M,ANDRIEUX,Pascal,13/08/1957,DXG,Ancien cadre,Non,F,CARDOSO,Déolinda,11/10/1973,Non +10,Aube,03,3ème circonscription,2,28,F,FERNANDEZ,Laure,20/04/1977,DSV,Employé civil et agent de service de la fonction publique,Non,M,DORE,Philippe,08/12/1965,Non +10,Aube,03,3ème circonscription,3,18,M,SEFFALS,Gaëtan,27/10/1992,NUP,"Professeur, profession scientifique",Non,F,BIANCO,Maria,03/10/1959,Non +10,Aube,03,3ème circonscription,4,29,M,HELICK,Lyonnel,26/06/1991,DSV,Profession intermédiaire de la santé et du travail social,Non,M,BANSAC,Clément,28/06/1993,Non +10,Aube,03,3ème circonscription,5,27,M,MENISSIER,Dominique,29/04/1957,ECO,Ancien cadre,Non,F,TAIEB,Audrey,26/07/1980,Non +10,Aube,03,3ème circonscription,6,19,F,BEURY,Loëtitia,30/11/1973,ENS,Chef d'entreprise de 10 salariés ou plus,Non,M,JURCZAK,Marc,20/02/1969,Non +10,Aube,03,3ème circonscription,7,3,F,LOPES VAZ,Céline,11/12/1999,REC,"Elève, étudiant",Non,M,WIEL,Maurice,05/09/1938,Non +10,Aube,03,3ème circonscription,8,22,M,GATOUILLAT,Baptiste,10/01/1984,LR,Agriculteur sur moyenne exploitation,Non,F,LANTHIEZ,Raphaële,25/07/1966,Non +10,Aube,03,3ème circonscription,9,12,M,FREVILLE,Didier,29/03/1970,DVC,Employé civil et agent de service de la fonction publique,Non,F,FREY,Valentine,25/05/1992,Non +10,Aube,03,3ème circonscription,10,4,F,RANC,Angélique,16/03/1988,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CROQUET,Nicolas,07/07/1978,Non +10,Aube,03,3ème circonscription,11,25,F,COLLOT-TOUZÉ,Nelly,09/12/1965,ECO,Commerçant et assimilé,Non,M,WYSOCINSKI,Ghislain,18/10/1964,Non +11,Aude,01,1ère circonscription,1,10,M,ROULLIAUX,Axel,06/01/2000,REC,"Elève, étudiant",Non,M,COFFINET,Fabrice,03/08/1967,Non +11,Aude,01,1ère circonscription,2,34,F,AMALRIC,Laure-Nelly,09/01/1982,ECO,Cadre administratif et commercial d'entreprise,Non,F,SOULIER,Frédérique,11/02/1977,Non +11,Aude,01,1ère circonscription,3,6,F,DANDEU,Patricia,23/09/1961,ECO,Ancien cadre,Non,F,GODARD,Sylvie,06/03/1956,Non +11,Aude,01,1ère circonscription,4,19,F,SIKORA,Juliette,17/05/1960,DIV,Ouvrier qualifié de type industriel,Non,M,CREBASSA,Yves,04/08/1952,Non +11,Aude,01,1ère circonscription,5,20,M,BIASOLI,Gilbert,26/12/1951,DSV,Ingénieur et cadre technique d'entreprise,Non,F,PAYAN,Caroline,16/09/1979,Non +11,Aude,01,1ère circonscription,6,7,M,BARTHÈS,Christophe,12/10/1966,RN,Agriculteur sur moyenne exploitation,Non,M,MONTAGNÉ,Edgar,06/02/1988,Non +11,Aude,01,1ère circonscription,7,26,F,GADRAT,Nicole,13/09/1946,DXG,"Professeur, profession scientifique",Non,M,ISIERTE,Prosper,30/06/1948,Non +11,Aude,01,1ère circonscription,8,17,M,PEREZ,Laurent,16/06/1965,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,PERALEZ,Gérard,05/12/1960,Non +11,Aude,01,1ère circonscription,9,9,F,COURRIÈRE CALMON,Sophie,24/02/1965,NUP,"Professeur, profession scientifique",Non,M,RENARD,Denis,29/03/1955,Non +11,Aude,01,1ère circonscription,10,18,F,HÉRIN,Danièle,14/01/1947,ENS,"Professeur, profession scientifique",Oui,M,SENTENAC,Jacques,03/03/1967,Non +11,Aude,02,2ème circonscription,1,4,M,ROCHER,Edouard,25/11/1972,RDG,Profession libérale,Non,F,PUJOL,Sophie,28/08/1967,Non +11,Aude,02,2ème circonscription,2,5,M,FALCON,Frédéric,21/11/1985,RN,Commerçant et assimilé,Non,F,PHILIPPE,Laure-Emmanuelle,16/02/1977,Non +11,Aude,02,2ème circonscription,3,37,M,VASSEUR,Baptiste,07/04/1990,DVG,Cadre administratif et commercial d'entreprise,Non,F,BELZUNCES,Myriam,05/04/1970,Non +11,Aude,02,2ème circonscription,4,22,F,MONTERO-VALLE,Valérie,07/05/1963,ECO,Profession libérale,Non,F,PESHKOVA,Alina,02/01/1998,Non +11,Aude,02,2ème circonscription,5,21,M,LENFANT,Gérard,21/06/1975,DIV,"Professeur des écoles, instituteur et assimilé",Non,F,MALRIC,Coralie,05/01/1985,Non +11,Aude,02,2ème circonscription,6,36,M,THOMAS,Francis,23/07/1956,DSV,Ancien cadre,Non,F,LUMPP,Sophie,06/02/1952,Non +11,Aude,02,2ème circonscription,7,28,M,CALGARO,Christian,16/10/1962,DVC,Commerçant et assimilé,Non,F,PRIELS,Sara,23/11/1971,Non +11,Aude,02,2ème circonscription,8,14,F,THIVENT,Viviane,01/05/1977,NUP,"Professeur, profession scientifique",Non,M,TAURAND,Francis,19/05/1951,Non +11,Aude,02,2ème circonscription,9,33,M,CAMBON,Cyril,15/03/1968,ECO,Profession libérale,Non,F,SAGNES,Danaë,15/06/1992,Non +11,Aude,02,2ème circonscription,10,27,F,VIGIER,Annette,25/05/1949,DXG,Ancien employé,Non,M,DELEGUE,Salvy,31/08/1972,Non +11,Aude,02,2ème circonscription,11,8,M,DARAUD,Jean-François,21/03/1955,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,PETROVIC,Milanka,11/12/1974,Non +11,Aude,02,2ème circonscription,12,11,M,PEREA,Alain,05/06/1971,ENS,Cadre de la fonction publique,Oui,F,ESCUR,Anisa,22/08/1973,Non +11,Aude,02,2ème circonscription,13,35,M,ESTRADE,Quentin,04/05/1996,LR,"Elève, étudiant",Non,F,GILLIOUARD,Marina,10/05/1997,Non +11,Aude,02,2ème circonscription,14,38,M,MIRABILE,Fabien,27/07/1977,ECO,Employé civil et agent de service de la fonction publique,Non,F,BENOIST,Any,31/12/1983,Non +11,Aude,03,3ème circonscription,1,32,M,TURCHETTO,Aurélien,16/06/1981,RDG,Commerçant et assimilé,Non,M,JOUY,Pierre,19/08/1981,Non +11,Aude,03,3ème circonscription,2,31,M,MARTINEZ,Pierre,21/10/1979,ECO,Ouvrier qualifié de type artisanal,Non,M,CASALES,José,27/05/1971,Non +11,Aude,03,3ème circonscription,3,2,M,RANCOULE,Julien,31/07/1993,RN,Profession libérale,Non,F,SALVISBERG,Geneviève,30/04/1951,Non +11,Aude,03,3ème circonscription,4,23,F,HABERT,Martine,13/09/1959,DSV,Cadre administratif et commercial d'entreprise,Non,F,ROQUES,Marie-Christine,16/03/1956,Non +11,Aude,03,3ème circonscription,5,12,F,DUCOM,Valérie,11/03/1968,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,PALACZ,Marc,05/03/1968,Non +11,Aude,03,3ème circonscription,6,24,M,MARTIN,Michel,19/10/1951,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,COUCURON,Wilfrid,21/02/1971,Non +11,Aude,03,3ème circonscription,7,3,F,ROBERT,Mireille,01/03/1962,ENS,"Professeur des écoles, instituteur et assimilé",Oui,M,FAU,Philippe,30/09/1963,Non +11,Aude,03,3ème circonscription,8,13,F,ADDA--NETTER,Johanna,21/02/1996,NUP,Ingénieur et cadre technique d'entreprise,Non,M,ROUYRE,Denis,14/04/1960,Non +11,Aude,03,3ème circonscription,9,25,M,CROS,Jacques,26/01/1955,ECO,Profession libérale,Non,F,MARCHENKO,Tamila,11/04/1972,Non +11,Aude,03,3ème circonscription,10,29,F,POTTIER,Carine,20/07/1972,UDI,Technicien,Non,F,AMRANI,Safia,21/08/1993,Non +11,Aude,03,3ème circonscription,11,30,M,GALONNIER,Dominique,23/02/1965,DXG,"Professeur, profession scientifique",Non,F,SANCHEZ,Hélène,20/08/1962,Non +12,Aveyron,01,1ère circonscription,1,24,M,DA CRUZ,Antoine,03/09/1967,DVD,Artisan,Non,F,CHAUSSADE,Christelle,15/12/1972,Non +12,Aveyron,01,1ère circonscription,2,13,M,BES DE BERC,Godefroy,30/03/1960,REC,Commerçant et assimilé,Non,M,BOURRILLON,Laurent,18/05/1993,Non +12,Aveyron,01,1ère circonscription,3,5,M,MAZARS,Stéphane,25/03/1969,ENS,Profession libérale,Oui,F,CESTRIERES,Pauline,24/03/1977,Non +12,Aveyron,01,1ère circonscription,4,8,F,PLANE,Julia,03/04/1984,RN,Employé administratif d'entreprise,Non,M,CANTAGREL,Roméo,28/07/1974,Non +12,Aveyron,01,1ère circonscription,5,26,F,SAINT-AVIT,Arlette,04/07/1962,DXG,Employé civil et agent de service de la fonction publique,Non,M,COSTES,Raymond,21/05/1956,Non +12,Aveyron,01,1ère circonscription,6,25,F,BESSAOU,Magali,10/09/1968,LR,Cadre administratif et commercial d'entreprise,Non,M,COSTES,Sébastien,13/07/1976,Non +12,Aveyron,01,1ère circonscription,7,17,F,DUMAY,Marie-Françoise,31/08/1957,ECO,Profession intermédiaire de la santé et du travail social,Non,M,DUMAY,Claudio,29/10/1955,Non +12,Aveyron,01,1ère circonscription,8,16,M,THEBAULT,Léon,17/01/2001,NUP,"Elève, étudiant",Non,F,DUBOIS,Alexandra,11/11/1972,Non +12,Aveyron,01,1ère circonscription,9,30,M,ARMET,Jean-Philippe,29/05/1977,DSV,Employé civil et agent de service de la fonction publique,Non,F,BRICHLER,Annick,07/06/1974,Non +12,Aveyron,02,2ème circonscription,1,11,M,DEGUARA,Samuel,05/04/1977,ENS,Cadre administratif et commercial d'entreprise,Non,F,BLANC,Anne,20/07/1966,Oui +12,Aveyron,02,2ème circonscription,2,14,M,ALEXANDRE,Laurent,09/06/1973,NUP,Ouvrier qualifié de type industriel,Non,F,PIC,Dorothée,26/08/1978,Non +12,Aveyron,02,2ème circonscription,3,15,M,AT,André,21/09/1966,LR,Agriculteur sur moyenne exploitation,Non,F,CAMBOULAS,Marie-Laure,25/11/1980,Non +12,Aveyron,02,2ème circonscription,4,27,M,BARTHE,Florian,04/06/1991,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,SAINT-GIRONS,Anthony,14/11/1989,Non +12,Aveyron,02,2ème circonscription,5,6,M,LELEU,Bruno,31/10/1972,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,D'ANGELO,Lucien,14/07/1952,Non +12,Aveyron,02,2ème circonscription,6,12,M,DUVAL,Dominique,10/03/1957,REC,Ancien cadre,Non,M,GINISTY,François,22/06/1996,Non +12,Aveyron,02,2ème circonscription,7,28,F,EL HEDRI,Lucile,20/01/1972,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,MARTY,Christian,25/01/1961,Non +12,Aveyron,02,2ème circonscription,8,9,M,CANTOURNET,Eric,28/12/1966,RDG,Profession intermédiaire administrative de la fonction publique,Non,M,MOUYSSET,René,25/12/1952,Non +12,Aveyron,02,2ème circonscription,9,18,M,VIDAL,Jean-Luc,07/08/1964,DSV,Profession libérale,Non,F,TORNIL,Géraldine,10/05/1966,Non +12,Aveyron,02,2ème circonscription,10,19,F,CASSARINI,Myriam,03/08/1972,ECO,"Professeur, profession scientifique",Non,F,MARCHON,Marie-Hélène,14/02/1977,Non +12,Aveyron,02,2ème circonscription,11,23,M,CLERGUE,Dominique,29/07/1953,DVG,Ancienne profession intermédiaire,Non,F,LEPACHELET,Isabelle,25/01/1963,Non +12,Aveyron,03,3ème circonscription,1,29,M,COMBES,Bernard,10/03/1961,DXG,Technicien,Non,F,BARDANOUVE,Fanny,08/07/1981,Non +12,Aveyron,03,3ème circonscription,2,3,M,ROUSSET,Jean-François,09/09/1952,ENS,Profession libérale,Non,M,WOROU,Simon,28/01/1971,Non +12,Aveyron,03,3ème circonscription,3,10,F,TENDIL,Lysiane,10/08/1976,REC,"Professeur, profession scientifique",Non,M,BELLER-TOLVE,Bob,06/01/1951,Non +12,Aveyron,03,3ème circonscription,4,2,M,RHIN,Michel,15/02/1970,NUP,"Professeur, profession scientifique",Non,F,VALABREGUE,Camille,30/06/1987,Non +12,Aveyron,03,3ème circonscription,5,22,M,SAINT-PIERRE,Christophe,13/08/1966,LR,"Professeur, profession scientifique",Non,F,BOU-CALMES,Marie-Chantal,25/08/1960,Non +12,Aveyron,03,3ème circonscription,6,7,M,CAZORLA,Jean Christophe,21/01/1969,RN,Commerçant et assimilé,Non,F,ABOUDOU,Inchati,26/11/1980,Non +12,Aveyron,03,3ème circonscription,7,4,M,NOEL,Thierry,10/06/1961,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,POUGET,Brigitte,03/06/1957,Non +12,Aveyron,03,3ème circonscription,8,20,M,MIRAN,Patrice,22/05/1960,ECO,Cadre de la fonction publique,Non,M,ABOUSSOUAN,Pierre,08/09/1980,Non +12,Aveyron,03,3ème circonscription,9,21,M,DAURES,Jean-Marie,26/12/1960,DVD,Agriculteur sur moyenne exploitation,Non,M,MILESI,Jean,10/03/1943,Non +13,Bouches-du-Rhône,01,1ère circonscription,1,83,F,GRECH,Sophie,03/08/1985,REC,Policier et militaire,Non,M,FERRATO,Patrice,09/07/1974,Non +13,Bouches-du-Rhône,01,1ère circonscription,2,194,M,BONNARD,Xavier,02/10/1974,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,BENICHOU,Oriane,10/04/1983,Non +13,Bouches-du-Rhône,01,1ère circonscription,3,181,F,CHENNOUF,Ferielle,03/06/1987,ECO,Employé civil et agent de service de la fonction publique,Non,M,AKSIL,Julien,05/07/1985,Non +13,Bouches-du-Rhône,01,1ère circonscription,4,4,M,CECONE,Marc,09/02/1958,DXG,Ouvrier qualifié de type industriel,Non,F,LACLAU,Nathalie,23/06/1958,Non +13,Bouches-du-Rhône,01,1ère circonscription,5,17,F,CARAVELLAZI,Céline,18/06/1974,DSV,Artisan,Non,F,DAVIDSON,Sophie,15/10/1961,Non +13,Bouches-du-Rhône,01,1ère circonscription,6,163,M,GIOIA,Victor,21/12/1967,DVD,Profession libérale,Non,F,BEJAOUI,Malika,28/03/1967,Non +13,Bouches-du-Rhône,01,1ère circonscription,7,202,M,AVRIL,Julien,26/09/1995,DIV,Ingénieur et cadre technique d'entreprise,Non,M,BUNEL,Jean-François,13/11/1987,Non +13,Bouches-du-Rhône,01,1ère circonscription,8,46,F,JABES,Flora,11/01/1990,ECO,Employé administratif d'entreprise,Non,F,VERGER,Jennifer,06/06/1987,Non +13,Bouches-du-Rhône,01,1ère circonscription,9,124,M,ROSIQUE,Thibaud,07/05/1996,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,HENRY,Nathalie,25/07/1986,Non +13,Bouches-du-Rhône,01,1ère circonscription,10,157,F,LANZALAVI,Marie,29/12/2000,REG,"Elève, étudiant",Non,M,SAVELLI,Joseph,27/03/1986,Non +13,Bouches-du-Rhône,01,1ère circonscription,11,74,F,GRISETI,Monique,23/07/1960,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,KELLER,Arnaud,18/07/1998,Non +13,Bouches-du-Rhône,01,1ère circonscription,12,113,F,AGRESTI ROUBACHE,Sabrina,13/10/1976,ENS,Profession libérale,Non,M,PARAKIAN,Didier,05/03/1964,Non +13,Bouches-du-Rhône,01,1ère circonscription,13,136,F,BOUALEM-AUBERT,Sarah,11/01/1980,LR,Cadre administratif et commercial d'entreprise,Non,M,DARMAGNAC,Jean-François,04/11/1951,Non +13,Bouches-du-Rhône,02,2ème circonscription,1,174,M,ASSOULY,Avi,05/06/1950,ECO,"Profession de l'information, des arts et des spectacles",Non,F,PLACIDE,Annette,04/03/1954,Non +13,Bouches-du-Rhône,02,2ème circonscription,2,107,F,DENNEVAL,Florence,03/05/1982,ECO,Employé civil et agent de service de la fonction publique,Non,M,MONTIGNY,Damien,14/11/1985,Non +13,Bouches-du-Rhône,02,2ème circonscription,3,128,F,ERMACORA,Hélène,06/10/1976,DSV,Profession intermédiaire de la santé et du travail social,Non,M,DUTILLEUL,Serge,15/12/1970,Non +13,Bouches-du-Rhône,02,2ème circonscription,4,178,M,SURRY,Dominique,17/02/1948,ECO,Ancien cadre,Non,F,NATALINI,Raymonde,15/02/1944,Non +13,Bouches-du-Rhône,02,2ème circonscription,5,55,F,PITOLLAT,Claire,17/09/1979,ENS,Ingénieur et cadre technique d'entreprise,Oui,M,ROMAN,Christophe,15/05/1981,Non +13,Bouches-du-Rhône,02,2ème circonscription,6,115,M,PERETTI,Sébastien,27/11/1971,DIV,Profession intermédiaire de la santé et du travail social,Non,M,PERETTI,Jean Marc,27/06/1945,Non +13,Bouches-du-Rhône,02,2ème circonscription,7,59,F,PARODI,Clémence,21/10/1958,RN,Artisan,Non,M,ESCAVI,Hubert,29/04/1995,Non +13,Bouches-du-Rhône,02,2ème circonscription,8,179,M,PERSIA,Alain,03/04/1953,DIV,Profession libérale,Non,F,GRIMAUDO,Béatrice,19/09/1967,Non +13,Bouches-du-Rhône,02,2ème circonscription,9,146,F,ESPAZE,Brigitte,10/02/1957,DXG,Employé civil et agent de service de la fonction publique,Non,F,LAGRANGE,Noëlle,25/12/1946,Non +13,Bouches-du-Rhône,02,2ème circonscription,10,125,F,BERNASCONI,Sabine,23/11/1970,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,TANI,Didier,21/09/1970,Non +13,Bouches-du-Rhône,02,2ème circonscription,11,42,M,RUPNIK,Alexandre,22/04/1994,NUP,"Elève, étudiant",Non,F,MICAELLI,Caroline,30/09/1980,Non +13,Bouches-du-Rhône,02,2ème circonscription,12,91,M,GRAFFEO,Jean-Marc,16/06/1990,REC,Cadre administratif et commercial d'entreprise,Non,F,TEBOUL,Isabelle,17/11/1964,Non +13,Bouches-du-Rhône,03,3ème circonscription,1,60,F,LELOUIS,Gisèle,10/03/1952,RN,Ancien employé,Non,M,CHARPENTIER,Thibaut,13/02/1987,Non +13,Bouches-du-Rhône,03,3ème circonscription,2,183,F,SI AHMED,Nadia,27/05/1969,ECO,Profession intermédiaire de la santé et du travail social,Non,F,BRUNEL,Claude,11/04/1953,Non +13,Bouches-du-Rhône,03,3ème circonscription,3,53,M,BENSAADA,Mohamed,08/10/1968,NUP,Profession intermédiaire de la santé et du travail social,Non,F,GOMIS,Bénédicte,23/08/1964,Non +13,Bouches-du-Rhône,03,3ème circonscription,4,197,F,SAID,Elisabeth,29/08/1979,ECO,Commerçant et assimilé,Non,M,LACOSTA,Quentin,12/05/1993,Non +13,Bouches-du-Rhône,03,3ème circonscription,5,86,F,D'ANGIO,Sandrine,18/12/1981,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DUDIEUZERE,Cédric,09/09/1972,Non +13,Bouches-du-Rhône,03,3ème circonscription,6,14,M,TORDJMANN,Adam,20/02/1986,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,GIUSTINIANI,Léa,29/04/1993,Non +13,Bouches-du-Rhône,03,3ème circonscription,7,56,F,LOUIS,Alexandra,17/09/1983,ENS,Profession libérale,Oui,M,BLANC,Gérard,23/12/1977,Non +13,Bouches-du-Rhône,03,3ème circonscription,8,96,M,COCAIGN,Bruno,21/05/1954,DVC,Profession intermédiaire de la santé et du travail social,Non,F,VANDRAME,Elsa,18/07/1969,Non +13,Bouches-du-Rhône,03,3ème circonscription,9,3,M,PAPPALARDO,Patrick,01/01/1951,LR,Profession libérale,Non,F,BIRGIN,Corinne,18/05/2000,Non +13,Bouches-du-Rhône,03,3ème circonscription,10,188,F,BELKAROUI,Nora,05/02/1978,REG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DEULOFEU,Henri José Jean,02/08/1944,Non +13,Bouches-du-Rhône,03,3ème circonscription,11,2,F,GRANDEL,Jacqueline,16/03/1953,DXG,Cadre administratif et commercial d'entreprise,Non,F,DUSSOULIER,Alexandra,24/07/1979,Non +13,Bouches-du-Rhône,04,4ème circonscription,1,177,F,VINCETTI,Elisabeth,17/10/1970,ECO,Personnel des services directs aux particuliers,Non,M,PINELLI-VINCETTI,Thomas,28/07/1993,Non +13,Bouches-du-Rhône,04,4ème circonscription,2,165,F,HEUGUET,Mathilde,13/09/1983,ECO,Cadre administratif et commercial d'entreprise,Non,F,FRAI,Karima,06/04/1973,Non +13,Bouches-du-Rhône,04,4ème circonscription,3,40,F,RASTIT,Sandrine,03/02/1971,REC,Employé administratif d'entreprise,Non,F,SANCHEZ,Sophie,16/04/1973,Non +13,Bouches-du-Rhône,04,4ème circonscription,4,70,F,DUPUY,Martine,09/01/1954,DXG,Ancienne profession intermédiaire,Non,M,BAKER,Nour,11/01/1994,Non +13,Bouches-du-Rhône,04,4ème circonscription,5,155,F,MANICACCI,Léa,16/02/2001,REG,"Elève, étudiant",Non,M,MORISON,Julien,02/04/2002,Non +13,Bouches-du-Rhône,04,4ème circonscription,6,57,F,BONNET,Isabelle,25/06/1965,DXG,"Professeur, profession scientifique",Non,F,HADDAOUI,Iman,06/05/1986,Non +13,Bouches-du-Rhône,04,4ème circonscription,7,139,M,BOMPARD,Manuel,30/03/1986,NUP,Ingénieur et cadre technique d'entreprise,Non,F,SEVIN,Kalila,09/05/1980,Non +13,Bouches-du-Rhône,04,4ème circonscription,8,149,M,BOUALEM,Miloud,17/12/1950,DVC,Ancien cadre,Non,F,GILLY,Hélène,21/11/1958,Non +13,Bouches-du-Rhône,04,4ème circonscription,9,92,M,TELLIER,Julien,07/11/1981,RN,"Contremaître, agent de maîtrise",Non,F,QUINQUIS,Aurélie,23/09/1991,Non +13,Bouches-du-Rhône,04,4ème circonscription,10,122,F,BEN MOHAMED,Kaouther,07/06/1977,DIV,"Profession de l'information, des arts et des spectacles",Non,M,PARAISO,Fall,30/09/1978,Non +13,Bouches-du-Rhône,04,4ème circonscription,11,134,M,BENSAID,Majid,02/08/1977,DIV,Employé de commerce,Non,F,KULYK,Marie,20/08/1945,Non +13,Bouches-du-Rhône,04,4ème circonscription,12,127,M,TIRERA,Wally,09/10/1973,ECO,Profession libérale,Non,F,BOILEAUX,Kheira,24/11/1982,Non +13,Bouches-du-Rhône,04,4ème circonscription,13,85,F,BIAGGI,Solange,19/06/1954,LR,Profession libérale,Non,M,SOTO,Stéphane,01/10/1974,Non +13,Bouches-du-Rhône,04,4ème circonscription,14,116,F,AKODAD,Najat,13/09/1983,ENS,Profession libérale,Non,M,COHEN,Nathan,12/11/1991,Non +13,Bouches-du-Rhône,05,5ème circonscription,1,110,F,RUSSO,Joséphine,11/02/1958,DVC,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BOUGAUD,Eric,30/04/1963,Non +13,Bouches-du-Rhône,05,5ème circonscription,2,189,M,MONFERRINI,Christian,04/06/1959,ECO,Profession libérale,Non,F,BERGASSOLI,Christine,01/04/1967,Non +13,Bouches-du-Rhône,05,5ème circonscription,3,111,M,DE BENSASON,Marc,04/12/1981,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,FONTAINE,Bernard,20/02/1967,Non +13,Bouches-du-Rhône,05,5ème circonscription,4,84,F,PAGANINI,Vannina,11/06/1975,DVD,Cadre de la fonction publique,Non,M,ARLAUD,Tristan,05/03/1974,Non +13,Bouches-du-Rhône,05,5ème circonscription,5,13,F,NGUYÊN-VAN,Mai,21/06/1973,DXG,Profession intermédiaire de la santé et du travail social,Non,M,ALI,Ibrahim,18/12/1980,Non +13,Bouches-du-Rhône,05,5ème circonscription,6,33,F,ANTOINE,Maryline,18/12/1966,LR,Artisan,Non,M,LA SCALA,Hervé,29/06/1971,Non +13,Bouches-du-Rhône,05,5ème circonscription,7,172,M,BELAÏD,Mourad,26/06/1978,DVC,Cadre administratif et commercial d'entreprise,Non,F,DESLOT,Charlotte,01/01/1980,Non +13,Bouches-du-Rhône,05,5ème circonscription,8,153,M,DIDOUNE,Djamel,23/02/1961,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,AGLIARDI,Virginie,15/06/1991,Non +13,Bouches-du-Rhône,05,5ème circonscription,9,95,F,RACON-BOUZON,Cathy,22/11/1976,ENS,Cadre administratif et commercial d'entreprise,Oui,M,DEIDDA,Clément,19/02/1990,Non +13,Bouches-du-Rhône,05,5ème circonscription,10,35,F,MANIVET,Marine,10/06/1993,REC,Cadre administratif et commercial d'entreprise,Non,M,DURIEUX,Louis-Xavier,24/10/2001,Non +13,Bouches-du-Rhône,05,5ème circonscription,11,100,F,MALHOLE,Nathalie,17/06/1963,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,EPPSTEIN,Gérard,17/08/1946,Non +13,Bouches-du-Rhône,05,5ème circonscription,12,69,M,VINAPON,Georges,22/04/1963,DVG,Profession libérale,Non,M,BOURGEON,Stéphane,23/02/1970,Non +13,Bouches-du-Rhône,05,5ème circonscription,13,106,F,DURAND,Céline,08/02/1981,ECO,"Profession de l'information, des arts et des spectacles",Non,M,FORNO,Yannick,15/08/1974,Non +13,Bouches-du-Rhône,05,5ème circonscription,14,103,M,DAVI,Hendrik,21/12/1977,NUP,"Professeur, profession scientifique",Non,F,TOURNIER,Pauline,03/11/1985,Non +13,Bouches-du-Rhône,05,5ème circonscription,15,190,F,CHAMAYOU,Anne,22/09/1976,DIV,Ingénieur et cadre technique d'entreprise,Non,M,BISQUERRA,Alexandre,04/08/1986,Non +13,Bouches-du-Rhône,05,5ème circonscription,16,102,M,VINCETTI,Quentin,08/01/1996,ECO,Chef d'entreprise de 10 salariés ou plus,Non,M,BICHI,Arnaud,03/05/1999,Non +13,Bouches-du-Rhône,05,5ème circonscription,17,93,F,LAMBERT,Sandrine,25/05/1991,RN,Technicien,Non,M,LIQUORI,Franck,19/08/1964,Non +13,Bouches-du-Rhône,06,6ème circonscription,1,196,M,GOULTINE,Eddie,19/03/1994,DVG,Chef d'entreprise de 10 salariés ou plus,Non,M,ILONGO,Wilfried,16/10/1977,Non +13,Bouches-du-Rhône,06,6ème circonscription,2,54,F,BEZ,Éléonore,24/06/1976,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PASQUINI,Claude,09/04/1954,Non +13,Bouches-du-Rhône,06,6ème circonscription,3,142,M,JOUBERT,Michel,24/08/1950,DSV,Profession libérale,Non,F,GAUTHIER,Annie,08/11/1945,Non +13,Bouches-du-Rhône,06,6ème circonscription,4,90,F,HOLAGNE,Magali,22/07/1987,NUP,"Professeur, profession scientifique",Non,M,SEMERIVA,Pierre,15/10/1965,Non +13,Bouches-du-Rhône,06,6ème circonscription,5,171,F,HAMICHE,Fazia,15/09/1970,ECO,Commerçant et assimilé,Non,M,CAMERA,Laurent,01/12/1972,Non +13,Bouches-du-Rhône,06,6ème circonscription,6,154,F,MOREL,Corinne,12/01/1961,DXG,Employé civil et agent de service de la fonction publique,Non,F,LIGNON,Cosette,30/03/1951,Non +13,Bouches-du-Rhône,06,6ème circonscription,7,148,M,REAULT,Didier,22/12/1967,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,SANTELLI,Thierry,21/07/1970,Non +13,Bouches-du-Rhône,06,6ème circonscription,8,37,F,HOCINI,Sophia,23/03/1993,DVG,Profession intermédiaire de la santé et du travail social,Non,M,ACCARIER,Étienne,15/06/1996,Non +13,Bouches-du-Rhône,06,6ème circonscription,9,36,M,LAUMONIER,Dominique,06/04/1966,ECO,Ingénieur et cadre technique d'entreprise,Non,F,LAPEYRE,Charlotte,16/01/1997,Non +13,Bouches-du-Rhône,06,6ème circonscription,10,87,M,DUBREUIL,Richard,21/11/1988,REC,Profession libérale,Non,F,RINALDI,Marie-Flore,14/10/1981,Non +13,Bouches-du-Rhône,06,6ème circonscription,11,158,F,LAREDO,Clara-Maria,09/06/2003,REG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CECCALDI,Mathieu,21/09/1974,Non +13,Bouches-du-Rhône,06,6ème circonscription,12,168,M,ROYER-PERREAUT,Lionel,13/11/1972,ENS,Cadre de la fonction publique,Non,F,CHARAFE,Emmanuelle,22/08/1970,Non +13,Bouches-du-Rhône,06,6ème circonscription,13,27,F,COLLETTE,Angélique,11/10/1990,ECO,Cadre administratif et commercial d'entreprise,Non,M,CORTEZ,Sylvain,26/03/1984,Non +13,Bouches-du-Rhône,06,6ème circonscription,14,109,F,GOY,Sophie,11/11/1971,DVC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,FILOSA,Patrick,05/12/1954,Non +13,Bouches-du-Rhône,07,7ème circonscription,1,88,M,SELLOUM,Arezki,11/03/1970,RN,Employé civil et agent de service de la fonction publique,Non,F,FONT,Jacqueline,16/07/1958,Non +13,Bouches-du-Rhône,07,7ème circonscription,2,117,M,AMOUCHE,Ali,23/05/1964,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LOUAFI,Abdelali,21/02/1965,Non +13,Bouches-du-Rhône,07,7ème circonscription,3,143,F,ZEROUALI,Karima,14/10/1977,DIV,"Professeur, profession scientifique",Non,M,TARDIEU,Romain,30/10/1965,Non +13,Bouches-du-Rhône,07,7ème circonscription,4,147,F,PÉCOUT,Danièle,25/10/1950,DXG,Employé civil et agent de service de la fonction publique,Non,F,ROBERT,Evelyne,18/10/1962,Non +13,Bouches-du-Rhône,07,7ème circonscription,5,184,M,PROVÉ,François,04/02/1991,ECO,Profession intermédiaire de la santé et du travail social,Non,F,OULD SLIMANE,Fadila,18/02/1963,Non +13,Bouches-du-Rhône,07,7ème circonscription,6,18,F,MERSALI,Nadia,26/07/1968,ECO,Cadre de la fonction publique,Non,F,ARMOGATHE,Sophie,14/02/2000,Non +13,Bouches-du-Rhône,07,7ème circonscription,7,24,M,DELOGU,Sébastien,08/06/1987,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,F,HAMADI,Farida,12/10/1980,Non +13,Bouches-du-Rhône,07,7ème circonscription,8,9,M,LONGO,Lorenzo,06/11/2002,REC,"Elève, étudiant",Non,M,BOETTO,Julien,29/06/1990,Non +13,Bouches-du-Rhône,07,7ème circonscription,9,144,F,BOVÉ,Sandrine,30/07/1964,ECO,Profession libérale,Non,F,PAOLINI,Mylène,06/06/1973,Non +13,Bouches-du-Rhône,07,7ème circonscription,10,203,F,MEUCHE,Jacobine,07/02/1966,ECO,"Professeur, profession scientifique",Non,M,MONTERO,Richard,08/04/1995,Non +13,Bouches-du-Rhône,07,7ème circonscription,11,26,M,CHABOUNI,Nourdine,08/12/1967,DIV,Ingénieur et cadre technique d'entreprise,Non,F,SADELLI,Cindy,27/08/1991,Non +13,Bouches-du-Rhône,07,7ème circonscription,12,66,M,PERNICE,Stéphane,06/08/1975,DXG,"Professeur, profession scientifique",Non,F,ROMAGNÉ,Nathalie,06/07/1970,Non +13,Bouches-du-Rhône,07,7ème circonscription,13,195,M,DELERIA,Raymond,11/07/1949,UDI,Ancien cadre,Non,F,THAGOUTI,Rafika,21/05/1967,Non +13,Bouches-du-Rhône,07,7ème circonscription,14,187,M,AHAMADA,Saïd,07/11/1972,ENS,Cadre de la fonction publique,Oui,F,CHABROL,Brigitte,26/10/1958,Non +13,Bouches-du-Rhône,08,8ème circonscription,1,8,M,BAZZALI,Rémy,20/10/1974,DXG,Technicien,Non,F,FRESSIGNAUD,Véronique,02/04/1963,Non +13,Bouches-du-Rhône,08,8ème circonscription,2,173,F,IMBERT,Sophie,09/04/1973,DIV,Commerçant et assimilé,Non,M,BEAUDEAU,Christophe,08/07/1971,Non +13,Bouches-du-Rhône,08,8ème circonscription,3,180,M,AKSIL,Boualam,29/12/1960,ECO,Ancien employé,Non,F,SASSI,Monia,07/05/1973,Non +13,Bouches-du-Rhône,08,8ème circonscription,4,52,M,FARGE,Jean-Michel,23/02/1967,REC,Commerçant et assimilé,Non,M,BAUDINO,Antoine,29/01/1992,Non +13,Bouches-du-Rhône,08,8ème circonscription,5,47,M,DELIGNY,Eric,26/10/1967,NUP,Technicien,Non,F,COLOMBAN,Nathalie,13/06/1963,Non +13,Bouches-du-Rhône,08,8ème circonscription,6,21,M,GAGO-CHIDAINE,Victor,18/03/1985,ECO,Employé de commerce,Non,F,POUESSEL,Catherine,26/11/1951,Non +13,Bouches-du-Rhône,08,8ème circonscription,7,50,M,MEHL,Daniel,30/01/1949,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,DAUDE,Claire,09/05/1970,Non +13,Bouches-du-Rhône,08,8ème circonscription,8,108,M,ZULESI,Jean-Marc,06/06/1988,ENS,Ingénieur et cadre technique d'entreprise,Oui,M,VERAN,Philippe,16/10/1965,Non +13,Bouches-du-Rhône,08,8ème circonscription,9,73,M,TONUSSI,Romain,09/04/1996,RN,Profession intermédiaire administrative de la fonction publique,Non,M,CAPTIER,Daniel,21/12/1959,Non +13,Bouches-du-Rhône,08,8ème circonscription,10,6,M,YTIER,David,05/10/1990,LR,"Professeur, profession scientifique",Non,F,MICELI-HOUDAIS,Sylvie,05/12/1980,Non +13,Bouches-du-Rhône,08,8ème circonscription,11,140,F,GALHARAGUE,Edith,16/11/1950,DSV,Ancien employé,Non,M,ERMACORA,Yvon,08/10/1946,Non +13,Bouches-du-Rhône,09,9ème circonscription,1,68,M,OTCHAKOVSKY,François,01/04/1972,DXG,"Professeur, profession scientifique",Non,M,CLOREC,Jean-Marie,15/04/1952,Non +13,Bouches-du-Rhône,09,9ème circonscription,2,191,M,LACHIQUE,Simon,02/10/1971,ECO,Profession libérale,Non,F,PASCAL,Michèle,25/11/1954,Non +13,Bouches-du-Rhône,09,9ème circonscription,3,201,M,MICHEL,Aurélien,28/02/1982,DIV,Policier et militaire,Non,F,BOATTI,Marido,01/10/1967,Non +13,Bouches-du-Rhône,09,9ème circonscription,4,198,M,BENARIOUA,Rebia,30/01/1953,DVG,Ancien cadre,Non,M,GONZADI,Michel,12/09/1959,Non +13,Bouches-du-Rhône,09,9ème circonscription,5,15,F,LEGUEM,Laurence,11/05/1967,REC,Artisan,Non,F,ALLIONE,Laura,16/02/1997,Non +13,Bouches-du-Rhône,09,9ème circonscription,6,43,M,TROTTMANN,Lucas,21/04/1992,NUP,Cadre de la fonction publique,Non,F,SAMBOU SAIVET,Bernadette,02/10/1979,Non +13,Bouches-du-Rhône,09,9ème circonscription,7,131,F,KNEZEVIC,Hélène,06/05/1969,DSV,Cadre de la fonction publique,Non,M,BLAISE,Arnaud,12/01/1990,Non +13,Bouches-du-Rhône,09,9ème circonscription,8,82,M,GIBERTI,Roland,02/03/1951,LR,Ancien cadre,Non,F,SALVO,Arlette,13/03/1946,Non +13,Bouches-du-Rhône,09,9ème circonscription,9,38,M,REYNAUD,Jean,20/04/1947,REG,Ancien cadre,Non,F,BELHOMME,Delphine,23/06/1969,Non +13,Bouches-du-Rhône,09,9ème circonscription,10,94,M,MAS-FRAISSINET,Bertrand,18/10/1973,ENS,Cadre de la fonction publique,Non,F,GUIDET,Flora,11/09/1974,Non +13,Bouches-du-Rhône,09,9ème circonscription,11,104,M,SCHIPANI,Giovanni,02/08/1990,DVD,Cadre administratif et commercial d'entreprise,Non,M,SZABO,Frédéric,17/04/1966,Non +13,Bouches-du-Rhône,09,9ème circonscription,12,126,F,RAYNAUD,Coralie,03/11/1977,DXG,"Professeur, profession scientifique",Non,M,GUIGUE,Jean,15/11/1957,Non +13,Bouches-du-Rhône,09,9ème circonscription,13,20,M,COMBO,Daniel,05/01/1970,ECO,Employé civil et agent de service de la fonction publique,Non,M,OLLIER,Gilbert,01/06/1965,Non +13,Bouches-du-Rhône,09,9ème circonscription,14,89,F,BREGEON,Amélie,02/09/1985,DVC,Cadre de la fonction publique,Non,M,DEMECH,Eric,07/10/1959,Non +13,Bouches-du-Rhône,09,9ème circonscription,15,29,F,MÉLIN,Joëlle,26/03/1950,RN,Profession libérale,Non,M,ITRAC,Hervé,27/01/1952,Non +13,Bouches-du-Rhône,10,10ème circonscription,1,141,F,MESURE,Marina,12/07/1989,NUP,Cadre de la fonction publique,Non,M,BESSAIH,Jimmy,02/11/1987,Non +13,Bouches-du-Rhône,10,10ème circonscription,2,48,M,DAUDE,Patrice,19/10/1972,ECO,Technicien,Non,F,SEVILLA DELEUZIERE,Sandrine,26/11/1970,Non +13,Bouches-du-Rhône,10,10ème circonscription,3,30,M,COURTARO,Jean-Philippe,17/09/1989,REC,Profession libérale,Non,F,BENALIKHOUDJA,Jennifer,25/12/1989,Non +13,Bouches-du-Rhône,10,10ème circonscription,4,199,M,VALIENTE,Jean-Claude,26/04/1957,DXG,"Professeur, profession scientifique",Non,F,PERILLAT,Renée,22/11/1948,Non +13,Bouches-du-Rhône,10,10ème circonscription,5,137,F,GOZZI,Magali,24/05/1974,REG,Cadre de la fonction publique,Non,M,PERES-CESARI,Cyril,17/08/2001,Non +13,Bouches-du-Rhône,10,10ème circonscription,6,166,F,BRUN,Stéphanie,06/03/1972,DSV,Ancien employé,Non,M,LLEDO,Frédéric,07/08/1957,Non +13,Bouches-du-Rhône,10,10ème circonscription,7,49,M,GONZALEZ,José,28/04/1943,RN,Ancien employé,Non,M,SIMOND,Stéphane,29/01/1971,Non +13,Bouches-du-Rhône,10,10ème circonscription,8,114,F,COUTENET,Nathalie,19/06/1967,DVC,Profession intermédiaire administrative de la fonction publique,Non,F,CARDI,Chantal,18/02/1949,Non +13,Bouches-du-Rhône,10,10ème circonscription,9,19,M,PEROTTINO,Serge,22/12/1965,LR,Cadre administratif et commercial d'entreprise,Non,F,MIQUELLY,Véronique,15/02/1971,Non +13,Bouches-du-Rhône,10,10ème circonscription,10,80,F,COLANTONIO,Céline,03/08/1975,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,F,CARMONA,Élodie,04/08/1981,Non +13,Bouches-du-Rhône,10,10ème circonscription,11,119,M,MARTI,Robert,31/05/1951,DSV,Profession libérale,Non,F,BOUFAROUA,Wilma,27/09/1963,Non +13,Bouches-du-Rhône,10,10ème circonscription,12,169,F,BOURCET-GINER,Véronique,16/03/1964,ENS,Profession libérale,Non,M,NASLES,Olivier,25/10/1961,Non +13,Bouches-du-Rhône,10,10ème circonscription,13,72,F,DESBLANCS,Lucie,28/10/1963,ECO,Profession libérale,Non,M,OSTACCHINI,Grégory,19/09/1989,Non +13,Bouches-du-Rhône,11,11ème circonscription,1,45,M,BRUN,Rodolphe,28/12/1975,ECO,Technicien,Non,F,BRUILLIAIRE,Lucienne,31/01/1950,Non +13,Bouches-du-Rhône,11,11ème circonscription,2,11,F,MARIA,Charlotte,09/06/1981,DXG,"Professeur, profession scientifique",Non,F,POLI,Valérie,29/12/1969,Non +13,Bouches-du-Rhône,11,11ème circonscription,3,118,M,SALORD,Stéphane,26/01/1969,NUP,Cadre administratif et commercial d'entreprise,Non,F,INAUDI,Rosy,25/11/1950,Non +13,Bouches-du-Rhône,11,11ème circonscription,4,132,M,EL DEBS,Sébastien,08/11/1995,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MENDRAS,Louis-Marie,05/04/1983,Non +13,Bouches-du-Rhône,11,11ème circonscription,5,81,M,PIANO,Jérémie,10/10/1994,REC,Profession libérale,Non,F,DE CORMIS,Marie,01/02/1998,Non +13,Bouches-du-Rhône,11,11ème circonscription,6,130,M,HADJALI,Romain,10/06/1989,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,WASSOUF,Ornella,05/04/1992,Non +13,Bouches-du-Rhône,11,11ème circonscription,7,23,F,FANFAN,Céline,18/07/1970,ECO,Employé civil et agent de service de la fonction publique,Non,F,ALTUN,Laure-Isabelle,24/02/1978,Non +13,Bouches-du-Rhône,11,11ème circonscription,8,97,M,FABRE-AUBRESPY,Hervé,20/07/1956,RN,Cadre de la fonction publique,Non,M,FUSONE,Maximilien,26/04/1980,Non +13,Bouches-du-Rhône,11,11ème circonscription,9,99,M,LAQHILA,Mohamed,03/08/1959,ENS,Profession libérale,Oui,F,CAUWEL,Françoise,09/04/1966,Non +13,Bouches-du-Rhône,11,11ème circonscription,10,150,M,LIBERMAN,Hervé,10/04/1961,UDI,Cadre administratif et commercial d'entreprise,Non,F,SOULAINE,Sandy,15/08/1974,Non +13,Bouches-du-Rhône,11,11ème circonscription,11,138,F,VIRZI,Elodie,03/01/1985,DVC,Employé administratif d'entreprise,Non,M,SEIDENBINDER,Daniel,26/01/1950,Non +13,Bouches-du-Rhône,11,11ème circonscription,12,162,M,DELALANDE,Régis,05/02/1962,REG,Cadre administratif et commercial d'entreprise,Non,F,TAUTIL,Sabine,17/06/1962,Non +13,Bouches-du-Rhône,11,11ème circonscription,13,101,M,CASTEL,Rodolph,18/11/1974,DVG,Cadre administratif et commercial d'entreprise,Non,F,MAZUEL,Geneviève,29/05/1953,Non +13,Bouches-du-Rhône,12,12ème circonscription,1,200,F,CASTANET,Audrey,08/02/1981,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,SALA,Claude,27/02/1975,Non +13,Bouches-du-Rhône,12,12ème circonscription,2,145,M,DJEDOU,Faouzi,21/03/1969,DVG,Profession libérale,Non,F,HAROUN,Houria,06/04/1988,Non +13,Bouches-du-Rhône,12,12ème circonscription,3,120,M,DELESPAUL,Hervé,03/09/1957,DSV,Ancien cadre,Non,M,RODRIGUES,Eric,30/08/1988,Non +13,Bouches-du-Rhône,12,12ème circonscription,4,41,M,CLOSTERMANN,Jacques,24/01/1950,REC,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,CONSALES,Carole,12/05/1970,Non +13,Bouches-du-Rhône,12,12ème circonscription,5,64,M,ROCHE,François,23/05/1965,DXG,Ouvrier qualifié de type industriel,Non,M,CLAVERO,Christophe,10/04/1971,Non +13,Bouches-du-Rhône,12,12ème circonscription,6,77,M,ALLISIO,Franck,04/08/1980,RN,Profession libérale,Non,F,ALARCON,Paulette,02/10/1950,Non +13,Bouches-du-Rhône,12,12ème circonscription,7,61,F,CHAUVIN,Isabelle,20/01/1971,NUP,"Professeur, profession scientifique",Non,M,PONS,Pascal,25/04/1983,Non +13,Bouches-du-Rhône,12,12ème circonscription,8,192,M,RIBEIRO,Stéphane,31/07/1970,ECO,Ingénieur et cadre technique d'entreprise,Non,M,MERABTI,Said,23/09/1955,Non +13,Bouches-du-Rhône,12,12ème circonscription,9,167,M,DIARD,Eric,21/07/1965,LR,Profession libérale,Oui,F,COLIN,Patricia,04/02/1962,Non +13,Bouches-du-Rhône,13,13ème circonscription,1,62,F,VILLECOURT-GIL,Christiane,22/02/1943,REC,Cadre de la fonction publique,Non,M,VASSEROT,Thomas,20/02/1980,Non +13,Bouches-du-Rhône,13,13ème circonscription,2,44,M,DHARRÉVILLE,Pierre,15/06/1975,NUP,"Profession de l'information, des arts et des spectacles",Oui,F,GIORGETTI,Magali,29/05/1970,Non +13,Bouches-du-Rhône,13,13ème circonscription,3,12,F,BUSSON,Stéphanie,29/04/1974,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MISTRAL,Mathieu,28/10/1979,Non +13,Bouches-du-Rhône,13,13ème circonscription,4,25,F,MAINVILLE,Marie,24/05/1958,ECO,"Profession de l'information, des arts et des spectacles",Non,F,MARTINEZ,Myriam,29/12/1955,Non +13,Bouches-du-Rhône,13,13ème circonscription,5,51,M,FOUQUART,Emmanuel,30/07/1966,RN,Profession libérale,Non,F,GONZALEZ,Gisèle,11/01/1980,Non +13,Bouches-du-Rhône,13,13ème circonscription,6,182,F,FRANZI,Olivia,23/12/1980,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,LABIAD,Yunes,26/05/1970,Non +13,Bouches-du-Rhône,13,13ème circonscription,7,58,M,CHEVREUX,Joël-Pierre,01/07/1955,ECO,"Profession de l'information, des arts et des spectacles",Non,M,PERBAL,Thierry,16/05/1971,Non +13,Bouches-du-Rhône,13,13ème circonscription,8,121,M,LOPEZ,Francis,29/06/1960,DIV,Technicien,Non,M,GABANOU,Grégory,27/02/1972,Non +13,Bouches-du-Rhône,13,13ème circonscription,9,39,F,ROUBY,Isabelle,07/11/1971,LR,Profession intermédiaire administrative de la fonction publique,Non,F,LEBAN,Michèle,04/09/1974,Non +13,Bouches-du-Rhône,13,13ème circonscription,10,7,M,MÉTRAL,Cyril,25/06/1979,DXG,Ouvrier qualifié de type industriel,Non,F,GHERBI,Amel,13/02/1967,Non +13,Bouches-du-Rhône,13,13ème circonscription,11,76,M,BOISSIN,Thierry,17/11/1964,ENS,Profession libérale,Non,F,TAUPIN-MAYOR,Emmanuelle,15/09/1985,Non +13,Bouches-du-Rhône,14,14ème circonscription,1,75,F,CALBET,Catie,10/10/1973,REC,Ingénieur et cadre technique d'entreprise,Non,F,MERLIN,Virginie,29/11/1970,Non +13,Bouches-du-Rhône,14,14ème circonscription,2,34,M,KAVAZIAN,Alain,08/01/1955,ECO,Technicien,Non,M,SMANIOTTO,Maxence,07/04/1987,Non +13,Bouches-du-Rhône,14,14ème circonscription,3,170,M,BOULAN,Michel,02/08/1963,LR,Profession libérale,Non,F,VERSINI,Corinne,28/04/1961,Non +13,Bouches-du-Rhône,14,14ème circonscription,4,16,M,BONIN,Fabrice,04/04/1968,DSV,Profession libérale,Non,F,LATHUILE,Marianne,06/10/1967,Non +13,Bouches-du-Rhône,14,14ème circonscription,5,78,F,COCH,Emeline,25/03/1982,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,RENARD,Jean-Pierre,15/03/1947,Non +13,Bouches-du-Rhône,14,14ème circonscription,6,135,F,LE CACHEUX,Hélène,16/06/1966,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,SALVAT,Jean-Yves,20/04/1972,Non +13,Bouches-du-Rhône,14,14ème circonscription,7,79,F,MICHON,Valérie,26/03/1968,ECO,"Professeur, profession scientifique",Non,F,MEZIGHEN,Yasmina,17/10/1954,Non +13,Bouches-du-Rhône,14,14ème circonscription,8,175,F,ROCHE,Anne,10/12/1938,DXG,"Professeur, profession scientifique",Non,F,ZERGUIT,Nejima,16/12/1948,Non +13,Bouches-du-Rhône,14,14ème circonscription,9,159,M,LONG,Cédric,22/08/1981,REG,Militaire du contingent,Non,M,PATOU,Arthur,27/06/2001,Non +13,Bouches-du-Rhône,14,14ème circonscription,10,22,F,PETEL,Anne-Laurence,08/02/1970,ENS,Cadre de la fonction publique,Oui,F,PIGNATEL,Josy,14/12/1952,Non +13,Bouches-du-Rhône,14,14ème circonscription,11,71,F,DE BUSSCHERE,Charlotte,19/08/1965,ECO,"Professeur, profession scientifique",Non,M,ARLAUD,Jean-Philippe,27/08/1954,Non +13,Bouches-du-Rhône,14,14ème circonscription,12,151,M,BOURGAREL,Rémi,27/05/1967,DVC,Ingénieur et cadre technique d'entreprise,Non,F,GRASSI,Jeanne,05/05/1980,Non +13,Bouches-du-Rhône,15,15ème circonscription,1,63,M,REYNÈS,Bernard,18/10/1953,LR,Ancienne profession intermédiaire,Oui,M,GINOUX,Philippe,07/12/1970,Non +13,Bouches-du-Rhône,15,15ème circonscription,2,31,F,TESTUT,Anne,14/11/1966,DXG,Employé de commerce,Non,F,ZEMMIT,Fatima,27/01/1943,Non +13,Bouches-du-Rhône,15,15ème circonscription,3,10,M,VERNAY,Tanguy,02/06/1982,DIV,Commerçant et assimilé,Non,F,BRUNEAU,Marianne,01/03/1989,Non +13,Bouches-du-Rhône,15,15ème circonscription,4,105,F,CHARIN,Simone,05/02/1944,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,FAVREAU,Didier,24/10/1959,Non +13,Bouches-du-Rhône,15,15ème circonscription,5,133,F,JUNG,Michèle,18/01/1957,NUP,Cadre de la fonction publique,Non,F,AÏDAROUS,Wassila,04/09/1984,Non +13,Bouches-du-Rhône,15,15ème circonscription,6,152,F,ANZALONE,Marie-Laurence,28/05/1970,ENS,Employé administratif d'entreprise,Non,M,SERRUS,Jean-Pierre,01/06/1960,Non +13,Bouches-du-Rhône,15,15ème circonscription,7,193,F,OUKKAL,Nadia,01/05/1965,DVC,Employé administratif d'entreprise,Non,M,HUGUES,Bernard,29/06/1958,Non +13,Bouches-du-Rhône,15,15ème circonscription,8,186,M,LAPEYRE,Nicolas,28/12/1987,ECO,Profession libérale,Non,F,CASANOVA,Joëlle,06/07/1960,Non +13,Bouches-du-Rhône,15,15ème circonscription,9,176,F,KLEIN,Sandrine,30/08/1969,ECO,Commerçant et assimilé,Non,F,VENANT,Cynthia,19/08/1976,Non +13,Bouches-du-Rhône,15,15ème circonscription,10,123,F,BANDERIER-ZAHIR,Mounia,05/01/1982,DVG,Employé civil et agent de service de la fonction publique,Non,F,LAFLUTTE,Martine,01/01/1961,Non +13,Bouches-du-Rhône,15,15ème circonscription,11,65,M,BAUBRY,Romain,28/01/1989,RN,Policier et militaire,Non,F,ALEX,Chantal,11/12/1957,Non +13,Bouches-du-Rhône,15,15ème circonscription,12,98,F,MARCHAND,Audrey,08/10/1991,REC,Employé administratif d'entreprise,Non,F,JUILLARD,Jocelyne,30/11/1961,Non +13,Bouches-du-Rhône,16,16ème circonscription,1,67,M,TACHE DE LA PAGERIE,Emmanuel,20/02/1975,RN,Cadre de la fonction publique,Non,F,VILLANOVE,Valérie,04/09/1958,Non +13,Bouches-du-Rhône,16,16ème circonscription,2,32,M,CESARI,Cédric,08/08/1992,ECO,Ingénieur et cadre technique d'entreprise,Non,F,QUÉRÉ,Estelle,14/01/1973,Non +13,Bouches-du-Rhône,16,16ème circonscription,3,156,M,REMISE,Jean-Guillaume,11/05/1978,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,PARENT,Francine,04/06/1948,Non +13,Bouches-du-Rhône,16,16ème circonscription,4,112,M,CAILLAULT,Christophe,28/10/1966,NUP,Cadre de la fonction publique,Non,F,ANDRIEU,Marie,24/06/1978,Non +13,Bouches-du-Rhône,16,16ème circonscription,5,5,M,DUBOST,Guy,30/12/1953,DXG,Ancien ouvrier,Non,M,CHRISTINY,Raynal,11/10/1948,Non +13,Bouches-du-Rhône,16,16ème circonscription,6,160,F,CAILLAUD,Mariana,16/09/1984,ENS,Profession libérale,Non,M,DE CAROLIS,Patrick,19/11/1953,Non +13,Bouches-du-Rhône,16,16ème circonscription,7,185,M,MELONI,Jean-Baptiste,29/03/1988,DIV,Artisan,Non,F,MERE,Fantine,13/05/1991,Non +13,Bouches-du-Rhône,16,16ème circonscription,8,129,F,LAUPIES,Valérie,08/02/1966,DSV,"Professeur des écoles, instituteur et assimilé",Non,F,CHENEL,Sandrine,10/07/1968,Non +13,Bouches-du-Rhône,16,16ème circonscription,9,164,F,PASQUINI,Sylvie,22/02/1979,DXG,Employé civil et agent de service de la fonction publique,Non,M,LECLERC,Bruno,04/08/1958,Non +13,Bouches-du-Rhône,16,16ème circonscription,10,161,M,SANCHEZ,Grégory,10/05/1979,ECO,Employé administratif d'entreprise,Non,F,PEREZ,Angélique,30/12/1980,Non +14,Calvados,01,1ère circonscription,1,56,M,THOMAS,Florent,10/07/1977,ECO,Profession libérale,Non,F,TERRÉE,Emilie,03/04/1995,Non +14,Calvados,01,1ère circonscription,2,5,M,CORBERY,Blaise,26/01/1961,DVG,Profession libérale,Non,M,BOTTE,Thomas,20/11/1991,Non +14,Calvados,01,1ère circonscription,3,9,M,CASEVITZ,Pierre,29/06/1971,DXG,"Professeur, profession scientifique",Non,F,SEGUIN,Brigitte,27/07/1962,Non +14,Calvados,01,1ère circonscription,4,41,F,CHAHINE,Anne-Laure,14/12/1975,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BOULESTEIX,Richard,31/08/1963,Non +14,Calvados,01,1ère circonscription,5,15,F,SIMONNET,Sophie,15/01/1971,LR,"Professeur, profession scientifique",Non,F,LETELLIER,Myriam,12/09/1972,Non +14,Calvados,01,1ère circonscription,6,35,F,LIBAN,Josseline,23/12/1954,RN,Ancien cadre,Non,M,LEMYRE,Djessy,08/12/2002,Non +14,Calvados,01,1ère circonscription,7,21,F,BLOUIN,Marlène,12/04/1972,DSV,"Profession de l'information, des arts et des spectacles",Non,F,GUINAUDEAU,Véronique,14/01/1969,Non +14,Calvados,01,1ère circonscription,8,12,M,LE VIGOUREUX,Fabrice,27/08/1969,ENS,"Professeur, profession scientifique",Oui,F,ANGOT-HASTAIN,Léonie,16/11/1975,Non +14,Calvados,01,1ère circonscription,9,47,M,GALLOIS,Jérémy,17/02/1997,DVG,Employé de commerce,Non,M,LORGERÉ,William,22/03/1997,Non +14,Calvados,01,1ère circonscription,10,50,F,FOURREAU,Emma,01/10/1999,NUP,"Elève, étudiant",Non,M,GUIDI,Aurélien,17/10/1984,Non +14,Calvados,02,2ème circonscription,1,2,F,BROU,Camille,12/07/1984,LR,Cadre administratif et commercial d'entreprise,Non,M,GÉRAULT,Franck,08/07/1972,Non +14,Calvados,02,2ème circonscription,2,14,M,GARCIA,Christophe,18/09/1965,DXG,Employé civil et agent de service de la fonction publique,Non,F,PETIT,Sandrine,11/03/1971,Non +14,Calvados,02,2ème circonscription,3,32,F,DESLANDES,Céline,04/11/1981,RN,Employé de commerce,Non,F,GINGOIS,Claudine,05/08/1947,Non +14,Calvados,02,2ème circonscription,4,58,F,CRONIER,Virginie,22/09/1978,DVC,"Professeur, profession scientifique",Non,M,BOURLET,Morgan,16/06/1978,Non +14,Calvados,02,2ème circonscription,5,57,F,CAILLEMER,Esteline,20/06/1976,REC,"Professeur, profession scientifique",Non,M,PARIS,Jean,07/11/1949,Non +14,Calvados,02,2ème circonscription,6,3,F,FRANCOISE,Angélique,22/07/1987,DSV,Profession intermédiaire administrative de la fonction publique,Non,M,RICOUL,Serge,21/11/1961,Non +14,Calvados,02,2ème circonscription,7,53,F,DUMONT PRIEUX,Sylvie,03/10/1966,ENS,Employé civil et agent de service de la fonction publique,Non,M,FRATY,Grégoire,23/04/1988,Non +14,Calvados,02,2ème circonscription,8,13,M,AMBOURG,Philippe,23/03/1961,DSV,Policier et militaire,Non,M,DE NANTEUIL,Pierre-Louis,23/02/1962,Non +14,Calvados,02,2ème circonscription,9,46,M,LERENDU,Julien,04/08/1991,ECO,Profession intermédiaire de la santé et du travail social,Non,F,LEBON,Sophie,26/12/1988,Non +14,Calvados,02,2ème circonscription,10,4,M,DELAPORTE,Arthur,07/10/1991,NUP,"Professeur, profession scientifique",Non,F,DUMONT,Laurence,02/06/1958,Oui +14,Calvados,02,2ème circonscription,11,49,M,SÉNÉTAIRE,Vincent,17/12/1993,DXG,Ingénieur et cadre technique d'entreprise,Non,M,BERTRAND,Nicolas,02/03/1987,Non +14,Calvados,03,3ème circonscription,1,22,F,LECONTE,Elisabeth,21/01/1964,DXG,Cadre administratif et commercial d'entreprise,Non,M,PRAT,Didier,19/09/1952,Non +14,Calvados,03,3ème circonscription,2,40,M,MAFIODO,Steven,06/12/1992,DSV,Employé administratif d'entreprise,Non,M,DEFRETIN,Quentin,30/01/1989,Non +14,Calvados,03,3ème circonscription,3,45,M,PATRIER-LEITUS,Jérémie,07/03/1989,ENS,Cadre de la fonction publique,Non,F,ROMAGNÉ,Sandrine,29/07/1973,Non +14,Calvados,03,3ème circonscription,4,61,F,PORTE,Nathalie,02/02/1973,LR,Technicien,Oui,M,DEWAËLE,Kévin,11/07/1984,Non +14,Calvados,03,3ème circonscription,5,25,M,FAUVAGE,Edouard,06/11/1990,REC,Militaire du contingent,Non,F,REBOURS,Mireille,10/04/1954,Non +14,Calvados,03,3ème circonscription,6,29,F,VILMET,Martine,11/07/1960,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,F,HENRY,Chantal,01/04/1972,Non +14,Calvados,03,3ème circonscription,7,59,F,SÉNÉCAL,Sylvie,06/08/1961,DVG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,HAMICI,Sofiane,30/01/1997,Non +14,Calvados,03,3ème circonscription,8,18,M,LANGEVIN,Michel,06/01/1961,DXG,"Professeur, profession scientifique",Non,F,RIVIÈRE,Sylvie,27/01/1961,Non +14,Calvados,03,3ème circonscription,9,54,M,CANU,Didier,30/11/1960,NUP,Ancienne profession intermédiaire,Non,F,COTTIN,Sylvie,19/04/1961,Non +14,Calvados,03,3ème circonscription,10,20,M,GUZMAN VELEZ,Johann,06/01/1975,ECO,Policier et militaire,Non,F,MONTIER,Ericka,17/08/1977,Non +14,Calvados,04,4ème circonscription,1,7,M,BLANCHET,Christophe,09/04/1973,ENS,Commerçant et assimilé,Oui,F,GADENNE,Audrey,12/03/1969,Non +14,Calvados,04,4ème circonscription,2,19,F,GAUGAIN,Sophie,27/08/1974,LR,Cadre administratif et commercial d'entreprise,Non,M,BUISSON,Christophe,10/09/1967,Non +14,Calvados,04,4ème circonscription,3,60,F,PERRIN,Florence,28/04/1970,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BLOYET,Laurent,29/12/1961,Non +14,Calvados,04,4ème circonscription,4,34,M,MOURARET,Pierre,15/09/1949,NUP,Profession intermédiaire de la santé et du travail social,Non,F,AMBROISE,Jocelyne,23/09/1966,Non +14,Calvados,04,4ème circonscription,5,43,F,COTHIER,Florence,22/12/1951,REC,Ancien cadre,Non,M,BIETTE,Gérald,18/01/1954,Non +14,Calvados,04,4ème circonscription,6,24,M,LORIMIER,Manuel,16/04/1975,ECO,Cadre administratif et commercial d'entreprise,Non,F,MARTIN,Christine,23/02/1965,Non +14,Calvados,04,4ème circonscription,7,42,M,LAGARDE,Louis,05/05/1958,DVC,"Professeur, profession scientifique",Non,F,AVÈQUE,Christine,08/06/1975,Non +14,Calvados,04,4ème circonscription,8,16,M,POIROT-BOURDAIN,Patrick,25/04/1945,DXG,Ancien cadre,Non,F,LECARPENTIER,Patricke,04/04/1952,Non +14,Calvados,04,4ème circonscription,9,33,M,BELONCLE,Patrick,08/11/1950,RN,Commerçant et assimilé,Non,M,FLORCHINGER,Marcel,31/08/1942,Non +14,Calvados,05,5ème circonscription,1,36,F,HAREL,Valérie,07/02/1972,NUP,Profession intermédiaire de la santé et du travail social,Non,M,DUPONT-FEDERICI,Thomas,20/08/1981,Non +14,Calvados,05,5ème circonscription,2,6,M,BOUYX,Bertrand,26/05/1970,ENS,"Professeur, profession scientifique",Oui,M,LEMARESQUIER,David,31/01/1974,Non +14,Calvados,05,5ème circonscription,3,30,M,CHAPRON,Philippe,19/05/1956,RN,Ancien cadre,Non,M,EURY,Gilles,27/12/1988,Non +14,Calvados,05,5ème circonscription,4,8,F,BOISSEL,Anne,09/05/1974,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,GÉREUX,Jean-Alexis,04/10/1992,Non +14,Calvados,05,5ème circonscription,5,51,M,BRUNSCHVICG,Xavier,08/06/1973,DVG,Cadre administratif et commercial d'entreprise,Non,M,RIZZO,Stéphane,12/09/1973,Non +14,Calvados,05,5ème circonscription,6,26,M,NOUVELOT,Cédric,17/09/1976,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,VOISIN,Marine,18/08/1987,Non +14,Calvados,05,5ème circonscription,7,48,M,MULLER,Nicolas,20/04/1979,DVD,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,MULLER,Benjamin,18/12/1987,Non +14,Calvados,05,5ème circonscription,8,28,M,FRIQUET,Michaël,16/02/1970,ECO,Employé de commerce,Non,F,LEBON,Elise,13/02/1991,Non +14,Calvados,05,5ème circonscription,9,11,F,PELTRE,Isabelle,09/11/1970,DXG,"Professeur, profession scientifique",Non,F,GILBERT,Patricia,03/06/1968,Non +14,Calvados,05,5ème circonscription,10,39,M,MESGUICH,Philippe,19/08/1966,REC,Cadre administratif et commercial d'entreprise,Non,F,WASICEK,Isabelle,17/09/1956,Non +14,Calvados,06,6ème circonscription,1,27,F,LAHALLE,Lynda,19/03/1968,DVD,Cadre administratif et commercial d'entreprise,Non,M,GASCOUIN,Sylvain,02/04/1972,Non +14,Calvados,06,6ème circonscription,2,38,F,BORNE,Elisabeth,18/04/1961,ENS,Ingénieur et cadre technique d'entreprise,Non,M,SERTIN,Freddy,07/02/1980,Non +14,Calvados,06,6ème circonscription,3,44,F,SAAD,Jemâa,29/09/1967,DVG,Profession intermédiaire de la santé et du travail social,Non,M,DUBOIS,Julien,25/12/1983,Non +14,Calvados,06,6ème circonscription,4,10,F,GEORGET,Pascale,24/02/1955,DXG,Commerçant et assimilé,Non,F,LASNEL,Marianne,13/06/1974,Non +14,Calvados,06,6ème circonscription,5,37,M,GUETTIER,Mickaël,13/07/1973,DSV,Chef d'entreprise de 10 salariés ou plus,Non,M,COUPPEY,Arnaud,22/01/1976,Non +14,Calvados,06,6ème circonscription,6,4,M,ORMAIN,François,08/03/1966,DVC,"Profession de l'information, des arts et des spectacles",Non,F,CANTAIX-MORIN,Isabelle,10/02/1979,Non +14,Calvados,06,6ème circonscription,7,23,M,GAUCHARD,Noé,06/01/2000,NUP,"Elève, étudiant",Non,F,RILHAC,Dominique,02/06/1953,Non +14,Calvados,06,6ème circonscription,8,55,F,MBELO,Anne-Lyse,01/05/2002,DVG,"Elève, étudiant",Non,M,SCHERRER,Gilles,30/03/1957,Non +14,Calvados,06,6ème circonscription,9,52,F,DUPONT,Valérie,16/09/1957,REC,Artisan,Non,M,PERREAUX,Jean-Paul,21/05/1965,Non +14,Calvados,06,6ème circonscription,10,17,M,BATTAIL,Bruno,18/11/1959,ECO,"Profession de l'information, des arts et des spectacles",Non,F,MAGNIN,Véronique,22/07/1958,Non +14,Calvados,06,6ème circonscription,11,31,M,ROY,Jean-Philippe,05/03/1966,RN,Cadre administratif et commercial d'entreprise,Non,F,DANVY,Gaëlle,15/08/1975,Non +15,Cantal,01,1ère circonscription,1,2,M,DESCOEUR,Vincent,13/12/1962,LR,"Professeur, profession scientifique",Oui,F,LANTUEJOUL,Isabelle,12/05/1961,Non +15,Cantal,01,1ère circonscription,2,5,M,DAUVILLIER,Rémy,02/01/1966,DXG,"Professeur, profession scientifique",Non,M,DICHANT,Julien,18/05/1977,Non +15,Cantal,01,1ère circonscription,3,16,M,TEYSSEDOU,Michel,20/04/1954,ENS,Ancien agriculteur exploitant,Non,F,MURATET,Anne-Marie,07/10/1957,Non +15,Cantal,01,1ère circonscription,4,13,M,DE BALINCOURT,Guillaume,28/12/1993,REC,Profession intermédiaire de la santé et du travail social,Non,F,THEVENET,Isabelle,27/07/1963,Non +15,Cantal,01,1ère circonscription,5,11,F,GALLAIS,Dorothée,23/09/1970,RN,Commerçant et assimilé,Non,M,MAISONNEUVE,Pierre,25/05/1990,Non +15,Cantal,01,1ère circonscription,6,8,M,MACIAZEK,Michel,20/07/1957,NUP,Ouvrier agricole,Non,F,BAPTISTE,Viviane,19/07/1948,Non +15,Cantal,01,1ère circonscription,7,3,M,DELPONT,Jean-Pierre,22/07/1954,DVD,Profession libérale,Non,F,BOUSSAGOL,Marie,20/02/1962,Non +15,Cantal,02,2ème circonscription,1,4,M,BONY,Jean-Yves,11/03/1955,LR,Agriculteur sur moyenne exploitation,Oui,F,BESSE,Marina,19/12/1981,Non +15,Cantal,02,2ème circonscription,2,10,F,GUIBERT,Martine,13/08/1961,ENS,Cadre de la fonction publique,Non,M,TILMANT-TATISCHEFF,Vladimir,02/10/1971,Non +15,Cantal,02,2ème circonscription,3,6,F,CHEIKHI,Mona,11/11/1987,DXG,"Professeur, profession scientifique",Non,M,GEINDREAU,Dominique,22/02/1951,Non +15,Cantal,02,2ème circonscription,4,12,M,LACROIX,Gilles,07/06/1965,RN,Commerçant et assimilé,Non,F,FLOURY,Véronique,19/04/1969,Non +15,Cantal,02,2ème circonscription,5,14,M,DELMOURE,Jean-René,14/08/1962,ECO,Commerçant et assimilé,Non,F,NEY,Patricia,13/04/1962,Non +15,Cantal,02,2ème circonscription,6,15,M,CHEYROL,Antoine,19/04/2000,REC,Cadre administratif et commercial d'entreprise,Non,F,GARNIER,Aline,19/03/1997,Non +15,Cantal,02,2ème circonscription,7,7,M,TOTY,Louis,30/04/1958,DVD,Profession libérale,Non,F,HUBERT,Marie Thérèse,12/06/1956,Non +15,Cantal,02,2ème circonscription,8,9,F,MORILLE,Mélody,03/06/2002,NUP,"Elève, étudiant",Non,M,CHASSANG,Dominique,11/06/1968,Non +16,Charente,01,1ère circonscription,1,3,F,MARTINESE,Anna,21/04/1954,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,DELAIR,Alain,13/05/1949,Non +16,Charente,01,1ère circonscription,2,5,M,NICOLAS,Olivier,14/11/1981,DXG,Ingénieur et cadre technique d'entreprise,Non,F,THOMAS,Corinne,01/08/1967,Non +16,Charente,01,1ère circonscription,3,11,M,DE LORGERIL,Dominique,13/04/1962,REC,Cadre de la fonction publique,Non,M,GONZALEZ,Rémi,15/07/1996,Non +16,Charente,01,1ère circonscription,4,2,M,MESNIER,Thomas,04/03/1986,ENS,Cadre de la fonction publique,Oui,F,REGRENIL,Laëtitia,13/08/1973,Non +16,Charente,01,1ère circonscription,5,30,F,BERTHELOT,Corinne,01/05/1965,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,GALLET,Olivier,05/07/1956,Non +16,Charente,01,1ère circonscription,6,21,M,PILATO,René,31/08/1962,NUP,"Professeur, profession scientifique",Non,F,MARCHAND,Aude,14/02/1972,Non +16,Charente,01,1ère circonscription,7,4,F,CLERGEAU,Alice,08/06/1998,LR,"Elève, étudiant",Non,M,BAYLAC,Jean,14/06/1995,Non +16,Charente,01,1ère circonscription,8,26,M,DAURÉ,Jean-François,11/09/1958,DVG,Ancien cadre,Non,F,VINET,Maryline,17/02/1966,Non +16,Charente,02,2ème circonscription,1,7,F,GORIAUX,Daphné,30/06/1993,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,HOFFMANN,Adrien,17/03/1996,Non +16,Charente,02,2ème circonscription,2,12,F,MARSAUD,Sandra,02/01/1974,ENS,Ancien cadre,Oui,M,MASSACRET,Ludovic,20/12/1978,Non +16,Charente,02,2ème circonscription,3,22,M,CAULLIEZ,Quentin,01/02/1994,ECO,Policier et militaire,Non,M,CAULLIEZ,Aurélien,25/02/1992,Non +16,Charente,02,2ème circonscription,4,23,M,DESBROSSE,Jérôme,20/08/1969,DVG,Profession intermédiaire de la santé et du travail social,Non,F,GIMENEZ,Virginie,22/03/1978,Non +16,Charente,02,2ème circonscription,5,27,M,SAUTON,William,14/11/1969,DSV,Artisan,Non,M,PAGNOUX,Éric,10/05/1971,Non +16,Charente,02,2ème circonscription,6,15,F,BATAILLE,Carole,25/09/1974,ECO,Employé civil et agent de service de la fonction publique,Non,M,SOUCHAUD,Dominique,23/07/1959,Non +16,Charente,02,2ème circonscription,7,14,M,LELIÈVRE,Jean-Hubert,09/08/1976,LR,Cadre de la fonction publique,Non,F,AUTHIER,Claire,15/06/1963,Non +16,Charente,02,2ème circonscription,8,6,F,BESSAS,Françoise,26/12/1965,DXG,Personnel des services directs aux particuliers,Non,M,COURTOIS,Jean-Pierre,13/11/1947,Non +16,Charente,02,2ème circonscription,9,8,M,RAPPASSE,Marceau,29/10/1963,RN,Cadre administratif et commercial d'entreprise,Non,F,JOSLET,Nathalie,03/09/1976,Non +16,Charente,02,2ème circonscription,10,13,F,CHEVALIER,Chloé,01/11/1990,NUP,Ouvrier agricole,Non,F,COCHE-DEQUÉANT,Mylène,14/09/1990,Non +16,Charente,03,3ème circonscription,1,19,M,CURGALI,Patrick,19/05/1953,DXG,Ancien ouvrier,Non,M,DÉFOSSEZ,Frédéric,11/12/1965,Non +16,Charente,03,3ème circonscription,2,20,F,MOCOEUR,Sylvie,03/10/1963,ENS,Commerçant et assimilé,Non,M,TOUZÉ,Jean-Pierre,26/09/1957,Non +16,Charente,03,3ème circonscription,3,16,M,LAMBERT,Jérôme,07/06/1957,DVG,Ancien cadre,Oui,F,MOUFFLET,Isabelle,24/10/1968,Non +16,Charente,03,3ème circonscription,4,29,F,NOËL,Marie-Pierre,04/12/1975,NUP,Profession intermédiaire administrative de la fonction publique,Non,M,PEZY,Gautier,14/10/1998,Non +16,Charente,03,3ème circonscription,5,25,F,ALLONCLE,Nathalie,24/10/1968,DSV,Commerçant et assimilé,Non,F,BRAGG,Annie,05/10/1969,Non +16,Charente,03,3ème circonscription,6,17,M,GUIGNARD,Pierre Henri,03/04/1956,LR,Cadre de la fonction publique,Non,M,CHEVALERIAS,Thomas,08/06/1997,Non +16,Charente,03,3ème circonscription,7,28,M,FOUILLET,Laurent,06/12/1964,DIV,Cadre administratif et commercial d'entreprise,Non,M,BARRIER,Pierre,09/09/1977,Non +16,Charente,03,3ème circonscription,8,18,F,DE CLISSON,Aurore,11/07/1983,REC,Commerçant et assimilé,Non,M,HARIVELLE,Enzo,23/01/2001,Non +16,Charente,03,3ème circonscription,9,31,F,BARUCH,Sandrine,07/04/1976,DVC,Profession intermédiaire administrative de la fonction publique,Non,M,LEDRUT,Christophe,18/08/1972,Non +16,Charente,03,3ème circonscription,10,10,F,COLOMBIER,Caroline,22/08/1957,RN,Ancien cadre,Non,F,FORESTIER,Laure,20/04/1964,Non +16,Charente,03,3ème circonscription,11,9,M,RAGUET,Alexandre,15/03/1991,DXG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,TOPOURIA,Hélène,29/01/1994,Non +16,Charente,03,3ème circonscription,12,32,M,LALANNE,Francis,08/08/1958,ECO,"Profession de l'information, des arts et des spectacles",Non,F,BRIZARD,Océane,14/12/2000,Non +16,Charente,03,3ème circonscription,13,24,M,TOMSIN,Eric,29/03/1971,ECO,Profession libérale,Non,F,TISSANDIER-ALRIC,Marie-Laure,10/04/1956,Non +17,Charente-Maritime,01,1ère circonscription,1,40,F,RICHEZ-LEROUGE,Véronique,22/12/1963,DVC,"Profession de l'information, des arts et des spectacles",Non,M,SAÏD,Djoumoi,01/01/1979,Non +17,Charente-Maritime,01,1ère circonscription,2,2,M,FALORNI,Olivier,27/03/1972,DVG,"Professeur, profession scientifique",Oui,F,GERVAIS,Sabine,20/05/1970,Non +17,Charente-Maritime,01,1ère circonscription,3,19,F,CHAIR,Agnès,16/03/1960,ECO,Cadre de la fonction publique,Non,F,LÉONARD-GALINDO,Catherine,26/09/1965,Non +17,Charente-Maritime,01,1ère circonscription,4,56,M,PERE,Philippe,07/01/1967,DIV,Artisan,Non,F,RENAUD,Nicole,24/04/1946,Non +17,Charente-Maritime,01,1ère circonscription,5,41,F,MADELAINE,Martine,25/11/1970,ENS,"Professeur, profession scientifique",Non,M,DAUNIT,Pascal,19/07/1965,Non +17,Charente-Maritime,01,1ère circonscription,6,23,M,COLIN,Antoine,29/05/1971,DXG,"Professeur, profession scientifique",Non,M,RÉMOND,Dominique,17/12/1953,Non +17,Charente-Maritime,01,1ère circonscription,7,43,M,SOUBESTE,Jean-Marc,20/11/1964,NUP,"Professeur, profession scientifique",Non,F,GUIBORDEAU,Aline,10/09/1976,Non +17,Charente-Maritime,01,1ère circonscription,8,38,F,TANGUY,Nadine,04/02/1963,DVD,Agriculteur sur grande exploitation,Non,M,CARRÉ,Jean-Philippe,08/01/1971,Non +17,Charente-Maritime,01,1ère circonscription,9,33,F,NÉDELLEC,Marie,09/12/1984,DVG,Profession libérale,Non,M,GRAU,Antoine,13/08/1954,Non +17,Charente-Maritime,01,1ère circonscription,10,14,F,CHAUVEAU,Emma,04/02/2000,RN,"Elève, étudiant",Non,M,HERBETH,Alain,23/03/1944,Non +17,Charente-Maritime,01,1ère circonscription,11,44,M,FRANÇOIS,Nicolas,02/07/1992,REC,Ouvrier non qualifié de type artisanal,Non,F,LORETTE-DRAPEAU,Camille,05/11/1999,Non +17,Charente-Maritime,02,2ème circonscription,1,5,M,LABICHE,David,07/12/1973,LR,Employé civil et agent de service de la fonction publique,Non,F,CAMPODARVE,Caroline,28/02/1968,Non +17,Charente-Maritime,02,2ème circonscription,2,46,F,SERRURIER,Evelyne,27/10/1965,ECO,"Professeur, profession scientifique",Non,M,LECOUTOUR,Stéphane,06/07/1961,Non +17,Charente-Maritime,02,2ème circonscription,3,4,M,AUGER,Thierry,22/11/1968,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,PIGALE,Sylviane,17/02/1958,Non +17,Charente-Maritime,02,2ème circonscription,4,55,F,ISELI,Claude,25/08/1955,DSV,Ancien cadre,Non,M,TCHEPKOWSKI,Yvan,04/11/1966,Non +17,Charente-Maritime,02,2ème circonscription,5,59,F,FORNILI,Marie,28/11/1952,DVG,Ancien cadre,Non,F,MONNAC,Michèle,23/10/1956,Non +17,Charente-Maritime,02,2ème circonscription,6,11,M,LARCHER,Adrien,28/10/1987,ECO,Cadre administratif et commercial d'entreprise,Non,F,DENEUVE,Catherine,03/03/1956,Non +17,Charente-Maritime,02,2ème circonscription,7,27,F,GIRAUD,Corinne,28/03/1961,REC,Artisan,Non,M,CORSON,Kylian,23/10/2000,Non +17,Charente-Maritime,02,2ème circonscription,8,8,M,GUERIT,Richard,16/12/1965,RN,Ancien cadre,Non,M,BRISSAC,Cyrille,05/10/1968,Non +17,Charente-Maritime,02,2ème circonscription,9,54,M,RAYMOND,Nordine,03/02/1991,NUP,Commerçant et assimilé,Non,F,JAY,Anne,28/07/1964,Non +17,Charente-Maritime,02,2ème circonscription,10,7,M,CASTELLO,Frédéric,07/05/1949,DXG,Ancien ouvrier,Non,F,GILLAUD,Marie-France,05/05/1948,Non +17,Charente-Maritime,02,2ème circonscription,11,42,F,BABAULT,Anne-Laure,03/01/1982,ENS,Cadre administratif et commercial d'entreprise,Non,F,DESCAMPS,Anne-Sophie,30/03/1961,Non +17,Charente-Maritime,03,3ème circonscription,1,58,M,RICHÉ,Philippe,31/07/1966,DXG,Agriculteur sur petite exploitation,Non,M,DESTANDAU,Benoît,29/07/1985,Non +17,Charente-Maritime,03,3ème circonscription,2,36,M,ARDOUIN,Jean-Philippe,05/03/1964,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,MAILLET,Joëlle,10/05/1953,Non +17,Charente-Maritime,03,3ème circonscription,3,15,M,GIRAUD,Bertrand,02/05/1978,LR,Agriculteur sur moyenne exploitation,Non,F,CHIRON,Claudette,26/06/1949,Non +17,Charente-Maritime,03,3ème circonscription,4,17,F,COLLARD,Nathalie,03/10/1964,RN,Cadre de la fonction publique,Non,F,ROUQUET,Cécile,09/02/1969,Non +17,Charente-Maritime,03,3ème circonscription,5,25,F,RAHMANI,Khamssa,07/10/1964,DXG,"Professeur, profession scientifique",Non,M,LEFÈVRE,Bertrand,03/07/1979,Non +17,Charente-Maritime,03,3ème circonscription,6,32,F,RAÏSSAC-JARRARD,Nathalie,03/03/1957,ECO,Ancien cadre,Non,F,BOURSON,Alice,04/09/1992,Non +17,Charente-Maritime,03,3ème circonscription,7,35,M,WONG,Christian,23/06/1955,ECO,"Professeur, profession scientifique",Non,F,WONG-KNODEL,Sandra,19/11/1958,Non +17,Charente-Maritime,03,3ème circonscription,8,53,M,DAHAN,Gérald,17/05/1973,NUP,"Profession de l'information, des arts et des spectacles",Non,F,LADJAL,Houria,06/12/1974,Non +17,Charente-Maritime,03,3ème circonscription,9,47,F,BOURHIS,Lydia,01/01/1974,DSV,Policier et militaire,Non,F,VAMPARYS,Aurore,12/04/1979,Non +17,Charente-Maritime,03,3ème circonscription,10,29,M,BARUSSEAU,Fabrice,01/06/1970,DVG,"Professeur, profession scientifique",Non,M,CHAPPET,Cyril,14/10/1970,Non +17,Charente-Maritime,03,3ème circonscription,11,18,F,ELMAYAN,Lorys,30/08/1971,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,M,BLANDET,Nicolas,30/05/1990,Non +17,Charente-Maritime,03,3ème circonscription,12,22,M,PINEAU,Maurice,02/03/1974,REC,Profession libérale,Non,F,BESIAT,Sabine,16/07/1957,Non +17,Charente-Maritime,03,3ème circonscription,13,16,M,DIETZ,Pierre,28/10/1968,DVC,"Professeur, profession scientifique",Non,F,TEXIER,Gaëlle,08/01/1979,Non +17,Charente-Maritime,04,4ème circonscription,1,39,M,ROBIN,Jean,17/05/1969,REC,Artisan,Non,F,BRANCQUART,Valérie,13/10/1966,Non +17,Charente-Maritime,04,4ème circonscription,2,52,F,CHASSAIN,Annie,14/02/1950,DVG,Ancienne profession intermédiaire,Non,M,LACHEZE,Benoit,27/07/1963,Non +17,Charente-Maritime,04,4ème circonscription,3,57,M,GERARD,Raphaël,17/10/1968,ENS,Cadre administratif et commercial d'entreprise,Oui,F,DELAUNAY,Evelyne,10/01/1951,Non +17,Charente-Maritime,04,4ème circonscription,4,6,F,DE ROFFIGNAC,Françoise,16/11/1966,LR,"Professeur, profession scientifique",Non,M,BOUYER,Christophe,02/06/1964,Non +17,Charente-Maritime,04,4ème circonscription,5,10,M,MARKOWSKY,Pascal,22/07/1954,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,F,BOUDEAUD,Sabrina,29/07/1978,Non +17,Charente-Maritime,04,4ème circonscription,6,48,M,LOTH,Stéphane,07/03/1973,DVD,Artisan,Non,F,CHAIGNEAULT,Patricia,16/06/1961,Non +17,Charente-Maritime,04,4ème circonscription,7,31,F,DESSELLES,Danièle,25/11/1957,NUP,Ancien employé,Non,M,BANCHET,Johann,10/06/1956,Non +17,Charente-Maritime,04,4ème circonscription,8,20,F,BARRAUD,Valérie,20/11/1978,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,JOUANNEAU,Alain,20/08/1946,Non +17,Charente-Maritime,04,4ème circonscription,9,34,M,CROCHET,Sébastien,03/10/1976,ECO,Employé administratif d'entreprise,Non,M,CROCHET,Alain,04/07/1952,Non +17,Charente-Maritime,04,4ème circonscription,10,28,M,MARS,Patrick,17/02/1953,DVC,Profession libérale,Non,F,COGNET,Evelyne,06/09/1957,Non +17,Charente-Maritime,04,4ème circonscription,11,21,M,LERAT,Cyril,24/09/1967,DSV,Ingénieur et cadre technique d'entreprise,Non,M,SHAW,François,30/04/1997,Non +17,Charente-Maritime,05,5ème circonscription,1,45,F,GROCH,Marie-Noëlle,25/12/1958,RDG,Cadre de la fonction publique,Non,M,GERIN,Christian,17/06/1954,Non +17,Charente-Maritime,05,5ème circonscription,2,51,F,SOLA,Margarita,06/04/1959,NUP,Ancienne profession intermédiaire,Non,F,GOMIS,Martine,03/07/1959,Non +17,Charente-Maritime,05,5ème circonscription,3,30,M,QUENTIN,Didier,23/12/1946,LR,Cadre administratif et commercial d'entreprise,Oui,M,SUEUR,Christophe,24/08/1966,Non +17,Charente-Maritime,05,5ème circonscription,4,24,M,DATHY,Grégory,05/04/1986,DSV,Profession libérale,Non,F,HERVOCHON,Dominique,03/09/1957,Non +17,Charente-Maritime,05,5ème circonscription,5,26,F,COURTOIS,Florence,14/02/1962,REC,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,MORISOT,Bernard,19/04/1947,Non +17,Charente-Maritime,05,5ème circonscription,6,3,F,CASSETTE,Danièle,05/05/1951,DXG,Ancien employé,Non,M,LEGRAIN,Olivier,25/12/1974,Non +17,Charente-Maritime,05,5ème circonscription,7,49,M,MARICHAL,Vincent,15/10/1968,ECO,Cadre administratif et commercial d'entreprise,Non,M,GALLETEAU,Frédéric,13/12/1976,Non +17,Charente-Maritime,05,5ème circonscription,8,37,M,DEQUATRE,Romuald,31/03/1971,ECO,Chauffeur,Non,F,BEAUCÉ,Nathalie,04/01/1969,Non +17,Charente-Maritime,05,5ème circonscription,9,50,M,PLASSARD,Christophe,19/11/1967,ENS,Profession libérale,Non,F,PARENT,Vanessa,20/10/1969,Non +17,Charente-Maritime,05,5ème circonscription,10,9,F,WERBROUCK,Séverine,31/10/1970,RN,Commerçant et assimilé,Non,M,VOLLET,Michel,10/02/1954,Non +18,Cher,01,1ère circonscription,1,9,F,APRICENA,Julie,02/11/1991,RN,Profession intermédiaire administrative de la fonction publique,Non,M,MALARDÉ,Adrien,15/07/1999,Non +18,Cher,01,1ère circonscription,2,26,M,CHARPENTIER,Alex,18/10/1998,NUP,Employé administratif d'entreprise,Non,F,MADROLLES,Céline,24/12/1980,Non +18,Cher,01,1ère circonscription,3,16,M,DALLOIS,David,30/11/1972,LR,Cadre administratif et commercial d'entreprise,Non,F,SINGEOT,Justine,07/11/1990,Non +18,Cher,01,1ère circonscription,4,6,F,CERVEAU,Sylvie,26/10/1952,DXG,Ancien employé,Non,M,DAO,Lionel,02/08/1970,Non +18,Cher,01,1ère circonscription,5,23,F,BÉRINGER,Karine,16/11/1987,DSV,Profession intermédiaire de la santé et du travail social,Non,M,BÉRINGER,Louis,17/12/1985,Non +18,Cher,01,1ère circonscription,6,19,M,CORMIER BOULIGEON,François,19/11/1972,ENS,Cadre de la fonction publique,Oui,M,COQUERY,Denis,29/08/1957,Non +18,Cher,01,1ère circonscription,7,2,M,BERNELLE,Adrien-Laurent,16/06/1973,REC,Ingénieur et cadre technique d'entreprise,Non,F,HUGUENIN,Cécile,06/12/1964,Non +18,Cher,02,2ème circonscription,1,12,F,POLY,Christine,13/04/1977,RN,Agriculteur sur petite exploitation,Non,M,FANGIER,Nicolas,20/08/1977,Non +18,Cher,02,2ème circonscription,2,24,F,FLORENT,Monique,23/07/1951,DSV,Ancien employé,Non,M,DU BARET,Xavier,06/05/1968,Non +18,Cher,02,2ème circonscription,3,4,F,PATTE-SUCHETET,Mathilde,01/08/1993,REC,"Profession de l'information, des arts et des spectacles",Non,F,RAIMBAULT,Martine,04/02/1954,Non +18,Cher,02,2ème circonscription,4,7,M,ROBIN,Régis,05/01/1953,DXG,Ancien employé,Non,F,LEGOUX,Martine,24/09/1953,Non +18,Cher,02,2ème circonscription,5,14,F,DEBEUGNY,Emma,09/08/2002,ECO,"Elève, étudiant",Non,M,TINEL,Xavier,19/11/1995,Non +18,Cher,02,2ème circonscription,6,18,M,BAERT,Adrien,27/04/1998,LR,Agriculteur sur moyenne exploitation,Non,M,COLOMBIER,Luc,08/08/1982,Non +18,Cher,02,2ème circonscription,7,15,F,ESSAYAN,Nadia,06/06/1957,ENS,Profession intermédiaire de la santé et du travail social,Oui,M,BEHAGHEL,Gabriel,13/06/1997,Non +18,Cher,02,2ème circonscription,8,25,F,MERLIN,Sophie,18/03/1981,DIV,"Professeur des écoles, instituteur et assimilé",Non,M,LECLERCQ,Jean-Michel,25/05/1958,Non +18,Cher,02,2ème circonscription,9,17,M,SANSU,Nicolas,17/06/1968,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BEUCHON,Yvon,11/04/1950,Non +18,Cher,03,3ème circonscription,1,11,M,DE LA TOCNAYE,Thibaut,20/10/1958,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,TALBOT,Charles,27/04/1986,Non +18,Cher,03,3ème circonscription,2,22,M,DUMAY,Frédéric,22/06/1964,DSV,Commerçant et assimilé,Non,F,JAGO,Séverine,01/06/1971,Non +18,Cher,03,3ème circonscription,3,8,F,MARTEEL,Nathalie,03/01/1978,REC,"Professeur des écoles, instituteur et assimilé",Non,M,LIABOEUF,Hadrien,22/04/1995,Non +18,Cher,03,3ème circonscription,4,21,F,GARCIA-BOSCH-DE MORALES,Aliénor,13/11/1994,NUP,Agriculteur sur petite exploitation,Non,M,CHARBONNIER,Olivier,06/11/1979,Non +18,Cher,03,3ème circonscription,5,5,M,BELLET,Eric,21/05/1963,DXG,Ouvrier non qualifié de type industriel,Non,M,COTE,Christian,28/08/1955,Non +18,Cher,03,3ème circonscription,6,20,F,DE CHOULOT,Bénédicte,21/03/1974,LR,Profession libérale,Non,F,BLASQUEZ,Marie-Christine,28/03/1965,Non +18,Cher,03,3ème circonscription,7,10,F,TISSIER,Karine,23/09/1980,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,TISSIER,Frédéric,03/07/1978,Non +18,Cher,03,3ème circonscription,8,13,M,KERVRAN,Loïc,11/02/1984,ENS,Cadre de la fonction publique,Oui,F,VIVIANI,Nora,14/10/1981,Non +19,Corrèze,01,1ère circonscription,1,3,F,POUGET,Maitey,16/07/1954,RN,Ancien employé,Non,M,RUMEBE,Stéphane,23/09/1966,Non +19,Corrèze,01,1ère circonscription,2,7,F,COINAUD,Marie-Thérèse,29/01/1951,DXG,Ancienne profession intermédiaire,Non,M,RATIÉ,Bruno,22/01/1958,Non +19,Corrèze,01,1ère circonscription,3,9,F,REBIERE,Amélie,17/08/1982,DIV,Agriculteur sur moyenne exploitation,Non,F,SEIGNE,Fabien,26/06/1986,Non +19,Corrèze,01,1ère circonscription,4,12,M,JERRETIE,Christophe,31/08/1979,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,CELLE,Isabelle,14/11/1967,Non +19,Corrèze,01,1ère circonscription,5,8,M,AMIARD,Yannick,05/10/1956,DXG,Ancienne profession intermédiaire,Non,F,MOUDJADJ,Zahira,27/04/1962,Non +19,Corrèze,01,1ère circonscription,6,21,F,DEVEAUD,Sandrine,03/11/1964,NUP,Profession intermédiaire administrative de la fonction publique,Non,M,MARLIN,Nicolas,16/08/1999,Non +19,Corrèze,01,1ère circonscription,7,20,M,DUBOIS,Francis,28/11/1961,LR,Technicien,Non,M,COSTE,Pascal,13/09/1966,Non +19,Corrèze,01,1ère circonscription,8,25,M,DHERSIN,Patrick,16/10/1964,ECO,Cadre administratif et commercial d'entreprise,Non,F,DI SINNO,Carline,09/05/1966,Non +19,Corrèze,01,1ère circonscription,9,24,F,TAYSSE,Annick,27/06/1957,DVG,Ancien cadre,Non,M,BRUGERE,Philippe,02/01/1964,Non +19,Corrèze,01,1ère circonscription,10,13,M,OGUINENA,Gilles,17/03/1963,REC,Policier et militaire,Non,M,VOVAU,Jean-Marc,20/07/1970,Non +19,Corrèze,02,2ème circonscription,1,22,F,QUILLOT,Lise,30/04/1991,DVG,"Professeur, profession scientifique",Non,M,QUINIO,Thomas,03/11/1989,Non +19,Corrèze,02,2ème circonscription,2,18,M,BROUSSE,Nicolas,14/09/1993,ENS,Cadre administratif et commercial d'entreprise,Non,F,VIDALO-BORDERIE,Evelyne,15/01/1951,Non +19,Corrèze,02,2ème circonscription,3,16,M,BONNIE,Olivier,04/08/1965,DVC,Profession intermédiaire administrative de la fonction publique,Non,F,ROBERT,Françoise,29/07/1954,Non +19,Corrèze,02,2ème circonscription,4,5,M,DUMAS,Thierry,19/09/1972,DSV,"Profession de l'information, des arts et des spectacles",Non,M,MICHEL,Stéphane,11/11/1971,Non +19,Corrèze,02,2ème circonscription,5,17,F,MEUNIER,Frédérique,08/12/1960,LR,Profession libérale,Oui,M,MONTEIL,Jean-Michel,08/12/1968,Non +19,Corrèze,02,2ème circonscription,6,2,M,ELOPHE,Valéry,11/05/1974,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BRISSAY,Laurent,23/06/1971,Non +19,Corrèze,02,2ème circonscription,7,15,M,LE BILLAN,Charles-Henri,10/11/1984,DVG,Commerçant et assimilé,Non,F,MAZOT,Karine,24/12/1970,Non +19,Corrèze,02,2ème circonscription,8,23,F,AYRAULT,Marie,20/09/1955,DIV,Ancien cadre,Non,F,CLARE,Alexandre,21/05/1993,Non +19,Corrèze,02,2ème circonscription,9,11,F,HERZHAFT,Chloé,24/10/1975,NUP,"Professeur, profession scientifique",Non,M,ERSOY,Adem,09/07/1968,Non +19,Corrèze,02,2ème circonscription,10,19,M,COJAN,Patrick,17/07/1955,ECO,Profession libérale,Non,F,FAGES,Marie,15/01/1958,Non +19,Corrèze,02,2ème circonscription,11,6,F,SICARD,Sylvie,21/04/1963,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,COMBRADET,Bernard,14/04/1948,Non +19,Corrèze,02,2ème circonscription,12,4,F,SAUVINIAT,Céline,06/02/1973,ECO,Technicien,Non,M,HAMANT,André,18/06/1978,Non +19,Corrèze,02,2ème circonscription,13,14,F,DOS SANTOS DE OLIVEIRA,Camille,05/04/1993,REC,Employé de commerce,Non,M,PONGE,Philippe,27/07/1957,Non +2A,Corse-du-Sud,01,1ère circonscription,1,20,M,QUINTELA,David,15/02/1969,REC,Artisan,Non,F,MILANO,Céline,24/02/1970,Non +2A,Corse-du-Sud,01,1ère circonscription,2,15,M,LIPPLER,Walter,02/05/1961,DSV,Cadre de la fonction publique,Non,M,GOUILLON,Sylvain,08/08/1960,Non +2A,Corse-du-Sud,01,1ère circonscription,3,10,M,MOZZICONACCI,Michel,01/09/1959,DVC,Profession libérale,Non,M,LECA,Berthy,02/01/1953,Non +2A,Corse-du-Sud,01,1ère circonscription,4,19,M,DE MARI,Robin,24/09/1996,DVG,Profession intermédiaire administrative et commerciale des entreprises,Non,F,AMATO-SALINI,Marie-Christine,25/06/1976,Non +2A,Corse-du-Sud,01,1ère circonscription,5,5,M,CARROLAGGI,Jean-Paul,19/02/1964,REG,Profession libérale,Non,F,DALAKUPEYAN SERRERI,Lisandrina,20/01/1983,Non +2A,Corse-du-Sud,01,1ère circonscription,6,22,F,SUSINI,Angélique,16/12/1994,DVG,Cadre de la fonction publique,Non,F,CHANOINE,Laurine,03/04/2001,Non +2A,Corse-du-Sud,01,1ère circonscription,7,2,M,MARCANGELI,Laurent,10/12/1980,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LACOMBE,Xavier,08/06/1965,Non +2A,Corse-du-Sud,01,1ère circonscription,8,18,F,AMZIANE,Anissa-Flore,21/08/1979,DVG,Cadre administratif et commercial d'entreprise,Non,M,LEROY,Marc-Antoine,09/07/1992,Non +2A,Corse-du-Sud,01,1ère circonscription,9,9,M,COLONNA,Romain,21/02/1982,REG,"Professeur, profession scientifique",Non,F,COSTA,Cécilia,19/03/1990,Non +2A,Corse-du-Sud,01,1ère circonscription,10,3,F,ANTONA,Nathaly,16/02/1975,RN,"Professeur, profession scientifique",Non,F,NATALI,Ariane,14/05/1958,Non +2A,Corse-du-Sud,01,1ère circonscription,11,21,F,BIZZARI,Pascale,01/10/1960,ECO,Profession libérale,Non,F,CASANOVA,Sophie-Caroline,21/07/1966,Non +2A,Corse-du-Sud,01,1ère circonscription,12,4,F,LAINEZ,Claire,17/12/1958,DXG,Ancien employé,Non,M,QUILICHINI,Didier,18/08/1964,Non +2A,Corse-du-Sud,02,2ème circonscription,1,7,M,NICOLAI,Yves,01/05/1966,ECO,Employé civil et agent de service de la fonction publique,Non,F,CHEVALLET,Anne-Cécile,06/01/1977,Non +2A,Corse-du-Sud,02,2ème circonscription,2,11,M,DAÏEN,Yves,27/07/1940,DXG,Ancien employé,Non,M,BENBATTOUCHE,Kamal,28/01/1953,Non +2A,Corse-du-Sud,02,2ème circonscription,3,16,M,BATTISTINI,Olivier,10/03/1952,REC,"Professeur, profession scientifique",Non,F,PANTALACCI,Ghjulia,13/12/2002,Non +2A,Corse-du-Sud,02,2ème circonscription,4,13,M,COLOMBANI,Paul-André,17/08/1967,REG,Profession libérale,Oui,F,MALU-PELLEGRINETTI,Thérèse,28/09/1963,Non +2A,Corse-du-Sud,02,2ème circonscription,5,23,F,SALMAT,Ghislaine,01/04/1966,DVG,Commerçant et assimilé,Non,F,SASSOU - MESSAN,Brigitte,29/07/1968,Non +2A,Corse-du-Sud,02,2ème circonscription,6,12,M,MUSELLI-COLONNA,Pierre-Ange,22/09/1994,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,TRAMONI,Michel,21/01/1958,Non +2A,Corse-du-Sud,02,2ème circonscription,7,6,M,FILONI,François,01/10/1957,RN,"Contremaître, agent de maîtrise",Non,M,GIACOMETTI,Pierre,29/07/1992,Non +2A,Corse-du-Sud,02,2ème circonscription,8,14,M,ETTORI,Vincent Louis,31/10/1980,DSV,Artisan,Non,F,PARRILLA,Thérèse,02/12/1971,Non +2A,Corse-du-Sud,02,2ème circonscription,9,17,M,CHAMPEAU,Dylan,08/01/1999,DVG,"Elève, étudiant",Non,F,LAURENTI,Catherine,27/12/1964,Non +2A,Corse-du-Sud,02,2ème circonscription,10,8,F,BOZZI,Valérie,18/03/1982,DVD,Profession libérale,Non,M,CASTELLANI,Pierre,24/05/1973,Non +2A,Corse-du-Sud,02,2ème circonscription,11,24,M,PUCCINELLI,Pierre-Paul,29/09/1954,REG,Profession libérale,Non,M,ROBERT,Bertrand,22/07/1981,Non +2B,Haute-Corse,01,1ère circonscription,1,11,M,MORGANTI,Julien,20/11/1985,DVC,Cadre de la fonction publique,Non,F,ALBERTINI PIETRUCCI,Santa,22/01/1980,Non +2B,Haute-Corse,01,1ère circonscription,2,20,M,MAQUET,Gaël,16/10/1958,DIV,Profession libérale,Non,F,PRUNETA,Nathalie,05/03/1968,Non +2B,Haute-Corse,01,1ère circonscription,3,19,M,LAMBERTI,Jean,31/08/1963,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,REAL,Christian,06/05/1948,Non +2B,Haute-Corse,01,1ère circonscription,4,16,M,PAOLI,Jean-François,20/01/1967,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,BALDOCCHI,Océane,11/06/1991,Non +2B,Haute-Corse,01,1ère circonscription,5,12,M,CASTELLANI,Michel,28/09/1945,REG,"Professeur, profession scientifique",Oui,F,PONZEVERA,Juliette,17/03/1982,Non +2B,Haute-Corse,01,1ère circonscription,6,14,F,MAUNY,Dominique,20/01/1963,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,TOMASI,Karl,01/04/1998,Non +2B,Haute-Corse,01,1ère circonscription,7,13,M,JOSUÉ,Olivier,16/07/1950,DXG,Profession intermédiaire administrative et commerciale des entreprises,Non,F,MATTEI-GOVI,Pierrette,12/09/1944,Non +2B,Haute-Corse,01,1ère circonscription,8,9,M,STAELENS,Michel,06/09/1958,ECO,"Professeur, profession scientifique",Non,F,JURALINA,Florence,01/01/1968,Non +2B,Haute-Corse,01,1ère circonscription,9,5,M,FERNANDEZ,Alexis,13/09/2001,RN,"Elève, étudiant",Non,F,MORATI,Laure,25/09/1993,Non +2B,Haute-Corse,01,1ère circonscription,10,3,M,STEFANI,Michel,24/03/1960,DVG,Ancien employé,Non,F,DEVOTI,Toussainte,24/09/1954,Non +2B,Haute-Corse,01,1ère circonscription,11,7,F,CETTOUR-LEONI,Christine,28/12/1968,DSV,Profession libérale,Non,F,MOREL,Valérie,31/03/1971,Non +2B,Haute-Corse,01,1ère circonscription,12,21,M,TOMASI,Petru Antone,22/12/1987,REG,"Professeur, profession scientifique",Non,M,SIMONI,Eric,12/10/1961,Non +2B,Haute-Corse,02,2ème circonscription,1,15,M,ACQUAVIVA,Jean-Félix,19/03/1973,REG,Ancien cadre,Oui,F,ANDREANI,Marie Jeanne,23/09/1970,Non +2B,Haute-Corse,02,2ème circonscription,2,17,M,CECCOLI,François-Xavier,27/10/1968,DVD,Agriculteur sur moyenne exploitation,Non,F,ASTOLFI,Hélène,26/12/1963,Non +2B,Haute-Corse,02,2ème circonscription,3,8,F,SALDUCCI,Marie Dominique,09/12/1963,DSV,Cadre de la fonction publique,Non,F,BARNOLE-MARCHINI,Thérèse,06/03/1948,Non +2B,Haute-Corse,02,2ème circonscription,4,4,F,RAFFAELLI - FRANCESCHI,Amélie,15/01/1958,DVG,Ancien employé,Non,M,ROSSI,Pascal,04/11/1972,Non +2B,Haute-Corse,02,2ème circonscription,5,18,F,ML MARIANI,Baronne,16/04/1998,DIV,"Elève, étudiant",Non,M,JHN MARIANI,Baron,25/12/1965,Non +2B,Haute-Corse,02,2ème circonscription,6,6,M,MORTINI,Lionel,08/05/1969,REG,Agriculteur sur petite exploitation,Non,F,TRAMINI,Marie-Françoise,14/09/1972,Non +2B,Haute-Corse,02,2ème circonscription,7,10,F,RONGIONE,Viviane,16/08/1955,DXG,Ancienne profession intermédiaire,Non,M,MANNONI,Laurent,01/03/1969,Non +2B,Haute-Corse,02,2ème circonscription,8,2,M,CARDI,Jean,16/12/1955,RN,Agriculteur sur moyenne exploitation,Non,M,CARDI,Tony,31/10/1954,Non +21,Côte-d'Or,01,1ère circonscription,1,34,M,MARTIN,Didier,20/08/1956,ENS,Profession intermédiaire de la santé et du travail social,Oui,F,REFAIT-ALEXANDRE,Catherine,29/09/1972,Non +21,Côte-d'Or,01,1ère circonscription,2,33,M,PEILLON,Antoine,14/03/1959,NUP,"Profession de l'information, des arts et des spectacles",Non,F,GUIDONI-STOLTZ,Dominique,23/08/1960,Non +21,Côte-d'Or,01,1ère circonscription,3,8,F,JOURDIER,Grâce,03/04/1993,RN,Profession libérale,Non,M,EL SIBAÏ,Chafic,07/07/1962,Non +21,Côte-d'Or,01,1ère circonscription,4,20,F,MOHAMED,Ambrine,07/02/1994,REC,Technicien,Non,F,MILLE,Marie-Claude,15/09/1950,Non +21,Côte-d'Or,01,1ère circonscription,5,23,F,ZIVKOVIC,Sladana,28/06/1974,DVG,Cadre de la fonction publique,Non,M,LAMBERT,Pierre,14/12/1944,Non +21,Côte-d'Or,01,1ère circonscription,6,45,M,TITRAOUI,Amar,01/12/1963,DVC,Cadre administratif et commercial d'entreprise,Non,F,CRESP,Valérie,13/04/1972,Non +21,Côte-d'Or,01,1ère circonscription,7,6,M,GROS,Dominique,21/07/1943,DXG,Ancien cadre,Non,F,HENNI,Khaira,20/04/1959,Non +21,Côte-d'Or,01,1ère circonscription,8,13,M,THÉVENIN,Julien,16/10/1976,DXG,"Professeur, profession scientifique",Non,F,RIBOULET,Sylvie,29/04/1955,Non +21,Côte-d'Or,01,1ère circonscription,9,27,M,DUGOURD,François-Xavier,30/04/1961,LR,Commerçant et assimilé,Non,F,RENOSI,Catherine,29/01/1974,Non +21,Côte-d'Or,01,1ère circonscription,10,52,M,AYACHE,Franck,10/02/1964,UDI,Cadre administratif et commercial d'entreprise,Non,M,BONNOT,Ludovic,03/03/1966,Non +21,Côte-d'Or,01,1ère circonscription,11,32,F,BOURGUIGNON,Manon,22/09/1998,DSV,"Elève, étudiant",Non,M,FOREY,Robert,07/04/1949,Non +21,Côte-d'Or,02,2ème circonscription,1,25,F,FORTIER,Mélanie,22/04/1998,RN,"Elève, étudiant",Non,M,DAMERON,Jérémy,01/04/1996,Non +21,Côte-d'Or,02,2ème circonscription,2,35,M,DAVID,Bruno,23/02/1974,DVD,Commerçant et assimilé,Non,F,BLIGNY,Julie,23/05/1967,Non +21,Côte-d'Or,02,2ème circonscription,3,37,M,GAILLARD,Franck,30/04/1975,REC,Artisan,Non,M,CAMUS,Antoine,06/07/1996,Non +21,Côte-d'Or,02,2ème circonscription,4,26,M,BORDAT,Benoît,07/02/1984,ENS,Ancien cadre,Non,M,THERON,Pascal,24/09/1961,Non +21,Côte-d'Or,02,2ème circonscription,5,19,F,HERVIEU,Catherine,09/05/1958,NUP,Ancien cadre,Non,M,CAMUS,David,05/04/1981,Non +21,Côte-d'Or,02,2ème circonscription,6,51,M,HUGUET,Adrien,18/08/1992,LR,Profession intermédiaire administrative et commerciale des entreprises,Non,F,GAVOILLE,Nathalie,02/10/1966,Non +21,Côte-d'Or,02,2ème circonscription,7,4,F,ROCHER,Claire,27/09/1978,DXG,Profession intermédiaire de la santé et du travail social,Non,F,LAMBERT,Jacqueline,21/12/1941,Non +21,Côte-d'Or,02,2ème circonscription,8,42,F,SALINAS,Amélia,23/07/1968,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,VERHEGGE,Thomas,26/02/2001,Non +21,Côte-d'Or,03,3ème circonscription,1,46,M,RICHARD,Xavier,20/08/1984,DVG,Cadre administratif et commercial d'entreprise,Non,M,GRANDJEAN,Philippe,23/11/1961,Non +21,Côte-d'Or,03,3ème circonscription,2,39,F,LACROIX-SAMPER,Solène,17/04/2000,REC,"Elève, étudiant",Non,F,GIRARDOT,Nadine,01/01/1961,Non +21,Côte-d'Or,03,3ème circonscription,3,53,F,FAUVET,Tarja,04/10/1995,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,NICOLAS,Jean-Patrick,20/09/1984,Non +21,Côte-d'Or,03,3ème circonscription,4,24,F,MARC,Patricia,01/05/1953,NUP,"Professeur, profession scientifique",Non,M,ALIGNIER,Michel,05/06/1957,Non +21,Côte-d'Or,03,3ème circonscription,5,47,M,LOUIS,Bruno,28/04/1964,ECO,Profession libérale,Non,F,DURNERIN,Christine,12/10/1960,Non +21,Côte-d'Or,03,3ème circonscription,6,22,F,GRANDET,Valérie,17/07/1972,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,KENCKER,Sébastien,26/09/1975,Non +21,Côte-d'Or,03,3ème circonscription,7,40,M,BENREDJEM,François,02/02/1962,ECO,Cadre de la fonction publique,Non,F,HUDELEY,Agnès,20/03/1962,Non +21,Côte-d'Or,03,3ème circonscription,8,36,F,HAMIDI,Yasmina,07/03/1954,DSV,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,VIEILLY,Jean-Hugo,10/07/1951,Non +21,Côte-d'Or,03,3ème circonscription,9,41,M,COLLENNE,Julien,23/03/2001,DSV,Commerçant et assimilé,Non,M,BRACHAIS,Marius,10/10/2001,Non +21,Côte-d'Or,03,3ème circonscription,10,9,M,BOURGOIS,Dominique-Alexandre,04/08/1956,RN,Chef d'entreprise de 10 salariés ou plus,Non,F,ZIBETTI,Fabienne,07/07/1957,Non +21,Côte-d'Or,03,3ème circonscription,11,14,M,VAN MELCKEBEKE,Clément,01/09/1990,DVG,"Professeur, profession scientifique",Non,M,ADDOU,Fouad,14/04/1980,Non +21,Côte-d'Or,03,3ème circonscription,12,12,F,DELORME,Fabienne,21/04/1974,DXG,"Professeur, profession scientifique",Non,M,BERTHELOT,Patrick,20/12/1958,Non +21,Côte-d'Or,03,3ème circonscription,13,28,F,KHATTABI,Fadila,23/02/1962,ENS,"Professeur, profession scientifique",Oui,M,FREI,Philippe,28/12/1968,Non +21,Côte-d'Or,04,4ème circonscription,1,10,M,PONELLE,Jean-Marc,01/08/1963,RN,Profession libérale,Non,M,GUENICHOT,Eric,14/03/1962,Non +21,Côte-d'Or,04,4ème circonscription,2,49,M,MOLINOZ,Patrick,14/01/1970,RDG,Cadre de la fonction publique,Non,F,LASNIER-BINA,Patricia,03/07/1956,Non +21,Côte-d'Or,04,4ème circonscription,3,48,M,BOMMIER,Loup,10/11/1984,REC,Profession libérale,Non,M,LECOUR,Jean-Luc,22/06/1949,Non +21,Côte-d'Or,04,4ème circonscription,4,38,M,GUILLET,Michel,20/02/1950,ECO,Ancienne profession intermédiaire,Non,F,GUILLET,Nathalie,30/04/1969,Non +21,Côte-d'Or,04,4ème circonscription,5,17,F,DE COURSON,Yolaine,14/07/1954,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,M,PLANEL,Niels,30/01/1981,Non +21,Côte-d'Or,04,4ème circonscription,6,21,F,MARCHAL,Isabelle,26/03/1966,DXG,Employé administratif d'entreprise,Non,M,DENIZOT,Michel,21/11/1957,Non +21,Côte-d'Or,04,4ème circonscription,7,30,M,BRIGAND,Hubert,28/07/1952,LR,Ancienne profession intermédiaire,Non,F,LÉPINE,Eliane,24/05/1969,Non +21,Côte-d'Or,04,4ème circonscription,8,29,M,BEUDET,Julien,20/11/1978,DSV,Artisan,Non,F,MOLLET,Michèle,16/11/1958,Non +21,Côte-d'Or,04,4ème circonscription,9,15,M,GUINOT,Stéphane,02/05/1981,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,JACQ,Valérie,30/10/1972,Non +21,Côte-d'Or,04,4ème circonscription,10,31,F,PORTE,Laurence,12/01/1970,DVD,"Professeur, profession scientifique",Non,F,LOUIS,Catherine,16/07/1955,Non +21,Côte-d'Or,05,5ème circonscription,1,7,M,LIORET,René,13/01/1952,RN,Ancien cadre,Non,F,FALTOT,Caroline,26/08/1972,Non +21,Côte-d'Or,05,5ème circonscription,2,18,F,DE ALMEIDA,Isabelle,17/02/1965,NUP,Profession intermédiaire de la santé et du travail social,Non,F,BERNHARD,Carole,11/02/1976,Non +21,Côte-d'Or,05,5ème circonscription,3,43,F,ROBERT,Clélia,08/08/2002,ECO,"Elève, étudiant",Non,F,LAURENT,Coralie,03/08/1979,Non +21,Côte-d'Or,05,5ème circonscription,4,5,F,PETET,Françoise,17/05/1959,DXG,Ouvrier qualifié de type industriel,Non,M,EL KAMEL,Abdennour,22/04/1959,Non +21,Côte-d'Or,05,5ème circonscription,5,3,M,MOREAU,Hervé,31/05/1969,DVD,Policier et militaire,Non,F,CHODRON DE COURCEL,Marie,26/10/1951,Non +21,Côte-d'Or,05,5ème circonscription,6,16,M,JORDAN,Denis,25/06/1997,REC,Ingénieur et cadre technique d'entreprise,Non,M,DE MAC-MAHON,Maurice,30/03/1992,Non +21,Côte-d'Or,05,5ème circonscription,7,44,F,FOUGÈRE,Charlotte,27/02/1987,LR,Profession libérale,Non,M,DELACOUR,Sébastien,02/04/1978,Non +21,Côte-d'Or,05,5ème circonscription,8,2,M,PARIS,Didier,14/02/1954,ENS,Ancien cadre,Oui,F,DUPARC,Marie-Line,03/05/1971,Non +21,Côte-d'Or,05,5ème circonscription,9,11,M,LAMBERT,Michel,21/04/1952,DXG,Ancien employé,Non,F,COITE,Martine,01/04/1959,Non +21,Côte-d'Or,05,5ème circonscription,10,50,M,BOUVAREL,Jean-Claude,24/05/1944,DSV,Cadre administratif et commercial d'entreprise,Non,M,ROUSSET,Sébastien,02/04/1977,Non +22,Côtes-d'Armor,01,1ère circonscription,1,11,F,POUILLART,Morgane,28/02/1986,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,DENIS,Hervé,20/01/1956,Non +22,Côtes-d'Armor,01,1ère circonscription,2,3,M,LE FOL,Alain,22/10/1957,DXG,Ouvrier non qualifié de type industriel,Non,M,MOREAU,Yann,25/02/1963,Non +22,Côtes-d'Armor,01,1ère circonscription,3,52,M,COSSON,Mickaël,29/11/1975,ENS,Cadre de la fonction publique,Non,F,MOY,Sandrine,12/11/1973,Non +22,Côtes-d'Armor,01,1ère circonscription,4,53,M,RAOULT,Loïc,07/09/1961,DVG,"Contremaître, agent de maîtrise",Non,F,COURTAS,Mari,23/12/1980,Non +22,Côtes-d'Armor,01,1ère circonscription,5,41,F,SERGENTON,Nathalie,01/07/1961,ECO,Employé civil et agent de service de la fonction publique,Non,M,TONNELLIER,Franck,16/07/1974,Non +22,Côtes-d'Armor,01,1ère circonscription,6,55,M,LAMY,Yvan,16/07/1988,DSV,Ouvrier non qualifié de type industriel,Non,F,LE TROCQUER,Françoise,08/06/1947,Non +22,Côtes-d'Armor,01,1ère circonscription,7,6,M,THOMAS,Pierre-Yves,21/07/1963,REC,Ingénieur et cadre technique d'entreprise,Non,M,LOPIN,Pierre-Yves,19/03/1946,Non +22,Côtes-d'Armor,01,1ère circonscription,8,48,F,DARRAS,Fanny,18/03/1987,REG,Profession intermédiaire administrative de la fonction publique,Non,M,UYTTRAEGE LE MOIGNIC,Ludovic,15/03/1986,Non +22,Côtes-d'Armor,01,1ère circonscription,9,57,F,GORGIARD,Marion,16/06/1962,NUP,Employé de commerce,Non,M,MARIGLIANO,Augustin,26/09/1999,Non +22,Côtes-d'Armor,01,1ère circonscription,10,29,M,BRIEND,Stéphane,18/07/1970,DVD,Cadre administratif et commercial d'entreprise,Non,F,STENTZEL-LE CARDINAL,Stéphanie,03/01/1976,Non +22,Côtes-d'Armor,01,1ère circonscription,11,10,M,SIMELIERE,Thierry,22/02/1956,DVC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,GUGUEN,Karine,02/10/1973,Non +22,Côtes-d'Armor,01,1ère circonscription,12,14,F,BILLAUD,Françoise,28/04/1953,RN,Commerçant et assimilé,Non,M,METAYER,Aurélien,19/01/1987,Non +22,Côtes-d'Armor,01,1ère circonscription,13,26,M,MARTIN,Joannic,21/05/1992,REG,Employé civil et agent de service de la fonction publique,Non,F,DANJOU,Aourell,01/05/1991,Non +22,Côtes-d'Armor,01,1ère circonscription,14,20,M,FALIGOT,Romain,22/03/1991,DVD,Cadre administratif et commercial d'entreprise,Non,F,ROOS,Valérie,14/04/1974,Non +22,Côtes-d'Armor,02,2ème circonscription,1,44,M,BERVILLE,Hervé,15/01/1990,ENS,Cadre administratif et commercial d'entreprise,Oui,F,BOULOUX,Chantal,23/06/1961,Non +22,Côtes-d'Armor,02,2ème circonscription,2,25,M,BONVOISIN,Franck,19/06/1974,DIV,Profession libérale,Non,F,ROBERT,Fabienne,04/01/1971,Non +22,Côtes-d'Armor,02,2ème circonscription,3,16,M,KIEFFER,Antoine,08/04/1997,RN,Commerçant et assimilé,Non,M,BON,Angelo,01/05/1991,Non +22,Côtes-d'Armor,02,2ème circonscription,4,7,M,SICRE,Jean-Luc,15/09/1952,DXG,Ancien cadre,Non,F,GAGEOT,Françoise,24/07/1967,Non +22,Côtes-d'Armor,02,2ème circonscription,5,45,F,CROKAERT,Eugénie,03/10/2000,REC,"Elève, étudiant",Non,M,QUIGNON,Benjamin,13/06/1997,Non +22,Côtes-d'Armor,02,2ème circonscription,6,22,M,DROUILLET,Raphaël,04/06/1997,ECO,Employé de commerce,Non,F,LE FICHOUX,Mathilde,17/01/1998,Non +22,Côtes-d'Armor,02,2ème circonscription,7,46,F,MARIE,Héléna,25/12/1986,REG,Employé administratif d'entreprise,Non,M,BRIAND,Maxime,01/08/1991,Non +22,Côtes-d'Armor,02,2ème circonscription,8,4,F,HERBLIN,Lucie,06/04/1990,DXG,Profession intermédiaire de la santé et du travail social,Non,M,COLLET,Martial,18/11/1959,Non +22,Côtes-d'Armor,02,2ème circonscription,9,40,M,DESBOIS,Michel,25/09/1964,DVD,Ancien cadre,Non,F,GUIGUI-DELAROCHE,Cécilia,02/07/1968,Non +22,Côtes-d'Armor,02,2ème circonscription,10,35,M,MONROCQ,Serge,03/09/1946,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,F,ROZÉ,Colette,12/09/1949,Non +22,Côtes-d'Armor,02,2ème circonscription,11,9,F,HUBERT,Sophie,31/01/1964,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,CAMPION,Mikaël,06/09/1981,Non +22,Côtes-d'Armor,02,2ème circonscription,12,17,M,RICARD,Bruno,09/01/1969,NUP,"Professeur, profession scientifique",Non,F,FRIN,Guylaine,17/12/1962,Non +22,Côtes-d'Armor,03,3ème circonscription,1,13,F,DE MELLON,Odile,27/02/1952,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,PICHEREAU,Isabelle,16/10/1973,Non +22,Côtes-d'Armor,03,3ème circonscription,2,39,M,ALLAIN,Olivier,23/05/1964,ENS,Agriculteur sur moyenne exploitation,Non,M,VITEL,Fabien,29/08/1988,Non +22,Côtes-d'Armor,03,3ème circonscription,3,37,F,LEFEUVRE,Marie-Thérèse,23/02/1957,DSV,Ancien cadre,Non,M,YU-YUENG,François,17/03/1962,Non +22,Côtes-d'Armor,03,3ème circonscription,4,28,F,NIVET,Florence,24/07/1969,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,M,GUIGANTON,Marc,04/02/1979,Non +22,Côtes-d'Armor,03,3ème circonscription,5,21,F,LECAT,Marie-Pierre,04/08/1950,REC,Ancien cadre,Non,M,COUPÉ,Louis-Marie,15/04/1980,Non +22,Côtes-d'Armor,03,3ème circonscription,6,49,M,RAVARD,Antoine,03/12/1993,NUP,Profession libérale,Non,F,TABART,Valérie,05/09/1973,Non +22,Côtes-d'Armor,03,3ème circonscription,7,59,M,LE FUR,Marc,28/11/1956,LR,Cadre de la fonction publique,Oui,M,DE SALLIER DUPIN,Stéphane,08/10/1968,Non +22,Côtes-d'Armor,03,3ème circonscription,8,32,M,TYLI,Bryan,30/09/1999,REG,Employé de commerce,Non,M,HAIRON,Ludwig,12/01/2001,Non +22,Côtes-d'Armor,03,3ème circonscription,9,5,M,LAMOUR,Jean-Pierre,04/09/1958,DXG,"Professeur, profession scientifique",Non,F,VAN DEN BERGHE,Camille,14/05/1984,Non +22,Côtes-d'Armor,04,4ème circonscription,1,34,M,TOUDIC,Arnaud,25/07/1974,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GLARNER,Sophie,19/06/1959,Non +22,Côtes-d'Armor,04,4ème circonscription,2,47,F,LEPVRAUD,Murielle,15/07/1974,NUP,Employé administratif d'entreprise,Non,M,KAZUMBA,Tangui,16/01/1996,Non +22,Côtes-d'Armor,04,4ème circonscription,3,18,F,LIRONCOURT,Sylvie,30/07/1955,DXG,Ancien employé,Non,F,AUBRY,Gwénaëlle,21/01/1974,Non +22,Côtes-d'Armor,04,4ème circonscription,4,30,F,VINCELEUX,Edwige,24/12/1973,REC,Ouvrier qualifié de type industriel,Non,M,RIOU,Patrice,04/07/1960,Non +22,Côtes-d'Armor,04,4ème circonscription,5,63,M,PRIGENT,Jean-Paul,23/11/1965,LR,Agriculteur sur moyenne exploitation,Non,M,HILIQUIN,Hervé,12/02/1950,Non +22,Côtes-d'Armor,04,4ème circonscription,6,27,F,LE SCOUR,Françoise,16/03/1960,REG,Profession intermédiaire de la santé et du travail social,Non,M,GÉLÉOC,Raymond,06/04/1950,Non +22,Côtes-d'Armor,04,4ème circonscription,7,58,F,ROLLAND,Myriam,15/11/1979,REG,Employé de commerce,Non,M,SAVARY,Jacky,02/01/1960,Non +22,Côtes-d'Armor,04,4ème circonscription,8,15,M,LUDE,Noël,25/12/1948,RN,Ancien cadre,Non,M,LE FLOCH,Paul,02/09/1998,Non +22,Côtes-d'Armor,04,4ème circonscription,9,31,M,GUÉGUEN,Alain,13/01/1963,DVG,Profession intermédiaire de la santé et du travail social,Non,F,CORBEL,Peggy,28/05/1973,Non +22,Côtes-d'Armor,04,4ème circonscription,10,24,M,TOUZÉ,Nicolas,20/08/1970,ECO,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,JOSSELIN,Chrystelle,23/07/1969,Non +22,Côtes-d'Armor,04,4ème circonscription,11,61,M,DRISSI,Moulay,15/06/1971,DIV,Militaire du contingent,Non,M,BONSEIGNOUR MANAUT-ESQUIEULE,Patrice,05/03/1948,Non +22,Côtes-d'Armor,04,4ème circonscription,12,43,M,KERLOGOT,Yannick,12/05/1970,ENS,"Professeur des écoles, instituteur et assimilé",Oui,F,DRONIOU,Marie-Françoise,17/11/1965,Non +22,Côtes-d'Armor,05,5ème circonscription,1,51,F,CASTEK,Sandrine,02/05/1980,RN,Employé de commerce,Non,F,LUCAS,Sonia,17/06/1971,Non +22,Côtes-d'Armor,05,5ème circonscription,2,2,M,GUÉGUEN,Yann,09/10/1964,DXG,Employé civil et agent de service de la fonction publique,Non,M,CARRASCO,Alain,10/01/1967,Non +22,Côtes-d'Armor,05,5ème circonscription,3,38,M,LE MEAUX,Vincent,27/02/1978,DVG,Cadre administratif et commercial d'entreprise,Non,F,SAGE,Harisoa,11/07/1968,Non +22,Côtes-d'Armor,05,5ème circonscription,4,50,M,PODER,Eric,28/08/1962,REG,Technicien,Non,M,PRIGENT,Patrick,16/03/1956,Non +22,Côtes-d'Armor,05,5ème circonscription,5,62,M,JEZEQUEL,Yves,15/12/1974,LR,Militaire du contingent,Non,M,LECERF,Gwenvaël,24/07/1987,Non +22,Côtes-d'Armor,05,5ème circonscription,6,60,M,PIEPERS,Mael,17/08/2000,ECO,Employé administratif d'entreprise,Non,F,PETIT,Maël,23/08/2000,Non +22,Côtes-d'Armor,05,5ème circonscription,7,54,F,GIOUX,Sylvie,08/11/1957,ECO,Profession libérale,Non,M,CABOT,Albert,04/09/1959,Non +22,Côtes-d'Armor,05,5ème circonscription,8,23,F,TROADEC,Marie-Amélie,13/02/1982,NUP,"Profession de l'information, des arts et des spectacles",Non,M,LE LAY,Yves-Marie,09/05/1950,Non +22,Côtes-d'Armor,05,5ème circonscription,9,36,F,VICET,Marielle,21/07/1957,DIV,Profession intermédiaire de la santé et du travail social,Non,M,LE BLANC,David,21/06/1970,Non +22,Côtes-d'Armor,05,5ème circonscription,10,42,F,KERRAIN,Trefina,21/03/1987,REG,"Professeur, profession scientifique",Non,M,FÉTAS,Pierre-Adrien,23/02/1982,Non +22,Côtes-d'Armor,05,5ème circonscription,11,19,M,GERMAIN,Bernard,08/12/1953,REC,Ingénieur et cadre technique d'entreprise,Non,F,STUDLER,Margaret,05/04/1951,Non +22,Côtes-d'Armor,05,5ème circonscription,12,56,F,WEBER,Carine,06/10/1973,DXG,"Professeur, profession scientifique",Non,F,PINNA,Dominique,16/06/1965,Non +22,Côtes-d'Armor,05,5ème circonscription,13,8,M,LECLERC,Erwann,24/12/1977,DSV,Commerçant et assimilé,Non,M,PARENTHOINE,Denis,15/04/1967,Non +22,Côtes-d'Armor,05,5ème circonscription,14,12,M,BOTHOREL,Eric,20/10/1966,ENS,Cadre de la fonction publique,Oui,F,LE GALL,Katell,21/12/1973,Non +23,Creuse,01,1ère circonscription,1,10,F,MIRAN,Françoise,01/12/1939,ECO,Ancien employé,Non,F,MILANOWSKA,Krystyna,23/03/1961,Non +23,Creuse,01,1ère circonscription,2,12,F,JOSSET,Hélène,31/12/1951,DSV,Ancienne profession intermédiaire,Non,M,FATTAL,Jean-Pierre,06/09/1953,Non +23,Creuse,01,1ère circonscription,3,8,M,AUCLAIR,Jean,03/05/1946,DVD,Ancien agriculteur exploitant,Non,F,PILAT,Hélène,04/08/1964,Non +23,Creuse,01,1ère circonscription,4,5,F,DUMON,Catherine,08/12/1950,DXG,Ancien employé,Non,F,SIRONNEAU,Aline,19/02/1945,Non +23,Creuse,01,1ère circonscription,5,7,F,KENNEDY,Roubiali,08/08/1971,DVG,"Profession de l'information, des arts et des spectacles",Non,F,CARAÏSCO,Céline,24/07/1972,Non +23,Creuse,01,1ère circonscription,6,4,F,COUTURIER,Catherine,27/02/1959,NUP,Ancienne profession intermédiaire,Non,M,CHAPAL,Arnaud,22/04/1958,Non +23,Creuse,01,1ère circonscription,7,6,M,MOREAU,Jean-Baptiste,14/02/1977,ENS,Agriculteur sur grande exploitation,Oui,M,TURPINAT,Vincent,28/03/1971,Non +23,Creuse,01,1ère circonscription,8,9,F,DEFEMME,Catherine,25/11/1961,DVD,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,DELAITRE,Thierry,27/12/1971,Non +23,Creuse,01,1ère circonscription,9,2,F,BILDE,Sylvie,05/03/1973,RN,Employé civil et agent de service de la fonction publique,Non,F,MANOUVRIER,Karine,27/03/1992,Non +23,Creuse,01,1ère circonscription,10,3,M,GIROIX,Grégory,06/10/1997,REC,Technicien,Non,M,ELIE,Antoine,07/03/2002,Non +23,Creuse,01,1ère circonscription,11,11,F,DURENGUE,Elisabeth,13/09/1965,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LENORMAND,Laurent,10/05/1972,Non +24,Dordogne,01,1ère circonscription,1,29,F,KHELFAOUI,Lise,14/04/1979,DXG,"Professeur, profession scientifique",Non,M,RUMEAU,Frédéric,30/09/1971,Non +24,Dordogne,01,1ère circonscription,2,21,F,JEAN,Emmanuelle,03/11/1975,ECO,Profession libérale,Non,F,DUPONT,Astrid,22/06/1981,Non +24,Dordogne,01,1ère circonscription,3,8,M,AMBROISE,Williams,03/08/1972,RN,"Contremaître, agent de maîtrise",Non,F,HUART,Isabelle,28/01/1969,Non +24,Dordogne,01,1ère circonscription,4,44,M,MELO,Pierre,31/01/2001,DIV,"Elève, étudiant",Non,M,BOITEL,Maël,05/09/2002,Non +24,Dordogne,01,1ère circonscription,5,45,F,CHRÉTIEN,Cécile,04/01/1967,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,DA-CUNHA,Géraldine,28/02/1971,Non +24,Dordogne,01,1ère circonscription,6,35,M,VADILLO,Floran,16/08/1985,DVG,Cadre administratif et commercial d'entreprise,Non,F,CAPPELLE,Carline,25/05/1951,Non +24,Dordogne,01,1ère circonscription,7,16,M,CHASSAING,Philippe,18/05/1972,ENS,"Professeur, profession scientifique",Oui,F,LE ROY,Sabine,11/09/1982,Non +24,Dordogne,01,1ère circonscription,8,32,F,MARTIN,Pascale,24/08/1961,NUP,Ancien cadre,Non,M,BOUGNOTEAU,Laurent,05/07/1966,Non +24,Dordogne,01,1ère circonscription,9,47,F,LEGLU,Isabelle,20/10/1964,DVD,Profession intermédiaire de la santé et du travail social,Non,F,CARON,Virginie,10/10/1972,Non +24,Dordogne,01,1ère circonscription,10,6,F,LÉGER,Pascale,18/01/1961,REC,Agriculteur sur petite exploitation,Non,M,PUYO,Claude,15/01/1960,Non +24,Dordogne,01,1ère circonscription,11,7,M,REBOUL,Patrice,20/11/1962,RDG,Profession libérale,Non,F,SIMONNET,Jacqueline,20/10/1963,Non +24,Dordogne,01,1ère circonscription,12,41,F,MARTY,Elisabeth,27/06/1965,LR,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BECKER,Stephane,10/07/1970,Non +24,Dordogne,02,2ème circonscription,1,20,M,ULIAN,Cédric,28/03/1978,ECO,Cadre de la fonction publique,Non,F,ESPINAR,Julia,16/07/1992,Non +24,Dordogne,02,2ème circonscription,2,33,M,DELPON,Michel,13/08/1949,ENS,Ancien cadre,Oui,F,MÉNARD,Denise,07/07/1951,Non +24,Dordogne,02,2ème circonscription,3,9,M,MULLER,Serge,26/02/1976,RN,Profession intermédiaire de la santé et du travail social,Non,M,BROUCQ,Lucas,26/12/2002,Non +24,Dordogne,02,2ème circonscription,4,17,M,CATHUS,Christophe,10/09/1971,DVG,Cadre de la fonction publique,Non,F,CHEVALLIER,Sylvie,02/05/1962,Non +24,Dordogne,02,2ème circonscription,5,26,F,ROUX,Michèle,24/06/1955,NUP,Ancien agriculteur exploitant,Non,M,STEVAN,Bernard,21/04/1955,Non +24,Dordogne,02,2ème circonscription,6,12,M,DELFOUR,Aurélien,16/03/1995,LR,Cadre de la fonction publique,Non,F,BORIE,Isabelle,11/09/1965,Non +24,Dordogne,02,2ème circonscription,7,46,F,LEGROS,Amandine,21/10/1983,DVD,Cadre de la fonction publique,Non,M,CONQUET,Jean-Pierre,25/05/1950,Non +24,Dordogne,02,2ème circonscription,8,37,M,PRATS,Hervé,27/01/1964,DSV,Technicien,Non,F,THOMAS,Sandra,06/05/1982,Non +24,Dordogne,02,2ème circonscription,9,13,F,BALLERAND,Nathalie,11/05/1963,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,RODRIGUEZ,Alain,14/12/1954,Non +24,Dordogne,02,2ème circonscription,10,30,M,ALMOSNINO,Jonathan,10/01/1988,DXG,"Professeur, profession scientifique",Non,M,VILLERIOT,Jean-Michel,04/02/1959,Non +24,Dordogne,03,3ème circonscription,1,43,F,JORAND,Adélaïde,01/03/1979,DIV,Profession intermédiaire de la santé et du travail social,Non,M,TESSIER,Alexandre,11/06/1980,Non +24,Dordogne,03,3ème circonscription,2,28,M,DECOUPY,Jacques,27/05/1955,DXG,Ancien employé,Non,M,SARRAZIN,Arnaud,24/02/1968,Non +24,Dordogne,03,3ème circonscription,3,24,M,GIRARDEAU,Cyril,15/09/1992,NUP,Commerçant et assimilé,Non,F,MARTY,Marlène,18/05/1974,Non +24,Dordogne,03,3ème circonscription,4,11,F,THOMASSON,Myriam,20/04/1977,LR,Profession intermédiaire administrative et commerciale des entreprises,Non,M,MAZI,Antoine,02/10/2000,Non +24,Dordogne,03,3ème circonscription,5,25,M,PEYROUNY,Martial,08/04/1967,DVG,"Professeur, profession scientifique",Non,F,BOINEAU SERRANO,Monique,06/03/1960,Non +24,Dordogne,03,3ème circonscription,6,2,M,COUTOU,Antoine,08/06/1981,REC,Ouvrier agricole,Non,M,DUPIN DE SAINT-CYR,Brice,14/11/1950,Non +24,Dordogne,03,3ème circonscription,7,27,F,JOUBERT,Florence,30/06/1965,RN,Employé administratif d'entreprise,Non,F,JOINT,Isabelle,05/12/1963,Non +24,Dordogne,03,3ème circonscription,8,38,M,GARDILLOU,Guillaume,15/06/1972,DVC,Cadre administratif et commercial d'entreprise,Non,F,ROMAIN,Manon,10/05/2002,Non +24,Dordogne,03,3ème circonscription,9,19,F,LAVAL,Céline,09/03/1972,ECO,Employé administratif d'entreprise,Non,F,CHAMBON,Chrystelle,09/10/1968,Non +24,Dordogne,03,3ème circonscription,10,3,M,CUBERTAFON,Jean-Pierre,05/02/1948,ENS,Ancien cadre,Oui,F,HERMAN-BANCAUD,Nadine,27/06/1949,Non +24,Dordogne,03,3ème circonscription,11,23,F,DESMARTIN,Laurence,23/10/1959,DVD,Profession intermédiaire de la santé et du travail social,Non,M,MOREAU,Jean-Emile,16/02/1954,Non +24,Dordogne,04,4ème circonscription,1,42,M,GARNIER,Eric,04/03/1965,DVG,"Profession de l'information, des arts et des spectacles",Non,M,VANDAELE,Didier,24/01/1950,Non +24,Dordogne,04,4ème circonscription,2,10,M,PEYTAVIE,Sébastien,17/04/1982,NUP,Profession intermédiaire de la santé et du travail social,Non,F,CHALARD,Emilie,29/07/1992,Non +24,Dordogne,04,4ème circonscription,3,22,M,ROUDIER,Stéphane,06/12/1969,REG,Ingénieur et cadre technique d'entreprise,Non,F,CHAPUT,Marion,06/11/1980,Non +24,Dordogne,04,4ème circonscription,4,18,F,TRAPY-JOINEL,Laurence,25/06/1961,ECO,Ancien employé,Non,F,MEICHLER,Virginie,30/09/1974,Non +24,Dordogne,04,4ème circonscription,5,31,M,YILDIRIM,Nécati,27/01/1978,DXG,"Professeur, profession scientifique",Non,F,BESNARD,Céline,21/08/1974,Non +24,Dordogne,04,4ème circonscription,6,34,F,DUBOIS,Jacqueline,28/05/1957,DVC,Ancienne profession intermédiaire,Oui,F,COLOMBEL,Sylvie,26/07/1961,Non +24,Dordogne,04,4ème circonscription,7,39,F,MALEYRE,Anne-Laure,16/04/1978,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,CAPITAINE,Quentin,04/01/1998,Non +24,Dordogne,04,4ème circonscription,8,5,F,LE BERRE,Ludivine,04/07/2002,RN,"Elève, étudiant",Non,M,PINSON,René,28/03/1964,Non +24,Dordogne,04,4ème circonscription,9,36,F,ROUYARD LIGNON,Frédérique,16/05/1959,DSV,Ancien cadre,Non,F,COUSTOU,Anne-Marie,14/07/1952,Non +24,Dordogne,04,4ème circonscription,10,40,M,TEILLAC,Christian,16/01/1958,DVG,Ingénieur et cadre technique d'entreprise,Non,F,LAGOUBIE,Fabienne,02/05/1966,Non +24,Dordogne,04,4ème circonscription,11,14,M,FANIER,Basile,22/08/1992,LR,Cadre administratif et commercial d'entreprise,Non,F,LE BARBIER,Claudine,18/05/1952,Non +25,Doubs,01,1ère circonscription,1,13,M,LUTZ,Thomas,29/03/1973,RN,Chef d'entreprise de 10 salariés ou plus,Non,F,JACQUINOT,Monique,24/02/1952,Non +25,Doubs,01,1ère circonscription,2,39,F,TOURNIER,Pauline,20/05/1981,DIV,"Contremaître, agent de maîtrise",Non,M,NORTH,Jérôme,26/10/1986,Non +25,Doubs,01,1ère circonscription,3,43,F,COURBARON,Doïna,15/04/1982,DXG,"Profession de l'information, des arts et des spectacles",Non,M,LEMAY,Tino,07/12/1983,Non +25,Doubs,01,1ère circonscription,4,23,F,MALLOL,Candice,15/03/1980,ECO,Profession intermédiaire de la santé et du travail social,Non,F,ROMARY-BREUX,Dominique,24/05/1959,Non +25,Doubs,01,1ère circonscription,5,34,F,PERNIN,Marielle,14/05/1947,ECO,Ancien cadre,Non,M,BARONCHELLI,Rémy,27/12/1994,Non +25,Doubs,01,1ère circonscription,6,22,M,CROIZIER,Laurent,29/01/1975,ENS,"Professeur des écoles, instituteur et assimilé",Non,F,CORNIER,Laurence,25/06/1975,Non +25,Doubs,01,1ère circonscription,7,3,M,GALPIN,Fabrice,02/03/1972,REC,Cadre administratif et commercial d'entreprise,Non,F,CABAUD,Pascale,28/03/1956,Non +25,Doubs,01,1ère circonscription,8,4,F,VEZIES,Séverine,10/09/1973,NUP,"Professeur, profession scientifique",Non,M,FHIMA,Sami,20/01/1984,Non +25,Doubs,01,1ère circonscription,9,35,F,INEZARÈNE,Salima,19/11/1973,RDG,"Professeur des écoles, instituteur et assimilé",Non,M,AUBRY,Didier,08/04/1957,Non +25,Doubs,01,1ère circonscription,10,5,F,FRIESS,Nicole,22/08/1953,DXG,Ancien employé,Non,M,RUÉ,Antony,23/02/1973,Non +25,Doubs,01,1ère circonscription,11,2,M,VIENET,Michel,23/07/1960,LR,Ancien cadre,Non,F,GRUILLOT,Marie,24/07/1960,Non +25,Doubs,01,1ère circonscription,12,42,F,KECK,Célia,25/08/1992,REG,Ouvrier non qualifié de type artisanal,Non,F,FISCHER,Mélissa,24/12/2002,Non +25,Doubs,02,2ème circonscription,1,36,F,KAOULAL,Chafia,29/05/1970,LR,Cadre administratif et commercial d'entreprise,Non,M,ROY,Daniel,23/04/1974,Non +25,Doubs,02,2ème circonscription,2,25,M,RAVACLEY,Stéphane,06/06/1970,NUP,Artisan,Non,F,HAKKAR-BOYER,Nabia,06/07/1983,Non +25,Doubs,02,2ème circonscription,3,26,M,ALAUZET,Eric,07/06/1958,ENS,Profession libérale,Oui,F,DE WILDE,Michèle,17/05/1951,Non +25,Doubs,02,2ème circonscription,4,46,F,MEYER,Claudine,02/09/1974,REG,"Professeur, profession scientifique",Non,M,BONN,Joël,21/10/1952,Non +25,Doubs,02,2ème circonscription,5,45,F,CARRAU,Barbara,27/09/1973,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BOÏTO,Enzo,22/07/2003,Non +25,Doubs,02,2ème circonscription,6,24,M,THOMASSIN,Geoffrey,19/10/1986,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,F,ARMANA,Cécile,28/11/1978,Non +25,Doubs,02,2ème circonscription,7,44,M,PRENEL,Jim,30/06/1992,DSV,Employé civil et agent de service de la fonction publique,Non,F,CARBONEL,Sylvia,02/12/1952,Non +25,Doubs,02,2ème circonscription,8,6,F,VUITTON,Brigitte,29/11/1957,DXG,"Professeur, profession scientifique",Non,M,MILLOT,Olivier,10/09/1982,Non +25,Doubs,02,2ème circonscription,9,14,M,FUSIS,Eric,02/10/1958,RN,Ancien cadre,Non,M,BERNARD,Franck,05/04/1967,Non +25,Doubs,03,3ème circonscription,1,16,M,FROPPIER,Christophe,07/07/1975,LR,Cadre administratif et commercial d'entreprise,Non,F,MAUGUIN,Anne-Carole,27/06/1975,Non +25,Doubs,03,3ème circonscription,2,9,F,DAYET,Virgnie,31/05/1983,NUP,Ouvrier qualifié de type industriel,Non,M,GUINEBERT,Matthieu,03/10/1995,Non +25,Doubs,03,3ème circonscription,3,15,M,PACQUOT,Nicolas,12/12/1978,ENS,Ingénieur et cadre technique d'entreprise,Non,F,THIEBAUT,Laure,11/06/1969,Non +25,Doubs,03,3ème circonscription,4,40,M,NEDEY,Valère,25/12/1955,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,LIGIER,Régis,26/11/1973,Non +25,Doubs,03,3ème circonscription,5,27,F,TAPONNOT,Romane,05/08/2000,REC,Commerçant et assimilé,Non,M,POINSARD,Alexandre,29/04/1998,Non +25,Doubs,03,3ème circonscription,6,8,F,PASTOR,Christine,29/09/1975,DVD,Cadre administratif et commercial d'entreprise,Non,M,TURILLON,Stephane,31/03/1979,Non +25,Doubs,03,3ème circonscription,7,7,M,PLAIN,Franck,06/03/1962,DXG,Ouvrier non qualifié de type industriel,Non,F,MOUGIN,Annie,29/06/1952,Non +25,Doubs,03,3ème circonscription,8,28,F,MAHÉ,Dominique,16/10/1957,DSV,Commerçant et assimilé,Non,M,MARIANI,Reynald,22/09/1977,Non +25,Doubs,03,3ème circonscription,9,17,F,FRITSCH,Nathalie,21/06/1965,RN,Profession libérale,Non,M,POSTIF,David,25/04/1971,Non +25,Doubs,04,4ème circonscription,1,29,M,BARBIER,Frédéric,30/08/1960,ENS,Ancien cadre,Oui,F,VOIDEY,Martine,18/09/1959,Non +25,Doubs,04,4ème circonscription,2,41,M,VOLA,Yves,07/02/1949,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,F,DA SILVA,Corinne,07/01/1965,Non +25,Doubs,04,4ème circonscription,3,18,F,GRANGIER,Géraldine,13/02/1975,RN,Profession intermédiaire administrative de la fonction publique,Non,M,DENIS,Jacques,08/07/1947,Non +25,Doubs,04,4ème circonscription,4,30,M,TREPPO,Michel,01/01/1969,DXG,Ouvrier qualifié de type industriel,Non,M,KVARTSKHAVA,Georges,04/10/1935,Non +25,Doubs,04,4ème circonscription,5,31,M,AJOUX,Jean-Marc,27/09/1982,DVC,Ingénieur et cadre technique d'entreprise,Non,M,BOUZAT,Daniel,11/01/1971,Non +25,Doubs,04,4ème circonscription,6,47,F,CANARD,Elisabeth,07/07/1977,DSV,Cadre de la fonction publique,Non,F,BIAGGINI,Catherine,31/07/1963,Non +25,Doubs,04,4ème circonscription,7,10,M,BLOCH,Matthieu,26/04/1983,LR,Cadre administratif et commercial d'entreprise,Non,M,GAGLIARDI,Mathieu,04/02/1987,Non +25,Doubs,04,4ème circonscription,8,19,F,COTTIER,Brigitte,26/06/1957,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,MILLET,Christian,08/06/1958,Non +25,Doubs,04,4ème circonscription,9,11,M,VOURRON,Philippe,21/12/1966,REC,Chauffeur,Non,M,HAMITOU,Jérôme,29/03/1986,Non +25,Doubs,04,4ème circonscription,10,37,F,SADIQ,Fatia,08/10/1974,DIV,Cadre administratif et commercial d'entreprise,Non,M,ALI,Morad,01/06/1987,Non +25,Doubs,05,5ème circonscription,1,32,F,GENEVARD,Annie,07/09/1956,LR,"Professeur, profession scientifique",Oui,M,LIÉGEON,Éric,24/01/1961,Non +25,Doubs,05,5ème circonscription,2,38,F,KADIJEVIC,Alexandra,05/09/2002,DSV,"Elève, étudiant",Non,M,PERRIER,François,26/05/1987,Non +25,Doubs,05,5ème circonscription,3,33,F,LUDI,Martine,22/06/1951,NUP,Ancien cadre,Non,F,MORER-HAEGELIN,Pascale,07/12/1976,Non +25,Doubs,05,5ème circonscription,4,12,M,ALPY,Philippe,25/06/1960,ENS,Agriculteur sur moyenne exploitation,Non,F,INGLADA,Dominique,31/10/1964,Non +25,Doubs,05,5ème circonscription,5,21,F,JURY,Mathilde,23/08/1950,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,LAUNAY,Sébastien,27/11/1974,Non +25,Doubs,05,5ème circonscription,6,48,F,LEBECQUE,Elena,13/11/1978,REC,Cadre administratif et commercial d'entreprise,Non,M,MARTIN,Michaël,21/05/1981,Non +25,Doubs,05,5ème circonscription,7,20,F,MORRISON,Sonya,25/07/1981,DXG,"Professeur, profession scientifique",Non,M,CUENOT,Claude,27/10/1964,Non +26,Drôme,01,1ère circonscription,1,15,F,CLAPOT,Mireille,14/10/1963,ENS,Cadre de la fonction publique,Oui,F,THIBAUT,Anne-Laure,15/06/1984,Non +26,Drôme,01,1ère circonscription,2,16,F,VINCENT,Pascale,20/01/1965,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,AURIOL,Olivier,28/12/1956,Non +26,Drôme,01,1ère circonscription,3,25,M,CHKERI,Karim,12/05/1976,NUP,Profession intermédiaire administrative de la fonction publique,Non,F,FIAT,Véronique,30/10/1973,Non +26,Drôme,01,1ère circonscription,4,23,M,CASARI,Bruno,10/04/1969,DVC,Profession libérale,Non,F,LEGER,Carène,30/11/1975,Non +26,Drôme,01,1ère circonscription,5,27,F,ROSE,Samantha,03/12/1990,ECO,Ingénieur et cadre technique d'entreprise,Non,M,BARRAT,Joris,18/06/1976,Non +26,Drôme,01,1ère circonscription,6,29,M,PEHLIVAN,Ozbay,11/03/1988,DVG,Technicien,Non,F,EL BOUGHANMI,Hadda,09/06/1978,Non +26,Drôme,01,1ère circonscription,7,8,F,PUGEAT,Véronique,19/02/1955,LR,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,BRUNET,Michel,07/09/1954,Non +26,Drôme,01,1ère circonscription,8,6,F,KOPFF,Adèle,29/07/1978,DXG,"Professeur, profession scientifique",Non,M,PARAVEL,Olivier,06/11/1964,Non +26,Drôme,01,1ère circonscription,9,37,M,BRÉBANT,Pierrick,20/08/1996,DSV,Commerçant et assimilé,Non,M,JURDIC,Matéo,10/12/2002,Non +26,Drôme,01,1ère circonscription,10,42,M,BARJONET,Charles,06/01/1996,DIV,Ancien employé,Non,M,MESONA,Christopher,29/07/1990,Non +26,Drôme,01,1ère circonscription,11,19,M,TOSELLO-PACE,Philippe,30/08/1946,RN,Ancien cadre,Non,F,RUIZ,Nadège,24/01/1978,Non +26,Drôme,01,1ère circonscription,12,35,F,PIGA,Tifanie,26/05/1994,ECO,Profession intermédiaire de la santé et du travail social,Non,F,HAMMACHE,Nadia,16/07/1984,Non +26,Drôme,02,2ème circonscription,1,21,F,POLLET,Lisette,04/01/1968,RN,Ouvrier qualifié de type industriel,Non,M,MARCEL,Frédéric,05/12/1962,Non +26,Drôme,02,2ème circonscription,2,12,M,ALZAT-LALY,Arnaud,22/06/1981,DSV,"Professeur, profession scientifique",Non,M,BERMOND,Alexis,27/11/1998,Non +26,Drôme,02,2ème circonscription,3,28,M,BATTESTI,Thomas,22/04/1989,REC,Cadre administratif et commercial d'entreprise,Non,M,CHOUILLOU,Jean-Luc,31/08/1952,Non +26,Drôme,02,2ème circonscription,4,26,M,DUBOIS,Rémi,02/05/1985,ECO,Profession intermédiaire de la santé et du travail social,Non,F,CAUVIN-LAPEYRE,Mélanie,27/10/1970,Non +26,Drôme,02,2ème circonscription,5,34,M,MACLIN,Benoît,20/07/1977,ENS,Commerçant et assimilé,Non,F,KARGUE,Adeline,22/09/1957,Non +26,Drôme,02,2ème circonscription,6,24,M,REYNAUD,Gilles,20/04/1966,NUP,Ancien employé,Non,F,MAHÉ,Rachel,03/05/1984,Non +26,Drôme,02,2ème circonscription,7,4,F,ARNAVON,Valérie,01/06/1967,LR,Cadre administratif et commercial d'entreprise,Non,M,GROUSSON,Daniel,09/07/1961,Non +26,Drôme,02,2ème circonscription,8,36,M,AISSOU,Mohamed,17/04/1978,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,DA SILVA,Sandra,28/10/1993,Non +26,Drôme,02,2ème circonscription,9,33,M,BOUZIANE,Salim,12/09/1972,DVC,"Professeur, profession scientifique",Non,F,BRARD,Hélène,30/01/1947,Non +26,Drôme,02,2ème circonscription,10,7,M,RAT,Guy,02/05/1953,DXG,Ancien employé,Non,M,TERNO,Alain,02/05/1955,Non +26,Drôme,03,3ème circonscription,1,30,F,DE LAVERGNE,Célia,21/11/1979,ENS,Ingénieur et cadre technique d'entreprise,Oui,M,CAHN,Philippe,11/12/1951,Non +26,Drôme,03,3ème circonscription,2,3,M,BERARD,Paul,04/06/1983,LR,Cadre de la fonction publique,Non,F,ZAMMIT,Nathalie,31/03/1971,Non +26,Drôme,03,3ème circonscription,3,2,M,MAURICE,Alain,26/08/1962,DVG,Profession libérale,Non,F,PEHLIVAN,Ayten,13/03/1973,Non +26,Drôme,03,3ème circonscription,4,40,F,BLANCHARD,Elise,29/09/1953,DVG,Ancien employé,Non,M,RUFFIER,Daniel,09/07/1960,Non +26,Drôme,03,3ème circonscription,5,32,F,MARTIN,Sylvie,08/03/1962,DSV,Employé civil et agent de service de la fonction publique,Non,F,BROLIRON,Sandrine,26/08/1968,Non +26,Drôme,03,3ème circonscription,6,41,F,RAYNAL,Virginie,18/12/1976,REC,Cadre administratif et commercial d'entreprise,Non,M,LEVY,Serge,07/09/1972,Non +26,Drôme,03,3ème circonscription,7,14,M,CHAMPMARTIN,Charly,03/07/1987,DXG,"Professeur, profession scientifique",Non,F,MOREAU,Naïs,14/11/1987,Non +26,Drôme,03,3ème circonscription,8,18,M,DOS REIS,Philippe,09/06/1983,RN,Ingénieur et cadre technique d'entreprise,Non,M,THIBAULT,Yoann,12/01/2001,Non +26,Drôme,03,3ème circonscription,9,22,F,POCHON,Marie,04/05/1990,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BUSSAT,Christian,14/10/1956,Non +26,Drôme,04,4ème circonscription,1,13,M,JULIEN,Gérard,18/03/1946,DSV,Ancienne profession intermédiaire,Non,F,BLANCA,Marie-Thérèse,02/08/1951,Non +26,Drôme,04,4ème circonscription,2,17,M,GAFA,Olivier,17/09/1969,ENS,Profession libérale,Non,F,SARASAR,Blandine,03/03/1980,Non +26,Drôme,04,4ème circonscription,3,9,F,NICOLAS,Nadine,05/05/1951,DSV,Ancien cadre,Non,M,DAMAISIN,Erick,14/10/1963,Non +26,Drôme,04,4ème circonscription,4,11,F,ANTHOINE,Emmanuelle,02/07/1964,LR,Ancienne profession intermédiaire,Oui,M,GAUTHIER,Christian,13/12/1949,Non +26,Drôme,04,4ème circonscription,5,5,F,BERNARD,Monique,02/06/1956,DXG,"Professeur, profession scientifique",Non,M,HUGUES,Maurice,16/01/1954,Non +26,Drôme,04,4ème circonscription,6,31,M,TANRIVERDI,Aydin,14/05/1989,DVG,Technicien,Non,F,DURAND,Marie,05/05/1991,Non +26,Drôme,04,4ème circonscription,7,38,F,VERNY,Geneviève,02/09/1959,REC,Ancienne profession intermédiaire,Non,M,LAVÉDRINE,Alain,19/12/1960,Non +26,Drôme,04,4ème circonscription,8,20,F,STIN,Véronique,03/04/1966,RN,Employé de commerce,Non,M,SÉNÉCLAUZE,Thierry,25/12/1963,Non +26,Drôme,04,4ème circonscription,9,10,M,JOUVET,Pierre,06/10/1986,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GUILLEMINOT,Karine,22/12/1972,Non +27,Eure,01,1ère circonscription,1,8,F,DUCAMP,Anne,05/05/1960,DXG,Ingénieur et cadre technique d'entreprise,Non,M,PANIER,Denis,06/10/1968,Non +27,Eure,01,1ère circonscription,2,36,F,LOIR,Christine,22/02/1977,RN,Profession intermédiaire de la santé et du travail social,Non,M,MICHIELS,Erik,22/11/1955,Non +27,Eure,01,1ère circonscription,3,51,M,MONNIER,Fabrice,14/09/1975,DSV,"Contremaître, agent de maîtrise",Non,F,LALISSE,Stéphanie,08/10/1977,Non +27,Eure,01,1ère circonscription,4,44,M,MIGUET,Nicolas,16/01/1961,DXD,"Profession de l'information, des arts et des spectacles",Non,F,MAXIMIN,Isabelle,03/04/1969,Non +27,Eure,01,1ère circonscription,5,16,F,HÉLAYEL,Catherine,13/05/1961,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,GUÉE,Aude,22/11/1968,Non +27,Eure,01,1ère circonscription,6,10,F,POIRSON,Valérie,31/05/1968,REC,Profession libérale,Non,M,HUET,Amaury,08/03/1984,Non +27,Eure,01,1ère circonscription,7,39,F,MANSOURET,Anne,14/11/1945,DVG,"Ancien artisan, commerçant, chef d'entreprise",Non,M,PAISNEL,Etienne,20/06/1977,Non +27,Eure,01,1ère circonscription,8,23,F,ALLO,Véronique,17/08/1962,ECO,Ingénieur et cadre technique d'entreprise,Non,M,GATTEFOSSEY,Pierre,13/09/1927,Non +27,Eure,01,1ère circonscription,9,34,M,ALORY,Christophe,02/02/1970,LR,Ingénieur et cadre technique d'entreprise,Non,F,TRIDON,Nathalie,02/02/1965,Non +27,Eure,01,1ère circonscription,10,31,F,GIPSON,Séverine,13/12/1970,ENS,Ingénieur et cadre technique d'entreprise,Oui,M,RIVEMALE,Yves-Marie,18/02/1958,Non +27,Eure,01,1ère circonscription,11,50,M,ANCELIN,Christophe,24/12/1975,NUP,Profession libérale,Non,F,MOREL,Eugénie,01/01/1986,Non +27,Eure,02,2ème circonscription,1,7,F,LEVAVASSEUR,Katiana,09/12/1970,RN,Ouvrier non qualifié de type industriel,Non,M,MARCHAND,Jean-Baptiste,02/04/1991,Non +27,Eure,02,2ème circonscription,2,25,F,SAMSON,Nathalie,10/03/1971,NUP,Profession intermédiaire administrative de la fonction publique,Non,M,BEURIOT,Valéry,10/04/1970,Non +27,Eure,02,2ème circonscription,3,42,F,PEYRAUD,Mélanie,16/10/1983,DXG,"Professeur, profession scientifique",Non,M,RHAZI,Philippe,21/07/1965,Non +27,Eure,02,2ème circonscription,4,35,F,FOUQUES,Martine,24/08/1952,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,CRESSON,Martine,02/04/1958,Non +27,Eure,02,2ème circonscription,5,11,M,GOUTTEFARDE,Fabien,27/09/1978,ENS,Cadre de la fonction publique,Oui,F,COLLIN,Isabelle,07/09/1975,Non +27,Eure,02,2ème circonscription,6,9,F,FAUVEAU,Françoise,23/10/1959,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,ROUSSEL,Sylvain,14/03/1989,Non +27,Eure,02,2ème circonscription,7,28,M,CRIQUET,Laurent,22/06/1965,DXG,Profession intermédiaire de la santé et du travail social,Non,F,BUHOT,Marianne,26/02/1952,Non +27,Eure,02,2ème circonscription,8,14,F,MARAGLIANO,Francine,06/11/1961,LR,Profession intermédiaire de la santé et du travail social,Non,F,CHEVALIER,Marie-Noëlle,25/12/1952,Non +27,Eure,02,2ème circonscription,9,18,M,CAMOIN,Emmanuel,14/08/1959,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,HOMMET,Bruno,19/03/1969,Non +27,Eure,02,2ème circonscription,10,17,M,DARROUSSAT,Thomas,26/11/1982,ECO,Technicien,Non,M,JOLY,Jean-Baptiste,30/09/1977,Non +27,Eure,02,2ème circonscription,11,40,M,BERTOIS,Sylvain,25/04/1972,DVD,Technicien,Non,F,GUYOMARD,Valérie,13/06/1973,Non +27,Eure,03,3ème circonscription,1,46,F,TAMARELLE-VERHAEGHE,Marie,27/09/1962,ENS,Cadre de la fonction publique,Oui,M,VIDAL,Arnaud,01/05/1983,Non +27,Eure,03,3ème circonscription,2,27,M,DELANGLE,Julien,03/04/1987,DIV,Commerçant et assimilé,Non,M,CORBEL,Antoine,22/03/1995,Non +27,Eure,03,3ème circonscription,3,29,M,COSTEY,Christophe,22/08/1971,DVD,Chauffeur,Non,F,MÉRIMÉE,Valérie,21/04/1971,Non +27,Eure,03,3ème circonscription,4,37,M,ELEXHAUSER,Thomas,07/03/1989,DVD,Profession libérale,Non,F,FERAUD,Sara,03/09/1976,Non +27,Eure,03,3ème circonscription,5,15,F,WAYOLLE,Annaïck,12/02/1964,ECO,Cadre de la fonction publique,Non,M,WAYOLLE,Eric,15/08/1962,Non +27,Eure,03,3ème circonscription,6,22,F,LE PÊCHEUR,Dorine,07/03/1974,NUP,Artisan,Non,M,TURPIN,Jean-Christophe,01/03/1988,Non +27,Eure,03,3ème circonscription,7,49,F,ROUVIER,Catherine,25/11/1951,REC,Cadre de la fonction publique,Non,M,TERRIER,Thierry,03/06/1951,Non +27,Eure,03,3ème circonscription,8,41,F,HUARD,Marie-Noëlle,06/12/1959,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,MARRE,Éric,21/04/1979,Non +27,Eure,03,3ème circonscription,9,13,M,MAUVIEUX,Kévin,09/09/1991,RN,Employé de commerce,Non,M,LIGNY,Aurélien,24/09/1992,Non +27,Eure,04,4ème circonscription,1,2,M,SOLAL,Christophe,09/02/1967,DXG,Ouvrier qualifié de type industriel,Non,F,ALNIKINE,Monique,07/10/1960,Non +27,Eure,04,4ème circonscription,2,33,M,THOMAS,Sylvain,24/11/1968,ECO,Ancien employé,Non,M,LEBOUCQ,Dominique,01/04/1959,Non +27,Eure,04,4ème circonscription,3,53,F,DJEMEL,Nadjia,05/04/1973,ECO,Employé de commerce,Non,F,GILLET,Marylin,11/03/1986,Non +27,Eure,04,4ème circonscription,4,47,M,QUESTEL,Bruno,21/12/1966,ENS,Profession libérale,Oui,F,BREEMEERSCH,Nathalie,12/12/1969,Non +27,Eure,04,4ème circonscription,5,20,M,BERTRAND,William,29/12/1945,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,M,PÉLOFFY,François-Marie,13/08/1959,Non +27,Eure,04,4ème circonscription,6,19,M,DEBACHE,Naji,20/07/1958,DSV,Ancien employé,Non,F,SIMON,Julie,06/12/1980,Non +27,Eure,04,4ème circonscription,7,38,M,BRUN,Philippe,16/10/1991,NUP,Cadre de la fonction publique,Non,F,MOREAU,Lisa,18/11/1985,Non +27,Eure,04,4ème circonscription,8,21,F,PERCHET,Marie-Dominique,29/07/1951,LR,"Ancien artisan, commerçant, chef d'entreprise",Non,M,CROCFER,Raphaël,30/11/1996,Non +27,Eure,04,4ème circonscription,9,32,M,GUILMIN,Anthony,11/09/1983,DIV,Ouvrier qualifié de type artisanal,Non,F,SERY,Mélanie,09/04/1986,Non +27,Eure,04,4ème circonscription,10,26,F,SAULIÈRE,Chrystelle,22/02/1974,RN,"Contremaître, agent de maîtrise",Non,M,BALSAN,Benoît,22/06/1990,Non +27,Eure,04,4ème circonscription,11,52,M,TACONET,Olivier,03/08/1954,RDG,Ancien cadre,Non,M,MARTIN,Franck,03/07/1955,Non +27,Eure,05,5ème circonscription,1,30,F,NIAKATE,Fataumata,05/02/1982,DXD,Profession intermédiaire de la santé et du travail social,Non,M,PRADEL,Olivier,29/03/1978,Non +27,Eure,05,5ème circonscription,2,6,M,JOURDAIN,Pierre-Yves,24/04/1978,NUP,"Profession de l'information, des arts et des spectacles",Non,F,SEGUELA,Martine,09/11/1961,Non +27,Eure,05,5ème circonscription,3,43,F,BLITMAN,Delphine,03/07/1978,DXG,"Professeur, profession scientifique",Non,F,COLIN,Anne-Marie,08/03/1949,Non +27,Eure,05,5ème circonscription,4,3,M,TOQUARD,Karl,02/06/1977,DSV,Commerçant et assimilé,Non,F,LECOQUIERRE,Sandrine,03/10/1980,Non +27,Eure,05,5ème circonscription,5,5,M,HOUSSIN,Timothée,29/07/1988,RN,Profession intermédiaire administrative de la fonction publique,Non,F,PONTY,Laura,13/07/1996,Non +27,Eure,05,5ème circonscription,6,4,F,RABIER,Martine,10/03/1966,ECO,Employé civil et agent de service de la fonction publique,Non,F,BIGNAND,Christine,18/10/1965,Non +27,Eure,05,5ème circonscription,7,12,M,BONNET,François,24/01/1961,REC,Profession libérale,Non,F,GIBERT,Catherine,07/07/1953,Non +27,Eure,05,5ème circonscription,8,24,F,FONTAINE,Joëlle,15/03/1944,ECO,Profession libérale,Non,M,ALLO,Ludovic,05/05/1960,Non +27,Eure,05,5ème circonscription,9,48,M,DAVERTON,David,14/12/1985,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,GAVELLE,Patricia,15/07/1964,Non +27,Eure,05,5ème circonscription,10,45,M,OUZILLEAU,François,18/09/1984,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,LOOBUYCK,Béatrice,27/12/1958,Non +28,Eure-et-Loir,01,1ère circonscription,1,5,M,MAZAHERI,Pierre,29/07/1978,ECO,Ancien cadre,Non,F,REIGNIER,Liliane,27/10/1950,Non +28,Eure-et-Loir,01,1ère circonscription,2,45,M,MAILLET,Lucien,05/10/1954,DSV,Ancien cadre,Non,F,DUEZ,Caroline,07/09/1969,Non +28,Eure-et-Loir,01,1ère circonscription,3,34,M,VERGNE,Ladislas,24/12/1991,LR,Cadre de la fonction publique,Non,F,HONNEUR,Sylvie,29/02/1964,Non +28,Eure-et-Loir,01,1ère circonscription,4,31,F,DORANGE,Karine,17/07/1969,DVD,Cadre administratif et commercial d'entreprise,Non,M,LAFORGE,Thomas,25/04/1977,Non +28,Eure-et-Loir,01,1ère circonscription,5,10,M,KASBARIAN,Guillaume,28/02/1987,ENS,Cadre administratif et commercial d'entreprise,Oui,F,DE MONTCHALIN,Véronique,20/06/1948,Non +28,Eure-et-Loir,01,1ère circonscription,6,25,F,AUBERT,Marie-José,06/02/1955,DXG,"Professeur, profession scientifique",Non,M,LUCAS,Thierry,03/01/1956,Non +28,Eure-et-Loir,01,1ère circonscription,7,30,M,GUILLEMAIN,Quentin,31/07/1984,NUP,Cadre de la fonction publique,Non,F,CHANFRAU,Dominique,08/02/1955,Non +28,Eure-et-Loir,01,1ère circonscription,8,23,M,HEMARDINQUER,Cyril,05/11/1981,REC,Policier et militaire,Non,F,SAVILLE,Danièle,03/03/1954,Non +28,Eure-et-Loir,01,1ère circonscription,9,6,M,DELORME-MONSARRAT,David,23/09/1997,RN,"Elève, étudiant",Non,F,BORTOLUSSI,Sylvie,16/07/1963,Non +28,Eure-et-Loir,02,2ème circonscription,1,11,M,MARLEIX,Olivier,06/02/1971,LR,Cadre de la fonction publique,Oui,F,MINARD,Christelle,04/10/1970,Non +28,Eure-et-Loir,02,2ème circonscription,2,9,M,CHAARY,Yassin,16/11/1986,DXG,Personnel des services directs aux particuliers,Non,M,AIT-OUZZIH,Rachid,25/03/1992,Non +28,Eure-et-Loir,02,2ème circonscription,3,43,F,KRAEMER,Emmanuelle,27/07/1964,DXG,"Professeur, profession scientifique",Non,M,THÉRON,Samuel,02/10/1992,Non +28,Eure-et-Loir,02,2ème circonscription,4,35,M,DAVID,Maxime,09/11/1989,ENS,Cadre de la fonction publique,Non,F,SCAVENNEC,Marie-Françoise,09/02/1958,Non +28,Eure-et-Loir,02,2ème circonscription,5,27,F,D'AMILLY,Agnès,23/06/1966,REC,Cadre administratif et commercial d'entreprise,Non,F,ROGÉ,Florence,25/12/1956,Non +28,Eure-et-Loir,02,2ème circonscription,6,2,M,REIGNIER,Pierre-Marcel,17/09/1958,ECO,Ancien employé,Non,F,MAZAHERI,Maylis,12/01/1951,Non +28,Eure-et-Loir,02,2ème circonscription,7,8,F,JAFFRENOU,Béatrice,28/02/1960,DXG,Profession intermédiaire de la santé et du travail social,Non,M,MAILLOT,Dominique,03/12/1954,Non +28,Eure-et-Loir,02,2ème circonscription,8,26,M,DENIS,Adrien,04/04/1986,DXG,"Professeur, profession scientifique",Non,F,MOGUELET,Viviane,22/08/1968,Non +28,Eure-et-Loir,02,2ème circonscription,9,37,M,BOËTÉ,Kévin,19/03/1988,NUP,Chauffeur,Non,F,LUNA,Clarisse,17/06/1958,Non +28,Eure-et-Loir,02,2ème circonscription,10,41,F,LUZEAU,Emeline,07/06/1988,DSV,Cadre administratif et commercial d'entreprise,Non,M,DUEZ,François,03/05/1972,Non +28,Eure-et-Loir,02,2ème circonscription,11,33,F,CASTRO,Sylvie,21/04/1955,ECO,Ancien employé,Non,M,ALEXANDRE,Marc,17/11/1980,Non +28,Eure-et-Loir,02,2ème circonscription,12,20,M,NIKOLIC,Aleksandar,04/10/1986,RN,Employé administratif d'entreprise,Non,F,CHEVREAU,Kristell,15/01/1977,Non +28,Eure-et-Loir,03,3ème circonscription,1,29,M,LAQUA,Éric,11/12/1963,REC,Profession intermédiaire de la santé et du travail social,Non,M,DE BOISFOSSÉ,Thibault,26/08/1976,Non +28,Eure-et-Loir,03,3ème circonscription,2,22,F,ORFILA,Valéria,11/09/1969,NUP,"Profession de l'information, des arts et des spectacles",Non,M,CHESNEAU,Sylvain,24/02/1975,Non +28,Eure-et-Loir,03,3ème circonscription,3,42,M,MARTIAL,Rémi,17/03/1982,LR,Profession libérale,Non,M,BOUDET,Jean-Paul,20/09/1951,Non +28,Eure-et-Loir,03,3ème circonscription,4,28,F,GERACI,Carole,27/10/1972,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,TUFFIER,Daniel,17/10/1947,Non +28,Eure-et-Loir,03,3ème circonscription,5,32,M,LAMIRAULT,Luc,12/05/1962,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,M,BUISSON,Hervé,16/10/1965,Non +28,Eure-et-Loir,03,3ème circonscription,6,14,F,FLAUNET,Régine,18/04/1955,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,WATBLED,Patrick,23/02/1961,Non +28,Eure-et-Loir,03,3ème circonscription,7,21,M,BOUTICOURT,Damien,15/07/1975,DSV,Cadre administratif et commercial d'entreprise,Non,F,BARBIER-POTTIER,Valérie,31/03/1970,Non +28,Eure-et-Loir,03,3ème circonscription,8,13,M,CHEVROLLIER,Vincent,30/03/1971,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,LEFEUVRE,Virginie,11/07/1976,Non +28,Eure-et-Loir,03,3ème circonscription,9,40,F,JOLY,Vivette,05/01/1955,ECO,Profession libérale,Non,F,MARIE,Odile,06/05/1949,Non +28,Eure-et-Loir,03,3ème circonscription,10,24,M,RIBAS,Romain,13/04/1987,DVC,"Professeur, profession scientifique",Non,M,ADJIBI,Jean-Baptiste,29/08/1963,Non +28,Eure-et-Loir,03,3ème circonscription,11,38,F,DARDABA,Soumaya,27/07/1975,ECO,"Contremaître, agent de maîtrise",Non,M,EDMOND,Pascal,29/05/1966,Non +28,Eure-et-Loir,03,3ème circonscription,12,12,F,BARBIER,Claire,21/08/1988,ECO,Profession libérale,Non,F,DUPERRAY,Nolwenn,07/09/1988,Non +28,Eure-et-Loir,03,3ème circonscription,13,4,F,LAMOUREUX,Aurore,31/01/1986,DXG,"Professeur, profession scientifique",Non,F,MAS,Nicole,19/11/1955,Non +28,Eure-et-Loir,04,4ème circonscription,1,36,M,GASTON,Mathieu,26/10/1979,NUP,"Professeur, profession scientifique",Non,F,BLANC,Emilie,18/12/1986,Non +28,Eure-et-Loir,04,4ème circonscription,2,16,M,LHOPITEAU,Vincent,24/06/1957,REC,Agriculteur sur moyenne exploitation,Non,F,GALLIEN,Isabelle,08/11/1959,Non +28,Eure-et-Loir,04,4ème circonscription,3,7,M,VIGIER,Philippe,03/02/1958,ENS,Profession libérale,Oui,M,LECLERCQ,Laurent,26/11/1970,Non +28,Eure-et-Loir,04,4ème circonscription,4,17,F,DE OLIVEIRA,Virginia,23/02/1972,RN,Ingénieur et cadre technique d'entreprise,Non,M,TRAN,Roger,11/03/1952,Non +28,Eure-et-Loir,04,4ème circonscription,5,18,M,MIOQUE,Pierre,11/11/1968,ECO,Technicien,Non,M,MAZAHERI,Micha,14/08/1990,Non +28,Eure-et-Loir,04,4ème circonscription,6,19,F,ASSAYAG,Anne-Laure,01/11/1980,DXG,"Professeur, profession scientifique",Non,M,GALLIOT,Stéphane,06/10/1984,Non +28,Eure-et-Loir,04,4ème circonscription,7,44,F,DASSAS,Evelyne,11/12/1940,ECO,"Professeur, profession scientifique",Non,F,BOTELLA,Audrey,15/12/1993,Non +28,Eure-et-Loir,04,4ème circonscription,8,15,F,MEYBLUM,Elisabeth,22/02/1954,LR,Profession libérale,Non,M,BELOUET,Olivier,16/01/1964,Non +28,Eure-et-Loir,04,4ème circonscription,9,39,F,LEMOINE,Aude,09/01/1975,DSV,Ingénieur et cadre technique d'entreprise,Non,M,DOLLÉ,Laurent,07/12/1983,Non +29,Finistère,01,1ère circonscription,1,49,M,FONTAINE,Georges-Philippe,08/05/1971,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,TREBAUL,Hélène,16/02/1972,Non +29,Finistère,01,1ère circonscription,2,3,M,BILLARD,Thierry,24/05/1973,DSV,Employé civil et agent de service de la fonction publique,Non,F,MADRANGES,Sylvie,21/07/1960,Non +29,Finistère,01,1ère circonscription,3,85,F,GUÉGAN,Izold,09/12/1992,REG,Profession libérale,Non,M,HERVÉ,Frédéric,09/09/1971,Non +29,Finistère,01,1ère circonscription,4,58,M,LE REST,Bernard,14/01/1950,REG,"Ancien artisan, commerçant, chef d'entreprise",Non,F,QUÉNÉHERVÉ,Maryse,04/10/1954,Non +29,Finistère,01,1ère circonscription,5,74,F,LE MEUR,Annaïg,29/04/1973,ENS,Profession libérale,Oui,F,BAYES,Gwenola,30/10/1970,Non +29,Finistère,01,1ère circonscription,6,35,F,MÉNARD,Isabelle,20/11/1975,UDI,Cadre administratif et commercial d'entreprise,Non,M,BERDER,Éric,18/05/1961,Non +29,Finistère,01,1ère circonscription,7,26,F,HERMAN,France,14/04/1964,REC,Ingénieur et cadre technique d'entreprise,Non,M,CHAZÉ,Jean-Christophe,03/04/1969,Non +29,Finistère,01,1ère circonscription,8,2,F,HÉNAFF,Christel,12/09/1968,RN,Employé administratif d'entreprise,Non,M,LE GRAND,Roland,10/05/1970,Non +29,Finistère,01,1ère circonscription,9,27,M,LEBERT,Grégory,05/06/1979,NUP,Profession intermédiaire de la santé et du travail social,Non,F,PHILIPPE,Margaux,16/03/1988,Non +29,Finistère,01,1ère circonscription,10,64,F,PIRO,Élisabeth,23/01/1951,DXG,Ancien employé,Non,M,HARDY,Serge,08/09/1967,Non +29,Finistère,02,2ème circonscription,1,78,M,SALAMI,Réza,21/03/1964,DVG,Commerçant et assimilé,Non,F,JESTIN,Sylvie,13/02/1960,Non +29,Finistère,02,2ème circonscription,2,45,M,COLLARD,Rémy,07/08/1985,DXG,"Professeur, profession scientifique",Non,M,CHERBLANC,André,05/11/1949,Non +29,Finistère,02,2ème circonscription,3,18,M,LE CORRE,Jean-Yves,17/04/1965,ECO,Profession intermédiaire de la santé et du travail social,Non,F,LEBLANC,Brigitte,22/12/1963,Non +29,Finistère,02,2ème circonscription,4,22,M,LARSONNEUR,Jean-Charles,24/01/1984,DVC,Cadre de la fonction publique,Oui,F,KHALIL,Taiseer,08/06/1985,Non +29,Finistère,02,2ème circonscription,5,77,F,MADEC,Sylvia,14/04/1978,REG,Employé civil et agent de service de la fonction publique,Non,M,MERDY,Patrick,28/08/1954,Non +29,Finistère,02,2ème circonscription,6,61,F,GÉLÉBART,Anne,03/10/1956,UDI,Ancien cadre,Non,M,PAGÈS,Yves,12/06/1948,Non +29,Finistère,02,2ème circonscription,7,60,M,HEBERT,Gérald,14/09/1970,DSV,Employé civil et agent de service de la fonction publique,Non,F,GAILLARD,Aurélie,22/07/1983,Non +29,Finistère,02,2ème circonscription,8,23,M,HITA,Melvyn,28/02/2001,DXG,"Elève, étudiant",Non,F,PERNOT-GOARVOT,Morgane,24/07/1998,Non +29,Finistère,02,2ème circonscription,9,54,F,VASSEUR,Alice,18/08/1973,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,GARCIA,Vincent,10/06/1988,Non +29,Finistère,02,2ème circonscription,10,28,M,PELLICANO,Fortuné,09/08/1955,RDG,Profession libérale,Non,F,CLEUZIOU,Carole,26/12/1970,Non +29,Finistère,02,2ème circonscription,11,68,M,CADALEN,Pierre-Yves,09/07/1992,NUP,"Professeur, profession scientifique",Non,F,MESMEUR,Marie,12/08/1994,Non +29,Finistère,02,2ème circonscription,12,48,M,CABON,Mikaël,11/10/1973,DVC,"Professeur, profession scientifique",Non,F,GUILLEMOT,Nadine,27/09/1967,Non +29,Finistère,02,2ème circonscription,13,11,M,COATANEA,Marc,09/04/1973,ENS,Cadre administratif et commercial d'entreprise,Non,F,TARDITI,Corinne,17/10/1967,Non +29,Finistère,02,2ème circonscription,14,44,F,POULLAOUEC,Yvette,12/11/1965,RN,Ouvrier qualifié de type industriel,Non,M,HUNERWADEL,Moïse,24/05/1980,Non +29,Finistère,02,2ème circonscription,15,15,F,MIGEREL,Sandrine,25/11/1981,REG,Profession intermédiaire de la santé et du travail social,Non,M,VALENTIN-LEMENI,Fragan,29/11/1982,Non +29,Finistère,02,2ème circonscription,16,20,F,LOUVEL,Elisabeth,06/11/1981,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BERNA,Frédéric,27/03/1965,Non +29,Finistère,03,3ème circonscription,1,67,M,SMOLARZ,Pierre,29/03/1983,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,VACHER,Emmanuelle,22/09/1964,Non +29,Finistère,03,3ème circonscription,2,76,M,DUPRAT,Loïc,22/11/1976,REG,Ingénieur et cadre technique d'entreprise,Non,M,GUIVARCH,Benoît,30/12/1972,Non +29,Finistère,03,3ème circonscription,3,41,M,ABASQ,Roger,02/06/1995,RN,Ouvrier qualifié de type industriel,Non,M,GILOUX,Corentin,20/11/2000,Non +29,Finistère,03,3ème circonscription,4,43,M,MULLER,Matthieu,28/10/1974,DXG,Ingénieur et cadre technique d'entreprise,Non,F,BOUDOUX,France,30/08/1956,Non +29,Finistère,03,3ème circonscription,5,33,M,LE GAC,Didier,19/07/1965,ENS,Profession intermédiaire administrative et commerciale des entreprises,Oui,F,ROUDAUT,Anne-Thérèse,03/10/1970,Non +29,Finistère,03,3ème circonscription,6,36,M,GUEGUEN,Yves,25/08/1963,DSV,Chef d'entreprise de 10 salariés ou plus,Non,M,MARTIN,Alexandre,09/09/1994,Non +29,Finistère,03,3ème circonscription,7,19,F,LE MOIGN,Patricia,27/09/1963,REC,"Professeur, profession scientifique",Non,M,BERNA,Yann,10/04/1999,Non +29,Finistère,03,3ème circonscription,8,71,M,GOVERNATORI,Jean-Marc,28/12/1958,ECO,Cadre administratif et commercial d'entreprise,Non,F,DESOUTTER,Jacqueline,15/02/1938,Non +29,Finistère,03,3ème circonscription,9,87,M,LE BIAN,Francis,30/05/1949,LR,Commerçant et assimilé,Non,F,GODEBERT,Nathalie,24/06/1971,Non +29,Finistère,04,4ème circonscription,1,66,M,BEAUPRÉ,Michel,07/10/1956,REG,Commerçant et assimilé,Non,F,MEZIANE,Sonia,15/03/1963,Non +29,Finistère,04,4ème circonscription,2,70,F,VULPIANI,Sylvaine,19/09/1963,NUP,Profession libérale,Non,M,CAROFF,Arnaud,07/12/1980,Non +29,Finistère,04,4ème circonscription,3,83,F,HÉNAFF,Marie-Claire,04/07/1956,LR,Ancien agriculteur exploitant,Non,M,RIOU,Thierry,24/07/1969,Non +29,Finistère,04,4ème circonscription,4,12,M,BERGAMI,Jérôme,04/07/1974,REC,Profession libérale,Non,F,MAFAITY,Sylvie,26/07/1951,Non +29,Finistère,04,4ème circonscription,5,84,M,ENFROY,Guillaume,30/03/1981,DIV,Ingénieur et cadre technique d'entreprise,Non,M,CANAL,Christophe,27/09/1975,Non +29,Finistère,04,4ème circonscription,6,25,M,LEMÉNICIER,Jean-François,12/05/1967,ECO,"Professeur, profession scientifique",Non,F,RUDAZ,Cécile,19/10/1976,Non +29,Finistère,04,4ème circonscription,7,34,M,PAYRAUD,Michel,02/03/1962,DVC,Ancien cadre,Non,M,ANQUET,Stéphane,14/11/1965,Non +29,Finistère,04,4ème circonscription,8,63,F,RENOU,Monique,11/05/1957,DSV,Ancien cadre,Non,F,AZRIA,Alexandra,06/08/1971,Non +29,Finistère,04,4ème circonscription,9,24,F,LE FEUR,Sandrine,18/03/1991,ENS,Agriculteur sur moyenne exploitation,Oui,M,GRALL,Eric,18/11/1961,Non +29,Finistère,04,4ème circonscription,10,46,M,BIHOUEE,Tony,21/10/1986,RN,Technicien,Non,M,SIMON,Tiphaine,01/03/1975,Non +29,Finistère,04,4ème circonscription,11,14,F,BLOSSE,Patricia,21/05/1960,DXG,Ancienne profession intermédiaire,Non,M,MARCHAL,Alain,15/04/1955,Non +29,Finistère,05,5ème circonscription,1,65,F,DE CECCO,Angélique,11/04/1975,REG,Profession intermédiaire de la santé et du travail social,Non,M,GUYONVARC'H,Christian,29/12/1964,Non +29,Finistère,05,5ème circonscription,2,82,M,BRIANT,Félix,08/03/1996,LR,"Elève, étudiant",Non,M,LECLERC,Patrick,17/03/1996,Non +29,Finistère,05,5ème circonscription,3,16,M,CAJEAN,Christian,21/04/1966,DXG,Employé civil et agent de service de la fonction publique,Non,F,LE DIAGON,Maëlenn,25/04/1979,Non +29,Finistère,05,5ème circonscription,4,32,F,SARRABEZOLLES,Nathalie,01/12/1970,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CHEVALIER,Christine,06/02/1969,Non +29,Finistère,05,5ème circonscription,5,10,F,MURIOT,Stéphanie,13/04/1976,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,VANHOVE,Sandrine,03/02/1972,Non +29,Finistère,05,5ème circonscription,6,13,M,LOLLIÉROU,Thierry-Hubert,03/11/1968,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,RIVOALEN,David,11/03/1973,Non +29,Finistère,05,5ème circonscription,7,5,F,THOMAÏDIS,Renée,13/08/1957,RN,Ancienne profession intermédiaire,Non,F,KRASKA,Nadja,14/06/1968,Non +29,Finistère,05,5ème circonscription,8,69,F,MELCHIOR,Graziella,06/04/1960,ENS,"Professeur, profession scientifique",Oui,M,LE BORGNE,Jean-Charles,29/04/1957,Non +29,Finistère,05,5ème circonscription,9,86,F,LE NY,Brigitte,15/03/1954,REG,Ancienne profession intermédiaire,Non,M,GÉLÉOC,Bernard,29/05/1957,Non +29,Finistère,06,6ème circonscription,1,80,F,FABRE,Valérie,14/10/1957,DIV,Profession libérale,Non,M,FRENAY,Nicolas,26/06/1985,Non +29,Finistère,06,6ème circonscription,2,72,M,LE FUR,Patrick,21/07/1967,RN,Artisan,Non,M,GUILLAS,Jean,03/04/1957,Non +29,Finistère,06,6ème circonscription,3,37,F,BROUSTAUT,Sophie,01/05/1966,REC,Commerçant et assimilé,Non,M,BROUSTAUT,Roland,23/09/1995,Non +29,Finistère,06,6ème circonscription,4,62,F,THOMIN,Mélanie,04/06/1984,NUP,"Professeur, profession scientifique",Non,M,JAOUEN,Yannick,03/11/1974,Non +29,Finistère,06,6ème circonscription,5,55,M,PLOUZANÉ,Philippe,20/08/1971,REG,"Professeur, profession scientifique",Non,F,LATIMIER,Ninnog,08/09/1975,Non +29,Finistère,06,6ème circonscription,6,75,M,FERRAND,Richard,01/07/1962,ENS,Ancien cadre,Oui,F,MORVAN,Annaïck,29/09/1961,Non +29,Finistère,06,6ème circonscription,7,79,M,PASQUET,Alan,21/07/1981,REG,Profession libérale,Non,M,REMOND,Iffig,27/05/1943,Non +29,Finistère,06,6ème circonscription,8,59,F,PFLIEGER,Mathilde Maria,15/05/1980,DIV,"Professeur, profession scientifique",Non,M,DAL MOLIN,Éric,07/05/1958,Non +29,Finistère,06,6ème circonscription,9,50,F,NICOLAS,Gaëlle,03/06/1966,LR,Profession libérale,Non,M,NICOLAS,Bernard,10/08/1954,Non +29,Finistère,06,6ème circonscription,10,21,M,FEHRINGER,Bernard,02/07/1948,ECO,Ancien employé,Non,F,BIENCOURT,Aline,07/09/1980,Non +29,Finistère,06,6ème circonscription,11,52,M,PERENNEC,Tugdual,13/03/1986,DIV,Cadre administratif et commercial d'entreprise,Non,M,PERENNEC,Emile,09/06/1948,Non +29,Finistère,06,6ème circonscription,12,42,M,CORDIER,Philippe,23/11/1966,DXG,Personnel des services directs aux particuliers,Non,F,MULLER,Christelle,16/03/1973,Non +29,Finistère,06,6ème circonscription,13,88,F,BEAULIEU,Tiphaine,29/05/1975,DIV,"Professeur, profession scientifique",Non,F,THUEUX,Delphine,27/10/1985,Non +29,Finistère,07,7ème circonscription,1,7,F,TANGUY,Liliana,12/03/1967,ENS,Cadre de la fonction publique,Oui,M,ARROUES,Bernard,08/03/1996,Non +29,Finistère,07,7ème circonscription,2,73,M,TANGUY,Jacques,04/07/1958,DIV,Ancienne profession intermédiaire,Non,M,DURAND,Marc,08/08/1989,Non +29,Finistère,07,7ème circonscription,3,9,F,BOUIN,Yolande,18/06/1960,NUP,Ouvrier qualifié de type artisanal,Non,M,LAPERT,Alexis,13/06/1980,Non +29,Finistère,07,7ème circonscription,4,56,M,PEREZ,Alain,20/01/1956,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,PELLAÉ,Adeline,07/01/1992,Non +29,Finistère,07,7ème circonscription,5,81,M,LE GUEN,Eric,23/02/1967,LR,"Professeur, profession scientifique",Non,F,KERSAUDY,Nadine,21/04/1967,Non +29,Finistère,07,7ème circonscription,6,89,F,MALET,Aela,19/09/1998,REG,"Elève, étudiant",Non,M,CHAUSSY,Gaëtan,08/05/1979,Non +29,Finistère,07,7ème circonscription,7,38,M,CRIQUET,Patrik,09/01/1960,DIV,Ancien cadre,Non,M,PAVIS,Jean-Pierre,04/04/1964,Non +29,Finistère,07,7ème circonscription,8,39,M,LERICHE,Yann,01/11/1969,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,RENAUD,Raymonde,24/10/1955,Non +29,Finistère,07,7ème circonscription,9,40,M,NICOLAS,Franck,02/06/1999,RN,"Elève, étudiant",Non,F,ALANOU,Annick,24/06/1960,Non +29,Finistère,07,7ème circonscription,10,17,M,DJOBO,Abbas,17/06/1970,ECO,Cadre administratif et commercial d'entreprise,Non,F,DUBOIS,Véronique,05/10/1970,Non +29,Finistère,07,7ème circonscription,11,90,M,DEBLIQUI,Régis,01/09/1954,DXG,Personnel des services directs aux particuliers,Non,F,ROUDAUT,Alice,10/12/1949,Non +29,Finistère,07,7ème circonscription,12,57,M,TOUZÉ,Maxime,27/02/1990,REG,"Professeur, profession scientifique",Non,F,LE BERRE,Monique,10/10/1949,Non +29,Finistère,08,8ème circonscription,1,31,F,GOURLAOUEN,Claire,17/01/1987,LR,"Professeur, profession scientifique",Non,M,KERHERVÉ,Alain,05/01/1948,Non +29,Finistère,08,8ème circonscription,2,51,M,DRAN,Laurent,23/06/1971,ECO,Ouvrier qualifié de type artisanal,Non,F,DRAN RINCK,Hélène,08/06/1974,Non +29,Finistère,08,8ème circonscription,3,29,F,CUCINIELLO,Manon,22/01/1997,DSV,"Elève, étudiant",Non,F,CHARITER,Laetitia,20/08/1993,Non +29,Finistère,08,8ème circonscription,4,30,M,LE FLAO,Youenn,18/01/1964,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,F,GUILLAUME,Christiane,18/03/1957,Non +29,Finistère,08,8ème circonscription,5,6,M,BALANANT,Erwan,21/02/1971,ENS,"Profession de l'information, des arts et des spectacles",Oui,F,LE CALVEZ,Fabienne,02/04/1970,Non +29,Finistère,08,8ème circonscription,6,8,M,PEREZ,Christian,16/05/1951,RN,Profession libérale,Non,F,MILLOT,Noémie,08/07/1991,Non +29,Finistère,08,8ème circonscription,7,4,F,MOREL,Anne,06/05/1964,DXG,"Professeur, profession scientifique",Non,M,PIRO,Jacques,31/01/1949,Non +29,Finistère,08,8ème circonscription,8,47,M,COUËDELO,Pierre,09/02/1964,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,SAUVAGE,Éric,12/10/1961,Non +29,Finistère,08,8ème circonscription,9,53,F,PAINGAULT,Claire,28/04/1977,REG,Employé civil et agent de service de la fonction publique,Non,M,TEXIER,Lucas,02/07/1999,Non +30,Gard,01,1ère circonscription,1,21,F,DUMAS,Françoise,12/04/1960,ENS,Cadre de la fonction publique,Oui,M,MARTINEZ,Juan,11/01/1969,Non +30,Gard,01,1ère circonscription,2,4,M,GILLET,Yoann,29/08/1986,RN,Cadre de la fonction publique,Non,M,SANCHEZ,Julien,19/10/1983,Non +30,Gard,01,1ère circonscription,3,28,F,AUSSEIL,Sarah,23/11/1965,DVD,"Professeur des écoles, instituteur et assimilé",Non,M,BARROT,Pierre,13/04/2002,Non +30,Gard,01,1ère circonscription,4,37,M,CAVAGLIA,Erick,04/01/1965,REC,"Professeur, profession scientifique",Non,M,CHAUBET,Dylan,12/02/1995,Non +30,Gard,01,1ère circonscription,5,57,M,ZAOUCHE,Evrard,31/10/1959,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,NOAILLES-DUPLISSY,Pascale,21/10/1969,Non +30,Gard,01,1ère circonscription,6,19,F,GARDEUR-BANCEL,Véronique,05/09/1963,LR,Profession libérale,Non,M,ANDRE,Christophe,07/01/1965,Non +30,Gard,01,1ère circonscription,7,34,F,LECLERC,Isabelle,07/12/1954,DXG,Ancien employé,Non,F,JOUFFREY,Aurélia,26/12/1983,Non +30,Gard,01,1ère circonscription,8,3,M,COGO,Yannick,03/10/1986,ECO,Profession libérale,Non,F,MIDOUN,Caroline,29/04/1989,Non +30,Gard,01,1ère circonscription,9,48,F,OUATELI,Naïma,24/07/1960,DIV,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,JÉGOUX,Jerôme,25/10/1977,Non +30,Gard,01,1ère circonscription,10,36,M,MENARD,Charles,16/12/1956,NUP,Profession libérale,Non,F,MENUT,Jo,18/11/1956,Non +30,Gard,01,1ère circonscription,11,52,M,MOULA,Alain,23/01/1956,DIV,Commerçant et assimilé,Non,F,PEREIRA,Sabrina,13/11/1983,Non +30,Gard,01,1ère circonscription,12,66,F,DANJOU,Sylvie,24/05/1962,ECO,Profession intermédiaire de la santé et du travail social,Non,M,CHENT,Mimoun,05/09/1974,Non +30,Gard,02,2ème circonscription,1,42,F,GHIRARDI,Coralie,02/04/1966,NUP,Ingénieur et cadre technique d'entreprise,Non,M,SEGRETO,Nicolas,28/09/1983,Non +30,Gard,02,2ème circonscription,2,29,M,LACHAUD,Yvan,04/03/1954,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,CUILLÉ,Françoise,15/03/1954,Non +30,Gard,02,2ème circonscription,3,40,F,BOURRELY,Geneviève,07/10/1951,DSV,Ancien cadre,Non,M,VICTORIA,Auguste,17/11/1950,Non +30,Gard,02,2ème circonscription,4,39,M,MANSON,Stéphane,07/01/1971,DXG,Ouvrier qualifié de type industriel,Non,M,FOURMI,Valéry,28/10/1969,Non +30,Gard,02,2ème circonscription,5,61,M,TOUZELLIER,Frédéric,09/03/1959,LR,Ancien agriculteur exploitant,Non,F,FOULLON,Marilyne,10/02/1982,Non +30,Gard,02,2ème circonscription,6,46,M,VOIRON,Julien,10/04/1984,DIV,Employé de commerce,Non,M,CABANIS,Joseph,16/11/2000,Non +30,Gard,02,2ème circonscription,7,6,M,MEIZONNET,Nicolas,22/12/1983,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,DEVAUX,Caroline,03/12/1981,Non +30,Gard,02,2ème circonscription,8,14,M,MOUKITE,Zakaria,22/09/1965,ECO,Cadre de la fonction publique,Non,F,BIDAN,Céline,05/11/1969,Non +30,Gard,02,2ème circonscription,9,18,M,LEROY,Anthony,06/12/1994,REC,Ingénieur et cadre technique d'entreprise,Non,F,GUETARI,Houda,30/04/1971,Non +30,Gard,02,2ème circonscription,10,26,M,SEVILLA,Pierre-Jean,28/04/1962,ECO,Ouvrier qualifié de type industriel,Non,F,RODES,Virginie,28/09/1982,Non +30,Gard,03,3ème circonscription,1,60,F,SCARAMOZZINO,Joëlle,11/10/1960,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,M,LOVAZZANI,Sebastian,13/05/1994,Non +30,Gard,03,3ème circonscription,2,68,F,MICHON,Catherine,15/06/1971,ECO,Ouvrier agricole,Non,F,MICHON,Gisèle,09/01/1939,Non +30,Gard,03,3ème circonscription,3,43,F,NOVARETTI,Monique,16/10/1956,RDG,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,CHANSOU,Emmanuel,06/04/1965,Non +30,Gard,03,3ème circonscription,4,31,F,GUICHARD,Anne,27/03/1973,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,LAQUERRE,Alexis,24/05/1988,Non +30,Gard,03,3ème circonscription,5,5,F,BORDES,Pascale,15/10/1961,RN,Profession libérale,Non,F,DELLONG-MENG,Catherine,04/05/1960,Non +30,Gard,03,3ème circonscription,6,33,M,EGÉA,Jean,21/09/1967,DXG,Ouvrier agricole,Non,M,MISCHER,Robert,29/06/1944,Non +30,Gard,03,3ème circonscription,7,54,M,PRÉVOST,Christophe,16/05/1968,REG,Employé de commerce,Non,F,WALKOWIAK,Antoinette,23/08/1964,Non +30,Gard,03,3ème circonscription,8,17,M,CELLIER,Anthony,01/06/1975,ENS,Cadre administratif et commercial d'entreprise,Oui,F,TRAPIER,Laurence,30/10/1971,Non +30,Gard,03,3ème circonscription,9,32,F,ARNAUD,Blandine,24/05/1982,LR,Profession libérale,Non,M,BEKHTI,Ali,03/11/1965,Non +30,Gard,03,3ème circonscription,10,64,F,OROMI,Sabine,18/03/1969,NUP,"Professeur, profession scientifique",Non,M,CELLIER,Élian,11/02/1967,Non +30,Gard,03,3ème circonscription,11,11,M,MOULIN,Jean-Marie,20/05/1967,REC,Technicien,Non,F,BOUISSET,Laure,01/10/1973,Non +30,Gard,04,4ème circonscription,1,8,M,MEURIN,Pierre,30/11/1989,RN,Cadre administratif et commercial d'entreprise,Non,F,ROULLAUD,Brigitte,30/04/1969,Non +30,Gard,04,4ème circonscription,2,2,F,WAGNER,Aurélie,19/04/1978,REC,Employé administratif d'entreprise,Non,M,POUS,Michel,09/10/1957,Non +30,Gard,04,4ème circonscription,3,67,F,SCHUSTER,Nadine,03/05/1951,ECO,"Professeur, profession scientifique",Non,F,AUBIN,Nathalie,12/02/1969,Non +30,Gard,04,4ème circonscription,4,56,M,GIRARD,Gaël,04/09/1985,DVD,Cadre administratif et commercial d'entreprise,Non,F,DONATO,Marion,24/03/1973,Non +30,Gard,04,4ème circonscription,5,24,F,BIENKOWSKI,Stéphanie,27/01/1972,ECO,Personnel des services directs aux particuliers,Non,M,DJOUDI,Bruno,02/06/1967,Non +30,Gard,04,4ème circonscription,6,47,M,PASSIEU,Dominique Richard,14/05/1952,DVC,Commerçant et assimilé,Non,F,PANTOUSTIER,Alexandra,04/05/1978,Non +30,Gard,04,4ème circonscription,7,27,M,BORD,Arnaud,15/05/1982,NUP,Profession intermédiaire administrative de la fonction publique,Non,F,CHAULET,Cathy,10/11/1962,Non +30,Gard,04,4ème circonscription,8,25,M,BIAIS,Denis,10/03/1972,DSV,Ingénieur et cadre technique d'entreprise,Non,M,PRADOS,Damien,13/08/1984,Non +30,Gard,04,4ème circonscription,9,63,M,DE FARIA,Jean-Pierre,26/10/1951,DVD,Ancien cadre,Non,F,BREMOND,Christiane,10/03/1953,Non +30,Gard,04,4ème circonscription,10,41,M,RIBOT,Philippe,06/05/1961,ENS,Cadre administratif et commercial d'entreprise,Non,F,BENALI,Aïcha,27/12/1965,Non +30,Gard,04,4ème circonscription,11,50,M,NAPOLI,Stéphane,16/12/1971,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,DUPLAN,Hervé,17/12/1972,Non +30,Gard,04,4ème circonscription,12,45,F,MARTRE,Valérie,15/07/1964,UDI,Artisan,Non,M,TONDUT,Cyril,18/04/1970,Non +30,Gard,04,4ème circonscription,13,51,M,GARCIA,Jérôme,11/04/1970,DXG,Profession intermédiaire de la santé et du travail social,Non,M,SIERRA,Jacques,11/10/1959,Non +30,Gard,05,5ème circonscription,1,49,M,MERAND,Didier,25/10/1961,DIV,Ancien cadre,Non,F,HEN,Sophie,03/05/1984,Non +30,Gard,05,5ème circonscription,2,20,F,BOZEC,Frédérique,18/06/1962,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,GARDIES,Mikaël,13/11/1971,Non +30,Gard,05,5ème circonscription,3,12,F,OLINET,Agnès,15/09/1969,DXG,Profession intermédiaire de la santé et du travail social,Non,M,DE MAUVAISIN,Olivier,09/01/1955,Non +30,Gard,05,5ème circonscription,4,44,M,SALA,Michel,13/05/1954,NUP,Ancien employé,Non,F,LEBEAU,Irène,08/03/1960,Non +30,Gard,05,5ème circonscription,5,10,F,ROCCO,Catherine,26/02/1953,ECO,Profession intermédiaire de la santé et du travail social,Non,M,MOUKITE,Anthony,31/08/1994,Non +30,Gard,05,5ème circonscription,6,9,M,LAUNAY,Jean-Marie,04/10/1991,RN,"Contremaître, agent de maîtrise",Non,M,GODARD,Owen,09/01/1999,Non +30,Gard,05,5ème circonscription,7,58,M,CASANO,Nathan,26/06/2003,DVC,"Elève, étudiant",Non,F,JURAS,Amandine,14/11/1997,Non +30,Gard,05,5ème circonscription,8,53,M,CAPALDI,Antoine,02/10/1962,REG,Agriculteur sur petite exploitation,Non,F,NICOLAS (JUST-MALMONT),Dominique,08/02/1964,Non +30,Gard,05,5ème circonscription,9,22,F,BRASSELET,Annie,11/09/1958,DSV,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,FROLICH,Laurent,07/04/1970,Non +30,Gard,05,5ème circonscription,10,15,F,DAUFÈS-ROUX,Catherine,24/04/1963,ENS,Cadre de la fonction publique,Oui,M,RAMON,Guillaume,22/12/1991,Non +30,Gard,05,5ème circonscription,11,59,F,BOYER,Léa,28/03/1994,LR,Cadre administratif et commercial d'entreprise,Non,M,GRANIER,François,15/07/1967,Non +30,Gard,06,6ème circonscription,1,55,F,GUILLOT,Sophie,05/08/1962,DVC,Employé de commerce,Non,M,PHILIBERT,Jean-Marc,22/01/1964,Non +30,Gard,06,6ème circonscription,2,69,M,MAURIN,Jean-Claude,25/06/1943,DVG,Ancienne profession intermédiaire,Non,M,FABRE-PUJOL,Alain,27/06/1957,Non +30,Gard,06,6ème circonscription,3,7,F,GARDET,Laurence,01/06/1969,RN,Commerçant et assimilé,Non,M,BRUNO ORTIZ,Miguel,02/09/1991,Non +30,Gard,06,6ème circonscription,4,35,M,CADÈNE,Nicolas,29/07/1981,NUP,Cadre de la fonction publique,Non,F,LEGRAND,Catherine,28/08/1959,Non +30,Gard,06,6ème circonscription,5,16,F,TERBECHE,Aïcha,31/03/1949,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,UHL,Jérémie,27/12/1972,Non +30,Gard,06,6ème circonscription,6,62,M,STIVAL,Nicolas,02/08/1973,DSV,Ouvrier non qualifié de type industriel,Non,M,SAURY,Frédéric,15/03/1983,Non +30,Gard,06,6ème circonscription,7,23,M,GUILLEMIN,Stéphane,24/02/1977,REC,Profession libérale,Non,F,BOSC,Charlotte-Emmanuelle,15/03/1988,Non +30,Gard,06,6ème circonscription,8,65,M,GILLI,Stephane,15/07/1971,ECO,Cadre administratif et commercial d'entreprise,Non,M,NIERAT,Clement,05/08/1995,Non +30,Gard,06,6ème circonscription,9,13,M,COURDIL,François,17/05/1994,LR,Cadre administratif et commercial d'entreprise,Non,F,BONNEAU,Muriel,13/12/1971,Non +30,Gard,06,6ème circonscription,10,30,M,BENSLIMA,Mounir,09/01/1957,ECO,Cadre de la fonction publique,Non,F,AZAÏS,Catherine,11/02/1958,Non +30,Gard,06,6ème circonscription,11,38,M,BERTA,Philippe,11/04/1960,ENS,"Professeur, profession scientifique",Oui,M,COLSON,Aurélien,11/09/1974,Non +31,Haute-Garonne,01,1ère circonscription,1,24,M,BAUDIS,Pierre,16/05/1988,ENS,"Profession de l'information, des arts et des spectacles",Non,F,COUSIN,Dalila,31/08/1965,Non +31,Haute-Garonne,01,1ère circonscription,2,128,M,COMBES,Benjamin,30/09/1992,ECO,Ingénieur et cadre technique d'entreprise,Non,F,GAULTIER,Adrienne,16/08/1992,Non +31,Haute-Garonne,01,1ère circonscription,3,17,M,LE PENVEN,Olivier,09/11/1971,DXG,Ouvrier qualifié de type industriel,Non,M,SERTILLANGE,Jean-Pierre,05/02/1953,Non +31,Haute-Garonne,01,1ère circonscription,4,89,F,MARSAL,Cathy,11/01/1975,RN,Chauffeur,Non,F,FERRERO,Anne,24/01/1987,Non +31,Haute-Garonne,01,1ère circonscription,5,102,M,CASTILLO-MENDEGRIS,Oscar,19/03/1987,LR,Employé administratif d'entreprise,Non,F,JOLY,Stéphanie,03/05/1979,Non +31,Haute-Garonne,01,1ère circonscription,6,109,M,ROCCA,Jacques,19/07/1961,DVC,Cadre administratif et commercial d'entreprise,Non,F,LAMBERT,Stephanie,18/03/1980,Non +31,Haute-Garonne,01,1ère circonscription,7,74,M,BAPT,Pierre Nicolas,12/10/1966,RDG,Cadre administratif et commercial d'entreprise,Non,F,BARRAQUÉ ONNO,Veronique,08/12/1962,Non +31,Haute-Garonne,01,1ère circonscription,8,120,F,BOUJAT,Evelyne,09/04/1953,REG,Commerçant et assimilé,Non,M,AYMES,Adrien Vintana Guy,14/11/1996,Non +31,Haute-Garonne,01,1ère circonscription,9,41,M,CLOUET,Hadrien,13/07/1991,NUP,"Professeur, profession scientifique",Non,F,COMBRES,Aline,19/09/1952,Non +31,Haute-Garonne,01,1ère circonscription,10,68,F,BATTISTELLA,Aude,15/01/1979,REC,Cadre administratif et commercial d'entreprise,Non,M,ARNAUD,Hugues,21/04/1963,Non +31,Haute-Garonne,01,1ère circonscription,11,126,M,PICARD,Georges,12/06/1948,DXG,Ancien employé,Non,F,BOICHE,Marie-Christine,05/12/1952,Non +31,Haute-Garonne,02,2ème circonscription,1,99,M,JOVIADO,Gilles,13/09/1970,DVG,"Professeur, profession scientifique",Non,F,FALIERES,Monique,20/02/1964,Non +31,Haute-Garonne,02,2ème circonscription,2,16,F,BARTHÉLÉMY,Clotilde,28/02/1969,DXG,Cadre de la fonction publique,Non,M,BIENVENU,Pierre,25/02/1964,Non +31,Haute-Garonne,02,2ème circonscription,3,53,F,GUIBERT,Adeline,23/02/1974,DVG,Cadre administratif et commercial d'entreprise,Non,M,LARAVINE,Bruce,13/09/1982,Non +31,Haute-Garonne,02,2ème circonscription,4,62,M,CAMPO,Charles,25/07/1986,DSV,Profession intermédiaire de la santé et du travail social,Non,M,GAUTIER,Kevin,07/05/1997,Non +31,Haute-Garonne,02,2ème circonscription,5,103,M,LAGLEIZE,Jean-Luc,09/09/1958,ENS,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,F,LEROY,Laurence,18/07/1968,Non +31,Haute-Garonne,02,2ème circonscription,6,113,F,DE TOURNADRE,Estelle,09/05/1990,DIV,"Professeur, profession scientifique",Non,M,BESSE,Jacques,26/12/1956,Non +31,Haute-Garonne,02,2ème circonscription,7,2,F,GENNARO-SAINT,Christine,19/03/1968,LR,Ingénieur et cadre technique d'entreprise,Non,M,LAFFONT,Pierre,03/11/1999,Non +31,Haute-Garonne,02,2ème circonscription,8,64,F,CATHALA,Catherine,15/07/1961,ECO,Profession libérale,Non,M,BOUZELMAT,Jean-Luc,11/01/1966,Non +31,Haute-Garonne,02,2ème circonscription,9,69,M,MARTIN,Pierre,21/07/1961,DIV,Profession libérale,Non,M,GILLES,Florent,16/03/1975,Non +31,Haute-Garonne,02,2ème circonscription,10,87,F,TEYCHENE,Sonia,17/02/1960,RN,Chauffeur,Non,M,BREFEL,Anthony,06/04/1998,Non +31,Haute-Garonne,02,2ème circonscription,11,107,M,BALES,Laurent,06/05/1968,REG,Profession libérale,Non,F,SAURIN,Valérie,19/05/1977,Non +31,Haute-Garonne,02,2ème circonscription,12,44,M,KARASIAK,Nicolas,22/04/1987,ECO,Ingénieur et cadre technique d'entreprise,Non,F,RIBES,Marion,03/12/1980,Non +31,Haute-Garonne,02,2ème circonscription,13,27,F,STAMBACH-TERRENOIR,Anne,23/06/1980,NUP,Cadre administratif et commercial d'entreprise,Non,M,CADIEU,Julien,07/02/1999,Non +31,Haute-Garonne,02,2ème circonscription,14,114,F,LORANS,Pauline,09/05/1997,REC,Employé civil et agent de service de la fonction publique,Non,F,BROUAT,Nathalie,21/01/1970,Non +31,Haute-Garonne,03,3ème circonscription,1,80,F,ALARCON,Stéphanie,11/07/1974,RN,Employé de commerce,Non,M,GARY,Anthony,05/04/1994,Non +31,Haute-Garonne,03,3ème circonscription,2,55,M,CALMELS,Benoît,15/02/1966,ECO,Ingénieur et cadre technique d'entreprise,Non,F,LEBOUCHER,Chantal,01/01/1946,Non +31,Haute-Garonne,03,3ème circonscription,3,31,F,ROBY,Agathe,17/11/1986,NUP,"Professeur, profession scientifique",Non,M,TARAVELLA,Aurélien,25/11/1977,Non +31,Haute-Garonne,03,3ème circonscription,4,49,F,VIGNON,Corinne,10/06/1963,ENS,Cadre administratif et commercial d'entreprise,Oui,M,TERRAIL-NOVÈS,Vincent,24/12/1978,Non +31,Haute-Garonne,03,3ème circonscription,5,50,M,SAFORCADA,David,07/01/1972,DVG,"Contremaître, agent de maîtrise",Non,F,BRIKI,Nesrine,28/06/1978,Non +31,Haute-Garonne,03,3ème circonscription,6,12,F,ADRADA,Malena,01/06/1973,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,GRIMOUX,Olivier,06/10/1955,Non +31,Haute-Garonne,03,3ème circonscription,7,95,F,ARRIBAGÉ,Laurence,25/05/1970,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MÉDARD,Maxime,16/11/1986,Non +31,Haute-Garonne,03,3ème circonscription,8,106,M,DE GUYENRO,Olivier,31/07/1966,DVD,Commerçant et assimilé,Non,F,AMOUROUX,Aurélie,24/09/1976,Non +31,Haute-Garonne,03,3ème circonscription,9,30,M,SANVISENS,Clément,10/01/1957,ECO,Ingénieur et cadre technique d'entreprise,Non,F,BARTHOMEUF,Marie-Odile,17/03/1962,Non +31,Haute-Garonne,03,3ème circonscription,10,118,F,DULON,Camille,18/02/2003,REC,"Elève, étudiant",Non,M,BERGER,Mayeul,31/01/1990,Non +31,Haute-Garonne,03,3ème circonscription,11,122,M,MUR,Patrice,07/11/1959,RDG,Profession libérale,Non,F,SAUMONT,Anne,25/05/1967,Non +31,Haute-Garonne,03,3ème circonscription,12,112,M,LIGNIER,André Michel,29/09/1954,DVG,Ancien employé,Non,F,TONIN,Elena,26/08/1936,Non +31,Haute-Garonne,04,4ème circonscription,1,81,F,SADOWSKI,Ewa,28/02/2001,RN,"Elève, étudiant",Non,M,DUPRAT,Benjamin,24/05/2000,Non +31,Haute-Garonne,04,4ème circonscription,2,6,M,MARCIREAU,Patrick,02/02/1959,DXG,Ancien employé,Non,M,ROIG,Robert,06/12/1943,Non +31,Haute-Garonne,04,4ème circonscription,3,45,M,COTTREL,Arthur,24/10/1980,REC,Ingénieur et cadre technique d'entreprise,Non,F,KERN,Sylvie,02/01/1967,Non +31,Haute-Garonne,04,4ème circonscription,4,22,M,SABATER,Raimon,03/08/1974,ECO,Ingénieur et cadre technique d'entreprise,Non,F,ZDOROVAN,Mariia,07/10/1991,Non +31,Haute-Garonne,04,4ème circonscription,5,96,F,LAFARGE,Sandrine,02/11/1972,DVG,Artisan,Non,M,GOUTNIKOFF,Emmanuel,07/11/1984,Non +31,Haute-Garonne,04,4ème circonscription,6,116,M,DELMAS,Jacme,10/12/1963,REG,Artisan,Non,F,ARGAZ,Jessica,04/06/1966,Non +31,Haute-Garonne,04,4ème circonscription,7,4,F,SY,Khady-Alberte,19/06/1968,DVG,Cadre administratif et commercial d'entreprise,Non,M,KOURRAK,Habib,23/03/1971,Non +31,Haute-Garonne,04,4ème circonscription,8,33,M,PIQUEMAL,François,28/12/1984,NUP,"Professeur, profession scientifique",Non,F,SCAMPA,Victoria,01/12/1990,Non +31,Haute-Garonne,04,4ème circonscription,9,40,F,BRANDELY,Cécile,19/03/1983,DXG,Profession libérale,Non,M,BOUGUESSA,Djamel,28/03/1980,Non +31,Haute-Garonne,04,4ème circonscription,10,65,M,SERP,Bertrand,21/07/1965,LR,Profession libérale,Non,F,ADOUE-BIELSA,Caroline,07/04/1969,Non +31,Haute-Garonne,04,4ème circonscription,11,93,F,JALOUNEIX,Anaïs,19/12/1999,DVG,"Elève, étudiant",Non,M,COZZOLI,Yves,17/12/1951,Non +31,Haute-Garonne,04,4ème circonscription,12,13,M,CARSALADE,Jean-Pierre,25/09/1958,DVC,Ancien cadre,Non,F,CARSALADE,Christine,13/02/1956,Non +31,Haute-Garonne,04,4ème circonscription,13,9,F,CONSTANS,Marie-Claire,07/12/1981,ENS,Cadre administratif et commercial d'entreprise,Non,M,PEDOUSSAUT,Thomas,05/11/1973,Non +31,Haute-Garonne,04,4ème circonscription,14,124,F,AGAG-BOUDJAHLAT,Fatiha,29/12/1979,DVG,"Professeur, profession scientifique",Non,M,DUVAL,Lucas,12/08/2000,Non +31,Haute-Garonne,05,5ème circonscription,1,43,M,VIRGOS,Pascal,24/12/1965,DSV,Ingénieur et cadre technique d'entreprise,Non,F,SAUVAGE,Henriette,06/11/1948,Non +31,Haute-Garonne,05,5ème circonscription,2,36,M,HONTANS,Bruno,15/11/1974,REC,Policier et militaire,Non,F,EYMARD,Emilie,08/12/1979,Non +31,Haute-Garonne,05,5ème circonscription,3,23,M,CHERONNET,Jean-Christophe,26/03/1961,LR,Profession intermédiaire administrative de la fonction publique,Non,F,MENENDEZ,Isabelle,12/01/1970,Non +31,Haute-Garonne,05,5ème circonscription,4,25,M,PIQUES,Jérôme,05/12/1972,REG,Employé civil et agent de service de la fonction publique,Non,F,DE LORENZO,Linda,13/09/1985,Non +31,Haute-Garonne,05,5ème circonscription,5,26,F,ESPAGNOLLE,Sylvie,09/06/1969,NUP,Cadre de la fonction publique,Non,M,DE FIGUEIREDO,Franck,22/06/1990,Non +31,Haute-Garonne,05,5ème circonscription,6,7,M,LASERGE,Michel,07/07/1954,DXG,Ancienne profession intermédiaire,Non,M,COMBES,Vincent,25/12/1958,Non +31,Haute-Garonne,05,5ème circonscription,7,88,M,LEONARDELLI,Julien,14/07/1987,RN,Employé de commerce,Non,F,VISSIERE,Michelle,22/05/1954,Non +31,Haute-Garonne,05,5ème circonscription,8,91,M,PORTARRIEU,Jean-François,14/10/1965,ENS,"Profession de l'information, des arts et des spectacles",Oui,F,GAYRAUD,Isabelle,09/01/1969,Non +31,Haute-Garonne,05,5ème circonscription,9,47,F,VELO,Johanna,03/07/1984,ECO,Ingénieur et cadre technique d'entreprise,Non,M,LEROUX,Raphaël,13/10/1974,Non +31,Haute-Garonne,05,5ème circonscription,10,75,F,MOSDIER,Alizée,26/08/1992,RDG,Cadre administratif et commercial d'entreprise,Non,M,SALAÜN,Frédéric,22/08/1975,Non +31,Haute-Garonne,05,5ème circonscription,11,117,F,GRIEU,Anne,17/07/1977,DIV,"Professeur, profession scientifique",Non,M,SCHMIDT,Denis,28/05/1957,Non +31,Haute-Garonne,05,5ème circonscription,12,115,F,GOMBERT,Laurence,27/11/1962,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,BUHAGIAR,Aurélie,04/04/1974,Non +31,Haute-Garonne,06,6ème circonscription,1,98,F,HELMAN,Christelle,25/12/1972,DVG,Cadre administratif et commercial d'entreprise,Non,M,MECABIH,Sami,07/10/2003,Non +31,Haute-Garonne,06,6ème circonscription,2,18,F,PUEL,Michele,29/07/1949,DXG,Ancienne profession intermédiaire,Non,F,MALATY,Nelly,17/06/1949,Non +31,Haute-Garonne,06,6ème circonscription,3,42,M,JOUVE,Fabien,04/06/1978,NUP,"Professeur, profession scientifique",Non,F,RENAUD,Clementine,23/11/1974,Non +31,Haute-Garonne,06,6ème circonscription,4,60,M,TARANTO,Thierry,15/11/1964,DVD,Profession libérale,Non,F,MONFRAIX,Therese,27/12/1955,Non +31,Haute-Garonne,06,6ème circonscription,5,104,F,PIUSSAN,Dominique,18/09/1961,REC,Cadre de la fonction publique,Non,F,CHEVALIER,Jocelyne,15/06/1956,Non +31,Haute-Garonne,06,6ème circonscription,6,111,M,MARTIN,Tristan,12/02/2002,DVG,Employé de commerce,Non,M,LEFEBVRE,Valmont,23/05/2002,Non +31,Haute-Garonne,06,6ème circonscription,7,8,F,IBORRA,Monique,08/03/1945,ENS,Ancien cadre,Oui,M,LAMY,Thomas,30/03/1989,Non +31,Haute-Garonne,06,6ème circonscription,8,63,F,LAPORTE,Sandra,18/04/1989,ECO,Profession libérale,Non,F,QUINTINO,Nadine,01/03/1970,Non +31,Haute-Garonne,06,6ème circonscription,9,70,M,QUINTON,Marc,10/03/1964,DIV,Cadre de la fonction publique,Non,M,MAHLE,Wolfgang,27/04/1975,Non +31,Haute-Garonne,06,6ème circonscription,10,90,F,AIELLO,Lydia,12/03/1951,RN,Artisan,Non,M,GAZZOLI,Nathan,09/09/2002,Non +31,Haute-Garonne,06,6ème circonscription,11,105,F,BONNEMAISON,Sylvie,06/02/1982,DVD,Profession intermédiaire administrative de la fonction publique,Non,M,BERARD,Olivier,16/08/1977,Non +31,Haute-Garonne,06,6ème circonscription,12,15,M,ALVES,Christophe,06/10/1977,LR,Cadre administratif et commercial d'entreprise,Non,F,LECLERC,Sophie,19/06/1972,Non +31,Haute-Garonne,06,6ème circonscription,13,34,F,PATER,Servane,21/11/2002,ECO,"Elève, étudiant",Non,M,GRANT,Joachim,04/02/1993,Non +31,Haute-Garonne,06,6ème circonscription,14,127,F,LANOIX,Delphine,15/02/1972,DSV,"Profession de l'information, des arts et des spectacles",Non,F,JISSEAU,Corinne,15/07/1963,Non +31,Haute-Garonne,07,7ème circonscription,1,67,M,ALBERT,Stéphane,28/08/1971,REG,Employé de commerce,Non,M,COT,Jean-Michel,13/10/1961,Non +31,Haute-Garonne,07,7ème circonscription,2,58,F,TOUTUT-PICARD,Elisabeth,17/12/1954,ENS,Ancien cadre,Oui,M,PINCHOT,Jean-Luc,03/03/1952,Non +31,Haute-Garonne,07,7ème circonscription,3,14,M,TESSEREAU,Georges-Henri,24/08/1963,REC,Cadre de la fonction publique,Non,F,DOMBES,Marie,03/06/1956,Non +31,Haute-Garonne,07,7ème circonscription,4,39,M,BEX,Christophe,14/11/1961,NUP,Cadre de la fonction publique,Non,F,LOILLIER,Yacina,30/03/1977,Non +31,Haute-Garonne,07,7ème circonscription,5,35,M,VON DEYEN,Romain,18/04/1991,ECO,"Professeur, profession scientifique",Non,F,AZOR,Valentine,02/02/1997,Non +31,Haute-Garonne,07,7ème circonscription,6,11,M,BERGNES,Hervé,12/02/1973,DXG,Technicien,Non,M,CASANOVAS,Stéphane,02/09/1963,Non +31,Haute-Garonne,07,7ème circonscription,7,73,M,THUARD,Florent,08/03/1979,DSV,Artisan,Non,F,KOSLOWSKI,Nadia,27/10/1973,Non +31,Haute-Garonne,07,7ème circonscription,8,83,F,PINATEL,Emmanuelle,07/03/1973,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,GOUSSAUD,Alexandre,15/05/1971,Non +31,Haute-Garonne,07,7ème circonscription,9,10,M,MIDALI,Julien,09/04/1993,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,BOMBAL,Berengere,14/10/1976,Non +31,Haute-Garonne,07,7ème circonscription,10,71,F,ETCHEVERRY,Sophie,19/05/1990,DIV,Ingénieur et cadre technique d'entreprise,Non,M,ETCHEVERRY,Axel,24/12/1987,Non +31,Haute-Garonne,07,7ème circonscription,11,108,F,EYMOND,Angelique,02/07/1966,DVD,Profession libérale,Non,M,MESSERDI,Omar,06/03/1954,Non +31,Haute-Garonne,07,7ème circonscription,12,94,M,BANCHERIT,Christophe,04/12/1979,LR,Commerçant et assimilé,Non,F,BLAU,Marie-Paule,05/07/1959,Non +31,Haute-Garonne,08,8ème circonscription,1,20,M,AVIRAGNET,Joël,16/06/1956,DVG,Ancien cadre,Oui,F,UCHAN,Marie-Claire,05/03/1965,Non +31,Haute-Garonne,08,8ème circonscription,2,129,F,FAUVERNIER,Annabelle,24/07/1970,DVG,Profession libérale,Non,M,PELLUCHI,Robin,30/04/1964,Non +31,Haute-Garonne,08,8ème circonscription,3,3,F,GUIRAUD,Martine,12/05/1953,DXG,Ancien employé,Non,F,BONNET,Marie Hélène,30/06/1950,Non +31,Haute-Garonne,08,8ème circonscription,4,56,F,LAURENTIES-BARRERE,Céline,19/11/1973,ENS,Profession intermédiaire administrative de la fonction publique,Non,M,VIGREUX,Cédric,06/08/1985,Non +31,Haute-Garonne,08,8ème circonscription,5,85,M,DELCHARD,Loic,22/06/1990,RN,Artisan,Non,M,GAUDIN,Vincent,18/04/1990,Non +31,Haute-Garonne,08,8ème circonscription,6,110,M,SERRE,Wilfried,26/05/1972,DVD,Ingénieur et cadre technique d'entreprise,Non,M,THIBAUT,Jean-Paul,15/03/1960,Non +31,Haute-Garonne,08,8ème circonscription,7,48,M,HARARI,François,20/08/1953,DVG,Chef d'entreprise de 10 salariés ou plus,Non,M,NOWACKI,Michael,04/05/1987,Non +31,Haute-Garonne,08,8ème circonscription,8,119,M,KARNIKIAN,Vartan,26/03/1968,DIV,Ingénieur et cadre technique d'entreprise,Non,M,AKHAVAN NIAKI,Narges,12/06/1966,Non +31,Haute-Garonne,08,8ème circonscription,9,38,F,BAILLY,Amélie,19/07/1989,DSV,"Contremaître, agent de maîtrise",Non,M,BOUTAULT,Franck,17/07/1949,Non +31,Haute-Garonne,08,8ème circonscription,10,37,M,RIERE,Yves,08/03/1948,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,CHIES,Linda,29/07/1959,Non +31,Haute-Garonne,08,8ème circonscription,11,121,M,MONCASI,Simon,20/01/1988,ECO,"Elève, étudiant",Non,F,DANDIS,Dorothée,03/10/1987,Non +31,Haute-Garonne,09,9ème circonscription,1,72,F,DOROY,Juliette,25/03/1969,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,M,HOLMGREN,Julien,25/05/1982,Non +31,Haute-Garonne,09,9ème circonscription,2,66,M,COLOMINA,Damien,10/02/1988,DVG,Ingénieur et cadre technique d'entreprise,Non,F,GAUBE,Maia,08/10/1991,Non +31,Haute-Garonne,09,9ème circonscription,3,46,M,AUDISIO,Jérôme,12/09/1979,REC,Profession libérale,Non,M,CHOLET,Grégoire,30/04/1992,Non +31,Haute-Garonne,09,9ème circonscription,4,28,F,ARRIGHI,Christine,19/09/1959,NUP,Ancien cadre,Non,F,MARTIN,Myriam,17/03/1968,Non +31,Haute-Garonne,09,9ème circonscription,5,57,F,MÖRCH,Sandrine,13/11/1961,ENS,"Profession de l'information, des arts et des spectacles",Oui,M,FERJANI,Borhane,03/05/1966,Non +31,Haute-Garonne,09,9ème circonscription,6,5,M,MARTIN,Henri,30/10/1960,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,DERREZ,Pascal,11/08/1958,Non +31,Haute-Garonne,09,9ème circonscription,7,86,M,BARKATS,Thomas,18/06/2000,RN,Ingénieur et cadre technique d'entreprise,Non,F,BIBOLLET,Audrey,02/04/1997,Non +31,Haute-Garonne,09,9ème circonscription,8,78,M,BAUD,Robert,14/12/1948,ECO,"Profession de l'information, des arts et des spectacles",Non,F,PASSICOS,Brigitte,31/03/1973,Non +31,Haute-Garonne,09,9ème circonscription,9,19,F,DUFRAISSE,Cecile,21/06/1977,LR,Ancien cadre,Non,M,BONNAFOUS,Guy,08/05/1952,Non +31,Haute-Garonne,09,9ème circonscription,10,79,M,BENSLIMANE,Younès,11/07/1996,DIV,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,ESCANDE,Matthieu,18/10/1999,Non +31,Haute-Garonne,09,9ème circonscription,11,123,F,SIRUGUE,Chantal,30/10/1953,DXG,Ancien employé,Non,M,ROUQUIE,Pierre,06/05/1943,Non +31,Haute-Garonne,09,9ème circonscription,12,100,M,RÜMLER,Paul,12/11/1986,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,GLEIZES,Marie-Pierre,04/05/1961,Non +31,Haute-Garonne,10,10ème circonscription,1,29,F,ASSIER,Alice,10/08/1996,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,NEVEU,Bernard,18/02/1959,Non +31,Haute-Garonne,10,10ème circonscription,2,32,M,SCHMITT,Eric,31/07/1961,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,BENEZECH,Elise,16/07/2003,Non +31,Haute-Garonne,10,10ème circonscription,3,84,F,POIRIER,Christelle,12/05/1963,RN,Profession libérale,Non,M,BATIGNE,Fernand,24/02/1955,Non +31,Haute-Garonne,10,10ème circonscription,4,52,F,BOURLAND,Ghislaine,04/05/1968,REC,Cadre administratif et commercial d'entreprise,Non,M,ALBERO,Christian,02/04/1947,Non +31,Haute-Garonne,10,10ème circonscription,5,125,M,CORSO,Gilles,28/01/1973,DIV,Artisan,Non,F,CORSO,Lea,15/01/2003,Non +31,Haute-Garonne,10,10ème circonscription,6,77,F,GIMENO,Séverine,13/04/1976,ECO,Chômeur n'ayant jamais travaillé,Non,M,MOREAU,Stéphane,27/08/1974,Non +31,Haute-Garonne,10,10ème circonscription,7,61,F,CONTE MARGAIL,Sandrine,28/09/1972,ECO,Profession intermédiaire de la santé et du travail social,Non,F,MARGAIL,Lucille,19/08/2002,Non +31,Haute-Garonne,10,10ème circonscription,8,21,F,RESPAUD,Stéphanie,11/05/1980,LR,"Contremaître, agent de maîtrise",Non,M,DION,Nicolas,24/01/1994,Non +31,Haute-Garonne,10,10ème circonscription,9,76,F,SOUCHE,Lucile,25/10/1962,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,ABELLAN,Georges,02/08/1954,Non +31,Haute-Garonne,10,10ème circonscription,10,92,M,MARQUIE,Baptiste,12/07/1987,DVD,Agriculteur sur moyenne exploitation,Non,M,CAMINADE,Christian,08/09/1962,Non +31,Haute-Garonne,10,10ème circonscription,11,54,M,ZITOUNI,Réda,10/05/1970,DVC,Ingénieur et cadre technique d'entreprise,Non,F,SARRASECA,Laure,02/05/1978,Non +31,Haute-Garonne,10,10ème circonscription,12,101,F,PALAT,Nadine,17/01/1953,DXG,Ingénieur et cadre technique d'entreprise,Non,M,GASPERONI,Maurice,16/06/1946,Non +31,Haute-Garonne,10,10ème circonscription,13,59,F,FAURE,Dominique,28/08/1959,ENS,Chef d'entreprise de 10 salariés ou plus,Non,M,ESQUENET-GOXES,Laurent,23/08/1962,Non +32,Gers,01,1ère circonscription,1,8,M,YELMA,Jean-Luc,19/01/1965,RN,Profession libérale,Non,F,BERAUT,Léa,27/07/1992,Non +32,Gers,01,1ère circonscription,2,11,F,CAZES,Aurore,02/07/1987,REC,Profession libérale,Non,M,CORRAZE,Théo,21/05/2001,Non +32,Gers,01,1ère circonscription,3,2,F,LARRÉ,Nadine,18/06/1960,ECO,Profession intermédiaire de la santé et du travail social,Non,M,LARRÉ,Ludovic,11/03/1987,Non +32,Gers,01,1ère circonscription,4,18,F,OLIVIER-GOMOLKO,Maggy,07/08/1951,DSV,Ancien cadre,Non,M,FERRANDIS,Stéphane,01/07/1966,Non +32,Gers,01,1ère circonscription,5,12,M,LEVIEUX,Pascal,02/06/1968,NUP,Ingénieur et cadre technique d'entreprise,Non,F,HEMERY,Ann-Abel,04/05/1970,Non +32,Gers,01,1ère circonscription,6,22,M,DAVEZAC,Jean-Luc,04/10/1959,REG,Profession libérale,Non,F,MAIGNAUT,Priscilla,10/08/1987,Non +32,Gers,01,1ère circonscription,7,13,M,CAZENEUVE,Jean-René,09/06/1958,ENS,Ancien cadre,Oui,F,THIEUX LOUIT,Véronique,28/12/1964,Non +32,Gers,01,1ère circonscription,8,17,F,DEL CASTILLO,Bernadette,07/03/1961,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,RIVES,Marie-Noelle,23/10/1955,Non +32,Gers,01,1ère circonscription,9,19,F,THEYE,Sylvie,02/12/1971,RDG,Ouvrier agricole,Non,F,CARCHON,Severine,28/10/1973,Non +32,Gers,01,1ère circonscription,10,5,M,CHARETON,Jean-Louis,03/03/1960,DXG,Technicien,Non,M,LALANNE,Tristan,03/02/1973,Non +32,Gers,02,2ème circonscription,1,9,F,BOURCIER,Maëva,20/05/1991,ENS,Ingénieur et cadre technique d'entreprise,Non,M,ARLIN,Alexandre,15/02/1995,Non +32,Gers,02,2ème circonscription,2,15,F,CENDRÉ,Alice,23/09/1993,RN,Profession intermédiaire de la santé et du travail social,Non,M,DOMINGUES,David,05/10/1970,Non +32,Gers,02,2ème circonscription,3,26,M,SOCCIO,Christopher,11/03/1985,DIV,Employé civil et agent de service de la fonction publique,Non,F,SANCHEZ,Sylvie,18/08/1951,Non +32,Gers,02,2ème circonscription,4,4,F,MARTIN,Michèle,12/09/1956,DXG,Ancienne profession intermédiaire,Non,M,GUÉNÉ,Bruno,17/02/1962,Non +32,Gers,02,2ème circonscription,5,3,M,GEIGER,Frank,31/07/1976,DIV,Ingénieur et cadre technique d'entreprise,Non,M,VILLEDARY,Benoît,09/06/1977,Non +32,Gers,02,2ème circonscription,6,23,M,FOURCADE DUTIN,Frédéric,02/10/1968,REG,Profession libérale,Non,F,DARROZES,Dominique,11/08/1965,Non +32,Gers,02,2ème circonscription,7,7,F,AGIER,Sylvie,02/02/1952,DSV,Ancienne profession intermédiaire,Non,M,BARRAS,Henri,13/06/1953,Non +32,Gers,02,2ème circonscription,8,16,M,MONTEIL,Eric,07/09/1954,REC,Agriculteur sur moyenne exploitation,Non,F,BOUJENAH,Ingrid,01/11/1991,Non +32,Gers,02,2ème circonscription,9,6,M,GABAS,Michel,03/02/1963,LR,Profession libérale,Non,F,DARDENNE,Joëlle,26/06/1961,Non +32,Gers,02,2ème circonscription,10,14,F,GOUDENNE,Angélique,07/03/1986,DXG,Profession intermédiaire de la santé et du travail social,Non,M,CONNAN,Pascal,30/05/1957,Non +32,Gers,02,2ème circonscription,11,25,F,HUSEINBASIC,Merima,10/11/1987,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,FERNANDEZ,Carole,26/01/1970,Non +32,Gers,02,2ème circonscription,12,24,F,DUBOS,Françoise,16/06/1958,NUP,Profession intermédiaire administrative de la fonction publique,Non,M,ALLEENE,Christophe,09/12/1967,Non +32,Gers,02,2ème circonscription,13,21,F,TOUATI,Samira,29/04/1976,DVG,Employé civil et agent de service de la fonction publique,Non,M,PARROT,Antoine,03/01/1972,Non +32,Gers,02,2ème circonscription,14,10,M,TAUPIAC,David,13/05/1975,DVG,Profession libérale,Non,F,ROLANDO,Carole,23/04/1976,Non +33,Gironde,01,1ère circonscription,1,96,F,DUFAURE,Esther,21/02/1991,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,SOULIÉ,Alice,20/11/1997,Non +33,Gironde,01,1ère circonscription,2,3,M,LOUSTAUNAU,Xavier,17/07/1974,DVD,Profession libérale,Non,F,DE BEAUCHAINE,Hortense,19/01/1974,Non +33,Gironde,01,1ère circonscription,3,36,F,LARROQUET,Isabelle,12/06/1966,DXG,Technicien,Non,M,LAFARGUE,Eric,22/06/1960,Non +33,Gironde,01,1ère circonscription,4,32,F,CHARTIER GRIMAUD,Claire,03/05/1945,DXG,Profession intermédiaire de la santé et du travail social,Non,M,AZZOUG,Farid,11/01/1968,Non +33,Gironde,01,1ère circonscription,5,104,M,CAZENAVE,Thomas,06/03/1978,ENS,Cadre de la fonction publique,Non,F,MARTIN,Alexandra,28/07/1976,Non +33,Gironde,01,1ère circonscription,6,69,M,PALUTEAU,Bruno,27/03/1962,RN,Profession libérale,Non,F,JAVELOT,Rose,09/05/1943,Non +33,Gironde,01,1ère circonscription,7,5,M,GRATTEPANCHE,Jean-Louis,24/03/1963,REC,Ancien cadre,Non,F,DU BREUIL,Isaure,17/01/1997,Non +33,Gironde,01,1ère circonscription,8,16,M,THOMAS,Damien,01/12/1987,DVG,Commerçant et assimilé,Non,F,BERRAHMA,Allaouia,23/10/1974,Non +33,Gironde,01,1ère circonscription,9,95,M,VISAGE,Kylian,19/11/2001,DIV,Employé de commerce,Non,M,ROSEAU,Gregoire,26/07/1997,Non +33,Gironde,01,1ère circonscription,10,39,M,SABOULARD,Medhi,14/02/1988,DVG,Employé de commerce,Non,F,ANNIC,Jeanne,17/01/1989,Non +33,Gironde,01,1ère circonscription,11,102,M,BLANCHARD,Laurent,15/06/1971,ECO,"Contremaître, agent de maîtrise",Non,M,TALOU,Didier,01/09/1973,Non +33,Gironde,01,1ère circonscription,12,62,M,NJIKAM,Pierre De Gaetan,07/08/1966,LR,Cadre administratif et commercial d'entreprise,Non,F,ROUYER,Margaux,02/06/1997,Non +33,Gironde,01,1ère circonscription,13,4,F,QUANDALLE,Fanny,16/12/1972,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,NARDELLI,André,22/04/1960,Non +33,Gironde,01,1ère circonscription,14,43,F,CESTARI,Catherine,17/11/1964,NUP,Cadre administratif et commercial d'entreprise,Non,F,ZAGO,Muriel,11/04/1965,Non +33,Gironde,01,1ère circonscription,15,117,M,ROCHE,Jean-Pierre,21/02/1952,DIV,Commerçant et assimilé,Non,F,ROZEL,Nadine,01/02/1956,Non +33,Gironde,02,2ème circonscription,1,2,M,DUPONT,Guy,10/04/1958,DXG,Ancien employé,Non,F,MACARENO ROMERO,Claudine,05/02/1947,Non +33,Gironde,02,2ème circonscription,2,129,F,BELMONDO,Bruna,13/09/1955,DVD,Profession intermédiaire de la santé et du travail social,Non,M,BRU,Mathieu,05/09/1995,Non +33,Gironde,02,2ème circonscription,3,140,M,LAMBERT,Maxime,24/02/1991,ECO,Employé de commerce,Non,F,ROCHE,Émeline,24/05/1983,Non +33,Gironde,02,2ème circonscription,4,124,F,FABRE,Catherine,19/09/1978,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,PECQUEUR,Patrice,08/02/1969,Non +33,Gironde,02,2ème circonscription,5,40,F,CUNY,Emmanuelle,21/08/1967,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DE CARLI,Arnaud,18/02/1975,Non +33,Gironde,02,2ème circonscription,6,147,M,MILLAC,Mikaël,31/10/1981,DVD,Agriculteur sur petite exploitation,Non,F,SPIRIN,Elena,06/10/1953,Non +33,Gironde,02,2ème circonscription,7,122,M,MAGNE,Didier,29/11/1965,DIV,Ingénieur et cadre technique d'entreprise,Non,F,SUBILET,Marguerite,29/08/1967,Non +33,Gironde,02,2ème circonscription,8,85,F,LAURENT,Honorine,17/08/1984,ECO,Cadre administratif et commercial d'entreprise,Non,F,LACHIVER,Gaelle,14/06/1991,Non +33,Gironde,02,2ème circonscription,9,49,M,THIERRY,Nicolas,08/12/1975,NUP,Profession libérale,Non,F,GUÉRY,Florence,30/06/1970,Non +33,Gironde,02,2ème circonscription,10,48,M,LE CAMUS,Pierre,06/09/1999,RN,Cadre de la fonction publique,Non,M,BONNAUD,Jérémy,14/05/1994,Non +33,Gironde,02,2ème circonscription,11,11,F,TOURNAY,Virginie,16/12/1976,REC,Commerçant et assimilé,Non,M,GAUDOU,Yannick,02/05/1997,Non +33,Gironde,03,3ème circonscription,1,119,F,DAYAN,Asia,15/11/2001,UDI,"Elève, étudiant",Non,M,GUYOT,Thomas,03/04/1998,Non +33,Gironde,03,3ème circonscription,2,59,M,BOUTOT,Yannick,27/04/1982,RDG,Cadre de la fonction publique,Non,M,QUILLATEAU,Christopher,30/06/2000,Non +33,Gironde,03,3ème circonscription,3,120,F,SAVINO,Flora,13/04/1991,DIV,"Elève, étudiant",Non,F,DAVIAUD,Fanny,12/07/1991,Non +33,Gironde,03,3ème circonscription,4,30,M,MARHADOUR,Éric,20/01/1972,DXG,Ouvrier qualifié de type industriel,Non,M,GULDNER,Jacques,24/02/1955,Non +33,Gironde,03,3ème circonscription,5,8,M,PRUD'HOMME,Loïc,19/08/1969,NUP,Technicien,Oui,F,TCHIKAYA,Marlène,25/03/1974,Non +33,Gironde,03,3ème circonscription,6,114,F,MATHO,Morgan,14/11/1998,DIV,"Professeur des écoles, instituteur et assimilé",Non,M,FORTIN,Clément,26/08/2000,Non +33,Gironde,03,3ème circonscription,7,42,M,ROBERT,Fabien,22/12/1984,ENS,"Professeur, profession scientifique",Non,F,FABRE-TABOURIN,Frédérique,10/02/1967,Non +33,Gironde,03,3ème circonscription,8,109,M,MARC,Laurent,27/07/1976,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,SALICETI,Marianick,21/09/1952,Non +33,Gironde,03,3ème circonscription,9,68,M,DOUMENGE,Cyrille,20/02/1960,REC,Cadre administratif et commercial d'entreprise,Non,M,CRUZ-MERMY,Vincent,06/03/1991,Non +33,Gironde,03,3ème circonscription,10,77,F,BASTERES,Maryvonne,20/03/1953,RN,Ancienne profession intermédiaire,Non,M,VIDAL,Sebastien,15/05/1985,Non +33,Gironde,03,3ème circonscription,11,45,M,DAUREL,François,16/12/1992,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,JOUBERT,Chloé,04/01/1994,Non +33,Gironde,03,3ème circonscription,12,94,M,VAY,Thierry,12/11/1956,ECO,Ancien employé,Non,F,BETEND,Frédérique,17/12/1973,Non +33,Gironde,04,4ème circonscription,1,53,M,FILLANG,Jean Patrice,27/05/1953,DVD,Ancien cadre,Non,M,GIACOMETTI,Yohann,19/10/1992,Non +33,Gironde,04,4ème circonscription,2,71,F,MATHIEU,"Marie-Mauricette, Simone",22/10/1955,DSV,Ancien employé,Non,M,HUNOU,Daniel Jean Édouard,13/06/1943,Non +33,Gironde,04,4ème circonscription,3,82,F,GAILLARD,Christine,04/07/1971,DVD,Profession intermédiaire de la santé et du travail social,Non,M,LASSALLE,Jérôme,05/05/1970,Non +33,Gironde,04,4ème circonscription,4,87,F,DESTANDAU,Ambre,10/11/2001,ECO,"Elève, étudiant",Non,M,DUREUX,Malo,27/03/2002,Non +33,Gironde,04,4ème circonscription,5,31,M,DAVID,Alain,02/06/1949,NUP,Ancien cadre,Oui,M,GUENDEZ,Nordine,29/08/1974,Non +33,Gironde,04,4ème circonscription,6,103,F,KARACA,Melissa,06/05/1994,ENS,Employé civil et agent de service de la fonction publique,Non,M,VERBOIS,Philippe,03/11/1962,Non +33,Gironde,04,4ème circonscription,7,35,F,CASANOVA,Monica,24/12/1965,DXG,"Professeur, profession scientifique",Non,F,HÉRAUD,Christine,23/07/1959,Non +33,Gironde,04,4ème circonscription,8,23,F,BRIVARY,Anne-Isabelle,10/08/1964,DXG,Employé administratif d'entreprise,Non,M,PRET,Patrick,03/05/1962,Non +33,Gironde,04,4ème circonscription,9,29,M,GARNIER,Philippe,21/01/1971,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DORIGNAC,Jean Luc,13/08/1969,Non +33,Gironde,04,4ème circonscription,10,73,F,RECHAGNEUX,Julie,24/01/1996,RN,Cadre administratif et commercial d'entreprise,Non,M,LEDOUX,Alexandre,29/09/1993,Non +33,Gironde,04,4ème circonscription,11,72,M,BERNAUD,Kevin,24/05/1991,DVD,Employé de commerce,Non,M,BOUZIER,Sebastien,08/02/1977,Non +33,Gironde,05,5ème circonscription,1,65,M,FAGEGALTIER,Thierry,13/12/1961,DXG,Ancien employé,Non,F,RIBAN,Françoise,29/11/1964,Non +33,Gironde,05,5ème circonscription,2,93,F,BASTIEN,Virginie,02/08/1965,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,FERNANDEZ,Christelle,24/12/1973,Non +33,Gironde,05,5ème circonscription,3,99,M,MANEIRO,Olivier,19/10/1983,NUP,Profession intermédiaire de la santé et du travail social,Non,F,ALLARD,Sylvette,15/09/1952,Non +33,Gironde,05,5ème circonscription,4,79,F,MAURY,Roxane,14/09/1973,REC,Cadre administratif et commercial d'entreprise,Non,M,CARON,Johny,05/05/1950,Non +33,Gironde,05,5ème circonscription,5,141,F,NOUETTE GAULAIN,Karine,19/03/1971,ENS,"Professeur, profession scientifique",Non,M,MIGNET,Martial,06/11/1959,Non +33,Gironde,05,5ème circonscription,6,51,F,CHAINE-RIBEIRO,Viviane,10/03/1953,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,SIBRAC,Luc,01/03/1969,Non +33,Gironde,05,5ème circonscription,7,113,F,GHIBAUDO,Maryse,20/08/1946,DSV,Ancienne profession intermédiaire,Non,M,GARÇON,Gilles,11/05/1958,Non +33,Gironde,05,5ème circonscription,8,133,M,SIMIAN,Benoît,27/05/1983,DVC,Cadre administratif et commercial d'entreprise,Oui,F,RODRIGUEZ,Veronique,09/12/1966,Non +33,Gironde,05,5ème circonscription,9,14,M,DE FOURNAS,Grégoire,19/03/1985,RN,Agriculteur sur moyenne exploitation,Non,M,CHAGNIAT,Philippe,10/12/1949,Non +33,Gironde,05,5ème circonscription,10,46,M,SENCE,Stephane,05/09/1964,DVD,Profession libérale,Non,F,DANTY,Frédérique,06/02/1963,Non +33,Gironde,05,5ème circonscription,11,131,M,OPIFEX,Vincent,29/09/1977,DIV,Profession intermédiaire de la santé et du travail social,Non,M,ROUSSEAU,Olivier,02/04/1979,Non +33,Gironde,06,6ème circonscription,1,20,M,PERCHET,Guillaume,05/11/1970,DXG,Ingénieur et cadre technique d'entreprise,Non,M,CASSAIGNE,Jean-Pierre,22/03/1957,Non +33,Gironde,06,6ème circonscription,2,143,M,PARIS,Jérôme,20/10/1975,REC,Profession libérale,Non,M,LEROY,Mathieu,30/10/1997,Non +33,Gironde,06,6ème circonscription,3,106,M,BONHOMME,Franck,21/04/1963,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,DARNAUDGUILHEM (BENITES MORALES),Odile,03/12/1966,Non +33,Gironde,06,6ème circonscription,4,19,F,FERGEAU-RENAUX,Vanessa,13/05/1983,NUP,Profession libérale,Non,M,DELPEYRAT,Stephane,13/03/1968,Non +33,Gironde,06,6ème circonscription,5,83,M,MORISSET,Marc,24/06/1967,DVG,Technicien,Non,F,TANQUEREY,Christine,13/11/1963,Non +33,Gironde,06,6ème circonscription,6,80,F,MVONDO,Esther,29/08/1975,ECO,Employé civil et agent de service de la fonction publique,Non,F,LABEUR,Sylvie,22/06/1966,Non +33,Gironde,06,6ème circonscription,7,112,M,FLORIT,Jonathan,05/12/2002,DIV,"Elève, étudiant",Non,F,LABANSAT,Patricia,16/08/1965,Non +33,Gironde,06,6ème circonscription,8,145,M,DE PINA,Jean-Christophe,13/06/1968,DIV,Profession libérale,Non,F,MESNARD,Delphine,04/02/1982,Non +33,Gironde,06,6ème circonscription,9,60,M,ALVES,Alain,18/05/1969,DSV,Ingénieur et cadre technique d'entreprise,Non,M,MOUHOUB,Mehdi,27/07/1993,Non +33,Gironde,06,6ème circonscription,10,135,M,CANOVAS,Raphael,26/01/1961,DIV,Ancien cadre,Non,F,CADIX,Delphine,30/03/1980,Non +33,Gironde,06,6ème circonscription,11,89,F,PLOUVIER,Stephanie,09/11/1982,ECO,Policier et militaire,Non,M,MATHIEU,Louis-Raphaël,20/01/1987,Non +33,Gironde,06,6ème circonscription,12,15,M,BOURLIEUX,Jimmy,18/01/1994,RN,Cadre de la fonction publique,Non,M,COLOMBIER,Jacques,17/02/1952,Non +33,Gironde,06,6ème circonscription,13,24,M,POULLIAT,Eric,09/07/1974,ENS,Profession intermédiaire administrative de la fonction publique,Oui,F,IACOB GARIBAL,Maria,26/01/1983,Non +33,Gironde,06,6ème circonscription,14,34,M,DOVICHI,Thomas,28/08/1992,LR,Profession intermédiaire administrative de la fonction publique,Non,F,GANDRAND,Virginie,06/06/1970,Non +33,Gironde,07,7ème circonscription,1,111,M,FOURNIER,Vincent,25/05/1972,DSV,Cadre administratif et commercial d'entreprise,Non,F,DUCLOU,Marion,08/11/1981,Non +33,Gironde,07,7ème circonscription,2,67,M,MINGAM,John,01/11/1994,DIV,Commerçant et assimilé,Non,F,MINGAM,Elisabeth,13/10/1967,Non +33,Gironde,07,7ème circonscription,3,100,M,FERRAN,Jean-Renaud,24/06/1982,NUP,Cadre de la fonction publique,Non,M,SIBIRIL,Gabriele,11/06/2001,Non +33,Gironde,07,7ème circonscription,4,125,M,RAUTUREAU,Benoît,24/11/1975,LR,"Professeur, profession scientifique",Non,M,BERNON,Enzo,09/07/2002,Non +33,Gironde,07,7ème circonscription,5,144,F,LEGENDRE,Audrey,13/07/1995,ECO,Personnel des services directs aux particuliers,Non,M,UZAN,Lucas,17/07/1994,Non +33,Gironde,07,7ème circonscription,6,56,M,BONNET,Dany,09/07/1990,REC,"Professeur, profession scientifique",Non,F,DARMENDRAIL,Marie-Alix,20/06/1988,Non +33,Gironde,07,7ème circonscription,7,50,F,COUILLARD,Bérangère,24/07/1986,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,ZGAINSKI,Frédéric,30/10/1972,Non +33,Gironde,07,7ème circonscription,8,37,F,BONNET,Rozenn,05/04/1999,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,THOMAS,Josiane,28/11/1959,Non +33,Gironde,07,7ème circonscription,9,91,F,FRANCHISET,Anne Marie,22/09/1951,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,VIDAL,Christelle,29/03/1985,Non +33,Gironde,07,7ème circonscription,10,58,F,ERB,Francine,08/09/1954,RN,Ancien employé,Non,M,DUFAY,Michel,07/09/1956,Non +33,Gironde,07,7ème circonscription,11,21,F,ORATTO,Monique,28/05/1954,DXG,Ancien employé,Non,M,NOMMÉ,Ronan,01/01/1969,Non +33,Gironde,08,8ème circonscription,1,137,M,MORIN,Marc,31/07/1985,LR,Commerçant et assimilé,Non,F,DAUNESSE,Sylvie,01/03/1958,Non +33,Gironde,08,8ème circonscription,2,18,M,COSTE,Rémy,18/12/1962,DXG,Ingénieur et cadre technique d'entreprise,Non,F,GAMINE,Gwénaëlle,13/08/1972,Non +33,Gironde,08,8ème circonscription,3,13,F,ISNARD,Alexane,23/06/1992,REC,Employé de commerce,Non,M,DUFRESNE,Jean-Philippe,22/06/1972,Non +33,Gironde,08,8ème circonscription,4,97,M,BRUSTLE SANTINI,Hans,02/10/1978,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CHEVEUX,Laetitia,29/01/1972,Non +33,Gironde,08,8ème circonscription,5,47,F,PANONACLE,Sophie,16/12/1968,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,BALLONGUE,Loïc,28/07/1976,Non +33,Gironde,08,8ème circonscription,6,146,M,RICHON,Eric,23/01/1973,DIV,Chauffeur,Non,M,CAPRON,Stéphane,04/05/1972,Non +33,Gironde,08,8ème circonscription,7,132,F,PORTELAS LEPELLETIER,Christele,26/06/1973,DVD,Cadre administratif et commercial d'entreprise,Non,M,BENOIT,Charles,10/01/1946,Non +33,Gironde,08,8ème circonscription,8,130,F,ROCCHI,Veronique,23/02/1967,DIV,Profession libérale,Non,M,LE GALL,Yvon,27/07/1965,Non +33,Gironde,08,8ème circonscription,9,84,M,CHAUTEAU,Alain,14/04/1953,DVG,Ancien cadre,Non,M,SALLES,Martin Yves Jean,07/01/2001,Non +33,Gironde,08,8ème circonscription,10,33,F,FAURE,Marylène,26/02/1972,NUP,Employé administratif d'entreprise,Non,M,CAZAUX,Samuel,29/07/1996,Non +33,Gironde,08,8ème circonscription,11,7,F,RIVAULT,Lydie,06/03/1964,DSV,Ancienne profession intermédiaire,Non,M,GUYONNET,Olivier,11/02/1958,Non +33,Gironde,08,8ème circonscription,12,76,M,LAMARA,Laurent,13/01/1988,RN,Commerçant et assimilé,Non,F,TOURVIEILLE DE LABROUHE,Brigitte,07/06/1955,Non +33,Gironde,09,9ème circonscription,1,101,M,ANDRÉ,Sacha,25/03/1998,NUP,Technicien,Non,F,MORO,Cécile,30/05/1966,Non +33,Gironde,09,9ème circonscription,2,128,M,DETRIEUX,Serge,10/04/1963,RDG,Profession intermédiaire administrative de la fonction publique,Non,F,VICTOR,Victorine,27/12/1959,Non +33,Gironde,09,9ème circonscription,3,9,M,DELCAMP,Jean-Philippe,28/07/1956,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,VAGNER,Paulette,24/01/1943,Non +33,Gironde,09,9ème circonscription,4,61,F,METTE,Sophie,13/09/1959,ENS,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,M,GAZEAU,Francis,28/09/1959,Non +33,Gironde,09,9ème circonscription,5,75,M,OBRADOR,Damien,21/04/1992,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,F,DUPRAT,Martine,17/04/1953,Non +33,Gironde,09,9ème circonscription,6,110,F,VILTET,Valérie,05/09/1969,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,COSTE,Sophie,09/01/1975,Non +33,Gironde,09,9ème circonscription,7,127,M,BESSET,Guillaume,20/08/1971,DIV,Chômeur n'ayant jamais travaillé,Non,M,BESSET,Thomas Philippe Eugène,18/09/1973,Non +33,Gironde,09,9ème circonscription,8,115,F,GELLÉ,Milène,24/12/1960,DSV,Ingénieur et cadre technique d'entreprise,Non,M,GELLÉ,Pascal,09/03/1965,Non +33,Gironde,09,9ème circonscription,9,57,M,CARDOIT,Rene,02/02/1968,LR,Commerçant et assimilé,Non,M,DUPART,Olivier,25/06/1981,Non +33,Gironde,09,9ème circonscription,10,22,F,MANTEL,Sylvie,30/03/1960,REC,"Professeur, profession scientifique",Non,M,GALIAY,Michel Claude,26/06/1957,Non +33,Gironde,09,9ème circonscription,11,134,M,LALOUBÈRE,Jean-Claude,08/12/1952,DIV,Ancien employé,Non,F,BONAFÉ,Françoise,23/02/1956,Non +33,Gironde,09,9ème circonscription,12,139,F,CRUSE,Armelle,29/11/1970,DVD,Cadre administratif et commercial d'entreprise,Non,F,MATHOU,Marie-Agnès,03/10/1981,Non +33,Gironde,09,9ème circonscription,13,108,F,BOGO,Maëva,21/09/1994,DSV,Cadre administratif et commercial d'entreprise,Non,M,BANQUET ROYÉRE,Aurelien,16/08/1989,Non +33,Gironde,10,10ème circonscription,1,74,F,CHADOURNE,Sandrine,12/12/1970,RN,Profession intermédiaire de la santé et du travail social,Non,M,THIBAUD,Richard,27/01/1977,Non +33,Gironde,10,10ème circonscription,2,41,M,BOUDIÉ,Florent,22/09/1973,ENS,Cadre de la fonction publique,Oui,F,BERNADEAU,Marie-Sophie,08/07/1980,Non +33,Gironde,10,10ème circonscription,3,54,M,BOURGOIS,Pascal,24/07/1956,NUP,Cadre de la fonction publique,Non,F,JANICOT,Laurine,09/04/1986,Non +33,Gironde,10,10ème circonscription,4,126,F,FLEURY,Catherine,11/04/1963,DSV,Employé administratif d'entreprise,Non,M,TOURDIAS,Romain,26/04/1989,Non +33,Gironde,10,10ème circonscription,5,64,F,PLANTON,"Veronique, Raymonde",23/05/1975,RDG,Cadre de la fonction publique,Non,M,PERRIN,Stephane,03/01/1969,Non +33,Gironde,10,10ème circonscription,6,121,F,BERNARD,Muriel,20/05/1959,DVG,Ancien employé,Non,M,LARRIBAUD,Claude,29/07/1948,Non +33,Gironde,10,10ème circonscription,7,38,M,MALHERBE,Gonzague,31/03/1989,REC,Ingénieur et cadre technique d'entreprise,Non,F,QUEBEC,Pascale,28/02/1965,Non +33,Gironde,10,10ème circonscription,8,88,F,GUILBERT,Amélie,20/11/1998,ECO,"Elève, étudiant",Non,M,RIHN,Lilian,22/01/2004,Non +33,Gironde,10,10ème circonscription,9,25,F,HALBIN,Hélène,23/08/1966,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,BALLANGER,Bruno,14/07/1957,Non +33,Gironde,10,10ème circonscription,10,116,F,DEJONG-PAUSS,Angélique,25/08/1974,DIV,Profession intermédiaire administrative de la fonction publique,Non,M,DUPOUY,Lionel,18/12/1977,Non +33,Gironde,11,11ème circonscription,1,123,M,CAILLAUD,Mathieu,19/01/1983,NUP,Employé civil et agent de service de la fonction publique,Non,F,VILATTE,Iris,09/04/1997,Non +33,Gironde,11,11ème circonscription,2,6,F,AHMIMOU,Zina,18/12/1974,DXG,Employé administratif d'entreprise,Non,M,ETMAN,Karim,02/09/1972,Non +33,Gironde,11,11ème circonscription,3,142,F,GOGUET,Caroline,24/01/1982,ECO,Ouvrier non qualifié de type industriel,Non,M,BOMPARD,Pierre,24/07/1953,Non +33,Gironde,11,11ème circonscription,4,52,F,CHALOPIN,Caroline,01/09/1977,REC,Profession libérale,Non,F,AUDINETTE,Marine,26/08/1999,Non +33,Gironde,11,11ème circonscription,5,118,M,NOURY,Bastien,19/12/1996,RDG,Ouvrier agricole,Non,M,BAILLEUX,Steven,10/03/1996,Non +33,Gironde,11,11ème circonscription,6,63,M,PUYJALON,Eddie,07/09/1959,DVD,Ancien cadre,Non,F,ROBIN,Christine,26/07/1959,Non +33,Gironde,11,11ème circonscription,7,44,M,GRANGÉ,Bruno,26/04/1961,DSV,Ancien cadre,Non,F,GEFFROY,Nathalie,29/11/1974,Non +33,Gironde,11,11ème circonscription,8,92,F,BLATTER,Regine,04/12/1966,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,BOUTIGNY,Nathalie,10/10/1961,Non +33,Gironde,11,11ème circonscription,9,70,F,DIAZ,Edwige,15/10/1987,RN,Cadre administratif et commercial d'entreprise,Non,F,DUMAS,Christine,28/01/1969,Non +33,Gironde,11,11ème circonscription,10,55,M,RENY,Charles,25/11/1976,DIV,Profession libérale,Non,F,ALONSO,Maïté,03/07/1971,Non +33,Gironde,11,11ème circonscription,11,105,F,PICARD,Cecile,30/12/1970,LR,Commerçant et assimilé,Non,M,AVEZARD,Laurent,25/07/1965,Non +33,Gironde,11,11ème circonscription,12,26,F,HAMMERER,Véronique,04/11/1968,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,RAYMOND,Pascal,09/04/1967,Non +33,Gironde,12,12ème circonscription,1,136,M,MARTY,Bruno,10/04/1973,DVG,"Professeur, profession scientifique",Non,F,LATRILLE,Catherine,27/07/1966,Non +33,Gironde,12,12ème circonscription,2,27,M,MERCIER,Bastien,30/04/1988,LR,Agriculteur sur petite exploitation,Non,F,DULONG,"Christiane, Edith",30/05/1957,Non +33,Gironde,12,12ème circonscription,3,28,M,LAVERGNE,Pascal,28/08/1967,ENS,Agriculteur sur moyenne exploitation,Non,F,LAPOUGE,Christelle,16/08/1972,Non +33,Gironde,12,12ème circonscription,4,81,F,JACQUEMIN,Hager,09/12/1981,RN,Cadre administratif et commercial d'entreprise,Non,M,RUEL,Pascal,25/05/1961,Non +33,Gironde,12,12ème circonscription,5,66,M,D'AMECOURT,Yves,09/05/1968,DVD,Agriculteur sur moyenne exploitation,Non,M,FAZEMBAT,Tom,24/07/1997,Non +33,Gironde,12,12ème circonscription,6,10,M,LAVIN,Richard,28/11/1950,DXG,Artisan,Non,M,HUBERT,Jean-Marc,13/04/1955,Non +33,Gironde,12,12ème circonscription,7,12,M,MARQUES,François-Xavier,20/04/1989,REC,Artisan,Non,F,BOYER,Cécile,01/10/1978,Non +33,Gironde,12,12ème circonscription,8,86,F,SILVERIO,Véronique,28/03/1951,ECO,Ancien cadre,Non,F,DELIGNÉ-ROCHAUD,Anne-Laure,18/04/1987,Non +33,Gironde,12,12ème circonscription,9,98,F,FELD,Mathilde,28/04/1969,NUP,Cadre de la fonction publique,Non,M,CHOLLON,Lionel,24/03/1966,Non +33,Gironde,12,12ème circonscription,10,78,F,JACQUELIN,Yunyue,28/08/1970,DSV,Employé civil et agent de service de la fonction publique,Non,M,THEN-GUIRAUT,Thibaud,15/06/1983,Non +34,Hérault,01,1ère circonscription,1,40,M,RIVET-MARTEL,Vincent,26/01/1967,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,QUINTINO,Yvonne,13/01/1950,Non +34,Hérault,01,1ère circonscription,2,117,M,ALZINGRE,Victor,20/11/1999,DSV,"Elève, étudiant",Non,M,BESSIERE,Jean,16/07/1970,Non +34,Hérault,01,1ère circonscription,3,44,F,ROUSSEL,Eva,04/03/1977,REG,Ouvrier agricole,Non,M,GROSCLAUDE,Pèir-Arnaut,29/07/1999,Non +34,Hérault,01,1ère circonscription,4,60,M,MOXIN,Michel,23/01/1958,DVD,Cadre de la fonction publique,Non,F,FIGUEROA,Martine,18/04/1957,Non +34,Hérault,01,1ère circonscription,5,94,F,TROUSSELIER,Sylvie,02/10/1960,DXG,"Professeur, profession scientifique",Non,M,SCHEIN,Didier,18/10/1941,Non +34,Hérault,01,1ère circonscription,6,2,F,LACHIVER,Morgane,16/11/1977,DXG,"Professeur, profession scientifique",Non,M,WEYH,Alain,28/02/1959,Non +34,Hérault,01,1ère circonscription,7,64,M,CHAVEROCHE,Eric,23/04/1964,LR,Commerçant et assimilé,Non,F,KACIMI,Sanaa,22/07/1987,Non +34,Hérault,01,1ère circonscription,8,95,M,DEPRET,Florian,28/08/1982,RDG,Ingénieur et cadre technique d'entreprise,Non,F,KHOUAJA,Samia,19/05/1966,Non +34,Hérault,01,1ère circonscription,9,63,M,COLET,Julien,10/07/1973,NUP,"Professeur, profession scientifique",Non,F,CHAIZE,Emmanuelle,23/09/1983,Non +34,Hérault,01,1ère circonscription,10,79,M,LEBOON,Hugo,18/12/1984,DIV,Profession libérale,Non,M,FOURNIER,Anthony,26/09/1980,Non +34,Hérault,01,1ère circonscription,11,3,F,MIRALLES,Patricia,22/08/1967,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,SOREZ,Philippe,20/05/1961,Non +34,Hérault,01,1ère circonscription,12,33,F,JAMET,France,05/02/1961,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,VINCENT,Stéphane,05/01/1966,Non +34,Hérault,01,1ère circonscription,13,4,M,COURNET,Jean-Philippe,17/03/1969,ECO,"Professeur, profession scientifique",Non,F,LEBON,Amandine,02/09/1980,Non +34,Hérault,01,1ère circonscription,14,36,F,MEDINA,Florence,08/06/1972,REC,Agriculteur sur petite exploitation,Non,M,TRINTIGNANT,Morgan,17/12/1987,Non +34,Hérault,01,1ère circonscription,15,17,M,BOCCADIFUOCO,Patrice,25/09/1954,DVD,Ancien employé,Non,F,ARNOUX,Marie-Claire,25/05/1953,Non +34,Hérault,02,2ème circonscription,1,115,M,BENALI,Mahfoud,24/11/1970,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,ANGIBAUD,Virginie,27/03/1975,Non +34,Hérault,02,2ème circonscription,2,67,F,OZIOL,Nathalie,18/02/1990,NUP,"Professeur, profession scientifique",Non,M,REVOL,René,22/11/1947,Non +34,Hérault,02,2ème circonscription,3,41,F,ZBAIRI,Kadija,18/01/1968,ECO,Profession libérale,Non,M,BARTEMENT,Daniel,28/04/1958,Non +34,Hérault,02,2ème circonscription,4,77,M,ROQUE,Manuel,06/03/1989,DVG,Profession intermédiaire de la santé et du travail social,Non,F,TEBBOUB,Amélia,03/01/2001,Non +34,Hérault,02,2ème circonscription,5,82,M,MICHEL,Didier,06/05/1958,DXG,Ouvrier qualifié de type industriel,Non,M,GIBAUD,Guillaume,14/04/1986,Non +34,Hérault,02,2ème circonscription,6,42,F,BELLAREDJ,Fatima,26/11/1970,DVG,Cadre administratif et commercial d'entreprise,Non,F,MARKOVIC,Jacqueline,19/08/1974,Non +34,Hérault,02,2ème circonscription,7,23,F,RESSIGUIER,Muriel,21/12/1977,DVG,Employé civil et agent de service de la fonction publique,Oui,M,LOFÉ,Dominique,05/11/1959,Non +34,Hérault,02,2ème circonscription,8,83,M,DALMAU,Flavio,08/01/2004,DVC,"Elève, étudiant",Non,F,DAVIDIAN,Martine,14/10/1957,Non +34,Hérault,02,2ème circonscription,9,96,M,OLHASQUE,William,03/07/1989,DIV,Ingénieur et cadre technique d'entreprise,Non,M,LE POSTEC,Guillaume,07/06/1993,Non +34,Hérault,02,2ème circonscription,10,59,F,BRIOT,Valérie,26/04/1960,UDI,Profession intermédiaire administrative et commerciale des entreprises,Non,M,VIGNON,Bernard,27/08/1947,Non +34,Hérault,02,2ème circonscription,11,6,F,MANGANO,Flavia,05/12/1989,RN,Employé civil et agent de service de la fonction publique,Non,M,FREDERIKSEN,Alex,29/09/1988,Non +34,Hérault,02,2ème circonscription,12,65,M,ASSIÉ,Frédéric,02/06/1973,DVG,"Professeur, profession scientifique",Non,F,CAUSSE,Mathilde,28/01/1999,Non +34,Hérault,02,2ème circonscription,13,66,F,BRISSAUD,Anne,26/06/1977,DVC,Profession libérale,Non,F,SCALABRINI,Charlotte,25/04/1993,Non +34,Hérault,02,2ème circonscription,14,84,F,YAGUE,Annie,06/12/1954,ENS,Commerçant et assimilé,Non,M,DELOGU,Quentin,30/08/1996,Non +34,Hérault,02,2ème circonscription,15,78,F,DEFRETIN,Sophie,01/08/1976,REC,Technicien,Non,M,MENDES,Christophe,24/11/1982,Non +34,Hérault,02,2ème circonscription,16,86,M,LECHAT,Philippe,25/03/1948,ECO,Ancien cadre,Non,F,LECHAT,Dominique,28/08/1958,Non +34,Hérault,03,3ème circonscription,1,69,M,BERGEON,Jean Luc,25/04/1962,DVG,Cadre administratif et commercial d'entreprise,Non,F,MAUREL,Ginette,08/04/1950,Non +34,Hérault,03,3ème circonscription,2,85,M,CARABASSE,Denis,21/09/1961,ECO,Profession libérale,Non,F,GOMEZ,Hélène,08/04/1973,Non +34,Hérault,03,3ème circonscription,3,18,M,LAURON,Nicolas,09/12/1986,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,HERAN,Florentin,27/09/1992,Non +34,Hérault,03,3ème circonscription,4,68,F,MIGNACCA,Julia,04/02/1986,NUP,Cadre administratif et commercial d'entreprise,Non,M,CORVAISIER,Richard,17/11/1974,Non +34,Hérault,03,3ème circonscription,5,81,M,GACHON,Serge,30/10/1945,DXG,Ancienne profession intermédiaire,Non,M,SCOTTO DI FASANO,Georges,18/10/1953,Non +34,Hérault,03,3ème circonscription,6,38,F,CRISTOL,Laurence,08/11/1967,ENS,"Professeur, profession scientifique",Non,M,MOYNIER,Arnaud,23/12/1979,Non +34,Hérault,03,3ème circonscription,7,97,M,BERTHET,Alain,21/08/1959,LR,Profession libérale,Non,F,GALABRUN BOULBES,Jackie,08/12/1956,Non +34,Hérault,03,3ème circonscription,8,118,M,SAUREL,Philippe,17/12/1957,DVG,Profession intermédiaire de la santé et du travail social,Non,F,SCHWARTZ,Josy,26/05/1947,Non +34,Hérault,03,3ème circonscription,9,22,F,MAUREL,Johana,16/05/1972,RN,Profession libérale,Non,F,TROISE,Lauriane,24/03/1980,Non +34,Hérault,03,3ème circonscription,10,98,M,BOUDAUD-ANDUAGA,Alexis,13/12/1977,ECO,Profession libérale,Non,F,BOUALLAGA,Sabria,28/12/1980,Non +34,Hérault,03,3ème circonscription,11,27,M,COMBET,Laurian,25/10/1978,DIV,Profession intermédiaire administrative de la fonction publique,Non,F,BACH,Magali,19/10/1983,Non +34,Hérault,04,4ème circonscription,1,108,M,LE ROMAIN,Pierre,20/09/1956,DIV,Ancien cadre,Non,M,LE GAULOIS,Bruno,12/12/1967,Non +34,Hérault,04,4ème circonscription,2,50,M,ARGUEL,Alexandre,01/01/1997,REC,"Elève, étudiant",Non,F,SAINTPIERRE,Christelle,23/06/1971,Non +34,Hérault,04,4ème circonscription,3,14,F,LARUE,Florence,18/07/1965,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,DE CLERCQ,Ronan,30/11/1982,Non +34,Hérault,04,4ème circonscription,4,16,M,DUCAMP,Roger,02/01/1960,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,F,GRAIA,Rose,18/09/1969,Non +34,Hérault,04,4ème circonscription,5,46,M,CASSARINI,Stéphane,09/03/1978,ECO,"Professeur, profession scientifique",Non,F,WELDON,Oonagh,28/11/1947,Non +34,Hérault,04,4ème circonscription,6,99,M,FLEURY,Jean-Noël,11/12/1966,DVD,"Ancien artisan, commerçant, chef d'entreprise",Non,M,QUINTA,Arnaud,21/04/1993,Non +34,Hérault,04,4ème circonscription,7,29,F,PÉRÉA,Julie,27/01/1980,DVG,Commerçant et assimilé,Non,M,MARTELLI,Carmelo,20/09/1964,Non +34,Hérault,04,4ème circonscription,8,28,M,GARCIA,Michel,24/02/1973,DVD,Agriculteur sur moyenne exploitation,Non,F,MAJUREL-CAPELLI,Laure,08/06/1972,Non +34,Hérault,04,4ème circonscription,9,52,M,ELIAOU,Jean-François,13/08/1956,ENS,"Professeur, profession scientifique",Oui,F,ESTRADA CALUEBA,Lysiane,14/05/1972,Non +34,Hérault,04,4ème circonscription,10,15,M,ROME,Sébastien,12/10/1978,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,BORRAS,Caroline,11/07/1970,Non +34,Hérault,04,4ème circonscription,11,70,M,PUGENS,Jean-Pierre,07/06/1952,RDG,Ancien cadre,Non,F,IMBERT,Audrey,27/09/1978,Non +34,Hérault,04,4ème circonscription,12,5,M,BASTIDE D'IZARD,Pierre,03/02/1969,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,BOUVIER,Josette,01/05/1956,Non +34,Hérault,04,4ème circonscription,13,62,M,FRANCIS,Joseph,01/06/1956,UDI,Chef d'entreprise de 10 salariés ou plus,Non,M,CATANIA,Stéphane,08/06/1972,Non +34,Hérault,04,4ème circonscription,14,26,M,GIAI GIANETTO,Sébastien,19/08/1989,ECO,Commerçant et assimilé,Non,F,GRILLO,Florence,21/01/1961,Non +34,Hérault,04,4ème circonscription,15,25,F,BOUQUIN,Manon,02/06/1992,RN,Cadre de la fonction publique,Non,M,CAUVIN,Dylan,13/07/1995,Non +34,Hérault,05,5ème circonscription,1,21,F,MARQUET,Régine,10/05/1958,DSV,Ancien cadre,Non,F,MORCILLO,Elisabeth,25/02/1975,Non +34,Hérault,05,5ème circonscription,2,20,M,POLARD,Pierre,16/10/1971,NUP,Profession libérale,Non,F,LEBRE,Laurie,23/07/1983,Non +34,Hérault,05,5ème circonscription,3,35,F,BEDU,Marie,21/09/1958,ECO,Employé civil et agent de service de la fonction publique,Non,F,COTTEAUX,Christelle,07/08/1981,Non +34,Hérault,05,5ème circonscription,4,100,M,ROUANET,William,06/02/1975,ECO,Profession libérale,Non,F,LAPEYRE,Lisa,29/05/2002,Non +34,Hérault,05,5ème circonscription,5,8,F,CHESNARD,Véronique,30/03/1961,DXG,Ancienne profession intermédiaire,Non,F,ARAYA,Antonieta,02/06/1962,Non +34,Hérault,05,5ème circonscription,6,57,M,MANENC,Aurélien,03/05/1977,RDG,Cadre de la fonction publique,Non,F,PONS,Marie-Pierre,12/06/1961,Non +34,Hérault,05,5ème circonscription,7,37,M,HUPPÉ,Philippe,12/02/1968,ENS,Ingénieur et cadre technique d'entreprise,Oui,F,FLORES,Lisa,25/04/1996,Non +34,Hérault,05,5ème circonscription,8,109,F,VIALA,Céline,26/04/1979,ECO,Profession libérale,Non,F,FARID,Hinem,09/09/1975,Non +34,Hérault,05,5ème circonscription,9,101,M,VINUESA,Richard,27/01/1968,REC,Chauffeur,Non,M,HÉRAIL,David,09/03/1976,Non +34,Hérault,05,5ème circonscription,10,7,M,MARCHAND,Lewis,01/10/1985,LR,Employé civil et agent de service de la fonction publique,Non,F,PUCHADES,Bouchra,01/06/1982,Non +34,Hérault,05,5ème circonscription,11,87,F,GALZY,Stéphanie,21/10/1981,RN,Employé administratif d'entreprise,Non,M,MULA,Bernard,08/12/1952,Non +34,Hérault,05,5ème circonscription,12,116,M,SALVAING,Charles,23/11/1989,DVD,Profession libérale,Non,M,VENTURA,Olivier,16/08/1967,Non +34,Hérault,06,6ème circonscription,1,103,F,TAILLADE,Florence,28/02/1955,LR,Ancien cadre,Non,F,RAYSSEGUIE,Anne-Marie,14/04/1957,Non +34,Hérault,06,6ème circonscription,2,102,F,NOEL,Isabelle,02/11/1968,DSV,Employé de commerce,Non,M,HOUARI,Jamel,17/10/1956,Non +34,Hérault,06,6ème circonscription,3,88,F,FERRAND,Sylvie,11/10/1955,ECO,"Professeur, profession scientifique",Non,F,BRY,Catherine,02/05/1964,Non +34,Hérault,06,6ème circonscription,4,47,F,BERNARDI,Samantha,23/09/2000,ECO,"Elève, étudiant",Non,F,ROUSSEAU,Isabelle,02/04/1973,Non +34,Hérault,06,6ème circonscription,5,72,F,TASTAVY,Mathilde,23/07/1990,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,AURIOL,Bernard,29/01/1953,Non +34,Hérault,06,6ème circonscription,6,89,F,CROZIER-DANIEL,Magali,10/01/1972,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,SUREAU,Marc,25/04/1957,Non +34,Hérault,06,6ème circonscription,7,71,F,BRUTUS,Florence,23/08/1966,RDG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,GUIBBERT,Jean François,17/04/1954,Non +34,Hérault,06,6ème circonscription,8,104,M,GILHODES,Laurent,11/08/1972,DXG,"Professeur, profession scientifique",Non,M,MÉLANO,Philippe,06/11/1958,Non +34,Hérault,06,6ème circonscription,9,92,M,KARGES,Stéphane,30/09/1971,DIV,Ingénieur et cadre technique d'entreprise,Non,M,LOPEZ,Matthieu,28/05/1986,Non +34,Hérault,06,6ème circonscription,10,48,M,FABRE-LUCE,Henri,04/05/1954,REC,Agriculteur sur petite exploitation,Non,M,MANOGIL,Franck,07/12/1982,Non +34,Hérault,06,6ème circonscription,11,58,M,ESSOMBA,Oscar,05/12/1974,DVD,"Professeur des écoles, instituteur et assimilé",Non,F,TISSOT,Harmonie,06/04/1988,Non +34,Hérault,06,6ème circonscription,12,112,F,ROSSARD,Solène,02/07/1986,ECO,Cadre administratif et commercial d'entreprise,Non,F,LESSIEUX,Loren,11/06/1996,Non +34,Hérault,06,6ème circonscription,13,53,F,MÉNARD,Emmanuelle,15/08/1968,DVD,"Profession de l'information, des arts et des spectacles",Oui,M,VIDAL,Jérémie,28/02/1998,Non +34,Hérault,07,7ème circonscription,1,73,F,GARCIN-SAUDO,Julie,13/08/1977,DVG,Profession libérale,Non,M,LABATUT,Arthur,29/03/1999,Non +34,Hérault,07,7ème circonscription,2,10,M,LOPEZ LIGUORI,Aurélien,17/05/1993,RN,Cadre de la fonction publique,Non,F,VARESANO,Fabienne,28/11/1972,Non +34,Hérault,07,7ème circonscription,3,74,F,RICHAUD,Magali,22/08/1984,ECO,Profession libérale,Non,F,WORTHAM,Lucie,15/05/1992,Non +34,Hérault,07,7ème circonscription,4,11,M,MICHEL,Yves,18/05/1963,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,AUTHIÉ,Blandine,13/01/1956,Non +34,Hérault,07,7ème circonscription,5,30,F,GONZALES,Jacqueline,30/11/1953,DXG,Ancienne profession intermédiaire,Non,M,VISSEQ,Alain,12/01/1946,Non +34,Hérault,07,7ème circonscription,6,61,M,BLASCO,Gabriel,16/09/1986,NUP,Cadre administratif et commercial d'entreprise,Non,F,CORDIER,Florence,07/05/1967,Non +34,Hérault,07,7ème circonscription,7,9,M,PILAUDEAU,Daniel,15/07/1952,DXG,Ancien employé,Non,F,FOUCHET,Jennifer,17/11/1985,Non +34,Hérault,07,7ème circonscription,8,43,M,SULTANI,Guillaume,09/03/1999,ECO,"Elève, étudiant",Non,F,CALMES,Josiane,01/11/1957,Non +34,Hérault,07,7ème circonscription,9,91,F,CAVAILLÉ,Audrey,05/01/1973,REC,Cadre de la fonction publique,Non,M,CONDAT,Jacques,25/01/1953,Non +34,Hérault,07,7ème circonscription,10,39,M,GALLERAND,Georges,24/02/1967,DSV,Commerçant et assimilé,Non,F,PARENT,Isabelle,05/06/1954,Non +34,Hérault,07,7ème circonscription,11,12,M,EUZET,Christophe,02/04/1967,ENS,"Professeur, profession scientifique",Oui,M,LAUDE,Éric,15/12/1981,Non +34,Hérault,08,8ème circonscription,1,90,F,LEFEUVRE-ROUMANOS,Nathalie,19/01/1976,LR,Profession libérale,Non,F,GUIRAL-RUNTZ,Sophie,11/02/1981,Non +34,Hérault,08,8ème circonscription,2,106,M,ROGER,Jean-Baptiste,12/04/1992,ECO,Cadre administratif et commercial d'entreprise,Non,F,SEGUI,Mailis,01/08/1994,Non +34,Hérault,08,8ème circonscription,3,13,F,BRITTO,Marie-France,18/05/1962,DVD,Commerçant et assimilé,Non,M,AUSSEL,Bernard,03/01/1956,Non +34,Hérault,08,8ème circonscription,4,24,F,VIALLARD,Colette,26/01/1947,DSV,Ancien employé,Non,M,MANCINI,Paul,22/11/1963,Non +34,Hérault,08,8ème circonscription,5,31,M,DELAPIERRE,Cédric,01/02/1976,RN,Cadre administratif et commercial d'entreprise,Non,M,RONGIER,Olivier,07/07/1966,Non +34,Hérault,08,8ème circonscription,6,55,F,CESARI,Elsa,24/01/1996,ECO,Ingénieur et cadre technique d'entreprise,Non,F,CESARI,Sylvie,15/08/1958,Non +34,Hérault,08,8ème circonscription,7,54,M,CARRIERE,Sylvain,21/05/1991,NUP,Employé de commerce,Non,F,JAMPY,Livia,22/02/2001,Non +34,Hérault,08,8ème circonscription,8,75,M,AUDRIN,Jean-François,19/10/1964,ENS,Profession libérale,Non,F,VARO,Danièle,18/10/1960,Non +34,Hérault,08,8ème circonscription,9,105,M,SYLVESTRE,Franck,25/10/1968,REC,Profession libérale,Non,M,GATTUSO,Gérald,19/06/1983,Non +34,Hérault,08,8ème circonscription,10,107,M,ANDRIEU,Olivier,28/05/1965,DVG,Profession libérale,Non,F,SAYAD,Naïma,06/02/1969,Non +34,Hérault,08,8ème circonscription,11,110,M,THIRY,Stanislas,11/12/1974,DVC,Profession libérale,Non,F,VIDALENCHE,Patricia,21/08/1974,Non +34,Hérault,08,8ème circonscription,12,19,M,GARNIER,Thomas,26/05/1983,DXG,Employé administratif d'entreprise,Non,F,MOURIEZ,Sophie,09/12/1955,Non +34,Hérault,09,9ème circonscription,1,51,F,MOUKRIM,Jamila,10/12/1968,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BOZIO,Jean-Yves,07/07/1951,Non +34,Hérault,09,9ème circonscription,2,32,F,BOUISSET,Maya,22/09/2000,REC,"Elève, étudiant",Non,M,BELTRAN,Pierre,28/03/1961,Non +34,Hérault,09,9ème circonscription,3,45,M,BORT,Frédéric,21/11/1977,RN,Agriculteur sur moyenne exploitation,Non,M,PARMENTIER,Gilles,05/05/1993,Non +34,Hérault,09,9ème circonscription,4,56,M,VIGNAL,Patrick,22/01/1958,ENS,Commerçant et assimilé,Oui,F,MOULLIN-TRAFFORT,Patricia,24/01/1966,Non +34,Hérault,09,9ème circonscription,5,114,M,BOUSCARAIN,Jean-François,02/09/1974,LR,Profession intermédiaire de la santé et du travail social,Non,F,POHL,Cathy,29/03/1965,Non +34,Hérault,09,9ème circonscription,6,93,M,CHAYNES,Maurice,25/08/1948,DXG,Ancien cadre,Non,M,MOUALEK,Jean-Claude,28/07/1965,Non +34,Hérault,09,9ème circonscription,7,49,F,BAGUET,Brigitte,07/12/1962,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,ZUCCHETTI,Sandie,24/08/1967,Non +34,Hérault,09,9ème circonscription,8,113,F,LOTTA,Matilda,12/09/2000,ECO,Personnel des services directs aux particuliers,Non,F,SERVEILLE,Marjolaine,07/02/1972,Non +34,Hérault,09,9ème circonscription,9,76,F,GARNIER,Valérie,25/04/1967,ECO,Ingénieur et cadre technique d'entreprise,Non,F,PANIS,Marie-Danielle,27/03/1963,Non +34,Hérault,09,9ème circonscription,10,34,F,BELAOUNI,Nadia,12/02/1978,NUP,Cadre administratif et commercial d'entreprise,Non,M,BRABANT,Matthieu,18/11/1977,Non +35,Ille-et-Vilaine,01,1ère circonscription,1,83,M,GAUMONT,Martin,01/09/1965,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,COUJOU,Marie-Claire,21/02/1974,Non +35,Ille-et-Vilaine,01,1ère circonscription,2,76,M,SIEGWARD,Laurent,23/03/1971,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,M,DELOURME,Yovan,12/05/1975,Non +35,Ille-et-Vilaine,01,1ère circonscription,3,19,M,BAJJOUJ,Khalid,11/11/1982,DIV,Cadre administratif et commercial d'entreprise,Non,F,THOMAS,Christel,18/09/1986,Non +35,Ille-et-Vilaine,01,1ère circonscription,4,79,M,LE MOING,Yannick,14/10/1963,ECO,Profession libérale,Non,F,BROCHARD,Anne-Sophie,16/05/1973,Non +35,Ille-et-Vilaine,01,1ère circonscription,5,81,M,GIRARD,Sébastien,09/09/1970,REG,Employé civil et agent de service de la fonction publique,Non,M,OUVRARD,Damien,30/12/1969,Non +35,Ille-et-Vilaine,01,1ère circonscription,6,50,F,SAOUD,Hind,22/06/1978,ENS,Cadre administratif et commercial d'entreprise,Non,M,MARTINEAU,Thierry,04/10/1964,Non +35,Ille-et-Vilaine,01,1ère circonscription,7,71,F,BOURIEL,Gwenola,10/03/1980,ECO,"Professeur, profession scientifique",Non,F,FILLAUT,Laurence,16/09/1965,Non +35,Ille-et-Vilaine,01,1ère circonscription,8,56,M,BARGUIL,Jean-Bruno,11/06/1963,DVC,Profession intermédiaire de la santé et du travail social,Non,M,FARAÜS,Daniel,29/05/1945,Non +35,Ille-et-Vilaine,01,1ère circonscription,9,87,M,ROULEAU,Gautier,12/09/1995,DSV,Cadre de la fonction publique,Non,M,JACQUEMIN,Yannick,15/08/1964,Non +35,Ille-et-Vilaine,01,1ère circonscription,10,3,F,DESPREZ,Nadine,30/08/1973,RN,Cadre administratif et commercial d'entreprise,Non,M,RUAUD,David,25/06/1969,Non +35,Ille-et-Vilaine,01,1ère circonscription,11,58,M,PRIET,Laurent,10/03/1953,DXG,Ancien employé,Non,F,BIZET,Isabelle,08/01/1957,Non +35,Ille-et-Vilaine,01,1ère circonscription,12,6,F,HAMON,Valérie,01/02/1972,DXG,Ouvrier qualifié de type industriel,Non,M,DEROUÉNÉ,Eric,08/07/1974,Non +35,Ille-et-Vilaine,01,1ère circonscription,13,59,M,MONNIER,Jean-François,29/05/1976,REG,Personnel des services directs aux particuliers,Non,F,BONNIEC,Hélène,27/07/1989,Non +35,Ille-et-Vilaine,01,1ère circonscription,14,46,M,MATHIEU,Frédéric,06/11/1977,NUP,Cadre de la fonction publique,Non,F,LARUE,Jeanne,03/02/1970,Non +35,Ille-et-Vilaine,02,2ème circonscription,1,45,F,LAHOGUE,Mathilde,15/01/1986,REG,Employé civil et agent de service de la fonction publique,Non,M,MARCHAND,Denez,13/05/1964,Non +35,Ille-et-Vilaine,02,2ème circonscription,2,40,F,MAILLART-MÉHAIGNERIE,Laurence,05/04/1967,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,JOURNET,Sébastien,08/02/1975,Non +35,Ille-et-Vilaine,02,2ème circonscription,3,41,M,MARION,Victor,03/12/2001,ECO,"Elève, étudiant",Non,M,GERME,Pierre,23/02/1999,Non +35,Ille-et-Vilaine,02,2ème circonscription,4,25,F,CADIOU,Stéphanie,09/03/1971,RN,"Profession de l'information, des arts et des spectacles",Non,M,RENAULT,Kervann,25/08/1996,Non +35,Ille-et-Vilaine,02,2ème circonscription,5,22,M,JAMBU,Marc-Antoine,05/05/1982,DSV,Cadre administratif et commercial d'entreprise,Non,M,MALARD,Gilles,13/10/1971,Non +35,Ille-et-Vilaine,02,2ème circonscription,6,29,M,CHAROTE,Jean-Pierre,24/07/1966,REC,Ingénieur et cadre technique d'entreprise,Non,M,TALONNEAU,Jean-Marc,02/08/1960,Non +35,Ille-et-Vilaine,02,2ème circonscription,7,27,F,DEFRANCE,Florence,23/12/1965,DXG,Ingénieur et cadre technique d'entreprise,Non,M,GAUDIN,Laurent,19/06/1980,Non +35,Ille-et-Vilaine,02,2ème circonscription,8,90,M,EGRON,Maël,09/05/1997,REG,Technicien,Non,M,SALAÜN,Thierry,12/11/1968,Non +35,Ille-et-Vilaine,02,2ème circonscription,9,42,M,LAHAIS,Tristan,11/05/1983,NUP,Ingénieur et cadre technique d'entreprise,Non,F,ROUILLARD,Soazig,16/04/1979,Non +35,Ille-et-Vilaine,02,2ème circonscription,10,52,F,BEN LAHCEN,Sofia,21/12/1994,DIV,Profession intermédiaire de la santé et du travail social,Non,F,RANI,Kamal,26/12/1981,Non +35,Ille-et-Vilaine,03,3ème circonscription,1,68,M,PLOQUIN,Matthieu,05/04/1977,DVG,Cadre de la fonction publique,Non,M,DUPOIRON,Charles,04/01/1984,Non +35,Ille-et-Vilaine,03,3ème circonscription,2,31,F,PRUNIER,Astrid,22/05/1985,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LEPLATOIS,Alexandre,12/01/1994,Non +35,Ille-et-Vilaine,03,3ème circonscription,3,13,M,MERLIERE,David,09/11/1973,REC,Cadre administratif et commercial d'entreprise,Non,F,RIVOLLIER,Bénédicte,05/09/1975,Non +35,Ille-et-Vilaine,03,3ème circonscription,4,30,F,PARMENTIER,Mélina,16/01/1982,LR,Employé administratif d'entreprise,Non,F,SIMONESSA,Ingrid,13/02/1974,Non +35,Ille-et-Vilaine,03,3ème circonscription,5,70,F,BRETEL,Céline,14/04/1982,ECO,Cadre administratif et commercial d'entreprise,Non,F,CHANTEREAU,Christine,17/03/1968,Non +35,Ille-et-Vilaine,03,3ème circonscription,6,20,M,AMISSE,Jean-Louis,17/08/1961,DXG,Employé administratif d'entreprise,Non,M,GUILLET,Benoît,21/12/1970,Non +35,Ille-et-Vilaine,03,3ème circonscription,7,14,M,FARAH,Karim,17/12/1981,DIV,Chauffeur,Non,F,BENAZIZ,Leila,06/07/1980,Non +35,Ille-et-Vilaine,03,3ème circonscription,8,63,M,GUIHARD,Mathieu,25/03/1975,REG,"Professeur, profession scientifique",Non,M,RADIGUET,Tugdual,20/09/1969,Non +35,Ille-et-Vilaine,03,3ème circonscription,9,24,M,MARTINS,Christophe,17/01/1970,ENS,Cadre de la fonction publique,Non,F,DUGUEPÉROUX-HONORÉ,Béatrice,11/01/1971,Non +35,Ille-et-Vilaine,03,3ème circonscription,10,67,F,ROUAUX,Claudia,13/10/1963,NUP,Ingénieur et cadre technique d'entreprise,Oui,M,SOHIER,Benoît,01/05/1974,Non +35,Ille-et-Vilaine,04,4ème circonscription,1,64,F,HIGNET,Mathilde,10/06/1993,NUP,Ouvrier agricole,Non,M,MARTIN,Marc,02/11/1977,Non +35,Ille-et-Vilaine,04,4ème circonscription,2,91,F,DEVRIENDT,Jocelyne,06/09/1962,REG,Chauffeur,Non,M,MALET,Brice,26/08/1960,Non +35,Ille-et-Vilaine,04,4ème circonscription,3,17,F,OLIVIÉRO,Valérie,22/01/1996,DSV,Profession intermédiaire de la santé et du travail social,Non,M,LE NOUVEL,Jacques,14/02/1958,Non +35,Ille-et-Vilaine,04,4ème circonscription,4,15,M,LOHYN,Christian,05/06/1953,DXG,Ancien cadre,Non,M,TIREL,Alain,19/05/1937,Non +35,Ille-et-Vilaine,04,4ème circonscription,5,9,F,TETAUD,Sarah,04/04/1985,ECO,Commerçant et assimilé,Non,M,DEGRES,François,20/05/1987,Non +35,Ille-et-Vilaine,04,4ème circonscription,6,7,M,ORAIN,Gabriel,20/05/1959,RN,Ancien ouvrier,Non,F,COLIN,Anne-Marie,27/05/1983,Non +35,Ille-et-Vilaine,04,4ème circonscription,7,44,F,PATAULT,Anne,09/05/1955,ENS,Ancien cadre,Non,M,MINIER,Vincent,17/01/1968,Non +35,Ille-et-Vilaine,04,4ème circonscription,8,28,F,CHIRAZI,Sandra,27/05/1977,DXG,Cadre de la fonction publique,Non,M,MOREAU,Régis,12/11/1972,Non +35,Ille-et-Vilaine,04,4ème circonscription,9,23,F,BLEIVAS,Mireille,25/09/1953,REC,Ancien cadre,Non,M,GONY,Jean-Luc,27/01/1953,Non +35,Ille-et-Vilaine,04,4ème circonscription,10,43,M,DESMOULIN,Gil,29/04/1967,DVG,"Professeur, profession scientifique",Non,F,LEBOSSÉ,Béatrice,31/12/1964,Non +35,Ille-et-Vilaine,04,4ème circonscription,11,49,F,BLATERON,Céline,28/07/1981,REG,"Professeur des écoles, instituteur et assimilé",Non,M,SANNER,Jean-Michel,07/11/1960,Non +35,Ille-et-Vilaine,04,4ème circonscription,12,93,M,HAUTIER,Ludovic,25/03/1984,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LOUVIGNY,Raphaël,24/02/2003,Non +35,Ille-et-Vilaine,04,4ème circonscription,13,11,M,FRANÇOIS,Jacques,03/12/1958,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,VAYSSE,Francine,23/01/1956,Non +35,Ille-et-Vilaine,05,5ème circonscription,1,84,M,RENAULT,Gilles,07/02/1982,NUP,"Professeur, profession scientifique",Non,F,FESSELIER,Caroline,20/01/1978,Non +35,Ille-et-Vilaine,05,5ème circonscription,2,96,F,DELINE,Pamela,03/03/1982,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BERTRU,André,31/08/1955,Non +35,Ille-et-Vilaine,05,5ème circonscription,3,38,F,DE BLIC,Marie,27/07/1958,REC,Ancien cadre,Non,M,PAITIER,Antoine,28/11/1989,Non +35,Ille-et-Vilaine,05,5ème circonscription,4,95,M,AUSTERLITZ,Michel,25/01/1951,DVG,Ancien cadre,Non,F,MOREAU,Stéphanie,14/07/1977,Non +35,Ille-et-Vilaine,05,5ème circonscription,5,60,M,HOUILLOT,Jonathan,24/07/1991,LR,Cadre de la fonction publique,Non,M,LÉONARDI,Pierre,26/11/1981,Non +35,Ille-et-Vilaine,05,5ème circonscription,6,98,F,LE NABOUR-CLOAREC,Christine,28/10/1964,ENS,Employé de commerce,Oui,M,REGNIER,Teddy,20/01/1981,Non +35,Ille-et-Vilaine,05,5ème circonscription,7,57,F,GILOIS,Françoise,30/03/1955,RN,Agriculteur sur moyenne exploitation,Non,M,MARESCHI,Jean,22/05/1962,Non +35,Ille-et-Vilaine,05,5ème circonscription,8,35,F,JARNY,Christelle,21/07/1969,DXG,Employé administratif d'entreprise,Non,M,GOUEZIGOUX,Benjamin,01/09/1982,Non +35,Ille-et-Vilaine,05,5ème circonscription,9,66,F,STUBERT,Marion,17/06/1988,ECO,"Professeur des écoles, instituteur et assimilé",Non,M,GENDRON,Grégoire,05/10/2001,Non +35,Ille-et-Vilaine,05,5ème circonscription,10,8,M,BEAURAIN,Denis,15/04/1954,DSV,Ancien cadre,Non,M,MINTER,Serge,12/04/1952,Non +35,Ille-et-Vilaine,06,6ème circonscription,1,69,F,MOCQUARD,Hélène,17/11/1968,NUP,Cadre administratif et commercial d'entreprise,Non,M,MARCHAND,Vincent,14/06/1968,Non +35,Ille-et-Vilaine,06,6ème circonscription,2,73,F,FLOCH,Nolwenn,10/07/1972,DIV,"Professeur, profession scientifique",Non,M,GERFAULT,Benoît,04/02/1979,Non +35,Ille-et-Vilaine,06,6ème circonscription,3,55,M,BENOIT,Thierry,13/09/1966,ENS,Commerçant et assimilé,Oui,M,DEWASMES,Pascal,06/06/1966,Non +35,Ille-et-Vilaine,06,6ème circonscription,4,16,M,AUBRÉE,Adrien,05/06/2003,ECO,"Elève, étudiant",Non,F,CORRE,Cécile,05/04/1985,Non +35,Ille-et-Vilaine,06,6ème circonscription,5,65,F,MURGEANU,Maricela,02/03/1969,REG,Cadre de la fonction publique,Non,M,PIETTE,Patrice,05/10/1960,Non +35,Ille-et-Vilaine,06,6ème circonscription,6,75,M,MARION,Tangi,22/09/1984,LR,Cadre administratif et commercial d'entreprise,Non,F,PETIT-DEQUEKER,Florence,21/11/1973,Non +35,Ille-et-Vilaine,06,6ème circonscription,7,10,F,BECHADERGUE,Emilie,01/02/1996,REC,Employé de commerce,Non,M,LE BOULAIRE,Cédric,08/12/1992,Non +35,Ille-et-Vilaine,06,6ème circonscription,8,26,M,PENNELLE,Gilles,20/07/1962,RN,Cadre de la fonction publique,Non,F,D'ORSANNE,Virginie,29/11/1969,Non +35,Ille-et-Vilaine,06,6ème circonscription,9,34,M,HUBERT,Ludovic,19/10/1970,DXG,"Professeur, profession scientifique",Non,M,BAZIN,Jacques,14/04/1959,Non +35,Ille-et-Vilaine,06,6ème circonscription,10,94,F,ANDRÉ,Dominique,12/04/1968,DSV,Employé administratif d'entreprise,Non,M,DENIS,Marc,06/09/1973,Non +35,Ille-et-Vilaine,07,7ème circonscription,1,77,M,BEN LAHCEN,Ismaïl,23/12/1986,DIV,Cadre administratif et commercial d'entreprise,Non,F,BEN MOHAMED,Soumia,13/07/1989,Non +35,Ille-et-Vilaine,07,7ème circonscription,2,5,F,ROSENSTECH,Leïla,29/11/1978,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,FAUQUENOT,Marie-Françoise,18/04/1960,Non +35,Ille-et-Vilaine,07,7ème circonscription,3,37,M,BOURGEAUX,Jean-Luc,10/04/1963,LR,Agriculteur sur petite exploitation,Oui,M,LURTON,Gilles,06/07/1963,Non +35,Ille-et-Vilaine,07,7ème circonscription,4,101,M,PÉAN,Stéphane,19/04/1971,DIV,Profession libérale,Non,F,MAGUER,Armelle,08/12/1967,Non +35,Ille-et-Vilaine,07,7ème circonscription,5,62,M,DELCOURT,Julien,11/09/1973,DIV,Ingénieur et cadre technique d'entreprise,Non,M,CHARBONNEL,Hoel,16/08/1985,Non +35,Ille-et-Vilaine,07,7ème circonscription,6,85,M,FICHET,Christophe,05/04/1974,DVC,Profession libérale,Non,F,LASILIER CHAUFAUX,Géraldine,09/05/1975,Non +35,Ille-et-Vilaine,07,7ème circonscription,7,88,M,KUCZYK,Raoul,21/09/1966,DIV,Cadre de la fonction publique,Non,M,DAHIER,Didier,05/01/1966,Non +35,Ille-et-Vilaine,07,7ème circonscription,8,92,M,GRUENAIS,Étienne,11/03/1993,REG,Employé civil et agent de service de la fonction publique,Non,M,LETOFFE,Emmanuel,06/05/1976,Non +35,Ille-et-Vilaine,07,7ème circonscription,9,2,F,LE GAGNE,Anne,04/08/1969,ENS,Cadre de la fonction publique,Non,M,VOYER,Bruno,23/05/1967,Non +35,Ille-et-Vilaine,07,7ème circonscription,10,4,M,GUIVARC'H,Nicolas,21/11/1964,NUP,"Professeur, profession scientifique",Non,F,COSSALTER,Céline,24/05/1976,Non +35,Ille-et-Vilaine,07,7ème circonscription,11,86,F,BÉQUIGNON,Claude,01/11/1949,DSV,Ancien employé,Non,M,NAUDIN,Tristan,27/09/2001,Non +35,Ille-et-Vilaine,07,7ème circonscription,12,36,M,LEMOINE,Dylan,28/08/1998,RN,Policier et militaire,Non,M,CAZAL,Olivier,30/04/1958,Non +35,Ille-et-Vilaine,07,7ème circonscription,13,80,F,DRELON,Marie-Thérèse,25/07/1955,ECO,Commerçant et assimilé,Non,M,COURTÈS,Philippe,28/10/1949,Non +35,Ille-et-Vilaine,07,7ème circonscription,14,51,M,GROISIER,Jean-Michel,01/02/1958,DXG,Ancien employé,Non,F,BAROUTI,Éliane,04/06/1951,Non +35,Ille-et-Vilaine,07,7ème circonscription,15,48,F,LECLERCQ,Eliane,14/03/1956,REG,Ancienne profession intermédiaire,Non,M,ALLÉE,Pierre,03/08/1979,Non +35,Ille-et-Vilaine,07,7ème circonscription,16,39,M,DESCOTTES,Edouard,07/10/1964,DXG,"Professeur, profession scientifique",Non,F,DESHAYES,Catherine,12/05/1963,Non +35,Ille-et-Vilaine,07,7ème circonscription,17,99,F,FERRIAULT,Nelly,01/06/1972,DIV,Artisan,Non,M,LARRIEU,Christophe,28/02/1973,Non +35,Ille-et-Vilaine,08,8ème circonscription,1,18,M,LLAVORI,Rodolphe,13/06/1975,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,BRICQUIR,Stéphanie,22/03/1974,Non +35,Ille-et-Vilaine,08,8ème circonscription,2,53,M,BOULOUX,Mickaël,16/08/1972,NUP,Ingénieur et cadre technique d'entreprise,Non,F,DUCAMIN,Marie,11/08/1967,Non +35,Ille-et-Vilaine,08,8ème circonscription,3,21,M,LUCAS,Fabrice,27/01/1966,DXG,Technicien,Non,F,LEDERLÉ,Catherine,09/06/1961,Non +35,Ille-et-Vilaine,08,8ème circonscription,4,33,M,NICOLAS,Jean-Pierre,11/08/1958,DSV,"Professeur, profession scientifique",Non,M,CORNEC,Stéphane,14/02/1975,Non +35,Ille-et-Vilaine,08,8ème circonscription,5,72,M,ALLIX,Sébastien,22/11/1994,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CAILLARD,Benjamin,20/10/1994,Non +35,Ille-et-Vilaine,08,8ème circonscription,6,12,M,BARBIÉ DE PRÉAUDEAU,Régis,15/12/1958,REC,Commerçant et assimilé,Non,F,DUSAUSOY,Quitterie,03/09/1988,Non +35,Ille-et-Vilaine,08,8ème circonscription,7,97,F,DOLU,Karol,05/08/1991,REG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,LE GARLANTEZEC,Erwan,24/06/1968,Non +35,Ille-et-Vilaine,08,8ème circonscription,8,103,M,LEROUX,Marvin,12/01/1991,DXG,Employé civil et agent de service de la fonction publique,Non,M,LEMAU,Briac,23/06/1974,Non +35,Ille-et-Vilaine,08,8ème circonscription,9,78,M,GOMEZ,Guillaume,11/03/1983,ECO,Employé civil et agent de service de la fonction publique,Non,F,TEXIER,Béatrice,19/04/1968,Non +35,Ille-et-Vilaine,08,8ème circonscription,10,100,M,TOURNADE,Maël,17/05/2000,LR,"Elève, étudiant",Non,F,RUDMAN-CHAIEB,Annissa,31/07/1996,Non +35,Ille-et-Vilaine,08,8ème circonscription,11,102,M,ELAHIAR,Kamel,24/03/1971,DIV,Chauffeur,Non,F,BENAMZA,Hajira,20/02/1982,Non +35,Ille-et-Vilaine,08,8ème circonscription,12,47,M,LE GALL,Joël,12/08/1954,REG,Ancien cadre,Non,F,SOHIER,Ana,16/05/1982,Non +35,Ille-et-Vilaine,08,8ème circonscription,13,82,M,BACHELIER,Florian,05/04/1979,ENS,Profession libérale,Oui,F,COTTEREAU,Valérie,16/09/1972,Non +35,Ille-et-Vilaine,08,8ème circonscription,14,74,F,LOOTEN,Marianne,03/01/1986,RN,Personnel des services directs aux particuliers,Non,M,ANGUÉ,Sébastien,31/12/1982,Non +36,Indre,01,1ère circonscription,1,3,F,FELDER,Sandrine,30/08/1970,REC,Profession intermédiaire administrative de la fonction publique,Non,M,GIRARD,Guillaume,08/11/1995,Non +36,Indre,01,1ère circonscription,2,9,F,GÉLINAUD,Véronique,19/03/1958,DXG,Ancienne profession intermédiaire,Non,F,MILON,Elisabeth,18/11/1949,Non +36,Indre,01,1ère circonscription,3,8,F,GONZALEZ,Éloïse,12/11/1979,NUP,"Professeur, profession scientifique",Non,F,DUMANS,Amélie,16/07/1992,Non +36,Indre,01,1ère circonscription,4,18,F,GIBAULT,Claudine,21/12/1959,DVD,"Ancien artisan, commerçant, chef d'entreprise",Non,M,WIERZBICKI,Romain,02/12/1999,Non +36,Indre,01,1ère circonscription,5,12,M,JOLIVET,François,21/03/1966,ENS,Ancien cadre,Oui,M,BARBIER,Robinson,23/02/1995,Non +36,Indre,01,1ère circonscription,6,14,F,FRUCHON,Alix,14/10/1994,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,BONDOUX,Christel,23/01/1973,Non +36,Indre,01,1ère circonscription,7,11,F,WUNSCH,Mylène,18/09/1958,RN,Ancien cadre,Non,M,CANTALUPI,Jean-Pierre,13/10/1952,Non +36,Indre,01,1ère circonscription,8,6,F,BOISSOU,Camélia,07/05/1989,ECO,Employé de commerce,Non,M,DUVAL,Aymeric,23/08/1983,Non +36,Indre,02,2ème circonscription,1,7,M,PÉROUX,Jean Michel,01/04/1958,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,GUIBERT,Stéphane,12/08/1966,Non +36,Indre,02,2ème circonscription,2,15,M,CASH,Roland,08/12/1960,ECO,Ingénieur et cadre technique d'entreprise,Non,F,MOULIN,Evelyne,10/08/1959,Non +36,Indre,02,2ème circonscription,3,4,M,COMPAIN,Aymeric,04/07/1990,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GRELET,Stéphanie,11/06/1973,Non +36,Indre,02,2ème circonscription,4,5,M,MERCIER,Damien,13/12/1950,DXG,Profession intermédiaire de la santé et du travail social,Non,F,DOISEAU,Nathalie,08/04/1971,Non +36,Indre,02,2ème circonscription,5,17,F,BERTHAULT-KORZHYK,Annie,16/02/1952,DSV,Ancien cadre,Non,M,FEFF-TROUVÉ,Maximilien,20/12/1987,Non +36,Indre,02,2ème circonscription,6,16,F,BOTTON,Alexandra,16/07/1989,DVD,Cadre administratif et commercial d'entreprise,Non,M,PERRAUD,Frédéric,15/09/1980,Non +36,Indre,02,2ème circonscription,7,10,M,THIRION,Fabien,01/07/1998,RN,Ouvrier qualifié de type artisanal,Non,F,ROPARS,Claire,11/07/1992,Non +36,Indre,02,2ème circonscription,8,13,F,GUERIN,Sophie,01/10/1964,ENS,Cadre administratif et commercial d'entreprise,Non,F,RENAUDAT-PASQUIER,Emmanuelle,08/12/1969,Non +36,Indre,02,2ème circonscription,9,2,M,FORISSIER,Nicolas,17/02/1961,LR,Profession intermédiaire administrative et commerciale des entreprises,Oui,M,LESEC,Nicolas,15/05/1989,Non +37,Indre-et-Loire,01,1ère circonscription,1,5,M,DUCAMP,François,12/09/2000,RN,Employé civil et agent de service de la fonction publique,Non,M,BÉJEAU,Lionel,02/11/1950,Non +37,Indre-et-Loire,01,1ère circonscription,2,21,M,LEBRETON,Olivier,09/09/1973,LR,"Professeur des écoles, instituteur et assimilé",Non,F,DARNET MALAQUIN,Barbara,05/04/1971,Non +37,Indre-et-Loire,01,1ère circonscription,3,12,M,CHALUMEAU,Philippe,08/11/1963,ENS,Profession libérale,Oui,F,OUDRY,Céline,22/03/1970,Non +37,Indre-et-Loire,01,1ère circonscription,4,32,M,ROUZIER,Bertrand,15/10/1969,ECO,Cadre administratif et commercial d'entreprise,Non,F,METREAU,Affiwa,21/01/1983,Non +37,Indre-et-Loire,01,1ère circonscription,5,4,M,JOUHANNAUD,Thomas,21/12/1976,DXG,"Professeur, profession scientifique",Non,F,NEVEU,Marie-Claude,13/04/1956,Non +37,Indre-et-Loire,01,1ère circonscription,6,43,F,DE LANOUVELLE,Sophie,09/01/1965,REC,Cadre administratif et commercial d'entreprise,Non,M,LALLEMENT,Rémi,05/10/1994,Non +37,Indre-et-Loire,01,1ère circonscription,7,23,M,FOURNIER,Charles,10/03/1968,NUP,Cadre administratif et commercial d'entreprise,Non,F,QUINTON,Marie,09/03/1986,Non +37,Indre-et-Loire,01,1ère circonscription,8,18,F,MOREAU,Stéphanie,23/03/1972,ECO,Cadre administratif et commercial d'entreprise,Non,M,LEITAO,Gabriel,20/05/1975,Non +37,Indre-et-Loire,01,1ère circonscription,9,36,F,LAURENT,Inès,04/11/1999,DVC,"Elève, étudiant",Non,M,GIRARDIN,Raphaël,31/10/1999,Non +37,Indre-et-Loire,02,2ème circonscription,1,2,M,LABARONNE,Daniel,16/07/1955,ENS,Ancien cadre,Oui,F,LELANDAIS,Laure,16/06/1955,Non +37,Indre-et-Loire,02,2ème circonscription,2,24,F,GOBERT,Christelle,07/05/1983,NUP,Employé administratif d'entreprise,Non,M,PINON,Vincent,30/03/1954,Non +37,Indre-et-Loire,02,2ème circonscription,3,44,F,DELAHAYE,Angélique,22/02/1963,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,JACOB,Stéphane,22/02/1970,Non +37,Indre-et-Loire,02,2ème circonscription,4,46,M,GUESTAULT,Christophe,16/03/1966,RN,Agriculteur sur moyenne exploitation,Non,M,TAUGOURDEAU,Steven,24/04/1995,Non +37,Indre-et-Loire,02,2ème circonscription,5,14,M,DAILLET,Dominique,15/05/1964,REC,Ingénieur et cadre technique d'entreprise,Non,F,RODET,Anaïs,23/08/1987,Non +37,Indre-et-Loire,02,2ème circonscription,6,3,F,BRUNET,Anne,13/05/1967,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,GUILLOT,Patrick,04/05/1964,Non +37,Indre-et-Loire,02,2ème circonscription,7,45,M,LANNOY,Christophe,22/07/1961,ECO,Ouvrier non qualifié de type industriel,Non,M,DUGEAY,Yannick,22/08/1964,Non +37,Indre-et-Loire,02,2ème circonscription,8,33,F,NICOLAEFF,Svetlana,03/09/1982,LR,"Professeur des écoles, instituteur et assimilé",Non,M,DUVEAUX,Christophe,27/09/1972,Non +37,Indre-et-Loire,03,3ème circonscription,1,7,F,PROTIN,Irène,02/06/1962,RN,Ancienne profession intermédiaire,Non,F,NALLET,Marie,14/06/1953,Non +37,Indre-et-Loire,03,3ème circonscription,2,6,M,LEGENDRE,Christophe,19/01/1967,DXG,Employé civil et agent de service de la fonction publique,Non,M,DEGUET,Michel,11/02/1952,Non +37,Indre-et-Loire,03,3ème circonscription,3,27,F,MÉTADIER,Sophie,26/04/1961,UDI,Profession libérale,Oui,M,LAMY,Michel,06/04/1981,Non +37,Indre-et-Loire,03,3ème circonscription,4,40,F,SCHULTZ,Naima,13/05/1976,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CONTE,Philippe,26/06/1966,Non +37,Indre-et-Loire,03,3ème circonscription,5,31,F,LOIRE,Maria,21/07/1949,ECO,Ancienne profession intermédiaire,Non,F,HAGE,Marie-Pierre,21/08/1960,Non +37,Indre-et-Loire,03,3ème circonscription,6,9,F,PATTE,Sylvie,22/03/1963,REC,Commerçant et assimilé,Non,M,BOURIN,Xavier,24/09/1977,Non +37,Indre-et-Loire,03,3ème circonscription,7,19,F,SIRVEN,Roxane,10/12/1968,NUP,Technicien,Non,M,DANIAU,Sylvain,20/09/1985,Non +37,Indre-et-Loire,03,3ème circonscription,8,22,M,ALFANDARI,Henri,02/10/1979,ENS,"Ancien artisan, commerçant, chef d'entreprise",Non,F,DEBRÉ-CHAFFAUD,Claire,03/04/1974,Non +37,Indre-et-Loire,03,3ème circonscription,9,42,F,LECHEVALIER,Morgane,21/01/2004,DIV,"Elève, étudiant",Non,M,VIDAL,Lilian,03/08/1998,Non +37,Indre-et-Loire,03,3ème circonscription,10,8,F,DELORE,Claire,01/08/1955,DXG,Profession intermédiaire de la santé et du travail social,Non,M,ETESSE,Patrick,28/05/1955,Non +37,Indre-et-Loire,04,4ème circonscription,1,26,F,DEFORGE,Caroline,13/10/1969,ECO,Profession libérale,Non,M,BERTREL,Alexandre,13/02/1973,Non +37,Indre-et-Loire,04,4ème circonscription,2,30,M,CHAMBERS,Francis,15/09/1986,DIV,Cadre de la fonction publique,Non,M,PARISIS,Louis,25/09/1994,Non +37,Indre-et-Loire,04,4ème circonscription,3,20,M,BAUMEL,Laurent,13/08/1965,NUP,Cadre de la fonction publique,Non,F,CAVELIER,Gaëlle,28/09/1974,Non +37,Indre-et-Loire,04,4ème circonscription,4,25,M,BELLANGER,Jean-François,07/01/1968,RN,"Professeur, profession scientifique",Non,M,FERNANDES,Philippe,12/10/1966,Non +37,Indre-et-Loire,04,4ème circonscription,5,17,M,MASSET,Jacques,04/04/1991,ECO,Profession intermédiaire de la santé et du travail social,Non,F,GAVIN,Fanny,23/09/1986,Non +37,Indre-et-Loire,04,4ème circonscription,6,34,F,BEN LAHCEN,Nesrine,11/12/1983,DIV,"Professeur des écoles, instituteur et assimilé",Non,M,UMAR,Hassan,23/11/1980,Non +37,Indre-et-Loire,04,4ème circonscription,7,28,M,DE LA FERTÉ,Olivier,31/03/1966,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,FERRAND,Véronique,22/10/1964,Non +37,Indre-et-Loire,04,4ème circonscription,8,10,M,GARDEAU,Kévin,18/05/1987,DXG,Employé civil et agent de service de la fonction publique,Non,M,PRODHOMME,Jean-Jacques,17/09/1953,Non +37,Indre-et-Loire,04,4ème circonscription,9,13,F,COLBOC,Fabienne,09/08/1971,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,GAURIER,Sylvia,14/02/1972,Non +37,Indre-et-Loire,04,4ème circonscription,10,39,F,LAGRÉE,Sophie,01/08/1983,LR,"Professeur des écoles, instituteur et assimilé",Non,M,BRAULT,Christian,04/09/1947,Non +37,Indre-et-Loire,05,5ème circonscription,1,15,F,DELARUE,Christine,04/03/1964,DXG,Employé civil et agent de service de la fonction publique,Non,M,CHERBLANC,Etienne,18/02/1953,Non +37,Indre-et-Loire,05,5ème circonscription,2,41,M,GIRARDIN,Charles,19/08/1967,ECO,Ingénieur et cadre technique d'entreprise,Non,F,BARDET,Ninon,24/09/1980,Non +37,Indre-et-Loire,05,5ème circonscription,3,29,M,BOIGARD,Fabrice,29/08/1956,LR,Ancien cadre,Non,F,CARRÉ,Chrystel,10/08/1973,Non +37,Indre-et-Loire,05,5ème circonscription,4,11,M,JULIEN,Bruno,05/11/1965,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,FOUCAULT,Claudie,09/01/1949,Non +37,Indre-et-Loire,05,5ème circonscription,5,35,M,COUSIN HAMELAL,Émilien,08/10/1983,ECO,Ingénieur et cadre technique d'entreprise,Non,F,DAUMAIN,Ludivine,11/08/1987,Non +37,Indre-et-Loire,05,5ème circonscription,6,37,F,THILLAYE,Sabine,18/05/1959,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,M,PIRES,Abel,10/08/1966,Non +37,Indre-et-Loire,05,5ème circonscription,7,47,M,MARTINEZ,Patrick,28/05/1977,DVD,"Professeur des écoles, instituteur et assimilé",Non,M,GUILLEMOT,Johanny,02/11/1986,Non +37,Indre-et-Loire,05,5ème circonscription,8,38,F,DESMARES LANGLADE,Françoise Jeanne Renée,13/07/1950,NUP,Ouvrier qualifié de type industriel,Non,M,GABILLÉ,Cléante,31/05/1998,Non +37,Indre-et-Loire,05,5ème circonscription,9,16,F,LOUISIN,Ambre,02/06/1999,RN,"Elève, étudiant",Non,M,LOZANO,Joseph,31/01/1996,Non +38,Isère,01,1ère circonscription,1,4,M,ADAM,Rémi,23/12/1966,DXG,"Professeur, profession scientifique",Non,F,PIRES,Ana Maria,20/02/1958,Non +38,Isère,01,1ère circonscription,2,91,M,VÉRAN,Olivier,22/04/1980,ENS,Cadre de la fonction publique,Non,F,HUGUES,Servane,28/06/1976,Non +38,Isère,01,1ère circonscription,3,95,F,MEYRIEUX,Aurore,03/12/1992,RN,Employé administratif d'entreprise,Non,M,CHENEVAS-PAULE,Valentin,30/06/2000,Non +38,Isère,01,1ère circonscription,4,85,M,PERIER,François-Marie,10/12/1969,ECO,"Profession de l'information, des arts et des spectacles",Non,F,PEREZ,Kathy,05/09/1973,Non +38,Isère,01,1ère circonscription,5,25,F,PIGNATARO,Agnese,10/06/1976,ECO,"Professeur, profession scientifique",Non,F,CARA-ELETTO,Laurence,20/01/1970,Non +38,Isère,01,1ère circonscription,6,24,F,CHIABERTO,Marine,11/02/1987,REC,Cadre administratif et commercial d'entreprise,Non,M,LACROIX,Alexandre,06/12/1989,Non +38,Isère,01,1ère circonscription,7,46,F,BOER,Brigitte,10/05/1958,LR,"Professeur des écoles, instituteur et assimilé",Non,M,YTOURNEL,Maximin,24/11/2003,Non +38,Isère,01,1ère circonscription,8,60,M,LAFEUILLE,Bruno,05/02/1946,DSV,Ancien cadre,Non,F,ANDRIGHETTO,France,24/01/1952,Non +38,Isère,01,1ère circonscription,9,31,F,ROBIN,Salomé,05/03/2003,NUP,"Elève, étudiant",Non,M,HEYSCH,Joseph,09/06/1985,Non +38,Isère,02,2ème circonscription,1,69,F,CHATELAIN,Cyrielle,15/07/1987,NUP,Cadre de la fonction publique,Non,M,ROSA,Alban,31/01/1979,Non +38,Isère,02,2ème circonscription,2,56,M,MANOUKIAN,Grégory,24/11/1953,ECO,Ancien employé,Non,F,MOSER,Sandrine,23/10/1972,Non +38,Isère,02,2ème circonscription,3,49,F,BURGAZ,Muriel,09/11/1961,REC,Commerçant et assimilé,Non,M,DEFAITE,Jean-Jacques,07/06/1961,Non +38,Isère,02,2ème circonscription,4,68,M,MORAND,Maxence,30/04/1996,REG,Profession libérale,Non,M,RICHARD,Baptiste,30/07/1988,Non +38,Isère,02,2ème circonscription,5,99,F,CONDAT,Carole,19/02/1972,DVG,Cadre de la fonction publique,Non,M,SERGENT,Claude,22/01/1944,Non +38,Isère,02,2ème circonscription,6,59,M,GAFSI,Mohamed,02/04/1970,ECO,Commerçant et assimilé,Non,M,SAURA,David,01/08/1988,Non +38,Isère,02,2ème circonscription,7,88,M,RUBES,Jérôme,20/10/1990,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,KDOUH,Diana,15/05/1985,Non +38,Isère,02,2ème circonscription,8,3,F,GOMEZ,Chantal,18/04/1956,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,BLONDEL,Jean-Pierre,26/12/1959,Non +38,Isère,02,2ème circonscription,9,77,M,COLAS-ROY,Jean-Charles,02/05/1978,ENS,Ingénieur et cadre technique d'entreprise,Oui,F,GUERS,Gwenaëlle,27/08/1981,Non +38,Isère,02,2ème circonscription,10,86,F,BAILLY,Clhoé,28/03/1995,RN,Profession libérale,Non,F,ROCHET,Danièle,17/06/1952,Non +38,Isère,02,2ème circonscription,11,17,F,SARRAT,Fabienne,27/12/1966,LR,Profession intermédiaire administrative de la fonction publique,Non,M,MALDONADO,Philippe,16/01/1957,Non +38,Isère,02,2ème circonscription,12,26,M,OLIVIER,David,11/03/1956,ECO,Ancien cadre,Non,F,FALLON,Vanessa,15/02/1981,Non +38,Isère,03,3ème circonscription,1,2,F,BRUN,Catherine,18/11/1957,DXG,"Professeur, profession scientifique",Non,M,SAVIGNAC,Jérôme,06/09/1974,Non +38,Isère,03,3ème circonscription,2,65,F,MARTIN,Élisa,15/05/1972,NUP,"Professeur, profession scientifique",Non,M,DUTRONCY,Jérôme,27/07/1984,Non +38,Isère,03,3ème circonscription,3,67,F,KRIEF,Sandra,23/07/1972,ECO,Ingénieur et cadre technique d'entreprise,Non,M,MURILLON,Florent,26/09/1975,Non +38,Isère,03,3ème circonscription,4,33,M,CHAPPET,Clément,10/11/1996,LR,Cadre de la fonction publique,Non,F,GOURGAND,Mylène,16/07/1987,Non +38,Isère,03,3ème circonscription,5,21,F,TIVOLLE,Lucie,20/09/1994,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,SLOTWINSKI,Cyril,09/04/2002,Non +38,Isère,03,3ème circonscription,6,78,F,JIMENEZ DEBEZE,Isabelle,27/11/1970,ECO,"Professeur, profession scientifique",Non,F,GUÉRY,Audrey,08/01/1976,Non +38,Isère,03,3ème circonscription,7,15,M,EDWIGE,Romain,28/02/1966,DXG,Employé civil et agent de service de la fonction publique,Non,F,CLOAREC,Danielle,13/12/1948,Non +38,Isère,03,3ème circonscription,8,72,F,CHALAS,Emilie,18/10/1977,ENS,Cadre de la fonction publique,Oui,M,ROUX,Denis,21/04/1965,Non +38,Isère,03,3ème circonscription,9,70,F,DUPRÉ,Christel,13/09/1970,RN,Cadre administratif et commercial d'entreprise,Non,M,VIRETTE,Jean-Louis,08/09/1959,Non +38,Isère,03,3ème circonscription,10,51,M,GEMMANI,Stéphane,20/02/1971,ECO,Chauffeur,Non,F,BELAKHOVSKY,Marie,06/07/1965,Non +38,Isère,04,4ème circonscription,1,74,F,LACROIX,Fanny,24/04/1985,ENS,Cadre de la fonction publique,Non,M,FERRUCCI,Loïck,19/01/1997,Non +38,Isère,04,4ème circonscription,2,90,M,JEULIN,Quentin,20/07/1995,DSV,Cadre administratif et commercial d'entreprise,Non,F,MOREAU,Brigitte,29/10/1957,Non +38,Isère,04,4ème circonscription,3,11,M,GERIN-MOMBRUN,Yves,07/01/1954,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,MONTARGÈS,Christiane,22/09/1943,Non +38,Isère,04,4ème circonscription,4,57,F,BATTISTEL,Marie-Noëlle,20/08/1956,NUP,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,M,LISSY,Guillaume,25/11/1978,Non +38,Isère,04,4ème circonscription,5,30,F,OLIVIER,Isabelle,13/05/1964,REC,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,LINIÈRES,Véronique,08/11/1962,Non +38,Isère,04,4ème circonscription,6,45,M,KRAEMER,Michaël,08/06/1977,DVD,Ingénieur et cadre technique d'entreprise,Non,F,GONAY,Yasmine,04/02/1971,Non +38,Isère,04,4ème circonscription,7,23,M,GUYOT,Olivier,12/05/1959,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,F,CASTRYCK,Brigitte,22/10/1943,Non +38,Isère,04,4ème circonscription,8,84,F,HIREL,Josiane,07/11/1945,ECO,Employé de commerce,Non,F,LAURENT,Jeannine,24/04/1932,Non +38,Isère,04,4ème circonscription,9,14,M,ZIEGLER,Jean-Alain,29/05/1964,DXG,Employé civil et agent de service de la fonction publique,Non,F,DUPERRON,Véronique,17/03/1966,Non +38,Isère,05,5ème circonscription,1,39,F,KOLMAKOVA,Anna,30/11/1976,DSV,Profession intermédiaire administrative de la fonction publique,Non,M,GARRIGOS,Philippe,25/11/1963,Non +38,Isère,05,5ème circonscription,2,43,M,FERES,Quentin,26/02/1993,REC,"Professeur, profession scientifique",Non,F,DI PASQUALE,Corinne,15/12/1963,Non +38,Isère,05,5ème circonscription,3,55,M,ROSSET,Frédéric,11/06/1979,ECO,Chauffeur,Non,M,ROSSET,Christophe,25/09/1975,Non +38,Isère,05,5ème circonscription,4,34,M,IORDANOFF,Jérémie,02/02/1983,NUP,"Profession de l'information, des arts et des spectacles",Non,F,QUESTIAUX,Marie,14/12/1981,Non +38,Isère,05,5ème circonscription,5,54,F,LEAL,Fabienne-Claire,27/04/1962,ECO,Personnel des services directs aux particuliers,Non,F,SCHAUB,Céline,30/04/1972,Non +38,Isère,05,5ème circonscription,6,8,F,LECROQ,Françoise,13/07/1949,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,LO MONACO,Dominique,09/03/1960,Non +38,Isère,05,5ème circonscription,7,35,M,SANTANA,Jérôme,28/05/1987,RN,Employé de commerce,Non,M,DUBOIS,Enzo,29/11/2001,Non +38,Isère,05,5ème circonscription,8,66,F,HELLER,Nathalie,01/04/1997,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,WEBER,Sonia,30/03/1964,Non +38,Isère,05,5ème circonscription,9,5,F,TULIPE,Christine,12/02/1963,DXG,"Professeur, profession scientifique",Non,M,MOTTAIS,Christian,08/02/1962,Non +38,Isère,05,5ème circonscription,10,97,M,VERGEZ,Frédéric,20/01/1966,DVG,Commerçant et assimilé,Non,F,LANNOY,Françoise,10/03/1955,Non +38,Isère,05,5ème circonscription,11,73,F,JAY,Florence,24/05/1970,ENS,Employé administratif d'entreprise,Non,M,MONTAGNAT,Ylan,06/07/1999,Non +38,Isère,06,6ème circonscription,1,12,F,GOMEZ,Denise,25/06/1957,DXG,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,CHANUT,Bernard,04/11/1981,Non +38,Isère,06,6ème circonscription,2,92,F,HOLTZ,Sylvie,30/06/1955,DSV,Profession intermédiaire de la santé et du travail social,Non,M,DALLONGEVILLE,Christian,01/03/1946,Non +38,Isère,06,6ème circonscription,3,48,F,MERLE,Annick,13/06/1964,LR,Cadre administratif et commercial d'entreprise,Non,F,PEJU,Nathalie,25/10/1972,Non +38,Isère,06,6ème circonscription,4,32,M,JOLLY,Alexis,22/12/1990,RN,Commerçant et assimilé,Non,F,SALOMON,Frédérique,24/05/1953,Non +38,Isère,06,6ème circonscription,5,82,F,MOTIN,Cendra,29/01/1975,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,M,DROGOZ,Alexandre,01/05/1976,Non +38,Isère,06,6ème circonscription,6,98,M,MAURAD,Elyas,17/12/1989,DVG,Artisan,Non,F,SAADA,Assia,31/07/1993,Non +38,Isère,06,6ème circonscription,7,50,F,JULLIEN,Amélie,04/07/1992,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,CHARLES,Damien,26/03/1985,Non +38,Isère,06,6ème circonscription,8,16,F,FINAS-FILLON,Nicole,19/05/1959,NUP,"Professeur, profession scientifique",Non,M,ANDREO,Denis,31/03/1987,Non +38,Isère,07,7ème circonscription,1,80,M,NEUDER,Yannick,15/03/1969,LR,"Professeur, profession scientifique",Non,F,DEZARNAUD,Sylvie,23/02/1964,Non +38,Isère,07,7ème circonscription,2,38,F,MEILLIER,Estelle,28/10/1979,ECO,Policier et militaire,Non,M,DEKINT,Fabien,21/05/1978,Non +38,Isère,07,7ème circonscription,3,71,F,ROURE,Paulette,23/03/1938,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,PROSEC,Michel,13/08/1956,Non +38,Isère,07,7ème circonscription,4,75,F,PRUVOST,Pascale,03/09/1966,ENS,Profession intermédiaire administrative de la fonction publique,Non,M,FAYANT,Melvin,26/04/2004,Non +38,Isère,07,7ème circonscription,5,19,M,GAGNIEU,Hugo,24/12/1997,REC,Employé administratif d'entreprise,Non,M,PORCHER,Ilias,03/02/1998,Non +38,Isère,07,7ème circonscription,6,40,M,PERRODIN,Bruno,26/11/1957,DXG,Ancien ouvrier,Non,F,BORDES,Lucie,09/10/1984,Non +38,Isère,07,7ème circonscription,7,53,M,MOULIN-COMTE,Alexandre,29/09/1992,RN,Cadre de la fonction publique,Non,M,LEFEVRE,Jean,02/03/1962,Non +38,Isère,07,7ème circonscription,8,96,F,GITTON,Odile,25/02/1981,DIV,"Professeur, profession scientifique",Non,M,FARIN,Thierry,04/05/1961,Non +38,Isère,07,7ème circonscription,9,64,F,DICHARD,Dominique,24/08/1958,NUP,Ancien cadre,Non,M,BROSSELIN,Laurent,08/09/1971,Non +38,Isère,07,7ème circonscription,10,27,M,LILLO,Pietro Roberto,08/03/1994,DVG,Employé de commerce,Non,F,GIRARD,Priscillia,07/04/1985,Non +38,Isère,08,8ème circonscription,1,41,M,LACAILLE,Jacques,20/01/1951,DXG,Ancien employé,Non,M,LIARDET,Léonard,05/06/1996,Non +38,Isère,08,8ème circonscription,2,13,M,AUGUSTE,Benoit,15/02/1980,RN,"Professeur des écoles, instituteur et assimilé",Non,M,ROBERT,Edouard,08/01/1976,Non +38,Isère,08,8ème circonscription,3,10,M,LASSALLE,Jean-Claude,10/04/1960,LR,Ancien cadre,Non,M,KOVACS,Thierry,29/01/1969,Non +38,Isère,08,8ème circonscription,4,37,M,DUFOUR,Eloïc,01/03/1990,ECO,Policier et militaire,Non,F,ROMEYER,Fabienne,14/04/1979,Non +38,Isère,08,8ème circonscription,5,52,M,MONNIER,Thibaut,24/02/1987,REC,Commerçant et assimilé,Non,M,RUBAGOTTI,Adrien,07/02/1989,Non +38,Isère,08,8ème circonscription,6,42,M,DOGON,Quentin,14/01/1987,NUP,"Professeur, profession scientifique",Non,F,CASEY,Cécile,22/11/1976,Non +38,Isère,08,8ème circonscription,7,83,M,GOUJON,Jean-Louis,27/10/1957,DSV,Ancienne profession intermédiaire,Non,F,MAZZILLI,Patricia,09/03/1963,Non +38,Isère,08,8ème circonscription,8,79,F,ABADIE,Caroline,07/09/1976,ENS,Commerçant et assimilé,Oui,M,VIALLATTE,Régis,16/05/1957,Non +38,Isère,09,9ème circonscription,1,94,M,GATTAZ,Bruno,05/09/1952,LR,Ancien cadre,Non,M,GERMAIN,Mathieu,18/05/1997,Non +38,Isère,09,9ème circonscription,2,76,F,JACQUIER-LAFORGE,Elodie,15/04/1978,ENS,Cadre administratif et commercial d'entreprise,Oui,M,BALESTAS,Jean-Yves,14/02/1956,Non +38,Isère,09,9ème circonscription,3,29,F,SEROR,Sandrine,26/02/1970,REC,Employé civil et agent de service de la fonction publique,Non,M,ANDRIEU,Jean-Baptiste,16/01/1997,Non +38,Isère,09,9ème circonscription,4,44,F,NOSBÉ,Sandrine,29/10/1972,NUP,Cadre administratif et commercial d'entreprise,Non,M,FERRARIS,Christian,03/07/1954,Non +38,Isère,09,9ème circonscription,5,36,F,BÈNE,Cécile,08/06/1979,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,GAUDINEAU,Sylvain,12/06/1955,Non +38,Isère,09,9ème circonscription,6,100,F,ROSEMBERG,Odile,03/08/1949,DSV,Ancien employé,Non,M,LANCIAN,David,05/07/1977,Non +38,Isère,09,9ème circonscription,7,47,F,TADDEI,Anaëlle,02/12/1989,ECO,Ingénieur et cadre technique d'entreprise,Non,F,LOMMER,Catherine,01/02/1952,Non +38,Isère,09,9ème circonscription,8,6,F,DETROYAT,Claude,22/07/1958,DXG,Technicien,Non,F,DUNAND,Martine,28/07/1960,Non +38,Isère,09,9ème circonscription,9,93,M,ROURE,Guillaume,17/04/1982,REG,Profession libérale,Non,M,DESSENOIX,Fabrice,25/04/1989,Non +38,Isère,10,10ème circonscription,1,63,M,BRUNON,Allan,24/06/1999,NUP,"Elève, étudiant",Non,F,RICHOL,Joëlle,07/02/1981,Non +38,Isère,10,10ème circonscription,2,87,F,JAMMOT SCHWANDER,Elodie,13/07/1982,DVG,Cadre de la fonction publique,Non,M,MAYETTE,Bertho,04/03/1983,Non +38,Isère,10,10ème circonscription,3,20,F,MERINO,Estelle,04/06/1974,ECO,Employé civil et agent de service de la fonction publique,Non,F,AZANCOT,Jennifer,20/06/1975,Non +38,Isère,10,10ème circonscription,4,61,M,LEPRETRE,Aurélien,01/10/1984,LR,Cadre de la fonction publique,Non,F,PERENET,Lise-Marie,20/05/1996,Non +38,Isère,10,10ème circonscription,5,28,M,ZOUAGHA,Mounir,26/05/1964,DVG,Employé de commerce,Non,F,OMEIR,Nassera,10/12/1962,Non +38,Isère,10,10ème circonscription,6,58,M,LEVIAUX,Pierre,08/04/1981,DVG,"Professeur, profession scientifique",Non,F,MARTIN,Myriam,05/06/1977,Non +38,Isère,10,10ème circonscription,7,18,M,BLANCHON,Stéphane,13/08/1974,REC,Cadre de la fonction publique,Non,M,MARMONIER,Antoine,29/01/2003,Non +38,Isère,10,10ème circonscription,8,81,F,MEYNIER-MILLEFERT,Marjolaine,30/09/1982,ENS,Commerçant et assimilé,Oui,M,MICHAUD,Thomas,25/10/1972,Non +38,Isère,10,10ème circonscription,9,7,F,DUPONT,Ariane,28/08/1992,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,DUPONT,Geoffrey,24/09/1991,Non +38,Isère,10,10ème circonscription,10,62,F,HULARD,Amélie,23/07/1986,REG,Profession libérale,Non,M,HULARD,Stéphane,18/10/1986,Non +38,Isère,10,10ème circonscription,11,9,F,GERMAIN,Nathalie,28/07/1966,RN,Artisan,Non,M,PEPIN,Laurent,29/09/1983,Non +38,Isère,10,10ème circonscription,12,89,M,COMPAGNON,Serge,05/01/1976,DSV,Profession libérale,Non,F,DUCORNET,Alice,26/08/1979,Non +38,Isère,10,10ème circonscription,13,22,M,BORDES,Clément,07/11/1985,DXG,"Professeur, profession scientifique",Non,F,NICOLLET,Fabienne,13/11/1970,Non +39,Jura,01,1ère circonscription,1,3,M,MARRAUD DES GROTTES,Benjamin,23/07/1978,LR,Profession libérale,Non,F,VERBEECK,Véronique,30/07/1967,Non +39,Jura,01,1ère circonscription,2,11,F,BRULEBOIS,Danielle,04/07/1947,ENS,Ancienne profession intermédiaire,Oui,M,FISCHER,Michel,16/05/1963,Non +39,Jura,01,1ère circonscription,3,13,M,BRONDEL,Anthony,24/09/1989,NUP,"Profession de l'information, des arts et des spectacles",Non,F,OUTHIER,Rachel,15/02/1984,Non +39,Jura,01,1ère circonscription,4,16,M,BOUHALI,Thomas,04/07/1991,RN,Ouvrier qualifié de type industriel,Non,M,MAGDELAINE,Martial,13/07/1981,Non +39,Jura,01,1ère circonscription,5,9,M,PERRET,Thierry,27/12/1961,REC,Cadre administratif et commercial d'entreprise,Non,M,CRUBELLIER,Yves,01/02/1972,Non +39,Jura,01,1ère circonscription,6,5,F,MOREL,Johanne,21/06/1978,DXG,Employé administratif d'entreprise,Non,M,BERNIZET,Cyrille,01/08/1971,Non +39,Jura,02,2ème circonscription,1,14,F,DALLOZ,Marie-Christine,10/01/1958,LR,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,F,SCHNEIDER,Eloïse,08/05/1987,Non +39,Jura,02,2ème circonscription,2,21,M,LINDA,Jérôme,26/01/1969,DVD,Commerçant et assimilé,Non,M,LABOURIER,Benoît,31/07/1989,Non +39,Jura,02,2ème circonscription,3,12,F,GALLOIS JOBEZ,Delphine,05/03/1971,ENS,Commerçant et assimilé,Non,M,BONDIER,Jean-Robert,02/07/1979,Non +39,Jura,02,2ème circonscription,4,8,F,TERNANT,Evelyne,21/03/1950,NUP,Ancienne profession intermédiaire,Non,M,YALCIN,Nail,20/04/1979,Non +39,Jura,02,2ème circonscription,5,4,F,DESSEIGNE,Nathalie,12/04/1974,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,PORCHEREL,Romain,29/02/1984,Non +39,Jura,02,2ème circonscription,6,10,M,MARCHET,Christian,31/05/1954,DXG,Ancien ouvrier,Non,F,VERNIER,Dominique,03/10/1955,Non +39,Jura,02,2ème circonscription,7,25,M,MARINO,Louis,11/06/2001,DVD,Employé de commerce,Non,F,BATTESTI,Fiona,23/03/2003,Non +39,Jura,02,2ème circonscription,8,18,M,DE KEERSMACKER,Nicolas,12/04/1964,REC,Ancienne profession intermédiaire,Non,M,ROSSET,Joël,26/02/1956,Non +39,Jura,02,2ème circonscription,9,22,F,HOUTHOOFD,Garance,03/03/1995,RN,Employé civil et agent de service de la fonction publique,Non,M,MOSCA,Thierry,25/06/1959,Non +39,Jura,03,3ème circonscription,1,24,F,BLAISE,Nathalie,01/05/1961,REC,Employé de commerce,Non,M,DROUVOT,Valentin,20/03/2003,Non +39,Jura,03,3ème circonscription,2,15,M,PRAT,Hervé,03/05/1965,NUP,"Professeur, profession scientifique",Non,F,BUGADA,Catherine,13/10/1958,Non +39,Jura,03,3ème circonscription,3,19,M,CHAPITAUX,Médéric,27/04/1974,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,LAUBEPIN,Véronique,01/01/1962,Non +39,Jura,03,3ème circonscription,4,2,F,VUILLEMIN-PLANÇON,Aurore,01/02/1989,RN,Profession intermédiaire administrative de la fonction publique,Non,F,GRABY,Valérie,19/02/1969,Non +39,Jura,03,3ème circonscription,5,17,F,PILLOY,Anne,16/06/1961,DSV,Profession intermédiaire de la santé et du travail social,Non,M,POUTHIER,Benoît,21/07/1983,Non +39,Jura,03,3ème circonscription,6,6,F,GRUET,Justine,23/10/1989,LR,Profession libérale,Non,M,FASSENET,Gérome,14/12/1976,Non +39,Jura,03,3ème circonscription,7,20,F,PROST,Anne-Colette,01/01/1958,ENS,Profession libérale,Non,M,GUILLEMIN,Olivier,09/12/1965,Non +39,Jura,03,3ème circonscription,8,23,F,EL MEZOUGHI,Rim,01/05/1974,DVG,Profession libérale,Non,M,RICHARD,Christian,22/04/1957,Non +39,Jura,03,3ème circonscription,9,7,F,REVOY,Dominique,28/01/1955,DXG,Ancienne profession intermédiaire,Non,M,MARECHAL,Jacques,13/08/1946,Non +40,Landes,01,1ère circonscription,1,18,M,CAZAUBON,Sébastien,06/05/1981,DVC,Profession intermédiaire de la santé et du travail social,Non,F,CASTIGLIA,Michèle,23/08/1963,Non +40,Landes,01,1ère circonscription,2,9,M,LARGE,Daniel,06/12/1965,DVG,"Contremaître, agent de maîtrise",Non,M,LEMPERNESSE,Johann,24/05/1989,Non +40,Landes,01,1ère circonscription,3,10,M,DUFAY,Michel,29/04/1950,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,F,GIACALONE,Mélissa,22/10/2001,Non +40,Landes,01,1ère circonscription,4,17,M,MARTIN,Laurent,25/11/1946,DSV,Ancien cadre,Non,M,POURRUT,Jean-Pierre,18/01/1941,Non +40,Landes,01,1ère circonscription,5,11,F,DARRIEUSSECQ,Geneviève,04/03/1956,ENS,Profession libérale,Non,M,LAINÉ,Fabien,15/04/1976,Oui +40,Landes,01,1ère circonscription,6,32,F,HARAMBAT,Marie-Christine,06/08/1963,LR,Cadre de la fonction publique,Non,M,LAGORCE,Thomas,21/08/1997,Non +40,Landes,01,1ère circonscription,7,24,M,DE BARBEYRAC,Guy,01/10/1953,NUP,Ancien cadre,Non,F,COLIGNON,Christiane,28/09/1958,Non +40,Landes,01,1ère circonscription,8,20,M,DAVID,Stéphane,02/11/1958,REC,"Contremaître, agent de maîtrise",Non,M,DELFOSSE,Christian,08/03/1956,Non +40,Landes,01,1ère circonscription,9,23,M,DOBAT,Jwanakan,30/05/1986,ECO,Profession libérale,Non,F,BOISGONTIER,Valentine,19/10/1992,Non +40,Landes,01,1ère circonscription,10,7,M,BON,Jean-Claude,20/07/1959,DXG,Ancien ouvrier,Non,F,CALLOIS,Françoise,25/01/1947,Non +40,Landes,01,1ère circonscription,11,30,M,DUBREUIL,Jean-Jacques,23/10/1954,REG,Artisan,Non,M,GROSCLAUDE,David,14/04/1958,Non +40,Landes,02,2ème circonscription,1,3,M,LAFFONT,Christian,07/05/1966,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,HÉRITIER,Marlène,10/12/1980,Non +40,Landes,02,2ème circonscription,2,12,M,CAUSSE,Lionel,06/05/1971,ENS,Cadre administratif et commercial d'entreprise,Oui,F,DEDIEU,Maeva,04/10/1992,Non +40,Landes,02,2ème circonscription,3,14,F,RIVOIRE,Véronique,15/02/1957,RN,Ancien employé,Non,M,FOSSEY,Michel,14/01/1953,Non +40,Landes,02,2ème circonscription,4,28,F,LECUONA,Dominique,09/10/1957,REG,"Profession de l'information, des arts et des spectacles",Non,M,BARIS,Michel,30/01/1947,Non +40,Landes,02,2ème circonscription,5,15,F,DE BROSSES,Sophie,26/03/1966,DVC,Cadre administratif et commercial d'entreprise,Non,M,DUBURCQ,Joris,12/08/1997,Non +40,Landes,02,2ème circonscription,6,21,M,LESPADE,Jean-Marc,13/09/1966,NUP,Profession intermédiaire administrative de la fonction publique,Non,F,LALANNE,Christelle,17/07/1974,Non +40,Landes,02,2ème circonscription,7,27,M,ETCHOIMBORDE,Jean-Pierre,30/12/1961,DSV,Cadre de la fonction publique,Non,M,RAPIN,Michel,14/03/1951,Non +40,Landes,02,2ème circonscription,8,19,F,LOUBET,Muriel,19/02/1965,REC,Employé de commerce,Non,M,LORZ,Michaël,13/02/1971,Non +40,Landes,02,2ème circonscription,9,5,M,DEMANGEOT,Pascal,23/08/1953,DXG,Technicien,Non,F,JUHEL,Pascale,15/07/1954,Non +40,Landes,02,2ème circonscription,10,2,M,VERNIER,Marc,25/03/1955,LR,"Ancien artisan, commerçant, chef d'entreprise",Non,F,ALBALADEJO,Béatrice,09/10/1971,Non +40,Landes,02,2ème circonscription,11,26,M,HARENG,Jonathan,03/05/1986,ECO,Ingénieur et cadre technique d'entreprise,Non,F,MESPLÉ BELABED,Sylvie,24/01/1974,Non +40,Landes,03,3ème circonscription,1,22,M,VALLAUD,Boris,25/07/1975,NUP,Cadre de la fonction publique,Oui,F,LAILHEUGUE,Anne-Marie,06/11/1975,Non +40,Landes,03,3ème circonscription,2,6,F,VOUTAZ,Carole,25/02/1966,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,LACOSTE,Denis,20/04/1947,Non +40,Landes,03,3ème circonscription,3,25,M,BROQUÈRES,Jean-Francois,21/06/1961,ENS,Cadre de la fonction publique,Non,F,REQUENNA,Pascale,23/05/1972,Non +40,Landes,03,3ème circonscription,4,13,F,FRANCESCHINI,Sylvie,26/07/1979,RN,Personnel des services directs aux particuliers,Non,M,RAFALOVICH,Arthur,02/05/1996,Non +40,Landes,03,3ème circonscription,5,4,M,HURIEZ,Daniel,22/04/1959,DXG,Ancien employé,Non,F,PICANO-NACCI,Magali,05/07/1975,Non +40,Landes,03,3ème circonscription,6,29,M,RICHARD,Matèu,10/08/2000,REG,"Elève, étudiant",Non,M,GERARDIN,Lucas,24/10/1996,Non +40,Landes,03,3ème circonscription,7,8,F,DU BREUIL HELION DE LA GUÉRONNIÈRE,Isabelle,13/06/1969,REC,Profession libérale,Non,M,COPEL,Bernard,26/08/1958,Non +40,Landes,03,3ème circonscription,8,31,F,BERGINIAT,Marion,18/10/1977,LR,Profession libérale,Non,M,LACOUTURE,Bernard,16/02/1950,Non +40,Landes,03,3ème circonscription,9,16,F,LASSORT,Christelle,11/12/1971,DVC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CASTETS,Bernard,24/07/1952,Non +41,Loir-et-Cher,01,1ère circonscription,1,4,M,CHASSIER,Michel,28/11/1948,RN,Ancien cadre,Non,M,PELÉ,Cédric,17/12/1989,Non +41,Loir-et-Cher,01,1ère circonscription,2,25,F,POMI,Fabienne,02/09/1972,ECO,Cadre administratif et commercial d'entreprise,Non,F,DELAPORTE,Corinne,08/09/1958,Non +41,Loir-et-Cher,01,1ère circonscription,3,3,M,MESNAGER,Hervé,20/09/1955,RDG,Ancien cadre,Non,F,CAILLOU-ROBERT,Cécile,03/07/1970,Non +41,Loir-et-Cher,01,1ère circonscription,4,2,M,LOMBARD,Alain,16/11/1950,DXG,Ancienne profession intermédiaire,Non,M,VILA,Michel,06/08/1974,Non +41,Loir-et-Cher,01,1ère circonscription,5,5,M,BENAKCHA,Malik,17/04/1989,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,DUCHALAIS,Alain,19/11/1957,Non +41,Loir-et-Cher,01,1ère circonscription,6,13,M,BELKADI,Reda,24/02/1998,NUP,Ingénieur et cadre technique d'entreprise,Non,F,TRONSON,Estelle,23/04/1974,Non +41,Loir-et-Cher,01,1ère circonscription,7,6,M,MARTIN,Frank,06/09/1966,REC,Cadre de la fonction publique,Non,M,SABRAN,Fabrice,21/11/1967,Non +41,Loir-et-Cher,01,1ère circonscription,8,24,M,FESNEAU,Marc,11/01/1971,ENS,Cadre de la fonction publique,Non,F,DESJONQUÈRES,Mathilde,06/09/1980,Non +41,Loir-et-Cher,01,1ère circonscription,9,22,M,VIEIRA,Gildas,19/09/1974,DIV,Cadre administratif et commercial d'entreprise,Non,F,PINSON-CHAPELLE,Colette,13/02/1951,Non +41,Loir-et-Cher,02,2ème circonscription,1,27,M,PELTIER,Guillaume,27/08/1976,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,GOUBERT,Pascal,09/01/1966,Non +41,Loir-et-Cher,02,2ème circonscription,2,26,F,DRUESNE,Marie-Thérèse,09/12/1949,DVC,Ancien cadre,Non,F,MICHOT,Céline,26/06/1990,Non +41,Loir-et-Cher,02,2ème circonscription,3,8,M,BIOULAC,Pascal,28/09/1967,LR,Ancien agriculteur exploitant,Non,M,SARTORI,Philippe,03/10/1955,Non +41,Loir-et-Cher,02,2ème circonscription,4,14,M,DEMALINE,Jérémie,17/05/1997,NUP,Cadre administratif et commercial d'entreprise,Non,F,DEHMEJ,Touria,15/12/1966,Non +41,Loir-et-Cher,02,2ème circonscription,5,21,M,PINSON,Patrick,11/02/1953,DVC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,BERNARD,Bruno,29/04/1957,Non +41,Loir-et-Cher,02,2ème circonscription,6,7,F,MAIDON,Caroline,16/09/1987,DXG,"Professeur, profession scientifique",Non,F,DI PIETRO,Francesca,21/11/1966,Non +41,Loir-et-Cher,02,2ème circonscription,7,17,M,CHEREAU,François,25/12/1953,DVC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,CAVAILLES MORENO,Alexandra,23/06/1985,Non +41,Loir-et-Cher,02,2ème circonscription,8,20,F,CHAPLAULT,Emmanuelle,09/01/1979,ENS,Profession intermédiaire administrative et commerciale des entreprises,Non,F,SMATEL,Fadhila,02/06/1978,Non +41,Loir-et-Cher,02,2ème circonscription,9,9,M,CHUDEAU,Roger,28/09/1949,RN,Ancien cadre,Non,F,MINOT,Emma,21/02/2001,Non +41,Loir-et-Cher,03,3ème circonscription,1,23,F,KERMAD,Dahbia,28/06/1950,DVC,Ancien employé,Non,M,SCHOEFFRE,Daniel,26/09/1954,Non +41,Loir-et-Cher,03,3ème circonscription,2,16,M,BRINDEAU,Pascal,20/06/1974,UDI,Cadre administratif et commercial d'entreprise,Oui,M,HUGUET,Pascal,21/04/1964,Non +41,Loir-et-Cher,03,3ème circonscription,3,15,F,HUET,Sabrina,25/03/1979,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,FORNELLS,Julien,02/02/1994,Non +41,Loir-et-Cher,03,3ème circonscription,4,10,M,MARION,Christophe,25/04/1973,ENS,Cadre de la fonction publique,Non,F,PELLÉ,Christelle,25/01/1970,Non +41,Loir-et-Cher,03,3ème circonscription,5,28,F,RABRAULT,Isabelle,11/08/1965,DSV,Chauffeur,Non,M,TOURTE,Jean-Claude,08/11/1970,Non +41,Loir-et-Cher,03,3ème circonscription,6,18,M,PETIT,Noé,06/02/2004,NUP,"Elève, étudiant",Non,F,GILLION,Emma,20/06/1996,Non +41,Loir-et-Cher,03,3ème circonscription,7,19,M,DOUMAS,Eric,28/03/1959,DVD,Commerçant et assimilé,Non,F,DIMITRIADES-DESLOGES,Claire,03/09/1952,Non +41,Loir-et-Cher,03,3ème circonscription,8,11,M,LAMY,Claude,02/11/1948,DXG,Ancienne profession intermédiaire,Non,F,FISSEAU,Isabelle,17/10/1977,Non +41,Loir-et-Cher,03,3ème circonscription,9,12,F,BARDET,Marine,26/09/1986,RN,Cadre administratif et commercial d'entreprise,Non,M,BESNARD,Olivier,28/12/1971,Non +42,Loire,01,1ère circonscription,1,41,M,BATAILLON,Quentin,09/09/1993,ENS,Cadre administratif et commercial d'entreprise,Non,F,DURAND,Fabienne,23/01/1973,Non +42,Loire,01,1ère circonscription,2,31,F,FEDINGER,Pascale,26/09/1958,RDG,"Professeur des écoles, instituteur et assimilé",Non,M,FRIEDENBERG,André,11/04/1944,Non +42,Loire,01,1ère circonscription,3,46,M,HARMANCI,Yakup,15/12/1986,DIV,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,LAURENT,Annelise,02/06/1981,Non +42,Loire,01,1ère circonscription,4,45,M,COURBON,Pierrick,08/07/1985,DVG,"Professeur, profession scientifique",Non,M,JUANICO,Régis,05/02/1972,Non +42,Loire,01,1ère circonscription,5,7,M,BROSSARD,Romain,14/04/1977,DXG,"Professeur, profession scientifique",Non,F,IBBARI,Nora,21/05/1965,Non +42,Loire,01,1ère circonscription,6,24,F,DUSSART,Samia,13/11/1974,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,FOURNIER,Robert,10/06/1964,Non +42,Loire,01,1ère circonscription,7,37,F,COPIN,Laetitia,26/05/1972,NUP,Cadre de la fonction publique,Non,M,AKOUCHE,Yannis,22/08/1992,Non +42,Loire,01,1ère circonscription,8,14,F,SIMON,Marie,08/05/1967,RN,Employé de commerce,Non,M,RIEU,Tom,04/07/2002,Non +42,Loire,01,1ère circonscription,9,54,F,COLOMBET,Frédérique,20/10/1963,ECO,Militaire du contingent,Non,M,DOMENECH,Gilles,12/09/1977,Non +42,Loire,01,1ère circonscription,10,38,F,PERRIN-PATURAL,Anne-Audrey,01/11/1975,DVC,Employé civil et agent de service de la fonction publique,Non,M,MICHEL,Geoffroy,15/12/1980,Non +42,Loire,01,1ère circonscription,11,56,F,OSTYN,Alexia,26/03/1995,UDI,Cadre administratif et commercial d'entreprise,Non,M,FERNEX--COMPEYRON,Aubin,04/10/2000,Non +42,Loire,02,2ème circonscription,1,66,M,FONTVIEILLE,Quentin,16/02/1987,DVC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BOGDAN,Gaël,31/08/1980,Non +42,Loire,02,2ème circonscription,2,20,M,JACQUEMARD,David,24/06/1966,ECO,"Professeur, profession scientifique",Non,M,FARGIER,Philippe,16/01/1967,Non +42,Loire,02,2ème circonscription,3,68,F,DOUSPIS,Nathalie,10/08/1969,ECO,Chômeur n'ayant jamais travaillé,Non,M,HAREL,Jean-Francois,05/04/1958,Non +42,Loire,02,2ème circonscription,4,61,F,REY,Marie-Camille,13/08/1987,LR,Profession libérale,Non,M,ORIOL,Daniel,18/08/1954,Non +42,Loire,02,2ème circonscription,5,33,F,BENCHARIF,Zahra,01/05/1973,RDG,Commerçant et assimilé,Non,M,DARSA,Jean,21/12/1942,Non +42,Loire,02,2ème circonscription,6,13,M,SIROT,Bernard,17/04/1964,DXG,Employé civil et agent de service de la fonction publique,Non,F,INSALACO,Elisabeth,13/06/1957,Non +42,Loire,02,2ème circonscription,7,12,M,BREUIL,Hervé,06/06/1954,RN,"Profession de l'information, des arts et des spectacles",Non,F,FERNANDEZ,Mélanie,04/11/1982,Non +42,Loire,02,2ème circonscription,8,27,M,MIS,Jean-Michel,28/07/1967,ENS,Cadre administratif et commercial d'entreprise,Oui,F,VIDAL,Joëlle,02/11/1951,Non +42,Loire,02,2ème circonscription,9,9,F,MOREAU,Francette,28/02/1950,REC,Ancien cadre,Non,M,PERROT,Charles,12/11/1959,Non +42,Loire,02,2ème circonscription,10,47,F,TAURINYA,Andrée,03/06/1963,NUP,"Professeur, profession scientifique",Non,M,DAHMANI,Atmane,13/12/1957,Non +42,Loire,02,2ème circonscription,11,4,F,DIETERICH,Sophie,31/12/1966,DXG,"Professeur, profession scientifique",Non,M,CAYUELA,Hervé,25/11/1969,Non +42,Loire,03,3ème circonscription,1,29,F,LEGLISE,Sandrine,18/06/1979,DSV,Profession libérale,Non,M,PERDRIAU,Nicolas,29/05/1990,Non +42,Loire,03,3ème circonscription,2,8,M,CAILLON,Louis,19/06/1962,DVG,Profession libérale,Non,F,BOUAZIZ,Sadia,08/12/1970,Non +42,Loire,03,3ème circonscription,3,43,M,BONY,Vincent,09/01/1971,NUP,Cadre administratif et commercial d'entreprise,Non,F,GONZALEZ GRAIL,Ramona,13/12/1957,Non +42,Loire,03,3ème circonscription,4,59,F,ASSAOUNE,Mariam,16/09/1983,RDG,Profession intermédiaire de la santé et du travail social,Non,M,FADILI,Tarik,13/03/1976,Non +42,Loire,03,3ème circonscription,5,44,F,SURPLY,Isabelle,25/10/1984,REC,Ancien employé,Non,M,BLANCHON,Christian,12/03/1968,Non +42,Loire,03,3ème circonscription,6,5,F,HUSSEINI,Pauline,16/06/1992,DXG,Employé administratif d'entreprise,Non,M,MOULIN,André,01/01/1949,Non +42,Loire,03,3ème circonscription,7,16,F,LA MARCA,Angelina,03/06/1990,RN,Employé de commerce,Non,M,FOUGERAND,Jean-Luc,15/01/1973,Non +42,Loire,03,3ème circonscription,8,28,F,MARTIN,Catherine,19/02/1973,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,DAILLERE,Manon,16/10/1999,Non +42,Loire,03,3ème circonscription,9,53,M,MANDON,Emmanuel,22/06/1965,ENS,Profession intermédiaire administrative et commerciale des entreprises,Non,M,ROCHEBLOINE,François,31/10/1945,Non +42,Loire,03,3ème circonscription,10,32,F,MOREL,Nina,09/12/1999,DVG,"Elève, étudiant",Non,M,LEHEMBRE,Pierre,14/12/1998,Non +42,Loire,03,3ème circonscription,11,48,M,DUGUA,Axel,21/03/1995,LR,Technicien,Non,F,MARESCAL,Maryline,04/10/1969,Non +42,Loire,03,3ème circonscription,12,67,M,LE JAOUEN,Éric,03/02/1970,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,AGUILAR,Chrystèle,07/10/1972,Non +42,Loire,03,3ème circonscription,13,63,M,BESSON,Pascal,25/11/1961,DVD,Commerçant et assimilé,Non,F,BRANCIER-JACQUIER,M.Claude,19/01/1949,Non +42,Loire,03,3ème circonscription,14,39,M,VIDAL,Alexandre,28/06/2000,DSV,"Elève, étudiant",Non,F,DIEU,Geneviève,18/02/1978,Non +42,Loire,04,4ème circonscription,1,6,M,CUADROS,Sauveur,08/04/1951,DXG,Ancien employé,Non,F,DUMAS,Maryse,09/08/1949,Non +42,Loire,04,4ème circonscription,2,40,F,SEBAN,Shannon,05/01/1996,ENS,Cadre de la fonction publique,Non,M,TISSOT,Jean-Paul,05/04/1958,Non +42,Loire,04,4ème circonscription,3,22,M,VIGOUROUX,Sylvain,21/09/1983,DSV,Ingénieur et cadre technique d'entreprise,Non,M,PIRRERA,Stéphane,14/07/1978,Non +42,Loire,04,4ème circonscription,4,62,M,ROUQUEROL,Jean-Baptiste,24/04/1979,REC,Ingénieur et cadre technique d'entreprise,Non,M,ROCHELEMAGNE,Joseph,15/10/1989,Non +42,Loire,04,4ème circonscription,5,23,M,CINIERI,Dino,09/07/1955,LR,"Ancien artisan, commerçant, chef d'entreprise",Oui,F,BONNET,Sylvie,21/12/1969,Non +42,Loire,04,4ème circonscription,6,57,F,BELMOUDEN,Sana,06/12/1992,RDG,Cadre administratif et commercial d'entreprise,Non,M,REYMOND,Jean-Claude,19/02/1949,Non +42,Loire,04,4ème circonscription,7,11,M,PAEMELAERE,Bernard,10/07/1956,NUP,Profession intermédiaire de la santé et du travail social,Non,F,VELLY,Marie,10/03/1968,Non +42,Loire,04,4ème circonscription,8,17,M,GIBERT,Anthony,11/07/1990,RN,Ouvrier qualifié de type artisanal,Non,M,DUHAUTOIS,Pierre,10/02/1989,Non +42,Loire,04,4ème circonscription,9,21,M,THOMAS,Pascal,22/06/1960,ECO,Profession intermédiaire de la santé et du travail social,Non,F,VIAL,Lola,17/03/2004,Non +42,Loire,04,4ème circonscription,10,25,F,VIDAL,Véronique,07/10/1974,ECO,Commerçant et assimilé,Non,M,MAISTRE-BAZIN,Sylvain,17/01/1975,Non +42,Loire,04,4ème circonscription,11,49,F,BINT ZAYD,Aïcha,29/03/1976,DIV,Artisan,Non,M,OMEÏR,Abdelkrim,01/01/1957,Non +42,Loire,05,5ème circonscription,1,42,F,SARLES,Nathalie,17/04/1962,ENS,Profession intermédiaire de la santé et du travail social,Oui,M,BERTHELIER,Bruno,07/03/1970,Non +42,Loire,05,5ème circonscription,2,51,M,STEVENSON,Ismaël,05/02/1984,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,BOUINEAU,Dominique,23/01/1967,Non +42,Loire,05,5ème circonscription,3,50,M,CHEVRET,Grégory,19/02/1975,ECO,"Professeur des écoles, instituteur et assimilé",Non,M,MIR,Roger,14/05/1959,Non +42,Loire,05,5ème circonscription,4,19,M,PESSOA,Raphaël,10/12/1988,REC,Ouvrier non qualifié de type industriel,Non,M,BAUD,Raphaël,10/03/1997,Non +42,Loire,05,5ème circonscription,5,55,M,VERMOREL-MARQUES,Antoine,17/02/1993,LR,Cadre administratif et commercial d'entreprise,Non,F,FESNOUX,Fanny,23/09/1982,Non +42,Loire,05,5ème circonscription,6,2,M,GRANCHAMP,Philippe,13/07/1961,ECO,Ancien cadre,Non,F,BUTHOD,Florence,07/03/1984,Non +42,Loire,05,5ème circonscription,7,36,M,ESTEVENY,Yann,18/06/1971,DXD,Ingénieur et cadre technique d'entreprise,Non,F,BONNET,Annick,18/05/1956,Non +42,Loire,05,5ème circonscription,8,64,F,EMORINE,Marilyne,29/08/1982,RDG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PACAUD,Christophe,06/08/1979,Non +42,Loire,05,5ème circonscription,9,60,M,CAZOTTES BOSCO,Kevin,18/03/2000,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,F,MELOT,Catherine,01/01/1967,Non +42,Loire,05,5ème circonscription,10,3,F,ROCHE,Édith,23/12/1959,DXG,Profession intermédiaire de la santé et du travail social,Non,M,VIVIER,Alain,19/10/1948,Non +42,Loire,05,5ème circonscription,11,18,F,GRANGER,Sandrine,04/04/1975,RN,Employé administratif d'entreprise,Non,M,LUCAS,Michel,14/08/1949,Non +42,Loire,06,6ème circonscription,1,10,M,PETIOT,Yves,23/10/1955,DXG,Ancien ouvrier,Non,M,VAUMOURIN,Gaëtan,12/06/1990,Non +42,Loire,06,6ème circonscription,2,15,M,GRANGER,Grégoire,21/02/1999,RN,Employé de commerce,Non,F,HEURTIER,Christelle,07/06/1980,Non +42,Loire,06,6ème circonscription,3,58,M,BOROWCZYK,Julien,02/05/1979,ENS,Profession libérale,Oui,F,BENNICI,Céline,30/10/1978,Non +42,Loire,06,6ème circonscription,4,52,F,OLIVE,Marie-Paule,07/09/1951,NUP,"Professeur, profession scientifique",Non,M,JAMON,Lionel,14/08/1972,Non +42,Loire,06,6ème circonscription,5,34,M,TAITE,Jean-Pierre,14/03/1962,LR,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BONNEFOY,Jean-Yves,31/03/1959,Non +42,Loire,06,6ème circonscription,6,30,F,BRIAUT,Catherine,07/12/1968,ECO,Cadre de la fonction publique,Non,F,GENTIL,Muriel,10/02/1975,Non +42,Loire,06,6ème circonscription,7,65,F,ROBINOT,Marie-Belle,16/12/1967,DSV,Employé de commerce,Non,M,PELARDA,Antoine,08/11/1988,Non +42,Loire,06,6ème circonscription,8,26,F,MARCUCCILLI,Jacqueline,11/09/1956,DXG,Ancienne profession intermédiaire,Non,M,MORIANO,Jean-Francois,20/02/1966,Non +42,Loire,06,6ème circonscription,9,35,F,PERROT,Maylis,29/11/1991,REC,"Professeur, profession scientifique",Non,F,ROBERT,Sophie,17/04/1972,Non +43,Haute-Loire,01,1ère circonscription,1,10,M,SAMARD,Dominique,26/01/1969,ECO,Ancien cadre,Non,F,WOZNIAK,Allison,10/09/1982,Non +43,Haute-Loire,01,1ère circonscription,2,20,F,GALLIEN,Cécile,21/07/1971,ENS,Cadre de la fonction publique,Non,M,ÉTÉOCLE,Pierre,25/09/1969,Non +43,Haute-Loire,01,1ère circonscription,3,2,F,VALENTIN,Isabelle,20/01/1962,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,WAUQUIEZ,Laurent,12/04/1975,Non +43,Haute-Loire,01,1ère circonscription,4,6,F,POUMEAU DE LAFFOREST,Emmanuelle,18/01/1969,REC,"Professeur des écoles, instituteur et assimilé",Non,M,CARO,Hugues,13/02/1969,Non +43,Haute-Loire,01,1ère circonscription,5,12,F,FOURETS,Suzanne,06/08/1950,RN,Ancien employé,Non,M,ROULE,Bruno,14/06/1962,Non +43,Haute-Loire,01,1ère circonscription,6,8,F,DRACOS,Electre,22/03/1951,DXG,"Professeur, profession scientifique",Non,M,MICHALLET,Pierre,25/09/1952,Non +43,Haute-Loire,01,1ère circonscription,7,17,F,LEGER-PORTAL,Virginie,09/04/1965,ECO,Employé administratif d'entreprise,Non,F,LARGIER,Carole,30/04/1952,Non +43,Haute-Loire,01,1ère circonscription,8,16,F,GACON,Celline,23/06/1967,NUP,Employé civil et agent de service de la fonction publique,Non,M,MASSARD,Yannis,01/09/1979,Non +43,Haute-Loire,02,2ème circonscription,1,11,M,COCHET,Philippe,20/03/1958,ECO,Artisan,Non,F,NAUDIER,Gisèle,02/05/1954,Non +43,Haute-Loire,02,2ème circonscription,2,13,M,PEREZ,Thierry,19/11/1966,RN,Cadre de la fonction publique,Non,F,ARRIBAGÉ-CASSOU,Catherine,09/01/1952,Non +43,Haute-Loire,02,2ème circonscription,3,15,M,LAFONT,Clément,21/03/1999,REG,Ouvrier qualifié de type industriel,Non,F,MONOT,Chloé,12/10/1999,Non +43,Haute-Loire,02,2ème circonscription,4,21,F,D'AUBIGNAN,Clémence,28/03/1982,REC,Artisan,Non,M,ACHARD,Nathan,26/08/2003,Non +43,Haute-Loire,02,2ème circonscription,5,19,M,CLEMENT,Jean-Philippe,26/12/1977,ECO,Agriculteur sur petite exploitation,Non,F,CHEVILLON,Estelle,14/09/1972,Non +43,Haute-Loire,02,2ème circonscription,6,5,F,SIGAUX,Azelma,10/03/1989,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,M,CARRIÉ,Jullian,06/09/1991,Non +43,Haute-Loire,02,2ème circonscription,7,9,M,VIGIER,Jean-Pierre,22/10/1969,LR,Cadre de la fonction publique,Oui,F,BRINGER,Corinne,21/05/1973,Non +43,Haute-Loire,02,2ème circonscription,8,3,M,CLOEZ,Théophile,24/01/1989,DIV,Technicien,Non,M,PICARD,Jeremy,13/07/1993,Non +43,Haute-Loire,02,2ème circonscription,9,14,M,ALLEGRE,Christian,05/01/1952,ENS,Ancien cadre,Non,M,DO CARMO,Jean-Louis,07/02/1965,Non +43,Haute-Loire,02,2ème circonscription,10,18,F,BARBIER,Corine,22/04/1963,DSV,Profession intermédiaire de la santé et du travail social,Non,F,DUMAS,Sophie,21/07/1977,Non +43,Haute-Loire,02,2ème circonscription,11,7,M,BREBION,Antoine,10/12/1971,DXG,Cadre de la fonction publique,Non,M,FRIDLENDER,Georges,17/05/1940,Non +44,Loire-Atlantique,01,1ère circonscription,1,76,M,LHOMMEAU,Jean-Claude,19/10/1955,DSV,"Professeur, profession scientifique",Non,F,LURSON,Geneviève,03/08/1954,Non +44,Loire-Atlantique,01,1ère circonscription,2,58,M,DAVOZ,Pascal,03/07/1953,ECO,"Profession de l'information, des arts et des spectacles",Non,F,LEHOUX,Géraldine,27/07/1980,Non +44,Loire-Atlantique,01,1ère circonscription,3,109,F,GIREL,Nicole,23/02/1945,ECO,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,ESCOFFIER,Norbert,14/12/1971,Non +44,Loire-Atlantique,01,1ère circonscription,4,41,M,BENBRAHIM,Karim,13/04/1980,NUP,Ingénieur et cadre technique d'entreprise,Non,F,JUDALET,Anne-Sophie,26/01/1966,Non +44,Loire-Atlantique,01,1ère circonscription,5,38,M,BELHAMITI,Mounir,08/03/1985,ENS,Ingénieur et cadre technique d'entreprise,Non,F,CALMONT,Laëtitia,27/06/1981,Non +44,Loire-Atlantique,01,1ère circonscription,6,37,M,PECQUEUR,Bryan,31/08/2001,RN,"Elève, étudiant",Non,M,FOURNIER,Jérémie,12/11/1998,Non +44,Loire-Atlantique,01,1ère circonscription,7,111,M,MENANT,Vincent,02/05/1988,REG,Ingénieur et cadre technique d'entreprise,Non,M,CARRIERE,Kévin,09/07/1987,Non +44,Loire-Atlantique,01,1ère circonscription,8,27,M,PATARD,Nicolas,09/11/1985,ECO,Ouvrier non qualifié de type artisanal,Non,F,POIRIER-BONNAUD,Marion,07/05/1990,Non +44,Loire-Atlantique,01,1ère circonscription,9,74,M,BÉRAUD,Anthony,20/04/1980,LR,Employé civil et agent de service de la fonction publique,Non,M,AUBRY,Frédéric,08/05/1958,Non +44,Loire-Atlantique,01,1ère circonscription,10,10,F,DEFRANCE,Hélène,17/12/1949,DXG,Ancien cadre,Non,M,GUICHARD,Hervé,22/09/1973,Non +44,Loire-Atlantique,01,1ère circonscription,11,83,M,CHRETIEN,Bernard,11/04/1962,DIV,Artisan,Non,M,AIT AARIBA,Rachid,27/10/1975,Non +44,Loire-Atlantique,01,1ère circonscription,12,25,F,GODON,Carol,02/04/1968,REC,Profession libérale,Non,M,LHOMEAU,Vincent,28/07/1991,Non +44,Loire-Atlantique,01,1ère circonscription,13,103,M,TAN,David,16/07/1976,DIV,Artisan,Non,M,OUK,Vanratanak,05/03/1978,Non +44,Loire-Atlantique,02,2ème circonscription,1,86,M,CHOMBART DE LAUWE,Foulques,12/01/1980,LR,Cadre administratif et commercial d'entreprise,Non,F,WEISS,Pauline,13/06/1988,Non +44,Loire-Atlantique,02,2ème circonscription,2,17,M,GASNIER,Nicolas,10/05/1972,RN,Cadre administratif et commercial d'entreprise,Non,F,DUPAL,Sophie,06/08/1973,Non +44,Loire-Atlantique,02,2ème circonscription,3,28,F,OPPELT,Valérie,10/12/1973,ENS,Commerçant et assimilé,Oui,M,BRISSET,Christian,31/10/1955,Non +44,Loire-Atlantique,02,2ème circonscription,4,35,M,KERBRAT,Andy,01/10/1990,NUP,Employé administratif d'entreprise,Non,F,FERRERUELA,Marina,27/05/1969,Non +44,Loire-Atlantique,02,2ème circonscription,5,8,M,BAZILLE,Nicolas,21/09/1975,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,MAHOUDEAU,Aurelie,04/05/1981,Non +44,Loire-Atlantique,02,2ème circonscription,6,23,M,GARDENT,Olivier,24/04/1955,DXG,Employé administratif d'entreprise,Non,F,BAUDRAN,Brigitte,28/10/1960,Non +44,Loire-Atlantique,02,2ème circonscription,7,113,F,LAMBART,Christine,16/08/1955,REG,"Ancien artisan, commerçant, chef d'entreprise",Non,M,COPROS,Adrien,22/02/1995,Non +44,Loire-Atlantique,02,2ème circonscription,8,115,F,PRIOLLAUD,Elisa,09/07/1996,REG,Ingénieur et cadre technique d'entreprise,Non,M,BELLOEIL,Vincent,17/07/1994,Non +44,Loire-Atlantique,02,2ème circonscription,9,84,F,DALICHOUX,Ludivine,27/09/1979,DSV,Technicien,Non,M,ROBIN,Louis,06/04/1999,Non +44,Loire-Atlantique,02,2ème circonscription,10,48,M,MILBEO,Sébastien,16/03/1990,ECO,Employé de commerce,Non,F,PROVOST,Justine,17/02/1995,Non +44,Loire-Atlantique,02,2ème circonscription,11,29,F,SCHEFFEN,Cecile,14/09/1998,REC,"Elève, étudiant",Non,F,LEVEL,Séverine,24/09/1974,Non +44,Loire-Atlantique,03,3ème circonscription,1,50,M,TERRIEN,Olivier,01/11/1970,DXG,Profession intermédiaire de la santé et du travail social,Non,F,GIRARDIN,Chantal,17/08/1943,Non +44,Loire-Atlantique,03,3ème circonscription,2,18,F,JARRY,Véronique,03/06/1961,RN,Employé civil et agent de service de la fonction publique,Non,M,GUIHENEUF,Enzo,14/02/1999,Non +44,Loire-Atlantique,03,3ème circonscription,3,24,M,PERROT,Gildas,26/08/1960,REG,Chef d'entreprise de 10 salariés ou plus,Non,F,PERROT,Nathalie,28/11/1962,Non +44,Loire-Atlantique,03,3ème circonscription,4,11,F,DOLIDON,Hélène,14/12/1977,DXG,Cadre de la fonction publique,Non,M,DÉAU,Pascal,14/01/1962,Non +44,Loire-Atlantique,03,3ème circonscription,5,14,F,AMIOT,Ségolène,23/02/1986,NUP,Employé administratif d'entreprise,Non,M,MAGRÉ,Olivier,08/04/1967,Non +44,Loire-Atlantique,03,3ème circonscription,6,92,F,GUÉGUEN,Ophélie,29/05/1982,ECO,Cadre administratif et commercial d'entreprise,Non,M,ARIZA,Julien,07/07/1978,Non +44,Loire-Atlantique,03,3ème circonscription,7,77,M,DUPRAT,Benjamin,02/07/1982,DSV,Commerçant et assimilé,Non,M,JENDREJESKI,Damien,24/06/1976,Non +44,Loire-Atlantique,03,3ème circonscription,8,98,M,DURET,Gwenvaël,09/09/1979,REG,"Professeur des écoles, instituteur et assimilé",Non,F,BRUNEAU BIGUET,Celine,26/03/1977,Non +44,Loire-Atlantique,03,3ème circonscription,9,61,F,BRUNET,Anne-France,12/06/1962,ENS,Profession libérale,Oui,M,ALIX,Sébastien,15/06/1969,Non +44,Loire-Atlantique,03,3ème circonscription,10,82,M,FAUCHAIT,Thibault,03/01/2001,REC,"Elève, étudiant",Non,F,GIDOIN,Ombeline,10/05/1994,Non +44,Loire-Atlantique,03,3ème circonscription,11,99,F,VAN GOETHEM,Sophie,17/09/1957,LR,"Professeur, profession scientifique",Non,M,DERRIEN,Curtis,09/08/1997,Non +44,Loire-Atlantique,04,4ème circonscription,1,112,M,CHEVALIER,Bruno,15/11/1955,DVG,Commerçant et assimilé,Non,M,RENOUX,Dominique,31/05/1960,Non +44,Loire-Atlantique,04,4ème circonscription,2,7,F,BUGNON,Nadège,05/09/1975,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MOEBUS,Clément,23/09/1996,Non +44,Loire-Atlantique,04,4ème circonscription,3,51,F,PICAVEZ,Christine,13/05/1948,DXG,"Professeur, profession scientifique",Non,F,JEMMI,Sylviane,18/10/1948,Non +44,Loire-Atlantique,04,4ème circonscription,4,43,M,MESGUICH,Frédéric,28/02/1986,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,BARENNES,Maëli,28/03/1986,Non +44,Loire-Atlantique,04,4ème circonscription,5,104,F,PAVAGEAU,Sophie,02/06/1976,LR,Cadre administratif et commercial d'entreprise,Non,F,LAMBERTHON,Anne-Sophie,26/10/1965,Non +44,Loire-Atlantique,04,4ème circonscription,6,30,F,LAERNOES,Julie,03/07/1982,NUP,Ancien cadre,Non,M,CAMUS,Hervé,09/07/1964,Non +44,Loire-Atlantique,04,4ème circonscription,7,6,M,PELLEGRINI,Stephane,28/08/1969,DXG,Employé civil et agent de service de la fonction publique,Non,M,VÉROVE,Xavier,08/05/1968,Non +44,Loire-Atlantique,04,4ème circonscription,8,94,F,PINEAU,Gaëlle,16/02/1976,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,COTTEREAU,Joël,23/08/1953,Non +44,Loire-Atlantique,04,4ème circonscription,9,93,M,PROD'HOMME,Matthias,04/01/1992,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,DUBRULLE,Marion,12/11/1994,Non +44,Loire-Atlantique,04,4ème circonscription,10,26,M,BUTEAU,Yohan,05/07/1994,REC,Chauffeur,Non,F,GREMIGNA,Sylvia,18/04/1982,Non +44,Loire-Atlantique,04,4ème circonscription,11,108,M,BASQUE,Alexandre,24/07/1995,REG,Ingénieur et cadre technique d'entreprise,Non,M,DELHAYE-BOLOH,Jobig,14/09/2000,Non +44,Loire-Atlantique,04,4ème circonscription,12,59,F,AMADOU,Aude,29/02/1980,ENS,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,M,GENTIL,Pascal,22/10/1964,Non +44,Loire-Atlantique,05,5ème circonscription,1,80,F,LALANDE,Sabine,19/07/1968,NUP,Profession intermédiaire de la santé et du travail social,Non,M,LEJEMBLE,Olivier,05/12/1985,Non +44,Loire-Atlantique,05,5ème circonscription,2,106,M,VINCENT,Romain,08/10/1984,DVD,Commerçant et assimilé,Non,M,FRUCHAUD,Edouard,05/02/1988,Non +44,Loire-Atlantique,05,5ème circonscription,3,13,F,CLOPEAU,Emmanuelle,08/11/1966,DXG,Employé civil et agent de service de la fonction publique,Non,M,AGOULON,Jean-Yves,02/02/1954,Non +44,Loire-Atlantique,05,5ème circonscription,4,12,M,CLEMENCE,Arnaud,11/02/1974,REC,Profession libérale,Non,F,RICHARD,Anne,24/02/1979,Non +44,Loire-Atlantique,05,5ème circonscription,5,47,F,EL HAIRY,Sarah,16/03/1989,ENS,Cadre administratif et commercial d'entreprise,Non,M,GEISMAR,Luc,01/11/1966,Oui +44,Loire-Atlantique,05,5ème circonscription,6,95,F,TRÉDAN,Maëlig,17/02/1994,REG,Ingénieur et cadre technique d'entreprise,Non,M,LEFEBVRE,Didier,06/07/1959,Non +44,Loire-Atlantique,05,5ème circonscription,7,15,F,AVOT,Laure,05/10/1983,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PARISOT,Alain,02/09/1962,Non +44,Loire-Atlantique,05,5ème circonscription,8,31,F,KARCHER,Millà,08/10/2002,RN,Employé de commerce,Non,M,MENARD,Dylan,16/09/1998,Non +44,Loire-Atlantique,05,5ème circonscription,9,120,M,GARNIER,Didier,05/02/1958,DVC,Technicien,Non,M,RICHARD,Guy,12/03/1954,Non +44,Loire-Atlantique,05,5ème circonscription,10,121,M,DEBUIRE,Jérôme,22/01/1979,ECO,Agriculteur sur petite exploitation,Non,F,BECHEKER,Ldjida,04/06/1986,Non +44,Loire-Atlantique,05,5ème circonscription,11,52,M,KUCHARCZYK,Tadeusz,12/04/1944,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,DELANOE,Chrysta,25/01/1974,Non +44,Loire-Atlantique,06,6ème circonscription,1,3,F,CATHELINE,Marie-Paule,30/01/1947,DXG,Ancien cadre,Non,M,KATZ,Philippe,29/02/1988,Non +44,Loire-Atlantique,06,6ème circonscription,2,32,M,ESNAULT,Jordan,24/08/1993,ENS,Cadre administratif et commercial d'entreprise,Non,F,DANARD,Yolaine,25/08/1969,Non +44,Loire-Atlantique,06,6ème circonscription,3,21,M,BOUGOT,Teddy,16/09/1977,RN,"Profession de l'information, des arts et des spectacles",Non,F,RIVIERE,Jannick,24/12/1957,Non +44,Loire-Atlantique,06,6ème circonscription,4,55,M,LE HÉCHO,François-Xavier,04/07/1981,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,GUÉRIN,Marie-Pierre,06/03/1956,Non +44,Loire-Atlantique,06,6ème circonscription,5,56,F,BUREAU,Sandra,19/08/1972,REC,Cadre administratif et commercial d'entreprise,Non,M,LOUVEL,Tanguy,03/08/1977,Non +44,Loire-Atlantique,06,6ème circonscription,6,85,F,LAILLÉ,Catherine,24/06/1960,DVD,Ancien agriculteur exploitant,Non,M,SUEL,Claude,23/05/1957,Non +44,Loire-Atlantique,06,6ème circonscription,7,53,M,GUYOT,Francois,15/03/1979,LR,Agriculteur sur grande exploitation,Non,F,MARTIAS,Sophie,16/12/1976,Non +44,Loire-Atlantique,06,6ème circonscription,8,101,M,PETIT,Tony,11/02/1976,DSV,Artisan,Non,F,HUGUENOT,Nadia,22/11/1948,Non +44,Loire-Atlantique,06,6ème circonscription,9,73,M,FLIPPOT,Jacky,25/10/1947,REG,Ancienne profession intermédiaire,Non,M,COCHÉ,Jean-Guillaume,25/10/1947,Non +44,Loire-Atlantique,06,6ème circonscription,10,57,F,LETELLIER,Karine,20/08/1980,ECO,Personnel des services directs aux particuliers,Non,M,BOUCAND,Marc,11/02/1984,Non +44,Loire-Atlantique,06,6ème circonscription,11,54,M,RAUX,Jean-Claude,18/01/1967,NUP,"Professeur, profession scientifique",Non,F,LUCAS,Nadine,11/04/1975,Non +44,Loire-Atlantique,07,7ème circonscription,1,4,F,BELIN,Marie-France,19/11/1943,DXG,Ancien employé,Non,M,BENOÎT,Sébastien,16/06/1976,Non +44,Loire-Atlantique,07,7ème circonscription,2,118,M,GONTIER,Jean-Yves,07/11/1973,DVC,Profession libérale,Non,F,SETTELEN,Josette,11/04/1947,Non +44,Loire-Atlantique,07,7ème circonscription,3,116,M,SEILLÉ,Alain,17/12/1958,ECO,Ancien ouvrier,Non,F,BOUMAZA,Anissa,24/06/1982,Non +44,Loire-Atlantique,07,7ème circonscription,4,20,F,LE PAGE,Laurence,18/09/1974,RN,Profession intermédiaire de la santé et du travail social,Non,M,RIO,Franck,16/08/1967,Non +44,Loire-Atlantique,07,7ème circonscription,5,78,F,JOSSIC,Donatienne,02/11/1949,ECO,Ancien employé,Non,M,LEVESQUE,Jean-Pierre,03/10/1957,Non +44,Loire-Atlantique,07,7ème circonscription,6,114,M,PLOUVIER,Bertrand,14/06/1976,LR,Profession libérale,Non,F,GOSLIN,Sylvie,04/04/1979,Non +44,Loire-Atlantique,07,7ème circonscription,7,87,F,AURY,Martine,12/05/1975,DVD,Ancien employé,Non,F,THÉBAUD,Doriane,28/04/1995,Non +44,Loire-Atlantique,07,7ème circonscription,8,33,M,GAUDEAU,Laurent,22/05/1956,REC,Ancien cadre,Non,F,ROUSSEAU,Francoise,31/03/1957,Non +44,Loire-Atlantique,07,7ème circonscription,9,110,M,BOUTRY,Olivier,18/07/1962,DIV,"Professeur, profession scientifique",Non,F,VADAINE,Elisabeth,11/11/1975,Non +44,Loire-Atlantique,07,7ème circonscription,10,100,M,BOURDEAU,Gaël,07/08/1952,DSV,Ancien cadre,Non,F,DURAND,Chantal,26/02/1948,Non +44,Loire-Atlantique,07,7ème circonscription,11,34,F,JOSSO,Sandrine,19/09/1975,ENS,Profession libérale,Oui,M,TEXIER,Jean-Michel,29/06/1976,Non +44,Loire-Atlantique,07,7ème circonscription,12,60,F,MAHÉ,Veronique,03/08/1961,NUP,Cadre administratif et commercial d'entreprise,Non,M,ROUXEL,Christophe,06/12/1955,Non +44,Loire-Atlantique,08,8ème circonscription,1,102,F,BOSSARD,Cécilia,22/12/1982,REG,Ingénieur et cadre technique d'entreprise,Non,M,BLUM,Cédric,07/01/1980,Non +44,Loire-Atlantique,08,8ème circonscription,2,16,M,CARRO,Hervé,15/09/1957,REG,Ancien cadre,Non,F,PRUNIER,Agnès,26/01/1963,Non +44,Loire-Atlantique,08,8ème circonscription,3,63,F,PORCHER,Andréa,15/05/1985,LR,Profession intermédiaire administrative et commerciale des entreprises,Non,F,LEBASTARD,Agnès,02/10/1962,Non +44,Loire-Atlantique,08,8ème circonscription,4,5,M,LE BELLER,Eddy,19/01/1969,DXG,Technicien,Non,M,SAINT-ARROMAN,Jean-Claude,06/02/1948,Non +44,Loire-Atlantique,08,8ème circonscription,5,105,F,MASSON,Edith,16/09/1961,DSV,Ancien cadre,Non,M,FLEURY,Yaouen,26/07/1978,Non +44,Loire-Atlantique,08,8ème circonscription,6,122,F,DESMARIE,Evelyne,09/02/1953,REG,"Ancien artisan, commerçant, chef d'entreprise",Non,M,ALIX,Jean-François,29/03/1982,Non +44,Loire-Atlantique,08,8ème circonscription,7,91,F,PETREAU,Bénédicte,05/04/1975,ECO,Profession libérale,Non,F,DUMITRACHE,Adelina,24/07/1985,Non +44,Loire-Atlantique,08,8ème circonscription,8,88,M,TAVEL,Matthias,06/07/1987,NUP,Cadre de la fonction publique,Non,F,ARDOUIN,Christelle,19/08/1983,Non +44,Loire-Atlantique,08,8ème circonscription,9,89,F,DUVILLIER,Frédérica,27/12/1963,REC,Commerçant et assimilé,Non,M,CROCHET,Dominique,03/11/1952,Non +44,Loire-Atlantique,08,8ème circonscription,10,62,F,DUFEU,Audrey,03/06/1980,ENS,Ingénieur et cadre technique d'entreprise,Oui,M,BLANC,Jean-Pierre,16/03/1960,Non +44,Loire-Atlantique,08,8ème circonscription,11,36,M,PERRIN,Xavier,12/10/1975,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,TRAMIER,Claire,26/06/1964,Non +44,Loire-Atlantique,08,8ème circonscription,12,19,M,BOUCHET,Gauthier,15/11/1987,RN,"Professeur, profession scientifique",Non,F,TRIVIDIC,Anne,28/07/1957,Non +44,Loire-Atlantique,08,8ème circonscription,13,75,M,BOUCHEZ,David,13/11/1988,DIV,Ouvrier qualifié de type industriel,Non,F,ANDREAU BOUCHEZ,Elodie,23/04/1987,Non +44,Loire-Atlantique,09,9ème circonscription,1,97,M,PILET,Dominique,08/04/1967,DVD,Ouvrier agricole,Non,M,NORMAND,Luc,12/06/1960,Non +44,Loire-Atlantique,09,9ème circonscription,2,66,M,ROZIER,Ulrich,18/07/1986,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,BREGONZIO,Lola,13/05/1987,Non +44,Loire-Atlantique,09,9ème circonscription,3,39,M,HAURY,Yannick,12/06/1954,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,F,PACREAU,Fanny,22/07/1976,Non +44,Loire-Atlantique,09,9ème circonscription,4,79,M,LE COZ,Alain,26/01/1963,UDI,Ingénieur et cadre technique d'entreprise,Non,F,GIFFO,Marie,22/10/1979,Non +44,Loire-Atlantique,09,9ème circonscription,5,64,M,MALDINEY,Bastian,27/10/2000,RN,Employé administratif d'entreprise,Non,F,BEMBINOFF,Alesca,02/05/1988,Non +44,Loire-Atlantique,09,9ème circonscription,6,42,M,CHOMARD,Laurent,31/10/1971,REC,Cadre administratif et commercial d'entreprise,Non,F,BERTAUX,Valerie,04/02/1967,Non +44,Loire-Atlantique,09,9ème circonscription,7,81,F,RENAUDIN,Maryse,14/05/1960,REG,Ancienne profession intermédiaire,Non,F,FLIPPOT,Nicole,05/08/1942,Non +44,Loire-Atlantique,09,9ème circonscription,8,40,F,MACON,Hélène,25/12/1979,NUP,"Professeur, profession scientifique",Non,M,EVANS,Clement,21/02/1989,Non +44,Loire-Atlantique,09,9ème circonscription,9,96,M,MOUTOT,Alexandre,30/10/1984,REG,Commerçant et assimilé,Non,M,SÉGALOU,Loïc,24/12/1969,Non +44,Loire-Atlantique,09,9ème circonscription,10,2,F,HERVO,Annie,05/03/1957,DXG,Ancienne profession intermédiaire,Non,M,GEORGET,Alain,07/08/1966,Non +44,Loire-Atlantique,09,9ème circonscription,11,119,M,AVELLO,Alain,02/04/1971,DSV,"Professeur, profession scientifique",Non,M,LE GUENIC,Maxime,30/04/1985,Non +44,Loire-Atlantique,09,9ème circonscription,12,65,M,BROUNAIS,Paul,24/12/1992,DVC,Commerçant et assimilé,Non,F,TRICHET-MIGNÉ,Valérie,18/06/1969,Non +44,Loire-Atlantique,10,10ème circonscription,1,45,F,LEGER,Sabine,23/11/1989,REC,Personnel des services directs aux particuliers,Non,M,VAILHEN,Bernard,10/01/1952,Non +44,Loire-Atlantique,10,10ème circonscription,2,107,F,LEMPERNESSE,Florence,17/12/1969,DSV,Employé administratif d'entreprise,Non,M,VENTROUX,Bertrand,07/04/1990,Non +44,Loire-Atlantique,10,10ème circonscription,3,69,F,BANNWARTH,Geneviève,22/04/1949,RN,Ancienne profession intermédiaire,Non,M,GIAMI,William,08/07/2001,Non +44,Loire-Atlantique,10,10ème circonscription,4,72,M,BONAMY,Guillaume,22/05/1977,DVG,Cadre administratif et commercial d'entreprise,Non,F,DANILO,Loïse,29/09/1989,Non +44,Loire-Atlantique,10,10ème circonscription,5,44,F,SAICHE,Malika,19/02/1969,ECO,Profession libérale,Non,F,FRADIN,Sabrina,31/05/1983,Non +44,Loire-Atlantique,10,10ème circonscription,6,46,M,CAILLETEAU,Bruno,15/05/1962,NUP,Ancien employé,Non,F,FERRY,Léonie,25/09/1990,Non +44,Loire-Atlantique,10,10ème circonscription,7,90,M,CHÉNEAU,Philippe,19/11/1964,DVD,Agriculteur sur moyenne exploitation,Non,F,DENIS,Fabienne,25/07/1970,Non +44,Loire-Atlantique,10,10ème circonscription,8,49,F,ERRANTE,Sophie,22/07/1971,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,M,GENDRON,Jean-François,09/03/1957,Non +44,Loire-Atlantique,10,10ème circonscription,9,22,M,DANA,Richard,21/06/1979,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MONNOIR,Elvis,16/09/1977,Non +44,Loire-Atlantique,10,10ème circonscription,10,67,F,LUQUIAU,Charlotte,31/10/1978,LR,Cadre de la fonction publique,Non,M,GUILLOT,François,15/11/1969,Non +44,Loire-Atlantique,10,10ème circonscription,11,71,M,CHÉNEAU,Maxime,02/03/1987,REG,Agriculteur sur petite exploitation,Non,M,GÉRARD,Étienne,27/04/2000,Non +44,Loire-Atlantique,10,10ème circonscription,12,9,F,GARDAIR,Emmanuèle,02/08/1968,DXG,"Professeur, profession scientifique",Non,M,THÉRIN,Jean-Yves,17/05/1957,Non +45,Loiret,01,1ère circonscription,1,59,F,KHIDER,Sabryna,30/08/1997,DSV,Ouvrier qualifié de type industriel,Non,M,QUILLET,Renaud,09/08/1967,Non +45,Loiret,01,1ère circonscription,2,44,F,RIST,Stéphanie,06/08/1973,ENS,"Professeur, profession scientifique",Oui,M,GENTY,Romuald,11/06/1982,Non +45,Loiret,01,1ère circonscription,3,10,M,COUSIN,Thierry,16/05/1960,UDI,Cadre administratif et commercial d'entreprise,Non,F,PICARD,Fanny,18/01/1997,Non +45,Loiret,01,1ère circonscription,4,61,F,LEQUEN,Patricia,14/12/1951,REC,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,SOUFFI,Hayet,11/01/1974,Non +45,Loiret,01,1ère circonscription,5,35,F,KHUWAYLID,Dounia,01/07/1981,DIV,"Professeur, profession scientifique",Non,M,HISSAB,Mohcine,23/12/1985,Non +45,Loiret,01,1ère circonscription,6,28,M,TREPKA,Claude,13/06/1965,DXG,Technicien,Non,F,SANÇOIS,Céline,28/06/1975,Non +45,Loiret,01,1ère circonscription,7,5,M,HELIE,François-Valbert,13/07/1974,RN,Employé de commerce,Non,F,COUTEAU,Murielle,19/08/1971,Non +45,Loiret,01,1ère circonscription,8,50,F,KOUNOWSKI,Ghislaine,28/11/1957,NUP,Ancien cadre,Non,M,JOUIN,Olivier,30/03/1963,Non +45,Loiret,02,2ème circonscription,1,11,M,CHAILLOU,Yann,15/07/1993,DVG,Cadre administratif et commercial d'entreprise,Non,F,VOIGT,Caroline,03/07/1990,Non +45,Loiret,02,2ème circonscription,2,13,F,BABIN,Élodie,16/08/1990,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LECOQ,Philippe,13/10/1964,Non +45,Loiret,02,2ème circonscription,3,53,M,MALLET,Jean-Paul,24/09/1972,REC,Commerçant et assimilé,Non,F,DUVILLARD,Marie-Odile,09/09/1960,Non +45,Loiret,02,2ème circonscription,4,20,F,BOYER,Anaïs,05/12/1995,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,M,PELLETIER,Gaël,12/04/1980,Non +45,Loiret,02,2ème circonscription,5,48,F,BERTRAN,Sarah,21/11/1982,DIV,"Professeur, profession scientifique",Non,M,NGUYEN,Thomas,29/06/1987,Non +45,Loiret,02,2ème circonscription,6,12,F,MEGDOUD,Farida,27/12/1961,DXG,"Professeur, profession scientifique",Non,M,PRODHOMME,Pierre,05/08/1987,Non +45,Loiret,02,2ème circonscription,7,30,M,HOUSSARD,Alexandre,30/06/1976,LR,Cadre administratif et commercial d'entreprise,Non,F,CARL,Clarisse,20/05/1965,Non +45,Loiret,02,2ème circonscription,8,52,M,DUPLESSY,Emmanuel,02/01/1990,NUP,Cadre de la fonction publique,Non,F,SAUTREUIL,Magali,15/04/1987,Non +45,Loiret,02,2ème circonscription,9,18,F,JANVIER,Caroline,09/03/1982,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,LEPÊCHEUR,Eric,04/05/1961,Non +45,Loiret,02,2ème circonscription,10,51,M,ACHBOUNE,Abdelrachid,11/10/1981,DIV,Ingénieur et cadre technique d'entreprise,Non,F,BEN MOHAMED,Aziza,18/05/1971,Non +45,Loiret,03,3ème circonscription,1,26,M,GOURRET-GUÉNIN,Philippe,04/10/1965,ECO,"Profession de l'information, des arts et des spectacles",Non,F,GUÉRIN,Nathalie,04/03/1961,Non +45,Loiret,03,3ème circonscription,2,31,F,LAMARQUE,Isabelle,11/09/1967,REC,Commerçant et assimilé,Non,F,THOMAS,Joëlle,04/09/1973,Non +45,Loiret,03,3ème circonscription,3,58,M,MERLOT,Kévin,23/03/1984,NUP,Ingénieur et cadre technique d'entreprise,Non,F,FUMÉ,Catherine,30/11/1957,Non +45,Loiret,03,3ème circonscription,4,34,F,BARBIER,Carine,31/07/1969,ENS,"Profession de l'information, des arts et des spectacles",Non,M,RADIN,Alexandre,06/12/1973,Non +45,Loiret,03,3ème circonscription,5,33,M,RIGLET,Jean-Luc,24/09/1962,DVD,Ancien cadre,Non,F,VICHERAT,Valérie,21/01/1972,Non +45,Loiret,03,3ème circonscription,6,55,M,CESSAC,Sébastien,12/12/1982,DIV,Profession intermédiaire administrative de la fonction publique,Non,F,JAMET,Aurélie,10/05/1982,Non +45,Loiret,03,3ème circonscription,7,29,M,DE GANAY,Claude,05/09/1953,LR,Cadre de la fonction publique,Oui,M,CHASSINE,Louis,21/08/1990,Non +45,Loiret,03,3ème circonscription,8,27,F,PARIS,Mathilde,14/01/1985,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,MAROT,Jany,29/03/2004,Non +45,Loiret,03,3ème circonscription,9,6,M,NAULIN,Michel,30/04/1958,DXG,Ancienne profession intermédiaire,Non,F,BERNIER,Martine,12/02/1958,Non +45,Loiret,04,4ème circonscription,1,36,M,ROHAUT,Olivier,13/08/1984,DIV,Artisan,Non,M,PROFFIT,Alphonse,09/04/1980,Non +45,Loiret,04,4ème circonscription,2,17,F,CLERGUE,Dominique,03/03/1961,DXG,Ouvrier non qualifié de type industriel,Non,F,FOURNIOLS,Anne Marie,22/01/1958,Non +45,Loiret,04,4ème circonscription,3,38,M,MOREAU,Philippe,09/06/1967,DVD,Cadre administratif et commercial d'entreprise,Non,M,MADEC-CLEÏ,Claude,11/11/1955,Non +45,Loiret,04,4ème circonscription,4,32,F,LECHEVALIER,Sylvie,01/12/1961,DSV,Profession intermédiaire de la santé et du travail social,Non,M,LEMAIRE,Henri,22/11/1958,Non +45,Loiret,04,4ème circonscription,5,15,M,NOTTIN,Bruno,27/08/1974,NUP,Profession intermédiaire administrative de la fonction publique,Non,F,PHÉSOR,Francine,08/02/1969,Non +45,Loiret,04,4ème circonscription,6,9,M,MÉNAGÉ,Thomas,06/01/1992,RN,Cadre administratif et commercial d'entreprise,Non,M,SAUVEGRAIN,Frédéric,21/03/1966,Non +45,Loiret,04,4ème circonscription,7,39,M,BLANQUER,Jean-Michel,04/12/1964,ENS,Cadre de la fonction publique,Non,M,BOUQUET,Christophe,04/02/1975,Non +45,Loiret,04,4ème circonscription,8,40,M,LÉVY,Ariel,27/02/1990,LR,Cadre administratif et commercial d'entreprise,Non,F,MELZASSARD,Corinne,15/10/1971,Non +45,Loiret,04,4ème circonscription,9,57,M,CUIGNACHE,Alexandre,11/08/1984,REC,Profession libérale,Non,F,THOMAS,Guillemette,06/06/1998,Non +45,Loiret,04,4ème circonscription,10,47,M,D'ISOARD DE CHENERILLES,Romain,12/05/1992,ECO,"Professeur des écoles, instituteur et assimilé",Non,M,D'ISOARD DE CHENERILLES,Isaac,19/02/1998,Non +45,Loiret,05,5ème circonscription,1,21,M,DE NAS DE TOURRIS,Eric,20/10/1968,REC,Profession libérale,Non,F,ROBERT,Martine,19/04/1954,Non +45,Loiret,05,5ème circonscription,2,46,M,MOLLIERE,Laurent,26/03/1975,ECO,Ingénieur et cadre technique d'entreprise,Non,F,BONNIN,Maëlle,09/02/1991,Non +45,Loiret,05,5ème circonscription,3,8,M,MANENT,Valentin,22/12/1988,RN,Technicien,Non,F,PANTALÉON,Blandine,31/05/1990,Non +45,Loiret,05,5ème circonscription,4,37,M,BUIZARD,Maxime,05/05/1992,LR,Agriculteur sur petite exploitation,Non,F,DUBOIS,Marianne,17/12/1957,Oui +45,Loiret,05,5ème circonscription,5,2,F,SOTTEJEAU,Céline,16/09/1978,DXG,"Professeur, profession scientifique",Non,M,RAVET,Pascal,07/01/1969,Non +45,Loiret,05,5ème circonscription,6,41,M,BROSSE,Anthony,04/11/1980,ENS,Profession intermédiaire de la santé et du travail social,Non,F,DINIZ,Sandra,20/01/1970,Non +45,Loiret,05,5ème circonscription,7,42,F,CHABIRAND,Florence,31/01/1969,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,JAY,Thierry,11/12/1963,Non +45,Loiret,05,5ème circonscription,8,24,M,THEBAUT,Laurent,01/03/1976,DXG,"Professeur, profession scientifique",Non,F,MAZEYRAT,Liliane,10/06/1952,Non +45,Loiret,05,5ème circonscription,9,7,M,BARJONET,Thierry,09/02/1969,DVD,"Profession de l'information, des arts et des spectacles",Non,F,BERTHELOT,Isabelle,03/10/1965,Non +45,Loiret,06,6ème circonscription,1,62,F,KHELIL,Anna,21/02/1993,REC,Cadre administratif et commercial d'entreprise,Non,M,MARC,Samuel,09/12/1994,Non +45,Loiret,06,6ème circonscription,2,25,M,LEGROS,Raphaël,01/05/1995,ECO,Ingénieur et cadre technique d'entreprise,Non,F,HERSCOVICI,Edna,26/07/1951,Non +45,Loiret,06,6ème circonscription,3,3,F,BOUBEKEUR,Carla,10/07/1995,RN,Profession intermédiaire de la santé et du travail social,Non,M,TEMPLIER,Jean-Pierre,02/02/1954,Non +45,Loiret,06,6ème circonscription,4,19,M,CHOQUEL,David,12/11/1977,DXG,"Professeur, profession scientifique",Non,M,LEMERLE,Arnaud,05/07/1972,Non +45,Loiret,06,6ème circonscription,5,45,M,RAMOS,Richard,23/03/1968,ENS,Cadre administratif et commercial d'entreprise,Oui,F,CAILLETEAU-CRUCY,Clémentine,19/05/1981,Non +45,Loiret,06,6ème circonscription,6,22,M,BAUMGARTNER,Gaël,20/08/1973,ECO,Profession libérale,Non,F,MBENGUE,Khady,16/06/1981,Non +45,Loiret,06,6ème circonscription,7,43,M,HICTER,Olivier,20/12/1966,NUP,"Professeur, profession scientifique",Non,F,SALVATORE,Nathalie,05/07/1967,Non +45,Loiret,06,6ème circonscription,8,14,M,DELAGUETTE,Xavier,31/07/1986,DIV,Profession libérale,Non,F,BOUNEFIKHA,Sarah,24/07/1992,Non +45,Loiret,06,6ème circonscription,9,4,M,TOULOUGOUSSOU,Théodore-Richard,28/05/1960,DVG,"Professeur, profession scientifique",Non,M,DELPOÏO,Guillaume,08/07/1985,Non +45,Loiret,06,6ème circonscription,10,49,F,DE FILIPPI,Chrystel,14/04/1976,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,GOUSSARD,Olivier,02/04/1952,Non +45,Loiret,06,6ème circonscription,11,60,M,SILVESTRE,Dylan,22/08/1995,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,PIRES,Mathilde,21/03/1995,Non +45,Loiret,06,6ème circonscription,12,54,M,BIBET,Sébastien,31/07/1981,DSV,Technicien,Non,F,DELENTE,Anne,17/06/1981,Non +46,Lot,01,1ère circonscription,1,12,F,SALLINEN,Frédérique,23/10/1967,ECO,Cadre administratif et commercial d'entreprise,Non,M,HARBOUN,David,04/02/1960,Non +46,Lot,01,1ère circonscription,2,3,M,DOMENECH,Ghislain,30/09/1953,DXG,Ancienne profession intermédiaire,Non,M,ROCCA,Henri,23/11/1958,Non +46,Lot,01,1ère circonscription,3,2,M,MAURY,Patrice,26/04/1969,DVC,Ingénieur et cadre technique d'entreprise,Non,F,AGUIRREGOMEZCORTA,Emilie,14/11/1979,Non +46,Lot,01,1ère circonscription,4,23,F,BOUGEARD,Elsa,11/01/1982,NUP,"Professeur, profession scientifique",Non,M,LE GUILLOUX,Sylvain,06/06/1983,Non +46,Lot,01,1ère circonscription,5,6,F,GOUSSU,Monique,19/07/1947,REC,Ancien cadre,Non,M,TESSON,François,19/07/1958,Non +46,Lot,01,1ère circonscription,6,19,F,COUTURIER,Cendrine,11/04/1970,RN,Profession libérale,Non,M,MARTY,Jean-Jacques,28/01/1958,Non +46,Lot,01,1ère circonscription,7,10,M,GERARD,Frédéric,08/04/1970,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,F,JUDE,Fabienne,30/07/1966,Non +46,Lot,01,1ère circonscription,8,9,M,STUMM,Florent,21/10/1996,DVG,Employé administratif d'entreprise,Non,F,ALRIVIE,Françoise,31/08/1961,Non +46,Lot,01,1ère circonscription,9,17,M,BRANCO,Rémi,20/07/1984,DVG,Cadre administratif et commercial d'entreprise,Non,F,MAURY,Maryse,22/03/1951,Non +46,Lot,01,1ère circonscription,10,21,M,PRADIÉ,Aurélien,14/03/1986,LR,Cadre administratif et commercial d'entreprise,Oui,F,RIVIÈRE,Brigitte,23/03/1959,Non +46,Lot,02,2ème circonscription,1,7,M,ASTOUL,Roland,29/11/1954,DVD,Ancien cadre,Non,M,SERMET,Jean-Claude,13/10/1962,Non +46,Lot,02,2ème circonscription,2,13,M,BONTEMPS,Louis,08/10/1997,LR,"Elève, étudiant",Non,F,ROUQUIE,Valérie,27/03/1973,Non +46,Lot,02,2ème circonscription,3,11,M,LUCAS,Bruno,27/10/1955,DVG,Profession libérale,Non,M,SACCO,Stéphane,07/05/1963,Non +46,Lot,02,2ème circonscription,4,20,F,LE GLOANNEC,Armelle,18/08/1969,RN,Agriculteur sur petite exploitation,Non,F,TEISSEDRE,Nadège,02/02/1981,Non +46,Lot,02,2ème circonscription,5,18,F,TIEGNA,Huguette,01/04/1982,ENS,Ingénieur et cadre technique d'entreprise,Oui,F,LACASSAGNE,Chantal,23/12/1957,Non +46,Lot,02,2ème circonscription,6,15,M,BARBIER DAMIETTE,Frédéric,26/07/1978,DIV,Profession libérale,Non,F,HARLEZ,Claire,11/08/1981,Non +46,Lot,02,2ème circonscription,7,22,M,GROSSEMY,Thierry,05/12/1959,NUP,Ancien ouvrier,Non,F,GONTIER,Patricia,18/01/1967,Non +46,Lot,02,2ème circonscription,8,8,M,PROENÇA,Christophe,31/05/1966,DVG,"Professeur, profession scientifique",Non,F,LAPORTERIE,Anne,26/05/1971,Non +46,Lot,02,2ème circonscription,9,4,M,MILLARD,Alain,17/07/1955,DXG,Ancien employé,Non,F,ARNAC,Sylviane,23/09/1953,Non +46,Lot,02,2ème circonscription,10,16,M,FORESTIÉ,Alexis,23/06/1974,DVG,"Profession de l'information, des arts et des spectacles",Non,F,GUERRIERI,Léa,23/02/1982,Non +46,Lot,02,2ème circonscription,11,14,M,SALAUZE,Stanislas,23/03/1965,REC,Ingénieur et cadre technique d'entreprise,Non,M,CHOLLIER,Maxime,15/10/1998,Non +46,Lot,02,2ème circonscription,12,5,F,VIAU,Marie-Michèle,20/01/1944,DXG,Ancienne profession intermédiaire,Non,M,ISNARD,Jean-Marc,11/05/1952,Non +47,Lot-et-Garonne,01,1ère circonscription,1,13,M,LAUZZANA,Michel,20/03/1957,ENS,Profession libérale,Oui,F,BORDERIE,Chantal,16/05/1956,Non +47,Lot-et-Garonne,01,1ère circonscription,2,10,M,DELBOSQ,Sébastien,06/05/1986,RN,Cadre administratif et commercial d'entreprise,Non,M,RENARD,Fabrice,16/01/1975,Non +47,Lot-et-Garonne,01,1ère circonscription,3,19,F,COMBRES,Maryse,24/10/1958,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,LAPEYRÈRE,Philippe,30/11/1963,Non +47,Lot-et-Garonne,01,1ère circonscription,4,4,M,EL MARBATI,Mohamed,06/03/1958,DXG,Ancien cadre,Non,F,FARNO-AVERLANT,Isabelle,08/12/1966,Non +47,Lot-et-Garonne,01,1ère circonscription,5,8,M,GIRARDI,Bertrand,21/03/1978,LR,Commerçant et assimilé,Non,M,MACHADO,André,14/08/1968,Non +47,Lot-et-Garonne,01,1ère circonscription,6,20,F,RAMBOURG,Sophie,17/01/1976,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,HINGANT,Karine,26/05/1963,Non +47,Lot-et-Garonne,01,1ère circonscription,7,27,M,AURICES,Benoit,01/07/1988,DSV,"Professeur des écoles, instituteur et assimilé",Non,M,PIOT,Bernard,03/08/1947,Non +47,Lot-et-Garonne,01,1ère circonscription,8,5,F,BRUYÈRES,Marie Line,24/06/1958,REC,Ancien cadre,Non,M,SANTET,Philippe,09/11/1956,Non +47,Lot-et-Garonne,02,2ème circonscription,1,3,M,VENDÈGE,Michel,30/09/1964,ECO,Chauffeur,Non,M,MAZAGOT,Olivier,14/12/1970,Non +47,Lot-et-Garonne,02,2ème circonscription,2,18,M,FRESCHI,Alexandre,17/05/1979,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,DUCOS,Laurence,22/04/1964,Non +47,Lot-et-Garonne,02,2ème circonscription,3,26,F,CALZAVARA,Martine,01/11/1955,LR,Profession libérale,Non,M,LANDAT,Jean-Pierre,10/09/1960,Non +47,Lot-et-Garonne,02,2ème circonscription,4,28,F,LAPORTE,Hélène,29/12/1978,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CHAUMEIL,Romain,03/08/1991,Non +47,Lot-et-Garonne,02,2ème circonscription,5,24,M,COURREGELONGUE,Christophe,06/09/1972,NUP,"Professeur, profession scientifique",Non,F,BOTTECCHIA,Valérie,01/01/1965,Non +47,Lot-et-Garonne,02,2ème circonscription,6,11,F,REDOULEZ,Laetitia,11/07/1977,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,LE HIR,Monique,17/09/1953,Non +47,Lot-et-Garonne,02,2ème circonscription,7,29,M,MAURIN,Patrick,02/08/1953,DVD,"Ancien artisan, commerçant, chef d'entreprise",Non,F,CARLES,Marie-Françoise,21/03/1961,Non +47,Lot-et-Garonne,02,2ème circonscription,8,12,F,HÉNAFF,Isabelle,09/06/1983,REC,Cadre de la fonction publique,Non,M,CHOPLIN,Claude,14/05/1961,Non +47,Lot-et-Garonne,03,3ème circonscription,1,30,M,BOUFFIES,Mathias,20/02/1992,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,SIRAND,Juliette,03/09/1993,Non +47,Lot-et-Garonne,03,3ème circonscription,2,15,M,SOUBIRAN,Pierre,17/05/1958,DVC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,VERGNOLLE,Marie-Line,31/03/1957,Non +47,Lot-et-Garonne,03,3ème circonscription,3,22,M,GARY,Geoffroy,27/10/1977,REC,"Professeur, profession scientifique",Non,F,LANDRIN,Pia,27/08/1983,Non +47,Lot-et-Garonne,03,3ème circonscription,4,9,F,COUSIN,Annick,07/08/1973,RN,Employé civil et agent de service de la fonction publique,Non,M,BEAUPUIS,Christophe,07/04/1977,Non +47,Lot-et-Garonne,03,3ème circonscription,5,25,M,DAMAISIN,Olivier,05/08/1966,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,F,HAMIDANI,Farah,16/04/1981,Non +47,Lot-et-Garonne,03,3ème circonscription,6,16,F,DE BOISSEZON,Therese,23/10/1962,REG,Profession intermédiaire de la santé et du travail social,Non,M,LE MONIER,Jean Marie,18/11/1960,Non +47,Lot-et-Garonne,03,3ème circonscription,7,14,M,FANCHTEIN,Jean-Jacques,17/11/1957,DXD,"Ancien artisan, commerçant, chef d'entreprise",Non,F,BACQUEY,Yolande,26/11/1954,Non +47,Lot-et-Garonne,03,3ème circonscription,8,17,M,VIALETTES,Jacques,27/10/1958,RDG,Technicien,Non,M,LAFFARGUE,Eric,18/02/1956,Non +47,Lot-et-Garonne,03,3ème circonscription,9,21,M,CZAPLA,Xavier,30/11/1967,NUP,"Profession de l'information, des arts et des spectacles",Non,F,BINOIS-FIEGEL,Carole,26/09/1959,Non +47,Lot-et-Garonne,03,3ème circonscription,10,23,M,MERLY,Alain,15/06/1954,DVD,Ancien cadre,Non,F,BESSON,Séverine,17/05/1972,Non +47,Lot-et-Garonne,03,3ème circonscription,11,6,F,GASC,Bernadette,11/08/1960,DXG,Employé administratif d'entreprise,Non,M,GIL,Patrick,14/12/1950,Non +47,Lot-et-Garonne,03,3ème circonscription,12,2,F,SIDER,Myriam,16/09/1971,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,GODARD,Cyrille,16/12/1969,Non +47,Lot-et-Garonne,03,3ème circonscription,13,7,M,COSTES,Jean-Louis,23/08/1963,LR,Cadre de la fonction publique,Non,F,LÉVÊQUE,Cathy,04/05/1971,Non +48,Lozère,01,1ère circonscription,1,2,F,DESCAVES,Sandrine,22/04/1975,NUP,Technicien,Non,M,CAUSSE,Christian,02/06/1954,Non +48,Lozère,01,1ère circonscription,2,11,M,ZIDOUN,Dja,14/02/1965,DIV,Agriculteur sur petite exploitation,Non,F,DE LA FOUCHARDIÈRE,Alice,11/04/1995,Non +48,Lozère,01,1ère circonscription,3,8,M,SUAU,Laurent,26/08/1964,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GAUTHIER,Marie-Laure,07/07/1971,Non +48,Lozère,01,1ère circonscription,4,6,M,PARDIGON,Jean François,10/07/1947,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,F,MICHALLET,Danielle,18/02/1947,Non +48,Lozère,01,1ère circonscription,5,10,M,PALOMBI,Francis,06/08/1948,DIV,Ancien cadre,Non,F,LADEVIE,Sandrine,16/02/1976,Non +48,Lozère,01,1ère circonscription,6,3,M,MOREL A L'HUISSIER,Pierre,21/12/1958,UDI,Profession libérale,Oui,F,FANTINI ÉPOUSE MALAVAL,Audrey,13/06/1984,Non +48,Lozère,01,1ère circonscription,7,5,F,SOUCHON,Annie,08/07/1947,DXG,Ancien employé,Non,M,FRONTY,Thierry,10/01/1963,Non +48,Lozère,01,1ère circonscription,8,9,M,CASTAN,Christophe,15/06/1973,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,HOSZMAN,Nadine,31/05/1953,Non +48,Lozère,01,1ère circonscription,9,7,M,SAINT-LEGER,Patrice,03/06/1962,DVD,Profession libérale,Non,M,DE LAS CASES,Paul,12/01/1996,Non +48,Lozère,01,1ère circonscription,10,4,M,POUGNET,Nicolas,13/05/1960,REC,Cadre administratif et commercial d'entreprise,Non,M,DOURAU,Jacques,01/10/1954,Non +48,Lozère,01,1ère circonscription,11,12,M,BLAYAC,Dorian,07/01/1998,ECO,Profession intermédiaire de la santé et du travail social,Non,M,GENESTA,Vincent,11/05/1995,Non +49,Maine-et-Loire,01,1ère circonscription,1,2,F,DUPAS,Marie Louise,28/01/1950,DXG,Ancienne profession intermédiaire,Non,M,DESPORTES,David,10/03/1972,Non +49,Maine-et-Loire,01,1ère circonscription,2,21,M,BOVIER-LAPIERRE,Tristan,04/10/1971,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,GOD,Léna,14/08/1995,Non +49,Maine-et-Loire,01,1ère circonscription,3,29,M,CAYLA,David,12/01/1976,DVG,"Professeur, profession scientifique",Non,F,DEGROTT,Ingrid,10/11/1995,Non +49,Maine-et-Loire,01,1ère circonscription,4,24,M,SAEIDI,Arash,25/05/1975,NUP,Chef d'entreprise de 10 salariés ou plus,Non,F,RAFFIN,Elise,19/02/1979,Non +49,Maine-et-Loire,01,1ère circonscription,5,4,M,DE CHABOT,Gabriel,02/09/1981,RN,"Professeur, profession scientifique",Non,M,GAILLARD,Roger,22/08/2000,Non +49,Maine-et-Loire,01,1ère circonscription,6,34,M,BENOIT,Sulyvan,07/11/1995,ECO,Employé administratif d'entreprise,Non,F,GASBLAN DIXNEUF,Laura,07/06/1994,Non +49,Maine-et-Loire,01,1ère circonscription,7,17,M,BRANCOUR,Roch,02/10/1973,LR,Cadre administratif et commercial d'entreprise,Non,F,LEZE,Maryline,14/06/1961,Non +49,Maine-et-Loire,01,1ère circonscription,8,46,M,GERNIGON,François,02/04/1961,ENS,Ancien cadre,Non,F,CRUYPENNINCK,Hélène,01/04/1983,Non +49,Maine-et-Loire,02,2ème circonscription,1,36,F,BESSAT,Caroline,19/08/1968,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,FOLOPPE,Déborah,29/03/1987,Non +49,Maine-et-Loire,02,2ème circonscription,2,59,M,LE SOURD,Fabrice,15/03/1977,DSV,Artisan,Non,F,NOEL,Doris,20/01/1956,Non +49,Maine-et-Loire,02,2ème circonscription,3,49,M,BAUDOIN,Jean-Charles,29/03/1979,ECO,Cadre administratif et commercial d'entreprise,Non,F,AVETAIN,Isabelle,21/01/1963,Non +49,Maine-et-Loire,02,2ème circonscription,4,64,F,GRANIER,Blandine,17/02/1989,DIV,Commerçant et assimilé,Non,M,THOMAS,Christophe,17/10/1980,Non +49,Maine-et-Loire,02,2ème circonscription,5,18,F,GRENIER,Aurélie,24/03/1976,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,DOUCELIN,Dominique,10/07/1948,Non +49,Maine-et-Loire,02,2ème circonscription,6,30,M,MOULIN,Simon,16/07/1980,ECO,"Professeur, profession scientifique",Non,F,LECOMTE,Amélie,11/01/1984,Non +49,Maine-et-Loire,02,2ème circonscription,7,54,F,DUPONT,Stella,03/11/1973,ENS,Cadre administratif et commercial d'entreprise,Oui,M,BOUSSION,Sébastien,07/01/1981,Non +49,Maine-et-Loire,02,2ème circonscription,8,56,F,HENNO,Inès,16/06/1999,UDI,Commerçant et assimilé,Non,M,FERRO,Maxence,18/03/1999,Non +49,Maine-et-Loire,02,2ème circonscription,9,10,F,LEMENACH,Anne-Sophie,18/08/1985,RN,Employé administratif d'entreprise,Non,M,SYDAPHASAVANH,Sébastien,14/04/1997,Non +49,Maine-et-Loire,02,2ème circonscription,10,28,M,LEBRUN,Philippe,30/11/1956,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,QUEURY,Jean-Michel,16/03/1968,Non +49,Maine-et-Loire,02,2ème circonscription,11,35,M,LYS,Miguel,16/05/1964,DIV,Cadre de la fonction publique,Non,M,LECLERC,Jean Louis,27/08/1960,Non +49,Maine-et-Loire,03,3ème circonscription,1,23,M,BABINET,Charles,05/02/1980,REC,Cadre de la fonction publique,Non,F,DE LUSTRAC,Sophie,10/10/1972,Non +49,Maine-et-Loire,03,3ème circonscription,2,13,F,BAVERET,Sylvie,04/08/1974,DSV,"Profession de l'information, des arts et des spectacles",Non,M,OLIVIER,Tony,06/11/1989,Non +49,Maine-et-Loire,03,3ème circonscription,3,5,M,LAHONDÈS,Bernard,11/12/1960,RN,Profession intermédiaire de la santé et du travail social,Non,F,DUPONT,Dolorès,20/04/1961,Non +49,Maine-et-Loire,03,3ème circonscription,4,16,F,ROUDÉVITCH,Véronique,23/06/1959,NUP,Ingénieur et cadre technique d'entreprise,Non,M,ALEXANDRE,Patrick,29/09/1959,Non +49,Maine-et-Loire,03,3ème circonscription,5,37,M,ROBERT,David,15/03/1973,RDG,"Professeur, profession scientifique",Non,M,CERIZIER,Emilien,13/02/2001,Non +49,Maine-et-Loire,03,3ème circonscription,6,31,F,PEILLON,Patricia,14/10/1975,DXG,Employé civil et agent de service de la fonction publique,Non,M,CHOUFA,Abdel-Nour,29/12/1958,Non +49,Maine-et-Loire,03,3ème circonscription,7,58,F,BLIN,Anne-Laure,12/06/1983,LR,Ancien cadre,Oui,M,BEAUDOIN,Jean-Pierre,31/01/1958,Non +49,Maine-et-Loire,03,3ème circonscription,8,3,M,HOLLEY,Simon,17/12/1992,ENS,"Professeur, profession scientifique",Non,F,MARTIN,Marie-Pierre,11/05/1954,Non +49,Maine-et-Loire,04,4ème circonscription,1,14,F,SAINT-PAUL,Laëtitia,21/01/1981,ENS,Militaire du contingent,Oui,M,ALGOET,Philippe,02/05/1956,Non +49,Maine-et-Loire,04,4ème circonscription,2,8,F,RABAULT,Caroline,19/12/1973,NUP,Employé civil et agent de service de la fonction publique,Non,F,LELOUP-COTTIN,Catherine,11/07/1965,Non +49,Maine-et-Loire,04,4ème circonscription,3,6,F,GERET,Sylvie,28/11/1955,DXG,Profession libérale,Non,M,LIZÉ,Didier,05/02/1962,Non +49,Maine-et-Loire,04,4ème circonscription,4,11,M,MORINEAU,Patrick,18/02/1951,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,F,TEISSEIRE,Véronique,16/06/1961,Non +49,Maine-et-Loire,04,4ème circonscription,5,48,F,LEQUET,Christelle,02/10/1978,DSV,Employé administratif d'entreprise,Non,M,MARATRAY,Jean-Philippe,17/05/1968,Non +49,Maine-et-Loire,04,4ème circonscription,6,63,M,DEVEAUX,Nicolas,08/02/1968,DIV,Ingénieur et cadre technique d'entreprise,Non,F,ROUSSEAU,Virginie,12/03/1974,Non +49,Maine-et-Loire,04,4ème circonscription,7,60,M,HERVE,Gérard,29/06/1955,DVD,Ancien employé,Non,M,DEVAUD,Marc,23/09/1962,Non +49,Maine-et-Loire,04,4ème circonscription,8,32,F,CATIN,Régine,03/10/1956,LR,Ancien agriculteur exploitant,Non,M,HOUET,Bruno,31/05/1957,Non +49,Maine-et-Loire,04,4ème circonscription,9,19,M,JAMIN,Charles-Henri,25/08/1962,REC,Cadre administratif et commercial d'entreprise,Non,F,SAUER,Claire,24/08/1985,Non +49,Maine-et-Loire,05,5ème circonscription,1,45,M,AIRAUD,Christophe,09/12/1963,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,ANGEVIN,Kimberley,28/06/1995,Non +49,Maine-et-Loire,05,5ème circonscription,2,22,F,GORIOUX,Valérie,30/11/1957,REC,Ancien cadre,Non,M,BOURGET,Noham,01/03/2004,Non +49,Maine-et-Loire,05,5ème circonscription,3,33,M,TESTU,Didier,05/04/1953,DXG,Ancien ouvrier,Non,F,RAMBAUD,Marie-Claude,20/07/1957,Non +49,Maine-et-Loire,05,5ème circonscription,4,38,M,MASSEGLIA,Denis,11/04/1981,ENS,Ingénieur et cadre technique d'entreprise,Oui,F,FLEURANCE,Cécile,13/08/1972,Non +49,Maine-et-Loire,05,5ème circonscription,5,51,M,LIGOT,Jacquelin,02/03/1962,DVD,Profession libérale,Non,M,CESBRON,Richard,09/03/1977,Non +49,Maine-et-Loire,05,5ème circonscription,6,62,M,DEBARRE,Jean-Michel,07/09/1955,DVC,Profession libérale,Non,F,CORREC,Anaëlle,08/09/1987,Non +49,Maine-et-Loire,05,5ème circonscription,7,12,M,GUYARD,Frédéric,30/05/1960,DSV,Cadre administratif et commercial d'entreprise,Non,F,FOLLEZOU,Fiona,12/08/1995,Non +49,Maine-et-Loire,05,5ème circonscription,8,39,M,FUSIL,Hervé,18/08/1955,ECO,Ancien cadre,Non,F,MAREAU,Valérie,21/01/1976,Non +49,Maine-et-Loire,05,5ème circonscription,9,7,F,DE CAMPEAU,Sigline,30/03/1985,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MERLAUD,Lucie,06/07/1969,Non +49,Maine-et-Loire,06,6ème circonscription,1,26,M,LECLUSE,Pie-Louis,29/07/1998,RN,Ouvrier agricole,Non,M,GOURMAUD,Steeve,05/05/1990,Non +49,Maine-et-Loire,06,6ème circonscription,2,55,F,AMGHAR,Tassadit,09/10/1969,NUP,"Professeur, profession scientifique",Non,M,VERNEAU,Eric,01/11/1971,Non +49,Maine-et-Loire,06,6ème circonscription,3,25,F,DURAND,Marie,11/05/1997,REC,Ingénieur et cadre technique d'entreprise,Non,M,FAVRE,Antoine,13/06/2002,Non +49,Maine-et-Loire,06,6ème circonscription,4,27,F,DUBRE CHIRAT,Nicole,18/12/1951,ENS,Cadre de la fonction publique,Oui,M,BRUGÈRE,Alexandre,05/07/1987,Non +49,Maine-et-Loire,06,6ème circonscription,5,40,M,CIOFI,Bruno,21/01/1969,DIV,Agriculteur sur petite exploitation,Non,F,CHIMIER,Marie,21/06/1987,Non +49,Maine-et-Loire,06,6ème circonscription,6,61,F,HUMEAU,Bernadette,19/01/1961,DVC,Agriculteur sur petite exploitation,Non,M,GUILLOT,Cyrille,18/02/1969,Non +49,Maine-et-Loire,06,6ème circonscription,7,52,F,GAILLARD,Geneviève,22/05/1959,LR,Ancien cadre,Non,M,PICHERIT,Pierre,02/10/1973,Non +49,Maine-et-Loire,06,6ème circonscription,8,47,F,CREVENNA,Lydie,13/04/1966,DSV,Profession libérale,Non,M,OLIVIER,David,26/04/1974,Non +49,Maine-et-Loire,06,6ème circonscription,9,41,M,LE DIAGON,Yann,24/12/1976,DXG,"Professeur, profession scientifique",Non,F,KHRAIEF,Lamya,11/06/1979,Non +49,Maine-et-Loire,07,7ème circonscription,1,15,M,CRESPIN,Régis,09/05/1959,DSV,Artisan,Non,F,MASSE,Christelle,11/07/1971,Non +49,Maine-et-Loire,07,7ème circonscription,2,50,M,GUERBAA,Abderrazak,01/05/1966,ECO,Cadre administratif et commercial d'entreprise,Non,F,TROUCHE,Irène,05/08/1937,Non +49,Maine-et-Loire,07,7ème circonscription,3,53,M,BOLO,Philippe,25/03/1967,ENS,Ingénieur et cadre technique d'entreprise,Oui,F,MAUSSION,Patricia,23/09/1968,Non +49,Maine-et-Loire,07,7ème circonscription,4,43,M,JOUANNEAU,Guillaume,27/03/1988,NUP,Ingénieur et cadre technique d'entreprise,Non,F,MEZIERE-FORTIN,Marie,07/10/1979,Non +49,Maine-et-Loire,07,7ème circonscription,5,9,F,LAHONDÈS,Aurore,11/07/1997,RN,Cadre de la fonction publique,Non,M,METAYER,Eric,28/07/1959,Non +49,Maine-et-Loire,07,7ème circonscription,6,57,M,TROTTIER,Stéphane,20/06/1966,DVD,Chauffeur,Non,M,DE MONTMARIN,Hubert,07/03/1944,Non +49,Maine-et-Loire,07,7ème circonscription,7,44,F,L'HUILLIER,Céline,10/09/1975,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,CHOUETTE,Luc,15/12/1965,Non +49,Maine-et-Loire,07,7ème circonscription,8,42,F,MAZIÈRES,Barbara,10/02/1972,REC,Cadre administratif et commercial d'entreprise,Non,M,VINTRAS,Benoit,26/12/1984,Non +50,Manche,01,1ère circonscription,1,5,M,LOUICHE,Jérôme,05/11/1976,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,BROCHEN,Cécile,06/05/1970,Non +50,Manche,01,1ère circonscription,2,34,M,HÉDOUIN,Guillaume,18/03/1976,NUP,Cadre de la fonction publique,Non,F,DAVID,Amélie,26/05/1980,Non +50,Manche,01,1ère circonscription,3,39,M,PASQUIER,François,16/02/1967,DSV,Cadre de la fonction publique,Non,F,CHAMARD,Annie,20/02/1952,Non +50,Manche,01,1ère circonscription,4,6,M,JAN DE LAGILLARDAIE,Victor,15/04/2000,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,F,DUREL,Michèle,21/12/1998,Non +50,Manche,01,1ère circonscription,5,16,M,PIEN,Laurent,08/08/1968,ENS,Cadre de la fonction publique,Non,F,LEBOUTEILLER,Mélanie,27/09/1985,Non +50,Manche,01,1ère circonscription,6,36,M,SIMON,Franck,21/07/1964,RN,Chauffeur,Non,F,DURAND,Catherine,11/10/1977,Non +50,Manche,01,1ère circonscription,7,25,F,LEWI,Olivia,27/01/1973,DXG,"Professeur, profession scientifique",Non,F,LEMIÈRE,Françoise,23/01/1964,Non +50,Manche,01,1ère circonscription,8,11,M,GOSSELIN,Philippe,23/10/1966,LR,"Professeur, profession scientifique",Oui,F,CASTELEIN,Christèle,30/11/1967,Non +50,Manche,01,1ère circonscription,9,37,M,POISSON,Jacques,27/09/1971,DVD,Agriculteur sur moyenne exploitation,Non,F,DE PONCINS,Martine,17/04/1946,Non +50,Manche,02,2ème circonscription,1,14,F,LAIR,Anne-Marie,18/02/1969,ECO,Profession libérale,Non,M,PIERRET,José,14/08/1968,Non +50,Manche,02,2ème circonscription,2,29,M,JOURNEL,Thomas,09/12/1976,DVG,Employé de commerce,Non,F,LAMBERT,France,17/02/1954,Non +50,Manche,02,2ème circonscription,3,35,M,BAZINCOURT,Cédric,30/11/1969,DSV,Commerçant et assimilé,Non,M,MAFIODO,Jordan,27/05/1994,Non +50,Manche,02,2ème circonscription,4,3,M,SORRE,Bertrand,08/05/1965,ENS,"Professeur des écoles, instituteur et assimilé",Oui,F,FILLÂTRE,Marie-Hélène,08/02/1959,Non +50,Manche,02,2ème circonscription,5,30,M,GRIMBERT,Patrick,28/10/1956,NUP,Ancien cadre,Non,F,LESCURE,Clarisse,19/09/1971,Non +50,Manche,02,2ème circonscription,6,2,M,FÉRET,Denis,14/12/1961,REC,Artisan,Non,M,POINCHEVAL,Quentin,06/03/1998,Non +50,Manche,02,2ème circonscription,7,20,F,TRAN,Mai,14/08/1972,DXG,"Professeur, profession scientifique",Non,F,MARIETTE,Annie,14/10/1960,Non +50,Manche,02,2ème circonscription,8,26,F,GOUZIEN,Valérie,30/06/1966,ECO,Ancienne profession intermédiaire,Non,M,HÈME,Jean-François,10/11/1948,Non +50,Manche,02,2ème circonscription,9,4,F,KURDZIEL,Marie-Françoise,26/01/1958,RN,Ancien employé,Non,F,IGNATOV,Kamelia,14/04/1957,Non +50,Manche,02,2ème circonscription,10,17,F,FILUZEAU,Florence,25/04/1969,ECO,Commerçant et assimilé,Non,M,MASSIEU,Jonas,07/01/1988,Non +50,Manche,02,2ème circonscription,11,38,M,TOULLEC DUFOUR,Erwan,30/01/1975,LR,Cadre administratif et commercial d'entreprise,Non,F,BARENTON GUILLAS,Julie,14/04/1975,Non +50,Manche,03,3ème circonscription,1,12,M,TRAVERT,Stéphane,12/10/1969,ENS,Cadre administratif et commercial d'entreprise,Oui,F,LECONTE,Valérie,07/12/1965,Non +50,Manche,03,3ème circonscription,2,15,F,DANIEL,Nadège,03/12/1962,REC,Cadre administratif et commercial d'entreprise,Non,M,DEUVE,Richard,18/03/1953,Non +50,Manche,03,3ème circonscription,3,23,F,DERREY,Laurence,28/10/1964,DXG,"Professeur, profession scientifique",Non,M,AYOUTI,Mansour,22/11/1957,Non +50,Manche,03,3ème circonscription,4,10,F,MASSON,Carmen,10/11/1946,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,REGNOUF,Emmanuel,17/04/1958,Non +50,Manche,03,3ème circonscription,5,13,F,VEROVE,Gaëlle,15/11/1972,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,BOUTON,William,04/05/1969,Non +50,Manche,03,3ème circonscription,6,22,M,LAVALLEY,Stéphane,26/09/1976,DVC,Profession intermédiaire administrative de la fonction publique,Non,M,HAREL,Sébastien,28/11/1969,Non +50,Manche,03,3ème circonscription,7,24,F,RYST,Agnès,05/06/1962,ECO,Cadre administratif et commercial d'entreprise,Non,F,BRIERE HAQUET,Alice,10/02/1979,Non +50,Manche,03,3ème circonscription,8,21,F,CAILLAUX,Marie-Agnès,29/11/1958,DSV,Ancien employé,Non,M,BRICQ,Christophe,28/10/1960,Non +50,Manche,03,3ème circonscription,9,27,M,BINET,Jean-René,21/10/1971,LR,"Professeur, profession scientifique",Non,F,MARTIN-MORVAN,Véronique,20/07/1966,Non +50,Manche,04,4ème circonscription,1,32,M,CALLUAUD,Nicolas,27/07/1989,UDI,Profession libérale,Non,M,HELIE,Lionel,12/06/1957,Non +50,Manche,04,4ème circonscription,2,8,M,DA CRUZ-LEGELEUX,Yann,20/03/1987,REC,Technicien,Non,F,SVARTMAN,Aurore,10/04/1981,Non +50,Manche,04,4ème circonscription,3,33,F,DAUGE,Marine,03/11/1984,DVD,Agriculteur sur petite exploitation,Non,M,ROSTAND,Benoît,02/01/1981,Non +50,Manche,04,4ème circonscription,4,31,M,BENRAMDANE,Abdelkader,09/01/1963,DXG,Ouvrier non qualifié de type industriel,Non,F,FOUQUES-GAUTIER,Salomé,28/10/2000,Non +50,Manche,04,4ème circonscription,5,19,F,PIC,Anna,04/06/1978,NUP,"Professeur, profession scientifique",Non,F,PLAINEAU,Nadège,12/08/1970,Non +50,Manche,04,4ème circonscription,6,18,M,FOUACE,Eric,17/04/1952,RN,Cadre de la fonction publique,Non,M,ADELINE,Nicolas,01/02/1976,Non +50,Manche,04,4ème circonscription,7,9,F,KRIMI,Sonia,20/12/1982,ENS,Ingénieur et cadre technique d'entreprise,Oui,M,DESQUESNES,Olivier,05/10/1970,Non +50,Manche,04,4ème circonscription,8,7,F,JEAN,Laure,05/01/1994,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,HUARD,Nathalie,07/08/1977,Non +50,Manche,04,4ème circonscription,9,28,F,MARGUERITTE,Camille,20/12/1981,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,JEAN,Antoine,25/09/1992,Non +51,Marne,01,1ère circonscription,1,24,M,MARÉCHAL,Olivier,22/03/1983,DIV,Ingénieur et cadre technique d'entreprise,Non,F,LAMBERT,Julie,16/05/1981,Non +51,Marne,01,1ère circonscription,2,15,M,BENADASSI,Florian,29/10/1992,REC,"Contremaître, agent de maîtrise",Non,M,KESTEL,Josias,29/07/1996,Non +51,Marne,01,1ère circonscription,3,33,M,ALBERTINI,Xavier,28/01/1970,ENS,Profession libérale,Non,F,HANS,Stella,04/12/1964,Non +51,Marne,01,1ère circonscription,4,16,F,BOURGOIN,Evelyne,04/05/1961,NUP,Profession libérale,Non,F,CHATELAIN-KHECHACHE,Lila,02/10/1970,Non +51,Marne,01,1ère circonscription,5,42,M,PARIS,Roger,03/05/1946,RN,Chef d'entreprise de 10 salariés ou plus,Non,F,GRIFFIN,Patricia,10/11/1970,Non +51,Marne,01,1ère circonscription,6,27,F,BRUNHOSO,Céline,02/05/1977,ECO,"Professeur des écoles, instituteur et assimilé",Non,M,DANCOURT,Laurent,23/10/1959,Non +51,Marne,01,1ère circonscription,7,19,M,VARLET,Vincent,24/01/1978,DXG,Profession intermédiaire administrative de la fonction publique,Non,F,BUTTEZ,Marianne,26/01/1965,Non +51,Marne,01,1ère circonscription,8,38,M,DEJOIE,Corentin,29/11/2002,DSV,Employé civil et agent de service de la fonction publique,Non,M,BERGERON,Pierre,19/09/1996,Non +51,Marne,01,1ère circonscription,9,6,F,BEAUVAIS,Valérie,08/03/1963,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,LAUDY,Franck,13/10/1969,Non +51,Marne,02,2ème circonscription,1,26,F,KURIC,Aina,15/05/1987,DVC,"Ancien artisan, commerçant, chef d'entreprise",Oui,M,JACQUET,Franck,27/03/1968,Non +51,Marne,02,2ème circonscription,2,36,F,MILLER,Laure,25/12/1983,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,SALMON,Philippe,03/05/1952,Non +51,Marne,02,2ème circonscription,3,5,M,PHILIPOT,Jean-Claude,06/05/1951,REC,Policier et militaire,Non,M,PÉRIN,Freddy,17/06/1985,Non +51,Marne,02,2ème circonscription,4,40,F,FRIGOUT,Anne-Sophie,11/04/1971,RN,"Professeur, profession scientifique",Non,M,VANDAMME,Quentin,09/07/1995,Non +51,Marne,02,2ème circonscription,5,29,M,ROSE,Thomas,05/05/1968,DXG,"Professeur, profession scientifique",Non,F,REHMET,Marlène,18/09/1984,Non +51,Marne,02,2ème circonscription,6,41,M,LAVENTURE,Werner,30/06/1987,DSV,Profession intermédiaire administrative de la fonction publique,Non,F,MEUNIER,Mélissa,02/02/1995,Non +51,Marne,02,2ème circonscription,7,35,F,SAYOUD,Nesma,22/05/1985,ECO,Profession intermédiaire de la santé et du travail social,Non,M,BAYART,Jean-Claude,03/03/1938,Non +51,Marne,02,2ème circonscription,8,45,M,LANG,Stéphane,12/04/1971,LR,Artisan,Non,M,PENNAFORTE,Timothé,05/06/1992,Non +51,Marne,02,2ème circonscription,9,31,F,MEGUENINE,Lynda,10/01/1976,NUP,Cadre de la fonction publique,Non,M,GEORGES,Michel,10/04/1952,Non +51,Marne,03,3ème circonscription,1,28,M,JACQUET,Antoine,21/10/1972,LR,Commerçant et assimilé,Non,M,LAGARDE,Valentin,09/08/1996,Non +51,Marne,03,3ème circonscription,2,9,F,MARC,Jennifer,22/07/1985,RN,Agriculteur sur petite exploitation,Non,M,LAMBERT,Christophe,30/09/1970,Non +51,Marne,03,3ème circonscription,3,8,M,ADNOT,Thomas,03/03/1976,REC,Commerçant et assimilé,Non,M,PERRIN,Maxime,19/06/1982,Non +51,Marne,03,3ème circonscription,4,12,F,JABBOUR,Johanna,25/05/1987,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PFEMMERT,Gaëtan,14/04/1993,Non +51,Marne,03,3ème circonscription,5,20,F,CORMERAIS,Charlotte,31/12/1981,DXG,"Professeur, profession scientifique",Non,F,DALBARET,Laurence,19/10/1964,Non +51,Marne,03,3ème circonscription,6,13,M,DEBARLE,Bertrand,24/01/1972,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,QUENTIN,Elodie,12/01/1974,Non +51,Marne,03,3ème circonscription,7,25,F,BERTHELEMY,Chantal,25/11/1964,NUP,Profession intermédiaire de la santé et du travail social,Non,M,LATTUADA,Cedric,28/08/1975,Non +51,Marne,03,3ème circonscription,8,34,F,D'ORGEVILLE,Sonia,28/07/1977,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,DA SILVA,Isabelle,01/01/1970,Non +51,Marne,03,3ème circonscription,9,18,M,GIRARDIN,Eric,12/02/1962,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,F,ROUILLERE,Sylvie,02/05/1964,Non +51,Marne,04,4ème circonscription,1,21,M,GOSSEAU,Laurent,22/12/1967,DXG,Ouvrier qualifié de type industriel,Non,F,GISCLOUX,Valérie,04/04/1966,Non +51,Marne,04,4ème circonscription,2,14,M,CRUZ,Rémy,17/03/1962,ECO,Ancienne profession intermédiaire,Non,M,SOMME,Christian,06/07/1970,Non +51,Marne,04,4ème circonscription,3,37,M,PICART,Pascal,12/09/1961,ECO,Employé civil et agent de service de la fonction publique,Non,F,LECLERCQ-CHAUDET,Colette,24/03/1942,Non +51,Marne,04,4ème circonscription,4,39,M,DEVAUX,Jean-Louis,30/09/1957,LR,Agriculteur sur grande exploitation,Non,F,PICOT,Marie-Thérèse,09/12/1962,Non +51,Marne,04,4ème circonscription,5,17,M,SMITH,Anthony,03/04/1975,NUP,Cadre de la fonction publique,Non,F,GUYOT,Agnes,10/07/1968,Non +51,Marne,04,4ème circonscription,6,2,F,MAGNIER,Lise,31/12/1984,ENS,Cadre de la fonction publique,Oui,F,GUILLAUME,Emmanuelle,12/01/1978,Non +51,Marne,04,4ème circonscription,7,4,M,BESSON,Thierry,02/04/1958,RN,Ancien cadre,Non,M,CHAPRON,Alain,09/04/1965,Non +51,Marne,04,4ème circonscription,8,47,M,KUZMANOVIC,Georges,16/05/1973,DIV,Profession libérale,Non,F,HOFFMANN,Garance,20/10/2000,Non +51,Marne,04,4ème circonscription,9,32,F,THENANCE,Irma,20/03/1971,DSV,Employé civil et agent de service de la fonction publique,Non,M,CLEMENT,Nicolas,10/04/1984,Non +51,Marne,04,4ème circonscription,10,46,F,BRY,Emilie Laurence,11/07/2003,REC,"Elève, étudiant",Non,M,LOIZILLON,Maxence,23/01/2003,Non +51,Marne,05,5ème circonscription,1,23,M,RENOUD,Emmanuel,04/08/1989,REC,Cadre de la fonction publique,Non,M,MERZEAUD,Paul-Henri,17/01/1994,Non +51,Marne,05,5ème circonscription,2,10,F,LE LURON,Karine,17/11/1972,NUP,Profession libérale,Non,M,LAURENT,Maxence,24/03/1992,Non +51,Marne,05,5ème circonscription,3,11,M,THIONNET,Pierre,19/01/1994,RN,Profession intermédiaire administrative de la fonction publique,Non,M,GUÉRIN,Julien,17/12/1995,Non +51,Marne,05,5ème circonscription,4,43,F,MARTINS,Lucie,29/03/1988,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,HUAT,Catherine,06/02/1954,Non +51,Marne,05,5ème circonscription,5,3,M,DE COURSON,Charles,02/04/1952,DVD,Ancien cadre,Oui,M,MIRGODIN,Sebastien,24/11/1992,Non +51,Marne,05,5ème circonscription,6,30,F,DE LA ROCHÈRE,Marie-Amélie,02/06/1981,DSV,Cadre de la fonction publique,Non,F,ERMACORA,Florence,26/03/1978,Non +51,Marne,05,5ème circonscription,7,7,F,PESTRE,Isabelle,02/08/1962,ENS,Agriculteur sur moyenne exploitation,Non,M,CLAUDOTTE,Philippe,03/05/1975,Non +51,Marne,05,5ème circonscription,8,22,F,BASTIEN,Joelle,10/12/1954,DXG,Ancien ouvrier,Non,M,DICHANT,Jerome,11/11/1971,Non +51,Marne,05,5ème circonscription,9,44,M,BRUNEL,Camille,16/03/1986,ECO,"Profession de l'information, des arts et des spectacles",Non,F,MEROUR,Valérie,08/08/1973,Non +52,Haute-Marne,01,1ère circonscription,1,15,F,ABBA,Bérangère,22/10/1976,ENS,Cadre de la fonction publique,Non,M,MARTINELLI,Stéphane,21/02/1972,Non +52,Haute-Marne,01,1ère circonscription,2,8,M,CAVIEZEL,Théo,28/01/1997,DIV,Profession libérale,Non,M,MARET,Valentin,04/05/1997,Non +52,Haute-Marne,01,1ère circonscription,3,14,M,ROSSIGNOL,Georges,17/11/1946,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,F,JAROSZ,Roseline,02/06/1955,Non +52,Haute-Marne,01,1ère circonscription,4,17,F,VENANCIO,Eloïse,04/06/1988,DVG,Profession intermédiaire de la santé et du travail social,Non,M,ANGERS,Jean-Paul,04/08/1960,Non +52,Haute-Marne,01,1ère circonscription,5,2,M,DEMAY,Sylvain,28/04/1978,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,BOURGEONNIER,Francine,20/05/1956,Non +52,Haute-Marne,01,1ère circonscription,6,10,F,DELONG,Sophie,17/07/1957,LR,"Professeur, profession scientifique",Non,M,ROYER,Antoine,01/10/1998,Non +52,Haute-Marne,01,1ère circonscription,7,5,F,LECLERC,Michèle,28/07/1953,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,PICHON,Valentin,15/04/1995,Non +52,Haute-Marne,01,1ère circonscription,8,4,F,LEBLANC-GABRIEL,Jocelyne,16/04/1969,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,ZAMOURI,Bahi,26/07/1970,Non +52,Haute-Marne,01,1ère circonscription,9,3,F,DE DINECHIN,Bénédicte,05/09/1969,REC,Profession libérale,Non,F,PASCAL,Marthe-Marie,25/12/2002,Non +52,Haute-Marne,01,1ère circonscription,10,13,M,BENTZ,Christophe,04/07/1987,RN,"Professeur, profession scientifique",Non,F,GRAY,Hélène,14/04/1980,Non +52,Haute-Marne,02,2ème circonscription,1,7,M,CORNUT-GENTILLE,François,22/05/1958,LR,Ancien cadre,Oui,M,MARASI,Etienne,27/02/1978,Non +52,Haute-Marne,02,2ème circonscription,2,12,F,DAVAL,Déborah,23/12/1983,ENS,"Professeur, profession scientifique",Non,M,KARATAY,Muzaffer,16/01/1981,Non +52,Haute-Marne,02,2ème circonscription,3,19,M,NOVAC,Philippe,28/07/1953,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,NÉAULT-VAN SPEYBROECK,Azèle,15/11/1995,Non +52,Haute-Marne,02,2ème circonscription,4,16,F,LETTRÉE,Anne,30/01/1951,REC,Profession libérale,Non,M,MULLER,Patrick,19/05/1955,Non +52,Haute-Marne,02,2ème circonscription,5,9,F,VIOT,Ingrid,11/04/1983,NUP,Profession intermédiaire de la santé et du travail social,Non,M,GONZALEZ,Edouard,25/10/1991,Non +52,Haute-Marne,02,2ème circonscription,6,6,F,ROBERT-DEHAULT,Laurence,17/01/1964,RN,Profession libérale,Non,M,GAUTHIER,Eric,31/12/1960,Non +52,Haute-Marne,02,2ème circonscription,7,18,F,VALLÉE,Marie-Agnès,27/04/1959,DSV,Ancien cadre,Non,M,CONDI,Jean-Jacques,02/09/1959,Non +52,Haute-Marne,02,2ème circonscription,8,11,M,PRUM,Justin,21/03/1984,DXG,"Professeur, profession scientifique",Non,F,HALIN,Anne,17/03/1978,Non +53,Mayenne,01,1ère circonscription,1,20,M,MAILLARD,Alexandre,07/02/1995,LR,"Professeur des écoles, instituteur et assimilé",Non,F,ROUSSEAU,Nathalie,12/11/1975,Non +53,Mayenne,01,1ère circonscription,2,22,M,GAROT,Guillaume,29/05/1966,NUP,Cadre de la fonction publique,Oui,F,FOUGERAY,Isabelle,26/05/1975,Non +53,Mayenne,01,1ère circonscription,3,19,M,RIVES,Siegfried,13/04/1980,DSV,Technicien,Non,F,IDOUX,Yvette,26/03/1953,Non +53,Mayenne,01,1ère circonscription,4,3,M,ROMIER,Fabrice,24/02/1972,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,GERMAIN,Nadine,17/02/1963,Non +53,Mayenne,01,1ère circonscription,5,24,M,SICOT,Cédric,31/01/1969,DSV,"Profession de l'information, des arts et des spectacles",Non,M,GAUTIER,Pascal,03/06/1963,Non +53,Mayenne,01,1ère circonscription,6,21,F,MOTTIER,Béatrice,08/10/1969,ENS,Profession libérale,Non,M,BESSON,Rémy,20/04/1994,Non +53,Mayenne,01,1ère circonscription,7,6,F,ROCTON,Sandra,07/12/1979,RN,Profession intermédiaire de la santé et du travail social,Non,M,BENOIST,Bryan,31/12/1996,Non +53,Mayenne,01,1ère circonscription,8,2,M,SCHLIENGER,Hugues,15/10/1983,REC,Ingénieur et cadre technique d'entreprise,Non,F,LEFORT,Sophie,08/03/1957,Non +53,Mayenne,02,2ème circonscription,1,17,M,D'HERBAIS,Pierre,23/07/1987,REC,Cadre administratif et commercial d'entreprise,Non,M,BINET,Didier,08/10/1958,Non +53,Mayenne,02,2ème circonscription,2,18,M,LANGOUET,Christophe,28/08/1965,DVC,Cadre administratif et commercial d'entreprise,Non,F,DASSE,Marie Line,29/01/1959,Non +53,Mayenne,02,2ème circonscription,3,5,M,BOISSEAU,Grégory,15/10/1978,NUP,Employé civil et agent de service de la fonction publique,Non,F,CHAUDRON,Camille,27/12/1989,Non +53,Mayenne,02,2ème circonscription,4,12,M,PLACE,Jean-Luc,19/04/1949,DXG,Ancienne profession intermédiaire,Non,F,LE MEUR,Chantal,25/10/1957,Non +53,Mayenne,02,2ème circonscription,5,15,M,BAYLE DE JESSE,Jean,10/06/1948,DSV,Ancien cadre,Non,M,CHIVERT,Eric,07/11/1968,Non +53,Mayenne,02,2ème circonscription,6,8,M,CADENAS,Jean-Michel,13/10/1953,RN,Cadre de la fonction publique,Non,F,AMIEL,Marie-Aude,02/02/1959,Non +53,Mayenne,02,2ème circonscription,7,7,F,BANNIER,Géraldine,22/11/1979,ENS,"Professeur, profession scientifique",Oui,F,DEROUET,Josiane,04/04/1957,Non +53,Mayenne,02,2ème circonscription,8,25,F,DIRSON,Sophie,21/07/1985,LR,Profession intermédiaire de la santé et du travail social,Non,M,MARTEAU,Florian,15/03/1989,Non +53,Mayenne,03,3ème circonscription,1,16,F,DE GRANDMAISON,Amélie,13/01/1999,REC,Profession libérale,Non,M,LE MAREC,Yoann,10/05/1999,Non +53,Mayenne,03,3ème circonscription,2,10,F,DETAIS,Marion,31/05/1983,NUP,Employé administratif d'entreprise,Non,M,HUBERT,Alban Paul Andre,03/09/1983,Non +53,Mayenne,03,3ème circonscription,3,11,F,BELL,Annie,14/12/1945,RN,Employé administratif d'entreprise,Non,M,BONNEAU,Ythier,31/03/1968,Non +53,Mayenne,03,3ème circonscription,4,23,F,GARNIER,Sonia,08/03/1974,ECO,Profession intermédiaire de la santé et du travail social,Non,F,GARNIER,Maryline,28/01/1972,Non +53,Mayenne,03,3ème circonscription,5,9,F,AMELIN,Martine,27/06/1956,DXG,Ancienne profession intermédiaire,Non,F,POPOWICI,Michelle,25/09/1950,Non +53,Mayenne,03,3ème circonscription,6,13,M,FAVENNEC,Yannick,12/08/1958,ENS,Ancien cadre,Oui,M,LESTAS,Bruno,27/06/1960,Non +53,Mayenne,03,3ème circonscription,7,14,F,CHARTIER,Claudine,26/03/1960,DSV,Ancien employé,Non,M,BULOT,Benoit,20/09/1983,Non +54,Meurthe-et-Moselle,01,1ère circonscription,1,34,M,HENNEQUIN,Laurent,28/12/1959,REC,Profession libérale,Non,F,MASSON,Isabelle,07/05/1960,Non +54,Meurthe-et-Moselle,01,1ère circonscription,2,32,F,GRANDJEAN,Carole,18/05/1983,ENS,Cadre administratif et commercial d'entreprise,Oui,M,GUILLEMARD,Philippe,28/04/1975,Non +54,Meurthe-et-Moselle,01,1ère circonscription,3,52,F,BRIN,Claudine,15/01/1962,LR,Cadre de la fonction publique,Non,M,CHAUFER,Philippe,15/12/1969,Non +54,Meurthe-et-Moselle,01,1ère circonscription,4,58,F,LOMBARDIA,Lila,03/12/2001,DIV,"Elève, étudiant",Non,M,BIETRY,Samuel,28/07/1987,Non +54,Meurthe-et-Moselle,01,1ère circonscription,5,47,M,L'HUILLIER,Pascal,03/05/1950,DSV,Ancien cadre,Non,F,LECLERC,Tyna,13/09/2002,Non +54,Meurthe-et-Moselle,01,1ère circonscription,6,4,F,NIMSGERN,Christiane,02/08/1955,DXG,Ancien employé,Non,M,MAHMOUDI,Mohamed,10/08/1967,Non +54,Meurthe-et-Moselle,01,1ère circonscription,7,35,M,POTIER,Frank-Olivier,01/08/1974,DVD,Profession intermédiaire administrative de la fonction publique,Non,F,CARRARO,Chantal,13/02/1957,Non +54,Meurthe-et-Moselle,01,1ère circonscription,8,63,M,TOLLÉNAÈRE,Eric,28/11/1956,DVG,"Professeur, profession scientifique",Non,F,LAÏBI,Mombolassi,02/10/1998,Non +54,Meurthe-et-Moselle,01,1ère circonscription,9,55,F,NORTON,Sophie,12/03/1950,ECO,"Profession de l'information, des arts et des spectacles",Non,M,LABAT,Joe,20/10/1954,Non +54,Meurthe-et-Moselle,01,1ère circonscription,10,66,M,BUCHY,Armand,04/08/1972,ECO,Employé administratif d'entreprise,Non,F,MARTINERIE,Marie,30/03/1980,Non +54,Meurthe-et-Moselle,01,1ère circonscription,11,25,M,JOUIRA,Nordine,09/07/1981,NUP,Profession intermédiaire de la santé et du travail social,Non,F,VIDAL,Lucile,23/06/1994,Non +54,Meurthe-et-Moselle,01,1ère circonscription,12,18,F,MELET,Patricia,15/09/1968,RN,Profession intermédiaire administrative de la fonction publique,Non,M,CURTI,Gwendal,02/04/1997,Non +54,Meurthe-et-Moselle,02,2ème circonscription,1,15,M,MAILLOT,Olivier,27/06/1956,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,F,MARTIN,Corinne,17/05/1966,Non +54,Meurthe-et-Moselle,02,2ème circonscription,2,5,M,LACREUSE,Jacques,05/01/1952,DXG,Ancienne profession intermédiaire,Non,M,PELLERIN,Alain,29/12/1948,Non +54,Meurthe-et-Moselle,02,2ème circonscription,3,40,M,LACRESSE,Emmanuel,14/07/1971,ENS,Cadre de la fonction publique,Non,F,SADOUNE,Sonia,25/05/1972,Non +54,Meurthe-et-Moselle,02,2ème circonscription,4,54,F,AJDIR,Nora,02/12/1979,DVG,Commerçant et assimilé,Non,M,AJDIR,Mohamed,31/12/1975,Non +54,Meurthe-et-Moselle,02,2ème circonscription,5,44,M,PEZZETTA,Patrick,18/08/1959,ECO,Cadre de la fonction publique,Non,F,LABARRE,Gillot Aurelie,16/05/1985,Non +54,Meurthe-et-Moselle,02,2ème circonscription,6,39,M,HABLOT,Stéphane,30/06/1965,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,AL KATTANI,Marie,08/08/1986,Non +54,Meurthe-et-Moselle,02,2ème circonscription,7,10,M,DAMAMME,Eric,17/12/1983,DVD,Cadre de la fonction publique,Non,F,VICENTE,Ana,01/07/1993,Non +54,Meurthe-et-Moselle,02,2ème circonscription,8,19,M,BOUSSUGE,Anselme,16/06/2000,REC,"Elève, étudiant",Non,F,DE SAULIEU,Camille,12/05/1999,Non +54,Meurthe-et-Moselle,02,2ème circonscription,9,56,M,FLAUS,Florian,07/07/1999,ECO,Employé administratif d'entreprise,Non,M,FLAUS,Kévin,14/08/1996,Non +54,Meurthe-et-Moselle,02,2ème circonscription,10,68,M,MANFREDI,Vincent,28/04/1986,UDI,"Profession de l'information, des arts et des spectacles",Non,F,DELUCE,Marie-Claude,05/08/1950,Non +54,Meurthe-et-Moselle,03,3ème circonscription,1,61,M,BEAUDOUIN,Xavier,06/11/1972,REG,Ingénieur et cadre technique d'entreprise,Non,M,RODRIGUES,Flavien,08/01/1992,Non +54,Meurthe-et-Moselle,03,3ème circonscription,2,22,M,BOURY,Xavier,26/06/1953,DXG,Chauffeur,Non,F,HEILLIETTE,Yolande,11/11/1956,Non +54,Meurthe-et-Moselle,03,3ème circonscription,3,27,M,ROSSKOPF,Nicolas,18/11/1971,REC,"Professeur, profession scientifique",Non,F,CHAPELAIN,Mathilde,01/02/2002,Non +54,Meurthe-et-Moselle,03,3ème circonscription,4,26,M,SERVAGI,Mathieu,18/06/1986,LR,Profession libérale,Non,F,THISSE,Julie,03/07/1986,Non +54,Meurthe-et-Moselle,03,3ème circonscription,5,50,M,HERBAYS,Francis,06/05/1963,DVG,Cadre administratif et commercial d'entreprise,Non,F,PIERRAT,Christine,28/07/1971,Non +54,Meurthe-et-Moselle,03,3ème circonscription,6,57,F,ETIENNE,Martine,22/06/1956,NUP,Ancien employé,Non,M,ZOLFO,Patrice,13/06/1961,Non +54,Meurthe-et-Moselle,03,3ème circonscription,7,7,F,KRAL,Françoise,12/09/1961,DXG,Profession intermédiaire de la santé et du travail social,Non,F,CICOLARI,Laetitia,06/02/1991,Non +54,Meurthe-et-Moselle,03,3ème circonscription,8,17,F,REINERT,Eurydice,14/11/1969,DIV,"Professeur des écoles, instituteur et assimilé",Non,M,FENNICHE,Hugo,16/11/2003,Non +54,Meurthe-et-Moselle,03,3ème circonscription,9,13,F,DI REZZE,Muriel,20/04/1976,RN,Artisan,Non,M,HALFTERMEYER,Rémy,20/06/1995,Non +54,Meurthe-et-Moselle,03,3ème circonscription,10,21,F,FOLTZ,Véronique,19/12/1963,ECO,"Professeur, profession scientifique",Non,F,COLOMBO,Marie,04/04/1997,Non +54,Meurthe-et-Moselle,03,3ème circonscription,11,14,M,GERMINI,Matteo,13/11/2003,DIV,"Elève, étudiant",Non,M,BRUSCO,Mathis,04/04/2004,Non +54,Meurthe-et-Moselle,03,3ème circonscription,12,9,M,PALUSZKIEWICZ,Xavier,13/12/1972,ENS,Ancien cadre,Oui,F,DE MICHELI,Sylvie,01/09/1963,Non +54,Meurthe-et-Moselle,03,3ème circonscription,13,67,M,GRASSE,Frédéric,22/03/1962,DIV,"Professeur des écoles, instituteur et assimilé",Non,F,JACQUOT,Anne-Marie,18/03/1976,Non +54,Meurthe-et-Moselle,04,4ème circonscription,1,37,F,GEORGES,Lucy,09/12/1968,REC,"Professeur, profession scientifique",Non,M,AUBERTIN,Francis,23/03/1961,Non +54,Meurthe-et-Moselle,04,4ème circonscription,2,41,F,BERTOZZI BIEVELOT,Barbara,23/08/1971,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,HOUCHARD,Marie-Neige,08/12/1955,Non +54,Meurthe-et-Moselle,04,4ème circonscription,3,59,M,BOUGUERRA,Monir,11/12/1986,DIV,Chauffeur,Non,F,HARDI,Safa,16/06/1990,Non +54,Meurthe-et-Moselle,04,4ème circonscription,4,65,M,THIRIET,Rémi,04/05/1992,DVG,Employé civil et agent de service de la fonction publique,Non,M,POIRSON,Christian,23/10/1952,Non +54,Meurthe-et-Moselle,04,4ème circonscription,5,20,F,BILDE,Dominique,01/08/1953,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,FOURCHET,Robin,30/12/2003,Non +54,Meurthe-et-Moselle,04,4ème circonscription,6,43,F,MAILLOT,Corinne,23/06/1967,ECO,Cadre de la fonction publique,Non,F,GOUSSOT,Sophie,23/12/1971,Non +54,Meurthe-et-Moselle,04,4ème circonscription,7,7,M,BAZIN,Thibault,27/10/1984,LR,Ancien cadre,Oui,F,PAYEUR,Valérie,18/12/1970,Non +54,Meurthe-et-Moselle,04,4ème circonscription,8,30,F,THOMAS,Rachel,29/11/1967,ENS,Agriculteur sur petite exploitation,Non,M,KOESSLER,Laurent,04/05/1979,Non +54,Meurthe-et-Moselle,04,4ème circonscription,9,3,F,HEILLIETTE,Geneviève,01/12/1959,DXG,Ancien employé,Non,M,PIERRE,Sébastien,30/07/1972,Non +54,Meurthe-et-Moselle,04,4ème circonscription,10,64,M,RAVAILLER,Bertrand,25/12/1969,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,VANONI,Jason,29/07/1988,Non +54,Meurthe-et-Moselle,04,4ème circonscription,11,28,M,BIHAKI,Gregory,16/01/1981,DXG,"Professeur, profession scientifique",Non,F,LECOMTE,Clémence,25/02/1983,Non +54,Meurthe-et-Moselle,05,5ème circonscription,1,16,M,MORENVILLIER,Philippe,06/12/1965,RN,Commerçant et assimilé,Non,F,MOREL,Stessy,25/11/1998,Non +54,Meurthe-et-Moselle,05,5ème circonscription,2,49,F,BRET,Marika,27/12/1962,ENS,Cadre administratif et commercial d'entreprise,Non,M,BONNIN,Pierre,09/03/1960,Non +54,Meurthe-et-Moselle,05,5ème circonscription,3,33,F,RICARD,Julie,14/12/1996,REC,"Professeur des écoles, instituteur et assimilé",Non,M,BRETON,Gaëtan,14/05/1999,Non +54,Meurthe-et-Moselle,05,5ème circonscription,4,2,F,AUBERT,Miriam,04/03/1960,DXG,Ancien employé,Non,M,NEIS,Gérard,10/07/1956,Non +54,Meurthe-et-Moselle,05,5ème circonscription,5,48,F,PAINE,Corinne,13/10/1964,DSV,"Professeur des écoles, instituteur et assimilé",Non,M,LAGIER,Clément,27/01/1989,Non +54,Meurthe-et-Moselle,05,5ème circonscription,6,38,M,POTIER,Dominique,17/03/1964,DVG,Agriculteur sur moyenne exploitation,Oui,F,BARDOT,Audrey,28/05/1977,Non +54,Meurthe-et-Moselle,05,5ème circonscription,7,60,M,FRANÇOIS,Yannick,16/08/1983,LR,Profession libérale,Non,F,LUTZ,Marie-Angelique,17/08/1966,Non +54,Meurthe-et-Moselle,05,5ème circonscription,8,45,F,FAYAD,Sophia,16/10/1985,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,ASSANI,Nizari,18/05/1961,Non +54,Meurthe-et-Moselle,05,5ème circonscription,9,8,F,SCHILDER,Elisabeth,08/02/1966,ECO,Employé administratif d'entreprise,Non,M,SCHILDER,Xavier,08/06/1974,Non +54,Meurthe-et-Moselle,06,6ème circonscription,1,6,M,BARBIN,Dominique,17/03/1952,DXG,Ancien employé,Non,M,AUBERT,Lucien,01/05/1954,Non +54,Meurthe-et-Moselle,06,6ème circonscription,2,53,M,RICHERMOZ,Eric,26/09/1992,DSV,Cadre administratif et commercial d'entreprise,Non,M,CARBALLO,Romain,13/09/1993,Non +54,Meurthe-et-Moselle,06,6ème circonscription,3,42,M,TOPARSLAN,Ergün,11/03/1988,ENS,Ingénieur et cadre technique d'entreprise,Non,F,BELLUSSI,Brigitte,17/03/1961,Non +54,Meurthe-et-Moselle,06,6ème circonscription,4,11,M,BOULOGNE,Anthony,08/06/1993,RN,Cadre administratif et commercial d'entreprise,Non,F,RIBAU,Angelina,11/09/1974,Non +54,Meurthe-et-Moselle,06,6ème circonscription,5,36,F,AMANN,Jeanne,13/10/1956,REC,Ancien cadre,Non,M,DUBY,Sullyvan,30/10/2001,Non +54,Meurthe-et-Moselle,06,6ème circonscription,6,29,M,GEHBAUER,Xavier,26/01/1977,DXG,Employé civil et agent de service de la fonction publique,Non,F,BARBAUX,Orianne,21/12/2000,Non +54,Meurthe-et-Moselle,06,6ème circonscription,7,62,M,HEDIN,Olivier,29/01/1970,DVC,Ingénieur et cadre technique d'entreprise,Non,F,ZAVETTIERI,Laora,22/07/2002,Non +54,Meurthe-et-Moselle,06,6ème circonscription,8,24,M,COUPAYE,Xavier,02/03/1983,ECO,Technicien,Non,F,COUPAYE,Laëtitia,08/07/1984,Non +54,Meurthe-et-Moselle,06,6ème circonscription,9,23,F,FIAT,Caroline,28/01/1977,NUP,Profession intermédiaire de la santé et du travail social,Oui,M,HÉZARD,Julien,10/06/1982,Non +54,Meurthe-et-Moselle,06,6ème circonscription,10,12,M,RICHIER,Jonathan,17/05/1990,LR,Cadre administratif et commercial d'entreprise,Non,F,JOURDAN-CONGE,Nathalie,07/01/1968,Non +55,Meuse,01,1ère circonscription,1,20,M,PANCHER,Bertrand,05/06/1958,DVD,Chef d'entreprise de 10 salariés ou plus,Oui,F,HUEBER GODEY,Fabienne,03/01/1981,Non +55,Meuse,01,1ère circonscription,2,11,F,RAFFNER KIEFER,Sandrine,25/10/1972,ENS,Employé civil et agent de service de la fonction publique,Non,M,REYRE,Benoit,07/09/1951,Non +55,Meuse,01,1ère circonscription,3,23,M,GUCKERT,Olivier,16/03/1967,NUP,Cadre de la fonction publique,Non,F,PIASTA,Flavie,28/09/1985,Non +55,Meuse,01,1ère circonscription,4,18,M,CAILLE,Bruno,26/07/1970,REG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,WEBER,Aymerick,13/03/1992,Non +55,Meuse,01,1ère circonscription,5,22,F,BENSAID,Melika,28/01/1949,REG,Ancien employé,Non,M,ABOU HAMDAN,Hani,04/01/1977,Non +55,Meuse,01,1ère circonscription,6,17,F,MARIAGE,Sylvie,04/12/1947,DSV,Ancien cadre,Non,M,VOLKER,Patrick,08/09/1954,Non +55,Meuse,01,1ère circonscription,7,8,M,CHAPON,Arnaud,07/10/1968,REC,Employé civil et agent de service de la fonction publique,Non,F,DAVID,Isabelle,14/06/1969,Non +55,Meuse,01,1ère circonscription,8,9,F,GAUDINEAU,Brigitte,16/07/1958,RN,Profession libérale,Non,M,MAILFAIT,Marc,27/02/1963,Non +55,Meuse,01,1ère circonscription,9,5,F,THIÉBAUT-LAMY,Nathalie,08/02/1972,ECO,Cadre de la fonction publique,Non,F,REMY-THIÉBAUT,Elisabeth,13/05/1994,Non +55,Meuse,01,1ère circonscription,10,7,M,TYMEN,Blaise,15/11/1987,DXG,"Professeur, profession scientifique",Non,M,AUSSEL,Denis,03/06/1964,Non +55,Meuse,02,2ème circonscription,1,3,M,MENNESON,Michel,22/04/1959,REC,Cadre administratif et commercial d'entreprise,Non,M,ASSELBORN,Jean-Claude,25/03/1947,Non +55,Meuse,02,2ème circonscription,2,13,M,GALLIC,Martin,24/09/1991,DVC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,ROGIE,Marion,15/11/1990,Non +55,Meuse,02,2ème circonscription,3,19,M,LAFLOTTE,Johan,11/05/1989,NUP,Cadre de la fonction publique,Non,F,COLLINET-JUNG,Catherine,10/05/1975,Non +55,Meuse,02,2ème circonscription,4,25,M,DURET,Jean-Luc,19/11/1962,DVC,Profession libérale,Non,F,COLADO,Elisabeth,27/09/1948,Non +55,Meuse,02,2ème circonscription,5,10,F,GOULET,Florence,30/06/1961,RN,Cadre de la fonction publique,Non,F,GEORGE,Carine,16/08/1976,Non +55,Meuse,02,2ème circonscription,6,14,M,HAROS,Pascal,29/01/1975,DVG,Cadre de la fonction publique,Non,M,CAPUT,Christophe,02/09/1972,Non +55,Meuse,02,2ème circonscription,7,12,M,ADDENET,Jean-Marie,31/12/1954,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,MARQUET,Théophile,04/02/2002,Non +55,Meuse,02,2ème circonscription,8,4,M,BEDEL,Nicolas,25/01/1991,DSV,Employé de commerce,Non,F,MAHEY,Florie,03/03/1988,Non +55,Meuse,02,2ème circonscription,9,6,M,NORDEMANN,Pierre,22/01/1982,DXG,Ingénieur et cadre technique d'entreprise,Non,F,LAB,Amandine,14/12/1981,Non +55,Meuse,02,2ème circonscription,10,24,F,BOIS,Anne,05/01/1984,ENS,Cadre administratif et commercial d'entreprise,Non,M,MAGISSON,Robin,25/07/1997,Non +55,Meuse,02,2ème circonscription,11,21,M,DHYVERT,Yves,15/06/1952,ECO,Profession libérale,Non,F,LEMAIRE,Aline,24/04/1987,Non +55,Meuse,02,2ème circonscription,12,15,M,TESTI,Michel,26/08/1952,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,ROBERT,Margot-Sarah,14/01/2000,Non +56,Morbihan,01,1ère circonscription,1,25,F,LE HÉNANFF,Anne,22/07/1969,ENS,Commerçant et assimilé,Non,M,CRIAUD,Michel,03/08/1962,Non +56,Morbihan,01,1ère circonscription,2,66,F,RAMEL,Françoise,09/03/1964,REG,Ancienne profession intermédiaire,Non,M,LE FLOCH,Tristan,02/05/1957,Non +56,Morbihan,01,1ère circonscription,3,14,F,CROCI,Magali,29/09/1969,ECO,Employé de commerce,Non,M,ETIENNE,Gwenael,28/06/1963,Non +56,Morbihan,01,1ère circonscription,4,27,F,LE BARZ,Lydia Veronique Caroline,06/05/1979,RN,Ouvrier non qualifié de type artisanal,Non,M,LAMBERT,Laurent,04/01/1975,Non +56,Morbihan,01,1ère circonscription,5,3,M,PESCHANSKI,Marc,07/01/1952,DXG,"Professeur, profession scientifique",Non,M,WISSOCQ,Stéphane,05/04/1972,Non +56,Morbihan,01,1ère circonscription,6,40,M,CHEVREL,Franck,01/10/1967,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,NAVARRE,Michèle,09/01/1966,Non +56,Morbihan,01,1ère circonscription,7,62,M,FOUCAULT,Luc,17/05/1960,NUP,Cadre de la fonction publique,Non,F,BERTHIER,Sandrine,11/02/1978,Non +56,Morbihan,01,1ère circonscription,8,41,M,ROBEL,Paul,26/08/1954,DXG,Profession intermédiaire de la santé et du travail social,Non,F,ELAIN,Françoise,02/05/1970,Non +56,Morbihan,01,1ère circonscription,9,49,M,LE BARAILLEC,Yann,25/04/1980,DVG,"Profession de l'information, des arts et des spectacles",Non,M,DELHOMME,Paul,25/04/1995,Non +56,Morbihan,01,1ère circonscription,10,2,M,PAGE,Jean-Jacques,06/09/1960,REG,Cadre de la fonction publique,Non,F,LE PRIELLEC,Carole,13/07/1971,Non +56,Morbihan,01,1ère circonscription,11,26,M,ARS,François,04/03/1966,LR,"Professeur, profession scientifique",Non,F,LE NEVE,Marie-Thérèse,17/07/1958,Non +56,Morbihan,01,1ère circonscription,12,24,M,CABAS,David,02/02/1980,DSV,Employé civil et agent de service de la fonction publique,Non,M,ROBIC,Lucas,10/04/2001,Non +56,Morbihan,01,1ère circonscription,13,13,M,DELÉON,Bertrand,22/03/1974,DIV,"Professeur des écoles, instituteur et assimilé",Non,F,THEFAINE,Yolaine,09/09/1978,Non +56,Morbihan,01,1ère circonscription,14,69,M,MOUSSET,François,08/08/1977,DVD,Commerçant et assimilé,Non,F,LIGONNIERE,Séverine,17/07/1975,Non +56,Morbihan,02,2ème circonscription,1,63,M,LUNEAU,Pierre-Léon,17/01/1984,DVC,Profession libérale,Non,F,BORDENAVE,Marion,06/05/1981,Non +56,Morbihan,02,2ème circonscription,2,15,M,VALLEIN,Franck Jean Marie,12/07/1966,DVD,"Contremaître, agent de maîtrise",Non,F,QUENECH'DU,Isabelle,05/09/1963,Non +56,Morbihan,02,2ème circonscription,3,64,M,VELLUTINI,Alexandre,29/05/1989,DSV,Technicien,Non,F,BASAILLE,Karine,20/02/1971,Non +56,Morbihan,02,2ème circonscription,4,70,F,LE BIHAN,Rachel,07/04/1986,DIV,Ingénieur et cadre technique d'entreprise,Non,M,MORNET,Adrien,19/06/1989,Non +56,Morbihan,02,2ème circonscription,5,57,M,KIRCHNER,Karol,17/12/1966,NUP,Artisan,Non,F,BALECH,Margot,05/08/1979,Non +56,Morbihan,02,2ème circonscription,6,30,M,MALARDÉ,Alain,15/01/1949,REG,Profession libérale,Non,F,LE MOING,Beatrice,29/11/1964,Non +56,Morbihan,02,2ème circonscription,7,52,F,KAPPELER,Florence,02/03/1988,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BRUNEBARBE,Gilles,24/06/1952,Non +56,Morbihan,02,2ème circonscription,8,4,M,CHEÈRE,Yves,25/07/1956,DXG,Ancien ouvrier,Non,F,GUIRAUD,Sylvie,09/03/1977,Non +56,Morbihan,02,2ème circonscription,9,29,F,BRIÈRE,Corinne,30/09/1970,ECO,Employé civil et agent de service de la fonction publique,Non,M,CRÉZÉ,David,24/07/1970,Non +56,Morbihan,02,2ème circonscription,10,51,M,CORDAILLAT-DALLARA,Jean-Christophe,09/09/1987,REG,Profession intermédiaire administrative de la fonction publique,Non,F,DESURY,Nicole,08/04/1955,Non +56,Morbihan,02,2ème circonscription,11,28,M,MARTIN,Joseph,24/04/1954,RN,Commerçant et assimilé,Non,M,GOUMOT,Jacques,06/08/1951,Non +56,Morbihan,02,2ème circonscription,12,42,M,PAHUN,Jimmy,15/05/1962,ENS,"Profession de l'information, des arts et des spectacles",Oui,F,DURIEZ,Christine,22/10/1962,Non +56,Morbihan,02,2ème circonscription,13,50,F,LEMOULINIER,Sophie,14/04/1971,LR,Employé administratif d'entreprise,Non,M,LE GOFF,Guy,27/06/1949,Non +56,Morbihan,03,3ème circonscription,1,32,F,COUDÉ,Charlène,30/08/1991,ECO,Commerçant et assimilé,Non,M,SOUELA,Teddy,20/04/1986,Non +56,Morbihan,03,3ème circonscription,2,17,F,DORE-LUCAS,Marie Madeleine,07/11/1959,NUP,Profession libérale,Non,M,DENOUAL,Didier,23/06/1968,Non +56,Morbihan,03,3ème circonscription,3,5,F,LEPERT,Julie,29/04/1990,DXG,Profession intermédiaire de la santé et du travail social,Non,M,LE BAIL,Cyril,13/03/1953,Non +56,Morbihan,03,3ème circonscription,4,58,M,QUÉRO,Benoît,07/09/1976,LR,Profession libérale,Non,F,LE GOFF-CARNEC,Nadine,09/05/1964,Non +56,Morbihan,03,3ème circonscription,5,53,M,LOPEZ,Yoann,10/01/1985,DVC,Commerçant et assimilé,Non,F,MARION,Mélanie,18/06/1994,Non +56,Morbihan,03,3ème circonscription,6,19,M,LE GALL,Régis,30/05/1983,REC,"Professeur, profession scientifique",Non,F,REBOUL,Annick,15/06/1970,Non +56,Morbihan,03,3ème circonscription,7,18,F,CUCINIELLO,Julie,22/01/1997,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CAMBOT,Florence,25/08/1970,Non +56,Morbihan,03,3ème circonscription,8,67,M,LUGUÉ,Pierre-Alexandre,18/04/1994,REG,"Professeur, profession scientifique",Non,M,LE QUÉRÉ,Hervé,28/09/1956,Non +56,Morbihan,03,3ème circonscription,9,43,F,MASSARD,Lydie,24/08/1978,REG,Employé civil et agent de service de la fonction publique,Non,M,MERCIER,Loïck,20/05/1991,Non +56,Morbihan,03,3ème circonscription,10,31,F,GOHIN,Alice,27/02/1994,RN,"Elève, étudiant",Non,M,CHARPENTIER,Odin,05/06/2003,Non +56,Morbihan,03,3ème circonscription,11,6,M,EPAILLARD,Lionel Guy Marie,02/12/1954,ECO,Profession libérale,Non,F,LETORT,Virginie,31/01/1980,Non +56,Morbihan,03,3ème circonscription,12,16,F,LE PEIH,Nicole,28/09/1959,ENS,Agriculteur sur moyenne exploitation,Oui,M,MOUHAOU,François-Denis,15/05/1958,Non +56,Morbihan,04,4ème circonscription,1,34,F,LE FLECHER,Lhea,17/10/2001,NUP,"Elève, étudiant",Non,M,MARTEAU,Florian,20/05/1980,Non +56,Morbihan,04,4ème circonscription,2,59,M,MAMAR,Khaled,06/06/1983,ECO,Commerçant et assimilé,Non,M,CHAUDET,Roger,10/03/1976,Non +56,Morbihan,04,4ème circonscription,3,8,F,DECUYPERE,Isabelle,01/11/1970,DSV,Profession libérale,Non,M,VINCENT,Jérome,12/12/1983,Non +56,Morbihan,04,4ème circonscription,4,9,M,MOLAC,Paul,21/05/1962,REG,"Professeur, profession scientifique",Oui,F,LE VIAVANT,Régine,16/09/1962,Non +56,Morbihan,04,4ème circonscription,5,68,F,TONYE,Louise,09/09/1957,ECO,Cadre de la fonction publique,Non,M,GILLES,Patrick,04/08/1944,Non +56,Morbihan,04,4ème circonscription,6,71,F,LAIGRE,Béatrice,22/04/1956,REG,Ingénieur et cadre technique d'entreprise,Non,M,YHUEL,Pierrick,13/08/1950,Non +56,Morbihan,04,4ème circonscription,7,20,F,MARIN,Béatrice,31/05/1961,ECO,"Professeur, profession scientifique",Non,F,GUEGAN,Virginie,07/02/1977,Non +56,Morbihan,04,4ème circonscription,8,21,F,REGNIER,Sophie,25/08/1973,REC,"Professeur, profession scientifique",Non,M,HUET,Bernard,05/12/1954,Non +56,Morbihan,04,4ème circonscription,9,45,F,GUEGAN,Rozenn,16/04/1975,ENS,Profession intermédiaire administrative de la fonction publique,Non,F,GOURIOU,Françoise,19/05/1971,Non +56,Morbihan,04,4ème circonscription,10,46,M,CLODIC,Jean-Marc,29/08/1965,DVG,Chauffeur,Non,F,DELAUNAY,Nadine,30/10/1971,Non +56,Morbihan,04,4ème circonscription,11,33,M,DE KERSAUSON,Florent,05/12/1949,RN,Ancien employé,Non,M,FLEURY,Stephane,20/03/1971,Non +56,Morbihan,04,4ème circonscription,12,7,M,CRUNIL,Patrice,14/12/1953,DXG,Ancien ouvrier,Non,F,VELLY,Françoise,28/03/1956,Non +56,Morbihan,04,4ème circonscription,13,44,F,LOURO,Maria,10/03/1971,UDI,Employé administratif d'entreprise,Non,M,FERREIRA,Marc,18/07/1996,Non +56,Morbihan,05,5ème circonscription,1,10,F,PIERRON,Blandine,28/02/1967,DXG,Ouvrier non qualifié de type industriel,Non,M,PIRO,Mathieu,21/03/1972,Non +56,Morbihan,05,5ème circonscription,2,65,M,LOAS,Ronan,15/04/1982,DVD,Cadre administratif et commercial d'entreprise,Non,F,CHRISTIEN,Morgane,17/11/1976,Non +56,Morbihan,05,5ème circonscription,3,72,M,QUESTIAUX,Jean-Louis,13/09/1954,REG,Ancienne profession intermédiaire,Non,M,LE FERRAN,Michel,13/04/1956,Non +56,Morbihan,05,5ème circonscription,4,22,F,PAOLI,Ghislaine,05/08/1961,ECO,Profession libérale,Non,F,SANDOZ,Nathalie,15/07/1966,Non +56,Morbihan,05,5ème circonscription,5,60,M,MEGEL,David,18/06/1976,RN,Employé administratif d'entreprise,Non,F,LE NY,Séverine,09/04/1976,Non +56,Morbihan,05,5ème circonscription,6,35,M,GIRARD,Damien,30/05/1973,NUP,Cadre administratif et commercial d'entreprise,Non,F,GOURLAY,Florence,18/07/1970,Non +56,Morbihan,05,5ème circonscription,7,55,F,MÉTAYER,Lysiane,07/08/1963,ENS,Cadre de la fonction publique,Non,M,CAUBEL,Antoine,04/03/1969,Non +56,Morbihan,05,5ème circonscription,8,36,M,PERRIN,Thibault,06/03/1984,REC,Cadre de la fonction publique,Non,M,BARBAT,Emeric,19/06/1984,Non +56,Morbihan,05,5ème circonscription,9,54,M,BRIAND,Gael,09/05/1984,REG,"Profession de l'information, des arts et des spectacles",Non,F,RIOU,Patricia,23/07/1964,Non +56,Morbihan,06,6ème circonscription,1,37,F,ROSCONVAL,Christelle,18/09/1968,REG,Ouvrier qualifié de type industriel,Non,M,ANTOINE,Deniel,25/01/1956,Non +56,Morbihan,06,6ème circonscription,2,75,M,KIEFER,Guillaume,31/12/1982,LR,Cadre administratif et commercial d'entreprise,Non,F,TATIBOUET,Laura,13/05/1989,Non +56,Morbihan,06,6ème circonscription,3,48,F,BERNARD,Anne,05/01/1980,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,CHICHERY,Yvan,08/05/1965,Non +56,Morbihan,06,6ème circonscription,4,61,M,BAUDRY,Jean-Michel,08/07/1964,NUP,Technicien,Non,F,HERVAULT,Claudette,14/05/1956,Non +56,Morbihan,06,6ème circonscription,5,11,F,LAGREE,Kelig,14/10/1972,DXG,"Professeur, profession scientifique",Non,M,ROUSSEAU,Sylvain,06/03/1980,Non +56,Morbihan,06,6ème circonscription,6,74,M,HUGUET,Olivier,15/09/1967,DVD,Cadre administratif et commercial d'entreprise,Non,F,GOURVES,Sylvie,05/01/1962,Non +56,Morbihan,06,6ème circonscription,7,73,F,PARRAT,Matilda,03/09/2001,ECO,"Elève, étudiant",Non,F,GORSKY,Catherine,09/09/1960,Non +56,Morbihan,06,6ème circonscription,8,47,F,NAÏT-KACI,Kahina,19/08/1974,UDI,Profession intermédiaire administrative et commerciale des entreprises,Non,F,BELLIERE,Emmanuelle,20/05/1968,Non +56,Morbihan,06,6ème circonscription,9,23,M,CHARLERY,Valère,18/05/1954,DSV,Ancien cadre,Non,M,HILLION,Jean-Marc,22/09/1986,Non +56,Morbihan,06,6ème circonscription,10,38,F,SIRET,Tiphaine,24/02/1998,REG,"Profession de l'information, des arts et des spectacles",Non,M,AUFFRET,Gilles,09/09/1955,Non +56,Morbihan,06,6ème circonscription,11,12,M,JACQUES,Jean-Michel,29/02/1968,ENS,Profession libérale,Oui,F,SOUFFOY,Nadia,23/02/1990,Non +56,Morbihan,06,6ème circonscription,12,39,F,LE GOFF,Aurélie,12/10/1985,RN,Profession libérale,Non,M,ROBIC,Joris,10/04/1973,Non +57,Moselle,01,1ère circonscription,1,61,M,BOUHENNA,Abderrahemane,21/05/1961,DVG,Artisan,Non,M,MATTEUCCI,Jeremy,18/05/1986,Non +57,Moselle,01,1ère circonscription,2,9,F,KUNTZ,Malou,23/02/1961,LR,Employé administratif d'entreprise,Non,M,MALASSÉ,Henri,13/09/1989,Non +57,Moselle,01,1ère circonscription,3,85,M,KADRI,Camal,08/05/1966,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,BAILLY,Rachel,10/04/1965,Non +57,Moselle,01,1ère circonscription,4,65,F,FRICHETEAU,Jessy,10/09/1990,DVG,Artisan,Non,M,CHICHEREAU,Vincent,29/05/1982,Non +57,Moselle,01,1ère circonscription,5,60,F,LEICK,Esther,18/06/1988,NUP,Cadre administratif et commercial d'entreprise,Non,M,NYALENDO,Jean-Hugues,13/09/1971,Non +57,Moselle,01,1ère circonscription,6,16,M,LALOUX,Grégoire,12/09/1995,RN,Profession intermédiaire administrative de la fonction publique,Non,F,BURG,Laurence,18/05/1966,Non +57,Moselle,01,1ère circonscription,7,64,F,ROUSSE,Christèle,01/04/1971,DSV,"Professeur, profession scientifique",Non,M,FERSING,Daniel,01/06/1966,Non +57,Moselle,01,1ère circonscription,8,20,M,BELHADDAD,Belkhir,09/07/1969,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,SAS-BARONDEAU,Martine,09/01/1952,Non +57,Moselle,01,1ère circonscription,9,36,M,GEORGET,Didier,07/08/1966,DXG,Ouvrier qualifié de type industriel,Non,M,BRUSTOLIN,Nicolas,16/10/1991,Non +57,Moselle,01,1ère circonscription,10,71,M,HADADI,Yoan,15/07/1986,DVG,Cadre administratif et commercial d'entreprise,Non,F,AIDARA,Katia,16/08/1970,Non +57,Moselle,01,1ère circonscription,11,76,F,KONARSKI,Rebecca,22/07/1966,REC,"Professeur, profession scientifique",Non,M,SOMNY,Jean-François,04/01/1961,Non +57,Moselle,02,2ème circonscription,1,11,M,RINALDI,Mario,20/12/1964,DXG,Technicien,Non,M,SCHMITT,Fabien,23/03/1966,Non +57,Moselle,02,2ème circonscription,2,27,F,CONTAL,Aurélie,10/02/1961,ECO,Ancien employé,Non,M,RIBOULET,Thomas,22/04/1987,Non +57,Moselle,02,2ème circonscription,3,30,M,BAUCHAT,Olivier,04/12/1969,RN,Commerçant et assimilé,Non,F,ROZE,Régine,14/03/1967,Non +57,Moselle,02,2ème circonscription,4,98,M,KURTH,Jean-Jacques,07/03/1957,DVG,"Professeur des écoles, instituteur et assimilé",Non,F,HAFNER,Marie-Michèle,24/03/1964,Non +57,Moselle,02,2ème circonscription,5,62,F,LAHORE,Lisa,26/09/2000,NUP,"Elève, étudiant",Non,M,FELIX,Vincent,26/10/1983,Non +57,Moselle,02,2ème circonscription,6,74,M,TEIXEIRA,Quentin,17/01/1993,ECO,Technicien,Non,F,VALLIES,Louise,06/06/1993,Non +57,Moselle,02,2ème circonscription,7,15,F,SAID,Sandrine,15/11/1977,DIV,Profession libérale,Non,M,DEVÈZE,Armand,16/12/1965,Non +57,Moselle,02,2ème circonscription,8,81,F,EL BARNOUSSI,Nadia,03/01/1975,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,ABDOU,Kamal,13/11/1963,Non +57,Moselle,02,2ème circonscription,9,96,M,PITTI,Raphaël,29/01/1950,DVG,Profession intermédiaire de la santé et du travail social,Non,F,LAVEAU-ZIMMERLÉ,Amandine,08/05/1983,Non +57,Moselle,02,2ème circonscription,10,88,M,MENDES,Ludovic,11/04/1987,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,HENRION,François,09/07/1968,Non +57,Moselle,02,2ème circonscription,11,32,M,HORY,Thierry,30/07/1963,LR,Cadre administratif et commercial d'entreprise,Non,F,LINDEN-GUESDON,Anne-Marie,10/10/1964,Non +57,Moselle,02,2ème circonscription,12,2,M,JACQUES,Jean-François,10/12/1961,DSV,Ancienne profession intermédiaire,Non,M,BIENTZ,Christian,19/04/1957,Non +57,Moselle,02,2ème circonscription,13,95,F,MAUSER,Martine,01/02/1969,REC,Profession libérale,Non,M,ROSIER,Jean-Marc,13/03/1955,Non +57,Moselle,03,3ème circonscription,1,47,F,LEUCART,Anne-Catherine,20/10/1974,DVC,Profession libérale,Non,M,KEFF,Gregory,13/09/1981,Non +57,Moselle,03,3ème circonscription,2,26,F,ZIMMERMANN,Marie-Jo,29/04/1951,DVC,"Professeur, profession scientifique",Non,M,ALDRIN,Jérémy,27/09/1983,Non +57,Moselle,03,3ème circonscription,3,10,F,BECHT,Marie Jeanne,26/08/1957,DXG,Ancienne profession intermédiaire,Non,M,ZIMMERMANN,Gabriel,03/11/1954,Non +57,Moselle,03,3ème circonscription,4,67,M,BEMER,Christian,13/03/1961,REC,Commerçant et assimilé,Non,M,GOURLOT,Thierry,26/07/1959,Non +57,Moselle,03,3ème circonscription,5,57,F,LEDUC,Charlotte,18/06/1980,NUP,"Professeur, profession scientifique",Non,M,BROUSSE,Sylvain,23/03/1988,Non +57,Moselle,03,3ème circonscription,6,72,M,GULINO,Eric,09/09/1965,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,BECKER,Fatima,09/07/1970,Non +57,Moselle,03,3ème circonscription,7,79,F,JURION,Roxane,18/12/1984,ECO,"Elève, étudiant",Non,F,COLLIN,Marielle,03/10/1989,Non +57,Moselle,03,3ème circonscription,8,37,F,COLIN-OESTERLÉ,Nathalie,05/05/1965,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,STREBLY,Dominique,10/08/1957,Non +57,Moselle,03,3ème circonscription,9,19,M,LIOGER,Richard,18/09/1957,ENS,"Professeur, profession scientifique",Oui,F,MELON,Ghislaine,17/11/1950,Non +57,Moselle,03,3ème circonscription,10,63,M,CARRARA,Bernard,02/04/1940,DIV,Ancien cadre,Non,F,MAURICE,Céline,24/09/1979,Non +57,Moselle,03,3ème circonscription,11,100,F,WAGNER,Marlène,01/08/1977,DSV,Chef d'entreprise de 10 salariés ou plus,Non,M,DUCROCQ,Quentin,10/07/1999,Non +57,Moselle,03,3ème circonscription,12,25,M,HODARA,Etienne,22/07/1952,DXG,Ancien cadre,Non,F,SCHMITT,Odile,19/08/1956,Non +57,Moselle,03,3ème circonscription,13,89,M,DIAFERIA,Gaël,06/09/1980,DXG,Employé civil et agent de service de la fonction publique,Non,F,MUSZYNSKI,Chantal,05/11/1953,Non +57,Moselle,03,3ème circonscription,14,12,F,GROLET,Françoise,28/08/1963,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DUFOUR,Gregory,01/01/1974,Non +57,Moselle,04,4ème circonscription,1,45,M,RAMBOUR,Michel,30/01/1948,RN,Cadre administratif et commercial d'entreprise,Non,M,CONTE,Didier,20/10/1969,Non +57,Moselle,04,4ème circonscription,2,86,F,GIRARDOT,Hélène,16/12/1984,NUP,Cadre administratif et commercial d'entreprise,Non,M,VILLARD,Antoine,09/10/1975,Non +57,Moselle,04,4ème circonscription,3,84,M,VILAIN,Eric,20/11/1958,DSV,"Contremaître, agent de maîtrise",Non,M,FISSON,Norbert,31/01/1963,Non +57,Moselle,04,4ème circonscription,4,55,M,VAN DER STRAETEN,Antonin,25/07/1996,DSV,"Elève, étudiant",Non,F,CHASSÉ,Nawaël,11/04/1998,Non +57,Moselle,04,4ème circonscription,5,22,M,BAUD-BERTHIER,Marc,25/05/1956,DXG,Ancienne profession intermédiaire,Non,M,GASQUET,Hervé,11/09/1957,Non +57,Moselle,04,4ème circonscription,6,21,F,KONARSKI,Chloé,09/05/2000,REC,"Elève, étudiant",Non,M,KAPFER,René,06/03/1958,Non +57,Moselle,04,4ème circonscription,7,13,M,DI FILIPPO,Fabien,23/08/1986,LR,Ancien cadre,Oui,M,END,Jérôme,09/04/1979,Non +57,Moselle,04,4ème circonscription,8,82,F,CRENNER,Emilie,18/01/1990,ENS,Commerçant et assimilé,Non,M,PIERCY,Emmanuel,06/05/1970,Non +57,Moselle,05,5ème circonscription,1,24,M,OLLIER,Sébastien,04/07/1978,DXG,"Professeur, profession scientifique",Non,M,SEBASTIAN,Gilles,06/01/1957,Non +57,Moselle,05,5ème circonscription,2,6,F,TOUSSAINT,Brigitte,23/06/1958,DSV,Ancien cadre,Non,F,BRAUER,Hélène,03/09/1958,Non +57,Moselle,05,5ème circonscription,3,7,M,BOURBEAU,François,06/02/1967,DVC,Cadre administratif et commercial d'entreprise,Non,F,GROSS,Barbara,29/10/1971,Non +57,Moselle,05,5ème circonscription,4,5,F,VOINÇON,Marie-Claude,11/01/1966,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,F,HENNARD,Naïla,22/03/1960,Non +57,Moselle,05,5ème circonscription,5,77,F,SELLINI,Sabrina,07/10/1980,REC,Employé administratif d'entreprise,Non,F,BRUZZI,Elia,10/12/2002,Non +57,Moselle,05,5ème circonscription,6,41,F,TRISSE,Nicole,29/06/1963,ENS,Ancien cadre,Oui,M,KIEFFER,Benoît,22/05/1969,Non +57,Moselle,05,5ème circonscription,7,31,F,RACINE,Caroline,22/09/2000,NUP,"Elève, étudiant",Non,M,HOELLINGER,Martial,15/10/1974,Non +57,Moselle,05,5ème circonscription,8,80,M,SEITLINGER,Vincent,18/01/1987,LR,Profession libérale,Non,F,FIRTION,Evelyne,08/03/1965,Non +57,Moselle,06,6ème circonscription,1,52,F,GREFF OSTERMANN,Monique,14/01/1963,DIV,Employé civil et agent de service de la fonction publique,Non,M,HALIMI,Toumi,11/09/1959,Non +57,Moselle,06,6ème circonscription,2,92,M,MASSING,Ludovic,26/11/1991,DIV,Employé civil et agent de service de la fonction publique,Non,M,DABA,Lotfi,01/01/1993,Non +57,Moselle,06,6ème circonscription,3,43,M,DILIGENT,Eric,02/01/1972,REC,Cadre de la fonction publique,Non,M,CAPS,Olivier,13/06/1969,Non +57,Moselle,06,6ème circonscription,4,23,F,LEGRAND,Lola,27/06/1989,DXG,"Professeur, profession scientifique",Non,M,SCHULZ,Thierry,02/01/1946,Non +57,Moselle,06,6ème circonscription,5,75,M,MOUYNET,Christophe,23/08/1982,DIV,Ouvrier qualifié de type artisanal,Non,F,VERDIER,Martine,10/10/1960,Non +57,Moselle,06,6ème circonscription,6,50,M,OUTOMURO,Jonathan,28/10/1977,NUP,Cadre de la fonction publique,Non,F,HENRY,Tiffany,12/09/1984,Non +57,Moselle,06,6ème circonscription,7,35,M,PFEFFER,Kévin,09/07/1990,RN,Cadre administratif et commercial d'entreprise,Non,M,SOBCZYK,Philippe,09/05/1983,Non +57,Moselle,06,6ème circonscription,8,97,M,ASKAL,Abdel,22/12/1975,DVG,Profession intermédiaire de la santé et du travail social,Non,F,DI LORENZO,Marylène,11/08/1986,Non +57,Moselle,06,6ème circonscription,9,56,M,AREND,Christophe,12/08/1975,ENS,Profession libérale,Oui,F,BAGUR,Lisa,03/09/1998,Non +57,Moselle,06,6ème circonscription,10,14,M,THIEL,Anthony,21/11/1988,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,SONMEZ,Gunes,17/01/1969,Non +57,Moselle,06,6ème circonscription,11,99,F,AÏT,Saliha,04/10/1987,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,AUGER,Alexandre,16/09/1991,Non +57,Moselle,06,6ème circonscription,12,39,M,FRIEDRICH,Marc,19/10/1959,LR,Ancien cadre,Non,M,FLORSCH,Michel,17/10/1950,Non +57,Moselle,06,6ème circonscription,13,51,M,PHILIPPOT,Florian,24/10/1981,DSV,Cadre de la fonction publique,Non,F,MIHELIC,Patricia,23/10/1963,Non +57,Moselle,07,7ème circonscription,1,3,M,HOCQUET,Hervé,10/06/1957,DSV,Ancien cadre,Non,M,FRANCOIS,Jean-Luc,03/09/1953,Non +57,Moselle,07,7ème circonscription,2,40,M,GALANTE,Clément,03/04/1993,REC,Cadre administratif et commercial d'entreprise,Non,M,DA ROS,Lucien,23/03/1953,Non +57,Moselle,07,7ème circonscription,3,70,F,ZANNIER,Hélène,19/09/1972,ENS,Cadre de la fonction publique,Oui,M,STAUB,Claude,12/07/1953,Non +57,Moselle,07,7ème circonscription,4,78,M,MULLER,Luc,24/12/1955,NUP,Agriculteur sur moyenne exploitation,Non,F,NUSS,Patricia,03/12/1971,Non +57,Moselle,07,7ème circonscription,5,66,F,BOUCHER,Anne,01/09/1972,LR,Profession intermédiaire de la santé et du travail social,Non,M,BETTINGER,Edmond,31/05/1969,Non +57,Moselle,07,7ème circonscription,6,29,F,BOUSSET,Diane,22/05/1963,DXG,Employé civil et agent de service de la fonction publique,Non,M,GRIMONT,Pascal,29/08/1956,Non +57,Moselle,07,7ème circonscription,7,53,M,LOUBET,Alexandre,07/07/1994,RN,Cadre administratif et commercial d'entreprise,Non,F,CHATELAIN,Magali,17/03/1973,Non +57,Moselle,08,8ème circonscription,1,8,F,LEVECQUE,Anne-Catherine,10/10/1954,DXG,Ancien cadre,Non,M,ALESCH,Gilles,28/08/1957,Non +57,Moselle,08,8ème circonscription,2,34,M,HAMMOUCHE,Brahim,17/05/1971,ENS,"Professeur, profession scientifique",Oui,F,BUCKI,Barbara,23/05/1981,Non +57,Moselle,08,8ème circonscription,3,48,F,LEGER,Céline,15/11/1977,NUP,Profession intermédiaire de la santé et du travail social,Non,M,DANEL,Sebastien,04/03/1970,Non +57,Moselle,08,8ème circonscription,4,59,F,JOLIVET,Annick,12/01/1949,DXG,"Professeur, profession scientifique",Non,M,VOLZ,Jonathan,18/09/1978,Non +57,Moselle,08,8ème circonscription,5,42,M,JACOBELLI,Laurent,13/10/1969,RN,"Profession de l'information, des arts et des spectacles",Non,M,ENGELMANN,Fabien,07/05/1979,Non +57,Moselle,08,8ème circonscription,6,83,F,OUM,Chariya,11/05/1977,ECO,Employé de commerce,Non,F,MANSUY,Nadine,18/01/1963,Non +57,Moselle,08,8ème circonscription,7,90,F,ROSA,Raphaëlle,10/04/2004,LR,"Elève, étudiant",Non,M,SCHWEITZER,Kévin,11/02/2003,Non +57,Moselle,08,8ème circonscription,8,18,F,DAVID,Claire,21/09/1988,DSV,Commerçant et assimilé,Non,M,CONREAUX,Fabrice,31/05/1966,Non +57,Moselle,08,8ème circonscription,9,17,M,ANDRÉ,Sébastien,18/04/1987,REC,Chauffeur,Non,M,HAMMERSCHMITT,Florent,03/07/1994,Non +57,Moselle,09,9ème circonscription,1,93,F,VAÏSSE,Brigitte,10/12/1952,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,LICHTEROWICZ,Hugo,15/03/1980,Non +57,Moselle,09,9ème circonscription,2,33,M,REICHLING,Stéphane,12/09/1971,RN,Technicien,Non,M,MESSMER,Pascal,08/05/1967,Non +57,Moselle,09,9ème circonscription,3,49,M,ENGEL,Fred,10/02/1963,DIV,Ancien cadre,Non,F,NASSO,Drosana,15/06/1963,Non +57,Moselle,09,9ème circonscription,4,58,F,WALLIAN,Aurélie,22/11/1990,REC,Employé administratif d'entreprise,Non,M,RODICQ,Yanis,26/02/2000,Non +57,Moselle,09,9ème circonscription,5,91,M,RUTILI,Yan,21/03/1982,RDG,Cadre de la fonction publique,Non,F,EFOUA,Anna,02/12/1992,Non +57,Moselle,09,9ème circonscription,6,28,F,WERCKMANN,Françoise,04/02/1942,ECO,"Profession de l'information, des arts et des spectacles",Non,M,GIGES,Kévin,17/12/1985,Non +57,Moselle,09,9ème circonscription,7,54,M,MAURHOFER,Guy,08/02/1959,DXG,Ancien employé,Non,F,SALET,Chantal,17/09/1960,Non +57,Moselle,09,9ème circonscription,8,94,F,RAUCH,Isabelle,10/08/1968,ENS,Cadre de la fonction publique,Oui,M,BERTIN,Emmanuel,13/10/1969,Non +57,Moselle,09,9ème circonscription,9,87,F,BEY,Laurène,28/09/1995,ECO,Employé administratif d'entreprise,Non,M,BEY,Philippe,19/12/1956,Non +57,Moselle,09,9ème circonscription,10,69,F,MELLINGER,Marlène,12/10/1968,DSV,Profession libérale,Non,M,KEMPNICH,Pierre,21/03/1970,Non +57,Moselle,09,9ème circonscription,11,73,M,BIEDER,Lionel,31/05/1970,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,BAUDOT,Sébastien,21/11/1968,Non +57,Moselle,09,9ème circonscription,12,44,M,GRANDJEAN,Lucas,23/10/1995,LR,Cadre de la fonction publique,Non,F,VILLAIN,Emilie,10/01/1980,Non +58,Nièvre,01,1ère circonscription,1,20,M,PETERS,Michel,14/10/1970,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,NIVARD,Olivier,01/05/1967,Non +58,Nièvre,01,1ère circonscription,2,3,F,LEMOINE,Geneviève,27/06/1952,DXG,Profession intermédiaire de la santé et du travail social,Non,M,DUVERNAY,Thierry,22/12/1971,Non +58,Nièvre,01,1ère circonscription,3,5,M,IMPENGE,Orny,14/09/1984,DVG,Ingénieur et cadre technique d'entreprise,Non,F,BONNEVIE,Manon,08/02/1996,Non +58,Nièvre,01,1ère circonscription,4,10,F,VIGNERON,Pauline,26/11/1990,RN,Technicien,Non,M,PERRET,Thomas,17/09/2001,Non +58,Nièvre,01,1ère circonscription,5,13,M,VERDEZ,Bryton,11/12/1999,REC,Technicien,Non,F,DUPUTEL,Isabelle,27/05/1965,Non +58,Nièvre,01,1ère circonscription,6,12,M,COUTELLEC,Leo,31/07/1983,NUP,Cadre de la fonction publique,Non,F,DELACOUR,Charlene,15/02/2001,Non +58,Nièvre,01,1ère circonscription,7,17,M,GALLOIS,Charles-Henri,31/10/1988,DSV,Cadre administratif et commercial d'entreprise,Non,M,GARCIA,Fabrice,18/05/1973,Non +58,Nièvre,01,1ère circonscription,8,19,M,LE METAYER,François,18/02/1993,LR,Profession libérale,Non,F,CHENE,Anne Marie,19/06/1956,Non +58,Nièvre,01,1ère circonscription,9,2,F,GOULET,Perrine,19/03/1978,ENS,Ingénieur et cadre technique d'entreprise,Oui,M,COINTAT,Sylvain,28/08/1972,Non +58,Nièvre,02,2ème circonscription,1,14,F,GUILLEMAIN,Marie Anne,21/10/1970,NUP,"Profession de l'information, des arts et des spectacles",Non,M,BOUIS,Andre,13/08/1952,Non +58,Nièvre,02,2ème circonscription,2,4,M,DUPUIS,Dominique,11/05/1956,DXG,Ouvrier qualifié de type industriel,Non,M,SIMON,Philippe,05/04/1953,Non +58,Nièvre,02,2ème circonscription,3,16,M,LEPETIT,Pascal,30/05/1964,DSV,Ancien cadre,Non,M,CAMBIANICA,Jean-Pierre,11/11/1946,Non +58,Nièvre,02,2ème circonscription,4,18,F,MEGY,Heloïse,15/07/1972,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MUNTONI,Sandra,11/07/1966,Non +58,Nièvre,02,2ème circonscription,5,9,M,DENIAUX,Christophe,11/05/1970,LR,Cadre de la fonction publique,Non,F,DE RIBEROLLES,Marie France,11/10/1944,Non +58,Nièvre,02,2ème circonscription,6,8,M,PERROT,Patrice,24/02/1964,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,GERMAIN,Sandra,15/12/1969,Non +58,Nièvre,02,2ème circonscription,7,15,F,GUILLAUME,Marie Joelle,09/08/1949,REC,"Profession de l'information, des arts et des spectacles",Non,M,ROYE,Claude,25/01/1947,Non +58,Nièvre,02,2ème circonscription,8,11,M,GUIBERT,Julien,11/05/1984,RN,Cadre administratif et commercial d'entreprise,Non,F,MERCIER,Laetitia,22/11/1984,Non +59,Nord,01,1ère circonscription,1,85,M,LEFRANCQ,Jonathan,09/11/1988,DIV,"Professeur, profession scientifique",Non,F,COLLIER,Cécile Laure-Anne,25/10/1977,Non +59,Nord,01,1ère circonscription,2,103,F,RIMLINGER,Mai,25/09/1996,REC,Employé de commerce,Non,M,CUBUK,Bekir,13/09/2002,Non +59,Nord,01,1ère circonscription,3,115,M,ALEXANDRE,Audric,24/05/1989,DIV,"Professeur, profession scientifique",Non,F,BILLET,Florence,24/08/1954,Non +59,Nord,01,1ère circonscription,4,4,M,MADELAIN,Pierre,12/03/1968,DXG,"Professeur, profession scientifique",Non,F,COLLINET,Corentine,25/03/1981,Non +59,Nord,01,1ère circonscription,5,52,F,DUHAMEL,Vanessa,07/10/1970,ENS,Employé de commerce,Non,F,SOW,Khadidjatou,19/09/1990,Non +59,Nord,01,1ère circonscription,6,50,F,LECLERCQ,Carole,11/01/1954,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,VERBRUGGHE,Bastien,05/10/1985,Non +59,Nord,01,1ère circonscription,7,143,F,GODEST,Constance,18/09/1995,ECO,"Elève, étudiant",Non,F,FELLOUS,Charlotte,18/09/1992,Non +59,Nord,01,1ère circonscription,8,70,M,CHAOUAT,Frédéric,15/03/1963,DIV,"Professeur, profession scientifique",Non,M,BOUDOU,Benoît,04/02/1978,Non +59,Nord,01,1ère circonscription,9,155,M,FABRE,Thomas,31/03/1994,UDI,Cadre de la fonction publique,Non,F,BARA,Marie-Claude,04/03/1969,Non +59,Nord,01,1ère circonscription,10,154,M,DESMARCHELIER,Hugo,18/06/1994,DIV,"Elève, étudiant",Non,M,MOREEL,Kevin,09/08/1986,Non +59,Nord,01,1ère circonscription,11,129,M,QUATENNENS,Adrien,23/05/1990,NUP,Employé administratif d'entreprise,Oui,F,ADDOUCHE,Lahouaria,19/01/1983,Non +59,Nord,02,2ème circonscription,1,121,F,BOISARD-VANNIER,Caroline,12/08/1958,LR,Profession libérale,Non,F,VAN NIEUWENHUYSE,Léna,05/04/2000,Non +59,Nord,02,2ème circonscription,2,87,F,DELEVALLET,Monique,26/11/1945,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,M,THOMES,Serge,24/04/1954,Non +59,Nord,02,2ème circonscription,3,44,M,KARASIEWICZ,Nicolas,24/07/1986,DVC,Commerçant et assimilé,Non,M,DELACHER,Guillaume,11/05/1984,Non +59,Nord,02,2ème circonscription,4,192,M,AASSI,Nordine,02/06/1987,DIV,"Professeur, profession scientifique",Non,M,RASMI,Mustapha,12/10/1987,Non +59,Nord,02,2ème circonscription,5,7,F,ROUGÉE,Pascale,28/08/1957,DXG,Ancienne profession intermédiaire,Non,F,JASIAK,Karine,08/01/1966,Non +59,Nord,02,2ème circonscription,6,114,F,CHAUCHOY,Virginie,18/04/1970,ECO,Employé administratif d'entreprise,Non,M,COUTEL,Simon,13/03/1972,Non +59,Nord,02,2ème circonscription,7,33,M,ELEGEEST,Rudy,13/03/1959,ENS,Ancien cadre,Non,F,SALANON,Violette,25/09/1987,Non +59,Nord,02,2ème circonscription,8,64,M,GUÉRARD,Philippe,09/11/1958,RN,Profession libérale,Non,F,HOORENS,Anaïs,29/10/1990,Non +59,Nord,02,2ème circonscription,9,148,F,SAVAGE,Marie,08/05/1981,DXG,"Profession de l'information, des arts et des spectacles",Non,M,LOURDELLE,Quentin,06/01/1988,Non +59,Nord,02,2ème circonscription,10,120,M,BERNALICIS,Ugo,25/09/1989,NUP,Cadre de la fonction publique,Oui,F,BOUCKNOOGHE,Marie,14/04/1986,Non +59,Nord,03,3ème circonscription,1,196,F,VILLETTE,Sophie,24/02/1973,NUP,Cadre de la fonction publique,Non,M,HANNECART,Marc,01/07/1968,Non +59,Nord,03,3ème circonscription,2,160,M,DEHONDT,Marc,07/03/1961,ECO,Technicien,Non,F,ORIOLI,Liliane,24/01/1942,Non +59,Nord,03,3ème circonscription,3,89,M,SAINT-HUILE,Benjamin,10/05/1983,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,DUHAMEL,Sandrine,17/06/1973,Non +59,Nord,03,3ème circonscription,4,107,F,WATTIEZ,Jessica,29/05/1978,REC,Employé administratif d'entreprise,Non,M,BREBION,Fabrice,10/01/1968,Non +59,Nord,03,3ème circonscription,5,54,F,RONDEAUX,Marie-Claude,04/08/1955,DXG,Ancien ouvrier,Non,M,MONTMORY,Bruno,26/09/1964,Non +59,Nord,03,3ème circonscription,6,9,M,LEBLANC,Nicolas,14/10/1983,LR,Cadre de la fonction publique,Non,F,PEROT,Aurélie,02/04/1980,Non +59,Nord,03,3ème circonscription,7,82,M,DI POMPEO,Christophe,15/07/1964,ENS,"Professeur, profession scientifique",Oui,F,BOUTTEFEUX - TORNOTTI,Joëlle,09/11/1958,Non +59,Nord,03,3ème circonscription,8,59,F,DELANNOY,Sandra,01/05/1974,RN,Artisan,Non,M,BEAUJEAN,Olivier,30/07/1973,Non +59,Nord,03,3ème circonscription,9,184,F,SAFAI,Irène,01/11/1962,DSV,Cadre de la fonction publique,Non,M,YU,Nicolas,01/04/1965,Non +59,Nord,04,4ème circonscription,1,27,F,ABDELLAOUI,Fatima,09/06/1965,DXG,Employé civil et agent de service de la fonction publique,Non,M,MATHIEU,Yoann,27/07/1975,Non +59,Nord,04,4ème circonscription,2,168,M,MONTEUX,Frédéric,30/08/1967,DSV,"Professeur des écoles, instituteur et assimilé",Non,M,LEFEBVRE,Nicolas,09/08/1983,Non +59,Nord,04,4ème circonscription,3,48,F,PLANCKE,Patricia,31/10/1958,RN,Employé administratif d'entreprise,Non,M,LANDRU,Jean-Luc,25/05/1952,Non +59,Nord,04,4ème circonscription,4,96,M,BOULLET,Gauthier,23/04/1994,ECO,Cadre administratif et commercial d'entreprise,Non,F,SOMMARO,Laura,14/08/1990,Non +59,Nord,04,4ème circonscription,5,138,F,GAMBIRASIO,Georgia,19/12/1969,DVC,"Professeur, profession scientifique",Non,M,SAINTE-MARIE,Evrard,08/07/1955,Non +59,Nord,04,4ème circonscription,6,31,M,HOUSSIN,Jacques,16/02/1964,DVD,Commerçant et assimilé,Non,M,LEPRETRE,Sébastien,17/02/1971,Non +59,Nord,04,4ème circonscription,7,105,F,DESBOIS,Claire,22/12/1987,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,ROCCA,Nicolas,03/06/1986,Non +59,Nord,04,4ème circonscription,8,128,M,JARDIN,Patrick,27/11/1952,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,M,LIPKA,Jean-François,11/09/1956,Non +59,Nord,04,4ème circonscription,9,180,M,LEBLANC,Sébastien,03/01/1989,LR,Cadre de la fonction publique,Non,M,DETOURNAY,Alain,05/12/1954,Non +59,Nord,04,4ème circonscription,10,152,M,GAVARD,Ewann,01/09/1992,DIV,Profession libérale,Non,M,TISSIER,Antoine,24/12/1978,Non +59,Nord,04,4ème circonscription,11,76,M,DELEPIERE,Octave,15/04/1999,NUP,"Elève, étudiant",Non,F,SEDOU,Nathalie,20/11/1971,Non +59,Nord,04,4ème circonscription,12,132,F,LISO,Brigitte,29/07/1959,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,M,PEROT,Grégoire,25/08/1991,Non +59,Nord,05,5ème circonscription,1,53,M,CATTEAU,Victor,18/09/1995,RN,Cadre administratif et commercial d'entreprise,Non,M,DESCAMPS,Carlos,08/04/1968,Non +59,Nord,05,5ème circonscription,2,102,F,STOFFEL,Manon,18/12/1998,ECO,"Elève, étudiant",Non,F,WOJTKOWIAK,Emilie,06/06/2002,Non +59,Nord,05,5ème circonscription,3,93,M,CAUDERLIER,Frédéric,13/01/1975,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,FOSSAERT,Josephine,19/10/1993,Non +59,Nord,05,5ème circonscription,4,77,F,DELNESTE,Ophélie,08/05/1995,NUP,"Elève, étudiant",Non,M,GODEFROY,Michael,02/03/1974,Non +59,Nord,05,5ème circonscription,5,200,M,DENNEQUIN,Pierrick,10/09/1989,DSV,Cadre administratif et commercial d'entreprise,Non,F,CHEVALIER AMMAR,Estelle,20/03/1971,Non +59,Nord,05,5ème circonscription,6,205,M,SION,Hugues,28/04/1976,REC,Commerçant et assimilé,Non,F,DRAPRI,Sylvie,18/01/1962,Non +59,Nord,05,5ème circonscription,7,95,M,HUYGHE,Sébastien,25/10/1969,LR,Profession libérale,Oui,F,BAZAN,Laure,08/07/1981,Non +59,Nord,05,5ème circonscription,8,39,M,DUBOIS,Luc,19/02/1966,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,COVAIN,Raymond,21/08/1957,Non +59,Nord,06,6ème circonscription,1,172,M,ROLLAND,Thierry,17/10/1969,DVD,Ancien cadre,Non,F,ROGER,Christine,03/10/1965,Non +59,Nord,06,6ème circonscription,2,80,F,PEREIRA,Célia,25/07/1999,NUP,Employé administratif d'entreprise,Non,M,RICCELLI,Olivier,03/04/1981,Non +59,Nord,06,6ème circonscription,3,163,M,FOUTRY,Luc,10/05/1974,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GAU,Carine,04/05/1982,Non +59,Nord,06,6ème circonscription,4,20,M,DEMEESTER,André,26/08/1958,REC,Ancien cadre,Non,F,BENCHEGRA,Kenza,02/05/1998,Non +59,Nord,06,6ème circonscription,5,11,F,FENAIN,Virginie,29/08/1976,RN,Ouvrier qualifié de type industriel,Non,M,SKURPEL,Antoine,30/11/1962,Non +59,Nord,06,6ème circonscription,6,13,M,BARREZ,Frédéric,13/12/1982,DXG,Ouvrier non qualifié de type industriel,Non,F,DEMORY,Léa,04/09/1955,Non +59,Nord,06,6ème circonscription,7,30,F,LABRE,Vanessa,07/04/1979,ECO,Cadre administratif et commercial d'entreprise,Non,F,JANON,Cléa,27/05/1987,Non +59,Nord,06,6ème circonscription,8,174,F,FABER-ROSSI,Maryse,28/10/1949,RDG,Ancienne profession intermédiaire,Non,M,DUBAR,Ludovic,07/10/1978,Non +59,Nord,06,6ème circonscription,9,158,F,LELEU,Delphine,27/06/1985,DSV,Employé administratif d'entreprise,Non,M,BLERVAQUE,Stéphane,13/05/1960,Non +59,Nord,06,6ème circonscription,10,135,F,PARMENTIER-LECOCQ,Charlotte,17/07/1977,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,MOULLIERE,Jean,29/03/1994,Non +59,Nord,07,7ème circonscription,1,191,F,BICHON,Jeyan,14/08/1997,ECO,"Elève, étudiant",Non,F,GUILLOT,Charlotte,18/03/1997,Non +59,Nord,07,7ème circonscription,2,41,F,LECONTE DUCHANGE,Mathilde,08/09/1998,REC,"Elève, étudiant",Non,F,VANHOUTTE,Lucie,12/09/2001,Non +59,Nord,07,7ème circonscription,3,18,M,SCHUURMAN,Nicolas,07/09/1979,DXG,Profession intermédiaire de la santé et du travail social,Non,F,TOILLON,Renée,19/12/1964,Non +59,Nord,07,7ème circonscription,4,144,F,SAVIO,Nelly,11/01/1970,DVC,Cadre administratif et commercial d'entreprise,Non,M,MONCEAU,Alexandre,02/08/1974,Non +59,Nord,07,7ème circonscription,5,187,F,HOUCKE,Charlotte,25/03/1970,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,F,VANDAME-WASTYN,Marina,01/10/1975,Non +59,Nord,07,7ème circonscription,6,109,F,CHOUIA,Karima,24/02/1978,NUP,Cadre de la fonction publique,Non,M,DE VEYLDER,Bernard,30/06/1953,Non +59,Nord,07,7ème circonscription,7,119,M,WILLEM,Jean-Sébastien,23/02/1971,RN,Commerçant et assimilé,Non,M,FLORENT,Thomas,20/08/1986,Non +59,Nord,07,7ème circonscription,8,62,F,GÉRARD,Félicie,28/01/1974,ENS,"Contremaître, agent de maîtrise",Non,M,GARCIN,Alexandre,17/06/1977,Non +59,Nord,07,7ème circonscription,9,16,F,SIX,Valérie,11/01/1963,UDI,Profession libérale,Oui,M,NYS,Pascal,13/06/1956,Non +59,Nord,08,8ème circonscription,1,113,F,SAHRAOUI,Rachida,26/06/1963,RN,Profession libérale,Non,F,BLAIN,Marie-Chantal,30/12/1956,Non +59,Nord,08,8ème circonscription,2,106,F,DELBARRE,Françoise,15/06/1955,DXG,Ancienne profession intermédiaire,Non,M,LEROY,Jean-Christophe,02/08/1963,Non +59,Nord,08,8ème circonscription,3,47,M,GUIRAUD,David,18/11/1992,NUP,Cadre administratif et commercial d'entreprise,Non,F,BENTORKI,Sheherazade,06/11/1986,Non +59,Nord,08,8ème circonscription,4,189,M,VERMEERSCH,Christian,17/03/1963,ECO,Cadre de la fonction publique,Non,F,DUBREUIL,Sabine,11/08/1952,Non +59,Nord,08,8ème circonscription,5,58,M,ELBAHI,Amine,27/04/1996,LR,"Elève, étudiant",Non,F,BEAUGRAND,Elisabeth,19/05/1953,Non +59,Nord,08,8ème circonscription,6,190,M,TANDONNET,Samuel,26/06/2003,DIV,"Elève, étudiant",Non,M,DUTERTRE,Frédéric,23/08/1983,Non +59,Nord,08,8ème circonscription,7,78,F,VERLANDE,Lisa,18/10/2001,REC,"Elève, étudiant",Non,M,POTIÉ,Thomas,17/07/2000,Non +59,Nord,08,8ème circonscription,8,204,M,PACO,Aymeric,11/01/1988,DVC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,BENDRIDJ,Sakina,04/07/1978,Non +59,Nord,08,8ème circonscription,9,164,F,OSSON,Catherine,07/02/1974,ENS,"Professeur des écoles, instituteur et assimilé",Oui,M,KERROUCHE,Djamel,26/07/1969,Non +59,Nord,08,8ème circonscription,10,55,M,CAMERLYNCK,Maël,26/01/1992,DSV,Ingénieur et cadre technique d'entreprise,Non,F,DETURCK,Sonia,31/07/1974,Non +59,Nord,09,9ème circonscription,1,21,F,SARAZIN,Chantal,29/01/1956,DXG,Ancien employé,Non,F,MOUCHOUX,Maryline,16/07/1973,Non +59,Nord,09,9ème circonscription,2,72,F,VIDAL-SAGNIER,Odile,13/03/1962,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,M,PLANCKE,Dominique,19/04/1957,Non +59,Nord,09,9ème circonscription,3,149,F,CLAVEL,Carla,09/10/1973,DSV,Cadre administratif et commercial d'entreprise,Non,M,BOURBOTTE,Philippe,09/06/1960,Non +59,Nord,09,9ème circonscription,4,51,F,LANDRU,Christine,22/04/1954,RN,Ancien employé,Non,M,ROSSIGNOL,Laurent,24/10/1967,Non +59,Nord,09,9ème circonscription,5,22,M,LETURQUE,Laurent,04/10/1969,ECO,Ingénieur et cadre technique d'entreprise,Non,F,LECOUTY,Isabelle,17/05/1957,Non +59,Nord,09,9ème circonscription,6,66,M,GALERA,Eric,05/09/1978,DIV,Employé civil et agent de service de la fonction publique,Non,F,MOUNSI,Kenza,14/04/1976,Non +59,Nord,09,9ème circonscription,7,29,F,GODDYN,Sylvie,24/06/1964,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,COTTIGNIES,Patrice,31/05/1950,Non +59,Nord,09,9ème circonscription,8,117,M,PAPIACHVILI,Nicolas,05/03/1984,LR,Profession libérale,Non,F,DELSALLE,Sandrine,14/05/1969,Non +59,Nord,09,9ème circonscription,9,26,F,SPILLEBOUT,Violette,02/09/1972,ENS,Cadre administratif et commercial d'entreprise,Non,M,CHARPENTIER,Raphaël,14/10/1992,Non +59,Nord,10,10ème circonscription,1,104,M,VAN GANSEN,Romain,13/10/1998,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,FAURE,Gwennaelle,08/02/1980,Non +59,Nord,10,10ème circonscription,2,81,M,GARCIA,Jérôme,05/05/1969,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,VASSELIN,Christian,08/08/1951,Non +59,Nord,10,10ème circonscription,3,130,M,BLEUZÉ,Louis,11/06/1993,REC,Artisan,Non,F,GHESQUIER,Dorothée,09/09/1966,Non +59,Nord,10,10ème circonscription,4,150,M,DARMANIN,Gérald,11/10/1982,ENS,Cadre administratif et commercial d'entreprise,Non,M,LEDOUX,Vincent,21/06/1966,Oui +59,Nord,10,10ème circonscription,5,176,M,LEUCHI,Oueb,26/06/1961,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,M,AIT AMEUR,Dyene,22/09/1982,Non +59,Nord,10,10ème circonscription,6,145,M,BRAZON,Marcellin,09/01/2004,DVD,"Elève, étudiant",Non,M,NOLLET,Stéphane,15/03/1968,Non +59,Nord,10,10ème circonscription,7,5,M,CHARLON,Christophe,26/10/1964,DXG,Employé civil et agent de service de la fonction publique,Non,M,CRETON,Kevin,14/08/1987,Non +59,Nord,10,10ème circonscription,8,167,M,MORTREUX,Leslie,01/02/1996,NUP,Profession intermédiaire de la santé et du travail social,Non,M,DEVLOO,Maurice,10/03/1970,Non +59,Nord,10,10ème circonscription,9,134,F,DUMORTIER,Valérie,26/08/1965,DSV,"Professeur, profession scientifique",Non,F,ANOUAR,Majdouline,18/02/1978,Non +59,Nord,10,10ème circonscription,10,112,F,D'HONT,Mélanie,02/12/1989,RN,Personnel des services directs aux particuliers,Non,F,MORAND,Anne,12/04/1967,Non +59,Nord,11,11ème circonscription,1,151,M,PIETRASZEWSKI,Laurent,19/11/1966,ENS,Cadre administratif et commercial d'entreprise,Non,M,DELEPAUL,Michel,15/11/1955,Non +59,Nord,11,11ème circonscription,2,140,M,CHERPIN,Priscilla,02/05/1956,ECO,Ancien employé,Non,M,DESMOULINS,Thierry,24/08/1957,Non +59,Nord,11,11ème circonscription,3,201,M,PLOUY,Michel,23/11/1974,LR,Cadre administratif et commercial d'entreprise,Non,F,SIMON,Martine,09/06/1956,Non +59,Nord,11,11ème circonscription,4,157,F,GOUDENHOOFT,Sophie,30/05/1971,ECO,Cadre de la fonction publique,Non,M,NOTEBAERT,Etienne,17/05/1959,Non +59,Nord,11,11ème circonscription,5,37,F,BAILLEUL,Carole,02/05/1960,DXG,Personnel des services directs aux particuliers,Non,M,MARTIN,Claude,05/02/1952,Non +59,Nord,11,11ème circonscription,6,108,M,MOULIN,Maxime,24/11/1974,RN,Profession libérale,Non,F,DESMAZIERES,Marie,13/09/1989,Non +59,Nord,11,11ème circonscription,7,65,M,CASTERMAN,Eddy,28/07/1996,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,PROVOST,Nolwenn,30/05/1982,Non +59,Nord,11,11ème circonscription,8,175,M,GOLLET MURET,Pascal,28/06/1970,DSV,Chauffeur,Non,F,DUFOUR,Laurence,13/09/1969,Non +59,Nord,11,11ème circonscription,9,197,M,FIEY,Sebastien,27/11/1976,DVD,Ingénieur et cadre technique d'entreprise,Non,M,BAILLEUL,Christian,21/07/1961,Non +59,Nord,11,11ème circonscription,10,74,M,VICOT,Roger,01/06/1963,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,PRINGUEZ,Valérie,07/12/1974,Non +59,Nord,12,12ème circonscription,1,25,M,FLAHAUT,Simon,19/06/1984,REC,Cadre administratif et commercial d'entreprise,Non,M,GALIEGUE,Pierre-Philippe,24/10/1972,Non +59,Nord,12,12ème circonscription,2,38,M,YAHIATENE,Malik,22/12/1974,NUP,"Professeur, profession scientifique",Non,F,BLOSEUR,Charlène,28/09/1993,Non +59,Nord,12,12ème circonscription,3,34,M,LEHRHAUPT,Laurent,16/10/1964,DXG,"Professeur, profession scientifique",Non,F,DELAHAYE,Sandrine,25/04/1975,Non +59,Nord,12,12ème circonscription,4,56,M,TAVERNE,Michaël,10/03/1979,RN,Policier et militaire,Non,M,DELHAYE,Valentin,15/02/2002,Non +59,Nord,12,12ème circonscription,5,141,M,DUPONT,Claude,04/08/1952,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,ZAREMBA,Jérémy,26/10/1986,Non +59,Nord,12,12ème circonscription,6,136,M,DENIS,Geoffrey,29/05/1981,DSV,Employé civil et agent de service de la fonction publique,Non,M,BEAUVOISE,Bertrand,11/06/1991,Non +59,Nord,12,12ème circonscription,7,84,M,LUSSIEZ,Ludovic,21/03/1966,DVD,Chauffeur,Non,M,MARION,Stéphane,24/11/1977,Non +59,Nord,12,12ème circonscription,8,137,M,PAMART,Grégory,08/10/1988,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CAILLAUD,Anne-France,19/09/1985,Non +59,Nord,12,12ème circonscription,9,12,F,CATTELOT,Anne Laure,25/10/1988,ENS,Cadre administratif et commercial d'entreprise,Oui,M,SAGNIEZ,Paul,26/08/1960,Non +59,Nord,13,13ème circonscription,1,173,F,DE MIRIBEL,Véronique,02/04/1955,LR,Commerçant et assimilé,Non,M,FAËS,François-Xavier,25/10/1972,Non +59,Nord,13,13ème circonscription,2,43,M,BÉZINE,Clément,22/12/1983,DXG,"Professeur, profession scientifique",Non,M,WARINGHEM,Jean-Luc,26/03/1957,Non +59,Nord,13,13ème circonscription,3,42,M,PELTIER,Alexis,30/03/1985,ECO,Technicien,Non,F,PÉCHER,Marion,01/06/1975,Non +59,Nord,13,13ème circonscription,4,199,F,MADELAINE,Eugénie,05/05/1954,REC,"Professeur, profession scientifique",Non,M,YKEMA,Clément,14/09/1997,Non +59,Nord,13,13ème circonscription,5,146,M,LACROIX,Damien,05/12/1991,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,LECLERC,Françoise,25/03/1954,Non +59,Nord,13,13ème circonscription,6,147,F,MENNEBOO,Maeva,05/11/1991,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DUSAUTOIS,Claude,07/01/1961,Non +59,Nord,13,13ème circonscription,7,61,M,DUVAL,Yohann,07/06/1983,RN,Cadre de la fonction publique,Non,M,EYMERY,Philippe,10/12/1951,Non +59,Nord,13,13ème circonscription,8,40,F,DECODTS,Christine,19/05/1966,ENS,Ancien cadre,Non,M,VERGRIETE,Patrice,04/07/1968,Non +59,Nord,14,14ème circonscription,1,156,M,MAERTEN,Eric,06/10/1962,REC,Artisan,Non,M,BUTEZ,Vincent,16/08/1968,Non +59,Nord,14,14ème circonscription,2,170,M,LÉVECQ,Guillaume,02/11/1971,DSV,Cadre administratif et commercial d'entreprise,Non,F,FLOURY,Carole,31/07/1966,Non +59,Nord,14,14ème circonscription,3,118,F,CUVELIER,Pierrette,11/03/1962,RN,Profession intermédiaire administrative de la fonction publique,Non,M,BATAILLE,Maxime,22/06/1984,Non +59,Nord,14,14ème circonscription,4,171,F,HEYMAN,Philippine,04/12/2001,NUP,"Elève, étudiant",Non,M,CORDIEZ,Daniel,30/01/1946,Non +59,Nord,14,14ème circonscription,5,185,M,GONZALEZ,Pierre,27/04/1960,DVG,Ancien ouvrier,Non,F,ZONNEQUIN,Maria,08/12/1947,Non +59,Nord,14,14ème circonscription,6,10,F,DESRAYAUD,Sandrine,02/05/1974,DXG,"Professeur, profession scientifique",Non,M,HAILLANT,David,19/10/1977,Non +59,Nord,14,14ème circonscription,7,35,M,CHRISTOPHE,Paul,10/02/1971,ENS,Cadre de la fonction publique,Oui,M,MARLE,Pierre,19/02/1954,Non +59,Nord,14,14ème circonscription,8,97,M,DEVOS,Frédéric,17/03/1961,LR,Ancien cadre,Non,F,ANDRIES,Françoise,04/06/1953,Non +59,Nord,14,14ème circonscription,9,153,M,BÉAGUE,Frédéric,07/04/1965,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,BÉAGUE,Rébecca,27/09/1991,Non +59,Nord,15,15ème circonscription,1,178,F,ABADIE,Anne,22/09/1969,DVD,Agriculteur sur petite exploitation,Non,M,BOSSAERT,Maxence,07/12/1993,Non +59,Nord,15,15ème circonscription,2,165,F,PERCHE,Anne-Lise,22/11/1973,DSV,Cadre de la fonction publique,Non,F,RUYSSCHAERT,Dominique,01/04/1971,Non +59,Nord,15,15ème circonscription,3,92,F,LANDTSHEERE,Caroline,06/06/1981,DVD,Profession libérale,Non,M,LENOIR,Jeremy,05/07/1975,Non +59,Nord,15,15ème circonscription,4,202,M,DIEUSAERT,Stephane,27/06/1970,LR,Agriculteur sur moyenne exploitation,Non,F,PETITPREZ,Ghislaine,25/08/1950,Non +59,Nord,15,15ème circonscription,5,98,M,DENEUCHE,Marc,30/09/1957,DVC,Profession libérale,Non,M,PERLEIN,Fabrice,13/01/1967,Non +59,Nord,15,15ème circonscription,6,142,M,LEDEZ,Stéphane,24/03/1963,DVC,Ingénieur et cadre technique d'entreprise,Non,M,BAHEU,Eddy,08/10/1969,Non +59,Nord,15,15ème circonscription,7,46,M,BERTELOOT,Pierrick,11/01/1999,RN,Employé de commerce,Non,M,PRINCE,Pascal,06/11/1956,Non +59,Nord,15,15ème circonscription,8,116,M,LAMÉRANT,Gaétan,08/11/1975,ECO,Employé civil et agent de service de la fonction publique,Non,F,DOBOSZ,Marjorie,18/08/1977,Non +59,Nord,15,15ème circonscription,9,166,M,NICOLET,Claude,20/05/1963,ENS,Cadre de la fonction publique,Non,F,BURGGRAEVE,Joëlle,12/10/1960,Non +59,Nord,15,15ème circonscription,10,188,M,DUYCK,Joël,17/12/1954,DVD,Ancien cadre,Non,F,BARROIS-GOBLET,Laurence,05/11/1956,Non +59,Nord,15,15ème circonscription,11,73,F,DUCOURANT,Emilie,24/11/1984,NUP,"Professeur, profession scientifique",Non,M,HOVINE,Pol,25/07/1987,Non +59,Nord,15,15ème circonscription,12,198,M,DARQUES,Jérôme,21/03/1968,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,JOLY,Dominique,15/11/1956,Non +59,Nord,15,15ème circonscription,13,57,F,LELEU,Aurélie,12/01/1982,REC,Employé administratif d'entreprise,Non,M,DUBAELE,Gildas,19/03/1983,Non +59,Nord,15,15ème circonscription,14,63,M,DUBIEZ,Benjamin,10/01/1979,DXG,"Professeur, profession scientifique",Non,M,D'HULSTER,Jean-Pierre,21/02/1969,Non +59,Nord,16,16ème circonscription,1,2,M,STATHOULIAS,Antoine,17/12/1981,ECO,Profession libérale,Non,F,BONTEMPS,Camille,09/05/1992,Non +59,Nord,16,16ème circonscription,2,99,F,RYBAK,Chantal,12/09/1952,ENS,Cadre administratif et commercial d'entreprise,Non,M,WARUSFEL,Hugues,30/09/1968,Non +59,Nord,16,16ème circonscription,3,28,M,BRUNEEL,Alain,07/03/1952,NUP,Ancien ouvrier,Oui,F,LUCAS,Maryline,13/07/1963,Non +59,Nord,16,16ème circonscription,4,75,M,MARCHIO,Matthieu,08/06/1993,RN,Cadre administratif et commercial d'entreprise,Non,F,LECLERC,Anne-Sophie,19/09/1972,Non +59,Nord,16,16ème circonscription,5,15,F,DORCHIES,Mady,05/12/1960,LR,Cadre administratif et commercial d'entreprise,Non,M,LEBRUN,Ludovic,20/07/1981,Non +59,Nord,16,16ème circonscription,6,161,F,ZAGACKI,Delphine,05/10/1983,RDG,Profession intermédiaire de la santé et du travail social,Non,F,BONNAFIL,Marie,24/11/1980,Non +59,Nord,16,16ème circonscription,7,6,M,PECQUEUR,Éric,03/08/1966,DXG,Ouvrier non qualifié de type industriel,Non,M,SZARZEC,Ludovic,31/08/1970,Non +59,Nord,16,16ème circonscription,8,110,M,ADRIENCENSE,Tanneguy,05/05/2002,REC,"Elève, étudiant",Non,M,DELPORTE,Fabrice,26/08/1966,Non +59,Nord,17,17ème circonscription,1,23,M,DELANNOY,Christian,22/08/1954,DXG,Profession libérale,Non,F,DREVET,Michèle,22/02/1964,Non +59,Nord,17,17ème circonscription,2,133,F,MAMAN,Isabelle,10/02/1966,ECO,Commerçant et assimilé,Non,F,JAKUBOWSKI,Brigitte,15/11/1954,Non +59,Nord,17,17ème circonscription,3,124,M,GRANDIN,Cyril,04/11/1994,NUP,"Professeur, profession scientifique",Non,F,BOULAN,Patricia,22/06/1957,Non +59,Nord,17,17ème circonscription,4,169,F,NORREEL,Valérie,21/05/1969,REC,Cadre administratif et commercial d'entreprise,Non,M,KACZMAREK,Florian,06/07/1999,Non +59,Nord,17,17ème circonscription,5,194,F,GARAUD,Dominique,07/04/1955,DVD,Ancien cadre,Non,M,GRIVILLERS,Anthony,25/03/1986,Non +59,Nord,17,17ème circonscription,6,69,M,FRANCOIS,Thibaut,10/12/1989,RN,Cadre de la fonction publique,Non,F,DELFOSSE,Nadège,10/10/1969,Non +59,Nord,17,17ème circonscription,7,19,M,FLUCKIGER,Cédric,16/03/1976,DXG,"Professeur, profession scientifique",Non,F,DUFRÉNOY,Marie-Anne,10/04/1959,Non +59,Nord,17,17ème circonscription,8,111,M,BRUNI,Thibault,18/02/1993,DSV,"Contremaître, agent de maîtrise",Non,M,LE MEILLEUR,Kevin,29/04/1988,Non +59,Nord,17,17ème circonscription,9,203,M,BOULANT,Romain,10/01/1987,UDI,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,PARENT,Monique,24/08/1956,Non +59,Nord,17,17ème circonscription,10,67,M,HOUBRON,Dimitri,12/02/1991,ENS,Cadre de la fonction publique,Oui,F,BONTEMPS,Aurore,03/11/1984,Non +59,Nord,17,17ème circonscription,11,123,F,T'HOOFT,Marion,20/10/1986,RDG,"Professeur, profession scientifique",Non,M,CAMBRAY,Cyril,14/03/1980,Non +59,Nord,17,17ème circonscription,12,49,M,FRYDMAN,Jean-Luc,26/08/1967,DIV,Commerçant et assimilé,Non,F,ROGER,Véronique,31/03/1973,Non +59,Nord,18,18ème circonscription,1,24,M,BRICOUT,Guy,18/02/1944,UDI,Ancien cadre,Oui,M,COOLZAET,Sébastien,30/03/1973,Non +59,Nord,18,18ème circonscription,2,159,F,MARÉCHAL,Stéphanie,26/09/1976,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,DEBAILLEUX,Geofrey,09/08/1998,Non +59,Nord,18,18ème circonscription,3,14,M,PHILIPPE,Gérard,20/01/1958,REC,Commerçant et assimilé,Non,F,LENOTTE,Sylvie,23/08/1971,Non +59,Nord,18,18ème circonscription,4,131,M,VILLAIN,Pierre-Antoine,30/11/1977,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,DAVOINE,Matthieu,21/06/1982,Non +59,Nord,18,18ème circonscription,5,195,M,DOLAY,Aurélien,06/11/1986,ECO,"Professeur, profession scientifique",Non,F,HANOCQ,Cindy,02/07/1979,Non +59,Nord,18,18ème circonscription,6,90,M,LOYEZ,Philippe,19/03/1958,ENS,Ancien cadre,Non,F,TERLYNCK,Audrey,22/07/1985,Non +59,Nord,18,18ème circonscription,7,68,F,DISDIER,Mélanie,27/01/1974,RN,Commerçant et assimilé,Non,M,WATREMEZ,Pierre-Antoine,25/05/1995,Non +59,Nord,18,18ème circonscription,8,71,F,REYNAERT,Nadine,26/08/1960,DXG,Profession intermédiaire de la santé et du travail social,Non,M,THERY,Gautier,02/09/1987,Non +59,Nord,19,19ème circonscription,1,86,M,SOLOCH,Patrick,15/01/1958,NUP,Ancien cadre,Non,F,CHOAIN,Isabelle,19/07/1960,Non +59,Nord,19,19ème circonscription,2,8,F,BOURLET,Cécile,04/05/1979,DXG,Employé administratif d'entreprise,Non,M,TEHAMI,Samy,21/04/1981,Non +59,Nord,19,19ème circonscription,3,179,M,DRICI,Djemi,21/10/1966,DVC,Profession libérale,Non,M,BECART,Mathieu,28/07/1985,Non +59,Nord,19,19ème circonscription,4,79,F,TROIA,Christine,31/03/1962,REC,Ancien employé,Non,M,DELOGE,Franck,24/03/1998,Non +59,Nord,19,19ème circonscription,5,45,M,CHENU,Sébastien,13/04/1973,RN,Cadre de la fonction publique,Oui,F,ANDRIS,Régine,18/07/1947,Non +59,Nord,19,19ème circonscription,6,126,M,RACZKIEWICZ,Bruno,26/08/1964,UDI,"Professeur, profession scientifique",Non,F,CARLIER,Virginie,23/08/1976,Non +59,Nord,19,19ème circonscription,7,83,M,CHERRIER,Emmanuel,20/04/1970,ENS,"Professeur, profession scientifique",Non,F,CARPENTIER-ROOTHAER,Amélie,10/04/1987,Non +59,Nord,19,19ème circonscription,8,186,M,DUQUENNE,Vincent,01/05/1974,ECO,"Professeur, profession scientifique",Non,F,LAFFINEUR,Bella,30/06/1989,Non +59,Nord,20,20ème circonscription,1,122,M,PATEL,Rudy,14/12/1983,ECO,Employé civil et agent de service de la fonction publique,Non,F,BILLARD,Sabine,01/02/1985,Non +59,Nord,20,20ème circonscription,2,88,F,LASSERRE,Béatrice,18/07/1967,REC,Employé administratif d'entreprise,Non,M,SLABOLEPSZY,Dominique,20/06/1943,Non +59,Nord,20,20ème circonscription,3,177,F,HUON,Monique,28/10/1951,DVD,Ancien cadre,Non,M,LELONG,Corentin,04/05/1999,Non +59,Nord,20,20ème circonscription,4,60,M,FLORQUIN,Guillaume,04/05/1993,RN,Profession intermédiaire administrative de la fonction publique,Non,M,DRAPPIER,Sébastien,21/01/1974,Non +59,Nord,20,20ème circonscription,5,125,M,ROUSSEL,Fabien,16/04/1969,NUP,Profession intermédiaire administrative de la fonction publique,Oui,F,VALEMBOIS,Mathilde,15/08/1990,Non +59,Nord,20,20ème circonscription,6,3,M,MOZDZIERZ,Dimitri,02/02/1982,DXG,Chauffeur,Non,F,POLLET,Stéphanie,19/01/1983,Non +59,Nord,20,20ème circonscription,7,101,F,ALEXANDRE,Delphine,28/05/1969,ENS,"Professeur, profession scientifique",Non,M,KASPRZYK,Rémi,22/10/1986,Non +59,Nord,20,20ème circonscription,8,183,M,DUQUESNE,Bruno,07/03/1967,RDG,"Professeur, profession scientifique",Non,M,ARNOULD,Frédéric,06/04/1974,Non +59,Nord,20,20ème circonscription,9,139,M,RENAUD,Éric,28/08/1960,DVG,Ancienne profession intermédiaire,Non,M,CZAPSKI,Julien,06/11/1981,Non +59,Nord,21,21ème circonscription,1,17,F,WEISSHAUPT,Edith,13/09/1972,DXG,Ouvrier non qualifié de type industriel,Non,M,ESMANS,Raynald,23/07/1965,Non +59,Nord,21,21ème circonscription,2,36,M,AUBRY,Ludovic,22/10/1988,ECO,"Contremaître, agent de maîtrise",Non,M,ADAM,Benoit,05/04/1989,Non +59,Nord,21,21ème circonscription,3,100,F,DESCAMPS,Béatrice,24/04/1961,DVD,"Professeur des écoles, instituteur et assimilé",Oui,M,CASTIGLIONE,Salvatore,18/02/1970,Non +59,Nord,21,21ème circonscription,4,181,F,SERRALTA,Elisabeth,06/09/1972,DSV,Personnel des services directs aux particuliers,Non,M,COFFIER,Christophe,12/06/1966,Non +59,Nord,21,21ème circonscription,5,32,M,LASSELIN,Laurent,02/05/1969,DVD,Employé civil et agent de service de la fonction publique,Non,F,BERTIEAUX,Annick,21/10/1954,Non +59,Nord,21,21ème circonscription,6,94,F,LAIRÉ,Corinne,20/11/1956,REC,Ancienne profession intermédiaire,Non,F,DUMINY,Séverine,16/07/1976,Non +59,Nord,21,21ème circonscription,7,127,F,TROADEC,Luce,01/12/1966,NUP,"Professeur, profession scientifique",Non,M,KOLEBACKI,Patrick,05/10/1964,Non +59,Nord,21,21ème circonscription,8,91,F,VALENTIN,Océane,15/04/1999,RN,Profession intermédiaire administrative de la fonction publique,Non,M,CULOT,Bertrand,14/11/1978,Non +60,Oise,01,1ère circonscription,1,46,F,LUNDY,Roxane,25/09/1995,NUP,Cadre de la fonction publique,Non,M,AURY,Thierry,11/01/1961,Non +60,Oise,01,1ère circonscription,2,47,F,JOLY,Aurélie,20/08/1992,ENS,Cadre administratif et commercial d'entreprise,Non,M,CAGNARD,Marc,15/08/1953,Non +60,Oise,01,1ère circonscription,3,71,M,LEBOUCHER,Jimmy,19/06/1980,DSV,Ancien agriculteur exploitant,Non,F,PRUVOST,Dorine,09/04/1996,Non +60,Oise,01,1ère circonscription,4,34,M,MAGNIER,David,05/06/1972,RN,"Contremaître, agent de maîtrise",Non,F,HANGARD,Elodie,15/07/1999,Non +60,Oise,01,1ère circonscription,5,24,M,CAVELIER,Lucien,03/08/1991,ECO,Profession intermédiaire de la santé et du travail social,Non,F,DEPARIS,Manon,23/04/1999,Non +60,Oise,01,1ère circonscription,6,36,M,FRUITIER,Jean-Philippe,16/09/1968,DXG,Employé civil et agent de service de la fonction publique,Non,F,FAUVILLE,Heidi,04/04/1979,Non +60,Oise,01,1ère circonscription,7,7,M,DEPRESLES,Norbert,02/03/1968,REC,Cadre administratif et commercial d'entreprise,Non,F,BENSEDDIK,Fatia,24/01/1981,Non +60,Oise,01,1ère circonscription,8,5,M,HABERT-DASSAULT,Victor,12/07/1992,LR,Profession libérale,Oui,F,CORDIER,Nicole,12/02/1948,Non +60,Oise,01,1ère circonscription,9,55,F,LATRASSE,Axelle,04/05/1980,ECO,Commerçant et assimilé,Non,M,LECLERC,Sylvain,16/03/1970,Non +60,Oise,02,2ème circonscription,1,50,M,REGNIER,Bastien,19/03/1996,DSV,Employé de commerce,Non,M,LEROY,Tanguy,02/06/2001,Non +60,Oise,02,2ème circonscription,2,48,M,CERVANTES,Guillaume,13/08/1976,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,FRAIGNEAU,Pierre,26/10/1999,Non +60,Oise,02,2ème circonscription,3,59,M,FOUGERE,Benjamin,27/10/1982,REC,Profession libérale,Non,M,RICHY,Julien,21/05/1998,Non +60,Oise,02,2ème circonscription,4,31,F,LEPERRE-VERRIER,Odile,18/10/1950,RDG,Ancien cadre,Non,M,PÉRIMONY,Patrick,10/05/1956,Non +60,Oise,02,2ème circonscription,5,51,F,PREVOT,Annick,08/05/1966,NUP,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,TIGHAT,Ahmed,26/09/1981,Non +60,Oise,02,2ème circonscription,6,9,M,BALLARD,Philippe,24/11/1960,RN,Ancien cadre,Non,M,TURIN,Sébastien,19/07/1987,Non +60,Oise,02,2ème circonscription,7,2,F,HERBANNE,Chanez,11/03/1993,ENS,Employé administratif d'entreprise,Non,M,ESTIENNE,Jean-Pierre,27/10/1945,Non +60,Oise,02,2ème circonscription,8,53,F,THILL,Agnès,02/06/1964,UDI,"Professeur des écoles, instituteur et assimilé",Oui,F,PICHARD,Hélène,24/07/1957,Non +60,Oise,02,2ème circonscription,9,35,F,POTCHTOVIK,Renée,22/09/1960,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,OLAGNIER,Boris,11/11/1962,Non +60,Oise,02,2ème circonscription,10,45,M,ROLS,Didier,11/03/1967,ECO,"Contremaître, agent de maîtrise",Non,F,TADDEI,Alexandra,06/02/2000,Non +60,Oise,02,2ème circonscription,11,25,M,EL AIYATE,Mohamed,12/12/1966,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,BAPAUME,Mylène,24/03/1956,Non +60,Oise,02,2ème circonscription,12,67,M,LAGHRARI,Mohrad,23/08/1982,DVC,Commerçant et assimilé,Non,F,GARNIER,Kaoutheur,21/05/1965,Non +60,Oise,02,2ème circonscription,13,49,M,CASTANIÉ,Ludovic,31/10/1976,DVD,Profession libérale,Non,F,VERSCHUERE,Élodie,05/07/1988,Non +60,Oise,03,3ème circonscription,1,44,M,BOIS,Pascal,03/12/1959,ENS,Ancien cadre,Oui,F,COMBET,Anne-Laure,14/04/1981,Non +60,Oise,03,3ème circonscription,2,17,F,ROUSSEL,Julie,29/09/1990,REC,Profession intermédiaire de la santé et du travail social,Non,M,TRIFI,Julien,02/05/1983,Non +60,Oise,03,3ème circonscription,3,4,M,DIETRICH,Christophe,19/10/1971,LR,Policier et militaire,Non,F,LEDARD,Lydie,23/03/1968,Non +60,Oise,03,3ème circonscription,4,68,F,GRELA,Viridiana,09/02/1993,DSV,Profession libérale,Non,M,MEGROT,Fabrice,07/04/1970,Non +60,Oise,03,3ème circonscription,5,54,M,LUCAS,Johann,23/01/1984,DVG,Chef d'entreprise de 10 salariés ou plus,Non,M,BELMHAND,Brahim,20/03/1973,Non +60,Oise,03,3ème circonscription,6,65,M,BOUILLY GERONIMI,Maxime,01/07/1985,ECO,Profession libérale,Non,F,LÉGER,Chloé,21/12/1989,Non +60,Oise,03,3ème circonscription,7,19,M,SZPIRKO,Roland,15/03/1946,DXG,Ancien ouvrier,Non,F,PAMART,Aude,12/02/1978,Non +60,Oise,03,3ème circonscription,8,28,M,SABATOU,Alexandre,18/02/1993,RN,Cadre de la fonction publique,Non,F,PAOLETTI,Laëtitia,08/05/1986,Non +60,Oise,03,3ème circonscription,9,57,F,LABATUT,Valérie,23/11/1974,NUP,Cadre de la fonction publique,Non,M,FRIADT,Guy,18/09/1962,Non +60,Oise,04,4ème circonscription,1,23,M,FABRE,Frédéric,25/03/1973,DXD,Policier et militaire,Non,M,FRAGMAN,Marc,27/10/1968,Non +60,Oise,04,4ème circonscription,2,64,M,DA SILVA MOREIRA,Pierre,09/06/1972,DSV,Artisan,Non,M,ROGEZ,Bernard,21/05/1953,Non +60,Oise,04,4ème circonscription,3,62,M,DUMONTIER,Arnaud,26/03/1973,LR,Cadre de la fonction publique,Non,F,VAN MOLLE,Corry,12/10/1954,Non +60,Oise,04,4ème circonscription,4,69,M,LANDWERLIN,Loïc,12/06/1991,DSV,Cadre administratif et commercial d'entreprise,Non,F,HOMERVILLE,Caroline,21/03/1973,Non +60,Oise,04,4ème circonscription,5,66,M,WOERTH,Eric,29/01/1956,ENS,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,F,LUDMANN,Véronique,17/03/1963,Non +60,Oise,04,4ème circonscription,6,22,M,MEESCHAERT,Laurent,25/06/1971,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,DOUCET,Marie,13/07/1995,Non +60,Oise,04,4ème circonscription,7,37,F,HAVEZ,Audrey,04/12/1976,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,F,ROUZIC,Valérie,30/06/1966,Non +60,Oise,04,4ème circonscription,8,61,M,NGABISSIO,Noël,19/11/1943,ECO,"Professeur, profession scientifique",Non,M,SANTO,Sylvain,15/07/1953,Non +60,Oise,04,4ème circonscription,9,20,F,DASINI,Caroline,24/02/1969,DXG,"Professeur, profession scientifique",Non,F,MEUBLAT,Valérie,23/02/1965,Non +60,Oise,04,4ème circonscription,10,42,M,BEDOSSA,Thierry,09/12/1964,ECO,Profession libérale,Non,F,GORINS,Elisa,14/05/1993,Non +60,Oise,04,4ème circonscription,11,70,M,BASSINOT,Xavier,19/02/1986,DVD,"Contremaître, agent de maîtrise",Non,M,OLIVIER,Michel,10/12/1956,Non +60,Oise,04,4ème circonscription,12,13,M,ASSAMTI,Mohamed,09/08/1960,NUP,"Professeur, profession scientifique",Non,F,ARRAULT,Mélissa,11/08/2000,Non +60,Oise,04,4ème circonscription,13,32,F,REYNAL,Sophie,16/02/1972,DVC,Profession libérale,Non,M,KORELL,Christophe,11/07/1975,Non +60,Oise,05,5ème circonscription,1,11,F,BECHERINI,Hélène,09/08/1958,DXG,"Professeur, profession scientifique",Non,M,DENIS,Xavier,28/07/1961,Non +60,Oise,05,5ème circonscription,2,8,F,LAMZOUDI,Myriam,23/10/1976,RN,Profession libérale,Non,M,AUBIGNY,Alain,21/03/1952,Non +60,Oise,05,5ème circonscription,3,58,M,BLANCHARD,Luc,14/10/1969,NUP,"Professeur, profession scientifique",Non,F,LIÉGEOIS,Marie,03/02/1978,Non +60,Oise,05,5ème circonscription,4,38,M,VATIN,Pierre,21/08/1967,LR,Cadre de la fonction publique,Oui,F,CARLIER,Danielle,20/09/1948,Non +60,Oise,05,5ème circonscription,5,40,F,HARRAY COHEN,Régine,01/09/1965,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,CAUX,Audrey,30/04/1981,Non +60,Oise,05,5ème circonscription,6,56,M,FERNANDES,Augusto,03/05/1964,DSV,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,LENGLEN,Michel,17/12/1993,Non +60,Oise,05,5ème circonscription,7,16,F,LANGLOIS-MEURINNE,Clary,30/04/1969,REC,Commerçant et assimilé,Non,M,GACHIGNARD,François,22/08/1971,Non +60,Oise,05,5ème circonscription,8,26,M,DIOT,Etienne,03/01/1985,ENS,Cadre administratif et commercial d'entreprise,Non,F,MONTREUIL,Sabine,01/09/1972,Non +60,Oise,06,6ème circonscription,1,15,F,ROGEZ,Véronique,17/03/1958,DSV,Profession libérale,Non,M,FILLAUD,Bertrand,21/03/1946,Non +60,Oise,06,6ème circonscription,2,63,F,ESCHERICH,Elisa,22/02/1983,ECO,Employé de commerce,Non,M,DUBOST,Jean-Jacques,07/01/1933,Non +60,Oise,06,6ème circonscription,3,12,F,FONTAINE,Anne-Sophie,04/06/1971,LR,Cadre de la fonction publique,Non,F,SCHWARZ,Sophie,09/01/1980,Non +60,Oise,06,6ème circonscription,4,6,M,IMBERT,Guy-Eric,24/05/1964,REC,Cadre de la fonction publique,Non,F,DUFOUR,Marie,02/10/1981,Non +60,Oise,06,6ème circonscription,5,41,F,IUNG,Nicole,15/01/1961,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,DRUAIS,Maryse,18/11/1952,Non +60,Oise,06,6ème circonscription,6,29,M,GUINIOT,Michel,29/11/1954,RN,Ancien cadre,Non,M,GAFFÉ,Vincent,07/11/1981,Non +60,Oise,06,6ème circonscription,7,10,M,ISKIN,Jean-Marc,15/07/1956,DXG,Ouvrier qualifié de type industriel,Non,F,LION,Béatrice,04/10/1950,Non +60,Oise,06,6ème circonscription,8,27,F,BUREAU-BONNARD,Carole,09/08/1965,ENS,Profession libérale,Oui,M,KAYA,Serdar,18/06/1991,Non +60,Oise,06,6ème circonscription,9,60,M,DUMOULIN,Florian,07/07/1999,NUP,Profession libérale,Non,F,BEDOS,Marie-Pierre,28/08/1951,Non +60,Oise,06,6ème circonscription,10,30,M,MAB-BREKIESZ,Marc-Antoine,13/09/1984,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,PETITPAS-DE AZEVEDO,Sandra,09/07/1978,Non +60,Oise,07,7ème circonscription,1,14,F,ITALIANI,Florence,18/06/1954,REC,Ancienne profession intermédiaire,Non,M,BARBERY,Jean-Claude,30/07/1953,Non +60,Oise,07,7ème circonscription,2,43,F,BOILLET,Agnès,08/04/1962,ECO,Profession intermédiaire de la santé et du travail social,Non,F,SUCHET,Anais,14/03/1996,Non +60,Oise,07,7ème circonscription,3,3,M,MINOT,Maxime,20/07/1987,LR,Ancien employé,Oui,F,DIAS,Térésa,26/11/1974,Non +60,Oise,07,7ème circonscription,4,18,F,DINGIVAL,Agnès,26/05/1958,DXG,Employé civil et agent de service de la fonction publique,Non,M,VATINEL,Franck,27/10/1965,Non +60,Oise,07,7ème circonscription,5,72,M,ROUL,Daniel,31/10/1973,DSV,Cadre administratif et commercial d'entreprise,Non,F,GATEAU,Manon,21/12/1995,Non +60,Oise,07,7ème circonscription,6,33,F,VAN ELSUWE,Ophélie,11/10/1978,ENS,Commerçant et assimilé,Non,M,CARON,Didier,15/09/1959,Non +60,Oise,07,7ème circonscription,7,39,M,PEN,Loïc,29/12/1968,NUP,"Professeur, profession scientifique",Non,F,JAKOVLJEVIC,Mirjana,06/02/1963,Non +60,Oise,07,7ème circonscription,8,21,M,SZYSZKA,Tristan,07/07/1991,RN,"Professeur des écoles, instituteur et assimilé",Non,M,FIQUET,Grégory,01/01/1977,Non +61,Orne,01,1ère circonscription,1,10,F,MAIGNAN,Myriam,23/07/1961,RN,Employé administratif d'entreprise,Non,M,GILBERT,Pascal,02/04/1963,Non +61,Orne,01,1ère circonscription,2,22,F,DUHARD,Marie-Annick,28/03/1952,ENS,Ancien cadre,Non,M,BOUCHÉ,Nicolas,06/03/1972,Non +61,Orne,01,1ère circonscription,3,26,M,LORAND-BRIONNE,Marc,07/05/1971,ECO,Chauffeur,Non,F,DUTOT,Patricia,10/03/1958,Non +61,Orne,01,1ère circonscription,4,5,M,PILOQUET,Oscar,24/07/1998,REC,"Elève, étudiant",Non,M,HERBRETEAU,Raymond,16/09/1949,Non +61,Orne,01,1ère circonscription,5,15,F,JOURDAN,Chantal,02/09/1958,NUP,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,M,SEBERT,Maxence,12/07/1990,Non +61,Orne,01,1ère circonscription,6,28,M,SOUL,Bernard,18/04/1953,LR,Ancienne profession intermédiaire,Non,F,DOUVRY,Sophie,29/03/1978,Non +61,Orne,01,1ère circonscription,7,9,F,FRÉVAL,Martine,05/08/1960,ECO,Ancien employé,Non,F,FLICHER,Isabelle,06/04/1962,Non +61,Orne,01,1ère circonscription,8,18,F,TESSIER,Florence,08/09/1954,DSV,Ancienne profession intermédiaire,Non,F,LE BERRE,Claire,01/03/1981,Non +61,Orne,01,1ère circonscription,9,4,F,LAPLASSE,Sylvie,30/06/1976,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,F,DE LA FERTE,Adélaïde,19/07/1998,Non +61,Orne,01,1ère circonscription,10,2,F,SÉCHET,Charlotte,18/03/1973,DXG,"Professeur, profession scientifique",Non,M,TRUCHON,Luc,18/01/1964,Non +61,Orne,02,2ème circonscription,1,7,F,EL KHALEDI,Amale,08/07/1964,ENS,Commerçant et assimilé,Non,F,BARBIER,Flora,15/09/2002,Non +61,Orne,02,2ème circonscription,2,27,F,LOUWAGIE,Véronique,20/03/1961,LR,Profession libérale,Oui,M,LIGER,Thierry,27/05/1970,Non +61,Orne,02,2ème circonscription,3,14,M,DE BOURBON PARME,Amaury,30/10/1991,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,VIENNE,Gérard,03/02/1953,Non +61,Orne,02,2ème circonscription,4,20,M,MOUSSET,Denis,27/06/1961,DIV,Agriculteur sur moyenne exploitation,Non,F,GARCIA,Paula,14/08/1966,Non +61,Orne,02,2ème circonscription,5,21,F,BUSSIÈRE,Cécile,04/12/1982,NUP,Profession libérale,Non,M,RISTIC,Pierre,13/12/1971,Non +61,Orne,02,2ème circonscription,6,19,F,MARIE,Sandrine,10/03/1967,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LATEUX,Pierre,20/04/1948,Non +61,Orne,02,2ème circonscription,7,16,F,VELLY,Bernadette,07/05/1967,DXG,"Professeur, profession scientifique",Non,M,BIAGGINI,Alain,06/04/1952,Non +61,Orne,02,2ème circonscription,8,8,F,ANSQUER,Patricia,11/01/1956,ECO,Ancien employé,Non,F,REBINDAINE,Elodie,03/12/1982,Non +61,Orne,02,2ème circonscription,9,24,M,JOSEPH,Christophe,02/08/1964,DVG,Cadre de la fonction publique,Non,F,FRUCTUS,Jade,19/06/1989,Non +61,Orne,02,2ème circonscription,10,11,M,MOREL,Alexandre,15/05/1990,RN,"Contremaître, agent de maîtrise",Non,M,LATINIER,Gérard,22/04/1959,Non +61,Orne,03,3ème circonscription,1,25,M,NURY,Jérôme,25/08/1972,LR,Cadre administratif et commercial d'entreprise,Oui,F,FOUCHER-CHAZÉ,Cendrine,14/10/1977,Non +61,Orne,03,3ème circonscription,2,23,M,BEAUMONT,Vincent,22/11/1956,DVC,Ancien cadre,Non,M,RABACHE,Gilles,31/08/1955,Non +61,Orne,03,3ème circonscription,3,17,F,GIBAULT,Solène,30/08/1994,ENS,Cadre administratif et commercial d'entreprise,Non,M,TERRÉ,Paul-Emilien,19/05/1987,Non +61,Orne,03,3ème circonscription,4,6,F,GAUER,Claire-Emmanuelle,27/01/1992,REC,"Professeur, profession scientifique",Non,M,DEWILDE,Jean-François,11/11/1950,Non +61,Orne,03,3ème circonscription,5,30,M,YVER,Aymeric,22/12/1986,DSV,Profession intermédiaire de la santé et du travail social,Non,F,GRAULIER,Morgane,02/08/2000,Non +61,Orne,03,3ème circonscription,6,3,M,GAUTIER,Arnaud,11/03/1974,DXG,"Professeur, profession scientifique",Non,M,CATHERINE,Pascal,26/11/1957,Non +61,Orne,03,3ème circonscription,7,12,M,FRÉMONT,Anthony,26/04/1980,RN,Agriculteur sur petite exploitation,Non,M,CLOUET,Guillaume,20/06/1991,Non +61,Orne,03,3ème circonscription,8,29,M,KHEMARI,Mehdi,21/05/1988,NUP,Profession intermédiaire de la santé et du travail social,Non,F,LEGUÉDÉ,Michelle,30/06/1949,Non +61,Orne,03,3ème circonscription,9,32,M,CLÉRIS,Marc,21/03/1966,DVC,Ingénieur et cadre technique d'entreprise,Non,F,SEASSAU,Magali,24/01/1980,Non +61,Orne,03,3ème circonscription,10,31,M,DURANDY,Didier,30/12/1945,DIV,Profession libérale,Non,F,DE GASTÉ,Donatienne,25/06/1981,Non +62,Pas-de-Calais,01,1ère circonscription,1,20,M,WIELGOSZ,Michel,24/09/1967,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,THOMAS,Laurence,22/10/1970,Non +62,Pas-de-Calais,01,1ère circonscription,2,24,M,DUVERGÉ,Bruno,03/04/1957,ENS,Ancien cadre,Oui,F,GAILLARD,Ingrid,29/12/1974,Non +62,Pas-de-Calais,01,1ère circonscription,3,28,F,BERTHOUD,Marie,30/11/1987,DXG,Employé civil et agent de service de la fonction publique,Non,M,RÉTHORÉ,Toussaint,03/09/1988,Non +62,Pas-de-Calais,01,1ère circonscription,4,81,F,ITEY,Liliane,07/12/1937,DVD,Ancien agriculteur exploitant,Non,M,LAMBIN,Hugues,17/12/1982,Non +62,Pas-de-Calais,01,1ère circonscription,5,100,M,FLAHAUT,Michel,01/06/1970,DVG,Technicien,Non,F,CIESLAK,Jocelyne,05/06/1951,Non +62,Pas-de-Calais,01,1ère circonscription,6,105,F,BERNARD,Marie,13/07/1982,LR,"Professeur, profession scientifique",Non,M,YUX,Alain,17/07/1965,Non +62,Pas-de-Calais,01,1ère circonscription,7,106,M,CAGNACHE,Eric,23/07/1983,NUP,"Professeur, profession scientifique",Non,F,LECLUSE,Virginie,05/07/1974,Non +62,Pas-de-Calais,01,1ère circonscription,8,53,M,BLAIRY,Emmanuel,14/03/1986,RN,"Contremaître, agent de maîtrise",Non,M,MOCQUANT,Gil,10/08/1983,Non +62,Pas-de-Calais,01,1ère circonscription,9,49,M,FOURNIER,Geoffrey,20/10/1990,REC,Cadre administratif et commercial d'entreprise,Non,F,CAUDRON,Agnès,24/02/1969,Non +62,Pas-de-Calais,02,2ème circonscription,1,51,F,LAPOUILLE,Emmanuelle,03/07/1970,LR,Cadre de la fonction publique,Non,M,DELAVAQUERIE,Melchior,03/05/1998,Non +62,Pas-de-Calais,02,2ème circonscription,2,83,M,HEUSÈLE,Alban,16/02/1981,RN,Profession intermédiaire administrative de la fonction publique,Non,M,DUCROUX,Thierry,16/11/1961,Non +62,Pas-de-Calais,02,2ème circonscription,3,102,F,RENGARD,Morgane,13/08/1999,NUP,"Elève, étudiant",Non,M,DUSSAUX,Charles-Harris,09/07/1989,Non +62,Pas-de-Calais,02,2ème circonscription,4,32,F,BOUFFART,Béatrice,23/01/1962,DXG,Ancienne profession intermédiaire,Non,M,BELHADJ,Abmajid,05/05/1959,Non +62,Pas-de-Calais,02,2ème circonscription,5,7,F,LOIR,Véronique,20/02/1956,DSV,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,THOMAS,Thérèse-Marie,09/03/1948,Non +62,Pas-de-Calais,02,2ème circonscription,6,52,F,GEORGET,Isabelle,21/05/1956,REC,Ancien cadre,Non,M,WATTRELOT,Benoît,20/07/1996,Non +62,Pas-de-Calais,02,2ème circonscription,7,116,M,PEUGNET,Sébastien,08/06/1980,DIV,Technicien,Non,M,PEYDECASTAING,David,07/01/1986,Non +62,Pas-de-Calais,02,2ème circonscription,8,16,F,ZAYONNET,Nathalie,10/01/1967,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,DECROIX,Géraldine,01/05/1967,Non +62,Pas-de-Calais,02,2ème circonscription,9,50,M,LADSOUS,Bruno,04/08/1956,ECO,Ancien cadre,Non,F,LEROY,Corinne,09/07/1965,Non +62,Pas-de-Calais,02,2ème circonscription,10,29,M,LA GRANGE,Philippe,30/10/1958,RDG,Ancien cadre,Non,F,GUENDOUZ,Malika,16/12/1973,Non +62,Pas-de-Calais,02,2ème circonscription,11,82,F,NAYET,Pauline,22/09/1985,DVG,Profession libérale,Non,F,KARBOWY,Sylvie,03/01/1961,Non +62,Pas-de-Calais,02,2ème circonscription,12,101,M,KOSBUR,Arnaud,04/07/1971,DIV,Profession intermédiaire de la santé et du travail social,Non,F,COPIN,Véronique,09/05/1966,Non +62,Pas-de-Calais,02,2ème circonscription,13,27,F,MAQUET,Jacqueline,13/05/1949,ENS,Ancien cadre,Oui,M,DESFACHELLE,Nicolas,13/07/1969,Non +62,Pas-de-Calais,03,3ème circonscription,1,84,F,FIEVET,Elodie,09/07/1985,REG,Employé administratif d'entreprise,Non,M,FIEVET,Frédéric,24/02/1979,Non +62,Pas-de-Calais,03,3ème circonscription,2,36,M,DESMARETZ,Arnaud,08/07/1972,RDG,Commerçant et assimilé,Non,F,CECAK,Carole,19/12/1964,Non +62,Pas-de-Calais,03,3ème circonscription,3,56,M,KAZNOWSKI,Guillaume,27/06/1988,REC,Employé civil et agent de service de la fonction publique,Non,F,KOVACS,Laurence,20/08/1979,Non +62,Pas-de-Calais,03,3ème circonscription,4,17,M,CAFLERS,Vincent,08/06/1967,DVD,Employé de commerce,Non,M,MULIER,Fabrice,02/05/1976,Non +62,Pas-de-Calais,03,3ème circonscription,5,9,M,DAMAY,Alexandre,22/03/1979,ECO,Employé civil et agent de service de la fonction publique,Non,F,VINCKE,Cindy,16/03/1985,Non +62,Pas-de-Calais,03,3ème circonscription,6,34,M,DARRAS,Michel,25/01/1956,DXG,Ancien ouvrier,Non,M,GERIN,Jérôme,06/08/1969,Non +62,Pas-de-Calais,03,3ème circonscription,7,103,M,TELLIER,Jean-Marc,23/08/1969,NUP,Ancien cadre,Non,F,HOCHART,Donata,07/07/1954,Non +62,Pas-de-Calais,03,3ème circonscription,8,54,M,BAYS,Nicolas,01/05/1977,ENS,Cadre de la fonction publique,Non,M,LACHOR,Yoann,17/01/1976,Non +62,Pas-de-Calais,03,3ème circonscription,9,38,M,CLAVET,Bruno,06/05/1989,RN,Cadre de la fonction publique,Non,F,PIJANOWSKI,Nathalie,13/01/1972,Non +62,Pas-de-Calais,03,3ème circonscription,10,112,F,LAMBRE,Claudine,04/10/1962,LR,Profession intermédiaire de la santé et du travail social,Non,M,PIAT,Guy,03/09/1945,Non +62,Pas-de-Calais,04,4ème circonscription,1,42,M,HERICOURT,Dominique,11/03/1955,DXG,Ancienne profession intermédiaire,Non,M,MACQUET,Patrick,29/11/1959,Non +62,Pas-de-Calais,04,4ème circonscription,2,5,M,ANDREAU,Jean-Michel,24/05/1956,DSV,Ingénieur et cadre technique d'entreprise,Non,F,MARCONI,Valérie,09/10/1969,Non +62,Pas-de-Calais,04,4ème circonscription,3,123,F,DELATTRE,Karen,09/02/1965,DXG,Personnel des services directs aux particuliers,Non,M,LAUTOUR,Jérémy,22/12/1982,Non +62,Pas-de-Calais,04,4ème circonscription,4,58,M,SERGENT,David,20/02/1971,REC,Ingénieur et cadre technique d'entreprise,Non,M,STEEGMANS,Franck,15/06/1964,Non +62,Pas-de-Calais,04,4ème circonscription,5,94,F,VANPEENE,Françoise,06/04/1965,RN,Profession libérale,Non,M,DEPRES,Nicolas,08/04/2000,Non +62,Pas-de-Calais,04,4ème circonscription,6,2,M,FAIT,Philippe,24/06/1969,ENS,"Professeur des écoles, instituteur et assimilé",Non,F,DEFOSSE,Annie,05/01/1954,Non +62,Pas-de-Calais,04,4ème circonscription,7,61,M,HOFF,Mervyn,05/05/1993,DXD,Artisan,Non,F,MARQUANT,Sylviane,15/12/1979,Non +62,Pas-de-Calais,04,4ème circonscription,8,59,F,BONVOISIN,Mary,21/06/1974,LR,Cadre de la fonction publique,Non,M,TETARD,Ghislain,28/12/1952,Non +62,Pas-de-Calais,04,4ème circonscription,9,21,F,AMEYE,Evelyne,29/09/1963,ECO,Profession libérale,Non,F,LEROY,Caroline,21/05/1989,Non +62,Pas-de-Calais,04,4ème circonscription,10,40,F,DRAIN,Blandine,26/02/1977,NUP,"Professeur, profession scientifique",Non,M,FILIPPI,Florent,27/05/1972,Non +62,Pas-de-Calais,05,5ème circonscription,1,127,F,HINGREZ-CEREDA,Mireille,14/05/1969,DVG,"Professeur, profession scientifique",Non,M,CUVILLIER,Frédéric,09/12/1968,Non +62,Pas-de-Calais,05,5ème circonscription,2,86,M,GOLLIOT,Antoine,13/08/1985,RN,Technicien,Non,M,PAMART,Thomas,06/12/1972,Non +62,Pas-de-Calais,05,5ème circonscription,3,31,M,CARRAUD,Olivier,18/02/1979,DXG,"Professeur, profession scientifique",Non,M,LANGLET,Pierre,01/02/1974,Non +62,Pas-de-Calais,05,5ème circonscription,4,62,F,LUCIEN,Emeline,14/09/1998,REC,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,PELTIER,Pierre,17/06/1998,Non +62,Pas-de-Calais,05,5ème circonscription,5,97,M,PONT,Jean-Pierre,09/05/1950,ENS,Profession libérale,Oui,F,DERAM,Sandrine,21/09/1983,Non +62,Pas-de-Calais,05,5ème circonscription,6,12,F,BÉLART,Nancy,06/07/1963,NUP,Ancienne profession intermédiaire,Non,M,LECARPENTIER,Jérémy,02/07/1997,Non +62,Pas-de-Calais,05,5ème circonscription,7,18,M,BLANCKAERT,Christophe,22/04/1969,ECO,Profession libérale,Non,F,LEFEBVRE,Stéphanie,18/12/1974,Non +62,Pas-de-Calais,05,5ème circonscription,8,85,F,DELBART,Géraldine,18/11/1990,DVD,"Professeur des écoles, instituteur et assimilé",Non,M,VIUDES,Jean-Luc,25/06/1966,Non +62,Pas-de-Calais,06,6ème circonscription,1,111,M,LOIRE-RÉNIER,Terry,25/03/2003,REG,"Elève, étudiant",Non,F,BAYRAM,Ceyda,25/06/2003,Non +62,Pas-de-Calais,06,6ème circonscription,2,95,F,ENGRAND,Christine,07/05/1955,RN,Cadre administratif et commercial d'entreprise,Non,M,FASQUELLE,Cédric,02/05/1983,Non +62,Pas-de-Calais,06,6ème circonscription,3,26,F,BOURGUIGNON,Brigitte,21/03/1959,ENS,Cadre de la fonction publique,Non,M,LEROY,Christian,23/01/1966,Non +62,Pas-de-Calais,06,6ème circonscription,4,87,M,ERCKELBOUDT,Simon,28/07/2000,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,WOETS,Didier,02/05/1982,Non +62,Pas-de-Calais,06,6ème circonscription,5,15,M,LEBECQ,Pascal,06/11/1959,NUP,Artisan,Non,F,VIANDIER,Alexandra,16/02/1993,Non +62,Pas-de-Calais,06,6ème circonscription,6,14,F,MALIAR,Faustine,07/06/1995,LR,Cadre de la fonction publique,Non,M,DEBOVE,Gilles,14/10/1968,Non +62,Pas-de-Calais,06,6ème circonscription,7,128,F,DUVIEUBOURG,Patricia,17/09/1958,DVG,Ancien employé,Non,M,JOSSIEN,Jérôme,27/07/1969,Non +62,Pas-de-Calais,06,6ème circonscription,8,65,M,JUDEK,Jérôme,30/08/1980,REC,Ingénieur et cadre technique d'entreprise,Non,F,FASSILIS,Helena,11/09/1999,Non +62,Pas-de-Calais,06,6ème circonscription,9,4,F,BOUREL,Vanessa,08/09/1987,ECO,Profession intermédiaire de la santé et du travail social,Non,F,BAUDELET,Elisabeth,23/11/1968,Non +62,Pas-de-Calais,06,6ème circonscription,10,33,F,BOUREL,Laure,16/03/1965,DXG,"Professeur, profession scientifique",Non,M,WALLARD,Jean-Paul,22/12/1960,Non +62,Pas-de-Calais,06,6ème circonscription,11,117,F,BLAUWART,Claudine,25/04/1943,DSV,Ancien cadre,Non,M,DUCATEZ,Jean-Luc,12/07/1959,Non +62,Pas-de-Calais,07,7ème circonscription,1,69,M,DESCAMPS,François,17/01/1964,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,LELEU,Myriam,03/11/1976,Non +62,Pas-de-Calais,07,7ème circonscription,2,37,M,MOUSSALLY,Jean-Pierre,01/09/1971,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,ROTAR,Brigitte,18/07/1960,Non +62,Pas-de-Calais,07,7ème circonscription,3,107,F,FATOUX,Isabelle,17/05/1953,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,VINCENOT,Dominique,24/01/1973,Non +62,Pas-de-Calais,07,7ème circonscription,4,22,F,NISZCZOTA,Dominique,07/10/1963,ECO,Profession intermédiaire de la santé et du travail social,Non,M,NISZCZOTA,Bastian,19/12/1996,Non +62,Pas-de-Calais,07,7ème circonscription,5,88,F,LEPRETRE,Laurence,16/04/1966,DVD,Ouvrier qualifié de type industriel,Non,M,PENIN,Bruno,29/07/1966,Non +62,Pas-de-Calais,07,7ème circonscription,6,25,M,DUMONT,Pierre-Henri,07/10/1987,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,LEBLOND,Edwige,14/02/1964,Non +62,Pas-de-Calais,07,7ème circonscription,7,39,M,DE FLEURIAN,Marc,07/02/1989,RN,Cadre de la fonction publique,Non,F,CRÉBOUW,Aurélie,23/07/1980,Non +62,Pas-de-Calais,07,7ème circonscription,8,35,M,VASSEUR,Philippe,12/02/1957,RDG,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,SIMONET,Sylvie,27/03/1965,Non +62,Pas-de-Calais,07,7ème circonscription,9,67,M,WAROCZYK,Henri,09/07/1951,ENS,Ancien cadre,Non,F,FONTAINE,Janique,28/06/1965,Non +62,Pas-de-Calais,07,7ème circonscription,10,66,M,BERTELOOT,Frédéric,10/01/1964,REC,Artisan,Non,F,SANTIN,Valérie,26/06/1966,Non +62,Pas-de-Calais,07,7ème circonscription,11,89,F,MILLOT,Françoise,04/08/1952,DXG,Ancienne profession intermédiaire,Non,M,LETREN,Didier,21/07/1955,Non +62,Pas-de-Calais,08,8ème circonscription,1,90,M,EVRARD,Auguste,04/05/2000,RN,Cadre de la fonction publique,Non,F,HELIE,Séverine,18/04/1979,Non +62,Pas-de-Calais,08,8ème circonscription,2,122,M,CARON,Philippe,05/04/1952,UDI,Ancien cadre,Non,F,BIALON,Perrine,16/11/1983,Non +62,Pas-de-Calais,08,8ème circonscription,3,108,M,ROUSSEL,Simon,02/01/1991,NUP,Employé administratif d'entreprise,Non,F,FAYEULLE,Hélène,08/03/1984,Non +62,Pas-de-Calais,08,8ème circonscription,4,11,F,VANDOMME,Laura,12/02/1987,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,MONIEZ,Stéphane,07/08/1969,Non +62,Pas-de-Calais,08,8ème circonscription,5,68,F,MAYAUD,Aude,21/06/1987,REC,Ingénieur et cadre technique d'entreprise,Non,M,WEBER,Jérémie,19/07/2000,Non +62,Pas-de-Calais,08,8ème circonscription,6,30,M,POTTERIE,Benoît,23/07/1967,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,DIERS,Véronique,25/12/1970,Non +62,Pas-de-Calais,08,8ème circonscription,7,70,M,BAYARD,Frédéric,23/09/1973,DSV,Ingénieur et cadre technique d'entreprise,Non,M,VROELANT,Stéphane,03/02/1968,Non +62,Pas-de-Calais,08,8ème circonscription,8,91,F,SACHOT,Marie-Denise,18/04/1951,DVD,Ancien employé,Non,M,LEURS,Jacques,16/03/1959,Non +62,Pas-de-Calais,08,8ème circonscription,9,23,M,PETIT,Bertrand,28/08/1964,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,HOCQ,René,23/11/1951,Non +62,Pas-de-Calais,08,8ème circonscription,10,41,M,ZANNIS,Etienne,13/08/1990,DXG,"Professeur, profession scientifique",Non,F,LEGRAND,Valérie,14/09/1974,Non +62,Pas-de-Calais,09,9ème circonscription,1,43,M,ELAZOUZI,Hakim,23/08/1986,UDI,Cadre de la fonction publique,Non,M,DEBAS,Grégory,03/08/1975,Non +62,Pas-de-Calais,09,9ème circonscription,2,63,F,JUDEK,Fanny,16/09/1989,REC,Employé civil et agent de service de la fonction publique,Non,M,CAILLIAUX,Axel,17/10/1974,Non +62,Pas-de-Calais,09,9ème circonscription,3,45,F,MATTON,Charlotte,16/05/1978,DSV,Profession libérale,Non,F,DELEBARRE,Véronique,02/09/1978,Non +62,Pas-de-Calais,09,9ème circonscription,4,96,M,BAÏK,Abdellah,13/12/1964,ECO,"Professeur, profession scientifique",Non,F,QUENIART,Géraldine,04/05/1967,Non +62,Pas-de-Calais,09,9ème circonscription,5,46,F,DEFLANDRE,Anne-Marie,27/02/1956,DXG,Ancien employé,Non,M,LALOUX,Grégory,14/02/1978,Non +62,Pas-de-Calais,09,9ème circonscription,6,92,M,BRASSEUR,Valentin,22/11/1996,DIV,Profession intermédiaire de la santé et du travail social,Non,F,PETIT,Christelle,21/01/1975,Non +62,Pas-de-Calais,09,9ème circonscription,7,10,F,BONIFACIO,Amandine,03/10/1990,NUP,Employé administratif d'entreprise,Non,M,TRACHÉ,Daniel,09/07/1963,Non +62,Pas-de-Calais,09,9ème circonscription,8,64,M,PINCHON,Matthieu,01/12/1978,DVD,Ingénieur et cadre technique d'entreprise,Non,M,DUPONT,Laurent,20/03/1973,Non +62,Pas-de-Calais,09,9ème circonscription,9,98,F,DEPREZ-AUDEBERT,Marguerite,17/05/1952,ENS,Ancien cadre,Oui,M,THOREZ,Jean-Claude,14/04/1954,Non +62,Pas-de-Calais,09,9ème circonscription,10,109,F,FELLAHA,Zaïna,15/02/1980,DIV,Profession intermédiaire de la santé et du travail social,Non,M,SOFIANE,Ali,13/03/1982,Non +62,Pas-de-Calais,09,9ème circonscription,11,44,F,PARMENTIER,Caroline,16/12/1965,RN,Profession intermédiaire administrative de la fonction publique,Non,M,MAESEELE,Alexandre,13/08/1997,Non +62,Pas-de-Calais,09,9ème circonscription,12,124,M,SAINT-ANDRÉ,Stéphane,21/05/1964,DVG,Cadre administratif et commercial d'entreprise,Non,M,ANDRIES,Lucien,10/01/1937,Non +62,Pas-de-Calais,09,9ème circonscription,13,113,F,MARTIN,Corinne,04/02/1958,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,SASIELA,Marie,09/12/1990,Non +62,Pas-de-Calais,09,9ème circonscription,14,48,M,DELAIRE,Jacques,23/03/1951,DXD,Ancien employé,Non,F,DETRAIT,Jocelyne,23/06/1948,Non +62,Pas-de-Calais,09,9ème circonscription,15,118,M,GUAQUIER,Julien,23/03/1994,DIV,Employé administratif d'entreprise,Non,F,BOURDON,Sylvie,18/12/1966,Non +62,Pas-de-Calais,10,10ème circonscription,1,120,F,VANTOUROUX,Françoise,07/06/1949,LR,Ancien cadre,Non,M,CASTELAIN,Daniel,05/07/1973,Non +62,Pas-de-Calais,10,10ème circonscription,2,47,F,RUS,Ludivine,05/10/1983,RDG,Employé civil et agent de service de la fonction publique,Non,M,EDOUARD,Eric,03/08/1964,Non +62,Pas-de-Calais,10,10ème circonscription,3,99,M,DAGBERT,Michel,28/01/1962,ENS,Employé civil et agent de service de la fonction publique,Non,F,DECOURCELLE,Catherine,29/07/1964,Non +62,Pas-de-Calais,10,10ème circonscription,4,125,M,MAJORCZYK,Rémy,04/12/1990,DIV,Employé de commerce,Non,M,DUQUESNOY,Thomas,03/01/1991,Non +62,Pas-de-Calais,10,10ème circonscription,5,60,F,HOUPLAIN,Myriane,05/06/1946,REC,Ancien employé,Oui,F,LEFEBVRE,Elissa,19/05/1998,Non +62,Pas-de-Calais,10,10ème circonscription,6,72,M,CAPPE,Florent,20/03/1968,DSV,"Professeur, profession scientifique",Non,M,HOCHART,Sébastien,01/01/1977,Non +62,Pas-de-Calais,10,10ème circonscription,7,71,F,COQUERIE,Sandrine,02/04/1966,NUP,Profession intermédiaire administrative de la fonction publique,Non,M,KIEBA,Jordan,27/07/2002,Non +62,Pas-de-Calais,10,10ème circonscription,8,119,F,LEU,Noémie,27/09/1999,DVD,"Elève, étudiant",Non,M,TEINTENIER,Marc,24/11/1999,Non +62,Pas-de-Calais,10,10ème circonscription,9,104,M,FRAPPÉ,Thierry,23/05/1952,RN,Profession libérale,Non,M,PAJOT,Ludovic,18/11/1993,Non +62,Pas-de-Calais,10,10ème circonscription,10,19,M,LALOUX,Geoffrey,29/03/1982,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,VAHÉ,Céline,02/06/1973,Non +62,Pas-de-Calais,10,10ème circonscription,11,114,M,CARINCOTTE,Davy,14/10/1981,ECO,"Elève, étudiant",Non,F,ANTOINE,Julie,09/05/1987,Non +62,Pas-de-Calais,11,11ème circonscription,1,13,F,CARON,Léa,11/03/1992,ECO,"Contremaître, agent de maîtrise",Non,M,FRADJ,Patrick,11/03/1992,Non +62,Pas-de-Calais,11,11ème circonscription,2,73,F,GAI,Dominique,07/09/1962,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,LORENTE,Jean,07/03/1961,Non +62,Pas-de-Calais,11,11ème circonscription,3,8,M,WEINMANN,Gautier,11/03/1983,DIV,Cadre de la fonction publique,Non,F,SOLTYSIAK,Katia,15/11/1971,Non +62,Pas-de-Calais,11,11ème circonscription,4,121,M,LEGRAND,Maxime,02/07/1975,RDG,Chef d'entreprise de 10 salariés ou plus,Non,M,HARDUIN,Stéphane,14/05/1975,Non +62,Pas-de-Calais,11,11ème circonscription,5,55,F,LE PEN,Marine,05/08/1968,RN,Profession libérale,Oui,M,BRIOIS,Steeve,28/11/1972,Non +62,Pas-de-Calais,11,11ème circonscription,6,115,F,TONDELIER,Marine,23/08/1986,NUP,Cadre administratif et commercial d'entreprise,Non,F,YOSBERGUE,Cécile,16/11/1983,Non +62,Pas-de-Calais,11,11ème circonscription,7,110,M,RAÏSS,Lahcen,11/03/1978,DIV,Employé civil et agent de service de la fonction publique,Non,M,BARAKA,Yanis,30/06/1992,Non +62,Pas-de-Calais,11,11ème circonscription,8,93,F,TASZAREK,Anne-Sophie,02/09/1986,UDI,Commerçant et assimilé,Non,M,DUQUESNE,Francis,17/12/1964,Non +62,Pas-de-Calais,11,11ème circonscription,9,74,F,PINTUS,Alexandrine,11/09/1991,ENS,"Contremaître, agent de maîtrise",Non,F,BARLET,Stéphanie,26/12/1975,Non +62,Pas-de-Calais,12,12ème circonscription,1,80,M,DE CARRION,Alain,30/10/1965,RDG,"Ancien artisan, commerçant, chef d'entreprise",Non,F,DA SILVA,Inès,14/01/1975,Non +62,Pas-de-Calais,12,12ème circonscription,2,3,M,VAN LIERDE,Christophe,04/02/1963,DXG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,TILLIER,Pascale,31/07/1958,Non +62,Pas-de-Calais,12,12ème circonscription,3,75,M,DEBRUYNE,Patrick,12/08/1976,ENS,Cadre de la fonction publique,Non,F,MELLIN,Sophie,17/09/1960,Non +62,Pas-de-Calais,12,12ème circonscription,4,79,F,DANJOU,Emmanuelle,17/01/1967,REC,Cadre administratif et commercial d'entreprise,Non,M,FLAMENT,Alexis,07/07/1991,Non +62,Pas-de-Calais,12,12ème circonscription,5,77,M,PETIT,Matthieu,20/04/1977,DSV,Employé civil et agent de service de la fonction publique,Non,F,ROSIAUX,Vanessa,03/12/1981,Non +62,Pas-de-Calais,12,12ème circonscription,6,6,M,DARRAS,Jérôme,30/10/1957,NUP,Ancien cadre,Non,F,BUISSETTE,Christelle,30/04/1976,Non +62,Pas-de-Calais,12,12ème circonscription,7,126,F,BELOT,Martine,23/12/1955,LR,"Ancien artisan, commerçant, chef d'entreprise",Non,M,LANOY,Michel,07/12/1964,Non +62,Pas-de-Calais,12,12ème circonscription,8,78,M,SCHEENAERTS,Régis,02/12/1963,DXG,Ouvrier qualifié de type industriel,Non,M,BERNARD,Eric,15/12/1963,Non +62,Pas-de-Calais,12,12ème circonscription,9,57,M,BILDE,Bruno,22/09/1976,RN,Profession libérale,Oui,F,MELONI,Caroline,21/01/1982,Non +62,Pas-de-Calais,12,12ème circonscription,10,76,M,AIT MOUSSA,Abdellah,02/07/1976,DIV,Chauffeur,Non,F,BLAMOU,Nadia,31/07/1977,Non +63,Puy-de-Dôme,01,1ère circonscription,1,47,M,BOUZID,Chrif,24/09/1968,DVG,Profession intermédiaire de la santé et du travail social,Non,F,ROUX-DOMINGET,Nathalie,01/03/1969,Non +63,Puy-de-Dôme,01,1ère circonscription,2,40,M,OLIVER,Xavier,22/12/1968,REC,Profession libérale,Non,M,DALAN,Alain,21/11/1951,Non +63,Puy-de-Dôme,01,1ère circonscription,3,30,F,MAXIMI,Marianne,13/11/1985,NUP,Profession intermédiaire de la santé et du travail social,Non,M,LANDIVAR,Diego,26/09/1981,Non +63,Puy-de-Dôme,01,1ère circonscription,4,39,M,FAUCHEUX,Patrice,15/06/1954,DXG,Ancien employé,Non,F,BODIN,Martine,21/11/1956,Non +63,Puy-de-Dôme,01,1ère circonscription,5,52,M,HECQUET,Laurent,25/09/1967,DVG,Ingénieur et cadre technique d'entreprise,Non,M,JOLLES,Simon,01/12/1982,Non +63,Puy-de-Dôme,01,1ère circonscription,6,5,M,LECLAIR,Dominique,16/05/1965,DXG,Technicien,Non,F,JUÉRY,Catherine,19/11/1954,Non +63,Puy-de-Dôme,01,1ère circonscription,7,15,F,BISCOS,Anne,09/01/1968,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,OUADAH,Yanis,22/03/2003,Non +63,Puy-de-Dôme,01,1ère circonscription,8,48,M,CAPOLINO,Maël,25/12/2000,REG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CHÂTEAU-ANNAUD,Sarah,06/11/1998,Non +63,Puy-de-Dôme,01,1ère circonscription,9,12,F,DE FRANCESCO,Aurélie,08/07/1977,ECO,Chauffeur,Non,M,REINHARD,Pierre,14/01/1948,Non +63,Puy-de-Dôme,01,1ère circonscription,10,37,M,GALPIER,Sébastien,26/07/1988,LR,Profession libérale,Non,M,CHABRILLAT,Antoine,22/03/1999,Non +63,Puy-de-Dôme,01,1ère circonscription,11,36,F,THOMAS,Valérie,21/01/1968,ENS,Profession libérale,Oui,M,LAVOCAT,Guy,14/02/1963,Non +63,Puy-de-Dôme,02,2ème circonscription,1,7,F,PIRÈS BEAUNE,Christine,06/10/1964,NUP,Cadre de la fonction publique,Oui,M,BARÉ,Michaël,16/05/1975,Non +63,Puy-de-Dôme,02,2ème circonscription,2,32,F,MONNET,Karina,25/09/1978,ENS,Cadre de la fonction publique,Non,M,SOLA,Guilhem,30/06/1970,Non +63,Puy-de-Dôme,02,2ème circonscription,3,44,F,LACOMBE,Marie-Paule,08/04/1964,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BEAUSSARON,Joseph,13/10/1944,Non +63,Puy-de-Dôme,02,2ème circonscription,4,18,F,DUPRÉ,Isabelle,18/06/1956,RN,Ancien employé,Non,M,BONNEFOY,Claude,05/09/1974,Non +63,Puy-de-Dôme,02,2ème circonscription,5,41,M,BERTHON,Kenny,07/03/1980,DVG,Cadre de la fonction publique,Non,M,GAILLARD,Jean-Michel,16/12/1986,Non +63,Puy-de-Dôme,02,2ème circonscription,6,21,M,DURIN,Sylvain,12/09/1977,LR,Employé civil et agent de service de la fonction publique,Non,F,ROUSSEL,Sandrine,09/11/1965,Non +63,Puy-de-Dôme,02,2ème circonscription,7,11,F,FREZOULS-LE PONT,Nicole,09/02/1958,ECO,Ancien cadre,Non,M,GIMENEZ,Max,14/04/1948,Non +63,Puy-de-Dôme,02,2ème circonscription,8,34,M,FÉLIX,Jean-Pierre,13/05/1948,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,F,GONCALVES,Marie,03/09/1968,Non +63,Puy-de-Dôme,02,2ème circonscription,9,26,M,CHABRIER,Aurélien,13/12/1989,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PAGÈS,Philippe,20/10/1964,Non +63,Puy-de-Dôme,02,2ème circonscription,10,3,M,TRUCHON,Franck,19/09/1963,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,SIMONET,Ivan,03/06/1969,Non +63,Puy-de-Dôme,03,3ème circonscription,1,50,F,WATREMEZ,Élisabeth,18/06/1961,DVD,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,MERLE,Jean Marc,04/03/1958,Non +63,Puy-de-Dôme,03,3ème circonscription,2,2,F,SAVRE,Marie,27/08/1971,DXG,Profession intermédiaire de la santé et du travail social,Non,M,MAINVILLE,Frédéric,20/05/1990,Non +63,Puy-de-Dôme,03,3ème circonscription,3,24,F,BATISSON,Françoise,27/01/1957,RN,Ancien employé,Non,M,HUGUET,Pascal,25/05/1959,Non +63,Puy-de-Dôme,03,3ème circonscription,4,27,F,HENRY,Mathilde,26/06/1996,REC,Ingénieur et cadre technique d'entreprise,Non,M,AIBY,Marc,31/08/1970,Non +63,Puy-de-Dôme,03,3ème circonscription,5,19,M,BONY,Richard,19/02/1972,DVG,Employé civil et agent de service de la fonction publique,Non,M,MANRY,Christian,07/05/1955,Non +63,Puy-de-Dôme,03,3ème circonscription,6,35,M,BONNET,Nicolas,11/02/1981,NUP,Ingénieur et cadre technique d'entreprise,Non,F,CROZET,Elisabeth,10/08/1976,Non +63,Puy-de-Dôme,03,3ème circonscription,7,20,F,LAVIER,Sophie,12/05/1967,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,F,MICHEL,Catherine,25/11/1954,Non +63,Puy-de-Dôme,03,3ème circonscription,8,23,F,LHERMET,Florence,05/06/1968,RDG,Ingénieur et cadre technique d'entreprise,Non,M,MEALLET,Roger Jean,03/03/1956,Non +63,Puy-de-Dôme,03,3ème circonscription,9,16,M,OTHILY,Cédic,08/09/1970,ECO,Commerçant et assimilé,Non,F,PALAO,Virginie,03/01/1979,Non +63,Puy-de-Dôme,03,3ème circonscription,10,8,F,MARCHIS,Marie-Anne,30/03/1967,LR,Profession intermédiaire administrative de la fonction publique,Non,M,MERCIER,Alain,04/12/1957,Non +63,Puy-de-Dôme,03,3ème circonscription,11,28,F,VICHNIEVSKY,Laurence,05/02/1955,ENS,Ancien cadre,Oui,M,FOUROT,Olivier,12/08/1963,Non +63,Puy-de-Dôme,04,4ème circonscription,1,29,F,GOLÉO,Valérie,17/12/1968,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BIDET,Alain,09/07/1964,Non +63,Puy-de-Dôme,04,4ème circonscription,2,25,F,SANCHEZ,Pascale,17/05/1960,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,PETIT,Clément,03/02/1992,Non +63,Puy-de-Dôme,04,4ème circonscription,3,10,F,CHAVROCHE,Isabelle,25/10/1962,ECO,Ancienne profession intermédiaire,Non,F,ROUSSEAU,Ingrid,17/10/1960,Non +63,Puy-de-Dôme,04,4ème circonscription,4,45,F,HÉNOUX,Béatrice,11/06/1966,DSV,Artisan,Non,M,MASCLET,Mathias,27/11/1986,Non +63,Puy-de-Dôme,04,4ème circonscription,5,46,F,LINGEMANN,Delphine,14/11/1972,ENS,Profession libérale,Non,M,POINSOT,Christian,12/12/1960,Non +63,Puy-de-Dôme,04,4ème circonscription,6,14,M,BRULÉ,Didier,27/08/1959,RN,Technicien,Non,M,LIMET,Anthony,16/07/1987,Non +63,Puy-de-Dôme,04,4ème circonscription,7,6,M,MAROTTE,François,24/11/1989,DXG,Employé de commerce,Non,M,DUFOUR,Claude,13/03/1954,Non +63,Puy-de-Dôme,04,4ème circonscription,8,51,M,PRADIER,Laurent,26/09/1964,DVC,Agriculteur sur petite exploitation,Non,F,MAHOUDEAUX,Gaelle,22/08/1967,Non +63,Puy-de-Dôme,04,4ème circonscription,10,22,F,DUBESSY,Florence,31/12/1965,LR,"Professeur des écoles, instituteur et assimilé",Non,M,BONY,Julien,20/09/1979,Non +63,Puy-de-Dôme,05,5ème circonscription,1,17,F,CARLETTO,Brigitte,15/07/1959,RN,Employé administratif d'entreprise,Non,M,LAVOINE,Tom,09/05/1996,Non +63,Puy-de-Dôme,05,5ème circonscription,2,13,M,LE PONT,Philippe,12/08/1952,ECO,Ancien cadre,Non,F,GIMENEZ,Dominique,26/09/1954,Non +63,Puy-de-Dôme,05,5ème circonscription,3,43,M,PRÉVOST,Jérémy,31/01/1996,REC,"Contremaître, agent de maîtrise",Non,M,FINOTO,Patrick,13/05/1969,Non +63,Puy-de-Dôme,05,5ème circonscription,4,42,M,COURTHALIAC,Yves,19/05/1971,LR,Policier et militaire,Non,M,THÉVENON,Maxime,05/11/1995,Non +63,Puy-de-Dôme,05,5ème circonscription,5,4,F,CAPRON,Gabrielle,28/02/1947,DXG,Ancien cadre,Non,M,NANGERONI,Guillaume,04/05/1990,Non +63,Puy-de-Dôme,05,5ème circonscription,6,31,M,CHASSAIGNE,André,02/07/1950,NUP,"Professeur, profession scientifique",Oui,M,BRUGEROLLES,Julien,05/07/1982,Non +63,Puy-de-Dôme,05,5ème circonscription,7,49,M,POINTUD,Pascal,14/05/1965,DVD,Ancienne profession intermédiaire,Non,F,CORBET,Florence,10/10/1975,Non +63,Puy-de-Dôme,05,5ème circonscription,8,38,F,TARRERIAS,Emmanuelle,08/07/1977,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MORLOT,Yann,04/10/1969,Non +63,Puy-de-Dôme,05,5ème circonscription,9,33,F,LEGRAND,Karine,28/07/1966,ENS,Profession intermédiaire administrative et commerciale des entreprises,Non,M,CESCUT,Christophe,29/12/1967,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,1,13,M,PINOTEAU,Jean-Jacques,18/02/1956,DIV,Profession libérale,Non,F,FEYTE,Marie,01/08/1964,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,2,63,M,PONSARD VIDAL,David,21/11/1969,DSV,Commerçant et assimilé,Non,F,DAYRAUD,Valérie,28/09/1969,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,3,17,F,HEGOBURU,Agnès,31/10/1979,DXG,Cadre de la fonction publique,Non,M,CAUCHOIS,Claude,11/12/1952,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,4,2,M,ANDRAUD,Cédric,08/07/1978,ECO,"Professeur des écoles, instituteur et assimilé",Non,M,VILLANUEVA,Jordan,28/11/1995,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,5,32,F,LAFARGUE,Sandrine,08/10/1967,LR,Cadre de la fonction publique,Non,M,PANDO,Christophe,27/05/1968,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,6,3,M,VERRIERE,François,14/08/1969,RN,Employé civil et agent de service de la fonction publique,Non,M,GALLOUIN,Sylvain,03/07/1976,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,7,19,F,LORENZI,Muriel,26/01/1981,ECO,Commerçant et assimilé,Non,F,GRATELOUP,Johanna,07/06/1990,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,8,33,F,POUEYTO,Josy,13/01/1954,ENS,Ancien employé,Oui,M,MORA,Pascal,21/10/1972,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,9,62,M,SOULERE,Jacques-Henri,13/09/1962,DIV,Profession libérale,Non,M,SARRES,Philippe,19/04/1975,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,10,34,M,LALANNE,Jean-Yves,26/03/1958,NUP,"Contremaître, agent de maîtrise",Non,F,MAZA,Stéphanie,06/02/1970,Non +64,Pyrénées-Atlantiques,01,1ère circonscription,11,64,F,GILLOT,Juliette,26/11/1968,REC,"Professeur des écoles, instituteur et assimilé",Non,M,LOLLIEROU,Jean-Yves,26/03/1958,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,1,26,F,FAURE,Cécile,26/08/1978,NUP,Cadre de la fonction publique,Non,M,REINBERGER,Eugène,18/09/1958,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,2,36,M,GAIRIN,Marc,24/09/1957,REC,Cadre de la fonction publique,Non,F,THERET,Laura,24/12/1992,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,3,43,M,CESCAU,Patrick,13/11/1973,REG,Profession intermédiaire de la santé et du travail social,Non,M,HOSTEIN,Jordi,08/11/1982,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,4,8,F,JOINT,Frédérique,17/02/1977,RN,Cadre administratif et commercial d'entreprise,Non,M,ARGENTIN,Sylvain,23/06/1976,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,5,7,M,MAUHOURAT,Jacques,11/12/1964,ECO,Profession intermédiaire de la santé et du travail social,Non,F,MATRAIRE,Sabine,20/01/1971,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,6,55,F,LASSUS-DAVID,Emilie,19/10/1989,DIV,Employé civil et agent de service de la fonction publique,Non,M,PIERROU,Vincent,08/06/1991,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,7,15,M,MATTEI,Jean-Paul,21/03/1954,ENS,Profession libérale,Oui,M,RHAUT,Jean-Christophe,30/04/1969,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,8,16,M,CIVILETTI,Lucien,26/11/1962,DIV,Policier et militaire,Non,F,DAVO,Denise Patricia,23/12/1958,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,9,41,F,SENMARTIN-LAURENT,Tiphanie,31/01/1981,ECO,Employé civil et agent de service de la fonction publique,Non,F,VIGNEAU,Sonia,29/03/1988,Non +64,Pyrénées-Atlantiques,02,2ème circonscription,10,21,M,MARCONI,Cyrille,08/10/1982,DXG,"Professeur, profession scientifique",Non,F,ALIBERT,Claude,23/08/1948,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,1,52,M,HABIB,David,16/03/1961,DVG,Cadre administratif et commercial d'entreprise,Oui,M,DUIZIDOU,David,05/12/1967,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,2,29,F,COSTEDOAT-DIU,Fabienne,14/10/1962,LR,Profession libérale,Non,F,BERGÉ,Geneviève,16/03/1949,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,3,60,F,LE ROUX,Françoise,27/01/1976,DSV,Cadre administratif et commercial d'entreprise,Non,M,JAUREGUIBERRY,Michel,04/12/1978,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,4,54,F,CHARLOT,"Christelle, Huguette, Sarah",02/01/1983,ECO,Employé de commerce,Non,F,THELMAT,"Marie-José, Agnès, Andrée",25/10/1976,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,5,12,F,PEYRE,Edith,24/04/1959,ECO,"Profession de l'information, des arts et des spectacles",Non,F,POMMES,Sarah,13/10/1994,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,6,31,F,ALBANEL,Romane,28/11/1998,REC,"Elève, étudiant",Non,M,ANSART,Théo,07/10/1998,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,7,4,M,BABY,Jean-François,18/12/1963,NUP,"Profession de l'information, des arts et des spectacles",Non,F,LOSSON,Joëlle,13/01/1958,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,8,20,M,MISSIER,Antoine,04/05/1964,DXG,"Professeur, profession scientifique",Non,M,NAVARRO,Johan,20/09/1977,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,9,38,F,BORDENAVE,Karine,23/02/1971,REG,Agriculteur sur petite exploitation,Non,M,MAUBOULES,Patrick,17/10/1956,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,10,6,M,DELTEIL,Eric,21/07/1963,DXG,"Professeur, profession scientifique",Non,F,SPITZER,Catherine,28/08/1971,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,11,10,F,PERNET,Eva,05/09/1979,DIV,Profession libérale,Non,M,RENAUD,Jacky,26/04/1958,Non +64,Pyrénées-Atlantiques,03,3ème circonscription,12,9,M,CRESSON,Nicolas,08/09/1989,RN,Commerçant et assimilé,Non,M,LAGAHE,Benjamin,16/10/1999,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,1,30,F,TAILLEFER,Margaux,27/10/1999,REC,"Elève, étudiant",Non,M,FOURTIC,Quentin,25/11/1988,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,2,48,M,URRUTIKOETXEA,Egoitz,24/06/1974,REG,Cadre administratif et commercial d'entreprise,Non,F,LEKUMBERRI,Terexa,28/11/1962,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,3,56,M,LASSALLE,Julien,09/12/1959,DIV,Agriculteur sur petite exploitation,Non,F,DENZOIN,Véronique,14/05/1969,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,4,37,F,BOUCHARD,Valérie,17/06/1965,ECO,Commerçant et assimilé,Non,M,ZEN,Jérémy,13/11/1984,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,5,18,F,TROUNDAY,Annick,10/12/1964,ENS,Profession intermédiaire de la santé et du travail social,Non,M,CONGUES,Pierre,15/02/1979,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,6,42,M,DARNET,Paul,22/06/1983,ECO,Cadre administratif et commercial d'entreprise,Non,F,LALLEMAND,Bénédicte,10/09/1980,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,7,57,M,ECHANIZ,Inaki,02/09/1993,NUP,Cadre de la fonction publique,Non,F,SENDERAIN,Cécile,23/02/1959,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,8,25,F,LOPEZ,Sylviane,28/10/1956,RN,Ancien employé,Non,M,MICHEL,Alain,08/05/1949,Non +64,Pyrénées-Atlantiques,04,4ème circonscription,9,53,M,RIBEIRO,Carlos,28/01/1949,DXG,Ancien ouvrier,Non,M,MIRCOVICH,Frédéric,18/08/1966,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,1,61,M,BARDANOUVE,Philippe,16/09/1950,DXG,Ancien ouvrier,Non,F,QUARANTA,Maïté,25/11/1981,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,2,35,F,PEREIRA-OSTANEL,Sandra,08/12/1966,NUP,Profession intermédiaire administrative de la fonction publique,Non,M,OLHAGARAY,Mathieu,16/04/1985,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,3,51,M,GIL,Benjamin,12/10/1993,DSV,Employé de commerce,Non,M,BLANLEUIL,Benoît,06/12/1999,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,4,40,F,HARY,Mathilde,22/12/1992,REG,Profession intermédiaire de la santé et du travail social,Non,M,AIMÉ,Sylvain,12/01/1981,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,5,14,F,LASSERRE,Florence,29/06/1974,ENS,Cadre administratif et commercial d'entreprise,Oui,M,GONZALEZ,Francis,15/11/1949,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,6,39,F,ROUBIN,Sylvie,17/05/1961,ECO,Chauffeur,Non,F,HAMARD,Marie-Rose,07/11/1964,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,7,50,M,RICHÉ,Thomas,08/01/1982,DIV,Profession libérale,Non,F,JOANNAN,Florence,08/12/1967,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,8,23,M,LESELLIER,Pascal,04/01/1961,RN,Ancienne profession intermédiaire,Non,M,PINNA,Serge,28/01/1959,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,9,58,F,SUSBIELLE,Hélène,11/01/1965,DIV,"Professeur, profession scientifique",Non,M,CLAUSELL,Ramuntcho,10/11/1979,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,10,59,M,PATHIAS,Thibault,01/03/1993,DVG,Commerçant et assimilé,Non,F,DESCROIX,Pauline,25/06/1999,Non +64,Pyrénées-Atlantiques,05,5ème circonscription,11,22,F,PILLOT,Annick,19/01/1964,REC,Cadre administratif et commercial d'entreprise,Non,F,TAIEB,Valérie,17/09/1967,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,1,27,M,DUBOIS--ROBIN,Tom,31/12/1992,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,ETCHEPARE,Laurie,15/02/1983,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,2,47,M,JOUVET,Philippe,09/04/1980,DVC,Cadre administratif et commercial d'entreprise,Non,M,ELISSALDE,Philippe,15/08/1963,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,3,5,M,DUFAU,Peio,30/05/1979,REG,"Contremaître, agent de maîtrise",Non,F,GALLOIS,Françoise,20/06/1959,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,4,45,M,SOUBELET,Bertrand,20/05/1959,DVD,Policier et militaire,Non,F,PINATEL,Anne,09/06/1964,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,5,11,M,BACH,Fabrice Sébastien,31/12/1968,LR,Cadre administratif et commercial d'entreprise,Non,F,JAUREGUIBERRY,Katixa,07/08/2001,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,6,24,M,BRIOLAIS,Kévin,22/07/1989,ECO,Employé administratif d'entreprise,Non,F,CIORCARLAN,Ioana,25/11/1995,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,7,65,F,GOITSCHEL,Marielle,28/09/1945,DIV,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,BROCQUEVIELLE,Karine,09/06/1971,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,8,66,F,NÉEL,Christiane,01/10/1937,REC,Ancien cadre,Non,M,PRUVOST,Gérald,23/11/1950,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,9,49,F,UHART,Jacqueline,15/05/1966,DXG,"Professeur, profession scientifique",Non,M,AQUERRETA,Jacques,05/07/1946,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,10,44,M,TENNESON,Mathis,14/12/1999,DVC,"Elève, étudiant",Non,F,SNELL GIBARD,Eva,11/05/1980,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,11,46,M,BRU,Vincent,29/04/1955,ENS,"Professeur, profession scientifique",Oui,F,FRANÇOIS,Maria,09/01/1973,Non +64,Pyrénées-Atlantiques,06,6ème circonscription,12,28,F,BECKER,Monique,21/06/1951,RN,Ancienne profession intermédiaire,Non,M,BRASSÉ,Jean-Luc,23/07/1964,Non +65,Hautes-Pyrénées,01,1ère circonscription,1,23,M,VILLANUEVA,Alexis,31/12/1990,ECO,Ingénieur et cadre technique d'entreprise,Non,F,LIAUZUN-CAU,Léa,10/08/1995,Non +65,Hautes-Pyrénées,01,1ère circonscription,2,4,M,CLARET,Pierre,07/09/1965,DIV,Cadre administratif et commercial d'entreprise,Non,M,ACHARD,Jean-Bernard,19/03/1986,Non +65,Hautes-Pyrénées,01,1ère circonscription,3,11,M,GIRAL,Romain,27/07/1982,LR,Profession libérale,Non,F,LAFFORGUE,Laurence,19/12/1949,Non +65,Hautes-Pyrénées,01,1ère circonscription,4,2,F,SORIN,Marie-Christine,05/04/1949,RN,Ancien cadre,Non,M,SANCHEZ,José,25/11/1951,Non +65,Hautes-Pyrénées,01,1ère circonscription,5,9,F,SAEZ,Maria,29/06/1948,DXG,Ancienne profession intermédiaire,Non,F,REBILLARD,Geneviève,25/01/1950,Non +65,Hautes-Pyrénées,01,1ère circonscription,6,12,F,GUÉNICHOT,Ophélie,02/02/1994,ECO,Employé administratif d'entreprise,Non,F,GRIMAUD,Sylvette,04/05/1977,Non +65,Hautes-Pyrénées,01,1ère circonscription,7,6,F,BEYRIÉ,Maryse,24/07/1962,DVG,Chef d'entreprise de 10 salariés ou plus,Non,M,DATAS-TAPIE,Nicolas,27/11/1980,Non +65,Hautes-Pyrénées,01,1ère circonscription,8,8,M,SEMPASTOUS,Jean-Bernard,05/08/1964,ENS,"Professeur, profession scientifique",Oui,F,SIANI WEMBOU,Virginie,30/03/1960,Non +65,Hautes-Pyrénées,01,1ère circonscription,9,15,F,FERRER,Sylvie,06/11/1967,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,SIRE,Benjamin-Florian,31/03/1982,Non +65,Hautes-Pyrénées,01,1ère circonscription,10,18,F,BONNECARRERE,Catherine,09/04/1963,REC,Ancienne profession intermédiaire,Non,M,JACQUET,Louis,12/09/1991,Non +65,Hautes-Pyrénées,02,2ème circonscription,1,20,F,BEAUDRY,Delphine,18/01/1971,REG,Employé civil et agent de service de la fonction publique,Non,M,ARMAND MÈGE,Audric,19/10/1988,Non +65,Hautes-Pyrénées,02,2ème circonscription,2,10,M,MEUNIER,François,09/10/1962,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,TRAVERT,Jean,12/02/1978,Non +65,Hautes-Pyrénées,02,2ème circonscription,3,22,M,RIGOLLET,Antoine,06/08/1992,ECO,Cadre administratif et commercial d'entreprise,Non,F,CERVANTES,Brigitte,10/08/1962,Non +65,Hautes-Pyrénées,02,2ème circonscription,4,21,M,DABAT,Jean-Marc,05/02/1965,DIV,Employé civil et agent de service de la fonction publique,Non,M,BERNISSAN,Fabrice,03/08/1968,Non +65,Hautes-Pyrénées,02,2ème circonscription,5,17,M,KORN,Grégory,07/02/1981,NUP,"Professeur, profession scientifique",Non,F,DASSE,Héloïse,31/03/1993,Non +65,Hautes-Pyrénées,02,2ème circonscription,6,5,F,BARBE,Aline,12/05/1961,DSV,Ancienne profession intermédiaire,Non,F,SARDA,Janine,16/04/1952,Non +65,Hautes-Pyrénées,02,2ème circonscription,7,14,M,MOURNET,Benoit,16/01/1986,ENS,Cadre de la fonction publique,Non,F,VALLIN,Gaëlle,04/11/1974,Non +65,Hautes-Pyrénées,02,2ème circonscription,8,7,M,CRAMPE,Jérome,30/01/1973,RDG,Chef d'entreprise de 10 salariés ou plus,Non,F,DUBERTRAND,Sylvie,02/04/1964,Non +65,Hautes-Pyrénées,02,2ème circonscription,9,13,M,CASTÉRA,Yves,10/03/1965,DVG,Artisan,Non,F,KACZMAREK,Marie,08/09/1980,Non +65,Hautes-Pyrénées,02,2ème circonscription,10,16,F,DUTREY,Véronique,18/11/1966,LR,Profession libérale,Non,M,VARIS,Mathieu,22/07/1979,Non +65,Hautes-Pyrénées,02,2ème circonscription,11,19,M,ALVES DA CUNHA,Claude,03/01/1950,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,M,CANIVENQ,Noël,24/12/1959,Non +65,Hautes-Pyrénées,02,2ème circonscription,12,3,M,DUMANOIR,Serge,27/01/1962,RN,Ancien cadre,Non,F,BOULIN,Sylvie,31/03/1967,Non +66,Pyrénées-Orientales,01,1ère circonscription,1,22,M,DASPE,Francis,30/07/1970,NUP,"Professeur, profession scientifique",Non,F,VENTURA-CID,Sylvie,12/03/1964,Non +66,Pyrénées-Orientales,01,1ère circonscription,2,44,M,BARBARIN,Loïc,18/05/1976,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,RAMIREZ,Patrick,13/04/1972,Non +66,Pyrénées-Orientales,01,1ère circonscription,3,24,M,CHAMBAUD,Georges-Henri,08/09/1956,REC,Ancien cadre,Non,M,BROSED,Olivier,11/06/1973,Non +66,Pyrénées-Orientales,01,1ère circonscription,4,42,F,PEIX,Rita,21/07/1965,REG,"Professeur, profession scientifique",Non,M,LAFONTAINE,Brice,29/06/1982,Non +66,Pyrénées-Orientales,01,1ère circonscription,5,21,M,GRAU,Romain,21/06/1974,ENS,Profession libérale,Oui,F,DE NOËLL-MARCHESAN,Isabelle,21/03/1955,Non +66,Pyrénées-Orientales,01,1ère circonscription,6,4,F,SCHMITT,Vanessa,12/02/1977,ECO,Cadre de la fonction publique,Non,M,STAWIARSKI,Marcin,29/11/1979,Non +66,Pyrénées-Orientales,01,1ère circonscription,7,46,M,BOLO,Alexandre,19/08/1986,DVD,Commerçant et assimilé,Non,M,SYMPHORIEN,Philippe,25/04/1957,Non +66,Pyrénées-Orientales,01,1ère circonscription,8,19,F,POCH,Cathy,19/01/1973,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PEREZ,Nicolas,07/08/1977,Non +66,Pyrénées-Orientales,01,1ère circonscription,9,40,F,GAVALDA MOULENAT,Christine,31/03/1976,LR,"Professeur, profession scientifique",Non,M,GUILLAUME,Gilles,29/10/1963,Non +66,Pyrénées-Orientales,01,1ère circonscription,10,29,F,FOURCADE,Fabienne,01/09/1962,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,QUÉVREUX,Michel,24/06/1949,Non +66,Pyrénées-Orientales,01,1ère circonscription,11,6,M,CHIFFRE,Anthony Léonce Eugène,26/02/1993,REG,Profession intermédiaire de la santé et du travail social,Non,F,GOUMAN,Marie-Christine,24/08/1958,Non +66,Pyrénées-Orientales,01,1ère circonscription,12,15,F,BLANC,Sophie,20/02/1968,RN,Profession libérale,Non,F,MUTI,Carla,03/08/1997,Non +66,Pyrénées-Orientales,01,1ère circonscription,13,2,F,ADVENARD,Pascale,02/08/1961,DXG,Employé civil et agent de service de la fonction publique,Non,M,RAIFF,Bertrand,24/01/1965,Non +66,Pyrénées-Orientales,02,2ème circonscription,1,14,F,SABATINI,Anaïs,10/03/1990,RN,Profession libérale,Non,M,POTEL,Julien,23/03/1982,Non +66,Pyrénées-Orientales,02,2ème circonscription,2,10,F,RASPAUD,Alexandra,24/08/1972,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CATALDO,Jacques,08/10/1972,Non +66,Pyrénées-Orientales,02,2ème circonscription,3,43,M,BERRUÉ,David,11/06/1976,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,BEUZE,Lola,03/09/1963,Non +66,Pyrénées-Orientales,02,2ème circonscription,4,13,M,BRET,David,15/04/1984,LR,Cadre administratif et commercial d'entreprise,Non,F,DE BESOMBES-SINGLA,Laurence,17/09/1976,Non +66,Pyrénées-Orientales,02,2ème circonscription,5,8,M,BLANC,Cyril,20/07/1978,ECO,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,MONNIER,Nathalie,10/05/1980,Non +66,Pyrénées-Orientales,02,2ème circonscription,6,36,M,GABARDA,David,07/08/1987,DSV,Profession libérale,Non,M,FERRANDERY,Jean,12/04/1948,Non +66,Pyrénées-Orientales,02,2ème circonscription,7,38,F,LIS,Frédérique,24/09/1989,ENS,Cadre de la fonction publique,Non,M,BARBARO,Daniel,15/12/1953,Non +66,Pyrénées-Orientales,02,2ème circonscription,8,31,M,DIAGO,Joël,13/06/1966,REG,Profession libérale,Non,F,BREANT,Véronique,08/10/1966,Non +66,Pyrénées-Orientales,02,2ème circonscription,9,5,M,GOISET,Philippe,06/11/1955,DXG,Ancien ouvrier,Non,M,MÉROC,Antoine,08/01/1975,Non +66,Pyrénées-Orientales,03,3ème circonscription,1,47,F,SGARD,Marlène,30/07/1991,DIV,"Profession de l'information, des arts et des spectacles",Non,M,ROCHE,Florian,21/06/1986,Non +66,Pyrénées-Orientales,03,3ème circonscription,2,20,M,MANDAR,Charles,29/04/1958,REC,Ingénieur et cadre technique d'entreprise,Non,M,DEBAIX,Alain,30/07/1963,Non +66,Pyrénées-Orientales,03,3ème circonscription,3,41,M,MADELINE,Blaise,21/12/1971,DIV,"Professeur, profession scientifique",Non,M,GRABOLOSA,Pierre,29/01/1983,Non +66,Pyrénées-Orientales,03,3ème circonscription,4,39,F,MARTIN,Laurence,06/09/1979,LR,Artisan,Non,M,GUIZARD,Yves,12/08/1974,Non +66,Pyrénées-Orientales,03,3ème circonscription,5,32,F,LE FLOCH,Morgane,29/02/1996,REG,Cadre administratif et commercial d'entreprise,Non,M,PANO,Alexandre,07/08/1950,Non +66,Pyrénées-Orientales,03,3ème circonscription,6,37,M,GUITART,Henri,04/07/1951,DIV,Profession libérale,Non,M,MONTESSINO,Joseph,11/06/1963,Non +66,Pyrénées-Orientales,03,3ème circonscription,7,16,F,PERAULT,Françoise,12/04/1949,DSV,Ancien cadre,Non,M,CROUZET,Jean-Marc,21/07/1964,Non +66,Pyrénées-Orientales,03,3ème circonscription,8,3,F,URROZ,Anna-Maria,26/10/1956,DXG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,THOMAS,Grégoire,28/05/1977,Non +66,Pyrénées-Orientales,03,3ème circonscription,9,33,M,BATAILLE,Pierre,28/11/1970,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,BRUZI,Chantal,20/06/1971,Non +66,Pyrénées-Orientales,03,3ème circonscription,10,35,F,CULLELL,Nathalie,28/08/1976,NUP,"Professeur, profession scientifique",Non,M,FERRAND,François,15/07/1969,Non +66,Pyrénées-Orientales,03,3ème circonscription,11,12,F,DOGOR-SUCH,Sandrine,08/11/1970,RN,Employé de commerce,Non,M,FOXONET,Gilles,06/09/1967,Non +66,Pyrénées-Orientales,04,4ème circonscription,1,26,M,REYNAL,Alexandre,11/09/1956,DVG,"Ancien artisan, commerçant, chef d'entreprise",Non,M,FAJULA,Jacques,18/04/1957,Non +66,Pyrénées-Orientales,04,4ème circonscription,2,17,F,POUPARD,Caroline,01/12/1966,DXG,"Professeur, profession scientifique",Non,M,BASSO,Patrice,19/12/1950,Non +66,Pyrénées-Orientales,04,4ème circonscription,3,11,F,MARTINEZ,Michèle,06/06/1968,RN,Employé administratif d'entreprise,Non,F,CHRETIEN,Laura,30/08/1992,Non +66,Pyrénées-Orientales,04,4ème circonscription,4,18,F,TRUCHET,Sylvie,20/04/1968,REC,Employé de commerce,Non,M,STEFAN,Robert,30/11/1955,Non +66,Pyrénées-Orientales,04,4ème circonscription,5,28,M,POUS,Jérôme,20/11/1972,NUP,Profession libérale,Non,F,FRATANI,Emmanuelle,04/10/1972,Non +66,Pyrénées-Orientales,04,4ème circonscription,6,9,F,BAILLY,Delphine,05/11/1990,ECO,Cadre administratif et commercial d'entreprise,Non,F,BAILLY,Christèle,08/04/1985,Non +66,Pyrénées-Orientales,04,4ème circonscription,7,45,M,MALORTIGUE,Carol,17/01/1958,DIV,Ingénieur et cadre technique d'entreprise,Non,F,LLENSE FERRANT,Annie,13/10/1960,Non +66,Pyrénées-Orientales,04,4ème circonscription,8,7,F,VINCENT DE BOURBON PAHLAVI,Edwige,05/04/1957,DIV,Ancien cadre,Non,M,MELLET,Jean,21/01/1954,Non +66,Pyrénées-Orientales,04,4ème circonscription,9,27,M,CAZENOVE,Sébastien,28/12/1976,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,MUGUET,Laurence,14/04/1969,Non +66,Pyrénées-Orientales,04,4ème circonscription,10,25,M,FABRA,Stéphane,09/01/1971,DSV,Cadre administratif et commercial d'entreprise,Non,M,BOVRY,Jean-Alain,20/06/1972,Non +66,Pyrénées-Orientales,04,4ème circonscription,11,30,M,VERA,Jordi,30/08/1953,REG,Ancien cadre,Non,F,DAVESA,Céline,20/12/1967,Non +66,Pyrénées-Orientales,04,4ème circonscription,12,34,M,GALAN,Bruno,04/02/1962,LR,Profession libérale,Non,F,BELTRAMI,France,22/08/1969,Non +67,Bas-Rhin,01,1ère circonscription,1,31,F,FÈVE,Louise,19/07/1980,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,ROBERT,Roland,20/10/1957,Non +67,Bas-Rhin,01,1ère circonscription,2,97,F,GROSJEAN,Yamina,01/06/1982,DIV,Profession intermédiaire de la santé et du travail social,Non,F,WOEHL,Karine,13/04/1985,Non +67,Bas-Rhin,01,1ère circonscription,3,9,M,ROUCHDI,Jamal,20/07/1980,DIV,Chauffeur,Non,M,NAJI,Azeddine,01/08/1978,Non +67,Bas-Rhin,01,1ère circonscription,4,78,F,CHRISTMANN,Elena,06/04/1956,REC,"Professeur des écoles, instituteur et assimilé",Non,M,GRASSER,Jean-Pierre,27/07/1955,Non +67,Bas-Rhin,01,1ère circonscription,5,38,F,REGOL,Sandra,13/04/1978,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LELOUP,Lucas,12/12/1994,Non +67,Bas-Rhin,01,1ère circonscription,6,44,F,KARMANN,Stéphanie,15/08/1967,REG,Employé administratif d'entreprise,Non,M,KRETZ,Pierre,13/02/1950,Non +67,Bas-Rhin,01,1ère circonscription,7,110,M,COURCOUX,Sylvain,31/10/1974,DIV,Ingénieur et cadre technique d'entreprise,Non,F,NEGGACHE,Zina,06/08/1989,Non +67,Bas-Rhin,01,1ère circonscription,8,53,F,BLACHE,Elisa,20/09/1986,DXG,"Elève, étudiant",Non,F,HOHMANN,Lucette,27/09/1951,Non +67,Bas-Rhin,01,1ère circonscription,9,85,M,FONTANEL,Alain,02/01/1969,ENS,Cadre de la fonction publique,Non,F,ROUX,Laurine,26/03/1991,Non +67,Bas-Rhin,01,1ère circonscription,10,74,M,SAUNER,Lionel,27/06/1989,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,EHLES,Pénélope,05/12/1994,Non +67,Bas-Rhin,01,1ère circonscription,11,5,F,VOLOKHOVA,Tamara,30/04/1990,RN,Cadre de la fonction publique,Non,M,QUESNOT,Bastien,07/11/2002,Non +67,Bas-Rhin,01,1ère circonscription,12,20,M,ELKOUBY,Éric,24/06/1973,DVG,Cadre de la fonction publique,Non,F,WENNER,Carole,02/07/1981,Non +67,Bas-Rhin,01,1ère circonscription,13,96,M,BARRET,Albéric,12/05/1995,DIV,Profession libérale,Non,F,DARGENTOLLE,Lise,19/05/1995,Non +67,Bas-Rhin,01,1ère circonscription,14,25,M,GOVI,Jérémy,13/09/1977,DVG,Profession intermédiaire de la santé et du travail social,Non,F,BOUGRIN,Sarah,26/02/1961,Non +67,Bas-Rhin,01,1ère circonscription,15,63,M,SEIGLE-MURANDI,Frédéric,22/01/1985,DIV,Profession libérale,Non,F,REY,Caroline,27/04/1976,Non +67,Bas-Rhin,01,1ère circonscription,16,70,F,HAFED,Nawal,17/12/1977,ECO,Profession intermédiaire de la santé et du travail social,Non,F,CHEAÏBI,Aïda,03/10/1991,Non +67,Bas-Rhin,01,1ère circonscription,17,64,F,ROZENHAFT,Audrey,17/01/1980,LR,Profession intermédiaire administrative et commerciale des entreprises,Non,M,ZARYATY,Amine,01/08/1969,Non +67,Bas-Rhin,02,2ème circonscription,1,22,F,GOULET,Déborah,05/11/1999,ECO,"Elève, étudiant",Non,F,DELHAYE,Shannon Lee,15/11/2002,Non +67,Bas-Rhin,02,2ème circonscription,2,59,F,SCHNITZLER,Fabienne,18/03/1955,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,RENAUDET,Clément,25/01/1948,Non +67,Bas-Rhin,02,2ème circonscription,3,35,M,FERNANDES,Emmanuel,10/08/1980,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,F,BERÇOT,Marianne,17/05/1996,Non +67,Bas-Rhin,02,2ème circonscription,4,30,M,RICHARD,Alain,08/01/1969,DXG,Ouvrier qualifié de type industriel,Non,F,MORINAUD,Pierrette,04/02/1947,Non +67,Bas-Rhin,02,2ème circonscription,5,54,M,WASERMAN,Sylvain,08/12/1967,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,BREITMAN,Rebecca,01/05/1990,Non +67,Bas-Rhin,02,2ème circonscription,6,92,M,BOUSSIF,Jamal,05/10/1960,DIV,Employé administratif d'entreprise,Non,F,GHELLAF,Jihane,05/01/1990,Non +67,Bas-Rhin,02,2ème circonscription,7,82,M,VINCI,Thibaut,22/11/1986,RDG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,SERFATI,Léo,29/01/1989,Non +67,Bas-Rhin,02,2ème circonscription,8,91,F,DIEMUNSCH,Cendrine,05/09/1982,REG,"Professeur, profession scientifique",Non,M,RICHERT-HARTMANN,Arnaud,26/05/2001,Non +67,Bas-Rhin,02,2ème circonscription,9,83,M,WOLF SAMALOUSSI,Alexandre,10/09/1995,LR,"Elève, étudiant",Non,M,MAURER,Jean-Philippe,07/07/1960,Non +67,Bas-Rhin,02,2ème circonscription,10,43,F,LEONHART-GRUBER,Margarethe,17/02/1955,ECO,Employé administratif d'entreprise,Non,F,MASSING,Catherine,25/11/1970,Non +67,Bas-Rhin,02,2ème circonscription,11,77,F,BENNES,Armèle,11/02/1968,DIV,"Professeur, profession scientifique",Non,F,LOUATI,Selma,11/01/1997,Non +67,Bas-Rhin,02,2ème circonscription,12,52,F,DU PARC,Hombeline,05/04/1975,RN,Cadre de la fonction publique,Non,M,LOUVIAUX,Jacques,28/11/1955,Non +67,Bas-Rhin,02,2ème circonscription,13,27,F,CAMINADE,Nelly,12/03/1955,REC,Ancienne profession intermédiaire,Non,M,METZGER,Jean-Marc,27/03/1948,Non +67,Bas-Rhin,02,2ème circonscription,14,65,M,GRANDJEAN,Alexandre,13/09/1983,DIV,Profession intermédiaire de la santé et du travail social,Non,M,BACHSCHMIDT,Nicolas,09/03/1988,Non +67,Bas-Rhin,03,3ème circonscription,1,106,M,PLICHON,Valentin,26/11/1993,DIV,Profession intermédiaire administrative de la fonction publique,Non,M,MAUVIARD,François,09/11/1963,Non +67,Bas-Rhin,03,3ème circonscription,2,60,F,SFAXI,Imene,01/06/1980,LR,Commerçant et assimilé,Non,M,TRABAND,Frédéric,03/03/1980,Non +67,Bas-Rhin,03,3ème circonscription,3,94,F,WETZEL,Virginie,04/02/1975,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,HELM,Franck,18/06/1990,Non +67,Bas-Rhin,03,3ème circonscription,4,36,M,MAS,Sébastien,03/07/1979,NUP,Profession intermédiaire de la santé et du travail social,Non,F,MEYNIOGLU,Marie Albera,25/10/1966,Non +67,Bas-Rhin,03,3ème circonscription,5,103,F,BERNHARDT,Cindy,09/05/1981,DIV,Profession intermédiaire administrative de la fonction publique,Non,F,GEAUGEY,Sophie,11/10/1990,Non +67,Bas-Rhin,03,3ème circonscription,6,40,F,GAUBERT,Joëlle,02/05/1972,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MESNET,Henri,07/08/1973,Non +67,Bas-Rhin,03,3ème circonscription,7,7,F,DÔ,Stéphanie,14/12/1985,RN,Profession intermédiaire de la santé et du travail social,Non,M,BERNHARDT,Théo,22/06/2000,Non +67,Bas-Rhin,03,3ème circonscription,8,41,F,CUTAJAR,Chantal,20/01/1959,ECO,"Professeur, profession scientifique",Non,M,CADIOT,Frédéric,21/05/1957,Non +67,Bas-Rhin,03,3ème circonscription,9,8,F,GRANDMOUGIN,Denise,19/06/1955,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,LEMERLE,Gilles,24/07/1947,Non +67,Bas-Rhin,03,3ème circonscription,10,67,F,GAUTHERON,Capucine,26/06/2002,REG,"Elève, étudiant",Non,M,SAUER,Franz,11/04/1965,Non +67,Bas-Rhin,03,3ème circonscription,11,111,M,HAMZA,Hicham,24/09/1976,DIV,"Profession de l'information, des arts et des spectacles",Non,M,EL KHALIFA,Samir,30/08/1963,Non +67,Bas-Rhin,03,3ème circonscription,12,14,M,STUDER,Bruno,18/06/1978,ENS,"Professeur, profession scientifique",Oui,F,HOLLEDERER,Hélène,27/01/1970,Non +67,Bas-Rhin,03,3ème circonscription,13,17,F,NOEL,Patricia,27/05/1964,ECO,Cadre administratif et commercial d'entreprise,Non,F,HOUEDE,Marine,19/05/1991,Non +67,Bas-Rhin,04,4ème circonscription,1,15,F,LAFAY,Marina,31/07/1975,DVG,Profession libérale,Non,M,CORDUAN,Guillaume,24/07/1981,Non +67,Bas-Rhin,04,4ème circonscription,2,23,M,BENHLAL,Mehdi,14/04/1972,DXG,"Contremaître, agent de maîtrise",Non,F,JACQUEL,Annelyse,21/07/1983,Non +67,Bas-Rhin,04,4ème circonscription,3,88,F,BUFFET,Françoise,11/12/1953,ENS,"Ancien artisan, commerçant, chef d'entreprise",Non,M,CAZIER,David,27/09/1968,Non +67,Bas-Rhin,04,4ème circonscription,4,47,F,BECK,Virginie,04/06/1967,REC,Cadre de la fonction publique,Non,M,JOSSERAND,Jean-Yves,03/07/1960,Non +67,Bas-Rhin,04,4ème circonscription,5,6,F,JORON,Virginie,11/12/1973,RN,Ancien cadre,Non,F,BARRILE,Marie-Madeleine,02/08/1971,Non +67,Bas-Rhin,04,4ème circonscription,6,76,F,LAHMEUR,Imane,12/05/1999,NUP,"Elève, étudiant",Non,F,PONPON,Marie-Pierre,04/04/1977,Non +67,Bas-Rhin,04,4ème circonscription,7,105,M,BEHR,Clément,17/09/1970,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,ROUSSEL,Denis,15/05/1959,Non +67,Bas-Rhin,04,4ème circonscription,8,72,M,AMIET,Éric,12/01/1967,LR,Profession libérale,Non,F,GRAEF-ECKERT,Catherine,27/05/1976,Non +67,Bas-Rhin,04,4ème circonscription,9,39,M,CHIROLLET,Jean-Claude,24/08/1950,DSV,"Professeur, profession scientifique",Non,F,PFEIFFER,Julie,05/10/1987,Non +67,Bas-Rhin,04,4ème circonscription,10,98,F,WONNER,Martine,27/03/1964,DIV,Cadre administratif et commercial d'entreprise,Oui,M,BRUCKMANN,Jean-Yves,19/10/1958,Non +67,Bas-Rhin,04,4ème circonscription,11,80,F,MATZ,Bénédicte,14/03/1964,REG,"Professeur, profession scientifique",Non,M,GOEPFERT,Jérôme,19/09/1980,Non +67,Bas-Rhin,04,4ème circonscription,12,87,M,NORTH,Alain,16/08/1957,DIV,Ingénieur et cadre technique d'entreprise,Non,M,VEIBERT,Sébastien,13/11/1984,Non +67,Bas-Rhin,05,5ème circonscription,1,26,M,SITZENSTUHL,Charles,03/12/1988,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,JUNG-GENGENWIN,Monique,01/11/1964,Non +67,Bas-Rhin,05,5ème circonscription,2,75,F,WEISS MOESSMER,Sarah,09/06/1983,REG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,MEYER,Martin,14/02/1967,Non +67,Bas-Rhin,05,5ème circonscription,3,109,M,MERTZ,Quentin,25/05/1997,DSV,Profession intermédiaire administrative de la fonction publique,Non,F,WÜLK,Désirée,28/02/1998,Non +67,Bas-Rhin,05,5ème circonscription,4,48,F,ABASSI,Mélanie,10/01/1992,REC,Employé de commerce,Non,M,GAUTIER,Eric,09/09/1959,Non +67,Bas-Rhin,05,5ème circonscription,5,89,M,WEBER,Daniel,28/04/1954,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,BACCOU,Monique,26/10/1947,Non +67,Bas-Rhin,05,5ème circonscription,6,33,F,TETART,Yolande,05/02/1957,DIV,Profession intermédiaire de la santé et du travail social,Non,M,COELSCH,Patrice,14/12/1973,Non +67,Bas-Rhin,05,5ème circonscription,7,21,M,DUTTER,Patrick,09/12/1960,DXG,Ouvrier qualifié de type artisanal,Non,F,LECHÊNE,Marie-Claire,26/02/1957,Non +67,Bas-Rhin,05,5ème circonscription,8,29,M,PLUSKOTA,Jean,16/04/1948,ECO,Technicien,Non,M,DANTZ,Christian,26/03/1960,Non +67,Bas-Rhin,05,5ème circonscription,9,13,M,WOLFF,Marc,16/05/1976,RN,"Professeur, profession scientifique",Non,M,WEISHEIMER,Steeve,26/01/1980,Non +67,Bas-Rhin,05,5ème circonscription,10,50,F,TOULZA,Véronique,28/10/1958,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,BENOIT,Thomas,05/06/2000,Non +67,Bas-Rhin,05,5ème circonscription,11,95,M,ERRERA-MULLER,Angelo,15/04/1969,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,SZUPTAR-FALLER,Clothilde,26/07/1989,Non +67,Bas-Rhin,05,5ème circonscription,12,81,M,SOHLER,Olivier,13/08/1970,UDI,Cadre administratif et commercial d'entreprise,Non,F,KALCK,Amandine,19/02/1977,Non +67,Bas-Rhin,06,6ème circonscription,1,51,F,MARCHAL-MINAZZI,Martine,14/08/1954,NUP,Ancienne profession intermédiaire,Non,M,ANDRES,Didier,16/05/1972,Non +67,Bas-Rhin,06,6ème circonscription,2,90,F,HAMM,Carine,01/09/1968,REG,"Professeur, profession scientifique",Non,M,SCHUBNEL,Daniel,05/02/1963,Non +67,Bas-Rhin,06,6ème circonscription,3,24,M,MACIA,Bastien,01/11/1970,DSV,Cadre administratif et commercial d'entreprise,Non,M,KOENIG,David,28/10/1972,Non +67,Bas-Rhin,06,6ème circonscription,4,49,M,MEYER,Philippe,29/04/1969,LR,"Professeur, profession scientifique",Oui,M,PANNEKOECKE,Jean-Bernard,30/10/1964,Non +67,Bas-Rhin,06,6ème circonscription,5,99,M,DEBRIFFE,Martial,14/03/1975,ECO,Chef d'entreprise de 10 salariés ou plus,Non,M,ADAM,Pierre,21/11/1963,Non +67,Bas-Rhin,06,6ème circonscription,6,28,F,RITTER,Sabrina,26/07/1987,REC,"Profession de l'information, des arts et des spectacles",Non,M,PINT,Denis,28/10/1959,Non +67,Bas-Rhin,06,6ème circonscription,7,71,F,MOREL,Louise,15/10/1995,ENS,Cadre administratif et commercial d'entreprise,Non,M,MULLER,Xavier,19/12/1964,Non +67,Bas-Rhin,06,6ème circonscription,8,62,F,GRUSSI,Véronique,08/12/1964,ECO,Personnel des services directs aux particuliers,Non,M,ARBOGAST,Patrick,22/05/1961,Non +67,Bas-Rhin,06,6ème circonscription,9,45,M,CAMUS,René,21/02/1963,DXG,Ouvrier qualifié de type artisanal,Non,M,SOUCIER,Philippe,22/02/1966,Non +67,Bas-Rhin,06,6ème circonscription,10,12,M,STEINBACH,Jean-Frédéric,08/02/1971,RN,Cadre administratif et commercial d'entreprise,Non,M,STREICHER,Yoan,22/09/1992,Non +67,Bas-Rhin,07,7ème circonscription,1,100,M,DEPYL,Patrick,04/09/1955,ENS,Ancien cadre,Non,M,WOLFF,Eric,04/09/1966,Non +67,Bas-Rhin,07,7ème circonscription,2,55,M,HOENICKE,Brian,23/09/1997,ECO,Ouvrier non qualifié de type industriel,Non,F,DESTOUCHES,Margot,03/09/1998,Non +67,Bas-Rhin,07,7ème circonscription,3,37,M,STAB,Cédric,28/07/1980,DIV,Ouvrier qualifié de type artisanal,Non,F,DILEK,Handan,02/06/1973,Non +67,Bas-Rhin,07,7ème circonscription,4,58,F,TOUSSAINT,Lou,19/06/1999,NUP,"Elève, étudiant",Non,M,BLOCH,Serge,03/08/1953,Non +67,Bas-Rhin,07,7ème circonscription,5,69,M,LORBER,Jean-Marie,05/02/1963,REG,Cadre administratif et commercial d'entreprise,Non,F,LEIPP,Anastasie,16/11/1965,Non +67,Bas-Rhin,07,7ème circonscription,6,19,M,HETZEL,Patrick,02/07/1964,LR,"Professeur, profession scientifique",Oui,F,KREMER,Eliane,12/03/1956,Non +67,Bas-Rhin,07,7ème circonscription,7,61,M,MARGARITO,Dino,06/11/1964,ECO,Technicien,Non,F,DESOUSA,Ilizette,02/10/1974,Non +67,Bas-Rhin,07,7ème circonscription,8,34,M,MORARD,Hervé,26/11/1974,REC,Artisan,Non,M,WICKER,Pascal,18/01/1965,Non +67,Bas-Rhin,07,7ème circonscription,9,46,M,HECKER,Christophe,22/03/1984,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,LAMBERT,Emmanuel,30/01/1981,Non +67,Bas-Rhin,07,7ème circonscription,10,3,M,MEYER,Jean,17/03/1955,DXG,"Professeur, profession scientifique",Non,M,BIANCHINI,Gilles,23/05/1961,Non +67,Bas-Rhin,07,7ème circonscription,11,18,F,ESCHENMANN,Valérie,05/07/1989,RN,Agriculteur sur moyenne exploitation,Non,M,GREBIL,Noa,12/01/2003,Non +67,Bas-Rhin,07,7ème circonscription,12,101,F,WOJTKOWIAK,Florine,18/03/2002,DSV,"Elève, étudiant",Non,M,FAJARDO,Thomas,30/09/2002,Non +67,Bas-Rhin,07,7ème circonscription,13,102,M,SOHM,Philippe,15/04/1982,DIV,Commerçant et assimilé,Non,M,DUJARDIN,Florian,21/04/1983,Non +67,Bas-Rhin,08,8ème circonscription,1,84,F,KOCHERT,Stéphanie,12/08/1975,ENS,Profession intermédiaire de la santé et du travail social,Non,M,KLIPFEL,Christian,15/08/1980,Non +67,Bas-Rhin,08,8ème circonscription,2,86,M,KRILOFF,Sébastien,28/12/1981,REC,Commerçant et assimilé,Non,M,HOSSANN,Thierry,09/07/1973,Non +67,Bas-Rhin,08,8ème circonscription,3,107,M,AHMED-YAHIA,Samy,20/07/1976,NUP,"Contremaître, agent de maîtrise",Non,F,DAUBARD,Isabelle,20/06/1967,Non +67,Bas-Rhin,08,8ème circonscription,4,32,F,GROSHEITSCH,Claire,05/08/1997,ECO,Profession libérale,Non,M,WAECHTER,Pierre,18/03/1950,Non +67,Bas-Rhin,08,8ème circonscription,5,11,M,KNOEPFFLER,Ludwig,20/06/1996,RN,"Profession de l'information, des arts et des spectacles",Non,M,HEYD,Christophe,05/03/1977,Non +67,Bas-Rhin,08,8ème circonscription,6,104,F,PISSARD,Colette,13/03/1966,DSV,Employé administratif d'entreprise,Non,M,WINDENBERGER,Adrien,04/05/2001,Non +67,Bas-Rhin,08,8ème circonscription,7,10,F,GSELL,Catherine,31/01/1966,DXG,Cadre de la fonction publique,Non,M,TURMEL,Michel,21/07/1958,Non +67,Bas-Rhin,08,8ème circonscription,8,57,M,JACKY,Bruno,27/06/1971,REG,Chef d'entreprise de 10 salariés ou plus,Non,M,STEINMANN,Étienne,15/08/1959,Non +67,Bas-Rhin,08,8ème circonscription,9,16,F,SANDER,Anne,01/10/1973,DVD,Cadre de la fonction publique,Non,M,HEINTZ,Paul,15/11/1970,Non +67,Bas-Rhin,09,9ème circonscription,1,42,M,RIEDINGER,Denis,27/12/1960,UDI,Ancien cadre,Non,M,STAERLE,Jean-Michel,08/11/1969,Non +67,Bas-Rhin,09,9ème circonscription,2,79,M,STEINMETZ,Lenny,29/10/2003,DIV,"Elève, étudiant",Non,F,LAWSON,Ornella,03/03/2003,Non +67,Bas-Rhin,09,9ème circonscription,3,93,F,WITZMANN,Leilla,07/01/1970,NUP,Cadre administratif et commercial d'entreprise,Non,M,STAUT,Frédéric,15/09/1991,Non +67,Bas-Rhin,09,9ème circonscription,4,68,F,ALTHERR,Stéphanie,22/01/1990,REC,Ancien employé,Non,F,DELORME,Claudie,29/11/1956,Non +67,Bas-Rhin,09,9ème circonscription,5,2,M,LUCAS,Yann,16/04/1978,DXG,"Professeur, profession scientifique",Non,F,JACQUEL,Elisabeth,13/05/1985,Non +67,Bas-Rhin,09,9ème circonscription,6,56,F,DESCHAMPS,Solange,09/12/1939,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BOLLÉE,Timothé,19/09/1997,Non +67,Bas-Rhin,09,9ème circonscription,7,14,M,GNAEDIG,Laurent,24/02/1970,RN,"Professeur des écoles, instituteur et assimilé",Non,F,LEMAIRE,Marguerite,21/11/1948,Non +67,Bas-Rhin,09,9ème circonscription,8,108,M,THIEBAUT,Vincent,23/05/1972,ENS,Cadre administratif et commercial d'entreprise,Oui,F,PARISSE,Emmanuelle,10/05/1978,Non +67,Bas-Rhin,09,9ème circonscription,9,66,M,GLUCK,Maurice,31/01/1980,REG,Ingénieur et cadre technique d'entreprise,Non,M,UNDREINER,Nicolas,24/09/1969,Non +68,Haut-Rhin,01,1ère circonscription,1,38,F,FRITSCH,Aïcha,31/12/1959,NUP,Ancien employé,Non,M,ANCELY-FREY,Flavien,04/10/1991,Non +68,Haut-Rhin,01,1ère circonscription,2,4,F,COUVAL,Cyrielle,16/01/1986,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,COLLARD,Frédéric,03/09/1976,Non +68,Haut-Rhin,01,1ère circonscription,3,26,M,MARTIN,Paul,11/09/1965,RDG,Cadre administratif et commercial d'entreprise,Non,F,MESQUITA,Rosa,18/04/1955,Non +68,Haut-Rhin,01,1ère circonscription,4,31,M,HEMEDINGER,Yves,23/10/1965,LR,Cadre administratif et commercial d'entreprise,Oui,F,LEHRY,Christelle,15/05/1987,Non +68,Haut-Rhin,01,1ère circonscription,5,21,F,KLINKERT,Brigitte,22/07/1956,ENS,Ancien cadre,Non,M,BOUCHÉ,Marc,08/10/1952,Non +68,Haut-Rhin,01,1ère circonscription,6,57,F,GISIE,Laure,14/09/1995,ECO,"Elève, étudiant",Non,F,HAEFFLINGER,Claudine,17/08/1961,Non +68,Haut-Rhin,01,1ère circonscription,7,73,M,ZITVOGEL,Thiébault,13/04/1973,REG,"Professeur, profession scientifique",Non,F,JELTSCH,Virginie,24/11/1957,Non +68,Haut-Rhin,01,1ère circonscription,8,16,F,BISCHOFF BATMA,Ariane,26/01/1984,REC,Profession intermédiaire administrative de la fonction publique,Non,M,LOMBARD,Tristan,01/06/1988,Non +68,Haut-Rhin,01,1ère circonscription,9,35,M,SCHAFFAR,Gilles,14/12/1978,DXG,"Professeur, profession scientifique",Non,M,KARADUMAN,Hüseyin,01/09/1968,Non +68,Haut-Rhin,01,1ère circonscription,10,19,M,SCHOENBECK,Steven,07/06/1997,RN,Personnel des services directs aux particuliers,Non,F,DIRRINGER,Aurélia,08/12/1989,Non +68,Haut-Rhin,02,2ème circonscription,1,27,F,DEFFARGES,Anne,02/12/1971,DXG,"Professeur, profession scientifique",Non,M,METEYER,Romain,03/08/1988,Non +68,Haut-Rhin,02,2ème circonscription,2,58,M,ACKERMANN,Vincent,23/06/1978,ECO,"Contremaître, agent de maîtrise",Non,F,POIROT,Stéphanie,24/12/1986,Non +68,Haut-Rhin,02,2ème circonscription,3,70,F,VANACKERE,Sophie,14/06/1976,DSV,Artisan,Non,F,CUEILLE,Nathalie,25/06/1987,Non +68,Haut-Rhin,02,2ème circonscription,4,39,M,BECKER,Fabien,10/09/1962,DIV,Commerçant et assimilé,Non,F,LEONE,Clara,02/12/1990,Non +68,Haut-Rhin,02,2ème circonscription,5,10,F,AUBERT,Nathalie,25/07/1965,RN,Profession libérale,Non,M,ESTEVE,Thomas,03/04/2001,Non +68,Haut-Rhin,02,2ème circonscription,6,17,M,OTT,Hubert,06/06/1964,ENS,"Professeur, profession scientifique",Non,F,GAY,Marie-Paule,07/12/1962,Non +68,Haut-Rhin,02,2ème circonscription,7,45,M,MOREAU,Abel,11/10/1995,DIV,Ingénieur et cadre technique d'entreprise,Non,M,PETITDEMANGE,Nicolas,05/10/1982,Non +68,Haut-Rhin,02,2ème circonscription,8,2,M,CATTIN,Jacques,04/06/1958,LR,Agriculteur sur grande exploitation,Oui,F,BUHL,Denise,21/11/1967,Non +68,Haut-Rhin,02,2ème circonscription,9,32,F,GRAVIER,Emily,10/07/1996,REC,Cadre de la fonction publique,Non,F,SOLIVA,Mélissa,25/10/1995,Non +68,Haut-Rhin,02,2ème circonscription,10,40,M,SCHERMANN,Gabriel,12/05/1995,ECO,Profession libérale,Non,F,ABRIC,Ludivine,13/09/1979,Non +68,Haut-Rhin,02,2ème circonscription,11,76,M,TROUILLET,Jean-Georges,27/11/1977,REG,Ingénieur et cadre technique d'entreprise,Non,F,MÉNÉTRÉ,Corinne,17/12/1969,Non +68,Haut-Rhin,02,2ème circonscription,12,48,M,BOURGEOIS,Lilian,21/01/1997,NUP,Employé de commerce,Non,F,FEST,Simone,29/05/1952,Non +68,Haut-Rhin,03,3ème circonscription,1,25,M,FERRY,Géraud,27/01/1974,DXG,Technicien,Non,M,BRUSTLEIN,Jean-François,01/06/1977,Non +68,Haut-Rhin,03,3ème circonscription,2,64,M,JOHANECK,Jean-Luc,28/04/1954,DIV,Cadre administratif et commercial d'entreprise,Non,F,GROLI,Sandrine,26/03/1975,Non +68,Haut-Rhin,03,3ème circonscription,3,22,F,KOENIG,Louise,06/09/1998,ECO,"Elève, étudiant",Non,F,KOENIG,Valerie,08/10/1969,Non +68,Haut-Rhin,03,3ème circonscription,4,68,M,STUTZMANN,Marc Thierry,04/01/1966,ECO,Profession libérale,Non,F,CHIEREGATO,Deborah Marie Louise,27/11/1979,Non +68,Haut-Rhin,03,3ème circonscription,5,8,M,ZIMMERMANN,Christian,22/03/1959,RN,Cadre de la fonction publique,Non,F,BALLARIN,Emilie,11/03/1982,Non +68,Haut-Rhin,03,3ème circonscription,6,15,F,NOEL,Sandrine,16/05/1979,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,THOMA,Gilles,06/04/1968,Non +68,Haut-Rhin,03,3ème circonscription,7,41,M,LEMAIRE,Didier,23/07/1975,ENS,Employé civil et agent de service de la fonction publique,Non,F,WEIDER-NIGLIS,Séverine,11/01/1985,Non +68,Haut-Rhin,03,3ème circonscription,8,52,F,SILVA,Priscille,03/07/1987,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,M,TREPAUT,Quentin,24/01/1989,Non +68,Haut-Rhin,03,3ème circonscription,9,54,M,STRIBY,Patrick,01/01/1969,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,LEFEBVRE,Martine,04/11/1965,Non +68,Haut-Rhin,03,3ème circonscription,10,34,M,ZELLER,Thomas,01/09/1982,LR,Commerçant et assimilé,Non,F,PI,Isabelle,03/01/1975,Non +68,Haut-Rhin,03,3ème circonscription,11,47,F,FISCHER,Simone,24/11/1952,DSV,Ancien cadre,Non,F,STRIBY,Isabelle,06/07/1970,Non +68,Haut-Rhin,03,3ème circonscription,12,6,M,WAECHTER,Antoine,11/02/1949,ECO,Ingénieur et cadre technique d'entreprise,Non,F,MARZULLO,Marie,14/05/1970,Non +68,Haut-Rhin,03,3ème circonscription,13,59,M,ZOELLÉ,Jean-Denis,10/10/1959,REG,"Contremaître, agent de maîtrise",Non,F,WIRA,Céline,19/04/1985,Non +68,Haut-Rhin,04,4ème circonscription,1,23,M,SENSE,Aimé,22/02/1955,DXG,Ancien employé,Non,F,PARMENTIER,Ginette,22/09/1958,Non +68,Haut-Rhin,04,4ème circonscription,2,63,F,MAYER,Sandrine,06/11/1973,ENS,Cadre administratif et commercial d'entreprise,Non,M,GOEPFERT,Yves,14/02/1961,Non +68,Haut-Rhin,04,4ème circonscription,3,13,F,MORGEN,Corinne,20/03/1960,ECO,Ingénieur et cadre technique d'entreprise,Non,M,FLORANGE,David,16/06/1969,Non +68,Haut-Rhin,04,4ème circonscription,4,3,M,SCHELLENBERGER,Raphaël,14/02/1990,LR,Cadre de la fonction publique,Oui,F,PAGLIARULO,Karine,05/09/1961,Non +68,Haut-Rhin,04,4ème circonscription,5,61,M,BASCHUNG,Guy,18/12/1954,REG,Chef d'entreprise de 10 salariés ou plus,Non,F,MAURY,Christelle,14/04/1978,Non +68,Haut-Rhin,04,4ème circonscription,6,5,F,WILHELM,Marion,26/01/1991,RN,Cadre administratif et commercial d'entreprise,Non,M,AST,Jean-Didier,27/11/1999,Non +68,Haut-Rhin,04,4ème circonscription,7,37,F,LEFORT,Ophélie,10/05/1996,REC,"Profession de l'information, des arts et des spectacles",Non,M,GULLY,Florian,14/01/2000,Non +68,Haut-Rhin,04,4ème circonscription,8,77,M,BITTERLIN,Olivier,30/10/1979,ECO,Ingénieur et cadre technique d'entreprise,Non,F,BLOCH,Sabrina,07/08/1973,Non +68,Haut-Rhin,04,4ème circonscription,9,55,M,ALTHERR,Cédric,18/02/1980,ECO,Ingénieur et cadre technique d'entreprise,Non,M,ENSEL,Christophe,18/10/1971,Non +68,Haut-Rhin,04,4ème circonscription,10,33,F,LAPOUBLE BARTHOU,Martine,03/03/1952,DVC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,GUILLONNEAU,Martine,01/07/1955,Non +68,Haut-Rhin,04,4ème circonscription,11,43,M,REFFAY,Guillaume,14/09/1974,ECO,Commerçant et assimilé,Non,F,MYOTTE,Vanessa,29/05/1975,Non +68,Haut-Rhin,04,4ème circonscription,12,12,F,CHRISTOPHE,Sylvie,24/08/1978,DSV,Technicien,Non,M,BIER,Stephane,31/10/1982,Non +68,Haut-Rhin,04,4ème circonscription,13,50,F,GAREL,Chrystelle,15/03/1972,NUP,Profession intermédiaire de la santé et du travail social,Non,M,CLERC,Michel,27/06/1963,Non +68,Haut-Rhin,05,5ème circonscription,1,36,M,BECHT,Olivier,28/04/1976,ENS,Cadre de la fonction publique,Oui,F,GOETSCHY-BOLOGNESE,Charlotte,21/07/1990,Non +68,Haut-Rhin,05,5ème circonscription,2,75,M,DOLUI,David,16/04/1984,DVG,Profession intermédiaire de la santé et du travail social,Non,F,VAILLIE,Maïlys,27/02/1994,Non +68,Haut-Rhin,05,5ème circonscription,3,71,M,OCHE,Lionel,29/08/1985,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MIOTTO,Sandra,06/05/1970,Non +68,Haut-Rhin,05,5ème circonscription,4,42,M,BARAZI,Alexandre,23/08/1958,ECO,Profession libérale,Non,F,BOHNER,Magaly,03/07/1980,Non +68,Haut-Rhin,05,5ème circonscription,5,30,M,COLOM,Florian,19/08/1991,LR,Profession libérale,Non,M,MOSER,Hubert,28/02/1967,Non +68,Haut-Rhin,05,5ème circonscription,6,14,M,TAFFARELLI,Emmanuel,19/06/1974,REC,"Profession de l'information, des arts et des spectacles",Non,M,HANSER,Joris,22/06/1993,Non +68,Haut-Rhin,05,5ème circonscription,7,11,F,STEIMER,Marie Odile,04/01/1958,ECO,Profession intermédiaire de la santé et du travail social,Non,F,WAECHTER,Camille,10/07/1990,Non +68,Haut-Rhin,05,5ème circonscription,8,60,M,CHAMY,André,17/07/1960,DIV,Profession libérale,Non,F,OSER,Laetitia,08/07/1983,Non +68,Haut-Rhin,05,5ème circonscription,9,7,M,PINTO,Pierre,25/02/1999,RN,Employé civil et agent de service de la fonction publique,Non,M,RENKERT,Paul,18/10/2002,Non +68,Haut-Rhin,05,5ème circonscription,10,69,M,KELTOUMI,Salah,04/09/1968,DXG,Ouvrier non qualifié de type industriel,Non,M,MOUILA,Brice,14/07/1986,Non +68,Haut-Rhin,05,5ème circonscription,11,49,F,NIMESKERN,Amalia,17/11/2002,ECO,"Elève, étudiant",Non,F,TINÉ,Marie-Hélène,31/08/1954,Non +68,Haut-Rhin,05,5ème circonscription,12,51,F,EL HAJJAJI,Nadia,15/12/1977,NUP,Employé administratif d'entreprise,Non,M,RENARD,Axel,27/02/1996,Non +68,Haut-Rhin,05,5ème circonscription,13,29,M,BASCHUNG,Régis,21/12/1963,REG,Technicien,Non,M,GOERKÉ,Frédéric,01/10/1975,Non +68,Haut-Rhin,06,6ème circonscription,1,78,M,TARANTOLA,Hugo,21/05/1992,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,TARANTOLA,Gilbert,07/11/1958,Non +68,Haut-Rhin,06,6ème circonscription,2,20,M,BLUM,Pascal,07/01/1965,ECO,Ingénieur et cadre technique d'entreprise,Non,F,METZGER,Doris,01/07/1959,Non +68,Haut-Rhin,06,6ème circonscription,3,67,F,KARLEN-DEBÈVE,Mireille,14/12/1947,REG,Ancien employé,Non,M,BAECHLER,Jean-Frédéric,21/04/1971,Non +68,Haut-Rhin,06,6ème circonscription,4,46,M,LOURENÇO,Romuald,30/06/1973,DSV,Chauffeur,Non,M,SAVOYEN,Jean-Philippe,26/08/1987,Non +68,Haut-Rhin,06,6ème circonscription,5,18,M,BARTH,Stephane,30/04/1988,ECO,"Professeur, profession scientifique",Non,F,HORNY,Gaelle,11/10/1989,Non +68,Haut-Rhin,06,6ème circonscription,6,44,M,BEAUSSART,Pascal,11/05/1965,DSV,"Contremaître, agent de maîtrise",Non,M,GROSSE,Mathieu,24/09/1990,Non +68,Haut-Rhin,06,6ème circonscription,7,56,F,MULOT,Nathalie,12/09/1976,DXG,Cadre de la fonction publique,Non,M,CURIEN,Frédéric,27/05/1975,Non +68,Haut-Rhin,06,6ème circonscription,8,65,M,SEVIN,Guillaume,31/12/1987,DVD,Commerçant et assimilé,Non,F,WOEHRLE,Brigitte,14/10/1958,Non +68,Haut-Rhin,06,6ème circonscription,9,74,M,ROTH,Laurent,28/10/1988,REG,Cadre administratif et commercial d'entreprise,Non,M,WEIBEL,Bruno,31/07/1954,Non +68,Haut-Rhin,06,6ème circonscription,10,79,M,MARCELLI,Sylvain,14/07/1988,REC,Ingénieur et cadre technique d'entreprise,Non,M,THOMA,Anthony,03/03/1998,Non +68,Haut-Rhin,06,6ème circonscription,11,53,M,ZILL,Yvan,27/01/1982,DVC,Ingénieur et cadre technique d'entreprise,Non,M,WUSTMANN,Christian,30/10/1968,Non +68,Haut-Rhin,06,6ème circonscription,12,62,F,HEBERT,Léonie,13/05/1982,NUP,Cadre de la fonction publique,Non,M,FLECK,Jason,13/01/1990,Non +68,Haut-Rhin,06,6ème circonscription,13,72,F,GERHART,Anne,20/05/1977,DVC,Cadre administratif et commercial d'entreprise,Non,M,STRICH,Vincent,24/02/1970,Non +68,Haut-Rhin,06,6ème circonscription,14,9,F,RITZ,Christelle,15/06/1977,RN,"Professeur, profession scientifique",Non,M,WUNENBURGER,Thierry,09/05/1963,Non +68,Haut-Rhin,06,6ème circonscription,15,66,M,FUCHS,Bruno,07/04/1959,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,POMMIER,Corinne,21/07/1972,Non +68,Haut-Rhin,06,6ème circonscription,16,24,M,BREINER,Dimitri,20/02/1987,DIV,"Professeur des écoles, instituteur et assimilé",Non,M,NOUREAU,Vincent,13/05/1999,Non +69,Rhône,01,1ère circonscription,1,31,F,PROST,Anne,31/05/1963,LR,Profession libérale,Non,F,JENN,Emmanuelle,04/12/1988,Non +69,Rhône,01,1ère circonscription,2,147,M,DAYME,Grégory,14/12/1977,RDG,Cadre administratif et commercial d'entreprise,Non,F,EVA,Anne-Rose,01/09/1970,Non +69,Rhône,01,1ère circonscription,3,109,M,RUDIGOZ,Thomas,11/01/1971,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,PATRIARCA,Laetitia,11/08/1977,Non +69,Rhône,01,1ère circonscription,4,145,F,GAGARINE,Voliaria,30/10/1997,RN,Employé de commerce,Non,M,MURADIAN,Fabien,16/02/2001,Non +69,Rhône,01,1ère circonscription,5,96,F,VUARIN--APPA PLAZA,Celina,21/07/1994,DVD,"Profession de l'information, des arts et des spectacles",Non,M,CEDAT,Christophe,25/11/1966,Non +69,Rhône,01,1ère circonscription,6,16,F,BONFILS,Sixtine,13/07/1996,REC,Employé civil et agent de service de la fonction publique,Non,F,DU CHOUCHET,Jeanne,10/02/1997,Non +69,Rhône,01,1ère circonscription,7,37,F,GRIES,Aurélie,11/11/1990,NUP,Cadre de la fonction publique,Non,M,PRISSETTE,Julien,26/06/1986,Non +69,Rhône,01,1ère circonscription,8,111,F,COLOMBIER,Fanny,11/01/1998,DIV,Ouvrier agricole,Non,F,COLOMBIER,Marylou,23/09/1996,Non +69,Rhône,01,1ère circonscription,9,44,M,CHARRON,Patrick,18/12/1959,DIV,Ancienne profession intermédiaire,Non,F,DEBAUMONT,Maryse,25/07/1958,Non +69,Rhône,01,1ère circonscription,10,35,M,BUGNI,Jim,30/01/1976,DXG,"Professeur, profession scientifique",Non,F,CHAMBON,Anne-Marie,28/01/1950,Non +69,Rhône,02,2ème circonscription,1,20,M,SIMON,Pierre,03/08/1990,REC,Cadre administratif et commercial d'entreprise,Non,M,BERRODIER,Gilles,10/03/1954,Non +69,Rhône,02,2ème circonscription,2,102,M,PRIETO,Philippe,28/03/1961,DVG,Cadre administratif et commercial d'entreprise,Non,F,EL YOUSSEF,Zaïma,01/03/1962,Non +69,Rhône,02,2ème circonscription,3,101,M,JULIEN-LAFERRIERE,Hubert,27/02/1966,NUP,"Professeur, profession scientifique",Oui,F,BOUAGGA,Yasmine,12/10/1982,Non +69,Rhône,02,2ème circonscription,4,38,F,VELICITAT,Claire,06/05/1993,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CERETTO,Cédric,06/09/1990,Non +69,Rhône,02,2ème circonscription,5,154,M,BÖHNKE,Laurent,09/06/1974,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,POUCHOL,Amélie,07/07/1983,Non +69,Rhône,02,2ème circonscription,6,153,M,DRIOLI,Adrien,09/07/1982,DVG,Cadre de la fonction publique,Non,F,KABOUYA,Chaineze,12/05/1983,Non +69,Rhône,02,2ème circonscription,7,56,M,TERRENES,Loic,19/06/1996,ENS,Profession intermédiaire administrative et commerciale des entreprises,Non,F,VARENNE,Virginie,28/01/1965,Non +69,Rhône,02,2ème circonscription,8,59,F,SINTÈS,Sylvine,13/11/1946,RN,Ancien employé,Non,M,MILIOTI,Thomas,05/01/2001,Non +69,Rhône,02,2ème circonscription,9,151,M,COULAN,Pascal,30/07/1961,DIV,"Profession de l'information, des arts et des spectacles",Non,M,EYMERIC,Guillaume,12/12/1993,Non +69,Rhône,02,2ème circonscription,10,43,F,BRIDAY,Delphine,26/10/1991,DXG,Employé civil et agent de service de la fonction publique,Non,F,RICOTTA,Anne-Marie,08/12/1963,Non +69,Rhône,02,2ème circonscription,11,76,F,FOGEL-JEDIDI,Myriam,01/10/1977,LR,Cadre administratif et commercial d'entreprise,Non,M,MOUCHBAHANI,Michel,03/03/1965,Non +69,Rhône,02,2ème circonscription,12,86,M,ARNAULT,Raphaël,08/01/1995,REG,Employé civil et agent de service de la fonction publique,Non,F,MILLAT,Mathilde,11/03/1998,Non +69,Rhône,02,2ème circonscription,13,146,F,AISSOU,Karima,26/06/1983,ECO,Profession intermédiaire de la santé et du travail social,Non,M,BOUMEDIENE,Mehdi,21/02/1990,Non +69,Rhône,02,2ème circonscription,14,152,M,ALI,Muhammad,25/06/1972,DIV,Artisan,Non,F,JALOUK,Ibtissam,18/06/1988,Non +69,Rhône,02,2ème circonscription,15,19,F,RANNOU,Delphine,13/05/1974,DXG,Profession intermédiaire de la santé et du travail social,Non,M,JOUTEUX,Michaël,28/02/1981,Non +69,Rhône,03,3ème circonscription,1,121,F,DE MONTILLE,Béatrice,12/02/1977,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,TREMSAL,Théo,16/02/1991,Non +69,Rhône,03,3ème circonscription,2,54,M,CHINAL,Marc,07/05/1970,DIV,Commerçant et assimilé,Non,M,CASSIAU,Léo,21/09/1956,Non +69,Rhône,03,3ème circonscription,3,125,F,PEILLON,Sarah,11/04/1981,ENS,Profession intermédiaire administrative et commerciale des entreprises,Non,F,THOLLON-BAYEUL,Virginie,26/05/1974,Non +69,Rhône,03,3ème circonscription,4,10,M,DUDUKDJIAN,Jean-Noël,09/11/1964,DXG,Employé civil et agent de service de la fonction publique,Non,F,PERNIN,Marie-Christine,09/06/1951,Non +69,Rhône,03,3ème circonscription,5,62,M,VOLLORY,Gérard,08/04/1957,RN,Technicien,Non,F,FAURE,Véronique,31/03/1959,Non +69,Rhône,03,3ème circonscription,6,123,F,BARRALLON,Anaïs,28/05/1998,DXG,"Elève, étudiant",Non,M,OTHMAN,Adil,29/03/2002,Non +69,Rhône,03,3ème circonscription,7,29,F,GUILLAUMONT,Nadège,26/04/2001,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PIRES,Christopher,23/03/1996,Non +69,Rhône,03,3ème circonscription,8,139,M,GEFFRAULT,Alexis,12/08/1994,DIV,Profession libérale,Non,F,KAYA,Filiz,27/12/1980,Non +69,Rhône,03,3ème circonscription,9,140,F,RAMOS,Valérie,09/12/1971,ECO,Profession intermédiaire de la santé et du travail social,Non,M,SPENNATO,Stéphane,01/11/1978,Non +69,Rhône,03,3ème circonscription,10,48,M,DELUCENAY,Olivier,31/08/1969,REC,Ingénieur et cadre technique d'entreprise,Non,M,GUYOT,Aurélien,28/11/1989,Non +69,Rhône,03,3ème circonscription,11,82,F,GARIN,Marie-Charlotte,02/09/1995,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MIACHON-DEBARD,Boris,30/10/1989,Non +69,Rhône,03,3ème circonscription,12,131,M,AUZAL,Jean-François,17/02/1964,RDG,"Ancien artisan, commerçant, chef d'entreprise",Non,F,HAELEWYN,Valérie,06/09/1963,Non +69,Rhône,03,3ème circonscription,13,99,M,TODOROVIC,Nicolas,16/08/1994,ECO,Ingénieur et cadre technique d'entreprise,Non,F,TOURRE,Clara,07/01/1998,Non +69,Rhône,04,4ème circonscription,1,17,F,DARBON,Florence,18/10/1964,REC,Cadre administratif et commercial d'entreprise,Non,M,PALKOVICS,Michel,07/01/1964,Non +69,Rhône,04,4ème circonscription,2,14,F,LAURENT,Coralie,31/12/1982,DXG,Cadre de la fonction publique,Non,M,DESPLANQUES,Jean-Louis,15/02/1967,Non +69,Rhône,04,4ème circonscription,3,127,F,KEBIR,Nadia,10/10/1978,ECO,Employé civil et agent de service de la fonction publique,Non,F,LATORRE-PLUMED,Marie-Laure,01/02/1987,Non +69,Rhône,04,4ème circonscription,4,51,M,BLACHE,Pascal,21/04/1965,LR,"Ancien artisan, commerçant, chef d'entreprise",Non,F,PRIVEL,Léa,30/01/1996,Non +69,Rhône,04,4ème circonscription,5,49,F,COULAIS,Véronique,14/04/1972,RN,Profession intermédiaire de la santé et du travail social,Non,M,CUZIN,Thierry,07/08/1959,Non +69,Rhône,04,4ème circonscription,6,105,F,BRUGNERA,Anne,28/11/1970,ENS,Cadre de la fonction publique,Oui,M,ACHACHE,Abdel,05/07/1967,Non +69,Rhône,04,4ème circonscription,7,149,F,VEL,Juliette,08/11/1997,DIV,Profession libérale,Non,F,CROS,Rachel,21/10/1973,Non +69,Rhône,04,4ème circonscription,8,159,M,BENRAMDANE,Malik,06/01/1988,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,ASLAN,Meryem,12/03/2000,Non +69,Rhône,04,4ème circonscription,9,81,M,BADOUARD,Benjamin,20/06/1983,NUP,Cadre administratif et commercial d'entreprise,Non,F,CELDRAN,Annie,28/07/1961,Non +69,Rhône,05,5ème circonscription,1,116,M,DUIGOU,Yves,04/09/1958,RN,Cadre administratif et commercial d'entreprise,Non,M,DAL TOE,Lilian,09/06/1997,Non +69,Rhône,05,5ème circonscription,2,3,M,JOINT,Bastien,09/10/1994,LR,Cadre de la fonction publique,Non,M,SUCHET,Gilbert,26/03/1948,Non +69,Rhône,05,5ème circonscription,3,39,M,LE BEL,Cédric,08/09/1966,REC,Cadre administratif et commercial d'entreprise,Non,F,MICHAUD,Séverine,30/06/1974,Non +69,Rhône,05,5ème circonscription,4,95,F,BOUARD,Stéphanie,28/08/1980,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GALLARDO,Sandrine,04/12/1969,Non +69,Rhône,05,5ème circonscription,5,74,F,BROCARD,Blandine,03/11/1981,ENS,Employé administratif d'entreprise,Oui,M,BOUCHERON,Hugo,30/05/1993,Non +69,Rhône,05,5ème circonscription,6,87,M,MATTEUCCI,Fabrice,10/02/1970,NUP,Cadre administratif et commercial d'entreprise,Non,F,DECLERCK,Valérie,09/11/1968,Non +69,Rhône,05,5ème circonscription,7,7,F,RIVIÈRE,Hélène,09/12/1975,DXG,Employé civil et agent de service de la fonction publique,Non,M,RIVOAL,Yann,08/06/1973,Non +69,Rhône,05,5ème circonscription,8,72,M,SLIMANI,Mohamed,21/06/1982,DIV,Ingénieur et cadre technique d'entreprise,Non,F,BENMALEK,Amina,21/08/1999,Non +69,Rhône,05,5ème circonscription,9,21,F,KABIL,Julie,30/11/1990,DIV,Ingénieur et cadre technique d'entreprise,Non,M,BERNARD,Valentin,07/02/1989,Non +69,Rhône,06,6ème circonscription,1,135,F,BUISSON,Katia,08/09/1992,RDG,"Professeur, profession scientifique",Non,F,ABDELLI,Marwa,02/04/2001,Non +69,Rhône,06,6ème circonscription,2,92,M,SENDE,Jean-Eric,27/02/1967,DVC,"Professeur des écoles, instituteur et assimilé",Non,F,BRAMUCCI,Hélène,20/05/1977,Non +69,Rhône,06,6ème circonscription,3,55,M,RYCKAERT,Paul,28/11/1948,DIV,Ingénieur et cadre technique d'entreprise,Non,F,RYCKAERT,Nicole,21/10/1946,Non +69,Rhône,06,6ème circonscription,4,158,F,WINKERMULLER,Laura,07/01/2001,REG,"Elève, étudiant",Non,M,OUMEHDI,Emilien,28/04/1990,Non +69,Rhône,06,6ème circonscription,5,118,M,CHARLIEU,Clément,14/12/1985,UDI,Cadre administratif et commercial d'entreprise,Non,M,ABERKANE,Fayçal,23/03/1974,Non +69,Rhône,06,6ème circonscription,6,25,M,PRIVOLT,Grégoire,07/10/1987,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,NIERAT,Donatille,17/07/1969,Non +69,Rhône,06,6ème circonscription,7,4,F,BOUHAMI,Nadia,23/05/1970,DXG,Employé civil et agent de service de la fonction publique,Non,M,BRUNEAU,Philippe,30/11/1955,Non +69,Rhône,06,6ème circonscription,8,141,F,BOUTAYEB,Maude,16/08/1995,DIV,Ouvrier agricole,Non,M,DIAZ,Maxime,19/08/1995,Non +69,Rhône,06,6ème circonscription,9,100,F,ROCHE,Ingrid,26/06/1976,ECO,"Professeur, profession scientifique",Non,F,JOSEPH,Céline,19/07/1983,Non +69,Rhône,06,6ème circonscription,10,12,F,MOREL,Michèle,26/03/1947,RN,Ancien cadre,Non,M,DURAND,Jean-François,16/02/1959,Non +69,Rhône,06,6ème circonscription,11,41,M,PORTA,Pierre,21/01/1961,REC,Ingénieur et cadre technique d'entreprise,Non,F,AGUS,Délia,10/11/1968,Non +69,Rhône,06,6ème circonscription,12,66,M,MEZIANI,Zaïr,04/12/1967,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,M,DANDEL,Lionnel,13/03/1961,Non +69,Rhône,06,6ème circonscription,13,83,F,HAZIZA,Emmanuelle,24/05/1985,ENS,Profession libérale,Non,M,GARLAN,Alain,13/10/1948,Non +69,Rhône,06,6ème circonscription,14,34,M,AMARD,Gabriel,05/05/1967,NUP,Cadre administratif et commercial d'entreprise,Non,F,HADJ-MIMOUNE,Melouka,27/04/1960,Non +69,Rhône,06,6ème circonscription,15,90,M,VIEIRA,Philippe,01/05/1975,DIV,Commerçant et assimilé,Non,F,CASANOVA,Viviane,09/07/1956,Non +69,Rhône,07,7ème circonscription,1,106,F,BOUGUERRA,Monia,21/03/1984,DIV,"Professeur des écoles, instituteur et assimilé",Non,M,ÖZER,Sinan,27/08/2002,Non +69,Rhône,07,7ème circonscription,2,8,F,LUCCHESI,Geneviève,15/01/1948,REC,Ancien cadre,Non,F,VENARD,Roseline,04/11/1961,Non +69,Rhône,07,7ème circonscription,3,79,F,KHEDHER,Anissa,01/04/1980,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,CHANAS,Jean,05/02/1961,Non +69,Rhône,07,7ème circonscription,4,75,M,LAHMAR,Abdelkader,12/05/1971,NUP,"Professeur, profession scientifique",Non,F,MERMOUD,Françoise,08/10/1950,Non +69,Rhône,07,7ème circonscription,5,150,M,VINCENDET,Alexandre,06/10/1983,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CHAREYRE,Martine,27/04/1953,Non +69,Rhône,07,7ème circonscription,6,124,M,VACHON,Alain,22/03/1951,DIV,Ancien cadre,Non,F,BERTIN,Christine,26/06/1971,Non +69,Rhône,07,7ème circonscription,7,104,M,GASMI,Nordine,24/07/1970,DIV,"Professeur, profession scientifique",Non,F,ZEROUAL,Myriam,27/06/1987,Non +69,Rhône,07,7ème circonscription,8,156,F,PAPA,Anna,02/06/1972,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,PUIG,Jérôme,09/04/1980,Non +69,Rhône,07,7ème circonscription,9,164,M,DOGANEL,Izzet,05/05/1981,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,FOIZON,Carole,21/11/1961,Non +69,Rhône,07,7ème circonscription,10,24,M,SPREUX,Thomas,14/09/1984,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,FORMET,Michel,11/04/1959,Non +69,Rhône,07,7ème circonscription,11,112,M,GOMEZ,Stéphane,02/10/1975,DVG,"Professeur, profession scientifique",Non,F,REMILI,Sirine,26/04/1994,Non +69,Rhône,07,7ème circonscription,12,107,F,JONCOUR,Tiffany,02/09/1989,RN,Employé administratif d'entreprise,Non,M,PIGNAL,Cédric,13/09/1991,Non +69,Rhône,07,7ème circonscription,13,28,M,LOUNES,Rachid,24/10/1960,ECO,Employé administratif d'entreprise,Non,M,ROYER,Patrick,21/03/1969,Non +69,Rhône,07,7ème circonscription,14,53,F,BOUHILA,Charlotte,29/09/1961,ECO,Personnel des services directs aux particuliers,Non,M,BOUHILA,Merwan,09/12/1993,Non +69,Rhône,08,8ème circonscription,1,128,F,LAWO,Valérie,11/07/1978,ECO,Employé de commerce,Non,M,SPENNATO,Roberto,21/07/1957,Non +69,Rhône,08,8ème circonscription,2,160,F,BRAUD,Pascale,20/11/1962,DVG,Cadre administratif et commercial d'entreprise,Non,M,CHOA-PIANE,Kenny,15/02/1993,Non +69,Rhône,08,8ème circonscription,3,11,F,DE PENFENTENYO DE KERVÉRÉGUIN,Marie,26/10/1981,REC,Employé de commerce,Non,M,FOURBOUL,Xavier,09/06/1986,Non +69,Rhône,08,8ème circonscription,4,32,M,TEYSSIER,Tristan,22/06/1981,DXG,Technicien,Non,F,PERRIN-GILBERT,Nolwenn,13/11/1978,Non +69,Rhône,08,8ème circonscription,5,137,F,PELERINS,Noëlle,25/12/1957,ECO,Ancien cadre,Non,F,SETTE,Christiane,16/12/1965,Non +69,Rhône,08,8ème circonscription,6,117,M,GAUDE,Joël,26/05/1956,ECO,Ancienne profession intermédiaire,Non,F,PRUDHON,Amélie,05/10/1974,Non +69,Rhône,08,8ème circonscription,7,89,M,DUBOIS,Antoine,13/12/1994,RN,Profession intermédiaire administrative de la fonction publique,Non,M,PRUDHOMME,Daniel,09/02/1957,Non +69,Rhône,08,8ème circonscription,8,47,F,SERRE,Nathalie,17/08/1968,LR,Profession intermédiaire administrative et commerciale des entreprises,Oui,M,CHAMPALE,Aymeric,17/05/1983,Non +69,Rhône,08,8ème circonscription,9,94,F,BULIN,Cécile,31/03/1978,NUP,Employé civil et agent de service de la fonction publique,Non,M,AVRIL,Yoann,13/04/1975,Non +69,Rhône,08,8ème circonscription,10,26,M,DESPRAS,Dominique,24/03/1976,ENS,Agriculteur sur moyenne exploitation,Non,F,ASTI-LAPPERRIÈRE,Florence,06/08/1964,Non +69,Rhône,08,8ème circonscription,11,148,M,NOVE JOSSERAND,Mathieu,05/03/1964,DSV,Profession libérale,Non,F,GUTHMANN,Marie-Laure,15/10/1959,Non +69,Rhône,09,9ème circonscription,1,108,M,BERTHOUX,Rémi,14/09/1996,RN,"Professeur, profession scientifique",Non,M,COLLOMB,Patrick,02/10/1964,Non +69,Rhône,09,9ème circonscription,2,2,M,PORTIER,Alexandre,21/04/1990,LR,"Professeur, profession scientifique",Non,M,PERRUT,Bernard,24/01/1957,Oui +69,Rhône,09,9ème circonscription,3,52,F,DUNE,Mylène,14/11/1974,NUP,Profession intermédiaire de la santé et du travail social,Non,M,NAVARRO,Pierre,26/11/1956,Non +69,Rhône,09,9ème circonscription,4,78,M,MÉJEAN,Ambroise,29/09/1995,ENS,Profession intermédiaire administrative et commerciale des entreprises,Non,M,LAURENT,Antoine,21/05/1990,Non +69,Rhône,09,9ème circonscription,5,155,F,BAÏDA,Delphine,29/04/1983,DIV,Cadre administratif et commercial d'entreprise,Non,M,SOYAK,Bilal,20/10/1984,Non +69,Rhône,09,9ème circonscription,6,88,M,CHAVANNE,Alexandre,01/09/1970,REG,Commerçant et assimilé,Non,F,GEREZ,Claudine,12/02/1974,Non +69,Rhône,09,9ème circonscription,7,73,F,HELLY,Chantal,21/01/1975,DXG,"Professeur, profession scientifique",Non,M,GOIFFON,Denis,11/12/1959,Non +69,Rhône,09,9ème circonscription,8,132,F,PERRICHON,Elodie,28/07/1982,ECO,Profession libérale,Non,M,CABEZAS,Alain,11/07/1962,Non +69,Rhône,09,9ème circonscription,9,30,F,DE GUERNON,Claire,26/09/1991,REC,Cadre administratif et commercial d'entreprise,Non,M,ORIOL,Florian,05/05/1981,Non +69,Rhône,09,9ème circonscription,10,97,F,GIRERD,Maguy,18/04/1947,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BENSALEM,Bruno,05/09/1965,Non +69,Rhône,10,10ème circonscription,1,120,M,ULUBAS,Xavier,14/03/1979,ECO,Ouvrier non qualifié de type industriel,Non,F,MONTEUX,Marina,23/10/1965,Non +69,Rhône,10,10ème circonscription,2,13,M,BOMPARD,Gilles,24/06/1975,DXG,Technicien,Non,F,BARATIER,Sylvie,22/01/1962,Non +69,Rhône,10,10ème circonscription,3,63,M,RAMBAUD,Gerbert,20/10/1963,DSV,Profession libérale,Non,M,CAPPEAU,Guy,16/08/1946,Non +69,Rhône,10,10ème circonscription,4,110,F,EDERY,Michèle,30/03/1956,NUP,Ancien cadre,Non,M,DALLE,Warren,21/09/1995,Non +69,Rhône,10,10ème circonscription,5,9,F,MARION,Agnès,07/06/1977,REC,Artisan,Non,M,VERNY,Thibault,12/11/1987,Non +69,Rhône,10,10ème circonscription,6,91,F,CHANELET,Fatiha,25/07/1975,DVD,"Profession de l'information, des arts et des spectacles",Non,M,BINA,Edouard,13/10/2002,Non +69,Rhône,10,10ème circonscription,7,133,F,CRUZ,Sophie,11/09/1967,LR,"Professeur, profession scientifique",Non,F,MAROLLEAU,Céline,14/05/1975,Non +69,Rhône,10,10ème circonscription,8,36,M,GASSILLOUD,Thomas,21/05/1981,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,TIRTIAUX,Fabienne,21/04/1964,Non +69,Rhône,10,10ème circonscription,9,98,M,RUIZ,Sébastien,10/04/1999,ECO,"Elève, étudiant",Non,F,MICHAUDON,Régine,19/11/1961,Non +69,Rhône,11,11ème circonscription,1,68,M,ASCARINO,Charles,07/10/1992,REC,"Professeur, profession scientifique",Non,F,TESSIER,Marie,13/07/1990,Non +69,Rhône,11,11ème circonscription,2,6,F,BROWNING,Isabelle,15/11/1998,DXG,"Elève, étudiant",Non,M,MARQUEZ,David,22/06/1967,Non +69,Rhône,11,11ème circonscription,3,163,M,CHIRAT,Christophe,20/03/1971,DIV,Commerçant et assimilé,Non,F,JAMARIN,Mélanie,04/01/1996,Non +69,Rhône,11,11ème circonscription,4,42,M,MARTINON,Alexis,03/07/1993,ECO,Commerçant et assimilé,Non,F,BRUGNAUX,Émilie,04/07/1981,Non +69,Rhône,11,11ème circonscription,5,58,M,ALLALI,Mohsen,17/09/1961,DVG,Ancien employé,Non,F,CHAN,Kathy,24/11/1994,Non +69,Rhône,11,11ème circonscription,6,50,M,VIDAL,Paul,08/09/1950,LR,Ancien cadre,Non,M,PFEFFER,Renaud,08/02/1980,Non +69,Rhône,11,11ème circonscription,7,142,M,DULAC,Michel,26/09/1942,RN,Commerçant et assimilé,Non,M,SIMIAN,Roch,05/04/1997,Non +69,Rhône,11,11ème circonscription,8,126,F,SPENNATO,Sophie,07/04/1980,ECO,Employé civil et agent de service de la fonction publique,Non,M,PAQUET,Benoît,20/01/1986,Non +69,Rhône,11,11ème circonscription,9,57,M,YOUSFI,Abdel,16/09/1968,NUP,Ouvrier qualifié de type industriel,Non,F,BOIZET,Pia,21/02/1960,Non +69,Rhône,11,11ème circonscription,10,23,M,FUGIT,Jean-Luc,27/11/1969,ENS,"Professeur, profession scientifique",Oui,F,BACLE-COULOUVRAT,Magali,24/08/1974,Non +69,Rhône,11,11ème circonscription,11,119,F,ROSSOLINI,Aude,25/07/1984,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BACHAUD,Yvan,17/04/1939,Non +69,Rhône,11,11ème circonscription,12,157,M,COMMUNAL,Pierre-Henri,25/01/1970,DSV,Profession libérale,Non,M,FREYDIERE,Cyril,15/09/1976,Non +69,Rhône,12,12ème circonscription,1,161,M,HEURTEL,Antoine,04/06/1996,DIV,Ingénieur et cadre technique d'entreprise,Non,M,HEURTEL,Geoffroy,31/12/1999,Non +69,Rhône,12,12ème circonscription,2,113,M,PIRRA,Olivier,24/03/1982,REC,Ingénieur et cadre technique d'entreprise,Non,F,COATIVY,Muriel,27/02/1966,Non +69,Rhône,12,12ème circonscription,3,162,F,CARRON,Lucie,14/01/1961,ECO,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,DUJET,Vincent,20/06/2000,Non +69,Rhône,12,12ème circonscription,4,129,F,SPENNATO,Samantha,16/08/2001,ECO,"Elève, étudiant",Non,F,BOUCHARA,Médine,06/09/2000,Non +69,Rhône,12,12ème circonscription,5,61,M,ISAAC-SIBILLE,Cyrille,30/04/1958,ENS,Profession libérale,Oui,F,FRAPPA-ROUSSE,Carine,14/05/1975,Non +69,Rhône,12,12ème circonscription,6,67,M,MOROGE,Jérôme,23/08/1979,LR,Profession libérale,Non,F,PECHARD,Katia,04/03/1970,Non +69,Rhône,12,12ème circonscription,7,22,M,AMSELLEM,David,02/01/1985,DSV,Commerçant et assimilé,Non,M,AMSELLEM,Jonathan,07/12/1998,Non +69,Rhône,12,12ème circonscription,8,5,F,FAURITE,Cécile,16/08/1970,DXG,Profession libérale,Non,M,RENAULT,Jean-Luc,28/06/1949,Non +69,Rhône,12,12ème circonscription,9,15,F,ANNANI,Elodie,23/03/1995,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,GRECO,Antonin,23/12/2000,Non +69,Rhône,12,12ème circonscription,10,45,M,BAUDIN,Jean-François,28/02/1966,NUP,Profession intermédiaire administrative de la fonction publique,Non,F,AUGEY,Apolline,01/04/1993,Non +69,Rhône,12,12ème circonscription,11,138,F,BEUZIT,Céline,06/01/1989,ECO,Cadre de la fonction publique,Non,M,MANUCCI,Julien,17/10/1993,Non +69,Rhône,12,12ème circonscription,12,136,M,CHAMBON,Arthur,13/11/1995,RDG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,BOISSIEU,Claire,25/02/1964,Non +69,Rhône,13,13ème circonscription,1,143,F,TANZILLI,Sarah,23/01/1985,ENS,Cadre administratif et commercial d'entreprise,Non,M,JOURDAIN,Jean-Pierre,30/07/1951,Non +69,Rhône,13,13ème circonscription,2,69,M,PRANDT,Victor,01/03/1995,NUP,Cadre de la fonction publique,Non,F,DIDAOUI,Fatiha,31/10/1974,Non +69,Rhône,13,13ème circonscription,3,18,M,BARTHÈS,Didier,13/06/1958,ECO,Profession libérale,Non,F,TEYSSEIRE,Anne-Marie,11/05/1954,Non +69,Rhône,13,13ème circonscription,4,46,M,PIOT,Michel,26/04/1973,DXG,Ouvrier qualifié de type industriel,Non,M,FAGNOU,Jean-Charles,21/04/1987,Non +69,Rhône,13,13ème circonscription,5,144,F,GIGAREL,Océane,18/06/1991,REC,Employé administratif d'entreprise,Non,M,GROS,Didier,25/03/1978,Non +69,Rhône,13,13ème circonscription,6,134,F,PERREIRA,Christina,14/02/1975,ECO,Commerçant et assimilé,Non,M,GOLESTIN,Fabien,13/09/1976,Non +69,Rhône,13,13ème circonscription,7,122,F,CHOMETTE,Auriane,19/07/2003,DSV,"Elève, étudiant",Non,M,BOUILLARD,Christian,06/03/1990,Non +69,Rhône,13,13ème circonscription,8,60,M,PECHEREAU,Alain,30/08/1955,RN,Ancien cadre,Non,F,DERVAHANIAN,Isabelle,24/10/1966,Non +69,Rhône,13,13ème circonscription,9,70,M,GASCON,Gilles,21/01/1967,LR,Commerçant et assimilé,Non,F,ZARTARIAN,Dany-Claude,09/08/1984,Non +69,Rhône,13,13ème circonscription,10,84,F,BRIZA,Sabrina,22/09/1988,DIV,"Professeur, profession scientifique",Non,M,BEKKALI,Ismaïl,08/01/1969,Non +69,Rhône,14,14ème circonscription,1,115,M,MONCHAU,Damien,17/09/1986,RN,Policier et militaire,Non,F,LAM,Maïté,10/05/1992,Non +69,Rhône,14,14ème circonscription,2,80,M,KESSI,Mokrane,14/08/1966,DVC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,SAÏD,Hidaya,26/07/1991,Non +69,Rhône,14,14ème circonscription,3,40,M,MINOUX,Olivier,26/03/1969,DXG,Ouvrier qualifié de type industriel,Non,F,PETIT,Barbara,13/08/1984,Non +69,Rhône,14,14ème circonscription,4,130,F,SALMI,Camila,27/03/2004,ECO,"Elève, étudiant",Non,M,DUPONT,Steve,26/09/1981,Non +69,Rhône,14,14ème circonscription,5,65,M,OMEIR,Farid,12/09/1986,DIV,"Professeur, profession scientifique",Non,F,ZEDIOUI,Zohra,20/07/1998,Non +69,Rhône,14,14ème circonscription,6,77,M,AYVALI,Yalcin,07/03/1981,DIV,Ingénieur et cadre technique d'entreprise,Non,F,LOUCIF,Fatma,06/01/1975,Non +69,Rhône,14,14ème circonscription,7,27,F,PALLUY,Delphine,17/03/1974,ECO,Commerçant et assimilé,Non,M,BEVILLON,Emile,21/02/1983,Non +69,Rhône,14,14ème circonscription,8,114,M,ATTAL,Bruno,07/04/1973,REC,Policier et militaire,Non,F,ETENNE,Vanessa,03/04/1986,Non +69,Rhône,14,14ème circonscription,9,71,M,BOUMERTIT,Idir,04/10/1974,NUP,Employé administratif d'entreprise,Non,F,PUTOUD,Gisèle,21/08/1960,Non +69,Rhône,14,14ème circonscription,10,64,M,BLEIN,Yves,12/10/1954,ENS,Ancien cadre,Oui,M,OBRECHT,Pierre,01/01/1965,Non +69,Rhône,14,14ème circonscription,11,103,M,EGRON,Martin,25/05/1991,DSV,Cadre administratif et commercial d'entreprise,Non,F,ALFONSI,Orane,10/10/1991,Non +70,Haute-Saône,01,1ère circonscription,1,2,F,BESSOT BALLOT,Barbara,13/04/1972,ENS,Commerçant et assimilé,Oui,M,PINI,Stéphane,08/10/1974,Non +70,Haute-Saône,01,1ère circonscription,2,17,F,ERARD,Karine,04/09/1973,ECO,"Elève, étudiant",Non,F,BARROIS,Nadine,26/01/1972,Non +70,Haute-Saône,01,1ère circonscription,3,6,M,FISCHER,Cédric,11/07/1974,DXG,Ouvrier non qualifié de type industriel,Non,F,GARRET,Thérèse,28/02/1951,Non +70,Haute-Saône,01,1ère circonscription,4,4,M,VILLEDIEU,Antoine,08/03/1989,RN,Policier et militaire,Non,M,MAGNIN,Antoni,15/09/1992,Non +70,Haute-Saône,01,1ère circonscription,5,13,M,DOUSSOT,Dimitri,17/05/1985,LR,Cadre de la fonction publique,Non,M,LEDUC,Sébastien,23/04/1975,Non +70,Haute-Saône,01,1ère circonscription,6,10,F,KEMPS HOUVER,Marion,07/01/1989,DSV,Cadre administratif et commercial d'entreprise,Non,M,KEMPS,Hjalmar,17/08/1963,Non +70,Haute-Saône,01,1ère circonscription,7,8,M,GHILES,Philippe,09/02/1950,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,GRANDGERARD,Anny,14/05/1954,Non +70,Haute-Saône,01,1ère circonscription,8,15,F,GIRARDOT,Sandra,07/04/1968,NUP,Profession intermédiaire de la santé et du travail social,Non,M,POYARD,Alexis,26/10/2001,Non +70,Haute-Saône,02,2ème circonscription,1,7,F,APRO,Isabelle,29/03/1973,DXG,Profession intermédiaire de la santé et du travail social,Non,M,ROUILLON,Daniel,28/01/1958,Non +70,Haute-Saône,02,2ème circonscription,2,14,M,GUERAIN,Patrice,22/03/1967,NUP,Ouvrier qualifié de type industriel,Non,F,THOMASSEY,Emmanuelle,08/10/1970,Non +70,Haute-Saône,02,2ème circonscription,3,11,F,ROCHON,Sophie,03/12/1976,ECO,Cadre administratif et commercial d'entreprise,Non,M,CRUCHON,Lionel,21/01/1965,Non +70,Haute-Saône,02,2ème circonscription,4,3,M,LEJEUNE,Christophe,22/03/1969,ENS,Commerçant et assimilé,Oui,F,PY,Béatrice,29/03/1954,Non +70,Haute-Saône,02,2ème circonscription,5,9,M,MONNIER,Maurice,14/03/1983,REC,Employé civil et agent de service de la fonction publique,Non,F,SUBIGER,Rose-Marie,03/04/1960,Non +70,Haute-Saône,02,2ème circonscription,6,5,M,SALMON,Emeric,26/11/1973,RN,Cadre administratif et commercial d'entreprise,Non,M,MOREL,Denis,24/09/1943,Non +70,Haute-Saône,02,2ème circonscription,7,12,F,COUDEREAU,Corinne,18/08/1976,UDI,Employé administratif d'entreprise,Non,M,CALLOCH,Michel,21/03/1955,Non +70,Haute-Saône,02,2ème circonscription,8,16,M,BURI,Ludovic,06/01/1971,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,DUCHET SUCHAUX,Marc,26/11/1958,Non +71,Saône-et-Loire,01,1ère circonscription,1,9,F,KOLLER,Odile,07/09/1957,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,CHASSARD,Daniel,10/05/1960,Non +71,Saône-et-Loire,01,1ère circonscription,2,35,M,MONIN,Patrick,10/03/1960,NUP,Ancien cadre,Non,F,AMARO,Catherine,26/06/1975,Non +71,Saône-et-Loire,01,1ère circonscription,3,28,M,JUVANON,Christophe,21/01/1970,LR,Ingénieur et cadre technique d'entreprise,Non,F,GAUDILLÈRE,Valérie,06/05/1978,Non +71,Saône-et-Loire,01,1ère circonscription,4,40,M,LAUNOY,Manuel,01/06/1972,DVD,Ingénieur et cadre technique d'entreprise,Non,M,CHEVALLIER,Luc,12/07/1969,Non +71,Saône-et-Loire,01,1ère circonscription,5,24,M,VAUCHER,Philippe,20/11/1961,DSV,Ancien cadre,Non,F,VAUCHER,Caroline,10/07/1991,Non +71,Saône-et-Loire,01,1ère circonscription,6,36,M,ROY,Armand,20/12/1953,DSV,Agriculteur sur moyenne exploitation,Non,M,ALEXANDRE,Patrick,11/07/1969,Non +71,Saône-et-Loire,01,1ère circonscription,7,17,M,DUTREMBLE,Aurélien,23/12/1978,RN,Profession intermédiaire administrative de la fonction publique,Non,F,DREVET,Rachel,23/11/1967,Non +71,Saône-et-Loire,01,1ère circonscription,8,2,F,BIZE,Myriam,26/12/1975,REC,Employé administratif d'entreprise,Non,M,RENAULT,Joseph,07/07/1965,Non +71,Saône-et-Loire,01,1ère circonscription,9,34,M,DIRX,Benjamin,25/01/1979,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,BROCHETTE,Anne,02/12/1964,Non +71,Saône-et-Loire,02,2ème circonscription,1,15,F,CORNELOUP,Josiane,30/09/1959,LR,Profession libérale,Oui,M,LABAUNE,Arnaud,25/06/1979,Non +71,Saône-et-Loire,02,2ème circonscription,2,18,M,DAMIEN,Olivier,22/03/1955,RN,Ancien cadre,Non,F,CONDAMIN,Catherine,05/05/1967,Non +71,Saône-et-Loire,02,2ème circonscription,3,3,F,ALBERT,Laurence,17/11/1969,REC,Cadre de la fonction publique,Non,M,CUISSINAT,Yohan,14/12/1998,Non +71,Saône-et-Loire,02,2ème circonscription,4,26,F,VARÉLA,Chantal,27/10/1956,DSV,Ancien employé,Non,M,LEBEAULT,Gilles,29/07/1969,Non +71,Saône-et-Loire,02,2ème circonscription,5,25,F,VINAUGER,Céline,23/05/1969,NUP,Profession intermédiaire de la santé et du travail social,Non,M,JOUHANDEAUD,Maxence,22/05/1997,Non +71,Saône-et-Loire,02,2ème circonscription,6,44,F,SICARD,Maud,02/11/1993,DIV,Cadre de la fonction publique,Non,M,MUNOZ,Teddy,07/01/1988,Non +71,Saône-et-Loire,02,2ème circonscription,7,37,F,GAUTHIER,Laurence,01/08/1966,ENS,Cadre administratif et commercial d'entreprise,Non,M,COMTE,Jacky,17/02/1960,Non +71,Saône-et-Loire,02,2ème circonscription,8,10,M,DUSSAUGE,Pascal,04/06/1958,DXG,Ancien employé,Non,F,BUNEL,Fabienne,09/04/1957,Non +71,Saône-et-Loire,03,3ème circonscription,1,11,M,REBEYROTTE,Rémy,27/03/1966,ENS,"Professeur, profession scientifique",Oui,F,PICARD,Danièle,18/09/1970,Non +71,Saône-et-Loire,03,3ème circonscription,2,30,F,BERTHELIER,Muriel,27/04/1958,ECO,Ancien employé,Non,M,GUERINI,Jean-Baptiste,28/01/1996,Non +71,Saône-et-Loire,03,3ème circonscription,3,5,F,LUCOTTE,Julie,07/11/1980,DXG,Profession intermédiaire de la santé et du travail social,Non,M,BARTCZAK,Daniel,02/10/1954,Non +71,Saône-et-Loire,03,3ème circonscription,4,38,M,LANDRE,Charles,30/04/1988,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,PHILIPPE,Marie-Jeanne,14/05/1948,Non +71,Saône-et-Loire,03,3ème circonscription,5,14,M,BENINGER,Richard,20/10/1953,NUP,Ancien cadre,Non,F,FEBVRE,Margaux,06/03/1986,Non +71,Saône-et-Loire,03,3ème circonscription,6,33,F,ROBERT,France,10/11/1958,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,ROTH,Sébastien,25/04/1971,Non +71,Saône-et-Loire,03,3ème circonscription,7,43,F,BIGOT,Anne,17/08/1971,REC,Cadre administratif et commercial d'entreprise,Non,M,DEVAUX,Romain,29/12/1984,Non +71,Saône-et-Loire,03,3ème circonscription,8,20,F,BAROIN,Sandrine,25/06/1977,RN,Employé de commerce,Non,M,PIMET,Edouard,18/03/1994,Non +71,Saône-et-Loire,04,4ème circonscription,1,8,F,ROBLOT,Elisabeth,01/09/1968,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MARMEYS,Anthony,19/10/1987,Non +71,Saône-et-Loire,04,4ème circonscription,2,12,M,RAFFA,Jean,02/08/1963,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,CARNAILLE,Anthony,15/03/1984,Non +71,Saône-et-Loire,04,4ème circonscription,3,31,F,SZYCH,Nathalie,20/03/1967,DSV,Profession intermédiaire de la santé et du travail social,Non,M,MICHAUD,Claude,21/02/1965,Non +71,Saône-et-Loire,04,4ème circonscription,4,21,M,MICHOUX,Eric,17/06/1959,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,GACON,Sandrine,30/06/1976,Non +71,Saône-et-Loire,04,4ème circonscription,5,19,F,DELOGE,Valérie,09/05/1966,RN,Agriculteur sur petite exploitation,Non,M,GAUDILLAT,Dominique,12/06/1970,Non +71,Saône-et-Loire,04,4ème circonscription,6,6,M,COURATIER,Claude,10/01/1970,DXG,Employé de commerce,Non,M,COROT,Gilles,05/03/1963,Non +71,Saône-et-Loire,04,4ème circonscription,7,39,F,UNTERMAIER,Cécile,28/12/1951,NUP,Ancien cadre,Oui,M,CANNARD,Frédéric,23/10/1968,Non +71,Saône-et-Loire,05,5ème circonscription,1,42,M,PLATRET,Gilles,19/04/1973,LR,Profession libérale,Non,M,DUPARAY,Lionel,07/02/1981,Non +71,Saône-et-Loire,05,5ème circonscription,2,7,M,DUFRAIGNE,Pascal,11/08/1963,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,PELLETIER,Christine,02/02/1963,Non +71,Saône-et-Loire,05,5ème circonscription,3,27,M,BATHIARD,Tristan-Ludovic,16/03/1987,RDG,Cadre de la fonction publique,Non,M,GARY,François,19/09/1946,Non +71,Saône-et-Loire,05,5ème circonscription,4,4,M,GOUBEAULT,Denis,11/12/1990,REC,Ingénieur et cadre technique d'entreprise,Non,F,PERCIVALLE,Cécile,16/09/1992,Non +71,Saône-et-Loire,05,5ème circonscription,5,22,M,CALLI,Ramazan,19/12/1994,DVG,"Profession de l'information, des arts et des spectacles",Non,F,CALLI,Deniz,28/02/1995,Non +71,Saône-et-Loire,05,5ème circonscription,6,16,M,SANVERT,Arnaud,03/08/1983,RN,Personnel des services directs aux particuliers,Non,M,MEUNIER,Gilles,01/04/1955,Non +71,Saône-et-Loire,05,5ème circonscription,7,32,M,RIBOULET,Eric,27/09/1961,NUP,Ancien employé,Non,F,KOURICHE,Fatima,10/03/1971,Non +71,Saône-et-Loire,05,5ème circonscription,8,29,F,PELLETIER,Christine,24/03/1970,ECO,Profession intermédiaire de la santé et du travail social,Non,F,GUYOT,Géraldine,07/01/1975,Non +71,Saône-et-Loire,05,5ème circonscription,9,13,M,LARTAUT,Patrick,13/08/1966,DXG,Ouvrier qualifié de type industriel,Non,F,PITAUD,Stéphanie,22/11/1968,Non +71,Saône-et-Loire,05,5ème circonscription,10,23,M,MARGUERITTE,Louis,10/09/1984,ENS,Cadre de la fonction publique,Non,F,JARROT,Marie-Claude,10/10/1955,Non +71,Saône-et-Loire,05,5ème circonscription,11,41,F,LE THEIX,Sonia,20/03/1961,DSV,Personnel des services directs aux particuliers,Non,M,ROY,Anthony,07/05/1983,Non +72,Sarthe,01,1ère circonscription,1,48,F,COLLET,Patricia,23/07/1956,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,HARPIN,Joël,10/05/1973,Non +72,Sarthe,01,1ère circonscription,2,17,F,PICOULEAU,Edwige,11/01/1970,RN,Artisan,Non,M,GUILLORET,Benoit,22/10/1967,Non +72,Sarthe,01,1ère circonscription,3,11,M,CORTÉS,Yves,05/10/1959,UDI,Profession libérale,Non,F,MOINET,Sonia,09/03/1962,Non +72,Sarthe,01,1ère circonscription,4,30,M,FOUÉRÉ,Stéphane,23/01/1969,DVG,Cadre de la fonction publique,Non,F,BAGHOU,Rafika,11/10/1978,Non +72,Sarthe,01,1ère circonscription,5,25,F,DELPECH,Julie,25/09/1989,ENS,Cadre administratif et commercial d'entreprise,Non,M,EVENISSE,Marc,02/06/1980,Non +72,Sarthe,01,1ère circonscription,6,24,F,DUJARDIN,Brigitte,06/05/1980,REC,Cadre administratif et commercial d'entreprise,Non,M,BIARD,Hervé,28/10/1960,Non +72,Sarthe,01,1ère circonscription,7,12,F,LABRETTE-MÉNAGER,Fabienne,08/01/1961,LR,Profession libérale,Non,M,SASSO,Olivier,05/01/1972,Non +72,Sarthe,01,1ère circonscription,8,35,M,BÉNAUD,Dylan,24/05/1999,DVG,Employé administratif d'entreprise,Non,F,DUBOIS,Françoise,06/12/1947,Non +72,Sarthe,01,1ère circonscription,9,22,F,MAILLET,Sylvie,17/05/1965,DXG,"Professeur, profession scientifique",Non,M,RABETTE,Arnaud,14/04/1974,Non +72,Sarthe,01,1ère circonscription,10,40,F,BONNET,Ghislaine,12/10/1956,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,BUCHOT,Nathalie,16/03/1968,Non +72,Sarthe,02,2ème circonscription,1,21,M,LE FORESTIER,François,27/06/1979,LR,Cadre administratif et commercial d'entreprise,Non,F,GAUTHIER-CHAILLOUX,Nathalie,17/05/1967,Non +72,Sarthe,02,2ème circonscription,2,50,F,MONET,Alexandra,04/03/1996,ENS,"Profession de l'information, des arts et des spectacles",Non,M,POIRIER,Jean-Pierre,04/10/1951,Non +72,Sarthe,02,2ème circonscription,3,37,M,PICAVEZ,Vincent,28/11/1973,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,POIX,Christian,29/11/1949,Non +72,Sarthe,02,2ème circonscription,4,23,F,ZBIROU,Marylin,29/12/1955,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,M,LOPEZ,Grégory,12/04/1997,Non +72,Sarthe,02,2ème circonscription,5,8,M,JOVER,Serge,01/01/1954,DXG,Ancien cadre,Non,F,DUCLOS,Albertine,16/05/1979,Non +72,Sarthe,02,2ème circonscription,6,15,M,BESLIER,Olivier,15/12/1960,REC,"Professeur, profession scientifique",Non,F,GOUJARD,Chor-Nay,21/12/1993,Non +72,Sarthe,02,2ème circonscription,7,39,F,CABARET,Muriel,09/03/1955,DVG,Ancien cadre,Non,M,COUNIL,Christophe,05/09/1972,Non +72,Sarthe,02,2ème circonscription,8,52,F,KARAMANLI,Marietta,18/12/1964,NUP,"Professeur, profession scientifique",Oui,M,HERVÉ,Yves-Marie,21/05/1963,Non +72,Sarthe,02,2ème circonscription,9,9,M,TROCHON,Eric,30/09/1967,DSV,Agriculteur sur grande exploitation,Non,M,BAUDON,Jérémy,09/06/1985,Non +72,Sarthe,02,2ème circonscription,10,14,F,FURET,Angéline,24/07/1981,RN,Profession libérale,Non,M,DERRÉ,Louis,04/10/1986,Non +72,Sarthe,02,2ème circonscription,11,20,M,HUBERT,Thomas,15/08/1968,DXG,"Professeur, profession scientifique",Non,F,BRETON,Armelle,31/12/1976,Non +72,Sarthe,03,3ème circonscription,1,28,F,LELOUP,Dominique,17/03/1961,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,DUBOIS-GASNOT,Stéphanie,26/07/1975,Non +72,Sarthe,03,3ème circonscription,2,36,M,POISSON,Jérôme,19/11/1975,DSV,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,POISSON,Agathe,04/02/1972,Non +72,Sarthe,03,3ème circonscription,3,5,F,BRUTOUT,Maryse,14/07/1959,DXG,Ancien employé,Non,F,DEREC,Caroline,29/04/1974,Non +72,Sarthe,03,3ème circonscription,4,49,F,LATOUCHE,Béatrice,19/04/1973,LR,Cadre de la fonction publique,Non,M,GRUAU,Vincent,31/08/1971,Non +72,Sarthe,03,3ème circonscription,5,19,M,MARTINEAU,Eric,08/05/1968,ENS,Agriculteur sur moyenne exploitation,Non,M,DUPUIS,Pascal,08/04/1962,Non +72,Sarthe,03,3ème circonscription,6,45,F,COUDRAIN,Bernadette,20/05/1953,REC,"Professeur des écoles, instituteur et assimilé",Non,M,POIRIER,Emmanuel,09/01/1967,Non +72,Sarthe,03,3ème circonscription,7,42,M,BRANCHU,Laurent,30/12/1972,DVG,Employé civil et agent de service de la fonction publique,Non,F,SINNAEVE,Émilie,23/11/1980,Non +72,Sarthe,03,3ème circonscription,8,47,M,NOËL,Henri,04/05/1989,DIV,Cadre de la fonction publique,Non,F,ALLAINGUILLAUME,Klervi,16/07/1989,Non +72,Sarthe,03,3ème circonscription,9,4,M,PINÇON,Bruno,23/01/1962,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,HANNIER,Christophe,04/05/1967,Non +72,Sarthe,04,4ème circonscription,1,33,M,DALIBERT,David,21/04/1973,ECO,Cadre administratif et commercial d'entreprise,Non,F,DALIBERT,Mireille,10/03/1973,Non +72,Sarthe,04,4ème circonscription,2,43,M,LE FLOCH-IMAD,Joachim,24/10/1996,ENS,"Professeur, profession scientifique",Non,F,CAILLEAU,Catherine,21/01/1966,Non +72,Sarthe,04,4ème circonscription,3,34,M,FRANCO,Emmanuel,05/09/1970,LR,Cadre administratif et commercial d'entreprise,Non,F,BODARD-SOUDÉE,Ghislaine,21/03/1972,Non +72,Sarthe,04,4ème circonscription,4,29,M,BARBET,Didier,14/07/1968,DIV,Profession libérale,Non,F,CHAUMONT,Michaëla,17/09/1969,Non +72,Sarthe,04,4ème circonscription,5,31,F,TOLMONT,Sylvie,09/10/1962,DVG,Cadre administratif et commercial d'entreprise,Oui,M,MARTIN,Romuald,09/11/1970,Non +72,Sarthe,04,4ème circonscription,6,51,F,LEBOUCHER,Elise,09/10/1982,NUP,Profession intermédiaire de la santé et du travail social,Non,F,GIBERT,Florence,28/02/1974,Non +72,Sarthe,04,4ème circonscription,7,6,M,NOUCHY,Thierry,16/01/1965,DXG,"Professeur, profession scientifique",Non,M,THÉNAISIE,Matthieu,14/06/1977,Non +72,Sarthe,04,4ème circonscription,8,7,M,BOULAY,Stéphane,21/08/1968,DSV,Ingénieur et cadre technique d'entreprise,Non,F,DUFAY,Mireille,02/07/1977,Non +72,Sarthe,04,4ème circonscription,9,3,M,DE MALHERBE,Raymond,30/03/1957,RN,Ancien cadre,Non,M,CARTON,Fabien,09/03/1966,Non +72,Sarthe,04,4ème circonscription,10,10,M,BUARD,Sébastien,21/09/1978,REC,"Professeur, profession scientifique",Non,M,LORNE,Fabien,19/08/1956,Non +72,Sarthe,05,5ème circonscription,1,46,M,ROBYN,Laurent,22/12/1975,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,RIEST,Enzo,26/08/1997,Non +72,Sarthe,05,5ème circonscription,2,44,M,LUNEL,Frédéric,30/04/1984,DVG,"Professeur, profession scientifique",Non,F,HAMONOU-BOIROUX,Lydia,20/09/1960,Non +72,Sarthe,05,5ème circonscription,3,13,F,BAYLE DE JESSÉ,Cécile,20/02/1948,DSV,Chef d'entreprise de 10 salariés ou plus,Non,M,MARTINI,Stéphane,11/04/1967,Non +72,Sarthe,05,5ème circonscription,4,18,M,DE VILMAREST,Eric,17/03/1959,REC,Commerçant et assimilé,Non,F,GOUBAULT,Marine,28/10/1977,Non +72,Sarthe,05,5ème circonscription,5,27,F,MANUEL,Solène,27/01/1991,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,ALEID-RIPOCHE,Yann-Falah,17/10/1993,Non +72,Sarthe,05,5ème circonscription,6,16,F,DE VIGNERAL,Victoria,30/05/1984,RN,Profession intermédiaire administrative de la fonction publique,Non,M,VAUGARNY,Pierre,22/10/1968,Non +72,Sarthe,05,5ème circonscription,7,26,F,FOUQUET,Karine,01/07/1966,DXG,Cadre de la fonction publique,Non,M,LACAVE,Olivier,01/07/1974,Non +72,Sarthe,05,5ème circonscription,8,41,M,GADRAULT,Julien,17/12/1984,DIV,Cadre administratif et commercial d'entreprise,Non,F,DERRIEN,Allison,06/02/1989,Non +72,Sarthe,05,5ème circonscription,9,38,M,KOKOLO,Rabbi,05/04/1989,NUP,Cadre de la fonction publique,Non,F,GUEDOUAR,Salima,29/08/1970,Non +72,Sarthe,05,5ème circonscription,10,2,M,GRELIER,Jean-Carles,15/03/1966,ENS,Profession libérale,Oui,F,BEAUCHEF,Anne,14/02/1972,Non +72,Sarthe,05,5ème circonscription,11,32,M,LEROSIER,Noa,31/10/2003,LR,"Elève, étudiant",Non,M,LOUBIER,Gérard,06/09/1952,Non +73,Savoie,01,1ère circonscription,1,36,M,GUILHOT,Rodolphe,25/01/1985,REG,"Professeur, profession scientifique",Non,F,DUPASSIEUX PALMIER,Véronique,03/02/1969,Non +73,Savoie,01,1ère circonscription,2,42,M,ROUSSEL,Christian,31/08/1965,DIV,Commerçant et assimilé,Non,F,PRAGER,Sandra,24/12/1981,Non +73,Savoie,01,1ère circonscription,3,41,M,EXERTIER,Frédéric,24/12/1968,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,COMTE,Jacques,04/04/1934,Non +73,Savoie,01,1ère circonscription,4,21,F,DERUEM,Manon,25/10/1993,RN,Commerçant et assimilé,Non,F,RAULT,Viviane,07/04/1960,Non +73,Savoie,01,1ère circonscription,5,43,M,CHAUVEAU,Jean-Pierre,10/04/1948,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,LEVEL,Johan,29/06/2002,Non +73,Savoie,01,1ère circonscription,6,11,F,FERRARI,Marina,10/10/1973,ENS,Cadre administratif et commercial d'entreprise,Non,M,PADEY,Didier,09/11/1965,Non +73,Savoie,01,1ère circonscription,7,39,M,BARDAGI,Thierry,12/05/1962,DIV,Profession libérale,Non,M,FRANCOZ,Philippe,24/08/1955,Non +73,Savoie,01,1ère circonscription,8,24,F,DUBOUCHET,Karine,06/12/1971,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,DORD,Thomas,25/12/1995,Non +73,Savoie,01,1ère circonscription,9,25,F,GRANATA,Christel,16/01/1975,NUP,Employé civil et agent de service de la fonction publique,Non,M,PINEAU,Grégory,07/08/1981,Non +73,Savoie,01,1ère circonscription,10,37,M,CROZE,Jean-Claude,15/06/1965,DVD,Cadre administratif et commercial d'entreprise,Non,F,PROFIT,Linda,06/07/1981,Non +73,Savoie,01,1ère circonscription,11,38,M,LAFARGUE,Pierre,31/10/1977,DSV,Artisan,Non,M,PARAIS,Pierre,15/06/1956,Non +73,Savoie,01,1ère circonscription,12,17,M,CASEJUANE,Adrien,17/03/1992,DXG,"Professeur, profession scientifique",Non,F,DUCRUET,Marie-Christine,10/01/1953,Non +73,Savoie,01,1ère circonscription,13,33,F,MILLORD,Beatrix,07/11/1963,REC,"Profession de l'information, des arts et des spectacles",Non,M,BERTON,David,25/10/1991,Non +73,Savoie,02,2ème circonscription,1,18,M,BERNARD,Brice,22/09/1985,RN,Cadre administratif et commercial d'entreprise,Non,F,BOGUET,Sara,02/08/1992,Non +73,Savoie,02,2ème circonscription,2,7,M,CHENU,Jordan,07/09/1998,DVD,"Elève, étudiant",Non,M,BINSE,Thibaud,13/10/1990,Non +73,Savoie,02,2ème circonscription,3,9,M,EMPEREUR,Arthur,23/05/1990,ENS,Employé civil et agent de service de la fonction publique,Non,F,CRESSENS,Annick,12/07/1958,Non +73,Savoie,02,2ème circonscription,4,8,M,MORAND,Cédric,19/03/1973,NUP,Profession libérale,Non,F,THIBAULT,Dominique,02/04/1951,Non +73,Savoie,02,2ème circonscription,5,14,F,RAHALIA,Myriam,26/10/1996,DXG,"Professeur, profession scientifique",Non,M,LESOURD,Maxime,13/04/1993,Non +73,Savoie,02,2ème circonscription,6,28,M,TROUTOT,Philippe,16/01/1967,DIV,Commerçant et assimilé,Non,F,DÉPINOY,Fabienne,19/10/1967,Non +73,Savoie,02,2ème circonscription,7,35,F,WURTZ,Anne-Sophie,02/10/1966,REC,Profession libérale,Non,M,GAY,Frédéric,09/08/1961,Non +73,Savoie,02,2ème circonscription,8,44,F,BUSSY,Flora,09/05/1964,ECO,Employé de commerce,Non,M,ZOUD,Mehdy,27/08/1986,Non +73,Savoie,02,2ème circonscription,9,3,M,CICERI,Mathieu,22/09/1981,DSV,Personnel des services directs aux particuliers,Non,F,GILLET,Michelle,11/11/1945,Non +73,Savoie,02,2ème circonscription,10,34,M,CAMUS,Bertrand,09/02/1953,ECO,Profession libérale,Non,F,TISSOT,Frédérique,10/07/1968,Non +73,Savoie,02,2ème circonscription,11,12,M,ROLLAND,Vincent,01/02/1970,LR,Cadre administratif et commercial d'entreprise,Oui,M,BURNIER FRAMBORET,Frédéric,05/05/1967,Non +73,Savoie,03,3ème circonscription,1,26,M,FLORIO,Mikaël,06/12/1993,REC,Employé administratif d'entreprise,Non,M,CHALOT,Pierre,28/09/1957,Non +73,Savoie,03,3ème circonscription,2,32,F,BONNIVARD,Emilie,02/08/1980,LR,Profession intermédiaire administrative de la fonction publique,Oui,M,HACHET,Valentin,15/12/1993,Non +73,Savoie,03,3ème circonscription,3,5,M,TROSSET,Xavier,01/12/1966,ENS,Cadre administratif et commercial d'entreprise,Non,F,DUMARGNE,Audrey,10/09/1979,Non +73,Savoie,03,3ème circonscription,4,2,M,THOMAZO,Vincent,25/12/1962,DSV,Profession intermédiaire administrative de la fonction publique,Non,F,BURGOS,Laetitia,14/09/1999,Non +73,Savoie,03,3ème circonscription,5,29,F,NOWAK,Patricia,27/10/1955,ECO,Ancien employé,Non,F,CROUZILLE,Stephanie,12/05/1971,Non +73,Savoie,03,3ème circonscription,6,30,F,SOCQUET-JUGLARD,Ghislaine,17/01/1953,ECO,Ancien employé,Non,F,FOSSATI,Marie-Ange,02/09/1948,Non +73,Savoie,03,3ème circonscription,7,31,F,KRAWEZYNSKI,Nathalie,03/10/1969,NUP,Employé administratif d'entreprise,Non,M,DEZETTRE,William,27/08/1975,Non +73,Savoie,03,3ème circonscription,8,16,F,TROUVÉ,Pascale,13/06/1962,DXG,"Professeur, profession scientifique",Non,M,CÔME,Rémy,19/05/1993,Non +73,Savoie,03,3ème circonscription,9,20,F,DAUCHY,Marie,05/02/1987,RN,Employé administratif d'entreprise,Non,M,COMBET,Lionel,08/07/1970,Non +73,Savoie,04,4ème circonscription,1,23,M,MIGNOLA,Patrick,08/08/1971,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,KADRI,Sandra,16/02/1978,Non +73,Savoie,04,4ème circonscription,2,10,M,GAUDIN,François,05/06/1969,LR,Cadre administratif et commercial d'entreprise,Non,F,ALZAY,Cristel,19/09/1968,Non +73,Savoie,04,4ème circonscription,3,15,F,DUCRUET,Marie,01/05/1988,DXG,Cadre de la fonction publique,Non,M,BARRACLOUGH FERNANDEZ,Edgar,30/12/1975,Non +73,Savoie,04,4ème circonscription,4,40,M,MERCIER,David,06/08/1983,DSV,Profession libérale,Non,M,BIGUET,Pierre,22/09/1948,Non +73,Savoie,04,4ème circonscription,5,22,M,GUILLAUD,Albin,20/03/1986,DIV,Profession libérale,Non,F,DARBOIS,Nelly,16/01/1990,Non +73,Savoie,04,4ème circonscription,6,4,F,BOUVIER,Mireille,13/09/1954,DIV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,CHENU,Roger,15/09/1941,Non +73,Savoie,04,4ème circonscription,7,19,M,GARNIER,Rémi,04/04/1985,RN,Employé de commerce,Non,F,MERCIER,Euryanthe,01/08/1994,Non +73,Savoie,04,4ème circonscription,8,13,M,GONZALEZ,Charles,24/01/1998,REC,Employé de commerce,Non,F,HENRICH,Madeline,18/06/2002,Non +73,Savoie,04,4ème circonscription,9,6,M,COULOMME,Jean-François,01/04/1966,NUP,Cadre administratif et commercial d'entreprise,Non,F,HAMOUDI WILKOWSKY,Sarah,13/06/1982,Non +73,Savoie,04,4ème circonscription,10,27,F,FELFOULI,Sonia,28/03/1989,DSV,"Ancien artisan, commerçant, chef d'entreprise",Non,F,MALAVASSI,Marina,24/11/1969,Non +74,Haute-Savoie,01,1ère circonscription,1,62,F,BATA,Anne-Sophie,16/03/1991,ECO,Cadre administratif et commercial d'entreprise,Non,F,BATA,Camille,04/08/1993,Non +74,Haute-Savoie,01,1ère circonscription,2,68,M,BUHLER,Franck,06/08/1965,DSV,Profession libérale,Non,M,DÉMOULINS,Paul-Romain,11/01/1985,Non +74,Haute-Savoie,01,1ère circonscription,3,25,M,CHIAD,Daniel Salem,06/10/1968,DIV,Technicien,Non,F,CHIAD,Souad,04/05/1977,Non +74,Haute-Savoie,01,1ère circonscription,4,37,F,PATTY GOMILA,Aurélia,25/08/1979,LR,Cadre administratif et commercial d'entreprise,Non,M,GRANGER,Anthony,10/07/1989,Non +74,Haute-Savoie,01,1ère circonscription,5,65,F,DUVAL,Anne-Valérie,02/11/1962,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,M,GIONA,Témistocle,12/10/1973,Non +74,Haute-Savoie,01,1ère circonscription,6,6,M,MATTEI,Jacques,12/12/1965,DXG,Ouvrier qualifié de type industriel,Non,F,CARDOT,Isabelle,14/04/1957,Non +74,Haute-Savoie,01,1ère circonscription,7,56,M,GIRARD-DESPROLET,William,06/07/1988,REG,"Professeur, profession scientifique",Non,F,BERNARD,Denise,18/02/1961,Non +74,Haute-Savoie,01,1ère circonscription,8,2,M,JAMBARD,Guillaume,12/07/1967,REC,Commerçant et assimilé,Non,F,GUILLERMAIN,Cecile,10/08/1980,Non +74,Haute-Savoie,01,1ère circonscription,9,49,M,JOUFFREY,Didier,04/02/1966,RN,Employé administratif d'entreprise,Non,M,FOL,Jean-Luc,12/05/1963,Non +74,Haute-Savoie,01,1ère circonscription,10,43,F,RIOTTON,Véronique,02/11/1969,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,M,LOMBARD,Roland,24/03/1957,Non +74,Haute-Savoie,02,2ème circonscription,1,63,M,COLLOMB-PATTON,Willy,17/07/1985,REG,Chef d'entreprise de 10 salariés ou plus,Non,F,GAYET,Cécile,21/04/1972,Non +74,Haute-Savoie,02,2ème circonscription,2,10,M,CORNU,Damien,24/01/1975,DSV,Chef d'entreprise de 10 salariés ou plus,Non,M,DUCRUET,Paul,04/11/1972,Non +74,Haute-Savoie,02,2ème circonscription,3,69,F,NANCHE,Anaïs,04/06/1971,RN,Employé administratif d'entreprise,Non,F,HOARAU,Elsa,30/01/1983,Non +74,Haute-Savoie,02,2ème circonscription,4,33,F,PACORET,Catherine,18/04/1976,UDI,"Professeur, profession scientifique",Non,F,VEYRAT-DUREBEX,Nelly,12/07/1976,Non +74,Haute-Savoie,02,2ème circonscription,5,24,F,BRANCALEONE,Sylvie,23/01/1968,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,VIVINUS,Jean Camille,06/03/1946,Non +74,Haute-Savoie,02,2ème circonscription,6,48,M,BOUSSA,Oujdi,08/10/1972,DIV,Technicien,Non,M,BOUSSA,Ahbas,22/11/1967,Non +74,Haute-Savoie,02,2ème circonscription,7,5,M,VIGARIÉ,Jean-Paul,28/03/1949,ECO,Profession libérale,Non,F,FERARY-BERTHELOT,Alexandra,12/05/1969,Non +74,Haute-Savoie,02,2ème circonscription,8,3,M,YILDIRIM,Naci,20/11/1975,DXG,Ouvrier non qualifié de type industriel,Non,F,SCHROEDT,Denise,22/01/1963,Non +74,Haute-Savoie,02,2ème circonscription,9,38,M,TARDY,Lionel,07/06/1966,DVD,Commerçant et assimilé,Non,F,ANDRÉ,Annabel,08/10/1970,Non +74,Haute-Savoie,02,2ème circonscription,10,41,M,HIPPOMÈNE,San,25/07/1970,REC,Employé de commerce,Non,F,BERNARD,Jade,29/12/2000,Non +74,Haute-Savoie,02,2ème circonscription,11,53,M,PERALDI,Timothée,31/12/2002,DIV,"Elève, étudiant",Non,F,PERCHERON,Elodie,04/11/2002,Non +74,Haute-Savoie,02,2ème circonscription,12,36,M,ARMAND,Antoine,10/09/1991,ENS,Cadre de la fonction publique,Non,F,CARTERON,Danièle,31/01/1984,Non +74,Haute-Savoie,02,2ème circonscription,13,64,F,FONTANA,Loris,05/11/1989,NUP,Profession intermédiaire de la santé et du travail social,Non,F,BARO,Corinne,08/08/1963,Non +74,Haute-Savoie,02,2ème circonscription,14,50,M,SCIABBARRASI,Pascal,08/07/1982,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MOTHE,Caroline,19/08/1963,Non +74,Haute-Savoie,02,2ème circonscription,15,54,M,CURDY,Christian,15/08/1952,ECO,Ancien cadre,Non,F,BÉRARD,Carla,03/03/1984,Non +74,Haute-Savoie,03,3ème circonscription,1,34,F,BOUVIER,Véronique,20/09/1973,REG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,DUPUIS,Alain,15/06/1959,Non +74,Haute-Savoie,03,3ème circonscription,2,57,M,COHEN,Albert,25/03/1973,DIV,"Professeur, profession scientifique",Non,M,GUILLORY,Nicolas,14/03/1980,Non +74,Haute-Savoie,03,3ème circonscription,3,47,M,DAGHRIR,Anis,14/06/1995,RN,Ouvrier qualifié de type industriel,Non,F,BRULÉ,Marie-Claire,21/06/1961,Non +74,Haute-Savoie,03,3ème circonscription,5,52,F,FERRARINI,Valérie,30/04/1971,ENS,Chef d'entreprise de 10 salariés ou plus,Non,M,HARMAND,Jean-Claude,02/03/1956,Non +74,Haute-Savoie,03,3ème circonscription,6,23,F,PETEX-LEVET,Christelle,02/09/1980,LR,Cadre administratif et commercial d'entreprise,Oui,M,FOURNIER,Christophe,16/03/1965,Non +74,Haute-Savoie,03,3ème circonscription,7,28,M,JACCAZ,Joseph,14/10/1992,ECO,Personnel des services directs aux particuliers,Non,F,PETER,Morgane,11/01/2000,Non +74,Haute-Savoie,03,3ème circonscription,8,9,M,JOANNOT,Sébastien,05/10/1973,REC,Artisan,Non,M,MATTIO,Pierre,11/04/1994,Non +74,Haute-Savoie,03,3ème circonscription,9,15,F,LEGOUHY,Jocelyne,01/03/1952,DXG,Ancien employé,Non,M,BOURGAIS,Olivier,09/05/1983,Non +74,Haute-Savoie,03,3ème circonscription,10,59,F,VANEECKELOOT-TASSA,Fabienne,14/08/1965,NUP,Profession intermédiaire de la santé et du travail social,Non,M,VEZ,Gérard,17/06/1960,Non +74,Haute-Savoie,04,4ème circonscription,1,73,M,BOUVIER,Shan,29/01/1996,ECO,Ouvrier qualifié de type industriel,Non,F,BIGLIA,Nelly,05/05/1985,Non +74,Haute-Savoie,04,4ème circonscription,2,51,M,VIELLIARD,Antoine,31/12/1971,ENS,Cadre administratif et commercial d'entreprise,Non,F,GERST,Véronique,05/11/1962,Non +74,Haute-Savoie,04,4ème circonscription,3,70,M,DJONGANDEKE,Tongomo,08/12/1956,DIV,"Professeur des écoles, instituteur et assimilé",Non,F,RATNAM,Sylvie,01/05/1990,Non +74,Haute-Savoie,04,4ème circonscription,4,42,M,YILDIRIM,Murat,12/08/1989,DIV,Technicien,Non,F,RAMRADJ,Rachèle,16/10/1986,Non +74,Haute-Savoie,04,4ème circonscription,5,20,F,VERBASCO,Véronique,30/09/1967,DSV,Ancien agriculteur exploitant,Non,M,LEGAL,Eric,29/06/1978,Non +74,Haute-Savoie,04,4ème circonscription,6,22,F,BÉDAGUE,Sophie,21/05/1964,DXG,Profession intermédiaire de la santé et du travail social,Non,M,ROSAY,Fabrice,13/02/1978,Non +74,Haute-Savoie,04,4ème circonscription,7,61,F,FERRANDI,Lea,30/07/1996,REG,Cadre administratif et commercial d'entreprise,Non,M,BLONDAZ,Laurent,22/08/1971,Non +74,Haute-Savoie,04,4ème circonscription,8,14,F,DUBY-MULLER,Virginie,16/08/1979,LR,Cadre de la fonction publique,Oui,M,BOSLAND,Jean-Paul,18/07/1969,Non +74,Haute-Savoie,04,4ème circonscription,9,45,F,LUHO,Magalie,28/05/1976,RN,Employé de commerce,Non,M,CHALEIL--DOS RAMOS,Kévin,12/02/1992,Non +74,Haute-Savoie,04,4ème circonscription,10,72,M,VERVOORT,Valérian,29/10/1987,NUP,"Professeur, profession scientifique",Non,F,ESSOUFI,Imane,16/11/1995,Non +74,Haute-Savoie,04,4ème circonscription,11,55,M,GIRAUD,Romain,07/11/1986,DXG,Cadre administratif et commercial d'entreprise,Non,F,BARTHEZ,Floriane,21/06/1984,Non +74,Haute-Savoie,04,4ème circonscription,12,12,M,BAILLY,Nicolas,08/03/1970,REC,Cadre de la fonction publique,Non,F,GERMANO,Nathalie,01/10/1968,Non +74,Haute-Savoie,04,4ème circonscription,13,7,F,DAHMAL,Vanessa,17/01/1982,ECO,"Contremaître, agent de maîtrise",Non,M,DELAPREE,Damien,04/07/1984,Non +74,Haute-Savoie,04,4ème circonscription,14,16,M,COHARD,Alexandre,29/12/1988,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,POLY,Eric,04/12/1984,Non +74,Haute-Savoie,05,5ème circonscription,1,18,F,DION,Sophie,25/03/1956,LR,Profession libérale,Non,M,ARMINJON,Christophe,08/03/1967,Non +74,Haute-Savoie,05,5ème circonscription,2,66,M,DUCROT,Guillaume,07/08/1997,DVD,Profession libérale,Non,F,DECROUX,Diane,09/12/1991,Non +74,Haute-Savoie,05,5ème circonscription,3,27,F,VICO,Céline,26/07/1973,REC,Employé administratif d'entreprise,Non,M,POIDEVIN,Sacha,05/07/1998,Non +74,Haute-Savoie,05,5ème circonscription,4,4,F,CAPELLI,Audrey,09/07/1975,ECO,Employé administratif d'entreprise,Non,F,FOURRICHON,Patricia,11/06/1981,Non +74,Haute-Savoie,05,5ème circonscription,5,46,F,TERRENI,Jessica,30/06/1980,RN,Profession intermédiaire de la santé et du travail social,Non,M,JARRIER,Patrick,07/05/1960,Non +74,Haute-Savoie,05,5ème circonscription,6,31,F,LEMMO GAUD,Barbara,28/01/1971,REG,Profession libérale,Non,M,MAGNIN,Daniel,12/05/1964,Non +74,Haute-Savoie,05,5ème circonscription,7,32,M,DUVOCELLE,Quentin,19/09/1972,ECO,Ingénieur et cadre technique d'entreprise,Non,F,MOUCHET,Myriam,27/12/1969,Non +74,Haute-Savoie,05,5ème circonscription,8,67,M,BOUREL,Michel,01/05/1969,DVD,Commerçant et assimilé,Non,F,DUCROT,Carole,24/11/1976,Non +74,Haute-Savoie,05,5ème circonscription,9,35,F,MARTIN-COCHER,Odile,15/04/1959,NUP,"Profession de l'information, des arts et des spectacles",Non,M,GILIBERT,Pierre,14/01/1955,Non +74,Haute-Savoie,05,5ème circonscription,10,71,F,MESSIN,Michelle,06/12/1958,DSV,Cadre administratif et commercial d'entreprise,Non,M,VINCENT,Marc,11/10/1956,Non +74,Haute-Savoie,05,5ème circonscription,11,29,F,BALLY,Michelle,02/05/1955,DXG,Ancien employé,Non,M,PONSARD,Raphaël,15/06/1966,Non +74,Haute-Savoie,05,5ème circonscription,12,26,F,VIOLLAND,Anne-Cécile,10/06/1973,ENS,Profession libérale,Non,M,SONGEON,Christophe,17/12/1964,Non +74,Haute-Savoie,06,6ème circonscription,1,40,F,DUVILLARD,Virginie,30/11/1966,REC,Profession libérale,Non,M,LEFEBVRE,Edouard,14/12/1944,Non +74,Haute-Savoie,06,6ème circonscription,2,39,M,LAGARDE,Stéphane,17/04/1973,ECO,Profession libérale,Non,F,APPERTET-COLBAUT,Sophie,16/06/1972,Non +74,Haute-Savoie,06,6ème circonscription,3,11,M,ROSEREN,Xavier,12/01/1970,ENS,Commerçant et assimilé,Oui,F,CURDY,Sophie,08/12/1976,Non +74,Haute-Savoie,06,6ème circonscription,4,60,F,DUGERDIL,Valérie,10/04/1969,REG,Technicien,Non,M,LEIS,Christophe,15/03/1977,Non +74,Haute-Savoie,06,6ème circonscription,5,44,M,PRATS,Charles,23/12/1970,UDI,Cadre de la fonction publique,Non,F,OLLIÉ,Martine,10/10/1962,Non +74,Haute-Savoie,06,6ème circonscription,6,19,M,MARTIN,Dominique,01/10/1961,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,BOUTOILLE,Florence,28/01/1987,Non +74,Haute-Savoie,06,6ème circonscription,7,30,M,LOUNIS,Ahmed,24/11/1986,NUP,Ouvrier qualifié de type industriel,Non,F,SBA,Zohra,01/08/1988,Non +74,Haute-Savoie,06,6ème circonscription,8,13,M,DEMEURE,Alexandre,07/10/1979,DXG,"Professeur, profession scientifique",Non,F,GESLAIN,Maryvonne,26/11/1960,Non +74,Haute-Savoie,06,6ème circonscription,9,21,F,MÉNY,Laurence,12/11/1964,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,RICHARD,Catherine,13/06/1957,Non +74,Haute-Savoie,06,6ème circonscription,10,8,F,PLUMIER,Noémie,17/11/1992,ECO,"Elève, étudiant",Non,M,TERNON,François,06/08/1963,Non +74,Haute-Savoie,06,6ème circonscription,11,17,M,CHANTELOT,Xavier,27/03/1961,LR,Profession libérale,Non,M,HENRIOUD,Thibault,15/04/1999,Non +74,Haute-Savoie,06,6ème circonscription,12,58,M,SOCQUET-JUGLARD,Sylvain,09/08/1950,ECO,Ancien ouvrier,Non,F,BARDAGI,Laetitia,01/08/1971,Non +75,Paris,01,1ère circonscription,1,39,F,DELWASSE,Liliane,09/06/1945,ECO,"Profession de l'information, des arts et des spectacles",Non,F,GASNIER,Léa,24/10/1986,Non +75,Paris,01,1ère circonscription,2,189,F,CHEDHOMME,Morgane,06/03/1966,RN,"Contremaître, agent de maîtrise",Non,F,ALVES,Sylvain,11/04/1969,Non +75,Paris,01,1ère circonscription,3,21,F,BOULINIER,Laurence,30/06/1953,DXG,Ancien employé,Non,M,SCHLUCHTER,Yannick,20/09/1973,Non +75,Paris,01,1ère circonscription,4,209,F,TOURTE,Dominique,20/02/1956,DVG,Ancien cadre,Non,M,LEBAUBE,Amado,09/02/1997,Non +75,Paris,01,1ère circonscription,5,11,M,MAILLARD,Sylvain,28/04/1974,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,FIGUÉROA,Martine,20/07/1962,Non +75,Paris,01,1ère circonscription,6,131,M,BALADI,Vincent,30/04/1985,LR,Cadre administratif et commercial d'entreprise,Non,F,D'HAUTESERRE,Jeanne,28/07/1953,Non +75,Paris,01,1ère circonscription,7,134,F,CHAUMETTE,Manon,07/02/2000,UDI,"Elève, étudiant",Non,M,PLEZ,Barthélémy,03/11/1993,Non +75,Paris,01,1ère circonscription,8,147,M,ATTIA,David,16/12/1992,REC,Profession libérale,Non,F,LE MARÉCHAL,Pascale,03/12/1963,Non +75,Paris,01,1ère circonscription,9,214,F,FAUX,Juliane,07/05/2001,REG,"Elève, étudiant",Non,M,POIRIER,Tristan,09/04/1979,Non +75,Paris,01,1ère circonscription,10,108,F,LECUYER,Catherine,01/02/1973,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,GUEVEL,Ronan,03/01/1974,Non +75,Paris,01,1ère circonscription,11,104,M,LUQUET,Thomas,09/11/1986,NUP,Ingénieur et cadre technique d'entreprise,Non,F,BOURET,Coline,03/09/1995,Non +75,Paris,01,1ère circonscription,12,148,F,PARIS,Annie,26/08/1947,DVG,Ancienne profession intermédiaire,Non,M,AOUDAY,Patrick,28/09/1952,Non +75,Paris,02,2ème circonscription,1,136,F,ROSSET,Marine,14/12/1985,NUP,"Professeur, profession scientifique",Non,M,COMET,François,29/07/1957,Non +75,Paris,02,2ème circonscription,2,49,M,LECOQ,Jean-Pierre,18/07/1954,LR,Cadre administratif et commercial d'entreprise,Non,F,DAUVERGNE,Emmanuelle,03/10/1971,Non +75,Paris,02,2ème circonscription,3,223,M,ASSAYAG,Daniel,20/09/1986,DIV,Profession libérale,Non,M,CALAMIA,Luciano,01/08/1994,Non +75,Paris,02,2ème circonscription,4,62,F,GILBERT,Isabelle,16/11/1964,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,COURTOIS,Olivier,16/03/1959,Non +75,Paris,02,2ème circonscription,5,99,F,DE VILLEPIN,Quitterie,08/04/1978,DIV,"Professeur, profession scientifique",Non,M,PLATIAU,Martin,08/10/2001,Non +75,Paris,02,2ème circonscription,6,4,F,JOLIVEAU,Charline,22/01/1966,DXG,Employé administratif d'entreprise,Non,F,MADANI,Amina,31/10/1965,Non +75,Paris,02,2ème circonscription,7,85,M,FRANTZ,Adrien,12/09/1978,DXG,"Professeur, profession scientifique",Non,F,ROSIER,Catherine,09/08/1961,Non +75,Paris,02,2ème circonscription,8,208,M,ROUGÉ,André,23/12/1961,RN,Ancien cadre,Non,M,VIGUIER,Annie,20/07/1950,Non +75,Paris,02,2ème circonscription,9,44,M,LE GENDRE,Gilles,13/05/1958,ENS,Ancien cadre,Oui,F,DE COMPREIGNAC,Séverine,08/02/1969,Non +75,Paris,02,2ème circonscription,10,34,F,DREYFUSS,Karine,31/08/1969,ECO,Profession intermédiaire de la santé et du travail social,Non,F,MONNIER,Sophie,14/03/1953,Non +75,Paris,02,2ème circonscription,11,220,F,MAGNE,Elise,08/09/1999,DIV,"Elève, étudiant",Non,M,TOUILLET-ORSINI,Maxime,30/09/1983,Non +75,Paris,03,3ème circonscription,1,77,F,EUPHRASIE,Marie-Emilie,25/06/1996,RN,Employé administratif d'entreprise,Non,M,JUNTAS,Michel,09/12/1950,Non +75,Paris,03,3ème circonscription,2,33,M,BURTAIRE,Laurent,01/07/1974,DXG,Ingénieur et cadre technique d'entreprise,Non,F,ROBIN,Sophie,08/07/1973,Non +75,Paris,03,3ème circonscription,3,159,M,BAFFIE,Laurent,18/04/1958,ECO,Profession libérale,Non,F,MARKOVIC,Douchka,08/04/1978,Non +75,Paris,03,3ème circonscription,4,76,F,MICHALET,Christine,26/06/1971,DIV,Cadre administratif et commercial d'entreprise,Non,F,ZAHID LEVY,Zoubida,16/11/1951,Non +75,Paris,03,3ème circonscription,5,36,F,IKUESAN,Ayodele,15/05/1985,DVG,Cadre administratif et commercial d'entreprise,Non,F,SAURAT,Charlotte,30/07/1992,Non +75,Paris,03,3ème circonscription,6,50,F,BOUGERET,Alix,13/04/1978,LR,Cadre administratif et commercial d'entreprise,Non,M,HATTE,Paul,05/09/1993,Non +75,Paris,03,3ème circonscription,7,106,M,GUERINI,Stanislas,14/05/1982,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,YADAN,Caroline,14/08/1968,Non +75,Paris,03,3ème circonscription,8,86,F,PLANTEVIN,Marguerite,08/11/1959,DXG,Profession intermédiaire de la santé et du travail social,Non,M,GIBERT,Florian,02/07/1981,Non +75,Paris,03,3ème circonscription,9,75,F,FISCHER,Cécile,13/11/1976,REC,Cadre administratif et commercial d'entreprise,Non,M,FERLET,Louis,29/04/1987,Non +75,Paris,03,3ème circonscription,10,87,F,BALAGE EL MARIKY,Léa,09/04/1990,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,ARNAUD,Pierre-Yvain,21/08/1981,Non +75,Paris,04,4ème circonscription,1,29,F,BONILLA,Dayana,28/05/1987,ECO,Commerçant et assimilé,Non,F,LETOURNEUR,Elisabeth,21/07/1961,Non +75,Paris,04,4ème circonscription,2,174,M,PERREAU,Jérôme,27/04/1976,DVC,Ingénieur et cadre technique d'entreprise,Non,M,GUEHO,Didier,25/01/1963,Non +75,Paris,04,4ème circonscription,3,153,M,BRITEL,Karim,23/07/1963,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,LORRIAUX,Jean-Pierre,04/04/1949,Non +75,Paris,04,4ème circonscription,4,138,F,PANOSYAN-BOUVET,Astrid,13/08/1971,ENS,Cadre administratif et commercial d'entreprise,Non,M,LAVAUD,Bertrand,03/12/1956,Non +75,Paris,04,4ème circonscription,5,2,F,DEPRAZ,Natalie,13/12/1964,NUP,"Professeur, profession scientifique",Non,M,PUJOL,Alexis Raphaël,16/04/1991,Non +75,Paris,04,4ème circonscription,6,202,F,ECLOU,Chantal,15/02/1971,ECO,Profession libérale,Non,F,LE CORRE,Mireille,13/09/1963,Non +75,Paris,04,4ème circonscription,7,51,F,LAVENIER,Annie Marcelle Mauricette,04/08/1943,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,BELMONDO,Jean-François Paul,24/02/1958,Non +75,Paris,04,4ème circonscription,8,125,M,SHNORHOKIAN,Garen,15/06/1989,REC,Profession libérale,Non,F,DE MAISTRE,Charlotte,05/07/1975,Non +75,Paris,04,4ème circonscription,9,185,F,FREUDBERG,Francine,10/06/1955,DVC,Ancien cadre,Non,F,CORNU,Coraline,15/08/1966,Non +75,Paris,04,4ème circonscription,10,66,M,TOUATI,Adrien,08/06/1985,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,LATASTE,Emilie,30/05/1996,Non +75,Paris,04,4ème circonscription,11,115,M,LÉVENARD,Pierre,10/08/1967,DXG,Ouvrier qualifié de type industriel,Non,M,CHRISTOPH,Frédéric,22/04/1971,Non +75,Paris,04,4ème circonscription,12,182,M,GUILLAS-CAVAN,Kevin,05/09/1989,DVG,"Professeur, profession scientifique",Non,F,CHARTIER,Fanny,26/03/1992,Non +75,Paris,04,4ème circonscription,13,53,F,KUSTER,Brigitte,12/04/1959,LR,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,M,GACHET,Gérard,24/01/1951,Non +75,Paris,05,5ème circonscription,1,188,F,MEDDAH,Assia,16/01/1982,RDG,Profession intermédiaire de la santé et du travail social,Non,M,SCANVIC,Frédéric,19/11/1960,Non +75,Paris,05,5ème circonscription,2,165,M,ABEL,Arnaud,28/07/1974,DVC,Cadre de la fonction publique,Non,F,CHAZAL,Maëva,30/07/1990,Non +75,Paris,05,5ème circonscription,3,64,F,GILLE,Annaëlle,14/08/1999,UDI,"Elève, étudiant",Non,M,BRUNO,Antoine,03/08/1992,Non +75,Paris,05,5ème circonscription,4,218,F,VOGT,Marguerite,05/07/1948,RN,Ancienne profession intermédiaire,Non,F,MONSAURET,Stacy,06/06/1994,Non +75,Paris,05,5ème circonscription,5,151,M,MAURIN,Pierre,11/10/1966,DVD,Profession libérale,Non,M,ROUET,Julien,12/05/1985,Non +75,Paris,05,5ème circonscription,6,56,M,GAUTIER,Yann,22/04/1962,REC,Profession libérale,Non,F,MARTIN,Dorothée,28/12/1969,Non +75,Paris,05,5ème circonscription,7,150,F,FAJGELES,Elise,06/07/1970,ENS,Cadre de la fonction publique,Non,M,PONSOYE,Olivier,18/06/1964,Non +75,Paris,05,5ème circonscription,8,23,F,DABAT,Monique,26/11/1961,DXG,Ancienne profession intermédiaire,Non,M,CHALLAL,Éric,08/07/1984,Non +75,Paris,05,5ème circonscription,9,15,M,BALLON,Jean,20/07/1967,ECO,Profession libérale,Non,F,MORELL,Gilian,19/03/1943,Non +75,Paris,05,5ème circonscription,10,103,M,BAYOU,Julien,11/06/1980,NUP,Profession libérale,Non,F,SCHERER,Sylvie,28/08/1964,Non +75,Paris,05,5ème circonscription,11,198,F,JOUVEAU,Marie-Jeanne,03/08/1983,DIV,Profession libérale,Non,M,FAURE,Melchior,02/04/1987,Non +75,Paris,06,6ème circonscription,1,120,F,HUYNH THI (BOZZI),Marie Rosette,18/06/1946,RN,Ancienne profession intermédiaire,Non,F,DELATTRE LECAULT DELATTRE,Jennifer,26/03/1989,Non +75,Paris,06,6ème circonscription,2,179,F,BONZANI,Laurence,10/05/1960,ECO,"Professeur des écoles, instituteur et assimilé",Non,M,ROSSIGNOL,Christophe,14/08/1966,Non +75,Paris,06,6ème circonscription,3,126,M,BARGETON,Julien,29/03/1973,ENS,Cadre de la fonction publique,Non,F,CAPELLE,Liliane,05/06/1948,Non +75,Paris,06,6ème circonscription,4,101,F,CHIKIROU,Sophia,03/06/1979,NUP,Chef d'entreprise de 10 salariés ou plus,Non,F,DE LA ROCHEFOUCAULD,Sophie,11/10/1965,Non +75,Paris,06,6ème circonscription,5,7,M,MELDENER,Victor,20/11/1991,REC,Employé de commerce,Non,M,TYL,Stanislas,17/10/2000,Non +75,Paris,06,6ème circonscription,6,210,F,BERROUBA,Yasmin,14/04/2002,DVC,"Elève, étudiant",Non,F,LABEL,Marie-Rose,13/05/1973,Non +75,Paris,06,6ème circonscription,7,60,F,GODDE,Anne-Catherine,14/07/1963,DXG,Profession intermédiaire de la santé et du travail social,Non,M,GAILLARD,Jean-Louis,14/03/1945,Non +75,Paris,06,6ème circonscription,8,40,M,MARTIN,Jean-Christophe,21/10/1985,LR,Ingénieur et cadre technique d'entreprise,Non,F,GAMAL EL DINE,Mona,25/12/1950,Non +75,Paris,06,6ème circonscription,9,196,F,BORSELLINO,Jennifer,28/11/1985,DIV,Employé administratif d'entreprise,Non,M,RICHARD,Cyrille,31/03/1975,Non +75,Paris,06,6ème circonscription,10,194,M,FREMION,Yves,14/06/1947,ECO,"Profession de l'information, des arts et des spectacles",Non,F,CHLIQUE,Annie,17/01/1947,Non +75,Paris,06,6ème circonscription,11,31,M,DUPUY,Charles,19/11/1947,DXG,Ancien cadre,Non,F,SCHIDLOWER,Sarah,28/10/1974,Non +75,Paris,06,6ème circonscription,12,80,M,VAN DEN BROUCKE,Romain,10/05/1999,ECO,"Elève, étudiant",Non,F,BIGOIN,Marion,25/12/2002,Non +75,Paris,07,7ème circonscription,1,18,F,PETIT,Aurélia,27/11/1972,DXG,Ingénieur et cadre technique d'entreprise,Non,M,MARSAULT,Philippe,20/09/1958,Non +75,Paris,07,7ème circonscription,2,91,M,BEAUNE,Clément,14/08/1981,ENS,Cadre de la fonction publique,Non,F,CHASSANIOL,Clara,26/07/1993,Non +75,Paris,07,7ème circonscription,3,129,M,MAZUEL,Philippe,19/01/1956,DVG,Cadre de la fonction publique,Non,M,BELGUECHI,Moncef,09/08/1987,Non +75,Paris,07,7ème circonscription,4,52,F,LAENG,Isabelle Dite Cindy'Lee,27/04/1968,DIV,"Profession de l'information, des arts et des spectacles",Non,M,LAFFITTE,Frank,03/05/1962,Non +75,Paris,07,7ème circonscription,5,58,M,CLAUDIO,Louis,01/09/1994,DVC,Commerçant et assimilé,Non,M,ROUSSAT,Jacques,16/04/1967,Non +75,Paris,07,7ème circonscription,6,187,M,FLAHAUT-PREVOT,Rodrigue,15/03/1972,RDG,Cadre de la fonction publique,Non,F,CERVERA,Caroline,05/02/1972,Non +75,Paris,07,7ème circonscription,7,112,F,DELÉTANG,Constance,28/03/2003,REC,"Elève, étudiant",Non,M,COSTET,Olivier,08/04/1980,Non +75,Paris,07,7ème circonscription,8,180,M,CHAMEROY,Gaspard,23/09/1994,ECO,Ingénieur et cadre technique d'entreprise,Non,F,CHARLES,Pauline,27/12/1996,Non +75,Paris,07,7ème circonscription,9,142,M,MOULINS,Thomas,27/04/1972,ECO,Profession intermédiaire de la santé et du travail social,Non,M,GASPERINI,Nathalie,02/05/1971,Non +75,Paris,07,7ème circonscription,10,42,F,MECARY,Caroline,16/04/1963,NUP,Profession libérale,Non,M,KUBACKI,Yann,26/09/1994,Non +75,Paris,07,7ème circonscription,11,72,M,VÉRON,Aurélien,03/04/1969,LR,Cadre administratif et commercial d'entreprise,Non,F,MALACHARD,Delphine,31/03/1970,Non +75,Paris,07,7ème circonscription,12,211,F,MOGHIR,Naïma,28/02/1962,ECO,"Professeur, profession scientifique",Non,M,EL HAIRY,Abdel Ilah,15/06/1957,Non +75,Paris,07,7ème circonscription,13,177,F,DAGUENEL (NGUYEN CONG DUC),Anne Hélène Janine Marie,01/09/1957,RN,Cadre de la fonction publique,Non,F,RABY,Monique Simone,03/03/1954,Non +75,Paris,08,8ème circonscription,1,204,F,BLONDEL,Marie-Noelle,24/12/1962,DVC,Commerçant et assimilé,Non,F,BAKUPA,Anne,08/07/1999,Non +75,Paris,08,8ème circonscription,2,215,M,RITROVATO,Grégory,18/08/2000,DIV,"Elève, étudiant",Non,M,DUSSOL,Gautier,09/11/2001,Non +75,Paris,08,8ème circonscription,3,35,F,VOLBART,Laurence,11/02/1970,ECO,Cadre administratif et commercial d'entreprise,Non,M,BÉRODIER,Gilles,06/05/1970,Non +75,Paris,08,8ème circonscription,4,12,F,DUPONCEL,Crystal,25/09/2001,DSV,"Elève, étudiant",Non,M,SPOUTIL,Paul,26/07/1993,Non +75,Paris,08,8ème circonscription,5,17,F,LANCELOT,Vanessa,31/03/1971,RN,Cadre de la fonction publique,Non,F,LHULLIER,Joëlle,12/08/1946,Non +75,Paris,08,8ème circonscription,6,193,F,KOBBI,Nezha,24/02/1978,ECO,Cadre administratif et commercial d'entreprise,Non,M,BARBAROUX,Bernard,26/01/1942,Non +75,Paris,08,8ème circonscription,7,171,M,LUTZ,Manuel,17/11/1976,DIV,"Elève, étudiant",Non,M,SALMI,Amir,19/11/1973,Non +75,Paris,08,8ème circonscription,8,90,F,MONTANDON,Valérie,31/03/1976,LR,"Ancien artisan, commerçant, chef d'entreprise",Non,M,SEINGIER,Matthieu,22/03/1982,Non +75,Paris,08,8ème circonscription,9,152,F,GIRAUD,Marie-Claude,28/06/1957,DVG,Ancien cadre,Non,M,MORIZET,Hervé,18/11/1953,Non +75,Paris,08,8ème circonscription,10,32,F,BERNON,Anne,30/08/1956,DXG,"Professeur, profession scientifique",Non,M,CARN,Pascal,10/03/1962,Non +75,Paris,08,8ème circonscription,11,37,M,TRUNKENWALD,Jannick,23/09/1972,REC,"Professeur, profession scientifique",Non,F,N'DRI,Marie-Chantal,28/08/1964,Non +75,Paris,08,8ème circonscription,12,113,F,AVIA,Laëtitia,29/10/1985,ENS,Profession libérale,Oui,M,PERNIN,Benoît,20/08/1971,Non +75,Paris,08,8ème circonscription,13,84,F,SAS,Eva,13/08/1970,NUP,Cadre administratif et commercial d'entreprise,Non,F,CHARNOZ,Sandrine,09/01/1972,Non +75,Paris,09,9ème circonscription,1,133,F,COSSART,Béatrice,10/04/1969,ECO,Profession intermédiaire de la santé et du travail social,Non,F,VALESI,Paule,09/10/1960,Non +75,Paris,09,9ème circonscription,2,135,M,OLIVIER,Jean-Baptiste,01/08/1979,LR,Cadre de la fonction publique,Non,F,ESTIENNE,Mireille,16/08/1970,Non +75,Paris,09,9ème circonscription,3,73,F,BEDAGUE,Florence,12/12/1962,DXG,Profession intermédiaire de la santé et du travail social,Non,M,CHOULAK,Karim,14/12/1968,Non +75,Paris,09,9ème circonscription,4,169,M,NECHADI,Farid,28/06/1978,DVG,"Professeur, profession scientifique",Non,F,KANANE,Kahina,25/01/1980,Non +75,Paris,09,9ème circonscription,5,184,M,BEYSSAC,Pierre,20/07/1966,DIV,Commerçant et assimilé,Non,M,FRÉNÉHARD,Duncan,14/09/1996,Non +75,Paris,09,9ème circonscription,6,83,M,MEYER,David,14/11/1977,REC,Profession libérale,Non,F,BOTTOU,Marion,06/07/1973,Non +75,Paris,09,9ème circonscription,7,24,M,GLOESS,Éric,16/01/1981,DXG,"Professeur, profession scientifique",Non,F,FRANTZ,Evelyne,11/07/1952,Non +75,Paris,09,9ème circonscription,8,207,F,ROUSSEAU,Sandrine,11/08/1971,DVD,Profession intermédiaire de la santé et du travail social,Non,M,NOBLET,Alexandre,18/07/1991,Non +75,Paris,09,9ème circonscription,9,132,M,TAN,Buon,10/03/1967,ENS,Chef d'entreprise de 10 salariés ou plus,Oui,F,HACHEM,Fatima,06/10/1978,Non +75,Paris,09,9ème circonscription,10,144,F,ROUSSEL,Carole Isabelle Gabrielle,06/03/1950,RN,Profession libérale,Non,M,MAZELI,Théo,19/12/2001,Non +75,Paris,09,9ème circonscription,11,139,M,MIERMONT,Laurent,17/04/1975,DVG,Cadre de la fonction publique,Non,F,AUTARD,Tiphaine,11/02/2002,Non +75,Paris,09,9ème circonscription,12,178,F,LABUS,Irène,28/04/1971,DSV,Ancien cadre,Non,M,LIFCHITZ,Serge Albert,28/06/1952,Non +75,Paris,09,9ème circonscription,13,82,F,ROUSSEAU,Sandrine,08/03/1972,NUP,"Professeur, profession scientifique",Non,M,BÉTOURNÉ,Wilfried,08/08/1985,Non +75,Paris,10,10ème circonscription,1,9,F,LANG,Anne-Christine,10/08/1961,ENS,Cadre de la fonction publique,Oui,M,TEDESCHI,Théo,01/11/1990,Non +75,Paris,10,10ème circonscription,2,45,M,ARENAS,Rodrigo,24/04/1974,NUP,Cadre de la fonction publique,Non,F,HAMDI,Ouns,16/01/1993,Non +75,Paris,10,10ème circonscription,3,163,M,GOLDSTEIN,Michel Abdul Wahid,12/11/1960,DVC,"Profession de l'information, des arts et des spectacles",Non,F,HENRY,Florelle,03/12/1991,Non +75,Paris,10,10ème circonscription,4,118,F,DENEUVE,Jacqueline,10/06/1981,DVC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,BOUCHARD,David,17/07/1967,Non +75,Paris,10,10ème circonscription,5,140,F,HONGRE,Anne-Sophie,24/11/1970,REC,Profession libérale,Non,M,MARGELIDON,Jérôme,28/02/1955,Non +75,Paris,10,10ème circonscription,6,78,M,DE SAINT JUST,Wallerand,06/07/1950,RN,Ancien cadre,Non,M,ROUX,Wilson,20/05/1997,Non +75,Paris,10,10ème circonscription,7,146,F,MODROÑO RODRIGUEZ,Margarita,17/06/1966,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,FAYAUT,Sheila,20/12/1982,Non +75,Paris,10,10ème circonscription,8,30,F,TISSIER,Sophie,23/02/1979,DIV,"Profession de l'information, des arts et des spectacles",Non,F,PATEY,Sophie,20/03/1965,Non +75,Paris,10,10ème circonscription,9,20,M,VAUTIER,Vincent,13/12/1980,DXG,Technicien,Non,F,KIKITA,Martine,30/03/1956,Non +75,Paris,10,10ème circonscription,10,95,F,MUET,Myriam,04/09/1995,UDI,Profession libérale,Non,F,CHIRON,Elisa,27/06/1999,Non +75,Paris,10,10ème circonscription,11,41,M,NORDMANN,Simon,26/10/1995,ECO,Ouvrier non qualifié de type industriel,Non,F,DELVAUX,Marine,23/03/1988,Non +75,Paris,10,10ème circonscription,12,3,F,BAILLE,Olivia,18/06/1975,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,MONNIAUX,Alain,19/03/1954,Non +75,Paris,10,10ème circonscription,13,122,M,SANDO,Francis,01/06/1959,DVD,Cadre administratif et commercial d'entreprise,Non,F,RISSELET,Odile,10/08/1959,Non +75,Paris,10,10ème circonscription,14,161,M,HAMDANI,Khalid,11/12/1956,ECO,Cadre administratif et commercial d'entreprise,Non,F,PEYTAVI,Sophie,05/12/1961,Non +75,Paris,10,10ème circonscription,15,10,M,SHOUKRY,Habib,15/07/1981,LR,Cadre administratif et commercial d'entreprise,Non,F,VEYRENC,Marie-Cécile,05/12/1968,Non +75,Paris,10,10ème circonscription,16,160,F,NGUEMBOCK,Deza,06/12/1973,DVG,Profession libérale,Non,F,FOULETIER,Alicia Charlotte Emmanuelle,23/10/1970,Non +75,Paris,10,10ème circonscription,17,164,F,MOORADUN RUMJAUN,Hania,18/06/1998,ECO,Ancien employé,Non,F,NGUON,Linda,03/09/1987,Non +75,Paris,10,10ème circonscription,18,222,M,SELLIER,Thomas,17/07/1994,DIV,Ingénieur et cadre technique d'entreprise,Non,M,HUERRE,Dimitri,24/07/1994,Non +75,Paris,11,11ème circonscription,1,205,F,SIMÉON ÉP EYCHART,Marie-Thérèse-Jeanne,22/10/1945,DVG,"Professeur, profession scientifique",Non,M,RAVOAVY,Carl,11/10/1997,Non +75,Paris,11,11ème circonscription,2,47,F,LABOURDETTE,Valentine,21/06/1999,ECO,"Elève, étudiant",Non,F,MILERT,Ophélie,17/10/1996,Non +75,Paris,11,11ème circonscription,3,121,F,GATEL,Maud,06/04/1979,ENS,Cadre administratif et commercial d'entreprise,Oui,M,MANSIER,Nicolas,22/12/1970,Non +75,Paris,11,11ème circonscription,4,27,F,EDON-GUILLOT,Dominique,09/02/1955,DXG,Ancien cadre,Non,M,DAYMARD,Jean-Pierre,26/03/1955,Non +75,Paris,11,11ème circonscription,5,111,F,COUSIN,Saddia,21/05/1977,RN,Cadre administratif et commercial d'entreprise,Non,F,STOYANOVA,Krassimira,28/12/1957,Non +75,Paris,11,11ème circonscription,6,141,F,POLSKI,Olivia,02/06/1975,NUP,Cadre de la fonction publique,Non,F,HERVIEU,Céline,19/08/1993,Non +75,Paris,11,11ème circonscription,7,65,F,CARRERE-GEE,Marie-Claire,23/03/1963,LR,Cadre de la fonction publique,Non,M,MARIA,Paul,17/08/1983,Non +75,Paris,11,11ème circonscription,8,6,M,LAYRÉ-CASSOU,Franck,16/03/1984,REC,Commerçant et assimilé,Non,F,EL-BAZE,Deborah,22/06/1981,Non +75,Paris,11,11ème circonscription,9,166,F,LE GAC,Nolwenn,15/08/1983,DIV,Policier et militaire,Non,M,LE GLAND,Nicolas,03/05/1982,Non +75,Paris,11,11ème circonscription,10,57,M,VINCIGUERRA,Laurent,25/04/1966,DXG,Chauffeur,Non,M,LE GUENNEC,Marc,18/04/1987,Non +75,Paris,12,12ème circonscription,1,70,M,DE CLINCHAMP-BELLEGARDE,Benoît,20/10/1998,REC,Profession intermédiaire administrative de la fonction publique,Non,M,ESTIENNE,Pierre,14/09/1988,Non +75,Paris,12,12ème circonscription,2,69,F,BOULEY,Chloé,22/01/1991,UDI,Cadre administratif et commercial d'entreprise,Non,M,DREYER,Maxime,07/05/1990,Non +75,Paris,12,12ème circonscription,3,123,F,GREGOIRE,Olivia,30/09/1978,ENS,Cadre de la fonction publique,Non,F,BERETE,Fanta,31/05/1975,Non +75,Paris,12,12ème circonscription,4,130,M,LORIAU,Jérôme,04/04/1971,LR,"Professeur, profession scientifique",Non,F,ROLGEN,Chantal,04/01/1950,Non +75,Paris,12,12ème circonscription,5,59,F,MONCHAL,Muriel,29/10/1966,DXG,"Professeur, profession scientifique",Non,M,CAMMOUN,Zakariyya,05/07/1975,Non +75,Paris,12,12ème circonscription,6,46,M,BATTINI,Jean-Luc,14/11/1957,ECO,"Profession de l'information, des arts et des spectacles",Non,F,METAYER,Margaux,31/05/1995,Non +75,Paris,12,12ème circonscription,7,175,M,MINEV,Michael,04/10/2000,DIV,"Elève, étudiant",Non,F,DENCHEVA,Elitsa,14/07/1986,Non +75,Paris,12,12ème circonscription,8,183,F,DELINOT,Annel,19/10/1980,DIV,"Profession de l'information, des arts et des spectacles",Non,F,HUITOREL,Carole,29/08/1971,Non +75,Paris,12,12ème circonscription,9,100,F,MALAISÉ,Céline,13/12/1979,NUP,"Professeur, profession scientifique",Non,F,MICHAUT,Léa,10/10/1995,Non +75,Paris,12,12ème circonscription,10,212,F,VIERNE,Sidonie,19/12/1971,DSV,Employé administratif d'entreprise,Non,M,CROUZY,"Frederic, Marie, Jacques",17/11/1959,Non +75,Paris,12,12ème circonscription,11,14,F,PAGEARD,Agnès,07/05/1968,RN,Commerçant et assimilé,Non,F,MERLET,Marie-Claude,09/05/1940,Non +75,Paris,13,13ème circonscription,1,127,M,JEANNETÉ,Nicolas,22/06/1965,DVD,Cadre administratif et commercial d'entreprise,Non,F,LAHOUASSA,Anessa,03/02/1983,Non +75,Paris,13,13ème circonscription,2,116,M,MARINHO,Mickaël,18/05/1992,DVC,Chauffeur,Non,M,MARINHO,Jason,08/01/1998,Non +75,Paris,13,13ème circonscription,3,74,F,FUSI,Muriel,16/10/1979,ECO,Cadre administratif et commercial d'entreprise,Non,M,PAILLONCY,Lionel,03/11/1980,Non +75,Paris,13,13ème circonscription,4,149,M,DARGHAM,Pierre,16/10/1991,DVG,Ingénieur et cadre technique d'entreprise,Non,F,MARQUES,Camille,15/08/1973,Non +75,Paris,13,13ème circonscription,5,8,F,ROETHLISBERGER,Corinne,30/06/1963,DXG,Employé civil et agent de service de la fonction publique,Non,F,NAUDET,Sylvie,11/01/1964,Non +75,Paris,13,13ème circonscription,6,162,F,MALLET,Maïalen,30/12/1997,DVG,Cadre de la fonction publique,Non,M,ULMANN,Paul,27/09/1998,Non +75,Paris,13,13ème circonscription,7,63,F,EVANGELISTA,Ornella,16/04/1991,REC,Commerçant et assimilé,Non,F,D'AUBERT HENRION,Edith,11/10/1962,Non +75,Paris,13,13ème circonscription,8,213,F,TRAINAR,Nadia,18/07/1976,DVC,Ingénieur et cadre technique d'entreprise,Non,M,KREBS,Thomas,24/12/1998,Non +75,Paris,13,13ème circonscription,9,79,F,NIAKATÉ,Aminata,07/11/1980,NUP,Profession libérale,Non,F,AZMINE-AYOUT,Emma,30/03/1991,Non +75,Paris,13,13ème circonscription,10,94,F,BOLVIN,Isabelle,02/12/1969,RN,Artisan,Non,F,MARJANOVIC,Zeljka,12/07/1973,Non +75,Paris,13,13ème circonscription,11,197,F,MOREL,Daniele,04/04/1949,DVG,Ancien cadre,Non,M,TARDITO,Theodore,18/11/1994,Non +75,Paris,13,13ème circonscription,12,97,M,AMIEL,David,28/11/1992,ENS,Cadre administratif et commercial d'entreprise,Non,F,IBLED,Catherine,25/05/1975,Non +75,Paris,13,13ème circonscription,13,93,M,BOURSE-PROVENCE,Dominique,03/02/1952,DSV,Profession libérale,Non,F,ADDE,Agnès,03/07/1965,Non +75,Paris,14,14ème circonscription,1,55,M,SZPINER,Francis,22/03/1954,LR,Profession libérale,Non,F,BOËLLE,Sandra,26/05/1961,Oui +75,Paris,14,14ème circonscription,2,172,F,KRATZ,Catherine,08/04/1962,DVC,Profession libérale,Non,F,BEVIERE,Bénédicte,06/07/1967,Non +75,Paris,14,14ème circonscription,3,128,F,DE LA BRÉLIE,Anne,05/07/1968,RN,Profession intermédiaire de la santé et du travail social,Non,F,PERNOT,Anne,29/05/1968,Non +75,Paris,14,14ème circonscription,4,143,M,PILARD,Sébastien,21/08/1978,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,MEMMI,Dan-Alexandre,26/01/1989,Non +75,Paris,14,14ème circonscription,5,200,F,MATHURIN,Isabelle,27/02/1959,DVG,Cadre de la fonction publique,Non,M,BELEM,Bruno,11/08/1958,Non +75,Paris,14,14ème circonscription,6,92,M,DORDOIGNE,Serge,08/03/1990,ECO,Employé civil et agent de service de la fonction publique,Non,M,BOUSSAHEL,Sofiane,30/09/1978,Non +75,Paris,14,14ème circonscription,7,5,F,BOURDY,Marie,12/02/1968,DXG,Ingénieur et cadre technique d'entreprise,Non,M,HEMERY,Frédéric,31/12/1966,Non +75,Paris,14,14ème circonscription,8,13,M,HADDAD,Benjamin,23/10/1985,ENS,"Professeur, profession scientifique",Non,F,MISSOFFE,Joséphine,24/09/1973,Non +75,Paris,14,14ème circonscription,9,224,F,ACHOUR,Wendy,10/02/1990,DVG,Cadre administratif et commercial d'entreprise,Non,M,VANDEMBROUCQ,Damien,16/03/1969,Non +75,Paris,14,14ème circonscription,10,110,F,MAURY,Julie,17/03/1989,NUP,"Profession de l'information, des arts et des spectacles",Non,M,ROTA,Hugo,24/01/2002,Non +75,Paris,15,15ème circonscription,1,48,F,TYBURCZY,Apolline,12/10/1987,ECO,Profession libérale,Non,F,MARASTI,Muriel,28/09/1968,Non +75,Paris,15,15ème circonscription,2,43,M,HOUPLAIN,Philippe,16/07/1961,REC,Cadre de la fonction publique,Non,F,BARBAROUX,Sophie,01/04/1989,Non +75,Paris,15,15ème circonscription,3,225,F,SYLVESTRE,Albertine,13/09/1974,DIV,Employé civil et agent de service de la fonction publique,Non,M,ADJÉTÉ,Séwa Pierre,22/02/1956,Non +75,Paris,15,15ème circonscription,4,26,F,BOULAIRE,Marie-Josée,26/01/1959,RN,Ancien employé,Non,F,TACHER,Angélique,02/04/1999,Non +75,Paris,15,15ème circonscription,5,98,F,SIMONNET,Danielle,02/07/1971,NUP,"Professeur, profession scientifique",Non,F,GARREZ,Alice,05/12/1971,Non +75,Paris,15,15ème circonscription,6,22,M,DIDIER,François-Marie,03/10/1980,LR,Cadre administratif et commercial d'entreprise,Non,F,JASSIN,Brigitte,22/10/1955,Non +75,Paris,15,15ème circonscription,7,114,M,GASSAMA,Mohamad,22/11/1979,ENS,Ingénieur et cadre technique d'entreprise,Non,F,ZILBERG,Arlette,20/05/1956,Non +75,Paris,15,15ème circonscription,8,176,F,EL AARAJE,Lamia,22/11/1986,DVG,Cadre administratif et commercial d'entreprise,Non,M,CASANOVA,Alain,21/03/1963,Non +75,Paris,15,15ème circonscription,9,19,F,ZEKA LEMA,Pauline,19/01/1982,DXG,"Contremaître, agent de maîtrise",Non,F,LISCOËT,Catherine,04/05/1954,Non +75,Paris,15,15ème circonscription,10,186,F,ADOBATI,Sandrine,30/03/1974,DIV,Cadre administratif et commercial d'entreprise,Non,M,GARCIA,Virgile,13/09/1985,Non +75,Paris,15,15ème circonscription,11,173,M,ARAGON,Philippe,23/05/1968,DVC,Cadre administratif et commercial d'entreprise,Non,M,MUZARD,Alain,12/02/1962,Non +75,Paris,15,15ème circonscription,12,170,M,NOBIN,Thierry Jean Pierre,09/11/1962,DXG,Employé civil et agent de service de la fonction publique,Non,F,MOREAU,Martine Annie,26/04/1954,Non +75,Paris,15,15ème circonscription,13,38,M,CHARVILLAT,Arnaud,28/10/1977,DXG,Employé civil et agent de service de la fonction publique,Non,M,SOUCIER,Dominique,16/06/1970,Non +75,Paris,16,16ème circonscription,1,102,F,LEGRAIN,Sarah,17/11/1985,NUP,"Professeur, profession scientifique",Non,F,AIDARA,Ramata,28/07/1982,Non +75,Paris,16,16ème circonscription,2,89,M,EL-MARBATI,Nordine,05/06/1962,DXG,Employé administratif d'entreprise,Non,F,GUIDOT,Catherine,21/06/1952,Non +75,Paris,16,16ème circonscription,3,191,M,BACHA,Yanis,16/01/1993,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MAMAN,Noémie Simha,02/04/1998,Non +75,Paris,16,16ème circonscription,4,16,F,TOUBIANA,Marie,18/10/1947,LR,Ancien cadre,Non,M,LAMBEY,Aymeric,15/02/1983,Non +75,Paris,16,16ème circonscription,5,68,M,MARCHIKA,Ivan,19/11/1988,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,BARAY,Elise-Anne,22/08/1990,Non +75,Paris,16,16ème circonscription,6,217,M,FOURNIER,Laurent,08/04/1964,DVC,Commerçant et assimilé,Non,F,TALEB,Monira,20/06/1979,Non +75,Paris,16,16ème circonscription,7,167,M,COUPEL,Sébastien,30/07/1976,ECO,Employé administratif d'entreprise,Non,M,GROSBOIS,Etienne,09/12/1988,Non +75,Paris,16,16ème circonscription,8,219,F,AROUS,Jihane,25/09/1967,DIV,Commerçant et assimilé,Non,M,NASRI,Mehdi,25/11/2002,Non +75,Paris,16,16ème circonscription,9,124,F,MONSAURET,Nathalie,09/02/1969,RN,Personnel des services directs aux particuliers,Non,F,KEMARI-LAURADOUR,Ouneïza,08/05/1935,Non +75,Paris,16,16ème circonscription,10,168,M,BECHIEAU,François,03/01/1970,DVG,Profession libérale,Non,F,GUIGNARD,Agnès,24/05/1959,Non +75,Paris,16,16ème circonscription,11,192,F,KHELFA,Hakima,25/12/1982,DIV,Cadre de la fonction publique,Non,M,GUIGNIER,Antoine Jean Raymond,16/06/1969,Non +75,Paris,16,16ème circonscription,12,216,F,DESGRANGE,Caroline,14/01/1960,REC,Cadre administratif et commercial d'entreprise,Non,M,BELLINI,Pierre,28/05/2003,Non +75,Paris,17,17ème circonscription,1,154,M,YAFFA,Mams,01/01/1976,ECO,Profession libérale,Non,F,CHAOUCHE,Sonia,17/06/1984,Non +75,Paris,17,17ème circonscription,2,107,F,OBONO,Danièle,12/07/1980,NUP,Cadre de la fonction publique,Oui,M,MONGKHOY,Michel,10/11/1987,Non +75,Paris,17,17ème circonscription,3,137,F,FAILLÈS,Béatrice,27/09/1967,RDG,Militaire du contingent,Non,M,NOAH,Christophe,29/11/1949,Non +75,Paris,17,17ème circonscription,4,54,M,AKSAS,Abdellah,06/08/1970,DXG,Ouvrier qualifié de type industriel,Non,M,LE GOFF,Stéphane,19/11/1964,Non +75,Paris,17,17ème circonscription,5,190,F,TÉCHER,Marianna,21/02/1955,RN,Ancien ouvrier,Non,F,FEDOSSOVA,Natalia,09/03/1959,Non +75,Paris,17,17ème circonscription,6,88,F,FALICON,Marie,04/05/2000,REC,Employé administratif d'entreprise,Non,M,MEYER,Adrien,12/10/1991,Non +75,Paris,17,17ème circonscription,7,158,M,HADBI,Youcef,31/12/1957,DIV,Ingénieur et cadre technique d'entreprise,Non,M,SAUTON,Claude,08/01/1948,Non +75,Paris,17,17ème circonscription,8,221,M,FIQUET,Clement,05/08/1996,DIV,Cadre administratif et commercial d'entreprise,Non,M,MORSHED,Magdy,17/03/1996,Non +75,Paris,17,17ème circonscription,9,155,M,SIGLER,Pierre,12/04/1981,ECO,"Profession de l'information, des arts et des spectacles",Non,F,VELTÉ,Sarah,10/06/1986,Non +75,Paris,17,17ème circonscription,10,25,F,MICHEL,Angélique,07/10/1971,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,ABORDJEL,Stéphan,24/06/1971,Non +75,Paris,17,17ème circonscription,11,203,M,BACHIR,Mohamed,28/09/1975,DIV,Commerçant et assimilé,Non,M,BENAMAR,Salima,12/04/1989,Non +75,Paris,17,17ème circonscription,12,119,F,BÉNIÉ,Kolia,02/10/1984,ENS,Cadre de la fonction publique,Non,M,MONCOMBLE,Mathieu,13/11/1986,Non +75,Paris,17,17ème circonscription,13,201,F,CLEMENT,Annie,04/11/1960,DVD,Cadre administratif et commercial d'entreprise,Non,M,SENBEL,Abdel,27/12/1960,Non +75,Paris,17,17ème circonscription,14,181,F,LARGUECH,Siwar,21/10/1976,DVG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,WHITNEY,Anthony,26/10/1974,Non +75,Paris,18,18ème circonscription,1,195,M,LEININGER,Johannes Christoph,16/09/1990,DIV,Cadre administratif et commercial d'entreprise,Non,F,FABIOLA,Fabiola,03/06/1986,Non +75,Paris,18,18ème circonscription,2,81,M,BOURNAZEL,Pierre-Yves,31/08/1977,ENS,Cadre administratif et commercial d'entreprise,Oui,F,BORISSOVA-EBRAHIM,Carmen,26/09/1994,Non +75,Paris,18,18ème circonscription,3,105,F,CARRASCO,Julia,23/05/1982,RN,Technicien,Non,F,MORIGAUD,Christiane,23/04/1955,Non +75,Paris,18,18ème circonscription,4,157,F,LE GAL DE KERANGAL,Axelle,03/10/1995,REC,Ancien cadre,Non,M,ZAJDERMAN,Frédéric,25/05/1972,Non +75,Paris,18,18ème circonscription,5,199,M,BOULA,Laurent,28/05/1961,DVD,Profession libérale,Non,F,LECLERC,Sonia,17/10/1970,Non +75,Paris,18,18ème circonscription,6,61,M,CAMBOURAKIS,Philippe Heracles Charles,10/02/1965,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LABAT,Didier,01/12/1967,Non +75,Paris,18,18ème circonscription,7,145,M,RAVAILHE,Nicolas,03/06/1969,DVG,"Professeur, profession scientifique",Non,M,MORANE,Ivan,31/10/1956,Non +75,Paris,18,18ème circonscription,8,206,M,LE,Victor,30/10/1973,DIV,"Profession de l'information, des arts et des spectacles",Non,F,BOUCHER,Flavie Boucher,21/12/1989,Non +75,Paris,18,18ème circonscription,9,117,F,BOUBAULT,Annie,01/12/1966,DXG,Employé civil et agent de service de la fonction publique,Non,M,GUETTÉ,Pascal,09/08/1956,Non +75,Paris,18,18ème circonscription,10,28,M,ELYASNI,Marc,23/08/1979,DIV,"Contremaître, agent de maîtrise",Non,F,PICCHIRALLO,Céline,04/01/1982,Non +75,Paris,18,18ème circonscription,11,156,M,GRANIER,Rudolph,20/06/1979,LR,Profession libérale,Non,F,HAMMAL,Djamila,12/09/1963,Non +75,Paris,18,18ème circonscription,12,109,M,CARON,Aymeric,04/12/1971,NUP,"Profession de l'information, des arts et des spectacles",Non,F,DIETHELM,Victoire,04/04/1992,Non +76,Seine-Maritime,01,1ère circonscription,1,79,M,BESSON,Pierre-Alexandre,20/09/1971,ECO,Profession libérale,Non,F,SIRGO,Marianne,12/07/1979,Non +76,Seine-Maritime,01,1ère circonscription,2,60,F,VITARD,Céline,05/03/1980,DXG,"Professeur, profession scientifique",Non,M,ZERROUALI,Morad,15/05/1977,Non +76,Seine-Maritime,01,1ère circonscription,3,83,M,VACQUER,Richard,26/12/1982,DVG,"Contremaître, agent de maîtrise",Non,M,SAINT-ÉTIENNE,Aymeric,15/09/1974,Non +76,Seine-Maritime,01,1ère circonscription,4,39,M,GUESDON,Pierre-Alexandre,05/01/1984,DIV,Employé civil et agent de service de la fonction publique,Non,M,DIEULLE,Loïc,08/08/1987,Non +76,Seine-Maritime,01,1ère circonscription,5,35,F,CROSNIER,Mélanie,03/11/1995,RN,Ouvrier non qualifié de type industriel,Non,M,HELDEBAUME,Thibault,19/07/1995,Non +76,Seine-Maritime,01,1ère circonscription,6,71,F,ROUX,Marie-Hélène,13/01/1965,LR,Cadre de la fonction publique,Non,M,VION,François,05/10/1967,Non +76,Seine-Maritime,01,1ère circonscription,7,37,M,DA SILVA,Maxime,23/06/1993,NUP,Profession intermédiaire administrative de la fonction publique,Non,F,NICQ-CROIZAT,Sylvie,24/06/1964,Non +76,Seine-Maritime,01,1ère circonscription,8,64,F,DE CINTRÉ,Christine,24/06/1979,DVG,Profession libérale,Non,M,DUCHAUSSOY,Vincent,13/06/1986,Non +76,Seine-Maritime,01,1ère circonscription,9,81,M,ADAM,Damien,28/06/1989,ENS,Cadre administratif et commercial d'entreprise,Oui,F,MOTTET,Delphine,30/12/1971,Non +76,Seine-Maritime,01,1ère circonscription,10,2,F,FOISSEY,Valérie,13/03/1969,DXG,Employé civil et agent de service de la fonction publique,Non,M,LAMY,Joël,16/02/1956,Non +76,Seine-Maritime,01,1ère circonscription,11,19,M,CLELAND,Olivier,12/12/1966,REC,Agriculteur sur moyenne exploitation,Non,M,BARELLE,Romain,13/11/1989,Non +76,Seine-Maritime,02,2ème circonscription,1,3,M,GARAULT,Jean-Claude,26/06/1956,DXG,Ancien ouvrier,Non,F,TORRE,Christelle,23/10/1964,Non +76,Seine-Maritime,02,2ème circonscription,2,36,M,HOLINGUE,Bastien,29/09/2001,RN,Employé civil et agent de service de la fonction publique,Non,F,RACHEDI,Malika,30/06/1967,Non +76,Seine-Maritime,02,2ème circonscription,3,89,M,DUVAL,Sébastien,23/07/1975,NUP,Cadre administratif et commercial d'entreprise,Non,F,AURÉGAN,Véronique,05/07/1962,Non +76,Seine-Maritime,02,2ème circonscription,4,13,M,LE BAY,Dorian,26/06/1992,DIV,Cadre administratif et commercial d'entreprise,Non,F,DELCROS,Gwenaëlle,14/11/1980,Non +76,Seine-Maritime,02,2ème circonscription,5,61,F,DEPITRE,Catherine,17/08/1952,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,BLAVETTE,Guillaume,23/11/1971,Non +76,Seine-Maritime,02,2ème circonscription,6,38,F,VIDAL,Annie,17/09/1956,ENS,Ancien cadre,Oui,M,BOURGUIGNON,Alban,31/03/1994,Non +76,Seine-Maritime,02,2ème circonscription,7,18,M,BRIQUET,Maxence,17/02/2000,REC,Cadre administratif et commercial d'entreprise,Non,F,BADJI,Laura,20/03/1982,Non +76,Seine-Maritime,02,2ème circonscription,8,93,F,LETORT,Nathalie,18/02/1971,DSV,Employé administratif d'entreprise,Non,M,LÉCUYER,Rémy,20/12/1956,Non +76,Seine-Maritime,02,2ème circonscription,9,53,M,HORCHOLLE,Jody,01/06/1972,DVC,"Professeur des écoles, instituteur et assimilé",Non,F,BEN SALEM,Noura,26/12/1977,Non +76,Seine-Maritime,02,2ème circonscription,10,73,M,HADDAD,Jonas,14/12/1987,LR,Profession libérale,Non,F,GOULAY,Sabrina,03/03/1979,Non +76,Seine-Maritime,03,3ème circonscription,1,58,M,WULFRANC,Hubert,17/12/1956,NUP,"Professeur, profession scientifique",Oui,M,BÉNARD,Édouard,18/02/1995,Non +76,Seine-Maritime,03,3ème circonscription,2,11,M,LE MANACH,Pascal,11/09/1966,DXG,Ouvrier qualifié de type industriel,Non,F,LOPEZ-MAESTRE,Hélène,29/05/1990,Non +76,Seine-Maritime,03,3ème circonscription,3,65,M,HUET DE BARROS,Nicolas,19/03/1984,DIV,Technicien,Non,F,PAIN,Stella,25/02/1987,Non +76,Seine-Maritime,03,3ème circonscription,4,78,F,TESSIER,Salomée,11/05/1988,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,PERRIER,Thierry,26/04/1967,Non +76,Seine-Maritime,03,3ème circonscription,5,14,F,GERDAY,Delphine,08/04/1966,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GERDAY,Maryne,18/03/1995,Non +76,Seine-Maritime,03,3ème circonscription,6,63,F,OSSIBI,Letycia,22/08/1978,ENS,Profession intermédiaire administrative et commerciale des entreprises,Non,M,BOISSIÈRE,Maxime,31/05/1984,Non +76,Seine-Maritime,03,3ème circonscription,7,46,M,CHEKHEMANI,Kader,18/07/1971,DVG,Cadre de la fonction publique,Non,F,GOUJON,Charlotte,12/01/1983,Non +76,Seine-Maritime,03,3ème circonscription,8,45,F,BOURDET,Clémence,24/08/2000,REC,"Elève, étudiant",Non,M,BROCARD,Damien,06/02/2003,Non +76,Seine-Maritime,03,3ème circonscription,9,59,M,CHABERT,Patrick,02/11/1955,DVD,Profession libérale,Non,F,DELBOS,Evelyne,16/02/1966,Non +76,Seine-Maritime,03,3ème circonscription,10,57,M,VASSEUR,Tony,30/01/1971,DSV,Chauffeur,Non,F,CATTANEO,Isabelle,05/01/1975,Non +76,Seine-Maritime,03,3ème circonscription,11,87,F,EL ATRASSI,Ouarda,25/09/1968,DIV,Employé de commerce,Non,M,CHAOU,Mohamed,15/08/1996,Non +76,Seine-Maritime,04,4ème circonscription,1,23,F,JEZEQUEL,Jennifer,23/03/1978,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LAIGNIEZ,Romain,19/01/1989,Non +76,Seine-Maritime,04,4ème circonscription,2,75,F,DUFOUR,Alma,06/05/1990,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BRUNEAU,Olivier,25/09/1977,Non +76,Seine-Maritime,04,4ème circonscription,3,42,M,MERABET,Djoudé,23/09/1974,DVG,Profession intermédiaire de la santé et du travail social,Non,F,GUILLEMIN,Barbara,06/04/1977,Non +76,Seine-Maritime,04,4ème circonscription,4,47,M,PENNELLE,Guillaume,19/02/1975,RN,"Professeur, profession scientifique",Non,M,FINOT,Jimmy,05/06/1993,Non +76,Seine-Maritime,04,4ème circonscription,5,101,M,ROUSSEL,Olivier,21/12/1979,DVD,Commerçant et assimilé,Non,F,ANDRÉ,Coralie,19/03/1999,Non +76,Seine-Maritime,04,4ème circonscription,6,85,M,PORET,Michaël,08/02/1975,DIV,Ouvrier qualifié de type industriel,Non,M,AUGER,Roger,03/08/1930,Non +76,Seine-Maritime,04,4ème circonscription,7,86,F,SYLLA,Sira,14/03/1980,ENS,Profession libérale,Oui,M,ROGUEZ,Yves,18/09/1975,Non +76,Seine-Maritime,04,4ème circonscription,8,40,F,FROGER,Eve,25/10/1996,REC,Employé de commerce,Non,M,BAY,Nicolas,21/12/1977,Non +76,Seine-Maritime,04,4ème circonscription,9,16,M,PODGUSZER,Frédéric,04/01/1964,DXG,Ouvrier qualifié de type industriel,Non,F,RÉTHORÉ,Laurence,16/01/1961,Non +76,Seine-Maritime,05,5ème circonscription,1,74,M,LESEUL,Gérard,15/08/1960,NUP,Cadre administratif et commercial d'entreprise,Oui,F,DÉCHAMPS,Christine,22/01/1963,Non +76,Seine-Maritime,05,5ème circonscription,2,48,M,DELALANDRE,Jean,05/06/1982,ENS,Cadre administratif et commercial d'entreprise,Non,M,QUESNE,Fabien,22/12/1979,Non +76,Seine-Maritime,05,5ème circonscription,3,4,M,SULKOWSKI,Simon,11/10/1956,DXG,Ancienne profession intermédiaire,Non,F,POTEL,Catherine,20/03/1953,Non +76,Seine-Maritime,05,5ème circonscription,4,66,M,LEFAUX,Eddy,28/05/1990,LR,Profession libérale,Non,F,LASNEZ,Dominique,28/10/1948,Non +76,Seine-Maritime,05,5ème circonscription,5,28,M,MONTIER,Jean-Cyril,03/05/1989,RN,Ouvrier qualifié de type artisanal,Non,M,DAVID,Jean-Paul,24/01/1961,Non +76,Seine-Maritime,05,5ème circonscription,6,10,M,GUILLOTTE,Alain,23/03/1946,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,F,TAILLIS RACINE,Claudine,20/11/1950,Non +76,Seine-Maritime,05,5ème circonscription,7,68,M,MAZIER,Frédéric,09/06/1964,REC,Cadre de la fonction publique,Non,F,COCQUEBERT,Anne-Sophie,30/07/1987,Non +76,Seine-Maritime,06,6ème circonscription,1,9,F,SPRIET,Nathalie,01/08/1959,ECO,Ancien employé,Non,F,RACOIS,Brigitte,22/11/1949,Non +76,Seine-Maritime,06,6ème circonscription,2,21,M,MARTIN,Patrice,13/09/1963,RN,Agriculteur sur moyenne exploitation,Non,M,PERRIER,Alexis,06/04/1996,Non +76,Seine-Maritime,06,6ème circonscription,3,41,M,JUMEL,Sébastien,20/12/1971,NUP,Cadre de la fonction publique,Oui,M,JACQUES,Laurent,17/08/1968,Non +76,Seine-Maritime,06,6ème circonscription,4,70,F,BROUTTÉ,Lisa,20/03/1995,ENS,Cadre de la fonction publique,Non,M,MALLET,Emmanuel,07/09/1970,Non +76,Seine-Maritime,06,6ème circonscription,5,100,M,ARTHUS,Florentin,07/05/1981,ECO,Commerçant et assimilé,Non,M,BRETOUT,Yann,30/04/1978,Non +76,Seine-Maritime,06,6ème circonscription,6,77,M,LEDUC,François,07/04/1956,UDI,Profession libérale,Non,M,BOUCHIER,Aurélien,20/10/1976,Non +76,Seine-Maritime,06,6ème circonscription,7,90,M,THÉRON,Renaud,27/06/1958,DVC,Profession libérale,Non,M,MOUGGAS,Zinedine,23/11/1989,Non +76,Seine-Maritime,06,6ème circonscription,8,26,F,COPPIN,Claire,04/07/1978,REC,"Professeur, profession scientifique",Non,M,DE LA CELLE,Cédric,13/04/1978,Non +76,Seine-Maritime,06,6ème circonscription,9,80,M,DEVOGELAERE,Robin,31/05/1973,DVD,Cadre de la fonction publique,Non,F,DUNET,Alexandra,18/01/1975,Non +76,Seine-Maritime,06,6ème circonscription,10,15,F,PETITEVILLE,Michelle,09/09/1951,DXG,Ancien employé,Non,M,MOISAN,Éric,19/07/1972,Non +76,Seine-Maritime,07,7ème circonscription,1,44,F,DUBOC,Nancy,15/03/1973,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,QUERON,Jean-François,22/05/1958,Non +76,Seine-Maritime,07,7ème circonscription,2,55,F,LARUE,Brigitte,20/02/1966,DSV,Employé administratif d'entreprise,Non,F,HEDOUIN,Patricia,16/11/1957,Non +76,Seine-Maritime,07,7ème circonscription,3,99,F,LELIÈVRE,Caroline,26/09/1973,DSV,Profession libérale,Non,F,TARLET,Eléonore,18/05/1973,Non +76,Seine-Maritime,07,7ème circonscription,4,97,M,DECK,Alexis,04/03/1976,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,BEAUFILS,Odile,01/10/1956,Non +76,Seine-Maritime,07,7ème circonscription,5,50,F,COUFOURIER,Lauriane,30/01/1992,DVG,Employé administratif d'entreprise,Non,F,OMONT,Catherine,27/11/1958,Non +76,Seine-Maritime,07,7ème circonscription,6,76,M,FORESTIER,Jacques,28/05/1965,LR,Profession libérale,Non,F,LEFEBVRE,Anne-Sophie,26/02/1977,Non +76,Seine-Maritime,07,7ème circonscription,7,12,F,DENIS,Camille,03/05/1990,DXG,"Professeur, profession scientifique",Non,M,ALLART,Jean-Christophe,30/11/1965,Non +76,Seine-Maritime,07,7ème circonscription,8,98,F,PRUNIER,Virginie,13/11/1978,DIV,Cadre de la fonction publique,Non,M,LE BARBÉ,Gaëtan,21/09/1991,Non +76,Seine-Maritime,07,7ème circonscription,9,43,M,MOUHANNA,Marc,17/01/1983,DXG,"Professeur, profession scientifique",Non,F,EUDIER-NIEL,Luce,21/08/1941,Non +76,Seine-Maritime,07,7ème circonscription,10,91,F,DELESTRE,Lucie,15/01/1985,RN,Personnel des services directs aux particuliers,Non,M,MAHEU,Bruno,15/11/1963,Non +76,Seine-Maritime,07,7ème circonscription,11,94,F,FIRMIN LE BODO,Agnès,20/11/1968,ENS,Profession libérale,Oui,F,CAREL,Agnès,09/06/1968,Non +76,Seine-Maritime,07,7ème circonscription,12,5,F,CANEL-DEPITRE,Béatrice,30/10/1954,ECO,Ancienne profession intermédiaire,Non,F,LEBLOND,Élisabeth,22/05/1954,Non +76,Seine-Maritime,07,7ème circonscription,13,8,M,GROUSSARD,Frédéric,02/08/1970,REC,"Contremaître, agent de maîtrise",Non,F,ALEXANDRE,Julie,13/11/2002,Non +76,Seine-Maritime,08,8ème circonscription,1,52,M,LECOQ,Jean-Paul,13/10/1958,NUP,Technicien,Oui,F,NAIL,Nathalie,30/01/1969,Non +76,Seine-Maritime,08,8ème circonscription,2,22,F,LE COZ,Isabelle,16/04/1972,RN,Profession libérale,Non,M,GIBOURDEL,Yannick,17/04/1957,Non +76,Seine-Maritime,08,8ème circonscription,3,6,F,CAUCHOIS,Magali,06/01/1970,DXG,"Professeur, profession scientifique",Non,M,LEVASTRE,Gérald,31/12/1953,Non +76,Seine-Maritime,08,8ème circonscription,4,88,M,ECHCHENNA,Wasil,10/01/1986,ENS,"Professeur, profession scientifique",Non,M,ROMAIN,Jacques,08/08/1947,Non +76,Seine-Maritime,08,8ème circonscription,5,51,M,LEPRÊTRE,Tony,07/04/1987,DSV,Ouvrier non qualifié de type industriel,Non,F,ENOCQ,Camille,08/05/1988,Non +76,Seine-Maritime,08,8ème circonscription,6,54,M,LEGENDRE,Joachim,04/03/1987,ECO,Employé administratif d'entreprise,Non,F,DUFRESNE,Élodie,17/07/1988,Non +76,Seine-Maritime,08,8ème circonscription,7,20,F,DUCOEURJOLY,Isabelle,11/03/1975,REC,Employé civil et agent de service de la fonction publique,Non,M,LE COZ,Pierre,15/04/1994,Non +76,Seine-Maritime,09,9ème circonscription,1,96,M,BLED,Jean Marc,06/09/1967,REC,Ingénieur et cadre technique d'entreprise,Non,F,BOUILLE,Armelle,17/06/1966,Non +76,Seine-Maritime,09,9ème circonscription,2,82,M,BALIER,Victor,19/04/1991,LR,Ouvrier qualifié de type industriel,Non,F,STIL,Carole,29/11/1971,Non +76,Seine-Maritime,09,9ème circonscription,3,7,M,MACÉ,Jean-Paul,05/10/1955,DXG,Ancien ouvrier,Non,F,GENETTE,Géraldine,28/10/1992,Non +76,Seine-Maritime,09,9ème circonscription,4,95,M,BUCOURT,Patrick,15/10/1954,DSV,Ancien cadre,Non,M,VARIN,Pierre,16/03/1956,Non +76,Seine-Maritime,09,9ème circonscription,5,33,F,POUSSIER-WINSBACK,Marie-Agnès,25/03/1967,ENS,"Professeur des écoles, instituteur et assimilé",Non,M,GUÉRIN,David,09/01/1966,Non +76,Seine-Maritime,09,9ème circonscription,6,34,F,FOUANI,Stéphanie,11/05/1971,NUP,Employé administratif d'entreprise,Non,F,BOUTEILLAN,Christine,08/04/1963,Non +76,Seine-Maritime,09,9ème circonscription,7,49,M,GOURY,Nicolas,07/09/1985,RN,Employé civil et agent de service de la fonction publique,Non,M,LEBRETON,Gilles,11/10/1958,Non +76,Seine-Maritime,09,9ème circonscription,8,69,M,FOURNIER,Victor,08/12/2000,DVC,"Elève, étudiant",Non,M,VANDERMEERSCH,Aldric,15/06/1982,Non +76,Seine-Maritime,09,9ème circonscription,9,17,F,BETEMPS FOLAIN,Annabelle,22/04/1973,DVD,Employé de commerce,Non,M,MICHEL,Bruno,22/06/1959,Non +76,Seine-Maritime,09,9ème circonscription,10,56,M,BARON,Mickaël,22/08/1973,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,HAUTOT-MOUGNE,Anne-Dominique,07/12/1969,Non +76,Seine-Maritime,09,9ème circonscription,11,84,F,SERVAIS,Carole,04/01/1969,ECO,Profession intermédiaire de la santé et du travail social,Non,F,ALLAIN,Gaëlle,13/03/1976,Non +76,Seine-Maritime,09,9ème circonscription,12,31,F,KERBARH,Stéphanie,31/07/1975,DVC,Profession libérale,Oui,M,PAQUIN,François,14/04/1977,Non +76,Seine-Maritime,10,10ème circonscription,1,72,F,BÉRÉGOVOY,Véronique,16/08/1967,NUP,Cadre de la fonction publique,Non,M,MOUILLARD,Arnaud,03/06/1980,Non +76,Seine-Maritime,10,10ème circonscription,2,32,F,BAUDET,Véronique,23/10/1959,DSV,Artisan,Non,M,BISSON,Joël,31/10/1960,Non +76,Seine-Maritime,10,10ème circonscription,3,24,M,CRAMBES,Nicolas,01/10/1992,DXG,"Professeur, profession scientifique",Non,F,HOUISSE,Brigitte,27/06/1956,Non +76,Seine-Maritime,10,10ème circonscription,4,92,F,KÉRADEC-DUJARDIN,Pascale,20/07/1959,DVD,"Professeur, profession scientifique",Non,F,DUTEURTRE,Albane,24/09/1989,Non +76,Seine-Maritime,10,10ème circonscription,5,25,M,DUMAS,Nicolas,12/04/1997,REC,Employé civil et agent de service de la fonction publique,Non,F,BLONDEL,Stacy,19/05/1994,Non +76,Seine-Maritime,10,10ème circonscription,6,62,M,BATUT,Xavier,26/12/1976,ENS,Cadre administratif et commercial d'entreprise,Oui,F,LAMBARD,Stéphanie,03/03/1974,Non +76,Seine-Maritime,10,10ème circonscription,7,29,F,LERCIER,Marine,09/04/1991,ECO,"Elève, étudiant",Non,F,MASSÉ,Ophélie,09/06/1983,Non +76,Seine-Maritime,10,10ème circonscription,8,27,F,THOMAS,Anaïs,15/11/1994,RN,Employé de commerce,Non,M,BONNET,Yves,20/11/1935,Non +76,Seine-Maritime,10,10ème circonscription,9,30,M,HUVEY,Jérôme,08/03/1969,DIV,Profession libérale,Non,F,DAS,Françoise,05/02/1957,Non +77,Seine-et-Marne,01,1ère circonscription,1,34,M,JULLEMIER,Denis,18/11/1968,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,CHAGNAT,Véronique,31/01/1974,Non +77,Seine-et-Marne,01,1ère circonscription,2,101,F,BRANDY,Jeannine,11/09/1952,REC,Profession libérale,Non,M,VILETTE,Julien,14/01/1992,Non +77,Seine-et-Marne,01,1ère circonscription,3,35,F,SAUGET,Caroline,07/10/1971,ECO,Cadre de la fonction publique,Non,F,VOTTERO,Béatrice,19/05/1962,Non +77,Seine-et-Marne,01,1ère circonscription,4,108,M,MAHBOULI,Fadhel,18/09/1948,ECO,"Profession de l'information, des arts et des spectacles",Non,F,SAHARI,Célia,02/07/1977,Non +77,Seine-et-Marne,01,1ère circonscription,5,59,F,PUZIN,Morgane,16/12/1978,DSV,Personnel des services directs aux particuliers,Non,M,LE MOULNIER,Julien,01/11/1980,Non +77,Seine-et-Marne,01,1ère circonscription,6,95,F,LUQUET,Aude,18/08/1967,ENS,Cadre de la fonction publique,Oui,M,VAUTIER,Anthony,21/01/1976,Non +77,Seine-et-Marne,01,1ère circonscription,7,67,M,DELVERT,Patrick,20/04/1961,DXG,Ancien cadre,Non,F,BODIN,Monique,07/01/1957,Non +77,Seine-et-Marne,01,1ère circonscription,8,48,M,GUERRIER,Jean-Louis,10/12/1952,DXG,Ancien cadre,Non,M,BOISSELLE,Bertrand,15/01/1977,Non +77,Seine-et-Marne,01,1ère circonscription,9,120,F,SIDHOUM,Samira,27/03/1973,DIV,Cadre administratif et commercial d'entreprise,Non,M,BEDDIAR,Nordine,07/10/1976,Non +77,Seine-et-Marne,01,1ère circonscription,10,40,M,SAINT-MARTIN,Arnaud,25/01/1979,NUP,"Professeur, profession scientifique",Non,F,CUNY,Armelle,28/01/1976,Non +77,Seine-et-Marne,01,1ère circonscription,11,106,M,ZANIFÉ,Dawé,17/07/1962,ECO,Cadre de la fonction publique,Non,M,HARLÉ,Éric,13/10/1962,Non +77,Seine-et-Marne,01,1ère circonscription,12,3,M,PARADOL,François,27/09/1987,RN,Profession intermédiaire administrative de la fonction publique,Non,M,SOUSA,Joaquim,01/11/1999,Non +77,Seine-et-Marne,02,2ème circonscription,1,69,M,ROUSSELLE,Loïc,25/12/1970,ECO,"Professeur, profession scientifique",Non,F,FOURNIER,Françoise,05/06/1959,Non +77,Seine-et-Marne,02,2ème circonscription,2,17,M,CAZAURAN,Guillaume,24/07/1958,REC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,SVATEK,Paule,23/12/1961,Non +77,Seine-et-Marne,02,2ème circonscription,3,87,F,MOLINA,Marie-Pierre,26/03/1975,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,PLOUZEAU,Bruno,29/06/1963,Non +77,Seine-et-Marne,02,2ème circonscription,4,5,F,DIMITROVA,Ivanka,13/03/1959,RN,Profession intermédiaire administrative de la fonction publique,Non,M,GARNIER,Armel,13/04/1978,Non +77,Seine-et-Marne,02,2ème circonscription,5,18,M,DELALANDE,Franck,24/06/1971,ECO,Technicien,Non,F,JOSSE,Sophie,21/10/1969,Non +77,Seine-et-Marne,02,2ème circonscription,6,76,M,VALLETOUX,Frédéric,23/08/1966,ENS,"Profession de l'information, des arts et des spectacles",Non,F,VILGRAIN,Juliette,07/05/1960,Non +77,Seine-et-Marne,02,2ème circonscription,7,42,F,FAURY,Stéphanie,09/05/1973,DXG,Profession intermédiaire de la santé et du travail social,Non,M,RISACHER,Michel,05/01/1957,Non +77,Seine-et-Marne,02,2ème circonscription,8,84,F,GARREAU,Isoline,15/10/1984,LR,Employé administratif d'entreprise,Non,M,GOUHOURY,Pascal,24/04/1968,Non +77,Seine-et-Marne,02,2ème circonscription,9,97,M,CASTELLAN,Laurent,24/05/1975,DSV,Cadre administratif et commercial d'entreprise,Non,F,DUROCHER,Marie-Elisabeth,21/03/1958,Non +77,Seine-et-Marne,02,2ème circonscription,10,4,F,BROCH,Élodie,13/03/1972,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,GENNETIER,Fabien,31/08/1971,Non +77,Seine-et-Marne,02,2ème circonscription,11,116,F,PAPIN,Sandrine,10/02/1975,DIV,Cadre administratif et commercial d'entreprise,Non,M,JESSA-FERRÉ,Philippe,15/01/1968,Non +77,Seine-et-Marne,03,3ème circonscription,1,19,F,GARDEL,Laëtitia,14/03/1973,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,NEVES,Carlos,27/12/1960,Non +77,Seine-et-Marne,03,3ème circonscription,2,104,M,SEPTIERS,Patrick,07/10/1954,DVC,Ancienne profession intermédiaire,Non,M,BOUTILLIER,Bernard,22/05/1958,Non +77,Seine-et-Marne,03,3ème circonscription,3,105,M,THIÉRIOT,Jean-Louis,26/06/1969,LR,Profession libérale,Oui,M,MOMON,Alain,12/08/1958,Non +77,Seine-et-Marne,03,3ème circonscription,4,121,F,BENKABA,Maïssane,29/01/1995,DIV,Employé de commerce,Non,M,KACEM,Abdellah,08/09/1965,Non +77,Seine-et-Marne,03,3ème circonscription,5,38,F,GÉRÔME-DELGADO,Elodie,25/01/1985,NUP,Cadre administratif et commercial d'entreprise,Non,M,MOREL,Yannick,01/11/1971,Non +77,Seine-et-Marne,03,3ème circonscription,6,15,M,THÉOT,Olivier,01/11/1981,DVG,"Professeur, profession scientifique",Non,F,PASQUET,Hélène,04/04/2001,Non +77,Seine-et-Marne,03,3ème circonscription,7,111,F,LEGUILLON,Camille,03/11/1986,ECO,Cadre administratif et commercial d'entreprise,Non,F,ANFRAY,Adeline,06/12/1980,Non +77,Seine-et-Marne,03,3ème circonscription,8,99,F,BACAR,Amina,23/02/1981,DVG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,TOURNIER,Cyril,14/02/1969,Non +77,Seine-et-Marne,03,3ème circonscription,9,6,M,LIORET,Dominique,11/10/1954,RN,Ancien cadre,Non,F,RODDES,Elisa,23/11/1997,Non +77,Seine-et-Marne,03,3ème circonscription,10,70,F,COUPÉ,Valérie,11/12/1964,DXG,Employé administratif d'entreprise,Non,M,AUCOUTURIER,Alain,23/05/1950,Non +77,Seine-et-Marne,03,3ème circonscription,11,27,M,MALLET,Xavier,15/07/1984,REC,Policier et militaire,Non,F,JOANNESSE,Léa Marie,26/06/2003,Non +77,Seine-et-Marne,03,3ème circonscription,12,113,F,NOMELLINI,Elisa,03/12/1999,REG,"Elève, étudiant",Non,F,ASHCROFT,Ella,14/08/1999,Non +77,Seine-et-Marne,03,3ème circonscription,13,30,F,VAN CAUTEREN,Catherine,21/03/1964,DXG,Ouvrier qualifié de type industriel,Non,M,STEINMESSE,Rambert,01/12/1988,Non +77,Seine-et-Marne,04,4ème circonscription,1,33,F,COTTIN,Françoise,05/03/1954,DXG,Ancien cadre,Non,M,SENOTIER,Michel,30/09/1949,Non +77,Seine-et-Marne,04,4ème circonscription,2,41,F,CHABRAND,Cécile,04/02/1986,DSV,Profession libérale,Non,M,PADOVANI,Pierre-Antoine,04/12/1991,Non +77,Seine-et-Marne,04,4ème circonscription,3,90,F,MERZOUD-AISSAOUI,Djamila,09/11/1963,RDG,Employé civil et agent de service de la fonction publique,Non,M,ASSEZ,Pierre,11/04/1950,Non +77,Seine-et-Marne,04,4ème circonscription,4,71,F,PERIGAULT,Isabelle,04/09/1971,LR,Cadre de la fonction publique,Non,M,JACOB,Christian,04/12/1959,Oui +77,Seine-et-Marne,04,4ème circonscription,5,11,M,VENANT,Frederic,07/02/1968,REC,"Profession de l'information, des arts et des spectacles",Non,M,SERRENTINO,Lucas,21/12/1993,Non +77,Seine-et-Marne,04,4ème circonscription,6,109,F,ROUSSET,Audrey Roseline,24/09/1982,DVD,Ouvrier qualifié de type industriel,Non,M,BILLIEMAZ,Matthieu Pierre Henry,19/02/1968,Non +77,Seine-et-Marne,04,4ème circonscription,7,118,M,DELVAUX,Jean-Philippe,04/03/1972,ENS,Cadre de la fonction publique,Non,F,FAVIER,Isabelle,02/05/1964,Non +77,Seine-et-Marne,04,4ème circonscription,8,43,M,DUROX,Aymeric,06/08/1985,RN,"Professeur des écoles, instituteur et assimilé",Non,M,ABDILLA,Jean-Marie,10/05/1956,Non +77,Seine-et-Marne,04,4ème circonscription,9,24,M,GAUDEY,Jean-Yves,07/06/1964,DXG,"Professeur, profession scientifique",Non,M,DENIS,Bernard,31/08/1962,Non +77,Seine-et-Marne,04,4ème circonscription,10,100,M,GARNIER,Mathieu,14/08/1984,NUP,Profession libérale,Non,F,BARTHE-VIGIER,Céline,27/10/1972,Non +77,Seine-et-Marne,04,4ème circonscription,11,23,F,HUOT,Gabrielle,26/10/1980,ECO,Employé administratif d'entreprise,Non,M,ECK,Sébastien,05/09/1981,Non +77,Seine-et-Marne,05,5ème circonscription,1,64,M,JUDAS,Gurvan,22/04/2000,DVG,"Elève, étudiant",Non,M,CHARPENTIER,David,22/12/1974,Non +77,Seine-et-Marne,05,5ème circonscription,2,10,M,LENORMAND,François,04/02/1951,RN,Profession libérale,Non,F,YAIGRE,Claire,16/11/2000,Non +77,Seine-et-Marne,05,5ème circonscription,3,103,M,RIESTER,Franck,03/01/1974,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,LEMOINE,Patricia,30/12/1961,Oui +77,Seine-et-Marne,05,5ème circonscription,4,46,M,QUENOT,Pascal,14/12/1959,DXG,Ancien ouvrier,Non,M,HARIVEL,Patrice,27/06/1965,Non +77,Seine-et-Marne,05,5ème circonscription,5,91,M,NOIREZ,Éric,02/02/1977,DSV,Employé civil et agent de service de la fonction publique,Non,M,THÉVENOT,François,08/03/1977,Non +77,Seine-et-Marne,05,5ème circonscription,6,82,M,LEMOINE,Jacques,16/09/1978,DVD,Ingénieur et cadre technique d'entreprise,Non,M,DUGUÉ,Denis,12/01/1976,Non +77,Seine-et-Marne,05,5ème circonscription,7,36,M,ASPRO,Jean-Michel,09/02/1961,REC,Profession libérale,Non,M,URDIALES,Daniel,08/07/1988,Non +77,Seine-et-Marne,05,5ème circonscription,8,115,F,LAJOYE,Eléonore,29/06/1996,ECO,Cadre administratif et commercial d'entreprise,Non,F,JOLY,Muriel,08/02/1965,Non +77,Seine-et-Marne,05,5ème circonscription,9,44,M,CAUX,Nicolas,03/03/1975,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,FLAMENT-BJARSTAL,Véronique,19/04/1965,Non +77,Seine-et-Marne,05,5ème circonscription,10,78,M,COLIN,Cédric,11/02/1991,NUP,"Professeur, profession scientifique",Non,F,COYNE,Julie,22/07/1985,Non +77,Seine-et-Marne,05,5ème circonscription,11,62,F,CHEVALLIER,Marie-Pierre,02/09/1956,ECO,Ancien employé,Non,F,TABACS,Maryvonne,02/02/1958,Non +77,Seine-et-Marne,05,5ème circonscription,12,107,M,DAHMANE,Redouane,19/05/1979,DIV,"Contremaître, agent de maîtrise",Non,F,HAMADI,Yasmine,01/09/1999,Non +77,Seine-et-Marne,06,6ème circonscription,1,37,F,MURCIA,Claire,09/08/1994,REC,Cadre administratif et commercial d'entreprise,Non,M,PALACCI,Clément,12/10/1990,Non +77,Seine-et-Marne,06,6ème circonscription,2,56,F,MEKIDICHE,Fatna,04/06/1965,ENS,Ingénieur et cadre technique d'entreprise,Non,M,ROUGIER,Bruno,18/01/1970,Non +77,Seine-et-Marne,06,6ème circonscription,3,65,M,SALAMONE,Valentin,03/02/1995,DSV,Employé de commerce,Non,F,PRUNELLE,Patricia,26/01/1966,Non +77,Seine-et-Marne,06,6ème circonscription,4,51,F,MOINE,Nathalie,29/05/1977,DVG,Cadre administratif et commercial d'entreprise,Non,M,SOUVERAIN,Martial,13/02/1948,Non +77,Seine-et-Marne,06,6ème circonscription,5,60,F,ROULLAUD,Béatrice,09/06/1960,RN,Profession libérale,Non,M,ROUVELLAT,Alain,22/07/1962,Non +77,Seine-et-Marne,06,6ème circonscription,6,75,F,RIEUPET,Annie,15/11/1952,DXG,Ancien employé,Non,M,ROCHER,Daniel,01/08/1947,Non +77,Seine-et-Marne,06,6ème circonscription,7,88,F,DELAGE,Valérie,04/04/1963,NUP,Personnel des services directs aux particuliers,Non,M,SAVERET,Gilles,06/08/1962,Non +77,Seine-et-Marne,06,6ème circonscription,8,68,F,REZEG,Hamida,09/11/1972,LR,"Professeur des écoles, instituteur et assimilé",Non,M,DEVAUCHELLE,Stéphane,17/01/1966,Non +77,Seine-et-Marne,06,6ème circonscription,9,47,M,KLISARIC,Dragan,30/08/1968,ECO,Commerçant et assimilé,Non,F,METERT,Martine,07/08/1953,Non +77,Seine-et-Marne,07,7ème circonscription,1,73,F,GUILLARD,Laetitia,07/11/1971,ECO,"Contremaître, agent de maîtrise",Non,M,DUMONT,Sébastien,08/04/1982,Non +77,Seine-et-Marne,07,7ème circonscription,2,29,M,JAHIER,Patrick,15/11/1968,LR,Ingénieur et cadre technique d'entreprise,Non,F,BROUET-HUET,Severine,27/05/1973,Non +77,Seine-et-Marne,07,7ème circonscription,3,53,M,KOKOUENDO,Rodrigue,08/03/1974,ENS,Cadre administratif et commercial d'entreprise,Oui,F,AUZIAS,Stéphanie,01/10/1971,Non +77,Seine-et-Marne,07,7ème circonscription,4,49,M,HEMET,Patrice,30/06/1958,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,FISSOUROU,Awa,19/06/2000,Non +77,Seine-et-Marne,07,7ème circonscription,5,57,M,DAILLY,Michel,23/03/1959,DSV,Ancien cadre,Non,F,LHUILLIER,Sandrine,18/03/1968,Non +77,Seine-et-Marne,07,7ème circonscription,6,8,M,BERNARD,Didier,27/08/1957,RN,Ancienne profession intermédiaire,Non,F,NICOLLE,Dorothée,27/11/1964,Non +77,Seine-et-Marne,07,7ème circonscription,7,25,F,FRIJA,Gabrielle,03/07/1979,DXG,"Professeur, profession scientifique",Non,F,WEISS,Catherine,24/07/1958,Non +77,Seine-et-Marne,07,7ème circonscription,8,80,F,SOUDAIS,Ersilia,21/05/1988,NUP,"Professeur, profession scientifique",Non,F,TUTTLE,Cynthia,02/11/1987,Non +77,Seine-et-Marne,07,7ème circonscription,9,112,F,TROUSSARD,Beatrice,21/01/1969,REC,"Professeur, profession scientifique",Non,M,BAYLE,Emilion,09/06/1998,Non +77,Seine-et-Marne,07,7ème circonscription,10,94,F,BAKU MANDEDIBA,Ketty,08/10/1986,DVD,Cadre administratif et commercial d'entreprise,Non,F,HERBELIN,Jennifer,02/10/1986,Non +77,Seine-et-Marne,08,8ème circonscription,1,32,F,MAIRIAUX,Delphine,20/09/1967,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,COLAISSEAU,Olivier,03/11/1970,Non +77,Seine-et-Marne,08,8ème circonscription,2,14,M,RENAULT,Frédéric,19/03/1957,DXG,Technicien,Non,M,DOUCET,Emmanuel,08/03/1968,Non +77,Seine-et-Marne,08,8ème circonscription,3,61,M,DUCHAUSSOY,Bernard,03/02/1968,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,KEBCI,Sophia,15/11/1970,Non +77,Seine-et-Marne,08,8ème circonscription,4,52,M,MEILLET,Kevin,22/05/1989,ECO,Ingénieur et cadre technique d'entreprise,Non,F,MORELLI,Samantha,20/09/1971,Non +77,Seine-et-Marne,08,8ème circonscription,5,9,F,LECUYER,Reine,25/02/1955,RN,Profession intermédiaire de la santé et du travail social,Non,F,ROUX,Flora,30/01/1955,Non +77,Seine-et-Marne,08,8ème circonscription,6,81,M,BONNET,Arnaud,23/02/1977,NUP,"Professeur, profession scientifique",Non,F,JANIAUD-VERGNAUD,Amandine,23/05/1983,Non +77,Seine-et-Marne,08,8ème circonscription,7,63,M,GHOMI,Hadrien,06/04/1989,ENS,Cadre de la fonction publique,Non,M,BOUCHART,François,11/01/1978,Non +77,Seine-et-Marne,08,8ème circonscription,8,102,M,MOSKOWICZ,Jean-Marc,08/07/1958,REC,Ancien cadre,Non,F,MÉRIMÉE,Emmanuelle,19/04/1996,Non +77,Seine-et-Marne,08,8ème circonscription,9,92,M,SANCHEZ,Michaël,18/04/1981,DSV,Commerçant et assimilé,Non,F,PAUL,Gaëlle,28/06/1981,Non +77,Seine-et-Marne,09,9ème circonscription,1,72,M,BUI,Jérôme,11/10/1978,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,CORDIER-GRISON,Margot,30/01/2002,Non +77,Seine-et-Marne,09,9ème circonscription,2,21,M,ROBERT,Pascal,07/10/1963,DSV,Commerçant et assimilé,Non,F,RECCHIA,Alma,20/01/1971,Non +77,Seine-et-Marne,09,9ème circonscription,3,114,M,MORETTI,Pierre,18/02/1998,REG,Ingénieur et cadre technique d'entreprise,Non,M,LEVILLAYER,Timothée,11/08/1993,Non +77,Seine-et-Marne,09,9ème circonscription,4,110,M,TARNIER,Charles,28/09/1994,DVG,Ingénieur et cadre technique d'entreprise,Non,M,DELILLE,Charles-Xavier,11/10/1993,Non +77,Seine-et-Marne,09,9ème circonscription,5,12,F,WOODS,Florence,25/12/1952,DXG,Ancien employé,Non,F,SURGET,Coralie,21/08/1966,Non +77,Seine-et-Marne,09,9ème circonscription,6,13,M,GEOFFROY,Guy,26/05/1949,LR,"Professeur, profession scientifique",Non,F,CHABANON-DEGUELLE,Sophie,02/08/1970,Non +77,Seine-et-Marne,09,9ème circonscription,7,85,F,MAURIZE,Nathalie,03/07/1965,ECO,Ingénieur et cadre technique d'entreprise,Non,F,PILLOUD,Mélanie,18/04/1986,Non +77,Seine-et-Marne,09,9ème circonscription,8,93,M,NOVAIS,Pascal,16/02/1979,NUP,Ingénieur et cadre technique d'entreprise,Non,F,HEUCLIN,Delphine,03/05/1972,Non +77,Seine-et-Marne,09,9ème circonscription,9,28,F,PEYRON,Michèle,22/07/1961,ENS,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,M,MARCELOT,Hugues,05/05/1980,Non +77,Seine-et-Marne,09,9ème circonscription,10,22,M,SIMONPIETRI,Laurent,01/09/1959,ECO,Ingénieur et cadre technique d'entreprise,Non,F,FUSTÉ,Laurence,06/04/1966,Non +77,Seine-et-Marne,09,9ème circonscription,11,45,M,VANACKER,Morgann,06/01/1994,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,DUMONT,Michel,18/05/1977,Non +77,Seine-et-Marne,09,9ème circonscription,12,26,M,DELALANDRE,Bruno-Charles,13/05/1964,REC,Ouvrier qualifié de type artisanal,Non,M,CORNELOUP,Sylvain,13/07/1964,Non +77,Seine-et-Marne,09,9ème circonscription,13,74,M,VALCIN,Kamal,08/06/1979,DIV,Artisan,Non,M,BEASSE,Axel,05/08/1988,Non +77,Seine-et-Marne,10,10ème circonscription,1,77,M,RUGGERI,Vincent,14/09/1980,ECO,Cadre administratif et commercial d'entreprise,Non,F,RICORDEL,Mélanie,25/07/1994,Non +77,Seine-et-Marne,10,10ème circonscription,2,119,M,KSOUROU,Mohammed,10/11/1955,DIV,Artisan,Non,F,DAOUDI,Sophia,01/07/1981,Non +77,Seine-et-Marne,10,10ème circonscription,3,89,M,LAISNEY,Maxime,19/01/1981,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,DE KERPEL,Céline,18/01/1978,Non +77,Seine-et-Marne,10,10ème circonscription,4,96,M,HENNEBELLE,Olivier,11/05/1979,ECO,Profession libérale,Non,F,STOCKER,Martine,09/10/1951,Non +77,Seine-et-Marne,10,10ème circonscription,5,83,M,DERVAUX,Philippe,03/09/1969,REC,Profession intermédiaire administrative de la fonction publique,Non,F,LACOSTE,Christiane,08/01/1954,Non +77,Seine-et-Marne,10,10ème circonscription,6,7,F,FRANCISCO,Cathy,20/11/1973,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,DARAKHSHANFAR,Homan,11/03/1970,Non +77,Seine-et-Marne,10,10ème circonscription,7,58,M,DE SOUSA,Olivier,11/07/1976,DIV,Ingénieur et cadre technique d'entreprise,Non,F,PEREIRA,Cassandra,26/03/2002,Non +77,Seine-et-Marne,10,10ème circonscription,8,86,F,CAILLIS-BRANDL,Ingrid,09/11/1972,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,COLAS,Michel,05/06/1965,Non +77,Seine-et-Marne,10,10ème circonscription,9,54,M,BOUIS,Alain,26/02/1949,DSV,Ancien employé,Non,F,BRINON,Annette,23/01/1950,Non +77,Seine-et-Marne,10,10ème circonscription,10,50,M,CAYARD,Sylvain,09/08/1987,DXG,Technicien,Non,F,ROSE,Myriam,23/02/1969,Non +77,Seine-et-Marne,10,10ème circonscription,11,16,F,DO,Stéphanie,20/12/1979,ENS,Cadre de la fonction publique,Oui,M,KELYOR,Alain,09/07/1943,Non +77,Seine-et-Marne,11,11ème circonscription,1,79,M,SANGARÉ,Joël,29/06/1989,UDI,Profession libérale,Non,F,PÉRIGAUD,Clotilde,30/05/1972,Non +77,Seine-et-Marne,11,11ème circonscription,2,2,F,DEMONCHY,Martine,27/10/1960,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,DE AZEVEDO,Steven,05/12/2003,Non +77,Seine-et-Marne,11,11ème circonscription,3,31,F,MOREL-LELU,Sylvie,19/03/1957,ECO,Profession libérale,Non,F,HERVY,Brigitte,02/02/1955,Non +77,Seine-et-Marne,11,11ème circonscription,4,20,F,LAPEYRONIE,Brigitte,25/09/1968,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,HADJADJ,Régis,02/03/1971,Non +77,Seine-et-Marne,11,11ème circonscription,5,55,F,DE LA TORRE,Anne,09/04/1965,DXG,Technicien,Non,M,GILLARD,Hugues,24/03/1964,Non +77,Seine-et-Marne,11,11ème circonscription,6,117,F,PÉCULIER,Charlyne,07/08/1997,ENS,Cadre de la fonction publique,Non,F,DIOP,Nadia,08/11/1970,Non +77,Seine-et-Marne,11,11ème circonscription,7,66,M,FAURE,Olivier,18/08/1968,NUP,Cadre administratif et commercial d'entreprise,Oui,F,MARCHETTI,Xaviera,25/04/1979,Non +77,Seine-et-Marne,11,11ème circonscription,8,98,F,MARQUE GRAS,Evelyne,14/04/1958,DSV,Ancien cadre,Non,M,SAADI,Marc,04/02/1957,Non +78,Yvelines,01,1ère circonscription,1,45,F,TROCHU,Laurence,04/07/1973,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DES MONSTIERS,Charles,09/07/1969,Non +78,Yvelines,01,1ère circonscription,2,46,M,LEROUX,Jean-Loup,28/07/1976,DXG,Ingénieur et cadre technique d'entreprise,Non,F,HESSE,Laurence,11/02/1966,Non +78,Yvelines,01,1ère circonscription,3,78,F,KAMENI,Iphigénie,16/05/1968,DVD,Commerçant et assimilé,Non,M,PINAUD,Thierry,21/09/1960,Non +78,Yvelines,01,1ère circonscription,4,120,M,AUGER,Christophe,23/01/1973,DXG,"Contremaître, agent de maîtrise",Non,F,DEVAUX,Catherine,20/12/1960,Non +78,Yvelines,01,1ère circonscription,5,123,F,JEGOU,Sylvie,12/03/1963,DSV,Ancienne profession intermédiaire,Non,M,ACHARD,Alexandre,14/01/1999,Non +78,Yvelines,01,1ère circonscription,6,77,M,RODWELL,Charles,26/07/1996,ENS,Cadre de la fonction publique,Non,F,BOULARAN,Laurence,16/08/1958,Non +78,Yvelines,01,1ère circonscription,7,3,F,JACQMIN,Anne,18/12/1970,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,GOLLNISCH,Bruno,28/01/1950,Non +78,Yvelines,01,1ère circonscription,8,79,M,RAMAGE,Sébastien,05/11/1991,NUP,Employé de commerce,Non,F,BONNEFOND,Muriel,21/11/1961,Non +78,Yvelines,01,1ère circonscription,9,2,F,GRESPIER,Margaux-Charlotte,08/04/1987,ECO,Employé administratif d'entreprise,Non,M,GRESPIER,Michel,11/08/1958,Non +78,Yvelines,01,1ère circonscription,10,47,M,DE LA FAIRE,Olivier,25/04/1970,LR,Cadre de la fonction publique,Non,F,LOGANADANE,Devi,23/07/1971,Non +78,Yvelines,02,2ème circonscription,1,111,M,BIZET,Jérémy,28/02/1989,ECO,Ingénieur et cadre technique d'entreprise,Non,M,JULIEN-LABRUYERE,Dominique,16/03/1942,Non +78,Yvelines,02,2ème circonscription,2,5,M,BRAULT,Gaëtan,03/05/1989,RN,"Contremaître, agent de maîtrise",Non,M,LAPOUX,Xavier,03/08/1972,Non +78,Yvelines,02,2ème circonscription,3,4,F,JULLIÉ,Céline,06/01/1975,REC,"Professeur des écoles, instituteur et assimilé",Non,M,LESECQ,François,11/10/1971,Non +78,Yvelines,02,2ème circonscription,4,106,F,FERRÉ,Clara,21/09/1998,ECO,"Elève, étudiant",Non,F,ALLIÈSE,Florence,27/12/1988,Non +78,Yvelines,02,2ème circonscription,5,48,M,CASIMIR-PERRIER,Pascal,17/06/1971,DVC,Chef d'entreprise de 10 salariés ou plus,Non,M,DOUAREC,Erwann,15/12/1971,Non +78,Yvelines,02,2ème circonscription,6,6,F,JANISSET,Hélène,11/01/1957,DXG,Ancien employé,Non,M,LARROUY,Daniel,05/08/1969,Non +78,Yvelines,02,2ème circonscription,7,49,M,THÉVENOT,Pascal,03/06/1966,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,DOUCERAIN,Caroline,05/04/1976,Non +78,Yvelines,02,2ème circonscription,8,126,F,WAWSZCZYK,Isabelle,02/04/1965,DSV,"Professeur des écoles, instituteur et assimilé",Non,M,CHAUVEAU,Philippe,28/03/1960,Non +78,Yvelines,02,2ème circonscription,9,42,F,CARRIVE-BEDOUANI,Maïté,13/01/1963,NUP,"Professeur, profession scientifique",Non,M,ORSOLIN,Hugues,13/06/1972,Non +78,Yvelines,02,2ème circonscription,10,132,M,BOROCCO,Matthieu,09/11/1984,DIV,Ingénieur et cadre technique d'entreprise,Non,M,MORY,Adam,15/01/1992,Non +78,Yvelines,02,2ème circonscription,11,96,M,BARROT,Jean-Noël,13/05/1983,ENS,"Professeur, profession scientifique",Oui,F,GRIGNON,Anne,16/05/1977,Non +78,Yvelines,03,3ème circonscription,1,50,M,COQUARD,Bertrand,26/02/1971,UDI,Cadre administratif et commercial d'entreprise,Non,F,D'ESTEVE,Sylvie,07/12/1953,Non +78,Yvelines,03,3ème circonscription,2,8,M,DESCHAMPS,Lionel,20/03/1977,ECO,Ingénieur et cadre technique d'entreprise,Non,F,FEUGUEUR,Morgane,11/09/1999,Non +78,Yvelines,03,3ème circonscription,3,131,F,ASLAN,Ayse,23/11/1984,DSV,Cadre administratif et commercial d'entreprise,Non,F,MOREL,Carla,28/07/1999,Non +78,Yvelines,03,3ème circonscription,4,119,F,PIRON,Béatrice,30/08/1965,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,M,SÉVELY,Marc,26/09/1980,Non +78,Yvelines,03,3ème circonscription,5,122,F,NIEBEL,Caroline,10/11/1975,DVD,Cadre de la fonction publique,Non,M,PERIGORD,Romain,26/04/1976,Non +78,Yvelines,03,3ème circonscription,6,51,F,GUIGARD,Isabelle,09/12/1950,ECO,Ancien cadre,Non,F,GUEROULT,Agnès,19/01/1949,Non +78,Yvelines,03,3ème circonscription,7,10,M,CUIGNET,Jean-François,10/02/1967,REC,Cadre administratif et commercial d'entreprise,Non,F,CORNU-DUTRÉVY,Valérie,28/02/1971,Non +78,Yvelines,03,3ème circonscription,8,7,M,PINCHAUX,Pierre-Yves,09/02/1954,RN,Ancien cadre,Non,F,BARBEROT,Peggy,25/04/1978,Non +78,Yvelines,03,3ème circonscription,9,9,M,AUGUSTIN,Olivier,04/11/1963,DXG,Ouvrier qualifié de type industriel,Non,M,BASTONG,Jérôme,21/06/1974,Non +78,Yvelines,03,3ème circonscription,10,80,F,BRODY,Louise,06/02/1995,NUP,Employé civil et agent de service de la fonction publique,Non,M,HUE,Nicolas,10/03/1972,Non +78,Yvelines,04,4ème circonscription,1,55,M,CANEPARO,Bruno,23/10/1955,DVD,Profession libérale,Non,M,CONNOIS,Marc,02/12/1964,Non +78,Yvelines,04,4ème circonscription,2,13,F,RATIVET,Bénédicte,19/05/1974,REC,Profession libérale,Non,F,CERVIA GALOPHE,Valérie,18/06/1961,Non +78,Yvelines,04,4ème circonscription,3,56,F,LEBEC,Marie,17/12/1990,ENS,Cadre administratif et commercial d'entreprise,Oui,M,BERNAERT,Denis,01/05/1964,Non +78,Yvelines,04,4ème circonscription,4,12,F,LELANDAIS,Sophie,20/01/1969,RN,Employé administratif d'entreprise,Non,M,PALIX,Didier,21/02/1958,Non +78,Yvelines,04,4ème circonscription,5,98,M,CONSIGNY,Charles,14/07/1989,LR,Profession libérale,Non,M,BABINET,Mathieu,22/10/1999,Non +78,Yvelines,04,4ème circonscription,6,14,M,MAUREL,Franck,09/03/1964,DXG,Ingénieur et cadre technique d'entreprise,Non,M,MAURICE,Jean-Pierre,08/04/1958,Non +78,Yvelines,04,4ème circonscription,7,11,F,RICHARD-DESOUBEAUX,Chloé,06/06/1989,ECO,Cadre de la fonction publique,Non,F,THIEBAUD-TEXEREAU,Virginie,29/03/1958,Non +78,Yvelines,04,4ème circonscription,8,97,F,BOURDON,Céline,09/11/1990,NUP,Technicien,Non,M,MOUTAOUKIL-KERLERO,Hadrien,05/02/1994,Non +78,Yvelines,04,4ème circonscription,9,113,F,ZANATTA,Céline,24/02/1979,DIV,Cadre administratif et commercial d'entreprise,Non,M,ORSONI,Florent,17/12/1991,Non +78,Yvelines,05,5ème circonscription,1,53,F,ANDROUËT,Mathilde,03/07/1984,RN,Cadre de la fonction publique,Non,M,BERTIN,Nathan,29/12/2002,Non +78,Yvelines,05,5ème circonscription,2,52,M,BRINGUIER,Maxence,03/06/1995,REC,Profession libérale,Non,F,COLNAGHI,Christelle,06/08/1963,Non +78,Yvelines,05,5ème circonscription,3,93,F,DUBLANCHE,Alexandra,25/04/1982,LR,Chef d'entreprise de 10 salariés ou plus,Non,M,MOURGUES,Charles-Philippe,22/09/1979,Non +78,Yvelines,05,5ème circonscription,4,107,F,LAGRANGE,Diane,20/06/1981,DVG,Cadre administratif et commercial d'entreprise,Non,M,MAREC,Stéphane,25/09/1972,Non +78,Yvelines,05,5ème circonscription,5,15,M,LÉPICIER,Alain,14/08/1962,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,VILACA,Jean,20/10/1972,Non +78,Yvelines,05,5ème circonscription,6,54,F,THEVENET,Sophie,06/11/1960,NUP,Cadre administratif et commercial d'entreprise,Non,M,MENDIHARAT,Martin,15/09/1996,Non +78,Yvelines,05,5ème circonscription,7,112,F,BRAUN-PIVET,Yaël,07/12/1970,ENS,Profession libérale,Oui,M,DOS REIS,Gabriel,14/12/1995,Non +78,Yvelines,05,5ème circonscription,8,124,F,THEROND KERAUDREN,Amélie,13/05/1980,DVD,Profession libérale,Non,M,ROY,Pascal,25/10/1963,Non +78,Yvelines,05,5ème circonscription,9,16,M,DENÉ,Jean-Luc,14/08/1962,ECO,Ingénieur et cadre technique d'entreprise,Non,F,BRASSEUR,Dominique,24/08/1963,Non +78,Yvelines,05,5ème circonscription,10,116,F,VOISIN,Katia,17/05/1975,DSV,Profession libérale,Non,M,LAVIGNE,Nolan,19/04/1994,Non +78,Yvelines,06,6ème circonscription,1,100,F,SAUGER,Mélinda,31/03/1981,NUP,"Professeur, profession scientifique",Non,M,VALBERT,Loïc,15/09/1995,Non +78,Yvelines,06,6ème circonscription,2,118,M,VERILHAC,Julian,13/05/1999,DIV,"Elève, étudiant",Non,M,MOUHARTEM,Fabrice,28/11/1992,Non +78,Yvelines,06,6ème circonscription,3,18,M,DE MONTBRIAL,Thibault,01/09/1968,LR,Profession libérale,Non,F,BOUYSSOU,Marie-Agnès,31/12/1970,Non +78,Yvelines,06,6ème circonscription,4,108,F,PERRAUDIN,Cécile,06/06/1987,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,DARSY,Marc,11/02/1968,Non +78,Yvelines,06,6ème circonscription,5,81,F,LEMIERE,Bénédicte,22/06/1968,DIV,Cadre administratif et commercial d'entreprise,Non,M,DAL MOLIN,Edward,30/12/1991,Non +78,Yvelines,06,6ème circonscription,6,58,F,POUZYREFF,Natalia,18/02/1961,ENS,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,M,BOVIS,Pierre-Henri,31/10/1992,Non +78,Yvelines,06,6ème circonscription,7,17,F,MACEDO DE SOUZA,Maria,13/09/1955,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,QUENTIN,David,11/06/1996,Non +78,Yvelines,06,6ème circonscription,8,59,M,SUZÉ,Jean-Luc,06/04/1979,ECO,"Professeur, profession scientifique",Non,M,LÉAL,Kévin,12/02/1993,Non +78,Yvelines,06,6ème circonscription,9,99,M,BOUCHER,Stéphane,26/11/1965,REC,Cadre administratif et commercial d'entreprise,Non,F,GRIMMER,Odile,07/03/1968,Non +78,Yvelines,06,6ème circonscription,10,57,F,ONOFRI,Catherine,03/07/1971,DSV,"Profession de l'information, des arts et des spectacles",Non,M,VOISIN,Stéphane,19/03/1971,Non +78,Yvelines,07,7ème circonscription,1,19,F,HAI,Nadia,08/03/1980,ENS,Cadre administratif et commercial d'entreprise,Non,M,LITTIERE,Mickaël,12/12/1979,Non +78,Yvelines,07,7ème circonscription,2,109,M,BORIE,Jacques,14/05/1965,ECO,Profession libérale,Non,F,ARTHUR,Françoise,26/10/1964,Non +78,Yvelines,07,7ème circonscription,3,121,M,ABOUHAMDA,Fouad,14/12/1973,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,DORGHAL,Leïla,02/11/2003,Non +78,Yvelines,07,7ème circonscription,4,60,F,DIDIERJEAN,Christèle,10/11/1978,REC,Commerçant et assimilé,Non,M,LE FORESTIER,Valentin,12/12/1994,Non +78,Yvelines,07,7ème circonscription,5,22,F,JOMBART,Christiane,29/05/1985,DIV,"Contremaître, agent de maîtrise",Non,M,JOMBART,Patrice,28/03/1968,Non +78,Yvelines,07,7ème circonscription,6,21,F,FORTIN,Emmanuelle,02/09/1963,RN,Cadre administratif et commercial d'entreprise,Non,M,COLLIN,Thierry,12/03/1967,Non +78,Yvelines,07,7ème circonscription,7,101,F,CHRISTOPHOUL,Michèle,30/05/1951,NUP,Ancien cadre,Non,M,GARCIA,Alexandre,16/04/1990,Non +78,Yvelines,07,7ème circonscription,8,127,F,KATUSEVANAKO,Rithe,15/01/1994,DSV,Cadre administratif et commercial d'entreprise,Non,M,CASTILLO,Thomas,16/10/1993,Non +78,Yvelines,07,7ème circonscription,9,20,M,BROSSE,Laurent,25/10/1985,DVD,Profession libérale,Non,F,LE BLAY,Myriam,06/05/1969,Non +78,Yvelines,07,7ème circonscription,10,23,M,KAYA,Ali,10/12/1969,DXG,Ouvrier qualifié de type industriel,Non,F,GELVEZ,Olga,08/05/1964,Non +78,Yvelines,07,7ème circonscription,11,110,M,PLANCOULAINE,Pierre,14/03/1970,ECO,"Professeur, profession scientifique",Non,F,GAUCHER,Florence,17/04/1973,Non +78,Yvelines,07,7ème circonscription,12,94,M,VINCENT,Rémi,21/06/1978,DIV,Profession libérale,Non,M,GUILLOU,Michel,17/04/1948,Non +78,Yvelines,07,7ème circonscription,13,43,M,JANVIER,Frédéric,06/02/1965,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,TEXIER,Sandra,09/10/1970,Non +78,Yvelines,08,8ème circonscription,1,117,F,BEKONO,Mélanie,12/09/1974,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LE THIERRY D'ENNEQUIN,Yann,22/11/1972,Non +78,Yvelines,08,8ème circonscription,2,63,M,PRÉAU,Jean-Marwaan,20/07/1962,DIV,"Professeur, profession scientifique",Non,F,EL AMERANY,Halima,05/03/1971,Non +78,Yvelines,08,8ème circonscription,3,24,M,NAUTH,Cyril,19/12/1981,RN,"Professeur, profession scientifique",Non,F,FÜHRER-MOGUEROU,Monique,06/06/1944,Non +78,Yvelines,08,8ème circonscription,4,86,M,KOSSOKO,Bernard,25/09/1969,DIV,Cadre administratif et commercial d'entreprise,Non,F,EL ASRI,Sabah,03/07/1979,Non +78,Yvelines,08,8ème circonscription,5,84,F,SICARD,Anne,15/06/1967,REC,"Professeur, profession scientifique",Non,M,ALLART,Geoffrey,27/04/1991,Non +78,Yvelines,08,8ème circonscription,6,62,M,LUCAS,Benjamin,08/10/1990,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,SAKAT,Kanza,11/02/1974,Non +78,Yvelines,08,8ème circonscription,7,85,F,HERVIEUX,Edwige,29/12/1980,ENS,Cadre administratif et commercial d'entreprise,Non,M,DUPRAT,Sébastien,12/05/1975,Non +78,Yvelines,08,8ème circonscription,8,91,M,BLAISE,François,09/03/1982,ECO,Cadre de la fonction publique,Non,F,DUVAL,Fernande,26/04/1965,Non +78,Yvelines,08,8ème circonscription,9,82,M,LEFEBVRE,Jack,04/09/1954,DXG,Ancien cadre,Non,F,ANDRÉ,Juliette,07/10/1991,Non +78,Yvelines,08,8ème circonscription,10,83,M,VIALAY,Michel,06/01/1960,LR,Cadre administratif et commercial d'entreprise,Oui,M,JEANNE,Stéphane,08/11/1959,Non +78,Yvelines,08,8ème circonscription,11,61,M,GONNOT,Thierry,23/04/1963,DXG,Ouvrier qualifié de type industriel,Non,M,THÉVIN,Jean-Claude,24/06/1966,Non +78,Yvelines,09,9ème circonscription,1,102,M,MARTIN,Dominique,04/01/1957,DXG,Ancienne profession intermédiaire,Non,F,DE SOUSA,Claudia,12/05/1982,Non +78,Yvelines,09,9ème circonscription,2,28,M,LE HOT,Christophe,12/02/1966,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,LOUPMON,Audrey,29/08/1987,Non +78,Yvelines,09,9ème circonscription,3,115,F,CZAP,Aïda,13/10/1999,ECO,"Elève, étudiant",Non,F,CZAP,Manon,28/09/1989,Non +78,Yvelines,09,9ème circonscription,4,26,M,ETTORI,Magà,15/02/1972,ECO,"Profession de l'information, des arts et des spectacles",Non,F,HAMDOUCHY,Sonia,21/07/1980,Non +78,Yvelines,09,9ème circonscription,5,95,F,DE ROZIERES,Babette,27/05/1946,DVD,"Ancien artisan, commerçant, chef d'entreprise",Non,M,DEVERS,Jérémy,23/06/1983,Non +78,Yvelines,09,9ème circonscription,6,27,M,GOMMARD,Philippe,02/07/1961,DXG,Ancien ouvrier,Non,F,BELGADI,Najette,28/04/1985,Non +78,Yvelines,09,9ème circonscription,7,125,F,LEVRARD,Marion Sabine,21/02/1980,DIV,Cadre administratif et commercial d'entreprise,Non,M,DE MAEYER,Arnaud,28/12/1972,Non +78,Yvelines,09,9ème circonscription,8,25,M,MORIN,Laurent,11/05/1976,RN,Chef d'entreprise de 10 salariés ou plus,Non,F,OFFROY,Mélanie,22/01/1981,Non +78,Yvelines,09,9ème circonscription,9,68,M,MILLIENNE,Bruno,28/11/1959,ENS,Cadre administratif et commercial d'entreprise,Oui,F,AUFFRET,Gaëlle,04/04/1975,Non +78,Yvelines,09,9ème circonscription,10,128,F,IHIA,Aïcha,27/04/1974,DIV,Employé administratif d'entreprise,Non,M,BOULAIFA,Houssen,02/06/1994,Non +78,Yvelines,09,9ème circonscription,11,64,M,ZEROUALI,Rachid,28/05/1971,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,VILLETTE,Valérie Christine,20/07/1972,Non +78,Yvelines,09,9ème circonscription,12,65,F,LAMIR,Fatma,29/11/1979,DIV,"Professeur des écoles, instituteur et assimilé",Non,F,MENDY,N'Gricia,30/07/1979,Non +78,Yvelines,09,9ème circonscription,13,66,F,WINOCOUR LEFEVRE,Pauline,25/11/1978,LR,"Professeur, profession scientifique",Non,M,KOKELKA,Jean-Luc,02/02/1960,Non +78,Yvelines,09,9ème circonscription,14,67,M,PAILHAC,Victor,30/09/2001,NUP,"Elève, étudiant",Non,F,OKMEN,Gina,03/09/1994,Non +78,Yvelines,10,10ème circonscription,1,31,F,CABRIT,Anne,01/06/1970,LR,Ancien cadre,Non,M,DUTAT,Emmanuel,07/10/1969,Non +78,Yvelines,10,10ème circonscription,2,72,F,COUEIGNAS,Claire,05/04/1956,DSV,Ancien cadre,Non,M,ESKÉNAZI,Thomas,07/04/1997,Non +78,Yvelines,10,10ème circonscription,3,29,M,DU CHALARD,Thomas,20/12/1984,RN,Cadre de la fonction publique,Non,M,FONTAINE,Olivier,10/03/1975,Non +78,Yvelines,10,10ème circonscription,4,70,M,JACONO,Patrice,01/04/1946,ECO,Ancien cadre,Non,M,GUIGARD,Philippe,30/07/1947,Non +78,Yvelines,10,10ème circonscription,5,32,M,CHEVRIER,Philippe,09/06/1950,REC,Ancien cadre,Non,M,TEXIER,Vincent,03/12/1985,Non +78,Yvelines,10,10ème circonscription,6,71,M,BIZIEN,Michel,31/03/1950,DXG,"Professeur, profession scientifique",Non,F,BAVAGE,Victoria,07/07/1966,Non +78,Yvelines,10,10ème circonscription,7,30,F,BOGAERS,Sylvie,21/04/1961,ECO,Ancien employé,Non,F,JARDIN,Patricia,18/11/1960,Non +78,Yvelines,10,10ème circonscription,8,92,F,SAULNIER,Marielle,23/07/1968,DXG,Profession intermédiaire de la santé et du travail social,Non,M,OUDOT,Marc,08/05/1979,Non +78,Yvelines,10,10ème circonscription,9,103,M,BRIOLAIS,Cédric,28/01/1980,NUP,Employé civil et agent de service de la fonction publique,Non,F,LASSERRE,Catherine,23/05/1963,Non +78,Yvelines,10,10ème circonscription,10,69,F,BERGÉ,Aurore,13/11/1986,ENS,Cadre de la fonction publique,Oui,M,EMMANUEL,Philippe,08/06/1960,Non +78,Yvelines,11,11ème circonscription,1,38,M,GALLANT,Olivier,02/04/1967,DSV,Cadre administratif et commercial d'entreprise,Non,F,GENTELLE-GIRY,Stéphanie,19/11/1972,Non +78,Yvelines,11,11ème circonscription,2,34,F,PIACENZA,Aurélie,09/04/1980,ENS,Cadre administratif et commercial d'entreprise,Non,M,GAULTIER,Bruno,28/05/1961,Non +78,Yvelines,11,11ème circonscription,3,73,M,MAÏZA,Raouf,12/05/1976,DIV,Artisan,Non,F,ILAUO,Jeanne,03/09/1984,Non +78,Yvelines,11,11ème circonscription,4,33,M,AUBIN,Christophe,16/04/1974,ECO,Policier et militaire,Non,F,ABDOUL DENOO,Louise,13/03/1989,Non +78,Yvelines,11,11ème circonscription,5,36,M,MARTINET,William,06/09/1988,NUP,Cadre administratif et commercial d'entreprise,Non,F,PERROTIN-RAUFASTE,Catherine,06/06/1959,Non +78,Yvelines,11,11ème circonscription,6,39,M,PLANQUE,Patrick,21/02/1968,DXG,Ouvrier qualifié de type industriel,Non,F,ÉGASSE,Christine,15/07/1952,Non +78,Yvelines,11,11ème circonscription,7,35,F,CHABANET,Sophie,20/01/1966,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BARBEROT,Maurice,03/10/1941,Non +78,Yvelines,11,11ème circonscription,8,105,M,DELEFOSSE,Aymeric,16/05/1997,DIV,"Elève, étudiant",Non,M,DURRIEUX,Romain,11/06/1980,Non +78,Yvelines,11,11ème circonscription,9,114,M,TRAMONI,Jean-Luc,01/04/1958,ECO,Profession libérale,Non,F,LANTOINE,Christelle,24/08/1971,Non +78,Yvelines,11,11ème circonscription,10,74,M,BENASSAYA,Philippe,04/08/1964,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,DAINVILLE,Nicolas,21/09/1986,Non +78,Yvelines,11,11ème circonscription,11,37,M,ARNAUD,Alexandre,17/07/1985,REC,Cadre administratif et commercial d'entreprise,Non,M,FLEURDEN-BISSIÈRE,Lucas,05/03/2001,Non +78,Yvelines,12,12ème circonscription,1,76,M,MOUTOT,François,20/02/1952,DVD,Ancien cadre,Non,F,GUILLEUX,Adeline,29/01/1983,Non +78,Yvelines,12,12ème circonscription,2,75,M,MERCIER,Jean-Pierre,15/02/1968,DXG,Ouvrier qualifié de type industriel,Non,M,PARENT,Patrice,12/01/1952,Non +78,Yvelines,12,12ème circonscription,3,89,M,CARBONNELLE,Dimitri,08/08/1971,ECO,Commerçant et assimilé,Non,F,DECANTON,Joëlle,06/03/1966,Non +78,Yvelines,12,12ème circonscription,4,129,M,BOUDIAF,Lamine,29/09/1999,DIV,"Elève, étudiant",Non,F,HOCINE,Yamina,01/01/1940,Non +78,Yvelines,12,12ème circonscription,5,104,M,LEGRIS,Edwin,20/12/1973,NUP,"Professeur, profession scientifique",Non,M,MARGUERETTAZ,Félicien,31/10/1997,Non +78,Yvelines,12,12ème circonscription,6,90,M,TRAN,Jean-Marc,21/06/1962,DIV,Ingénieur et cadre technique d'entreprise,Non,F,CARLES,Marie-Capucine,22/06/1976,Non +78,Yvelines,12,12ème circonscription,7,130,F,FOURNIÈRE,Isabelle,11/02/1958,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,DUPERRET,Claudine,22/02/1959,Non +78,Yvelines,12,12ème circonscription,8,41,M,METTELET,Jean-Louis,19/10/1970,RN,Cadre administratif et commercial d'entreprise,Non,M,FARÉ,Frédéric,18/12/1957,Non +78,Yvelines,12,12ème circonscription,9,44,M,OLIVE,Karl,29/03/1969,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,DEVEZE,Fabienne,26/08/1962,Non +78,Yvelines,12,12ème circonscription,10,40,M,PARANTHOËN,Mathieu,04/07/1987,ECO,Cadre administratif et commercial d'entreprise,Non,F,FALAIZE,Aurore,24/03/1988,Non +78,Yvelines,12,12ème circonscription,11,88,F,CLÉMENT,Sabine,07/10/1965,REC,Commerçant et assimilé,Non,M,JAY,Bruno,08/05/1963,Non +79,Deux-Sèvres,01,1ère circonscription,1,9,M,MARCHIVE,Bastien,15/07/1990,ENS,Cadre administratif et commercial d'entreprise,Non,F,VINATIER,Nathalie,15/04/1967,Non +79,Deux-Sèvres,01,1ère circonscription,2,8,F,BRETHENOUX,Matylde,13/12/1999,REC,"Elève, étudiant",Non,M,BRIDONNEAU,Damien,28/08/1997,Non +79,Deux-Sèvres,01,1ère circonscription,3,11,F,VAUZELLE,Danielle,18/09/1947,DXG,Ancien employé,Non,M,MARÉCHAL,Anatole,21/09/1992,Non +79,Deux-Sèvres,01,1ère circonscription,4,21,M,CHICHE,Guillaume,30/03/1986,DVC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,MICOU,Corine,14/11/1963,Non +79,Deux-Sèvres,01,1ère circonscription,5,16,F,CHAMPEAU,Dorothée,09/04/1979,RN,Ouvrier non qualifié de type artisanal,Non,M,KUTTLER,Frédéric,13/06/1977,Non +79,Deux-Sèvres,01,1ère circonscription,6,22,F,MASSON,Geneviève,26/02/1961,ECO,Profession libérale,Non,M,GÉRAUD,Michel,16/12/1957,Non +79,Deux-Sèvres,01,1ère circonscription,7,10,M,CHARRON,François,02/08/1981,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,THOMAS,Ludivine,12/12/1988,Non +79,Deux-Sèvres,01,1ère circonscription,8,7,F,GANIVET,Catherine,02/12/1957,UDI,Commerçant et assimilé,Non,F,AUGÉ,Catherine,07/08/1965,Non +79,Deux-Sèvres,02,2ème circonscription,1,19,M,JOSEPH,Gaël,01/01/1995,DVG,Cadre de la fonction publique,Non,F,BRILLAUD,Chantal,24/11/1960,Non +79,Deux-Sèvres,02,2ème circonscription,2,12,M,SAINTY,Roland,08/09/1977,REC,Profession intermédiaire de la santé et du travail social,Non,M,GARRIGA,Alain,26/05/1967,Non +79,Deux-Sèvres,02,2ème circonscription,3,20,F,BAUDREZ,Emilie,28/02/1982,LR,Employé administratif d'entreprise,Non,M,MARTINEAU,Jean-Yann,26/09/1968,Non +79,Deux-Sèvres,02,2ème circonscription,4,23,F,DUPUY,Valérie,20/09/1972,DSV,Ouvrier non qualifié de type artisanal,Non,F,DECOBERT,Océane,01/09/2002,Non +79,Deux-Sèvres,02,2ème circonscription,5,18,F,BATHO,Delphine,23/03/1973,NUP,Cadre de la fonction publique,Oui,M,CUBAUD,Olivier,27/04/1966,Non +79,Deux-Sèvres,02,2ème circonscription,6,15,F,REVERS,Carine,20/10/1973,RN,Profession intermédiaire administrative de la fonction publique,Non,M,GIROUX,Stéphane,19/03/1973,Non +79,Deux-Sèvres,02,2ème circonscription,7,17,F,ROCHEFORT,Cécilia,28/07/1969,ENS,"Profession de l'information, des arts et des spectacles",Non,M,PICHON,Gilles,13/03/1964,Non +79,Deux-Sèvres,02,2ème circonscription,8,5,M,GORIZZUTTI,Roger,18/02/1956,DXG,Ancienne profession intermédiaire,Non,F,BERNARD,Marie,10/02/2000,Non +79,Deux-Sèvres,03,3ème circonscription,1,6,F,VALLÉE,Maryse,04/04/1955,DXG,Ancien cadre,Non,F,ROBERT,Christine,24/02/1955,Non +79,Deux-Sèvres,03,3ème circonscription,2,24,M,BARBOT,Alexis,01/07/1995,DIV,Ingénieur et cadre technique d'entreprise,Non,F,HERAULT,Claude,28/08/1967,Non +79,Deux-Sèvres,03,3ème circonscription,3,2,M,FAIVRE,Gerard,09/07/1955,REC,Ancien cadre,Non,M,MOUNIER,Aimé,21/12/1995,Non +79,Deux-Sèvres,03,3ème circonscription,4,13,F,WOILLEZ,Juliette,07/11/1980,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,URBAIN,Axel,26/11/1999,Non +79,Deux-Sèvres,03,3ème circonscription,5,14,M,GUIBERT,Olivier,24/07/1967,RN,Commerçant et assimilé,Non,F,COURTOIS,Maryline,07/10/1967,Non +79,Deux-Sèvres,03,3ème circonscription,6,4,M,FIÉVET,Jean-Marie,19/06/1964,ENS,Employé civil et agent de service de la fonction publique,Oui,F,PINEAU,Caroline,25/01/1993,Non +79,Deux-Sèvres,03,3ème circonscription,7,3,M,ROBIN,Philippe,05/01/1957,LR,Ancien cadre,Non,F,MAHIET-LUCAS,Esther,20/02/1954,Non +80,Somme,01,1ère circonscription,1,13,F,ROY,Mathilde,15/02/1960,LR,Cadre administratif et commercial d'entreprise,Non,M,LEPAGE,Michel,16/03/1971,Non +80,Somme,01,1ère circonscription,2,34,M,RIFFLART,Pascal,25/04/1957,ENS,Profession libérale,Non,F,ANDASMAS,Farida,01/07/1972,Non +80,Somme,01,1ère circonscription,3,45,M,FRADCOURT,Pascal,06/04/1960,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,MERAOUMIA,Marien,14/05/1973,Non +80,Somme,01,1ère circonscription,4,32,M,BOXOËN,Noé,25/10/1999,DSV,Agriculteur sur moyenne exploitation,Non,F,BELLANGER,Sandrine,20/12/1970,Non +80,Somme,01,1ère circonscription,5,33,M,SCRIBE,Pascal,18/03/1965,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,LEROUX,Pascal,16/11/1964,Non +80,Somme,01,1ère circonscription,6,22,F,RIBEIRO-BILLET,Nathalie,11/12/1990,RN,Employé administratif d'entreprise,Non,F,LOIR,Sabine,27/04/1972,Non +80,Somme,01,1ère circonscription,7,6,M,BAUDRY,Jean-Patrick,30/10/1980,DXG,"Professeur, profession scientifique",Non,M,GAMBET,Jean-Luc,18/12/1963,Non +80,Somme,01,1ère circonscription,8,17,M,VANDEPLASSCHE,Thierry,02/11/1967,ECO,"Contremaître, agent de maîtrise",Non,F,LESCOAT,Laurence,01/11/1967,Non +80,Somme,01,1ère circonscription,9,26,M,RUFFIN,François,18/10/1975,NUP,"Profession de l'information, des arts et des spectacles",Oui,F,MATBOUA,Hayat,15/02/1978,Non +80,Somme,02,2ème circonscription,1,2,F,REITZMAN,Dominique,24/06/1952,DXG,Ancienne profession intermédiaire,Non,M,DENOIRJEAN,Thomas,06/05/1994,Non +80,Somme,02,2ème circonscription,2,40,M,CARON,Aurélien,22/06/1990,DVD,Cadre de la fonction publique,Non,F,HAMADI,Sonia,22/06/1964,Non +80,Somme,02,2ème circonscription,3,46,M,BOREL,Bernard,22/06/1962,DVD,Commerçant et assimilé,Non,M,DESACHY,Jean-Marie,26/03/1947,Non +80,Somme,02,2ème circonscription,4,12,F,SOYER,Aurélie,04/07/1979,REC,Artisan,Non,M,TUAHIVA,Eric,20/04/1960,Non +80,Somme,02,2ème circonscription,5,39,F,L'AMINOT,Sandrine,29/08/1977,ECO,Cadre de la fonction publique,Non,F,BOURGEOIS,Claudine,08/07/1954,Non +80,Somme,02,2ème circonscription,6,21,F,HERMANS,Nadia,10/11/1957,RN,Ancien cadre,Non,F,DEBUICHE,Delphine,23/01/1975,Non +80,Somme,02,2ème circonscription,7,38,F,DEVAUX,Valérie,19/06/1964,UDI,"Professeur, profession scientifique",Non,M,SAVREUX,Pierre,22/04/1983,Non +80,Somme,02,2ème circonscription,8,5,M,PALENI,Bruno,27/02/1962,DXG,"Professeur, profession scientifique",Non,M,PAUCHET,Kevin,14/02/1991,Non +80,Somme,02,2ème circonscription,9,24,F,POMPILI,Barbara,13/06/1975,ENS,Employé civil et agent de service de la fonction publique,Non,F,DORDAIN-SAINT,Ingrid,18/03/1978,Non +80,Somme,02,2ème circonscription,10,35,F,HAMDANE,Zahia,14/05/1965,NUP,Profession intermédiaire de la santé et du travail social,Non,F,VINCENT,Laure,08/12/1974,Non +80,Somme,03,3ème circonscription,1,15,M,DEVAUX,Frédéric,18/08/1968,ECO,Technicien,Non,M,COMYN,Olivier,05/05/1971,Non +80,Somme,03,3ème circonscription,2,48,F,MASSONNEAU,Marine,17/02/1969,DVC,Employé administratif d'entreprise,Non,M,JOLIBOIS,Cédric,16/02/1982,Non +80,Somme,03,3ème circonscription,3,9,M,MONGIN,David,03/02/1974,DVG,Profession libérale,Non,M,CAHILL,Daniel,27/07/1961,Non +80,Somme,03,3ème circonscription,4,20,M,LOTTIN,Nicolas,03/09/1961,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,CORROYER,Sylvie,09/09/1963,Non +80,Somme,03,3ème circonscription,5,8,M,MIRAMONT,François,14/06/1969,REC,Profession libérale,Non,M,MACHU,Jean-Philippe,30/08/1969,Non +80,Somme,03,3ème circonscription,6,43,F,FINEL,Marianne,29/01/1985,DVG,Cadre administratif et commercial d'entreprise,Non,M,SPINELLI,Olivier,09/04/1965,Non +80,Somme,03,3ème circonscription,7,30,M,PETIT,Arnaud,14/09/1976,NUP,Ouvrier qualifié de type industriel,Non,F,MASSALON,Catherine,10/01/1969,Non +80,Somme,03,3ème circonscription,8,3,M,VALET,Michel,02/04/1956,DXG,Ancien employé,Non,F,ACOULON,Elise,07/10/1958,Non +80,Somme,03,3ème circonscription,9,25,F,BRANLANT,Albane,04/11/1996,ENS,Profession intermédiaire administrative et commerciale des entreprises,Non,M,MACHAT,Jean-Marie,02/09/1954,Non +80,Somme,03,3ème circonscription,10,42,F,PONSARD,Anabelle,18/05/1965,DSV,Commerçant et assimilé,Non,M,LEMERCIER,Théo,11/07/2000,Non +80,Somme,03,3ème circonscription,11,28,M,MAQUET,Emmanuel,02/06/1968,LR,Cadre administratif et commercial d'entreprise,Oui,F,POUPART,Patricia,28/11/1965,Non +80,Somme,04,4ème circonscription,1,29,F,DELGOVE,Rachèle,03/05/1988,DSV,Artisan,Non,F,DUCELLIER,Elodie,12/01/1980,Non +80,Somme,04,4ème circonscription,2,36,F,HÉREN,Elodie,10/04/1976,NUP,Cadre de la fonction publique,Non,M,RÉMY,Claude,01/05/1958,Non +80,Somme,04,4ème circonscription,3,27,M,LECLABART,Jean-Claude,04/12/1954,ENS,Ancien agriculteur exploitant,Oui,F,BEYLIER,Dominique,04/02/1957,Non +80,Somme,04,4ème circonscription,4,31,M,JACQUES,Vincent,11/12/1981,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,MOUTON,Valérie,22/09/1969,Non +80,Somme,04,4ème circonscription,5,41,M,TANGUY,Jean-Philippe,25/03/1986,RN,Cadre administratif et commercial d'entreprise,Non,M,THÉVENIAUD,Philippe,14/08/1961,Non +80,Somme,04,4ème circonscription,6,44,M,SERREAU,Dany,04/08/1992,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,CHENARD,Aline,26/07/1964,Non +80,Somme,04,4ème circonscription,7,10,M,MAGUIN,Jacques,25/08/1958,REC,Ancien cadre,Non,M,JESU,Xavier,18/05/1959,Non +80,Somme,04,4ème circonscription,8,7,M,VITOUX,Guy,09/03/1954,DXG,Ancien ouvrier,Non,M,MAURICE,Pascal,03/08/1958,Non +80,Somme,04,4ème circonscription,9,18,M,MAKOWSKI,Adam,14/08/1962,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DAULLÉ,Gérard,02/11/1969,Non +80,Somme,05,5ème circonscription,1,14,M,BEAUVARLET,Laurent,20/10/1962,REC,"Professeur, profession scientifique",Non,M,GAJEWSKI,Thomas,22/09/1982,Non +80,Somme,05,5ème circonscription,2,19,F,MENACHE,Yael,12/05/1985,RN,Cadre administratif et commercial d'entreprise,Non,F,WALBECQ,Françoise,30/04/1953,Non +80,Somme,05,5ème circonscription,3,23,M,ANCELET,Guillaume,23/02/1983,NUP,"Professeur, profession scientifique",Non,F,KUMM,Valérie,02/11/1967,Non +80,Somme,05,5ème circonscription,4,47,F,LEGOT,Sabine,28/01/1963,DSV,Profession intermédiaire administrative de la fonction publique,Non,M,SOULEYRE,Rémy,29/03/1976,Non +80,Somme,05,5ème circonscription,5,16,M,GRÉBIL,Claude,23/12/1952,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,M,DOPRÉ,Michel,19/11/1956,Non +80,Somme,05,5ème circonscription,6,11,M,LABILLE,Grégory,10/07/1968,LR,"Professeur, profession scientifique",Oui,M,DUPREZ,Mickaël,05/06/1990,Non +80,Somme,05,5ème circonscription,7,49,M,LEVEQUE,Adrien,22/10/1990,DVD,Profession libérale,Non,M,LEGRAND,Bruno,15/07/1963,Non +80,Somme,05,5ème circonscription,8,37,F,CARON-DECROIX,Virginie,01/11/1977,ENS,Profession libérale,Non,M,MASSIAS,Fabrice,02/01/1963,Non +80,Somme,05,5ème circonscription,9,4,F,LAUNAY,Hélène,22/05/1967,DXG,Employé civil et agent de service de la fonction publique,Non,M,ISIDORI,Marc,28/01/1967,Non +81,Tarn,01,1ère circonscription,1,12,M,GILLES,Roland,07/02/1954,DVD,Ancien cadre,Non,F,BOURGES,Marie-Clotilde,19/11/1979,Non +81,Tarn,01,1ère circonscription,2,11,F,ROQUES-ETIENNE,Muriel,05/03/1979,ENS,Profession libérale,Oui,M,MARTINEZ,Franck,03/03/1970,Non +81,Tarn,01,1ère circonscription,3,25,F,ANDRIEU,Patricia,09/03/1970,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,WATTIER,Mathilde,15/12/1997,Non +81,Tarn,01,1ère circonscription,4,22,M,PIRÈS,Rodolphe,26/01/1973,LR,"Profession de l'information, des arts et des spectacles",Non,F,BARTHE-DE LA OSA,Nadège,22/04/1979,Non +81,Tarn,01,1ère circonscription,5,10,M,BARDY,Stéphane,12/02/1961,REC,Commerçant et assimilé,Non,F,BOUYE,Virginie,12/04/1975,Non +81,Tarn,01,1ère circonscription,6,29,M,RICCI,Johann,31/01/1987,DVD,Profession libérale,Non,F,RAYSSIGUIÉ,Nathalie,19/04/1968,Non +81,Tarn,01,1ère circonscription,7,6,M,CHAVEGRAND,Eric,03/07/1964,DXG,Ouvrier qualifié de type industriel,Non,M,LOPEZ,Vincent,07/03/1952,Non +81,Tarn,01,1ère circonscription,8,31,M,MOULIN,Etienne,08/05/1959,DVG,"Professeur, profession scientifique",Non,F,VIALA,Armelle,07/09/1970,Non +81,Tarn,01,1ère circonscription,9,4,M,CABROLIER,Frédéric,12/10/1966,RN,Cadre administratif et commercial d'entreprise,Non,M,DAUZATS,Alain,30/01/1959,Non +81,Tarn,01,1ère circonscription,10,14,M,POUJADE,Gérard,31/03/1960,NUP,Profession libérale,Non,F,DELMAS,Cécile,02/11/1970,Non +81,Tarn,01,1ère circonscription,11,2,F,CAPO ORTEGA,Julie,27/10/1984,DVD,Commerçant et assimilé,Non,M,ALIBERT,Nicolas,03/12/1987,Non +81,Tarn,01,1ère circonscription,12,23,M,LAPEYRE,Philippe,09/03/1967,DSV,Ancien cadre,Non,F,GERMAIN,Véronique,07/03/1953,Non +81,Tarn,02,2ème circonscription,1,8,F,BOYER,Céline,17/07/1962,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LEGRIS,Christian,24/07/1954,Non +81,Tarn,02,2ème circonscription,2,28,F,DARMANI,Corinne,16/10/1968,REG,Commerçant et assimilé,Non,M,DUMAS,Eric,22/07/1972,Non +81,Tarn,02,2ème circonscription,3,18,M,VOIZARD,Karl-Henri,24/10/1981,ECO,Cadre de la fonction publique,Non,F,COTELLE,Nadia,15/08/1966,Non +81,Tarn,02,2ème circonscription,4,15,F,VERDIER-JOUCLAS,Marie-Christine,19/03/1965,ENS,Cadre administratif et commercial d'entreprise,Oui,F,DAVOINE-DERREVEAUX,Cécile,26/12/1968,Non +81,Tarn,02,2ème circonscription,5,33,M,ENCONTRE,Joël,30/08/1961,REG,Profession intermédiaire administrative de la fonction publique,Non,F,HOULES,Evelyne,01/09/1958,Non +81,Tarn,02,2ème circonscription,6,3,M,GIMENEZ SASTRE,Boris,08/06/1977,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,MERIC,Chistine,23/01/1963,Non +81,Tarn,02,2ème circonscription,7,36,F,LADA,Fabienne Marie,19/03/1968,ECO,Cadre de la fonction publique,Non,F,GRACIA,Laetitia,22/05/1985,Non +81,Tarn,02,2ème circonscription,8,32,M,BACOU,Julien,29/10/1986,RN,Technicien,Non,M,BESSOU,Raymond,02/01/1946,Non +81,Tarn,02,2ème circonscription,9,20,F,MADESCLAIR,Sandrine,09/02/1972,DVG,Cadre administratif et commercial d'entreprise,Non,F,MALRIC,Florence,05/04/1966,Non +81,Tarn,02,2ème circonscription,10,30,F,CUNY,Pascale,17/08/1963,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,BREFEIL,Pierre,25/06/1965,Non +81,Tarn,02,2ème circonscription,11,19,F,PONNELLE,Véronique,31/08/1970,DSV,Profession libérale,Non,M,WITTICH,Eberhard,03/02/1963,Non +81,Tarn,02,2ème circonscription,12,27,F,ERODI,Karen,04/02/1977,NUP,Profession libérale,Non,M,JAMMES,Romain,12/08/1987,Non +81,Tarn,03,3ème circonscription,1,26,M,LASSALLE,Julien,15/09/1981,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,F,ALFANDARI,Léa,20/12/1996,Non +81,Tarn,03,3ème circonscription,2,21,F,BALESTAN,Ophélie,12/03/1995,ECO,Commerçant et assimilé,Non,M,VERGER,Jean-Luc,18/05/1952,Non +81,Tarn,03,3ème circonscription,3,16,F,CALLEJON,Virginie,26/10/1974,RN,Cadre de la fonction publique,Non,M,PILOZ,Jean-Paul,19/09/1958,Non +81,Tarn,03,3ème circonscription,4,24,F,CABANIS,Christelle,30/09/1975,RDG,"Professeur, profession scientifique",Non,F,BOUSQUET,Alexia,04/12/1972,Non +81,Tarn,03,3ème circonscription,5,13,M,TERLIER,Jean,02/03/1977,ENS,Profession libérale,Oui,F,DE GÉRANDO,Valérie,11/02/1976,Non +81,Tarn,03,3ème circonscription,6,34,F,REY,Sandra,25/10/1980,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BOKOBZA,Florent,22/11/1983,Non +81,Tarn,03,3ème circonscription,7,5,F,TRESSENS,Chantal,17/03/1955,DXG,Ancienne profession intermédiaire,Non,F,BERNOT,Bénédicte,30/01/1971,Non +81,Tarn,03,3ème circonscription,8,17,M,CARAYON,Guilhem,26/05/1999,LR,"Elève, étudiant",Non,F,SÈNES,Isabelle,27/12/1974,Non +81,Tarn,03,3ème circonscription,9,9,M,LAPORTE,Pierre,17/08/1961,DVD,Profession libérale,Non,F,LEROUX,Nathalie,05/01/1988,Non +81,Tarn,03,3ème circonscription,10,7,F,PONCE,Laura,28/11/1996,REC,Employé de commerce,Non,M,COUDERC,Luc,17/05/1957,Non +81,Tarn,03,3ème circonscription,11,35,F,DAUGE,Claire,07/06/1961,REG,Profession intermédiaire administrative de la fonction publique,Non,M,LARRUCHON,Jacques,16/09/1940,Non +82,Tarn-et-Garonne,01,1ère circonscription,1,11,M,DESCAZEAUX,Ghislain,23/12/1960,DVG,"Professeur, profession scientifique",Non,F,MORVAN,Liliane,01/01/1963,Non +82,Tarn-et-Garonne,01,1ère circonscription,2,17,M,PERRINAUD,Dylan,31/08/1998,DIV,"Elève, étudiant",Non,F,ROUSSELLE,Maeva,06/04/2001,Non +82,Tarn-et-Garonne,01,1ère circonscription,3,18,M,BENCHEKROUN,Chafik,27/07/1988,DSV,"Professeur, profession scientifique",Non,F,JUVIN,Léonie,14/07/1988,Non +82,Tarn-et-Garonne,01,1ère circonscription,4,15,F,SIMONIN,Catherine,26/08/1957,ENS,Ancien cadre,Non,M,AUDOUY,Damien,14/07/1980,Non +82,Tarn-et-Garonne,01,1ère circonscription,5,22,F,RABAULT,Valérie,25/04/1973,NUP,Ingénieur et cadre technique d'entreprise,Oui,M,TELLIER,Morgan,02/11/1979,Non +82,Tarn-et-Garonne,01,1ère circonscription,6,14,M,VIGOUROUX,Claude,11/11/1953,LR,Ancien cadre,Non,F,FORESTIE,Pauline,16/08/1982,Non +82,Tarn-et-Garonne,01,1ère circonscription,7,8,M,POMA,Pierre,04/10/1957,RN,Ancien agriculteur exploitant,Non,F,MAYRE,Sabine,06/04/1974,Non +82,Tarn-et-Garonne,01,1ère circonscription,8,2,M,BLANCO,Richard,27/04/1971,DXG,Cadre de la fonction publique,Non,M,HAAS,Vincent,27/03/1968,Non +82,Tarn-et-Garonne,01,1ère circonscription,9,16,F,LAFOND,Laurence,26/07/1967,DXG,"Profession de l'information, des arts et des spectacles",Non,M,PUJOL,Joël,12/07/1954,Non +82,Tarn-et-Garonne,01,1ère circonscription,10,13,M,GRILHAULT DES FONTAINES,Jean-François,27/06/1962,DIV,Artisan,Non,M,CROUSIER,Vincent,22/12/1979,Non +82,Tarn-et-Garonne,01,1ère circonscription,11,5,M,FRANCEZ-CHARLOT,Luc,25/09/1966,REC,Employé civil et agent de service de la fonction publique,Non,M,TORRENS,Cédric,17/10/1988,Non +82,Tarn-et-Garonne,02,2ème circonscription,1,10,M,ASTRUC,Christian,10/11/1949,ENS,Ancien agriculteur exploitant,Non,F,BAULU,Maryse,25/01/1954,Non +82,Tarn-et-Garonne,02,2ème circonscription,2,9,F,HAMELET,Marine,13/07/1967,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,F,GAYET,Stéphanie,23/01/1980,Non +82,Tarn-et-Garonne,02,2ème circonscription,3,20,F,AYMES,Claire,23/05/1958,REG,Profession libérale,Non,M,CARO,Alain,28/09/1967,Non +82,Tarn-et-Garonne,02,2ème circonscription,4,12,M,CASES,Frédéric,03/05/1972,REC,Policier et militaire,Non,F,LOPEZ,Sophie,19/03/1966,Non +82,Tarn-et-Garonne,02,2ème circonscription,5,6,F,RATSIMBA,Françoise,27/02/1956,DXG,Ancien cadre,Non,M,GOMILA,Stéphane,13/06/1971,Non +82,Tarn-et-Garonne,02,2ème circonscription,6,3,M,JOUGLAR,Jean-Yves,22/05/1954,DIV,"Ancien artisan, commerçant, chef d'entreprise",Non,M,DESMONS,Jacques,12/09/1949,Non +82,Tarn-et-Garonne,02,2ème circonscription,7,19,M,LEVIEUX,Cédric,23/04/1978,DIV,Ingénieur et cadre technique d'entreprise,Non,M,GOUGOUZIAN,Sylvain,13/12/1982,Non +82,Tarn-et-Garonne,02,2ème circonscription,8,4,F,MANCHADO,Nathalie,07/09/1964,NUP,Cadre de la fonction publique,Non,M,PETITOU,Yannick,02/05/1958,Non +82,Tarn-et-Garonne,02,2ème circonscription,9,7,F,PINEL,Sylvia,28/09/1977,RDG,Cadre de la fonction publique,Oui,M,DEPRINCE,Jean Luc,08/02/1957,Non +83,Var,01,1ère circonscription,1,37,F,BENOIT-LIZON,Françoise,16/05/1962,ECO,Profession libérale,Non,F,ROGIER,Alice,28/02/1991,Non +83,Var,01,1ère circonscription,2,21,M,NAVARRANNE,Amaury,14/03/1985,RN,Cadre administratif et commercial d'entreprise,Non,F,DE VITA,Camille,14/02/2001,Non +83,Var,01,1ère circonscription,3,4,M,CHENEVARD,Yannick,27/11/1959,ENS,Profession libérale,Non,F,LEVY,Geneviève,24/02/1948,Oui +83,Var,01,1ère circonscription,4,9,M,HABOUZIT,Eric,27/03/1987,NUP,"Professeur, profession scientifique",Non,F,JEZEQUEL,Gwennaelle,13/01/1981,Non +83,Var,01,1ère circonscription,5,29,M,VITEL,Philippe,22/02/1955,LR,Profession libérale,Non,F,HUBERT,Aline,19/04/1974,Non +83,Var,01,1ère circonscription,6,77,M,BOULANGER,Caroll,25/01/1952,DIV,Ancien cadre,Non,F,NADEAU,Aline,27/07/1959,Non +83,Var,01,1ère circonscription,7,56,M,HENO,Philippe,02/12/1963,REC,"Profession de l'information, des arts et des spectacles",Non,M,GREMARE,Benoît,18/06/1984,Non +83,Var,01,1ère circonscription,8,30,F,BALTY,Marie-Renée,28/05/1955,DXG,Profession intermédiaire de la santé et du travail social,Non,F,CAVAZZA,Corinne,14/07/1962,Non +83,Var,01,1ère circonscription,9,28,F,DUPONCHEL,Deborah,08/12/1969,DSV,Profession libérale,Non,M,PEYRAUD,Richard,24/02/1969,Non +83,Var,01,1ère circonscription,10,73,F,GIANOLZO,Marie,18/06/1951,ECO,Ancien employé,Non,M,SANTONI,Antoine,21/03/1956,Non +83,Var,02,2ème circonscription,1,14,F,LAVALETTE,Laure,16/04/1976,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CHEVROT,Régis,16/06/1950,Non +83,Var,02,2ème circonscription,2,38,F,CORNIL,Isaline,13/06/1985,NUP,"Professeur, profession scientifique",Non,M,SERVEL,Franck,11/07/1971,Non +83,Var,02,2ème circonscription,3,40,M,JUVING-BRUNET,Alexandre,21/03/1982,DXD,Chef d'entreprise de 10 salariés ou plus,Non,F,DUSSOL,Josephine,24/04/1973,Non +83,Var,02,2ème circonscription,4,72,F,PERRETO,Alexandra,25/03/1978,ECO,Employé civil et agent de service de la fonction publique,Non,M,ROURE,Daniel,24/11/1948,Non +83,Var,02,2ème circonscription,5,89,F,GAGO-CHIDAINE,Claire,20/07/1987,REG,Cadre de la fonction publique,Non,F,BONIFAY,Manon,18/12/1987,Non +83,Var,02,2ème circonscription,6,93,F,FOURNIER,Myriam,18/08/1980,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,ENGRAND,Xavier,04/02/1970,Non +83,Var,02,2ème circonscription,7,68,F,BERTRAND,Aline,29/11/1985,REC,Commerçant et assimilé,Non,M,PIERRE,Roger,28/04/1956,Non +83,Var,02,2ème circonscription,8,39,M,ARGENTO,Julien,30/05/1993,LR,Commerçant et assimilé,Non,M,CASTEL,Roger,16/03/1949,Non +83,Var,02,2ème circonscription,9,5,M,MUSSO,Ange,01/04/1966,ENS,Cadre administratif et commercial d'entreprise,Non,F,MONDONE,Valérie,04/08/1974,Non +83,Var,02,2ème circonscription,10,81,M,GONI,Jean-Claude,04/06/1962,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,BERVILLER,Isabelle,12/02/1967,Non +83,Var,02,2ème circonscription,11,32,M,BOISSIN,Laurent,12/03/1970,ECO,Employé civil et agent de service de la fonction publique,Non,M,GUARINO,Alain,22/10/1974,Non +83,Var,02,2ème circonscription,12,58,M,BLANC,Pierre,22/03/1963,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BARACCO,Jean-Pierre,29/05/1954,Non +83,Var,02,2ème circonscription,13,31,M,GHIOTTO,Jean-Michel,26/03/1951,DXG,Ancienne profession intermédiaire,Non,M,JEMIAI,Medhi,10/02/1988,Non +83,Var,03,3ème circonscription,1,11,F,ROLLAND,Delphine,11/06/1974,REG,Profession intermédiaire de la santé et du travail social,Non,M,COSTA,Pèire,21/01/1980,Non +83,Var,03,3ème circonscription,2,27,M,DOMINIAK,Alexis,25/08/1982,ECO,Ancien cadre,Non,F,SIRI,Santi,02/08/1980,Non +83,Var,03,3ème circonscription,3,87,M,DENIZART,Geoffrey,12/07/1977,DSV,Employé de commerce,Non,F,CHANTELOUP,Karoline,15/03/1979,Non +83,Var,03,3ème circonscription,4,80,M,FIMBEL,Florian,10/05/1991,DIV,Cadre administratif et commercial d'entreprise,Non,F,MORETEAUD,Isabelle,24/02/1964,Non +83,Var,03,3ème circonscription,5,88,F,BENYAMIN,Salomé,01/10/1999,REC,Employé de commerce,Non,F,CHANTEPIE,Mahée,14/08/2002,Non +83,Var,03,3ème circonscription,6,15,F,MONFORT,Isabelle,12/03/1960,ENS,Profession libérale,Non,M,STASSINOS,Hervé,30/01/1961,Non +83,Var,03,3ème circonscription,7,92,M,CALABRO,Olivier,02/11/1974,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,VACCARO,Pascal,12/06/1968,Non +83,Var,03,3ème circonscription,8,7,M,DEIDON,Pierre,08/09/1949,DXG,Cadre de la fonction publique,Non,M,BASTIDE,Yves,28/07/1974,Non +83,Var,03,3ème circonscription,9,59,F,PEIRONET BREMOND,Julia,18/02/1982,NUP,Profession libérale,Non,M,GUERIN,Benoit,02/06/1980,Non +83,Var,03,3ème circonscription,10,44,M,GRÉGOIRE,Michel,31/05/1957,ECO,Technicien,Non,F,BAUME,Michelle,30/04/1951,Non +83,Var,03,3ème circonscription,11,3,F,STORTZ,Magalie,26/06/1966,ECO,Employé civil et agent de service de la fonction publique,Non,F,FUZEAU,Milva,10/08/1962,Non +83,Var,03,3ème circonscription,12,57,F,RIALLAND,Valérie,12/11/1973,LR,"Professeur, profession scientifique",Non,M,DIAMANT,Julien,01/05/1979,Non +83,Var,03,3ème circonscription,13,24,M,RAMBAUD,Stephane,05/04/1960,RN,Ancien cadre,Non,M,EYNARD-TOMATIS,Jean-Michel,05/03/1958,Non +83,Var,04,4ème circonscription,1,63,F,MAUBORGNE,Sereine,03/05/1972,ENS,Profession libérale,Oui,M,PARLANTI,Alain,15/03/1953,Non +83,Var,04,4ème circonscription,2,20,F,RIBEIRO TEIXEIRA,Sabrina,18/02/1979,ECO,Employé civil et agent de service de la fonction publique,Non,F,RINGOT,Cindy,27/09/1978,Non +83,Var,04,4ème circonscription,3,53,F,CRISTOFANI-VIGLIONE,Sabine,30/09/1971,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,DHORNE,Bernard,07/12/1954,Non +83,Var,04,4ème circonscription,4,34,F,HAMEL,Marie-Christine,15/10/1953,LR,"Professeur, profession scientifique",Non,F,CERATO,Elisabeth,24/06/1958,Non +83,Var,04,4ème circonscription,5,6,F,MOREL,Pascale,25/02/1964,DXG,Profession intermédiaire de la santé et du travail social,Non,F,DELAGE,Hélène,08/05/1948,Non +83,Var,04,4ème circonscription,6,83,F,TERRAZZONI,Valérie,09/05/1970,ECO,Employé de commerce,Non,M,GRAVEREAUX,Jules,23/12/2001,Non +83,Var,04,4ème circonscription,7,70,F,SARRUT,Chantal,23/01/1947,ECO,Ancien cadre,Non,F,QUIN,Suzanne,12/02/1935,Non +83,Var,04,4ème circonscription,8,35,M,ZEMMOUR,Éric,31/08/1958,REC,"Profession de l'information, des arts et des spectacles",Non,M,LANSADE,Marc-Etienne,03/11/1973,Non +83,Var,04,4ème circonscription,9,62,M,LOTTIAUX,Philippe,14/08/1966,RN,Cadre de la fonction publique,Non,F,HOUSSAYS,Coline,10/12/1998,Non +83,Var,05,5ème circonscription,1,47,F,HOLLENDER,Nathalie,20/12/1969,DXD,Employé de commerce,Non,F,BOTELLA,Joëlle,17/02/1962,Non +83,Var,05,5ème circonscription,2,18,M,LAROCHE,Baptiste,30/12/1997,REC,Profession libérale,Non,F,CHICHE,Laureen,23/03/1982,Non +83,Var,05,5ème circonscription,3,90,M,HERVE,Joël,17/01/1952,ECO,Ancien cadre,Non,F,MOUSSA,Macha,22/12/1986,Non +83,Var,05,5ème circonscription,4,33,M,CARAGUEL,Robert,14/04/1955,NUP,Ancien cadre,Non,F,KHATTAR,Fatiha,26/04/1959,Non +83,Var,05,5ème circonscription,5,82,M,MAURIN,Jean-Marc,28/10/1958,LR,Cadre de la fonction publique,Non,F,LOMBARD,Danièle,17/06/1950,Non +83,Var,05,5ème circonscription,6,91,F,DES ACCORDS,Anne,08/11/1971,DVD,Cadre de la fonction publique,Non,M,CRISTIANO,Bernard,22/08/1967,Non +83,Var,05,5ème circonscription,7,13,F,AULOY,Brigitte,07/06/1964,DSV,Profession libérale,Non,M,LIO,Francesco,14/07/1953,Non +83,Var,05,5ème circonscription,8,48,M,KRANZER,Rémi,25/06/1966,DXG,"Professeur, profession scientifique",Non,F,RIZZO,Jeannine,13/04/1953,Non +83,Var,05,5ème circonscription,9,60,F,LECHANTEUX,Julie,22/12/1977,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CURTI,Fabrice,01/07/1980,Non +83,Var,05,5ème circonscription,10,74,M,MALOT,Charles,15/05/1987,ECO,Technicien,Non,F,HOUZE,Émilie,16/10/1992,Non +83,Var,05,5ème circonscription,11,55,M,MICHEL-KLEISBAUER,Philippe,06/03/1969,ENS,Profession libérale,Oui,F,BORNE,Chantal,08/12/1953,Non +83,Var,06,6ème circonscription,1,49,M,BOLLA,Alain,16/09/1959,NUP,Ancien ouvrier,Non,F,VINCENEUX,Sylvie,19/07/1955,Non +83,Var,06,6ème circonscription,2,8,M,GUEYRARD,Louis,23/12/1956,DXG,Technicien,Non,F,COEN,Sabrina,28/07/1968,Non +83,Var,06,6ème circonscription,3,79,M,THIERY,Jean-Christophe,20/02/1963,DIV,Employé civil et agent de service de la fonction publique,Non,F,BERNARD,Sophie,14/12/1978,Non +83,Var,06,6ème circonscription,4,94,F,LUCCIONI,Laurence,01/07/1966,ECO,Profession intermédiaire de la santé et du travail social,Non,M,GUERINI,Jean,22/11/1959,Non +83,Var,06,6ème circonscription,5,42,F,LOPEZ,Chantal,03/05/1960,DSV,Cadre administratif et commercial d'entreprise,Non,F,BENITO,Alexandra,06/01/1989,Non +83,Var,06,6ème circonscription,6,2,M,ROGIER,Daniel,27/04/1947,DVG,"Professeur, profession scientifique",Non,F,TEISSIER,Solange,17/01/1947,Non +83,Var,06,6ème circonscription,7,52,F,GOMEZ-BASSAC,Valérie,16/07/1969,ENS,"Professeur, profession scientifique",Oui,M,VALLOT,Philippe,05/04/1964,Non +83,Var,06,6ème circonscription,8,86,M,VIRRIAT,Joël,09/05/1956,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,F,PAULET-PUCCINI,Stéphanie,18/10/1977,Non +83,Var,06,6ème circonscription,9,75,M,CADE,Didier,30/01/1969,REG,Agriculteur sur moyenne exploitation,Non,F,MORIAZ,Stéphanie,22/06/1974,Non +83,Var,06,6ème circonscription,10,43,M,RIGAUD,Hervé,04/06/1975,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,FÉVRIER,Frédérique,15/08/1968,Non +83,Var,06,6ème circonscription,11,23,M,GILETTI,Frank,01/03/1973,RN,Employé de commerce,Non,M,CHEVET,Julien,11/10/1993,Non +83,Var,06,6ème circonscription,12,67,M,CONSTANS,Jean-Michel,14/06/1969,LR,Profession libérale,Non,F,CINQUINI,Laëtitia,21/09/1974,Non +83,Var,06,6ème circonscription,13,51,F,LALESART,Elisabeth,11/11/1967,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,CAMILLI,Julien,13/05/1995,Non +83,Var,07,7ème circonscription,1,19,F,PERRU,Marie-Eve,03/05/1959,DVC,Ancien cadre,Non,F,COTTINI,Laetitia,20/10/1980,Non +83,Var,07,7ème circonscription,2,76,F,KOSCIELSKI,Laurile,02/10/1984,ECO,Profession libérale,Non,M,BERENGUIER,Jean-Michel,16/09/1953,Non +83,Var,07,7ème circonscription,3,50,M,VINCENT,Romain,29/11/1981,LR,Ingénieur et cadre technique d'entreprise,Non,F,ONTENIENTE,Lydie,07/11/1984,Non +83,Var,07,7ème circonscription,4,71,M,IANNESSI,Charles,28/10/1989,REC,Cadre administratif et commercial d'entreprise,Non,F,JURY,Céline,02/12/1966,Non +83,Var,07,7ème circonscription,5,10,F,MUSCHOTTI,Cécile,30/10/1987,ENS,Cadre de la fonction publique,Non,M,JOSEPH,Jean-Paul,17/07/1955,Non +83,Var,07,7ème circonscription,6,61,F,BOUCHKARA,Basma,21/04/1969,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,M,BONIFACCINO,Enzo,11/07/2000,Non +83,Var,07,7ème circonscription,7,12,M,CANDIDO DA SILVA,Ricardo,25/03/1965,DXG,Artisan,Non,M,CIUTI,Patrice,25/04/1951,Non +83,Var,07,7ème circonscription,8,22,M,MONNIER,Louis,30/12/1991,ECO,Cadre administratif et commercial d'entreprise,Non,F,LECLAIRE,Elisa,18/09/1997,Non +83,Var,07,7ème circonscription,9,85,F,CLANET,Régine,01/07/1959,DSV,Cadre de la fonction publique,Non,M,VIGNAL,Hervé,15/04/1966,Non +83,Var,07,7ème circonscription,10,65,F,REANO,Bouchra,06/09/1977,DVG,"Professeur, profession scientifique",Non,M,CHOUKAR,Lahcen,22/04/1965,Non +83,Var,07,7ème circonscription,11,78,F,BERMUDEZ,Magali,07/03/1964,DIV,Cadre administratif et commercial d'entreprise,Non,M,GUILLAUME,Loïc,17/11/1981,Non +83,Var,07,7ème circonscription,12,26,M,BOCCALETTI,Frédéric,23/11/1973,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,DELYON,Isabelle,03/08/1955,Non +83,Var,08,8ème circonscription,1,17,M,JUBLOT,Guillaume,16/12/1974,LR,Cadre de la fonction publique,Non,M,PANIZZI,Frank,20/10/1969,Non +83,Var,08,8ème circonscription,2,41,M,REZK,Michel,23/02/1963,DIV,Ingénieur et cadre technique d'entreprise,Non,M,BACCI,Baptiste,13/11/1997,Non +83,Var,08,8ème circonscription,3,64,M,MARTIN,Ludovic,28/07/1974,DXG,Ingénieur et cadre technique d'entreprise,Non,M,KOZAK,Guy,08/06/1939,Non +83,Var,08,8ème circonscription,4,69,M,LE LOSTEC,Emmanuel,15/10/1967,ECO,Cadre de la fonction publique,Non,F,BARON,Martine,22/12/1967,Non +83,Var,08,8ème circonscription,5,46,F,CARBONNEL,Marie-Claire,27/09/1962,REG,Profession intermédiaire administrative de la fonction publique,Non,M,BERRUS,Estève,20/06/1952,Non +83,Var,08,8ème circonscription,6,84,M,SIMON,Stéphane,28/04/1969,DSV,Profession intermédiaire de la santé et du travail social,Non,M,POMMIER,Laurent,08/12/1968,Non +83,Var,08,8ème circonscription,7,66,F,RAZEAU,Claudine,13/12/1946,ECO,Ancienne profession intermédiaire,Non,F,ROBIONY,Viviane,10/10/1948,Non +83,Var,08,8ème circonscription,8,25,M,SCHRECK,Philippe,02/02/1972,RN,Profession libérale,Non,M,PELERIN,Eric,27/03/1960,Non +83,Var,08,8ème circonscription,9,36,F,JOUANNEAU,Catherine,16/12/1965,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,BOUYÉ,Alexandre,29/03/1999,Non +83,Var,08,8ème circonscription,10,54,M,MATRAS,Fabien,12/09/1984,ENS,"Professeur, profession scientifique",Oui,M,GIBAUD,François,12/02/1958,Non +83,Var,08,8ème circonscription,11,16,F,LUCIDO,Vanessa,02/07/1987,REC,Profession libérale,Non,M,BOUSQUIERES,Christian,05/07/1953,Non +83,Var,08,8ème circonscription,12,45,F,BOURREAU,Virginie,24/07/1983,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MOILIER,Catherine,03/04/1954,Non +84,Vaucluse,01,1ère circonscription,1,17,M,SCHMID,Denis,17/08/1948,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,F,GERARD,Nancy,08/06/1975,Non +84,Vaucluse,01,1ère circonscription,2,30,F,CHATENAY,Christine,27/05/1962,REG,Technicien,Non,M,VATON,Bernard,23/10/1949,Non +84,Vaucluse,01,1ère circonscription,3,57,M,PASCAL,Philippe,03/12/1956,DVG,Profession libérale,Non,F,CAVALLI,Christine,27/03/1950,Non +84,Vaucluse,01,1ère circonscription,4,18,F,NAU,Ophélie,14/01/2000,REC,"Elève, étudiant",Non,M,LIOTAUD,Serge,27/04/1961,Non +84,Vaucluse,01,1ère circonscription,5,29,M,LEMAIRE,Vincent,22/06/1989,DVG,Cadre de la fonction publique,Non,F,ROUSSIES,Judith,29/08/1987,Non +84,Vaucluse,01,1ère circonscription,6,39,F,ZITOUNI,Souad,23/04/1974,ENS,Profession libérale,Oui,M,PALY,Christian,30/03/1964,Non +84,Vaucluse,01,1ère circonscription,7,48,M,RIZZA,Salvator,02/06/1960,DXG,Ancien ouvrier,Non,M,GHOUALI,Nour-Eddine,16/02/1960,Non +84,Vaucluse,01,1ère circonscription,8,8,M,HEBRARD,Joris,31/05/1982,RN,Profession libérale,Non,F,JAOUEN,Catherine,05/04/1962,Non +84,Vaucluse,01,1ère circonscription,9,38,M,GESLIN,Stéphane,20/06/1974,DXG,"Professeur, profession scientifique",Non,F,PRUNET,Marie-José,04/01/1954,Non +84,Vaucluse,01,1ère circonscription,10,16,F,BROGI,Dominique,22/12/1965,LR,Ingénieur et cadre technique d'entreprise,Non,F,COURBET,Marie-Laure,16/08/1965,Non +84,Vaucluse,01,1ère circonscription,11,19,F,SEDDIK,Kheira,24/09/1964,DVD,Cadre administratif et commercial d'entreprise,Non,M,DEGIRMENCI,Adem,06/04/1988,Non +84,Vaucluse,01,1ère circonscription,12,40,M,FARYSSY,Farid,02/02/1978,NUP,Profession libérale,Non,F,CAILLÉ,Mathilde,11/09/1989,Non +84,Vaucluse,02,2ème circonscription,1,2,F,ALBERT,Sophia,30/10/1971,ECO,Profession libérale,Non,F,LAURENT,Solene,22/03/2001,Non +84,Vaucluse,02,2ème circonscription,2,51,M,MANGIAVILLANO,Gérard,10/07/1948,DXG,Ancienne profession intermédiaire,Non,F,GARDET,Catherine,28/11/1949,Non +84,Vaucluse,02,2ème circonscription,3,45,M,RIGAULT,Stanislas,16/05/1999,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,F,MARÉCHAL,Marion,10/12/1989,Non +84,Vaucluse,02,2ème circonscription,4,9,F,AUZANOT,Bénédicte,05/08/1972,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DURY,Valéry,16/06/1974,Non +84,Vaucluse,02,2ème circonscription,5,10,M,DUCHEMIN,Sébastien,03/04/1968,DSV,Cadre de la fonction publique,Non,F,FANCHON,Christelle,16/05/1988,Non +84,Vaucluse,02,2ème circonscription,6,22,F,VIALA,Sylvie,07/07/1964,ENS,"Professeur, profession scientifique",Non,M,BRUXELLE,Eric,22/05/1957,Non +84,Vaucluse,02,2ème circonscription,7,31,F,LEON,Joséfa,21/10/1947,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,CASANOVA,Alain,27/07/1963,Non +84,Vaucluse,02,2ème circonscription,8,20,F,AMOROS,Elisabeth,23/07/1949,LR,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,CRESP,Delphine,03/12/1977,Non +84,Vaucluse,02,2ème circonscription,9,49,M,GUILLAUMIN,Eric,08/06/1956,DVC,Commerçant et assimilé,Non,F,TALLIEUX,Andréa,30/10/1977,Non +84,Vaucluse,02,2ème circonscription,10,21,M,SANDOZ,François,15/04/1982,NUP,Cadre administratif et commercial d'entreprise,Non,F,RODRIGUEZ,Myriam,22/01/1967,Non +84,Vaucluse,02,2ème circonscription,11,50,F,PILLER,Agnès,19/09/1959,ECO,Commerçant et assimilé,Non,F,RUBIN,Claire,17/10/1944,Non +84,Vaucluse,02,2ème circonscription,12,46,M,GAIFFE,Germain,25/10/1967,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,CARON,Christophe,11/10/1972,Non +84,Vaucluse,03,3ème circonscription,1,23,M,MORENAS,Adrien,01/01/1982,ENS,Profession libérale,Oui,F,CONRAD,Emilie,20/06/1988,Non +84,Vaucluse,03,3ème circonscription,2,4,F,ROGIER,Patricia,16/06/1959,ECO,Ancien employé,Non,F,PASCAL,Noémie,08/05/1978,Non +84,Vaucluse,03,3ème circonscription,3,32,F,DUENAS,Muriel,25/06/1960,NUP,Employé de commerce,Non,M,SAFON,Olivier,06/05/1977,Non +84,Vaucluse,03,3ème circonscription,4,3,M,DE LÉPINAU,Hervé,08/06/1969,RN,Profession libérale,Non,F,LAUZEN-JEUDY,Fanny,28/08/1980,Non +84,Vaucluse,03,3ème circonscription,5,33,M,TONNAIRE,Christophe,17/07/1975,LR,Cadre administratif et commercial d'entreprise,Non,F,RAYNAUD,Audrey,30/07/1995,Non +84,Vaucluse,03,3ème circonscription,6,24,M,GONTARD,Rolland,12/02/1973,DIV,Commerçant et assimilé,Non,F,BIGOTTE,Laurence,25/10/1959,Non +84,Vaucluse,03,3ème circonscription,7,54,F,ROUGEAU,Sarah,14/08/1992,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,HAESSIG,Thomas,16/10/1976,Non +84,Vaucluse,03,3ème circonscription,8,55,M,CHARBONNEL,Laurent,26/06/1982,DSV,Commerçant et assimilé,Non,M,GRECO,Karl-Alexi,27/06/2001,Non +84,Vaucluse,03,3ème circonscription,9,42,M,HELLEU,Bertrand,02/05/1946,DXG,Ancien cadre,Non,F,ARACIL,Joëlle,08/06/1970,Non +84,Vaucluse,03,3ème circonscription,10,41,F,BONELLO,Chantal,29/01/1954,DXG,Ancienne profession intermédiaire,Non,M,HÖCHT,Pablo,06/01/1981,Non +84,Vaucluse,03,3ème circonscription,11,58,F,VIVIER,Solène,03/09/1993,REG,Cadre de la fonction publique,Non,M,BADINIER,Rémi,15/11/1994,Non +84,Vaucluse,03,3ème circonscription,12,34,M,MAUNIER,Bernard,03/12/1958,ECO,Militaire du contingent,Non,F,D'AMBROSIO,Arlette,16/07/1938,Non +84,Vaucluse,03,3ème circonscription,13,11,M,MONTAGARD,Christian,30/09/1959,REC,Ancien cadre,Non,F,GUILLAUME,Florence,01/05/1979,Non +84,Vaucluse,04,4ème circonscription,1,43,F,RICHARD,Violaine,01/05/1972,ENS,Cadre administratif et commercial d'entreprise,Non,M,BOULETIN,Jérôme,26/06/1968,Non +84,Vaucluse,04,4ème circonscription,2,59,M,WAILLY,Jean-Marie,08/12/1970,DIV,Commerçant et assimilé,Non,M,ADAMO,Joseph,16/06/1964,Non +84,Vaucluse,04,4ème circonscription,3,56,M,GOVERNATORI,Marc,06/10/1981,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,DALMASSO,Amandine,25/04/1985,Non +84,Vaucluse,04,4ème circonscription,4,12,M,ROSSIN,Roger,21/02/1980,LR,Cadre de la fonction publique,Non,M,PROTO,Ronan,17/03/1967,Non +84,Vaucluse,04,4ème circonscription,5,35,F,HAUTANT,Anne-Marie,07/01/1956,REG,Profession libérale,Non,M,OPDENACKER,Michaël,09/01/1972,Non +84,Vaucluse,04,4ème circonscription,6,52,F,CARVOU,Betty,17/02/1975,ECO,Cadre administratif et commercial d'entreprise,Non,M,LAPEYRE,Sébastien,11/12/2000,Non +84,Vaucluse,04,4ème circonscription,7,15,M,PETILLOT,Nicolas,25/05/1973,DXG,"Professeur, profession scientifique",Non,M,BELLOT,Olivier,25/08/1977,Non +84,Vaucluse,04,4ème circonscription,8,25,M,RIGORD,Alexandre,31/03/2001,ECO,Chômeur n'ayant jamais travaillé,Non,F,BIGNON,Cécile,19/04/1977,Non +84,Vaucluse,04,4ème circonscription,9,13,F,LORHO,Marie-France,15/12/1964,RN,Cadre administratif et commercial d'entreprise,Oui,M,DE BEAUREGARD,Philippe,27/10/1965,Non +84,Vaucluse,04,4ème circonscription,10,14,F,GALVEZ,Monia,21/05/1963,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DJOUMER,Lounes,20/02/1986,Non +84,Vaucluse,05,5ème circonscription,1,37,M,BOURDIER,David,22/03/1971,DVG,Cadre administratif et commercial d'entreprise,Non,F,DALE BOURDIER,Jennifer,24/02/1974,Non +84,Vaucluse,05,5ème circonscription,2,28,F,CELCE,Céline,12/06/1973,NUP,Cadre de la fonction publique,Non,M,THEROND,Laurent,10/07/1963,Non +84,Vaucluse,05,5ème circonscription,3,47,M,CHALENÇON,Christophe,17/11/1966,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,AMARACHE,Samira,15/11/1976,Non +84,Vaucluse,05,5ème circonscription,4,44,M,PINON,Jean-Paul,21/09/1955,ECO,Profession libérale,Non,F,ROUX,Isabelle,23/10/1970,Non +84,Vaucluse,05,5ème circonscription,5,60,M,VINCETTI,Jean,13/09/1947,ECO,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,ARMAND,Frédérique,01/12/1976,Non +84,Vaucluse,05,5ème circonscription,6,5,M,AUBERT,Julien,11/06/1978,LR,Cadre de la fonction publique,Oui,F,DUPAQUIER,Corinne,10/08/1963,Non +84,Vaucluse,05,5ème circonscription,7,53,M,TRICHAUD,Jérémy,24/08/1997,DSV,"Elève, étudiant",Non,F,VERSINI-CABITTA,Sara-Louise,06/08/2000,Non +84,Vaucluse,05,5ème circonscription,8,36,F,RODINSON,Claudine,18/02/1943,DXG,Ancien employé,Non,M,WUJEK,Regis,03/08/1968,Non +84,Vaucluse,05,5ème circonscription,9,27,M,LOVISOLO,Jean-François,15/11/1968,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,LALAURIE,Olivia,28/08/1981,Non +84,Vaucluse,05,5ème circonscription,10,7,F,THOMAS DE MALEVILLE,Marie,21/12/1979,RN,Profession libérale,Non,M,MATHIEU,Aymonn,05/12/1977,Non +84,Vaucluse,05,5ème circonscription,11,26,F,CHAVRIER,Catherine,01/12/1961,REC,Profession libérale,Non,M,LE HIR,Charles,12/06/1998,Non +85,Vendée,01,1ère circonscription,1,11,F,N'DONG,Lilas,09/03/1982,RN,Profession libérale,Non,M,DEBERGUE,Gérard,04/01/1954,Non +85,Vendée,01,1ère circonscription,2,9,M,CAILLAUD,Laurent,01/11/1968,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,DURAND FLAIRE,Roselyne,03/09/1958,Non +85,Vendée,01,1ère circonscription,3,51,F,SALAMA,Aya,03/11/2003,DVG,"Elève, étudiant",Non,M,PINON,Anthony,12/10/1993,Non +85,Vendée,01,1ère circonscription,4,12,M,PILET,Vincent,23/05/1970,DVD,Commerçant et assimilé,Non,M,JAUNET,Dany,05/09/1979,Non +85,Vendée,01,1ère circonscription,5,40,M,HEE,Jean-François,01/06/1967,DSV,Artisan,Non,M,ROGIER,Pascal Alexandre,29/08/1960,Non +85,Vendée,01,1ère circonscription,6,37,M,LATOMBE,Philippe,21/04/1975,ENS,Cadre administratif et commercial d'entreprise,Oui,M,SCHNEL,Maximilien,07/08/1986,Non +85,Vendée,01,1ère circonscription,7,20,F,ETONNO,Lucie,22/04/1986,NUP,Employé de commerce,Non,M,RAFFIN,Tony,16/09/1974,Non +85,Vendée,01,1ère circonscription,8,22,M,MAUVOISIN-DELAVAUD,Eric,26/08/1964,REC,"Profession de l'information, des arts et des spectacles",Non,F,PAOLI,Valérie,24/04/1969,Non +85,Vendée,01,1ère circonscription,9,33,M,DUBOIS,Arthur,30/06/1986,ECO,Technicien,Non,F,DUBOIS,Mathilde,10/06/1986,Non +85,Vendée,01,1ère circonscription,10,19,M,DREYFUS,Etienne,14/11/1980,DVG,Technicien,Non,F,FAURE,Christiane,03/03/1962,Non +85,Vendée,01,1ère circonscription,11,14,M,ROBIN,Gilles,05/03/1957,DXG,Ancienne profession intermédiaire,Non,M,FERRÉ,Cyrille,12/10/1978,Non +85,Vendée,01,1ère circonscription,12,32,M,BOUYER,Alain,25/04/1959,ECO,Ancienne profession intermédiaire,Non,F,LE GAL LA SALLE,Annie,07/06/1965,Non +85,Vendée,02,2ème circonscription,1,42,F,ORIZET-VIEILLEFOND,Sophie,07/09/1965,DVD,Profession intermédiaire administrative et commerciale des entreprises,Non,M,BARIL,Joël,03/06/1948,Non +85,Vendée,02,2ème circonscription,2,29,M,MARCHAND,Jérôme,05/02/1966,ECO,Technicien,Non,F,MARCHAND,Patricia,26/04/1957,Non +85,Vendée,02,2ème circonscription,3,38,M,LOISEAU,Patrick,08/05/1960,DVC,Cadre de la fonction publique,Oui,F,TESSON,Brigitte,06/01/1959,Non +85,Vendée,02,2ème circonscription,4,41,F,GRÉAU,Ninon,18/12/1999,ECO,"Elève, étudiant",Non,M,BRIDONNEAU,Titouan,24/08/1999,Non +85,Vendée,02,2ème circonscription,5,15,F,BARILLOT,Sophie,14/11/1961,DXG,Ancien employé,Non,M,GUYON,Stéphane,05/05/1969,Non +85,Vendée,02,2ème circonscription,6,52,F,GHOUALI,Célia,06/08/1996,DIV,Profession intermédiaire de la santé et du travail social,Non,M,LEMOINE,Arthur,07/05/1985,Non +85,Vendée,02,2ème circonscription,7,6,M,DE RUGY,Maxence,25/10/1982,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MOINET,Isabelle,07/06/1958,Non +85,Vendée,02,2ème circonscription,8,24,F,NEVEUX,Brigitte,09/05/1944,REC,Ancienne profession intermédiaire,Non,M,DE CHANTERAC,François,14/12/1958,Non +85,Vendée,02,2ème circonscription,9,23,F,BELLAMY,Béatrice,20/10/1966,ENS,Cadre administratif et commercial d'entreprise,Non,M,CAYEUX,Philippe,09/11/1971,Non +85,Vendée,02,2ème circonscription,10,34,M,JAMONNEAU,Benoît,15/12/1964,DVG,"Contremaître, agent de maîtrise",Non,F,GUILLET,Stéphanie,14/12/1967,Non +85,Vendée,02,2ème circonscription,11,25,M,HELARY,Nicolas,04/10/1978,NUP,Employé civil et agent de service de la fonction publique,Non,F,BOUTET,Elisabeth,11/09/1969,Non +85,Vendée,02,2ème circonscription,12,26,F,CARPENTIER,Sophie,29/06/1969,DSV,Profession intermédiaire de la santé et du travail social,Non,F,LEBON,Cindy,19/10/1984,Non +85,Vendée,02,2ème circonscription,13,2,M,LALOUE,Franck,29/09/1966,RN,Cadre de la fonction publique,Non,F,GARWIG,Jessica,08/08/1990,Non +85,Vendée,03,3ème circonscription,1,10,F,FILLET,Corinne,25/11/1961,RN,Employé civil et agent de service de la fonction publique,Non,M,SANTOS,François,09/04/1997,Non +85,Vendée,03,3ème circonscription,2,53,F,GUÉNOLÉ,Armelle,30/12/1955,DSV,Ancienne profession intermédiaire,Non,M,CHARRIEAU,Robert,02/12/1950,Non +85,Vendée,03,3ème circonscription,3,5,M,BLANCHARD,Alain,31/07/1981,LR,Cadre administratif et commercial d'entreprise,Non,F,RENAUD,Denise,09/06/1952,Non +85,Vendée,03,3ème circonscription,4,16,M,FESTIEN,Philippe,07/01/1959,DXG,Ancien ouvrier,Non,M,NICOLAS,Jean-François,02/08/1964,Non +85,Vendée,03,3ème circonscription,5,31,M,MAUGER,Aurélien,27/09/1990,NUP,Ouvrier qualifié de type industriel,Non,F,MARCHAND,Pascale,26/03/1957,Non +85,Vendée,03,3ème circonscription,6,47,M,ANDRE,Benjamin,07/03/1999,ECO,"Elève, étudiant",Non,F,CHARLOS,Sonia,04/12/1971,Non +85,Vendée,03,3ème circonscription,7,39,M,MOREAU,Jean-Baptiste,17/05/1956,DVD,Ancien cadre,Non,M,LAIDIN,Jean-Michel,17/09/1959,Non +85,Vendée,03,3ème circonscription,8,30,M,BUCHOU,Stéphane,14/03/1974,ENS,Cadre administratif et commercial d'entreprise,Oui,F,ROZO-LUCAS,Orlane,23/08/1990,Non +85,Vendée,04,4ème circonscription,1,8,M,DALCANTARA,Bruno,31/01/1960,RN,Ancien ouvrier,Non,M,FILLET,Jean-Patrick,17/10/1955,Non +85,Vendée,04,4ème circonscription,2,50,M,BABARIT,Théodore,25/04/1999,ECO,"Elève, étudiant",Non,M,GELOT,Ludovic,31/05/1984,Non +85,Vendée,04,4ème circonscription,3,48,M,UMLIL,Amine,11/01/1971,DSV,"Professeur, profession scientifique",Non,F,ONDET,Edith,03/08/1959,Non +85,Vendée,04,4ème circonscription,4,28,M,MAROLLEAU,Erick,16/03/1952,DVD,Ancien cadre,Non,M,PAVAGEAU,Daniel,22/04/1960,Non +85,Vendée,04,4ème circonscription,5,21,F,BESSE,Véronique,11/08/1963,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,HERVOUET,Eric,13/05/1973,Non +85,Vendée,04,4ème circonscription,6,3,M,LE BARS,Denis,02/02/1968,DVD,"Profession de l'information, des arts et des spectacles",Non,M,MOREAU,Florent,25/05/1981,Non +85,Vendée,04,4ème circonscription,7,7,F,FOUQUET,Virginie,23/10/1979,DVG,Commerçant et assimilé,Non,M,GUEDON,Daniel,06/08/1957,Non +85,Vendée,04,4ème circonscription,8,17,F,BOUR,Claude,09/05/1959,DXG,Ancien ouvrier,Non,M,DELEBARRE,Christian,14/03/1971,Non +85,Vendée,04,4ème circonscription,9,43,F,SAUVÊTRE,Céline,08/01/1982,NUP,Employé civil et agent de service de la fonction publique,Non,M,RONDEAU,Valentin,15/10/1986,Non +85,Vendée,04,4ème circonscription,10,49,F,LEGUILLE-BALLOY,Martine,06/09/1957,ENS,Profession libérale,Oui,M,BARON,Adrien,27/03/1988,Non +85,Vendée,05,5ème circonscription,1,44,M,JIMENEZ,Jordi,06/05/1982,DXG,Profession intermédiaire de la santé et du travail social,Non,F,ARNAUD,Cécile,17/05/1982,Non +85,Vendée,05,5ème circonscription,2,35,M,HENRIET,Pierre,26/11/1991,ENS,"Professeur, profession scientifique",Oui,F,GROLLEAU,Magalie,11/08/1973,Non +85,Vendée,05,5ème circonscription,3,18,F,RUAULT,Béatrice,29/09/1964,DXG,Personnel des services directs aux particuliers,Non,M,LEMOINE,Frédéric,04/02/1970,Non +85,Vendée,05,5ème circonscription,4,27,M,DEBOUT,Benjamin,04/05/1988,ECO,Profession libérale,Non,M,SPAHN,Julien,09/07/1990,Non +85,Vendée,05,5ème circonscription,5,45,F,THIBAUD-LALERE,Thimothée,02/05/1995,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PINAUD,Enzo,27/08/1998,Non +85,Vendée,05,5ème circonscription,6,36,M,PERROY,Pierre,28/09/1974,DVD,"Contremaître, agent de maîtrise",Non,M,BOURRIER,Yves,17/06/1952,Non +85,Vendée,05,5ème circonscription,7,13,F,DELATRE,Sandrine,03/05/1975,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,VERMEULEN,Antoine,16/04/1993,Non +85,Vendée,05,5ème circonscription,8,54,M,LEGENTILHOMME,Jacqueline,26/08/1961,DSV,Artisan,Non,M,LABAUT,Yvan,30/07/1968,Non +85,Vendée,05,5ème circonscription,9,4,F,MAGNIN,Isabelle,16/04/1974,RN,Personnel des services directs aux particuliers,Non,M,VALOTEAU,Jean-Claude,17/10/1953,Non +85,Vendée,05,5ème circonscription,10,46,F,THIBAUD,Yveline,17/06/1959,LR,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,HERAUD,Michel,25/06/1954,Non +86,Vienne,01,1ère circonscription,1,20,M,GIRAUDET,Alexandre,14/08/1977,ECO,Employé de commerce,Non,F,FLORES-HIDALGO,Guisela,08/12/1982,Non +86,Vienne,01,1ère circonscription,2,15,F,BALLET-BLU,Françoise,09/03/1964,ENS,Profession libérale,Oui,M,ROUET,Pierre-Etienne,09/04/1983,Non +86,Vienne,01,1ère circonscription,3,41,F,DE MASCUREAU,Marie-Aline,26/12/1977,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,TOURNEMINE,Charles,25/09/1990,Non +86,Vienne,01,1ère circonscription,4,5,M,COURTOIS,Kevin,24/04/1992,RN,Ouvrier qualifié de type industriel,Non,F,LACOMBE,Maryse,02/05/1948,Non +86,Vienne,01,1ère circonscription,5,2,M,GAILLARD,Ludovic,11/05/1965,DXG,"Professeur, profession scientifique",Non,F,DEHON,Nolwenn,28/04/1987,Non +86,Vienne,01,1ère circonscription,6,27,F,BELLUCO,Lisa,20/07/1988,NUP,Cadre de la fonction publique,Non,M,PATRIER,Stéphane,17/06/1960,Non +86,Vienne,01,1ère circonscription,7,13,F,FARINE,Elise,01/06/1982,ECO,Profession libérale,Non,F,FARINE-BODET,Alexandrine,31/05/1978,Non +86,Vienne,01,1ère circonscription,8,44,M,LAADNANI,Idriss,10/01/1973,DVG,"Professeur, profession scientifique",Non,M,ABRO,Ahmed,01/01/1963,Non +86,Vienne,01,1ère circonscription,9,31,M,ASSOUMANI,Jeannot,17/10/1961,DIV,Commerçant et assimilé,Non,M,KASSIM,Ben,01/10/1982,Non +86,Vienne,01,1ère circonscription,10,17,F,JARRY,Corine,08/12/1961,DSV,Technicien,Non,M,BOUR,Jean-Luc,18/05/1956,Non +86,Vienne,01,1ère circonscription,11,14,M,NEVEUX,Jérôme,01/08/1974,UDI,Cadre administratif et commercial d'entreprise,Non,F,PLISSON,Céline,19/05/1979,Non +86,Vienne,02,2ème circonscription,1,8,M,MAYENGA,Carridy,01/12/1994,ECO,"Elève, étudiant",Non,F,COTTEREAU,Albane,29/01/1997,Non +86,Vienne,02,2ème circonscription,2,35,M,BOUCHAREB,Frédéric,25/01/1960,RDG,Profession libérale,Non,F,ASSAYHI,Latifa,02/12/1977,Non +86,Vienne,02,2ème circonscription,3,23,F,PROST,Marie Dolores,16/05/1960,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,F,DEDRYVER,Nicole,14/01/1962,Non +86,Vienne,02,2ème circonscription,4,33,F,SOUMAILLE,Valérie,10/01/1968,NUP,"Professeur, profession scientifique",Non,M,LÉVÊQUE,Aladin,07/06/1991,Non +86,Vienne,02,2ème circonscription,5,40,M,DESSAUX,Aurélien,19/12/1991,DXD,Profession intermédiaire administrative et commerciale des entreprises,Non,M,LECAUSSIN,Nicolas,09/06/1969,Non +86,Vienne,02,2ème circonscription,6,39,F,DU CHAMBON,Roselyne,17/04/1956,DSV,Ancien cadre,Non,M,KARAMAT,Mounir,21/03/1986,Non +86,Vienne,02,2ème circonscription,7,4,F,PHILIPPE,Céline,31/05/1979,RN,Commerçant et assimilé,Non,M,DUBOIS,Julien,02/01/1999,Non +86,Vienne,02,2ème circonscription,8,45,F,FERREIRA,Maryse,24/12/1973,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,KARROUM,Driss,10/10/1954,Non +86,Vienne,02,2ème circonscription,9,11,F,CHAUVIN,Agnes,05/07/1974,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,BARERE,François,14/08/1967,Non +86,Vienne,02,2ème circonscription,10,19,M,HOULIÉ,Sacha,08/10/1988,ENS,Profession libérale,Oui,F,GIRARD,Sandra,13/11/1973,Non +86,Vienne,02,2ème circonscription,11,29,M,OUSSENI,Soifidine,01/01/1974,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,AUGER,Sarah,15/06/1974,Non +86,Vienne,03,3ème circonscription,1,21,M,LEPERCQ,Olivier,17/03/1966,REC,Commerçant et assimilé,Non,F,REMONDIERE-ROUX,Géraldine,06/01/1982,Non +86,Vienne,03,3ème circonscription,2,7,F,JOUAN,Soizic,03/01/1970,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,CHAUVIN,Gérard,01/06/1946,Non +86,Vienne,03,3ème circonscription,3,26,M,BOCK,François,08/02/1971,DVD,Cadre administratif et commercial d'entreprise,Non,F,BURBAUD,Marie-Catherine,25/04/1960,Non +86,Vienne,03,3ème circonscription,4,10,F,BORTOLOTTI,Sabine,25/11/1977,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MONNAIS,Xavier,10/02/1962,Non +86,Vienne,03,3ème circonscription,5,32,M,ZERBIB,Léonard,24/11/1993,LR,Profession libérale,Non,F,LARDEAU-MAUXION,Sylviane,24/09/1965,Non +86,Vienne,03,3ème circonscription,6,36,M,LECAMP,Pascal,06/04/1958,ENS,Cadre administratif et commercial d'entreprise,Non,F,GIRAUDEAU,Virginie Célia,03/03/1984,Non +86,Vienne,03,3ème circonscription,7,38,M,VALENTE,Jason,31/08/1990,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,F,GIRAUD,Dominique,20/12/1954,Non +86,Vienne,03,3ème circonscription,8,34,M,CLÉMENT,Jean-Michel,31/10/1954,DVG,Profession libérale,Oui,F,LE MEUR,Françoise,14/02/1955,Non +86,Vienne,03,3ème circonscription,9,12,M,SOULAT,Eric,11/07/1972,RN,Employé civil et agent de service de la fonction publique,Non,F,GOUBAULT,Véronique,04/01/1969,Non +86,Vienne,03,3ème circonscription,10,42,F,BARBOT,Isabelle,02/02/1971,ECO,Employé de commerce,Non,M,CRUZEL,Alain,31/01/1965,Non +86,Vienne,03,3ème circonscription,11,9,M,MINOT,Patrick,05/08/1972,DVD,Agriculteur sur moyenne exploitation,Non,M,ZANARDO,Jean-Louis,21/09/1965,Non +86,Vienne,03,3ème circonscription,12,30,F,BOUTAYEB,Fatiha,18/03/1973,DIV,Commerçant et assimilé,Non,M,ABDOU,Daoud,01/01/1957,Non +86,Vienne,04,4ème circonscription,1,18,M,TURQUOIS,Nicolas,26/07/1972,ENS,Agriculteur sur grande exploitation,Oui,F,DAUGE,Valérie,14/12/1967,Non +86,Vienne,04,4ème circonscription,2,28,M,AUGER,Fabrice,21/01/1972,DIV,Commerçant et assimilé,Non,F,AUGER,Eva,28/01/1999,Non +86,Vienne,04,4ème circonscription,3,43,M,LIEUTET,Gerard,23/03/1949,REG,"Ancien artisan, commerçant, chef d'entreprise",Non,M,KHNAFO,Dalhia,09/01/1974,Non +86,Vienne,04,4ème circonscription,4,16,F,PIMOT,Sylvie,27/04/1975,ECO,Employé civil et agent de service de la fonction publique,Non,F,BOURREAU,Alexia,24/06/1996,Non +86,Vienne,04,4ème circonscription,5,37,M,GUICHARD,Patrick,07/03/1954,DSV,Ancien cadre,Non,F,DE MAESTRI,Marie-José,05/04/1963,Non +86,Vienne,04,4ème circonscription,6,6,M,VILLERET,Patrice,24/06/1962,DXG,Ouvrier qualifié de type industriel,Non,F,MARAICHER,Sylvie,22/09/1972,Non +86,Vienne,04,4ème circonscription,7,3,F,LATUS,Marion,10/02/1993,RN,Profession intermédiaire de la santé et du travail social,Non,M,TOULET,Jérôme,21/08/1976,Non +86,Vienne,04,4ème circonscription,8,25,M,CARTIER,Flavien,30/08/1993,NUP,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,BENCHERNINE,Nadia,25/11/1965,Non +86,Vienne,04,4ème circonscription,9,22,M,VERDIN,Alain,20/03/1953,REC,Policier et militaire,Non,F,DOMINGUEZ,Michèle,09/08/1956,Non +87,Haute-Vienne,01,1ère circonscription,1,13,F,TAMBO,Stéphanie,15/12/1975,DVD,Profession libérale,Non,M,RAYNAUD,Xavier,27/04/1969,Non +87,Haute-Vienne,01,1ère circonscription,2,2,F,MARQUET,Fabienne,09/07/1971,REC,Cadre administratif et commercial d'entreprise,Non,M,ROUFFIGNAC,Jean,19/05/1950,Non +87,Haute-Vienne,01,1ère circonscription,3,7,M,VALIERE-VIALEIX,Jean,13/01/1976,LR,Profession libérale,Non,F,BELEZY,Géraldine,14/06/1989,Non +87,Haute-Vienne,01,1ère circonscription,4,20,F,GÉDOUX,Christiane,14/09/1951,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,LOUIC,Cyril,16/08/1972,Non +87,Haute-Vienne,01,1ère circonscription,5,14,F,BEAUDOUIN HUBIERE,Sophie,20/11/1972,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,NEGRIER,Isabelle,10/08/1964,Non +87,Haute-Vienne,01,1ère circonscription,6,19,M,PROVOST,David,11/05/1992,DIV,Technicien,Non,F,AMSELEK JAQUET,Louise,18/05/1984,Non +87,Haute-Vienne,01,1ère circonscription,7,10,F,FAUCON,Elisabeth,22/11/1965,DXG,"Professeur, profession scientifique",Non,F,DESROCHES,Isabelle,12/12/1954,Non +87,Haute-Vienne,01,1ère circonscription,8,15,M,MAUDET,Damien,14/11/1996,NUP,Cadre administratif et commercial d'entreprise,Non,F,SERIER,Cassandra,14/08/1993,Non +87,Haute-Vienne,02,2ème circonscription,1,17,M,DELAUTRETTE,Stéphane,20/09/1972,NUP,Ingénieur et cadre technique d'entreprise,Non,F,RABETEAU,Emilie,02/03/1981,Non +87,Haute-Vienne,02,2ème circonscription,2,5,M,BOST,Jean Marie,16/02/1955,LR,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BATTISTINI,Benjamin,29/04/1983,Non +87,Haute-Vienne,02,2ème circonscription,3,25,M,COGNERAS,Cyril,20/05/1972,REG,Employé civil et agent de service de la fonction publique,Non,F,GUILLOT,Corinne,06/01/1978,Non +87,Haute-Vienne,02,2ème circonscription,4,22,M,BONNET,Jean-Luc,18/03/1967,DVC,Cadre administratif et commercial d'entreprise,Non,M,VENTEAU,Bertrand,17/01/1979,Non +87,Haute-Vienne,02,2ème circonscription,5,3,F,ROUSSIE,Claudine,13/12/1950,DXG,Ancienne profession intermédiaire,Non,F,CHAPELOT,Monique,09/01/1956,Non +87,Haute-Vienne,02,2ème circonscription,6,23,M,GENDARME,Daniel,09/08/1982,DVG,Artisan,Non,F,CORNU,Micheline,09/08/1968,Non +87,Haute-Vienne,02,2ème circonscription,7,21,F,MINGUET,Sabrina,23/08/1991,RN,Profession intermédiaire de la santé et du travail social,Non,M,LECHEVALLIER,Christophe,23/12/1967,Non +87,Haute-Vienne,02,2ème circonscription,8,16,F,CARRE,Gisèle,29/05/1955,REC,Profession libérale,Non,M,DEVAUD,Jean-Michel,19/09/1949,Non +87,Haute-Vienne,02,2ème circonscription,9,24,F,ZAITER,Shérazade,12/03/1973,ENS,Profession libérale,Non,M,PAROT,Geoffrey,05/01/1976,Non +87,Haute-Vienne,03,3ème circonscription,1,18,M,TOULZA,Gilles,22/06/1959,LR,Cadre administratif et commercial d'entreprise,Non,F,MÉZILLE,Nathalie,01/05/1972,Non +87,Haute-Vienne,03,3ème circonscription,2,8,M,FREYCHET,Albin,10/01/1992,RN,Cadre de la fonction publique,Non,M,WILLY,Jonathan,16/04/1986,Non +87,Haute-Vienne,03,3ème circonscription,3,12,M,MOURNETAS,Daniel,12/10/1954,DXG,Ancien employé,Non,F,DANEN,Chantal,22/12/1955,Non +87,Haute-Vienne,03,3ème circonscription,4,26,M,SABOUNE,Nazih,06/09/1967,DVC,Ingénieur et cadre technique d'entreprise,Non,F,GAUVIN,Anne-Céline,24/07/1993,Non +87,Haute-Vienne,03,3ème circonscription,5,11,M,ARDANT,Antoine,08/11/1960,REC,Ancienne profession intermédiaire,Non,F,LAFOURCADE,Josiane,03/06/1958,Non +87,Haute-Vienne,03,3ème circonscription,6,6,M,SARDIN,Geoffroy,01/04/1969,ENS,Chef d'entreprise de 10 salariés ou plus,Non,M,MERIGOUX,Roland,02/04/1968,Non +87,Haute-Vienne,03,3ème circonscription,7,9,F,MEUNIER,Manon,30/03/1996,NUP,Cadre de la fonction publique,Non,M,FONTANILLAS,Eric,28/03/1976,Non +87,Haute-Vienne,03,3ème circonscription,8,4,F,BROSSARD,Corinne,13/12/1964,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,UPTON-DESOBRY,Elisabeth,09/08/1947,Non +87,Haute-Vienne,03,3ème circonscription,9,27,M,LEONIE,Vincent,14/06/1974,DVC,Cadre de la fonction publique,Non,F,LE NORMAND,Valérie,23/07/1982,Non +87,Haute-Vienne,03,3ème circonscription,10,28,F,RASSAT,Nelly,06/08/1983,REG,Employé civil et agent de service de la fonction publique,Non,M,CAILLON,Maxime,06/10/1977,Non +88,Vosges,01,1ère circonscription,1,20,F,ABBOT,Evelyne,06/07/1953,DXG,Ancienne profession intermédiaire,Non,M,PELLICIOLI,Cyrille,26/10/1975,Non +88,Vosges,01,1ère circonscription,2,35,F,MONANGE,Anne-Sophie,04/08/1966,ENS,Cadre administratif et commercial d'entreprise,Non,M,PETIT,Christophe,08/09/1969,Non +88,Vosges,01,1ère circonscription,3,29,M,NICOLAZZI,Maxime,10/03/1948,DXG,Ancienne profession intermédiaire,Non,F,HALTER,Sandrine,28/05/1968,Non +88,Vosges,01,1ère circonscription,4,36,F,MOONS,Emmie,04/01/1998,RN,Employé de commerce,Non,F,VAIVRE,Sophie,03/02/1973,Non +88,Vosges,01,1ère circonscription,5,33,F,AJDIR,Ihsane,26/04/1983,DIV,Commerçant et assimilé,Non,M,BOUHASSOUN,Mohamed,27/04/1970,Non +88,Vosges,01,1ère circonscription,6,13,M,FETET,Jules,14/11/1988,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,D'HABIT-PERRIN,Dominique,10/03/1962,Non +88,Vosges,01,1ère circonscription,7,28,M,AIT AHMED,Mohamed,26/01/1982,ECO,Artisan,Non,F,HOVASSE,Emilie,03/04/1984,Non +88,Vosges,01,1ère circonscription,8,6,M,VIRY,Stéphane,14/10/1969,LR,Profession libérale,Oui,M,HAXAIRE,Cédric,29/08/1984,Non +88,Vosges,01,1ère circonscription,9,7,M,DUPARCQ,Eric,22/05/1966,DSV,Ouvrier agricole,Non,F,MENGOZZI,Josiane,11/11/1958,Non +88,Vosges,01,1ère circonscription,10,37,F,ROSSATO,Elisabetta,05/12/1985,DIV,Ingénieur et cadre technique d'entreprise,Non,M,CLAVER,Julien,25/11/1985,Non +88,Vosges,01,1ère circonscription,11,17,M,PERRY,Stéphane,13/06/1963,REC,Technicien,Non,F,ARMENGAUD,Isabelle,10/01/1972,Non +88,Vosges,02,2ème circonscription,1,5,M,THIEBAUT,Emmanuel,31/12/1968,ECO,Technicien,Non,M,CHOSEROT,Jean-Michaël,27/06/1994,Non +88,Vosges,02,2ème circonscription,2,4,M,VALENCE,David,07/10/1981,ENS,"Professeur, profession scientifique",Non,F,PRINCE,Charline,07/02/1993,Non +88,Vosges,02,2ème circonscription,3,27,F,MOREAU,Charlotte,15/04/1992,NUP,Employé civil et agent de service de la fonction publique,Non,M,CALBRIX,Sylvain,18/02/1956,Non +88,Vosges,02,2ème circonscription,4,24,M,CHAMBROT,Lionel,23/03/1971,DXG,Employé administratif d'entreprise,Non,F,BONNAFÉ,Sandrine,13/03/1972,Non +88,Vosges,02,2ème circonscription,5,10,F,PRIVAT MATTIONI,Caroline,21/08/1974,LR,Artisan,Non,M,LALLEMAND,Nicolas,17/10/1990,Non +88,Vosges,02,2ème circonscription,6,12,M,SCHAFFHAUSER,Jean-Luc,17/12/1955,DVD,"Ancien artisan, commerçant, chef d'entreprise",Non,M,DUMET,Alain,24/11/1954,Non +88,Vosges,02,2ème circonscription,7,11,M,ROBINOT,Pierre-Jean,12/03/1965,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,BERRUET,Jean-Luc,24/11/1961,Non +88,Vosges,02,2ème circonscription,8,38,M,JUGOWAL,Sudarshan,10/07/1991,ECO,Employé civil et agent de service de la fonction publique,Non,M,JUGOWAL,Suyash,24/05/1998,Non +88,Vosges,02,2ème circonscription,9,16,F,CANADAS,Martine,14/03/1961,DVD,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,GRENOT,Kévin,31/05/1994,Non +88,Vosges,02,2ème circonscription,10,21,F,LANGLADE,Jeanne-Françoise,31/08/1945,DXG,Ancienne profession intermédiaire,Non,M,JEUDY,Clément,15/05/1988,Non +88,Vosges,02,2ème circonscription,11,39,F,MORÉ,Elisa,26/12/2000,REG,"Elève, étudiant",Non,M,ORTNER,François,01/03/1995,Non +88,Vosges,02,2ème circonscription,12,25,M,DUSSAUSAYE,Gaëtan,05/04/1994,RN,Commerçant et assimilé,Non,M,MOUREY,Geoffrey,23/04/1998,Non +88,Vosges,03,3ème circonscription,1,31,M,FRANÇOIS,Pierre,15/04/1986,RN,Cadre administratif et commercial d'entreprise,Non,M,GIROT,Johan,24/12/1995,Non +88,Vosges,03,3ème circonscription,2,2,F,ERB,Anne-Caroline,24/04/1969,REC,"Professeur, profession scientifique",Non,M,VALENTIN,Jean Paul,19/09/1943,Non +88,Vosges,03,3ème circonscription,3,26,F,VILLEMIN,Stéphanie,15/10/1969,ENS,Artisan,Non,M,GEHIN,François,29/10/1952,Non +88,Vosges,03,3ème circonscription,4,23,F,PIERRAT,Béatrice,16/01/1970,NUP,Ingénieur et cadre technique d'entreprise,Non,M,BILOT,Gilles,30/10/1960,Non +88,Vosges,03,3ème circonscription,5,9,M,NAEGELEN,Christophe,30/12/1983,DVD,Chef d'entreprise de 10 salariés ou plus,Oui,F,PERRIN,Nadine,03/05/1962,Non +88,Vosges,03,3ème circonscription,6,41,M,ZIRGEL,Félix,11/05/1993,REG,Artisan,Non,F,BERTRAND-MONTEMBAULT,Fleur,06/01/1993,Non +88,Vosges,03,3ème circonscription,7,22,F,BAILLY,Stéphanie,03/03/1974,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,DAMGÉ,Wilfrid,04/09/1970,Non +88,Vosges,03,3ème circonscription,8,8,F,COLLIN DUPARCQ,Marina,01/04/1976,DSV,Employé administratif d'entreprise,Non,M,BORNET,Pierre Charles,09/08/1977,Non +88,Vosges,04,4ème circonscription,1,32,M,LAURENT,Christophe,08/02/1954,ENS,Ancien cadre,Non,F,JEANDEL,Corinne,28/11/1972,Non +88,Vosges,04,4ème circonscription,2,30,M,HUMBERT,Sébastien,10/07/1990,RN,Cadre administratif et commercial d'entreprise,Non,M,ALEXANDRE,Christophe,01/11/1971,Non +88,Vosges,04,4ème circonscription,3,18,F,JABRIN,Jocelyne,09/06/1965,REC,Ancien employé,Non,M,HERBUVAUX,Didier,28/04/1962,Non +88,Vosges,04,4ème circonscription,4,3,M,GAULTIER,Jean-Jacques,13/07/1963,LR,Profession libérale,Oui,F,THIEBAUT-GAUDÉ,Carole,21/06/1976,Non +88,Vosges,04,4ème circonscription,5,40,M,FRANQUEVILLE,Christian,14/05/1949,DVG,Ancien employé,Non,M,NICOLLE,Christophe,25/11/1968,Non +88,Vosges,04,4ème circonscription,6,14,M,WEIN,François-Xavier,29/04/1987,NUP,Profession libérale,Non,F,ROTHIOT,Renée-Lise,26/02/1954,Non +88,Vosges,04,4ème circonscription,7,34,M,MORALES,Thierry,23/08/1967,ECO,"Professeur, profession scientifique",Non,F,CHOLLEY,Hélène,16/02/1971,Non +88,Vosges,04,4ème circonscription,8,19,F,BAILLY,Camille,16/07/1949,DXG,Ancien ouvrier,Non,M,KAHL,Luc,05/03/1984,Non +88,Vosges,04,4ème circonscription,9,15,M,HURIOT,Joris,29/12/1992,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MARCHAL,Nathalie,04/08/1976,Non +89,Yonne,01,1ère circonscription,1,8,M,TÉQUI,Paul,23/03/1976,REC,Artisan,Non,M,REDOR,Dimitri,28/07/1994,Non +89,Yonne,01,1ère circonscription,2,13,M,KERMIN,Jean-Charles,05/08/1949,DXG,Ancien employé,Non,F,CADIOU,Alice,21/10/1946,Non +89,Yonne,01,1ère circonscription,3,9,F,MANIGAUT,Sylvie,07/01/1959,DXG,Ancien employé,Non,M,GAUDIAU,Armand,26/07/1950,Non +89,Yonne,01,1ère circonscription,4,21,M,ALBRECHT,Victor,25/03/1992,ENS,Cadre administratif et commercial d'entreprise,Non,M,DEBAIN,Mathieu,14/03/1977,Non +89,Yonne,01,1ère circonscription,5,25,F,LOURY,Florence,08/11/1973,NUP,"Professeur, profession scientifique",Non,F,LAROCHE-FONTAINE,Claire,30/08/1967,Non +89,Yonne,01,1ère circonscription,6,18,M,GRENON,Daniel,31/07/1948,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,BLAISE,Pascal,11/06/1955,Non +89,Yonne,01,1ère circonscription,7,22,F,GUYOT,Elsa,24/06/1986,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,ARNAUD,Patricia,06/10/1965,Non +89,Yonne,01,1ère circonscription,8,34,F,GUYARD,Yvonne,26/01/1937,DSV,Ancien employé,Non,M,MANUEL,Matondo,15/12/1987,Non +89,Yonne,01,1ère circonscription,9,10,M,LARRIVÉ,Guillaume,24/01/1977,LR,Profession libérale,Oui,M,BONNEFOND,Christophe,23/06/1970,Non +89,Yonne,02,2ème circonscription,1,4,F,CARRASCO,Anita,07/01/1963,DXG,Profession intermédiaire de la santé et du travail social,Non,M,SPRINGAUX,Christophe,08/08/1961,Non +89,Yonne,02,2ème circonscription,2,12,F,DUMOULIN,Marie,31/03/1989,REC,"Professeur, profession scientifique",Non,M,RÉGNIER,Vincent,01/01/1993,Non +89,Yonne,02,2ème circonscription,3,33,M,FRAYER,Florian,18/01/1982,DVD,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,COURTOIS,Xavier,13/09/1974,Non +89,Yonne,02,2ème circonscription,4,28,M,VILLIERS,André,13/12/1954,ENS,Agriculteur sur grande exploitation,Oui,F,MOREAU,Dorothée,16/10/1974,Non +89,Yonne,02,2ème circonscription,5,15,F,LOPEZ,Audrey,10/09/1976,RN,Profession libérale,Non,M,BLANCHARD,Antoine,08/05/1996,Non +89,Yonne,02,2ème circonscription,6,29,M,VEYSSIERE,Philippe,06/02/1959,NUP,Ingénieur et cadre technique d'entreprise,Non,F,CALIF,Judicaëlle,04/11/1977,Non +89,Yonne,02,2ème circonscription,7,2,F,NAKOV,Iris,06/11/1989,ECO,Profession libérale,Non,F,VOIS,Caroline,03/08/1986,Non +89,Yonne,02,2ème circonscription,8,23,M,PRESSARD,Patrice,05/10/1964,ECO,Profession libérale,Non,F,RENARD,Karine,07/08/1969,Non +89,Yonne,02,2ème circonscription,9,32,F,CARDONA,Maryse,31/05/1965,DSV,"Professeur des écoles, instituteur et assimilé",Non,M,KRAUS,Stephane,26/07/1962,Non +89,Yonne,03,3ème circonscription,1,6,F,LOUIS-STOKOBER,Laurence,09/04/1962,REC,"Professeur, profession scientifique",Non,M,LASNIER,Mathieu,04/07/1988,Non +89,Yonne,03,3ème circonscription,2,19,M,ODOUL,Julien,08/05/1985,RN,Cadre administratif et commercial d'entreprise,Non,F,VILBOIS,Annick,28/12/1963,Non +89,Yonne,03,3ème circonscription,3,27,M,PIRMAN,Gilles,10/04/1968,LR,Cadre de la fonction publique,Non,F,PICOUET,Marianne,13/07/1966,Non +89,Yonne,03,3ème circonscription,4,7,M,KHAN,Mehdi,29/03/1983,DVG,Commerçant et assimilé,Non,F,FRESNAIS,Elisabeth,07/02/1965,Non +89,Yonne,03,3ème circonscription,5,3,F,PALLANT,Simonne,13/04/1956,DXG,Ancien employé,Non,M,CARRASCO,José,02/02/1974,Non +89,Yonne,03,3ème circonscription,6,14,F,KERMIN,Annie,03/06/1960,DXG,Ancien employé,Non,M,LEGROS,Thierry,02/08/1967,Non +89,Yonne,03,3ème circonscription,7,30,F,WANG,Aline,06/02/1966,DSV,Profession libérale,Non,F,RIFFAUT,Claudine,18/07/1954,Non +89,Yonne,03,3ème circonscription,8,5,F,CROUZET,Michèle,31/08/1967,ENS,Ancien cadre,Oui,M,HARPER,Patrick,20/08/1951,Non +89,Yonne,03,3ème circonscription,9,20,F,VIGNIER,Agnès,13/04/1959,ECO,Ancien cadre,Non,F,VIGNIER,Viviane,01/09/1968,Non +89,Yonne,03,3ème circonscription,10,24,F,DENÉ,Manon,02/10/1991,NUP,Profession libérale,Non,M,THIRIET,Jérôme,15/06/1976,Non +89,Yonne,03,3ème circonscription,11,26,F,FRANTZ,Véronique,29/06/1963,DVC,Ancien cadre,Non,M,BOTIN,Marc,08/05/1962,Non +89,Yonne,03,3ème circonscription,12,31,F,HENRY,Florence,27/01/1975,ECO,"Profession de l'information, des arts et des spectacles",Non,M,CLÉMENT,Jérémy,15/06/1977,Non +90,Territoire de Belfort,01,1ère circonscription,1,12,M,GRUDLER,Thiebaud,16/04/1993,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GROSDIDIER,Maggy,14/11/1986,Non +90,Territoire de Belfort,01,1ère circonscription,2,4,F,PETITOT,Christiane,15/03/1951,DXG,Ancienne profession intermédiaire,Non,M,FONTANIVE,Yves,21/05/1960,Non +90,Territoire de Belfort,01,1ère circonscription,3,8,F,FILLON,Agnès,07/02/1967,ECO,Cadre administratif et commercial d'entreprise,Non,M,LEBOURGEOIS,Kevin,29/04/1991,Non +90,Territoire de Belfort,01,1ère circonscription,4,2,M,CORDONNIER,Jean,12/12/1991,DSV,Profession libérale,Non,M,ZAJAC,Christian,10/06/1956,Non +90,Territoire de Belfort,01,1ère circonscription,5,7,M,BOUCARD,Ian,05/05/1988,LR,Ancien employé,Oui,M,MESLOT,Damien,11/11/1964,Non +90,Territoire de Belfort,01,1ère circonscription,6,13,F,FRANQUET,Nathalie,08/07/1974,REC,Cadre administratif et commercial d'entreprise,Non,M,SCHAEFFER,Bernard,20/11/2000,Non +90,Territoire de Belfort,01,1ère circonscription,7,17,M,LORIDAT,Gérald,30/05/1957,NUP,Ancien cadre,Non,F,HAMARD,Juliette,04/04/1974,Non +90,Territoire de Belfort,01,1ère circonscription,8,16,M,BARATAY,Kévin,01/09/1988,DVD,Cadre administratif et commercial d'entreprise,Non,F,DIMITRIADES,Ariane,07/06/1979,Non +90,Territoire de Belfort,01,1ère circonscription,9,3,M,SOUSTELLE,Christophe,12/08/1969,RN,Ingénieur et cadre technique d'entreprise,Non,F,MERAT,Pauline,13/11/1942,Non +90,Territoire de Belfort,02,2ème circonscription,1,18,M,CHAUCHE,Florian,22/01/1984,NUP,Profession intermédiaire administrative de la fonction publique,Non,F,REGNAUD,Mathilde,14/08/1980,Non +90,Territoire de Belfort,02,2ème circonscription,2,14,M,VALLVERDU,Didier,19/07/1973,DVD,"Professeur, profession scientifique",Non,F,CABROL,Marie-Line,31/08/1958,Non +90,Territoire de Belfort,02,2ème circonscription,3,19,F,HANNA,Christelle,09/03/1957,DSV,Profession intermédiaire de la santé et du travail social,Non,F,KUEHN,Marie-France,20/10/1966,Non +90,Territoire de Belfort,02,2ème circonscription,4,15,M,PETITJEAN,Baptiste,19/11/1987,ENS,Cadre de la fonction publique,Non,M,COLIN,Jacques,12/09/1951,Non +90,Territoire de Belfort,02,2ème circonscription,5,11,M,ARCHAMBAULT,Marc,11/07/1963,DXD,"Professeur, profession scientifique",Non,M,PITAVAL,Benoît,22/03/1983,Non +90,Territoire de Belfort,02,2ème circonscription,6,9,M,FELEMEZ,Marc,03/12/1969,REC,"Professeur, profession scientifique",Non,M,BEY,Denis,21/05/1951,Non +90,Territoire de Belfort,02,2ème circonscription,7,6,M,ZUMKELLER,Michel,21/01/1966,UDI,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,SCHERRER,Matthieu,01/04/1998,Non +90,Territoire de Belfort,02,2ème circonscription,8,10,F,CARNICER,Sophie,29/03/1974,RN,Ouvrier qualifié de type industriel,Non,M,GARGIONI,Marc,10/01/1960,Non +90,Territoire de Belfort,02,2ème circonscription,9,5,M,PHEULPIN,Simon,11/11/1988,DXG,Profession intermédiaire administrative de la fonction publique,Non,F,ROUSSEAUX,Estelle,12/12/1977,Non +91,Essonne,01,1ère circonscription,1,16,M,VEGA,Thiebauld,21/07/1993,RN,Personnel des services directs aux particuliers,Non,F,MAILLE,Jenny,22/06/1993,Non +91,Essonne,01,1ère circonscription,2,60,M,CAMONIN,Jean,07/02/1956,DXG,Ancienne profession intermédiaire,Non,F,MÜLLER,Elisabeth,22/07/1954,Non +91,Essonne,01,1ère circonscription,3,21,F,DANQUIGNY,Christine,21/08/1955,DXG,Ancienne profession intermédiaire,Non,M,RISACHER,François,02/07/1964,Non +91,Essonne,01,1ère circonscription,4,97,M,ZEGHOUF,Medhy,23/10/1991,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,LESAGE,Bernadette,22/06/1956,Non +91,Essonne,01,1ère circonscription,5,105,M,BERLINGEN,Eric,24/04/1969,DVG,Cadre administratif et commercial d'entreprise,Non,F,BOUZIZ,Hayat,20/12/1976,Non +91,Essonne,01,1ère circonscription,6,52,M,DE SCORRAILLE,Antoine,13/07/1996,ECO,"Professeur, profession scientifique",Non,M,BRIAND,Raphaël,24/07/1998,Non +91,Essonne,01,1ère circonscription,7,35,F,KETFI,Samira,08/07/1980,LR,Cadre administratif et commercial d'entreprise,Non,M,NSONDÉ,Freddy,17/11/1971,Non +91,Essonne,01,1ère circonscription,8,77,F,AMRANI,Farida,03/09/1976,NUP,Cadre de la fonction publique,Non,M,SEGURA,Oscar,18/05/1977,Non +91,Essonne,01,1ère circonscription,9,101,M,RICOIS,Jean-François,24/07/1970,DIV,Profession libérale,Non,F,CHARLAND,Murielle,01/11/1973,Non +91,Essonne,01,1ère circonscription,10,79,M,GARNIT,Rafik,22/08/1971,DVG,Ingénieur et cadre technique d'entreprise,Non,F,BEKKOUR,Aurélia,06/06/1992,Non +91,Essonne,01,1ère circonscription,11,9,M,SAIKALY,Joseph,20/03/1952,REC,Cadre de la fonction publique,Non,M,CLEMENTI,Maxime,28/08/2001,Non +91,Essonne,01,1ère circonscription,12,109,F,BAILLEUL,Géraldine,13/07/1996,DIV,"Elève, étudiant",Non,M,BARBIER,Anthony,06/06/1996,Non +91,Essonne,02,2ème circonscription,1,31,F,BRYON,Eveline,03/02/1955,REC,Ancienne profession intermédiaire,Non,M,DEPERNET,Stéphane,23/04/1966,Non +91,Essonne,02,2ème circonscription,2,66,F,SY,Mama,03/11/1986,DVD,Profession intermédiaire de la santé et du travail social,Non,M,RASSIER,Gérard,27/01/1955,Non +91,Essonne,02,2ème circonscription,3,41,F,SIFER,Naïma,08/11/1977,ENS,Profession intermédiaire de la santé et du travail social,Non,M,NAUDIN,Christophe,12/08/1982,Non +91,Essonne,02,2ème circonscription,4,28,M,PAROLINI,François,02/04/1953,DVG,Ancien cadre,Non,F,COLONNA,Laetitia,08/12/1975,Non +91,Essonne,02,2ème circonscription,5,39,M,DUGOIN-CLEMENT,Jean-Philippe,15/05/1975,UDI,Cadre de la fonction publique,Non,M,BERTOL,Gino,04/04/1970,Non +91,Essonne,02,2ème circonscription,6,13,F,DA CONCEICAO CARVALHO,Nathalie,31/03/1966,RN,Profession libérale,Non,F,GIRARD,Valérie,15/02/1970,Non +91,Essonne,02,2ème circonscription,7,83,M,HILLAIRE,Mathieu,22/03/1982,NUP,Technicien,Non,F,GUYET BENAILI,Mounia,23/07/1978,Non +91,Essonne,02,2ème circonscription,8,82,F,PHAN HIEU,Mathilde,06/09/1986,DXG,"Professeur, profession scientifique",Non,M,LEBRETON,Olivier,03/04/1971,Non +91,Essonne,02,2ème circonscription,9,29,M,LEMAIRE,Pascal,12/05/1956,ECO,Ancien cadre,Non,F,GAUDE,Emmanuelle,15/07/1989,Non +91,Essonne,02,2ème circonscription,10,106,M,MORELLE,Antonin,14/10/1997,DVD,Employé civil et agent de service de la fonction publique,Non,M,LIGER,Guillaume,15/07/1999,Non +91,Essonne,02,2ème circonscription,11,56,M,BIELAK,Vincent,10/09/1968,DSV,Commerçant et assimilé,Non,M,SARRIQUE,Johan,13/06/1973,Non +91,Essonne,03,3ème circonscription,1,63,F,LOPÈS-VENOT,Joëlle,20/07/1955,DXG,Ancien employé,Non,M,SCHROEDER,Serge,28/02/1955,Non +91,Essonne,03,3ème circonscription,2,96,M,KEMOUNE,Mehdi,17/02/1972,DVG,"Contremaître, agent de maîtrise",Non,F,DELETANG,Nadine,04/12/1953,Non +91,Essonne,03,3ème circonscription,3,18,M,MOUSNIER,Gilbert,01/02/1972,RN,Employé de commerce,Non,M,SEVESTRE,Pascal,25/09/1960,Non +91,Essonne,03,3ème circonscription,4,8,F,PERDEREAU,Isabelle,05/01/1961,LR,Commerçant et assimilé,Non,M,VALLÉE,Pierre,06/10/1998,Non +91,Essonne,03,3ème circonscription,5,68,M,IZARD,Alexis,15/06/1992,ENS,Cadre administratif et commercial d'entreprise,Non,F,LE BOURNOT,Nadia,03/05/1972,Non +91,Essonne,03,3ème circonscription,6,61,M,LEMOIGNE,Gérard,14/06/1963,ECO,Cadre de la fonction publique,Non,F,HENRY,Mathilde,12/10/1984,Non +91,Essonne,03,3ème circonscription,7,10,M,CHARVILLAT,Jean-Paul,20/08/1953,DIV,Profession libérale,Non,M,VALENET,Olivier,03/10/1962,Non +91,Essonne,03,3ème circonscription,8,40,F,CHAA BENAHMED,Shéhérazade,05/11/1990,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DORIZON,Maurice,03/02/1946,Non +91,Essonne,03,3ème circonscription,9,78,F,MOREIRA,Alice,27/08/1986,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,DROBNIAK,Pierre,21/05/1992,Non +91,Essonne,03,3ème circonscription,10,95,M,GUSTAVE,Steevy,05/02/1970,NUP,"Profession de l'information, des arts et des spectacles",Non,F,PERRON,Pascale,27/02/1959,Non +91,Essonne,03,3ème circonscription,11,7,M,BAURE,Paul-Henri,17/01/1951,ECO,"Contremaître, agent de maîtrise",Non,M,DI STEFANO,François,18/07/1952,Non +91,Essonne,04,4ème circonscription,1,50,M,COQUELET,Jean-Pierre,29/04/1954,DIV,Profession libérale,Non,F,DESTRUEL,Magali,23/04/1966,Non +91,Essonne,04,4ème circonscription,2,71,M,LA SELVE,François,28/09/1993,REC,Cadre de la fonction publique,Non,M,PILATI,Thomas,16/07/1982,Non +91,Essonne,04,4ème circonscription,3,15,M,BOUTALEB,Alain,11/07/1987,RN,Ingénieur et cadre technique d'entreprise,Non,M,FRÖLICH,Jean-Claude,27/05/1943,Non +91,Essonne,04,4ème circonscription,4,93,M,DUMONT,Dimitri,22/10/1975,DVG,"Profession de l'information, des arts et des spectacles",Non,M,LE CALVÉ,Christophe,14/03/1977,Non +91,Essonne,04,4ème circonscription,5,100,F,SCACHE,Agathe,01/05/1988,DVC,Profession intermédiaire administrative et commerciale des entreprises,Non,F,FALLETTI,Sandy,06/07/1998,Non +91,Essonne,04,4ème circonscription,6,43,M,MARTIN,Jérémy,22/09/1978,LR,Cadre de la fonction publique,Non,F,KLJAJIC,Isabelle,09/11/1971,Non +91,Essonne,04,4ème circonscription,7,62,M,LOIZILLON,Martin,02/10/1989,DIV,"Profession de l'information, des arts et des spectacles",Non,M,LECOMTE,Xavier,27/02/1952,Non +91,Essonne,04,4ème circonscription,8,22,F,DJABALI,Miriam,20/08/1977,DVC,"Professeur, profession scientifique",Non,M,MANSON,Pascal,17/02/1959,Non +91,Essonne,04,4ème circonscription,9,34,F,RIXAIN,Marie-Pierre,18/01/1977,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,TRICKOVSKI,Igor,11/06/1977,Non +91,Essonne,04,4ème circonscription,10,75,M,DEME,Amadou,10/06/1968,NUP,Cadre de la fonction publique,Non,F,COLSON,Marie,14/10/1978,Non +91,Essonne,04,4ème circonscription,11,110,F,POLIZZO,Iliane,21/10/1965,ECO,Profession libérale,Non,M,SÉBIRE,Baptiste,18/12/1992,Non +91,Essonne,04,4ème circonscription,12,5,F,PLOUIN,Juliette,18/09/1975,DXG,"Professeur, profession scientifique",Non,M,BARAT,Eric,30/12/1964,Non +91,Essonne,05,5ème circonscription,1,99,M,DEBON,Christophe,05/08/1976,RN,Cadre de la fonction publique,Non,F,DJEMA,Évelyne,06/03/1954,Non +91,Essonne,05,5ème circonscription,2,90,M,ODILLE,Benoît,28/11/1985,DVG,"Professeur des écoles, instituteur et assimilé",Non,F,SULTAN,Chérine,22/04/1986,Non +91,Essonne,05,5ème circonscription,3,38,M,MIDY,Paul,25/01/1983,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,NOIROT,Florence,11/04/1969,Non +91,Essonne,05,5ème circonscription,4,102,F,POISSON,Anne-Christine,29/12/1955,DVD,Ancienne profession intermédiaire,Non,M,VANDAME,Stéphane,28/01/1963,Non +91,Essonne,05,5ème circonscription,5,76,F,BARBARAT,Denise,23/10/1968,REC,Cadre administratif et commercial d'entreprise,Non,M,VAILLANT,Guillaume,15/01/1992,Non +91,Essonne,05,5ème circonscription,6,55,M,PAXION,Didier,17/06/1964,DXG,"Professeur, profession scientifique",Non,M,ROY,Jean-Philippe,20/03/1968,Non +91,Essonne,05,5ème circonscription,7,72,M,VILLANI,Cédric,05/10/1973,NUP,"Professeur, profession scientifique",Oui,F,CHARPENTIER,Servane,20/01/1976,Non +91,Essonne,05,5ème circonscription,8,69,M,RONFARD-HARET,Marc,18/05/1972,DSV,Technicien,Non,F,PHILIPPE,Adeline,12/12/1970,Non +91,Essonne,05,5ème circonscription,9,19,M,BOURNAT,Michel,28/08/1955,LR,Ancien cadre,Non,M,TRÉBULLE,François Guy,10/02/1971,Non +91,Essonne,06,6ème circonscription,1,33,F,ASKAR,Ecaterina,25/12/1948,DSV,Profession libérale,Non,M,MARIE-CLAIRE,Kevin,22/01/1997,Non +91,Essonne,06,6ème circonscription,2,48,F,LONCHAMPT,Wendy,05/10/1993,REC,Ingénieur et cadre technique d'entreprise,Non,M,GOMES,Antonio,02/04/1967,Non +91,Essonne,06,6ème circonscription,3,26,F,LACARRIERE,Chantal,03/01/1964,LR,Cadre administratif et commercial d'entreprise,Non,M,HOUËT,Jordan,24/09/1996,Non +91,Essonne,06,6ème circonscription,4,107,M,SAHARI,Mokrane,22/08/1964,DVD,Cadre de la fonction publique,Non,F,HENNEBIQUE,Louise,04/02/2002,Non +91,Essonne,06,6ème circonscription,5,88,F,PIOTELAT,Elisabeth,18/04/1971,DVG,Cadre de la fonction publique,Non,M,MARTIN-GOMEZ,Pablo,08/08/1991,Non +91,Essonne,06,6ème circonscription,6,23,F,HADDAD,Lisa,19/04/1964,RN,Cadre administratif et commercial d'entreprise,Non,M,AUGER,Marcellin,26/04/1962,Non +91,Essonne,06,6ème circonscription,7,103,M,ROHAULT DE FLEURY,Jules,21/11/2002,DVG,"Elève, étudiant",Non,F,DIRLEWANGER-LÜCKE,Johanna,07/07/1998,Non +91,Essonne,06,6ème circonscription,8,89,M,CHEN,Franck,02/12/1979,DVD,Artisan,Non,M,CAMP,Aubry,07/04/1998,Non +91,Essonne,06,6ème circonscription,9,3,F,DE MONTCHALIN,Amélie,19/06/1985,ENS,Cadre administratif et commercial d'entreprise,Non,M,OLLIER,Pierre,10/12/1962,Non +91,Essonne,06,6ème circonscription,10,73,M,BARONET,Pierre,27/12/1989,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CALAME,Adeline,06/11/1982,Non +91,Essonne,06,6ème circonscription,11,2,M,VAYSSIÈRE,Bastien,26/12/1985,DXG,"Professeur, profession scientifique",Non,M,JANCO,Nicolas,30/01/1981,Non +91,Essonne,06,6ème circonscription,12,81,M,GUEDJ,Jérôme,23/01/1972,NUP,Profession libérale,Non,F,KRIBI-ROMDHANE,Hella,20/03/1980,Non +91,Essonne,06,6ème circonscription,13,30,F,BOMMELAER,Esther,08/01/2001,ECO,"Elève, étudiant",Non,F,PORTEIRON,Léa,03/04/2002,Non +91,Essonne,07,7ème circonscription,1,92,F,MARIE,Florie,20/10/1987,DVG,Ingénieur et cadre technique d'entreprise,Non,M,DALICHAMPT,Thibaut,08/07/1996,Non +91,Essonne,07,7ème circonscription,2,49,M,CARDOSO,Antony,17/12/1992,REC,Commerçant et assimilé,Non,M,MICHAUT,François,25/06/1961,Non +91,Essonne,07,7ème circonscription,3,108,F,DAAS,Rabia,04/05/1965,DVC,Employé civil et agent de service de la fonction publique,Non,F,MOUSSAOUI,Karima,21/05/1972,Non +91,Essonne,07,7ème circonscription,4,42,M,REDA,Robin,10/05/1991,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,VILAIN,Jean-Marie,10/06/1959,Non +91,Essonne,07,7ème circonscription,5,91,M,DUMAINE,Julien,23/07/1992,LR,Ingénieur et cadre technique d'entreprise,Non,M,DUGOIN,Xavier,04/08/1986,Non +91,Essonne,07,7ème circonscription,6,104,M,RACINE,Jacques,31/07/1951,DIV,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,CANTREL,Luc,14/11/1957,Non +91,Essonne,07,7ème circonscription,7,12,M,HOQUET,Marc,04/06/1959,DXG,Technicien,Non,M,OLIVIER,François-Georges,21/01/1974,Non +91,Essonne,07,7ème circonscription,8,24,F,GUIBERT,Audrey,07/07/1986,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,F,LOPES,Monique,05/09/1980,Non +91,Essonne,07,7ème circonscription,9,53,M,VAGNEUX,Olivier,28/10/1991,ECO,Profession libérale,Non,M,CORBIN,Jean-Marie,15/09/1967,Non +91,Essonne,07,7ème circonscription,10,94,F,LEJEUNE,Claire,07/09/1994,NUP,"Professeur, profession scientifique",Non,M,NOURI,Ouaddah,15/11/1979,Non +91,Essonne,07,7ème circonscription,11,58,F,RIGOLLET,Josselyne,10/08/1950,DSV,Ancien cadre,Non,M,COURIC,Guillaume,14/09/2002,Non +91,Essonne,07,7ème circonscription,12,45,F,BOMPARD,Catherine,17/03/1978,ECO,Ancien cadre,Non,M,VOLPI,David,31/08/1986,Non +91,Essonne,08,8ème circonscription,1,27,M,DUPONT-AIGNAN,Nicolas,07/03/1961,DSV,Cadre de la fonction publique,Oui,F,BECK,Bernadette,17/12/1947,Non +91,Essonne,08,8ème circonscription,2,84,F,CHAZETTE-GUILLET,Emilie,26/05/1980,NUP,"Professeur, profession scientifique",Non,M,DANET,Medhy,26/05/2001,Non +91,Essonne,08,8ème circonscription,3,64,M,DOHIN,Nicolas,13/01/1985,LR,Policier et militaire,Non,F,CARILLON,Sylvie,14/01/1965,Non +91,Essonne,08,8ème circonscription,4,11,M,GUIGUET,Jean-Claude,23/03/1949,DIV,"Professeur, profession scientifique",Non,F,VANHULLE,Maryse,22/04/1958,Non +91,Essonne,08,8ème circonscription,5,14,M,JACOB,Daniel,19/03/1952,DIV,Ancien cadre,Non,F,PARSY,Ines,23/12/1999,Non +91,Essonne,08,8ème circonscription,6,32,M,BIDA,Mohamed,01/01/1962,ENS,Ancien cadre,Non,F,ALCARAZ,Nathalie,13/02/1966,Non +91,Essonne,08,8ème circonscription,7,59,F,DUBOULAY,Chantal,01/12/1953,DXG,Ancien employé,Non,F,GILARDI,Dominique,18/07/1964,Non +91,Essonne,09,9ème circonscription,1,74,F,GUÉVENOUX,Marie,02/11/1976,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,HUSSON,Eric,06/07/1963,Non +91,Essonne,09,9ème circonscription,2,54,M,MAZURIÉ,Lionel,21/07/1972,DSV,Profession libérale,Non,F,LEPAGE,Audrey,16/03/1984,Non +91,Essonne,09,9ème circonscription,3,25,M,STEENS,Philippe,23/05/1974,RN,Policier et militaire,Non,F,ALVES,Hélène,29/09/1971,Non +91,Essonne,09,9ème circonscription,4,65,M,BERNARD,Antonin,07/03/1996,ECO,"Elève, étudiant",Non,F,SCHLOSS,Isabelle,29/11/1965,Non +91,Essonne,09,9ème circonscription,5,98,M,BENAMOU,Michel,21/09/1960,DIV,Cadre de la fonction publique,Non,F,D'HAUSSY,Florence,23/11/1971,Non +91,Essonne,09,9ème circonscription,6,17,F,HIDRI,Faten,09/04/1981,UDI,Profession libérale,Non,M,PETEL,Yann,13/06/1958,Non +91,Essonne,09,9ème circonscription,7,47,M,MERRIEN,Paul-Henri,19/09/1962,REC,Commerçant et assimilé,Non,F,MARTIN,Marie-Celine,17/03/1997,Non +91,Essonne,09,9ème circonscription,8,44,M,GRISAUD,Benoit,12/12/1971,DXG,"Professeur, profession scientifique",Non,F,FELTRIN,Marianne,03/05/1960,Non +91,Essonne,09,9ème circonscription,9,57,F,BELETRECHE,Nadhera,18/05/1982,NUP,Cadre de la fonction publique,Non,M,HEDJEM,Sami,09/01/1972,Non +91,Essonne,10,10ème circonscription,1,51,F,BELLON,Sandrine,16/06/1965,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LUCA,De Paris,30/08/1970,Non +91,Essonne,10,10ème circonscription,2,37,M,DE BOISHUE,Nicolas,06/04/1972,LR,Profession intermédiaire de la santé et du travail social,Non,M,DUMAS,Augustin,22/12/1986,Non +91,Essonne,10,10ème circonscription,3,111,F,AZZOUNI,Sabrine,10/07/1997,REG,"Elève, étudiant",Non,M,LERON,Nicolas,12/08/1983,Non +91,Essonne,10,10ème circonscription,4,86,M,ZAOUI,Mustapha,28/01/1974,ECO,Ancien ouvrier,Non,F,GOMIS,Adelaïde,02/09/1981,Non +91,Essonne,10,10ème circonscription,5,36,F,CARCASSET,Nadia,08/01/1973,ENS,Cadre de la fonction publique,Non,M,SITCHARN,Ruddy,17/12/1969,Non +91,Essonne,10,10ème circonscription,6,6,F,LECLERC,Monique,07/06/1955,DXG,Ancienne profession intermédiaire,Non,M,LÉVÊQUE,Yves,05/11/1962,Non +91,Essonne,10,10ème circonscription,7,46,F,REHAB,Hanna,25/05/1996,ECO,Employé de commerce,Non,F,KERNEIS,Murielle,20/01/1959,Non +91,Essonne,10,10ème circonscription,8,4,M,CAMUS,Stephane,15/07/1972,DVD,Profession libérale,Non,F,LOBATO CORREA,Sarita,16/10/1977,Non +91,Essonne,10,10ème circonscription,9,70,F,CORMIER,Claudine,09/11/1964,ECO,Cadre de la fonction publique,Non,F,SPIRAL,Christine,27/04/1964,Non +91,Essonne,10,10ème circonscription,10,67,F,VERA-FONTANO,Inès,31/07/2001,REC,"Elève, étudiant",Non,M,GACHON,Mathis,16/11/2000,Non +91,Essonne,10,10ème circonscription,11,20,F,GODIER,Marie,15/02/1979,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DULONG,Georges,13/03/1959,Non +91,Essonne,10,10ème circonscription,12,85,M,LÉAUMENT,Antoine,04/09/1989,NUP,Cadre administratif et commercial d'entreprise,Non,F,KÖSE,Anaïs,25/06/1998,Non +92,Hauts-de-Seine,01,1ère circonscription,1,29,M,BENTAJ,Abdelaziz,11/03/1969,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,DE LONGUEVILLE,Diane,25/07/1978,Non +92,Hauts-de-Seine,01,1ère circonscription,2,133,F,DANGAS,Corinne,24/10/1970,DIV,Profession libérale,Non,M,KEMPF,Paul-Antoine,25/08/1988,Non +92,Hauts-de-Seine,01,1ère circonscription,3,107,M,QUIRANTE,Gaël,19/08/1975,DXG,Employé civil et agent de service de la fonction publique,Non,F,PERTUS,Armelle,27/11/1975,Non +92,Hauts-de-Seine,01,1ère circonscription,4,134,M,BOUMEDIENNE,Samir,31/05/1971,DIV,Technicien,Non,F,OUERTANI,Ouissila,27/09/1983,Non +92,Hauts-de-Seine,01,1ère circonscription,5,116,F,LE GAL,Anna,21/08/1959,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,BARUCHET,Isabelle,10/10/1960,Non +92,Hauts-de-Seine,01,1ère circonscription,6,22,F,DÉCAILLET,Marie-Laure,02/10/1967,REC,Cadre administratif et commercial d'entreprise,Non,M,MUFANA,Loïc,27/02/1997,Non +92,Hauts-de-Seine,01,1ère circonscription,7,66,F,CAMARA,Mariam,26/03/1982,RN,Employé de commerce,Non,M,CARRÉ,Roland,02/04/1990,Non +92,Hauts-de-Seine,01,1ère circonscription,8,46,F,JAN,Corinne,17/09/1956,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,LOUPIAS,Anne,26/11/1972,Non +92,Hauts-de-Seine,01,1ère circonscription,9,99,M,CHOLLET,Gary,07/12/1994,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,DAUDANS,Jean-Marc,27/07/1953,Non +92,Hauts-de-Seine,01,1ère circonscription,10,65,F,BOUNAB,Zina,04/03/1955,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,DELOBELLE,François,21/06/1959,Non +92,Hauts-de-Seine,01,1ère circonscription,11,16,F,FAUCILLON,Elsa,06/08/1981,NUP,Cadre administratif et commercial d'entreprise,Oui,F,BOUCHOUICHA,Evelyne,25/04/1959,Non +92,Hauts-de-Seine,01,1ère circonscription,12,90,F,BADIN,Marie-Ange,27/01/1989,ENS,Cadre administratif et commercial d'entreprise,Non,F,ABITA,Marie,26/06/1970,Non +92,Hauts-de-Seine,02,2ème circonscription,1,60,F,ISAAC,Christel,27/12/1974,ECO,Profession intermédiaire de la santé et du travail social,Non,M,BENTEBRA,Mohamed,06/06/1972,Non +92,Hauts-de-Seine,02,2ème circonscription,2,91,M,MARTIN SAINT LEON,Laurent,25/01/1967,DVC,Cadre administratif et commercial d'entreprise,Non,F,DELSENY,Agnes,28/08/1964,Non +92,Hauts-de-Seine,02,2ème circonscription,3,98,F,DAGEVILLE,Marine,04/01/1993,DXG,"Professeur, profession scientifique",Non,M,BAROUX,"Sébastien, Jean, Claude",22/02/1979,Non +92,Hauts-de-Seine,02,2ème circonscription,4,135,M,PERROTEL,Sébastien,02/03/1969,DVD,"Professeur, profession scientifique",Non,F,TATON,Yamina,06/04/1969,Non +92,Hauts-de-Seine,02,2ème circonscription,5,94,F,AESCHLIMANN,Marie-Do,17/04/1974,LR,Profession libérale,Non,F,DELATTRE,Amélie,07/01/1972,Non +92,Hauts-de-Seine,02,2ème circonscription,6,103,F,PASQUINI,Francesca,27/12/1981,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,MICHALLET,Léopold,30/07/1984,Non +92,Hauts-de-Seine,02,2ème circonscription,7,25,M,BRUNET,Antoine,10/12/1987,DXG,"Professeur, profession scientifique",Non,F,BILONG,Louise,07/02/1971,Non +92,Hauts-de-Seine,02,2ème circonscription,8,62,M,BICHARA,Digui,27/01/1989,DVC,"Elève, étudiant",Non,M,BIS,Richard Stéphane,20/08/1972,Non +92,Hauts-de-Seine,02,2ème circonscription,9,68,F,BERTIER,Frédérique,05/07/1957,REC,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,LOPEZ,Ludwig,12/01/1962,Non +92,Hauts-de-Seine,02,2ème circonscription,10,21,F,DENOO,Emilia,24/10/1983,ECO,Cadre administratif et commercial d'entreprise,Non,M,DEFOOR,Eric,25/03/1955,Non +92,Hauts-de-Seine,02,2ème circonscription,11,67,F,ACHIDI,Baï-Audrey,16/03/1980,ENS,Profession libérale,Non,M,LECLERE,Fabien,26/03/1968,Non +92,Hauts-de-Seine,02,2ème circonscription,12,123,F,BELLOUFA,Karima,19/10/1982,DIV,Cadre administratif et commercial d'entreprise,Non,M,SAIDI,Farouk,30/03/1972,Non +92,Hauts-de-Seine,02,2ème circonscription,13,59,M,LAURENT,Hadrien,12/09/1989,RDG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,SOMMIER,Annie,16/09/1947,Non +92,Hauts-de-Seine,02,2ème circonscription,14,93,M,FABRE,Michel,20/11/1951,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,AKSAS,Myriam,05/06/1978,Non +92,Hauts-de-Seine,02,2ème circonscription,15,13,M,MILLOT,Philippe,22/03/1952,RN,Ancien employé,Non,M,KIMBASSA,René,26/05/1967,Non +92,Hauts-de-Seine,03,3ème circonscription,1,110,F,TAQUILLAIN,Aurélie,19/08/1983,ENS,Cadre de la fonction publique,Non,M,FARAUT,Alexandre,11/06/1970,Non +92,Hauts-de-Seine,03,3ème circonscription,2,109,M,PIRON,Barthelemy,22/12/1996,DXG,"Elève, étudiant",Non,F,HARMAND,Mathilde,27/11/1981,Non +92,Hauts-de-Seine,03,3ème circonscription,3,124,M,BELKADI,Abdel,05/09/1977,DIV,Commerçant et assimilé,Non,F,ASSIF,Karima,23/09/1999,Non +92,Hauts-de-Seine,03,3ème circonscription,4,2,F,LAFFITE,Agnès,05/02/1962,RN,Profession intermédiaire administrative de la fonction publique,Non,M,COSTE,Valentin,19/09/2002,Non +92,Hauts-de-Seine,03,3ème circonscription,5,136,F,BAUDRANT,Béatrice,03/10/1969,DIV,Cadre de la fonction publique,Non,M,ASSARAF,Roland,06/06/1970,Non +92,Hauts-de-Seine,03,3ème circonscription,6,18,M,MANRESA,Vincent,18/11/1981,ECO,"Professeur, profession scientifique",Non,F,MIZZI,Pascale,09/02/1974,Non +92,Hauts-de-Seine,03,3ème circonscription,7,92,M,PARRY,Jean-Marie,28/09/1970,DXG,Ouvrier qualifié de type industriel,Non,M,FREJACQUES,Guillaume,19/10/1979,Non +92,Hauts-de-Seine,03,3ème circonscription,8,76,M,JUVIN,Philippe,01/02/1964,LR,Cadre de la fonction publique,Non,F,D'ALIGNY,Sybille,04/09/1974,Non +92,Hauts-de-Seine,03,3ème circonscription,9,43,F,GUEDJ,Anabelle,18/12/1990,REC,Profession libérale,Non,M,GERARD,Marc,22/08/1995,Non +92,Hauts-de-Seine,03,3ème circonscription,10,97,F,TIJ,Sara,05/11/1988,NUP,Ingénieur et cadre technique d'entreprise,Non,M,RAIGA-CLEMENCEAU,Etienne,23/01/1994,Non +92,Hauts-de-Seine,04,4ème circonscription,1,26,M,SCHOENHENZ,Eric,11/11/1971,DIV,Cadre de la fonction publique,Non,F,HATTAB,Amale,21/06/1988,Non +92,Hauts-de-Seine,04,4ème circonscription,2,79,M,STRUMANNE,Laurent,11/01/1962,DXG,Profession intermédiaire administrative de la fonction publique,Non,F,BACONNET,Natacha,13/07/1974,Non +92,Hauts-de-Seine,04,4ème circonscription,3,32,M,ALLAIN,Michel,29/04/1952,DXG,Ancien cadre,Non,F,AUGÉS,Céline,23/12/1975,Non +92,Hauts-de-Seine,04,4ème circonscription,4,69,F,BIGDADE,Habiba,01/12/1977,DVG,Cadre administratif et commercial d'entreprise,Non,F,GUEROUT,Valérie,11/03/1965,Non +92,Hauts-de-Seine,04,4ème circonscription,5,57,F,MULLER,Florence,01/12/1966,REC,Cadre administratif et commercial d'entreprise,Non,M,BENSOUSSAN,Eyal,15/12/1995,Non +92,Hauts-de-Seine,04,4ème circonscription,6,139,M,COMBAZ,Philippe,22/09/1968,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CIBIEL,Sandrine,05/08/1971,Non +92,Hauts-de-Seine,04,4ème circonscription,7,137,M,BARNY,Valéry,04/07/1978,ECO,Profession intermédiaire de la santé et du travail social,Non,F,FAUVEAU,Frédérique,12/09/1977,Non +92,Hauts-de-Seine,04,4ème circonscription,8,41,F,FLORENNES,Isabelle,02/08/1967,ENS,Cadre de la fonction publique,Oui,M,THUILLLIER,Vincent,18/02/1969,Non +92,Hauts-de-Seine,04,4ème circonscription,9,64,F,SEBAIHI,Sabrina,10/05/1981,NUP,Profession libérale,Non,M,PELLERIN,Jérôme,25/02/1978,Non +92,Hauts-de-Seine,04,4ème circonscription,10,63,F,BRAVO,Mélina,07/04/1999,RN,"Elève, étudiant",Non,M,DE MASCAREL DE LA CORBIÈRE,Renaud,15/09/1984,Non +92,Hauts-de-Seine,04,4ème circonscription,11,138,M,SAHRAOUI BRAHIM,Youcef,04/12/1997,DVG,Cadre administratif et commercial d'entreprise,Non,M,DRAA,Sami,16/02/1997,Non +92,Hauts-de-Seine,04,4ème circonscription,12,104,F,EISENBERG,Mathilde,16/03/1983,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,MENDEZ,Victor,21/12/1996,Non +92,Hauts-de-Seine,04,4ème circonscription,13,58,M,SAÏZ,Guilhem,27/06/1995,ECO,"Professeur, profession scientifique",Non,F,CHAUMETTE,Héléna,23/03/1999,Non +92,Hauts-de-Seine,04,4ème circonscription,14,105,M,AZERGUI,Nagib,11/11/1972,DIV,Ingénieur et cadre technique d'entreprise,Non,F,ATTABBANI,Malika,11/03/1972,Non +92,Hauts-de-Seine,05,5ème circonscription,1,56,F,LAMBERT,Mireille,22/07/1952,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,NICOLAS,Philippe,09/06/1964,Non +92,Hauts-de-Seine,05,5ème circonscription,2,55,M,CHASSAT,Pierre,13/05/1977,LR,Cadre de la fonction publique,Non,F,HADRI,Nadoi,10/06/1973,Non +92,Hauts-de-Seine,05,5ème circonscription,3,130,F,GEBARSKA,Agnieszka,21/08/1966,RN,Profession libérale,Non,M,COSTE,Philippe,05/01/1964,Non +92,Hauts-de-Seine,05,5ème circonscription,4,42,M,GAROYAN,Fabrice,06/08/1965,DSV,Artisan,Non,F,BALASTRE,Sophie,10/10/1967,Non +92,Hauts-de-Seine,05,5ème circonscription,5,101,M,SHEHATA,Rezk,14/12/1957,ECO,Ingénieur et cadre technique d'entreprise,Non,F,KIBALI,Nadia,02/07/1982,Non +92,Hauts-de-Seine,05,5ème circonscription,6,141,F,RABOTOSON,Sonia,05/05/1969,DVD,Profession libérale,Non,F,SEGHOUANE,Nadine,19/02/1977,Non +92,Hauts-de-Seine,05,5ème circonscription,7,132,M,ADREF,Oussama,23/03/1972,DIV,Chauffeur,Non,F,MALAK,Leila,18/06/1980,Non +92,Hauts-de-Seine,05,5ème circonscription,8,30,F,GACEM,Zaya,11/04/1972,DXG,Profession intermédiaire de la santé et du travail social,Non,M,DUTHEIL,Daniel,17/03/1952,Non +92,Hauts-de-Seine,05,5ème circonscription,9,115,M,CROSNIER LECONTE,Cyril,08/02/2000,ECO,Employé de commerce,Non,M,CROSNIER LECONTE,Marc,25/04/1998,Non +92,Hauts-de-Seine,05,5ème circonscription,10,78,F,KHALIL,Mina,20/01/1986,DXG,Employé administratif d'entreprise,Non,M,MUSTO,Mickaël,20/04/1995,Non +92,Hauts-de-Seine,05,5ème circonscription,11,20,F,MERCIER,Caroline,01/09/1976,DVD,Cadre administratif et commercial d'entreprise,Non,F,PODBIELSKA,Klaudia,26/03/1965,Non +92,Hauts-de-Seine,05,5ème circonscription,12,102,F,DRUET,Léa,02/05/1994,NUP,Cadre de la fonction publique,Non,M,TERCHI,Aïssa,05/08/1978,Non +92,Hauts-de-Seine,05,5ème circonscription,13,118,F,CALVEZ,Céline,24/07/1979,ENS,Cadre de la fonction publique,Oui,M,HALPHEN,Sacha,08/04/1997,Non +92,Hauts-de-Seine,05,5ème circonscription,14,140,M,ROUSSET-LEBLOND,Alexandre,11/03/1971,REC,Cadre administratif et commercial d'entreprise,Non,M,CONQUER,Nicolas,15/09/1986,Non +92,Hauts-de-Seine,06,6ème circonscription,1,81,M,MARCHISET,Denis Marie,03/09/1963,ECO,Technicien,Non,F,BENHAMOU,Seforah,05/04/1960,Non +92,Hauts-de-Seine,06,6ème circonscription,2,100,F,BASINI,Fayza,30/09/1978,DVC,Cadre administratif et commercial d'entreprise,Non,M,ANSART DE LESSAN,Frédéric,18/10/1965,Non +92,Hauts-de-Seine,06,6ème circonscription,3,147,M,AGUELON,Benoit,22/09/1977,DVD,Artisan,Non,F,AMSELLEM,Sabine,13/03/1978,Non +92,Hauts-de-Seine,06,6ème circonscription,4,145,M,KELLER,Franck,11/06/1971,REC,Cadre administratif et commercial d'entreprise,Non,F,BAZINI,Isabelle,19/06/1970,Non +92,Hauts-de-Seine,06,6ème circonscription,5,148,M,KHADOUR,Bilèle,31/05/1971,DIV,Technicien,Non,F,TADI,Rachia,10/09/1972,Non +92,Hauts-de-Seine,06,6ème circonscription,6,114,M,TRAORE,Adama,16/04/1969,DVC,Ingénieur et cadre technique d'entreprise,Non,F,LOUNIS-DAHAN,Nadia,14/06/1966,Non +92,Hauts-de-Seine,06,6ème circonscription,7,96,F,BARBAUX,Julie,13/06/1990,NUP,"Professeur des écoles, instituteur et assimilé",Non,M,GRINDU,Jean-Cédric,23/05/1979,Non +92,Hauts-de-Seine,06,6ème circonscription,8,143,M,TAPIRO,Frank,07/10/1965,DVC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,PETROFF,Sophie,07/08/1968,Non +92,Hauts-de-Seine,06,6ème circonscription,9,144,M,PESSIS,Patrick,05/05/1958,LR,"Profession de l'information, des arts et des spectacles",Non,F,DEBACHE-ABITBOL,Lina,26/10/1987,Non +92,Hauts-de-Seine,06,6ème circonscription,10,12,F,LE PEN,Marie-Caroline,23/01/1960,RN,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,FERCHICHI,Stéphane,19/06/1986,Non +92,Hauts-de-Seine,06,6ème circonscription,11,77,F,MARCEL,Françoise,21/11/1959,DXG,"Professeur, profession scientifique",Non,M,GASPERONI,Ivan,12/10/1975,Non +92,Hauts-de-Seine,06,6ème circonscription,12,142,F,LE GRIP,Constance,14/11/1960,ENS,Cadre de la fonction publique,Oui,M,SIMIAND,Jules,01/12/2002,Non +92,Hauts-de-Seine,07,7ème circonscription,1,53,F,BIRTIC,Jeanne,17/03/1975,DSV,Ingénieur et cadre technique d'entreprise,Non,M,LOCUSSOL,Guillaume,27/02/1973,Non +92,Hauts-de-Seine,07,7ème circonscription,2,11,F,DUMONT,Agnès,02/06/1971,REC,"Professeur, profession scientifique",Non,F,WEYL,Géraldine,28/08/1979,Non +92,Hauts-de-Seine,07,7ème circonscription,3,112,F,BROCHOT,Anne,13/10/1976,ECO,Employé de commerce,Non,M,ANGÉLY,Mickaël,19/09/1977,Non +92,Hauts-de-Seine,07,7ème circonscription,4,51,M,RATO,Sandro,22/11/1998,NUP,"Elève, étudiant",Non,F,VILLAIN,Jeanne,22/04/2000,Non +92,Hauts-de-Seine,07,7ème circonscription,5,27,M,HALARY,Pascal,27/06/1962,DIV,Ancien cadre,Non,F,HALARY,Christiane,23/07/1950,Non +92,Hauts-de-Seine,07,7ème circonscription,6,149,M,HLAVACEK,Guillaume,21/06/1982,DIV,Cadre administratif et commercial d'entreprise,Non,M,DURELLE,Gregory,22/02/1983,Non +92,Hauts-de-Seine,07,7ème circonscription,7,52,F,ABAD,Cécile,24/02/1972,DXG,"Professeur, profession scientifique",Non,M,BRISON,Christian,14/04/1952,Non +92,Hauts-de-Seine,07,7ème circonscription,8,47,M,CAZENEUVE,Pierre,11/03/1995,ENS,Cadre de la fonction publique,Non,F,CORDON,Valérie,22/02/1967,Non +92,Hauts-de-Seine,07,7ème circonscription,9,24,M,VERSINI,Christophe,10/08/1985,RN,Cadre de la fonction publique,Non,F,BLICQ,Christelle,09/05/1978,Non +92,Hauts-de-Seine,07,7ème circonscription,10,61,F,DUTHU,Charlotte,02/10/1980,DIV,"Professeur des écoles, instituteur et assimilé",Non,F,POUSSE,Valérie,06/07/1973,Non +92,Hauts-de-Seine,07,7ème circonscription,11,33,M,ELIZAGOYEN,Xabi,09/07/1990,LR,Cadre administratif et commercial d'entreprise,Non,F,DE LARMINAT,Ségolène,12/07/1978,Non +92,Hauts-de-Seine,07,7ème circonscription,12,54,M,ATTAF,Mokhtar,11/06/1996,DIV,Technicien,Non,F,ZIANE,Karima,22/03/1980,Non +92,Hauts-de-Seine,07,7ème circonscription,13,131,M,MANDEREAU,Christophe,30/11/1974,ECO,Ingénieur et cadre technique d'entreprise,Non,F,PETIT,Myriam,24/05/1961,Non +92,Hauts-de-Seine,08,8ème circonscription,1,150,M,SCHNEIDER,Frédéric,02/08/1966,DIV,Ingénieur et cadre technique d'entreprise,Non,M,MORVAN,Loïc,12/03/2000,Non +92,Hauts-de-Seine,08,8ème circonscription,2,74,F,LARROQUE COMOY,Annie,05/06/1952,NUP,Ancien cadre,Non,M,FORTECOËF,José,12/01/1957,Non +92,Hauts-de-Seine,08,8ème circonscription,3,23,F,LABBÉ,Laurence,12/04/1967,ECO,Cadre de la fonction publique,Non,F,BRAVO,Anais,30/11/1989,Non +92,Hauts-de-Seine,08,8ème circonscription,4,73,F,TARANNE,Chantal,16/09/1958,REC,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,SCHAUVING,Joachim,02/10/2000,Non +92,Hauts-de-Seine,08,8ème circonscription,5,84,M,PITTONI,Olivier Mario Michel,23/11/1964,DSV,Ingénieur et cadre technique d'entreprise,Non,M,D'ANDREA,Serge,22/06/1975,Non +92,Hauts-de-Seine,08,8ème circonscription,6,50,F,THEVENOT,Prisca,01/03/1985,ENS,Profession intermédiaire administrative de la fonction publique,Non,F,LANLO,Virginie,26/04/1968,Non +92,Hauts-de-Seine,08,8ème circonscription,7,38,M,HENIQUE,Philippe,31/03/1962,DXG,"Professeur, profession scientifique",Non,F,PRECIGOUT,Lucie,05/11/1959,Non +92,Hauts-de-Seine,08,8ème circonscription,8,82,F,RICHEZ,Cécile,06/01/1975,LR,Cadre administratif et commercial d'entreprise,Non,F,BOUTE,Florence,07/05/1971,Non +92,Hauts-de-Seine,08,8ème circonscription,9,83,F,HABIB,Sarena,24/10/1994,RN,Cadre administratif et commercial d'entreprise,Non,M,LEROC,Dominique,24/08/1949,Non +92,Hauts-de-Seine,08,8ème circonscription,10,129,M,CUSA,Miron,01/10/1976,ECO,Profession intermédiaire de la santé et du travail social,Non,M,LEGRAND,Stephane,13/08/1965,Non +92,Hauts-de-Seine,09,9ème circonscription,1,95,F,RAPILLY FERNIOT,Pauline,25/07/1995,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,POVOLACHI,Stanislav,27/04/1984,Non +92,Hauts-de-Seine,09,9ème circonscription,2,113,F,SAUTERAY,Elena,19/06/1993,DXG,Profession intermédiaire de la santé et du travail social,Non,M,TONDU,Jean-Baptiste,22/02/1985,Non +92,Hauts-de-Seine,09,9ème circonscription,3,121,F,ASMANI,Monia,16/07/1990,DIV,Commerçant et assimilé,Non,M,LEJEUNE,Fabien,28/01/1988,Non +92,Hauts-de-Seine,09,9ème circonscription,4,17,F,GAUDÉ,Nathalie,16/07/1971,RN,Profession libérale,Non,M,GARCIA,Daniel,26/06/1991,Non +92,Hauts-de-Seine,09,9ème circonscription,5,108,M,DESNOS,Julien,11/01/1991,DVD,Ouvrier qualifié de type artisanal,Non,M,ABDI,Melvin,28/06/1998,Non +92,Hauts-de-Seine,09,9ème circonscription,6,153,M,VIOLLEAU,Laurent,07/07/1973,DVG,Cadre administratif et commercial d'entreprise,Non,F,OUEDRAOGO,Amanda,24/04/1985,Non +92,Hauts-de-Seine,09,9ème circonscription,7,28,F,CHAUDON,Anne-Laure,16/01/1968,DXG,"Professeur, profession scientifique",Non,M,SNAIEDEN,Raphaël,12/05/1979,Non +92,Hauts-de-Seine,09,9ème circonscription,8,10,M,BESSIÈRES,Guillaume,18/12/1983,REC,"Professeur des écoles, instituteur et assimilé",Non,F,LAURENT,Marianine,02/01/1971,Non +92,Hauts-de-Seine,09,9ème circonscription,9,85,M,CHESNEAU,Léopold,08/10/2001,ECO,"Elève, étudiant",Non,F,LEFÈVRE,Stéphanie,05/02/1970,Non +92,Hauts-de-Seine,09,9ème circonscription,10,152,M,LOUAP,Pascal,20/10/1972,LR,Cadre administratif et commercial d'entreprise,Non,F,DE MAISTRE,Elisabeth,07/10/1975,Non +92,Hauts-de-Seine,09,9ème circonscription,11,151,M,DE JERPHANION,Antoine,22/04/1992,DVD,Cadre administratif et commercial d'entreprise,Non,F,MISSOFFE,Ségolène,08/09/1957,Non +92,Hauts-de-Seine,09,9ème circonscription,12,122,M,PELLERIN,Emmanuel,20/08/1970,ENS,Profession libérale,Non,F,DE COURCY,Nathalie,04/10/1973,Non +92,Hauts-de-Seine,10,10ème circonscription,1,72,F,SOUBELET,Cécile,29/11/1983,NUP,Cadre administratif et commercial d'entreprise,Non,F,SCHOLLAERT,Eloïse,25/01/1992,Non +92,Hauts-de-Seine,10,10ème circonscription,2,40,F,VIGUIÉ,Laurence,17/09/1955,DXG,Technicien,Non,M,PAPUCHON,Adrien,18/03/1985,Non +92,Hauts-de-Seine,10,10ème circonscription,3,154,F,CABERAS,Edith,26/07/1968,REG,Agriculteur sur petite exploitation,Non,F,ABIVEN,Stéphanie,11/08/1983,Non +92,Hauts-de-Seine,10,10ème circonscription,4,146,M,AMRANI,Samir,04/01/1968,DIV,Technicien,Non,F,BELKHACEM,Nadia,07/03/1947,Non +92,Hauts-de-Seine,10,10ème circonscription,5,9,M,PETIT,Hadrien,26/12/1997,RN,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,WITCZAK,Nicolas,02/10/1993,Non +92,Hauts-de-Seine,10,10ème circonscription,6,19,M,ESCALE,Alexis,06/03/1976,ECO,Cadre administratif et commercial d'entreprise,Non,F,ATEKIAN,Beverly,20/04/1989,Non +92,Hauts-de-Seine,10,10ème circonscription,7,14,M,ATTAL,Gabriel,16/03/1989,ENS,Cadre de la fonction publique,Non,F,GUICHARD,Claire,30/05/1967,Non +92,Hauts-de-Seine,10,10ème circonscription,8,155,M,EL BOUZAIDI,Azedine,23/12/1958,ECO,Commerçant et assimilé,Non,M,EL BOUZAIDI CHEIKHI,Salim,29/04/1991,Non +92,Hauts-de-Seine,10,10ème circonscription,9,34,F,BESSIÈRES,Léa,31/08/1989,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,DE GRAEVE,Bruno,06/03/1967,Non +92,Hauts-de-Seine,10,10ème circonscription,10,156,F,RONCHINI,Vanessa,07/05/1986,DXG,Cadre administratif et commercial d'entreprise,Non,M,FOURNIER,Vincent,23/10/1983,Non +92,Hauts-de-Seine,11,11ème circonscription,1,86,M,SEHILI,Mustapha,07/03/1981,DIV,Employé de commerce,Non,F,KARNOU,Farida,03/03/1978,Non +92,Hauts-de-Seine,11,11ème circonscription,2,87,M,CHIARELLI,Xavier,05/02/1981,DXG,Employé civil et agent de service de la fonction publique,Non,F,LUONG,Man,11/06/1966,Non +92,Hauts-de-Seine,11,11ème circonscription,3,8,F,CHATELAIN,Juliette,02/08/1968,RN,"Professeur des écoles, instituteur et assimilé",Non,M,COMBAUT,Christophe,18/08/1972,Non +92,Hauts-de-Seine,11,11ème circonscription,4,157,M,PONGE,Philippe,21/08/1963,DIV,"Professeur des écoles, instituteur et assimilé",Non,F,TESTA,Estelle,04/12/1969,Non +92,Hauts-de-Seine,11,11ème circonscription,5,75,M,SAINTOUL,Aurélien,26/05/1988,NUP,Cadre de la fonction publique,Non,F,GABIACHE,Claire,10/08/1988,Non +92,Hauts-de-Seine,11,11ème circonscription,6,4,M,GEOFFRE,Philippe,08/07/1957,DXG,Ancienne profession intermédiaire,Non,F,MONTOUT,Marie-Josée,28/01/1948,Non +92,Hauts-de-Seine,11,11ème circonscription,7,119,F,ROSSI,Laurianne,18/05/1984,ENS,Ancien cadre,Oui,F,PIGNARRE,Raphaëlle,08/09/1978,Non +92,Hauts-de-Seine,11,11ème circonscription,8,7,F,LÉVÊQUE,Florence,04/05/1965,REC,Cadre administratif et commercial d'entreprise,Non,M,COLLIN,Stanislas,02/01/2000,Non +92,Hauts-de-Seine,11,11ème circonscription,9,49,M,ROLLOT,Franck,31/01/1969,DXG,Ouvrier qualifié de type industriel,Non,M,LEBRUN,Alban,06/12/1989,Non +92,Hauts-de-Seine,11,11ème circonscription,10,37,F,BROUSSAUDIER,Dominique Chantal,29/04/1960,ECO,Employé civil et agent de service de la fonction publique,Non,F,CRUCHET,Audrey,22/06/1987,Non +92,Hauts-de-Seine,12,12ème circonscription,1,45,M,THOMAS,Marc,06/10/1964,RN,Profession libérale,Non,F,LEROC,Devi,15/11/1997,Non +92,Hauts-de-Seine,12,12ème circonscription,2,117,F,THOMAS,Cathy,25/03/1968,NUP,Cadre administratif et commercial d'entreprise,Non,M,HUART,Robin,22/05/1984,Non +92,Hauts-de-Seine,12,12ème circonscription,3,44,M,BERNARD,Yann,19/06/1976,DXG,Ouvrier non qualifié de type industriel,Non,M,THOYER,Elvy,01/03/1978,Non +92,Hauts-de-Seine,12,12ème circonscription,4,36,M,BLOT,Benoit,06/08/1960,LR,Profession libérale,Non,F,QUILLERY,Christine,18/04/1955,Non +92,Hauts-de-Seine,12,12ème circonscription,5,39,M,NOBLET,Florent,01/06/1982,REC,Cadre administratif et commercial d'entreprise,Non,F,PARIZEL,Annie,11/06/1958,Non +92,Hauts-de-Seine,12,12ème circonscription,6,159,F,GABEN,Céline,16/07/1988,DSV,Employé de commerce,Non,M,TRUFFIER,Lionel,21/08/1959,Non +92,Hauts-de-Seine,12,12ème circonscription,7,120,M,GHALEB,Kamel,28/03/1968,DIV,Chauffeur,Non,F,DAOUDI,Malika,17/04/1986,Non +92,Hauts-de-Seine,12,12ème circonscription,8,31,M,VASTEL,Laurent,10/10/1959,UDI,Cadre de la fonction publique,Non,F,BENMERADI,Razika,26/08/1981,Non +92,Hauts-de-Seine,12,12ème circonscription,9,6,M,PREVEL,Guillaume,04/07/1978,ECO,Cadre de la fonction publique,Non,F,GAUCHY,Laurence,27/05/1966,Non +92,Hauts-de-Seine,12,12ème circonscription,10,158,F,BAKHTI,Hayat,23/03/1966,ECO,"Elève, étudiant",Non,F,VICK,Sophie,18/06/1970,Non +92,Hauts-de-Seine,12,12ème circonscription,11,125,M,BOURLANGES,Jean-Louis,13/07/1946,ENS,Cadre de la fonction publique,Oui,F,GUILLERM,Carole,08/01/1987,Non +92,Hauts-de-Seine,12,12ème circonscription,12,160,M,SAMIEZ,Florian,24/01/1994,DIV,Ingénieur et cadre technique d'entreprise,Non,M,GALIBERT,Paul,13/10/1988,Non +92,Hauts-de-Seine,13,13ème circonscription,1,5,M,BENOIST,David,24/02/1972,ECO,Ingénieur et cadre technique d'entreprise,Non,F,DURRMEYER,Catherine,05/09/1961,Non +92,Hauts-de-Seine,13,13ème circonscription,2,71,F,MARTIN,Agathe,25/06/1967,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,GUELFAND,Patrick,23/06/1957,Non +92,Hauts-de-Seine,13,13ème circonscription,3,111,F,BREGEON,Maud,11/02/1991,ENS,Ingénieur et cadre technique d'entreprise,Non,M,MONGARDIEN,Christphe,09/01/1963,Non +92,Hauts-de-Seine,13,13ème circonscription,4,128,M,NASSIMI,Farid,10/04/1971,DIV,Chauffeur,Non,F,BOUSSOUF,Dalila,06/03/1983,Non +92,Hauts-de-Seine,13,13ème circonscription,5,106,M,ISNARD,Numa,14/03/1987,LR,Profession libérale,Non,F,BERGEROL,Véronique,28/10/1961,Non +92,Hauts-de-Seine,13,13ème circonscription,6,88,M,GAUTRELET,Julien,10/04/1976,RDG,Commerçant et assimilé,Non,F,BRUNAT,Emma,05/08/1998,Non +92,Hauts-de-Seine,13,13ème circonscription,7,161,M,LAURENT,Philippe,14/05/1954,UDI,Ancien cadre,Non,M,AIT-OUARAZ,Said,28/09/1979,Non +92,Hauts-de-Seine,13,13ème circonscription,8,3,M,YVARS,Patrick,20/08/1960,RN,Policier et militaire,Non,F,DOUMONT,Isabelle,21/10/1957,Non +92,Hauts-de-Seine,13,13ème circonscription,9,126,M,GAILLARD,Brice,03/07/1985,NUP,Cadre de la fonction publique,Non,F,LARNAC,Justine,06/01/1997,Non +92,Hauts-de-Seine,13,13ème circonscription,10,70,M,TOYANE,Alexis,21/06/1988,DIV,Ingénieur et cadre technique d'entreprise,Non,M,LEMAIRE,Marc,28/09/1981,Non +92,Hauts-de-Seine,13,13ème circonscription,11,89,M,SIMONIN,Thibault,23/12/1991,REC,"Contremaître, agent de maîtrise",Non,F,AMATO,Aude,18/11/1985,Non +93,Seine-Saint-Denis,01,1ère circonscription,1,87,F,AÏDARA DIABY,Madioula,14/03/1978,DVG,"Professeur, profession scientifique",Non,M,PLOMB,Cyrille,09/03/1970,Non +93,Seine-Saint-Denis,01,1ère circonscription,2,149,F,ZEKRI,Fouzia,31/07/1972,DVG,Cadre administratif et commercial d'entreprise,Non,F,SOORANNA,Brayen,04/10/1985,Non +93,Seine-Saint-Denis,01,1ère circonscription,3,94,M,ABID,Mohamed-Jamil,25/09/1994,DVG,"Contremaître, agent de maîtrise",Non,F,BARA,Nael,26/07/1979,Non +93,Seine-Saint-Denis,01,1ère circonscription,4,6,F,BAHLOUL,Maïa,15/01/2000,DXG,"Elève, étudiant",Non,M,UHALDE,Paul,02/08/2000,Non +93,Seine-Saint-Denis,01,1ère circonscription,5,88,F,DROMARD,Jeanne,22/07/1983,ENS,Cadre de la fonction publique,Non,M,BONNIN,Gérald,18/05/1975,Non +93,Seine-Saint-Denis,01,1ère circonscription,6,26,F,ETIENNE,Etienna,05/01/1952,UDI,Ancien employé,Non,M,COURRIER,Jonathan,30/12/1990,Non +93,Seine-Saint-Denis,01,1ère circonscription,7,136,F,DARMON,Marianne,26/05/1988,DVG,Cadre de la fonction publique,Non,M,MOUGET,Edouart Daryth,17/08/1995,Non +93,Seine-Saint-Denis,01,1ère circonscription,8,31,M,AUBRY,Alain,02/07/1963,DXG,Employé civil et agent de service de la fonction publique,Non,M,MARANGET,Benoit,08/01/1971,Non +93,Seine-Saint-Denis,01,1ère circonscription,9,81,M,PÉGUILLET,François,18/08/1989,LR,Cadre administratif et commercial d'entreprise,Non,F,LEFORESTIER,Typhaine,24/10/1994,Non +93,Seine-Saint-Denis,01,1ère circonscription,10,48,M,HIRIGOYEN,Jérôme,06/03/1979,ECO,Ingénieur et cadre technique d'entreprise,Non,F,CHEVAL,Christine,12/11/1976,Non +93,Seine-Saint-Denis,01,1ère circonscription,11,146,M,DEROCHE,Francois,27/05/1963,DVC,Profession libérale,Non,F,FERTAT,Nora,23/11/1993,Non +93,Seine-Saint-Denis,01,1ère circonscription,12,129,F,EDE,Olga,29/11/1974,DVC,Profession libérale,Non,F,MAUBERT,Marie,01/08/1948,Non +93,Seine-Saint-Denis,01,1ère circonscription,13,109,F,BUSCH,Anne-Solenne,08/11/1985,REC,Profession libérale,Non,M,BENONI,Jacky,27/06/1997,Non +93,Seine-Saint-Denis,01,1ère circonscription,14,40,F,BRAND,Marie,07/12/1982,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,TSOBANOPOULOS,Alexandre,26/08/1971,Non +93,Seine-Saint-Denis,01,1ère circonscription,15,5,M,COQUEREL,Eric,30/12/1958,NUP,"Ancien artisan, commerçant, chef d'entreprise",Oui,F,MONMIREL,Manon,25/08/1991,Non +93,Seine-Saint-Denis,02,2ème circonscription,1,103,F,THABET,Sinaa,07/02/1989,LR,Cadre de la fonction publique,Non,M,KOUPPÉ DE K MARTIN,Pascal,27/09/1968,Non +93,Seine-Saint-Denis,02,2ème circonscription,2,84,M,SOUKOUNA,Bakary,19/05/1986,DVG,Employé civil et agent de service de la fonction publique,Non,F,SOUPRAYEN,Marie,23/02/1999,Non +93,Seine-Saint-Denis,02,2ème circonscription,3,98,M,CHIKHI,Brahim,06/08/1977,DVC,Ingénieur et cadre technique d'entreprise,Non,F,LEFEUVRE,Elisabeth,11/06/1964,Non +93,Seine-Saint-Denis,02,2ème circonscription,4,62,M,PEU,Stéphane,24/07/1962,NUP,Employé administratif d'entreprise,Oui,M,AID,Farid,05/12/1971,Non +93,Seine-Saint-Denis,02,2ème circonscription,5,142,M,BROSSARD,Jean-Christophe,19/11/1996,DXG,"Elève, étudiant",Non,F,COUTABLE,Carole,24/05/1974,Non +93,Seine-Saint-Denis,02,2ème circonscription,6,45,M,COLOMAS,Luc,15/08/1956,RN,Ancienne profession intermédiaire,Non,F,MULLER,Louisette,07/09/1942,Non +93,Seine-Saint-Denis,02,2ème circonscription,7,110,F,BROOD,Anaïs,25/03/1992,ENS,Cadre administratif et commercial d'entreprise,Non,M,PETO,Steve,09/02/1982,Non +93,Seine-Saint-Denis,02,2ème circonscription,8,13,F,RENAUD,Agnès,10/10/1964,DXG,"Professeur, profession scientifique",Non,M,JULIEN,Philippe,06/12/1957,Non +93,Seine-Saint-Denis,02,2ème circonscription,9,91,M,PICHARD,Aurélien,21/02/1987,ECO,Ingénieur et cadre technique d'entreprise,Non,M,HAAS,Philippe,20/07/1973,Non +93,Seine-Saint-Denis,02,2ème circonscription,10,141,F,BARDY,Aurélia,09/12/1973,REC,Profession libérale,Non,M,LABOLLE,Stéphane,11/01/1973,Non +93,Seine-Saint-Denis,02,2ème circonscription,11,85,F,VÉTIL,Christelle,11/03/1975,UDI,Employé administratif d'entreprise,Non,F,WIRY,Prescilia,28/07/1999,Non +93,Seine-Saint-Denis,03,3ème circonscription,1,41,M,CRETIN-GIELLY,Denis,14/03/1960,RN,Ancien cadre,Non,M,TEMUTU,Jean-Baptiste,28/03/1974,Non +93,Seine-Saint-Denis,03,3ème circonscription,2,20,M,ZRIHEN,Joseph,20/11/1987,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,REVERTE,Karine,04/11/1969,Non +93,Seine-Saint-Denis,03,3ème circonscription,3,113,M,ANATO,Patrice,14/03/1976,ENS,Ingénieur et cadre technique d'entreprise,Oui,F,FACHE,Valérie,14/06/1968,Non +93,Seine-Saint-Denis,03,3ème circonscription,4,30,M,PORTES,Thomas,18/11/1985,NUP,Employé civil et agent de service de la fonction publique,Non,F,MISSAOUI,Nadia,10/10/1954,Non +93,Seine-Saint-Denis,03,3ème circonscription,5,10,M,POILLOT,Harald,03/05/1972,LR,Chef d'entreprise de 10 salariés ou plus,Non,F,PONZIO-REFATTI,Marie,27/08/1981,Non +93,Seine-Saint-Denis,03,3ème circonscription,6,90,F,BEN MAMI,Louise,01/09/1950,ECO,Ancien employé,Non,M,LAPEYRE,Jean-Marie,20/07/1965,Non +93,Seine-Saint-Denis,03,3ème circonscription,7,125,F,TOURE,Maëlle Massandjie,19/02/1972,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,ROUHAUD,Michaël Sylvain,14/11/1974,Non +93,Seine-Saint-Denis,03,3ème circonscription,8,107,F,CHELKI,Fathia,01/06/1972,DIV,Commerçant et assimilé,Non,M,YAKOU,Kara,12/09/1978,Non +93,Seine-Saint-Denis,03,3ème circonscription,9,11,F,GAUCHERAND,Maëlle,28/12/1978,DXG,"Professeur, profession scientifique",Non,M,KERDRAON,Jean-Yves,28/10/1961,Non +93,Seine-Saint-Denis,03,3ème circonscription,10,131,M,MELKA,Albert,18/01/1948,DVG,Commerçant et assimilé,Non,F,AÏNA,Jamila,22/06/1976,Non +93,Seine-Saint-Denis,03,3ème circonscription,11,96,F,AMOUROUX,Nathalie,10/04/1978,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,FOURCAULT-PEQUEGNOT,Aurélie,09/01/1993,Non +93,Seine-Saint-Denis,03,3ème circonscription,12,74,F,ENAUD,Geneviève,26/12/1946,DXG,Profession libérale,Non,M,HUGÉ,Guy,13/01/1949,Non +93,Seine-Saint-Denis,03,3ème circonscription,13,38,F,BORDREUIL,Myriam,02/04/1961,REC,"Professeur, profession scientifique",Non,M,FAGE,André,07/11/1957,Non +93,Seine-Saint-Denis,03,3ème circonscription,14,2,F,CAMPANA,Sandrine,18/05/1972,DSV,Ingénieur et cadre technique d'entreprise,Non,F,SANAGUSTIN,Lys,12/09/1963,Non +93,Seine-Saint-Denis,04,4ème circonscription,1,27,M,DIOUARA,Aly,01/03/1987,DIV,Cadre de la fonction publique,Non,F,RIGAUDIERE,Laëtitia,02/01/1980,Non +93,Seine-Saint-Denis,04,4ème circonscription,2,29,F,LEY,Marlène,17/11/1976,DXG,"Professeur, profession scientifique",Non,M,FOURNET,Serge,18/11/1961,Non +93,Seine-Saint-Denis,04,4ème circonscription,3,12,M,TAÏBI,Azzédine,21/06/1964,DVG,Profession intermédiaire de la santé et du travail social,Non,F,KHATIM,Karima,21/04/1985,Non +93,Seine-Saint-Denis,04,4ème circonscription,4,111,F,BOUROUAHA,Soumya,16/03/1964,NUP,"Professeur, profession scientifique",Non,F,BUFFET,Marie-George,07/05/1949,Oui +93,Seine-Saint-Denis,04,4ème circonscription,5,115,M,SOURDILLAT,Stéphane,04/09/1969,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,LE BALC'H,Nathalie,18/01/1968,Non +93,Seine-Saint-Denis,04,4ème circonscription,6,60,F,DESBOEUF,Sabine,27/03/1958,DXG,"Professeur, profession scientifique",Non,M,JANVIER,Jean-Paul,29/08/1972,Non +93,Seine-Saint-Denis,04,4ème circonscription,7,51,F,LÉVÊQUE,Colette,04/07/1966,RN,Cadre de la fonction publique,Non,M,DELARUE,Bruno,26/02/1967,Non +93,Seine-Saint-Denis,04,4ème circonscription,8,144,M,ECH-CHETOUANI,Zouhairr,10/07/1974,DIV,Profession intermédiaire de la santé et du travail social,Non,F,BOUMAZA,Soraya,20/05/1991,Non +93,Seine-Saint-Denis,04,4ème circonscription,9,104,F,RINEL,Lova,13/06/1983,ENS,Cadre de la fonction publique,Non,M,BOUMEDJANE,Karim,28/04/1974,Non +93,Seine-Saint-Denis,04,4ème circonscription,10,23,F,PETTITT,Vanessa,11/05/1969,REC,Ingénieur et cadre technique d'entreprise,Non,F,MASSÉÏ,Isabelle,26/02/1974,Non +93,Seine-Saint-Denis,04,4ème circonscription,11,34,F,GOUREAU,Marie-Claude,03/01/1955,LR,Ancien employé,Non,M,CARRE,Julien,01/12/1986,Non +93,Seine-Saint-Denis,04,4ème circonscription,12,36,F,ATTIG,Sonia,19/07/1975,DVG,Cadre administratif et commercial d'entreprise,Non,F,PAYOM,Emma,04/05/1983,Non +93,Seine-Saint-Denis,05,5ème circonscription,1,43,F,LESTRADET,Nelly,21/10/1966,RN,Ingénieur et cadre technique d'entreprise,Non,M,CLAVEL,Gilles,06/06/1964,Non +93,Seine-Saint-Denis,05,5ème circonscription,2,19,F,CORBANI,Corinne,03/08/1962,DXG,Profession intermédiaire de la santé et du travail social,Non,M,BONNERUE,Vincent,29/10/1979,Non +93,Seine-Saint-Denis,05,5ème circonscription,3,4,M,DESBOIS,Geoffroy,14/12/1978,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,M,FAOUAZE,Zaki,14/10/1981,Non +93,Seine-Saint-Denis,05,5ème circonscription,4,140,M,ROUECHE,Raynald,03/03/1966,DVC,Ancien cadre,Non,F,BOUTERFASS,Faysa,03/11/1983,Non +93,Seine-Saint-Denis,05,5ème circonscription,5,114,M,LIBERT,Raphaël,17/03/1969,REC,Ingénieur et cadre technique d'entreprise,Non,F,TARTARE,Tessa,20/10/1996,Non +93,Seine-Saint-Denis,05,5ème circonscription,6,65,F,GARRIDO,Raquel,23/04/1974,NUP,Profession libérale,Non,M,MOURY,José,10/12/1969,Non +93,Seine-Saint-Denis,05,5ème circonscription,7,93,F,AIROUCHE,Sonia,01/09/1974,REG,Profession intermédiaire de la santé et du travail social,Non,M,M'BATEL,Djim,01/10/1976,Non +93,Seine-Saint-Denis,05,5ème circonscription,8,122,M,AIT AKKACHE,Nabil,29/06/1985,ENS,Cadre administratif et commercial d'entreprise,Non,M,CHOLOT,Christophe,03/01/1984,Non +93,Seine-Saint-Denis,05,5ème circonscription,9,112,M,SAULIERE,Gilles,25/07/1958,ECO,Cadre administratif et commercial d'entreprise,Non,F,POILLOT,Elisabeth,17/01/1962,Non +93,Seine-Saint-Denis,05,5ème circonscription,10,78,F,HORMI,Amel,30/04/1994,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,DELTEIL,Mehdi,03/10/1994,Non +93,Seine-Saint-Denis,05,5ème circonscription,11,86,M,LAGARDE,Jean-Christophe,24/10/1967,UDI,Cadre de la fonction publique,Oui,M,CHABANI,Hamid,25/03/1983,Non +93,Seine-Saint-Denis,05,5ème circonscription,12,22,M,FEGER,Rodolphe,07/05/1968,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,ZAJAC,Rémi,18/12/1966,Non +93,Seine-Saint-Denis,05,5ème circonscription,13,138,F,ARGOUSE,Nao,01/07/1998,DIV,"Elève, étudiant",Non,M,PASSARD,Martin,11/12/1998,Non +93,Seine-Saint-Denis,06,6ème circonscription,1,59,F,SACKHO,Kourtoum,27/09/1984,UDI,Cadre de la fonction publique,Non,M,DOCTEUR ROZAN,Marc-Alain,13/03/1945,Non +93,Seine-Saint-Denis,06,6ème circonscription,2,42,F,TROVA,Françoise,07/03/1948,RN,Ancienne profession intermédiaire,Non,M,BEAUVOIS,Eric,17/09/1961,Non +93,Seine-Saint-Denis,06,6ème circonscription,3,147,M,ZEROUALI,Ali,28/09/1964,DIV,Profession intermédiaire de la santé et du travail social,Non,F,GHOTBI,Malika,30/03/1990,Non +93,Seine-Saint-Denis,06,6ème circonscription,4,55,F,ACHFAA,Soumia,13/11/1971,RDG,Profession libérale,Non,M,NOËL,Jean-Philippe,17/01/1982,Non +93,Seine-Saint-Denis,06,6ème circonscription,5,35,M,CHAMPION,Patrick,22/04/1964,DXG,Technicien,Non,F,JOURNO,Laurie,26/10/1977,Non +93,Seine-Saint-Denis,06,6ème circonscription,6,132,F,DJEBBARI,Nabila,17/05/1986,DVG,Cadre administratif et commercial d'entreprise,Non,F,CASTILLOU,Nadine,15/08/1970,Non +93,Seine-Saint-Denis,06,6ème circonscription,7,52,F,ARTHAUD,Nathalie,23/02/1970,DXG,"Professeur, profession scientifique",Non,F,BORDES,Armonia,03/05/1945,Non +93,Seine-Saint-Denis,06,6ème circonscription,8,83,M,LACHAUD,Bastien,05/08/1980,NUP,"Professeur, profession scientifique",Oui,F,LO TUTALA,Aline,02/03/1969,Non +93,Seine-Saint-Denis,06,6ème circonscription,9,137,F,BOURAK,Aïcha,25/06/1966,DIV,"Clergé, religieux",Non,M,BARUCHEL,Maurice,08/09/1956,Non +93,Seine-Saint-Denis,06,6ème circonscription,10,102,F,BAZIZ,Yasmina,16/04/1972,ENS,Profession intermédiaire administrative de la fonction publique,Non,F,DIMINO,Lucie,26/12/1966,Non +93,Seine-Saint-Denis,06,6ème circonscription,11,128,F,BEUGRÉ,Noélie,09/10/2003,REC,"Elève, étudiant",Non,M,BOYDEV,Stoyan,10/03/1979,Non +93,Seine-Saint-Denis,06,6ème circonscription,12,139,M,MABIALA,Aymane,21/03/1995,DIV,Cadre administratif et commercial d'entreprise,Non,M,IGNACIO PINTO,Adé-Benjamin,10/02/1995,Non +93,Seine-Saint-Denis,07,7ème circonscription,1,80,M,CHAIR,Hamid,23/06/1978,RDG,Employé administratif d'entreprise,Non,F,BENTOUCHA,Faïrouz,08/09/1963,Non +93,Seine-Saint-Denis,07,7ème circonscription,2,66,F,DEHAY,Catherine,22/07/1960,ECO,Ingénieur et cadre technique d'entreprise,Non,F,BENABDALLAH,Corinne,10/09/1960,Non +93,Seine-Saint-Denis,07,7ème circonscription,3,54,F,BROSSIER,Marie-Laure,20/11/1968,ENS,"Profession de l'information, des arts et des spectacles",Non,M,MONTARON,Xavier,15/09/1975,Non +93,Seine-Saint-Denis,07,7ème circonscription,4,32,F,JOCHAUD,Aurélie,03/08/1977,DXG,Profession intermédiaire de la santé et du travail social,Non,M,BONILAURI,Serge,13/08/1966,Non +93,Seine-Saint-Denis,07,7ème circonscription,5,143,F,MEHIDI,Myriam,01/01/1988,REC,"Professeur des écoles, instituteur et assimilé",Non,F,HAMOUDI,Kahina,02/12/1990,Non +93,Seine-Saint-Denis,07,7ème circonscription,6,117,F,BOUCABEILLE,Madina,03/03/1997,UDI,"Elève, étudiant",Non,M,DORIDANT,Richard,02/06/1964,Non +93,Seine-Saint-Denis,07,7ème circonscription,7,37,F,KEISER,Christel,10/11/1966,DXG,"Professeur, profession scientifique",Non,F,TACCHELLA,Caroline,27/01/1977,Non +93,Seine-Saint-Denis,07,7ème circonscription,8,108,F,MONTAGNON,Jeanne,12/09/1953,ECO,Ancien cadre,Non,F,FERNANDEZ,Vanessa,31/07/1975,Non +93,Seine-Saint-Denis,07,7ème circonscription,9,135,F,YONIS,Choukri,30/03/1979,DVG,Cadre de la fonction publique,Non,F,CHAPPUT,Christel,16/07/1967,Non +93,Seine-Saint-Denis,07,7ème circonscription,10,53,M,YAGOUBI-MOROCHO,Karim,10/09/2002,RN,"Elève, étudiant",Non,M,BLIN,Jean-Luc,02/07/1956,Non +93,Seine-Saint-Denis,07,7ème circonscription,11,79,M,CORBIÈRE,Alexis,17/08/1968,NUP,"Professeur, profession scientifique",Oui,F,SHAHRYARI,Sayna,01/05/1988,Non +93,Seine-Saint-Denis,08,8ème circonscription,1,33,M,TOBEILEM,Grégory,07/02/1977,DXG,"Professeur, profession scientifique",Non,F,CHASTAING,Catherine,30/11/1966,Non +93,Seine-Saint-Denis,08,8ème circonscription,2,46,M,JOLIVET,Sébastien,24/01/1973,RN,Cadre de la fonction publique,Non,F,COTTEREAU,Valérie,17/02/1973,Non +93,Seine-Saint-Denis,08,8ème circonscription,3,121,M,GUIRAUDOU,Hugo,08/08/1997,DVG,Cadre administratif et commercial d'entreprise,Non,F,LAUR,Juliette,24/08/2000,Non +93,Seine-Saint-Denis,08,8ème circonscription,4,7,F,FOURNIER,Corinne,10/03/1965,ECO,Ingénieur et cadre technique d'entreprise,Non,F,AMSELLEM,Francine,07/05/1961,Non +93,Seine-Saint-Denis,08,8ème circonscription,5,21,F,KELOUA HACHI,Fatiha,05/06/1971,NUP,"Professeur, profession scientifique",Non,F,THIBAULT,Magalie,25/01/1988,Non +93,Seine-Saint-Denis,08,8ème circonscription,6,71,M,VALENTE,Sylvio,09/07/1960,REC,Ingénieur et cadre technique d'entreprise,Non,F,ZEMMOUR,Catherine,18/11/1954,Non +93,Seine-Saint-Denis,08,8ème circonscription,7,70,M,CARVALHINHO,Geoffrey,11/01/1990,LR,Cadre administratif et commercial d'entreprise,Non,F,MEDJAOUI,Aïcha,10/11/1979,Non +93,Seine-Saint-Denis,08,8ème circonscription,8,75,M,ZEIGER,Franck,22/03/1965,DSV,"Professeur, profession scientifique",Non,M,SLAKMON,Nicolas,19/07/1984,Non +93,Seine-Saint-Denis,08,8ème circonscription,9,97,F,CHARRIERE,Sylvie,15/05/1961,ENS,Cadre de la fonction publique,Oui,M,BOULON,Alex,22/10/1962,Non +93,Seine-Saint-Denis,08,8ème circonscription,10,127,M,FOURNIER,Jean-Christophe,29/03/1985,DXG,Profession libérale,Non,F,BEKHTARI,Néva,01/07/1988,Non +93,Seine-Saint-Denis,08,8ème circonscription,11,89,M,CYRILLA,Eddy,31/03/1969,ECO,Profession intermédiaire de la santé et du travail social,Non,F,GAUTROT,"Isabelle, Germaine, Gilberte",18/07/1964,Non +93,Seine-Saint-Denis,09,9ème circonscription,1,50,M,KOZELKO,Eric,22/04/1966,RN,Employé civil et agent de service de la fonction publique,Non,M,SUNA,Mustafa,15/11/1969,Non +93,Seine-Saint-Denis,09,9ème circonscription,2,16,F,TROUVÉ,Aurélie,20/09/1979,NUP,Cadre de la fonction publique,Non,M,OZGUNER,Mehmet,20/08/1999,Non +93,Seine-Saint-Denis,09,9ème circonscription,3,17,M,PIERRE,Robenson,14/07/1980,LR,Profession libérale,Non,M,SAWICKI,Cédric,18/02/1997,Non +93,Seine-Saint-Denis,09,9ème circonscription,4,57,M,SAADA,Alexandre,08/02/1994,ENS,Employé civil et agent de service de la fonction publique,Non,F,CETINKAYA,Emel,13/06/1978,Non +93,Seine-Saint-Denis,09,9ème circonscription,5,119,F,GARRIGUE,Laure,11/07/1975,REC,Cadre administratif et commercial d'entreprise,Non,M,MAYER,Tahison,19/12/1991,Non +93,Seine-Saint-Denis,09,9ème circonscription,6,68,F,FITOUSSI,Carole,06/02/1961,ECO,"Professeur, profession scientifique",Non,F,BLOT,Frédérique,24/04/1956,Non +93,Seine-Saint-Denis,09,9ème circonscription,7,99,M,LEFEBVRE,Jean-Paul,30/11/1956,DVG,Cadre administratif et commercial d'entreprise,Non,F,PETAT,Chloé,07/11/1997,Non +93,Seine-Saint-Denis,09,9ème circonscription,8,3,M,LANG-ROUSSEAU,Aloïs,14/11/1997,ECO,"Profession de l'information, des arts et des spectacles",Non,F,VOTIER,Virginie,19/09/1975,Non +93,Seine-Saint-Denis,09,9ème circonscription,9,148,M,BADACHE,Atmane,19/02/1977,DIV,Profession libérale,Non,M,SY,Amadou,23/04/1980,Non +93,Seine-Saint-Denis,09,9ème circonscription,10,77,F,PETRZLJAN,Héléna,21/05/1993,UDI,Employé civil et agent de service de la fonction publique,Non,F,TOKYAY,Axelle,30/05/1970,Non +93,Seine-Saint-Denis,09,9ème circonscription,11,101,M,BUROT,Jean-Paul,21/11/1957,DXG,Ouvrier qualifié de type industriel,Non,M,TRIPELON,Olivier,25/05/1958,Non +93,Seine-Saint-Denis,09,9ème circonscription,12,69,F,ODOYER,Cécile,04/02/1972,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,FERNANDES,Grégory,19/12/1983,Non +93,Seine-Saint-Denis,10,10ème circonscription,1,14,F,GUY,Sylvie,08/07/1955,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,VIDAL,Dominique,28/12/1960,Non +93,Seine-Saint-Denis,10,10ème circonscription,2,15,M,MALARD,Jean-Ludwig,16/02/1984,ECO,Cadre administratif et commercial d'entreprise,Non,F,FERREIRA,Audrey,18/06/1990,Non +93,Seine-Saint-Denis,10,10ème circonscription,3,8,M,RAMADIER,Alain,08/07/1958,LR,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Oui,F,GAUTHIER,Christine,14/08/1958,Non +93,Seine-Saint-Denis,10,10ème circonscription,4,133,F,ABDELLAOUI,Leïla,24/12/1981,DVC,Cadre administratif et commercial d'entreprise,Non,M,PAVLOVIC,Zoran,18/04/1984,Non +93,Seine-Saint-Denis,10,10ème circonscription,5,134,F,HIMMI,Elhame,28/11/1979,DIV,Profession intermédiaire de la santé et du travail social,Non,M,KLEIN,Claude,20/09/1979,Non +93,Seine-Saint-Denis,10,10ème circonscription,6,145,M,BOUNOUA,Mohamed,27/05/1980,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,DETOEUF,Nathalie,11/09/1969,Non +93,Seine-Saint-Denis,10,10ème circonscription,7,118,M,SRAI,Abdelssamad,14/05/1998,DIV,"Elève, étudiant",Non,M,OUAFFI,Nabil,20/05/1998,Non +93,Seine-Saint-Denis,10,10ème circonscription,8,106,F,BAKHTI-ALOUT,Sonia,30/04/1979,ENS,Profession intermédiaire administrative de la fonction publique,Non,F,CHERKAOUI,Nadia,04/07/1982,Non +93,Seine-Saint-Denis,10,10ème circonscription,9,82,F,ABOMANGOLI,Nadège,15/09/1975,NUP,Cadre de la fonction publique,Non,M,CHANTEREAU,Jack,17/08/1950,Non +93,Seine-Saint-Denis,10,10ème circonscription,10,73,M,MINARDI,Gaëtan,16/02/1962,DXG,Ouvrier qualifié de type industriel,Non,M,BEAUFILS,Bruno,26/09/1966,Non +93,Seine-Saint-Denis,10,10ème circonscription,11,24,M,LOUBOTA,Praince Germain,13/07/1987,REC,Cadre administratif et commercial d'entreprise,Non,M,DOS SANTOS,Jean,16/12/1994,Non +93,Seine-Saint-Denis,10,10ème circonscription,12,67,F,CHATEAU,Pauline,03/06/2002,RN,"Elève, étudiant",Non,F,THIBAULT,Gabrielle,17/02/1972,Non +93,Seine-Saint-Denis,11,11ème circonscription,1,105,M,KHUL,Ton Tona,01/02/1963,DVD,Ancien cadre,Non,F,EL ABED,Sonia,14/05/1974,Non +93,Seine-Saint-Denis,11,11ème circonscription,2,126,M,MERETREL,François,16/01/1978,DIV,Artisan,Non,F,DURANT,Joëlle,03/05/1999,Non +93,Seine-Saint-Denis,11,11ème circonscription,3,76,F,AÏT MESGHAT,Lynda,11/08/1965,UDI,Profession intermédiaire de la santé et du travail social,Non,M,FERNANDEZ,Laurent,26/08/1968,Non +93,Seine-Saint-Denis,11,11ème circonscription,4,28,M,LEVERRIER,Jean-Pierre,10/11/1945,ECO,Ancien cadre,Non,F,HERGUÉ,Patricia,13/02/1962,Non +93,Seine-Saint-Denis,11,11ème circonscription,5,58,F,COUFFIN-GUÉRIN,Isabelle,17/06/1961,DXG,Employé civil et agent de service de la fonction publique,Non,M,ESTEVES,Germano,24/04/1961,Non +93,Seine-Saint-Denis,11,11ème circonscription,6,124,M,NAUD,Emmanuel,13/01/1959,LR,Profession intermédiaire administrative de la fonction publique,Non,M,KHEBAL,Sofiane,09/04/2002,Non +93,Seine-Saint-Denis,11,11ème circonscription,7,56,F,AUTAIN,Clémentine,26/05/1973,NUP,"Profession de l'information, des arts et des spectacles",Oui,F,BERNEX,Brigitte,03/01/1957,Non +93,Seine-Saint-Denis,11,11ème circonscription,8,39,F,GUILLEMETTE,Micheline,09/07/1947,DXG,Ancien cadre,Non,M,HAMDI,Rachid,15/02/1977,Non +93,Seine-Saint-Denis,11,11ème circonscription,9,123,F,OUARET,Hakima,18/11/1977,ENS,Cadre administratif et commercial d'entreprise,Non,M,AÏT ELDJOUDI,Djemel,12/08/1972,Non +93,Seine-Saint-Denis,11,11ème circonscription,10,49,F,JOLY,Renée,14/06/1959,RN,Commerçant et assimilé,Non,M,MADJARIAN,Jean,08/03/1953,Non +93,Seine-Saint-Denis,11,11ème circonscription,11,44,F,DE CARVALHO,Virginie,12/05/1981,DVG,Cadre administratif et commercial d'entreprise,Non,F,MABCHOUR,Najat,15/12/1968,Non +93,Seine-Saint-Denis,11,11ème circonscription,12,64,M,SCAGNI,Fabrice,28/12/1964,DVC,Cadre administratif et commercial d'entreprise,Non,F,LABORDE,Josette,26/06/1950,Non +93,Seine-Saint-Denis,11,11ème circonscription,13,116,F,DUSAUSOY,Guillemette,17/02/1986,REC,Profession intermédiaire de la santé et du travail social,Non,M,BENICHOU,Max,08/07/2002,Non +93,Seine-Saint-Denis,12,12ème circonscription,1,100,M,HOUHA,Malik,06/04/1978,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,JAN,Ludivine,27/02/1983,Non +93,Seine-Saint-Denis,12,12ème circonscription,2,9,F,CICERO,Sophie,29/03/1970,DXG,"Professeur, profession scientifique",Non,M,JOLIVET,Francis,02/05/1953,Non +93,Seine-Saint-Denis,12,12ème circonscription,3,130,F,CISSE,Mariam,27/07/1982,REG,Cadre de la fonction publique,Non,M,LAAOUAJ,Ayoub,23/12/1999,Non +93,Seine-Saint-Denis,12,12ème circonscription,4,61,M,TORO,Ludovic,16/02/1959,UDI,Profession libérale,Non,F,MONIER,Annick,19/11/1955,Non +93,Seine-Saint-Denis,12,12ème circonscription,5,120,M,CESUR,Bahri,01/05/1964,DIV,Artisan,Non,F,GUNAY,Hélène Gözde,07/05/1988,Non +93,Seine-Saint-Denis,12,12ème circonscription,6,25,M,SALLE,"Pierre, Marie",23/11/1951,REC,Ancien cadre,Non,F,CARNINO,Sylvie,09/08/1964,Non +93,Seine-Saint-Denis,12,12ème circonscription,7,47,M,PERIER,Jean-François,05/02/1951,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,MARANO,Enzo,25/08/2000,Non +93,Seine-Saint-Denis,12,12ème circonscription,8,18,F,AISSAOUI,Amal,14/02/1975,DXG,"Professeur, profession scientifique",Non,F,DELAUTRETTE,Corinne,08/05/1975,Non +93,Seine-Saint-Denis,12,12ème circonscription,9,72,M,LEGAVRE,Jérôme,20/08/1972,NUP,"Professeur, profession scientifique",Non,F,BARHANDI,Nezha,06/05/1979,Non +93,Seine-Saint-Denis,12,12ème circonscription,10,63,F,KLEBEK,Stéphanie,20/11/1967,DVG,Artisan,Non,M,LEFÉBURE,Pierre,13/02/1974,Non +93,Seine-Saint-Denis,12,12ème circonscription,11,95,M,TESTÉ,Stéphane,10/05/1968,ENS,"Professeur des écoles, instituteur et assimilé",Oui,F,DJABALI,Sara,22/12/1990,Non +93,Seine-Saint-Denis,12,12ème circonscription,12,92,M,VOILLEMIN,Arnold,16/04/1978,DSV,Technicien,Non,M,POËTTE,Arnaud,30/01/1982,Non +94,Val-de-Marne,01,1ère circonscription,1,36,M,ROBIN,Pierre,27/11/1967,ECO,Profession libérale,Non,F,MIKRUT,Ivana,30/04/1991,Non +94,Val-de-Marne,01,1ère circonscription,2,68,M,DESCROZAILLE,Frédéric,16/04/1967,ENS,Cadre administratif et commercial d'entreprise,Oui,F,ROZEN-WARGON,Deborah,25/04/1971,Non +94,Val-de-Marne,01,1ère circonscription,3,54,F,BRATULESCU,Mirela,15/09/1971,REC,Cadre administratif et commercial d'entreprise,Non,M,BLAINVILLE,Jacques,11/11/1959,Non +94,Val-de-Marne,01,1ère circonscription,4,82,M,GUINTRAND,Thierry,24/03/1973,NUP,"Professeur des écoles, instituteur et assimilé",Non,F,PETIT,Émilie,03/06/1983,Non +94,Val-de-Marne,01,1ère circonscription,5,67,F,PATEL,Almash,17/10/1972,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,GENDRE,Daniel,04/07/1954,Non +94,Val-de-Marne,01,1ère circonscription,6,37,M,LAUZET,Pierre-Louis,02/02/1991,DVG,"Elève, étudiant",Non,F,AUBERT,Nathalie,04/02/1953,Non +94,Val-de-Marne,01,1ère circonscription,7,35,F,BOUATLAOUI,Amina,30/12/1954,ECO,"Professeur, profession scientifique",Non,M,FONTANA,Patrick,29/07/1958,Non +94,Val-de-Marne,01,1ère circonscription,8,5,M,JOLLY,Laurent,19/03/1968,RN,Employé administratif d'entreprise,Non,F,GROS,Isabelle,30/08/1957,Non +94,Val-de-Marne,01,1ère circonscription,9,120,F,LE PARC,Françoise,06/08/1946,DVG,Ancien cadre,Non,F,DEISS,Jacqueline,17/01/1947,Non +94,Val-de-Marne,01,1ère circonscription,10,103,M,ROESCH,Germain,11/01/1959,LR,Ancien cadre,Non,F,MUSSOTTE-GUEDJ,Catherine,05/08/1969,Non +94,Val-de-Marne,01,1ère circonscription,11,34,F,TELLE,Géraldine,27/07/1980,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,GADEH,Abdo,10/10/1952,Non +94,Val-de-Marne,02,2ème circonscription,1,89,F,GUETTÉ,Clémence,15/03/1991,NUP,Cadre administratif et commercial d'entreprise,Non,M,ALBERT,Robin,04/03/1981,Non +94,Val-de-Marne,02,2ème circonscription,2,26,F,TORRES,Josefa,07/03/1964,DXG,Technicien,Non,F,FEVRIER,Aline,02/11/1967,Non +94,Val-de-Marne,02,2ème circonscription,3,6,F,ROUSSEL,Françoise,08/09/1957,DXG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,M,ANGLIO,Jérémie,06/10/1973,Non +94,Val-de-Marne,02,2ème circonscription,4,112,F,LAVAL,Eloïse,16/09/2002,REC,"Elève, étudiant",Non,M,BILAL,Hugo,10/01/2001,Non +94,Val-de-Marne,02,2ème circonscription,5,121,F,DERANSART,Elsa,06/10/1977,DVG,Cadre de la fonction publique,Non,M,GUIBERT,Vincent,06/08/1959,Non +94,Val-de-Marne,02,2ème circonscription,6,47,F,SUIN,Céline,13/01/1975,ECO,Personnel des services directs aux particuliers,Non,F,DELBOS,Mauricette,27/07/1956,Non +94,Val-de-Marne,02,2ème circonscription,7,83,F,AMARA,Salika,07/07/1949,DIV,"Professeur, profession scientifique",Non,M,ISAMBA,Andy,20/12/1996,Non +94,Val-de-Marne,02,2ème circonscription,8,7,M,GHAYE,Antoine,20/01/1966,RN,Commerçant et assimilé,Non,F,VACHELOT,Dominique,23/01/1961,Non +94,Val-de-Marne,02,2ème circonscription,9,55,M,DRUART,Frédéric,07/10/1969,LR,Ingénieur et cadre technique d'entreprise,Non,M,HEBBRECHT,Thierry,27/07/1961,Non +94,Val-de-Marne,02,2ème circonscription,10,104,F,LARDEUX,Coline,20/02/1988,RDG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,ABDELLAOUI,Mohammed,11/10/1962,Non +94,Val-de-Marne,02,2ème circonscription,11,48,M,MBAYE,Jean François,01/01/1979,ENS,Cadre de la fonction publique,Oui,F,EUDE-DÜRLER,Jacqueline,21/11/1965,Non +94,Val-de-Marne,02,2ème circonscription,12,38,M,BOURIACHI,Taieb,25/11/1967,DIV,Technicien,Non,F,ULRY,Viviane,02/05/1968,Non +94,Val-de-Marne,03,3ème circonscription,1,40,M,ABRIBAT,Jean-Baptiste,15/09/1973,REC,Cadre administratif et commercial d'entreprise,Non,M,LAVAL,Vincent,29/08/1968,Non +94,Val-de-Marne,03,3ème circonscription,2,105,M,BRY-CHEVALIER,Tom,16/08/1996,ECO,"Elève, étudiant",Non,M,BEDOIN,Maxime,21/03/1998,Non +94,Val-de-Marne,03,3ème circonscription,3,113,M,POIRET,Guillaume,07/12/1981,DXG,Cadre administratif et commercial d'entreprise,Non,F,N'TAKPE,Alice,31/05/1988,Non +94,Val-de-Marne,03,3ème circonscription,4,106,M,BOYARD,Louis,26/08/2000,NUP,"Elève, étudiant",Non,F,VENTURA,Odile,19/10/1975,Non +94,Val-de-Marne,03,3ème circonscription,5,122,M,ORKIDEZ,Blueez,13/02/1976,DVG,Ouvrier qualifié de type industriel,Non,M,MOREAU,Raphaël Louis,25/08/1970,Non +94,Val-de-Marne,03,3ème circonscription,6,30,M,NOAILE,Lucien,04/07/1970,DXG,Technicien,Non,M,NEDELEC,Fabrice,19/01/1968,Non +94,Val-de-Marne,03,3ème circonscription,7,39,F,HAMZAOUI,Naoual,12/01/1978,DVD,Employé administratif d'entreprise,Non,F,MARIOLLE,Emilie,02/01/1977,Non +94,Val-de-Marne,03,3ème circonscription,8,28,M,SAINT-MARTIN,Laurent,22/06/1985,ENS,Ancien cadre,Oui,M,GUÉRIN,Daniel,01/07/1963,Non +94,Val-de-Marne,03,3ème circonscription,9,27,F,BAPTISTE,Marie-Françoise,23/06/1982,DSV,Ingénieur et cadre technique d'entreprise,Non,F,MANGOUA,Sophie,23/06/1988,Non +94,Val-de-Marne,03,3ème circonscription,10,107,F,MARQUES,Catherine,14/05/1981,DIV,Artisan,Non,M,HEURTEMATTE,Franck,23/11/1966,Non +94,Val-de-Marne,03,3ème circonscription,11,49,M,GONZALES,Didier,14/09/1960,LR,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,LECOUFLE,Françoise,25/06/1954,Non +94,Val-de-Marne,03,3ème circonscription,12,29,M,YON,André,05/09/1949,DXG,"Professeur, profession scientifique",Non,F,TERNET,Katherine,17/03/1950,Non +94,Val-de-Marne,03,3ème circonscription,13,66,M,PRETOT,Francis,14/04/1958,RN,Ancienne profession intermédiaire,Non,F,CHOURRE,Natacha,15/05/1970,Non +94,Val-de-Marne,04,4ème circonscription,1,50,F,PETIT,Maud,15/11/1971,ENS,Cadre administratif et commercial d'entreprise,Oui,M,MARECHAL,Alexis,01/06/1977,Non +94,Val-de-Marne,04,4ème circonscription,2,69,F,LEMAIRE,Mirabelle,25/12/1963,NUP,Employé civil et agent de service de la fonction publique,Non,M,DANTEC,Bernard,05/06/1967,Non +94,Val-de-Marne,04,4ème circonscription,3,31,M,PHILIPPET,Alain,08/02/1964,RN,Ancien cadre,Non,F,FLAMENT,Sandrine,22/04/1970,Non +94,Val-de-Marne,04,4ème circonscription,4,114,M,VICENT,Denis,14/03/1964,DVG,Cadre de la fonction publique,Non,M,VERPILLEUX,Dominique,05/04/1954,Non +94,Val-de-Marne,04,4ème circonscription,5,128,F,CIUNTU,Marie-Carole,09/11/1964,LR,Profession libérale,Non,F,COMBAL,Carole,14/09/1964,Non +94,Val-de-Marne,04,4ème circonscription,6,95,M,SCOTTO,Gerard,23/12/1951,DSV,Profession libérale,Non,F,CHAMINADE,Anne,21/07/1967,Non +94,Val-de-Marne,04,4ème circonscription,7,41,F,YVOS,Isabelle,15/09/1966,ECO,Profession libérale,Non,F,BEZAULT,Christine,23/08/1961,Non +94,Val-de-Marne,04,4ème circonscription,8,32,F,MERLIN,Véronique,20/11/1990,REC,Profession intermédiaire administrative et commerciale des entreprises,Non,M,LAURENT-GUY,Alain,18/04/1955,Non +94,Val-de-Marne,04,4ème circonscription,9,8,F,MOULIN,Brigitte,16/06/1954,DXG,Profession intermédiaire de la santé et du travail social,Non,M,EL MARBATI,Abdelatif,09/03/1964,Non +94,Val-de-Marne,04,4ème circonscription,10,129,F,PERRU,Marie-Odile,04/12/1960,DVC,"Professeur, profession scientifique",Non,M,ALGARD,Franck,03/03/1952,Non +94,Val-de-Marne,05,5ème circonscription,1,43,M,DUBOUCHER,Frédéric,22/02/1987,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,MUTHER,Isabelle,23/06/1969,Non +94,Val-de-Marne,05,5ème circonscription,2,52,F,VEYSSIÈRE,Stéphanie,01/09/1968,REC,Cadre administratif et commercial d'entreprise,Non,M,LAURENT,Xavier,31/05/1974,Non +94,Val-de-Marne,05,5ème circonscription,3,108,M,THENIN,Matthieu,03/03/2004,DIV,"Elève, étudiant",Non,M,MARTEL,Corentin,16/03/2004,Non +94,Val-de-Marne,05,5ème circonscription,4,70,M,REUTHER,Guillaume,23/03/1981,DSV,Ingénieur et cadre technique d'entreprise,Non,M,MARTIN,David,01/08/1977,Non +94,Val-de-Marne,05,5ème circonscription,5,84,M,JOSLIN,François,21/11/1965,DXG,"Professeur, profession scientifique",Non,M,PONTY,Laurent,16/08/1954,Non +94,Val-de-Marne,05,5ème circonscription,6,71,M,HENRY,Maxime,03/02/1998,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,F,CREVOISIER,Mathilde,23/07/1997,Non +94,Val-de-Marne,05,5ème circonscription,7,53,M,CHICHE,Bruno,17/08/1954,DXG,Ancien cadre,Non,F,PHILIPPE,Emmanuelle,25/12/1991,Non +94,Val-de-Marne,05,5ème circonscription,8,123,M,BAZIN,Paul,04/09/1985,LR,Cadre de la fonction publique,Non,F,RAMCHURN,Anicha,21/11/1989,Non +94,Val-de-Marne,05,5ème circonscription,9,124,M,MAHAUD,Alain,30/07/1957,DVG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,VALDEYRON,Guy Andre,07/01/1939,Non +94,Val-de-Marne,05,5ème circonscription,10,42,M,LEFEVRE,Mathieu,27/10/1986,ENS,Cadre de la fonction publique,Non,F,LALANNE,Sandrine,16/02/1973,Non +94,Val-de-Marne,05,5ème circonscription,11,51,M,LEGER,Julien,09/12/1979,NUP,Cadre administratif et commercial d'entreprise,Non,F,SCHWARZ,Julie,12/03/1981,Non +94,Val-de-Marne,05,5ème circonscription,12,9,F,HUGUENIN-RICHARD,Isabelle,10/09/1976,RN,Employé de commerce,Non,M,DELMAS,Gauthier,07/01/1987,Non +94,Val-de-Marne,06,6ème circonscription,1,96,M,MASSOT,François,27/09/1983,REG,Ingénieur et cadre technique d'entreprise,Non,F,BONHOMME,Nina,05/10/2000,Non +94,Val-de-Marne,06,6ème circonscription,2,60,M,GOUFFIER-CHA,Guillaume,01/02/1986,ENS,Cadre de la fonction publique,Oui,F,CAZALS,Chantal,28/04/1965,Non +94,Val-de-Marne,06,6ème circonscription,3,72,M,HERZOG,Alexandre,22/02/1992,DXG,Profession intermédiaire administrative de la fonction publique,Non,F,PÉROU,Virginie,27/03/1973,Non +94,Val-de-Marne,06,6ème circonscription,4,44,F,HUNAUT,Véronique,09/03/1962,DXG,Technicien,Non,F,SAINTIER,Anne,31/01/1969,Non +94,Val-de-Marne,06,6ème circonscription,5,90,F,WYPOREK,Aniela,23/01/1941,ECO,Ancien cadre,Non,F,FEO,Hélène,12/04/1965,Non +94,Val-de-Marne,06,6ème circonscription,6,74,M,WILLARD,Benoit,17/08/1966,REG,Commerçant et assimilé,Non,F,PEREZ,Anna,15/04/1965,Non +94,Val-de-Marne,06,6ème circonscription,7,85,F,BOUHADA,May,26/02/1972,NUP,"Profession de l'information, des arts et des spectacles",Non,M,GAUTRAIS,Jean-Philippe,25/09/1980,Non +94,Val-de-Marne,06,6ème circonscription,8,125,M,GILLET,Fabrice,03/03/1960,DVG,Cadre de la fonction publique,Non,M,DUVAL,Thierry,12/08/1969,Non +94,Val-de-Marne,06,6ème circonscription,9,11,F,CHAPUT,Catherine,26/02/1956,RN,Ancien employé,Non,M,LEJEMBLE,Jean-Jacques,07/09/1954,Non +94,Val-de-Marne,06,6ème circonscription,10,73,M,ALONSO,Luc,14/09/1971,DVC,Cadre administratif et commercial d'entreprise,Non,M,BOISSEL,Nicolas,20/07/1974,Non +94,Val-de-Marne,06,6ème circonscription,11,56,M,CORNET,Xavier,13/03/1965,ECO,Policier et militaire,Non,F,ZIMMERLÉ,Laurence,07/06/1965,Non +94,Val-de-Marne,06,6ème circonscription,12,81,F,BOURG,Jothi,11/04/1969,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,BENSASSON,Igor,29/10/1964,Non +94,Val-de-Marne,06,6ème circonscription,13,93,M,TAIEB,Charles,08/02/1981,REC,Profession libérale,Non,F,PONCET,Frédérique,04/11/1962,Non +94,Val-de-Marne,06,6ème circonscription,14,86,F,FRIEH,Huguette,24/04/1947,UDI,Ancien cadre,Non,M,QUÉRON,Alexandre,22/04/2000,Non +94,Val-de-Marne,06,6ème circonscription,15,10,M,RENAULT,Tony,19/01/1972,ECO,Employé de commerce,Non,F,MOUSSY,Céline,17/02/1972,Non +94,Val-de-Marne,07,7ème circonscription,1,62,M,NADAL,Noël,06/10/1997,REC,"Professeur, profession scientifique",Non,M,NALLET,Nicolas,10/01/1984,Non +94,Val-de-Marne,07,7ème circonscription,2,45,F,KEKE,Rachel,30/05/1974,NUP,Personnel des services directs aux particuliers,Non,F,LECLERC-BRUANT,Marie,15/04/1976,Non +94,Val-de-Marne,07,7ème circonscription,3,33,F,MAURY,Claire,09/04/1962,DXG,Technicien,Non,M,BOUTET,Pascal,26/03/1955,Non +94,Val-de-Marne,07,7ème circonscription,4,94,F,DEBBACHE,Gaëlle,10/12/1966,REG,Profession intermédiaire de la santé et du travail social,Non,M,DECARPENTRIE,Guy,11/02/1968,Non +94,Val-de-Marne,07,7ème circonscription,5,61,F,CORBIN,Pascale,27/03/1957,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,NGUYEN,Anh Tuan,17/04/1976,Non +94,Val-de-Marne,07,7ème circonscription,6,3,M,IANNUZZI,Ugo,21/10/1998,RN,Artisan,Non,M,BOUDIN,Paul,11/09/1945,Non +94,Val-de-Marne,07,7ème circonscription,7,91,M,JEANBRUN,Vincent,05/05/1984,LR,Cadre de la fonction publique,Non,M,TRYZNA,Nicolas,15/12/1987,Non +94,Val-de-Marne,07,7ème circonscription,8,65,F,MARACINEANU,Roxana,07/05/1975,ENS,Ancien cadre,Non,M,LADJICI,Yacine,06/08/1986,Non +94,Val-de-Marne,07,7ème circonscription,9,109,M,LEMAANNI,El-Mehdi,19/04/1985,DIV,Cadre administratif et commercial d'entreprise,Non,F,FREDON,Audrey,31/10/1986,Non +94,Val-de-Marne,08,8ème circonscription,1,16,M,PAGÈS,Erik,17/12/1991,NUP,Cadre de la fonction publique,Non,F,SEMICHON-HUSSET,Mélodia,26/09/1987,Non +94,Val-de-Marne,08,8ème circonscription,2,92,M,CHALENDAR,Franck,01/11/1999,DSV,Cadre administratif et commercial d'entreprise,Non,F,DOUBLET,Patricia,10/11/1968,Non +94,Val-de-Marne,08,8ème circonscription,3,17,F,CHEYNS,Amandine,18/12/1979,DXG,"Professeur, profession scientifique",Non,M,CAUX,Baptiste,12/02/1993,Non +94,Val-de-Marne,08,8ème circonscription,4,126,F,LAMIMI,Zohra,08/01/1957,DVG,Ancien ouvrier,Non,M,PIROLLET,Joseph,12/12/1942,Non +94,Val-de-Marne,08,8ème circonscription,5,63,M,MOURLIN,Mickaël,03/02/1975,DXG,Technicien,Non,F,BACQUÉ,Agnès,26/11/1958,Non +94,Val-de-Marne,08,8ème circonscription,6,87,F,HUGON,Stéphanie,10/03/1980,DVG,Cadre de la fonction publique,Non,F,MORISSON,Elisabeth,23/05/1964,Non +94,Val-de-Marne,08,8ème circonscription,7,12,M,BUCLIN,Olivier,17/02/1964,REC,Ingénieur et cadre technique d'entreprise,Non,F,BOURGES,Marie-Capucine,11/12/2001,Non +94,Val-de-Marne,08,8ème circonscription,8,14,F,VUILLARD,Elisabeth,11/01/1948,RN,"Ancien artisan, commerçant, chef d'entreprise",Non,M,CASSOU,Jean-Pierre,20/08/1950,Non +94,Val-de-Marne,08,8ème circonscription,9,97,F,SCOTTO,Alexandra,11/10/1953,ECO,Profession libérale,Non,F,PLUEGER,Michèle,27/05/1951,Non +94,Val-de-Marne,08,8ème circonscription,10,15,M,HERBILLON,Michel,06/03/1951,LR,Ancien cadre,Oui,M,GICQUEL,Hervé,04/03/1969,Non +94,Val-de-Marne,08,8ème circonscription,11,13,F,WARGON,Emmanuelle,24/02/1971,ENS,Cadre de la fonction publique,Non,M,NAHON,Samuel,24/08/1984,Non +94,Val-de-Marne,09,9ème circonscription,1,111,F,BENOUADAH,Simone,14/05/1974,REC,Employé de commerce,Non,M,ZBINDEN,Stéphane,03/10/1967,Non +94,Val-de-Marne,09,9ème circonscription,2,88,M,NDONGALA,Lufian,24/05/1982,DIV,Profession intermédiaire de la santé et du travail social,Non,F,BERTHOLOM,Yvette,23/06/1953,Non +94,Val-de-Marne,09,9ème circonscription,3,2,F,SANTIAGO,Isabelle,20/09/1965,NUP,Cadre de la fonction publique,Oui,M,BELL-LLOCH,Pierre,02/08/1977,Non +94,Val-de-Marne,09,9ème circonscription,4,19,M,JAUBERT,Christophe,16/09/1981,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,LEISEING,Patrick,04/11/1946,Non +94,Val-de-Marne,09,9ème circonscription,5,20,F,RUCHOT,Sandrine,20/12/1967,DXG,Technicien,Non,F,VIEIRA,Marie,02/02/1962,Non +94,Val-de-Marne,09,9ème circonscription,6,127,F,MAHMOUDI,Monia,15/08/1973,DIV,Profession intermédiaire administrative de la fonction publique,Non,M,BORGI,Montassar,17/12/1975,Non +94,Val-de-Marne,09,9ème circonscription,7,115,M,BENBETKA,Abdallah,21/01/1970,ECO,Profession intermédiaire administrative et commerciale des entreprises,Non,F,AOUTIA,Fatima,05/07/1969,Non +94,Val-de-Marne,09,9ème circonscription,8,18,F,CUI,Wenqi,28/11/1969,RN,"Professeur des écoles, instituteur et assimilé",Non,M,SERIGNAT,Bruno,18/01/1946,Non +94,Val-de-Marne,09,9ème circonscription,9,98,M,GARY,Ethan,02/12/1999,DSV,"Elève, étudiant",Non,M,BELLARD,Valentin,17/03/1998,Non +94,Val-de-Marne,09,9ème circonscription,10,110,F,BONHOMME-AFFLATET,Michèle,30/10/1954,LR,Profession libérale,Non,M,AUBERTIN,Jérôme,24/03/1951,Non +94,Val-de-Marne,09,9ème circonscription,11,75,M,OLLIVIER,Emmanuel,20/03/1972,ECO,Chef d'entreprise de 10 salariés ou plus,Non,F,DELEERSNYDER,Daphnée,26/06/1984,Non +94,Val-de-Marne,09,9ème circonscription,12,76,F,DUCANDAS,Véronique,23/11/1977,DXG,"Professeur, profession scientifique",Non,F,FOURRIER,Séverine,06/10/1983,Non +94,Val-de-Marne,09,9ème circonscription,13,46,M,ROSENBLUM,Jonathan,24/07/1991,ENS,Cadre administratif et commercial d'entreprise,Non,F,PAPAZIAN,Sylvie,17/11/1966,Non +94,Val-de-Marne,10,10ème circonscription,1,57,M,CHAPPELLIER,Bernard,24/05/1957,ECO,Profession intermédiaire administrative de la fonction publique,Non,F,FYOT,Claudette,27/06/1942,Non +94,Val-de-Marne,10,10ème circonscription,2,99,M,JOUBERT,Alex,11/04/1995,UDI,Cadre administratif et commercial d'entreprise,Non,F,LATOUR,Alice,23/04/1998,Non +94,Val-de-Marne,10,10ème circonscription,3,21,M,HARDOUIN,Philippe,28/09/1953,ENS,Profession libérale,Non,F,BOULKROUN,Sheerazed,16/07/1974,Non +94,Val-de-Marne,10,10ème circonscription,4,117,F,LADIAN-FASSI,Laurine,31/03/2001,REC,"Elève, étudiant",Non,M,CULERRIER,Thomas,18/12/1993,Non +94,Val-de-Marne,10,10ème circonscription,5,22,F,LIN,Elise,15/04/1982,RN,Employé de commerce,Non,M,GODET,Patrick,31/03/1975,Non +94,Val-de-Marne,10,10ème circonscription,6,116,M,COURANT,César,11/02/1982,ECO,Cadre administratif et commercial d'entreprise,Non,F,BOEUF,Evelyne,01/09/1977,Non +94,Val-de-Marne,10,10ème circonscription,7,77,F,PANOT,Mathilde,15/01/1989,NUP,Cadre administratif et commercial d'entreprise,Oui,F,CHIKH,Farida,03/09/1969,Non +94,Val-de-Marne,10,10ème circonscription,8,64,F,LICHTENAUER,Christine,28/02/1976,DXG,"Professeur, profession scientifique",Non,M,BENYACAR,Bernard,18/01/1950,Non +94,Val-de-Marne,11,11ème circonscription,1,101,F,AIT OUALI,Zahra,02/05/2003,DIV,"Elève, étudiant",Non,M,SCHWARZ,Pierre,15/11/1979,Non +94,Val-de-Marne,11,11ème circonscription,2,59,F,MILAMON,Sarah,23/01/2001,REC,"Elève, étudiant",Non,M,AIGRISSE,Yohan,13/10/1995,Non +94,Val-de-Marne,11,11ème circonscription,3,100,F,TAILLÉ-POLIAN,Sophie,04/10/1974,NUP,Cadre de la fonction publique,Non,M,ARROUCHE,Djamel,28/10/1972,Non +94,Val-de-Marne,11,11ème circonscription,4,79,M,BOUNEGTA,Mahrouf,23/04/1962,LR,Profession intermédiaire administrative et commerciale des entreprises,Non,F,GALHIÉ-ERIPRET,Clotilde,06/07/1975,Non +94,Val-de-Marne,11,11ème circonscription,5,119,F,MWANA-KUSU,Namunayao,08/10/1974,DIV,Employé de commerce,Non,F,BIANDOUNDA,Michaëlle,13/06/1976,Non +94,Val-de-Marne,11,11ème circonscription,6,102,M,GUANAES NETTO,Pedro,18/06/1979,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,AGHOUCHY,Kenza,18/02/1979,Non +94,Val-de-Marne,11,11ème circonscription,7,24,M,COUTHURES,Jean,04/06/1955,DVG,"Professeur, profession scientifique",Non,F,RAMAH,Taheroon,26/12/1958,Non +94,Val-de-Marne,11,11ème circonscription,8,4,F,GABELICA,Martina,27/10/1997,RN,Employé de commerce,Non,M,PEIXOTO,Georges,15/10/1971,Non +94,Val-de-Marne,11,11ème circonscription,9,23,M,ROSAZ,Jocelyn-Pierre,24/09/1977,ECO,Cadre administratif et commercial d'entreprise,Non,F,MAISONNEUVE,Nathalie,22/12/1965,Non +94,Val-de-Marne,11,11ème circonscription,10,80,F,ROCHETEAU,Maryvonne,22/08/1944,DVG,Ancien cadre,Non,M,MICHELON,Quentin,13/01/1992,Non +94,Val-de-Marne,11,11ème circonscription,11,118,F,LAVILLETTE,Dany-Laure,08/06/1971,DVC,Cadre de la fonction publique,Non,M,ANDRIA,Rajaon,08/09/1960,Non +94,Val-de-Marne,11,11ème circonscription,12,25,F,FLORENCE,Nicole,10/08/1952,DXG,Ancien cadre,Non,M,LILLIER,Thierry,20/09/1961,Non +94,Val-de-Marne,11,11ème circonscription,13,78,F,MAZURIER,Christine,14/04/1962,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,GAUVAIN,Catherine,27/12/1963,Non +94,Val-de-Marne,11,11ème circonscription,14,58,M,CALVEZ,Erwann,26/04/1987,ENS,Cadre de la fonction publique,Non,F,ESCLANGON ADELEINE,Christel,20/04/1972,Non +95,Val-d'Oise,01,1ère circonscription,1,80,M,SAVIGNAT,Antoine,22/07/1975,LR,Profession libérale,Oui,M,DEMAILLY,Benjamin,12/07/1994,Non +95,Val-d'Oise,01,1ère circonscription,2,87,F,BARBIER,Sandrine,03/07/1970,ECO,Cadre administratif et commercial d'entreprise,Non,F,GOSSET,Sophie Anne,01/10/1967,Non +95,Val-d'Oise,01,1ère circonscription,3,6,F,GÉHAN,Barbara,15/02/1968,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,PLESSIS,Alexandre,17/02/1987,Non +95,Val-d'Oise,01,1ère circonscription,4,27,M,ATTAGNANT,Erwan,29/09/1974,REC,Cadre administratif et commercial d'entreprise,Non,F,DUEYMES,Sibylle,29/04/1969,Non +95,Val-d'Oise,01,1ère circonscription,5,41,F,CHANDLER,Emilie,29/04/1983,ENS,Profession libérale,Non,M,ERNST,Francois,25/07/1962,Non +95,Val-d'Oise,01,1ère circonscription,6,9,M,PIERRE,Philippe,25/08/1971,RN,Cadre de la fonction publique,Non,F,KREBS,Suzanne,07/06/1962,Non +95,Val-d'Oise,01,1ère circonscription,7,72,M,LESSAINT,Lionel,24/05/1972,DSV,Ingénieur et cadre technique d'entreprise,Non,M,FERREIRA,Frédéric,19/03/1976,Non +95,Val-d'Oise,01,1ère circonscription,8,28,F,IVORRA,Leïla,20/08/1995,NUP,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,PAIGNON,Gilles,05/07/1967,Non +95,Val-d'Oise,01,1ère circonscription,9,64,M,LAPEYRE,Albert,04/02/1961,ECO,Technicien,Non,F,PEIRETTI,Madeleine,15/10/1951,Non +95,Val-d'Oise,02,2ème circonscription,1,70,M,BRULARD,Jean-Luc,30/09/1961,DIV,Commerçant et assimilé,Non,F,DE CASTRO,Margot,23/10/1992,Non +95,Val-d'Oise,02,2ème circonscription,2,119,M,OUBAIROUK,Brahim,23/05/1976,ECO,Commerçant et assimilé,Non,F,AIT-MEHDI,Sandra,07/01/1972,Non +95,Val-d'Oise,02,2ème circonscription,3,56,F,CHIKHANE,Lydie,07/06/1970,DSV,Cadre administratif et commercial d'entreprise,Non,M,LUDET,Alexandre,10/07/1984,Non +95,Val-d'Oise,02,2ème circonscription,4,81,M,PAIN,Frédéric,11/12/1963,LR,Cadre administratif et commercial d'entreprise,Non,F,MICHEL,Valérie,03/09/1967,Non +95,Val-d'Oise,02,2ème circonscription,5,105,M,NICOLLE,Jérôme,15/01/1983,DIV,Profession libérale,Non,M,BRENON,Alexis,20/12/1991,Non +95,Val-d'Oise,02,2ème circonscription,6,82,F,GEOFFROY-MARTIN,Sylvie,27/11/1960,NUP,Cadre de la fonction publique,Non,M,BERTHE,Sylvain,30/08/1970,Non +95,Val-d'Oise,02,2ème circonscription,7,79,F,DOMBROWSKI,Mireille,13/01/1944,DVG,Ancien employé,Non,M,SYLLA,Aboubacar,01/01/1980,Non +95,Val-d'Oise,02,2ème circonscription,8,5,M,CASSAN,Éric,19/07/1960,DXG,Chauffeur,Non,F,LE FLOHIC,Alice,11/11/1986,Non +95,Val-d'Oise,02,2ème circonscription,9,14,F,REMY,Nadejda,30/12/1961,RN,Ancien employé,Non,M,LE BON,Emeric,29/03/1988,Non +95,Val-d'Oise,02,2ème circonscription,10,51,M,CAVAIGNAC,Jeson,28/09/1977,DXD,Ingénieur et cadre technique d'entreprise,Non,F,LE,Yen,15/10/1978,Non +95,Val-d'Oise,02,2ème circonscription,11,54,M,DRARI,Abdelmadjid,29/06/1969,DIV,Artisan,Non,F,CHIDMI,Hakima,11/05/1972,Non +95,Val-d'Oise,02,2ème circonscription,12,35,M,VUILLETET,Guillaume,20/06/1967,ENS,Profession libérale,Oui,F,DRAPEAU,Delphine,26/05/1977,Non +95,Val-d'Oise,02,2ème circonscription,13,47,M,CHANZY,Philippe,05/03/1957,REC,Cadre administratif et commercial d'entreprise,Non,F,PRAVONG,Amélia,17/07/2001,Non +95,Val-d'Oise,02,2ème circonscription,14,17,F,BONUCCI,Laura,19/06/1968,DXG,Ouvrier qualifié de type artisanal,Non,M,LEFEBVRE DES NOËTTES,François,29/08/1956,Non +95,Val-d'Oise,02,2ème circonscription,15,4,F,FRAPPA,Morgane,17/02/2003,ECO,"Elève, étudiant",Non,F,DEDEYE,Manon,28/04/2003,Non +95,Val-d'Oise,03,3ème circonscription,1,16,M,GÉRARD,Pascal,06/07/1966,REC,Employé civil et agent de service de la fonction publique,Non,M,HEUDE,Patrice,23/01/1974,Non +95,Val-d'Oise,03,3ème circonscription,2,96,M,DAVID,Fabrice,12/06/1959,ECO,Technicien,Non,F,BARNEOUD,Louise,22/02/1946,Non +95,Val-d'Oise,03,3ème circonscription,3,22,M,PECQUET,Eric,28/05/1963,DSV,Chef d'entreprise de 10 salariés ou plus,Non,F,TROUILLET,Nathalie,09/09/1966,Non +95,Val-d'Oise,03,3ème circonscription,4,98,F,PELEGRIN,Carine,15/10/1975,NUP,Cadre de la fonction publique,Non,M,JALLU,Laurent,22/12/1962,Non +95,Val-d'Oise,03,3ème circonscription,5,85,F,RODAS-PAWLOFF,Véronique,08/04/1968,ECO,Profession libérale,Non,F,BRETEL,Anne,04/05/1949,Non +95,Val-d'Oise,03,3ème circonscription,6,43,M,MUNOZ,Juan,16/12/1956,DXG,Ancien ouvrier,Non,M,FAUVERTE,Bernard,17/05/1953,Non +95,Val-d'Oise,03,3ème circonscription,7,90,F,LAURINI,Romana,27/12/1959,RN,Profession libérale,Non,M,FARARD,Ronan,04/06/1991,Non +95,Val-d'Oise,03,3ème circonscription,8,53,F,RILHAC,Cécile,21/04/1974,ENS,Cadre de la fonction publique,Oui,M,KHIAT,Benjamin,10/05/1988,Non +95,Val-d'Oise,03,3ème circonscription,9,62,F,NEROZZI-BANFI,Sarah,11/09/1990,LR,Cadre de la fonction publique,Non,F,DANGUILHEN,Laurianne,26/05/1981,Non +95,Val-d'Oise,04,4ème circonscription,1,20,M,GEORJON,Fréderic,16/01/1976,REC,Chef d'entreprise de 10 salariés ou plus,Non,F,ROTARIU,Ilona,02/04/2001,Non +95,Val-d'Oise,04,4ème circonscription,2,88,F,LACOUTURE,Karine,18/11/1969,NUP,"Professeur, profession scientifique",Non,M,PREVOST,Camille,15/12/1978,Non +95,Val-d'Oise,04,4ème circonscription,3,57,F,MOUTCHOU,Naïma,04/11/1980,ENS,Profession libérale,Oui,F,LE MOING,Sandrine,02/06/1982,Non +95,Val-d'Oise,04,4ème circonscription,4,118,M,BERTHAULT,Grégory,02/11/1984,ECO,Employé civil et agent de service de la fonction publique,Non,F,KALACHNIKOFF,Clarisse,10/11/1993,Non +95,Val-d'Oise,04,4ème circonscription,5,104,M,BOULLÉ,Patrick,05/12/1966,LR,"Professeur des écoles, instituteur et assimilé",Non,F,CHARBONNIER,Martine,22/02/1949,Non +95,Val-d'Oise,04,4ème circonscription,6,31,M,MACÉ,Régis,26/03/1972,RN,Ingénieur et cadre technique d'entreprise,Non,F,MARCEL-MAUPIN,Yolande,07/12/1960,Non +95,Val-d'Oise,04,4ème circonscription,7,89,F,TUCCI,Cindy,26/06/1987,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,POINGT,Véronique,03/07/1969,Non +95,Val-d'Oise,04,4ème circonscription,8,32,F,L'HOMMEDET,Marie-Françoise,10/02/1968,DXG,"Professeur, profession scientifique",Non,M,BONHOMME,Gilles,20/05/1957,Non +95,Val-d'Oise,04,4ème circonscription,9,2,M,POUPARD,Alain,02/06/1949,DXG,Ancien employé,Non,F,PARNET,Christiane,24/09/1959,Non +95,Val-d'Oise,05,5ème circonscription,1,24,M,HAROUCH,Schemsdine,03/09/1978,DIV,"Professeur, profession scientifique",Non,F,OUEDRAOGO,Ramatou,17/10/1975,Non +95,Val-d'Oise,05,5ème circonscription,2,77,F,LAZAAR,Fiona,19/09/1985,ENS,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,M,METEZEAU,Philippe,27/04/1948,Non +95,Val-d'Oise,05,5ème circonscription,3,26,F,HENRY,Stéphanie,12/02/1977,DXD,Policier et militaire,Non,M,AUBERTIN,Sébastien,13/07/1969,Non +95,Val-d'Oise,05,5ème circonscription,4,114,F,KOUYATE,Dienabou,27/04/1959,DVG,Profession libérale,Non,F,BOUGARA,Bouchra,08/07/1970,Non +95,Val-d'Oise,05,5ème circonscription,5,66,M,VANNIER,Paul,19/09/1985,NUP,"Professeur, profession scientifique",Non,F,CONAN,Laurence,28/06/1961,Non +95,Val-d'Oise,05,5ème circonscription,6,95,M,LALLAOUI,Mehdi,15/10/1957,REG,"Profession de l'information, des arts et des spectacles",Non,F,MARCUZZO,Isabelle,12/12/1974,Non +95,Val-d'Oise,05,5ème circonscription,7,110,M,ARBAOUI,Rémy,11/08/1979,DIV,Ingénieur et cadre technique d'entreprise,Non,F,IALLATEN,Karima,28/05/1985,Non +95,Val-d'Oise,05,5ème circonscription,8,7,M,MARIETTE,Dominique,24/04/1952,DXG,Ancienne profession intermédiaire,Non,M,CAMPAGNAC,Michel,11/07/1970,Non +95,Val-d'Oise,05,5ème circonscription,9,33,F,DAUMAS,Fabienne,22/01/1963,RN,Technicien,Non,M,BATASSI,Matthieu,15/02/1970,Non +95,Val-d'Oise,05,5ème circonscription,10,39,F,SAPIN,Mathilde,26/10/1979,ECO,Employé administratif d'entreprise,Non,F,AMIDOU,Souad,04/07/1959,Non +95,Val-d'Oise,05,5ème circonscription,11,67,M,SAVRY,Gilles,20/11/1964,LR,Ingénieur et cadre technique d'entreprise,Non,M,ROULLIER,Marc,16/04/1969,Non +95,Val-d'Oise,05,5ème circonscription,12,121,M,TRAORE,Cheickna,06/07/1966,DVG,Cadre de la fonction publique,Non,F,BA,Aminata Oumar,08/05/1971,Non +95,Val-d'Oise,06,6ème circonscription,1,15,F,FERDEL,Anaïs,02/02/1995,REC,Artisan,Non,M,GLÉNAT,Denis,31/03/1988,Non +95,Val-d'Oise,06,6ème circonscription,2,93,M,LASSOUED,Samir,22/08/1996,DVG,"Elève, étudiant",Non,F,GORI,Dalinda,27/11/1967,Non +95,Val-d'Oise,06,6ème circonscription,3,23,F,BRUNA,Annika,26/11/1956,RN,Ancien cadre,Non,M,BARBARIT,Christian,18/03/1957,Non +95,Val-d'Oise,06,6ème circonscription,4,30,F,CATHALA,Gabrielle,14/05/1992,NUP,Cadre administratif et commercial d'entreprise,Non,F,DAVID,Catherine,30/05/1959,Non +95,Val-d'Oise,06,6ème circonscription,5,34,F,REINMANN,Agnès,25/12/1959,DXG,Ancienne profession intermédiaire,Non,M,RENOU,Philippe,28/06/1967,Non +95,Val-d'Oise,06,6ème circonscription,6,48,M,DEMARQUEZ,Philippe,31/10/1959,ECO,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,PINEAU,Léone,14/07/1944,Non +95,Val-d'Oise,06,6ème circonscription,7,36,M,FLAMENT,Nicolas,20/03/1982,LR,Cadre de la fonction publique,Non,F,GUILBAUD,Audrey,23/04/1979,Non +95,Val-d'Oise,06,6ème circonscription,8,108,F,ELIMAS,Nathalie,05/06/1973,DVC,Cadre de la fonction publique,Oui,M,ALVES,David,24/02/1973,Non +95,Val-d'Oise,06,6ème circonscription,9,83,F,FOLEST,Estelle,17/06/1976,ENS,"Profession de l'information, des arts et des spectacles",Non,M,BAUX,Michel,05/11/1948,Non +95,Val-d'Oise,07,7ème circonscription,1,99,F,TOPUZOVIC,Andrijana,16/02/1993,LR,Employé administratif d'entreprise,Non,F,GROLIER,Chantal,01/03/1958,Non +95,Val-d'Oise,07,7ème circonscription,2,106,M,DEMARET,Philippe,31/10/1961,DVG,Cadre de la fonction publique,Non,F,PINSON,Nelly,07/02/1957,Non +95,Val-d'Oise,07,7ème circonscription,3,50,M,LE GUEVEL,Olivier,04/09/1972,REC,Profession libérale,Non,F,HENRY,Florence,26/07/1968,Non +95,Val-d'Oise,07,7ème circonscription,4,44,M,ESKENAZI,Romain,04/05/1986,NUP,Cadre de la fonction publique,Non,F,MENACEUR,Laura,25/08/1964,Non +95,Val-d'Oise,07,7ème circonscription,5,55,M,DA SILVA,Dominique,30/06/1968,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,F,LIMAN,Sonia,15/04/1977,Non +95,Val-d'Oise,07,7ème circonscription,6,52,F,CHIKHANE,Myriam,19/05/1995,DSV,Employé de commerce,Non,M,BATTISTON,Patrice,28/03/1954,Non +95,Val-d'Oise,07,7ème circonscription,7,69,M,ZOUINE,Kamel,24/02/1969,ECO,Ancien employé,Non,F,DEDREUX,Séverine,26/09/1974,Non +95,Val-d'Oise,07,7ème circonscription,8,97,M,SACERDOT,François,06/01/1974,ECO,Technicien,Non,F,OLIVON,Corinne,06/03/1968,Non +95,Val-d'Oise,07,7ème circonscription,9,13,M,MARCEL,Bruno,29/04/1964,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,F,ROUSSEL,Nelly,06/10/1967,Non +95,Val-d'Oise,07,7ème circonscription,10,18,M,COUDERT,Noel,31/07/1955,DXG,Ancien employé,Non,F,LEGROS,Marie-Genevieve,03/11/1947,Non +95,Val-d'Oise,07,7ème circonscription,11,11,F,SUAREZ,Valérie,25/09/1972,DXG,Employé administratif d'entreprise,Non,F,LEGAY,Gaëlle,30/01/1971,Non +95,Val-d'Oise,08,8ème circonscription,1,120,M,AMANI,Zaki,12/12/1972,DIV,Profession intermédiaire de la santé et du travail social,Non,F,LAACHARI,Samira,18/10/1995,Non +95,Val-d'Oise,08,8ème circonscription,2,10,F,MÉRIENNE,Véronique,27/11/1958,RN,Cadre de la fonction publique,Non,M,MAGNIER,Philippe,28/03/1966,Non +95,Val-d'Oise,08,8ème circonscription,3,25,F,GAUTHERIN,Muriel,16/07/1966,REC,Profession intermédiaire de la santé et du travail social,Non,M,MONARI,Manuel,07/07/1976,Non +95,Val-d'Oise,08,8ème circonscription,4,8,M,GAJDOS,Rémi,29/09/1960,DXG,Ouvrier qualifié de type industriel,Non,M,BIGAUD,Michel,17/05/1952,Non +95,Val-d'Oise,08,8ème circonscription,5,117,F,CAMARA,Haissata,17/04/1977,DVG,Cadre administratif et commercial d'entreprise,Non,M,NDIAYE,Ibrahima,04/12/1972,Non +95,Val-d'Oise,08,8ème circonscription,6,78,M,BILONGO,Carlos Martens,31/12/1990,NUP,"Professeur, profession scientifique",Non,F,SAUGER,Ophélie,20/07/1983,Non +95,Val-d'Oise,08,8ème circonscription,7,71,F,RAJA,Shaïstah,19/10/1987,DVG,"Elève, étudiant",Non,M,CRINON,Bruno,16/10/1958,Non +95,Val-d'Oise,08,8ème circonscription,8,91,F,PRUDHOMME,Marina,18/05/1999,ECO,Profession intermédiaire de la santé et du travail social,Non,F,ZAMMOUT,Danielle,14/02/1961,Non +95,Val-d'Oise,08,8ème circonscription,9,63,M,PUPPONI,François,31/07/1962,ENS,Cadre de la fonction publique,Oui,M,DEMBELE,Sori,24/08/1971,Non +95,Val-d'Oise,08,8ème circonscription,10,73,M,ZAOUI,Farouk,26/07/1977,DVG,Chef d'entreprise de 10 salariés ou plus,Non,M,ARRAJ,Benyounes,31/01/1967,Non +95,Val-d'Oise,08,8ème circonscription,11,65,M,ANGREVIER,Patrick,08/10/1991,UDI,Cadre administratif et commercial d'entreprise,Non,F,BOUZAÏDA,Fatma,28/06/1977,Non +95,Val-d'Oise,08,8ème circonscription,12,100,M,AUGUSTE,Daniel,06/07/1973,DVG,Technicien,Non,F,KUZEL,Nadia,17/03/1975,Non +95,Val-d'Oise,08,8ème circonscription,13,109,F,TOOR,Efatt,28/06/1979,DVG,Cadre de la fonction publique,Non,M,TOOR,Irfan,06/06/1970,Non +95,Val-d'Oise,09,9ème circonscription,1,102,M,LUSSOT,Jean-Marc,09/11/1957,DVG,Chef d'entreprise de 10 salariés ou plus,Non,F,HAJEJE,Nesrine,19/09/1978,Non +95,Val-d'Oise,09,9ème circonscription,2,61,F,PARK,Zivka,22/01/1985,ENS,Ancien cadre,Oui,M,ROUCAN,Florent,13/05/1991,Non +95,Val-d'Oise,09,9ème circonscription,3,94,M,LE GALL,Arnaud,29/11/1980,NUP,Cadre de la fonction publique,Non,F,DANET,Véronique,21/12/1973,Non +95,Val-d'Oise,09,9ème circonscription,4,46,M,ITIM,Youcef,30/08/1986,ECO,Cadre administratif et commercial d'entreprise,Non,F,LEROY,Françoise,30/06/1958,Non +95,Val-d'Oise,09,9ème circonscription,5,68,M,ARCIERO,Anthony,15/02/1987,LR,Profession intermédiaire administrative et commerciale des entreprises,Non,F,RUSIN,Isabelle,24/02/1965,Non +95,Val-d'Oise,09,9ème circonscription,6,122,M,SLAMANI,Miloud,05/10/2002,DIV,"Elève, étudiant",Non,F,BOUNABI,Afida,16/01/1997,Non +95,Val-d'Oise,09,9ème circonscription,7,101,M,NDALA,Sympson,18/07/1983,RDG,Employé administratif d'entreprise,Non,F,MOLINA,Christelle Marie,08/02/1983,Non +95,Val-d'Oise,09,9ème circonscription,8,21,M,SARAGOSA,Sylvain,07/11/1971,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,CASTANEDO,Mathieu,10/04/1995,Non +95,Val-d'Oise,09,9ème circonscription,9,12,M,MARLY,Jean-Baptiste,31/12/1983,RN,Cadre administratif et commercial d'entreprise,Non,F,VACCARI,Nathalie,23/03/1965,Non +95,Val-d'Oise,09,9ème circonscription,10,107,M,HAKKOU,Mohammed,08/09/1974,DVG,Commerçant et assimilé,Non,F,CHOUISSA,Véronique,12/07/1964,Non +95,Val-d'Oise,09,9ème circonscription,11,45,F,HANRYON,Danièle,22/04/1953,DXG,Ancien employé,Non,M,GAYRAUD,Patrick,15/06/1960,Non +95,Val-d'Oise,09,9ème circonscription,12,58,M,HITACHE,Abdelsalem,13/08/1971,DVC,Profession intermédiaire administrative de la fonction publique,Non,F,BERNADIN,Missoule,20/01/1978,Non +95,Val-d'Oise,09,9ème circonscription,13,115,M,JAOUADI,Nathan,01/10/1997,DIV,Ingénieur et cadre technique d'entreprise,Non,M,CERFF,Pierre,24/01/1988,Non +95,Val-d'Oise,10,10ème circonscription,1,111,F,LOULENDOT,Joseline Sylvie,12/07/1968,RDG,Chef d'entreprise de 10 salariés ou plus,Non,M,TAHAR,Amine,27/02/1989,Non +95,Val-d'Oise,10,10ème circonscription,2,75,F,JOSÉ,Patricia,21/05/1962,LR,Cadre de la fonction publique,Non,M,DECLERCK,Mickaël,09/02/1983,Non +95,Val-d'Oise,10,10ème circonscription,3,113,F,RIGOUSTE,Sabine,19/07/1979,DSV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MARION,Damien,29/03/1977,Non +95,Val-d'Oise,10,10ème circonscription,4,92,M,BELLOC,Augustin,03/10/1998,DVG,"Elève, étudiant",Non,M,DAGUE,Didier,12/05/1959,Non +95,Val-d'Oise,10,10ème circonscription,5,86,M,TACHÉ,Aurélien,26/05/1984,NUP,Cadre de la fonction publique,Oui,F,CORVIN,Élina,23/02/1959,Non +95,Val-d'Oise,10,10ème circonscription,6,112,F,ARRAR,Najet,20/05/1982,DIV,Employé administratif d'entreprise,Non,M,DURANT,Ludovic,28/06/1976,Non +95,Val-d'Oise,10,10ème circonscription,7,116,M,ZIABAT,Karim,20/04/1993,DVG,Employé civil et agent de service de la fonction publique,Non,F,EVRARD,Emilie,12/09/1976,Non +95,Val-d'Oise,10,10ème circonscription,8,40,M,FLAUX,Christophe,27/04/1968,DXG,Profession intermédiaire administrative de la fonction publique,Non,F,HUSSON,Valérie,18/05/1973,Non +95,Val-d'Oise,10,10ème circonscription,9,3,F,OLLIVIER,Evelyne,29/03/1960,ECO,Ancien cadre,Non,M,GUIOT,Loïc,18/12/1987,Non +95,Val-d'Oise,10,10ème circonscription,10,84,F,FIDI,Patricia,25/11/1970,DVC,"Professeur des écoles, instituteur et assimilé",Non,M,GNOKA,Pierre,28/12/1970,Non +95,Val-d'Oise,10,10ème circonscription,11,49,M,BINET,Matthieu,27/11/1995,DXG,Employé de commerce,Non,F,QUENTON,Martine,30/01/1957,Non +95,Val-d'Oise,10,10ème circonscription,12,38,F,SAITOULI,Sanaa,02/02/1982,DVG,Cadre administratif et commercial d'entreprise,Non,M,BOULTAME,Elrazali,09/08/1995,Non +95,Val-d'Oise,10,10ème circonscription,13,60,M,LACHAS,Victorien,13/06/1986,ENS,Cadre administratif et commercial d'entreprise,Non,F,ESPARGILIÈRE,Juliette,27/08/1978,Non +95,Val-d'Oise,10,10ème circonscription,14,59,F,GRANVORKA PUISARD,Princesse,28/08/1970,REC,Profession intermédiaire de la santé et du travail social,Non,M,HURLE,Hugo,22/05/1999,Non +95,Val-d'Oise,10,10ème circonscription,15,42,M,MADI,Prabagarane,25/02/1966,DVG,Cadre de la fonction publique,Non,M,XAVIR,Charles Christophe,17/07/1978,Non +95,Val-d'Oise,10,10ème circonscription,16,74,M,BENSEDDIK,Malek,29/01/1952,DVC,Ancien cadre,Non,F,LECOMTE,Ophélie,08/06/1995,Non +95,Val-d'Oise,10,10ème circonscription,17,19,M,DURAND,Richard,18/05/1967,RN,Technicien,Non,M,BONIN,Louis,13/06/2000,Non +ZA,Guadeloupe,01,1ère circonscription,1,27,M,CECE,Raphaël,28/08/1986,DXG,"Professeur, profession scientifique",Non,F,DIAKOK,Danielle,11/12/1957,Non +ZA,Guadeloupe,01,1ère circonscription,2,30,M,SERVA,Olivier,21/06/1974,DVG,Profession libérale,Oui,F,MANETTE,Sandra,05/12/1971,Non +ZA,Guadeloupe,01,1ère circonscription,3,39,M,ANGOL,Henri,02/03/1959,DIV,Cadre administratif et commercial d'entreprise,Non,M,MOULLOU,Ricardo,22/12/1981,Non +ZA,Guadeloupe,01,1ère circonscription,4,37,M,NABAJOTH,Alix,11/11/1973,DVG,Cadre de la fonction publique,Non,F,BARTEBIN-SOURHOU,Huguette,03/12/1971,Non +ZA,Guadeloupe,01,1ère circonscription,5,25,M,FARO,Rudy,30/08/1962,DIV,Profession libérale,Non,F,BAHADOUR,Marie-France,31/07/1971,Non +ZA,Guadeloupe,01,1ère circonscription,6,56,M,FABULAS,"Thierry, Lucien",08/01/1972,RN,Commerçant et assimilé,Non,F,BALAY,Solise,11/11/1971,Non +ZA,Guadeloupe,01,1ère circonscription,7,5,M,BIRAS,Dominique,14/11/1964,DVG,Chef d'entreprise de 10 salariés ou plus,Non,F,PASSE-COUTRIN,Liliane,09/01/1974,Non +ZA,Guadeloupe,01,1ère circonscription,8,18,M,JACOBY-KOALY,Francillonne,02/11/1964,DVG,Chef d'entreprise de 10 salariés ou plus,Non,F,BELAIR,Dolorès,30/05/1955,Non +ZA,Guadeloupe,01,1ère circonscription,9,41,M,CIVILISE,Christian,17/12/1955,ECO,"Professeur, profession scientifique",Non,M,MILNE,John,08/09/1954,Non +ZA,Guadeloupe,01,1ère circonscription,10,61,M,JEAN-PHILIPPE,Eric,08/10/1960,DIV,Artisan,Non,M,BERTILI,"Angelin, Robert",05/04/1948,Non +ZA,Guadeloupe,01,1ère circonscription,11,40,F,MONTOUT,Nadège,10/11/1978,DVG,Profession intermédiaire de la santé et du travail social,Non,M,BAVARDAY,Philippe,28/07/1957,Non +ZA,Guadeloupe,01,1ère circonscription,12,12,F,SMITE,Marie,05/08/1963,UDI,Employé administratif d'entreprise,Non,M,ALPHONSINE,Christian,17/01/1952,Non +ZA,Guadeloupe,02,2ème circonscription,1,6,M,FERUS,Dun,23/05/1971,LR,Profession libérale,Non,F,PLATON,"Mercédès, Maurice",22/09/1960,Non +ZA,Guadeloupe,02,2ème circonscription,2,9,F,RETOUR,Sonia,20/09/1962,UDI,Profession libérale,Non,M,LEMONY,Raymond,05/04/1942,Non +ZA,Guadeloupe,02,2ème circonscription,3,52,F,BENIN,Justine,12/03/1975,ENS,Employé civil et agent de service de la fonction publique,Oui,M,PANCREL,Bernard,06/09/1962,Non +ZA,Guadeloupe,02,2ème circonscription,4,47,F,COUVIN,Pauline,19/01/1946,ECO,Ancien cadre,Non,F,DAMOISEAU,Nadège,12/04/1969,Non +ZA,Guadeloupe,02,2ème circonscription,5,26,M,TOLASSY,Ludovic,13/12/1981,REG,Ouvrier qualifié de type industriel,Non,M,ISKANDAR,Paco,28/09/1980,Non +ZA,Guadeloupe,02,2ème circonscription,6,42,M,TOLA,Michel,01/04/1968,DVG,Agriculteur sur petite exploitation,Non,M,MIXTUR,Mathias,01/08/1986,Non +ZA,Guadeloupe,02,2ème circonscription,7,20,F,DELANNAY-CLARA,Christiane,23/12/1964,DSV,"Professeur, profession scientifique",Non,M,MONDOR,Teddy,06/08/1985,Non +ZA,Guadeloupe,02,2ème circonscription,8,7,M,GIRDARY-RAMSSAMY,Michel,06/08/1976,RN,Commerçant et assimilé,Non,F,POMMIER,Paméla,16/02/1974,Non +ZA,Guadeloupe,02,2ème circonscription,9,14,F,MATHIAS,Nancy,21/05/1975,DVD,Employé administratif d'entreprise,Non,M,ROQUELAURE,Patrick,25/05/1970,Non +ZA,Guadeloupe,02,2ème circonscription,10,60,F,PLANTIER,Paola,02/12/1980,REC,Cadre administratif et commercial d'entreprise,Non,F,PISANNE,Caroline,26/06/1974,Non +ZA,Guadeloupe,02,2ème circonscription,11,53,M,BAPTISTE,Christian,18/06/1962,DVG,Cadre de la fonction publique,Non,F,GORDON,Natasha,03/07/1982,Non +ZA,Guadeloupe,02,2ème circonscription,12,17,F,CERIL,Aline,05/09/1979,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,VALENTINO,Gérard,15/07/1951,Non +ZA,Guadeloupe,02,2ème circonscription,13,46,M,BOUGRER,Gérald,28/04/1955,DIV,Ingénieur et cadre technique d'entreprise,Non,M,MOLIA,Raymond,04/04/1960,Non +ZA,Guadeloupe,02,2ème circonscription,14,22,M,ROUYAR-CIREDERF,Steeve,11/12/1980,DIV,Profession libérale,Non,M,TONGA,Teddy,04/03/1974,Non +ZA,Guadeloupe,02,2ème circonscription,15,55,F,MAXO,Michelle,25/08/1955,ECO,Ancien employé,Non,F,IBO,Floriane,12/07/1993,Non +ZA,Guadeloupe,03,3ème circonscription,1,43,M,HENRY-LEO,Christian-Georges,24/07/1959,DIV,"Profession de l'information, des arts et des spectacles",Non,M,MANGO,Patrick,26/05/1966,Non +ZA,Guadeloupe,03,3ème circonscription,2,31,M,QUIABA,Hubert,26/11/1966,ECO,Technicien,Non,M,HERMANTIN,Keyci,09/05/2000,Non +ZA,Guadeloupe,03,3ème circonscription,3,44,M,LOUISY,Ferdy,10/12/1961,ENS,Profession libérale,Non,M,LAPIN,Jim,01/01/1974,Non +ZA,Guadeloupe,03,3ème circonscription,4,3,F,ESDRAS,Sidjie,20/12/1990,DXG,Employé civil et agent de service de la fonction publique,Non,F,CASTROT,Marie-Agnès,12/04/1962,Non +ZA,Guadeloupe,03,3ème circonscription,5,19,M,LAPIN,Raphaël,30/12/1991,DVG,Profession libérale,Non,M,MELANE,Merlin,07/11/1957,Non +ZA,Guadeloupe,03,3ème circonscription,6,10,M,TOLASSY,Rody,21/09/1987,RN,Profession libérale,Non,F,SINIVASSIN,Murielle,30/09/1968,Non +ZA,Guadeloupe,03,3ème circonscription,7,23,M,SAVAN,Fauvert,05/10/1966,DIV,Cadre de la fonction publique,Non,F,CHERY,Jenna,13/05/1985,Non +ZA,Guadeloupe,03,3ème circonscription,8,50,F,AIGLE,Marie-Laure,22/06/1966,DVG,Employé civil et agent de service de la fonction publique,Non,M,VIROLAN,Georges,27/10/1960,Non +ZA,Guadeloupe,03,3ème circonscription,9,15,F,GAMA,Béatrice,27/05/1976,UDI,Personnel des services directs aux particuliers,Non,F,MARGUERITE,Marie-Gabrielle,17/07/1948,Non +ZA,Guadeloupe,03,3ème circonscription,10,58,M,FLEMIN,Félix Alain,27/08/1957,DXG,"Contremaître, agent de maîtrise",Non,F,NAGAU,Denise,30/11/1957,Non +ZA,Guadeloupe,03,3ème circonscription,11,32,F,PIERQUIN,Delphine,07/03/1971,LR,Employé administratif d'entreprise,Non,M,DINARD,Henri,12/01/1950,Non +ZA,Guadeloupe,03,3ème circonscription,12,57,M,TORIBIO,José,23/11/1951,DVG,Ancien cadre,Non,M,ABDOUL-MANINROUDINE,Bernard,08/10/1970,Non +ZA,Guadeloupe,03,3ème circonscription,13,36,M,CABRION,Grégory,22/07/1982,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,SALCEDE,Willy,04/12/1970,Non +ZA,Guadeloupe,03,3ème circonscription,14,28,F,CHAMMOUGON ANNO,Sylvie,23/07/1972,DVG,Profession libérale,Non,M,BEAUZOR,Lucien,14/12/1959,Non +ZA,Guadeloupe,03,3ème circonscription,15,2,M,LUCE,Fabrice,07/10/1966,DVC,"Professeur, profession scientifique",Non,F,MAMIE,Monique,03/09/1951,Non +ZA,Guadeloupe,03,3ème circonscription,16,54,M,MATHIASIN,Max,24/02/1956,DVG,Cadre de la fonction publique,Oui,M,MARICEL,"Didier, Marc",29/07/1971,Non +ZA,Guadeloupe,03,3ème circonscription,17,24,M,MAYENGO,Prévert,16/08/1949,REC,"Profession de l'information, des arts et des spectacles",Non,F,HILLIGER,Sabine,14/04/1973,Non +ZA,Guadeloupe,03,3ème circonscription,18,59,M,ARGIS,René-Claude,23/03/1956,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,VALORIS,Claude,04/10/1973,Non +ZA,Guadeloupe,03,3ème circonscription,19,21,M,EDINVAL,Gilbert,21/09/1969,DIV,Ouvrier qualifié de type artisanal,Non,F,ALBERT,Aurélie,25/08/1989,Non +ZA,Guadeloupe,03,3ème circonscription,20,51,M,CONFIAC,"Paul, Eric",26/01/1958,DVG,Employé civil et agent de service de la fonction publique,Non,F,WORICK,"Sandrine, Nina",14/01/1981,Non +ZA,Guadeloupe,04,4ème circonscription,1,34,M,PARAN,Martin Germain,30/01/1950,DXD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MONTHOUEL,Lydie,05/11/1962,Non +ZA,Guadeloupe,04,4ème circonscription,2,48,F,CIVIS,Marguerite,09/09/1967,DVG,Cadre de la fonction publique,Non,M,THENARD,Francis,24/05/1963,Non +ZA,Guadeloupe,04,4ème circonscription,3,8,M,COUDRET,Jordan,04/12/1993,DXG,Ouvrier non qualifié de type industriel,Non,F,DAHOMAY,Lita,12/11/1944,Non +ZA,Guadeloupe,04,4ème circonscription,4,4,M,RAMASSAMY,Jean-Yves,25/12/1958,DIV,Artisan,Non,M,HENRI,Judex,04/04/1955,Non +ZA,Guadeloupe,04,4ème circonscription,5,35,F,PENCHARD,Marie-Luce,14/12/1959,DVC,Cadre de la fonction publique,Non,F,DORVILLE,Murielle,24/06/1982,Non +ZA,Guadeloupe,04,4ème circonscription,6,16,F,LUTIN,Lucile,12/06/1960,UDI,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,ESTRIPEAUT,Betty,08/11/1957,Non +ZA,Guadeloupe,04,4ème circonscription,7,45,M,LOUPADIERE,Cédric,30/11/1990,LR,Employé administratif d'entreprise,Non,M,JULIENO,Davy,03/02/1998,Non +ZA,Guadeloupe,04,4ème circonscription,8,29,M,ZOZIO,Christian,04/12/1974,REC,Profession intermédiaire administrative de la fonction publique,Non,M,HILLIGER,Walter,13/08/1981,Non +ZA,Guadeloupe,04,4ème circonscription,9,49,M,AVRIL,Alain,10/08/1957,ECO,"Ancien artisan, commerçant, chef d'entreprise",Non,M,LEON,Didier,20/05/1971,Non +ZA,Guadeloupe,04,4ème circonscription,10,11,F,PAISLEY,Yanetti,19/06/1978,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,ZOU,Jocelyn,11/12/1969,Non +ZA,Guadeloupe,04,4ème circonscription,11,13,F,HOUBLON,Christine,28/05/1952,DVC,Ancien cadre,Non,M,HAGUY,Narcisse,29/10/1946,Non +ZA,Guadeloupe,04,4ème circonscription,12,33,M,CALIFER,Elie,19/04/1954,DVG,Ancien cadre,Non,F,CARLE-MARTIAS,Nadia,21/12/1976,Non +ZB,Martinique,01,1ère circonscription,1,2,M,TABAR,Jonathan,11/10/1987,DVD,Employé civil et agent de service de la fonction publique,Non,F,JOSEPH,Joannifer,11/12/1996,Non +ZB,Martinique,01,1ère circonscription,2,5,M,VALERE,Erick,05/02/1956,DVG,Profession libérale,Non,F,CELESTE DELAUNAY,Suzanne,06/02/1969,Non +ZB,Martinique,01,1ère circonscription,3,28,M,SAMOT,Fred,24/02/1961,DVG,Ingénieur et cadre technique d'entreprise,Non,F,MANIN,Josette,16/03/1950,Oui +ZB,Martinique,01,1ère circonscription,4,4,F,GODARD,Joëlle,04/08/1959,UDI,Cadre administratif et commercial d'entreprise,Non,F,CAUMARTIN,Vanessa,04/03/1992,Non +ZB,Martinique,01,1ère circonscription,5,39,M,JEAN-MARIE-ALPHONSINE,Philippe,11/03/1971,DVG,Cadre de la fonction publique,Non,F,TIDAS,Francine,01/09/1970,Non +ZB,Martinique,01,1ère circonscription,6,29,M,EDMOND-MARIETTE,Philippe,15/10/1955,REG,Profession libérale,Non,F,LINORD,Clara,06/05/1987,Non +ZB,Martinique,01,1ère circonscription,7,25,F,BELLAY,Béatrice,25/07/1975,DVG,Cadre de la fonction publique,Non,M,MOUTOUSSAMY,Jean-Philippe,29/08/1958,Non +ZB,Martinique,01,1ère circonscription,8,11,M,PUISARD,Jean-Pierre,29/08/1974,REG,"Contremaître, agent de maîtrise",Non,M,CISERANE,Frantz,14/03/1972,Non +ZB,Martinique,01,1ère circonscription,9,31,M,ROMAIN,Ludovic,20/11/1987,DVG,Profession libérale,Non,F,BERNABE,Kora,04/06/1989,Non +ZB,Martinique,01,1ère circonscription,10,44,M,RANGOLY,Edryan,26/08/1998,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,NANDOR,Logan,29/04/2000,Non +ZB,Martinique,01,1ère circonscription,11,43,M,MIEVILLY,Yann,18/07/1983,ECO,Employé administratif d'entreprise,Non,M,BIROTA,Antony,04/03/1987,Non +ZB,Martinique,01,1ère circonscription,12,22,F,DELANNAY,Marie-Noelle,18/12/1972,DVG,Profession libérale,Non,M,MARS,Michel,09/08/1964,Non +ZB,Martinique,01,1ère circonscription,13,38,M,LAGIER,Alain-Claude,12/06/1973,DVG,Cadre de la fonction publique,Non,F,LAGIN,Cindy,23/01/1990,Non +ZB,Martinique,01,1ère circonscription,14,21,F,MARTHE-DITE-SURELLY,Marie-Hellen,28/07/1962,DXG,Ouvrier agricole,Non,M,CIZO,Steve,15/06/1995,Non +ZB,Martinique,01,1ère circonscription,15,56,M,WILLIAM,Jiovanny,03/06/1985,DVG,Profession libérale,Non,M,LANOIX,"Jean, Alain",17/06/1955,Non +ZB,Martinique,01,1ère circonscription,16,15,M,BELIMONT,Charles,07/08/1960,RN,Ancien employé,Non,F,ROSET,Viviane,14/01/1958,Non +ZB,Martinique,01,1ère circonscription,17,54,M,CRISPIN,Eric Thomas,28/01/1975,DXG,Chef d'entreprise de 10 salariés ou plus,Non,M,GRAND,Jean-Marc Georges,09/07/1969,Non +ZB,Martinique,02,2ème circonscription,1,35,F,SAINT-OLYMPE,Chantal,20/04/1963,DVG,Employé civil et agent de service de la fonction publique,Non,M,SAINT-OLYMPE,Steeve,15/05/1983,Non +ZB,Martinique,02,2ème circonscription,2,37,M,NADEAU,Marcellin,02/11/1962,REG,Cadre de la fonction publique,Non,F,YERRO,Cynthia,16/02/1992,Non +ZB,Martinique,02,2ème circonscription,3,18,F,VARASSE,Karine,02/03/1972,DVG,Profession libérale,Non,M,TROBRILLANT,Emile,03/07/1952,Non +ZB,Martinique,02,2ème circonscription,4,14,M,FERRATY,Max,22/07/1959,RN,Artisan,Non,F,JEAN-FRANCOIS,Magali,16/03/1966,Non +ZB,Martinique,02,2ème circonscription,5,19,F,RODAP,Astrid,22/07/1970,UDI,Profession libérale,Non,M,TUTTLE,Jean-Christophe,25/11/1995,Non +ZB,Martinique,02,2ème circonscription,6,48,M,SELLAYE,Marcel,17/06/1954,DXG,Ancienne profession intermédiaire,Non,F,TALLY,Jacqueline,25/04/1951,Non +ZB,Martinique,02,2ème circonscription,7,32,M,ROTSEN,Jean-Baptiste Joseph,24/06/1961,DVG,Cadre de la fonction publique,Non,F,LARGEN-MARINE,Yolène,30/09/1958,Non +ZB,Martinique,02,2ème circonscription,8,33,M,PAMPHILE,Justin,06/05/1969,REG,Cadre de la fonction publique,Non,F,BABO,Eliane,02/04/1974,Non +ZB,Martinique,02,2ème circonscription,9,7,F,JEAN-ELIE,Barbara,22/07/1967,DVG,Profession libérale,Non,M,CLAVER,Jacques Olivier,27/12/2001,Non +ZB,Martinique,02,2ème circonscription,10,8,M,DUFEAL,Gaétan Alex,07/08/1948,DXG,Ancienne profession intermédiaire,Non,M,BREDAS,Jean Etienne,25/12/1961,Non +ZB,Martinique,02,2ème circonscription,11,55,F,BELLAME,Cynthia,11/05/1983,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,CORANSON,Edmond Ida,13/04/1953,Non +ZB,Martinique,03,3ème circonscription,1,10,M,JEAN-MARIE,Gabriel,27/02/1959,DXG,Ancien cadre,Non,F,ZAMOR,Magalie,09/02/1969,Non +ZB,Martinique,03,3ème circonscription,2,13,F,JOS,Nathalie,24/11/1966,REG,"Profession de l'information, des arts et des spectacles",Non,M,BARCLAY,Jean-René,24/10/1964,Non +ZB,Martinique,03,3ème circonscription,3,6,F,MOLE,Isabelle,29/04/1961,UDI,Artisan,Non,F,CHARLES,Corine,02/04/1981,Non +ZB,Martinique,03,3ème circonscription,4,12,M,CRAMPON,Cédric,19/08/1975,RN,"Profession de l'information, des arts et des spectacles",Non,F,MORAND,Chantal,19/06/1955,Non +ZB,Martinique,03,3ème circonscription,5,34,M,ROBIN,Daniel,11/12/1961,DVG,Chef d'entreprise de 10 salariés ou plus,Non,F,FIMBOU,Camélia,23/07/1986,Non +ZB,Martinique,03,3ème circonscription,6,23,M,CAROLE,Francis,19/10/1958,REG,"Professeur, profession scientifique",Non,F,SAMOT,Christelle,31/08/1974,Non +ZB,Martinique,03,3ème circonscription,7,45,F,JEANVILLE,Marie-Jeanne Françoise,02/04/1959,REC,Personnel des services directs aux particuliers,Non,M,MIREDIN,Jean-Victor,19/11/1966,Non +ZB,Martinique,03,3ème circonscription,8,52,F,GIRAUD,Audrey Arielle,17/09/1987,ENS,Ingénieur et cadre technique d'entreprise,Non,M,PALCY,Patrice Valentin,15/02/1972,Non +ZB,Martinique,03,3ème circonscription,9,36,M,JEAN-BAPTISTE,Jean-Michel,11/11/1959,DVG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,CELIMENE,Déborah,17/03/1988,Non +ZB,Martinique,03,3ème circonscription,10,20,M,RENARD,Thierry,04/10/1965,DVG,"Professeur, profession scientifique",Non,F,MARINE,Daniella,03/05/1972,Non +ZB,Martinique,03,3ème circonscription,11,17,M,BARDET,Joël,24/12/1970,REG,Chef d'entreprise de 10 salariés ou plus,Non,F,JEAN-JOSEPH,Huguette,20/02/1956,Non +ZB,Martinique,03,3ème circonscription,12,9,M,HAJJAR,Johnny,17/01/1973,DVG,"Professeur des écoles, instituteur et assimilé",Non,F,DI GERONIMO,Bénédicte,11/12/1977,Non +ZB,Martinique,03,3ème circonscription,13,16,M,NEMOUTHE,Noël,22/12/1964,REG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,WILLIAM,Marie-Christine,04/05/1981,Non +ZB,Martinique,04,4ème circonscription,1,26,M,DINAL,David,10/08/1952,DVG,Profession libérale,Non,F,LAMON,Maryse,06/04/1969,Non +ZB,Martinique,04,4ème circonscription,2,27,M,MIRANDE,Richard Darius,25/05/1975,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,ARMEDE,Sylvie,09/12/1973,Non +ZB,Martinique,04,4ème circonscription,3,40,F,THERESE,Karine,14/06/1984,ECO,Profession libérale,Non,M,SAINTE-ROSE,Serge,28/06/1964,Non +ZB,Martinique,04,4ème circonscription,4,47,M,LIMERY,David Thérèse,15/10/1983,DVG,Cadre administratif et commercial d'entreprise,Non,F,LENTILUS,Enise,07/04/1985,Non +ZB,Martinique,04,4ème circonscription,5,53,F,TIBERINUS,Laurence,08/01/1959,ENS,Profession libérale,Non,M,SAMATHAY,François,02/04/1960,Non +ZB,Martinique,04,4ème circonscription,6,42,M,TINAUGUS,Edouard,12/05/1971,DVG,"Ouvrier qualifié de la manutention, du magasinage et du transport",Non,F,GUILLOIS POMPIERE,Nathalia,29/07/1986,Non +ZB,Martinique,04,4ème circonscription,7,30,M,DUVILLE,Ruddy,02/02/1975,DVG,Ingénieur et cadre technique d'entreprise,Non,F,TRITZ,Yvonne Dominique,04/08/1969,Non +ZB,Martinique,04,4ème circonscription,8,3,M,PETIT,Philippe,16/05/1957,UDI,Profession libérale,Non,M,INIMOD,Maurice,16/12/1956,Non +ZB,Martinique,04,4ème circonscription,9,51,M,OCCOLIER,Nicolas,04/10/1977,RN,Commerçant et assimilé,Non,F,CLERC,Marie-Hélène,01/05/1963,Non +ZB,Martinique,04,4ème circonscription,10,46,F,SAINTE-ROSE,Célia,14/07/1991,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,EUSTACHE,Henri Léandre,27/02/1955,Non +ZB,Martinique,04,4ème circonscription,11,49,M,NILOR,Jean-Philippe,15/05/1965,REG,Ancien cadre,Oui,F,BERISSON,Anne,02/03/1961,Non +ZB,Martinique,04,4ème circonscription,12,24,F,SULIO,Mélanie,01/12/1996,DXG,"Professeur, profession scientifique",Non,M,LOUIS-ALEXANDRE,Eric,12/12/1969,Non +ZB,Martinique,04,4ème circonscription,13,50,M,LUSBEC,Jean-Marc,14/09/1964,LR,Profession libérale,Non,F,THERESE--LOUISY-LOUIS,Gaëlle,04/07/1996,Non +ZB,Martinique,04,4ème circonscription,14,41,M,MARIE-JEANNE,Alfred,15/11/1936,REG,Ancien cadre,Non,F,CARIUS,Francine,05/03/1955,Non +ZC,Guyane,01,1ère circonscription,1,3,F,DELAR-RENÉ,Jessika,08/10/1982,DVG,"Professeur, profession scientifique",Non,F,DETOURNELLE,Naomi,26/11/1980,Non +ZC,Guyane,01,1ère circonscription,2,18,M,LECHAT-VEGA,Thibault,12/01/1988,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,CHAMBAUD,Aïssatou,03/12/1977,Non +ZC,Guyane,01,1ère circonscription,3,11,F,GOUA,Yvane,28/03/1980,REG,Profession intermédiaire administrative et commerciale des entreprises,Non,M,GOUDET,Olivier,14/11/1977,Non +ZC,Guyane,01,1ère circonscription,4,23,M,CONTOUT,Yari,18/02/1980,DVG,Employé civil et agent de service de la fonction publique,Non,F,RIGHETTI,Mélody,13/06/1990,Non +ZC,Guyane,01,1ère circonscription,5,16,F,LETARD,Line,02/01/1973,REG,"Professeur, profession scientifique",Non,M,CATAYEE,Patrice,02/07/1963,Non +ZC,Guyane,01,1ère circonscription,6,5,M,FELISSAINT,Emmanuel,19/10/1986,DVG,Cadre de la fonction publique,Non,F,LIEGARD,Eva,10/07/1990,Non +ZC,Guyane,01,1ère circonscription,7,19,F,CHALCO-LEFAY,Rolande,22/09/1963,DVG,Ancien cadre,Non,M,CLET,Anccy Samuel,24/10/1988,Non +ZC,Guyane,01,1ère circonscription,8,8,F,PREVOT-MADERE,Joëlle,21/09/1959,DVD,Chef d'entreprise de 10 salariés ou plus,Non,M,ABRAHAM,Gleny,02/05/1994,Non +ZC,Guyane,01,1ère circonscription,9,10,M,STEPHENSON,Rudy,01/10/1972,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,MACHICHI-PROST,Violaine,05/06/1985,Non +ZC,Guyane,01,1ère circonscription,10,28,M,HARBOURG,Jérôme,15/12/1996,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,ZEPHIRIN-HENRI-LEO,Jaïrre,02/12/1988,Non +ZC,Guyane,01,1ère circonscription,11,7,M,MADÈRE,Christophe,18/07/1971,DVG,"Professeur, profession scientifique",Non,F,BRIQUET,Ruth,06/05/1993,Non +ZC,Guyane,01,1ère circonscription,12,2,M,CASTOR,Jean-Victor,21/04/1962,REG,Ingénieur et cadre technique d'entreprise,Non,F,GRAND-EMILE,Eline,21/12/1985,Non +ZC,Guyane,01,1ère circonscription,13,22,F,MATHIEU,Mylène,10/06/1974,DVG,Profession libérale,Non,M,FERNAND,Christophe,01/03/2004,Non +ZC,Guyane,01,1ère circonscription,14,4,F,CATTIER,Myrtha,01/03/1967,DVG,Cadre de la fonction publique,Non,M,MIRAKOFF,Jean-Yves,25/09/1965,Non +ZC,Guyane,01,1ère circonscription,15,9,M,MADELEINE,Alix,24/10/1994,DVC,Commerçant et assimilé,Non,F,COLIN,Nadine,16/11/1976,Non +ZC,Guyane,01,1ère circonscription,16,26,F,SAGNE,Aurore,06/12/1991,DVG,Commerçant et assimilé,Non,F,CLAUDE,Ketsia,08/03/1980,Non +ZC,Guyane,01,1ère circonscription,17,21,M,BOUBA,Philippe,10/05/1980,DVG,"Professeur, profession scientifique",Non,F,TARADE,Erika,18/10/1979,Non +ZC,Guyane,01,1ère circonscription,18,6,M,CHONG-SIT,Boris,11/04/1972,DVD,Profession libérale,Non,F,CLIFFORD,Liser,04/06/1978,Non +ZC,Guyane,02,2ème circonscription,1,14,M,KARAM,Wender,24/04/1980,DVG,"Professeur, profession scientifique",Non,F,CEDER,Cheyenne,17/06/1997,Non +ZC,Guyane,02,2ème circonscription,2,25,M,JOJE,Gillermo,20/01/2000,DVG,"Elève, étudiant",Non,F,HORTH,Yvane,01/03/2000,Non +ZC,Guyane,02,2ème circonscription,3,27,F,THOMAS,Virgine,05/03/1971,RN,Chef d'entreprise de 10 salariés ou plus,Non,M,HARBOURG,Jean-Luc,17/02/1954,Non +ZC,Guyane,02,2ème circonscription,4,13,M,RIMANE,Davy,15/12/1979,DVG,Technicien,Non,F,AUPRAT,Aude,29/06/1978,Non +ZC,Guyane,02,2ème circonscription,5,24,M,PIERRE,Christophe Yanuwana,09/05/1993,REG,Cadre administratif et commercial d'entreprise,Non,F,BARBOSA,Samantha,31/03/1985,Non +ZC,Guyane,02,2ème circonscription,6,15,M,ADAM,Lénaïck,19/02/1992,ENS,Commerçant et assimilé,Oui,F,JACARIA,Véronique,25/06/1964,Non +ZC,Guyane,02,2ème circonscription,7,17,M,JEAN-BAPTISTE,Manuel Victor,12/04/1981,REG,Employé civil et agent de service de la fonction publique,Non,F,JOACHIM,Ingrid,13/09/1987,Non +ZC,Guyane,02,2ème circonscription,8,20,F,BUNCH,Jenny,04/01/1983,DSV,Policier et militaire,Non,F,LUAP,Marie-Anna Joséphé,01/05/1975,Non +ZC,Guyane,02,2ème circonscription,9,12,M,DOLOR,Jean-Philippe,25/05/1986,DVC,Cadre de la fonction publique,Non,F,SELLALI,Cornélie,09/12/1970,Non +ZD,La Réunion,01,1ère circonscription,1,79,M,VAÏTILINGOM,Didier,05/12/1981,REG,Profession intermédiaire de la santé et du travail social,Non,F,PONCY,Sylvie,22/09/1982,Non +ZD,La Réunion,01,1ère circonscription,2,9,F,SISTERON,Murielle,16/02/1987,LR,Profession libérale,Non,M,SERVIABLE,Mario,23/05/1949,Non +ZD,La Réunion,01,1ère circonscription,3,8,M,PAYET,Giovanni,30/04/1985,DVG,Cadre de la fonction publique,Non,F,CORIDON,Audrey,18/03/1984,Non +ZD,La Réunion,01,1ère circonscription,4,2,F,LEBON,Gaëlle,11/02/1983,RN,Cadre administratif et commercial d'entreprise,Non,M,ANGO,Jean-Roland,25/11/1965,Non +ZD,La Réunion,01,1ère circonscription,5,11,M,WELMANT,Sonny,10/02/1976,DSV,Chauffeur,Non,F,CADENET,Josie,09/10/1958,Non +ZD,La Réunion,01,1ère circonscription,6,12,F,DUCHEMANN,Yvette,12/08/1956,ECO,Ancien cadre,Non,M,COTTIN,Jean-François,23/04/1957,Non +ZD,La Réunion,01,1ère circonscription,7,51,M,BEEHARRY,Eric,15/03/1982,DIV,Commerçant et assimilé,Non,F,SEMPERE,Marie-Frédérique,02/04/1973,Non +ZD,La Réunion,01,1ère circonscription,8,23,F,GUERIN,Nelsy,12/06/1983,DXG,"Professeur des écoles, instituteur et assimilé",Non,M,DEMATTEÏ,Florent,14/03/1992,Non +ZD,La Réunion,01,1ère circonscription,9,18,M,POLEYA,Jean Alexandre,09/06/1967,DVC,Profession intermédiaire administrative de la fonction publique,Non,F,SAID,Soifia,12/06/2001,Non +ZD,La Réunion,01,1ère circonscription,10,58,M,MANGROLIA,Farid,07/09/1987,DVC,Commerçant et assimilé,Non,F,CATAPOULÉ,Priyamvada,15/06/1976,Non +ZD,La Réunion,01,1ère circonscription,11,62,M,MAGAMOOTOO,Eric,18/07/1956,DVC,"Ancien artisan, commerçant, chef d'entreprise",Non,F,YEN PON,Valérie,25/09/1987,Non +ZD,La Réunion,01,1ère circonscription,12,10,M,MOREL,Jean Jacques,21/05/1963,DVD,Profession libérale,Non,F,SAMOURGOMPOULLÉ,Linda,17/11/1976,Non +ZD,La Réunion,01,1ère circonscription,13,57,M,NAILLET,Philippe,14/08/1960,DVG,Chef d'entreprise de 10 salariés ou plus,Oui,F,PAYET PIGNOLET,Vanessa,08/08/1987,Non +ZD,La Réunion,01,1ère circonscription,14,82,M,SAUTRON,Ludovic,26/04/1980,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,ALMA,Murielle,22/01/1988,Non +ZD,La Réunion,01,1ère circonscription,15,24,M,GRONDIN,Hary,28/04/1962,DVC,Artisan,Non,F,AIMÉ,Marie Elodie,25/09/1988,Non +ZD,La Réunion,01,1ère circonscription,16,34,M,MITHRA,Georges,14/02/1969,DVG,"Contremaître, agent de maîtrise",Non,F,VIGNOLO,Sandra,02/06/1983,Non +ZD,La Réunion,01,1ère circonscription,17,35,F,GASP,Corinne,30/06/1971,DXG,Technicien,Non,M,TECHER,Paul,01/03/1947,Non +ZD,La Réunion,02,2ème circonscription,1,59,M,SOILIHI,Sullaiman,14/09/1984,DXG,Commerçant et assimilé,Non,F,TELMAR,Ingrid,26/09/1989,Non +ZD,La Réunion,02,2ème circonscription,2,71,F,PERON,Virginie,19/09/1981,REG,Employé civil et agent de service de la fonction publique,Non,M,LAMLAC,Rodolphe,29/03/1986,Non +ZD,La Réunion,02,2ème circonscription,3,36,F,INFANTE,Karine,01/02/1985,REG,Artisan,Non,M,INCANA,Willy,06/12/1982,Non +ZD,La Réunion,02,2ème circonscription,4,42,M,CHEN-TZU-KUONG,Stéphane,03/04/1988,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,PLAIRE,Patricia,31/07/1957,Non +ZD,La Réunion,02,2ème circonscription,5,91,F,LEBON,Karine,09/06/1985,DVG,"Professeur des écoles, instituteur et assimilé",Oui,M,HIPPOLYTE,Henry,06/09/1961,Non +ZD,La Réunion,02,2ème circonscription,6,49,M,LEGENTIL,Nicolas,12/06/1983,DXG,"Professeur, profession scientifique",Non,F,M'COUEZOU,Catherine,12/11/1971,Non +ZD,La Réunion,02,2ème circonscription,7,48,F,GRAJA,Michelle,07/11/1964,RN,Profession libérale,Non,M,HOARAU,Jean Pascal,04/11/1973,Non +ZD,La Réunion,02,2ème circonscription,8,21,F,FERRIER,Véronique,23/06/1955,DVD,Ancien employé,Non,M,ATHÈNE,Jean Louis,13/07/1974,Non +ZD,La Réunion,02,2ème circonscription,9,92,M,DEFAUD,Vincent,29/12/1974,ECO,Cadre de la fonction publique,Non,F,CELESTE,Gladys,06/03/1958,Non +ZD,La Réunion,02,2ème circonscription,10,22,M,MERA,Alix,20/03/1972,DSV,Technicien,Non,F,VERDUN,Davilla,28/01/1971,Non +ZD,La Réunion,02,2ème circonscription,11,61,M,FONTAINE,Erick,28/12/1960,REG,Cadre de la fonction publique,Non,F,TÉCHER,Guylène,23/01/1986,Non +ZD,La Réunion,02,2ème circonscription,12,86,M,GEORGETTE,Emmanuel,20/12/1964,DIV,Technicien,Non,F,HASSANI,Zaitouni,18/12/1993,Non +ZD,La Réunion,02,2ème circonscription,13,81,F,FONTAINE,Audrey,18/12/1979,UDI,Cadre de la fonction publique,Non,M,RANDRIANARIVELO,Stéphane,26/08/1984,Non +ZD,La Réunion,02,2ème circonscription,14,78,M,HOARAU,Laurent Philippe,20/04/1977,DIV,Profession libérale,Non,F,THOMAS,Florence,22/11/1994,Non +ZD,La Réunion,03,3ème circonscription,1,69,F,VIGNE,Aurélie,19/12/1981,DVG,Profession libérale,Non,F,ROCHEFEUILLE,Sylvaine,22/11/1970,Non +ZD,La Réunion,03,3ème circonscription,2,70,M,BOURGOGNE,Rémy,06/03/1984,DVG,"Professeur, profession scientifique",Non,F,VITRY,Elodie,21/07/1983,Non +ZD,La Réunion,03,3ème circonscription,3,52,M,DIJOUX,Raphaël,28/05/1965,ECO,Profession intermédiaire de la santé et du travail social,Non,F,CARMALY,Lucie,19/07/1973,Non +ZD,La Réunion,03,3ème circonscription,4,67,M,VALY,Bachil,09/01/1962,ENS,Commerçant et assimilé,Non,F,GRONDIN,Nadine,19/05/1969,Non +ZD,La Réunion,03,3ème circonscription,5,26,F,MOUKINE,Sandrine,09/09/1974,DSV,Profession intermédiaire de la santé et du travail social,Non,M,DIDIER,Noah,20/01/2004,Non +ZD,La Réunion,03,3ème circonscription,6,27,M,HOAREAU,Didier,17/10/1981,RN,Artisan,Non,F,GIGANT,Aurore,31/01/1981,Non +ZD,La Réunion,03,3ème circonscription,7,5,F,BASSIRE,Nathalie,22/01/1968,DVD,Ancienne profession intermédiaire,Oui,M,JONAS,Mheïdy,22/10/1998,Non +ZD,La Réunion,03,3ème circonscription,8,13,M,FONTAINE,Antoine,28/10/1976,DVG,Artisan,Non,F,LALEVEE,Geneviève,27/01/1965,Non +ZD,La Réunion,03,3ème circonscription,9,29,M,THEBAULT,Yves,07/01/1949,DXG,Ancien employé,Non,F,ACTIF,Nelly,04/07/1953,Non +ZD,La Réunion,03,3ème circonscription,10,33,M,TÉCHER,Didier,29/11/1979,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,MOREL,Myriam,26/07/1980,Non +ZD,La Réunion,03,3ème circonscription,11,6,M,CHAUSSALET,Alexis,06/05/1993,DVG,Commerçant et assimilé,Non,F,MARÉE,Nadine,21/06/1967,Non +ZD,La Réunion,03,3ème circonscription,12,83,M,THIEN-AH-KOON,Patrice,06/04/1965,DVD,Cadre administratif et commercial d'entreprise,Non,F,HOARAU,Annie,14/09/1975,Non +ZD,La Réunion,03,3ème circonscription,13,87,M,VLODY,Jean Jacques,19/08/1967,DVG,"Professeur, profession scientifique",Non,F,BENHAMIDA,Samira,20/12/1980,Non +ZD,La Réunion,04,4ème circonscription,1,4,F,DIJOUX,Ruth,15/04/1982,ECO,Profession intermédiaire de la santé et du travail social,Non,F,ETHEVE,Stéphie,29/09/1989,Non +ZD,La Réunion,04,4ème circonscription,2,63,F,PAYET,Isabelle,02/02/1972,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,MOULLAN,Ibrahim,10/01/1985,Non +ZD,La Réunion,04,4ème circonscription,3,7,F,BOUCHER,Annie-Claude Dite Saphia,26/06/1970,RN,Profession intermédiaire administrative de la fonction publique,Non,M,ROMBAU,Olivier,05/05/1970,Non +ZD,La Réunion,04,4ème circonscription,4,20,M,LATCHOUMANIN,Serge,04/06/1968,DXG,Profession intermédiaire administrative de la fonction publique,Non,M,LAPLAGNE,Valency,14/03/1964,Non +ZD,La Réunion,04,4ème circonscription,5,84,M,BEMAT,Sharif,12/02/1984,DVC,"Professeur, profession scientifique",Non,F,LABENNE,Jennifer,10/04/1986,Non +ZD,La Réunion,04,4ème circonscription,6,45,M,ALBORA,Stéphane,21/09/1989,ECO,Profession intermédiaire de la santé et du travail social,Non,F,CAMÉLÉ YENG-SENG,Graziella,21/02/1971,Non +ZD,La Réunion,04,4ème circonscription,7,14,M,LORION,David,15/10/1964,LR,"Professeur, profession scientifique",Oui,F,HOAREAU,Emma,20/05/1999,Non +ZD,La Réunion,04,4ème circonscription,8,77,M,THAZARD,Rudy,30/05/1979,REG,Profession libérale,Non,F,LEPINAY,Rebecca,23/09/1990,Non +ZD,La Réunion,04,4ème circonscription,9,89,M,RIANI,Richard,16/10/1968,DIV,"Profession de l'information, des arts et des spectacles",Non,F,SAMINADIN,Magdala,21/10/1974,Non +ZD,La Réunion,04,4ème circonscription,10,74,F,HOAREAU,Patricia,14/11/1964,DSV,Employé civil et agent de service de la fonction publique,Non,M,SOLER,Yann,23/07/1974,Non +ZD,La Réunion,04,4ème circonscription,11,46,F,K/BIDI,Emeline,13/05/1987,DVG,Profession libérale,Non,M,MARATCHIA,Jean Bernard,27/11/1962,Non +ZD,La Réunion,05,5ème circonscription,1,28,M,VIRAPOULLÉ,Laurent,07/11/1974,ENS,Chef d'entreprise de 10 salariés ou plus,Non,F,RAMIN,Sabrina,06/01/1978,Non +ZD,La Réunion,05,5ème circonscription,2,15,F,SETTAMA-VIDON,Léopoldine,21/04/1966,DVC,Profession libérale,Non,M,ALLAMELE,Cyldric,11/01/1985,Non +ZD,La Réunion,05,5ème circonscription,3,39,M,ISSA,Ridwane,07/06/1980,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,MANGAR,Catherine,15/05/1979,Non +ZD,La Réunion,05,5ème circonscription,4,90,M,GAUVIN,David,29/03/1981,DVG,Chef d'entreprise de 10 salariés ou plus,Non,F,ARAYE,Alexandrine,23/01/1976,Non +ZD,La Réunion,05,5ème circonscription,5,55,M,PAYET,Jean-Yves,05/03/1967,DXG,Technicien,Non,M,NABA,Jean-Luc,09/12/1955,Non +ZD,La Réunion,05,5ème circonscription,6,75,F,DIJOUX,Martine,29/12/1977,DSV,"Professeur des écoles, instituteur et assimilé",Non,M,DIJOUX,Michel,02/07/1959,Non +ZD,La Réunion,05,5ème circonscription,7,60,M,RATENON,Jean-Hugues,25/06/1967,DVG,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Oui,F,SIDAT,Laetitia,10/10/1986,Non +ZD,La Réunion,05,5ème circonscription,8,40,M,FOUASSIN,Stéphane,17/10/1960,UDI,Profession libérale,Non,F,PATCHE,Préma,09/04/1979,Non +ZD,La Réunion,05,5ème circonscription,9,76,F,BRASIER-CLAIN,Marie-Luce,19/10/1959,RN,Ancienne profession intermédiaire,Non,M,RAMASSAMY,Jean Dominique,24/08/1968,Non +ZD,La Réunion,06,6ème circonscription,1,41,M,ADEKALOM,Johny,09/08/1967,DVC,Cadre de la fonction publique,Non,F,BARET-ABDILLAH,Alda,09/10/1979,Non +ZD,La Réunion,06,6ème circonscription,2,88,F,CLAIN,Ophélie,01/02/1994,DSV,Profession libérale,Non,F,STIPO,Nadine,31/03/1965,Non +ZD,La Réunion,06,6ème circonscription,3,17,F,ORPHÉ,Monique,15/10/1964,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,RAMASSAMY,Jean-François,21/02/1971,Non +ZD,La Réunion,06,6ème circonscription,4,3,F,LEGROS,Valérie,04/12/1972,RN,Employé civil et agent de service de la fonction publique,Non,M,ROBERT,Yannis,03/04/1973,Non +ZD,La Réunion,06,6ème circonscription,5,30,M,DE CHAZOURNES,Philippe,02/07/1958,DXG,Profession libérale,Non,F,LISADOR,Ketty,11/07/1955,Non +ZD,La Réunion,06,6ème circonscription,6,44,M,LEUNG,Eric,20/05/1965,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,CALICHIAMA,Yolande,14/03/1980,Non +ZD,La Réunion,06,6ème circonscription,7,64,M,MAILLOT,Frédéric,15/11/1986,DVG,Personnel des services directs aux particuliers,Non,F,LANGENIER,Leila,04/09/1979,Non +ZD,La Réunion,06,6ème circonscription,8,93,M,FANFAN,Loïc,31/10/1985,REG,Profession libérale,Non,F,PIREMAMODE,Salima,14/03/1997,Non +ZD,La Réunion,06,6ème circonscription,9,38,M,LOMBARD,Didier,07/08/1952,DXG,Ancien employé,Non,F,FASY,Frania,27/09/1968,Non +ZD,La Réunion,06,6ème circonscription,10,65,F,GIRONCEL DAMOUR,Nadine,09/07/1974,DVG,Cadre de la fonction publique,Non,M,HIVANHOÉ,Aldo,27/01/1977,Non +ZD,La Réunion,06,6ème circonscription,11,47,M,LAÏ-KANE-CHEONG,Alexandre,01/12/1988,DXG,"Professeur des écoles, instituteur et assimilé",Non,F,CHANE-TUNE,Florence,21/11/1988,Non +ZD,La Réunion,06,6ème circonscription,12,53,F,RAMASSAMY,Nadia,17/05/1961,LR,Profession libérale,Oui,M,CAZANOVE,Gérard,19/12/1968,Non +ZD,La Réunion,06,6ème circonscription,13,16,M,HOAREAU,Jean Noël,12/08/1967,DXG,Artisan,Non,F,HOAREAU,Julianne,27/08/1971,Non +ZD,La Réunion,07,7ème circonscription,1,37,M,JUHOOR,Karim,01/01/1991,DVG,Commerçant et assimilé,Non,F,RIVIERE,Corine,15/07/1965,Non +ZD,La Réunion,07,7ème circonscription,2,72,F,CODDEVILLE,Hélène,20/12/1965,ENS,Profession libérale,Non,M,DAVID,Romain,01/06/1996,Non +ZD,La Réunion,07,7ème circonscription,3,56,M,CATHERINE,Richelain,14/12/1968,DIV,Commerçant et assimilé,Non,F,HOARAU,Adjila,22/11/1990,Non +ZD,La Réunion,07,7ème circonscription,4,68,M,ROBERT,Thierry,01/04/1977,DVC,Cadre administratif et commercial d'entreprise,Non,F,BICLAIRE,Windy,30/01/1989,Non +ZD,La Réunion,07,7ème circonscription,5,31,M,MASSAIN,Remy,24/03/1964,RDG,"Professeur des écoles, instituteur et assimilé",Non,F,HOARAU,Marie-Josèphe,02/01/1963,Non +ZD,La Réunion,07,7ème circonscription,6,66,M,VELLEYEN,Gaël,22/04/1981,REG,"Profession de l'information, des arts et des spectacles",Non,F,SCIERS,Nina,17/02/1998,Non +ZD,La Réunion,07,7ème circonscription,7,73,M,MARCELY,Eric,10/07/1962,DSV,Profession libérale,Non,F,ROMIGNAC,Mélanie,16/09/1962,Non +ZD,La Réunion,07,7ème circonscription,8,19,M,NATIVEL,Jean François,10/02/1972,DVD,"Professeur, profession scientifique",Non,F,GALAIS,Mahalia,25/04/1984,Non +ZD,La Réunion,07,7ème circonscription,9,32,M,RIVIERE,Jonathan,14/07/1985,RN,Commerçant et assimilé,Non,F,LEBEAU,Anicha,20/09/1981,Non +ZD,La Réunion,07,7ème circonscription,10,25,M,VALEAMA,François,23/03/1978,DVG,Profession intermédiaire administrative de la fonction publique,Non,F,HOAREAU,Chloé,15/10/1996,Non +ZD,La Réunion,07,7ème circonscription,11,54,F,TRONC,Isaline,24/01/1974,DVG,Cadre de la fonction publique,Non,M,AIPAR,David,09/05/1970,Non +ZD,La Réunion,07,7ème circonscription,12,80,M,BACHOU,Jérôme,19/10/1978,DVC,Profession libérale,Non,M,BERTRAND,Pascal,17/09/1978,Non +ZD,La Réunion,07,7ème circonscription,13,85,M,GAILLARD,Perceval,24/04/1983,DVG,Profession intermédiaire de la santé et du travail social,Non,F,PAYET,Geneviève,01/08/1954,Non +ZD,La Réunion,07,7ème circonscription,14,50,M,PAYET,Jean Luc,23/05/1969,DXG,"Professeur, profession scientifique",Non,M,LAPIERRE,Xavier,11/12/1959,Non +ZD,La Réunion,07,7ème circonscription,15,43,M,GUILLOU,Johan,13/07/1984,DVG,Ancien employé,Non,F,BIMA,Kelly,29/03/1995,Non +ZM,Mayotte,01,1ère circonscription,1,14,M,MOINDJIE,Mohamed,11/04/1969,DVC,Cadre de la fonction publique,Non,F,ATTOUMANI,Dharina-Hyati,22/10/1985,Non +ZM,Mayotte,01,1ère circonscription,2,21,F,AOUNY,Yasmina,31/03/1986,DVG,"Professeur, profession scientifique",Non,M,BACAR,Assoumani,04/01/1971,Non +ZM,Mayotte,01,1ère circonscription,3,4,M,NARAYANIN,Théophane,07/05/1955,DIV,Chef d'entreprise de 10 salariés ou plus,Non,F,KORDJEE,Cris,17/11/1963,Non +ZM,Mayotte,01,1ère circonscription,4,16,M,CHAKRINA,Elad,04/03/1981,DVD,Profession libérale,Non,F,HALIDI,Anchia,19/05/1978,Non +ZM,Mayotte,01,1ère circonscription,5,22,M,DJAZA,Ismaila,11/10/1974,DIV,Ingénieur et cadre technique d'entreprise,Non,M,SAID,Mahamoud,14/07/1975,Non +ZM,Mayotte,01,1ère circonscription,6,3,M,BOURA,Ahamadi,22/12/1959,DVG,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,F,ABDALLAH-BOINA,Laini,07/02/1981,Non +ZM,Mayotte,01,1ère circonscription,7,2,M,ABDILLAH,Issihaka,31/12/1963,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,HOUZALI,Halima,17/06/1974,Non +ZM,Mayotte,01,1ère circonscription,8,15,F,ALI,Ramlati,28/05/1961,ENS,"Professeur, profession scientifique",Oui,M,BACAR,Abdallah,20/02/1982,Non +ZM,Mayotte,01,1ère circonscription,9,20,M,AUTRAN,Antoine,17/12/1972,DIV,Artisan,Non,F,GARCIA,Nathalie,24/01/1966,Non +ZM,Mayotte,01,1ère circonscription,10,18,F,YOUSSOUFFA,Estelle,31/07/1978,DIV,"Profession de l'information, des arts et des spectacles",Non,M,SAID,Kambi,18/03/1975,Non +ZM,Mayotte,02,2ème circonscription,1,8,M,SAID-SOUFFOU,Soula,19/02/1980,DVC,Employé civil et agent de service de la fonction publique,Non,F,MOHAMED,Nouriati,17/07/1975,Non +ZM,Mayotte,02,2ème circonscription,2,11,M,MAURICE,Toumbou,22/08/1943,DVD,Ancien employé,Non,M,ALI HAMADA,Hazali,18/05/1982,Non +ZM,Mayotte,02,2ème circonscription,3,19,M,DJAROUDI,Ali,01/07/1969,DVG,Cadre administratif et commercial d'entreprise,Non,M,MLANAO,Abdou Ali,05/08/1965,Non +ZM,Mayotte,02,2ème circonscription,4,17,M,HAMISSI,Saidali,27/11/1960,RN,Cadre de la fonction publique,Non,F,MKADARA,Afidati,09/03/1976,Non +ZM,Mayotte,02,2ème circonscription,5,9,M,ISSA ABDOU,Issa,23/12/1973,DVC,Cadre de la fonction publique,Non,F,AHAMADA,Moizari,08/06/1963,Non +ZM,Mayotte,02,2ème circonscription,6,5,M,KAMARDINE,Mansour,23/03/1959,LR,Profession libérale,Oui,F,DJOUMOI TSIMPOU,Fazianti,02/11/1986,Non +ZM,Mayotte,02,2ème circonscription,7,13,M,SALIME,Ahumad,14/04/1966,DVD,Employé civil et agent de service de la fonction publique,Non,M,IMRANE,Nassurdine,31/12/1977,Non +ZM,Mayotte,02,2ème circonscription,8,7,M,MADI NGAZI,Anli,26/08/1988,DVG,Cadre administratif et commercial d'entreprise,Non,M,SAID,Nourdine,30/06/1985,Non +ZM,Mayotte,02,2ème circonscription,9,12,M,ABDOU,Mouhamed,27/07/1980,DIV,Profession intermédiaire de la santé et du travail social,Non,M,AHAMADI,Inoussa,31/05/1982,Non +ZM,Mayotte,02,2ème circonscription,10,10,M,MADI MARI,Madi-Boinamani,16/02/1987,ENS,Cadre de la fonction publique,Non,F,SAID,Toiyfati,22/02/1987,Non +ZM,Mayotte,02,2ème circonscription,11,6,M,MCHAMI,Mouhamadi,17/05/1979,DVC,"Professeur des écoles, instituteur et assimilé",Non,F,BOURA,Raza,07/04/1980,Non +ZN,Nouvelle-Calédonie,01,1ère circonscription,1,2,M,GIL,Antoine,26/05/1956,DVD,Policier et militaire,Non,M,QUINET,Stéphane,25/12/1965,Non +ZN,Nouvelle-Calédonie,01,1ère circonscription,2,9,M,KASARHEROU,Joël,26/09/1963,DVC,Chef d'entreprise de 10 salariés ou plus,Non,M,IOPUE,Luen,27/01/1985,Non +ZN,Nouvelle-Calédonie,01,1ère circonscription,3,17,M,DUNOYER,Philippe,11/01/1968,ENS,Cadre de la fonction publique,Oui,F,WATEOU,Naïa,16/04/1984,Non +ZN,Nouvelle-Calédonie,01,1ère circonscription,4,4,M,CUENOT,Guy-Olivier,06/07/1966,RN,Chef d'entreprise de 10 salariés ou plus,Non,F,MANUILA,Nila,03/10/1981,Non +ZN,Nouvelle-Calédonie,01,1ère circonscription,5,18,M,LAFLEUR,Pascal,21/01/1961,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,DALY,Pascale,13/01/1963,Non +ZN,Nouvelle-Calédonie,01,1ère circonscription,6,10,F,WAHETRA,Walisaune,06/04/1970,REG,"Professeur des écoles, instituteur et assimilé",Non,M,MALALUA,Jean Fidéli,07/07/1973,Non +ZN,Nouvelle-Calédonie,01,1ère circonscription,7,14,F,RUFFENACH,Virginie,19/09/1973,LR,"Professeur, profession scientifique",Non,M,LAUKAU,Warren,24/08/1990,Non +ZN,Nouvelle-Calédonie,01,1ère circonscription,8,3,M,SIMON,Jérémy,19/08/1986,DSV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,TORDJMAN,Mickaël,03/08/1995,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,1,15,M,ITITIATY,Joannes,23/11/1983,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,AZERARI,Loretta,07/11/1987,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,2,16,M,MILLAR,Manuel,10/05/1957,DIV,Cadre administratif et commercial d'entreprise,Non,M,TUAKOIFENUA,Palekuaola,02/12/1979,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,3,5,M,METZDORF,Nicolas,20/05/1988,ENS,Ingénieur et cadre technique d'entreprise,Non,M,GATUHAU,Willy,03/01/1970,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,4,7,M,DESCOMBELS,Alain,06/11/1953,RN,Chef d'entreprise de 10 salariés ou plus,Non,F,HAOA,Ursula,09/04/1990,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,5,6,M,SANTA,Thierry,29/08/1967,LR,Cadre de la fonction publique,Non,F,WACAPO,Vanessa,21/04/1977,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,6,8,F,HOMBOE,Michèle,10/12/1970,DVC,"Professeur, profession scientifique",Non,M,KERLEGUER,Lénaïc,18/05/1990,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,7,13,F,PAGAND,Véronique,22/06/1971,DSV,Profession libérale,Non,F,PAGAND,Alysea,11/01/2000,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,8,11,M,REIGNIER,Gérard,02/10/1959,REG,Ancien cadre,Non,F,GOYETCHE,Marie-Pierre,12/02/1956,Non +ZN,Nouvelle-Calédonie,02,2ème circonscription,9,12,F,HAOCAS,Muneiko,19/06/1990,REG,Profession libérale,Non,M,YEIWIE,Simijane,18/11/1979,Non +ZP,Polynésie française,01,1ère circonscription,1,15,F,HAITI,Pascale,03/04/1972,DVD,Profession libérale,Non,F,NOUVEAU,Lydia,27/02/1959,Non +ZP,Polynésie française,01,1ère circonscription,2,3,M,LE GAYIC,Tematai,11/10/2000,REG,"Elève, étudiant",Non,F,SAMIN ÉPS HOMAI,Odette,26/09/1981,Non +ZP,Polynésie française,01,1ère circonscription,3,14,M,BRYANT,Jacky,19/06/1957,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,BRUNEAU,Raissa,31/01/1976,Non +ZP,Polynésie française,01,1ère circonscription,4,17,M,THERON,Jean-Paul,26/01/1958,DIV,Profession libérale,Non,F,TAPATI,Gérida,21/02/1984,Non +ZP,Polynésie française,01,1ère circonscription,5,18,M,CADOUSTEAU,Willy,19/01/1959,REG,Ancien employé,Non,F,AH LO,Yamila Maramahiti,15/04/1982,Non +ZP,Polynésie française,01,1ère circonscription,6,7,F,BOUTEAU,Nicole,20/01/1969,ENS,Cadre de la fonction publique,Non,M,KAIHA,Joseph,07/12/1960,Non +ZP,Polynésie française,01,1ère circonscription,7,12,M,TOKORAGI,Félix,27/03/1984,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,TEARIKI,Nahiti,26/05/1991,Non +ZP,Polynésie française,01,1ère circonscription,8,13,M,NENA,Tauhiti,13/04/1968,REG,"Professeur, profession scientifique",Non,M,TEHAAMOANA,Etienne,21/04/1961,Non +ZP,Polynésie française,01,1ère circonscription,9,10,F,PIERCY,Laurence,08/12/1965,ECO,Profession libérale,Non,M,BEGLIOMINI,Bernard,26/06/1958,Non +ZP,Polynésie française,02,2ème circonscription,1,22,M,ZANNI,Eric,29/11/1962,DSV,Ancien cadre,Non,M,DENARIE,Jean-Louis,20/12/1963,Non +ZP,Polynésie française,02,2ème circonscription,2,21,M,TARIHAA,Jonathan,19/04/1983,DVD,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,TAHUHUATAMA,Juliette,17/05/1955,Non +ZP,Polynésie française,02,2ème circonscription,3,11,M,ATGER,Charles,09/12/1958,RN,Profession libérale,Non,F,WONG-PO,Miri,31/03/1966,Non +ZP,Polynésie française,02,2ème circonscription,4,16,F,SANQUER,Nicole,16/06/1972,DVD,"Professeur, profession scientifique",Oui,F,PARAU TOKORAGI,Heia,09/05/1971,Non +ZP,Polynésie française,02,2ème circonscription,5,5,M,CHAILLOUX,Steve,04/11/1985,REG,"Professeur, profession scientifique",Non,F,OPUU ÉPS ROBSON,Alexandra,03/02/1962,Non +ZP,Polynésie française,02,2ème circonscription,6,2,F,MANUTAHI LEVY-AGAMI,Sandra,18/12/1971,REG,Profession intermédiaire administrative de la fonction publique,Non,M,TAHIMANARII,Andre,24/09/1972,Non +ZP,Polynésie française,02,2ème circonscription,7,20,M,SALMON,Tati,16/08/1961,ECO,"Professeur des écoles, instituteur et assimilé",Non,F,URARII-PAMBRUN,Hinatea,07/06/1992,Non +ZP,Polynésie française,02,2ème circonscription,8,19,F,OTCENASEK,Paméla,03/06/1971,REG,"Professeur des écoles, instituteur et assimilé",Non,M,TAPUTU,Faana,04/09/1962,Non +ZP,Polynésie française,02,2ème circonscription,9,23,M,BONTOUR,Paul,25/05/1956,DXG,"Ancien artisan, commerçant, chef d'entreprise",Non,F,FARIUA,Amelia Taharoa,20/04/1966,Non +ZP,Polynésie française,02,2ème circonscription,10,26,F,TERIITAHI,Tepuaraurii,01/12/1977,ENS,Cadre de la fonction publique,Non,M,FLOHR,Henri,04/01/1952,Non +ZP,Polynésie française,03,3ème circonscription,1,9,M,BROTHERSON,Moetai,22/10/1969,REG,Ingénieur et cadre technique d'entreprise,Oui,F,REID ARBELOT,Mereana,12/09/1970,Non +ZP,Polynésie française,03,3ème circonscription,2,24,M,TAUTU,Gilles,28/11/1973,REG,"Profession de l'information, des arts et des spectacles",Non,M,HAAPA,Gontran,28/03/1961,Non +ZP,Polynésie française,03,3ème circonscription,3,29,M,TEFAN,John,11/11/1975,REG,Profession libérale,Non,F,ATIU,Vairea,17/01/1975,Non +ZP,Polynésie française,03,3ème circonscription,4,4,M,TERIITAHI,Bernard Heifara,20/03/1971,REG,Employé de commerce,Non,F,KASPAR,Ericka,29/06/1972,Non +ZP,Polynésie française,03,3ème circonscription,5,25,F,TEROOATEA,Sylviane,13/10/1966,DVD,Cadre de la fonction publique,Non,M,TEROROIRIA,Martial,29/06/1973,Non +ZP,Polynésie française,03,3ème circonscription,6,27,M,LAUREY,Nuihau,29/12/1964,DVD,Profession libérale,Non,F,TEMARII,Teha,24/12/1984,Non +ZP,Polynésie française,03,3ème circonscription,7,6,M,TUMAHAI,Tuterai,26/06/1969,ENS,Profession intermédiaire de la santé et du travail social,Non,F,AMARU,Patricia,28/01/1952,Non +ZP,Polynésie française,03,3ème circonscription,8,28,M,HAUATA,Jules,18/05/1969,ECO,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,TINORUA,Monia,22/10/1974,Non +ZS,Saint-Pierre-et-Miquelon,01,Saint-Pierre-et-Miquelon,1,5,F,MICHEL,Dominica,16/01/1966,DIV,Profession intermédiaire de la santé et du travail social,Non,M,DE LIZARAGA,Joshua,25/09/1995,Non +ZS,Saint-Pierre-et-Miquelon,01,Saint-Pierre-et-Miquelon,2,4,M,LEBAILLY,Patrick,08/05/1965,DVG,Employé civil et agent de service de la fonction publique,Non,M,BRIAND,Emmanuel,13/01/1978,Non +ZS,Saint-Pierre-et-Miquelon,01,Saint-Pierre-et-Miquelon,3,3,M,GASTON,Olivier,30/06/1981,DVG,Cadre administratif et commercial d'entreprise,Non,F,HELENE,Catherine,27/03/1970,Non +ZS,Saint-Pierre-et-Miquelon,01,Saint-Pierre-et-Miquelon,4,2,M,LENORMAND,Stéphane,13/08/1964,DVD,Ancien cadre,Non,F,SKINNER,Sandy,02/11/1988,Non +ZW,Wallis et Futuna,01,1ère circonscription,1,6,M,MULUKIHAAMEA,Etuato,05/08/1967,DVC,"Professeur des écoles, instituteur et assimilé",Non,F,NAU-GAVEAU,Olga Sesuina,11/06/1981,Non +ZW,Wallis et Futuna,01,1ère circonscription,2,4,M,TUKUMULI,Soane Tamaseno,01/04/1976,DVG,"Profession de l'information, des arts et des spectacles",Non,F,KELETOLONA,Reine-Marie,10/03/1997,Non +ZW,Wallis et Futuna,01,1ère circonscription,3,7,F,UGATAI,Sandrine Aimée,23/06/1976,DVC,Cadre administratif et commercial d'entreprise,Non,F,TAUVALE ÉPOUSE HANISI,Akata,27/03/1976,Non +ZW,Wallis et Futuna,01,1ère circonscription,4,5,M,MAILAGI,Soane Paulo,17/10/1978,DVC,Cadre de la fonction publique,Non,F,LIE ÉPOUSE FAKAILO,Malia,08/09/1983,Non +ZW,Wallis et Futuna,01,1ère circonscription,5,2,F,KULIKOVI,Malia Nive,07/06/1972,ECO,"Profession de l'information, des arts et des spectacles",Non,M,NAU,Siliako,12/03/1965,Non +ZW,Wallis et Futuna,01,1ère circonscription,6,8,F,TIALETAGI-VERGÉ,Lauriane,04/07/1980,DVC,Commerçant et assimilé,Non,F,FINEAU,Malia Ana,25/02/1988,Non +ZW,Wallis et Futuna,01,1ère circonscription,8,3,M,SEO,Mikaele,27/12/1971,DVC,Profession intermédiaire administrative de la fonction publique,Non,M,LELEIVAI,Petlo,05/04/1968,Non +ZX,Saint-Martin/Saint-Barthélemy,01,1ère circonscription,1,5,F,JAVOIS,Claire,06/09/1957,LR,Cadre administratif et commercial d'entreprise,Oui,F,JUDITH,Sylviane,20/12/1970,Non +ZX,Saint-Martin/Saint-Barthélemy,01,1ère circonscription,2,3,M,GIBBS,Daniel,08/01/1968,DVD,Profession libérale,Non,M,GREAUX,Thomas,27/08/1991,Non +ZX,Saint-Martin/Saint-Barthélemy,01,1ère circonscription,3,2,F,CAZE,Béatrice,22/08/1972,REC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,BERTIN,Charly,09/06/1989,Non +ZX,Saint-Martin/Saint-Barthélemy,01,1ère circonscription,4,7,M,PAINES STEPHEN,Victor,22/01/1963,REG,Chef d'entreprise de 10 salariés ou plus,Non,F,BROOKS,Claudine,18/11/1967,Non +ZX,Saint-Martin/Saint-Barthélemy,01,1ère circonscription,5,4,F,RIVERE BONZOM,Sabrina,08/05/1978,DIV,Cadre administratif et commercial d'entreprise,Non,F,ROSEY,Daniella,24/09/1966,Non +ZX,Saint-Martin/Saint-Barthélemy,01,1ère circonscription,6,6,M,GUMBS,Frantz,21/01/1954,DVC,Ancien cadre,Non,F,LAKE,Melissa,04/10/1978,Non +ZZ,Français établis hors de France,01,1ère circonscription,1,25,M,CARACO,Patrick,16/11/1949,LR,Profession libérale,Non,F,PICQUET,Séverine,10/09/1979,Non +ZZ,Français établis hors de France,01,1ère circonscription,2,74,F,AMAGLIO-TERISSE,Isabelle,10/05/1969,DVG,Cadre de la fonction publique,Non,F,DURIEZ GUY,Catherine,28/07/1950,Non +ZZ,Français établis hors de France,01,1ère circonscription,3,148,M,MICHON,Gérard,29/03/1956,DVD,Ingénieur et cadre technique d'entreprise,Non,F,DUCELLIER,Amandine,12/02/2003,Non +ZZ,Français établis hors de France,01,1ère circonscription,4,77,F,ADAM,Jennifer,18/07/1980,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,M,MASSON,Francis,21/05/1985,Non +ZZ,Français établis hors de France,01,1ère circonscription,5,117,M,RÉMINIAC,Yann,11/03/1976,REG,"Elève, étudiant",Non,F,JULIENNE,Magalie,27/06/1971,Non +ZZ,Français établis hors de France,01,1ère circonscription,6,152,M,ITIER,Emmanuel,17/04/1967,DVD,"Profession de l'information, des arts et des spectacles",Non,F,KATIC,Natacha,16/01/1981,Non +ZZ,Français établis hors de France,01,1ère circonscription,7,140,M,REGIS,James,25/07/1978,DSV,Ingénieur et cadre technique d'entreprise,Non,F,EUGENE,Marleen,02/09/2000,Non +ZZ,Français établis hors de France,01,1ère circonscription,8,46,F,ROGER,Florence,28/09/1989,NUP,Profession libérale,Non,M,LARAICHI,Oussama,13/01/1988,Non +ZZ,Français établis hors de France,01,1ère circonscription,9,17,M,LESCURE,Roland,26/11/1966,ENS,Cadre administratif et commercial d'entreprise,Oui,M,WEISSBERG,Christopher,26/11/1985,Non +ZZ,Français établis hors de France,01,1ère circonscription,10,139,M,OUELHADJ,Alain,04/03/1956,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,BERSON DIETSCH,Charles,22/05/1974,Non +ZZ,Français établis hors de France,01,1ère circonscription,11,76,M,BONDRILLE,Franck,18/09/1967,DVD,Chef d'entreprise de 10 salariés ou plus,Non,F,DELLAPINA,Cindy,12/02/1979,Non +ZZ,Français établis hors de France,01,1ère circonscription,12,107,F,PARAT-EDOM,Laisely,12/11/1968,RDG,Cadre de la fonction publique,Non,F,BORDELAIS,Jacinthe,12/04/1983,Non +ZZ,Français établis hors de France,02,2ème circonscription,1,116,M,RIBEIRO,Salvador,26/02/1980,DIV,Commerçant et assimilé,Non,F,RASOLONJATOVO,Iholiseheno,29/09/1973,Non +ZZ,Français établis hors de France,02,2ème circonscription,2,102,F,SAUSSAY,Vanessa,23/03/1988,DIV,Ingénieur et cadre technique d'entreprise,Non,M,ROIRANT,Julien,09/08/1976,Non +ZZ,Français établis hors de France,02,2ème circonscription,3,56,M,COLLARD,Jeoffrey,09/07/1991,DIV,Profession libérale,Non,F,ANNEQUIN,Mathilde,27/04/1992,Non +ZZ,Français établis hors de France,02,2ème circonscription,4,24,M,DUPONT,Bertrand,28/09/1970,LR,Profession libérale,Non,F,MARTIQUET,Frédérique,02/09/1974,Non +ZZ,Français établis hors de France,02,2ème circonscription,5,130,M,VANIER,Pierre,04/05/1992,DIV,Ingénieur et cadre technique d'entreprise,Non,M,GOUTTENOIRE,Thomas,08/05/1977,Non +ZZ,Français établis hors de France,02,2ème circonscription,6,108,F,MARIANNE PEPIN,Thérèse,04/02/1954,RDG,Ancien cadre,Non,F,CHOPARD,Francine,04/04/1957,Non +ZZ,Français établis hors de France,02,2ème circonscription,7,6,M,RODRIGUEZ,Christian,25/04/1963,NUP,Profession intermédiaire de la santé et du travail social,Non,F,POZNANSKI,Florence,23/01/1985,Non +ZZ,Français établis hors de France,02,2ème circonscription,8,105,F,CAROIT,Eléonore,08/07/1985,ENS,Profession libérale,Non,F,LARROUQUIS,Benoît,18/11/1969,Non +ZZ,Français établis hors de France,02,2ème circonscription,9,37,M,LAURENCE,Tim,08/10/1997,ECO,Cadre de la fonction publique,Non,F,REITH ILDARRAZ,Oriana,29/07/1994,Non +ZZ,Français établis hors de France,02,2ème circonscription,10,71,M,BIURRUN,Martin,28/10/1991,DVC,Profession libérale,Non,M,DU PARC,Yves,08/04/1984,Non +ZZ,Français établis hors de France,02,2ème circonscription,11,72,F,LEFEBVRE,Léa,23/01/1991,RN,"Contremaître, agent de maîtrise",Non,M,GILOIS,Louis,01/11/1950,Non +ZZ,Français établis hors de France,02,2ème circonscription,12,100,M,TRIGALLEAU,Michel,18/01/1959,DIV,"Professeur, profession scientifique",Non,F,TAUSSIG,Sylvie,31/10/1969,Non +ZZ,Français établis hors de France,02,2ème circonscription,13,99,F,PIAT-GUIBERT,Isabelle,25/10/1959,DVG,Cadre administratif et commercial d'entreprise,Non,M,ABRIAL,David,13/03/1984,Non +ZZ,Français établis hors de France,02,2ème circonscription,14,68,M,THORAILLER,Yves,28/03/1949,REC,Ancien cadre,Non,F,DE LESQUEN DU PLESSIS CASSO,Alexandra,05/07/1973,Non +ZZ,Français établis hors de France,03,3ème circonscription,1,149,F,LAMARRE,Assamahou,14/08/1961,DIV,Ingénieur et cadre technique d'entreprise,Non,F,KIFOULA,Vénus Félicia,06/06/2001,Non +ZZ,Français établis hors de France,03,3ème circonscription,2,113,F,HELAILI-CHAPUIS,Laurence,07/08/1985,DVC,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,HATTON,Nicolas,02/03/1970,Non +ZZ,Français établis hors de France,03,3ème circonscription,3,109,F,BAILLY,Coralie,23/05/2003,RDG,"Elève, étudiant",Non,M,PIOT,Vincent,10/08/1976,Non +ZZ,Français établis hors de France,03,3ème circonscription,4,4,M,HOLROYD,Alexandre,17/05/1987,ENS,Profession libérale,Oui,F,REVOY,Véronique,26/03/1966,Non +ZZ,Français établis hors de France,03,3ème circonscription,5,40,F,MINVIELLE,Charlotte,04/10/1985,NUP,Profession intermédiaire de la santé et du travail social,Non,M,LAVIS,Losang,13/07/1997,Non +ZZ,Français établis hors de France,03,3ème circonscription,6,66,F,DARRIEUS,Margaux,01/06/1999,REC,"Elève, étudiant",Non,M,PELAUD,Franc,24/01/1968,Non +ZZ,Français établis hors de France,03,3ème circonscription,7,118,F,CAZEIN,Aude,08/03/1990,DIV,Profession intermédiaire administrative et commerciale des entreprises,Non,M,POULETTY,Mathieu,23/10/1972,Non +ZZ,Français établis hors de France,03,3ème circonscription,8,26,M,GALIAY,Artus,03/03/1988,LR,Cadre administratif et commercial d'entreprise,Non,F,DIALLO,Khadiatou,12/05/1974,Non +ZZ,Français établis hors de France,03,3ème circonscription,9,5,M,LEPELTIER,Thomas,04/01/1967,ECO,Profession libérale,Non,F,ABELA,Pauline,28/04/1996,Non +ZZ,Français établis hors de France,03,3ème circonscription,10,67,M,BEGON,Willy,21/12/1986,RN,Cadre administratif et commercial d'entreprise,Non,F,PIRON,Chantal,21/04/1993,Non +ZZ,Français établis hors de France,03,3ème circonscription,11,45,F,ROMBONI,Valérie,05/12/1967,DVG,Commerçant et assimilé,Non,M,DUPLAND,Jean-François,06/09/1957,Non +ZZ,Français établis hors de France,04,4ème circonscription,1,61,F,CUIGNET,Emmanuelle,26/01/1953,RN,Cadre administratif et commercial d'entreprise,Non,M,BEAUFRERE,Franck,22/03/1967,Non +ZZ,Français établis hors de France,04,4ème circonscription,2,23,F,MACHICOTE,Genevieve,13/02/1970,LR,Profession libérale,Non,M,BOUBAL,François,24/05/1973,Non +ZZ,Français établis hors de France,04,4ème circonscription,3,53,M,THEVENOT,Valentin,23/09/1988,DIV,Profession libérale,Non,M,LE SELLIN,Quentin,11/06/1995,Non +ZZ,Français établis hors de France,04,4ème circonscription,4,133,F,CRONEL,Gaëlle,20/06/1986,DIV,Cadre de la fonction publique,Non,M,DOITÉ,Rodolphe,09/10/1992,Non +ZZ,Français établis hors de France,04,4ème circonscription,5,64,F,GONDARD,Cécilia,04/06/1980,NUP,Cadre administratif et commercial d'entreprise,Non,F,LIBEAUT,Catherine,26/09/1963,Non +ZZ,Français établis hors de France,04,4ème circonscription,6,62,M,DEVERCHERE,Cédric,31/10/1984,DIV,Ingénieur et cadre technique d'entreprise,Non,F,NGOMSIK,Audrey-Flore,19/05/1976,Non +ZZ,Français établis hors de France,04,4ème circonscription,7,63,F,COUTARD,Catherine,21/02/1961,DVG,Profession intermédiaire de la santé et du travail social,Non,M,VINCENT,Théophile,08/03/1997,Non +ZZ,Français établis hors de France,04,4ème circonscription,8,136,F,MABASI,Marie-Josée,08/09/1988,DVC,Employé administratif d'entreprise,Non,F,UHALDE,Teresita,27/11/1938,Non +ZZ,Français établis hors de France,04,4ème circonscription,9,97,F,GIRARD,Anne-Catherine,26/05/1974,REC,Artisan,Non,M,DE CREMIERS,Jacques-Antoine,24/07/1976,Non +ZZ,Français établis hors de France,04,4ème circonscription,10,34,M,ANGLADE,Pieyre-Alexandre,02/11/1986,ENS,Cadre de la fonction publique,Oui,F,COFFINEAU,Louise,26/07/1990,Non +ZZ,Français établis hors de France,05,5ème circonscription,1,19,F,BEHAR,Claire,15/06/1990,DIV,Ingénieur et cadre technique d'entreprise,Non,F,RINCON,Lara,21/12/1990,Non +ZZ,Français établis hors de France,05,5ème circonscription,2,22,M,GOATER,Laurent,20/03/1969,LR,Cadre administratif et commercial d'entreprise,Non,F,GASCON,Yusil,03/04/1971,Non +ZZ,Français établis hors de France,05,5ème circonscription,3,141,M,RIDELLE,Marc,11/05/1967,DSV,Profession libérale,Non,M,GEOLLE,Jean-Philippe,06/01/1966,Non +ZZ,Français établis hors de France,05,5ème circonscription,4,94,F,DE SOUSA TEIXEIRA,Maria Isabel,16/01/1947,DVG,Ancienne profession intermédiaire,Non,M,BLET,Philippe,20/01/1963,Non +ZZ,Français établis hors de France,05,5ème circonscription,5,85,M,FONTAINE,Robin,07/08/1996,DIV,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,F,GADEYNE,Zoé,27/03/2002,Non +ZZ,Français établis hors de France,05,5ème circonscription,6,48,M,VALLS,Manuel,13/08/1962,ENS,Profession libérale,Non,M,BURTIN,Thierry,10/07/1961,Non +ZZ,Français établis hors de France,05,5ème circonscription,7,65,M,BIES,Serge,15/05/1946,RN,Cadre administratif et commercial d'entreprise,Non,F,COMBETTES,Evangeline,24/11/1948,Non +ZZ,Français établis hors de France,05,5ème circonscription,8,106,F,ERASO,Garbiñe,02/02/1975,REG,Cadre administratif et commercial d'entreprise,Non,M,BALAGUER,Enric,25/05/1960,Non +ZZ,Français établis hors de France,05,5ème circonscription,9,41,M,LE BERRE,Renaud,27/09/1967,NUP,"Professeur, profession scientifique",Non,F,DANTAS,Isabelle,21/08/1976,Non +ZZ,Français établis hors de France,05,5ème circonscription,10,69,M,SANCHEZ PEREZ,José,01/08/1962,ECO,"Professeur, profession scientifique",Non,F,ROMAN GONZALEZ,Maria,27/12/1960,Non +ZZ,Français établis hors de France,05,5ème circonscription,11,39,M,CHAMOUX,Nicolas,11/01/1991,REC,Cadre administratif et commercial d'entreprise,Non,F,ILLARET,Jennifer,23/11/1982,Non +ZZ,Français établis hors de France,05,5ème circonscription,12,67,M,VOJETTA,Stéphane,19/07/1974,DVC,Cadre administratif et commercial d'entreprise,Oui,F,COGGIA,Nathalie,16/07/1977,Non +ZZ,Français établis hors de France,06,6ème circonscription,1,73,F,RUSAIL,Chantal,03/12/1946,RN,Employé de commerce,Non,M,RODIER,Louis,02/02/1968,Non +ZZ,Français établis hors de France,06,6ème circonscription,2,138,M,BERNARD,Olivier,11/04/1966,DIV,Profession libérale,Non,M,DE MELO,Paul-David,12/06/1983,Non +ZZ,Français établis hors de France,06,6ème circonscription,3,70,M,PRIAROLLO,Ernest,26/07/1968,DVD,Ingénieur et cadre technique d'entreprise,Non,F,PRIAROLLO,Chiara,03/09/1999,Non +ZZ,Français établis hors de France,06,6ème circonscription,4,127,F,SELLÈS LEFRANC,Michèle,02/05/1953,DVG,"Professeur, profession scientifique",Non,M,FRANÇOIS,Christophe,07/09/1966,Non +ZZ,Français établis hors de France,06,6ème circonscription,5,38,M,GROSSO,Guillaume,18/12/1974,DVG,Cadre administratif et commercial d'entreprise,Non,F,NAPOLI,Julia,03/08/1985,Non +ZZ,Français établis hors de France,06,6ème circonscription,6,10,F,MANGIN,Magali,23/05/1990,NUP,Ingénieur et cadre technique d'entreprise,Non,M,ROUSSEAU,Fabian,27/07/1990,Non +ZZ,Français établis hors de France,06,6ème circonscription,7,142,M,TISSOT,Philippe,04/01/1962,REC,Profession libérale,Non,F,AHLIN,Laetitia,16/06/1971,Non +ZZ,Français établis hors de France,06,6ème circonscription,8,7,F,MAZLOUM-MARTIN,Régine,25/10/1954,LR,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,PACHOVSKI,Alexis,08/09/1982,Non +ZZ,Français établis hors de France,06,6ème circonscription,9,125,F,CORBRAN,Roxane,20/09/1963,DVC,Profession libérale,Non,F,RAMAZZI,Frédérique,12/02/1977,Non +ZZ,Français établis hors de France,06,6ème circonscription,10,86,F,MENGUE,Danielle,16/04/1982,DVD,Ingénieur et cadre technique d'entreprise,Non,M,BAUFRETON,Fabian,18/07/1975,Non +ZZ,Français établis hors de France,06,6ème circonscription,11,3,M,DUMARTY,Jérôme,04/07/1973,DIV,Ingénieur et cadre technique d'entreprise,Non,F,CARILLO,Aurélia,06/04/1979,Non +ZZ,Français établis hors de France,06,6ème circonscription,12,101,M,CLAVEL,Jean-Philippe,22/09/1969,DIV,Profession libérale,Non,F,CLAVEL,Natacha,05/02/1998,Non +ZZ,Français établis hors de France,06,6ème circonscription,13,95,M,FERRACCI,Marc,19/12/1977,ENS,"Professeur, profession scientifique",Non,F,ROUSSELOT,Marie-Ange,09/09/1987,Non +ZZ,Français établis hors de France,06,6ème circonscription,14,55,M,SON-FORGET,Joachim,15/04/1983,DVD,Profession libérale,Oui,F,FOTI,Laura,03/01/1987,Non +ZZ,Français établis hors de France,06,6ème circonscription,15,131,M,DORTHE,Arnaud,24/04/1979,REG,Profession libérale,Non,M,BELLEGO,Antoine,18/02/2001,Non +ZZ,Français établis hors de France,07,7ème circonscription,1,132,M,DROUET,Félix,06/04/1988,DIV,Ingénieur et cadre technique d'entreprise,Non,M,GUILLARD,Alix,26/05/1972,Non +ZZ,Français établis hors de France,07,7ème circonscription,2,8,M,PETIT,Frédéric,10/02/1961,ENS,Ingénieur et cadre technique d'entreprise,Oui,F,STAUDENMAYER,Claire,12/08/1969,Non +ZZ,Français établis hors de France,07,7ème circonscription,3,79,F,DUMAS,Mathilde,12/04/1999,RN,Profession intermédiaire administrative et commerciale des entreprises,Non,F,MAUPETIT,Jeanne,20/11/2002,Non +ZZ,Français établis hors de France,07,7ème circonscription,4,126,M,DESWEL,Philippe,16/01/1988,LR,Cadre de la fonction publique,Non,F,MIER-GARRIGOU,Dominique,06/11/1949,Non +ZZ,Français établis hors de France,07,7ème circonscription,5,78,F,LOOBUYCK,Sophie,06/10/1972,REC,Chef d'entreprise de 10 salariés ou plus,Non,M,FOURNIER,Arnaud,09/03/1995,Non +ZZ,Français établis hors de France,07,7ème circonscription,6,120,F,CHARTRAIN,Valérie,25/02/1978,DIV,Ingénieur et cadre technique d'entreprise,Non,M,ROMARY,Laurent,04/04/1964,Non +ZZ,Français établis hors de France,07,7ème circonscription,7,42,F,CHEDIAC,Sophie,28/06/1982,DVG,"Professeur des écoles, instituteur et assimilé",Non,M,JADAS,Joël,11/09/1965,Non +ZZ,Français établis hors de France,07,7ème circonscription,8,49,M,SEGAL,Jérôme,25/12/1970,ECO,"Professeur, profession scientifique",Non,F,HUROT,Laura,17/12/1987,Non +ZZ,Français établis hors de France,07,7ème circonscription,9,145,M,GEITER,Bernard,09/02/1960,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,RUPP,Julia,15/01/1992,Non +ZZ,Français établis hors de France,07,7ème circonscription,10,119,M,PATTON,Guy,08/04/1966,REG,Cadre de la fonction publique,Non,M,LE LANN,Olivier,20/07/1970,Non +ZZ,Français établis hors de France,07,7ème circonscription,11,80,F,BOTEVA-MALO,Tatiana,10/06/1950,ECO,"Profession de l'information, des arts et des spectacles",Non,M,TANASIJEVIC-RABOLT,Stanislas,12/02/1991,Non +ZZ,Français établis hors de France,07,7ème circonscription,12,52,F,RHARMAOUI-CLAQUIN,Asma,15/02/1997,NUP,Profession intermédiaire administrative et commerciale des entreprises,Non,F,OLLIVIER,Mathilde,09/06/1994,Non +ZZ,Français établis hors de France,07,7ème circonscription,13,93,M,FONCK,Lucas,18/05/2000,DVD,"Elève, étudiant",Non,F,ENCARNACAO,Lucie,12/10/2000,Non +ZZ,Français établis hors de France,07,7ème circonscription,14,75,M,LA ROQUE,Alexandre,09/01/1986,DIV,Artisan,Non,F,SLOZINSKI,Oriane,06/01/1985,Non +ZZ,Français établis hors de France,07,7ème circonscription,15,115,M,DENEUVE,Thierry,06/11/1961,ECO,Profession libérale,Non,F,QUEROMAIN,Aurore,15/12/1999,Non +ZZ,Français établis hors de France,07,7ème circonscription,16,47,M,LE MOIGNE,Vassili,15/11/1966,DVD,Cadre administratif et commercial d'entreprise,Non,F,ZIMMERMANN-GANDRÉ,Caroline,08/03/1982,Non +ZZ,Français établis hors de France,08,8ème circonscription,1,121,F,HETZ,Léa Agathe,19/05/1999,DIV,"Elève, étudiant",Non,M,GIBERT,Thierry,09/07/1963,Non +ZZ,Français établis hors de France,08,8ème circonscription,2,143,M,SIKSIK,Serge,04/10/1957,REC,Cadre administratif et commercial d'entreprise,Non,M,HALFON,Elie,14/09/1974,Non +ZZ,Français établis hors de France,08,8ème circonscription,3,137,M,EZABADI,Milad Nathanaël,21/03/1983,DIV,Profession libérale,Non,F,BAROUCH-NOVELLI,Annie,21/12/1946,Non +ZZ,Français établis hors de France,08,8ème circonscription,4,84,F,COLLET,Florence,09/12/1958,DIV,Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité),Non,M,BEINERT,Henry,06/02/1954,Non +ZZ,Français établis hors de France,08,8ème circonscription,5,44,F,ABISROR - DE LIEME,Deborah,02/01/1986,ENS,Cadre de la fonction publique,Non,M,AREL,Antoine,30/04/1987,Non +ZZ,Français établis hors de France,08,8ème circonscription,6,83,M,PICOD,Florian,13/11/2002,DVG,"Elève, étudiant",Non,F,DEIBER,Lalie,26/06/2001,Non +ZZ,Français établis hors de France,08,8ème circonscription,7,82,F,LEHMANN,Hélène,02/11/1981,DIV,Profession intermédiaire de la santé et du travail social,Non,M,STEINFELD,Jean-Alain,08/05/1950,Non +ZZ,Français établis hors de France,08,8ème circonscription,8,110,M,HABIB,Meyer,28/04/1961,UDI,Chef d'entreprise de 10 salariés ou plus,Oui,M,BEZARDIN,Alexandre,30/12/1972,Non +ZZ,Français établis hors de France,08,8ème circonscription,9,111,F,SERBAT,Margaux,27/12/1998,RDG,"Elève, étudiant",Non,F,FLAHAUT-PREVOT,Noëlle,09/02/1975,Non +ZZ,Français établis hors de France,08,8ème circonscription,10,81,M,GARSON,José,05/05/1948,DVC,"Professeur, profession scientifique",Non,F,LOIZILLON,Clémentine,04/04/1990,Non +ZZ,Français établis hors de France,08,8ème circonscription,11,92,F,CARBONNE,Marie-Françoise,05/05/1945,RN,Ancien employé,Non,F,LETTERON,Rachel,02/11/1976,Non +ZZ,Français établis hors de France,08,8ème circonscription,12,50,F,TOUITOU,Rachel,01/12/1985,ECO,Cadre administratif et commercial d'entreprise,Non,F,TOUITOU,Dora,09/04/1956,Non +ZZ,Français établis hors de France,08,8ème circonscription,13,35,F,RIVOLET,Isabelle,20/01/1965,NUP,Ingénieur et cadre technique d'entreprise,Non,F,HUILLE,Séverine,08/07/1998,Non +ZZ,Français établis hors de France,09,9ème circonscription,1,13,M,OULKHOUIR,Mohamed,26/08/1977,DVD,Profession libérale,Non,F,CHAPMAN,Jacqueline,01/05/1949,Non +ZZ,Français établis hors de France,09,9ème circonscription,2,150,F,MORENO,Elisabeth,20/09/1970,ENS,Ancien cadre,Non,M,VILLAUME,Sophie,26/06/1968,Non +ZZ,Français établis hors de France,09,9ème circonscription,3,112,M,BEN CHEÏKH,Karim,19/03/1977,NUP,Cadre de la fonction publique,Non,F,DIENG,Maïmouna,09/12/1964,Non +ZZ,Français établis hors de France,09,9ème circonscription,4,104,F,BRUNI,Thiaba,06/02/1964,DVG,"Professeur, profession scientifique",Non,M,MASSY,Youssef,23/03/1954,Non +ZZ,Français établis hors de France,09,9ème circonscription,5,123,M,ZOUON,Camille,10/04/1977,DIV,Commerçant et assimilé,Non,F,SERGENT,Aline,27/08/1991,Non +ZZ,Français établis hors de France,09,9ème circonscription,6,146,F,SAGNA SOW,Fatou,10/02/1972,DVC,Profession libérale,Non,M,BOUILLIN,Emmanuel,01/11/1969,Non +ZZ,Français établis hors de France,09,9ème circonscription,7,114,M,EL GUERRAB,M'Jid,25/04/1983,DVC,Cadre de la fonction publique,Oui,F,JEMMALI,Aida,21/04/1977,Non +ZZ,Français établis hors de France,09,9ème circonscription,8,91,F,SORDET,Ludivine,02/10/1998,RN,Employé de commerce,Non,M,DANQUOINS,Julien,04/08/2001,Non +ZZ,Français établis hors de France,09,9ème circonscription,9,98,F,AMIOT,Nathalie,18/04/1966,REC,"Professeur, profession scientifique",Non,F,GILLET,Diane,31/07/1960,Non +ZZ,Français établis hors de France,09,9ème circonscription,10,128,M,EDDARRAZ,Ahmed,14/10/1985,DVC,Commerçant et assimilé,Non,M,HOURÈS,Daniel,11/10/1948,Non +ZZ,Français établis hors de France,09,9ème circonscription,11,16,M,FONTANIVE,Jean-Claude,20/03/1957,DIV,"Profession de l'information, des arts et des spectacles",Non,F,BENKACEM,Linda,08/06/1973,Non +ZZ,Français établis hors de France,09,9ème circonscription,12,2,M,AZOULAY,David,22/03/1946,DVC,Chef d'entreprise de 10 salariés ou plus,Non,M,CHIKAOUI,Mourad,18/08/1972,Non +ZZ,Français établis hors de France,09,9ème circonscription,13,124,M,BENDEDDOUCHE,Nacim,16/03/1972,DVG,Cadre de la fonction publique,Non,F,LANZI ESCALONA,Melina,28/10/1982,Non +ZZ,Français établis hors de France,09,9ème circonscription,14,87,M,BA,Oumar,14/03/1973,DVC,Commerçant et assimilé,Non,F,MANGIN,Isabelle,12/04/1984,Non +ZZ,Français établis hors de France,09,9ème circonscription,15,135,F,HERBAL,Samira,18/09/1968,DVC,Cadre de la fonction publique,Non,M,SASSI,Tarik,04/12/1987,Non +ZZ,Français établis hors de France,09,9ème circonscription,16,32,M,PERIMONY,Sébastien,04/01/1978,DVG,"Ancien artisan, commerçant, chef d'entreprise",Non,F,CLERC,Johanna,18/02/1986,Non +ZZ,Français établis hors de France,09,9ème circonscription,17,14,F,M'FADDEL,Naïma,02/08/1960,LR,Cadre de la fonction publique,Non,M,BADREDDINE,Jihad,09/02/1962,Non +ZZ,Français établis hors de France,09,9ème circonscription,18,27,F,KAAOUT,Rachida,24/03/1977,DVC,Profession libérale,Non,M,GUARNIERI,Bruno,11/09/1968,Non +ZZ,Français établis hors de France,09,9ème circonscription,19,147,M,BEN M'BAREK,Hassan,27/05/1965,DIV,Profession libérale,Non,M,KICHOU,Samir,08/05/1972,Non +ZZ,Français établis hors de France,09,9ème circonscription,20,96,F,MARCHES-OUZITANE,Emilie,20/08/1974,DVG,Cadre de la fonction publique,Non,M,HAFSI,Mehdi,03/12/1967,Non +ZZ,Français établis hors de France,09,9ème circonscription,21,33,M,MARTINEZ,Jean-Claude,30/07/1945,DXD,"Professeur, profession scientifique",Non,F,DANEN,Marie-Claire,20/12/1951,Non +ZZ,Français établis hors de France,09,9ème circonscription,22,12,M,REDDAD,Mehdi,02/10/1981,DVC,Chef d'entreprise de 10 salariés ou plus,Non,F,PASCAL,Catherine,29/03/1961,Non +ZZ,Français établis hors de France,10,10ème circonscription,1,29,F,PIRILLO,Aurélie,25/06/1989,LR,Cadre de la fonction publique,Non,M,LAMAH,Lucas,15/03/1975,Non +ZZ,Français établis hors de France,10,10ème circonscription,2,144,M,AZAR,Georges,20/03/1978,REC,Profession libérale,Non,M,FERTÉ,Grégoire,20/06/1967,Non +ZZ,Français établis hors de France,10,10ème circonscription,3,134,M,DOUDY,Justin,11/08/1966,DIV,Cadre de la fonction publique,Non,F,AMEGNINOU,Cécile,22/04/1967,Non +ZZ,Français établis hors de France,10,10ème circonscription,4,28,F,LAKRAFI,Amélia,20/03/1978,ENS,"Ancien artisan, commerçant, chef d'entreprise",Oui,M,MOUKARZEL,Joseph,18/08/1958,Non +ZZ,Français établis hors de France,10,10ème circonscription,5,18,F,MAARAOUI,Caline,19/05/1975,DIV,Chef d'entreprise de 10 salariés ou plus,Non,M,HAKKI,Mazen,17/05/1952,Non +ZZ,Français établis hors de France,10,10ème circonscription,6,15,M,TAIEB,Alain,20/02/1954,DVC,Chef d'entreprise de 10 salariés ou plus,Non,M,ORENGO DE LAMAZIERE,Fabrice,10/03/1966,Non +ZZ,Français établis hors de France,10,10ème circonscription,7,151,F,DARVISH,Elisabeth,21/07/1979,DVC,Profession libérale,Non,M,MANIANGA,Brice,03/02/1974,Non +ZZ,Français établis hors de France,10,10ème circonscription,8,122,F,DUGUÉ,Caroline,02/02/1988,DVG,Profession intermédiaire de la santé et du travail social,Non,M,FARAVEL,Frédéric,11/02/1974,Non +ZZ,Français établis hors de France,10,10ème circonscription,9,103,F,MOUSSA,Chantal,19/11/1988,NUP,"Professeur, profession scientifique",Non,M,JEUNEUX,Stéphane,24/04/1993,Non +ZZ,Français établis hors de France,10,10ème circonscription,10,30,M,LOOKY,Serilo,07/02/1974,DIV,Cadre administratif et commercial d'entreprise,Non,F,KALONJI,Laetitia,26/01/1984,Non +ZZ,Français établis hors de France,10,10ème circonscription,11,129,F,MALONGA DUCELLIER,Regina,15/09/1975,DIV,Employé administratif d'entreprise,Non,F,AKHTAR,Saba,19/08/1996,Non +ZZ,Français établis hors de France,10,10ème circonscription,12,90,F,RAUMAIN,Deborah,12/10/1979,RN,Employé administratif d'entreprise,Non,M,HUET,Henri,20/04/1951,Non +ZZ,Français établis hors de France,10,10ème circonscription,13,11,M,HOJEIJ,Ali Camille,31/08/1985,DVC,Profession libérale,Non,F,GORAYEB,Sandra,31/08/1972,Non +ZZ,Français établis hors de France,10,10ème circonscription,14,89,F,ZINZINDOHOUE,Viviane,28/08/1963,ECO,Profession intermédiaire administrative de la fonction publique,Non,M,TOURE,Inza,16/10/1952,Non +ZZ,Français établis hors de France,10,10ème circonscription,15,20,F,MOJON-CHEMINADE,Odile,12/07/1958,DVD,Employé administratif d'entreprise,Non,M,LAVERNHE,Christophe,26/01/1957,Non +ZZ,Français établis hors de France,10,10ème circonscription,16,88,F,ASKAR-WABERI,Ubah,19/02/1971,DSV,Technicien,Non,M,LORMEAU,Dominique,03/04/1966,Non +ZZ,Français établis hors de France,11,11ème circonscription,1,9,F,GENETET,Anne,20/04/1963,ENS,Profession libérale,Oui,M,MALLET,Guillaume,17/08/1985,Non +ZZ,Français établis hors de France,11,11ème circonscription,2,57,M,GENTIL,Pascal,15/05/1973,DVC,Profession intermédiaire administrative de la fonction publique,Non,M,SARRAZIN-BOESPFLUG,Thibaud,25/09/1965,Non +ZZ,Français établis hors de France,11,11ème circonscription,3,36,M,GUYON,Marc,21/03/1984,REC,Commerçant et assimilé,Non,F,LARQUEMIN,Anne-France,01/12/1964,Non +ZZ,Français établis hors de France,11,11ème circonscription,4,58,F,TAPAYEVA,Tamila,13/07/1993,DSV,Cadre administratif et commercial d'entreprise,Non,F,EVENO,Dominique,12/04/1952,Non +ZZ,Français établis hors de France,11,11ème circonscription,5,21,F,MARTIN,Catya,28/05/1969,LR,Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité),Non,M,FERRARI,Franck,03/01/1972,Non +ZZ,Français établis hors de France,11,11ème circonscription,6,54,F,VIDAL,Dominique,05/11/1948,NUP,"Profession de l'information, des arts et des spectacles",Non,M,PAJOT,Franck,30/09/1965,Non +ZZ,Français établis hors de France,11,11ème circonscription,7,59,M,BURLOTTE,Olivier,09/01/1964,RN,Profession libérale,Non,M,D'ORSANNE,Philippe,19/02/1970,Non +ZZ,Français établis hors de France,11,11ème circonscription,8,60,F,VIAL KAYSER,Christine,24/10/1955,ECO,Cadre de la fonction publique,Non,M,CHAZAL,Sylvain,02/06/1955,Non diff --git a/candidature-t1-leg-2022-nupes.csv b/candidature-t1-leg-2022-nupes.csv new file mode 100644 index 0000000..cb5f2cc --- /dev/null +++ b/candidature-t1-leg-2022-nupes.csv @@ -0,0 +1,6292 @@ +Code du département;Libellé du département;Code circonscription;Libellé circonscription;N° panneau;N° candidat;Sexe candidat;Nom candidat;Prénom candidat;Date naissance candidat;Nuance candidat;Profession candidat;Le candidat est sortant;Sexe remplaçant;Nom remplaçant;Prénom remplaçant;Date naiss. remplaçant;Le remplaçant est sortant +01;Ain;01;1ère circonscription;1;31;M;GUILLERMIN;Vincent;10/08/1976;ENS;Agriculteur sur petite exploitation;Non;F;DOUARD;Dominique;06/02/1953;Non +01;Ain;01;1ère circonscription;2;2;M;LAHY;Éric;24/02/1966;DXG;Professeur, profession scientifique;Non;F;LÉPAGNOT;Maude;01/08/1979;Non +01;Ain;01;1ère circonscription;3;18;M;BRETON;Xavier;25/11/1962;LR;Cadre de la fonction publique;Oui;M;FLOCHON;Jean-Yves;15/08/1958;Non +01;Ain;01;1ère circonscription;4;21;F;PIROUX GIANNOTTI;Brigitte;04/11/1959;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;VOYANT;Serge;09/04/1953;Non +01;Ain;01;1ère circonscription;5;16;M;MENDES;Michael;24/08/1988;DSV;Chauffeur;Non;F;DARPHEUILLE;Lydia;01/04/1986;Non +01;Ain;01;1ère circonscription;6;22;M;BELLON;Julien;11/06/1978;REC;Cadre administratif et commercial d'entreprise;Non;F;JEAN-LOUIS;Fabienne;13/07/1954;Non +01;Ain;01;1ère circonscription;7;32;F;ARMENJON;Eliane;28/01/1930;ECO;Ancien employé;Non;M;JOURNET;Gauthier;05/12/1964;Non +01;Ain;01;1ère circonscription;8;20;M;GUÉRAUD;Sébastien;09/09/1973;NUPES;Professeur, profession scientifique;Non;F;WIEL;Monique;22/05/1960;Non +01;Ain;02;2ème circonscription;1;23;F;LAPRAY;Lumir;04/07/1992;NUPES;Professeur, profession scientifique;Non;M;CHARRONDIÈRE;Patrick;21/06/1962;Non +01;Ain;02;2ème circonscription;2;9;M;DAUBIÉ;Romain;05/05/1980;ENS;Profession libérale;Non;F;ANDRE-BRIGARD;Claire;28/10/1963;Non +01;Ain;02;2ème circonscription;3;8;M;GOUTAGNY;Vincent;17/03/1965;DXG;Ouvrier qualifié de type industriel;Non;F;GIRY;Annick;26/06/1957;Non +01;Ain;02;2ème circonscription;4;12;M;BARATAY;Denis;02/10/1950;DVD;Ancien cadre;Non;F;IPPOLITI;Sandrine;14/05/1979;Non +01;Ain;02;2ème circonscription;5;4;M;NANCHI;Alexandre;01/11/1975;LR;Cadre de la fonction publique;Non;M;PECHOUX;Marc;31/07/1957;Non +01;Ain;02;2ème circonscription;6;13;M;COSTA;Alexandre;03/05/1977;REC;Policier et militaire;Non;F;GOBET;Sophie;03/06/1972;Non +01;Ain;02;2ème circonscription;7;49;M;MARTET;Colin;30/12/1989;DIV;Professeur, profession scientifique;Non;F;ROBIN;Swanny;08/07/1992;Non +01;Ain;02;2ème circonscription;8;26;M;IGLÉSIS;Thomas;17/03/1972;ECO;Employé civil et agent de service de la fonction publique;Non;F;DUPLOT;Fanny Anaïs;03/11/1987;Non +01;Ain;02;2ème circonscription;9;24;M;EYRAUD;Olivier;08/03/1955;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;SANCHEZ;Juan;06/07/2002;Non +01;Ain;02;2ème circonscription;10;25;F;CARRIER;Delphine;02/02/1981;DSV;Employé de commerce;Non;M;MOREL;Joël;15/01/1978;Non +01;Ain;03;3ème circonscription;1;7;F;DUBARRY;Karine;07/02/1975;REC;Cadre administratif et commercial d'entreprise;Non;M;LIEBART;Thibaut;19/12/1998;Non +01;Ain;03;3ème circonscription;2;17;M;VERGNAS;Thierry;09/07/1964;DSV;Cadre administratif et commercial d'entreprise;Non;F;METKO;Aksana;08/07/1972;Non +01;Ain;03;3ème circonscription;3;42;F;GIVERNET;Olga;17/10/1981;ENS;Ingénieur et cadre technique d'entreprise;Oui;M;PATERMO;Roger;17/06/1957;Non +01;Ain;03;3ème circonscription;4;48;M;FERTE;Maxence;20/03/1988;DIV;Employé civil et agent de service de la fonction publique;Non;F;MICOUD;Iselande;04/12/1981;Non +01;Ain;03;3ème circonscription;5;29;M;FRANCK;Frédéric;16/08/1960;RN;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;VEIL;Martine;24/07/1966;Non +01;Ain;03;3ème circonscription;6;37;M;JOLIE;Christian;24/06/1972;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;CARLE-FAYE;Céline;16/02/1982;Non +01;Ain;03;3ème circonscription;7;5;F;BAUDE;Véronique;10/11/1968;LR;Cadre de la fonction publique;Non;M;HÉDON;Jean-Yves;22/12/1962;Non +01;Ain;03;3ème circonscription;8;40;M;KASTLER;Jean-Loup;12/02/1982;ECO;Professeur, profession scientifique;Non;F;MANNI;Myriam;20/03/1969;Non +01;Ain;03;3ème circonscription;9;41;M;KOUASSI;Fulgence;17/08/1980;DIV;Employé de commerce;Non;F;BOUHYADI;Hanane;02/12/1980;Non +01;Ain;03;3ème circonscription;10;6;F;MAISONNETTE;Cécile;09/10/1977;DXG;Professeur, profession scientifique;Non;M;MEYER;Sam;31/08/1985;Non +01;Ain;03;3ème circonscription;11;44;F;MORVAN LEMBERT;Marine;16/03/1962;ECO;Profession libérale;Non;F;MARTIN;Chrystel;01/04/1969;Non +01;Ain;03;3ème circonscription;12;43;M;BISETTI;Frank;27/07/1976;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;SAÏD;Sarra;31/07/1987;Non +01;Ain;04;4ème circonscription;1;51;M;REIHANIAN;Aurane;13/01/1993;LR;Cadre de la fonction publique;Non;M;LARRIEU;Pierre;10/12/1960;Non +01;Ain;04;4ème circonscription;2;46;M;DEFRASNE;Alban;09/02/1989;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PIERRON;Romain;31/05/1985;Non +01;Ain;04;4ème circonscription;3;38;M;FAVRE;Nicolas;06/01/1990;ECO;Artisan;Non;M;FELIZ;Carlos;12/08/1972;Non +01;Ain;04;4ème circonscription;4;34;M;BUISSON;Jérôme;15/01/1973;RN;Professeur, profession scientifique;Non;M;MAITRE;Christophe;22/04/1969;Non +01;Ain;04;4ème circonscription;5;10;M;COUSSON;Sylvain;19/07/1954;DXG;Ancienne profession intermédiaire;Non;F;BERAUD;Roberte;27/11/1952;Non +01;Ain;04;4ème circonscription;6;50;M;BENMEDJAHED;Ali;13/12/1960;RDG;Professeur, profession scientifique;Non;F;DÉBIAS;Sonia;16/09/1971;Non +01;Ain;04;4ème circonscription;7;36;M;LERDA;Philippe;12/02/1958;NUPES;Cadre de la fonction publique;Non;F;CHEVAT AGNÈS;Marie-Pierre;02/09/1963;Non +01;Ain;04;4ème circonscription;8;30;M;DE BOYSSON;Benoît;26/08/1981;REC;Profession libérale;Non;F;DURAND;Angélique;26/02/1977;Non +01;Ain;04;4ème circonscription;9;55;M;FORCA;Sacha;31/08/1976;DVD;Contremaître, agent de maîtrise;Non;F;MANDRAS;Marie-Françoise;28/04/1957;Non +01;Ain;04;4ème circonscription;10;52;F;SEGUIN;Isabelle;16/05/1962;ENS;Chef d'entreprise de 10 salariés ou plus;Non;M;BERGER;Anthony;29/11/1984;Non +01;Ain;04;4ème circonscription;11;19;F;VEILLEROT;Annick;27/11/1957;DSV;Employé de commerce;Non;M;ROGNARD;Gérard;01/03/1954;Non +01;Ain;04;4ème circonscription;12;14;M;TROMPILLE;Stéphane;01/12/1982;DVC;Profession intermédiaire administrative et commerciale des entreprises;Oui;F;ZANCANARO-EMERIC;Isabelle;04/06/1958;Non +01;Ain;05;5ème circonscription;1;47;M;TOURNIER-BILLON;Philippe;13/06/1959;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;VAN DEN BRULE;Bernard;28/11/1949;Non +01;Ain;05;5ème circonscription;2;28;M;FABRIS;Grégory;13/09/1978;DSV;Profession de l'information, des arts et des spectacles;Non;M;DELAROUZEE;Philippe;06/04/1961;Non +01;Ain;05;5ème circonscription;3;27;M;YILMAZ;Celil;30/10/1975;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;ORAN;Mahmut;09/06/1980;Non +01;Ain;05;5ème circonscription;4;53;M;ABAD;Damien;05/04/1980;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;LIÉBUS;Patrick;06/05/1955;Non +01;Ain;05;5ème circonscription;5;35;F;PISANI;Florence;02/07/1972;NUPES;Cadre de la fonction publique;Non;M;BAUDET;Pascal;04/03/1971;Non +01;Ain;05;5ème circonscription;6;39;F;PARIS;Stéphanie;15/08/1975;DVD;Professeur des écoles, instituteur et assimilé;Non;M;JUILLET;Claude;13/10/1952;Non +01;Ain;05;5ème circonscription;7;33;F;NAMBOTIN;Joëlle;14/02/1947;RN;Ancien employé;Non;M;BALLEYDIER;Aurélien;12/12/1994;Non +01;Ain;05;5ème circonscription;8;11;F;CROZET;Sylvie;03/06/1962;DXG;Profession intermédiaire de la santé et du travail social;Non;M;BOUVET;Didier;26/05/1963;Non +01;Ain;05;5ème circonscription;9;15;M;BOULMÉ;Jean-Michel;05/02/1947;DVG;Ancien cadre;Non;F;VINCENT;Michèle;02/05/1953;Non +01;Ain;05;5ème circonscription;10;54;M;MARTINEZ;Julien;09/10/1988;LR;Employé administratif d'entreprise;Non;F;ANTUNES;Alexandra;25/05/1980;Non +02;Aisne;01;1ère circonscription;1;16;F;BONO-VANDORME;Aude;03/08/1962;ENS;Ancien cadre;Oui;M;BOCHET;Eric;10/04/1958;Non +02;Aisne;01;1ère circonscription;2;22;M;CAUCHY;Benjamin;20/12/1979;REC;Cadre administratif et commercial d'entreprise;Non;M;WIART;Benoît;12/06/1965;Non +02;Aisne;01;1ère circonscription;3;12;M;PERNELLE;Jean-Loup;05/03/1953;DXG;Ancien employé;Non;F;LEDOUX;Claire;16/12/1957;Non +02;Aisne;01;1ère circonscription;4;19;M;FENIOUX;Olivier;31/01/1972;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;CAMISULI;Lucile;24/02/1962;Non +02;Aisne;01;1ère circonscription;5;4;F;RIBEIRO;Carole;13/08/1967;DVD;Technicien;Non;M;JOLY;Frédéric;15/09/1962;Non +02;Aisne;01;1ère circonscription;6;26;M;DEGOUY;Michel;20/10/1953;DSV;Ancien cadre;Non;M;TRICOTEAUX;Rudy;08/07/1982;Non +02;Aisne;01;1ère circonscription;7;5;M;DRAGON;Nicolas;19/04/1977;RN;Profession libérale;Non;F;FLAMANT;Sarah;18/05/1967;Non +02;Aisne;01;1ère circonscription;8;6;M;MOUGENOT;Paul;13/10/1988;LR;Agriculteur sur moyenne exploitation;Non;F;DUHANT;Nathalie;15/05/1966;Non +02;Aisne;02;2ème circonscription;1;32;M;RANSQUIN;Sulyvan;11/11/1994;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;LEMPEREUR;Sarah;25/03/1987;Non +02;Aisne;02;2ème circonscription;2;2;M;DIVE;Julien;21/05/1985;LR;Ancien cadre;Oui;F;MAITRE;Marie-Laurence;09/06/1958;Non +02;Aisne;02;2ème circonscription;3;14;F;ZANDITÉNAS;Anne;22/08/1965;DXG;Professeur, profession scientifique;Non;M;VANKERKORE;Fabrice;23/03/1963;Non +02;Aisne;02;2ème circonscription;4;9;F;PUISSANT;Lola;12/10/1990;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;ANETTE;Sébastien;20/12/1984;Non +02;Aisne;02;2ème circonscription;5;20;F;EL OUASDI;Fatima;28/04/1994;ENS;Ingénieur et cadre technique d'entreprise;Non;M;WILLEMAIN;Alexis;26/03/2003;Non +02;Aisne;02;2ème circonscription;6;24;M;LEPEUPLE;Eric;05/11/1971;DIV;Commerçant et assimilé;Non;F;MAZOUR;Vanessa;15/03/1980;Non +02;Aisne;02;2ème circonscription;7;33;F;BÉCOURT;Corinne;10/02/1963;DVG;Employé civil et agent de service de la fonction publique;Non;M;JAN;Aurélien;02/08/1980;Non +02;Aisne;02;2ème circonscription;8;30;F;AMEWOUI;Cécé;22/11/1984;REC;Employé administratif d'entreprise;Non;M;DUMAND;Romain;26/02/1987;Non +02;Aisne;03;3ème circonscription;1;10;F;VOISIN;Laetitia;03/05/1972;DXG;Professeur, profession scientifique;Non;F;MARQUET;Céline;24/09/1978;Non +02;Aisne;03;3ème circonscription;2;37;M;BERNARDEAU;Hervé;31/05/1955;REC;Profession libérale;Non;F;GUILLIOT;Lucie;28/11/1993;Non +02;Aisne;03;3ème circonscription;3;17;M;HANSEN-CATTA;Paul-Henry;25/07/1956;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;OLIVIER;Nicolas;17/12/1991;Non +02;Aisne;03;3ème circonscription;4;38;M;MOINEUSE;Jérome;06/02/1983;LR;Employé civil et agent de service de la fonction publique;Non;M;PETIAU;Eric;01/10/1963;Non +02;Aisne;03;3ème circonscription;5;25;F;CHOTIN;Agnès;05/10/1959;DSV;Ancien cadre;Non;M;BALCON;Sébastien;13/02/1972;Non +02;Aisne;03;3ème circonscription;6;11;M;BRICOUT;Jean-Louis;27/12/1957;NUPES;Ancien cadre;Oui;M;WÉRY;Johann;16/08/1978;Non +02;Aisne;04;4ème circonscription;1;28;M;BEAURAIN;José;27/07/1971;RN;Artisan;Non;M;DEMARCQ;Florian;13/03/1989;Non +02;Aisne;04;4ème circonscription;2;13;M;GALL;Aurélien;30/06/1982;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;LEGRAND;Estelle;02/10/1968;Non +02;Aisne;04;4ème circonscription;3;34;M;BOBIN;David;24/08/1984;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;ARNOULD-DUJARDIN;Catherine;23/08/1965;Non +02;Aisne;04;4ème circonscription;4;39;F;VICENTE;Vanessa;29/03/1975;REC;Professeur des écoles, instituteur et assimilé;Non;F;DUFLOT;Elisabeth;02/01/1958;Non +02;Aisne;04;4ème circonscription;5;15;F;BOUILLAGUET;Flora;14/05/1990;DXG;Professeur, profession scientifique;Non;F;ALLOT;Catherine;18/04/1960;Non +02;Aisne;04;4ème circonscription;6;3;M;DELATTE;Marc;24/05/1961;ENS;Profession libérale;Oui;F;BASSET;Marion;19/05/1988;Non +02;Aisne;04;4ème circonscription;7;21;M;CRÉON;Damien;10/05/1983;DSV;Ouvrier non qualifié de type industriel;Non;M;FOLLET;Alexandre;16/03/2001;Non +02;Aisne;05;5ème circonscription;1;8;M;GARCIA;Francis;23/05/1948;DXG;Employé civil et agent de service de la fonction publique;Non;M;LEAR;Richard;12/03/1952;Non +02;Aisne;05;5ème circonscription;2;23;M;EUGÈNE;Sébastien;18/10/1985;DVC;Cadre administratif et commercial d'entreprise;Non;F;OMETYNCK;Sabine;20/11/1968;Non +02;Aisne;05;5ème circonscription;3;31;F;ROUSSEL;Jeanne;17/06/1974;ENS;Cadre de la fonction publique;Non;M;HAŸ;Etienne;19/09/1966;Non +02;Aisne;05;5ème circonscription;4;7;M;DESSIGNY;Jocelyn;29/06/1981;RN;Cadre administratif et commercial d'entreprise;Non;F;GAILLARD;Géraldine;09/12/1964;Non +02;Aisne;05;5ème circonscription;5;18;F;TRIBOULET;Florence;01/04/1970;REC;Cadre de la fonction publique;Non;M;DOCTRINAL;Jeoffrey;27/02/1999;Non +02;Aisne;05;5ème circonscription;6;35;F;VACCA;Françoise;06/04/1963;ECO;Cadre de la fonction publique;Non;M;ALKAN;Gilbert;26/03/1943;Non +02;Aisne;05;5ème circonscription;7;27;M;FRERE;Stéphane;30/08/1974;NUPES;Professeur, profession scientifique;Non;F;FENARDJI;Odile;31/10/1955;Non +02;Aisne;05;5ème circonscription;8;29;M;BOLLÉE;Joffrey;18/10/1989;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;MENUET;Hugo;29/09/1998;Non +02;Aisne;05;5ème circonscription;9;36;F;GILQUIN;Jade;03/05/1993;LR;Professeur, profession scientifique;Non;M;LALLAU;Olivier;02/06/1969;Non +03;Allier;01;1ère circonscription;1;22;F;SENNEPIN;Marion;29/02/1992;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;RAHON;Benedicte;17/10/1977;Non +03;Allier;01;1ère circonscription;2;31;F;CIBERT;Marie;09/03/1954;RN;Employé administratif d'entreprise;Non;M;KEHRLI;Michel;18/01/1950;Non +03;Allier;01;1ère circonscription;3;15;M;BARBARIN;Michel;16/12/1952;ENS;Ingénieur et cadre technique d'entreprise;Non;M;LARZAT;Stéphane;25/03/1974;Non +03;Allier;01;1ère circonscription;4;16;M;MALLOT;Jean;20/08/1952;DVG;Ancien cadre;Non;F;RENAUD;Jackie;09/03/1975;Non +03;Allier;01;1ère circonscription;5;3;M;COLLOT;Jean-Marc;23/12/1964;DXG;Chauffeur;Non;F;DAVID;Christiane;19/08/1961;Non +03;Allier;01;1ère circonscription;6;10;M;DE NICOLAY;Pierre;11/01/1989;REC;Cadre administratif et commercial d'entreprise;Non;M;ROSATI;Jean-Antoine;30/09/1955;Non +03;Allier;01;1ère circonscription;7;33;M;MALAVAUD;Fabien;26/04/1994;DVD;Agriculteur sur petite exploitation;Non;F;DU REAU;Sophie;23/04/1965;Non +03;Allier;01;1ère circonscription;8;28;M;LITAUDON;Roger;15/06/1953;LR;Ancien cadre;Non;M;CARPENTIER;Julien;17/02/1979;Non +03;Allier;01;1ère circonscription;9;21;M;MONNET;Yannick;07/10/1975;NUPES;Cadre de la fonction publique;Non;M;DUFREGNE;Jean-Paul;28/03/1958;Oui +03;Allier;02;2ème circonscription;1;17;M;TRIKI;Samir;05/05/1954;DVC;Cadre de la fonction publique;Non;M;PERCHE;Philippe;19/11/1987;Non +03;Allier;02;2ème circonscription;2;13;M;KEGELART;Jean-Jacques;26/05/1958;LR;Cadre de la fonction publique;Non;F;BENOIT-GOLA;Anne-Cécile;24/07/1973;Non +03;Allier;02;2ème circonscription;3;27;M;AFFRAIX;Christophe;02/08/1983;DSV;Contremaître, agent de maîtrise;Non;M;LEROUX;Sylvain;25/06/1978;Non +03;Allier;02;2ème circonscription;4;9;F;DE NICOLAY;Axelle;26/03/1988;REC;Cadre administratif et commercial d'entreprise;Non;M;MARCONNET;Charles;09/07/1995;Non +03;Allier;02;2ème circonscription;5;26;M;GUILLAUMIN;Jean-Marie;14/10/1977;ECO;Chauffeur;Non;F;SAILA;Fernande;23/05/1944;Non +03;Allier;02;2ème circonscription;6;12;M;LEBEL;Bernard;05/02/1952;DXG;Ancien cadre;Non;M;REUL;Jean-François;14/09/1954;Non +03;Allier;02;2ème circonscription;7;6;M;CHATEL;Philippe;09/04/1968;REG;Cadre administratif et commercial d'entreprise;Non;M;MARQUET;Eric;13/06/1973;Non +03;Allier;02;2ème circonscription;8;8;F;LÉGUILLON;Marie-Claude;21/05/1957;RDG;Ancien cadre;Non;M;GUÉRUT;Jean-François;13/02/1961;Non +03;Allier;02;2ème circonscription;9;30;M;BOVET;Jorys;30/03/1993;RN;Chauffeur;Non;F;GALANGO;Amanthe;21/11/1956;Non +03;Allier;02;2ème circonscription;10;18;M;THOMAS;Luc;26/05/1986;REG;Employé civil et agent de service de la fonction publique;Non;M;PEYRONNET;Guillaume;31/10/1982;Non +03;Allier;02;2ème circonscription;11;7;F;VANCEUNEBROCK;Laurence;06/05/1970;ENS;Policier et militaire;Oui;M;PAULHAC;Thierry;15/05/1957;Non +03;Allier;02;2ème circonscription;12;32;M;POZZOLI;Bernard;08/01/1954;DVG;Ancien cadre;Non;F;WERTH;Juliette;25/01/1962;Non +03;Allier;02;2ème circonscription;13;5;F;HERITIER;Louise;25/02/1997;NUPES;Profession de l'information, des arts et des spectacles;Non;M;BEAUNE;Michel;06/11/1953;Non +03;Allier;03;3ème circonscription;1;4;M;RAMEAU;Jean-Francois;20/12/1951;DXG;Professeur, profession scientifique;Non;F;BOTTERO;Joelle;20/08/1958;Non +03;Allier;03;3ème circonscription;2;24;M;DUCHÉ;Paul;25/09/1995;ECO;Cadre administratif et commercial d'entreprise;Non;F;DUCHÉ;Nathalie;21/05/1965;Non +03;Allier;03;3ème circonscription;3;25;M;RAY;Nicolas;14/05/1981;LR;Cadre de la fonction publique;Non;F;LASSALLE;Valerie;05/12/1972;Non +03;Allier;03;3ème circonscription;4;14;M;PENDELIAU;Yves-Marie;27/04/1953;DIV;Ancien cadre;Non;M;SERNEELS;Patrick;19/05/1963;Non +03;Allier;03;3ème circonscription;5;19;F;RÉCHARD;Isabelle;10/10/1969;RDG;Profession libérale;Non;M;GEVAERT;Steeve;30/12/1986;Non +03;Allier;03;3ème circonscription;6;20;F;PEYROL;Bénédicte;23/03/1991;ENS;Cadre administratif et commercial d'entreprise;Oui;M;BAUDELOT;Pascal;19/07/1963;Non +03;Allier;03;3ème circonscription;7;11;F;DENFERD;Elsa;22/06/1993;NUPES;Cadre de la fonction publique;Non;M;DAUVERGNE;Remy;14/10/1986;Non +03;Allier;03;3ème circonscription;8;29;M;JULIEN;Quentin;01/08/1993;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;GARÇON;Julien;12/12/1995;Non +03;Allier;03;3ème circonscription;9;2;F;LACOUR;Sophie;06/09/1966;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LACOUR;Christian;04/06/1952;Non +03;Allier;03;3ème circonscription;10;23;F;CORBIN;Lydie;08/05/1963;DSV;Profession intermédiaire de la santé et du travail social;Non;M;PONCET;Eric;16/11/1961;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;1;6;F;MIFFRED;Laurine;08/01/1999;REC;Elève, étudiant;Non;M;NAQUET;Paul;13/01/1990;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;2;23;F;LYONS;Sylvie;24/03/1975;SOC;Cadre de la fonction publique;Non;M;FATIO;Léon;16/06/1953;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;3;20;F;BLANC;Dominique;03/06/1962;DVD;Cadre de la fonction publique;Non;M;PELESTOR;Fabrice;18/12/1961;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;4;13;F;VAN HEESBEKE;Nicole;27/04/1954;ECO;Employé de commerce;Non;M;ORVOEN;Marc;25/11/1952;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;5;7;F;ROS;Annabel;18/06/1979;DXG;Employé de commerce;Non;M;ALMOSNINO;David;02/03/1979;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;6;15;M;POTIE;Bruno;28/10/1960;DIV;Agriculteur sur petite exploitation;Non;M;CHASSAING;Pascal-Henry;05/09/1960;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;7;11;M;AUDAN;Paul;16/03/1953;ENS;Ancien employé;Non;F;MARTIN;Emmanuelle;08/10/1971;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;8;16;M;RECOTILLET;Pascal;16/05/1963;REG;Professeur des écoles, instituteur et assimilé;Non;F;DAST;Karine;03/12/1969;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;9;26;F;ROLLAND;Patricia;15/04/1969;ECO;Agriculteur sur moyenne exploitation;Non;M;STEPHAN;Frédéric;17/11/1962;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;10;14;F;BAGARRY;Delphine;09/01/1970;NUPES;Profession libérale;Oui;F;TOUSSAINT;Carole;15/01/1976;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;11;19;M;GIRARD;Christian;07/05/1952;RN;Ancien cadre;Non;M;BENESSY;Yves;12/03/1954;Non +04;Alpes-de-Haute-Provence;01;1ère circonscription;12;24;M;GIACOMINO;Romaric;13/09/1984;DSV;Professeur, profession scientifique;Non;F;CLUZEL;Mariane;06/01/1972;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;1;10;M;GUERRERA;Hervé;15/09/1957;REG;Cadre administratif et commercial d'entreprise;Non;F;OTTAVIANI;Martine;10/05/1963;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;2;17;F;FERREIRA;Marie;20/07/2001;UDI;Elève, étudiant;Non;M;LAUGIER;Robert;13/10/1954;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;3;12;F;RAZEAU;Clémence;08/05/1976;ECO;Commerçant et assimilé;Non;F;HIDALGO Y TERAN ZORRILLA;Ana;22/03/1973;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;4;25;F;CADENEL;Myriam;06/01/1965;REC;Profession libérale;Non;M;HOUBARD;Philippe;30/06/1950;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;5;22;F;HUE-COURTIN;Nathalie;10/03/1966;ECO;Employé de commerce;Non;F;RENELIER;Bénédicte;18/09/1968;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;6;2;M;KECHRA;Frédéric;17/03/1971;DXG;Professeur, profession scientifique;Non;M;IMBERT;Olivier;25/06/1954;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;7;4;F;DAUX;Danièle;28/01/1944;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;BOIJOLS;Jacques;20/06/1950;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;8;21;F;ABEILLE;Aurélie;09/06/1989;RN;Personnel des services directs aux particuliers;Non;M;REYNIER;Ludovic;16/12/1983;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;9;5;M;VICENTE;Laurent;18/05/1972;DXG;Ouvrier qualifié de type artisanal;Non;F;SAULNIER;Mélanie;14/12/1982;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;10;8;M;SOLER;Jean-Luc;22/07/1959;DXG;Ingénieur et cadre technique d'entreprise;Non;F;PECOUL;Henriette;20/08/1961;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;11;3;M;CASTANER;Christophe;03/01/1966;ENS;Cadre de la fonction publique;Oui;F;JACQUES;Elisabeth;21/02/1982;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;12;18;M;WALTER;Léo;14/04/1972;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;ALLAMEL;Alice;23/08/1993;Non +04;Alpes-de-Haute-Provence;02;2ème circonscription;13;9;M;BEGNIS;Thierry;17/03/1955;ECO;Technicien;Non;F;BARRAL;Nadine;31/07/1962;Non +05;Hautes-Alpes;01;1ère circonscription;1;13;F;GAMERRE;Christine;21/03/1963;ECO;Cadre de la fonction publique;Non;M;CINQUEGRANA;Jean-Claude;03/06/1943;Non +05;Hautes-Alpes;01;1ère circonscription;2;10;M;PHILIPPO;Michel;23/12/1972;NUPES;Professeur, profession scientifique;Non;F;BRIANÇON;Marianna;19/09/1995;Non +05;Hautes-Alpes;01;1ère circonscription;3;18;F;BOYER;Pascale;28/09/1965;ENS;Contremaître, agent de maîtrise;Oui;M;RICHIER;Nicolas;03/09/1984;Non +05;Hautes-Alpes;01;1ère circonscription;4;3;F;PRATALI;Fabienne;28/01/1972;ECO;Profession de l'information, des arts et des spectacles;Non;F;PRATALI;Marie Claude;03/03/1941;Non +05;Hautes-Alpes;01;1ère circonscription;5;14;F;HERBAUT;Camille;21/12/1995;DSV;Profession libérale;Non;M;DENIS;Olivier;04/01/1972;Non +05;Hautes-Alpes;01;1ère circonscription;6;11;F;HOURS;Patricia;10/02/1958;REC;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;MADELAINE;Pierre-Louis;20/11/1999;Non +05;Hautes-Alpes;01;1ère circonscription;7;19;M;SCARAMOZZINO;Roland;05/07/1965;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;CHAVERNOZ;Eliane;27/10/1941;Non +05;Hautes-Alpes;01;1ère circonscription;8;20;F;RECOTILLET;Lise;14/06/1996;REG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PRAT;Micheu;04/04/1957;Non +05;Hautes-Alpes;01;1ère circonscription;9;7;M;SARLIN;Eric;27/04/1969;RN;Ancien cadre;Non;F;CHIORINO;Cyriane;30/09/1959;Non +05;Hautes-Alpes;01;1ère circonscription;10;8;M;PARA;Kevin;03/09/1992;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;MOSTACHI;Ginette;24/10/1958;Non +05;Hautes-Alpes;01;1ère circonscription;11;2;F;BUISSON;Véronique;21/05/1963;DXG;Professeur des écoles, instituteur et assimilé;Non;M;ILLY;Jean-Claude;18/04/1953;Non +05;Hautes-Alpes;02;2ème circonscription;1;9;M;GIRAUD;Joel;14/10/1959;ENS;Cadre de la fonction publique;Non;F;BOUCHET;Claire;09/01/1954;Oui +05;Hautes-Alpes;02;2ème circonscription;2;21;F;BESSONNIER;Sandrine;25/06/1981;DSV;Employé civil et agent de service de la fonction publique;Non;M;HAMMANN;Jonathan;04/05/1983;Non +05;Hautes-Alpes;02;2ème circonscription;3;15;M;ROUX;Rémi;13/05/1989;DVG;Professeur des écoles, instituteur et assimilé;Non;F;MONINO;Chantal;03/09/1962;Non +05;Hautes-Alpes;02;2ème circonscription;4;12;F;PELISSIER;Margot;17/07/2003;REC;Elève, étudiant;Non;M;TLIBA;Medhi;29/05/1990;Non +05;Hautes-Alpes;02;2ème circonscription;5;17;F;CHAUVET;Carole;24/01/1972;LR;Professeur, profession scientifique;Non;M;FAURÉ;Michel;10/02/1957;Non +05;Hautes-Alpes;02;2ème circonscription;6;16;M;PASSEREAU;Yann;26/12/1989;ECO;Technicien;Non;F;DONVAL;Aurélie;13/06/1991;Non +05;Hautes-Alpes;02;2ème circonscription;7;4;M;GUIGNARD;Boris;01/04/1982;DXG;Professeur, profession scientifique;Non;F;BOUIX;Valérie;31/12/1962;Non +05;Hautes-Alpes;02;2ème circonscription;8;6;M;ALBRAND;Louis;08/10/1949;RN;Ancien cadre;Non;M;KALTENBACH;Christophe;12/09/1976;Non +05;Hautes-Alpes;02;2ème circonscription;9;5;F;MOUNAL;Capucine;12/05/1985;NUPES;Employé administratif d'entreprise;Non;F;LEVALLOIS;Juliette;17/08/1980;Non +06;Alpes-Maritimes;01;1ère circonscription;1;53;M;IMBERT;Florent;11/04/1989;DXG;Professeur, profession scientifique;Non;F;ILLY;Sonia;17/04/1992;Non +06;Alpes-Maritimes;01;1ère circonscription;2;50;M;CIOTTI;Eric;28/09/1965;LR;Cadre de la fonction publique;Oui;M;VEROLA;Auguste;28/11/1947;Non +06;Alpes-Maritimes;01;1ère circonscription;3;96;F;DLOUSSKY;Nathalie;10/05/1983;DIV;Profession libérale;Non;M;LOISELLE;Thomas;11/08/1989;Non +06;Alpes-Maritimes;01;1ère circonscription;4;88;F;VITETTI;Muriel;30/01/1959;RN;Chef d'entreprise de 10 salariés ou plus;Non;F;TASSIERS;Marie;27/04/1999;Non +06;Alpes-Maritimes;01;1ère circonscription;5;22;M;LALANDE;Loïc;03/10/1995;ECO;Profession intermédiaire de la santé et du travail social;Non;F;FERRARO;Laura;06/09/1988;Non +06;Alpes-Maritimes;01;1ère circonscription;6;57;F;ATHANASOPOULOS;Kenza;04/05/1988;DVG;Commerçant et assimilé;Non;M;MEGDICHE;Samy;07/01/1981;Non +06;Alpes-Maritimes;01;1ère circonscription;7;13;F;ZAKRZEWSKI;Sylvie;31/03/1970;DSV;Profession de l'information, des arts et des spectacles;Non;M;BOIZET;Éric;24/03/1961;Non +06;Alpes-Maritimes;01;1ère circonscription;8;28;M;MONETTI;Graig;17/04/1993;ENS;Cadre de la fonction publique;Non;F;RAMOS;Anne;31/05/1968;Non +06;Alpes-Maritimes;01;1ère circonscription;9;106;F;BEAUDET;Chantal;08/06/1946;DIV;Ancien employé;Non;M;CHAMINADE;Thomas;27/07/1983;Non +06;Alpes-Maritimes;01;1ère circonscription;10;67;M;RAZEAU;Christian;22/07/1941;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;F;NERVO;Viviane;29/01/1962;Non +06;Alpes-Maritimes;01;1ère circonscription;11;94;F;CHAINTRON;Anne-Laure;24/04/1980;NUPES;Professeur, profession scientifique;Non;M;INJEY;Robert;13/01/1962;Non +06;Alpes-Maritimes;01;1ère circonscription;12;34;F;BEN MOULAY;Lalla-Chama Gabrielle;05/01/1954;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;F;SERREAU;Gisèle;29/01/1953;Non +06;Alpes-Maritimes;02;2ème circonscription;1;4;M;MORLOT;Philippe;10/05/1953;DSV;Profession intermédiaire de la santé et du travail social;Non;F;ROCHETTE;Émilie;04/01/1984;Non +06;Alpes-Maritimes;02;2ème circonscription;2;81;F;SULTANI;Emmanuelle;22/11/1966;ECO;Professeur des écoles, instituteur et assimilé;Non;M;ANDRÉ;Pierre-Marie;05/12/1943;Non +06;Alpes-Maritimes;02;2ème circonscription;3;85;M;MACARIO;Jean-Marc;01/02/1963;LR;Profession intermédiaire administrative de la fonction publique;Non;F;LABBE-GROETZ;Annick;31/03/1974;Non +06;Alpes-Maritimes;02;2ème circonscription;4;11;F;NAFFATI;Sonia;18/09/1987;NUPES;Profession intermédiaire administrative de la fonction publique;Non;M;MARÉCHAL;Xavier;11/07/1966;Non +06;Alpes-Maritimes;02;2ème circonscription;5;47;M;GAIFFE;Alexandre;11/06/1979;DVD;Employé civil et agent de service de la fonction publique;Non;F;BERLINGERI;Franca;06/09/1967;Non +06;Alpes-Maritimes;02;2ème circonscription;6;61;F;REYNARD;Brigitte;15/03/1963;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;SALAZAR;Jacqueline;21/08/1947;Non +06;Alpes-Maritimes;02;2ème circonscription;7;56;M;ISNARD;Patrick;23/06/1962;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;CARDOT;Catherine;01/01/1970;Non +06;Alpes-Maritimes;02;2ème circonscription;8;24;M;AÏSSOU;Abdel;17/11/1958;DVD;Cadre de la fonction publique;Non;F;LEIBOFF;Denise;09/09/1958;Non +06;Alpes-Maritimes;02;2ème circonscription;9;36;M;TIVOLI;Lionel;29/02/1988;RN;Chef d'entreprise de 10 salariés ou plus;Non;F;PORET;Indiana;21/08/1995;Non +06;Alpes-Maritimes;02;2ème circonscription;10;54;M;BOUILLEAUX;Alain;27/05/1951;DXG;Ancien employé;Non;F;LAROCHE;Corine;04/11/1964;Non +06;Alpes-Maritimes;02;2ème circonscription;11;69;M;DOMBREVAL;Loïc;16/04/1966;ENS;Profession libérale;Oui;F;DOR;Marguerite;14/02/1960;Non +06;Alpes-Maritimes;02;2ème circonscription;12;100;M;POTENTIER;Laurent;06/11/1973;DIV;Cadre administratif et commercial d'entreprise;Non;F;CARRERE;Claude, Marie;23/09/1953;Non +06;Alpes-Maritimes;03;3ème circonscription;1;39;F;JAQUET;Estelle;15/09/1967;DXG;Professeur, profession scientifique;Non;F;MALTINTI;Rosette;10/04/1974;Non +06;Alpes-Maritimes;03;3ème circonscription;2;83;M;MERCIER;Gabriel-Kayne;23/04/2002;ECO;Elève, étudiant;Non;F;BOURLIASCOS;Katherine;21/04/1950;Non +06;Alpes-Maritimes;03;3ème circonscription;3;45;M;VARDON;Philippe;02/09/1980;REC;Profession libérale;Non;F;FALICON;Hermine;24/02/1997;Non +06;Alpes-Maritimes;03;3ème circonscription;4;15;M;KANDEL;Benoît;15/10/1960;RN;Policier et militaire;Non;F;DE GUBERNATIS;Béatrice;01/04/1960;Non +06;Alpes-Maritimes;03;3ème circonscription;5;73;M;GIUSTI;Enzo;17/06/1988;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;DAMIANO;Mireille;11/01/1953;Non +06;Alpes-Maritimes;03;3ème circonscription;6;72;M;DARMON;David-André;16/05/1988;ECO;Profession libérale;Non;F;COSTAMAGNA;Jeanine;27/02/1960;Non +06;Alpes-Maritimes;03;3ème circonscription;7;51;M;PRADAL;Philippe;01/02/1963;ENS;Profession libérale;Non;F;SALLES BARBOSA;Jennifer;04/06/1980;Non +06;Alpes-Maritimes;03;3ème circonscription;8;103;F;CAUSSIN;Marie-Françoise;28/11/1959;ECO;Professeur, profession scientifique;Non;F;PAYNE;Héléna;01/07/1997;Non +06;Alpes-Maritimes;03;3ème circonscription;9;62;M;CASTILLO;Laurent;12/03/1962;LR;Professeur, profession scientifique;Non;F;MARTELLO;Isabelle;22/08/1961;Non +06;Alpes-Maritimes;03;3ème circonscription;10;58;F;BOY-MOTTARD;Dominique;22/01/1953;RDG;Ancien cadre;Non;M;KHACHANA;Saifedine;15/09/1999;Non +06;Alpes-Maritimes;03;3ème circonscription;11;104;M;BENOIT;Yann;11/05/1982;DIV;Profession de l'information, des arts et des spectacles;Non;F;CHAYET;Odile;17/02/1948;Non +06;Alpes-Maritimes;03;3ème circonscription;12;98;F;BONALDI;Sylvie;09/06/1965;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;MICHAUT;William;02/08/1981;Non +06;Alpes-Maritimes;03;3ème circonscription;13;6;F;RIVIERE;Marie-Ange;18/01/1970;DSV;Commerçant et assimilé;Non;F;LECLAIR;Oksana;17/05/1997;Non +06;Alpes-Maritimes;04;4ème circonscription;1;42;M;MARKIEL;Joseph;07/08/1946;DXG;Profession de l'information, des arts et des spectacles;Non;F;BERTRAND;Françoise;19/04/1966;Non +06;Alpes-Maritimes;04;4ème circonscription;2;64;M;BIEDER;David;11/09/1973;ECO;Ingénieur et cadre technique d'entreprise;Non;M;MONTAGNE;Laurent;22/06/1964;Non +06;Alpes-Maritimes;04;4ème circonscription;3;90;F;VALETTA-ARDISSON;Alexandra;07/06/1976;ENS;Cadre de la fonction publique;Oui;M;SFECCI;Adrien;05/01/1985;Non +06;Alpes-Maritimes;04;4ème circonscription;4;49;F;BEYL;Christine;19/04/1963;ECO;Commerçant et assimilé;Non;M;THRIERR;Corentin;17/08/1995;Non +06;Alpes-Maritimes;04;4ème circonscription;5;65;M;DUCREUX;Pascal;13/03/1956;ECO;Technicien;Non;F;BONINO;Jacqueline;28/01/1941;Non +06;Alpes-Maritimes;04;4ème circonscription;6;7;M;CARBONEL;Fabrice;20/03/1974;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MAUNAS;Jean-François;03/07/1969;Non +06;Alpes-Maritimes;04;4ème circonscription;7;59;F;BOURNOT-POULET;Sophie;06/07/1974;NUPES;Cadre de la fonction publique;Non;F;REVILLET;Fabienne;05/07/1968;Non +06;Alpes-Maritimes;04;4ème circonscription;8;97;M;ROUX;Roger;07/11/1962;LR;Cadre de la fonction publique;Non;F;BINEAU;Gabrielle;18/12/1988;Non +06;Alpes-Maritimes;04;4ème circonscription;9;12;F;MASSON;Alexandra;02/07/1971;RN;Profession libérale;Non;M;CONTESSE;Guillaume;03/12/1974;Non +06;Alpes-Maritimes;04;4ème circonscription;10;31;M;RIEU;Damien;27/08/1989;REC;Cadre administratif et commercial d'entreprise;Non;F;VENNE;Elisabeth;04/03/1954;Non +06;Alpes-Maritimes;05;5ème circonscription;1;27;M;DELHEZ;Thibault;15/12/1985;DSV;Profession libérale;Non;F;MISSET;Françoise;06/02/1950;Non +06;Alpes-Maritimes;05;5ème circonscription;2;3;M;VELLA;Cédric;19/12/1994;REC;Profession libérale;Non;F;BONNAUD;Fabienne;11/02/1952;Non +06;Alpes-Maritimes;05;5ème circonscription;3;23;F;SOISSON;Nathalie;28/11/1957;ECO;Profession libérale;Non;M;VIALLET;Stéphane;02/06/1969;Non +06;Alpes-Maritimes;05;5ème circonscription;4;29;F;BRENIER-OHANESSIAN;Marine;11/08/1986;ENS;Cadre de la fonction publique;Oui;M;CONDOMITTI;Pascal;06/03/1975;Non +06;Alpes-Maritimes;05;5ème circonscription;5;26;M;KHALIFA;Frank;03/10/1961;RN;Professeur, profession scientifique;Non;F;BIBAUT;Christelle;14/05/1970;Non +06;Alpes-Maritimes;05;5ème circonscription;6;5;F;D'INTORNI;Christelle;02/02/1985;LR;Profession libérale;Non;M;ANDRE;Stanislas;21/08/1986;Non +06;Alpes-Maritimes;05;5ème circonscription;7;41;F;BENKEMOUN;Agnès;08/09/1966;DXG;Professeur, profession scientifique;Non;M;TEYSSEDRE;Éric;02/12/1973;Non +06;Alpes-Maritimes;05;5ème circonscription;8;48;M;BENASSAYA;Philippe;16/01/1959;NUPES;Professeur, profession scientifique;Non;F;DUCHEIN;Marie-Claude;29/01/1966;Non +06;Alpes-Maritimes;05;5ème circonscription;9;87;F;MAIYÉ;Géraldine;18/10/1973;ECO;Cadre administratif et commercial d'entreprise;Non;F;ULLMANN;Maryse;30/01/1952;Non +06;Alpes-Maritimes;05;5ème circonscription;10;101;M;SPACH;J.C Wahid;10/01/1972;DIV;Commerçant et assimilé;Non;F;BOUAMAMA;Fafa;27/03/1963;Non +06;Alpes-Maritimes;06;6ème circonscription;1;38;F;BARTOLI;Daniele;19/01/0952;DXG;Ancien employé;Non;M;BARILLOT;Xavier;29/11/1964;Non +06;Alpes-Maritimes;06;6ème circonscription;2;79;F;TRASTOUR-ISNART;Laurence;06/03/1972;LR;Cadre de la fonction publique;Oui;M;COANUS;Christophe;01/12/1978;Non +06;Alpes-Maritimes;06;6ème circonscription;3;80;M;TOUZEAU-MENONI;Philippe;26/02/1966;DVC;Profession de l'information, des arts et des spectacles;Non;F;REVEST;Françoise;06/01/1961;Non +06;Alpes-Maritimes;06;6ème circonscription;4;21;F;MAZZELLA;Nicole;11/09/1952;NUPES;Ancien cadre;Non;M;BOUHACHI;Laury;28/10/1978;Non +06;Alpes-Maritimes;06;6ème circonscription;5;82;M;LOUVEZ;Philippe;06/10/1959;DSV;Ancienne profession intermédiaire;Non;M;CALVIFIORI;Thomas;28/02/1990;Non +06;Alpes-Maritimes;06;6ème circonscription;6;71;M;MION;Jean-Bernard;03/11/1967;ENS;Profession libérale;Non;F;BARTHELEMY;Noëlle;26/07/1966;Non +06;Alpes-Maritimes;06;6ème circonscription;7;66;M;ROBIONY;Philippe;04/05/1941;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;M;AYUSO;Stéphane;23/01/1965;Non +06;Alpes-Maritimes;06;6ème circonscription;8;14;M;MASSON;Bryan;21/12/1996;RN;Profession intermédiaire administrative de la fonction publique;Non;M;TRIBUIANI;Cyril;25/07/1981;Non +06;Alpes-Maritimes;06;6ème circonscription;9;25;M;PIACENTINI;Pierre;02/06/1961;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;CASBI;Yaël;03/08/1972;Non +06;Alpes-Maritimes;06;6ème circonscription;10;20;M;JULIEN;Guillaume;03/03/1969;ECO;Cadre administratif et commercial d'entreprise;Non;F;FRUTOS;Dominique;04/05/1960;Non +06;Alpes-Maritimes;06;6ème circonscription;11;70;M;CIESLIK;Denis;21/04/1995;REC;Cadre de la fonction publique;Non;F;PIRET;Josiane;25/12/1948;Non +06;Alpes-Maritimes;07;7ème circonscription;1;86;F;VALLADE;Marie-José;21/08/1948;ECO;Profession libérale;Non;M;LEBOUCHER;Jacques;14/07/1936;Non +06;Alpes-Maritimes;07;7ème circonscription;2;60;M;DELCASSE;Arnaud;10/05/1985;DVG;Ingénieur et cadre technique d'entreprise;Non;F;PETIT;Claire;24/09/1966;Non +06;Alpes-Maritimes;07;7ème circonscription;3;89;M;PAUGET;Eric;18/08/1970;LR;Commerçant et assimilé;Oui;F;MISSANA;Alexia;01/06/1988;Non +06;Alpes-Maritimes;07;7ème circonscription;4;30;M;MEYER-ABBATUCCI;Arthur;21/10/1991;NUPES;Profession libérale;Non;F;GENARI-HACOT;Bernadette;30/10/1954;Non +06;Alpes-Maritimes;07;7ème circonscription;5;32;M;BELGUECHI;Yassin-Faïsal;28/04/1983;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;EISSMAN;Michael;06/01/1981;Non +06;Alpes-Maritimes;07;7ème circonscription;6;76;M;MELE;Eric;20/06/1960;ENS;Commerçant et assimilé;Non;F;DEBRAS;Guilaine;11/09/1962;Non +06;Alpes-Maritimes;07;7ème circonscription;7;92;F;MARIUS;Audrey;03/09/1982;REC;Cadre administratif et commercial d'entreprise;Non;M;DUBREU;Bernard;29/08/1953;Non +06;Alpes-Maritimes;07;7ème circonscription;8;75;M;HVIDSTEN;Axel;19/11/1966;ECO;Chauffeur;Non;F;EVANDRO;Valérie;13/04/1967;Non +06;Alpes-Maritimes;07;7ème circonscription;9;74;F;FEBVAY;Laurie;26/06/1990;DSV;Employé de commerce;Non;M;CHAMBIN;Frédéric;07/08/1964;Non +06;Alpes-Maritimes;07;7ème circonscription;10;10;F;PARGAUD;Megane;20/03/1992;ECO;Employé administratif d'entreprise;Non;F;BAILET;Chadia;30/09/1972;Non +06;Alpes-Maritimes;07;7ème circonscription;11;37;M;CORNEC;Tanguy;13/04/1961;RN;Profession libérale;Non;F;JABERT;Elisabeth;26/09/1970;Non +06;Alpes-Maritimes;07;7ème circonscription;12;2;F;HUMBERT;Bérengère;01/02/1967;DVD;Artisan;Non;M;ROY;Grégory;20/04/1996;Non +06;Alpes-Maritimes;07;7ème circonscription;13;93;M;MARECHAL;Stanislas;25/01/1988;DIV;Ingénieur et cadre technique d'entreprise;Non;M;DELHAYE;Sébastien;24/07/1993;Non +06;Alpes-Maritimes;07;7ème circonscription;14;77;M;PETARD;Christian;03/12/1954;DXG;Ancien employé;Non;M;LINZA;Philippe;29/08/1969;Non +06;Alpes-Maritimes;08;8ème circonscription;1;43;F;MARTINS;Adelia;24/02/1968;DSV;Profession de l'information, des arts et des spectacles;Non;M;STUTZ;Thierry;04/07/1963;Non +06;Alpes-Maritimes;08;8ème circonscription;2;46;M;DESENS;Jean-Valéry;20/02/1977;ENS;Commerçant et assimilé;Non;F;ABRAVANEL;Aline;03/04/1978;Non +06;Alpes-Maritimes;08;8ème circonscription;3;52;M;DUBOIS;Damien;28/06/1986;DXG;Ingénieur et cadre technique d'entreprise;Non;F;COUTAN;Catherine;17/06/1948;Non +06;Alpes-Maritimes;08;8ème circonscription;4;8;F;FONTANESI;Chantal;18/06/1959;ECO;Profession de l'information, des arts et des spectacles;Non;F;LEPETIT;Béatrice;17/09/1966;Non +06;Alpes-Maritimes;08;8ème circonscription;5;17;M;GROSJEAN;Adrien;23/05/1991;REC;Commerçant et assimilé;Non;M;BARTHELEMY;Nicolas;13/02/1990;Non +06;Alpes-Maritimes;08;8ème circonscription;6;9;F;BIBIANO;Marie;06/05/1960;ECO;Ancien employé;Non;M;BIBIANO;Jean-Pierre;17/04/1946;Non +06;Alpes-Maritimes;08;8ème circonscription;7;102;M;CLAUDEL;Bernard;29/08/1949;DIV;Cadre administratif et commercial d'entreprise;Non;F;COLOM;Marilyn;15/04/1971;Non +06;Alpes-Maritimes;08;8ème circonscription;8;44;F;HAMONET;Chantal;11/05/1955;ECO;Cadre administratif et commercial d'entreprise;Non;M;VILLON;Jean-Pierre;11/07/1943;Non +06;Alpes-Maritimes;08;8ème circonscription;9;16;F;PEREIRA;Marie-José;27/03/1960;DXG;Personnel des services directs aux particuliers;Non;M;IBERTI;Jean-Pierre;11/03/1949;Non +06;Alpes-Maritimes;08;8ème circonscription;10;95;F;MARTIN;Alexandra;25/10/1968;LR;Employé civil et agent de service de la fonction publique;Non;M;LISNARD;David;02/02/1969;Non +06;Alpes-Maritimes;08;8ème circonscription;11;18;F;SOUDANT;Lucia;19/07/1986;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;KUHN;Jean-Francois;13/07/1973;Non +06;Alpes-Maritimes;08;8ème circonscription;12;35;F;LANDERER;Dorette;03/01/1971;RN;Profession libérale;Non;M;RAVASCO;Éric;26/04/1973;Non +06;Alpes-Maritimes;09;9ème circonscription;1;19;M;PAUCHET;David;21/03/1982;DSV;Commerçant et assimilé;Non;F;EBELL;Isabelle;15/01/1962;Non +06;Alpes-Maritimes;09;9ème circonscription;2;84;F;TABAROT;Michèle;13/10/1962;LR;Chef d'entreprise de 10 salariés ou plus;Oui;M;VIAUD;Jérôme;13/09/1977;Non +06;Alpes-Maritimes;09;9ème circonscription;3;78;M;NGUYEN;Xuan Truong;25/10/1994;REC;Cadre administratif et commercial d'entreprise;Non;F;IMMORDINO;Marie;12/09/1990;Non +06;Alpes-Maritimes;09;9ème circonscription;4;55;M;CAMERANO;Jean-Paul;12/08/1966;DVC;Cadre administratif et commercial d'entreprise;Non;F;FILLEBEEN;Dominique;10/09/1955;Non +06;Alpes-Maritimes;09;9ème circonscription;5;99;M;BOULAY;Nicolas;10/05/1977;DIV;Ingénieur et cadre technique d'entreprise;Non;M;AUBERTIN;Samuel;01/06/1992;Non +06;Alpes-Maritimes;09;9ème circonscription;6;91;F;CHASSERIAUD;Chantal;11/09/1955;NUPES;Ancien employé;Non;M;BREGEAUT;Jean-Jacques;25/09/1956;Non +06;Alpes-Maritimes;09;9ème circonscription;7;68;F;BARROERO;Evelyne;01/02/1955;ECO;Profession libérale;Non;F;DELATTRE;Evelyne;23/07/1956;Non +06;Alpes-Maritimes;09;9ème circonscription;8;63;F;TUDIESCHE;Mayaa;17/09/1966;ENS;Commerçant et assimilé;Non;M;CATELAIN;Antoine;03/06/1972;Non +06;Alpes-Maritimes;09;9ème circonscription;9;40;F;PÉCOUT;Liliane;16/05/1947;DXG;Ancien employé;Non;M;LANGOUET;Alain;25/12/1959;Non +06;Alpes-Maritimes;09;9ème circonscription;10;105;M;MATUSZEWSKI;Christian;06/09/1949;ECO;Ancien employé;Non;F;PALMERS;Joselane;07/03/1930;Non +06;Alpes-Maritimes;09;9ème circonscription;11;33;M;GALBERT;Franck;10/09/1972;RN;Ingénieur et cadre technique d'entreprise;Non;F;BARON;Nathalie;25/07/1964;Non +07;Ardèche;01;1ère circonscription;1;16;F;GINEYS;Severine;04/03/1977;ENS;Employé administratif d'entreprise;Non;M;KAPPEL;Roger;10/01/1962;Non +07;Ardèche;01;1ère circonscription;2;24;F;FLACH;Marie Élisabeth;02/05/1998;REC;Professeur, profession scientifique;Non;M;CORDIER;Robin;07/09/1994;Non +07;Ardèche;01;1ère circonscription;3;27;M;LE LOHER;Erick;24/03/1968;DSV;Ingénieur et cadre technique d'entreprise;Non;M;RIBERI;Franck;21/06/1966;Non +07;Ardèche;01;1ère circonscription;4;2;M;SAULIGNAC;Hervé;06/11/1970;NUPES;Cadre de la fonction publique;Oui;F;DEVE COLLETTE;Alexandra;01/08/1979;Non +07;Ardèche;01;1ère circonscription;5;13;M;TZAPRENKO;Boris;05/04/1953;ECO;Profession libérale;Non;M;FLEURET;Frédéric;10/04/1983;Non +07;Ardèche;01;1ère circonscription;6;12;F;VANDER DONCKT;Muriel;08/01/1972;DXG;Professeur, profession scientifique;Non;M;SOUCHE;Christian;30/10/1970;Non +07;Ardèche;01;1ère circonscription;7;17;M;VALLA;Michel;01/04/1949;DVD;Ancien artisan, commerçant, chef d'entreprise;Non;F;CHAIX;Marie-Pierre;28/02/1956;Non +07;Ardèche;01;1ère circonscription;8;7;F;PORQUET;Céline;06/10/1977;RN;Commerçant et assimilé;Non;M;DUPUIS;Olivier;28/12/1968;Non +07;Ardèche;01;1ère circonscription;9;8;M;CHAMBONNET;Pascal;22/09/1958;DXG;Professeur, profession scientifique;Non;F;MATEO FERNANDEZ;Maria Bégonia;21/04/1956;Non +07;Ardèche;01;1ère circonscription;10;29;F;MADEIRA;Clara;12/07/2003;REG;Elève, étudiant;Non;F;GUINAMANT;Cécile;04/02/1982;Non +07;Ardèche;02;2ème circonscription;1;14;F;GUILMIN;Claire;05/12/1992;DSV;Employé de commerce;Non;M;ROUBY;François;12/07/1961;Non +07;Ardèche;02;2ème circonscription;2;11;F;GAILLARD;Michèle;12/12/1964;DXG;Ouvrier non qualifié de type industriel;Non;M;ZANCHI;Angelino;31/12/1990;Non +07;Ardèche;02;2ème circonscription;3;9;M;GRANGIER;Cyrille;25/02/1977;RN;Commerçant et assimilé;Non;F;CLOT;Elisabeth;27/02/1970;Non +07;Ardèche;02;2ème circonscription;4;28;M;GLADIEUX;Sébastien;11/04/1979;DVD;Commerçant et assimilé;Non;M;DENIS;Stéphan;04/08/1986;Non +07;Ardèche;02;2ème circonscription;5;21;M;QUENETTE;Marc-Antoine;28/12/1977;LR;Cadre de la fonction publique;Non;M;BALAŸ;Pascal;09/07/1964;Non +07;Ardèche;02;2ème circonscription;6;30;M;CHAIZE;Martin;17/11/2003;REG;Elève, étudiant;Non;F;DUNAND;Maëlys;02/04/2003;Non +07;Ardèche;02;2ème circonscription;7;25;M;GOULOUZELLE;Christophe;30/08/1975;NUPES;Employé de commerce;Non;F;BERGER;Estelle;08/11/1977;Non +07;Ardèche;02;2ème circonscription;8;4;M;BORY;Philippe;22/06/1964;REC;Profession libérale;Non;F;DRAGON;Delphine;19/11/1970;Non +07;Ardèche;02;2ème circonscription;9;23;M;DUSSOPT;Olivier;16/08/1978;ENS;Cadre de la fonction publique;Non;F;HEYDEL GRILLERE;Laurence;18/11/1968;Non +07;Ardèche;03;3ème circonscription;1;22;F;CAUQUIL;Alexandra;15/04/1980;ENS;Cadre de la fonction publique;Non;M;SARRAZIN;Eric;12/05/1961;Non +07;Ardèche;03;3ème circonscription;2;18;F;PALLOT;Florence;29/11/1968;NUPES;Professeur, profession scientifique;Non;M;SOUCHON;Pierre;03/12/1981;Non +07;Ardèche;03;3ème circonscription;3;26;F;ALIROL;Anne;25/10/1976;REG;Professeur, profession scientifique;Non;M;LEYNAUD;Gérard;22/04/1946;Non +07;Ardèche;03;3ème circonscription;4;10;M;BRUN;Fabrice;02/04/1968;LR;Commerçant et assimilé;Oui;F;BAULAND;Brigitte;26/07/1957;Non +07;Ardèche;03;3ème circonscription;5;19;F;TEILLET;Audrey;22/11/1987;ECO;Employé administratif d'entreprise;Non;F;VALUSSO;Christine;10/08/1960;Non +07;Ardèche;03;3ème circonscription;6;20;M;SILVA;Gonzague;22/05/1958;DSV;Ancien cadre;Non;F;BLEUZE;Christine;04/12/1962;Non +07;Ardèche;03;3ème circonscription;7;6;M;VERHEIJ;Johan;24/01/1975;RN;Artisan;Non;M;SERROUL;John;28/05/1995;Non +07;Ardèche;03;3ème circonscription;8;15;M;MARCHISIO;Christophe;15/07/1964;DXG;Professeur, profession scientifique;Non;M;ANTRESSANGLE;Philippe;15/07/1966;Non +07;Ardèche;03;3ème circonscription;9;3;M;GANDON;Gérald;06/02/1970;REC;Commerçant et assimilé;Non;F;THEBAULT;Claudine;22/09/1952;Non +07;Ardèche;03;3ème circonscription;10;5;M;UGHETTO;Laurent;25/02/1968;DVG;Agriculteur sur petite exploitation;Non;F;RIFFARD;Astrid;16/07/1999;Non +08;Ardennes;01;1ère circonscription;1;8;M;RICHARD;Laurent;25/05/1976;RN;Professeur, profession scientifique;Non;F;DELSUC;Nadine;04/10/1960;Non +08;Ardennes;01;1ère circonscription;2;28;M;DURUISSEAU;Julien;24/03/1984;NUPES;Professeur, profession scientifique;Non;M;EVRARD;Esteban;26/07/2002;Non +08;Ardennes;01;1ère circonscription;3;23;M;RENNESSON;Arnaud;08/07/2001;ECO;Elève, étudiant;Non;F;RENNESSON;Vincenza;23/04/1970;Non +08;Ardennes;01;1ère circonscription;4;18;M;VUIBERT;Lionel;31/08/1968;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;LEQUEUX-LAMENIE;Armelle;10/01/1956;Non +08;Ardennes;01;1ère circonscription;5;13;M;KALMES;Patrick;15/06/1963;DSV;Chauffeur;Non;M;PUFF;Henri;02/05/1954;Non +08;Ardennes;01;1ère circonscription;6;15;F;OCTAVE;Nadia;10/04/1957;DXG;Ancien employé;Non;M;BROSSE;Johan;13/05/1962;Non +08;Ardennes;01;1ère circonscription;7;21;M;MARECHAL;Guillaume;17/09/1986;LR;Profession libérale;Non;F;BAELDEN;Franciane;05/05/1960;Non +08;Ardennes;01;1ère circonscription;8;24;F;DE CAUSANS;Juliette;21/12/1981;DVC;Professeur, profession scientifique;Non;M;RONSIN;Jean-Emmanuel;13/02/1971;Non +08;Ardennes;01;1ère circonscription;9;10;M;LAURENT;Sébastien;04/12/1975;REC;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;PETITFILS;Romain;17/03/1993;Non +08;Ardennes;02;2ème circonscription;1;5;F;JACQUEMART;Nadège;16/08/1971;REC;Agriculteur sur moyenne exploitation;Non;F;BERGER;Pauline;23/11/1989;Non +08;Ardennes;02;2ème circonscription;2;17;F;BEDDELEM;Polina;28/03/1985;ENS;Profession intermédiaire de la santé et du travail social;Non;M;LEMAIRE;Yoann;03/04/1982;Non +08;Ardennes;02;2ème circonscription;3;26;M;LOYEZ;Gilles;21/03/1963;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;VELTER;Véronique;20/10/1971;Non +08;Ardennes;02;2ème circonscription;4;29;F;GALLET;Christelle;02/03/1977;ECO;Employé administratif d'entreprise;Non;F;CARNEL;Béatrice;04/01/1958;Non +08;Ardennes;02;2ème circonscription;5;14;F;TAKAWÉ;Mink;25/06/1979;DXG;Professeur des écoles, instituteur et assimilé;Non;M;NOUET;Joël;16/08/1955;Non +08;Ardennes;02;2ème circonscription;6;2;M;BENYOUCEF;Patrick;01/06/1953;DXG;Ancien employé;Non;F;PERPETE;Claude;13/11/1947;Non +08;Ardennes;02;2ème circonscription;7;12;F;BELLAY;Christelle;21/03/1972;DSV;Cadre administratif et commercial d'entreprise;Non;M;SAINT-LAURENT;Thomas;13/05/1993;Non +08;Ardennes;02;2ème circonscription;8;7;M;PHILIPPO;Baptiste;07/06/1991;RN;Profession intermédiaire administrative de la fonction publique;Non;F;HOURT;Divine;18/01/2001;Non +08;Ardennes;02;2ème circonscription;9;4;M;CORDIER;Pierre;27/05/1972;LR;Cadre de la fonction publique;Oui;F;COQUET;Isabelle;25/09/1964;Non +08;Ardennes;03;3ème circonscription;1;11;M;NORTH;Bruno;17/04/1964;REC;Profession libérale;Non;M;LAHOTTE;Hervé;03/03/1962;Non +08;Ardennes;03;3ème circonscription;2;6;F;BATISSE;Stella;19/11/1974;DSV;Profession intermédiaire de la santé et du travail social;Non;F;MANGLAVITI;Tatiana;24/03/1988;Non +08;Ardennes;03;3ème circonscription;3;22;F;DRION;Estelle;18/04/1971;ENS;Professeur, profession scientifique;Non;M;LAURANT;Olivier;08/12/1971;Non +08;Ardennes;03;3ème circonscription;4;3;M;WARSMANN;Jean-Luc;22/10/1965;DVD;Profession intermédiaire administrative et commerciale des entreprises;Oui;M;VILLENET;Nicolas;07/05/1977;Non +08;Ardennes;03;3ème circonscription;5;19;F;PERRIN;Sophie;07/05/1970;NUPES;Profession intermédiaire administrative de la fonction publique;Non;M;PINEAU;Christophe;18/08/1989;Non +08;Ardennes;03;3ème circonscription;6;20;F;AUGIER;Laure;13/11/1982;DXG;Professeur, profession scientifique;Non;M;THIERY;Alain;21/06/1956;Non +08;Ardennes;03;3ème circonscription;7;27;F;PELTRIAUX;Monique;19/12/1929;ECO;Ancienne profession intermédiaire;Non;F;GOUBAUX;Michèle;17/11/1946;Non +08;Ardennes;03;3ème circonscription;8;16;M;LEMOINE;David;06/02/1968;RN;Commerçant et assimilé;Non;M;MORIEUX;Christophe;03/02/1972;Non +09;Ariège;01;1ère circonscription;1;7;M;GARNIER;Jean-Marc;25/03/1961;RN;Ancienne profession intermédiaire;Non;F;ALOZY;Michèle;24/02/1961;Non +09;Ariège;01;1ère circonscription;2;14;F;TAURINE;Bénédicte;18/06/1976;NUPES;Professeur, profession scientifique;Oui;M;LAZAROO;Gilbert;06/10/1951;Non +09;Ariège;01;1ère circonscription;3;2;M;JOSSINET;François-Xavier;09/07/1982;REC;Profession de l'information, des arts et des spectacles;Non;M;VIREFLÉAU;Gervais;31/08/1959;Non +09;Ariège;01;1ère circonscription;4;18;M;FABART;Renaud;23/08/1948;ECO;Ancien cadre;Non;F;ROULLEAU;Florence;25/01/1970;Non +09;Ariège;01;1ère circonscription;5;4;M;LOMRÉ;Yannick;13/03/1984;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;BESSIS;Laurence;28/03/1961;Non +09;Ariège;01;1ère circonscription;6;19;F;COULY;Claire;26/06/1981;DVG;Professeur, profession scientifique;Non;M;VILLET;Jean-Luc;06/10/1953;Non +09;Ariège;01;1ère circonscription;7;13;F;TRIBOUT;Anne-Sophie;06/10/1976;ENS;Professeur, profession scientifique;Non;M;AZEMA;Jérôme;25/04/1973;Non +09;Ariège;01;1ère circonscription;8;15;F;LAPEYRE;Gisèle;15/03/1951;DXG;Ancienne profession intermédiaire;Non;M;JUNCA;Daniel;23/05/1952;Non +09;Ariège;01;1ère circonscription;9;3;F;FROGER;Martine;11/06/1961;SOC;Chef d'entreprise de 10 salariés ou plus;Non;M;SICRE;Jean-Pierre;29/10/1959;Non +09;Ariège;01;1ère circonscription;10;21;M;SALVAT;Jean-Pierre;09/05/1950;REG;Ancienne profession intermédiaire;Non;F;DOMEC;Pascale;14/08/1964;Non +09;Ariège;02;2ème circonscription;1;9;F;CARRIE;Bérengère;04/10/1966;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;MASQUÈRE;Stéphane;15/06/1979;Non +09;Ariège;02;2ème circonscription;2;5;M;CHAROY;Quentin;13/05/1994;ECO;Personnel des services directs aux particuliers;Non;M;BOUET-ANNOUN;Bastien;30/04/1978;Non +09;Ariège;02;2ème circonscription;3;6;F;TARRIEUX-ANTRANIKIAN;Alexandra;20/02/1989;REC;Technicien;Non;M;TARRIEUX;Anthony;24/07/1997;Non +09;Ariège;02;2ème circonscription;4;10;M;GARCIA;Enzo;14/12/2002;REG;Elève, étudiant;Non;F;TIMBERT;Themis;11/08/2003;Non +09;Ariège;02;2ème circonscription;5;11;M;PANIFOUS;Laurent;21/12/1976;SOC;Cadre de la fonction publique;Non;F;ABADIE-AMIEL;Audrey;16/11/1974;Non +09;Ariège;02;2ème circonscription;6;17;M;LAFFONT;Patrick;26/10/1974;DVG;Employé administratif d'entreprise;Non;F;LAFFARGUE;Annick;21/02/1955;Non +09;Ariège;02;2ème circonscription;7;12;M;LARIVE;Michel;22/08/1966;NUPES;Profession libérale;Oui;F;SENTENAC;Laetitia;16/02/1986;Non +09;Ariège;02;2ème circonscription;8;20;M;DE KERIMEL;Yann;29/12/1976;DXD;Agriculteur sur petite exploitation;Non;F;CAPDEVILLE;Muriel;24/07/1980;Non +09;Ariège;02;2ème circonscription;9;23;M;DUTRENOIS;Rémi;22/06/1980;ENS;Cadre administratif et commercial d'entreprise;Non;F;PARLOUER;Alexia;10/08/1979;Non +09;Ariège;02;2ème circonscription;10;22;M;AFONSO;Paul;27/02/1971;UDI;Profession intermédiaire administrative de la fonction publique;Non;F;FAURÉ;Laurence;01/03/1969;Non +09;Ariège;02;2ème circonscription;11;16;F;TESTARD;Théodora;28/08/1986;DXG;Profession libérale;Non;M;ISIERTE;Guilhem;24/07/1979;Non +10;Aube;01;1ère circonscription;1;13;F;FRAENKEL;Stéphanie;29/09/1978;LR;Profession libérale;Non;M;BORDE;Philippe;19/04/1967;Non +10;Aube;01;1ère circonscription;2;15;M;BESSON-MOREAU;Grégory;07/07/1982;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;BERTAIL;Sybille;06/01/1959;Non +10;Aube;01;1ère circonscription;3;5;M;GUITTON;Jordan;30/01/1995;RN;Profession intermédiaire administrative de la fonction publique;Non;F;DA ROCHA;Katia;31/03/1974;Non +10;Aube;01;1ère circonscription;4;16;M;GIACOMONI;Hervé;28/04/1964;REC;Artisan;Non;M;ROZÉ;Adrien;02/07/1996;Non +10;Aube;01;1ère circonscription;5;2;F;CANAUD;Marie-Elisabeth;21/01/1977;DIV;Professeur, profession scientifique;Non;M;BERNARD;Claude;22/09/1964;Non +10;Aube;01;1ère circonscription;6;23;F;PIEPLU;Lydie;07/06/1951;DVC;Profession de l'information, des arts et des spectacles;Non;F;PIEPLU;Catherine;10/07/1965;Non +10;Aube;01;1ère circonscription;7;20;M;SPAGNESI;Laurent;12/10/1956;NUPES;Ancien cadre;Non;F;CORDEUIL;Annick;05/02/1955;Non +10;Aube;01;1ère circonscription;8;7;M;PAILLARD;Lionel;29/06/1977;DXG;Professeur, profession scientifique;Non;M;CYNOBER;Julien;10/05/1977;Non +10;Aube;02;2ème circonscription;1;10;M;VALLÉE;Romain;05/04/1984;DXG;Professeur, profession scientifique;Non;F;REICHLING;Pauline;19/07/1994;Non +10;Aube;02;2ème circonscription;2;26;M;RIGLET;Sébastien;07/12/1984;DVC;Cadre administratif et commercial d'entreprise;Non;F;GNAHOUA-FÉ;Aurélie;12/08/1983;Non +10;Aube;02;2ème circonscription;3;30;F;PUFF;Isabelle;08/04/1951;DSV;Ancien cadre;Non;F;VIERTZ;Thérèse;21/07/1950;Non +10;Aube;02;2ème circonscription;4;6;F;HENRY;Evelyne;22/02/1963;RN;Commerçant et assimilé;Non;M;ARBONA;Philippe;10/10/1962;Non +10;Aube;02;2ème circonscription;5;24;M;BEAUFUMÉ;Sébastien;27/09/1983;ECO;Employé de commerce;Non;F;GUENIOT;Corinne;25/01/1966;Non +10;Aube;02;2ème circonscription;6;14;F;FONTAINE-GARCIA;Salomé;09/08/1984;ENS;Agriculteur sur moyenne exploitation;Non;M;VIGNEZ;Valentin;05/08/1992;Non +10;Aube;02;2ème circonscription;7;17;F;FRAINCART;Sarah;06/07/1999;NUPES;Elève, étudiant;Non;M;ZAHOUANI;Mohamed;24/05/1990;Non +10;Aube;02;2ème circonscription;8;9;M;IGNATOVITCH;Etienne;01/04/1962;REC;Ingénieur et cadre technique d'entreprise;Non;M;LEFEVRE;Jean-Christophe;27/09/1987;Non +10;Aube;02;2ème circonscription;9;21;F;BAZIN-MALGRAS;Valérie;31/10/1969;LR;Cadre administratif et commercial d'entreprise;Oui;M;DE LA HAMAYDE;Bernard;20/02/1952;Non +10;Aube;03;3ème circonscription;1;11;M;ANDRIEUX;Pascal;13/08/1957;DXG;Ancien cadre;Non;F;CARDOSO;Déolinda;11/10/1973;Non +10;Aube;03;3ème circonscription;2;28;F;FERNANDEZ;Laure;20/04/1977;DSV;Employé civil et agent de service de la fonction publique;Non;M;DORE;Philippe;08/12/1965;Non +10;Aube;03;3ème circonscription;3;18;M;SEFFALS;Gaëtan;27/10/1992;NUPES;Professeur, profession scientifique;Non;F;BIANCO;Maria;03/10/1959;Non +10;Aube;03;3ème circonscription;4;29;M;HELICK;Lyonnel;26/06/1991;DSV;Profession intermédiaire de la santé et du travail social;Non;M;BANSAC;Clément;28/06/1993;Non +10;Aube;03;3ème circonscription;5;27;M;MENISSIER;Dominique;29/04/1957;ECO;Ancien cadre;Non;F;TAIEB;Audrey;26/07/1980;Non +10;Aube;03;3ème circonscription;6;19;F;BEURY;Loëtitia;30/11/1973;ENS;Chef d'entreprise de 10 salariés ou plus;Non;M;JURCZAK;Marc;20/02/1969;Non +10;Aube;03;3ème circonscription;7;3;F;LOPES VAZ;Céline;11/12/1999;REC;Elève, étudiant;Non;M;WIEL;Maurice;05/09/1938;Non +10;Aube;03;3ème circonscription;8;22;M;GATOUILLAT;Baptiste;10/01/1984;LR;Agriculteur sur moyenne exploitation;Non;F;LANTHIEZ;Raphaële;25/07/1966;Non +10;Aube;03;3ème circonscription;9;12;M;FREVILLE;Didier;29/03/1970;DVC;Employé civil et agent de service de la fonction publique;Non;F;FREY;Valentine;25/05/1992;Non +10;Aube;03;3ème circonscription;10;4;F;RANC;Angélique;16/03/1988;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CROQUET;Nicolas;07/07/1978;Non +10;Aube;03;3ème circonscription;11;25;F;COLLOT-TOUZÉ;Nelly;09/12/1965;ECO;Commerçant et assimilé;Non;M;WYSOCINSKI;Ghislain;18/10/1964;Non +11;Aude;01;1ère circonscription;1;10;M;ROULLIAUX;Axel;06/01/2000;REC;Elève, étudiant;Non;M;COFFINET;Fabrice;03/08/1967;Non +11;Aude;01;1ère circonscription;2;34;F;AMALRIC;Laure-Nelly;09/01/1982;ECO;Cadre administratif et commercial d'entreprise;Non;F;SOULIER;Frédérique;11/02/1977;Non +11;Aude;01;1ère circonscription;3;6;F;DANDEU;Patricia;23/09/1961;ECO;Ancien cadre;Non;F;GODARD;Sylvie;06/03/1956;Non +11;Aude;01;1ère circonscription;4;19;F;SIKORA;Juliette;17/05/1960;DIV;Ouvrier qualifié de type industriel;Non;M;CREBASSA;Yves;04/08/1952;Non +11;Aude;01;1ère circonscription;5;20;M;BIASOLI;Gilbert;26/12/1951;DSV;Ingénieur et cadre technique d'entreprise;Non;F;PAYAN;Caroline;16/09/1979;Non +11;Aude;01;1ère circonscription;6;7;M;BARTHÈS;Christophe;12/10/1966;RN;Agriculteur sur moyenne exploitation;Non;M;MONTAGNÉ;Edgar;06/02/1988;Non +11;Aude;01;1ère circonscription;7;26;F;GADRAT;Nicole;13/09/1946;DXG;Professeur, profession scientifique;Non;M;ISIERTE;Prosper;30/06/1948;Non +11;Aude;01;1ère circonscription;8;17;M;PEREZ;Laurent;16/06/1965;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;PERALEZ;Gérard;05/12/1960;Non +11;Aude;01;1ère circonscription;9;9;F;COURRIÈRE CALMON;Sophie;24/02/1965;NUPES;Professeur, profession scientifique;Non;M;RENARD;Denis;29/03/1955;Non +11;Aude;01;1ère circonscription;10;18;F;HÉRIN;Danièle;14/01/1947;ENS;Professeur, profession scientifique;Oui;M;SENTENAC;Jacques;03/03/1967;Non +11;Aude;02;2ème circonscription;1;4;M;ROCHER;Edouard;25/11/1972;RDG;Profession libérale;Non;F;PUJOL;Sophie;28/08/1967;Non +11;Aude;02;2ème circonscription;2;5;M;FALCON;Frédéric;21/11/1985;RN;Commerçant et assimilé;Non;F;PHILIPPE;Laure-Emmanuelle;16/02/1977;Non +11;Aude;02;2ème circonscription;3;37;M;VASSEUR;Baptiste;07/04/1990;DVG;Cadre administratif et commercial d'entreprise;Non;F;BELZUNCES;Myriam;05/04/1970;Non +11;Aude;02;2ème circonscription;4;22;F;MONTERO-VALLE;Valérie;07/05/1963;ECO;Profession libérale;Non;F;PESHKOVA;Alina;02/01/1998;Non +11;Aude;02;2ème circonscription;5;21;M;LENFANT;Gérard;21/06/1975;DIV;Professeur des écoles, instituteur et assimilé;Non;F;MALRIC;Coralie;05/01/1985;Non +11;Aude;02;2ème circonscription;6;36;M;THOMAS;Francis;23/07/1956;DSV;Ancien cadre;Non;F;LUMPP;Sophie;06/02/1952;Non +11;Aude;02;2ème circonscription;7;28;M;CALGARO;Christian;16/10/1962;DVC;Commerçant et assimilé;Non;F;PRIELS;Sara;23/11/1971;Non +11;Aude;02;2ème circonscription;8;14;F;THIVENT;Viviane;01/05/1977;NUPES;Professeur, profession scientifique;Non;M;TAURAND;Francis;19/05/1951;Non +11;Aude;02;2ème circonscription;9;33;M;CAMBON;Cyril;15/03/1968;ECO;Profession libérale;Non;F;SAGNES;Danaë;15/06/1992;Non +11;Aude;02;2ème circonscription;10;27;F;VIGIER;Annette;25/05/1949;DXG;Ancien employé;Non;M;DELEGUE;Salvy;31/08/1972;Non +11;Aude;02;2ème circonscription;11;8;M;DARAUD;Jean-François;21/03/1955;REC;Ancien artisan, commerçant, chef d'entreprise;Non;F;PETROVIC;Milanka;11/12/1974;Non +11;Aude;02;2ème circonscription;12;11;M;PEREA;Alain;05/06/1971;ENS;Cadre de la fonction publique;Oui;F;ESCUR;Anisa;22/08/1973;Non +11;Aude;02;2ème circonscription;13;35;M;ESTRADE;Quentin;04/05/1996;LR;Elève, étudiant;Non;F;GILLIOUARD;Marina;10/05/1997;Non +11;Aude;02;2ème circonscription;14;38;M;MIRABILE;Fabien;27/07/1977;ECO;Employé civil et agent de service de la fonction publique;Non;F;BENOIST;Any;31/12/1983;Non +11;Aude;03;3ème circonscription;1;32;M;TURCHETTO;Aurélien;16/06/1981;RDG;Commerçant et assimilé;Non;M;JOUY;Pierre;19/08/1981;Non +11;Aude;03;3ème circonscription;2;31;M;MARTINEZ;Pierre;21/10/1979;ECO;Ouvrier qualifié de type artisanal;Non;M;CASALES;José;27/05/1971;Non +11;Aude;03;3ème circonscription;3;2;M;RANCOULE;Julien;31/07/1993;RN;Profession libérale;Non;F;SALVISBERG;Geneviève;30/04/1951;Non +11;Aude;03;3ème circonscription;4;23;F;HABERT;Martine;13/09/1959;DSV;Cadre administratif et commercial d'entreprise;Non;F;ROQUES;Marie-Christine;16/03/1956;Non +11;Aude;03;3ème circonscription;5;12;F;DUCOM;Valérie;11/03/1968;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;PALACZ;Marc;05/03/1968;Non +11;Aude;03;3ème circonscription;6;24;M;MARTIN;Michel;19/10/1951;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;COUCURON;Wilfrid;21/02/1971;Non +11;Aude;03;3ème circonscription;7;3;F;ROBERT;Mireille;01/03/1962;ENS;Professeur des écoles, instituteur et assimilé;Oui;M;FAU;Philippe;30/09/1963;Non +11;Aude;03;3ème circonscription;8;13;F;ADDA--NETTER;Johanna;21/02/1996;NUPES;Ingénieur et cadre technique d'entreprise;Non;M;ROUYRE;Denis;14/04/1960;Non +11;Aude;03;3ème circonscription;9;25;M;CROS;Jacques;26/01/1955;ECO;Profession libérale;Non;F;MARCHENKO;Tamila;11/04/1972;Non +11;Aude;03;3ème circonscription;10;29;F;POTTIER;Carine;20/07/1972;UDI;Technicien;Non;F;AMRANI;Safia;21/08/1993;Non +11;Aude;03;3ème circonscription;11;30;M;GALONNIER;Dominique;23/02/1965;DXG;Professeur, profession scientifique;Non;F;SANCHEZ;Hélène;20/08/1962;Non +12;Aveyron;01;1ère circonscription;1;24;M;DA CRUZ;Antoine;03/09/1967;DVD;Artisan;Non;F;CHAUSSADE;Christelle;15/12/1972;Non +12;Aveyron;01;1ère circonscription;2;13;M;BES DE BERC;Godefroy;30/03/1960;REC;Commerçant et assimilé;Non;M;BOURRILLON;Laurent;18/05/1993;Non +12;Aveyron;01;1ère circonscription;3;5;M;MAZARS;Stéphane;25/03/1969;ENS;Profession libérale;Oui;F;CESTRIERES;Pauline;24/03/1977;Non +12;Aveyron;01;1ère circonscription;4;8;F;PLANE;Julia;03/04/1984;RN;Employé administratif d'entreprise;Non;M;CANTAGREL;Roméo;28/07/1974;Non +12;Aveyron;01;1ère circonscription;5;26;F;SAINT-AVIT;Arlette;04/07/1962;DXG;Employé civil et agent de service de la fonction publique;Non;M;COSTES;Raymond;21/05/1956;Non +12;Aveyron;01;1ère circonscription;6;25;F;BESSAOU;Magali;10/09/1968;LR;Cadre administratif et commercial d'entreprise;Non;M;COSTES;Sébastien;13/07/1976;Non +12;Aveyron;01;1ère circonscription;7;17;F;DUMAY;Marie-Françoise;31/08/1957;ECO;Profession intermédiaire de la santé et du travail social;Non;M;DUMAY;Claudio;29/10/1955;Non +12;Aveyron;01;1ère circonscription;8;16;M;THEBAULT;Léon;17/01/2001;NUPES;Elève, étudiant;Non;F;DUBOIS;Alexandra;11/11/1972;Non +12;Aveyron;01;1ère circonscription;9;30;M;ARMET;Jean-Philippe;29/05/1977;DSV;Employé civil et agent de service de la fonction publique;Non;F;BRICHLER;Annick;07/06/1974;Non +12;Aveyron;02;2ème circonscription;1;11;M;DEGUARA;Samuel;05/04/1977;ENS;Cadre administratif et commercial d'entreprise;Non;F;BLANC;Anne;20/07/1966;Oui +12;Aveyron;02;2ème circonscription;2;14;M;ALEXANDRE;Laurent;09/06/1973;NUPES;Ouvrier qualifié de type industriel;Non;F;PIC;Dorothée;26/08/1978;Non +12;Aveyron;02;2ème circonscription;3;15;M;AT;André;21/09/1966;LR;Agriculteur sur moyenne exploitation;Non;F;CAMBOULAS;Marie-Laure;25/11/1980;Non +12;Aveyron;02;2ème circonscription;4;27;M;BARTHE;Florian;04/06/1991;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;SAINT-GIRONS;Anthony;14/11/1989;Non +12;Aveyron;02;2ème circonscription;5;6;M;LELEU;Bruno;31/10/1972;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;D'ANGELO;Lucien;14/07/1952;Non +12;Aveyron;02;2ème circonscription;6;12;M;DUVAL;Dominique;10/03/1957;REC;Ancien cadre;Non;M;GINISTY;François;22/06/1996;Non +12;Aveyron;02;2ème circonscription;7;28;F;EL HEDRI;Lucile;20/01/1972;DXG;Professeur des écoles, instituteur et assimilé;Non;M;MARTY;Christian;25/01/1961;Non +12;Aveyron;02;2ème circonscription;8;9;M;CANTOURNET;Eric;28/12/1966;RDG;Profession intermédiaire administrative de la fonction publique;Non;M;MOUYSSET;René;25/12/1952;Non +12;Aveyron;02;2ème circonscription;9;18;M;VIDAL;Jean-Luc;07/08/1964;DSV;Profession libérale;Non;F;TORNIL;Géraldine;10/05/1966;Non +12;Aveyron;02;2ème circonscription;10;19;F;CASSARINI;Myriam;03/08/1972;ECO;Professeur, profession scientifique;Non;F;MARCHON;Marie-Hélène;14/02/1977;Non +12;Aveyron;02;2ème circonscription;11;23;M;CLERGUE;Dominique;29/07/1953;DVG;Ancienne profession intermédiaire;Non;F;LEPACHELET;Isabelle;25/01/1963;Non +12;Aveyron;03;3ème circonscription;1;29;M;COMBES;Bernard;10/03/1961;DXG;Technicien;Non;F;BARDANOUVE;Fanny;08/07/1981;Non +12;Aveyron;03;3ème circonscription;2;3;M;ROUSSET;Jean-François;09/09/1952;ENS;Profession libérale;Non;M;WOROU;Simon;28/01/1971;Non +12;Aveyron;03;3ème circonscription;3;10;F;TENDIL;Lysiane;10/08/1976;REC;Professeur, profession scientifique;Non;M;BELLER-TOLVE;Bob;06/01/1951;Non +12;Aveyron;03;3ème circonscription;4;2;M;RHIN;Michel;15/02/1970;NUPES;Professeur, profession scientifique;Non;F;VALABREGUE;Camille;30/06/1987;Non +12;Aveyron;03;3ème circonscription;5;22;M;SAINT-PIERRE;Christophe;13/08/1966;LR;Professeur, profession scientifique;Non;F;BOU-CALMES;Marie-Chantal;25/08/1960;Non +12;Aveyron;03;3ème circonscription;6;7;M;CAZORLA;Jean Christophe;21/01/1969;RN;Commerçant et assimilé;Non;F;ABOUDOU;Inchati;26/11/1980;Non +12;Aveyron;03;3ème circonscription;7;4;M;NOEL;Thierry;10/06/1961;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;POUGET;Brigitte;03/06/1957;Non +12;Aveyron;03;3ème circonscription;8;20;M;MIRAN;Patrice;22/05/1960;ECO;Cadre de la fonction publique;Non;M;ABOUSSOUAN;Pierre;08/09/1980;Non +12;Aveyron;03;3ème circonscription;9;21;M;DAURES;Jean-Marie;26/12/1960;DVD;Agriculteur sur moyenne exploitation;Non;M;MILESI;Jean;10/03/1943;Non +13;Bouches-du-Rhône;01;1ère circonscription;1;83;F;GRECH;Sophie;03/08/1985;REC;Policier et militaire;Non;M;FERRATO;Patrice;09/07/1974;Non +13;Bouches-du-Rhône;01;1ère circonscription;2;194;M;BONNARD;Xavier;02/10/1974;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;BENICHOU;Oriane;10/04/1983;Non +13;Bouches-du-Rhône;01;1ère circonscription;3;181;F;CHENNOUF;Ferielle;03/06/1987;ECO;Employé civil et agent de service de la fonction publique;Non;M;AKSIL;Julien;05/07/1985;Non +13;Bouches-du-Rhône;01;1ère circonscription;4;4;M;CECONE;Marc;09/02/1958;DXG;Ouvrier qualifié de type industriel;Non;F;LACLAU;Nathalie;23/06/1958;Non +13;Bouches-du-Rhône;01;1ère circonscription;5;17;F;CARAVELLAZI;Céline;18/06/1974;DSV;Artisan;Non;F;DAVIDSON;Sophie;15/10/1961;Non +13;Bouches-du-Rhône;01;1ère circonscription;6;163;M;GIOIA;Victor;21/12/1967;DVD;Profession libérale;Non;F;BEJAOUI;Malika;28/03/1967;Non +13;Bouches-du-Rhône;01;1ère circonscription;7;202;M;AVRIL;Julien;26/09/1995;DIV;Ingénieur et cadre technique d'entreprise;Non;M;BUNEL;Jean-François;13/11/1987;Non +13;Bouches-du-Rhône;01;1ère circonscription;8;46;F;JABES;Flora;11/01/1990;ECO;Employé administratif d'entreprise;Non;F;VERGER;Jennifer;06/06/1987;Non +13;Bouches-du-Rhône;01;1ère circonscription;9;124;M;ROSIQUE;Thibaud;07/05/1996;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;HENRY;Nathalie;25/07/1986;Non +13;Bouches-du-Rhône;01;1ère circonscription;10;157;F;LANZALAVI;Marie;29/12/2000;REG;Elève, étudiant;Non;M;SAVELLI;Joseph;27/03/1986;Non +13;Bouches-du-Rhône;01;1ère circonscription;11;74;F;GRISETI;Monique;23/07/1960;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;KELLER;Arnaud;18/07/1998;Non +13;Bouches-du-Rhône;01;1ère circonscription;12;113;F;AGRESTI ROUBACHE;Sabrina;13/10/1976;ENS;Profession libérale;Non;M;PARAKIAN;Didier;05/03/1964;Non +13;Bouches-du-Rhône;01;1ère circonscription;13;136;F;BOUALEM-AUBERT;Sarah;11/01/1980;LR;Cadre administratif et commercial d'entreprise;Non;M;DARMAGNAC;Jean-François;04/11/1951;Non +13;Bouches-du-Rhône;02;2ème circonscription;1;174;M;ASSOULY;Avi;05/06/1950;ECO;Profession de l'information, des arts et des spectacles;Non;F;PLACIDE;Annette;04/03/1954;Non +13;Bouches-du-Rhône;02;2ème circonscription;2;107;F;DENNEVAL;Florence;03/05/1982;ECO;Employé civil et agent de service de la fonction publique;Non;M;MONTIGNY;Damien;14/11/1985;Non +13;Bouches-du-Rhône;02;2ème circonscription;3;128;F;ERMACORA;Hélène;06/10/1976;DSV;Profession intermédiaire de la santé et du travail social;Non;M;DUTILLEUL;Serge;15/12/1970;Non +13;Bouches-du-Rhône;02;2ème circonscription;4;178;M;SURRY;Dominique;17/02/1948;ECO;Ancien cadre;Non;F;NATALIVI;Raymonde;15/02/1944;Non +13;Bouches-du-Rhône;02;2ème circonscription;5;55;F;PITOLLAT;Claire;17/09/1979;ENS;Ingénieur et cadre technique d'entreprise;Oui;M;ROMAN;Christophe;15/05/1981;Non +13;Bouches-du-Rhône;02;2ème circonscription;6;115;M;PERETTI;Sébastien;27/11/1971;DIV;Profession intermédiaire de la santé et du travail social;Non;M;PERETTI;Jean Marc;27/06/1945;Non +13;Bouches-du-Rhône;02;2ème circonscription;7;59;F;PARODI;Clémence;21/10/1958;RN;Artisan;Non;M;ESCAVI;Hubert;29/04/1995;Non +13;Bouches-du-Rhône;02;2ème circonscription;8;179;M;PERSIA;Alain;03/04/1953;DIV;Profession libérale;Non;F;GRIMAUDO;Béatrice;19/09/1967;Non +13;Bouches-du-Rhône;02;2ème circonscription;9;146;F;ESPAZE;Brigitte;10/02/1957;DXG;Employé civil et agent de service de la fonction publique;Non;F;LAGRANGE;Noëlle;25/12/1946;Non +13;Bouches-du-Rhône;02;2ème circonscription;10;125;F;BERNASCONI;Sabine;23/11/1970;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;TANI;Didier;21/09/1970;Non +13;Bouches-du-Rhône;02;2ème circonscription;11;42;M;RUPNIK;Alexandre;22/04/1994;NUPES;Elève, étudiant;Non;F;MICAELLI;Caroline;30/09/1980;Non +13;Bouches-du-Rhône;02;2ème circonscription;12;91;M;GRAFFEO;Jean-Marc;16/06/1990;REC;Cadre administratif et commercial d'entreprise;Non;F;TEBOUL;Isabelle;17/11/1964;Non +13;Bouches-du-Rhône;03;3ème circonscription;1;60;F;LELOUIS;Gisèle;10/03/1952;RN;Ancien employé;Non;M;CHARPENTIER;Thibaut;13/02/1987;Non +13;Bouches-du-Rhône;03;3ème circonscription;2;183;F;SI AHMED;Nadia;27/05/1969;ECO;Profession intermédiaire de la santé et du travail social;Non;F;BRUNEL;Claude;11/04/1953;Non +13;Bouches-du-Rhône;03;3ème circonscription;3;53;M;BENSAADA;Mohamed;08/10/1968;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;GOMIS;Bénédicte;23/08/1964;Non +13;Bouches-du-Rhône;03;3ème circonscription;4;197;F;SAID;Elisabeth;29/08/1979;ECO;Commerçant et assimilé;Non;M;LACOSTA;Quentin;12/05/1993;Non +13;Bouches-du-Rhône;03;3ème circonscription;5;86;F;D'ANGIO;Sandrine;18/12/1981;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DUDIEUZERE;Cédric;09/09/1972;Non +13;Bouches-du-Rhône;03;3ème circonscription;6;14;M;TORDJMANN;Adam;20/02/1986;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;GIUSTINIANI;Léa;29/04/1993;Non +13;Bouches-du-Rhône;03;3ème circonscription;7;56;F;LOUIS;Alexandra;17/09/1983;ENS;Profession libérale;Oui;M;BLANC;Gérard;23/12/1977;Non +13;Bouches-du-Rhône;03;3ème circonscription;8;96;M;COCAIGN;Bruno;21/05/1954;DVC;Profession intermédiaire de la santé et du travail social;Non;F;VANDRAME;Elsa;18/07/1969;Non +13;Bouches-du-Rhône;03;3ème circonscription;9;3;M;PAPPALARDO;Patrick;01/01/1951;LR;Profession libérale;Non;F;BIRGIN;Corinne;18/05/2000;Non +13;Bouches-du-Rhône;03;3ème circonscription;10;188;F;BELKAROUI;Nora;05/02/1978;REG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DEULOFEU;Henri José Jean;02/08/1944;Non +13;Bouches-du-Rhône;03;3ème circonscription;11;2;F;GRANDEL;Jacqueline;16/03/1953;DXG;Cadre administratif et commercial d'entreprise;Non;F;DUSSOULIER;Alexandra;24/07/1979;Non +13;Bouches-du-Rhône;04;4ème circonscription;1;177;F;VINCETTI;Elisabeth;17/10/1970;ECO;Personnel des services directs aux particuliers;Non;M;PINELLI-VINCETTI;Thomas;28/07/1993;Non +13;Bouches-du-Rhône;04;4ème circonscription;2;165;F;HEUGUET;Mathilde;13/09/1983;ECO;Cadre administratif et commercial d'entreprise;Non;F;FRAI;Karima;06/04/1973;Non +13;Bouches-du-Rhône;04;4ème circonscription;3;40;F;RASTIT;Sandrine;03/02/1971;REC;Employé administratif d'entreprise;Non;F;SANCHEZ;Sophie;16/04/1973;Non +13;Bouches-du-Rhône;04;4ème circonscription;4;70;F;DUPUY;Martine;09/01/1954;DXG;Ancienne profession intermédiaire;Non;M;BAKER;Nour;11/01/1994;Non +13;Bouches-du-Rhône;04;4ème circonscription;5;155;F;MANICACCI;Léa;16/02/2001;REG;Elève, étudiant;Non;M;MORISON;Julien;02/04/2002;Non +13;Bouches-du-Rhône;04;4ème circonscription;6;57;F;BONNET;Isabelle;25/06/1965;DXG;Professeur, profession scientifique;Non;F;HADDAOUI;Iman;06/05/1986;Non +13;Bouches-du-Rhône;04;4ème circonscription;7;139;M;BOMPARD;Manuel;30/03/1986;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;SEVIN;Kalila;09/05/1980;Non +13;Bouches-du-Rhône;04;4ème circonscription;8;149;M;BOUALEM;Miloud;17/12/1950;DVC;Ancien cadre;Non;F;GILLY;Hélène;21/11/1958;Non +13;Bouches-du-Rhône;04;4ème circonscription;9;92;M;TELLIER;Julien;07/11/1981;RN;Contremaître, agent de maîtrise;Non;F;QUINQUIS;Aurélie;23/09/1991;Non +13;Bouches-du-Rhône;04;4ème circonscription;10;122;F;BEN MOHAMED;Kaouther;07/06/1977;DIV;Profession de l'information, des arts et des spectacles;Non;M;PARAISO;Fall;30/09/1978;Non +13;Bouches-du-Rhône;04;4ème circonscription;11;134;M;BENSAID;Majid;02/08/1977;DIV;Employé de commerce;Non;F;KULIK;Marie;20/08/1945;Non +13;Bouches-du-Rhône;04;4ème circonscription;12;127;M;TIRERA;Wally;09/10/1973;ECO;Profession libérale;Non;F;BOILEAUX;Kheira;24/11/1982;Non +13;Bouches-du-Rhône;04;4ème circonscription;13;85;F;BIAGGI;Solange;19/06/1954;LR;Profession libérale;Non;M;SOTO;Stéphane;01/10/1974;Non +13;Bouches-du-Rhône;04;4ème circonscription;14;116;F;AKODAD;Najat;13/09/1983;ENS;Profession libérale;Non;M;COHEN;Nathan;12/11/1991;Non +13;Bouches-du-Rhône;05;5ème circonscription;1;110;F;RUSSO;Joséphine;11/02/1958;DVC;Ancien artisan, commerçant, chef d'entreprise;Non;M;BOUGAUD;Eric;30/04/1963;Non +13;Bouches-du-Rhône;05;5ème circonscription;2;189;M;MONFERRINI;Christian;04/06/1959;ECO;Profession libérale;Non;F;BERGASSOLI;Christine;01/04/1967;Non +13;Bouches-du-Rhône;05;5ème circonscription;3;111;M;DE BENSASON;Marc;04/12/1981;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;FONTAINE;Bernard;20/02/1967;Non +13;Bouches-du-Rhône;05;5ème circonscription;4;84;F;PAGANINI;Vannina;11/06/1975;DVD;Cadre de la fonction publique;Non;M;ARLAUD;Tristan;05/03/1974;Non +13;Bouches-du-Rhône;05;5ème circonscription;5;13;F;NGUYÊN-VAN;Mai;21/06/1973;DXG;Profession intermédiaire de la santé et du travail social;Non;M;ALI;Ibrahim;18/12/1980;Non +13;Bouches-du-Rhône;05;5ème circonscription;6;33;F;ANTOINE;Maryline;18/12/1966;LR;Artisan;Non;M;LA SCALA;Hervé;29/06/1971;Non +13;Bouches-du-Rhône;05;5ème circonscription;7;172;M;BELAÏD;Mourad;26/06/1978;DVC;Cadre administratif et commercial d'entreprise;Non;F;DESLOT;Charlotte;01/01/1980;Non +13;Bouches-du-Rhône;05;5ème circonscription;8;153;M;DIDOUNE;Djamel;23/02/1961;ECO;Professeur des écoles, instituteur et assimilé;Non;F;AGLIARDI;Virginie;15/06/1991;Non +13;Bouches-du-Rhône;05;5ème circonscription;9;95;F;RACON-BOUZON;Cathy;22/11/1976;ENS;Cadre administratif et commercial d'entreprise;Oui;M;DEIDDA;Clément;19/02/1990;Non +13;Bouches-du-Rhône;05;5ème circonscription;10;35;F;MANIVET;Marine;10/06/1993;REC;Cadre administratif et commercial d'entreprise;Non;M;DURIEUX;Louis-Xavier;24/10/2001;Non +13;Bouches-du-Rhône;05;5ème circonscription;11;100;F;MALHOLE;Nathalie;17/06/1963;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;EPPSTEIN;Gérard;17/08/1946;Non +13;Bouches-du-Rhône;05;5ème circonscription;12;69;M;VINAPON;Georges;22/04/1963;DVG;Profession libérale;Non;M;BOURGEON;Stéphane;23/02/1970;Non +13;Bouches-du-Rhône;05;5ème circonscription;13;106;F;DURAND;Céline;08/02/1981;ECO;Profession de l'information, des arts et des spectacles;Non;M;FORNO;Yannick;15/08/1974;Non +13;Bouches-du-Rhône;05;5ème circonscription;14;103;M;DAVI;Hendrik;21/12/1977;NUPES;Professeur, profession scientifique;Non;F;TOURNIER;Pauline;03/11/1985;Non +13;Bouches-du-Rhône;05;5ème circonscription;15;190;F;CHAMAYOU;Anne;22/09/1976;DIV;Ingénieur et cadre technique d'entreprise;Non;M;BISQUERRA;Alexandre;04/08/1986;Non +13;Bouches-du-Rhône;05;5ème circonscription;16;102;M;VINCETTI;Quentin;08/01/1996;ECO;Chef d'entreprise de 10 salariés ou plus;Non;M;BICHI;Arnaud;03/05/1999;Non +13;Bouches-du-Rhône;05;5ème circonscription;17;93;F;LAMBERT;Sandrine;25/05/1991;RN;Technicien;Non;M;LIQUORI;Franck;19/08/1964;Non +13;Bouches-du-Rhône;06;6ème circonscription;1;196;M;GOULTINE;Eddie;19/03/1994;DVG;Chef d'entreprise de 10 salariés ou plus;Non;M;ILONGO;Wilfried;16/10/1977;Non +13;Bouches-du-Rhône;06;6ème circonscription;2;54;F;BEZ;Éléonore;24/06/1976;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PASQUINI;Claude;09/04/1954;Non +13;Bouches-du-Rhône;06;6ème circonscription;3;142;M;JOUBERT;Michel;24/08/1950;DSV;Profession libérale;Non;F;GAUTHIER;Annie;08/11/1945;Non +13;Bouches-du-Rhône;06;6ème circonscription;4;90;F;HOLAGNE;Magali;22/07/1987;NUPES;Professeur, profession scientifique;Non;M;SEMERIVA;Pierre;15/10/1965;Non +13;Bouches-du-Rhône;06;6ème circonscription;5;171;F;HAMICHE;Fazia;15/09/1970;ECO;Commerçant et assimilé;Non;M;CAMERA;Laurent;01/12/1972;Non +13;Bouches-du-Rhône;06;6ème circonscription;6;154;F;MOREL;Véronique Catherine Corinne;12/01/1961;DXG;Employé civil et agent de service de la fonction publique;Non;F;LIGNON;Cosette;30/03/1951;Non +13;Bouches-du-Rhône;06;6ème circonscription;7;148;M;REAULT;Didier;22/12/1967;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;SANTELLI;Thierry;21/07/1970;Non +13;Bouches-du-Rhône;06;6ème circonscription;8;37;F;HOCINI;Sophia;23/03/1993;DVG;Profession intermédiaire de la santé et du travail social;Non;M;ACCARIER;Étienne;15/06/1996;Non +13;Bouches-du-Rhône;06;6ème circonscription;9;36;M;LAUMONIER;Dominique;06/04/1966;ECO;Ingénieur et cadre technique d'entreprise;Non;F;LAPEYRE;Charlotte;16/01/1997;Non +13;Bouches-du-Rhône;06;6ème circonscription;10;87;M;DUBREUIL;Richard;21/11/1988;REC;Profession libérale;Non;F;RINALDI;Marie-Flore;14/10/1981;Non +13;Bouches-du-Rhône;06;6ème circonscription;11;158;F;LAREDO;Clara-Maria;09/06/2003;REG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CECCALDI;Mathieu;21/09/1974;Non +13;Bouches-du-Rhône;06;6ème circonscription;12;168;M;ROYER-PERREAUT;Lionel;13/11/1972;ENS;Cadre de la fonction publique;Non;F;CHARAFE;Emmanuelle;22/08/1970;Non +13;Bouches-du-Rhône;06;6ème circonscription;13;27;F;COLLETTE;Angélique;11/10/1990;ECO;Cadre administratif et commercial d'entreprise;Non;M;CORTEZ;Sylvain;26/03/1984;Non +13;Bouches-du-Rhône;06;6ème circonscription;14;109;F;GOY;Sophie;11/11/1971;DVC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;FILOSA;Patrick;05/12/1954;Non +13;Bouches-du-Rhône;07;7ème circonscription;1;88;M;SELLOUM;Arezki;11/03/1970;RN;Employé civil et agent de service de la fonction publique;Non;F;FONT;Jacqueline;16/07/1958;Non +13;Bouches-du-Rhône;07;7ème circonscription;2;117;M;AMOUCHE;Ali;23/05/1964;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LOUAFI;Abdelali;21/02/1965;Non +13;Bouches-du-Rhône;07;7ème circonscription;3;143;F;ZEROUALI;Karima;14/10/1977;DIV;Professeur, profession scientifique;Non;M;TARDIEU;Romain;30/10/1965;Non +13;Bouches-du-Rhône;07;7ème circonscription;4;147;F;PÉCOUT;Danièle Mireille Lucienne;25/10/1950;DXG;Employé civil et agent de service de la fonction publique;Non;F;ROBERT;Evelyne;18/10/1962;Non +13;Bouches-du-Rhône;07;7ème circonscription;5;184;M;PROVÉ;François;04/02/1991;ECO;Profession intermédiaire de la santé et du travail social;Non;F;OULD SLIMANE;Fadila;18/02/1963;Non +13;Bouches-du-Rhône;07;7ème circonscription;6;18;F;MERSALI;Nadia;26/07/1968;ECO;Cadre de la fonction publique;Non;F;ARMOGATHE;Sophie;14/02/2000;Non +13;Bouches-du-Rhône;07;7ème circonscription;7;24;M;DELOGU;Sébastien;08/06/1987;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;F;HAMADI;Farida;12/10/1980;Non +13;Bouches-du-Rhône;07;7ème circonscription;8;9;M;LONGO;Lorenzo;06/11/2002;REC;Elève, étudiant;Non;M;BOETTO;Julien;29/06/1990;Non +13;Bouches-du-Rhône;07;7ème circonscription;9;144;F;BOVÉ;Sandrine;30/07/1964;ECO;Profession libérale;Non;F;PAOLINI;Mylène;06/06/1973;Non +13;Bouches-du-Rhône;07;7ème circonscription;10;203;F;MEUCHE;Jacobine;07/02/1966;ECO;Professeur, profession scientifique;Non;M;MONTERO;Richard;08/04/1995;Non +13;Bouches-du-Rhône;07;7ème circonscription;11;26;M;CHABOUNI;Nourdine;08/12/1967;DIV;Ingénieur et cadre technique d'entreprise;Non;F;SADELLI;Cindy;27/08/1991;Non +13;Bouches-du-Rhône;07;7ème circonscription;12;66;M;PERNICE;Stéphane;06/08/1975;DXG;Professeur, profession scientifique;Non;F;ROMAGNÉ;Nathalie;06/07/1970;Non +13;Bouches-du-Rhône;07;7ème circonscription;13;195;M;DELERIA;Raymond;11/07/1949;UDI;Ancien cadre;Non;F;THAGOUTI;Rafika;21/05/1967;Non +13;Bouches-du-Rhône;07;7ème circonscription;14;187;M;AHAMADA;Saïd;07/11/1972;ENS;Cadre de la fonction publique;Oui;F;CHABROL;Brigitte;26/10/1958;Non +13;Bouches-du-Rhône;08;8ème circonscription;1;8;M;BAZZALI;Rémy;20/10/1974;DXG;Technicien;Non;F;FRESSIGNAUD;Véronique;02/04/1963;Non +13;Bouches-du-Rhône;08;8ème circonscription;2;173;F;IMBERT;Sophie;09/04/1973;DIV;Commerçant et assimilé;Non;M;BEAUDEAU;Christophe;08/07/1971;Non +13;Bouches-du-Rhône;08;8ème circonscription;3;180;M;AKSIL;Boualam;29/12/1960;ECO;Ancien employé;Non;F;SASSI;Monia;07/05/1973;Non +13;Bouches-du-Rhône;08;8ème circonscription;4;52;M;FARGE;Jean-Michel;23/02/1967;REC;Commerçant et assimilé;Non;M;BAUDINO;Antoine;29/01/1992;Non +13;Bouches-du-Rhône;08;8ème circonscription;5;47;M;DELIGNY;Eric;26/10/1967;NUPES;Technicien;Non;F;COLOMBAN;Nathalie;13/06/1963;Non +13;Bouches-du-Rhône;08;8ème circonscription;6;21;M;GAGO-CHIDAINE;Victor;18/03/1985;ECO;Employé de commerce;Non;F;POUESSEL;Catherine;26/11/1951;Non +13;Bouches-du-Rhône;08;8ème circonscription;7;50;M;MEHL;Daniel;30/01/1949;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;DAUDE;Claire;09/05/1970;Non +13;Bouches-du-Rhône;08;8ème circonscription;8;108;M;ZULESI;Jean-Marc;06/06/1988;ENS;Ingénieur et cadre technique d'entreprise;Oui;M;VERAN;Philippe;16/10/1965;Non +13;Bouches-du-Rhône;08;8ème circonscription;9;73;M;TONUSSI;Romain;09/04/1996;RN;Profession intermédiaire administrative de la fonction publique;Non;M;CAPTIER;Daniel;21/12/1959;Non +13;Bouches-du-Rhône;08;8ème circonscription;10;6;M;YTIER;David;05/10/1990;LR;Professeur, profession scientifique;Non;F;MICELI-HOUDAIS;Sylvie;05/12/1980;Non +13;Bouches-du-Rhône;08;8ème circonscription;11;140;F;GALHARAGUE;Edith;16/11/1950;DSV;Ancien employé;Non;M;ERMACORA;Yvon;08/10/1946;Non +13;Bouches-du-Rhône;09;9ème circonscription;1;68;M;OTCHAKOVSKY;François;01/04/1972;DXG;Professeur, profession scientifique;Non;M;CLOREC;Jean-Marie;15/04/1952;Non +13;Bouches-du-Rhône;09;9ème circonscription;2;191;M;LACHIQUE;Simon;02/10/1971;ECO;Profession libérale;Non;F;PASCAL;Michèle;25/11/1954;Non +13;Bouches-du-Rhône;09;9ème circonscription;3;201;M;MICHEL;Aurélien;28/02/1982;DIV;Policier et militaire;Non;F;BOATTI;Marido;01/10/1967;Non +13;Bouches-du-Rhône;09;9ème circonscription;4;198;M;BENARIOUA;Rebia;30/01/1953;DVG;Ancien cadre;Non;M;GONZADI;Michel;12/09/1959;Non +13;Bouches-du-Rhône;09;9ème circonscription;5;15;F;LEGUEM;Laurence;11/05/1967;REC;Artisan;Non;F;ALLIONE;Laura;16/02/1997;Non +13;Bouches-du-Rhône;09;9ème circonscription;6;43;M;TROTTMANN;Lucas;21/04/1992;NUPES;Cadre de la fonction publique;Non;F;SAMBOU SAIVET;Bernadette;02/10/1979;Non +13;Bouches-du-Rhône;09;9ème circonscription;7;131;F;KNEZEVIC;Hélène;06/05/1969;DSV;Cadre de la fonction publique;Non;M;BLAISE;Arnaud;12/01/1990;Non +13;Bouches-du-Rhône;09;9ème circonscription;8;82;M;GIBERTI;Roland;02/03/1951;LR;Ancien cadre;Non;F;SALVO;Arlette;13/03/1946;Non +13;Bouches-du-Rhône;09;9ème circonscription;9;38;M;REYNAUD;Jean;20/04/1947;REG;Ancien cadre;Non;F;BELHOMME;Delphine;23/06/1969;Non +13;Bouches-du-Rhône;09;9ème circonscription;10;94;M;MAS-FRAISSINET;Bertrand;18/10/1973;ENS;Cadre de la fonction publique;Non;F;GUIDET;Flora;11/09/1974;Non +13;Bouches-du-Rhône;09;9ème circonscription;11;104;M;SCHIPANI;Giovanni;02/08/1990;DVD;Cadre administratif et commercial d'entreprise;Non;M;SZABO;Frédéric;17/04/1966;Non +13;Bouches-du-Rhône;09;9ème circonscription;12;126;F;RAYNAUD;Coralie;03/11/1977;DXG;Professeur, profession scientifique;Non;M;GUIGUE;Jean;15/11/1957;Non +13;Bouches-du-Rhône;09;9ème circonscription;13;20;M;COMBO;Daniel;05/01/1970;ECO;Employé civil et agent de service de la fonction publique;Non;M;OLLIER;Gilbert;01/06/1965;Non +13;Bouches-du-Rhône;09;9ème circonscription;14;89;F;BREGEON;Amélie;02/09/1985;DVC;Cadre de la fonction publique;Non;M;DEMECH;Eric;07/10/1959;Non +13;Bouches-du-Rhône;09;9ème circonscription;15;29;F;MÉLIN;Joëlle;26/03/1950;RN;Profession libérale;Non;M;ITRAC;Hervé;27/01/1952;Non +13;Bouches-du-Rhône;10;10ème circonscription;1;141;F;MESURE;Marina;12/07/1989;NUPES;Cadre de la fonction publique;Non;M;BESSAIH;Jimmy;02/11/1987;Non +13;Bouches-du-Rhône;10;10ème circonscription;2;48;M;DAUDE;Patrice;19/10/1972;ECO;Technicien;Non;F;SEVILLA DELEUZIERE;Sandrine;26/11/1970;Non +13;Bouches-du-Rhône;10;10ème circonscription;3;30;M;COURTARO;Jean-Philippe;17/09/1989;REC;Profession libérale;Non;F;BENALIKHOUDJA;Jennifer;25/12/1989;Non +13;Bouches-du-Rhône;10;10ème circonscription;4;199;M;VALIENTE;Jean-Claude;26/04/1957;DXG;Professeur, profession scientifique;Non;F;PERILLAT;Renée;22/11/1948;Non +13;Bouches-du-Rhône;10;10ème circonscription;5;137;F;GOZZI;Magali;24/05/1974;REG;Cadre de la fonction publique;Non;M;PERES-CESARI;Cyril;17/08/2001;Non +13;Bouches-du-Rhône;10;10ème circonscription;6;166;F;BRUN;Stéphanie;06/03/1972;DSV;Ancien employé;Non;M;LLEDO;Frédéric;07/08/1957;Non +13;Bouches-du-Rhône;10;10ème circonscription;7;49;M;GONZALEZ;José;28/04/1943;RN;Ancien employé;Non;M;SIMOND;Stéphane;29/01/1971;Non +13;Bouches-du-Rhône;10;10ème circonscription;8;114;F;COUTENET;Nathalie;19/06/1967;DVC;Profession intermédiaire administrative de la fonction publique;Non;F;CARDI;Chantal;18/02/1949;Non +13;Bouches-du-Rhône;10;10ème circonscription;9;19;M;PEROTTINO;Serge;22/12/1965;LR;Cadre administratif et commercial d'entreprise;Non;F;MIQUELLY;Véronique;15/02/1971;Non +13;Bouches-du-Rhône;10;10ème circonscription;10;80;F;COLANTONIO;Céline;03/08/1975;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;F;CARMONA;Élodie;04/08/1981;Non +13;Bouches-du-Rhône;10;10ème circonscription;11;119;M;MARTI;Robert;31/05/1951;DSV;Profession libérale;Non;F;BOUFAROUA;Wilma;27/09/1963;Non +13;Bouches-du-Rhône;10;10ème circonscription;12;169;F;BOURCET-GINER;Véronique;16/03/1964;ENS;Profession libérale;Non;M;NASLES;Olivier;25/10/1961;Non +13;Bouches-du-Rhône;10;10ème circonscription;13;72;F;DESBLANCS;Lucie;28/10/1963;ECO;Profession libérale;Non;M;OSTACCHINI;Grégory;19/09/1989;Non +13;Bouches-du-Rhône;11;11ème circonscription;1;45;M;BRUN;Rodolphe;28/12/1975;ECO;Technicien;Non;F;BRUILLIAIRE;Lucienne;31/01/1950;Non +13;Bouches-du-Rhône;11;11ème circonscription;2;11;F;MARIA;Charlotte;09/06/1981;DXG;Professeur, profession scientifique;Non;F;POLI;Valérie;29/12/1969;Non +13;Bouches-du-Rhône;11;11ème circonscription;3;118;M;SALORD;Stéphane;26/01/1969;NUPES;Cadre administratif et commercial d'entreprise;Non;F;INAUDI;Rosy;25/11/1950;Non +13;Bouches-du-Rhône;11;11ème circonscription;4;132;M;EL DEBS;Sébastien;08/11/1995;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MENDRAS;Louis-Marie;05/04/1983;Non +13;Bouches-du-Rhône;11;11ème circonscription;5;81;M;PIANO;Jérémie;10/10/1994;REC;Profession libérale;Non;F;DE CORMIS;Marie;01/02/1998;Non +13;Bouches-du-Rhône;11;11ème circonscription;6;130;M;HADJALI;Romain;10/06/1989;ECO;Professeur des écoles, instituteur et assimilé;Non;F;WASSOUF;Ornella;05/04/1992;Non +13;Bouches-du-Rhône;11;11ème circonscription;7;23;F;FANFAN;Céline;18/07/1970;ECO;Employé civil et agent de service de la fonction publique;Non;F;ALTUN;Laure-Isabelle;24/02/1978;Non +13;Bouches-du-Rhône;11;11ème circonscription;8;97;M;FABRE-AUBRESPY;Hervé;20/07/1956;RN;Cadre de la fonction publique;Non;M;FUSONE;Maximilien;26/04/1980;Non +13;Bouches-du-Rhône;11;11ème circonscription;9;99;M;LAQHILA;Mohamed;03/08/1959;ENS;Profession libérale;Oui;F;CAUWEL;Françoise;09/04/1966;Non +13;Bouches-du-Rhône;11;11ème circonscription;10;150;M;LIBERMAN;Hervé;10/04/1961;UDI;Cadre administratif et commercial d'entreprise;Non;F;SOULAINE;Sandy;15/08/1974;Non +13;Bouches-du-Rhône;11;11ème circonscription;11;138;F;VIRZI;Elodie;03/01/1985;DVC;Employé administratif d'entreprise;Non;M;SEIDENBINDER;Daniel;26/01/1950;Non +13;Bouches-du-Rhône;11;11ème circonscription;12;162;M;DELALANDE;Régis;05/02/1962;REG;Cadre administratif et commercial d'entreprise;Non;F;TAUTIL;Sabine;17/06/1962;Non +13;Bouches-du-Rhône;11;11ème circonscription;13;101;M;CASTEL;Rodolph;18/11/1974;DVG;Cadre administratif et commercial d'entreprise;Non;F;MAZUEL;Geneviève;29/05/1953;Non +13;Bouches-du-Rhône;12;12ème circonscription;1;200;F;CASTANET;Audrey;08/02/1981;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;SALA;Claude;27/02/1975;Non +13;Bouches-du-Rhône;12;12ème circonscription;2;145;M;DJEDOU;Faouzi;21/03/1969;DVG;Profession libérale;Non;F;HAROUN;Houria;06/04/1988;Non +13;Bouches-du-Rhône;12;12ème circonscription;3;120;M;DELESPAUL;Hervé;03/09/1957;DSV;Ancien cadre;Non;M;RODRIGUES;Eric;30/08/1988;Non +13;Bouches-du-Rhône;12;12ème circonscription;4;41;M;CLOSTERMANN;Jacques;24/01/1950;REC;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;CONSALES;Carole;12/05/1970;Non +13;Bouches-du-Rhône;12;12ème circonscription;5;64;M;ROCHE;François;23/05/1965;DXG;Ouvrier qualifié de type industriel;Non;M;CLAVERO;Christophe;10/04/1971;Non +13;Bouches-du-Rhône;12;12ème circonscription;6;77;M;ALLISIO;Franck;04/08/1980;RN;Profession libérale;Non;F;ALARCON;Paulette;02/10/1950;Non +13;Bouches-du-Rhône;12;12ème circonscription;7;61;F;CHAUVIN;Isabelle;20/01/1971;NUPES;Professeur, profession scientifique;Non;M;PONS;Pascal;25/04/1983;Non +13;Bouches-du-Rhône;12;12ème circonscription;8;192;M;RIBEIRO;Stéphane;31/07/1970;ECO;Ingénieur et cadre technique d'entreprise;Non;M;MERABTI;Said;23/09/1955;Non +13;Bouches-du-Rhône;12;12ème circonscription;9;167;M;DIARD;Eric;21/07/1965;LR;Profession libérale;Oui;F;COLIN;Patricia;04/02/1962;Non +13;Bouches-du-Rhône;13;13ème circonscription;1;62;F;VILLECOURT-GIL;Christiane;22/02/1943;REC;Cadre de la fonction publique;Non;M;VASSEROT;Thomas;20/02/1980;Non +13;Bouches-du-Rhône;13;13ème circonscription;2;44;M;DHARRÉVILLE;Pierre;15/06/1975;NUPES;Profession de l'information, des arts et des spectacles;Oui;F;GIORGETTI;Magali;29/05/1970;Non +13;Bouches-du-Rhône;13;13ème circonscription;3;12;F;BUSSON;Stéphanie;29/04/1974;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MISTRAL;Mathieu;28/10/1979;Non +13;Bouches-du-Rhône;13;13ème circonscription;4;25;F;MAINVILLE;Marie;24/05/1958;ECO;Profession de l'information, des arts et des spectacles;Non;F;MARTINEZ;Myriam;29/12/1955;Non +13;Bouches-du-Rhône;13;13ème circonscription;5;51;M;FOUQUART;Emmanuel;30/07/1966;RN;Profession libérale;Non;F;GONZALEZ;Gisèle;11/01/1980;Non +13;Bouches-du-Rhône;13;13ème circonscription;6;182;F;FRANZI;Olivia;23/12/1980;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;LABIAD;Yunes;26/05/1970;Non +13;Bouches-du-Rhône;13;13ème circonscription;7;58;M;CHEVREUX;Joël-Pierre;01/07/1955;ECO;Profession de l'information, des arts et des spectacles;Non;M;PERBAL;Thierry;16/05/1971;Non +13;Bouches-du-Rhône;13;13ème circonscription;8;121;M;LOPEZ;Francis;29/06/1960;DIV;Technicien;Non;M;GABANOU;Grégory;27/02/1972;Non +13;Bouches-du-Rhône;13;13ème circonscription;9;39;F;ROUBY;Isabelle;07/11/1971;LR;Profession intermédiaire administrative de la fonction publique;Non;F;LEBAN;Michele;04/09/1974;Non +13;Bouches-du-Rhône;13;13ème circonscription;10;7;M;MÉTRAL;Cyril;25/06/1979;DXG;Ouvrier qualifié de type industriel;Non;F;GHERBI;Amel;13/02/1967;Non +13;Bouches-du-Rhône;13;13ème circonscription;11;76;M;BOISSIN;Thierry;17/11/1964;ENS;Profession libérale;Non;F;TAUPIN-MAYOR;Emmanuelle;15/09/1985;Non +13;Bouches-du-Rhône;14;14ème circonscription;1;75;F;CALBET;Catie;10/10/1973;REC;Ingénieur et cadre technique d'entreprise;Non;F;MERLIN;Virginie;29/11/1970;Non +13;Bouches-du-Rhône;14;14ème circonscription;2;34;M;KAVAZIAN;Alain;08/01/1955;ECO;Technicien;Non;M;SMANIOTTO;Maxence;07/04/1987;Non +13;Bouches-du-Rhône;14;14ème circonscription;3;170;M;BOULAN;Michel;02/08/1963;LR;Profession libérale;Non;F;VERSINI;Corinne;28/04/1961;Non +13;Bouches-du-Rhône;14;14ème circonscription;4;16;M;BONIN;Fabrice;04/04/1968;DSV;Profession libérale;Non;F;LATHUILE;Marianne;06/10/1967;Non +13;Bouches-du-Rhône;14;14ème circonscription;5;78;F;COCH;Emeline;25/03/1982;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;RENARD;Jean-Pierre;15/03/1947;Non +13;Bouches-du-Rhône;14;14ème circonscription;6;135;F;LE CACHEUX;Hélène;16/06/1966;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;SALVAT;Jean-Yves;20/04/1972;Non +13;Bouches-du-Rhône;14;14ème circonscription;7;79;F;MICHON;Valérie;26/03/1968;ECO;Professeur, profession scientifique;Non;F;MEZIGHEN;Yasmina;17/10/1954;Non +13;Bouches-du-Rhône;14;14ème circonscription;8;175;F;ROCHE;Anne;10/12/1938;DXG;Professeur, profession scientifique;Non;F;ZERGHIT;Nejima;16/12/1948;Non +13;Bouches-du-Rhône;14;14ème circonscription;9;159;M;LONG;Cédric;22/08/1981;REG;Militaire du contingent;Non;M;PATOU;Arthur;27/06/2001;Non +13;Bouches-du-Rhône;14;14ème circonscription;10;22;F;PETEL;Anne-Laurence;08/02/1970;ENS;Cadre de la fonction publique;Oui;F;PIGNATEL;Josy;14/12/1952;Non +13;Bouches-du-Rhône;14;14ème circonscription;11;71;F;DE BUSSCHERE;Charlotte;19/08/1965;ECO;Professeur, profession scientifique;Non;M;ARLAUD;Jean-Philippe;27/08/1954;Non +13;Bouches-du-Rhône;14;14ème circonscription;12;151;M;BOURGAREL;Rémi;27/05/1967;DVC;Ingénieur et cadre technique d'entreprise;Non;F;GRASSI;Jeanne;05/05/1980;Non +13;Bouches-du-Rhône;15;15ème circonscription;1;63;M;REYNÈS;Bernard;18/10/1953;LR;Ancienne profession intermédiaire;Oui;M;GINOUX;Philippe;07/12/1970;Non +13;Bouches-du-Rhône;15;15ème circonscription;2;31;F;TESTUT;Anne;14/11/1966;DXG;Employé de commerce;Non;F;ZEMMIT;Fatima;27/01/1943;Non +13;Bouches-du-Rhône;15;15ème circonscription;3;10;M;VERNAY;Tanguy;02/06/1982;DIV;Commerçant et assimilé;Non;F;BRUNEAU;Marianne;01/03/1989;Non +13;Bouches-du-Rhône;15;15ème circonscription;4;105;F;CHARIN;Simone;05/02/1944;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;FAVREAU;Didier;24/10/1959;Non +13;Bouches-du-Rhône;15;15ème circonscription;5;133;F;JUNG;Michèle;18/01/1957;NUPES;Cadre de la fonction publique;Non;F;AÏDAROUS;Wassila;04/09/1984;Non +13;Bouches-du-Rhône;15;15ème circonscription;6;152;F;ANZALONE;Marie-Laurence;28/05/1970;ENS;Employé administratif d'entreprise;Non;M;SERRUS;Jean-Pierre;01/06/1960;Non +13;Bouches-du-Rhône;15;15ème circonscription;7;193;F;OUKKAL;Nadia;01/05/1965;DVC;Employé administratif d'entreprise;Non;M;HUGUES;Bernard;29/06/1958;Non +13;Bouches-du-Rhône;15;15ème circonscription;8;186;M;LAPEYRE;Nicolas;28/12/1987;ECO;Profession libérale;Non;F;CASANOVA;Joëlle;06/07/1960;Non +13;Bouches-du-Rhône;15;15ème circonscription;9;176;F;KLEIN;Sandrine;30/08/1969;ECO;Commerçant et assimilé;Non;F;VENANT;Cynthia;19/08/1976;Non +13;Bouches-du-Rhône;15;15ème circonscription;10;123;F;BANDERIER-ZAHIR;Mounia;05/01/1982;DVG;Employé civil et agent de service de la fonction publique;Non;F;LAFLUTTE;Martine;01/01/1961;Non +13;Bouches-du-Rhône;15;15ème circonscription;11;65;M;BAUBRY;Romain;28/01/1989;RN;Policier et militaire;Non;F;ALEX;Chantal;11/12/1957;Non +13;Bouches-du-Rhône;15;15ème circonscription;12;98;F;MARCHAND;Audrey;08/10/1991;REC;Employé administratif d'entreprise;Non;F;JUILLARD;Jocelyne;30/11/1961;Non +13;Bouches-du-Rhône;16;16ème circonscription;1;67;M;TACHE DE LA PAGERIE;Emmanuel;20/02/1975;RN;Cadre de la fonction publique;Non;F;VILLANOVE;Valérie;04/09/1958;Non +13;Bouches-du-Rhône;16;16ème circonscription;2;32;M;CESARI;Cédric;08/08/1992;ECO;Ingénieur et cadre technique d'entreprise;Non;F;QUÉRÉ;Estelle;14/01/1973;Non +13;Bouches-du-Rhône;16;16ème circonscription;3;156;M;REMISE;Jean-Guillaume;11/05/1978;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;PARENT;Francine;04/06/1948;Non +13;Bouches-du-Rhône;16;16ème circonscription;4;112;M;CAILLAULT;Christophe;28/10/1966;NUPES;Cadre de la fonction publique;Non;F;ANDRIEU;Marie;24/06/1978;Non +13;Bouches-du-Rhône;16;16ème circonscription;5;5;M;DUBOST;Guy;30/12/1953;DXG;Ancien ouvrier;Non;M;CHRISTINY;Raynal;11/10/1948;Non +13;Bouches-du-Rhône;16;16ème circonscription;6;160;F;CAILLAUD;Mariana;16/09/1984;ENS;Profession libérale;Non;M;DE CAROLIS;Patrick;19/11/1953;Non +13;Bouches-du-Rhône;16;16ème circonscription;7;185;M;MELONI;Jean-Baptiste;29/03/1988;DIV;Artisan;Non;F;MERE;Fantine;13/05/1991;Non +13;Bouches-du-Rhône;16;16ème circonscription;8;129;F;LAUPIES;Valérie;08/02/1966;DSV;Professeur des écoles, instituteur et assimilé;Non;F;CHENEL;Sandrine;10/07/1968;Non +13;Bouches-du-Rhône;16;16ème circonscription;9;164;F;PASQUINI;Sylvie;22/02/1979;DXG;Employé civil et agent de service de la fonction publique;Non;M;LECLERC;Bruno;04/08/1958;Non +13;Bouches-du-Rhône;16;16ème circonscription;10;161;M;SANCHEZ;Grégory;10/05/1979;ECO;Employé administratif d'entreprise;Non;F;PEREZ;Angélique;30/12/1980;Non +14;Calvados;01;1ère circonscription;1;56;M;THOMAS;Florent;10/07/1977;ECO;Profession libérale;Non;F;TERRÉE;Emilie;03/04/1995;Non +14;Calvados;01;1ère circonscription;2;5;M;CORBERY;Blaise;26/01/1961;DVG;Profession libérale;Non;M;BOTTE;Thomas;20/11/1991;Non +14;Calvados;01;1ère circonscription;3;9;M;CASEVITZ;Pierre;29/06/1971;DXG;Professeur, profession scientifique;Non;F;SEGUIN;Brigitte;27/07/1962;Non +14;Calvados;01;1ère circonscription;4;41;F;CHAHINE;Anne-Laure;14/12/1975;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BOULESTEIX;Richard;31/08/1963;Non +14;Calvados;01;1ère circonscription;5;15;F;SIMONNET;Sophie;15/01/1971;LR;Professeur, profession scientifique;Non;F;LETELLIER;Myriam;12/09/1972;Non +14;Calvados;01;1ère circonscription;6;35;F;LIBAN;Josseline;23/12/1954;RN;Ancien cadre;Non;M;LEMYRE;Djessy;08/12/2002;Non +14;Calvados;01;1ère circonscription;7;21;F;BLOUIN;Marlène;12/04/1972;DSV;Profession de l'information, des arts et des spectacles;Non;F;GUINAUDEAU;Véronique;14/01/1969;Non +14;Calvados;01;1ère circonscription;8;12;M;LE VIGOUREUX;Fabrice;27/08/1969;ENS;Professeur, profession scientifique;Oui;F;ANGOT-HASTAIN;Léonie;16/11/1975;Non +14;Calvados;01;1ère circonscription;9;47;M;GALLOIS;Jérémy;17/02/1997;DVG;Employé de commerce;Non;M;LORGERÉ;William;22/03/1997;Non +14;Calvados;01;1ère circonscription;10;50;F;FOURREAU;Emma;01/10/1999;NUPES;Elève, étudiant;Non;M;GUIDI;Aurélien;17/10/1984;Non +14;Calvados;02;2ème circonscription;1;2;F;BROU;Camille;12/07/1984;LR;Cadre administratif et commercial d'entreprise;Non;M;GÉRAULT;Franck;08/07/1972;Non +14;Calvados;02;2ème circonscription;2;14;M;GARCIA;Christophe;18/09/1965;DXG;Employé civil et agent de service de la fonction publique;Non;F;PETIT;Sandrine;11/03/1971;Non +14;Calvados;02;2ème circonscription;3;32;F;DESLANDES;Céline;04/11/1981;RN;Employé de commerce;Non;F;GINGOIS;Claudine;05/08/1947;Non +14;Calvados;02;2ème circonscription;4;58;F;CRONIER;Virginie;22/09/1978;DVC;Professeur, profession scientifique;Non;M;BOURLET;Morgan;16/06/1978;Non +14;Calvados;02;2ème circonscription;5;57;F;CAILLEMER;Esteline;20/06/1976;REC;Professeur, profession scientifique;Non;M;PARIS;Jean;07/11/1949;Non +14;Calvados;02;2ème circonscription;6;3;F;FRANCOISE;Angélique;22/07/1987;DSV;Profession intermédiaire administrative de la fonction publique;Non;M;RICOUL;Serge;21/11/1961;Non +14;Calvados;02;2ème circonscription;7;53;F;DUMONT PRIEUX;Sylvie;03/10/1966;ENS;Employé civil et agent de service de la fonction publique;Non;M;FRATY;Grégoire;23/04/1988;Non +14;Calvados;02;2ème circonscription;8;13;M;AMBOURG;Philippe;23/03/1961;DSV;Policier et militaire;Non;M;DE NANTEUIL;Pierre-Louis;23/02/1962;Non +14;Calvados;02;2ème circonscription;9;46;M;LERENDU;Julien;04/08/1991;ECO;Profession intermédiaire de la santé et du travail social;Non;F;LEBON;Sophie;26/12/1988;Non +14;Calvados;02;2ème circonscription;10;4;M;DELAPORTE;Arthur;07/10/1991;NUPES;Professeur, profession scientifique;Non;F;DUMONT;Laurence;02/06/1958;Oui +14;Calvados;02;2ème circonscription;11;49;M;SÉNÉTAIRE;Vincent;17/12/1993;DXG;Ingénieur et cadre technique d'entreprise;Non;M;BERTRAND;Nicolas;02/03/1987;Non +14;Calvados;03;3ème circonscription;1;22;F;LECONTE;Elisabeth;21/01/1964;DXG;Cadre administratif et commercial d'entreprise;Non;M;PRAT;Didier;19/09/1952;Non +14;Calvados;03;3ème circonscription;2;40;M;MAFIODO;Steven;06/12/1992;DSV;Employé administratif d'entreprise;Non;M;DEFRETIN;Quentin;30/01/1989;Non +14;Calvados;03;3ème circonscription;3;45;M;PATRIER-LEITUS;Jérémie;07/03/1989;ENS;Cadre de la fonction publique;Non;F;ROMAGNÉ;Sandrine;29/07/1973;Non +14;Calvados;03;3ème circonscription;4;61;F;PORTE;Nathalie;02/02/1973;LR;Technicien;Oui;M;DEWAËLE;Kévin;11/07/1984;Non +14;Calvados;03;3ème circonscription;5;25;M;FAUVAGE;Edouard;06/11/1990;REC;Militaire du contingent;Non;F;REBOURS;Mireille;10/04/1954;Non +14;Calvados;03;3ème circonscription;6;29;F;VILMET;Martine;11/07/1960;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;F;HENRY;Chantal;01/04/1972;Non +14;Calvados;03;3ème circonscription;7;59;F;SÉNÉCAL;Sylvie;06/08/1961;DVG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;HAMICI;Sofiane;30/01/1997;Non +14;Calvados;03;3ème circonscription;8;18;M;LANGEVIN;Michel;06/01/1961;DXG;Professeur, profession scientifique;Non;F;RIVIÈRE;Sylvie;27/01/1961;Non +14;Calvados;03;3ème circonscription;9;54;M;CANU;Didier;30/11/1960;NUPES;Ancienne profession intermédiaire;Non;F;COTTIN;Sylvie;19/04/1961;Non +14;Calvados;03;3ème circonscription;10;20;M;GUZMAN VELEZ;Johann;06/01/1975;ECO;Policier et militaire;Non;F;MONTIER;Ericka;17/08/1977;Non +14;Calvados;04;4ème circonscription;1;7;M;BLANCHET;Christophe;09/04/1973;ENS;Commerçant et assimilé;Oui;F;GADENNE;Audrey;12/03/1969;Non +14;Calvados;04;4ème circonscription;2;19;F;GAUGAIN;Sophie;27/08/1974;LR;Cadre administratif et commercial d'entreprise;Non;M;BUISSON;Christophe;10/09/1967;Non +14;Calvados;04;4ème circonscription;3;60;F;PERRIN;Florence;28/04/1970;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BLOYET;Laurent;29/12/1961;Non +14;Calvados;04;4ème circonscription;4;34;M;MOURARET;Pierre;15/09/1949;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;AMBROISE;Jocelyne;23/09/1966;Non +14;Calvados;04;4ème circonscription;5;43;F;COTHIER;Florence;22/12/1951;REC;Ancien cadre;Non;M;BIETTE;Gérald;18/01/1954;Non +14;Calvados;04;4ème circonscription;6;24;M;LORIMIER;Manuel;16/04/1975;ECO;Cadre administratif et commercial d'entreprise;Non;F;MARTIN;Christine;23/02/1965;Non +14;Calvados;04;4ème circonscription;7;42;M;LAGARDE;Louis;05/05/1958;DVC;Professeur, profession scientifique;Non;F;AVÈQUE;Christine;08/06/1975;Non +14;Calvados;04;4ème circonscription;8;16;M;POIROT-BOURDAIN;Patrick;25/04/1945;DXG;Ancien cadre;Non;F;LECARPENTIER;Patricke;04/04/1952;Non +14;Calvados;04;4ème circonscription;9;33;M;BELONCLE;Patrick;08/11/1950;RN;Commerçant et assimilé;Non;M;FLORCHINGER;Marcel;31/08/1942;Non +14;Calvados;05;5ème circonscription;1;36;F;HAREL;Valérie;07/02/1972;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;DUPONT-FEDERICI;Thomas;20/08/1981;Non +14;Calvados;05;5ème circonscription;2;6;M;BOUYX;Bertrand;26/05/1970;ENS;Professeur, profession scientifique;Oui;M;LEMARESQUIER;David;31/01/1974;Non +14;Calvados;05;5ème circonscription;3;30;M;CHAPRON;Philippe;19/05/1956;RN;Ancien cadre;Non;M;EURY;Gilles;27/12/1988;Non +14;Calvados;05;5ème circonscription;4;8;F;BOISSEL;Anne;09/05/1974;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;GÉREUX;Jean-Alexis;04/10/1992;Non +14;Calvados;05;5ème circonscription;5;51;M;BRUNSCHVICG;Xavier;08/06/1973;DVG;Cadre administratif et commercial d'entreprise;Non;M;RIZZO;Stéphane;12/09/1973;Non +14;Calvados;05;5ème circonscription;6;26;M;NOUVELOT;Cédric;17/09/1976;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;VOISIN;Marine;18/08/1987;Non +14;Calvados;05;5ème circonscription;7;48;M;MULLER;Nicolas;20/04/1979;DVD;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;MULLER;Benjamin;18/12/1987;Non +14;Calvados;05;5ème circonscription;8;28;M;FRIQUET;Michaël;16/02/1970;ECO;Employé de commerce;Non;F;LEBON;Elise;13/02/1991;Non +14;Calvados;05;5ème circonscription;9;11;F;PELTRE;Isabelle;09/11/1970;DXG;Professeur, profession scientifique;Non;F;GILBERT;Patricia;03/06/1968;Non +14;Calvados;05;5ème circonscription;10;39;M;MESGUICH;Philippe;19/08/1966;REC;Cadre administratif et commercial d'entreprise;Non;F;WASICEK;Isabelle;17/09/1956;Non +14;Calvados;06;6ème circonscription;1;27;F;LAHALLE;Lynda;19/03/1968;DVD;Cadre administratif et commercial d'entreprise;Non;M;GASCOUIN;Sylvain;02/04/1972;Non +14;Calvados;06;6ème circonscription;2;38;F;BORNE;Elisabeth;18/04/1961;ENS;Ingénieur et cadre technique d'entreprise;Non;M;SERTIN;Freddy;07/02/1980;Non +14;Calvados;06;6ème circonscription;3;44;F;SAAD;Jemâa;29/09/1967;DVG;Profession intermédiaire de la santé et du travail social;Non;M;DUBOIS;Julien;25/12/1983;Non +14;Calvados;06;6ème circonscription;4;10;F;GEORGET;Pascale;24/02/1955;DXG;Commerçant et assimilé;Non;F;LASNEL;Marianne;13/06/1974;Non +14;Calvados;06;6ème circonscription;5;37;M;GUETTIER;Mickaël;13/07/1973;DSV;Chef d'entreprise de 10 salariés ou plus;Non;M;COUPPEY;Arnaud;22/01/1976;Non +14;Calvados;06;6ème circonscription;6;4;M;ORMAIN;François;08/03/1966;DVC;Profession de l'information, des arts et des spectacles;Non;F;CANTAIX-MORIN;Isabelle;10/02/1979;Non +14;Calvados;06;6ème circonscription;7;23;M;GAUCHARD;Noé;06/01/2000;NUPES;Elève, étudiant;Non;F;RILHAC;Dominique;02/06/1953;Non +14;Calvados;06;6ème circonscription;8;55;F;MBELO;Anne-Lyse;01/05/2002;DVG;Elève, étudiant;Non;M;SCHERRER;Gilles;30/03/1957;Non +14;Calvados;06;6ème circonscription;9;52;F;DUPONT;Valérie;16/09/1957;REC;Artisan;Non;M;PERREAUX;Jean-Paul;21/05/1965;Non +14;Calvados;06;6ème circonscription;10;17;M;BATTAIL;Bruno;18/11/1959;ECO;Profession de l'information, des arts et des spectacles;Non;F;MAGNIN;Véronique;22/07/1958;Non +14;Calvados;06;6ème circonscription;11;31;M;ROY;Jean-Philippe;05/03/1966;RN;Cadre administratif et commercial d'entreprise;Non;F;DANVY;Gaëlle;15/08/1975;Non +15;Cantal;01;1ère circonscription;1;2;M;DESCOEUR;Vincent;13/12/1962;LR;Professeur, profession scientifique;Oui;F;LANTUEJOUL;Isabelle;12/05/1961;Non +15;Cantal;01;1ère circonscription;2;5;M;DAUVILLIER;Rémy;02/01/1966;DXG;Professeur, profession scientifique;Non;M;DICHANT;Julien;18/05/1977;Non +15;Cantal;01;1ère circonscription;3;16;M;TEYSSEDOU;Michel;20/04/1954;ENS;Ancien agriculteur exploitant;Non;F;MURATET;Anne-Marie;07/10/1957;Non +15;Cantal;01;1ère circonscription;4;13;M;DE BALINCOURT;Guillaume;28/12/1993;REC;Profession intermédiaire de la santé et du travail social;Non;F;THEVENET;Isabelle;27/07/1963;Non +15;Cantal;01;1ère circonscription;5;11;F;GALLAIS;Dorothée;23/09/1970;RN;Commerçant et assimilé;Non;M;MAISONNEUVE;Pierre;25/05/1990;Non +15;Cantal;01;1ère circonscription;6;8;M;MACIAZEK;Michel;20/07/1957;NUPES;Ouvrier agricole;Non;F;BAPTISTE;Viviane;19/07/1948;Non +15;Cantal;01;1ère circonscription;7;3;M;DELPONT;Jean-Pierre;22/07/1954;DVD;Profession libérale;Non;F;BOUSSAGOL;Marie;20/02/1962;Non +15;Cantal;02;2ème circonscription;1;4;M;BONY;Jean-Yves;11/03/1955;LR;Agriculteur sur moyenne exploitation;Oui;F;BESSE;Marina;19/12/1981;Non +15;Cantal;02;2ème circonscription;2;10;F;GUIBERT;Martine;13/08/1961;ENS;Cadre de la fonction publique;Non;M;TILMANT-TATISCHEFF;Vladimir;02/10/1971;Non +15;Cantal;02;2ème circonscription;3;6;F;CHEIKHI;Mona;11/11/1987;DXG;Professeur, profession scientifique;Non;M;GEINDREAU;Dominique;22/02/1951;Non +15;Cantal;02;2ème circonscription;4;12;M;LACROIX;Gilles;07/06/1965;RN;Commerçant et assimilé;Non;F;FLOURY;Véronique;19/04/1969;Non +15;Cantal;02;2ème circonscription;5;14;M;DELMOURE;Jean-René;14/08/1962;ECO;Commerçant et assimilé;Non;F;NEY;Patricia;13/04/1962;Non +15;Cantal;02;2ème circonscription;6;15;M;CHEYROL;Antoine;19/04/2000;REC;Cadre administratif et commercial d'entreprise;Non;F;GARNIER;Aline;19/03/1997;Non +15;Cantal;02;2ème circonscription;7;7;M;TOTY;Louis;30/04/1958;DVD;Profession libérale;Non;F;HUBERT;Marie Thérèse;12/06/1956;Non +15;Cantal;02;2ème circonscription;8;9;F;MORILLE;Mélody;03/06/2002;NUPES;Elève, étudiant;Non;M;CHASSANG;Dominique;11/06/1968;Non +16;Charente;01;1ère circonscription;1;3;F;MARTINESE;Anna;21/04/1954;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;DELAIR;Alain;13/05/1949;Non +16;Charente;01;1ère circonscription;2;5;M;NICOLAS;Olivier;14/11/1981;DXG;Ingénieur et cadre technique d'entreprise;Non;F;THOMAS;Corinne;01/08/1967;Non +16;Charente;01;1ère circonscription;3;11;M;DE LORGERIL;Dominique;13/04/1962;REC;Cadre de la fonction publique;Non;M;GONZALEZ;Rémi;15/07/1996;Non +16;Charente;01;1ère circonscription;4;2;M;MESNIER;Thomas;04/03/1986;ENS;Cadre de la fonction publique;Oui;F;REGRENIL;Laëtitia;13/08/1973;Non +16;Charente;01;1ère circonscription;5;30;F;BERTHELOT;Corinne;01/05/1965;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;GALLET;Olivier;05/07/1956;Non +16;Charente;01;1ère circonscription;6;21;M;PILATO;René;31/08/1962;NUPES;Professeur, profession scientifique;Non;F;MARCHAND;Aude;14/02/1972;Non +16;Charente;01;1ère circonscription;7;4;F;CLERGEAU;Alice;08/06/1998;LR;Elève, étudiant;Non;M;BAYLAC;Jean;14/06/1995;Non +16;Charente;01;1ère circonscription;8;26;M;DAURÉ;Jean-François;11/09/1958;DVG;Ancien cadre;Non;F;VINET;Maryline;17/02/1966;Non +16;Charente;02;2ème circonscription;1;7;F;GORIAUX;Daphné;30/06/1993;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;HOFFMANN;Adrien;17/03/1996;Non +16;Charente;02;2ème circonscription;2;12;F;MARSAUD;Sandra;02/01/1974;ENS;Ancien cadre;Oui;M;MASSACRET;Ludovic;20/12/1978;Non +16;Charente;02;2ème circonscription;3;22;M;CAULLIEZ;Quentin;01/02/1994;ECO;Policier et militaire;Non;M;CAULLIEZ;Aurélien;25/02/1992;Non +16;Charente;02;2ème circonscription;4;23;M;DESBROSSE;Jérôme;20/08/1969;DVG;Profession intermédiaire de la santé et du travail social;Non;F;GIMENEZ;Virginie;22/03/1978;Non +16;Charente;02;2ème circonscription;5;27;M;SAUTON;William;14/11/1969;DSV;Artisan;Non;M;PAGNOUX;Éric;10/05/1971;Non +16;Charente;02;2ème circonscription;6;15;F;BATAILLE;Carole;25/09/1974;ECO;Employé civil et agent de service de la fonction publique;Non;M;SOUCHAUD;Dominique;23/07/1959;Non +16;Charente;02;2ème circonscription;7;14;M;LELIÈVRE;Jean-Hubert;09/08/1976;LR;Cadre de la fonction publique;Non;F;AUTHIER;Claire;15/06/1963;Non +16;Charente;02;2ème circonscription;8;6;F;BESSAS;Françoise;26/12/1965;DXG;Personnel des services directs aux particuliers;Non;M;COURTOIS;Jean-Pierre;13/11/1947;Non +16;Charente;02;2ème circonscription;9;8;M;RAPPASSE;Marceau;29/10/1963;RN;Cadre administratif et commercial d'entreprise;Non;F;JOSLET;Nathalie;03/09/1976;Non +16;Charente;02;2ème circonscription;10;13;F;CHEVALIER;Chloé;01/11/1990;NUPES;Ouvrier agricole;Non;F;COCHE-DEQUÉANT;Mylène;14/09/1990;Non +16;Charente;03;3ème circonscription;1;19;M;CURGALI;Patrick;19/05/1953;DXG;Ancien ouvrier;Non;M;DÉFOSSEZ;Frédéric;11/12/1965;Non +16;Charente;03;3ème circonscription;2;20;F;MOCOEUR;Sylvie;03/10/1963;ENS;Commerçant et assimilé;Non;M;TOUZÉ;Jean-Pierre;26/09/1957;Non +16;Charente;03;3ème circonscription;3;16;M;LAMBERT;Jérôme;07/06/1957;DVG;Ancien cadre;Oui;F;MOUFFLET;Isabelle;24/10/1968;Non +16;Charente;03;3ème circonscription;4;29;F;NOËL;Marie-Pierre;04/12/1975;NUPES;Profession intermédiaire administrative de la fonction publique;Non;M;PEZY;Gautier;14/10/1998;Non +16;Charente;03;3ème circonscription;5;25;F;ALLONCLE;Nathalie;24/10/1968;DSV;Commerçant et assimilé;Non;F;BRAGG;Annie;05/10/1969;Non +16;Charente;03;3ème circonscription;6;17;M;GUIGNARD;Pierre Henri;03/04/1956;LR;Cadre de la fonction publique;Non;M;CHEVALERIAS;Thomas;08/06/1997;Non +16;Charente;03;3ème circonscription;7;28;M;FOUILLET;Laurent;06/12/1964;DIV;Cadre administratif et commercial d'entreprise;Non;M;BARRIER;Pierre;09/09/1977;Non +16;Charente;03;3ème circonscription;8;18;F;DE CLISSON;Aurore;11/07/1983;REC;Commerçant et assimilé;Non;M;HARIVELLE;Enzo;23/01/2001;Non +16;Charente;03;3ème circonscription;9;31;F;BARUCH;Sandrine;07/04/1976;DVC;Profession intermédiaire administrative de la fonction publique;Non;M;LEDRUT;Christophe;18/08/1972;Non +16;Charente;03;3ème circonscription;10;10;F;COLOMBIER;Caroline;22/08/1957;RN;Ancien cadre;Non;F;FORESTIER;Laure;20/04/1964;Non +16;Charente;03;3ème circonscription;11;9;M;RAGUET;Alexandre;15/03/1991;DXG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;TOPOURIA;Hélène;29/01/1994;Non +16;Charente;03;3ème circonscription;12;32;M;LALANNE;Francis;08/08/1958;ECO;Profession de l'information, des arts et des spectacles;Non;F;BRIZARD;Océane;14/12/2000;Non +16;Charente;03;3ème circonscription;13;24;M;TOMSIN;Eric;29/03/1971;ECO;Profession libérale;Non;F;TISSANDIER-ALRIC;Marie-Laure;10/04/1956;Non +17;Charente-Maritime;01;1ère circonscription;1;40;F;RICHEZ-LEROUGE;Véronique;22/12/1963;DVC;Profession de l'information, des arts et des spectacles;Non;M;SAÏD;Djoumoi;01/01/1979;Non +17;Charente-Maritime;01;1ère circonscription;2;2;M;FALORNI;Olivier;27/03/1972;DVG;Professeur, profession scientifique;Oui;F;GERVAIS;Sabine;20/05/1970;Non +17;Charente-Maritime;01;1ère circonscription;3;19;F;CHAIR;Agnès;16/03/1960;ECO;Cadre de la fonction publique;Non;F;LÉONARD-GALINDO;Catherine;26/09/1965;Non +17;Charente-Maritime;01;1ère circonscription;4;56;M;PERE;Philippe;07/01/1967;DIV;Artisan;Non;F;RENAUD;Nicole;24/04/1946;Non +17;Charente-Maritime;01;1ère circonscription;5;41;F;MADELAINE;Martine;25/11/1970;ENS;Professeur, profession scientifique;Non;M;DAUNIT;Pascal;19/07/1965;Non +17;Charente-Maritime;01;1ère circonscription;6;23;M;COLIN;Antoine;29/05/1971;DXG;Professeur, profession scientifique;Non;M;RÉMOND;Dominique;17/12/1953;Non +17;Charente-Maritime;01;1ère circonscription;7;43;M;SOUBESTE;Jean-Marc;20/11/1964;NUPES;Professeur, profession scientifique;Non;F;GUIBORDEAU;Aline;10/09/1976;Non +17;Charente-Maritime;01;1ère circonscription;8;38;F;TANGUY;Nadine;04/02/1963;DVD;Agriculteur sur grande exploitation;Non;M;CARRÉ;Jean-Philippe;08/01/1971;Non +17;Charente-Maritime;01;1ère circonscription;9;33;F;NÉDELLEC;Marie;09/12/1984;DVG;Profession libérale;Non;M;GRAU;Antoine;13/08/1954;Non +17;Charente-Maritime;01;1ère circonscription;10;14;F;CHAUVEAU;Emma;04/02/2000;RN;Elève, étudiant;Non;M;HERBETH;Alain;23/03/1944;Non +17;Charente-Maritime;01;1ère circonscription;11;44;M;FRANÇOIS;Nicolas;02/07/1992;REC;Ouvrier non qualifié de type artisanal;Non;F;LORETTE-DRAPEAU;Camille;05/11/1999;Non +17;Charente-Maritime;02;2ème circonscription;1;5;M;LABICHE;David;07/12/1973;LR;Employé civil et agent de service de la fonction publique;Non;F;CAMPODARVE;Caroline;28/02/1968;Non +17;Charente-Maritime;02;2ème circonscription;2;46;F;SERRURIER;Evelyne;27/10/1965;ECO;Professeur, profession scientifique;Non;M;LECOUTOUR;Stéphane;06/07/1961;Non +17;Charente-Maritime;02;2ème circonscription;3;4;M;AUGER;Thierry;22/11/1968;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;PIGALE;Sylviane;17/02/1958;Non +17;Charente-Maritime;02;2ème circonscription;4;55;F;ISELI;Claude;25/08/1955;DSV;Ancien cadre;Non;M;TCHEPKOWSKI;Yvan;04/11/1966;Non +17;Charente-Maritime;02;2ème circonscription;5;59;F;FORNILI;Marie;28/11/1952;COM;Ancien cadre;Non;F;MONNAC;Michèle;23/10/1956;Non +17;Charente-Maritime;02;2ème circonscription;6;11;M;LARCHER;Adrien;28/10/1987;ECO;Cadre administratif et commercial d'entreprise;Non;F;DENEUVE;Catherine;03/03/1956;Non +17;Charente-Maritime;02;2ème circonscription;7;27;F;GIRAUD;Corinne;28/03/1961;REC;Artisan;Non;M;CORSON;Kylian;23/10/2000;Non +17;Charente-Maritime;02;2ème circonscription;8;8;M;GUERIT;Richard;16/12/1965;RN;Ancien cadre;Non;M;BRISSAC;Cyrille;05/10/1968;Non +17;Charente-Maritime;02;2ème circonscription;9;54;M;RAYMOND;Nordine;03/02/1991;NUPES;Commerçant et assimilé;Non;F;JAY;Anne;28/07/1964;Non +17;Charente-Maritime;02;2ème circonscription;10;7;M;CASTELLO;Frédéric;07/05/1949;DXG;Ancien ouvrier;Non;F;GILLAUD;Marie-France;05/05/1948;Non +17;Charente-Maritime;02;2ème circonscription;11;42;F;BABAULT;Anne-Laure;03/01/1982;ENS;Cadre administratif et commercial d'entreprise;Non;F;DESCAMPS;Anne-Sophie;30/03/1961;Non +17;Charente-Maritime;03;3ème circonscription;1;58;M;RICHÉ;Philippe;31/07/1966;DSV;Agriculteur sur petite exploitation;Non;M;DESTANDAU;Benoît;29/07/1985;Non +17;Charente-Maritime;03;3ème circonscription;2;36;M;ARDOUIN;Jean-Philippe;05/03/1964;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;MAILLET;Joëlle;10/05/1953;Non +17;Charente-Maritime;03;3ème circonscription;3;15;M;GIRAUD;Bertrand;02/05/1978;LR;Agriculteur sur moyenne exploitation;Non;F;CHIRON;Claudette;26/06/1949;Non +17;Charente-Maritime;03;3ème circonscription;4;17;F;COLLARD;Nathalie;03/10/1964;RN;Cadre de la fonction publique;Non;F;ROUQUET;Cécile;09/02/1969;Non +17;Charente-Maritime;03;3ème circonscription;5;25;F;RAHMANI;Khamssa;07/10/1964;DXG;Professeur, profession scientifique;Non;M;LEFÈVRE;Bertrand;03/07/1979;Non +17;Charente-Maritime;03;3ème circonscription;6;32;F;RAÏSSAC-JARRARD;Nathalie;03/03/1957;ECO;Ancien cadre;Non;F;BOURSON;Alice;04/09/1992;Non +17;Charente-Maritime;03;3ème circonscription;7;35;M;WONG;Christian;23/06/1955;ECO;Professeur, profession scientifique;Non;F;WONG-KNODEL;Sandra;19/11/1958;Non +17;Charente-Maritime;03;3ème circonscription;8;53;M;DAHAN;Gérald;17/05/1973;NUPES;Profession de l'information, des arts et des spectacles;Non;F;LADJAL;Houria;06/12/1974;Non +17;Charente-Maritime;03;3ème circonscription;9;47;F;BOURHIS;Lydia;01/01/1974;DSV;Policier et militaire;Non;F;VAMPARYS;Aurore;12/04/1979;Non +17;Charente-Maritime;03;3ème circonscription;10;29;M;BARUSSEAU;Fabrice;01/06/1970;DVG;Professeur, profession scientifique;Non;M;CHAPPET;Cyril;14/10/1970;Non +17;Charente-Maritime;03;3ème circonscription;11;18;F;ELMAYAN;Lorys;30/08/1971;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;M;BLANDET;Nicolas;30/05/1990;Non +17;Charente-Maritime;03;3ème circonscription;12;22;M;PINEAU;Maurice;02/03/1974;REC;Profession libérale;Non;F;BESIAT;Sabine;16/07/1957;Non +17;Charente-Maritime;03;3ème circonscription;13;16;M;DIETZ;Pierre;28/10/1968;DVC;Professeur, profession scientifique;Non;F;TEXIER;Gaëlle;08/01/1979;Non +17;Charente-Maritime;04;4ème circonscription;1;39;M;ROBIN;Jean;17/05/1969;REC;Artisan;Non;F;BRANCQUART;Valérie;13/10/1966;Non +17;Charente-Maritime;04;4ème circonscription;2;52;F;CHASSAIN;Annie;14/02/1950;DVG;Ancienne profession intermédiaire;Non;M;LACHEZE;Benoit;27/07/1963;Non +17;Charente-Maritime;04;4ème circonscription;3;57;M;GERARD;Raphaël;17/10/1968;ENS;Cadre administratif et commercial d'entreprise;Oui;F;DELAUNAY;Evelyne;10/01/1951;Non +17;Charente-Maritime;04;4ème circonscription;4;6;F;DE ROFFIGNAC;Françoise;16/11/1966;LR;Professeur, profession scientifique;Non;M;BOUYER;Christophe;02/06/1964;Non +17;Charente-Maritime;04;4ème circonscription;5;10;M;MARKOWSKY;Pascal;22/07/1954;RN;Ancien artisan, commerçant, chef d'entreprise;Non;F;BOUDEAUD;Sabrina;29/07/1978;Non +17;Charente-Maritime;04;4ème circonscription;6;48;M;LOTH;Stéphane;07/03/1973;DVD;Artisan;Non;F;CHAIGNEAULT;Patricia;16/06/1961;Non +17;Charente-Maritime;04;4ème circonscription;7;31;F;DESSELLES;Danièle;25/11/1957;NUPES;Ancien employé;Non;M;BANCHET;Johann;10/06/1956;Non +17;Charente-Maritime;04;4ème circonscription;8;20;F;BARRAUD;Valérie;20/11/1978;DXG;Professeur des écoles, instituteur et assimilé;Non;M;JOUANNEAU;Alain;20/08/1946;Non +17;Charente-Maritime;04;4ème circonscription;9;34;M;CROCHET;Sébastien;03/10/1976;ECO;Employé administratif d'entreprise;Non;M;CROCHET;Alain;04/07/1952;Non +17;Charente-Maritime;04;4ème circonscription;10;28;M;MARS;Patrick;17/02/1953;DVC;Profession libérale;Non;F;COGNET;Evelyne;06/09/1957;Non +17;Charente-Maritime;04;4ème circonscription;11;21;M;LERAT;Cyril;24/09/1967;DSV;Ingénieur et cadre technique d'entreprise;Non;M;SHAW;François;30/04/1997;Non +17;Charente-Maritime;05;5ème circonscription;1;45;F;GROCH;Marie-Noëlle;25/12/1958;RDG;Cadre de la fonction publique;Non;M;GERIN;Christian;17/06/1954;Non +17;Charente-Maritime;05;5ème circonscription;2;51;F;SOLA;Margarita;06/04/1959;NUPES;Ancienne profession intermédiaire;Non;F;GOMIS;Martine;03/07/1959;Non +17;Charente-Maritime;05;5ème circonscription;3;30;M;QUENTIN;Didier;23/12/1946;LR;Cadre administratif et commercial d'entreprise;Oui;M;SUEUR;Christophe;24/08/1966;Non +17;Charente-Maritime;05;5ème circonscription;4;24;M;DATHY;Grégory;05/04/1986;DSV;Profession libérale;Non;F;HERVOCHON;Dominique;03/09/1957;Non +17;Charente-Maritime;05;5ème circonscription;5;26;F;COURTOIS;Florence;14/02/1962;REC;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;MORISOT;Bernard;19/04/1947;Non +17;Charente-Maritime;05;5ème circonscription;6;3;F;CASSETTE;Danièle;05/05/1951;DXG;Ancien employé;Non;M;LEGRAIN;Olivier;25/12/1974;Non +17;Charente-Maritime;05;5ème circonscription;7;49;M;MARICHAL;Vincent;15/10/1968;ECO;Cadre administratif et commercial d'entreprise;Non;M;GALLETEAU;Frédéric;13/12/1976;Non +17;Charente-Maritime;05;5ème circonscription;8;37;M;DEQUATRE;Romuald;31/03/1971;ECO;Chauffeur;Non;F;BEAUCÉ;Nathalie;04/01/1969;Non +17;Charente-Maritime;05;5ème circonscription;9;50;M;PLASSARD;Christophe;19/11/1967;ENS;Profession libérale;Non;F;PARENT;Vanessa;20/10/1969;Non +17;Charente-Maritime;05;5ème circonscription;10;9;F;WERBROUCK;Séverine;31/10/1970;RN;Commerçant et assimilé;Non;M;VOLLET;Michel;10/02/1954;Non +18;Cher;01;1ère circonscription;1;9;F;APRICENA;Julie;02/11/1991;RN;Profession intermédiaire administrative de la fonction publique;Non;M;MALARDÉ;Adrien;15/07/1999;Non +18;Cher;01;1ère circonscription;2;26;M;CHARPENTIER;Alex;18/10/1998;NUPES;Employé administratif d'entreprise;Non;F;MADROLLES;Céline;24/12/1980;Non +18;Cher;01;1ère circonscription;3;16;M;DALLOIS;David;30/11/1972;LR;Cadre administratif et commercial d'entreprise;Non;F;SINGEOT;Justine;07/11/1990;Non +18;Cher;01;1ère circonscription;4;6;F;CERVEAU;Sylvie;26/10/1952;DXG;Ancien employé;Non;M;DAO;Lionel;02/08/1970;Non +18;Cher;01;1ère circonscription;5;23;F;BÉRINGER;Karine;16/11/1987;DSV;Profession intermédiaire de la santé et du travail social;Non;M;BÉRINGER;Louis;17/12/1985;Non +18;Cher;01;1ère circonscription;6;19;M;CORMIER BOULIGEON;François;19/11/1972;ENS;Cadre de la fonction publique;Oui;M;COQUERY;Denis;29/08/1957;Non +18;Cher;01;1ère circonscription;7;2;M;BERNELLE;Adrien-Laurent;16/06/1973;REC;Ingénieur et cadre technique d'entreprise;Non;F;HUGUENIN;Cécile;06/12/1964;Non +18;Cher;02;2ème circonscription;1;12;F;POLY;Christine;13/04/1977;RN;Agriculteur sur petite exploitation;Non;M;FANGIER;Nicolas;20/08/1977;Non +18;Cher;02;2ème circonscription;2;24;F;FLORENT;Monique;23/07/1951;DSV;Ancien employé;Non;M;DU BARET;Xavier;06/05/1968;Non +18;Cher;02;2ème circonscription;3;4;F;PATTE-SUCHETET;Mathilde;01/08/1993;REC;Profession de l'information, des arts et des spectacles;Non;F;RAIMBAULT;Martine;04/02/1954;Non +18;Cher;02;2ème circonscription;4;7;M;ROBIN;Régis;05/01/1953;DXG;Ancien employé;Non;F;LEGOUX;Martine;24/09/1953;Non +18;Cher;02;2ème circonscription;5;14;F;DEBEUGNY;Emma;09/08/2002;ECO;Elève, étudiant;Non;M;TINEL;Xavier;19/11/1995;Non +18;Cher;02;2ème circonscription;6;18;M;BAERT;Adrien;27/04/1998;LR;Agriculteur sur moyenne exploitation;Non;M;COLOMBIER;Luc;08/08/1982;Non +18;Cher;02;2ème circonscription;7;15;F;ESSAYAN;Nadia;06/06/1957;ENS;Profession intermédiaire de la santé et du travail social;Oui;M;BEHAGHEL;Gabriel;13/06/1997;Non +18;Cher;02;2ème circonscription;8;25;F;MERLIN;Sophie;18/03/1981;DIV;Professeur des écoles, instituteur et assimilé;Non;M;LECLERCQ;Jean-Michel;25/05/1958;Non +18;Cher;02;2ème circonscription;9;17;M;SANSU;Nicolas;17/06/1968;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BEUCHON;Yvon;11/04/1950;Non +18;Cher;03;3ème circonscription;1;11;M;DE LA TOCNAYE;Thibaut;20/10/1958;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;TALBOT;Charles;27/04/1986;Non +18;Cher;03;3ème circonscription;2;22;M;DUMAY;Frédéric;22/06/1964;DSV;Commerçant et assimilé;Non;F;JAGO;Séverine;01/06/1971;Non +18;Cher;03;3ème circonscription;3;8;F;MARTEEL;Nathalie;03/01/1978;REC;Professeur des écoles, instituteur et assimilé;Non;M;LIABOEUF;Hadrien;22/04/1995;Non +18;Cher;03;3ème circonscription;4;21;F;GARCIA-BOSCH-DE MORALES;Aliénor;13/11/1994;NUPES;Agriculteur sur petite exploitation;Non;M;CHARBONNIER;Olivier;06/11/1979;Non +18;Cher;03;3ème circonscription;5;5;M;BELLET;Eric;21/05/1963;DXG;Ouvrier non qualifié de type industriel;Non;M;COTE;Christian;28/08/1955;Non +18;Cher;03;3ème circonscription;6;20;F;DE CHOULOT;Bénédicte;21/03/1974;LR;Profession libérale;Non;F;BLASQUEZ;Marie-Christine;28/03/1965;Non +18;Cher;03;3ème circonscription;7;10;F;TISSIER;Karine;23/09/1980;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;TISSIER;Frédéric;03/07/1978;Non +18;Cher;03;3ème circonscription;8;13;M;KERVRAN;Loïc;11/02/1984;ENS;Cadre de la fonction publique;Oui;F;VIVIANI;Nora;14/10/1981;Non +19;Corrèze;01;1ère circonscription;1;3;F;POUGET;Maitey;16/07/1954;RN;Ancien employé;Non;M;RUMEBE;Stéphane;23/09/1966;Non +19;Corrèze;01;1ère circonscription;2;7;F;COINAUD;Marie-Thérèse;29/01/1951;DXG;Ancienne profession intermédiaire;Non;M;RATIÉ;Bruno;22/01/1958;Non +19;Corrèze;01;1ère circonscription;3;9;F;REBIERE;Amélie;17/08/1982;DIV;Agriculteur sur moyenne exploitation;Non;F;SEIGNE;Fabien;26/06/1986;Non +19;Corrèze;01;1ère circonscription;4;12;M;JERRETIE;Christophe;31/08/1979;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;CELLE;Isabelle;14/11/1967;Non +19;Corrèze;01;1ère circonscription;5;8;M;AMIARD;Yannick;05/10/1956;DXG;Ancienne profession intermédiaire;Non;F;MOUDJADJ;Zahira;27/04/1962;Non +19;Corrèze;01;1ère circonscription;6;21;F;DEVEAUD;Sandrine;03/11/1964;NUPES;Profession intermédiaire administrative de la fonction publique;Non;M;MARLIN;Nicolas;16/08/1999;Non +19;Corrèze;01;1ère circonscription;7;20;M;DUBOIS;Francis;28/11/1961;LR;Technicien;Non;M;COSTE;Pascal;13/09/1966;Non +19;Corrèze;01;1ère circonscription;8;25;M;DHERSIN;Patrick;16/10/1964;ECO;Cadre administratif et commercial d'entreprise;Non;F;DI SINNO;Carline;09/05/1966;Non +19;Corrèze;01;1ère circonscription;9;24;F;TAYSSE;Annick;27/06/1957;DVG;Ancien cadre;Non;M;BRUGERE;Philippe;02/01/1964;Non +19;Corrèze;01;1ère circonscription;10;13;M;OGUINENA;Gilles;17/03/1963;REC;Policier et militaire;Non;M;VOVAU;Jean-Marc;20/07/1970;Non +19;Corrèze;02;2ème circonscription;1;22;F;QUILLOT;Lise;30/04/1991;DVG;Professeur, profession scientifique;Non;M;QUINIO;Thomas;03/11/1989;Non +19;Corrèze;02;2ème circonscription;2;18;M;BROUSSE;Nicolas;14/09/1993;ENS;Cadre administratif et commercial d'entreprise;Non;F;VIDALO-BORDERIE;Evelyne;15/01/1951;Non +19;Corrèze;02;2ème circonscription;3;16;M;BONNIE;Olivier;04/08/1965;DVC;Profession intermédiaire administrative de la fonction publique;Non;F;ROBERT;Françoise;29/07/1954;Non +19;Corrèze;02;2ème circonscription;4;5;M;DUMAS;Thierry;19/09/1972;DSV;Profession de l'information, des arts et des spectacles;Non;M;MICHEL;Stéphane;11/11/1971;Non +19;Corrèze;02;2ème circonscription;5;17;F;MEUNIER;Frédérique;08/12/1960;LR;Profession libérale;Oui;M;MONTEIL;Jean-Michel;08/12/1968;Non +19;Corrèze;02;2ème circonscription;6;2;M;ELOPHE;Valéry;11/05/1974;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BRISSAY;Laurent;23/06/1971;Non +19;Corrèze;02;2ème circonscription;7;15;M;LE BILLAN;Charles-Henri;10/11/1984;DVG;Commerçant et assimilé;Non;F;MAZOT;Karine;24/12/1970;Non +19;Corrèze;02;2ème circonscription;8;23;F;AYRAULT;Marie;20/09/1955;DIV;Ancien cadre;Non;F;CLARE;Alexandre;21/05/1993;Non +19;Corrèze;02;2ème circonscription;9;11;F;HERZHAFT;Chloé;24/10/1975;NUPES;Professeur, profession scientifique;Non;M;ERSOY;Adem;09/07/1968;Non +19;Corrèze;02;2ème circonscription;10;19;M;COJAN;Patrick;17/07/1955;ECO;Profession libérale;Non;F;FAGES;Marie;15/01/1958;Non +19;Corrèze;02;2ème circonscription;11;6;F;SICARD;Sylvie;21/04/1963;DXG;Professeur des écoles, instituteur et assimilé;Non;M;COMBRADET;Bernard;14/04/1948;Non +19;Corrèze;02;2ème circonscription;12;4;F;SAUVINIAT;Céline;06/02/1973;ECO;Technicien;Non;M;HAMANT;André;18/06/1978;Non +19;Corrèze;02;2ème circonscription;13;14;F;DOS SANTOS DE OLIVEIRA;Camille;05/04/1993;REC;Employé de commerce;Non;M;PONGE;Philippe;27/07/1957;Non +2A;Corse-du-Sud;01;1ère circonscription;1;20;M;QUINTELA;David;15/02/1969;REC;Artisan;Non;F;MILANO;Céline;24/02/1970;Non +2A;Corse-du-Sud;01;1ère circonscription;2;15;M;LIPPLER;Walter;02/05/1961;DSV;Cadre de la fonction publique;Non;M;GOUILLON;Sylvain;08/08/1960;Non +2A;Corse-du-Sud;01;1ère circonscription;3;10;M;MOZZICONACCI;Michel;01/09/1959;DVC;Profession libérale;Non;M;LECA;Berthy;02/01/1953;Non +2A;Corse-du-Sud;01;1ère circonscription;4;19;M;DE MARI;Robin;24/09/1996;FI;Profession intermédiaire administrative et commerciale des entreprises;Non;F;AMATO-SALINI;Marie-Christine;25/06/1976;Non +2A;Corse-du-Sud;01;1ère circonscription;5;5;M;CARROLAGGI;Jean-Paul;19/02/1964;REG;Profession libérale;Non;F;DALAKUPEYAN SERRERI;Lisandrina;20/01/1983;Non +2A;Corse-du-Sud;01;1ère circonscription;6;22;F;SUSINI;Angélique;16/12/1994;SOC;Cadre de la fonction publique;Non;F;CHANOINE;Laurine;03/04/2001;Non +2A;Corse-du-Sud;01;1ère circonscription;7;2;M;MARCANGELI;Laurent;10/12/1980;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LACOMBE;Xavier;08/06/1965;Non +2A;Corse-du-Sud;01;1ère circonscription;8;18;F;AMZIANE;Anissa-Flore;21/08/1979;COM;Cadre administratif et commercial d'entreprise;Non;M;LEROY;Marc-Antoine;09/07/1992;Non +2A;Corse-du-Sud;01;1ère circonscription;9;9;M;COLONNA;Romain;21/02/1982;REG;Professeur, profession scientifique;Non;F;COSTA;Cécilia;19/03/1990;Non +2A;Corse-du-Sud;01;1ère circonscription;10;3;F;ANTONA;Nathaly;16/02/1975;RN;Professeur, profession scientifique;Non;F;NATALI;Ariane;14/05/1958;Non +2A;Corse-du-Sud;01;1ère circonscription;11;21;F;BIZZARI;Pascale;01/10/1960;ECO;Profession libérale;Non;F;CASANOVA;Sophie-Caroline;21/07/1966;Non +2A;Corse-du-Sud;01;1ère circonscription;12;4;F;LAINEZ;Claire;17/12/1958;DXG;Ancien employé;Non;M;QUILICHINI;Didier;18/08/1964;Non +2A;Corse-du-Sud;02;2ème circonscription;1;7;M;NICOLAI;Yves;01/05/1966;ECO;Employé civil et agent de service de la fonction publique;Non;F;CHEVALLET;Anne-Cécile;06/01/1977;Non +2A;Corse-du-Sud;02;2ème circonscription;2;11;M;DAÏEN;Yves;27/07/1940;DXG;Ancien employé;Non;M;BENBATTOUCHE;Kamal;28/01/1953;Non +2A;Corse-du-Sud;02;2ème circonscription;3;16;M;BATTISTINI;Olivier;10/03/1952;REC;Professeur, profession scientifique;Non;F;PANTALACCI;Ghjulia;13/12/2002;Non +2A;Corse-du-Sud;02;2ème circonscription;4;13;M;COLOMBANI;Paul-André;17/08/1967;REG;Profession libérale;Oui;F;MALU-PELLEGRINETTI;Thérèse;28/09/1963;Non +2A;Corse-du-Sud;02;2ème circonscription;5;23;F;SALMAT;Ghislaine;01/04/1966;SOC;Commerçant et assimilé;Non;F;SASSOU - MESSAN;Brigitte;29/07/1968;Non +2A;Corse-du-Sud;02;2ème circonscription;6;12;M;MUSELLI-COLONNA;Pierre-Ange;22/09/1994;COM;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;TRAMONI;Michel;21/01/1958;Non +2A;Corse-du-Sud;02;2ème circonscription;7;6;M;FILONI;François;01/10/1957;RN;Contremaître, agent de maîtrise;Non;M;GIACOMETTI;Pierre;29/07/1992;Non +2A;Corse-du-Sud;02;2ème circonscription;8;14;M;ETTORI;Vincent Louis;31/10/1980;DSV;Artisan;Non;F;PARRILLA;Thérèse;02/12/1971;Non +2A;Corse-du-Sud;02;2ème circonscription;9;17;M;CHAMPEAU;Dylan;08/01/1999;DVG;Elève, étudiant;Non;F;LAURENTI;Catherine;27/12/1964;Non +2A;Corse-du-Sud;02;2ème circonscription;10;8;F;BOZZI;Valérie;18/03/1982;DVD;Profession libérale;Non;M;CASTELLANI;Pierre;24/05/1973;Non +2A;Corse-du-Sud;02;2ème circonscription;11;24;M;PUCCINELLI;Pierre-Paul;29/09/1954;REG;Profession libérale;Non;M;ROBERT;Bertrand;22/07/1981;Non +2B;Haute-Corse;01;1ère circonscription;1;11;M;MORGANTI;Julien;20/11/1985;DVC;Cadre de la fonction publique;Non;F;ALBERTINI PIETRUCCI;Santa;22/01/1980;Non +2B;Haute-Corse;01;1ère circonscription;2;20;M;MAQUET;Gaël;16/10/1958;DIV;Profession libérale;Non;F;PRUNETA;Nathalie;05/03/1968;Non +2B;Haute-Corse;01;1ère circonscription;3;19;M;LAMBERTI;Jean;31/08/1963;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;REAL;Christian;06/05/1948;Non +2B;Haute-Corse;01;1ère circonscription;4;16;M;PAOLI;Jean-François;20/01/1967;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;BALDOCCHI;Océane;11/06/1991;Non +2B;Haute-Corse;01;1ère circonscription;5;12;M;CASTELLANI;Michel;28/09/1945;REG;Professeur, profession scientifique;Oui;F;PONZEVERA;Juliette;17/03/1982;Non +2B;Haute-Corse;01;1ère circonscription;6;14;F;MAUNY;Dominique;20/01/1963;FI;Professeur des écoles, instituteur et assimilé;Non;M;TOMASI;Karl;01/04/1998;Non +2B;Haute-Corse;01;1ère circonscription;7;13;M;JOSUÉ;Olivier;16/07/1950;DXG;Profession intermédiaire administrative et commerciale des entreprises;Non;F;MATTEI-GOVI;Pierrette;12/09/1944;Non +2B;Haute-Corse;01;1ère circonscription;8;9;M;STAELENS;Michel;06/09/1958;ECO;Professeur, profession scientifique;Non;F;JURALINA;Florence;01/01/1968;Non +2B;Haute-Corse;01;1ère circonscription;9;5;M;FERNANDEZ;Alexis;13/09/2001;RN;Elève, étudiant;Non;F;MORATI;Laure;25/09/1993;Non +2B;Haute-Corse;01;1ère circonscription;10;3;M;STEFANI;Michel;24/03/1960;COM;Ancien employé;Non;F;DEVOTI;Toussainte;24/09/1954;Non +2B;Haute-Corse;01;1ère circonscription;11;7;F;CETTOUR-LEONI;Christine;28/12/1968;DSV;Profession libérale;Non;F;MOREL;Valérie;31/03/1971;Non +2B;Haute-Corse;01;1ère circonscription;12;21;M;TOMASI;Petru Antone;22/12/1987;REG;Professeur, profession scientifique;Non;M;SIMONI;Eric;12/10/1961;Non +2B;Haute-Corse;02;2ème circonscription;1;15;M;ACQUAVIVA;Jean-Félix;19/03/1973;REG;Ancien cadre;Oui;F;ANDREANI;Marie Jeanne;23/09/1970;Non +2B;Haute-Corse;02;2ème circonscription;2;17;M;CECCOLI;François-Xavier;27/10/1968;DVD;Agriculteur sur moyenne exploitation;Non;F;ASTOLFI;Hélène;26/12/1963;Non +2B;Haute-Corse;02;2ème circonscription;3;8;F;SALDUCCI;Marie Dominique;09/12/1963;DSV;Cadre de la fonction publique;Non;F;BARNOLE-MARCHINI;Thérèse;06/03/1948;Non +2B;Haute-Corse;02;2ème circonscription;4;4;F;RAFFAELLI - FRANCESCHI;Amélie;15/01/1958;COM;Ancien employé;Non;M;ROSSI;Pascal;04/11/1972;Non +2B;Haute-Corse;02;2ème circonscription;5;18;F;BARONNE ML MARIANI;.;16/04/1998;DIV;Elève, étudiant;Non;M;BARON JHN MARIANI;.;25/12/1965;Non +2B;Haute-Corse;02;2ème circonscription;6;6;M;MORTINI;Lionel;08/05/1969;REG;Agriculteur sur petite exploitation;Non;F;TRAMINI;Marie-Françoise;14/09/1972;Non +2B;Haute-Corse;02;2ème circonscription;7;10;F;RONGIONE;Viviane;16/08/1955;DXG;Ancienne profession intermédiaire;Non;M;MANNONI;Laurent;01/03/1969;Non +2B;Haute-Corse;02;2ème circonscription;8;2;M;CARDI;Jean;16/12/1955;RN;Agriculteur sur moyenne exploitation;Non;M;CARDI;Tony;31/10/1954;Non +21;Côte-d'Or;01;1ère circonscription;1;34;M;MARTIN;Didier;20/08/1956;ENS;Profession intermédiaire de la santé et du travail social;Oui;F;REFAIT-ALEXANDRE;Catherine;29/09/1972;Non +21;Côte-d'Or;01;1ère circonscription;2;33;M;PEILLON;Antoine;14/03/1959;NUPES;Profession de l'information, des arts et des spectacles;Non;F;GUIDONI-STOLTZ;Dominique;23/08/1960;Non +21;Côte-d'Or;01;1ère circonscription;3;8;F;JOURDIER;Grâce;03/04/1993;RN;Profession libérale;Non;M;EL SIBAÏ;Chafic;07/07/1962;Non +21;Côte-d'Or;01;1ère circonscription;4;20;F;MOHAMED;Ambrine;07/02/1994;REC;Technicien;Non;F;MILLE;Marie-Claude;15/09/1950;Non +21;Côte-d'Or;01;1ère circonscription;5;23;F;ZIVKOVIC;Sladana;28/06/1974;SOC;Cadre de la fonction publique;Non;M;LAMBERT;Pierre;14/12/1944;Non +21;Côte-d'Or;01;1ère circonscription;6;45;M;TITRAOUI;Amar;01/12/1963;DVC;Cadre administratif et commercial d'entreprise;Non;F;CRESP;Valérie;13/04/1972;Non +21;Côte-d'Or;01;1ère circonscription;7;6;M;GROS;Dominique;21/07/1943;DXG;Ancien cadre;Non;F;HENNI;Khaira;20/04/1959;Non +21;Côte-d'Or;01;1ère circonscription;8;13;M;THÉVENIN;Julien;16/10/1976;DXG;Professeur, profession scientifique;Non;F;RIBOULET;Sylvie;29/04/1955;Non +21;Côte-d'Or;01;1ère circonscription;9;27;M;DUGOURD;François-Xavier;30/04/1961;LR;Commerçant et assimilé;Non;F;RENOSI;Catherine;29/01/1974;Non +21;Côte-d'Or;01;1ère circonscription;10;52;M;AYACHE;Franck;10/02/1964;UDI;Cadre administratif et commercial d'entreprise;Non;M;BONNOT;Ludovic;03/03/1966;Non +21;Côte-d'Or;01;1ère circonscription;11;32;F;BOURGUIGNON;Manon;22/09/1998;DSV;Elève, étudiant;Non;M;FOREY;Robert;07/04/1949;Non +21;Côte-d'Or;02;2ème circonscription;1;25;F;FORTIER;Mélanie;22/04/1998;RN;Elève, étudiant;Non;M;DAMERON;Jérémy;01/04/1996;Non +21;Côte-d'Or;02;2ème circonscription;2;35;M;DAVID;Bruno;23/02/1974;DVD;Commerçant et assimilé;Non;F;BLIGNY;Julie;23/05/1967;Non +21;Côte-d'Or;02;2ème circonscription;3;37;M;GAILLARD;Franck;30/04/1975;REC;Artisan;Non;M;CAMUS;Antoine;06/07/1996;Non +21;Côte-d'Or;02;2ème circonscription;4;26;M;BORDAT;Benoît;07/02/1984;ENS;Ancien cadre;Non;M;THERON;Pascal;24/09/1961;Non +21;Côte-d'Or;02;2ème circonscription;5;19;F;HERVIEU;Catherine;09/05/1958;NUPES;Ancien cadre;Non;M;CAMUS;David;05/04/1981;Non +21;Côte-d'Or;02;2ème circonscription;6;51;M;HUGUET;Adrien;18/08/1992;LR;Profession intermédiaire administrative et commerciale des entreprises;Non;F;GAVOILLE;Nathalie;02/10/1966;Non +21;Côte-d'Or;02;2ème circonscription;7;4;F;ROCHER;Claire;27/09/1978;DXG;Profession intermédiaire de la santé et du travail social;Non;F;LAMBERT;Jacqueline;21/12/1941;Non +21;Côte-d'Or;02;2ème circonscription;8;42;F;SALINAS;Amélia;23/07/1968;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;VERHEGGE;Thomas;26/02/2001;Non +21;Côte-d'Or;03;3ème circonscription;1;46;M;RICHARD;Xavier;20/08/1984;DVG;Cadre administratif et commercial d'entreprise;Non;M;GRANDJEAN;Philippe;23/11/1961;Non +21;Côte-d'Or;03;3ème circonscription;2;39;F;LACROIX-SAMPER;Solène;17/04/2000;REC;Elève, étudiant;Non;F;GIRARDOT;Nadine;01/01/1961;Non +21;Côte-d'Or;03;3ème circonscription;3;53;F;FAUVET;Tarja;04/10/1995;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;NICOLAS;Jean-Patrick;20/09/1984;Non +21;Côte-d'Or;03;3ème circonscription;4;24;F;MARC;Patricia;01/05/1953;NUPES;Professeur, profession scientifique;Non;M;ALIGNIER;Michel;05/06/1957;Non +21;Côte-d'Or;03;3ème circonscription;5;47;M;LOUIS;Bruno;28/04/1964;ECO;Profession libérale;Non;F;DURNERIN;Christine;12/10/1960;Non +21;Côte-d'Or;03;3ème circonscription;6;22;F;GRANDET;Valérie;17/07/1972;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;KENCKER;Sébastien;26/09/1975;Non +21;Côte-d'Or;03;3ème circonscription;7;40;M;BENREDJEM;François;02/02/1962;ECO;Cadre de la fonction publique;Non;F;HUDELEY;Agnès;20/03/1962;Non +21;Côte-d'Or;03;3ème circonscription;8;36;F;HAMIDI;Yasmina;07/03/1954;DSV;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;VIEILLY;Jean-Hugo;10/07/1951;Non +21;Côte-d'Or;03;3ème circonscription;9;41;M;COLLENNE;Julien;23/03/2001;DSV;Commerçant et assimilé;Non;M;BRACHAIS;Marius;10/10/2001;Non +21;Côte-d'Or;03;3ème circonscription;10;9;M;BOURGOIS;Dominique-Alexandre;04/08/1956;RN;Chef d'entreprise de 10 salariés ou plus;Non;F;ZIBETTI;Fabienne;07/07/1957;Non +21;Côte-d'Or;03;3ème circonscription;11;14;M;VAN MELCKEBEKE;Clément;01/09/1990;DVG;Professeur, profession scientifique;Non;M;ADDOU;Fouad;14/04/1980;Non +21;Côte-d'Or;03;3ème circonscription;12;12;F;DELORME;Fabienne;21/04/1974;DXG;Professeur, profession scientifique;Non;M;BERTHELOT;Patrick;20/12/1958;Non +21;Côte-d'Or;03;3ème circonscription;13;28;F;KHATTABI;Fadila;23/02/1962;ENS;Professeur, profession scientifique;Oui;M;FREI;Philippe;28/12/1968;Non +21;Côte-d'Or;04;4ème circonscription;1;10;M;PONELLE;Jean-Marc;01/08/1963;RN;Profession libérale;Non;M;GUENICHOT;Eric;14/03/1962;Non +21;Côte-d'Or;04;4ème circonscription;2;49;M;MOLINOZ;Patrick;14/01/1970;RDG;Cadre de la fonction publique;Non;F;LASNIER-BINA;Patricia;03/07/1956;Non +21;Côte-d'Or;04;4ème circonscription;3;48;M;BOMMIER;Loup;10/11/1984;REC;Profession libérale;Non;M;LECOUR;Jean-Luc;22/06/1949;Non +21;Côte-d'Or;04;4ème circonscription;4;38;M;GUILLET;Michel;20/02/1950;ECO;Ancienne profession intermédiaire;Non;F;GUILLET;Nathalie;30/04/1969;Non +21;Côte-d'Or;04;4ème circonscription;5;17;F;DE COURSON;Yolaine;14/07/1954;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;M;PLANEL;Niels;30/01/1981;Non +21;Côte-d'Or;04;4ème circonscription;6;21;F;MARCHAL;Isabelle;26/03/1966;DXG;Employé administratif d'entreprise;Non;M;DENIZOT;Michel;21/11/1957;Non +21;Côte-d'Or;04;4ème circonscription;7;30;M;BRIGAND;Hubert;28/07/1952;LR;Ancienne profession intermédiaire;Non;F;LÉPINE;Eliane;24/05/1969;Non +21;Côte-d'Or;04;4ème circonscription;8;29;M;BEUDET;Julien;20/11/1978;DSV;Artisan;Non;F;MOLLET;Michèle;16/11/1958;Non +21;Côte-d'Or;04;4ème circonscription;9;15;M;GUINOT;Stéphane;02/05/1981;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;JACQ;Valérie;30/10/1972;Non +21;Côte-d'Or;04;4ème circonscription;10;31;F;PORTE;Laurence;12/01/1970;DVD;Professeur, profession scientifique;Non;F;LOUIS;Catherine;16/07/1955;Non +21;Côte-d'Or;05;5ème circonscription;1;7;M;LIORET;René;13/01/1952;RN;Ancien cadre;Non;F;FALTOT;Caroline;26/08/1972;Non +21;Côte-d'Or;05;5ème circonscription;2;18;F;DE ALMEIDA;Isabelle;17/02/1965;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;BERNHARD;Carole;11/02/1976;Non +21;Côte-d'Or;05;5ème circonscription;3;43;F;ROBERT;Clélia;08/08/2002;ECO;Elève, étudiant;Non;F;LAURENT;Coralie;03/08/1979;Non +21;Côte-d'Or;05;5ème circonscription;4;5;F;PETET;Françoise;17/05/1959;DXG;Ouvrier qualifié de type industriel;Non;M;EL KAMEL;Abdennour;22/04/1959;Non +21;Côte-d'Or;05;5ème circonscription;5;3;M;MOREAU;Hervé;31/05/1969;DVD;Policier et militaire;Non;F;CHODRON DE COURCEL;Marie;26/10/1951;Non +21;Côte-d'Or;05;5ème circonscription;6;16;M;JORDAN;Denis;25/06/1997;REC;Ingénieur et cadre technique d'entreprise;Non;M;DE MAC-MAHON;Maurice;30/03/1992;Non +21;Côte-d'Or;05;5ème circonscription;7;44;F;FOUGÈRE;Charlotte;27/02/1987;LR;Profession libérale;Non;M;DELACOUR;Sébastien;02/04/1978;Non +21;Côte-d'Or;05;5ème circonscription;8;2;M;PARIS;Didier;14/02/1954;ENS;Ancien cadre;Oui;F;DUPARC;Marie-Line;03/05/1971;Non +21;Côte-d'Or;05;5ème circonscription;9;11;M;LAMBERT;Michel;21/04/1952;DXG;Ancien employé;Non;F;COITE;Martine;01/04/1959;Non +21;Côte-d'Or;05;5ème circonscription;10;50;M;BOUVAREL;Jean-Claude;24/05/1944;DSV;Cadre administratif et commercial d'entreprise;Non;M;ROUSSET;Sébastien;02/04/1977;Non +22;Côtes-d'Armor;01;1ère circonscription;1;11;F;POUILLART;Morgane;28/02/1986;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;DENIS;Hervé;20/01/1956;Non +22;Côtes-d'Armor;01;1ère circonscription;2;3;M;LE FOL;Alain;22/10/1957;DXG;Ouvrier non qualifié de type industriel;Non;M;MOREAU;Yann;25/02/1963;Non +22;Côtes-d'Armor;01;1ère circonscription;3;52;M;COSSON;Mickaël;29/11/1975;ENS;Cadre de la fonction publique;Non;F;MOY;Sandrine;12/11/1973;Non +22;Côtes-d'Armor;01;1ère circonscription;4;53;M;RAOULT;Loïc;07/09/1961;DVG;Contremaître, agent de maîtrise;Non;F;COURTAS;Mari;23/12/1980;Non +22;Côtes-d'Armor;01;1ère circonscription;5;41;F;SERGENTON;Nathalie;01/07/1961;ECO;Employé civil et agent de service de la fonction publique;Non;M;TONNELLIER;Franck;16/07/1974;Non +22;Côtes-d'Armor;01;1ère circonscription;6;55;M;LAMY;Yvan;16/07/1988;DSV;Ouvrier non qualifié de type industriel;Non;F;LE TROCQUER;Françoise;08/06/1947;Non +22;Côtes-d'Armor;01;1ère circonscription;7;6;M;THOMAS;Pierre-Yves;21/07/1963;REC;Ingénieur et cadre technique d'entreprise;Non;M;LOPIN;Pierre-Yves;19/03/1946;Non +22;Côtes-d'Armor;01;1ère circonscription;8;48;F;DARRAS;Fanny;18/03/1987;REG;Profession intermédiaire administrative de la fonction publique;Non;M;UYTTRAEGE LE MOIGNIC;Ludovic;15/03/1986;Non +22;Côtes-d'Armor;01;1ère circonscription;9;57;F;GORGIARD;Marion;16/06/1962;NUPES;Employé de commerce;Non;M;MARIGLIANO;Augustin;26/09/1999;Non +22;Côtes-d'Armor;01;1ère circonscription;10;29;M;BRIEND;Stéphane;18/07/1970;DVD;Cadre administratif et commercial d'entreprise;Non;F;STENTZEL-LE CARDINAL;Stéphanie;03/01/1976;Non +22;Côtes-d'Armor;01;1ère circonscription;11;10;M;SIMELIERE;Thierry;22/02/1956;DVC;Ancien artisan, commerçant, chef d'entreprise;Non;F;GUGUEN;Karine;02/10/1973;Non +22;Côtes-d'Armor;01;1ère circonscription;12;14;F;BILLAUD;Françoise;28/04/1953;RN;Commerçant et assimilé;Non;M;METAYER;Aurélien;19/01/1987;Non +22;Côtes-d'Armor;01;1ère circonscription;13;26;M;MARTIN;Joannic;21/05/1992;REG;Employé civil et agent de service de la fonction publique;Non;F;DANJOU;Aourell;01/05/1991;Non +22;Côtes-d'Armor;01;1ère circonscription;14;20;M;FALIGOT;Romain;22/03/1991;DVD;Cadre administratif et commercial d'entreprise;Non;F;ROOS;Valérie;14/04/1974;Non +22;Côtes-d'Armor;02;2ème circonscription;1;44;M;BERVILLE;Hervé;15/01/1990;ENS;Cadre administratif et commercial d'entreprise;Oui;F;BOULOUX;Chantal;23/06/1961;Non +22;Côtes-d'Armor;02;2ème circonscription;2;25;M;BONVOISIN;Franck;19/06/1974;DIV;Profession libérale;Non;F;ROBERT;Fabienne;04/01/1971;Non +22;Côtes-d'Armor;02;2ème circonscription;3;16;M;KIEFFER;Antoine;08/04/1997;RN;Commerçant et assimilé;Non;M;BON;Angelo;01/05/1991;Non +22;Côtes-d'Armor;02;2ème circonscription;4;7;M;SICRE;Jean-Luc;15/09/1952;DXG;Ancien cadre;Non;F;GAGEOT;Françoise;24/07/1967;Non +22;Côtes-d'Armor;02;2ème circonscription;5;45;F;CROKAERT;Eugénie;03/10/2000;REC;Elève, étudiant;Non;M;QUIGNON;Benjamin;13/06/1997;Non +22;Côtes-d'Armor;02;2ème circonscription;6;22;M;DROUILLET;Raphaël;04/06/1997;ECO;Employé de commerce;Non;F;LE FICHOUX;Mathilde;17/01/1998;Non +22;Côtes-d'Armor;02;2ème circonscription;7;46;F;MARIE;Héléna;25/12/1986;REG;Employé administratif d'entreprise;Non;M;BRIAND;Maxime;01/08/1991;Non +22;Côtes-d'Armor;02;2ème circonscription;8;4;F;HERBLIN;Lucie;06/04/1990;DXG;Profession intermédiaire de la santé et du travail social;Non;M;COLLET;Martial;18/11/1959;Non +22;Côtes-d'Armor;02;2ème circonscription;9;40;M;DESBOIS;Michel;25/09/1964;DVD;Ancien cadre;Non;F;GUIGUI-DELAROCHE;Cécilia;02/07/1968;Non +22;Côtes-d'Armor;02;2ème circonscription;10;35;M;MONROCQ;Serge;03/09/1946;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;F;ROZÉ;Colette;12/09/1949;Non +22;Côtes-d'Armor;02;2ème circonscription;11;9;F;HUBERT;Sophie;31/01/1964;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;CAMPION;Mikaël;06/09/1981;Non +22;Côtes-d'Armor;02;2ème circonscription;12;17;M;RICARD;Bruno;09/01/1969;NUPES;Professeur, profession scientifique;Non;F;FRIN;Guylaine;17/12/1962;Non +22;Côtes-d'Armor;03;3ème circonscription;1;13;F;DE MELLON;Odile;27/02/1952;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;PICHEREAU;Isabelle;16/10/1973;Non +22;Côtes-d'Armor;03;3ème circonscription;2;39;M;ALLAIN;Olivier;23/05/1964;ENS;Agriculteur sur moyenne exploitation;Non;M;VITEL;Fabien;29/08/1988;Non +22;Côtes-d'Armor;03;3ème circonscription;3;37;F;LEFEUVRE;Marie-Thérèse;23/02/1957;DSV;Ancien cadre;Non;M;YU-YUENG;François;17/03/1962;Non +22;Côtes-d'Armor;03;3ème circonscription;4;28;F;NIVET;Florence;24/07/1969;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;M;GUIGANTON;Marc;04/02/1979;Non +22;Côtes-d'Armor;03;3ème circonscription;5;21;F;LECAT;Marie-Pierre;04/08/1950;REC;Ancien cadre;Non;M;COUPÉ;Louis-Marie;15/04/1980;Non +22;Côtes-d'Armor;03;3ème circonscription;6;49;M;RAVARD;Antoine;03/12/1993;NUPES;Profession libérale;Non;F;TABART;Valérie;05/09/1973;Non +22;Côtes-d'Armor;03;3ème circonscription;7;59;M;LE FUR;Marc;28/11/1956;LR;Cadre de la fonction publique;Oui;M;DE SALLIER DUPIN;Stéphane;08/10/1968;Non +22;Côtes-d'Armor;03;3ème circonscription;8;32;M;TYLI;Bryan;30/09/1999;REG;Employé de commerce;Non;M;HAIRON;Ludwig;12/01/2001;Non +22;Côtes-d'Armor;03;3ème circonscription;9;5;M;LAMOUR;Jean-Pierre;04/09/1958;DXG;Professeur, profession scientifique;Non;F;VAN DEN BERGHE;Camille;14/05/1984;Non +22;Côtes-d'Armor;04;4ème circonscription;1;34;M;TOUDIC;Arnaud;25/07/1974;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GLARNER;Sophie;19/06/1959;Non +22;Côtes-d'Armor;04;4ème circonscription;2;47;F;LEPVRAUD;Murielle;15/07/1974;NUPES;Employé administratif d'entreprise;Non;M;KAZUMBA;Tangui;16/01/1996;Non +22;Côtes-d'Armor;04;4ème circonscription;3;18;F;LIRONCOURT;Sylvie;30/07/1955;DXG;Ancien employé;Non;F;AUBRY;Gwénaëlle;21/01/1974;Non +22;Côtes-d'Armor;04;4ème circonscription;4;30;F;VINCELEUX;Edwige;24/12/1973;REC;Ouvrier qualifié de type industriel;Non;M;RIOU;Patrice;04/07/1960;Non +22;Côtes-d'Armor;04;4ème circonscription;5;63;M;PRIGENT;Jean-Paul;23/11/1965;LR;Agriculteur sur moyenne exploitation;Non;M;HILIQUIN;Hervé;12/02/1950;Non +22;Côtes-d'Armor;04;4ème circonscription;6;27;F;LE SCOUR;Françoise;16/03/1960;REG;Profession intermédiaire de la santé et du travail social;Non;M;GÉLÉOC;Raymond;06/04/1950;Non +22;Côtes-d'Armor;04;4ème circonscription;7;58;F;ROLLAND;Myriam;15/11/1979;REG;Employé de commerce;Non;M;SAVARY;Jacky;02/01/1960;Non +22;Côtes-d'Armor;04;4ème circonscription;8;15;M;LUDE;Noël;25/12/1948;RN;Ancien cadre;Non;M;LE FLOCH;Paul;02/09/1998;Non +22;Côtes-d'Armor;04;4ème circonscription;9;31;M;GUÉGUEN;Alain;13/01/1963;DVG;Profession intermédiaire de la santé et du travail social;Non;F;CORBEL;Peggy;28/05/1973;Non +22;Côtes-d'Armor;04;4ème circonscription;10;24;M;TOUZÉ;Nicolas;20/08/1970;ECO;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;JOSSELIN;Chrystelle;23/07/1969;Non +22;Côtes-d'Armor;04;4ème circonscription;11;61;M;DRISSI;Moulay;15/06/1971;DIV;Militaire du contingent;Non;M;BONSEIGNOUR MANAUT-ESQUIEULE;Patrice;05/03/1948;Non +22;Côtes-d'Armor;04;4ème circonscription;12;43;M;KERLOGOT;Yannick;12/05/1970;ENS;Professeur des écoles, instituteur et assimilé;Oui;F;DRONIOU;Marie-Françoise;17/11/1965;Non +22;Côtes-d'Armor;05;5ème circonscription;1;51;F;CASTEK;Sandrine;02/05/1980;RN;Employé de commerce;Non;F;LUCAS;Sonia;17/06/1971;Non +22;Côtes-d'Armor;05;5ème circonscription;2;2;M;GUÉGUEN;Yann;09/10/1964;DXG;Employé civil et agent de service de la fonction publique;Non;M;CARRASCO;Alain;10/01/1967;Non +22;Côtes-d'Armor;05;5ème circonscription;3;38;M;LE MEAUX;Vincent;27/02/1978;DVG;Cadre administratif et commercial d'entreprise;Non;F;SAGE;Harisoa;11/07/1968;Non +22;Côtes-d'Armor;05;5ème circonscription;4;50;M;PODER;Eric;28/08/1962;REG;Technicien;Non;M;PRIGENT;Patrick;16/03/1956;Non +22;Côtes-d'Armor;05;5ème circonscription;5;62;M;JEZEQUEL;Yves;15/12/1974;LR;Militaire du contingent;Non;M;LECERF;Gwenvaël;24/07/1987;Non +22;Côtes-d'Armor;05;5ème circonscription;6;60;M;PIEPERS;Mael;17/08/2000;ECO;Employé administratif d'entreprise;Non;F;PETIT;Maël;23/08/2000;Non +22;Côtes-d'Armor;05;5ème circonscription;7;54;F;GIOUX;Sylvie;08/11/1957;ECO;Profession libérale;Non;M;CABOT;Albert;04/09/1959;Non +22;Côtes-d'Armor;05;5ème circonscription;8;23;F;TROADEC;Marie-Amélie;13/02/1982;NUPES;Profession de l'information, des arts et des spectacles;Non;M;LE LAY;Yves-Marie;09/05/1950;Non +22;Côtes-d'Armor;05;5ème circonscription;9;36;F;VICET;Marielle;21/07/1957;DIV;Profession intermédiaire de la santé et du travail social;Non;M;LE BLANC;David;21/06/1970;Non +22;Côtes-d'Armor;05;5ème circonscription;10;42;F;KERRAIN;Trefina;21/03/1987;REG;Professeur, profession scientifique;Non;M;FÉTAS;Pierre-Adrien;23/02/1982;Non +22;Côtes-d'Armor;05;5ème circonscription;11;19;M;GERMAIN;Bernard;08/12/1953;REC;Ingénieur et cadre technique d'entreprise;Non;F;STUDLER;Margaret;05/04/1951;Non +22;Côtes-d'Armor;05;5ème circonscription;12;56;F;WEBER;Carine;06/10/1973;DXG;Professeur, profession scientifique;Non;F;PINNA;Dominique;16/06/1965;Non +22;Côtes-d'Armor;05;5ème circonscription;13;8;M;LECLERC;Erwann;24/12/1977;DSV;Commerçant et assimilé;Non;M;PARENTHOINE;Denis;15/04/1967;Non +22;Côtes-d'Armor;05;5ème circonscription;14;12;M;BOTHOREL;Eric;20/10/1966;ENS;Cadre de la fonction publique;Oui;F;LE GALL;Katell;21/12/1973;Non +23;Creuse;01;1ère circonscription;1;10;F;MIRAN;Françoise;01/12/1939;ECO;Ancien employé;Non;F;MILANOWSKA;Krystyna;23/03/1961;Non +23;Creuse;01;1ère circonscription;2;12;F;JOSSET;Hélène;31/12/1951;DSV;Ancienne profession intermédiaire;Non;M;FATTAL;Jean-Pierre;06/09/1953;Non +23;Creuse;01;1ère circonscription;3;8;M;AUCLAIR;Jean;03/05/1946;DVD;Ancien agriculteur exploitant;Non;F;PILAT;Hélène;04/08/1964;Non +23;Creuse;01;1ère circonscription;4;5;F;DUMON;Catherine;08/12/1950;DXG;Ancien employé;Non;F;SIRONNEAU;Aline;19/02/1945;Non +23;Creuse;01;1ère circonscription;5;7;F;KENNEDY;Roubiali;08/08/1971;DVG;Profession de l'information, des arts et des spectacles;Non;F;CARAÏSCO;Céline;24/07/1972;Non +23;Creuse;01;1ère circonscription;6;4;F;COUTURIER;Catherine;27/02/1959;NUPES;Ancienne profession intermédiaire;Non;M;CHAPAL;Arnaud;22/04/1958;Non +23;Creuse;01;1ère circonscription;7;6;M;MOREAU;Jean-Baptiste;14/02/1977;ENS;Agriculteur sur grande exploitation;Oui;M;TURPINAT;Vincent;28/03/1971;Non +23;Creuse;01;1ère circonscription;8;9;F;DEFEMME;Catherine;25/11/1961;DVD;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;DELAITRE;Thierry;27/12/1971;Non +23;Creuse;01;1ère circonscription;9;2;F;BILDE;Sylvie;05/03/1973;RN;Employé civil et agent de service de la fonction publique;Non;F;MANOUVRIER;Karine;27/03/1992;Non +23;Creuse;01;1ère circonscription;10;3;M;GIROIX;Grégory;06/10/1997;REC;Technicien;Non;M;ELIE;Antoine;07/03/2002;Non +23;Creuse;01;1ère circonscription;11;11;F;DURENGUE;Elisabeth;13/09/1965;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LENORMAND;Laurent;10/05/1972;Non +24;Dordogne;01;1ère circonscription;1;29;F;KHELFAOUI;Lise;14/04/1979;DXG;Professeur, profession scientifique;Non;M;RUMEAU;Frédéric;30/09/1971;Non +24;Dordogne;01;1ère circonscription;2;21;F;JEAN;Emmanuelle;03/11/1975;ECO;Profession libérale;Non;F;DUPONT;Astrid;22/06/1981;Non +24;Dordogne;01;1ère circonscription;3;8;M;AMBROISE;Williams;03/08/1972;RN;Contremaître, agent de maîtrise;Non;F;HUART;Isabelle;28/01/1969;Non +24;Dordogne;01;1ère circonscription;4;44;M;MELO;Pierre;31/01/2001;DIV;Elève, étudiant;Non;M;BOITEL;Maël;05/09/2002;Non +24;Dordogne;01;1ère circonscription;5;45;F;CHRÉTIEN;Cécile;04/01/1967;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;DA-CUNHA;Géraldine;28/02/1971;Non +24;Dordogne;01;1ère circonscription;6;35;M;VADILLO;Floran;16/08/1985;DVG;Cadre administratif et commercial d'entreprise;Non;F;CAPPELLE;Carline;25/05/1951;Non +24;Dordogne;01;1ère circonscription;7;16;M;CHASSAING;Philippe;18/05/1972;ENS;Professeur, profession scientifique;Oui;F;LE ROY;Sabine;11/09/1982;Non +24;Dordogne;01;1ère circonscription;8;32;F;MARTIN;Pascale;24/08/1961;NUPES;Ancien cadre;Non;M;BOUGNOTEAU;Laurent;05/07/1966;Non +24;Dordogne;01;1ère circonscription;9;47;F;LEGLU;Isabelle;20/10/1964;DVD;Profession intermédiaire de la santé et du travail social;Non;F;CARON;Virginie;10/10/1972;Non +24;Dordogne;01;1ère circonscription;10;6;F;LÉGER;Pascale;18/01/1961;REC;Agriculteur sur petite exploitation;Non;M;PUYO;Claude;15/01/1960;Non +24;Dordogne;01;1ère circonscription;11;7;M;REBOUL;Patrice;20/11/1962;RDG;Profession libérale;Non;F;SIMONNET;Jacqueline;20/10/1963;Non +24;Dordogne;01;1ère circonscription;12;41;F;MARTY;Elisabeth;27/06/1965;LR;Ancien artisan, commerçant, chef d'entreprise;Non;M;BECKER;Stephane;10/07/1970;Non +24;Dordogne;02;2ème circonscription;1;20;M;ULIAN;Cédric;28/03/1978;ECO;Cadre de la fonction publique;Non;F;ESPINAR;Julia;16/07/1992;Non +24;Dordogne;02;2ème circonscription;2;33;M;DELPON;Michel;13/08/1949;ENS;Ancien cadre;Oui;F;MÉNARD;Denise;07/07/1951;Non +24;Dordogne;02;2ème circonscription;3;9;M;MULLER;Serge;26/02/1976;RN;Profession intermédiaire de la santé et du travail social;Non;M;BROUCQ;Lucas;26/12/2002;Non +24;Dordogne;02;2ème circonscription;4;17;M;CATHUS;Christophe;10/09/1971;DVG;Cadre de la fonction publique;Non;F;CHEVALLIER;Sylvie;02/05/1962;Non +24;Dordogne;02;2ème circonscription;5;26;F;ROUX;Michèle;24/06/1955;NUPES;Ancien agriculteur exploitant;Non;M;STEVAN;Bernard;21/04/1955;Non +24;Dordogne;02;2ème circonscription;6;12;M;DELFOUR;Aurélien;16/03/1995;LR;Cadre de la fonction publique;Non;F;BORIE;Isabelle;11/09/1965;Non +24;Dordogne;02;2ème circonscription;7;46;F;LEGROS;Amandine;21/10/1983;DVD;Cadre de la fonction publique;Non;M;CONQUET;Jean-Pierre;25/05/1950;Non +24;Dordogne;02;2ème circonscription;8;37;M;PRATS;Hervé;27/01/1964;DSV;Technicien;Non;F;THOMAS;Sandra;06/05/1982;Non +24;Dordogne;02;2ème circonscription;9;13;F;BALLERAND;Nathalie;11/05/1963;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;RODRIGUEZ;Alain;14/12/1954;Non +24;Dordogne;02;2ème circonscription;10;30;M;ALMOSNINO;Jonathan;10/01/1988;DXG;Professeur, profession scientifique;Non;M;VILLERIOT;Jean-Michel;04/02/1959;Non +24;Dordogne;03;3ème circonscription;1;43;F;JORAND;Adélaïde;01/03/1979;DIV;Profession intermédiaire de la santé et du travail social;Non;M;TESSIER;Alexandre;11/06/1980;Non +24;Dordogne;03;3ème circonscription;2;28;M;DECOUPY;Jacques;27/05/1955;DXG;Ancien employé;Non;M;SARRAZIN;Arnaud;24/02/1968;Non +24;Dordogne;03;3ème circonscription;3;24;M;GIRARDEAU;Cyril;15/09/1992;NUPES;Commerçant et assimilé;Non;F;MARTY;Marlène;18/05/1974;Non +24;Dordogne;03;3ème circonscription;4;11;F;THOMASSON;Myriam;20/04/1977;LR;Profession intermédiaire administrative et commerciale des entreprises;Non;M;MAZI;Antoine;02/10/2000;Non +24;Dordogne;03;3ème circonscription;5;25;M;PEYROUNY;Martial;08/04/1967;DVG;Professeur, profession scientifique;Non;F;BOINEAU SERRANO;Monique;06/03/1960;Non +24;Dordogne;03;3ème circonscription;6;2;M;COUTOU;Antoine;08/06/1981;REC;Ouvrier agricole;Non;M;DUPIN DE SAINT-CYR;Brice;14/11/1950;Non +24;Dordogne;03;3ème circonscription;7;27;F;JOUBERT;Florence;30/06/1965;RN;Employé administratif d'entreprise;Non;F;JOINT;Isabelle;05/12/1963;Non +24;Dordogne;03;3ème circonscription;8;38;M;GARDILLOU;Guillaume;15/06/1972;DVC;Cadre administratif et commercial d'entreprise;Non;F;ROMAIN;Manon;10/05/2002;Non +24;Dordogne;03;3ème circonscription;9;19;F;LAVAL;Céline;09/03/1972;ECO;Employé administratif d'entreprise;Non;F;CHAMBON;Chrystelle;09/10/1968;Non +24;Dordogne;03;3ème circonscription;10;3;M;CUBERTAFON;Jean-Pierre;05/02/1948;ENS;Ancien cadre;Oui;F;HERMAN-BANCAUD;Nadine;27/06/1949;Non +24;Dordogne;03;3ème circonscription;11;23;F;DESMARTIN;Laurence;23/10/1959;DVD;Profession intermédiaire de la santé et du travail social;Non;M;MOREAU;Jean-Emile;16/02/1954;Non +24;Dordogne;04;4ème circonscription;1;42;M;GARNIER;Eric;04/03/1965;DVG;Profession de l'information, des arts et des spectacles;Non;M;VANDAELE;Didier;24/01/1950;Non +24;Dordogne;04;4ème circonscription;2;10;M;PEYTAVIE;Sébastien;17/04/1982;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;CHALARD;Emilie;29/07/1992;Non +24;Dordogne;04;4ème circonscription;3;22;M;ROUDIER;Stéphane;06/12/1969;REG;Ingénieur et cadre technique d'entreprise;Non;F;CHAPUT;Marion;06/11/1980;Non +24;Dordogne;04;4ème circonscription;4;18;F;TRAPY-JOINEL;Laurence;25/06/1961;ECO;Ancien employé;Non;F;MEICHLER;Virginie;30/09/1974;Non +24;Dordogne;04;4ème circonscription;5;31;M;YILDIRIM;Nécati;27/01/1978;DXG;Professeur, profession scientifique;Non;F;BESNARD;Céline;21/08/1974;Non +24;Dordogne;04;4ème circonscription;6;34;F;DUBOIS;Jacqueline;28/05/1957;DVC;Ancienne profession intermédiaire;Oui;F;COLOMBEL;Sylvie;26/07/1961;Non +24;Dordogne;04;4ème circonscription;7;39;F;MALEYRE;Anne-Laure;16/04/1978;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;CAPITAINE;Quentin;04/01/1998;Non +24;Dordogne;04;4ème circonscription;8;5;F;LE BERRE;Ludivine;04/07/2002;RN;Elève, étudiant;Non;M;PINSON;René;28/03/1964;Non +24;Dordogne;04;4ème circonscription;9;36;F;ROUYARD LIGNON;Frédérique;16/05/1959;DSV;Ancien cadre;Non;F;COUSTOU;Anne-Marie;14/07/1952;Non +24;Dordogne;04;4ème circonscription;10;40;M;TEILLAC;Christian;16/01/1958;DVG;Ingénieur et cadre technique d'entreprise;Non;F;LAGOUBIE;Fabienne;02/05/1966;Non +24;Dordogne;04;4ème circonscription;11;14;M;FANIER;Basile;22/08/1992;LR;Cadre administratif et commercial d'entreprise;Non;F;LE BARBIER;Claudine;18/05/1952;Non +25;Doubs;01;1ère circonscription;1;13;M;LUTZ;Thomas;29/03/1973;RN;Chef d'entreprise de 10 salariés ou plus;Non;F;JACQUINOT;Monique;24/02/1952;Non +25;Doubs;01;1ère circonscription;2;39;F;TOURNIER;Pauline;20/05/1981;DIV;Contremaître, agent de maîtrise;Non;M;NORTH;Jérôme;26/10/1986;Non +25;Doubs;01;1ère circonscription;3;43;F;COURBARON;Doïna;15/04/1982;DXG;Profession de l'information, des arts et des spectacles;Non;M;LEMAY;Tino;07/12/1983;Non +25;Doubs;01;1ère circonscription;4;23;F;MALLOL;Candice;15/03/1980;ECO;Profession intermédiaire de la santé et du travail social;Non;F;ROMARY-BREUX;Dominique;24/05/1959;Non +25;Doubs;01;1ère circonscription;5;34;F;PERNIN;Marielle;14/05/1947;ECO;Ancien cadre;Non;M;BARONCHELLI;Rémy;27/12/1994;Non +25;Doubs;01;1ère circonscription;6;22;M;CROIZIER;Laurent;29/01/1975;ENS;Professeur des écoles, instituteur et assimilé;Non;F;CORNIER;Laurence;25/06/1975;Non +25;Doubs;01;1ère circonscription;7;3;M;GALPIN;Fabrice;02/03/1972;REC;Cadre administratif et commercial d'entreprise;Non;F;CABAUD;Pascale;28/03/1956;Non +25;Doubs;01;1ère circonscription;8;4;F;VEZIES;Séverine;10/09/1973;NUPES;Professeur, profession scientifique;Non;M;FHIMA;Sami;20/01/1984;Non +25;Doubs;01;1ère circonscription;9;35;F;INEZARÈNE;Salima;19/11/1973;RDG;Professeur des écoles, instituteur et assimilé;Non;M;AUBRY;Didier;08/04/1957;Non +25;Doubs;01;1ère circonscription;10;5;F;FRIESS;Nicole;22/08/1953;DXG;Ancien employé;Non;M;RUÉ;Antony;23/02/1973;Non +25;Doubs;01;1ère circonscription;11;2;M;VIENET;Michel;23/07/1960;LR;Ancien cadre;Non;F;GRUILLOT;Marie;24/07/1960;Non +25;Doubs;01;1ère circonscription;12;42;F;KECK;Célia;25/08/1992;REG;Ouvrier non qualifié de type artisanal;Non;F;FISCHER;Mélissa;24/12/2002;Non +25;Doubs;02;2ème circonscription;1;36;F;KAOULAL;Chafia;29/05/1970;LR;Cadre administratif et commercial d'entreprise;Non;M;ROY;Daniel;23/04/1974;Non +25;Doubs;02;2ème circonscription;2;25;M;RAVACLEY;Stéphane;06/06/1970;NUPES;Artisan;Non;F;HAKKAR-BOYER;Nabia;06/07/1983;Non +25;Doubs;02;2ème circonscription;3;26;M;ALAUZET;Eric;07/06/1958;ENS;Profession libérale;Oui;F;DE WILDE;Michèle;17/05/1951;Non +25;Doubs;02;2ème circonscription;4;46;F;MEYER;Claudine;02/09/1974;REG;Professeur, profession scientifique;Non;M;BONN;Joël;21/10/1952;Non +25;Doubs;02;2ème circonscription;5;45;F;CARRAU;Barbara;27/09/1973;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BOÏTO;Enzo;22/07/2003;Non +25;Doubs;02;2ème circonscription;6;24;M;THOMASSIN;Geoffrey;19/10/1986;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;F;ARMANA;Cécile;28/11/1978;Non +25;Doubs;02;2ème circonscription;7;44;M;PRENEL;Jim;30/06/1992;DSV;Employé civil et agent de service de la fonction publique;Non;F;CARBONEL;Sylvia;02/12/1952;Non +25;Doubs;02;2ème circonscription;8;6;F;VUITTON;Brigitte;29/11/1957;DXG;Professeur, profession scientifique;Non;M;MILLOT;Olivier;10/09/1982;Non +25;Doubs;02;2ème circonscription;9;14;M;FUSIS;Eric;02/10/1958;RN;Ancien cadre;Non;M;BERNARD;Franck;05/04/1967;Non +25;Doubs;03;3ème circonscription;1;16;M;FROPPIER;Christophe;07/07/1975;LR;Cadre administratif et commercial d'entreprise;Non;F;MAUGUIN;Anne-Carole;27/06/1975;Non +25;Doubs;03;3ème circonscription;2;9;F;DAYET;Virgnie;31/05/1983;NUPES;Ouvrier qualifié de type industriel;Non;M;GUINEBERT;Matthieu;03/10/1995;Non +25;Doubs;03;3ème circonscription;3;15;M;PACQUOT;Nicolas;12/12/1978;ENS;Ingénieur et cadre technique d'entreprise;Non;F;THIEBAUT;Laure;11/06/1969;Non +25;Doubs;03;3ème circonscription;4;40;M;NEDEY;Valère;25/12/1955;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;LIGIER;Régis;26/11/1973;Non +25;Doubs;03;3ème circonscription;5;27;F;TAPONNOT;Romane;05/08/2000;REC;Commerçant et assimilé;Non;M;POINSARD;Alexandre;29/04/1998;Non +25;Doubs;03;3ème circonscription;6;8;F;PASTOR;Christine;29/09/1975;DVD;Cadre administratif et commercial d'entreprise;Non;M;TURILLON;Stephane;31/03/1979;Non +25;Doubs;03;3ème circonscription;7;7;M;PLAIN;Franck;06/03/1962;DXG;Ouvrier non qualifié de type industriel;Non;F;MOUGIN;Annie;29/06/1952;Non +25;Doubs;03;3ème circonscription;8;28;F;MAHÉ;Dominique;16/10/1957;DSV;Commerçant et assimilé;Non;M;MARIANI;Reynald;22/09/1977;Non +25;Doubs;03;3ème circonscription;9;17;F;FRITSCH;Nathalie;21/06/1965;RN;Profession libérale;Non;M;POSTIF;David;25/04/1971;Non +25;Doubs;04;4ème circonscription;1;29;M;BARBIER;Frédéric;30/08/1960;ENS;Ancien cadre;Oui;F;VOIDEY;Martine;18/09/1959;Non +25;Doubs;04;4ème circonscription;2;41;M;VOLA;Yves;07/02/1949;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;F;DA SILVA;Corinne;07/01/1965;Non +25;Doubs;04;4ème circonscription;3;18;F;GRANGIER;Géraldine;13/02/1975;RN;Profession intermédiaire administrative de la fonction publique;Non;M;DENIS;Jacques;08/07/1947;Non +25;Doubs;04;4ème circonscription;4;30;M;TREPPO;Michel;01/01/1969;DXG;Ouvrier qualifié de type industriel;Non;M;KVARTSKHAVA;Georges;04/10/1935;Non +25;Doubs;04;4ème circonscription;5;31;M;AJOUX;Jean-Marc;27/09/1982;DVC;Ingénieur et cadre technique d'entreprise;Non;M;BOUZAT;Daniel;11/01/1971;Non +25;Doubs;04;4ème circonscription;6;47;F;CANARD;Elisabeth;07/07/1977;DSV;Cadre de la fonction publique;Non;F;BIAGGINI;Catherine;31/07/1963;Non +25;Doubs;04;4ème circonscription;7;10;M;BLOCH;Matthieu;26/04/1983;LR;Cadre administratif et commercial d'entreprise;Non;M;GAGLIARDI;Mathieu;04/02/1987;Non +25;Doubs;04;4ème circonscription;8;19;F;COTTIER;Brigitte;26/06/1957;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;MILLET;Christian;08/06/1958;Non +25;Doubs;04;4ème circonscription;9;11;M;VOURRON;Philippe;21/12/1966;REC;Chauffeur;Non;M;HAMITOU;Jérôme;29/03/1986;Non +25;Doubs;04;4ème circonscription;10;37;F;SADIQ;Fatia;08/10/1974;DIV;Cadre administratif et commercial d'entreprise;Non;M;ALI;Morad;01/06/1987;Non +25;Doubs;05;5ème circonscription;1;32;F;GENEVARD;Annie;07/09/1956;LR;Professeur, profession scientifique;Oui;M;LIÉGON;Éric;24/01/1961;Non +25;Doubs;05;5ème circonscription;2;38;F;KADIJEVIC;Alexandra;05/09/2002;DSV;Elève, étudiant;Non;M;PERRIER;François;26/05/1987;Non +25;Doubs;05;5ème circonscription;3;33;F;LUDI;Martine;22/06/1951;NUPES;Ancien cadre;Non;F;MORER-HAEGELIN;Pascale;07/12/1976;Non +25;Doubs;05;5ème circonscription;4;12;M;ALPY;Philippe;25/06/1960;ENS;Agriculteur sur moyenne exploitation;Non;F;INGLADA;Dominique;31/10/1964;Non +25;Doubs;05;5ème circonscription;5;21;F;JURY;Mathilde;23/08/1950;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;LAUNAY;Sébastien;27/11/1974;Non +25;Doubs;05;5ème circonscription;6;48;F;LEBECQUE;Elena;13/11/1978;REC;Cadre administratif et commercial d'entreprise;Non;M;MARTIN;Michaël;21/05/1981;Non +25;Doubs;05;5ème circonscription;7;20;F;MORRISON;Sonya;25/07/1981;DXG;Professeur, profession scientifique;Non;M;CUENOT;Claude;27/10/1964;Non +26;Drôme;01;1ère circonscription;1;15;F;CLAPOT;Mireille;14/10/1963;ENS;Cadre de la fonction publique;Oui;F;THIBAUT;Anne-Laure;15/06/1984;Non +26;Drôme;01;1ère circonscription;2;16;F;VINCENT;Pascale;20/01/1965;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;AURIOL;Olivier;28/12/1956;Non +26;Drôme;01;1ère circonscription;3;25;M;CHKERI;Karim;12/05/1976;NUPES;Profession intermédiaire administrative de la fonction publique;Non;F;FIAT;Véronique;30/10/1973;Non +26;Drôme;01;1ère circonscription;4;23;M;CASARI;Bruno;10/04/1969;DVC;Profession libérale;Non;F;LEGER;Carène;30/11/1975;Non +26;Drôme;01;1ère circonscription;5;27;F;ROSE;Samantha;03/12/1990;ECO;Ingénieur et cadre technique d'entreprise;Non;M;BARRAT;Joris;18/06/1976;Non +26;Drôme;01;1ère circonscription;6;29;M;PEHLIVAN;Ozbay;11/03/1988;DVG;Technicien;Non;F;EL BOUGHANMI;Hadda;09/06/1978;Non +26;Drôme;01;1ère circonscription;7;8;F;PUGEAT;Véronique;19/02/1955;LR;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;BRUNET;Michel;07/09/1954;Non +26;Drôme;01;1ère circonscription;8;6;F;KOPFF;Adèle;29/07/1978;DXG;Professeur, profession scientifique;Non;M;PARAVEL;Olivier;06/11/1964;Non +26;Drôme;01;1ère circonscription;9;37;M;BRÉBANT;Pierrick;20/08/1996;DSV;Commerçant et assimilé;Non;M;JURDIC;Matéo;10/12/2002;Non +26;Drôme;01;1ère circonscription;10;42;M;BARJONET;Charles;06/01/1996;DIV;Ancien employé;Non;M;MESONA;Christopher;29/07/1990;Non +26;Drôme;01;1ère circonscription;11;19;M;TOSELLO-PACE;Philippe;30/08/1946;RN;Ancien cadre;Non;F;RUIZ;Nadège;24/01/1978;Non +26;Drôme;01;1ère circonscription;12;35;F;PIGA;Tifanie;26/05/1994;ECO;Profession intermédiaire de la santé et du travail social;Non;F;HAMMACHE;Nadia;16/07/1984;Non +26;Drôme;02;2ème circonscription;1;21;F;POLLET;Lisette;04/01/1968;RN;Ouvrier qualifié de type industriel;Non;M;MARCEL;Frédéric;05/12/1962;Non +26;Drôme;02;2ème circonscription;2;12;M;ALZAT-LALY;Arnaud;22/06/1981;DSV;Professeur, profession scientifique;Non;M;BERMOND;Alexis;27/11/1998;Non +26;Drôme;02;2ème circonscription;3;28;M;BATTESTI;Thomas;22/04/1989;REC;Cadre administratif et commercial d'entreprise;Non;M;CHOUILLOU;Jean-Luc;31/08/1952;Non +26;Drôme;02;2ème circonscription;4;26;M;DUBOIS;Rémi;02/05/1985;ECO;Profession intermédiaire de la santé et du travail social;Non;F;CAUVIN-LAPEYRE;Mélanie;27/10/1970;Non +26;Drôme;02;2ème circonscription;5;34;M;MACLIN;Benoît;20/07/1977;ENS;Commerçant et assimilé;Non;F;KARGUE;Adeline;22/09/1957;Non +26;Drôme;02;2ème circonscription;6;24;M;REYNAUD;Gilles;20/04/1966;NUPES;Ancien employé;Non;F;MAHÉ;Rachel;03/05/1984;Non +26;Drôme;02;2ème circonscription;7;4;F;ARNAVON;Valérie;01/06/1967;LR;Cadre administratif et commercial d'entreprise;Non;M;GROUSSON;Daniel;09/07/1961;Non +26;Drôme;02;2ème circonscription;8;36;M;AISSOU;Mohamed;17/04/1978;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;DA SILVA;Sandra;28/10/1993;Non +26;Drôme;02;2ème circonscription;9;33;M;BOUZIANE;Salim;12/09/1972;DVC;Professeur, profession scientifique;Non;F;BRARD;Hélène;30/01/1947;Non +26;Drôme;02;2ème circonscription;10;7;M;RAT;Guy;02/05/1953;DXG;Ancien employé;Non;M;TERNO;Alain;02/05/1955;Non +26;Drôme;03;3ème circonscription;1;30;F;DE LAVERGNE;Célia;21/11/1979;ENS;Ingénieur et cadre technique d'entreprise;Oui;M;CAHN;Philippe;11/12/1951;Non +26;Drôme;03;3ème circonscription;2;3;M;BERARD;Paul;04/06/1983;LR;Cadre de la fonction publique;Non;F;ZAMMIT;Nathalie;31/03/1971;Non +26;Drôme;03;3ème circonscription;3;2;M;MAURICE;Alain;26/08/1962;DVG;Profession libérale;Non;F;PEHLIVAN;Ayten;13/03/1973;Non +26;Drôme;03;3ème circonscription;4;40;F;BLANCHARD;Elise;29/09/1953;COM;Ancien employé;Non;M;RUFFIER;Daniel;09/07/1960;Non +26;Drôme;03;3ème circonscription;5;32;F;MARTIN;Sylvie;08/03/1962;DSV;Employé civil et agent de service de la fonction publique;Non;F;BROLIRON;Sandrine;26/08/1968;Non +26;Drôme;03;3ème circonscription;6;41;F;RAYNAL;Virginie;18/12/1976;REC;Cadre administratif et commercial d'entreprise;Non;M;LEVY;Serge;07/09/1972;Non +26;Drôme;03;3ème circonscription;7;14;M;CHAMPMARTIN;Charly;03/07/1987;DXG;Professeur, profession scientifique;Non;F;MOREAU;Naïs;14/11/1987;Non +26;Drôme;03;3ème circonscription;8;18;M;DOS REIS;Philippe;09/06/1983;RN;Ingénieur et cadre technique d'entreprise;Non;M;THIBAULT;Yoann;12/01/2001;Non +26;Drôme;03;3ème circonscription;9;22;F;POCHON;Marie;04/05/1990;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BUSSAT;Christian;14/10/1956;Non +26;Drôme;04;4ème circonscription;1;13;M;JULIEN;Gérard;18/03/1946;DSV;Ancienne profession intermédiaire;Non;F;BLANCA;Marie-Thérèse;02/08/1951;Non +26;Drôme;04;4ème circonscription;2;17;M;GAFA;Olivier;17/09/1969;ENS;Profession libérale;Non;F;SARASAR;Blandine;03/03/1980;Non +26;Drôme;04;4ème circonscription;3;9;F;NICOLAS;Nadine;05/05/1951;DSV;Ancien cadre;Non;M;DAMAISIN;Erick;14/10/1963;Non +26;Drôme;04;4ème circonscription;4;11;F;ANTHOINE;Emmanuelle;02/07/1964;LR;Ancienne profession intermédiaire;Oui;M;GAUTHIER;Christian;13/12/1949;Non +26;Drôme;04;4ème circonscription;5;5;F;BERNARD;Monique;02/06/1956;DXG;Professeur, profession scientifique;Non;M;HUGUES;Maurice;16/01/1954;Non +26;Drôme;04;4ème circonscription;6;31;M;TANRIVERDI;Aydin;14/05/1989;DVG;Technicien;Non;F;DURAND;Marie;05/05/1991;Non +26;Drôme;04;4ème circonscription;7;38;F;VERNY;Geneviève;02/09/1959;REC;Ancienne profession intermédiaire;Non;M;LAVÉDRINE;Alain;19/12/1960;Non +26;Drôme;04;4ème circonscription;8;20;F;STIN;Véronique;03/04/1966;RN;Employé de commerce;Non;M;SÉNÉCLAUZE;Thierry;25/12/1963;Non +26;Drôme;04;4ème circonscription;9;10;M;JOUVET;Pierre;06/10/1986;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GUILLEMINOT;Karine;22/12/1972;Non +27;Eure;01;1ère circonscription;1;8;F;DUCAMP;Anne;05/05/1960;DXG;Ingénieur et cadre technique d'entreprise;Non;M;PANIER;Denis;06/10/1968;Non +27;Eure;01;1ère circonscription;2;36;F;LOIR;Christine;22/02/1977;RN;Profession intermédiaire de la santé et du travail social;Non;M;MICHIELS;Erik;22/11/1955;Non +27;Eure;01;1ère circonscription;3;51;M;MONNIER;Fabrice;14/09/1975;DSV;Contremaître, agent de maîtrise;Non;F;LALISSE;Stéphanie;08/10/1977;Non +27;Eure;01;1ère circonscription;4;44;M;MIGUET;Nicolas;16/01/1961;DXD;Profession de l'information, des arts et des spectacles;Non;F;MAXIMIN;Isabelle;03/04/1969;Non +27;Eure;01;1ère circonscription;5;16;F;HÉLAYEL;Catherine;13/05/1961;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;GUÉE;Aude;22/11/1968;Non +27;Eure;01;1ère circonscription;6;10;F;POIRSON;Valérie;31/05/1968;REC;Profession libérale;Non;M;HUET;Amaury;08/03/1984;Non +27;Eure;01;1ère circonscription;7;39;F;MANSOURET;Anne;14/11/1945;DVG;Ancien artisan, commerçant, chef d'entreprise;Non;M;PAISNEL;Etienne;20/06/1977;Non +27;Eure;01;1ère circonscription;8;23;F;ALLO;Véronique;17/08/1962;ECO;Ingénieur et cadre technique d'entreprise;Non;M;GATTEFOSSEY;Pierre;13/09/1927;Non +27;Eure;01;1ère circonscription;9;34;M;ALORY;Christophe;02/02/1970;LR;Ingénieur et cadre technique d'entreprise;Non;F;TRIDON;Nathalie;02/02/1965;Non +27;Eure;01;1ère circonscription;10;31;F;GIPSON;Séverine;13/12/1970;ENS;Ingénieur et cadre technique d'entreprise;Oui;M;RIVEMALE;Yves-Marie;18/02/1958;Non +27;Eure;01;1ère circonscription;11;50;M;ANCELIN;Christophe;24/12/1975;NUPES;Profession libérale;Non;F;MOREL;Eugénie;01/01/1986;Non +27;Eure;02;2ème circonscription;1;7;F;LEVAVASSEUR;Katiana;09/12/1970;RN;Ouvrier non qualifié de type industriel;Non;M;MARCHAND;Jean-Baptiste;02/04/1991;Non +27;Eure;02;2ème circonscription;2;25;F;SAMSON;Nathalie;10/03/1971;NUPES;Profession intermédiaire administrative de la fonction publique;Non;M;BEURIOT;Valéry;10/04/1970;Non +27;Eure;02;2ème circonscription;3;42;F;PEYRAUD;Mélanie;16/10/1983;DXG;Professeur, profession scientifique;Non;M;RHAZI;Philippe;21/07/1965;Non +27;Eure;02;2ème circonscription;4;35;F;FOUQUES;Martine;24/08/1952;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;CRESSON;Martine;02/04/1958;Non +27;Eure;02;2ème circonscription;5;11;M;GOUTTEFARDE;Fabien;27/09/1978;ENS;Cadre de la fonction publique;Oui;F;COLLIN;Isabelle;07/09/1975;Non +27;Eure;02;2ème circonscription;6;9;F;FAUVEAU;Françoise;23/10/1959;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;ROUSSEL;Sylvain;14/03/1989;Non +27;Eure;02;2ème circonscription;7;28;M;CRIQUET;Laurent;22/06/1965;DXG;Profession intermédiaire de la santé et du travail social;Non;F;BUHOT;Marianne;26/02/1952;Non +27;Eure;02;2ème circonscription;8;14;F;MARAGLIANO;Francine;06/11/1961;LR;Profession intermédiaire de la santé et du travail social;Non;F;CHEVALIER;Marie-Noëlle;25/12/1952;Non +27;Eure;02;2ème circonscription;9;18;M;CAMOIN;Emmanuel;14/08/1959;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;HOMMET;Bruno;19/03/1969;Non +27;Eure;02;2ème circonscription;10;17;M;DARROUSSAT;Thomas;26/11/1982;ECO;Technicien;Non;M;JOLY;Jean-Baptiste;30/09/1977;Non +27;Eure;02;2ème circonscription;11;40;M;BERTOIS;Sylvain;25/04/1972;DVD;Technicien;Non;F;GUYOMARD;Valérie;13/06/1973;Non +27;Eure;03;3ème circonscription;1;46;F;TAMARELLE-VERHAEGHE;Marie;27/09/1962;ENS;Cadre de la fonction publique;Oui;M;VIDAL;Arnaud;01/05/1983;Non +27;Eure;03;3ème circonscription;2;27;M;DELANGLE;Julien;03/04/1987;DIV;Commerçant et assimilé;Non;M;CORBEL;Antoine;22/03/1995;Non +27;Eure;03;3ème circonscription;3;29;M;COSTEY;Christophe;22/08/1971;DVD;Chauffeur;Non;F;MÉRIMÉE;Valérie;21/04/1971;Non +27;Eure;03;3ème circonscription;4;37;M;ELEXHAUSER;Thomas;07/03/1989;DVD;Profession libérale;Non;F;FERAUD;Sara;03/09/1976;Non +27;Eure;03;3ème circonscription;5;15;F;WAYOLLE;Annaïck;12/02/1964;ECO;Cadre de la fonction publique;Non;M;WAYOLLE;Eric;15/08/1962;Non +27;Eure;03;3ème circonscription;6;22;F;LE PÊCHEUR;Dorine;07/03/1974;NUPES;Artisan;Non;M;TURPIN;Jean-Christophe;01/03/1988;Non +27;Eure;03;3ème circonscription;7;49;F;ROUVIER;Catherine;25/11/1951;REC;Cadre de la fonction publique;Non;M;TERRIER;Thierry;03/06/1951;Non +27;Eure;03;3ème circonscription;8;41;F;HUARD;Marie-Noëlle;06/12/1959;DXG;Professeur des écoles, instituteur et assimilé;Non;M;MARRE;Éric;21/04/1979;Non +27;Eure;03;3ème circonscription;9;13;M;MAUVIEUX;Kévin;09/09/1991;RN;Employé de commerce;Non;M;LIGNY;Aurélien;24/09/1992;Non +27;Eure;04;4ème circonscription;1;2;M;SOLAL;Christophe;09/02/1967;DXG;Ouvrier qualifié de type industriel;Non;F;ALNIKINE;Monique;07/10/1960;Non +27;Eure;04;4ème circonscription;2;33;M;THOMAS;Sylvain;24/11/1968;ECO;Ancien employé;Non;M;LEBOUCQ;Dominique;01/04/1959;Non +27;Eure;04;4ème circonscription;3;53;F;DJEMEL;Nadjia;05/04/1973;ECO;Employé de commerce;Non;F;GILLET;Marylin;11/03/1986;Non +27;Eure;04;4ème circonscription;4;47;M;QUESTEL;Bruno;21/12/1966;ENS;Profession libérale;Oui;F;BREEMEERSCH;Nathalie;12/12/1969;Non +27;Eure;04;4ème circonscription;5;20;M;BERTRAND;William;29/12/1945;REC;Ancien artisan, commerçant, chef d'entreprise;Non;M;PÉLOFFY;François-Marie;13/08/1959;Non +27;Eure;04;4ème circonscription;6;19;M;DEBACHE;Naji;20/07/1958;DSV;Ancien employé;Non;F;SIMON;Julie;06/12/1980;Non +27;Eure;04;4ème circonscription;7;38;M;BRUN;Philippe;16/10/1991;NUPES;Cadre de la fonction publique;Non;F;MOREAU;Lisa;18/11/1985;Non +27;Eure;04;4ème circonscription;8;21;F;PERCHET;Marie-Dominique;29/07/1951;LR;Ancien artisan, commerçant, chef d'entreprise;Non;M;CROCFER;Raphaël;30/11/1996;Non +27;Eure;04;4ème circonscription;9;32;M;GUILMIN;Anthony;11/09/1983;DIV;Ouvrier qualifié de type artisanal;Non;F;SERY;Mélanie;09/04/1986;Non +27;Eure;04;4ème circonscription;10;26;F;SAULIÈRE;Chrystelle;22/02/1974;RN;Contremaître, agent de maîtrise;Non;M;BALSAN;Benoît;22/06/1990;Non +27;Eure;04;4ème circonscription;11;52;M;TACONET;Olivier;03/08/1954;RDG;Ancien cadre;Non;M;MARTIN;Franck;03/07/1955;Non +27;Eure;05;5ème circonscription;1;30;F;NIAKATE;Fataumata;05/02/1982;DXD;Profession intermédiaire de la santé et du travail social;Non;M;PRADEL;Olivier;29/03/1978;Non +27;Eure;05;5ème circonscription;2;6;M;JOURDAIN;Pierre-Yves;24/04/1978;NUPES;Profession de l'information, des arts et des spectacles;Non;F;SEGUELA;Martine;09/11/1961;Non +27;Eure;05;5ème circonscription;3;43;F;BLITMAN;Delphine;03/07/1978;DXG;Professeur, profession scientifique;Non;F;COLIN;Anne-Marie;08/03/1949;Non +27;Eure;05;5ème circonscription;4;3;M;TOQUARD;Karl;02/06/1977;DSV;Commerçant et assimilé;Non;F;LECOQUIERRE;Sandrine;03/10/1980;Non +27;Eure;05;5ème circonscription;5;5;M;HOUSSIN;Timothée;29/07/1988;RN;Profession intermédiaire administrative de la fonction publique;Non;F;PONTY;Laura;13/07/1996;Non +27;Eure;05;5ème circonscription;6;4;F;RABIER;Martine;10/03/1966;ECO;Employé civil et agent de service de la fonction publique;Non;F;BIGNAND;Christine;18/10/1965;Non +27;Eure;05;5ème circonscription;7;12;M;BONNET;François;24/01/1961;REC;Profession libérale;Non;F;GIBERT;Catherine;07/07/1953;Non +27;Eure;05;5ème circonscription;8;24;F;FONTAINE;Joëlle;15/03/1944;ECO;Profession libérale;Non;M;ALLO;Ludovic;05/05/1960;Non +27;Eure;05;5ème circonscription;9;48;M;DAVERTON;David;14/12/1985;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;GAVELLE;Patricia;15/07/1964;Non +27;Eure;05;5ème circonscription;10;45;M;OUZILLEAU;François;18/09/1984;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;LOOBUYCK;Béatrice;27/12/1958;Non +28;Eure-et-Loir;01;1ère circonscription;1;5;M;MAZAHERI;Pierre;29/07/1978;ECO;Ancien cadre;Non;F;REIGNIER;Liliane;27/10/1950;Non +28;Eure-et-Loir;01;1ère circonscription;2;45;M;MAILLET;Lucien;05/10/1954;DSV;Ancien cadre;Non;F;DUEZ;Caroline;07/09/1969;Non +28;Eure-et-Loir;01;1ère circonscription;3;34;M;VERGNE;Ladislas;24/12/1991;LR;Cadre de la fonction publique;Non;F;HONNEUR;Sylvie;29/02/1964;Non +28;Eure-et-Loir;01;1ère circonscription;4;31;F;DORANGE;Karine;17/07/1969;DVD;Cadre administratif et commercial d'entreprise;Non;M;LAFORGE;Thomas;25/04/1977;Non +28;Eure-et-Loir;01;1ère circonscription;5;10;M;KASBARIAN;Guillaume;28/02/1987;ENS;Cadre administratif et commercial d'entreprise;Oui;F;DE MONTCHALIN;Véronique;20/06/1948;Non +28;Eure-et-Loir;01;1ère circonscription;6;25;F;AUBERT;Marie-José;06/02/1955;DXG;Professeur, profession scientifique;Non;M;LUCAS;Thierry;03/01/1956;Non +28;Eure-et-Loir;01;1ère circonscription;7;30;M;GUILLEMAIN;Quentin;31/07/1984;NUPES;Cadre de la fonction publique;Non;F;CHANFRAU;Dominique;08/02/1955;Non +28;Eure-et-Loir;01;1ère circonscription;8;23;M;HEMARDINQUER;Cyril;05/11/1981;REC;Policier et militaire;Non;F;SAVILLE;Danièle;03/03/1954;Non +28;Eure-et-Loir;01;1ère circonscription;9;6;M;DELORME-MONSARRAT;David;23/09/1997;RN;Elève, étudiant;Non;F;BORTOLUSSI;Sylvie;16/07/1963;Non +28;Eure-et-Loir;02;2ème circonscription;1;11;M;MARLEIX;Olivier;06/02/1971;LR;Cadre de la fonction publique;Oui;F;MINARD;Christelle;04/10/1970;Non +28;Eure-et-Loir;02;2ème circonscription;2;9;M;CHAARY;Yassin;16/11/1986;DXG;Personnel des services directs aux particuliers;Non;M;AIT-OUZZIH;Rachid;25/03/1992;Non +28;Eure-et-Loir;02;2ème circonscription;3;43;F;KRAEMER;Emmanuelle;27/07/1964;DXG;Professeur, profession scientifique;Non;M;THÉRON;Samuel;02/10/1992;Non +28;Eure-et-Loir;02;2ème circonscription;4;35;M;DAVID;Maxime;09/11/1989;ENS;Cadre de la fonction publique;Non;F;SCAVENNEC;Marie-Françoise;09/02/1958;Non +28;Eure-et-Loir;02;2ème circonscription;5;27;F;D'AMILLY;Agnès;23/06/1966;REC;Cadre administratif et commercial d'entreprise;Non;F;ROGÉ;Florence;25/12/1956;Non +28;Eure-et-Loir;02;2ème circonscription;6;2;M;REIGNIER;Pierre-Marcel;17/09/1958;ECO;Ancien employé;Non;F;MAZAHERI;Maylis;12/01/1951;Non +28;Eure-et-Loir;02;2ème circonscription;7;8;F;JAFFRENOU;Béatrice;28/02/1960;DXG;Profession intermédiaire de la santé et du travail social;Non;M;MAILLOT;Dominique;03/12/1954;Non +28;Eure-et-Loir;02;2ème circonscription;8;26;M;DENIS;Adrien;04/04/1986;DXG;Professeur, profession scientifique;Non;F;MOGUELET;Viviane;22/08/1968;Non +28;Eure-et-Loir;02;2ème circonscription;9;37;M;BOËTÉ;Kévin;19/03/1988;NUPES;Chauffeur;Non;F;LUNA;Clarisse;17/06/1958;Non +28;Eure-et-Loir;02;2ème circonscription;10;41;F;LUZEAU;Emeline;07/06/1988;DSV;Cadre administratif et commercial d'entreprise;Non;M;DUEZ;François;03/05/1972;Non +28;Eure-et-Loir;02;2ème circonscription;11;33;F;CASTRO;Sylvie;21/04/1955;ECO;Ancien employé;Non;M;ALEXANDRE;Marc;17/11/1980;Non +28;Eure-et-Loir;02;2ème circonscription;12;20;M;NIKOLIC;Aleksandar;04/10/1986;RN;Employé administratif d'entreprise;Non;F;CHEVREAU;Kristell;15/01/1977;Non +28;Eure-et-Loir;03;3ème circonscription;1;29;M;LAQUA;Éric;11/12/1963;REC;Profession intermédiaire de la santé et du travail social;Non;M;DE BOISFOSSÉ;Thibault;26/08/1976;Non +28;Eure-et-Loir;03;3ème circonscription;2;22;F;ORFILA;Valéria;11/09/1969;NUPES;Profession de l'information, des arts et des spectacles;Non;M;CHESNEAU;Sylvain;24/02/1975;Non +28;Eure-et-Loir;03;3ème circonscription;3;42;M;MARTIAL;Rémi;17/03/1982;LR;Profession libérale;Non;M;BOUDET;Jean-Paul;20/09/1951;Non +28;Eure-et-Loir;03;3ème circonscription;4;28;F;GERACI;Carole;27/10/1972;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;TUFFIER;Daniel;17/10/1947;Non +28;Eure-et-Loir;03;3ème circonscription;5;32;M;LAMIRAULT;Luc;12/05/1962;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;M;BUISSON;Hervé;16/10/1965;Non +28;Eure-et-Loir;03;3ème circonscription;6;14;F;FLAUNET;Régine;18/04/1955;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;WATBLED;Patrick;23/02/1961;Non +28;Eure-et-Loir;03;3ème circonscription;7;21;M;BOUTICOURT;Damien;15/07/1975;DSV;Cadre administratif et commercial d'entreprise;Non;F;BARBIER-POTTIER;Valérie;31/03/1970;Non +28;Eure-et-Loir;03;3ème circonscription;8;13;M;CHEVROLLIER;Vincent;30/03/1971;DXG;Professeur des écoles, instituteur et assimilé;Non;F;LEFEUVRE;Virginie;11/07/1976;Non +28;Eure-et-Loir;03;3ème circonscription;9;40;F;JOLY;Vivette;05/01/1955;ECO;Profession libérale;Non;F;MARIE;Odile;06/05/1949;Non +28;Eure-et-Loir;03;3ème circonscription;10;24;M;RIBAS;Romain;13/04/1987;DVC;Professeur, profession scientifique;Non;M;ADJIBI;Jean-Baptiste;29/08/1963;Non +28;Eure-et-Loir;03;3ème circonscription;11;38;F;DARDABA;Soumaya;27/07/1975;ECO;Contremaître, agent de maîtrise;Non;M;EDMOND;Pascal;29/05/1966;Non +28;Eure-et-Loir;03;3ème circonscription;12;12;F;BARBIER;Claire;21/08/1988;ECO;Profession libérale;Non;F;DUPERRAY;Nolwenn;07/09/1988;Non +28;Eure-et-Loir;03;3ème circonscription;13;4;F;LAMOUREUX;Aurore;31/01/1986;DXG;Professeur, profession scientifique;Non;F;MAS;Nicole;19/11/1955;Non +28;Eure-et-Loir;04;4ème circonscription;1;36;M;GASTON;Mathieu;26/10/1979;NUPES;Professeur, profession scientifique;Non;F;BLANC;Emilie;18/12/1986;Non +28;Eure-et-Loir;04;4ème circonscription;2;16;M;LHOPITEAU;Vincent;24/06/1957;REC;Agriculteur sur moyenne exploitation;Non;F;GALLIEN;Isabelle;08/11/1959;Non +28;Eure-et-Loir;04;4ème circonscription;3;7;M;VIGIER;Philippe;03/02/1958;ENS;Profession libérale;Oui;M;LECLERCQ;Laurent;26/11/1970;Non +28;Eure-et-Loir;04;4ème circonscription;4;17;F;DE OLIVEIRA;Virginia;23/02/1972;RN;Ingénieur et cadre technique d'entreprise;Non;M;TRAN;Roger;11/03/1952;Non +28;Eure-et-Loir;04;4ème circonscription;5;18;M;MIOQUE;Pierre;11/11/1968;ECO;Technicien;Non;M;MAZAHERI;Micha;14/08/1990;Non +28;Eure-et-Loir;04;4ème circonscription;6;19;F;ASSAYAG;Anne-Laure;01/11/1980;DXG;Professeur, profession scientifique;Non;M;GALLIOT;Stéphane;06/10/1984;Non +28;Eure-et-Loir;04;4ème circonscription;7;44;F;DASSAS;Evelyne;11/12/1940;ECO;Professeur, profession scientifique;Non;F;BOTELLA;Audrey;15/12/1993;Non +28;Eure-et-Loir;04;4ème circonscription;8;15;F;MEYBLUM;Elisabeth;22/02/1954;LR;Profession libérale;Non;M;BELOUET;Olivier;16/01/1964;Non +28;Eure-et-Loir;04;4ème circonscription;9;39;F;LEMOINE;Aude;09/01/1975;DSV;Ingénieur et cadre technique d'entreprise;Non;M;DOLLÉ;Laurent;07/12/1983;Non +29;Finistère;01;1ère circonscription;1;49;M;FONTAINE;Georges-Philippe;08/05/1971;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;TREBAUL;Hélène;16/02/1972;Non +29;Finistère;01;1ère circonscription;2;3;M;BILLARD;Thierry;24/05/1973;DSV;Employé civil et agent de service de la fonction publique;Non;F;MADRANGES;Sylvie;21/07/1960;Non +29;Finistère;01;1ère circonscription;3;85;F;GUÉGAN;Izold;09/12/1992;REG;Profession libérale;Non;M;HERVÉ;Frédéric;09/09/1971;Non +29;Finistère;01;1ère circonscription;4;58;M;LE REST;Bernard;14/01/1950;REG;Ancien artisan, commerçant, chef d'entreprise;Non;F;QUÉNÉHERVÉ;Maryse;04/10/1954;Non +29;Finistère;01;1ère circonscription;5;74;F;LE MEUR;Annaïg;29/04/1973;ENS;Profession libérale;Oui;F;BAYES;Gwenola;30/10/1970;Non +29;Finistère;01;1ère circonscription;6;35;F;MÉNARD;Isabelle;20/11/1975;UDI;Cadre administratif et commercial d'entreprise;Non;M;BERDER;Éric;18/05/1961;Non +29;Finistère;01;1ère circonscription;7;26;F;HERMAN;France;14/04/1964;REC;Ingénieur et cadre technique d'entreprise;Non;M;CHAZÉ;Jean-Christophe;03/04/1969;Non +29;Finistère;01;1ère circonscription;8;2;F;HÉNAFF;Christel;12/09/1968;RN;Employé administratif d'entreprise;Non;M;LE GRAND;Roland;10/05/1970;Non +29;Finistère;01;1ère circonscription;9;27;M;LEBERT;Grégory;05/06/1979;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;PHILIPPE;Margaux;16/03/1988;Non +29;Finistère;01;1ère circonscription;10;64;F;PIRO;Élisabeth;23/01/1951;DXG;Ancien employé;Non;M;HARDY;Serge;08/09/1967;Non +29;Finistère;02;2ème circonscription;1;78;M;SALAMI;Réza;21/03/1964;SOC;Commerçant et assimilé;Non;F;JESTIN;Sylvie;13/02/1960;Non +29;Finistère;02;2ème circonscription;2;45;M;COLLARD;Rémy;07/08/1985;DXG;Professeur, profession scientifique;Non;M;CHERBLANC;André;05/11/1949;Non +29;Finistère;02;2ème circonscription;3;18;M;LE CORRE;Jean-Yves;17/04/1965;ECO;Profession intermédiaire de la santé et du travail social;Non;F;LEBLANC;Brigitte;22/12/1963;Non +29;Finistère;02;2ème circonscription;4;22;M;LARSONNEUR;Jean-Charles;24/01/1984;DVC;Cadre de la fonction publique;Oui;F;KHALIL;Taiseer;08/06/1985;Non +29;Finistère;02;2ème circonscription;5;77;F;MADEC;Sylvia;14/04/1978;REG;Employé civil et agent de service de la fonction publique;Non;M;MERDY;Patrick;28/08/1954;Non +29;Finistère;02;2ème circonscription;6;61;F;GÉLÉBART;Anne;03/10/1956;UDI;Ancien cadre;Non;M;PAGÈS;Yves;12/06/1948;Non +29;Finistère;02;2ème circonscription;7;60;M;HEBERT;Gérald;14/09/1970;DSV;Employé civil et agent de service de la fonction publique;Non;F;GAILLARD;Aurélie;22/07/1983;Non +29;Finistère;02;2ème circonscription;8;23;M;HITA;Melvyn;28/02/2001;DXG;Elève, étudiant;Non;F;PERNOT-GOARVOT;Morgane;24/07/1998;Non +29;Finistère;02;2ème circonscription;9;54;F;VASSEUR;Alice;18/08/1973;DVG;Professeur des écoles, instituteur et assimilé;Non;M;GARCIA;Vincent;10/06/1988;Non +29;Finistère;02;2ème circonscription;10;28;M;PELLICANO;Fortuné;09/08/1955;RDG;Profession libérale;Non;F;CLEUZIOU;Carole;26/12/1970;Non +29;Finistère;02;2ème circonscription;11;68;M;CADALEN;Pierre-Yves;09/07/1992;NUPES;Professeur, profession scientifique;Non;F;MESMEUR;Marie;12/08/1994;Non +29;Finistère;02;2ème circonscription;12;48;M;CABON;Mikaël;11/10/1973;DVC;Professeur, profession scientifique;Non;F;GUILLEMOT;Nadine;27/09/1967;Non +29;Finistère;02;2ème circonscription;13;11;M;COATANEA;Marc;09/04/1973;ENS;Cadre administratif et commercial d'entreprise;Non;F;TARDITI;Corinne;17/10/1967;Non +29;Finistère;02;2ème circonscription;14;44;F;POULLAOUEC;Yvette;12/11/1965;RN;Ouvrier qualifié de type industriel;Non;M;HUNERWADEL;Moïse;24/05/1980;Non +29;Finistère;02;2ème circonscription;15;15;F;MIGEREL;Sandrine;25/11/1981;REG;Profession intermédiaire de la santé et du travail social;Non;M;VALENTIN-LEMENI;Fragan;29/11/1982;Non +29;Finistère;02;2ème circonscription;16;20;F;LOUVEL;Elisabeth;06/11/1981;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BERNA;Frédéric;27/03/1965;Non +29;Finistère;03;3ème circonscription;1;67;M;SMOLARZ;Pierre;29/03/1983;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;VACHER;Emmanuelle;22/09/1964;Non +29;Finistère;03;3ème circonscription;2;76;M;DUPRAT;Loïc;22/11/1976;REG;Ingénieur et cadre technique d'entreprise;Non;M;GUIVARCH;Benoît;30/12/1972;Non +29;Finistère;03;3ème circonscription;3;41;M;ABASQ;Roger;02/06/1995;RN;Ouvrier qualifié de type industriel;Non;M;GILOUX;Corentin;20/11/2000;Non +29;Finistère;03;3ème circonscription;4;43;M;MULLER;Matthieu;28/10/1974;DXG;Ingénieur et cadre technique d'entreprise;Non;F;BOUDOUX;France;30/08/1956;Non +29;Finistère;03;3ème circonscription;5;33;M;LE GAC;Didier;19/07/1965;ENS;Profession intermédiaire administrative et commerciale des entreprises;Oui;F;ROUDAUT;Anne-Thérèse;03/10/1970;Non +29;Finistère;03;3ème circonscription;6;36;M;GUEGUEN;Yves;25/08/1963;DSV;Chef d'entreprise de 10 salariés ou plus;Non;M;MARTIN;Alexandre;09/09/1994;Non +29;Finistère;03;3ème circonscription;7;19;F;LE MOIGN;Patricia;27/09/1963;REC;Professeur, profession scientifique;Non;M;BERNA;Yann;10/04/1999;Non +29;Finistère;03;3ème circonscription;8;71;M;GOVERNATORI;Jean-Marc;28/12/1958;ECO;Cadre administratif et commercial d'entreprise;Non;F;DESOUTTER;Jacqueline;15/02/1938;Non +29;Finistère;03;3ème circonscription;9;87;M;LE BIAN;Francis;30/05/1949;LR;Commerçant et assimilé;Non;F;GODEBERT;Nathalie;24/06/1971;Non +29;Finistère;04;4ème circonscription;1;66;M;BEAUPRÉ;Michel;07/10/1956;REG;Commerçant et assimilé;Non;F;MEZIANE;Sonia;15/03/1963;Non +29;Finistère;04;4ème circonscription;2;70;F;VULPIANI;Sylvaine;19/09/1963;NUPES;Profession libérale;Non;M;CAROFF;Arnaud;07/12/1980;Non +29;Finistère;04;4ème circonscription;3;83;F;HÉNAFF;Marie-Claire;04/07/1956;LR;Ancien agriculteur exploitant;Non;M;RIOU;Thierry;24/07/1969;Non +29;Finistère;04;4ème circonscription;4;12;M;BERGAMI;Jérôme;04/07/1974;REC;Profession libérale;Non;F;MAFAITY;Sylvie;26/07/1951;Non +29;Finistère;04;4ème circonscription;5;84;M;ENFROY;Guillaume;30/03/1981;DIV;Ingénieur et cadre technique d'entreprise;Non;M;CANAL;Christophe;27/09/1975;Non +29;Finistère;04;4ème circonscription;6;25;M;LEMÉNICIER;Jean-François;12/05/1967;ECO;Professeur, profession scientifique;Non;F;RUDAZ;Cécile;19/10/1976;Non +29;Finistère;04;4ème circonscription;7;34;M;PAYRAUD;Michel;02/03/1962;DVC;Ancien cadre;Non;M;ANQUET;Stéphane;14/11/1965;Non +29;Finistère;04;4ème circonscription;8;63;F;RENOU;Monique;11/05/1957;DSV;Ancien cadre;Non;F;AZRIA;Alexandra;06/08/1971;Non +29;Finistère;04;4ème circonscription;9;24;F;LE FEUR;Sandrine;18/03/1991;ENS;Agriculteur sur moyenne exploitation;Oui;M;GRALL;Eric;18/11/1961;Non +29;Finistère;04;4ème circonscription;10;46;M;BIHOUEE;Tony;21/10/1986;RN;Technicien;Non;M;SIMON;Tiphaine;01/03/1975;Non +29;Finistère;04;4ème circonscription;11;14;F;BLOSSE;Patricia;21/05/1960;DXG;Ancienne profession intermédiaire;Non;M;MARCHAL;Alain;15/04/1955;Non +29;Finistère;05;5ème circonscription;1;65;F;DE CECCO;Angélique;11/04/1975;REG;Profession intermédiaire de la santé et du travail social;Non;M;GUYONVARC'H;Christian;29/12/1964;Non +29;Finistère;05;5ème circonscription;2;82;M;BRIANT;Félix;08/03/1996;LR;Elève, étudiant;Non;M;LECLERC;Patrick;17/03/1996;Non +29;Finistère;05;5ème circonscription;3;16;M;CAJEAN;Christian;21/04/1966;DXG;Employé civil et agent de service de la fonction publique;Non;F;LE DIAGON;Maëlenn;25/04/1979;Non +29;Finistère;05;5ème circonscription;4;32;F;SARRABEZOLLES;Nathalie;01/12/1970;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CHEVALIER;Christine;06/02/1969;Non +29;Finistère;05;5ème circonscription;5;10;F;MURIOT;Stéphanie;13/04/1976;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;VANHOVE;Sandrine;03/02/1972;Non +29;Finistère;05;5ème circonscription;6;13;M;LOLLIÉROU;Thierry-Hubert;03/11/1968;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;RIVOALEN;David;11/03/1973;Non +29;Finistère;05;5ème circonscription;7;5;F;THOMAÏDIS;Renée;13/08/1957;RN;Ancienne profession intermédiaire;Non;F;KRASKA;Nadja;14/06/1968;Non +29;Finistère;05;5ème circonscription;8;69;F;MELCHIOR;Graziella;06/04/1960;ENS;Professeur, profession scientifique;Oui;M;LE BORGNE;Jean-Charles;29/04/1957;Non +29;Finistère;05;5ème circonscription;9;86;F;LE NY;Brigitte;15/03/1954;REG;Ancienne profession intermédiaire;Non;M;GÉLÉOC;Bernard;29/05/1957;Non +29;Finistère;06;6ème circonscription;1;80;F;FABRE;Valérie;14/10/1957;DIV;Profession libérale;Non;M;FRENAY;Nicolas;26/06/1985;Non +29;Finistère;06;6ème circonscription;2;72;M;LE FUR;Patrick;21/07/1967;RN;Artisan;Non;M;GUILLAS;Jean;03/04/1957;Non +29;Finistère;06;6ème circonscription;3;37;F;BROUSTAUT;Sophie;01/05/1966;REC;Commerçant et assimilé;Non;M;BROUSTAUT;Roland;23/09/1995;Non +29;Finistère;06;6ème circonscription;4;62;F;THOMIN;Mélanie;04/06/1984;NUPES;Professeur, profession scientifique;Non;M;JAOUEN;Yannick;03/11/1974;Non +29;Finistère;06;6ème circonscription;5;55;M;PLOUZANÉ;Philippe;20/08/1971;REG;Professeur, profession scientifique;Non;F;LATIMIER;Ninnog;08/09/1975;Non +29;Finistère;06;6ème circonscription;6;75;M;FERRAND;Richard;01/07/1962;ENS;Ancien cadre;Oui;F;MORVAN;Annaïck;29/09/1961;Non +29;Finistère;06;6ème circonscription;7;79;M;PASQUET;Alan;21/07/1981;REG;Profession libérale;Non;M;REMOND;Iffig;27/05/1943;Non +29;Finistère;06;6ème circonscription;8;59;F;PFLIEGER;Mathilde Maria;15/05/1980;DIV;Professeur, profession scientifique;Non;M;DAL MOLIN;Éric;07/05/1958;Non +29;Finistère;06;6ème circonscription;9;50;F;NICOLAS;Gaëlle;03/06/1966;LR;Profession libérale;Non;M;NICOLAS;Bernard;10/08/1954;Non +29;Finistère;06;6ème circonscription;10;21;M;FEHRINGER;Bernard;02/07/1948;ECO;Ancien employé;Non;F;BIENCOURT;Aline;07/09/1980;Non +29;Finistère;06;6ème circonscription;11;52;M;PERENNEC;Tugdual;13/03/1986;DIV;Cadre administratif et commercial d'entreprise;Non;M;PERENNEC;Emile;09/06/1948;Non +29;Finistère;06;6ème circonscription;12;42;M;CORDIER;Philippe;23/11/1966;DXG;Personnel des services directs aux particuliers;Non;F;MULLER;Christelle;16/03/1973;Non +29;Finistère;06;6ème circonscription;13;88;F;BEAULIEU;Tiphaine;29/05/1975;DIV;Professeur, profession scientifique;Non;F;THUEUX;Delphine;27/10/1985;Non +29;Finistère;07;7ème circonscription;1;7;F;TANGUY;Liliana;12/03/1967;ENS;Cadre de la fonction publique;Oui;M;ARROUES;Bernard;08/03/1996;Non +29;Finistère;07;7ème circonscription;2;73;M;TANGUY;Jacques;04/07/1958;DIV;Ancienne profession intermédiaire;Non;M;DURAND;Marc;08/08/1989;Non +29;Finistère;07;7ème circonscription;3;9;F;BOUIN;Yolande;18/06/1960;NUPES;Ouvrier qualifié de type artisanal;Non;M;LAPERT;Alexis;13/06/1980;Non +29;Finistère;07;7ème circonscription;4;56;M;PEREZ;Alain;20/01/1956;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;PELLAÉ;Adeline;07/01/1992;Non +29;Finistère;07;7ème circonscription;5;81;M;LE GUEN;Eric;23/02/1967;LR;Professeur, profession scientifique;Non;F;KERSAUDY;Nadine;21/04/1967;Non +29;Finistère;07;7ème circonscription;6;89;F;MALET;Aela;19/09/1998;REG;Elève, étudiant;Non;M;CHAUSSY;Gaëtan;08/05/1979;Non +29;Finistère;07;7ème circonscription;7;38;M;CRIQUET;Patrik;09/01/1960;DIV;Ancien cadre;Non;M;PAVIS;Jean-Pierre;04/04/1964;Non +29;Finistère;07;7ème circonscription;8;39;M;LERICHE;Yann;01/11/1969;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;RENAUD;Raymonde;24/10/1955;Non +29;Finistère;07;7ème circonscription;9;40;M;NICOLAS;Franck;02/06/1999;RN;Elève, étudiant;Non;F;ALANOU;Annick;24/06/1960;Non +29;Finistère;07;7ème circonscription;10;17;M;DJOBO;Abbas;17/06/1970;ECO;Cadre administratif et commercial d'entreprise;Non;F;DUBOIS;Véronique;05/10/1970;Non +29;Finistère;07;7ème circonscription;11;90;M;DEBLIQUI;Régis;01/09/1954;DXG;Personnel des services directs aux particuliers;Non;F;ROUDAUT;Alice;10/12/1949;Non +29;Finistère;07;7ème circonscription;12;57;M;TOUZÉ;Maxime;27/02/1990;REG;Professeur, profession scientifique;Non;F;LE BERRE;Monique;10/10/1949;Non +29;Finistère;08;8ème circonscription;1;31;F;GOURLAOUEN;Claire;17/01/1987;LR;Professeur, profession scientifique;Non;M;KERHERVÉ;Alain;05/01/1948;Non +29;Finistère;08;8ème circonscription;2;51;M;DRAN;Laurent;23/06/1971;ECO;Ouvrier qualifié de type artisanal;Non;F;DRAN RINCK;Hélène;08/06/1974;Non +29;Finistère;08;8ème circonscription;3;29;F;CUCINIELLO;Manon;22/01/1997;DSV;Elève, étudiant;Non;F;CHARITER;Laetitia;20/08/1993;Non +29;Finistère;08;8ème circonscription;4;30;M;LE FLAO;Youenn;18/01/1964;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;F;GUILLAUME;Christiane;18/03/1957;Non +29;Finistère;08;8ème circonscription;5;6;M;BALANANT;Erwan;21/02/1971;ENS;Profession de l'information, des arts et des spectacles;Oui;F;LE CALVEZ;Fabienne;02/04/1970;Non +29;Finistère;08;8ème circonscription;6;8;M;PEREZ;Christian;16/05/1951;RN;Profession libérale;Non;F;MILLOT;Noémie;08/07/1991;Non +29;Finistère;08;8ème circonscription;7;4;F;MOREL;Anne;06/05/1964;DXG;Professeur, profession scientifique;Non;M;PIRO;Jacques;31/01/1949;Non +29;Finistère;08;8ème circonscription;8;47;M;COUËDELO;Pierre;09/02/1964;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;SAUVAGE;Éric;12/10/1961;Non +29;Finistère;08;8ème circonscription;9;53;F;PAINGAULT;Claire;28/04/1977;REG;Employé civil et agent de service de la fonction publique;Non;M;TEXIER;Lucas;02/07/1999;Non +30;Gard;01;1ère circonscription;1;21;F;DUMAS;Françoise;12/04/1960;ENS;Cadre de la fonction publique;Oui;M;MARTINEZ;Juan;11/01/1969;Non +30;Gard;01;1ère circonscription;2;4;M;GILLET;Yoann;29/08/1986;RN;Cadre de la fonction publique;Non;M;SANCHEZ;Julien;19/10/1983;Non +30;Gard;01;1ère circonscription;3;28;F;AUSSEIL;Sarah;23/11/1965;DVD;Professeur des écoles, instituteur et assimilé;Non;M;BARROT;Pierre;13/04/2002;Non +30;Gard;01;1ère circonscription;4;37;M;CAVAGLIA;Erick;04/01/1965;REC;Professeur, profession scientifique;Non;M;CHAUBET;Dylan;12/02/1995;Non +30;Gard;01;1ère circonscription;5;57;M;ZAOUCHE;Evrard;31/10/1959;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;NOAILLES-DUPLISSY;Pascale;21/10/1969;Non +30;Gard;01;1ère circonscription;6;19;F;GARDEUR-BANCEL;Véronique;05/09/1963;LR;Profession libérale;Non;M;ANDRE;Christophe;07/01/1965;Non +30;Gard;01;1ère circonscription;7;34;F;LECLERC;Isabelle;07/12/1954;DXG;Ancien employé;Non;F;JOUFFREY;Aurélia;26/12/1983;Non +30;Gard;01;1ère circonscription;8;3;M;COGO;Yannick;03/10/1986;ECO;Profession libérale;Non;F;MIDOUN;Caroline;29/04/1989;Non +30;Gard;01;1ère circonscription;9;48;F;OUATELI;Naïma;24/07/1960;DIV;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;JÉGOUX;Jerôme;25/10/1977;Non +30;Gard;01;1ère circonscription;10;36;M;MENARD;Charles;16/12/1956;NUPES;Profession libérale;Non;F;MENUT;Jo;18/11/1956;Non +30;Gard;01;1ère circonscription;11;52;M;MOULA;Alain;23/01/1956;DIV;Commerçant et assimilé;Non;F;PEREIRA;Sabrina;13/11/1983;Non +30;Gard;01;1ère circonscription;12;66;F;DANJOU;Sylvie;24/05/1962;ECO;Profession intermédiaire de la santé et du travail social;Non;M;CHENT;Mimoun;05/09/1974;Non +30;Gard;02;2ème circonscription;1;42;F;GHIRARDI;Coralie;02/04/1966;NUPES;Ingénieur et cadre technique d'entreprise;Non;M;SEGRETO;Nicolas;28/09/1983;Non +30;Gard;02;2ème circonscription;2;29;M;LACHAUD;Yvan;04/03/1954;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;CUILLÉ;Françoise;15/03/1954;Non +30;Gard;02;2ème circonscription;3;40;F;BOURRELY;Geneviève;07/10/1951;DSV;Ancien cadre;Non;M;VICTORIA;Auguste;17/11/1950;Non +30;Gard;02;2ème circonscription;4;39;M;MANSON;Stéphane;07/01/1971;DXG;Ouvrier qualifié de type industriel;Non;M;FOURMI;Valéry;28/10/1969;Non +30;Gard;02;2ème circonscription;5;61;M;TOUZELLIER;Frédéric;09/03/1959;LR;Ancien agriculteur exploitant;Non;F;FOULLON;Marilyne;10/02/1982;Non +30;Gard;02;2ème circonscription;6;46;M;VOIRON;Julien;10/04/1984;DIV;Employé de commerce;Non;M;CABANIS;Joseph;16/11/2000;Non +30;Gard;02;2ème circonscription;7;6;M;MEIZONNET;Nicolas;22/12/1983;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;DEVAUX;Caroline;03/12/1981;Non +30;Gard;02;2ème circonscription;8;14;M;MOUKITE;Zakaria;22/09/1965;ECO;Cadre de la fonction publique;Non;F;BIDAN;Céline;05/11/1969;Non +30;Gard;02;2ème circonscription;9;18;M;LEROY;Anthony;06/12/1994;REC;Ingénieur et cadre technique d'entreprise;Non;F;GUETARI;Houda;30/04/1971;Non +30;Gard;02;2ème circonscription;10;26;M;SEVILLA;Pierre-Jean;28/04/1962;ECO;Ouvrier qualifié de type industriel;Non;F;RODES;Virginie;28/09/1982;Non +30;Gard;03;3ème circonscription;1;60;F;SCARAMOZZINO;Joëlle;11/10/1960;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;M;LOVAZZANI;Sebastian;13/05/1994;Non +30;Gard;03;3ème circonscription;2;68;F;MICHON;Catherine;15/06/1971;ECO;Ouvrier agricole;Non;F;MICHON;Gisèle;09/01/1939;Non +30;Gard;03;3ème circonscription;3;43;F;NOVARETTI;Monique;16/10/1956;RDG;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;CHANSOU;Emmanuel;06/04/1965;Non +30;Gard;03;3ème circonscription;4;31;F;GUICHARD;Anne;27/03/1973;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;LAQUERRE;Alexis;24/05/1988;Non +30;Gard;03;3ème circonscription;5;5;F;BORDES;Pascale;15/10/1961;RN;Profession libérale;Non;F;DELLONG-MENG;Catherine;04/05/1960;Non +30;Gard;03;3ème circonscription;6;33;M;EGÉA;Jean;21/09/1967;DXG;Ouvrier agricole;Non;M;MISCHER;Robert;29/06/1944;Non +30;Gard;03;3ème circonscription;7;54;M;PRÉVOST;Christophe;16/05/1968;REG;Employé de commerce;Non;F;WALKOWIAK;Antoinette;23/08/1964;Non +30;Gard;03;3ème circonscription;8;17;M;CELLIER;Anthony;01/06/1975;ENS;Cadre administratif et commercial d'entreprise;Oui;F;TRAPIER;Laurence;30/10/1971;Non +30;Gard;03;3ème circonscription;9;32;F;ARNAUD;Blandine;24/05/1982;LR;Profession libérale;Non;M;BEKHTI;Ali;03/11/1965;Non +30;Gard;03;3ème circonscription;10;64;F;OROMI;Sabine;18/03/1969;NUPES;Professeur, profession scientifique;Non;M;CELLIER;Élian;11/02/1967;Non +30;Gard;03;3ème circonscription;11;11;M;MOULIN;Jean-Marie;20/05/1967;REC;Technicien;Non;F;BOUISSET;Laure;01/10/1973;Non +30;Gard;04;4ème circonscription;1;8;M;MEURIN;Pierre;30/11/1989;RN;Cadre administratif et commercial d'entreprise;Non;F;ROULLAUD;Brigitte;30/04/1969;Non +30;Gard;04;4ème circonscription;2;2;F;WAGNER;Aurélie;19/04/1978;REC;Employé administratif d'entreprise;Non;M;POUS;Michel;09/10/1957;Non +30;Gard;04;4ème circonscription;3;67;F;SCHUSTER;Nadine;03/05/1951;ECO;Professeur, profession scientifique;Non;F;AUBIN;Nathalie;12/02/1969;Non +30;Gard;04;4ème circonscription;4;56;M;GIRARD;Gaël;04/09/1985;DVD;Cadre administratif et commercial d'entreprise;Non;F;DONATO;Marion;24/03/1973;Non +30;Gard;04;4ème circonscription;5;24;F;BIENKOWSKI;Stéphanie;27/01/1972;ECO;Personnel des services directs aux particuliers;Non;M;DJOUDI;Bruno;02/06/1967;Non +30;Gard;04;4ème circonscription;6;47;M;PASSIEU;Dominique Richard;14/05/1952;DVC;Commerçant et assimilé;Non;F;PANTOUSTIER;Alexandra;04/05/1978;Non +30;Gard;04;4ème circonscription;7;27;M;BORD;Arnaud;15/05/1982;NUPES;Profession intermédiaire administrative de la fonction publique;Non;F;CHAULET;Cathy;10/11/1962;Non +30;Gard;04;4ème circonscription;8;25;M;BIAIS;Denis;10/03/1972;DSV;Ingénieur et cadre technique d'entreprise;Non;M;PRADOS;Damien;13/08/1984;Non +30;Gard;04;4ème circonscription;9;63;M;DE FARIA;Jean-Pierre;26/10/1951;DVD;Ancien cadre;Non;F;BREMOND;Christiane;10/03/1953;Non +30;Gard;04;4ème circonscription;10;41;M;RIBOT;Philippe;06/05/1961;ENS;Cadre administratif et commercial d'entreprise;Non;F;BENALI;Aïcha;27/12/1965;Non +30;Gard;04;4ème circonscription;11;50;M;NAPOLI;Stéphane;16/12/1971;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;DUPLAN;Hervé;17/12/1972;Non +30;Gard;04;4ème circonscription;12;45;F;MARTRE;Valérie;15/07/1964;UDI;Artisan;Non;M;TONDUT;Cyril;18/04/1970;Non +30;Gard;04;4ème circonscription;13;51;M;GARCIA;Jérôme;11/04/1970;DXG;Profession intermédiaire de la santé et du travail social;Non;M;SIERRA;Jacques;11/10/1959;Non +30;Gard;05;5ème circonscription;1;49;M;MERAND;Didier;25/10/1961;DIV;Ancien cadre;Non;F;HEN;Sophie;03/05/1984;Non +30;Gard;05;5ème circonscription;2;20;F;BOZEC;Frédérique;18/06/1962;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;GARDIES;Mikaël;13/11/1971;Non +30;Gard;05;5ème circonscription;3;12;F;OLINET;Agnès;15/09/1969;DXG;Profession intermédiaire de la santé et du travail social;Non;M;DE MAUVAISIN;Olivier;09/01/1955;Non +30;Gard;05;5ème circonscription;4;44;M;SALA;Michel;13/05/1954;NUPES;Ancien employé;Non;F;LEBEAU;Irène;08/03/1960;Non +30;Gard;05;5ème circonscription;5;10;F;ROCCO;Catherine;26/02/1953;ECO;Profession intermédiaire de la santé et du travail social;Non;M;MOUKITE;Anthony;31/08/1994;Non +30;Gard;05;5ème circonscription;6;9;M;LAUNAY;Jean-Marie;04/10/1991;RN;Contremaître, agent de maîtrise;Non;M;GODARD;Owen;09/01/1999;Non +30;Gard;05;5ème circonscription;7;58;M;CASANO;Nathan;26/06/2003;DVC;Elève, étudiant;Non;F;JURAS;Amandine;14/11/1997;Non +30;Gard;05;5ème circonscription;8;53;M;CAPALDI;Antoine;02/10/1962;REG;Agriculteur sur petite exploitation;Non;F;NICOLAS (JUST-MALMONT);Dominique;08/02/1964;Non +30;Gard;05;5ème circonscription;9;22;F;BRASSELET;Annie;11/09/1958;DSV;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;FROLICH;Laurent;07/04/1970;Non +30;Gard;05;5ème circonscription;10;15;F;DAUFÈS-ROUX;Catherine;24/04/1963;ENS;Cadre de la fonction publique;Oui;M;RAMON;Guillaume;22/12/1991;Non +30;Gard;05;5ème circonscription;11;59;F;BOYER;Léa;28/03/1994;LR;Cadre administratif et commercial d'entreprise;Non;M;GRANIER;François;15/07/1967;Non +30;Gard;06;6ème circonscription;1;55;F;GUILLOT;Sophie;05/08/1962;DVC;Employé de commerce;Non;M;PHILIBERT;Jean-Marc;22/01/1964;Non +30;Gard;06;6ème circonscription;2;69;M;MAURIN;Jean-Claude;25/06/1943;DVG;Ancienne profession intermédiaire;Non;M;FABRE-PUJOL;Alain;27/06/1957;Non +30;Gard;06;6ème circonscription;3;7;F;GARDET;Laurence;01/06/1969;RN;Commerçant et assimilé;Non;M;BRUNO ORTIZ;Miguel;02/09/1991;Non +30;Gard;06;6ème circonscription;4;35;M;CADÈNE;Nicolas;29/07/1981;NUPES;Cadre de la fonction publique;Non;F;LEGRAND;Catherine;28/08/1959;Non +30;Gard;06;6ème circonscription;5;16;F;TERBECHE;Aïcha;31/03/1949;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;UHL;Jérémie;27/12/1972;Non +30;Gard;06;6ème circonscription;6;62;M;STIVAL;Nicolas;02/08/1973;DSV;Ouvrier non qualifié de type industriel;Non;M;SAURY;Frédéric;15/03/1983;Non +30;Gard;06;6ème circonscription;7;23;M;GUILLEMIN;Stéphane;24/02/1977;REC;Profession libérale;Non;F;BOSC;Charlotte-Emmanuelle;15/03/1988;Non +30;Gard;06;6ème circonscription;8;65;M;GILLI;Stephane;15/07/1971;ECO;Cadre administratif et commercial d'entreprise;Non;M;NIERAT;Clement;05/08/1995;Non +30;Gard;06;6ème circonscription;9;13;M;COURDIL;François;17/05/1994;LR;Cadre administratif et commercial d'entreprise;Non;F;BONNEAU;Muriel;13/12/1971;Non +30;Gard;06;6ème circonscription;10;30;M;BENSLIMA;Mounir;09/01/1957;ECO;Cadre de la fonction publique;Non;F;AZAÏS;Catherine;11/02/1958;Non +30;Gard;06;6ème circonscription;11;38;M;BERTA;Philippe;11/04/1960;ENS;Professeur, profession scientifique;Oui;M;COLSON;Aurélien;11/09/1974;Non +31;Haute-Garonne;01;1ère circonscription;1;24;M;BAUDIS;Pierre;16/05/1988;ENS;Profession de l'information, des arts et des spectacles;Non;F;COUSIN;Dalila;31/08/1965;Non +31;Haute-Garonne;01;1ère circonscription;2;128;M;COMBES;Benjamin;30/09/1992;ECO;Ingénieur et cadre technique d'entreprise;Non;F;GAULTIER;Adrienne;16/08/1992;Non +31;Haute-Garonne;01;1ère circonscription;3;17;M;LE PENVEN;Olivier;09/11/1971;DXG;Ouvrier qualifié de type industriel;Non;M;SERTILLANGE;Jean-Pierre;05/02/1953;Non +31;Haute-Garonne;01;1ère circonscription;4;89;F;MARSAL;Cathy;11/01/1975;RN;Chauffeur;Non;F;FERRERO;Anne;24/01/1987;Non +31;Haute-Garonne;01;1ère circonscription;5;102;M;CASTILLO-MENDEGRIS;Oscar;19/03/1987;LR;Employé administratif d'entreprise;Non;F;JOLY;Stéphanie;03/05/1979;Non +31;Haute-Garonne;01;1ère circonscription;6;109;M;ROCCA;Jacques;19/07/1961;DVC;Cadre administratif et commercial d'entreprise;Non;F;LAMBERT;Stephanie;18/03/1980;Non +31;Haute-Garonne;01;1ère circonscription;7;74;M;BAPT;Pierre Nicolas;12/10/1966;RDG;Cadre administratif et commercial d'entreprise;Non;F;BARRAQUÉ ONNO;Veronique;08/12/1962;Non +31;Haute-Garonne;01;1ère circonscription;8;120;F;BOUJAT;Evelyne;09/04/1953;REG;Commerçant et assimilé;Non;M;AYMES;Adrien Vintana Guy;14/11/1996;Non +31;Haute-Garonne;01;1ère circonscription;9;41;M;CLOUET;Hadrien;13/07/1991;NUPES;Professeur, profession scientifique;Non;F;COMBRES;Aline;19/09/1952;Non +31;Haute-Garonne;01;1ère circonscription;10;68;F;BATTISTELLA;Aude;15/01/1979;REC;Cadre administratif et commercial d'entreprise;Non;M;ARNAUD;Hugues;21/04/1963;Non +31;Haute-Garonne;01;1ère circonscription;11;126;M;PICARD;Georges;12/06/1948;DXG;Ancien employé;Non;F;BOICHE;Marie-Christine;05/12/1952;Non +31;Haute-Garonne;02;2ème circonscription;1;99;M;JOVIADO;Gilles;13/09/1970;DVG;Professeur, profession scientifique;Non;F;FALIERES;Monique;20/02/1964;Non +31;Haute-Garonne;02;2ème circonscription;2;16;F;BARTHÉLÉMY;Clotilde;28/02/1969;DXG;Cadre de la fonction publique;Non;M;BIENVENU;Pierre;25/02/1964;Non +31;Haute-Garonne;02;2ème circonscription;3;53;F;GUIBERT;Adeline;23/02/1974;DVG;Cadre administratif et commercial d'entreprise;Non;M;LARAVINE;Bruce;13/09/1982;Non +31;Haute-Garonne;02;2ème circonscription;4;62;M;CAMPO;Charles;25/07/1986;DSV;Profession intermédiaire de la santé et du travail social;Non;M;GAUTIER;Kevin;07/05/1997;Non +31;Haute-Garonne;02;2ème circonscription;5;103;M;LAGLEIZE;Jean-Luc;09/09/1958;ENS;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;F;LEROY;Laurence;18/07/1968;Non +31;Haute-Garonne;02;2ème circonscription;6;113;F;DE TOURNADRE;Estelle;09/05/1990;DIV;Professeur, profession scientifique;Non;M;BESSE;Jacques;26/12/1956;Non +31;Haute-Garonne;02;2ème circonscription;7;2;F;GENNARO-SAINT;Christine;19/03/1968;LR;Ingénieur et cadre technique d'entreprise;Non;M;LAFFONT;Pierre;03/11/1999;Non +31;Haute-Garonne;02;2ème circonscription;8;64;F;CATHALA;Catherine;15/07/1961;ECO;Profession libérale;Non;M;BOUZELMAT;Jean-Luc;11/01/1966;Non +31;Haute-Garonne;02;2ème circonscription;9;69;M;MARTIN;Pierre;21/07/1961;DIV;Profession libérale;Non;M;GILLES;Florent;16/03/1975;Non +31;Haute-Garonne;02;2ème circonscription;10;87;F;TEYCHENE;Sonia;17/02/1960;RN;Chauffeur;Non;M;BREFEL;Anthony;06/04/1998;Non +31;Haute-Garonne;02;2ème circonscription;11;107;M;BALES;Laurent;06/05/1968;REG;Profession libérale;Non;F;SAURIN;Valérie;19/05/1977;Non +31;Haute-Garonne;02;2ème circonscription;12;44;M;KARASIAK;Nicolas;22/04/1987;ECO;Ingénieur et cadre technique d'entreprise;Non;F;RIBES;Marion;03/12/1980;Non +31;Haute-Garonne;02;2ème circonscription;13;27;F;STAMBACH-TERRENOIR;Anne;23/06/1980;NUPES;Cadre administratif et commercial d'entreprise;Non;M;CADIEU;Julien;07/02/1999;Non +31;Haute-Garonne;02;2ème circonscription;14;114;F;LORANS;Pauline;09/05/1997;REC;Employé civil et agent de service de la fonction publique;Non;F;BROUAT;Nathalie;21/01/1970;Non +31;Haute-Garonne;03;3ème circonscription;1;80;F;ALARCON;Stéphanie;11/07/1974;RN;Employé de commerce;Non;M;GARY;Anthony;05/04/1994;Non +31;Haute-Garonne;03;3ème circonscription;2;55;M;CALMELS;Benoît;15/02/1966;ECO;Ingénieur et cadre technique d'entreprise;Non;F;LEBOUCHER;Chantal;01/01/1946;Non +31;Haute-Garonne;03;3ème circonscription;3;31;F;ROBY;Agathe;17/11/1986;NUPES;Professeur, profession scientifique;Non;M;TARAVELLA;Aurélien;25/11/1977;Non +31;Haute-Garonne;03;3ème circonscription;4;49;F;VIGNON;Corinne;10/06/1963;ENS;Cadre administratif et commercial d'entreprise;Oui;M;TERRAIL-NOVÈS;Vincent;24/12/1978;Non +31;Haute-Garonne;03;3ème circonscription;5;50;M;SAFORCADA;David;07/01/1972;DVG;Contremaître, agent de maîtrise;Non;F;BRIKI;Nesrine;28/06/1978;Non +31;Haute-Garonne;03;3ème circonscription;6;12;F;ADRADA;Malena;01/06/1973;DXG;Professeur des écoles, instituteur et assimilé;Non;M;GRIMOUX;Olivier;06/10/1955;Non +31;Haute-Garonne;03;3ème circonscription;7;95;F;ARRIBAGÉ;Laurence;25/05/1970;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MÉDARD;Maxime;16/11/1986;Non +31;Haute-Garonne;03;3ème circonscription;8;106;M;DE GUYENRO;Olivier;31/07/1966;DVD;Commerçant et assimilé;Non;F;AMOUROUX;Aurélie;24/09/1976;Non +31;Haute-Garonne;03;3ème circonscription;9;30;M;SANVISENS;Clément;10/01/1957;ECO;Ingénieur et cadre technique d'entreprise;Non;F;BARTHOMEUF;Marie-Odile;17/03/1962;Non +31;Haute-Garonne;03;3ème circonscription;10;118;F;DULON;Camille;18/02/2003;REC;Elève, étudiant;Non;M;BERGER;Mayeul;31/01/1990;Non +31;Haute-Garonne;03;3ème circonscription;11;122;M;MUR;Patrice;07/11/1959;RDG;Profession libérale;Non;F;SAUMONT;Anne;25/05/1967;Non +31;Haute-Garonne;03;3ème circonscription;12;112;M;LIGNIER;André Michel;29/09/1954;DVG;Ancien employé;Non;F;TONIN;Elena;26/08/1936;Non +31;Haute-Garonne;04;4ème circonscription;1;81;F;SADOWSKI;Ewa;28/02/2001;RN;Elève, étudiant;Non;M;DUPRAT;Benjamin;24/05/2000;Non +31;Haute-Garonne;04;4ème circonscription;2;6;M;MARCIREAU;Patrick;02/02/1959;DXG;Ancien employé;Non;M;ROIG;Robert;06/12/1943;Non +31;Haute-Garonne;04;4ème circonscription;3;45;M;COTTREL;Arthur;24/10/1980;REC;Ingénieur et cadre technique d'entreprise;Non;F;KERN;Sylvie;02/01/1967;Non +31;Haute-Garonne;04;4ème circonscription;4;22;M;SABATER;Raimon;03/08/1974;ECO;Ingénieur et cadre technique d'entreprise;Non;F;ZDOROVAN;Mariia;07/10/1991;Non +31;Haute-Garonne;04;4ème circonscription;5;96;F;LAFARGE;Sandrine;02/11/1972;DVG;Artisan;Non;M;GOUTNIKOFF;Emmanuel;07/11/1984;Non +31;Haute-Garonne;04;4ème circonscription;6;116;M;DELMAS;Jacme;10/12/1963;REG;Artisan;Non;F;ARGAZ;Jessica;04/06/1966;Non +31;Haute-Garonne;04;4ème circonscription;7;4;F;SY;Khady-Alberte;19/06/1968;DVG;Cadre administratif et commercial d'entreprise;Non;M;KOURRAK;Habib;23/03/1971;Non +31;Haute-Garonne;04;4ème circonscription;8;33;M;PIQUEMAL;François;28/12/1984;NUPES;Professeur, profession scientifique;Non;F;SCAMPA;Victoria;01/12/1990;Non +31;Haute-Garonne;04;4ème circonscription;9;40;F;BRANDELY;Cécile;19/03/1983;DXG;Profession libérale;Non;M;BOUGUESSA;Djamel;28/03/1980;Non +31;Haute-Garonne;04;4ème circonscription;10;65;M;SERP;Bertrand;21/07/1965;LR;Profession libérale;Non;F;ADOUE-BIELSA;Caroline;07/04/1969;Non +31;Haute-Garonne;04;4ème circonscription;11;93;F;JALOUNEIX;Anaïs;19/12/1999;DVG;Elève, étudiant;Non;M;COZZOLI;Yves;17/12/1951;Non +31;Haute-Garonne;04;4ème circonscription;12;13;M;CARSALADE;Jean-Pierre;25/09/1958;DVC;Ancien cadre;Non;F;CARSALADE;Christine;13/02/1956;Non +31;Haute-Garonne;04;4ème circonscription;13;9;F;CONSTANS;Marie-Claire;07/12/1981;ENS;Cadre administratif et commercial d'entreprise;Non;M;PEDOUSSAUT;Thomas;05/11/1973;Non +31;Haute-Garonne;04;4ème circonscription;14;124;F;AGAG-BOUDJAHLAT;Fatiha;29/12/1979;DVG;Professeur, profession scientifique;Non;M;DUVAL;Lucas;12/08/2000;Non +31;Haute-Garonne;05;5ème circonscription;1;43;M;VIRGOS;Pascal;24/12/1965;DSV;Ingénieur et cadre technique d'entreprise;Non;F;SAUVAGE;Henriette;06/11/1948;Non +31;Haute-Garonne;05;5ème circonscription;2;36;M;HONTANS;Bruno;15/11/1974;REC;Policier et militaire;Non;F;EYMARD;Emilie;08/12/1979;Non +31;Haute-Garonne;05;5ème circonscription;3;23;M;CHERONNET;Jean-Christophe;26/03/1961;LR;Profession intermédiaire administrative de la fonction publique;Non;F;MENENDEZ;Isabelle;12/01/1970;Non +31;Haute-Garonne;05;5ème circonscription;4;25;M;PIQUES;Jérôme;05/12/1972;REG;Employé civil et agent de service de la fonction publique;Non;F;DE LORENZO;Linda;13/09/1985;Non +31;Haute-Garonne;05;5ème circonscription;5;26;F;ESPAGNOLLE;Sylvie;09/06/1969;NUPES;Cadre de la fonction publique;Non;M;DE FIGUEIREDO;Franck;22/06/1990;Non +31;Haute-Garonne;05;5ème circonscription;6;7;M;LASERGE;Michel;07/07/1954;DXG;Ancienne profession intermédiaire;Non;M;COMBES;Vincent;25/12/1958;Non +31;Haute-Garonne;05;5ème circonscription;7;88;M;LEONARDELLI;Julien;14/07/1987;RN;Employé de commerce;Non;F;VISSIERE;Michelle;22/05/1954;Non +31;Haute-Garonne;05;5ème circonscription;8;91;M;PORTARRIEU;Jean-François;14/10/1965;ENS;Profession de l'information, des arts et des spectacles;Oui;F;GAYRAUD;Isabelle;09/01/1969;Non +31;Haute-Garonne;05;5ème circonscription;9;47;F;VELO;Johanna;03/07/1984;ECO;Ingénieur et cadre technique d'entreprise;Non;M;LEROUX;Raphaël;13/10/1974;Non +31;Haute-Garonne;05;5ème circonscription;10;75;F;MOSDIER;Alizée;26/08/1992;RDG;Cadre administratif et commercial d'entreprise;Non;M;SALAÜN;Frédéric;22/08/1975;Non +31;Haute-Garonne;05;5ème circonscription;11;117;F;GRIEU;Anne;17/07/1977;DIV;Professeur, profession scientifique;Non;M;SCHMIDT;Denis;28/05/1957;Non +31;Haute-Garonne;05;5ème circonscription;12;115;F;GOMBERT;Laurence;27/11/1962;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;BUHAGIAR;Aurélie;04/04/1974;Non +31;Haute-Garonne;06;6ème circonscription;1;98;F;HELMAN;Christelle;25/12/1972;DVG;Cadre administratif et commercial d'entreprise;Non;M;MECABIH;Sami;07/10/2003;Non +31;Haute-Garonne;06;6ème circonscription;2;18;F;PUEL;Michele;29/07/1949;DXG;Ancienne profession intermédiaire;Non;F;MALATY;Nelly;17/06/1949;Non +31;Haute-Garonne;06;6ème circonscription;3;42;M;JOUVE;Fabien;04/06/1978;NUPES;Professeur, profession scientifique;Non;F;RENAUD;Clementine;23/11/1974;Non +31;Haute-Garonne;06;6ème circonscription;4;60;M;TARANTO;Thierry;15/11/1964;DVD;Profession libérale;Non;F;MONFRAIX;Therese;27/12/1955;Non +31;Haute-Garonne;06;6ème circonscription;5;104;F;PIUSSAN;Dominique;18/09/1961;REC;Cadre de la fonction publique;Non;F;CHEVALIER;Jocelyne;15/06/1956;Non +31;Haute-Garonne;06;6ème circonscription;6;111;M;MARTIN;Tristan;12/02/2002;DVG;Employé de commerce;Non;M;LEFEBVRE;Valmont;23/05/2002;Non +31;Haute-Garonne;06;6ème circonscription;7;8;F;IBORRA;Monique;08/03/1945;ENS;Ancien cadre;Oui;M;LAMY;Thomas;30/03/1989;Non +31;Haute-Garonne;06;6ème circonscription;8;63;F;LAPORTE;Sandra;18/04/1989;ECO;Profession libérale;Non;F;QUINTINO;Nadine;01/03/1970;Non +31;Haute-Garonne;06;6ème circonscription;9;70;M;QUINTON;Marc;10/03/1964;DIV;Cadre de la fonction publique;Non;M;MAHLE;Wolfgang;27/04/1975;Non +31;Haute-Garonne;06;6ème circonscription;10;90;F;AIELLO;Lydia;12/03/1951;RN;Artisan;Non;M;GAZZOLI;Nathan;09/09/2002;Non +31;Haute-Garonne;06;6ème circonscription;11;105;F;BONNEMAISON;Sylvie;06/02/1982;DVD;Profession intermédiaire administrative de la fonction publique;Non;M;BERARD;Olivier;16/08/1977;Non +31;Haute-Garonne;06;6ème circonscription;12;15;M;ALVES;Christophe;06/10/1977;LR;Cadre administratif et commercial d'entreprise;Non;F;LECLERC;Sophie;19/06/1972;Non +31;Haute-Garonne;06;6ème circonscription;13;34;F;PATER;Servane;21/11/2002;ECO;Elève, étudiant;Non;M;GRANT;Joachim;04/02/1993;Non +31;Haute-Garonne;06;6ème circonscription;14;127;F;LANOIX;Delphine;15/02/1972;DSV;Profession de l'information, des arts et des spectacles;Non;F;JISSEAU;Corinne;15/07/1963;Non +31;Haute-Garonne;07;7ème circonscription;1;67;M;ALBERT;Stéphane;28/08/1971;REG;Employé de commerce;Non;M;COT;Jean-Michel;13/10/1961;Non +31;Haute-Garonne;07;7ème circonscription;2;58;F;TOUTUT-PICARD;Elisabeth;17/12/1954;ENS;Ancien cadre;Oui;M;PINCHOT;Jean-Luc;03/03/1952;Non +31;Haute-Garonne;07;7ème circonscription;3;14;M;TESSEREAU;Georges-Henri;24/08/1963;REC;Cadre de la fonction publique;Non;F;DOMBES;Marie;03/06/1956;Non +31;Haute-Garonne;07;7ème circonscription;4;39;M;BEX;Christophe;14/11/1961;NUPES;Cadre de la fonction publique;Non;F;LOILLIER;Yacina;30/03/1977;Non +31;Haute-Garonne;07;7ème circonscription;5;35;M;VON DEYEN;Romain;18/04/1991;ECO;Professeur, profession scientifique;Non;F;AZOR;Valentine;02/02/1997;Non +31;Haute-Garonne;07;7ème circonscription;6;11;M;BERGNES;Hervé;12/02/1973;DXG;Technicien;Non;M;CASANOVAS;Stéphane;02/09/1963;Non +31;Haute-Garonne;07;7ème circonscription;7;73;M;THUARD;Florent;08/03/1979;DSV;Artisan;Non;F;KOSLOWSKI;Nadia;27/10/1973;Non +31;Haute-Garonne;07;7ème circonscription;8;83;F;PINATEL;Emmanuelle;07/03/1973;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;GOUSSAUD;Alexandre;15/05/1971;Non +31;Haute-Garonne;07;7ème circonscription;9;10;M;MIDALI;Julien;09/04/1993;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;BOMBAL;Berengere;14/10/1976;Non +31;Haute-Garonne;07;7ème circonscription;10;71;F;ETCHEVERRY;Sophie;19/05/1990;DIV;Ingénieur et cadre technique d'entreprise;Non;M;ETCHEVERRY;Axel;24/12/1987;Non +31;Haute-Garonne;07;7ème circonscription;11;108;F;EYMOND;Angelique;02/07/1966;DVD;Profession libérale;Non;M;MESSERDI;Omar;06/03/1954;Non +31;Haute-Garonne;07;7ème circonscription;12;94;M;BANCHERIT;Christophe;04/12/1979;LR;Commerçant et assimilé;Non;F;BLAU;Marie-Paule;05/07/1959;Non +31;Haute-Garonne;08;8ème circonscription;1;20;M;AVIRAGNET;Joël;16/06/1956;SOC;Ancien cadre;Oui;F;UCHAN;Marie-Claire;05/03/1965;Non +31;Haute-Garonne;08;8ème circonscription;2;129;F;FAUVERNIER;Annabelle;24/07/1970;NUPES;Profession libérale;Non;M;PELLUCHI;Robin;30/04/1964;Non +31;Haute-Garonne;08;8ème circonscription;3;3;F;GUIRAUD;Martine;12/05/1953;DXG;Ancien employé;Non;F;BONNET;Marie Hélène;30/06/1950;Non +31;Haute-Garonne;08;8ème circonscription;4;56;F;LAURENTIES-BARRERE;Céline;19/11/1973;ENS;Profession intermédiaire administrative de la fonction publique;Non;M;VIGREUX;Cédric;06/08/1985;Non +31;Haute-Garonne;08;8ème circonscription;5;85;M;DELCHARD;Loic;22/06/1990;RN;Artisan;Non;M;GAUDIN;Vincent;18/04/1990;Non +31;Haute-Garonne;08;8ème circonscription;6;110;M;SERRE;Wilfried;26/05/1972;DVD;Ingénieur et cadre technique d'entreprise;Non;M;THIBAUT;Jean-Paul;15/03/1960;Non +31;Haute-Garonne;08;8ème circonscription;7;48;M;HARARI;François;20/08/1953;DVG;Chef d'entreprise de 10 salariés ou plus;Non;M;NOWACKI;Michael;04/05/1987;Non +31;Haute-Garonne;08;8ème circonscription;8;119;M;KARNIKIAN;Vartan;26/03/1968;DIV;Ingénieur et cadre technique d'entreprise;Non;M;AKHAVAN NIAKI;Narges;12/06/1966;Non +31;Haute-Garonne;08;8ème circonscription;9;38;F;BAILLY;Amélie;19/07/1989;DSV;Contremaître, agent de maîtrise;Non;M;BOUTAULT;Franck;17/07/1949;Non +31;Haute-Garonne;08;8ème circonscription;10;37;M;RIERE;Yves;08/03/1948;REC;Ancien artisan, commerçant, chef d'entreprise;Non;F;CHIES;Linda;29/07/1959;Non +31;Haute-Garonne;08;8ème circonscription;11;121;M;MONCASI;Simon;20/01/1988;ECO;Elève, étudiant;Non;F;DANDIS;Dorothée;03/10/1987;Non +31;Haute-Garonne;09;9ème circonscription;1;72;F;DOROY;Juliette;25/03/1969;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;M;HOLMGREN;Julien;25/05/1982;Non +31;Haute-Garonne;09;9ème circonscription;2;66;M;COLOMINA;Damien;10/02/1988;DVG;Ingénieur et cadre technique d'entreprise;Non;F;GAUBE;Maia;08/10/1991;Non +31;Haute-Garonne;09;9ème circonscription;3;46;M;AUDISIO;Jérôme;12/09/1979;REC;Profession libérale;Non;M;CHOLET;Grégoire;30/04/1992;Non +31;Haute-Garonne;09;9ème circonscription;4;28;F;ARRIGHI;Christine;19/09/1959;NUPES;Ancien cadre;Non;F;MARTIN;Myriam;17/03/1968;Non +31;Haute-Garonne;09;9ème circonscription;5;57;F;MÖRCH;Sandrine;13/11/1961;ENS;Profession de l'information, des arts et des spectacles;Oui;M;FERJANI;Borhane;03/05/1966;Non +31;Haute-Garonne;09;9ème circonscription;6;5;M;MARTIN;Henri;30/10/1960;DXG;Professeur des écoles, instituteur et assimilé;Non;M;DERREZ;Pascal;11/08/1958;Non +31;Haute-Garonne;09;9ème circonscription;7;86;M;BARKATS;Thomas;18/06/2000;RN;Ingénieur et cadre technique d'entreprise;Non;F;BIBOLLET;Audrey;02/04/1997;Non +31;Haute-Garonne;09;9ème circonscription;8;78;M;BAUD;Robert;14/12/1948;ECO;Profession de l'information, des arts et des spectacles;Non;F;PASSICOS;Brigitte;31/03/1973;Non +31;Haute-Garonne;09;9ème circonscription;9;19;F;DUFRAISSE;Cecile;21/06/1977;LR;Ancien cadre;Non;M;BONNAFOUS;Guy;08/05/1952;Non +31;Haute-Garonne;09;9ème circonscription;10;79;M;BENSLIMANE;Younès;11/07/1996;DIV;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;ESCANDE;Matthieu;18/10/1999;Non +31;Haute-Garonne;09;9ème circonscription;11;123;F;SIRUGUE;Chantal;30/10/1953;DXG;Ancien employé;Non;M;ROUQUIE;Pierre;06/05/1943;Non +31;Haute-Garonne;09;9ème circonscription;12;100;M;RÜMLER;Paul;12/11/1986;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;GLEIZES;Marie-Pierre;04/05/1961;Non +31;Haute-Garonne;10;10ème circonscription;1;29;F;ASSIER;Alice;10/08/1996;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;NEVEU;Bernard;18/02/1959;Non +31;Haute-Garonne;10;10ème circonscription;2;32;M;SCHMITT;Eric;31/07/1961;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;BENEZECH;Elise;16/07/2003;Non +31;Haute-Garonne;10;10ème circonscription;3;84;F;POIRIER;Christelle;12/05/1963;RN;Profession libérale;Non;M;BATIGNE;Fernand;24/02/1955;Non +31;Haute-Garonne;10;10ème circonscription;4;52;F;BOURLAND;Ghislaine;04/05/1968;REC;Cadre administratif et commercial d'entreprise;Non;M;ALBERO;Christian;02/04/1947;Non +31;Haute-Garonne;10;10ème circonscription;5;125;M;CORSO;Gilles;28/01/1973;DIV;Artisan;Non;F;CORSO;Lea;15/01/2003;Non +31;Haute-Garonne;10;10ème circonscription;6;77;F;GIMENO;Séverine;13/04/1976;ECO;Chômeur n'ayant jamais travaillé;Non;M;MOREAU;Stéphane;27/08/1974;Non +31;Haute-Garonne;10;10ème circonscription;7;61;F;CONTE MARGAIL;Sandrine;28/09/1972;ECO;Profession intermédiaire de la santé et du travail social;Non;F;MARGAIL;Lucille;19/08/2002;Non +31;Haute-Garonne;10;10ème circonscription;8;21;F;RESPAUD;Stéphanie;11/05/1980;LR;Contremaître, agent de maîtrise;Non;M;DION;Nicolas;24/01/1994;Non +31;Haute-Garonne;10;10ème circonscription;9;76;F;SOUCHE;Lucile;25/10/1962;DXG;Professeur des écoles, instituteur et assimilé;Non;M;ABELLAN;Georges;02/08/1954;Non +31;Haute-Garonne;10;10ème circonscription;10;92;M;MARQUIE;Baptiste;12/07/1987;DVD;Agriculteur sur moyenne exploitation;Non;M;CAMINADE;Christian;08/09/1962;Non +31;Haute-Garonne;10;10ème circonscription;11;54;M;ZITOUNI;Réda;10/05/1970;DVC;Ingénieur et cadre technique d'entreprise;Non;F;SARRASECA;Laure;02/05/1978;Non +31;Haute-Garonne;10;10ème circonscription;12;101;F;PALAT;Nadine;17/01/1953;DXG;Ingénieur et cadre technique d'entreprise;Non;M;GASPERONI;Maurice;16/06/1946;Non +31;Haute-Garonne;10;10ème circonscription;13;59;F;FAURE;Dominique;28/08/1959;ENS;Chef d'entreprise de 10 salariés ou plus;Non;M;ESQUENET-GOXES;Laurent;23/08/1962;Non +32;Gers;01;1ère circonscription;1;8;M;YELMA;Jean-Luc;19/01/1965;RN;Profession libérale;Non;F;BERAUT;Léa;27/07/1992;Non +32;Gers;01;1ère circonscription;2;11;F;CAZES;Aurore;02/07/1987;REC;Profession libérale;Non;M;CORRAZE;Théo;21/05/2001;Non +32;Gers;01;1ère circonscription;3;2;F;LARRÉ;Nadine;18/06/1960;ECO;Profession intermédiaire de la santé et du travail social;Non;M;LARRÉ;Ludovic;11/03/1987;Non +32;Gers;01;1ère circonscription;4;18;F;OLIVIER-GOMOLKO;Maggy;07/08/1951;DSV;Ancien cadre;Non;M;FERRANDIS;Stéphane;01/07/1966;Non +32;Gers;01;1ère circonscription;5;12;M;LEVIEUX;Pascal;02/06/1968;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;HEMERY;Ann-Abel;04/05/1970;Non +32;Gers;01;1ère circonscription;6;22;M;DAVEZAC;Jean-Luc;04/10/1959;REG;Profession libérale;Non;F;MAIGNAUT;Priscilla;10/08/1987;Non +32;Gers;01;1ère circonscription;7;13;M;CAZENEUVE;Jean-René;09/06/1958;ENS;Ancien cadre;Oui;F;THIEUX-LOUIT;Véronique;28/12/1964;Non +32;Gers;01;1ère circonscription;8;17;F;DEL CASTILLO;Bernadette;07/03/1961;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;RIVES;Marie-Noelle;23/10/1955;Non +32;Gers;01;1ère circonscription;9;19;F;THEYE;Sylvie;02/12/1971;RDG;Ouvrier agricole;Non;F;CARCHON;Severine;28/10/1973;Non +32;Gers;01;1ère circonscription;10;5;M;CHARETON;Jean-Louis;03/03/1960;DXG;Technicien;Non;M;LALANNE;Tristan;03/02/1973;Non +32;Gers;02;2ème circonscription;1;9;F;BOURCIER;Maëva;20/05/1991;ENS;Ingénieur et cadre technique d'entreprise;Non;M;ARLIN;Alexandre;15/02/1995;Non +32;Gers;02;2ème circonscription;2;15;F;CENDRÉ;Alice;23/09/1993;RN;Profession intermédiaire de la santé et du travail social;Non;M;DOMINGUES;David;05/10/1970;Non +32;Gers;02;2ème circonscription;3;26;M;SOCCIO;Christopher;11/03/1985;DIV;Employé civil et agent de service de la fonction publique;Non;F;SANCHEZ;Sylvie;18/08/1951;Non +32;Gers;02;2ème circonscription;4;4;F;MARTIN;Michèle;12/09/1956;DXG;Ancienne profession intermédiaire;Non;M;GUÉNÉ;Bruno;17/02/1962;Non +32;Gers;02;2ème circonscription;5;3;M;GEIGER;Frank;31/07/1976;DIV;Ingénieur et cadre technique d'entreprise;Non;M;VILLEDARY;Benoît;09/06/1977;Non +32;Gers;02;2ème circonscription;6;23;M;FOURCADE DUTIN;Frédéric;02/10/1968;REG;Profession libérale;Non;F;DARROZÉS;Dominique;11/08/1965;Non +32;Gers;02;2ème circonscription;7;7;F;AGIER;Sylvie;02/02/1952;DSV;Ancienne profession intermédiaire;Non;M;BARRAS;Henri;13/06/1953;Non +32;Gers;02;2ème circonscription;8;16;M;MONTEIL;Eric;07/09/1954;REC;Agriculteur sur moyenne exploitation;Non;F;BOUJENAH;Ingrid;01/11/1991;Non +32;Gers;02;2ème circonscription;9;6;M;GABAS;Michel;03/02/1963;LR;Profession libérale;Non;F;DARDENNE;Joëlle;26/06/1961;Non +32;Gers;02;2ème circonscription;10;14;F;GOUDENNE;Angélique;07/03/1986;DXG;Profession intermédiaire de la santé et du travail social;Non;M;CONNAN;Pascal;30/05/1957;Non +32;Gers;02;2ème circonscription;11;25;F;HUSEINBASIC;Merima;10/11/1987;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;FERNANDEZ;Carole;26/01/1970;Non +32;Gers;02;2ème circonscription;12;24;F;DUBOS;Françoise;16/06/1958;NUPES;Profession intermédiaire administrative de la fonction publique;Non;M;ALLEENE;Christophe;09/12/1967;Non +32;Gers;02;2ème circonscription;13;21;F;TOUATI;Samira;29/04/1976;DVG;Employé civil et agent de service de la fonction publique;Non;M;PARROT;Antoine;03/01/1972;Non +32;Gers;02;2ème circonscription;14;10;M;TAUPIAC;David;13/05/1975;SOC;Profession libérale;Non;F;ROLANDO;Carole;23/04/1976;Non +33;Gironde;01;1ère circonscription;1;96;F;DUFAURE;Esther;21/02/1991;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;SOULIÉ;Alice;20/11/1997;Non +33;Gironde;01;1ère circonscription;2;3;M;LOUSTAUNAU;Xavier;17/07/1974;DVD;Profession libérale;Non;F;DE BEAUCHAINE;Hortense;19/01/1974;Non +33;Gironde;01;1ère circonscription;3;36;F;LARROQUET;Isabelle;12/06/1966;DXG;Technicien;Non;M;LAFARGUE;Eric;22/06/1960;Non +33;Gironde;01;1ère circonscription;4;32;F;CHARTIER GRIMAUD;Claire;03/05/1945;DXG;Profession intermédiaire de la santé et du travail social;Non;M;AZZOUG;Farid;11/01/1968;Non +33;Gironde;01;1ère circonscription;5;104;M;CAZENAVE;Thomas;06/03/1978;ENS;Cadre de la fonction publique;Non;F;MARTIN;Alexandra;28/07/1976;Non +33;Gironde;01;1ère circonscription;6;69;M;PALUTEAU;Bruno;27/03/1962;RN;Profession libérale;Non;F;JAVELOT;Rose;09/05/1943;Non +33;Gironde;01;1ère circonscription;7;5;M;GRATTEPANCHE;Jean-Louis;24/03/1963;REC;Ancien cadre;Non;F;DU BREUIL;Isaure;17/01/1997;Non +33;Gironde;01;1ère circonscription;8;16;M;THOMAS;Damien;01/12/1987;DVG;Commerçant et assimilé;Non;F;BERRAHMA;Allaouia;23/10/1974;Non +33;Gironde;01;1ère circonscription;9;95;M;VISAGE;Kylian;19/11/2001;DIV;Employé de commerce;Non;M;ROSEAU;Gregoire;26/07/1997;Non +33;Gironde;01;1ère circonscription;10;39;M;SABOULARD;Medhi;14/02/1988;DVG;Employé de commerce;Non;F;ANNIC;Jeanne;17/01/1989;Non +33;Gironde;01;1ère circonscription;11;102;M;BLANCHARD;Laurent;15/06/1971;ECO;Contremaître, agent de maîtrise;Non;M;TALOU;Didier;01/09/1973;Non +33;Gironde;01;1ère circonscription;12;62;M;NJIKAM;Pierre De Gaetan;07/08/1966;LR;Cadre administratif et commercial d'entreprise;Non;F;ROUYER;Margaux;02/06/1997;Non +33;Gironde;01;1ère circonscription;13;4;F;QUANDALLE;Fanny;16/12/1972;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;NARDELLI;André;22/04/1960;Non +33;Gironde;01;1ère circonscription;14;43;F;CESTARI;Catherine;17/11/1964;NUPES;Cadre administratif et commercial d'entreprise;Non;F;ZAGO;Muriel;11/04/1965;Non +33;Gironde;01;1ère circonscription;15;117;M;ROCHE;Jean-Pierre;21/02/1952;DIV;Commerçant et assimilé;Non;F;ROZEL;Nadine;01/02/1956;Non +33;Gironde;02;2ème circonscription;1;2;M;DUPONT;Guy;10/04/1958;DXG;Ancien employé;Non;F;MACARENO ROMERO;Claudine;05/02/1947;Non +33;Gironde;02;2ème circonscription;2;129;F;BELMONDO;Bruna;13/09/1955;DVD;Profession intermédiaire de la santé et du travail social;Non;M;BRU;Mathieu;05/09/1995;Non +33;Gironde;02;2ème circonscription;3;140;M;LAMBERT;Maxime;24/02/1991;ECO;Employé de commerce;Non;F;ROCHE;Émeline;24/05/1983;Non +33;Gironde;02;2ème circonscription;4;124;F;FABRE;Catherine;19/09/1978;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;PECQUEUR;Patrice;08/02/1969;Non +33;Gironde;02;2ème circonscription;5;40;F;CUNY;Emmanuelle;21/08/1967;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DE CARLI;Arnaud;18/02/1975;Non +33;Gironde;02;2ème circonscription;6;147;M;MILLAC;Mikaël;31/10/1981;DVD;Agriculteur sur petite exploitation;Non;F;SPIRIN;Elena;06/10/1953;Non +33;Gironde;02;2ème circonscription;7;122;M;MAGNE;Didier;29/11/1965;DIV;Ingénieur et cadre technique d'entreprise;Non;F;SUBILET;Marguerite;29/08/1967;Non +33;Gironde;02;2ème circonscription;8;85;F;LAURENT;Honorine;17/08/1984;ECO;Cadre administratif et commercial d'entreprise;Non;F;LACHIVER;Gaelle;14/06/1991;Non +33;Gironde;02;2ème circonscription;9;49;M;THIERRY;Nicolas;08/12/1975;NUPES;Profession libérale;Non;F;GUÉRY;Florence;30/06/1970;Non +33;Gironde;02;2ème circonscription;10;48;M;LE CAMUS;Pierre;06/09/1999;RN;Cadre de la fonction publique;Non;M;BONNAUD;Jérémy;14/05/1994;Non +33;Gironde;02;2ème circonscription;11;11;F;TOURNAY;Virginie;16/12/1976;REC;Commerçant et assimilé;Non;M;GAUDOU;Yannick;02/05/1997;Non +33;Gironde;03;3ème circonscription;1;119;F;DAYAN;Asia;15/11/2001;UDI;Elève, étudiant;Non;M;GUYOT;Thomas;03/04/1998;Non +33;Gironde;03;3ème circonscription;2;59;M;BOUTOT;Yannick;27/04/1982;RDG;Cadre de la fonction publique;Non;M;QUILLATEAU;Christopher;30/06/2000;Non +33;Gironde;03;3ème circonscription;3;120;F;SAVINO;Flora;13/04/1991;DIV;Elève, étudiant;Non;F;DAVIAUD;Fanny;12/07/1991;Non +33;Gironde;03;3ème circonscription;4;30;M;MARHADOUR;Éric;20/01/1972;DXG;Ouvrier qualifié de type industriel;Non;M;GULDNER;Jacques;24/02/1955;Non +33;Gironde;03;3ème circonscription;5;8;M;PRUD'HOMME;Loïc;19/08/1969;NUPES;Technicien;Oui;F;TCHIKAYA;Marlène;25/03/1974;Non +33;Gironde;03;3ème circonscription;6;114;F;MATHO;Morgan;14/11/1998;DIV;Professeur des écoles, instituteur et assimilé;Non;M;FORTIN;Clément;26/08/2000;Non +33;Gironde;03;3ème circonscription;7;42;M;ROBERT;Fabien;22/12/1984;ENS;Professeur, profession scientifique;Non;F;FABRE-TABOURIN;Frédérique;10/02/1967;Non +33;Gironde;03;3ème circonscription;8;109;M;MARC;Laurent;27/07/1976;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;SALICETI;Marianick;21/09/1952;Non +33;Gironde;03;3ème circonscription;9;68;M;DOUMENGE;Cyrille;20/02/1960;REC;Cadre administratif et commercial d'entreprise;Non;M;CRUZ-MERMY;Vincent;06/03/1991;Non +33;Gironde;03;3ème circonscription;10;77;F;BASTERES;Maryvonne;20/03/1953;RN;Ancienne profession intermédiaire;Non;M;VIDAL;Sebastien;15/05/1985;Non +33;Gironde;03;3ème circonscription;11;45;M;DAUREL;François;16/12/1992;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;JOUBERT;Chloé;04/01/1994;Non +33;Gironde;03;3ème circonscription;12;94;M;VAY;Thierry;12/11/1956;ECO;Ancien employé;Non;F;BETEND;Frédérique;17/12/1973;Non +33;Gironde;04;4ème circonscription;1;53;M;FILLANG;Jean Patrice;27/05/1953;DVD;Ancien cadre;Non;M;GIACOMETTI;Yohann;19/10/1992;Non +33;Gironde;04;4ème circonscription;2;71;F;MATHIEU;Marie-Mauricette, Simone;22/10/1955;DSV;Ancien employé;Non;M;HUNOU;Daniel Jean Édouard;13/06/1943;Non +33;Gironde;04;4ème circonscription;3;82;F;GAILLARD;Christine;04/07/1971;DVD;Profession intermédiaire de la santé et du travail social;Non;M;LASSALLE;Jérôme;05/05/1970;Non +33;Gironde;04;4ème circonscription;4;87;F;DESTANDAU;Ambre;10/11/2001;ECO;Elève, étudiant;Non;M;DUREUX;Malo;27/03/2002;Non +33;Gironde;04;4ème circonscription;5;31;M;DAVID;Alain;02/06/1949;NUPES;Ancien cadre;Oui;M;GUENDEZ;Nordine;29/08/1974;Non +33;Gironde;04;4ème circonscription;6;103;F;KARACA;Melissa;06/05/1994;ENS;Employé civil et agent de service de la fonction publique;Non;M;VERBOIS;Philippe;03/11/1962;Non +33;Gironde;04;4ème circonscription;7;35;F;CASANOVA;Monica;24/12/1965;DXG;Professeur, profession scientifique;Non;F;HÉRAUD;Christine;23/07/1959;Non +33;Gironde;04;4ème circonscription;8;23;F;BRIVARY;Anne-Isabelle;10/08/1964;DXG;Employé administratif d'entreprise;Non;M;PRET;Patrick;03/05/1962;Non +33;Gironde;04;4ème circonscription;9;29;M;GARNIER;Philippe;21/01/1971;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DORIGNAC;Jean-Luc;13/08/1969;Non +33;Gironde;04;4ème circonscription;10;73;F;RECHAGNEUX;Julie;24/01/1996;RN;Cadre administratif et commercial d'entreprise;Non;M;LEDOUX;Alexandre;29/09/1993;Non +33;Gironde;04;4ème circonscription;11;72;M;BERNAUD;Kevin;24/05/1991;DVD;Employé de commerce;Non;M;BOUZIER;Sebastien;08/02/1977;Non +33;Gironde;05;5ème circonscription;1;65;M;FAGEGALTIER;Thierry;13/12/1961;DXG;Ancien employé;Non;F;RIBAN;Françoise;29/11/1964;Non +33;Gironde;05;5ème circonscription;2;93;F;BASTIEN;Virginie;02/08/1965;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;FERNANDEZ;Christelle;24/12/1973;Non +33;Gironde;05;5ème circonscription;3;99;M;MANEIRO;Olivier;19/10/1983;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;ALLARD;Sylvette;15/09/1952;Non +33;Gironde;05;5ème circonscription;4;79;F;MAURY;Roxane;14/09/1973;REC;Cadre administratif et commercial d'entreprise;Non;M;CARON;Johny;05/05/1950;Non +33;Gironde;05;5ème circonscription;5;141;F;NOUETTE GAULAIN;Karine;19/03/1971;ENS;Professeur, profession scientifique;Non;M;MIGNET;Martial;06/11/1959;Non +33;Gironde;05;5ème circonscription;6;51;F;CHAINE-RIBEIRO;Viviane;10/03/1953;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;SIBRAC;Luc;01/03/1969;Non +33;Gironde;05;5ème circonscription;7;113;F;GHIBAUDO;Maryse;20/08/1946;DSV;Ancienne profession intermédiaire;Non;M;GARÇON;Gilles;11/05/1958;Non +33;Gironde;05;5ème circonscription;8;133;M;SIMIAN;Benoît;27/05/1983;DVC;Cadre administratif et commercial d'entreprise;Oui;F;RODRIGUEZ;Véronique;09/12/1966;Non +33;Gironde;05;5ème circonscription;9;14;M;DE FOURNAS;Grégoire;19/03/1985;RN;Agriculteur sur moyenne exploitation;Non;M;CHAGNIAT;Philippe;10/12/1949;Non +33;Gironde;05;5ème circonscription;10;46;M;SENCE;Stéphane;05/09/1964;DVD;Profession libérale;Non;F;DANTY;Frédérique;06/02/1963;Non +33;Gironde;05;5ème circonscription;11;131;M;OPIFEX;Vincent;29/09/1977;DIV;Profession intermédiaire de la santé et du travail social;Non;M;ROUSSEAU;Olivier;02/04/1979;Non +33;Gironde;06;6ème circonscription;1;20;M;PERCHET;Guillaume;05/11/1970;DXG;Ingénieur et cadre technique d'entreprise;Non;M;CASSAIGNE;Jean-Pierre;22/03/1957;Non +33;Gironde;06;6ème circonscription;2;143;M;PARIS;Jérôme;20/10/1975;REC;Profession libérale;Non;M;LEROY;Mathieu;30/10/1997;Non +33;Gironde;06;6ème circonscription;3;106;M;BONHOMME;Franck;21/04/1963;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;DARNAUDGUILHEM;Odile;03/12/1966;Non +33;Gironde;06;6ème circonscription;4;19;F;FERGEAU-RENAUX;Vanessa;13/05/1983;NUPES;Profession libérale;Non;M;DELPEYRAT;Stéphane;13/03/1968;Non +33;Gironde;06;6ème circonscription;5;83;M;MORISSET;Marc;24/06/1967;DVG;Technicien;Non;F;TANQUEREY;Christine;13/11/1963;Non +33;Gironde;06;6ème circonscription;6;80;F;MVONDO;Esther;29/08/1975;ECO;Employé civil et agent de service de la fonction publique;Non;F;LABEUR;Sylvie;22/06/1966;Non +33;Gironde;06;6ème circonscription;7;112;M;FLORIT;Jonathan;05/12/2002;DSV;Elève, étudiant;Non;F;LABANSAT;Patricia;16/08/1965;Non +33;Gironde;06;6ème circonscription;8;145;M;DE PINA;Jean-Christophe;13/06/1968;DIV;Profession libérale;Non;F;MESNARD;Delphine;04/02/1982;Non +33;Gironde;06;6ème circonscription;9;60;M;ALVES;Alain;18/05/1969;DSV;Ingénieur et cadre technique d'entreprise;Non;M;MOUHOUB;Mehdi;27/07/1993;Non +33;Gironde;06;6ème circonscription;10;135;M;CANOVAS;Raphael;26/01/1961;DIV;Ancien cadre;Non;F;CADIX;Delphine;30/03/1980;Non +33;Gironde;06;6ème circonscription;11;89;F;PLOUVIER;Stephanie;09/11/1982;ECO;Policier et militaire;Non;M;MATHIEU;Louis-Raphaël;20/01/1987;Non +33;Gironde;06;6ème circonscription;12;15;M;BOURLIEUX;Jimmy;18/01/1994;RN;Cadre de la fonction publique;Non;M;COLOMBIER;Jacques;17/02/1952;Non +33;Gironde;06;6ème circonscription;13;24;M;POULLIAT;Eric;09/07/1974;ENS;Profession intermédiaire administrative de la fonction publique;Oui;F;IACOB GARIBAL;Maria;26/01/1983;Non +33;Gironde;06;6ème circonscription;14;34;M;DOVICHI;Thomas;28/08/1992;LR;Profession intermédiaire administrative de la fonction publique;Non;F;GANDRAND;Virginie;06/06/1970;Non +33;Gironde;07;7ème circonscription;1;111;M;FOURNIER;Vincent;25/05/1972;DSV;Cadre administratif et commercial d'entreprise;Non;F;DUCLOU;Marion;08/11/1981;Non +33;Gironde;07;7ème circonscription;2;67;M;MINGAM;John;01/11/1994;DIV;Commerçant et assimilé;Non;F;MINGAM;Elisabeth;13/10/1967;Non +33;Gironde;07;7ème circonscription;3;100;M;FERRAN;Jean-Renaud;24/06/1982;NUPES;Cadre de la fonction publique;Non;M;SIBIRIL;Gabriele;11/06/2001;Non +33;Gironde;07;7ème circonscription;4;125;M;RAUTUREAU;Benoît;24/11/1975;LR;Professeur, profession scientifique;Non;M;BERNON;Enzo;09/07/2002;Non +33;Gironde;07;7ème circonscription;5;144;F;LEGENDRE;Audrey;13/07/1995;ECO;Personnel des services directs aux particuliers;Non;M;UZAN;Lucas;17/07/1994;Non +33;Gironde;07;7ème circonscription;6;56;M;BONNET;Dany;09/07/1990;REC;Professeur, profession scientifique;Non;F;DARMENDRAIL;Marie-Alix;20/06/1988;Non +33;Gironde;07;7ème circonscription;7;50;F;COUILLARD;Bérangère;24/07/1986;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;ZGAINSKI;Frédéric;30/10/1972;Non +33;Gironde;07;7ème circonscription;8;37;F;BONNET;Rozenn;05/04/1999;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;THOMAS;Josiane;28/11/1959;Non +33;Gironde;07;7ème circonscription;9;91;F;FRANCHISET;Anne-Marie;22/09/1951;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;VIDAL;Christelle;29/03/1985;Non +33;Gironde;07;7ème circonscription;10;58;F;ERB;Francine;08/09/1954;RN;Ancien employé;Non;M;DUFAY;Michel;07/09/1956;Non +33;Gironde;07;7ème circonscription;11;21;F;ORATTO;Monique;28/05/1954;DXG;Ancien employé;Non;M;NOMMÉ;Ronan;01/01/1969;Non +33;Gironde;08;8ème circonscription;1;137;M;MORIN;Marc;31/07/1985;LR;Commerçant et assimilé;Non;F;DAUNESSE;Sylvie;01/03/1958;Non +33;Gironde;08;8ème circonscription;2;18;M;COSTE;Rémy;18/12/1962;DXG;Ingénieur et cadre technique d'entreprise;Non;F;GAMINE;Gwénaëlle;13/08/1972;Non +33;Gironde;08;8ème circonscription;3;13;F;ISNARD;Alexane;23/06/1992;REC;Employé de commerce;Non;M;DUFRESNE;Jean-Philippe;22/06/1972;Non +33;Gironde;08;8ème circonscription;4;97;M;BRUSTLÉ SANTINI;Hans;02/10/1978;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CHEVEUX;Laetitia;29/01/1972;Non +33;Gironde;08;8ème circonscription;5;47;F;PANONACLE;Sophie;16/12/1968;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;BALLONGUE;Loïc;28/07/1976;Non +33;Gironde;08;8ème circonscription;6;146;M;RICHON;Eric;23/01/1973;DIV;Chauffeur;Non;M;CAPRON;Stéphane;04/05/1972;Non +33;Gironde;08;8ème circonscription;7;132;F;PORTELAS LEPELLETIER;Christele;26/06/1973;DVD;Cadre administratif et commercial d'entreprise;Non;M;BENOIT;Charles;10/01/1946;Non +33;Gironde;08;8ème circonscription;8;130;F;ROCCHI;Véronique;23/02/1967;DIV;Profession libérale;Non;M;LE GALL;Yvon;27/07/1965;Non +33;Gironde;08;8ème circonscription;9;84;M;CHAUTEAU;Alain;14/04/1953;DVG;Ancien cadre;Non;M;SALLES;Martin;07/01/2001;Non +33;Gironde;08;8ème circonscription;10;33;F;FAURE;Marylène;26/02/1972;NUPES;Employé administratif d'entreprise;Non;M;CAZAUX;Samuel;29/07/1996;Non +33;Gironde;08;8ème circonscription;11;7;F;RIVAULT;Lydie;06/03/1964;DSV;Ancienne profession intermédiaire;Non;M;GUYONNET;Olivier;11/02/1958;Non +33;Gironde;08;8ème circonscription;12;76;M;LAMARA;Laurent;13/01/1988;RN;Commerçant et assimilé;Non;F;TOURVIEILLE DE LABROUHE;Brigitte;07/06/1955;Non +33;Gironde;09;9ème circonscription;1;101;M;ANDRÉ;Sacha;25/03/1998;NUPES;Technicien;Non;F;MORO;Cécile;30/05/1966;Non +33;Gironde;09;9ème circonscription;2;128;M;DETRIEUX;Serge;10/04/1963;RDG;Profession intermédiaire administrative de la fonction publique;Non;F;VICTOR;Victorine;27/12/1959;Non +33;Gironde;09;9ème circonscription;3;9;M;DELCAMP;Jean-Philippe;28/07/1956;DXG;Professeur des écoles, instituteur et assimilé;Non;F;VAGNER;Paulette;24/01/1943;Non +33;Gironde;09;9ème circonscription;4;61;F;METTE;Sophie;13/09/1959;ENS;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;M;GAZEAU;Francis;28/09/1959;Non +33;Gironde;09;9ème circonscription;5;75;M;OBRADOR;Damien;21/04/1992;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;F;DUPRAT;Martine;17/04/1953;Non +33;Gironde;09;9ème circonscription;6;110;F;VILTET;Valérie;05/09/1969;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;COSTE;Sophie;09/01/1975;Non +33;Gironde;09;9ème circonscription;7;127;M;BESSET;Guillaume;20/08/1971;DIV;Chômeur n'ayant jamais travaillé;Non;M;BESSET;Thomas Philippe Eugène;18/09/1973;Non +33;Gironde;09;9ème circonscription;8;115;F;GELLÉ;Milène;24/12/1960;DSV;Ingénieur et cadre technique d'entreprise;Non;M;GELLÉ;Pascal;09/03/1965;Non +33;Gironde;09;9ème circonscription;9;57;M;CARDOIT;René;02/02/1968;LR;Commerçant et assimilé;Non;M;DUPART;Olivier;25/06/1981;Non +33;Gironde;09;9ème circonscription;10;22;F;MANTEL;Sylvie;30/03/1960;REC;Professeur, profession scientifique;Non;M;GALIAY;Michel Claude;26/06/1957;Non +33;Gironde;09;9ème circonscription;11;134;M;LALOUBÈRE;Jean-Claude;08/12/1952;DIV;Ancien employé;Non;F;BONAFÉ;Françoise;23/02/1956;Non +33;Gironde;09;9ème circonscription;12;139;F;CRUSE;Armelle;29/11/1970;DVD;Cadre administratif et commercial d'entreprise;Non;F;MATHOU;Marie-Agnès;03/10/1981;Non +33;Gironde;09;9ème circonscription;13;108;F;BOGO;Maëva;21/09/1994;DSV;Cadre administratif et commercial d'entreprise;Non;M;BANQUET ROYÉRE;Aurelien;16/08/1989;Non +33;Gironde;10;10ème circonscription;1;74;F;CHADOURNE;Sandrine;12/12/1970;RN;Profession intermédiaire de la santé et du travail social;Non;M;THIBAUD;Richard;27/01/1977;Non +33;Gironde;10;10ème circonscription;2;41;M;BOUDIÉ;Florent;22/09/1973;ENS;Cadre de la fonction publique;Oui;F;BERNARDEAU;Marie-Sophie;08/07/1980;Non +33;Gironde;10;10ème circonscription;3;54;M;BOURGOIS;Pascal;24/07/1956;NUPES;Cadre de la fonction publique;Non;F;JANICOT;Laurine;09/04/1986;Non +33;Gironde;10;10ème circonscription;4;126;F;FLEURY;Catherine;11/04/1963;DSV;Employé administratif d'entreprise;Non;M;TOURDIAS;Romain;26/04/1989;Non +33;Gironde;10;10ème circonscription;5;64;F;PLANTON;Veronique, Raymond;23/05/1975;RDG;Cadre de la fonction publique;Non;M;PERRIN;Stephane;03/01/1969;Non +33;Gironde;10;10ème circonscription;6;121;F;BERNARD;Muriel;20/05/1959;DVG;Ancien employé;Non;M;LARRIBAUD;Claude;29/07/1948;Non +33;Gironde;10;10ème circonscription;7;38;M;MALHERBE;Gonzague;31/03/1989;REC;Ingénieur et cadre technique d'entreprise;Non;F;QUEBEC;Pascale;28/02/1965;Non +33;Gironde;10;10ème circonscription;8;88;F;GUILBERT;Amélie;20/11/1998;ECO;Elève, étudiant;Non;M;RIHN;Lilian;22/01/2004;Non +33;Gironde;10;10ème circonscription;9;25;F;HALBIN;Hélène;23/08/1966;DXG;Professeur des écoles, instituteur et assimilé;Non;M;BALLANGER;Bruno;14/07/1957;Non +33;Gironde;10;10ème circonscription;10;116;F;DEJONG-PAUSS;Angélique;25/08/1974;DIV;Profession intermédiaire administrative de la fonction publique;Non;M;DUPOUY;Lionel;18/12/1977;Non +33;Gironde;11;11ème circonscription;1;123;M;CAILLAUD;Mathieu;19/01/1983;NUPES;Employé civil et agent de service de la fonction publique;Non;F;VILATTE;Iris;09/04/1997;Non +33;Gironde;11;11ème circonscription;2;6;F;AHMIMOU;Zina;18/12/1974;DXG;Employé administratif d'entreprise;Non;M;ETMAN;Karim;02/09/1972;Non +33;Gironde;11;11ème circonscription;3;142;F;GOGUET;Caroline;24/01/1982;ECO;Ouvrier non qualifié de type industriel;Non;M;BOMPARD;Pierre;24/07/1953;Non +33;Gironde;11;11ème circonscription;4;52;F;CHALOPIN;Caroline;01/09/1977;REC;Profession libérale;Non;F;AUDINETTE;Marine;26/08/1999;Non +33;Gironde;11;11ème circonscription;5;118;M;NOURY;Bastien;19/12/1996;RDG;Ouvrier agricole;Non;M;BAILLEUX;Steven;10/03/1996;Non +33;Gironde;11;11ème circonscription;6;63;M;PUYJALON;Eddie;07/09/1959;DVD;Ancien cadre;Non;F;ROBIN;Christine;26/07/1959;Non +33;Gironde;11;11ème circonscription;7;44;M;GRANGÉ;Bruno;26/04/1961;DSV;Ancien cadre;Non;F;GEFFROY;Nathalie;29/11/1974;Non +33;Gironde;11;11ème circonscription;8;92;F;BLATTER;Regine;04/12/1966;ECO;Professeur des écoles, instituteur et assimilé;Non;F;BOUTIGNY;Nathalie;10/10/1961;Non +33;Gironde;11;11ème circonscription;9;70;F;DIAZ;Edwige;15/10/1987;RN;Cadre administratif et commercial d'entreprise;Non;F;DUMAS;Christine;28/01/1969;Non +33;Gironde;11;11ème circonscription;10;55;M;RENY;Charles;25/11/1976;DVG;Profession libérale;Non;F;ALONSO;Maïté;03/07/1971;Non +33;Gironde;11;11ème circonscription;11;105;F;PICARD;Cécile;30/12/1970;LR;Commerçant et assimilé;Non;M;AVEZARD;Laurent;25/07/1965;Non +33;Gironde;11;11ème circonscription;12;26;F;HAMMERER;Véronique;04/11/1968;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;RAYMOND;Pascal;09/04/1967;Non +33;Gironde;12;12ème circonscription;1;136;M;MARTY;Bruno;10/04/1973;DVG;Professeur, profession scientifique;Non;F;LATRILLE;Catherine;27/07/1966;Non +33;Gironde;12;12ème circonscription;2;27;M;MERCIER;Bastien;30/04/1988;LR;Agriculteur sur petite exploitation;Non;F;DULONG;Christiane, Edith;30/05/1957;Non +33;Gironde;12;12ème circonscription;3;28;M;LAVERGNE;Pascal;28/08/1967;ENS;Agriculteur sur moyenne exploitation;Non;F;LAPOUGE;Christelle;16/08/1972;Non +33;Gironde;12;12ème circonscription;4;81;F;JACQUEMIN;Hager;09/12/1981;RN;Cadre administratif et commercial d'entreprise;Non;M;RUEL;Pascal;25/05/1961;Non +33;Gironde;12;12ème circonscription;5;66;M;D'AMECOURT;Yves;09/05/1968;DVD;Agriculteur sur moyenne exploitation;Non;M;FAZEMBAT;Tom;24/07/1997;Non +33;Gironde;12;12ème circonscription;6;10;M;LAVIN;Richard;28/11/1950;DXG;Artisan;Non;M;HUBERT;Jean-Marc;13/04/1955;Non +33;Gironde;12;12ème circonscription;7;12;M;MARQUES;François-Xavier;20/04/1989;REC;Artisan;Non;F;BOYER;Cécile;01/10/1978;Non +33;Gironde;12;12ème circonscription;8;86;F;SILVERIO;Véronique;28/03/1951;ECO;Ancien cadre;Non;F;DELIGNÉ-ROCHAUD;Anne-Laure;18/04/1987;Non +33;Gironde;12;12ème circonscription;9;98;F;FELD;Mathilde;28/04/1969;NUPES;Cadre de la fonction publique;Non;M;CHOLLON;Lionel;24/03/1966;Non +33;Gironde;12;12ème circonscription;10;78;F;JACQUELIN;Yunyue;28/08/1970;DSV;Employé civil et agent de service de la fonction publique;Non;M;THEN-GUIRAUT;Thibaud;15/06/1983;Non +34;Hérault;01;1ère circonscription;1;40;M;RIVET-MARTEL;Vincent;26/01/1967;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;QUITINO;Yvonne;13/01/1950;Non +34;Hérault;01;1ère circonscription;2;117;M;ALZINGRE;Victor;20/11/1999;DSV;Elève, étudiant;Non;M;BESSIERE;Jean;16/07/1970;Non +34;Hérault;01;1ère circonscription;3;44;F;ROUSSEL;Eva;04/03/1977;REG;Ouvrier agricole;Non;M;GROCLAUDE;Pèir-Arnaut;29/07/1999;Non +34;Hérault;01;1ère circonscription;4;60;M;MOXIN;Michel;23/01/1958;DVD;Cadre de la fonction publique;Non;F;FIGUEROA;Martine;18/04/1957;Non +34;Hérault;01;1ère circonscription;5;94;F;TROUSSELIER;Sylvie;02/10/1960;DXG;Professeur, profession scientifique;Non;M;SCHEIN;Didier;18/10/1941;Non +34;Hérault;01;1ère circonscription;6;2;F;LACHIVER;Morgane;16/11/1977;DXG;Professeur, profession scientifique;Non;M;WEYH;Alain;28/02/1959;Non +34;Hérault;01;1ère circonscription;7;64;M;CHAVEROCHE;Eric;23/04/1964;LR;Commerçant et assimilé;Non;F;KACIMI;Sanaa;22/07/1987;Non +34;Hérault;01;1ère circonscription;8;95;M;DEPRET;Florian;28/08/1982;RDG;Ingénieur et cadre technique d'entreprise;Non;F;KHOUAJA;Samia;19/05/1966;Non +34;Hérault;01;1ère circonscription;9;63;M;COLET;Julien;10/07/1973;NUPES;Professeur, profession scientifique;Non;F;CHAIZE;Emmanuelle;23/09/1983;Non +34;Hérault;01;1ère circonscription;10;79;M;LEBOON;Hugo;18/12/1984;DIV;Profession libérale;Non;M;FOURNIER;Anthony;26/09/1980;Non +34;Hérault;01;1ère circonscription;11;3;F;MIRALLES;Patricia;22/08/1967;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;SOREZ;Philippe;20/05/1961;Non +34;Hérault;01;1ère circonscription;12;33;F;JAMET;France;05/02/1961;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;VINCENT;Stéphane;05/01/1966;Non +34;Hérault;01;1ère circonscription;13;4;M;COURNET;Jean-Philippe;17/03/1969;ECO;Professeur, profession scientifique;Non;F;LEBON;Amandine;02/09/1980;Non +34;Hérault;01;1ère circonscription;14;36;F;MEDINA;Florence;08/06/1972;REC;Agriculteur sur petite exploitation;Non;M;TRINTIGNANT;Morgan;17/12/1987;Non +34;Hérault;01;1ère circonscription;15;17;M;BOCCADIFUOCO;Patrice;25/09/1954;DVD;Ancien employé;Non;F;ARNOUX;Marie-Claire;25/05/1953;Non +34;Hérault;02;2ème circonscription;1;115;M;BENALI;Mahfoud;24/11/1970;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;ANGIBAUD;Virginie;27/03/1975;Non +34;Hérault;02;2ème circonscription;2;67;F;OZIOL;Nathalie;18/02/1990;NUPES;Professeur, profession scientifique;Non;M;REVOL;René;22/11/1947;Non +34;Hérault;02;2ème circonscription;3;41;F;ZBAIRI;Kadija;18/01/1968;ECO;Profession libérale;Non;M;BARTEMENT;Daniel;28/04/1958;Non +34;Hérault;02;2ème circonscription;4;77;M;ROQUE;Manuel;06/03/1989;DVG;Profession intermédiaire de la santé et du travail social;Non;F;TEBBOUB;Amélia;03/01/2001;Non +34;Hérault;02;2ème circonscription;5;82;M;MICHEL;Didier;06/05/1958;DXG;Ouvrier qualifié de type industriel;Non;M;GIBAUD;Guillaume;14/04/1986;Non +34;Hérault;02;2ème circonscription;6;42;F;BELLAREDJ;Fatima;26/11/1970;RDG;Cadre administratif et commercial d'entreprise;Non;F;MARKOVIC;Jacqueline;19/08/1974;Non +34;Hérault;02;2ème circonscription;7;23;F;RESSIGUIER;Muriel;21/12/1977;DVG;Employé civil et agent de service de la fonction publique;Oui;M;LOFÉ;Dominique;05/11/1959;Non +34;Hérault;02;2ème circonscription;8;83;M;DALMAU;Flavio;08/01/2004;DVC;Elève, étudiant;Non;F;DAVIDIAN;Martine;14/10/1957;Non +34;Hérault;02;2ème circonscription;9;96;M;OLHASQUE;William;03/07/1989;DIV;Ingénieur et cadre technique d'entreprise;Non;M;LE POSTEC;Guillaume;07/06/1993;Non +34;Hérault;02;2ème circonscription;10;59;F;BRIOT;Valérie;26/04/1960;UDI;Profession intermédiaire administrative et commerciale des entreprises;Non;M;VIGNON;Bernard;27/08/1947;Non +34;Hérault;02;2ème circonscription;11;6;F;MANGANO;Flavia;05/12/1989;RN;Employé civil et agent de service de la fonction publique;Non;M;FREDERIKSEN;Alex;29/09/1988;Non +34;Hérault;02;2ème circonscription;12;65;M;ASSIÉ;Frédéric;02/06/1973;DVG;Professeur, profession scientifique;Non;F;CAUSSE;Mathilde;28/01/1999;Non +34;Hérault;02;2ème circonscription;13;66;F;BRISSAUD;Anne;26/06/1977;DVC;Profession libérale;Non;F;SCALABRINI;Charlotte;25/04/1993;Non +34;Hérault;02;2ème circonscription;14;84;F;YAGUE;Annie;06/12/1954;ENS;Commerçant et assimilé;Non;M;DELOGU;Quentin;30/08/1996;Non +34;Hérault;02;2ème circonscription;15;78;F;DEFRETIN;Sophie;01/08/1976;REC;Technicien;Non;M;MENDES;Christophe;24/11/1982;Non +34;Hérault;02;2ème circonscription;16;86;M;LECHAT;Philippe;25/03/1948;ECO;Ancien cadre;Non;F;LECHAT;Dominique;28/08/1958;Non +34;Hérault;03;3ème circonscription;1;69;M;BERGEON;Jean Luc;25/04/1962;RDG;Cadre administratif et commercial d'entreprise;Non;F;MAUREL;Ginette;08/04/1950;Non +34;Hérault;03;3ème circonscription;2;85;M;CARABASSE;Denis;21/09/1961;ECO;Profession libérale;Non;F;GOMEZ;Hélène;08/04/1973;Non +34;Hérault;03;3ème circonscription;3;18;M;LAURON;Nicolas;09/12/1986;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;HERAN;Florentin;27/09/1992;Non +34;Hérault;03;3ème circonscription;4;68;F;MIGNACCA;Julia;04/02/1986;NUPES;Cadre administratif et commercial d'entreprise;Non;M;CORVAISIER;Richard;17/11/1974;Non +34;Hérault;03;3ème circonscription;5;81;M;GACHON;Serge;30/10/1945;DXG;Ancienne profession intermédiaire;Non;M;SCOTTO DI FASANO;Georges;18/10/1953;Non +34;Hérault;03;3ème circonscription;6;38;F;CRISTOL;Laurence;08/11/1967;ENS;Professeur, profession scientifique;Non;M;MOYNIER;Arnaud;23/12/1979;Non +34;Hérault;03;3ème circonscription;7;97;M;BERTHET;Alain;21/08/1959;LR;Profession libérale;Non;F;GALABRUN BOULBES;Jackie;08/12/1956;Non +34;Hérault;03;3ème circonscription;8;118;M;SAUREL;Philippe;17/12/1957;DVG;Profession intermédiaire de la santé et du travail social;Non;F;SCHWARTZ;Josy;26/05/1947;Non +34;Hérault;03;3ème circonscription;9;22;F;MAUREL;Johana;16/05/1972;RN;Profession libérale;Non;F;TROISE;Lauriane;24/03/1980;Non +34;Hérault;03;3ème circonscription;10;98;M;BOUDAUD-ANDUAGA;Alexis;13/12/1977;ECO;Profession libérale;Non;F;BOUALLAGA;Sabria;28/12/1980;Non +34;Hérault;03;3ème circonscription;11;27;M;COMBET;Laurian;25/10/1978;DIV;Profession intermédiaire administrative de la fonction publique;Non;F;BACH;Magali;19/10/1983;Non +34;Hérault;04;4ème circonscription;1;108;M;LE ROMAIN;Pierre;20/09/1956;DIV;Ancien cadre;Non;M;LE GAULOIS;Bruno;12/12/1967;Non +34;Hérault;04;4ème circonscription;2;50;M;ARGUEL;Alexandre;01/01/1997;REC;Elève, étudiant;Non;F;SAINTPIERRE;Christelle;23/06/1971;Non +34;Hérault;04;4ème circonscription;3;14;F;LARUE;Florence;18/07/1965;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;DE CLERCQ;Ronan;30/11/1982;Non +34;Hérault;04;4ème circonscription;4;16;M;DUCAMP;Roger;02/01/1960;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;F;GRAIA;Rose;18/09/1969;Non +34;Hérault;04;4ème circonscription;5;46;M;CASSARINI;Stéphane;09/03/1978;ECO;Professeur, profession scientifique;Non;F;WELDON;Oonagh;28/11/1947;Non +34;Hérault;04;4ème circonscription;6;99;M;FLEURY;Jean-Noël;11/12/1966;DVD;Ancien artisan, commerçant, chef d'entreprise;Non;M;QUINTA;Arnaud;21/04/1993;Non +34;Hérault;04;4ème circonscription;7;29;F;PÉRÉA;Julie;27/01/1980;DSV;Commerçant et assimilé;Non;M;MARTELLI;Carmelo;20/09/1964;Non +34;Hérault;04;4ème circonscription;8;28;M;GARCIA;Michel;24/02/1973;DVD;Agriculteur sur moyenne exploitation;Non;F;MAJUREL-CAPELLI;Laure;08/06/1972;Non +34;Hérault;04;4ème circonscription;9;52;M;ELIAOU;Jean-François;13/08/1956;ENS;Professeur, profession scientifique;Oui;F;ESTRADA CALUEBA;Lysiane;14/05/1972;Non +34;Hérault;04;4ème circonscription;10;15;M;ROME;Sébastien;12/10/1978;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;BORRAS;Caroline;11/07/1970;Non +34;Hérault;04;4ème circonscription;11;70;M;PUGENS;Jean-Pierre;07/06/1952;RDG;Ancien cadre;Non;F;IMBERT;Audrey;27/09/1978;Non +34;Hérault;04;4ème circonscription;12;5;M;BASTIDE D'IZARD;Pierre;03/02/1969;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;BOUVIER;Josette;01/05/1956;Non +34;Hérault;04;4ème circonscription;13;62;M;FRANCIS;Joseph;01/06/1956;UDI;Chef d'entreprise de 10 salariés ou plus;Non;M;CATANIA;Stéphane;08/06/1972;Non +34;Hérault;04;4ème circonscription;14;26;M;GIAI GIANETTO;Sébastien;19/08/1989;ECO;Commerçant et assimilé;Non;F;GRILLO;Florence;21/01/1961;Non +34;Hérault;04;4ème circonscription;15;25;F;BOUQUIN;Manon;02/06/1992;RN;Cadre de la fonction publique;Non;M;CAUVIN;Dylan;13/07/1995;Non +34;Hérault;05;5ème circonscription;1;21;F;MARQUET;Régine;10/05/1958;DSV;Ancien cadre;Non;F;MORCILLO;Elisabeth;25/02/1975;Non +34;Hérault;05;5ème circonscription;2;20;M;POLARD;Pierre;16/10/1971;NUPES;Profession libérale;Non;F;LEBRE;Laurie;23/07/1983;Non +34;Hérault;05;5ème circonscription;3;35;F;BEDU;Marie;21/09/1958;ECO;Employé civil et agent de service de la fonction publique;Non;F;COTTEAUX;Christelle;07/08/1981;Non +34;Hérault;05;5ème circonscription;4;100;M;ROUANET;William;06/02/1975;ECO;Profession libérale;Non;F;LAPEYRE;Lisa;29/05/2002;Non +34;Hérault;05;5ème circonscription;5;8;F;CHESNARD;Véronique;30/03/1961;DXG;Ancienne profession intermédiaire;Non;F;ARAYA;Antonieta;02/06/1962;Non +34;Hérault;05;5ème circonscription;6;57;M;MANENC;Aurélien;03/05/1977;RDG;Cadre de la fonction publique;Non;F;PONS;Marie-Pierre;12/06/1961;Non +34;Hérault;05;5ème circonscription;7;37;M;HUPPÉ;Philippe;12/02/1968;ENS;Ingénieur et cadre technique d'entreprise;Oui;F;FLORES;Lisa;25/04/1996;Non +34;Hérault;05;5ème circonscription;8;109;F;VIALA;Céline;26/04/1979;ECO;Profession libérale;Non;F;FARID;Hinem;09/09/1975;Non +34;Hérault;05;5ème circonscription;9;101;M;VINUESA;Richard;27/01/1968;REC;Chauffeur;Non;M;HÉRAIL;David;09/03/1976;Non +34;Hérault;05;5ème circonscription;10;7;M;MARCHAND;Lewis;01/10/1985;LR;Employé civil et agent de service de la fonction publique;Non;F;PUCHADES;Bouchra;01/06/1982;Non +34;Hérault;05;5ème circonscription;11;87;F;GALZY;Stéphanie;21/10/1981;RN;Employé administratif d'entreprise;Non;M;MULA;Bernard;08/12/1952;Non +34;Hérault;05;5ème circonscription;12;116;M;SALVAING;Charles;23/11/1989;DVD;Profession libérale;Non;M;VENTURA;Olivier;16/08/1967;Non +34;Hérault;06;6ème circonscription;1;103;F;TAILLADE;Florence;28/02/1955;LR;Ancien cadre;Non;F;RAYSSEGUIE;Anne-Marie;14/04/1957;Non +34;Hérault;06;6ème circonscription;2;102;F;NOEL;Isabelle;02/11/1968;DSV;Employé de commerce;Non;M;HOUARI;Jamel;17/10/1956;Non +34;Hérault;06;6ème circonscription;3;88;F;FERRAND;Sylvie;11/10/1955;ECO;Professeur, profession scientifique;Non;F;BRY;Catherine;02/05/1964;Non +34;Hérault;06;6ème circonscription;4;47;F;BERNARDI;Samantha;23/09/2000;ECO;Elève, étudiant;Non;F;ROUSSEAU;Isabelle;02/04/1973;Non +34;Hérault;06;6ème circonscription;5;72;F;TASTAVY;Mathilde;23/07/1990;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;AURIOL;Bernard;29/01/1953;Non +34;Hérault;06;6ème circonscription;6;89;F;CROZIER-DANIEL;Magali;10/01/1972;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;SUREAU;Marc;25/04/1957;Non +34;Hérault;06;6ème circonscription;7;71;F;BRUTUS;Florence;23/08/1966;RDG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;GUIBBERT;Jean François;17/04/1954;Non +34;Hérault;06;6ème circonscription;8;104;M;GILHODES;Laurent;11/08/1972;DXG;Professeur, profession scientifique;Non;M;MÉLANO;Philippe;06/11/1958;Non +34;Hérault;06;6ème circonscription;9;92;M;KARGES;Stéphane;30/09/1971;DIV;Ingénieur et cadre technique d'entreprise;Non;M;LOPEZ;Matthieu;28/05/1986;Non +34;Hérault;06;6ème circonscription;10;48;M;FABRE-LUCE;Henri;04/05/1954;REC;Agriculteur sur petite exploitation;Non;M;MANOGIL;Franck;07/12/1982;Non +34;Hérault;06;6ème circonscription;11;58;M;ESSOMBA;Oscar;05/12/1974;LR;Professeur des écoles, instituteur et assimilé;Non;F;TISSOT;Harmonie;06/04/1988;Non +34;Hérault;06;6ème circonscription;12;112;F;ROSSARD;Solène;02/07/1986;ECO;Cadre administratif et commercial d'entreprise;Non;F;LESSIEUX;Loren;11/06/1996;Non +34;Hérault;06;6ème circonscription;13;53;F;MÉNARD;Emmanuelle;15/08/1968;DVD;Profession de l'information, des arts et des spectacles;Oui;M;VIDAL;Jérémie;28/02/1998;Non +34;Hérault;07;7ème circonscription;1;73;F;GARCIN-SAUDO;Julie;13/08/1977;RDG;Profession libérale;Non;M;LABATUT;Arthur;29/03/1999;Non +34;Hérault;07;7ème circonscription;2;10;M;LOPEZ LIGUORI;Aurélien;17/05/1993;RN;Cadre de la fonction publique;Non;F;VARESANO;Fabienne;28/11/1972;Non +34;Hérault;07;7ème circonscription;3;74;F;RICHAUD;Magali;22/08/1984;ECO;Profession libérale;Non;F;WORTHAM;Lucie;15/05/1992;Non +34;Hérault;07;7ème circonscription;4;11;M;MICHEL;Yves;18/05/1963;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;AUTHIÉ;Blandine;13/01/1956;Non +34;Hérault;07;7ème circonscription;5;30;F;GONZALES;Jacqueline;30/11/1953;DXG;Ancienne profession intermédiaire;Non;M;VISSEQ;Alain;12/01/1946;Non +34;Hérault;07;7ème circonscription;6;61;M;BLASCO;Gabriel;16/09/1986;NUPES;Cadre administratif et commercial d'entreprise;Non;F;CORDIER;Florence;07/05/1967;Non +34;Hérault;07;7ème circonscription;7;9;M;PILAUDEAU;Daniel;15/07/1952;DXG;Ancien employé;Non;F;FOUCHET;Jennifer;17/11/1985;Non +34;Hérault;07;7ème circonscription;8;43;M;SULTANI;Guillaume;09/03/1999;ECO;Elève, étudiant;Non;F;CALMES;Josiane;01/11/1957;Non +34;Hérault;07;7ème circonscription;9;91;F;CAVAILLÉ;Audrey;05/01/1973;REC;Cadre de la fonction publique;Non;M;CONDAT;Jacques;25/01/1953;Non +34;Hérault;07;7ème circonscription;10;39;M;GALLERAND;Georges;24/02/1967;DSV;Commerçant et assimilé;Non;F;PARENT;Isabelle;05/06/1954;Non +34;Hérault;07;7ème circonscription;11;12;M;EUZET;Christophe;02/04/1967;ENS;Professeur, profession scientifique;Oui;M;LAUDE;Éric;15/12/1981;Non +34;Hérault;08;8ème circonscription;1;90;F;LEFEUVRE-ROUMANOS;Nathalie;19/01/1976;LR;Profession libérale;Non;F;GUIRAL-RUNTZ;Sophie;11/02/1981;Non +34;Hérault;08;8ème circonscription;2;106;M;ROGER;Jean-Baptiste;12/04/1992;ECO;Cadre administratif et commercial d'entreprise;Non;F;SEGUI;Mailis;01/08/1994;Non +34;Hérault;08;8ème circonscription;3;13;F;BRITTO;Marie-France;18/05/1962;DVD;Commerçant et assimilé;Non;M;AUSSEL;Bernard;03/01/1956;Non +34;Hérault;08;8ème circonscription;4;24;F;VIALLARD;Colette;26/01/1947;DSV;Ancien employé;Non;M;MANCINI;Paul;22/11/1963;Non +34;Hérault;08;8ème circonscription;5;31;M;DELAPIERRE;Cédric;01/02/1976;RN;Cadre administratif et commercial d'entreprise;Non;M;RONGIER;Olivier;07/07/1966;Non +34;Hérault;08;8ème circonscription;6;55;F;CESARI;Elsa;24/01/1996;ECO;Ingénieur et cadre technique d'entreprise;Non;F;CESARI;Sylvie;15/08/1958;Non +34;Hérault;08;8ème circonscription;7;54;M;CARRIERE;Sylvain;21/05/1991;NUPES;Employé de commerce;Non;F;JAMPY;Livia;22/02/2001;Non +34;Hérault;08;8ème circonscription;8;75;M;AUDRIN;Jean-François;19/10/1964;ENS;Profession libérale;Non;F;VARO;Danièle;18/10/1960;Non +34;Hérault;08;8ème circonscription;9;105;M;SYLVESTRE;Franck;25/10/1968;REC;Profession libérale;Non;M;GATTUSO;Gérald;19/06/1983;Non +34;Hérault;08;8ème circonscription;10;107;M;ANDRIEU;Olivier;28/05/1965;DVG;Profession libérale;Non;F;SAYAD;Naïma;06/02/1969;Non +34;Hérault;08;8ème circonscription;11;110;M;THIRY;Stanislas;11/12/1974;DVC;Profession libérale;Non;F;VIDALENCHE;Patricia;21/08/1974;Non +34;Hérault;08;8ème circonscription;12;19;M;GARNIER;Thomas;26/05/1983;DXG;Employé administratif d'entreprise;Non;F;MOURIEZ;Sophie;09/12/1955;Non +34;Hérault;09;9ème circonscription;1;51;F;MOUKRIM;Jamila;10/12/1968;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;BOZIO;Jean-Yves;07/07/1951;Non +34;Hérault;09;9ème circonscription;2;32;F;BOUISSET;Maya;22/09/2000;REC;Elève, étudiant;Non;M;BELTRAN;Pierre;28/03/1961;Non +34;Hérault;09;9ème circonscription;3;45;M;BORT;Frédéric;21/11/1977;RN;Agriculteur sur moyenne exploitation;Non;M;PARMENTIER;Gilles;05/05/1993;Non +34;Hérault;09;9ème circonscription;4;56;M;VIGNAL;Patrick;22/01/1958;ENS;Commerçant et assimilé;Oui;F;MOULLIN-TRAFFORT;Patricia;24/01/1966;Non +34;Hérault;09;9ème circonscription;5;114;M;BOUSCARAIN;Jean-François;02/09/1974;LR;Profession intermédiaire de la santé et du travail social;Non;F;POHL;Cathy;29/03/1965;Non +34;Hérault;09;9ème circonscription;6;93;M;CHAYNES;Maurice;25/08/1948;DXG;Ancien cadre;Non;M;MOUALEK;Jean-Claude;28/07/1965;Non +34;Hérault;09;9ème circonscription;7;49;F;BAGUET;Brigitte;07/12/1962;ECO;Professeur des écoles, instituteur et assimilé;Non;F;ZUCCHETTI;Sandie;24/08/1967;Non +34;Hérault;09;9ème circonscription;8;113;F;LOTTA;Matilda;12/09/2000;ECO;Personnel des services directs aux particuliers;Non;F;SERVEILLE;Marjolaine;07/02/1972;Non +34;Hérault;09;9ème circonscription;9;76;F;GARNIER;Valérie;25/04/1967;ECO;Ingénieur et cadre technique d'entreprise;Non;F;PANIS;Marie-Danielle;27/03/1963;Non +34;Hérault;09;9ème circonscription;10;34;F;BELAOUNI;Nadia;12/02/1978;NUPES;Cadre administratif et commercial d'entreprise;Non;M;BRABANT;Matthieu;18/11/1977;Non +35;Ille-et-Vilaine;01;1ère circonscription;1;83;M;GAUMONT;Martin;01/09/1965;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;COUJOU;Marie-Claire;21/02/1974;Non +35;Ille-et-Vilaine;01;1ère circonscription;2;76;M;SIEGWARD;Laurent;23/03/1971;REC;Ancien artisan, commerçant, chef d'entreprise;Non;M;DELOURME;Yovan;12/05/1975;Non +35;Ille-et-Vilaine;01;1ère circonscription;3;19;M;BAJJOUJ;Khalid;11/11/1982;DIV;Cadre administratif et commercial d'entreprise;Non;F;THOMAS;Christel;18/09/1986;Non +35;Ille-et-Vilaine;01;1ère circonscription;4;79;M;LE MOING;Yannick;14/10/1963;ECO;Profession libérale;Non;F;BROCHARD;Anne-Sophie;16/05/1973;Non +35;Ille-et-Vilaine;01;1ère circonscription;5;81;M;GIRARD;Sébastien;09/09/1970;REG;Employé civil et agent de service de la fonction publique;Non;M;OUVRARD;Damien;30/12/1969;Non +35;Ille-et-Vilaine;01;1ère circonscription;6;50;F;SAOUD;Hind;22/06/1978;ENS;Cadre administratif et commercial d'entreprise;Non;M;MARTINEAU;Thierry;04/10/1964;Non +35;Ille-et-Vilaine;01;1ère circonscription;7;71;F;BOURIEL;Gwenola;10/03/1980;ECO;Professeur, profession scientifique;Non;F;FILLAUT;Laurence;16/09/1965;Non +35;Ille-et-Vilaine;01;1ère circonscription;8;56;M;BARGUIL;Jean-Bruno;11/06/1963;DVC;Profession intermédiaire de la santé et du travail social;Non;M;FARAÜS;Daniel;29/05/1945;Non +35;Ille-et-Vilaine;01;1ère circonscription;9;87;M;ROULEAU;Gautier;12/09/1995;DSV;Cadre de la fonction publique;Non;M;JACQUEMIN;Yannick;15/08/1964;Non +35;Ille-et-Vilaine;01;1ère circonscription;10;3;F;DESPREZ;Nadine;30/08/1973;RN;Cadre administratif et commercial d'entreprise;Non;M;RUAUD;David;25/06/1969;Non +35;Ille-et-Vilaine;01;1ère circonscription;11;58;M;PRIET;Laurent;10/03/1953;DXG;Ancien employé;Non;F;BIZET;Isabelle;08/01/1957;Non +35;Ille-et-Vilaine;01;1ère circonscription;12;6;F;HAMON;Valérie;01/02/1972;DXG;Ouvrier qualifié de type industriel;Non;M;DEROUÉNÉ;Eric;08/07/1974;Non +35;Ille-et-Vilaine;01;1ère circonscription;13;59;M;MONNIER;Jean-François;29/05/1976;REG;Personnel des services directs aux particuliers;Non;F;BONNIEC;Hélène;27/07/1989;Non +35;Ille-et-Vilaine;01;1ère circonscription;14;46;M;MATHIEU;Frédéric;06/11/1977;NUPES;Cadre de la fonction publique;Non;F;LARUE;Jeanne;03/02/1970;Non +35;Ille-et-Vilaine;02;2ème circonscription;1;45;F;LAHOGUE;Mathilde;15/01/1986;REG;Employé civil et agent de service de la fonction publique;Non;M;MARCHAND;Denez;13/05/1964;Non +35;Ille-et-Vilaine;02;2ème circonscription;2;40;F;MAILLART-MÉHAIGNERIE;Laurence;05/04/1967;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;JOURNET;Sébastien;08/02/1975;Non +35;Ille-et-Vilaine;02;2ème circonscription;3;41;M;MARION;Victor;03/12/2001;ECO;Elève, étudiant;Non;M;GERME;Pierre;23/02/1999;Non +35;Ille-et-Vilaine;02;2ème circonscription;4;25;F;CADIOU;Stéphanie;09/03/1971;RN;Profession de l'information, des arts et des spectacles;Non;M;RENAULT;Kervann;25/08/1996;Non +35;Ille-et-Vilaine;02;2ème circonscription;5;22;M;JAMBU;Marc-Antoine;05/05/1982;DSV;Cadre administratif et commercial d'entreprise;Non;M;MALARD;Gilles;13/10/1971;Non +35;Ille-et-Vilaine;02;2ème circonscription;6;29;M;CHAROTE;Jean-Pierre;24/07/1966;REC;Ingénieur et cadre technique d'entreprise;Non;M;TALONNEAU;Jean-Marc;02/08/1960;Non +35;Ille-et-Vilaine;02;2ème circonscription;7;27;F;DEFRANCE;Florence;23/12/1965;DXG;Ingénieur et cadre technique d'entreprise;Non;M;GAUDIN;Laurent;19/06/1980;Non +35;Ille-et-Vilaine;02;2ème circonscription;8;90;M;EGRON;Maël;09/05/1997;REG;Technicien;Non;M;SALAÜN;Thierry;12/11/1968;Non +35;Ille-et-Vilaine;02;2ème circonscription;9;42;M;LAHAIS;Tristan;11/05/1983;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;ROUILLARD;Soazig;16/04/1979;Non +35;Ille-et-Vilaine;02;2ème circonscription;10;52;F;BEN LAHCEN;Sofia;21/12/1994;DIV;Profession intermédiaire de la santé et du travail social;Non;F;RANI;Kamal;26/12/1981;Non +35;Ille-et-Vilaine;03;3ème circonscription;1;68;M;PLOQUIN;Matthieu;05/04/1977;DIV;Cadre de la fonction publique;Non;M;DUPOIRON;Charles;04/01/1984;Non +35;Ille-et-Vilaine;03;3ème circonscription;2;31;F;PRUNIER;Astrid;22/05/1985;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LEPLATOIS;Alexandre;12/01/1994;Non +35;Ille-et-Vilaine;03;3ème circonscription;3;13;M;MERLIERE;David;09/11/1973;REC;Cadre administratif et commercial d'entreprise;Non;F;RIVOLLIER;Bénédicte;05/09/1975;Non +35;Ille-et-Vilaine;03;3ème circonscription;4;30;F;PARMENTIER;Mélina;16/01/1982;LR;Employé administratif d'entreprise;Non;F;SIMONESSA;Ingrid;13/02/1974;Non +35;Ille-et-Vilaine;03;3ème circonscription;5;70;F;BRETEL;Céline;14/04/1982;ECO;Cadre administratif et commercial d'entreprise;Non;F;CHANTEREAU;Christine;17/03/1968;Non +35;Ille-et-Vilaine;03;3ème circonscription;6;20;M;AMISSE;Jean-Louis;17/08/1961;DXG;Employé administratif d'entreprise;Non;M;GUILLET;Benoît;21/12/1970;Non +35;Ille-et-Vilaine;03;3ème circonscription;7;14;M;FARAH;Karim;17/12/1981;DIV;Chauffeur;Non;F;BENAZIZ;Leila;06/07/1980;Non +35;Ille-et-Vilaine;03;3ème circonscription;8;63;M;GUIHARD;Mathieu;25/03/1975;REG;Professeur, profession scientifique;Non;M;RADIGUET;Tugdual;20/09/1969;Non +35;Ille-et-Vilaine;03;3ème circonscription;9;24;M;MARTINS;Christophe;17/01/1970;ENS;Cadre de la fonction publique;Non;F;DUGUEPÉROUX-HONORÉ;Béatrice;11/01/1971;Non +35;Ille-et-Vilaine;03;3ème circonscription;10;67;F;ROUAUX;Claudia;13/10/1963;NUPES;Ingénieur et cadre technique d'entreprise;Oui;M;SOHIER;Benoît;01/05/1974;Non +35;Ille-et-Vilaine;04;4ème circonscription;1;64;F;HIGNET;Mathilde;10/06/1993;NUPES;Ouvrier agricole;Non;M;MARTIN;Marc;02/11/1977;Non +35;Ille-et-Vilaine;04;4ème circonscription;2;91;F;DEVRIENDT;Jocelyne;06/09/1962;REG;Chauffeur;Non;M;MALET;Brice;26/08/1960;Non +35;Ille-et-Vilaine;04;4ème circonscription;3;17;F;OLIVIÉRO;Valérie;22/01/1996;DSV;Profession intermédiaire de la santé et du travail social;Non;M;LE NOUVEL;Jacques;14/02/1958;Non +35;Ille-et-Vilaine;04;4ème circonscription;4;15;M;LOHYN;Christian;05/06/1953;DXG;Ancien cadre;Non;M;TIREL;Alain;19/05/1937;Non +35;Ille-et-Vilaine;04;4ème circonscription;5;9;F;TETAUD;Sarah;04/04/1985;ECO;Commerçant et assimilé;Non;M;DEGRES;François;20/05/1987;Non +35;Ille-et-Vilaine;04;4ème circonscription;6;7;M;ORAIN;Gabriel;20/05/1959;RN;Ancien ouvrier;Non;F;COLIN;Anne-Marie;27/05/1983;Non +35;Ille-et-Vilaine;04;4ème circonscription;7;44;F;PATAULT;Anne;09/05/1955;ENS;Ancien cadre;Non;M;MINIER;Vincent;17/01/1968;Non +35;Ille-et-Vilaine;04;4ème circonscription;8;28;F;CHIRAZI;Sandra;27/05/1977;DXG;Cadre de la fonction publique;Non;M;MOREAU;Régis;12/11/1972;Non +35;Ille-et-Vilaine;04;4ème circonscription;9;23;F;BLEIVAS;Mireille;25/09/1953;REC;Ancien cadre;Non;M;GONY;Jean-Luc;27/01/1953;Non +35;Ille-et-Vilaine;04;4ème circonscription;10;43;M;DESMOULIN;Gil;29/04/1967;DVG;Professeur, profession scientifique;Non;F;LEBOSSÉ;Béatrice;31/12/1964;Non +35;Ille-et-Vilaine;04;4ème circonscription;11;49;F;BLATERON;Céline;28/07/1981;REG;Professeur des écoles, instituteur et assimilé;Non;M;SANNER;Jean-Michel;07/11/1960;Non +35;Ille-et-Vilaine;04;4ème circonscription;12;93;M;HAUTIER;Ludovic;25/03/1984;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LOUVIGNY;Raphaël;24/02/2003;Non +35;Ille-et-Vilaine;04;4ème circonscription;13;11;M;FRANÇOIS;Jacques;03/12/1958;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;VAYSSE;Francine;23/01/1956;Non +35;Ille-et-Vilaine;05;5ème circonscription;1;84;M;RENAULT;Gilles;07/02/1982;NUPES;Professeur, profession scientifique;Non;F;FESSELIER;Caroline;20/01/1978;Non +35;Ille-et-Vilaine;05;5ème circonscription;2;96;F;DELINE;Pamela;03/03/1982;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BERTRU;André;31/08/1955;Non +35;Ille-et-Vilaine;05;5ème circonscription;3;38;F;DE BLIC;Marie;27/07/1958;REC;Ancien cadre;Non;M;PAITIER;Antoine;28/11/1989;Non +35;Ille-et-Vilaine;05;5ème circonscription;4;95;M;AUSTERLITZ;Michel;25/01/1951;DVG;Ancien cadre;Non;F;MOREAU;Stéphanie;14/07/1977;Non +35;Ille-et-Vilaine;05;5ème circonscription;5;60;M;HOUILLOT;Jonathan;24/07/1991;LR;Cadre de la fonction publique;Non;M;LÉONARDI;Pierre;26/11/1981;Non +35;Ille-et-Vilaine;05;5ème circonscription;6;98;F;LE NABOUR-CLOAREC;Christine;28/10/1964;ENS;Employé de commerce;Oui;M;REGNIER;Teddy;20/01/1981;Non +35;Ille-et-Vilaine;05;5ème circonscription;7;57;F;GILOIS;Françoise;30/03/1955;RN;Agriculteur sur moyenne exploitation;Non;M;MARESCHI;Jean;22/05/1962;Non +35;Ille-et-Vilaine;05;5ème circonscription;8;35;F;JARNY;Christelle;21/07/1969;DXG;Employé administratif d'entreprise;Non;M;GOUEZIGOUX;Benjamin;01/09/1982;Non +35;Ille-et-Vilaine;05;5ème circonscription;9;66;F;STUBERT;Marion;17/06/1988;ECO;Professeur des écoles, instituteur et assimilé;Non;M;GENDRON;Grégoire;05/10/2001;Non +35;Ille-et-Vilaine;05;5ème circonscription;10;8;M;BEAURAIN;Denis;15/04/1954;DSV;Ancien cadre;Non;M;MINTER;Serge;12/04/1952;Non +35;Ille-et-Vilaine;06;6ème circonscription;1;69;F;MOCQUARD;Hélène;17/11/1968;NUPES;Cadre administratif et commercial d'entreprise;Non;M;MARCHAND;Vincent;14/06/1968;Non +35;Ille-et-Vilaine;06;6ème circonscription;2;73;F;FLOCH;Nolwenn;10/07/1972;DIV;Professeur, profession scientifique;Non;M;GERFAULT;Benoît;04/02/1979;Non +35;Ille-et-Vilaine;06;6ème circonscription;3;55;M;BENOIT;Thierry;13/09/1966;ENS;Commerçant et assimilé;Oui;M;DEWASMES;Pascal;06/06/1966;Non +35;Ille-et-Vilaine;06;6ème circonscription;4;16;M;AUBRÉE;Adrien;05/06/2003;ECO;Elève, étudiant;Non;F;CORRE;Cécile;05/04/1985;Non +35;Ille-et-Vilaine;06;6ème circonscription;5;65;F;MURGEANU;Maricela;02/03/1969;REG;Cadre de la fonction publique;Non;M;PIETTE;Patrice;05/10/1960;Non +35;Ille-et-Vilaine;06;6ème circonscription;6;75;M;MARION;Tangi;22/09/1984;LR;Cadre administratif et commercial d'entreprise;Non;F;PETIT-DEQUEKER;Florence;21/11/1973;Non +35;Ille-et-Vilaine;06;6ème circonscription;7;10;F;BECHADERGUE;Emilie;01/02/1996;REC;Employé de commerce;Non;M;LE BOULAIRE;Cédric;08/12/1992;Non +35;Ille-et-Vilaine;06;6ème circonscription;8;26;M;PENNELLE;Gilles;20/07/1962;RN;Cadre de la fonction publique;Non;F;D'ORSANNE;Virginie;29/11/1969;Non +35;Ille-et-Vilaine;06;6ème circonscription;9;34;M;HUBERT;Ludovic;19/10/1970;DXG;Professeur, profession scientifique;Non;M;BAZIN;Jacques;14/04/1959;Non +35;Ille-et-Vilaine;06;6ème circonscription;10;94;F;ANDRÉ;Dominique;12/04/1968;DSV;Employé administratif d'entreprise;Non;M;DENIS;Marc;06/09/1973;Non +35;Ille-et-Vilaine;07;7ème circonscription;1;77;M;BEN LAHCEN;Ismaïl;23/12/1986;DIV;Cadre administratif et commercial d'entreprise;Non;F;BEN MOHAMED;Soumia;13/07/1989;Non +35;Ille-et-Vilaine;07;7ème circonscription;2;5;F;ROSENSTECH;Leïla;29/11/1978;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;FAUQUENOT;Marie-Françoise;18/04/1960;Non +35;Ille-et-Vilaine;07;7ème circonscription;3;37;M;BOURGEAUX;Jean-Luc;10/04/1963;LR;Agriculteur sur petite exploitation;Oui;M;LURTON;Gilles;06/07/1963;Non +35;Ille-et-Vilaine;07;7ème circonscription;4;101;M;PÉAN;Stéphane;19/04/1971;DIV;Profession libérale;Non;F;MAGUER;Armelle;08/12/1967;Non +35;Ille-et-Vilaine;07;7ème circonscription;5;62;M;DELCOURT;Julien;11/09/1973;DIV;Ingénieur et cadre technique d'entreprise;Non;M;CHARBONNEL;Hoel;16/08/1985;Non +35;Ille-et-Vilaine;07;7ème circonscription;6;85;M;FICHET;Christophe;05/04/1974;DVC;Profession libérale;Non;F;LASILIER CHAUFAUX;Géraldine;09/05/1975;Non +35;Ille-et-Vilaine;07;7ème circonscription;7;88;M;KUCZYK;Raoul;21/09/1966;DIV;Cadre de la fonction publique;Non;M;DAHIER;Didier;05/01/1966;Non +35;Ille-et-Vilaine;07;7ème circonscription;8;92;M;GRUENAIS;Étienne;11/03/1993;REG;Employé civil et agent de service de la fonction publique;Non;M;LETOFFE;Emmanuel;06/05/1976;Non +35;Ille-et-Vilaine;07;7ème circonscription;9;2;F;LE GAGNE;Anne;04/08/1969;ENS;Cadre de la fonction publique;Non;M;VOYER;Bruno;23/05/1967;Non +35;Ille-et-Vilaine;07;7ème circonscription;10;4;M;GUIVARC'H;Nicolas;21/11/1964;NUPES;Professeur, profession scientifique;Non;F;COSSALTER;Céline;24/05/1976;Non +35;Ille-et-Vilaine;07;7ème circonscription;11;86;F;BÉQUIGNON;Claude;01/11/1949;DSV;Ancien employé;Non;M;NAUDIN;Tristan;27/09/2001;Non +35;Ille-et-Vilaine;07;7ème circonscription;12;36;M;LEMOINE;Dylan;28/08/1998;RN;Policier et militaire;Non;M;CAZAL;Olivier;30/04/1958;Non +35;Ille-et-Vilaine;07;7ème circonscription;13;80;F;DRELON;Marie-Thérèse;25/07/1955;ECO;Commerçant et assimilé;Non;M;COURTÈS;Philippe;28/10/1949;Non +35;Ille-et-Vilaine;07;7ème circonscription;14;51;M;GROISIER;Jean-Michel;01/02/1958;DXG;Ancien employé;Non;F;BAROUTI;Éliane;04/06/1951;Non +35;Ille-et-Vilaine;07;7ème circonscription;15;48;F;LECLERCQ;Eliane;14/03/1956;REG;Ancienne profession intermédiaire;Non;M;ALLÉE;Pierre;03/08/1979;Non +35;Ille-et-Vilaine;07;7ème circonscription;16;39;M;DESCOTTES;Edouard;07/10/1964;DXG;Professeur, profession scientifique;Non;F;DESHAYES;Catherine;12/05/1963;Non +35;Ille-et-Vilaine;07;7ème circonscription;17;99;F;FERRIAULT;Nelly;01/06/1972;DIV;Artisan;Non;M;LARRIEU;Christophe;28/02/1973;Non +35;Ille-et-Vilaine;08;8ème circonscription;1;18;M;LLAVORI;Rodolphe;13/06/1975;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;BRICQUIR;Stéphanie;22/03/1974;Non +35;Ille-et-Vilaine;08;8ème circonscription;2;53;M;BOULOUX;Mickaël;16/08/1972;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;DUCAMIN;Marie;11/08/1967;Non +35;Ille-et-Vilaine;08;8ème circonscription;3;21;M;LUCAS;Fabrice;27/01/1966;DXG;Technicien;Non;F;LEDERLÉ;Catherine;09/06/1961;Non +35;Ille-et-Vilaine;08;8ème circonscription;4;33;M;NICOLAS;Jean-Pierre;11/08/1958;DSV;Professeur, profession scientifique;Non;M;CORNEC;Stéphane;14/02/1975;Non +35;Ille-et-Vilaine;08;8ème circonscription;5;72;M;ALLIX;Sébastien;22/11/1994;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CAILLARD;Benjamin;20/10/1994;Non +35;Ille-et-Vilaine;08;8ème circonscription;6;12;M;BARBIÉ DE PRÉAUDEAU;Régis;15/12/1958;REC;Commerçant et assimilé;Non;F;DUSAUSOY;Quitterie;03/09/1988;Non +35;Ille-et-Vilaine;08;8ème circonscription;7;97;F;DOLU;Karol;05/08/1991;REG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;LE GARLANTEZEC;Erwan;24/06/1968;Non +35;Ille-et-Vilaine;08;8ème circonscription;8;103;M;LEROUX;Marvin;12/01/1991;DXG;Employé civil et agent de service de la fonction publique;Non;M;LEMAU;Briac;23/06/1974;Non +35;Ille-et-Vilaine;08;8ème circonscription;9;78;M;GOMEZ;Guillaume;11/03/1983;ECO;Employé civil et agent de service de la fonction publique;Non;F;TEXIER;Béatrice;19/04/1968;Non +35;Ille-et-Vilaine;08;8ème circonscription;10;100;M;TOURNADE;Maël;17/05/2000;LR;Elève, étudiant;Non;F;RUDMAN-CHAIEB;Annissa;31/07/1996;Non +35;Ille-et-Vilaine;08;8ème circonscription;11;102;M;ELAHIAR;Kamel;24/03/1971;DIV;Chauffeur;Non;F;BENAMZA;Hajira;20/02/1982;Non +35;Ille-et-Vilaine;08;8ème circonscription;12;47;M;LE GALL;Joël;12/08/1954;REG;Ancien cadre;Non;F;SOHIER;Ana;16/05/1982;Non +35;Ille-et-Vilaine;08;8ème circonscription;13;82;M;BACHELIER;Florian;05/04/1979;ENS;Profession libérale;Oui;F;COTTEREAU;Valérie;16/09/1972;Non +35;Ille-et-Vilaine;08;8ème circonscription;14;74;F;LOOTEN;Marianne;03/01/1986;RN;Personnel des services directs aux particuliers;Non;M;ANGUÉ;Sébastien;31/12/1982;Non +36;Indre;01;1ère circonscription;1;3;F;FELDER;Sandrine;30/08/1970;REC;Profession intermédiaire administrative de la fonction publique;Non;M;GIRARD;Guillaume;08/11/1995;Non +36;Indre;01;1ère circonscription;2;9;F;GÉLINAUD;Véronique;19/03/1958;DXG;Ancienne profession intermédiaire;Non;F;MILON;Elisabeth;18/11/1949;Non +36;Indre;01;1ère circonscription;3;8;F;GONZALEZ;Éloïse;12/11/1979;NUPES;Professeur, profession scientifique;Non;F;DUMANS;Amélie;16/07/1992;Non +36;Indre;01;1ère circonscription;4;18;F;GIBAULT;Claudine;21/12/1959;DVD;Ancien artisan, commerçant, chef d'entreprise;Non;M;WIERZBICKI;Romain;02/12/1999;Non +36;Indre;01;1ère circonscription;5;12;M;JOLIVET;François;21/03/1966;ENS;Ancien cadre;Oui;M;BARBIER;Robinson;23/02/1995;Non +36;Indre;01;1ère circonscription;6;14;F;FRUCHON;Alix;14/10/1994;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;BONDOUX;Christel;23/01/1973;Non +36;Indre;01;1ère circonscription;7;11;F;WUNSCH;Mylène;18/09/1958;RN;Ancien cadre;Non;M;CANTALUPI;Jean-Pierre;13/10/1952;Non +36;Indre;01;1ère circonscription;8;6;F;BOISSOU;Camélia;07/05/1989;ECO;Employé de commerce;Non;M;DUVAL;Aymeric;23/08/1983;Non +36;Indre;02;2ème circonscription;1;7;M;PÉROUX;Jean Michel;01/04/1958;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;GUIBERT;Stéphane;12/08/1966;Non +36;Indre;02;2ème circonscription;2;15;M;CASH;Roland;08/12/1960;ECO;Ingénieur et cadre technique d'entreprise;Non;F;MOULIN;Evelyne;10/08/1959;Non +36;Indre;02;2ème circonscription;3;4;M;COMPAIN;Aymeric;04/07/1990;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GRELET;Stéphanie;11/06/1973;Non +36;Indre;02;2ème circonscription;4;5;M;MERCIER;Damien;13/12/1950;DXG;Profession intermédiaire de la santé et du travail social;Non;F;DOISEAU;Nathalie;08/04/1971;Non +36;Indre;02;2ème circonscription;5;17;F;BERTHAULT-KORZHYK;Annie;16/02/1952;DSV;Ancien cadre;Non;M;FEFF-TROUVÉ;Maximilien;20/12/1987;Non +36;Indre;02;2ème circonscription;6;16;F;BOTTON;Alexandra;16/07/1989;DVD;Cadre administratif et commercial d'entreprise;Non;M;PERRAUD;Frédéric;15/09/1980;Non +36;Indre;02;2ème circonscription;7;10;M;THIRION;Fabien;01/07/1998;RN;Ouvrier qualifié de type artisanal;Non;F;ROPARS;Claire;11/07/1992;Non +36;Indre;02;2ème circonscription;8;13;F;GUERIN;Sophie;01/10/1964;ENS;Cadre administratif et commercial d'entreprise;Non;F;RENAUDAT-PASQUIER;Emmanuelle;08/12/1969;Non +36;Indre;02;2ème circonscription;9;2;M;FORISSIER;Nicolas;17/02/1961;LR;Profession intermédiaire administrative et commerciale des entreprises;Oui;M;LESEC;Nicolas;15/05/1989;Non +37;Indre-et-Loire;01;1ère circonscription;1;5;M;DUCAMP;François;12/09/2000;RN;Employé civil et agent de service de la fonction publique;Non;M;BÉJEAU;Lionel;02/11/1950;Non +37;Indre-et-Loire;01;1ère circonscription;2;21;M;LEBRETON;Olivier;09/09/1973;LR;Professeur des écoles, instituteur et assimilé;Non;F;DARNET MALAQUIN;Barbara;05/04/1971;Non +37;Indre-et-Loire;01;1ère circonscription;3;12;M;CHALUMEAU;Philippe;08/11/1963;ENS;Profession libérale;Oui;F;OUDRY;Céline;22/03/1970;Non +37;Indre-et-Loire;01;1ère circonscription;4;32;M;ROUZIER;Bertrand;15/10/1969;ECO;Cadre administratif et commercial d'entreprise;Non;F;METREAU;Affiwa;21/01/1983;Non +37;Indre-et-Loire;01;1ère circonscription;5;4;M;JOUHANNAUD;Thomas;21/12/1976;DXG;Professeur, profession scientifique;Non;F;NEVEU;Marie-Claude;13/04/1956;Non +37;Indre-et-Loire;01;1ère circonscription;6;43;F;DE LANOUVELLE;Sophie;09/01/1965;REC;Cadre administratif et commercial d'entreprise;Non;M;LALLEMENT;Rémi;05/10/1994;Non +37;Indre-et-Loire;01;1ère circonscription;7;23;M;FOURNIER;Charles;10/03/1968;NUPES;Cadre administratif et commercial d'entreprise;Non;F;QUINTON;Marie;09/03/1986;Non +37;Indre-et-Loire;01;1ère circonscription;8;18;F;MOREAU;Stéphanie;23/03/1972;ECO;Cadre administratif et commercial d'entreprise;Non;M;LEITAO;Gabriel;20/05/1975;Non +37;Indre-et-Loire;01;1ère circonscription;9;36;F;LAURENT;Inès;04/11/1999;DVC;Elève, étudiant;Non;M;GIRARDIN;Raphaël;31/10/1999;Non +37;Indre-et-Loire;02;2ème circonscription;1;2;M;LABARONNE;Daniel;16/07/1955;ENS;Ancien cadre;Oui;F;LELANDAIS;Laure;16/06/1955;Non +37;Indre-et-Loire;02;2ème circonscription;2;24;F;GOBERT;Christelle;07/05/1983;NUPES;Employé administratif d'entreprise;Non;M;PINON;Vincent;30/03/1954;Non +37;Indre-et-Loire;02;2ème circonscription;3;44;F;DELAHAYE;Angélique;22/02/1963;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;JACOB;Stéphane;22/02/1970;Non +37;Indre-et-Loire;02;2ème circonscription;4;46;M;GUESTAULT;Christophe;16/03/1966;RN;Agriculteur sur moyenne exploitation;Non;M;TAUGOURDEAU;Steven;24/04/1995;Non +37;Indre-et-Loire;02;2ème circonscription;5;14;M;DAILLET;Dominique;15/05/1964;REC;Ingénieur et cadre technique d'entreprise;Non;F;RODET;Anaïs;23/08/1987;Non +37;Indre-et-Loire;02;2ème circonscription;6;3;F;BRUNET;Anne;13/05/1967;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;GUILLOT;Patrick;04/05/1964;Non +37;Indre-et-Loire;02;2ème circonscription;7;45;M;LANNOY;Christophe;22/07/1961;ECO;Ouvrier non qualifié de type industriel;Non;M;DUGEAY;Yannick;22/08/1964;Non +37;Indre-et-Loire;02;2ème circonscription;8;33;F;NICOLAEFF;Svetlana;03/09/1982;LR;Professeur des écoles, instituteur et assimilé;Non;M;DUVEAUX;Christophe;27/09/1972;Non +37;Indre-et-Loire;03;3ème circonscription;1;7;F;PROTIN;Irène;02/06/1962;RN;Ancienne profession intermédiaire;Non;F;NALLET;Marie;14/06/1953;Non +37;Indre-et-Loire;03;3ème circonscription;2;6;M;LEGENDRE;Christophe;19/01/1967;DXG;Employé civil et agent de service de la fonction publique;Non;M;DEGUET;Michel;11/02/1952;Non +37;Indre-et-Loire;03;3ème circonscription;3;27;F;MÉTADIER;Sophie;26/04/1961;UDI;Profession libérale;Oui;M;LAMY;Michel;06/04/1981;Non +37;Indre-et-Loire;03;3ème circonscription;4;40;F;SCHULTZ;Naima;13/05/1976;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CONTE;Philippe;26/06/1966;Non +37;Indre-et-Loire;03;3ème circonscription;5;31;F;LOIRE;Maria;21/07/1949;ECO;Ancienne profession intermédiaire;Non;F;HAGE;Marie-Pierre;21/08/1960;Non +37;Indre-et-Loire;03;3ème circonscription;6;9;F;PATTE;Sylvie;22/03/1963;REC;Commerçant et assimilé;Non;M;BOURIN;Xavier;24/09/1977;Non +37;Indre-et-Loire;03;3ème circonscription;7;19;F;SIRVEN;Roxane;10/12/1968;NUPES;Technicien;Non;M;DANIAU;Sylvain;20/09/1985;Non +37;Indre-et-Loire;03;3ème circonscription;8;22;M;ALFANDARI;Henri;02/10/1979;ENS;Ancien artisan, commerçant, chef d'entreprise;Non;F;DEBRÉ-CHAFFAUD;Claire;03/04/1974;Non +37;Indre-et-Loire;03;3ème circonscription;9;42;F;LECHEVALIER;Morgane;21/01/2004;DIV;Elève, étudiant;Non;M;VIDAL;Lilian;03/08/1998;Non +37;Indre-et-Loire;03;3ème circonscription;10;8;F;DELORE;Claire;01/08/1955;DXG;Profession intermédiaire de la santé et du travail social;Non;M;ETESSE;Patrick;28/05/1955;Non +37;Indre-et-Loire;04;4ème circonscription;1;26;F;DEFORGE;Caroline;13/10/1969;ECO;Profession libérale;Non;M;BERTREL;Alexandre;13/02/1973;Non +37;Indre-et-Loire;04;4ème circonscription;2;30;M;CHAMBERS;Francis;15/09/1986;DIV;Cadre de la fonction publique;Non;M;PARISIS;Louis;25/09/1994;Non +37;Indre-et-Loire;04;4ème circonscription;3;20;M;BAUMEL;Laurent;13/08/1965;NUPES;Cadre de la fonction publique;Non;F;CAVELIER;Gaëlle;28/09/1974;Non +37;Indre-et-Loire;04;4ème circonscription;4;25;M;BELLANGER;Jean-François;07/01/1968;RN;Professeur, profession scientifique;Non;M;FERNANDES;Philippe;12/10/1966;Non +37;Indre-et-Loire;04;4ème circonscription;5;17;M;MASSET;Jacques;04/04/1991;ECO;Profession intermédiaire de la santé et du travail social;Non;F;GAVIN;Fanny;23/09/1986;Non +37;Indre-et-Loire;04;4ème circonscription;6;34;F;BEN LAHCEN;Nesrine;11/12/1983;DIV;Professeur des écoles, instituteur et assimilé;Non;M;UMAR;Hassan;23/11/1980;Non +37;Indre-et-Loire;04;4ème circonscription;7;28;M;DE LA FERTÉ;Olivier;31/03/1966;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;FERRAND;Véronique;22/10/1964;Non +37;Indre-et-Loire;04;4ème circonscription;8;10;M;GARDEAU;Kévin;18/05/1987;DXG;Employé civil et agent de service de la fonction publique;Non;M;PRODHOMME;Jean-Jacques;17/09/1953;Non +37;Indre-et-Loire;04;4ème circonscription;9;13;F;COLBOC;Fabienne;09/08/1971;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;GAURIER;Sylvia;14/02/1972;Non +37;Indre-et-Loire;04;4ème circonscription;10;39;F;LAGRÉE;Sophie;01/08/1983;LR;Professeur des écoles, instituteur et assimilé;Non;M;BRAULT;Christian;04/09/1947;Non +37;Indre-et-Loire;05;5ème circonscription;1;15;F;DELARUE;Christine;04/03/1964;DXG;Employé civil et agent de service de la fonction publique;Non;M;CHERBLANC;Etienne;18/02/1953;Non +37;Indre-et-Loire;05;5ème circonscription;2;41;M;GIRARDIN;Charles;19/08/1967;ECO;Ingénieur et cadre technique d'entreprise;Non;F;BARDET;Ninon;24/09/1980;Non +37;Indre-et-Loire;05;5ème circonscription;3;29;M;BOIGARD;Fabrice;29/08/1956;LR;Ancien cadre;Non;F;CARRÉ;Chrystel;10/08/1973;Non +37;Indre-et-Loire;05;5ème circonscription;4;11;M;JULIEN;Bruno;05/11/1965;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;FOUCAULT;Claudie;09/01/1949;Non +37;Indre-et-Loire;05;5ème circonscription;5;35;M;COUSIN HAMELAL;Émilien;08/10/1983;ECO;Ingénieur et cadre technique d'entreprise;Non;F;DAUMAIN;Ludivine;11/08/1987;Non +37;Indre-et-Loire;05;5ème circonscription;6;37;F;THILLAYE;Sabine;18/05/1959;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;M;PIRES;Abel;10/08/1966;Non +37;Indre-et-Loire;05;5ème circonscription;7;47;M;MARTINEZ;Patrick;28/05/1977;DVD;Professeur des écoles, instituteur et assimilé;Non;M;GUILLEMOT;Johanny;02/11/1986;Non +37;Indre-et-Loire;05;5ème circonscription;8;38;F;DESMARES LANGLADE;Françoise Jeanne Renée;13/07/1950;NUPES;Ouvrier qualifié de type industriel;Non;M;GABILLÉ;Cléante;31/05/1998;Non +37;Indre-et-Loire;05;5ème circonscription;9;16;F;LOUISIN;Ambre;02/06/1999;RN;Elève, étudiant;Non;M;LOZANO;Joseph;31/01/1996;Non +38;Isère;01;1ère circonscription;1;4;M;ADAM;Rémi;23/12/1966;DXG;Professeur, profession scientifique;Non;F;PIRES;Ana Maria;20/02/1958;Non +38;Isère;01;1ère circonscription;2;91;M;VÉRAN;Olivier;22/04/1980;ENS;Cadre de la fonction publique;Non;F;HUGUES;Servane;28/06/1976;Non +38;Isère;01;1ère circonscription;3;95;F;MEYRIEUX;Aurore;03/12/1992;RN;Employé administratif d'entreprise;Non;M;CHENEVAS-PAULE;Valentin;30/06/2000;Non +38;Isère;01;1ère circonscription;4;85;M;PERIER;François-Marie;10/12/1969;ECO;Profession de l'information, des arts et des spectacles;Non;F;PEREZ;Kathy;05/09/1973;Non +38;Isère;01;1ère circonscription;5;25;F;PIGNATARO;Agnese;10/06/1976;ECO;Professeur, profession scientifique;Non;F;CARA-ELETTO;Laurence;20/01/1970;Non +38;Isère;01;1ère circonscription;6;24;F;CHIABERTO;Marine;11/02/1987;REC;Cadre administratif et commercial d'entreprise;Non;M;LACROIX;Alexandre;06/12/1989;Non +38;Isère;01;1ère circonscription;7;46;F;BOER;Brigitte;10/05/1958;LR;Professeur des écoles, instituteur et assimilé;Non;M;YTOURNEL;Maximin;24/11/2003;Non +38;Isère;01;1ère circonscription;8;60;M;LAFEUILLE;Bruno;05/02/1946;DSV;Ancien cadre;Non;F;ANDRIGHETTO;France;24/01/1952;Non +38;Isère;01;1ère circonscription;9;31;F;ROBIN;Salomé;05/03/2003;NUPES;Elève, étudiant;Non;M;HEYSCH;Joseph;09/06/1985;Non +38;Isère;02;2ème circonscription;1;69;F;CHATELAIN;Cyrielle;15/07/1987;NUPES;Cadre de la fonction publique;Non;M;ROSA;Alban;31/01/1979;Non +38;Isère;02;2ème circonscription;2;56;M;MANOUKIAN;Grégory;24/11/1953;ECO;Ancien employé;Non;F;MOSER;Sandrine;23/10/1972;Non +38;Isère;02;2ème circonscription;3;49;F;BURGAZ;Muriel;09/11/1961;REC;Commerçant et assimilé;Non;M;DEFAITE;Jean-Jacques;07/06/1961;Non +38;Isère;02;2ème circonscription;4;68;M;MORAND;Maxence;30/04/1996;REG;Profession libérale;Non;M;RICHARD;Baptiste;30/07/1988;Non +38;Isère;02;2ème circonscription;5;99;F;CONDAT;Carole;19/02/1972;DVG;Cadre de la fonction publique;Non;M;SERGENT;Claude;22/01/1944;Non +38;Isère;02;2ème circonscription;6;59;M;GAFSI;Mohamed;02/04/1970;ECO;Commerçant et assimilé;Non;M;SAURA;David;01/08/1988;Non +38;Isère;02;2ème circonscription;7;88;M;RUBES;Jérôme;20/10/1990;COM;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;KDOUH;Diana;15/05/1985;Non +38;Isère;02;2ème circonscription;8;3;F;GOMEZ;Chantal;18/04/1956;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;BLONDEL;Jean-Pierre;26/12/1959;Non +38;Isère;02;2ème circonscription;9;77;M;COLAS-ROY;Jean-Charles;02/05/1978;ENS;Ingénieur et cadre technique d'entreprise;Oui;F;GUERS;Gwenaëlle;27/08/1981;Non +38;Isère;02;2ème circonscription;10;86;F;BAILLY;Clhoé;28/03/1995;RN;Profession libérale;Non;F;ROCHET;Danièle;17/06/1952;Non +38;Isère;02;2ème circonscription;11;17;F;SARRAT;Fabienne;27/12/1966;LR;Profession intermédiaire administrative de la fonction publique;Non;M;MALDONADO;Philippe;16/01/1957;Non +38;Isère;02;2ème circonscription;12;26;M;OLIVIER;David;11/03/1956;ECO;Ancien cadre;Non;F;FALLON;Vanessa;15/02/1981;Non +38;Isère;03;3ème circonscription;1;2;F;BRUN;Catherine;18/11/1957;DXG;Professeur, profession scientifique;Non;M;SAVIGNAC;Jérôme;06/09/1974;Non +38;Isère;03;3ème circonscription;2;65;F;MARTIN;Élisa;15/05/1972;NUPES;Professeur, profession scientifique;Non;M;DUTRONCY;Jérôme;27/07/1984;Non +38;Isère;03;3ème circonscription;3;67;F;KRIEF;Sandra;23/07/1972;ECO;Ingénieur et cadre technique d'entreprise;Non;M;MURILLON;Florent;26/09/1975;Non +38;Isère;03;3ème circonscription;4;33;M;CHAPPET;Clément;10/11/1996;LR;Cadre de la fonction publique;Non;F;GOURGAND;Mylène;16/07/1987;Non +38;Isère;03;3ème circonscription;5;21;F;TIVOLLE;Lucie;20/09/1994;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;SLOTWINSKI;Cyril;09/04/2002;Non +38;Isère;03;3ème circonscription;6;78;F;JIMENEZ DEBEZE;Isabelle;27/11/1970;ECO;Professeur, profession scientifique;Non;F;GUÉRY;Audrey;08/01/1976;Non +38;Isère;03;3ème circonscription;7;15;M;EDWIGE;Romain;28/02/1966;DXG;Employé civil et agent de service de la fonction publique;Non;F;CLOAREC;Danielle;13/12/1948;Non +38;Isère;03;3ème circonscription;8;72;F;CHALAS;Emilie;18/10/1977;ENS;Cadre de la fonction publique;Oui;M;ROUX;Denis;21/04/1965;Non +38;Isère;03;3ème circonscription;9;70;F;DUPRÉ;Christel;13/09/1970;RN;Cadre administratif et commercial d'entreprise;Non;M;VIRETTE;Jean-Louis;08/09/1959;Non +38;Isère;03;3ème circonscription;10;51;M;GEMMANI;Stéphane;20/02/1971;ECO;Chauffeur;Non;F;BELAKHOVSKY;Marie;06/07/1965;Non +38;Isère;04;4ème circonscription;1;74;F;LACROIX;Fanny;24/04/1985;ENS;Cadre de la fonction publique;Non;M;FERRUCCI;Loïck;19/01/1997;Non +38;Isère;04;4ème circonscription;2;90;M;JEULIN;Quentin;20/07/1995;DSV;Cadre administratif et commercial d'entreprise;Non;F;MOREAU;Brigitte;29/10/1957;Non +38;Isère;04;4ème circonscription;3;11;M;GERIN-MOMBRUN;Yves;07/01/1954;DXG;Professeur des écoles, instituteur et assimilé;Non;F;MONTARGÈS;Christiane;22/09/1943;Non +38;Isère;04;4ème circonscription;4;57;F;BATTISTEL;Marie-Noëlle;20/08/1956;NUPES;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;M;LISSY;Guillaume;25/11/1978;Non +38;Isère;04;4ème circonscription;5;30;F;OLIVIER;Isabelle;13/05/1964;REC;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;LINIÈRES;Véronique;08/11/1962;Non +38;Isère;04;4ème circonscription;6;45;M;KRAEMER;Michaël;08/06/1977;DVD;Ingénieur et cadre technique d'entreprise;Non;F;GONAY;Yasmine;04/02/1971;Non +38;Isère;04;4ème circonscription;7;23;M;GUYOT;Olivier;12/05/1959;RN;Ancien artisan, commerçant, chef d'entreprise;Non;F;CASTRYCK;Brigitte;22/10/1943;Non +38;Isère;04;4ème circonscription;8;84;F;HIREL;Josiane;07/11/1945;ECO;Employé de commerce;Non;F;LAURENT;Jeannine;24/04/1932;Non +38;Isère;04;4ème circonscription;9;14;M;ZIEGLER;Jean-Alain;29/05/1964;DXG;Employé civil et agent de service de la fonction publique;Non;F;DUPERRON;Véronique;17/03/1966;Non +38;Isère;05;5ème circonscription;1;39;F;KOLMAKOVA;Anna;30/11/1976;DSV;Profession intermédiaire administrative de la fonction publique;Non;M;GARRIGOS;Philippe;25/11/1963;Non +38;Isère;05;5ème circonscription;2;43;M;FERES;Quentin;26/02/1993;REC;Professeur, profession scientifique;Non;F;DI PASQUALE;Corinne;15/12/1963;Non +38;Isère;05;5ème circonscription;3;55;M;ROSSET;Frédéric;11/06/1979;ECO;Chauffeur;Non;M;ROSSET;Christophe;25/09/1975;Non +38;Isère;05;5ème circonscription;4;34;M;IORDANOFF;Jérémie;02/02/1983;NUPES;Profession de l'information, des arts et des spectacles;Non;F;QUESTIAUX;Marie;14/12/1981;Non +38;Isère;05;5ème circonscription;5;54;F;LEAL;Fabienne-Claire;27/04/1962;ECO;Personnel des services directs aux particuliers;Non;F;SCHAUB;Céline;30/04/1972;Non +38;Isère;05;5ème circonscription;6;8;F;LECROQ;Françoise;13/07/1949;DXG;Professeur des écoles, instituteur et assimilé;Non;M;LO MONACO;Dominique;09/03/1960;Non +38;Isère;05;5ème circonscription;7;35;M;SANTANA;Jérôme;28/05/1987;RN;Employé de commerce;Non;M;DUBOIS;Enzo;29/11/2001;Non +38;Isère;05;5ème circonscription;8;66;F;HELLER;Nathalie;01/04/1997;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;WEBER;Sonia;30/03/1964;Non +38;Isère;05;5ème circonscription;9;5;F;TULIPE;Christine;12/02/1963;DXG;Professeur, profession scientifique;Non;M;MOTTAIS;Christian;08/02/1962;Non +38;Isère;05;5ème circonscription;10;97;M;VERGEZ;Frédéric;20/01/1966;DVG;Commerçant et assimilé;Non;F;LANNOY;Françoise;10/03/1955;Non +38;Isère;05;5ème circonscription;11;73;F;JAY;Florence;24/05/1970;ENS;Employé administratif d'entreprise;Non;M;MONTAGNAT;Ylan;06/07/1999;Non +38;Isère;06;6ème circonscription;1;12;F;GOMEZ;Denise;25/06/1957;DXG;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;CHANUT;Bernard;04/11/1981;Non +38;Isère;06;6ème circonscription;2;92;F;HOLTZ;Sylvie;30/06/1955;DSV;Profession intermédiaire de la santé et du travail social;Non;M;DALLONGEVILLE;Christian;01/03/1946;Non +38;Isère;06;6ème circonscription;3;48;F;MERLE;Annick;13/06/1964;LR;Cadre administratif et commercial d'entreprise;Non;F;PEJU;Nathalie;25/10/1972;Non +38;Isère;06;6ème circonscription;4;32;M;JOLLY;Alexis;22/12/1990;RN;Commerçant et assimilé;Non;F;SALOMON;Frédérique;24/05/1953;Non +38;Isère;06;6ème circonscription;5;82;F;MOTIN;Cendra;29/01/1975;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;M;DROGOZ;Alexandre;01/05/1976;Non +38;Isère;06;6ème circonscription;6;98;M;MAURAD;Elyas;17/12/1989;DVG;Artisan;Non;F;SAADA;Assia;31/07/1993;Non +38;Isère;06;6ème circonscription;7;50;F;JULLIEN;Amélie;04/07/1992;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;CHARLES;Damien;26/03/1985;Non +38;Isère;06;6ème circonscription;8;16;F;FINAS-FILLON;Nicole;19/05/1959;NUPES;Professeur, profession scientifique;Non;M;ANDREO;Denis;31/03/1987;Non +38;Isère;07;7ème circonscription;1;80;M;NEUDER;Yannick;15/03/1969;LR;Professeur, profession scientifique;Non;F;DEZARNAUD;Sylvie;23/02/1964;Non +38;Isère;07;7ème circonscription;2;38;F;MEILLIER;Estelle;28/10/1979;ECO;Policier et militaire;Non;M;DEKINT;Fabien;21/05/1978;Non +38;Isère;07;7ème circonscription;3;71;F;ROURE;Paulette;23/03/1938;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;PROSEC;Michel;13/08/1956;Non +38;Isère;07;7ème circonscription;4;75;F;PRUVOST;Pascale;03/09/1966;ENS;Profession intermédiaire administrative de la fonction publique;Non;M;FAYANT;Melvin;26/04/2004;Non +38;Isère;07;7ème circonscription;5;19;M;GAGNIEU;Hugo;24/12/1997;REC;Employé administratif d'entreprise;Non;M;PORCHER;Ilias;03/02/1998;Non +38;Isère;07;7ème circonscription;6;40;M;PERRODIN;Bruno;26/11/1957;DXG;Ancien ouvrier;Non;F;BORDES;Lucie;09/10/1984;Non +38;Isère;07;7ème circonscription;7;53;M;MOULIN-COMTE;Alexandre;29/09/1992;RN;Cadre de la fonction publique;Non;M;LEFEVRE;Jean;02/03/1962;Non +38;Isère;07;7ème circonscription;8;96;F;GITTON;Odile;25/02/1981;DIV;Professeur, profession scientifique;Non;M;FARIN;Thierry;04/05/1961;Non +38;Isère;07;7ème circonscription;9;64;F;DICHARD;Dominique;24/08/1958;NUPES;Ancien cadre;Non;M;BROSSELIN;Laurent;08/09/1971;Non +38;Isère;07;7ème circonscription;10;27;M;LILLO;Pietro Roberto;08/03/1994;DVG;Employé de commerce;Non;F;GIRARD;Priscillia;07/04/1985;Non +38;Isère;08;8ème circonscription;1;41;M;LACAILLE;Jacques;20/01/1951;DXG;Ancien employé;Non;M;LIARDET;Léonard;05/06/1996;Non +38;Isère;08;8ème circonscription;2;13;M;AUGUSTE;Benoit;15/02/1980;RN;Professeur des écoles, instituteur et assimilé;Non;M;ROBERT;Edouard;08/01/1976;Non +38;Isère;08;8ème circonscription;3;10;M;LASSALLE;Jean-Claude;10/04/1960;LR;Ancien cadre;Non;M;KOVACS;Thierry;29/01/1969;Non +38;Isère;08;8ème circonscription;4;37;M;DUFOUR;Eloïc;01/03/1990;ECO;Policier et militaire;Non;F;ROMEYER;Fabienne;14/04/1979;Non +38;Isère;08;8ème circonscription;5;52;M;MONNIER;Thibaut;24/02/1987;REC;Commerçant et assimilé;Non;M;RUBAGOTTI;Adrien;07/02/1989;Non +38;Isère;08;8ème circonscription;6;42;M;DOGON;Quentin;14/01/1987;NUPES;Professeur, profession scientifique;Non;F;CASEY;Cécile;22/11/1976;Non +38;Isère;08;8ème circonscription;7;83;M;GOUJON;Jean-Louis;27/10/1957;DSV;Ancienne profession intermédiaire;Non;F;MAZZILLI;Patricia;09/03/1963;Non +38;Isère;08;8ème circonscription;8;79;F;ABADIE;Caroline;07/09/1976;ENS;Commerçant et assimilé;Oui;M;VIALLATTE;Régis;16/05/1957;Non +38;Isère;09;9ème circonscription;1;94;M;GATTAZ;Bruno;05/09/1952;LR;Ancien cadre;Non;M;GERMAIN;Mathieu;18/05/1997;Non +38;Isère;09;9ème circonscription;2;76;F;JACQUIER-LAFORGE;Elodie;15/04/1978;ENS;Cadre administratif et commercial d'entreprise;Oui;M;BALESTAS;Jean-Yves;14/02/1956;Non +38;Isère;09;9ème circonscription;3;29;F;SEROR;Sandrine;26/02/1970;REC;Employé civil et agent de service de la fonction publique;Non;M;ANDRIEU;Jean-Baptiste;16/01/1997;Non +38;Isère;09;9ème circonscription;4;44;F;NOSBÉ;Sandrine;29/10/1972;NUPES;Cadre administratif et commercial d'entreprise;Non;M;FERRARIS;Christian;03/07/1954;Non +38;Isère;09;9ème circonscription;5;36;F;BÈNE;Cécile;08/06/1979;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;GAUDINEAU;Sylvain;12/06/1955;Non +38;Isère;09;9ème circonscription;6;100;F;ROSEMBERG;Odile;03/08/1949;DSV;Ancien employé;Non;M;LANCIAN;David;05/07/1977;Non +38;Isère;09;9ème circonscription;7;47;F;TADDEI;Anaëlle;02/12/1989;ECO;Ingénieur et cadre technique d'entreprise;Non;F;LOMMER;Catherine;01/02/1952;Non +38;Isère;09;9ème circonscription;8;6;F;DETROYAT;Claude;22/07/1958;DXG;Technicien;Non;F;DUNAND;Martine;28/07/1960;Non +38;Isère;09;9ème circonscription;9;93;M;ROURE;Guillaume;17/04/1982;DIV;Profession libérale;Non;M;DESSENOIX;Fabrice;25/04/1989;Non +38;Isère;10;10ème circonscription;1;63;M;BRUNON;Allan;24/06/1999;NUPES;Elève, étudiant;Non;F;RICHOL;Joëlle;07/02/1981;Non +38;Isère;10;10ème circonscription;2;87;F;JAMMOT SCHWANDER;Elodie;13/07/1982;DVG;Cadre de la fonction publique;Non;M;MAYETTE;Bertho;04/03/1983;Non +38;Isère;10;10ème circonscription;3;20;F;MERINO;Estelle;04/06/1974;ECO;Employé civil et agent de service de la fonction publique;Non;F;AZANCOT;Jennifer;20/06/1975;Non +38;Isère;10;10ème circonscription;4;61;M;LEPRETRE;Aurélien;01/10/1984;LR;Cadre de la fonction publique;Non;F;PERENET;Lise-Marie;20/05/1996;Non +38;Isère;10;10ème circonscription;5;28;M;ZOUAGHA;Mounir;26/05/1964;DVG;Employé de commerce;Non;F;OMEIR;Nassera;10/12/1962;Non +38;Isère;10;10ème circonscription;6;58;M;LEVIAUX;Pierre;08/04/1981;DVG;Professeur, profession scientifique;Non;F;MARTIN;Myriam;05/06/1977;Non +38;Isère;10;10ème circonscription;7;18;M;BLANCHON;Stéphane;13/08/1974;REC;Cadre de la fonction publique;Non;M;MARMONIER;Antoine;29/01/2003;Non +38;Isère;10;10ème circonscription;8;81;F;MEYNIER-MILLEFERT;Marjolaine;30/09/1982;ENS;Commerçant et assimilé;Oui;M;MICHAUD;Thomas;25/10/1972;Non +38;Isère;10;10ème circonscription;9;7;F;DUPONT;Ariane;28/08/1992;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;DUPONT;Geoffrey;24/09/1991;Non +38;Isère;10;10ème circonscription;10;62;F;HULARD;Amélie;23/07/1986;REG;Profession libérale;Non;M;HULARD;Stéphane;18/10/1986;Non +38;Isère;10;10ème circonscription;11;9;F;GERMAIN;Nathalie;28/07/1966;RN;Artisan;Non;M;PEPIN;Laurent;29/09/1983;Non +38;Isère;10;10ème circonscription;12;89;M;COMPAGNON;Serge;05/01/1976;DSV;Profession libérale;Non;F;DUCORNET;Alice;26/08/1979;Non +38;Isère;10;10ème circonscription;13;22;M;BORDES;Clément;07/11/1985;DXG;Professeur, profession scientifique;Non;F;NICOLLET;Fabienne;13/11/1970;Non +39;Jura;01;1ère circonscription;1;3;M;MARRAUD DES GROTTES;Benjamin;23/07/1978;LR;Profession libérale;Non;F;VERBEECK;Véronique;30/07/1967;Non +39;Jura;01;1ère circonscription;2;11;F;BRULEBOIS;Danielle;04/07/1947;ENS;Ancienne profession intermédiaire;Oui;M;FISCHER;Michel;16/05/1963;Non +39;Jura;01;1ère circonscription;3;13;M;BRONDEL;Anthony;24/09/1989;NUPES;Profession de l'information, des arts et des spectacles;Non;F;OUTHIER;Rachel;15/02/1984;Non +39;Jura;01;1ère circonscription;4;16;M;BOUHALI;Thomas;04/07/1991;RN;Ouvrier qualifié de type industriel;Non;M;MAGDELAINE;Martial;13/07/1981;Non +39;Jura;01;1ère circonscription;5;9;M;PERRET;Thierry;27/12/1961;REC;Cadre administratif et commercial d'entreprise;Non;M;CRUBELLIER;Yves;01/02/1972;Non +39;Jura;01;1ère circonscription;6;5;F;MOREL;Johanne;21/06/1978;DXG;Employé administratif d'entreprise;Non;M;BERNIZET;Cyrille;01/08/1971;Non +39;Jura;02;2ème circonscription;1;14;F;DALLOZ;Marie-Christine;10/01/1958;LR;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;F;SCHNEIDER;Eloïse;08/05/1987;Non +39;Jura;02;2ème circonscription;2;21;M;LINDA;Jérôme;26/01/1969;DVD;Commerçant et assimilé;Non;M;LABOURIER;Benoît;31/07/1989;Non +39;Jura;02;2ème circonscription;3;12;F;GALLOIS JOBEZ;Delphine;05/03/1971;ENS;Commerçant et assimilé;Non;M;BONDIER;Jean-Robert;02/07/1979;Non +39;Jura;02;2ème circonscription;4;8;F;TERNANT;Evelyne;21/03/1950;NUPES;Ancienne profession intermédiaire;Non;M;YALCIN;Nail;20/04/1979;Non +39;Jura;02;2ème circonscription;5;4;F;DESSEIGNE;Nathalie;12/04/1974;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;PORCHEREL;Romain;29/02/1984;Non +39;Jura;02;2ème circonscription;6;10;M;MARCHET;Christian;31/05/1954;DXG;Ancien ouvrier;Non;F;VERNIER;Dominique;03/10/1955;Non +39;Jura;02;2ème circonscription;7;25;M;MARINO;Louis;11/06/2001;DVD;Employé de commerce;Non;F;BATTESTI;Fiona;23/03/2003;Non +39;Jura;02;2ème circonscription;8;18;M;DE KEERSMACKER;Nicolas;12/04/1964;REC;Ancienne profession intermédiaire;Non;M;ROSSET;Joël;26/02/1956;Non +39;Jura;02;2ème circonscription;9;22;F;HOUTHOOFD;Garance;03/03/1995;RN;Employé civil et agent de service de la fonction publique;Non;M;MOSCA;Thierry;25/06/1959;Non +39;Jura;03;3ème circonscription;1;24;F;BLAISE;Nathalie;01/05/1961;REC;Employé de commerce;Non;M;DROUVOT;Valentin;20/03/2003;Non +39;Jura;03;3ème circonscription;2;15;M;PRAT;Hervé;03/05/1965;NUPES;Professeur, profession scientifique;Non;F;BUGADA;Catherine;13/10/1958;Non +39;Jura;03;3ème circonscription;3;19;M;CHAPITAUX;Médéric;27/04/1974;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;LAUBEPIN;Véronique;01/01/1962;Non +39;Jura;03;3ème circonscription;4;2;F;VUILLEMIN-PLANÇON;Aurore;01/02/1989;RN;Profession intermédiaire administrative de la fonction publique;Non;F;GRABY;Valérie;19/02/1969;Non +39;Jura;03;3ème circonscription;5;17;F;PILLOY;Anne;16/06/1961;DSV;Profession intermédiaire de la santé et du travail social;Non;M;POUTHIER;Benoît;21/07/1983;Non +39;Jura;03;3ème circonscription;6;6;F;GRUET;Justine;23/10/1989;LR;Profession libérale;Non;M;FASSENET;Gérome;14/12/1976;Non +39;Jura;03;3ème circonscription;7;20;F;PROST;Anne-Colette;01/01/1958;ENS;Profession libérale;Non;M;GUILLEMIN;Olivier;09/12/1965;Non +39;Jura;03;3ème circonscription;8;23;F;EL MEZOUGHI;Rim;01/05/1974;DVG;Profession libérale;Non;M;RICHARD;Christian;22/04/1957;Non +39;Jura;03;3ème circonscription;9;7;F;REVOY;Dominique;28/01/1955;DXG;Ancienne profession intermédiaire;Non;M;MARECHAL;Jacques;13/08/1946;Non +40;Landes;01;1ère circonscription;1;18;M;CAZAUBON;Sébastien;06/05/1981;DVC;Profession intermédiaire de la santé et du travail social;Non;F;CASTIGLIA;Michèle;23/08/1963;Non +40;Landes;01;1ère circonscription;2;9;M;LARGE;Daniel;06/12/1965;DVG;Contremaître, agent de maîtrise;Non;M;LEMPERNESSE;Johann;24/05/1989;Non +40;Landes;01;1ère circonscription;3;10;M;DUFAY;Michel;29/04/1950;RN;Ancien artisan, commerçant, chef d'entreprise;Non;F;GIACALONE;Mélissa;22/10/2001;Non +40;Landes;01;1ère circonscription;4;17;M;MARTIN;Laurent;25/11/1946;DSV;Ancien cadre;Non;M;POURRUT;Jean-Pierre;18/01/1941;Non +40;Landes;01;1ère circonscription;5;11;F;DARRIEUSSECQ;Geneviève;04/03/1956;ENS;Profession libérale;Non;M;LAINÉ;Fabien;15/04/1976;Oui +40;Landes;01;1ère circonscription;6;32;F;HARAMBAT;Marie-Christine;06/08/1963;LR;Cadre de la fonction publique;Non;M;LAGORCE;Thomas;21/08/1997;Non +40;Landes;01;1ère circonscription;7;24;M;DE BARBEYRAC;Guy;01/10/1953;NUPES;Ancien cadre;Non;F;COLIGNON;Christiane;28/09/1958;Non +40;Landes;01;1ère circonscription;8;20;M;DAVID;Stéphane;02/11/1958;REC;Contremaître, agent de maîtrise;Non;M;DELFOSSE;Christian;08/03/1956;Non +40;Landes;01;1ère circonscription;9;23;M;DOBAT;Jwanakan;30/05/1986;ECO;Profession libérale;Non;F;BOISGONTIER;Valentine;19/10/1992;Non +40;Landes;01;1ère circonscription;10;7;M;BON;Jean-Claude;20/07/1959;DXG;Ancien ouvrier;Non;F;CALLOIS;Françoise;25/01/1947;Non +40;Landes;01;1ère circonscription;11;30;M;DUBREUIL;Jean-Jacques;23/10/1954;REG;Artisan;Non;M;GROSCLAUDE;David;14/04/1958;Non +40;Landes;02;2ème circonscription;1;3;M;LAFFONT;Christian;07/05/1966;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;HÉRITIER;Marlène;10/12/1980;Non +40;Landes;02;2ème circonscription;2;12;M;CAUSSE;Lionel;06/05/1971;ENS;Cadre administratif et commercial d'entreprise;Oui;F;DEDIEU;Maeva;04/10/1992;Non +40;Landes;02;2ème circonscription;3;14;F;RIVOIRE;Véronique;15/02/1957;RN;Ancien employé;Non;M;FOSSEY;Michel;14/01/1953;Non +40;Landes;02;2ème circonscription;4;28;F;LECUONA;Dominique;09/10/1957;REG;Profession de l'information, des arts et des spectacles;Non;M;BARIS;Michel;30/01/1947;Non +40;Landes;02;2ème circonscription;5;15;F;DE BROSSES;Sophie;26/03/1966;DVC;Cadre administratif et commercial d'entreprise;Non;M;DUBURCQ;Joris;12/08/1997;Non +40;Landes;02;2ème circonscription;6;21;M;LESPADE;Jean-Marc;13/09/1966;NUPES;Profession intermédiaire administrative de la fonction publique;Non;F;LALANNE;Christelle;17/07/1974;Non +40;Landes;02;2ème circonscription;7;27;M;ETCHOIMBORDE;Jean-Pierre;30/12/1961;DSV;Cadre de la fonction publique;Non;M;RAPIN;Michel;14/03/1951;Non +40;Landes;02;2ème circonscription;8;19;F;LOUBET;Muriel;19/02/1965;REC;Employé de commerce;Non;M;LORZ;Michaël;13/02/1971;Non +40;Landes;02;2ème circonscription;9;5;M;DEMANGEOT;Pascal;23/08/1953;DXG;Technicien;Non;F;JUHEL;Pascale;15/07/1954;Non +40;Landes;02;2ème circonscription;10;2;M;VERNIER;Marc;25/03/1955;LR;Ancien artisan, commerçant, chef d'entreprise;Non;F;ALBALADEJO;Béatrice;09/10/1971;Non +40;Landes;02;2ème circonscription;11;26;M;HARENG;Jonathan;03/05/1986;ECO;Ingénieur et cadre technique d'entreprise;Non;F;MESPLÉ BELABED;Sylvie;24/01/1974;Non +40;Landes;03;3ème circonscription;1;22;M;VALLAUD;Boris;25/07/1975;NUPES;Cadre de la fonction publique;Oui;F;LAILHEUGUE;Anne-Marie;06/11/1975;Non +40;Landes;03;3ème circonscription;2;6;F;VOUTAZ;Carole;25/02/1966;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;LACOSTE;Denis;20/04/1947;Non +40;Landes;03;3ème circonscription;3;25;M;BROQUÈRES;Jean-Francois;21/06/1961;ENS;Cadre de la fonction publique;Non;F;REQUENNA;Pascale;23/05/1972;Non +40;Landes;03;3ème circonscription;4;13;F;FRANCESCHINI;Sylvie;26/07/1979;RN;Personnel des services directs aux particuliers;Non;M;RAFALOVICH;Arthur;02/05/1996;Non +40;Landes;03;3ème circonscription;5;4;M;HURIEZ;Daniel;22/04/1959;DXG;Ancien employé;Non;F;PICANO-NACCI;Magali;05/07/1975;Non +40;Landes;03;3ème circonscription;6;29;M;RICHARD;Matèu;10/08/2000;REG;Elève, étudiant;Non;M;GERARDIN;Lucas;24/10/1996;Non +40;Landes;03;3ème circonscription;7;8;F;DU BREUIL HELION DE LA GUÉRONNIÈRE;Isabelle;13/06/1969;REC;Profession libérale;Non;M;COPEL;Bernard;26/08/1958;Non +40;Landes;03;3ème circonscription;8;31;F;BERGINIAT;Marion;18/10/1977;LR;Profession libérale;Non;M;LACOUTURE;Bernard;16/02/1950;Non +40;Landes;03;3ème circonscription;9;16;F;LASSORT;Christelle;11/12/1971;DVC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CASTETS;Bernard;24/07/1952;Non +41;Loir-et-Cher;01;1ère circonscription;1;4;M;CHASSIER;Michel;28/11/1948;RN;Ancien cadre;Non;M;PELÉ;Cédric;17/12/1989;Non +41;Loir-et-Cher;01;1ère circonscription;2;25;F;POMI;Fabienne;02/09/1972;ECO;Cadre administratif et commercial d'entreprise;Non;F;DELAPORTE;Corinne;08/09/1958;Non +41;Loir-et-Cher;01;1ère circonscription;3;3;M;MESNAGER;Hervé;20/09/1955;RDG;Ancien cadre;Non;F;CAILLOU-ROBERT;Cécile;03/07/1970;Non +41;Loir-et-Cher;01;1ère circonscription;4;2;M;LOMBARD;Alain;16/11/1950;DXG;Ancienne profession intermédiaire;Non;M;VILA;Michel;06/08/1974;Non +41;Loir-et-Cher;01;1ère circonscription;5;5;M;BENAKCHA;Malik;17/04/1989;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;DUCHALAIS;Alain;19/11/1957;Non +41;Loir-et-Cher;01;1ère circonscription;6;13;M;BELKADI;Reda;24/02/1998;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;TRONSON;Estelle;23/04/1974;Non +41;Loir-et-Cher;01;1ère circonscription;7;6;M;MARTIN;Frank;06/09/1966;REC;Cadre de la fonction publique;Non;M;SABRAN;Fabrice;21/11/1967;Non +41;Loir-et-Cher;01;1ère circonscription;8;24;M;FESNEAU;Marc;11/01/1971;ENS;Cadre de la fonction publique;Non;F;DESJONQUÈRES;Mathilde;06/09/1980;Non +41;Loir-et-Cher;01;1ère circonscription;9;22;M;VIEIRA;Gildas;19/09/1974;DIV;Cadre administratif et commercial d'entreprise;Non;F;PINSON-CHAPELLE;Colette;13/02/1951;Non +41;Loir-et-Cher;02;2ème circonscription;1;27;M;PELTIER;Guillaume;27/08/1976;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;GOUBERT;Pascal;09/01/1966;Non +41;Loir-et-Cher;02;2ème circonscription;2;26;F;DRUESNE;Marie-Thérèse;09/12/1949;DVC;Ancien cadre;Non;F;MICHOT;Céline;26/06/1990;Non +41;Loir-et-Cher;02;2ème circonscription;3;8;M;BIOULAC;Pascal;28/09/1967;LR;Ancien agriculteur exploitant;Non;M;SARTORI;Philippe;03/10/1955;Non +41;Loir-et-Cher;02;2ème circonscription;4;14;M;DEMALINE;Jérémie;17/05/1997;NUPES;Cadre administratif et commercial d'entreprise;Non;F;DEHMEJ;Touria;15/12/1966;Non +41;Loir-et-Cher;02;2ème circonscription;5;21;M;PINSON;Patrick;11/02/1953;DVC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;BERNARD;Bruno;29/04/1957;Non +41;Loir-et-Cher;02;2ème circonscription;6;7;F;MAIDON;Caroline;16/09/1987;DXG;Professeur, profession scientifique;Non;F;DI PIETRO;Francesca;21/11/1966;Non +41;Loir-et-Cher;02;2ème circonscription;7;17;M;CHEREAU;François;25/12/1953;DVC;Ancien artisan, commerçant, chef d'entreprise;Non;F;CAVAILLES MORENO;Alexandra;23/06/1985;Non +41;Loir-et-Cher;02;2ème circonscription;8;20;F;CHAPLAULT;Emmanuelle;09/01/1979;ENS;Profession intermédiaire administrative et commerciale des entreprises;Non;F;SMATEL;Fadhila;02/06/1978;Non +41;Loir-et-Cher;02;2ème circonscription;9;9;M;CHUDEAU;Roger;28/09/1949;RN;Ancien cadre;Non;F;MINOT;Emma;21/02/2001;Non +41;Loir-et-Cher;03;3ème circonscription;1;23;F;KERMAD;Dahbia;28/06/1950;DVC;Ancien employé;Non;M;SCHOEFFRE;Daniel;26/09/1954;Non +41;Loir-et-Cher;03;3ème circonscription;2;16;M;BRINDEAU;Pascal;20/06/1974;UDI;Cadre administratif et commercial d'entreprise;Oui;M;HUGUET;Pascal;21/04/1964;Non +41;Loir-et-Cher;03;3ème circonscription;3;15;F;HUET;Sabrina;25/03/1979;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;FORNELLS;Julien;02/02/1994;Non +41;Loir-et-Cher;03;3ème circonscription;4;10;M;MARION;Christophe;25/04/1973;ENS;Cadre de la fonction publique;Non;F;PELLÉ;Christelle;25/01/1970;Non +41;Loir-et-Cher;03;3ème circonscription;5;28;F;RABRAULT;Isabelle;11/08/1965;DSV;Chauffeur;Non;M;TOURTE;Jean-Claude;08/11/1970;Non +41;Loir-et-Cher;03;3ème circonscription;6;18;M;PETIT;Noé;06/02/2004;NUPES;Elève, étudiant;Non;F;GILLION;Emma;20/06/1996;Non +41;Loir-et-Cher;03;3ème circonscription;7;19;M;DOUMAS;Eric;28/03/1959;DVD;Commerçant et assimilé;Non;F;DIMITRIADES-DESLOGES;Claire;03/09/1952;Non +41;Loir-et-Cher;03;3ème circonscription;8;11;M;LAMY;Claude;02/11/1948;DXG;Ancienne profession intermédiaire;Non;F;FISSEAU;Isabelle;17/10/1977;Non +41;Loir-et-Cher;03;3ème circonscription;9;12;F;BARDET;Marine;26/09/1986;RN;Cadre administratif et commercial d'entreprise;Non;M;BESNARD;Olivier;28/12/1971;Non +42;Loire;01;1ère circonscription;1;41;M;BATAILLON;Quentin;09/09/1993;ENS;Cadre administratif et commercial d'entreprise;Non;F;DURAND;Fabienne;23/01/1973;Non +42;Loire;01;1ère circonscription;2;31;F;FEDINGER;Pascale;26/09/1958;RDG;Professeur des écoles, instituteur et assimilé;Non;M;FRIEDENBERG;André;11/04/1944;Non +42;Loire;01;1ère circonscription;3;46;M;HARMANCI;Yakup;15/12/1986;DIV;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;LAURENT;Annelise;02/06/1981;Non +42;Loire;01;1ère circonscription;4;45;M;COURBON;Pierrick;08/07/1985;DVG;Professeur, profession scientifique;Non;M;JUANICO;Régis;05/02/1972;Non +42;Loire;01;1ère circonscription;5;7;M;BROSSARD;Romain;14/04/1977;DXG;Professeur, profession scientifique;Non;F;IBBARI;Nora;21/05/1965;Non +42;Loire;01;1ère circonscription;6;24;F;DUSSART;Samia;13/11/1974;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;FOURNIER;Robert;10/06/1964;Non +42;Loire;01;1ère circonscription;7;37;F;COPIN;Laetitia;26/05/1972;NUPES;Cadre de la fonction publique;Non;M;AKOUCHE;Yannis;22/08/1992;Non +42;Loire;01;1ère circonscription;8;14;F;SIMON;Marie;08/05/1967;RN;Employé de commerce;Non;M;RIEU;Tom;04/07/2002;Non +42;Loire;01;1ère circonscription;9;54;F;COLOMBET;Frédérique;20/10/1963;ECO;Militaire du contingent;Non;M;DOMENECH;Gilles;12/09/1977;Non +42;Loire;01;1ère circonscription;10;38;F;PERRIN-PATURAL;Anne-Audrey;01/11/1975;DVC;Employé civil et agent de service de la fonction publique;Non;M;MICHEL;Geoffroy;15/12/1980;Non +42;Loire;01;1ère circonscription;11;56;F;OSTYN;Alexia;26/03/1995;UDI;Cadre administratif et commercial d'entreprise;Non;M;FERNEX--COMPEYRON;Aubin;04/10/2000;Non +42;Loire;02;2ème circonscription;1;66;M;FONTVIEILLE;Quentin;16/02/1987;DVC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BOGDAN;Gaël;31/08/1980;Non +42;Loire;02;2ème circonscription;2;20;M;JACQUEMARD;David;24/06/1966;ECO;Professeur, profession scientifique;Non;M;FARGIER;Philippe;16/01/1967;Non +42;Loire;02;2ème circonscription;3;68;F;DOUSPIS;Nathalie;10/08/1969;ECO;Chômeur n'ayant jamais travaillé;Non;M;HAREL;Jean-Francois;05/04/1958;Non +42;Loire;02;2ème circonscription;4;61;F;REY;Marie-Camille;13/08/1987;LR;Profession libérale;Non;M;ORIOL;Daniel;18/08/1954;Non +42;Loire;02;2ème circonscription;5;33;F;BENCHARIF;Zahra;01/05/1973;RDG;Commerçant et assimilé;Non;M;DARSA;Jean;21/12/1942;Non +42;Loire;02;2ème circonscription;6;13;M;SIROT;Bernard;17/04/1964;DXG;Employé civil et agent de service de la fonction publique;Non;F;INSALACO;Elisabeth;13/06/1957;Non +42;Loire;02;2ème circonscription;7;12;M;BREUIL;Hervé;06/06/1954;RN;Profession de l'information, des arts et des spectacles;Non;F;FERNANDEZ;Mélanie;04/11/1982;Non +42;Loire;02;2ème circonscription;8;27;M;MIS;Jean-Michel;28/07/1967;ENS;Cadre administratif et commercial d'entreprise;Oui;F;VIDAL;Joëlle;02/11/1951;Non +42;Loire;02;2ème circonscription;9;9;F;MOREAU;Francette;28/02/1950;REC;Ancien cadre;Non;M;PERROT;Charles;12/11/1959;Non +42;Loire;02;2ème circonscription;10;47;F;TAURINYA;Andrée;03/06/1963;NUPES;Professeur, profession scientifique;Non;M;DAHMANI;Atmane;13/12/1957;Non +42;Loire;02;2ème circonscription;11;4;F;DIETERICH;Sophie;31/12/1966;DXG;Professeur, profession scientifique;Non;M;CAYUELA;Hervé;25/11/1969;Non +42;Loire;03;3ème circonscription;1;29;F;LEGLISE;Sandrine;18/06/1979;DSV;Profession libérale;Non;M;PERDRIAU;Nicolas;29/05/1990;Non +42;Loire;03;3ème circonscription;2;8;M;CAILLON;Louis;19/06/1962;DVG;Profession libérale;Non;F;BOUAZIZ;Sadia;08/12/1970;Non +42;Loire;03;3ème circonscription;3;43;M;BONY;Vincent;09/01/1971;NUPES;Cadre administratif et commercial d'entreprise;Non;F;GONZALEZ GRAIL;Ramona;13/12/1957;Non +42;Loire;03;3ème circonscription;4;59;F;ASSAOUNE;Mariam;16/09/1983;RDG;Profession intermédiaire de la santé et du travail social;Non;M;FADILI;Tarik;13/03/1976;Non +42;Loire;03;3ème circonscription;5;44;F;SURPLY;Isabelle;25/10/1984;REC;Ancien employé;Non;M;BLANCHON;Christian;12/03/1968;Non +42;Loire;03;3ème circonscription;6;5;F;HUSSEINI;Pauline;16/06/1992;DXG;Employé administratif d'entreprise;Non;M;MOULIN;André;01/01/1949;Non +42;Loire;03;3ème circonscription;7;16;F;LA MARCA;Angelina;03/06/1990;RN;Employé de commerce;Non;M;FOUGERAND;Jean-Luc;15/01/1973;Non +42;Loire;03;3ème circonscription;8;28;F;MARTIN;Catherine;19/02/1973;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;DAILLERE;Manon;16/10/1999;Non +42;Loire;03;3ème circonscription;9;53;M;MANDON;Emmanuel;22/06/1965;ENS;Profession intermédiaire administrative et commerciale des entreprises;Non;M;ROCHEBLOINE;François;31/10/1945;Non +42;Loire;03;3ème circonscription;10;32;F;MOREL;Nina;09/12/1999;DVG;Elève, étudiant;Non;M;LEHEMBRE;Pierre;14/12/1998;Non +42;Loire;03;3ème circonscription;11;48;M;DUGUA;Axel;21/03/1995;LR;Technicien;Non;F;MARESCAL;Maryline;04/10/1969;Non +42;Loire;03;3ème circonscription;12;67;M;LE JAOUEN;Éric;03/02/1970;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;AGUILAR;Chrystèle;07/10/1972;Non +42;Loire;03;3ème circonscription;13;63;M;BESSON;Pascal;25/11/1961;DVD;Commerçant et assimilé;Non;F;BRANCIER-JACQUIER;M.Claude;19/01/1949;Non +42;Loire;03;3ème circonscription;14;39;M;VIDAL;Alexandre;28/06/2000;DSV;Elève, étudiant;Non;F;DIEU;Geneviève;18/02/1978;Non +42;Loire;04;4ème circonscription;1;6;M;CUADROS;Sauveur;08/04/1951;DXG;Ancien employé;Non;F;DUMAS;Maryse;09/08/1949;Non +42;Loire;04;4ème circonscription;2;40;F;SEBAN;Shannon;05/01/1996;ENS;Cadre de la fonction publique;Non;M;TISSOT;Jean-Paul;05/04/1958;Non +42;Loire;04;4ème circonscription;3;22;M;VIGOUROUX;Sylvain;21/09/1983;DSV;Ingénieur et cadre technique d'entreprise;Non;M;PIRRERA;Stéphane;14/07/1978;Non +42;Loire;04;4ème circonscription;4;62;M;ROUQUEROL;Jean-Baptiste;24/04/1979;REC;Ingénieur et cadre technique d'entreprise;Non;M;ROCHELEMAGNE;Joseph;15/10/1989;Non +42;Loire;04;4ème circonscription;5;23;M;CINIERI;Dino;09/07/1955;LR;Ancien artisan, commerçant, chef d'entreprise;Oui;F;BONNET;Sylvie;21/12/1969;Non +42;Loire;04;4ème circonscription;6;57;F;BELMOUDEN;Sana;06/12/1992;RDG;Cadre administratif et commercial d'entreprise;Non;M;REYMOND;Jean-Claude;19/02/1949;Non +42;Loire;04;4ème circonscription;7;11;M;PAEMELAERE;Bernard;10/07/1956;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;VELLY;Marie;10/03/1968;Non +42;Loire;04;4ème circonscription;8;17;M;GIBERT;Anthony;11/07/1990;RN;Ouvrier qualifié de type artisanal;Non;M;DUHAUTOIS;Pierre;10/02/1989;Non +42;Loire;04;4ème circonscription;9;21;M;THOMAS;Pascal;22/06/1960;ECO;Profession intermédiaire de la santé et du travail social;Non;F;VIAL;Lola;17/03/2004;Non +42;Loire;04;4ème circonscription;10;25;F;VIDAL;Véronique;07/10/1974;ECO;Commerçant et assimilé;Non;M;MAISTRE-BAZIN;Sylvain;17/01/1975;Non +42;Loire;04;4ème circonscription;11;49;F;BINT ZAYD;Aïcha;29/03/1976;DIV;Artisan;Non;M;OMEÏR;Abdelkrim;01/01/1957;Non +42;Loire;05;5ème circonscription;1;42;F;SARLES;Nathalie;17/04/1962;ENS;Profession intermédiaire de la santé et du travail social;Oui;M;BERTHELIER;Bruno;07/03/1970;Non +42;Loire;05;5ème circonscription;2;51;M;STEVENSON;Ismaël;05/02/1984;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;BOUINEAU;Dominique;23/01/1967;Non +42;Loire;05;5ème circonscription;3;50;M;CHEVRET;Grégory;19/02/1975;ECO;Professeur des écoles, instituteur et assimilé;Non;M;MIR;Roger;14/05/1959;Non +42;Loire;05;5ème circonscription;4;19;M;PESSOA;Raphaël;10/12/1988;REC;Ouvrier non qualifié de type industriel;Non;M;BAUD;Raphaël;10/03/1997;Non +42;Loire;05;5ème circonscription;5;55;M;VERMOREL-MARQUES;Antoine;17/02/1993;LR;Cadre administratif et commercial d'entreprise;Non;F;FESNOUX;Fanny;23/09/1982;Non +42;Loire;05;5ème circonscription;6;2;M;GRANCHAMP;Philippe;13/07/1961;ECO;Ancien cadre;Non;F;BUTHOD;Florence;07/03/1984;Non +42;Loire;05;5ème circonscription;7;36;M;ESTEVENY;Yann;18/06/1971;DXD;Ingénieur et cadre technique d'entreprise;Non;F;BONNET;Annick;18/05/1956;Non +42;Loire;05;5ème circonscription;8;64;F;EMORINE;Marilyne;29/08/1982;RDG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PACAUD;Christophe;06/08/1979;Non +42;Loire;05;5ème circonscription;9;60;M;CAZOTTES BOSCO;Kevin;18/03/2000;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;F;MELOT;Catherine;01/01/1967;Non +42;Loire;05;5ème circonscription;10;3;F;ROCHE;Édith;23/12/1959;DXG;Profession intermédiaire de la santé et du travail social;Non;M;VIVIER;Alain;19/10/1948;Non +42;Loire;05;5ème circonscription;11;18;F;GRANGER;Sandrine;04/04/1975;RN;Employé administratif d'entreprise;Non;M;LUCAS;Michel;14/08/1949;Non +42;Loire;06;6ème circonscription;1;10;M;PETIOT;Yves;23/10/1955;DXG;Ancien ouvrier;Non;M;VAUMOURIN;Gaëtan;12/06/1990;Non +42;Loire;06;6ème circonscription;2;15;M;GRANGER;Grégoire;21/02/1999;RN;Employé de commerce;Non;F;HEURTIER;Christelle;07/06/1980;Non +42;Loire;06;6ème circonscription;3;58;M;BOROWCZYK;Julien;02/05/1979;ENS;Profession libérale;Oui;F;BENNICI;Céline;30/10/1978;Non +42;Loire;06;6ème circonscription;4;52;F;OLIVE;Marie-Paule;07/09/1951;NUPES;Professeur, profession scientifique;Non;M;JAMON;Lionel;14/08/1972;Non +42;Loire;06;6ème circonscription;5;34;M;TAITE;Jean-Pierre;14/03/1962;LR;Ancien artisan, commerçant, chef d'entreprise;Non;M;BONNEFOY;Jean-Yves;31/03/1959;Non +42;Loire;06;6ème circonscription;6;30;F;BRIAUT;Catherine;07/12/1968;ECO;Cadre de la fonction publique;Non;F;GENTIL;Muriel;10/02/1975;Non +42;Loire;06;6ème circonscription;7;65;F;ROBINOT;Marie-Belle;16/12/1967;DSV;Employé de commerce;Non;M;PELARDA;Antoine;08/11/1988;Non +42;Loire;06;6ème circonscription;8;26;F;MARCUCCILLI;Jacqueline;11/09/1956;DXG;Ancienne profession intermédiaire;Non;M;MORIANO;Jean-Francois;20/02/1966;Non +42;Loire;06;6ème circonscription;9;35;F;PERROT;Maylis;29/11/1991;REC;Professeur, profession scientifique;Non;F;ROBERT;Sophie;17/04/1972;Non +43;Haute-Loire;01;1ère circonscription;1;10;M;SAMARD;Dominique;26/01/1969;ECO;Ancien cadre;Non;F;WOZNIAK;Allison;10/09/1982;Non +43;Haute-Loire;01;1ère circonscription;2;20;F;GALLIEN;Cécile;21/07/1971;ENS;Cadre de la fonction publique;Non;M;ÉTÉOCLE;Pierre;25/09/1969;Non +43;Haute-Loire;01;1ère circonscription;3;2;F;VALENTIN;Isabelle;20/01/1962;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;WAUQUIEZ;Laurent;12/04/1975;Non +43;Haute-Loire;01;1ère circonscription;4;6;F;POUMEAU DE LAFFOREST;Emmanuelle;18/01/1969;REC;Professeur des écoles, instituteur et assimilé;Non;M;CARO;Hugues;13/02/1969;Non +43;Haute-Loire;01;1ère circonscription;5;12;F;FOURETS;Suzanne;06/08/1950;RN;Ancien employé;Non;M;ROULE;Bruno;14/06/1962;Non +43;Haute-Loire;01;1ère circonscription;6;8;F;DRACOS;Electre;22/03/1951;DXG;Professeur, profession scientifique;Non;M;MICHALLET;Pierre;25/09/1952;Non +43;Haute-Loire;01;1ère circonscription;7;17;F;LEGER-PORTAL;Virginie;09/04/1965;ECO;Employé administratif d'entreprise;Non;F;LARGIER;Carole;30/04/1952;Non +43;Haute-Loire;01;1ère circonscription;8;16;F;GACON;Celline;23/06/1967;NUPES;Employé civil et agent de service de la fonction publique;Non;M;MASSARD;Yannis;01/09/1979;Non +43;Haute-Loire;02;2ème circonscription;1;11;M;COCHET;Philippe;20/03/1958;ECO;Artisan;Non;F;NAUDIER;Gisèle;02/05/1954;Non +43;Haute-Loire;02;2ème circonscription;2;13;M;PEREZ;Thierry;19/11/1966;RN;Cadre de la fonction publique;Non;F;ARRIBAGÉ-CASSOU;Catherine;09/01/1952;Non +43;Haute-Loire;02;2ème circonscription;3;15;M;LAFONT;Clément;21/03/1999;REG;Ouvrier qualifié de type industriel;Non;F;MONOT;Chloé;12/10/1999;Non +43;Haute-Loire;02;2ème circonscription;4;21;F;D'AUBIGNAN;Clémence;28/03/1982;REC;Artisan;Non;M;ACHARD;Nathan;26/08/2003;Non +43;Haute-Loire;02;2ème circonscription;5;19;M;CLEMENT;Jean-Philippe;26/12/1977;ECO;Agriculteur sur petite exploitation;Non;F;CHEVILLON;Estelle;14/09/1972;Non +43;Haute-Loire;02;2ème circonscription;6;5;F;SIGAUX;Azelma;10/03/1989;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;M;CARRIÉ;Jullian;06/09/1991;Non +43;Haute-Loire;02;2ème circonscription;7;9;M;VIGIER;Jean-Pierre;22/10/1969;LR;Cadre de la fonction publique;Oui;F;BRINGER;Corinne;21/05/1973;Non +43;Haute-Loire;02;2ème circonscription;8;3;M;CLOEZ;Théophile;24/01/1989;DIV;Technicien;Non;M;PICARD;Jeremy;13/07/1993;Non +43;Haute-Loire;02;2ème circonscription;9;14;M;ALLEGRE;Christian;05/01/1952;ENS;Ancien cadre;Non;M;DO CARMO;Jean-Louis;07/02/1965;Non +43;Haute-Loire;02;2ème circonscription;10;18;F;BARBIER;Corine;22/04/1963;DSV;Profession intermédiaire de la santé et du travail social;Non;F;DUMAS;Sophie;21/07/1977;Non +43;Haute-Loire;02;2ème circonscription;11;7;M;BREBION;Antoine;10/12/1971;DXG;Cadre de la fonction publique;Non;M;FRIDLENDER;Georges;17/05/1940;Non +44;Loire-Atlantique;01;1ère circonscription;1;76;M;LHOMMEAU;Jean-Claude;19/10/1955;DSV;Professeur, profession scientifique;Non;F;LURSON;Geneviève;03/08/1954;Non +44;Loire-Atlantique;01;1ère circonscription;2;58;M;DAVOZ;Pascal;03/07/1953;ECO;Profession de l'information, des arts et des spectacles;Non;F;LEHOUX;Géraldine;27/07/1980;Non +44;Loire-Atlantique;01;1ère circonscription;3;109;F;GIREL;Nicole;23/02/1945;ECO;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;ESCOFFIER;Norbert;14/12/1971;Non +44;Loire-Atlantique;01;1ère circonscription;4;41;M;BENBRAHIM;Karim;13/04/1980;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;JUDALET;Anne-Sophie;26/01/1966;Non +44;Loire-Atlantique;01;1ère circonscription;5;38;M;BELHAMITI;Mounir;08/03/1985;ENS;Ingénieur et cadre technique d'entreprise;Non;F;CALMONT;Laëtitia;27/06/1981;Non +44;Loire-Atlantique;01;1ère circonscription;6;37;M;PECQUEUR;Bryan;31/08/2001;RN;Elève, étudiant;Non;M;FOURNIER;Jérémie;12/11/1998;Non +44;Loire-Atlantique;01;1ère circonscription;7;111;M;MENANT;Vincent;02/05/1988;REG;Ingénieur et cadre technique d'entreprise;Non;M;CARRIERE;Kévin;09/07/1987;Non +44;Loire-Atlantique;01;1ère circonscription;8;27;M;PATARD;Nicolas;09/11/1985;ECO;Ouvrier non qualifié de type artisanal;Non;F;POIRIER-BONNAUD;Marion;07/05/1990;Non +44;Loire-Atlantique;01;1ère circonscription;9;74;M;BÉRAUD;Anthony;20/04/1980;LR;Employé civil et agent de service de la fonction publique;Non;M;AUBRY;Frédéric;08/05/1958;Non +44;Loire-Atlantique;01;1ère circonscription;10;10;F;DEFRANCE;Hélène;17/12/1949;DXG;Ancien cadre;Non;M;GUICHARD;Hervé;22/09/1973;Non +44;Loire-Atlantique;01;1ère circonscription;11;83;M;CHRETIEN;Bernard;11/04/1962;DIV;Artisan;Non;M;AIT AARIBA;Rachid;27/10/1975;Non +44;Loire-Atlantique;01;1ère circonscription;12;25;F;GODON;Carol;02/04/1968;REC;Profession libérale;Non;M;LHOMEAU;Vincent;28/07/1991;Non +44;Loire-Atlantique;01;1ère circonscription;13;103;M;TAN;David;16/07/1976;DIV;Artisan;Non;M;OUK;Vanratanak;05/03/1978;Non +44;Loire-Atlantique;02;2ème circonscription;1;86;M;CHOMBART DE LAUWE;Foulques;12/01/1980;LR;Cadre administratif et commercial d'entreprise;Non;F;WEISS;Pauline;13/06/1988;Non +44;Loire-Atlantique;02;2ème circonscription;2;17;M;GASNIER;Nicolas;10/05/1972;RN;Cadre administratif et commercial d'entreprise;Non;F;DUPAL;Sophie;06/08/1973;Non +44;Loire-Atlantique;02;2ème circonscription;3;28;F;OPPELT;Valérie;10/12/1973;ENS;Commerçant et assimilé;Oui;M;BRISSET;Christian;31/10/1955;Non +44;Loire-Atlantique;02;2ème circonscription;4;35;M;KERBRAT;Andy;01/10/1990;NUPES;Employé administratif d'entreprise;Non;F;FERRERUELA;Marina;27/05/1969;Non +44;Loire-Atlantique;02;2ème circonscription;5;8;M;BAZILLE;Nicolas;21/09/1975;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;MAHOUDEAU;Aurelie;04/05/1981;Non +44;Loire-Atlantique;02;2ème circonscription;6;23;M;GARDENT;Olivier;24/04/1955;DXG;Employé administratif d'entreprise;Non;F;BAUDRAN;Brigitte;28/10/1960;Non +44;Loire-Atlantique;02;2ème circonscription;7;113;F;LAMBART;Christine;16/08/1955;REG;Ancien artisan, commerçant, chef d'entreprise;Non;M;COPROS;Adrien;22/02/1995;Non +44;Loire-Atlantique;02;2ème circonscription;8;115;F;PRIOLLAUD;Elisa;09/07/1996;REG;Ingénieur et cadre technique d'entreprise;Non;M;BELLOEIL;Vincent;17/07/1994;Non +44;Loire-Atlantique;02;2ème circonscription;9;84;F;DALICHOUX;Ludivine;27/09/1979;DSV;Technicien;Non;M;ROBIN;Louis;06/04/1999;Non +44;Loire-Atlantique;02;2ème circonscription;10;48;M;MILBEO;Sébastien;16/03/1990;ECO;Employé de commerce;Non;F;PROVOST;Justine;17/02/1995;Non +44;Loire-Atlantique;02;2ème circonscription;11;29;F;SCHEFFEN;Cecile;14/09/1998;REC;Elève, étudiant;Non;M;LEVEL;Séverine;24/09/1974;Non +44;Loire-Atlantique;03;3ème circonscription;1;50;M;TERRIEN;Olivier;01/11/1970;DXG;Profession intermédiaire de la santé et du travail social;Non;F;GIRARDIN;Chantal;17/08/1943;Non +44;Loire-Atlantique;03;3ème circonscription;2;18;F;JARRY;Véronique;03/06/1961;RN;Employé civil et agent de service de la fonction publique;Non;M;GUIHENEUF;Enzo;14/02/1999;Non +44;Loire-Atlantique;03;3ème circonscription;3;24;M;PERROT;Gildas;26/08/1960;REG;Chef d'entreprise de 10 salariés ou plus;Non;F;PERROT;Nathalie;28/11/1962;Non +44;Loire-Atlantique;03;3ème circonscription;4;11;F;DOLIDON;Hélène;14/12/1977;DXG;Cadre de la fonction publique;Non;M;DÉAU;Pascal;14/01/1962;Non +44;Loire-Atlantique;03;3ème circonscription;5;14;F;AMIOT;Ségolène;23/02/1986;NUPES;Employé administratif d'entreprise;Non;M;MAGRÉ;Olivier;08/04/1967;Non +44;Loire-Atlantique;03;3ème circonscription;6;92;F;GUÉGUEN;Ophélie;29/05/1982;ECO;Cadre administratif et commercial d'entreprise;Non;M;ARIZA;Julien;07/07/1978;Non +44;Loire-Atlantique;03;3ème circonscription;7;77;M;DUPRAT;Benjamin;02/07/1982;DSV;Commerçant et assimilé;Non;M;JENDREJESKI;Damien;24/06/1976;Non +44;Loire-Atlantique;03;3ème circonscription;8;98;M;DURET;Gwenvaël;09/09/1979;REG;Professeur des écoles, instituteur et assimilé;Non;F;BRUNEAU BIGUET;Celine;26/03/1977;Non +44;Loire-Atlantique;03;3ème circonscription;9;61;F;BRUNET;Anne-France;12/06/1962;ENS;Profession libérale;Oui;M;ALIX;Sébastien;15/06/1969;Non +44;Loire-Atlantique;03;3ème circonscription;10;82;M;FAUCHAIT;Thibault;03/01/2001;REC;Elève, étudiant;Non;F;GIDOIN;Ombeline;10/05/1994;Non +44;Loire-Atlantique;03;3ème circonscription;11;99;F;VAN GOETHEM;Sophie;17/09/1957;LR;Professeur, profession scientifique;Non;M;DERRIEN;Curtis;09/08/1997;Non +44;Loire-Atlantique;04;4ème circonscription;1;112;M;CHEVALIER;Bruno;15/11/1955;DVG;Commerçant et assimilé;Non;M;RENOUX;Dominique;31/05/1960;Non +44;Loire-Atlantique;04;4ème circonscription;2;7;F;BUGNON;Nadège;05/09/1975;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MOEBUS;Clément;23/09/1996;Non +44;Loire-Atlantique;04;4ème circonscription;3;51;F;PICAVEZ;Christine;13/05/1948;DXG;Professeur, profession scientifique;Non;F;JEMMI;Sylviane;18/10/1948;Non +44;Loire-Atlantique;04;4ème circonscription;4;43;M;MESGUICH;Frédéric;28/02/1986;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;BARENNES;Maëli;28/03/1986;Non +44;Loire-Atlantique;04;4ème circonscription;5;104;F;PAVAGEAU;Sophie;02/06/1976;LR;Cadre administratif et commercial d'entreprise;Non;F;LAMBERTHON;Anne-Sophie;26/10/1965;Non +44;Loire-Atlantique;04;4ème circonscription;6;30;F;LAERNOES;Julie;03/07/1982;NUPES;Ancien cadre;Non;M;CAMUS;Hervé;09/07/1964;Non +44;Loire-Atlantique;04;4ème circonscription;7;6;M;PELLEGRINI;Stephane;28/08/1969;DXG;Employé civil et agent de service de la fonction publique;Non;M;VÉROVE;Xavier;08/05/1968;Non +44;Loire-Atlantique;04;4ème circonscription;8;94;F;PINEAU;Gaëlle;16/02/1976;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;COTTEREAU;Joël;23/08/1953;Non +44;Loire-Atlantique;04;4ème circonscription;9;93;M;PROD'HOMME;Matthias;04/01/1992;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;DUBRULLE;Marion;12/11/1994;Non +44;Loire-Atlantique;04;4ème circonscription;10;26;M;BUTEAU;Yohan;05/07/1994;REC;Chauffeur;Non;F;GREMIGNA;Sylvia;18/04/1982;Non +44;Loire-Atlantique;04;4ème circonscription;11;108;M;BASQUE;Alexandre;24/07/1995;REG;Ingénieur et cadre technique d'entreprise;Non;M;DELHAYE-BOLOH;Jobig;14/09/2000;Non +44;Loire-Atlantique;04;4ème circonscription;12;59;F;AMADOU;Aude;29/02/1980;ENS;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;M;GENTIL;Pascal;22/10/1964;Non +44;Loire-Atlantique;05;5ème circonscription;1;80;F;LALANDE;Sabine;19/07/1968;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;LEJEMBLE;Olivier;05/12/1985;Non +44;Loire-Atlantique;05;5ème circonscription;2;106;M;VINCENT;Romain;08/10/1984;DVD;Commerçant et assimilé;Non;M;FRUCHAUD;Edouard;05/02/1988;Non +44;Loire-Atlantique;05;5ème circonscription;3;13;F;CLOPEAU;Emmanuelle;08/11/1966;DXG;Employé civil et agent de service de la fonction publique;Non;M;AGOULON;Jean-Yves;02/02/1954;Non +44;Loire-Atlantique;05;5ème circonscription;4;12;M;CLEMENCE;Arnaud;11/02/1974;REC;Profession libérale;Non;F;RICHARD;Anne;24/02/1979;Non +44;Loire-Atlantique;05;5ème circonscription;5;47;F;EL HAIRY;Sarah;16/03/1989;ENS;Cadre administratif et commercial d'entreprise;Non;M;GEISMAR;Luc;01/11/1966;Oui +44;Loire-Atlantique;05;5ème circonscription;6;95;F;TRÉDAN;Maëlig;17/02/1994;REG;Ingénieur et cadre technique d'entreprise;Non;M;LEFEBVRE;Didier;06/07/1959;Non +44;Loire-Atlantique;05;5ème circonscription;7;15;F;AVOT;Laure;05/10/1983;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PARISOT;Alain;02/09/1962;Non +44;Loire-Atlantique;05;5ème circonscription;8;31;F;KARCHER;Millà;08/10/2002;RN;Employé de commerce;Non;M;MENARD;Dylan;16/09/1998;Non +44;Loire-Atlantique;05;5ème circonscription;9;120;M;GARNIER;Didier;05/02/1958;DVC;Technicien;Non;M;RICHARD;Guy;12/03/1954;Non +44;Loire-Atlantique;05;5ème circonscription;10;121;M;DEBUIRE;Jérôme;22/01/1979;ECO;Agriculteur sur petite exploitation;Non;F;BECHEKER;Ldjida;04/06/1986;Non +44;Loire-Atlantique;05;5ème circonscription;11;52;M;KUCHARCZYK;Tadeusz;12/04/1944;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;DELANOE;Chrysta;25/01/1974;Non +44;Loire-Atlantique;06;6ème circonscription;1;3;F;CATHELINE;Marie-Paule;30/01/1947;DXG;Ancien cadre;Non;M;KATZ;Philippe;29/02/1988;Non +44;Loire-Atlantique;06;6ème circonscription;2;32;M;ESNAULT;Jordan;24/08/1993;ENS;Cadre administratif et commercial d'entreprise;Non;F;DANARD;Yoline;25/08/1969;Non +44;Loire-Atlantique;06;6ème circonscription;3;21;M;BOUGOT;Teddy;16/09/1977;RN;Profession de l'information, des arts et des spectacles;Non;F;RIVIERE;Jannick;24/12/1957;Non +44;Loire-Atlantique;06;6ème circonscription;4;55;M;LE HÉCHO;François-Xavier;04/07/1981;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;GUÉRIN;Marie-Pierre;06/03/1956;Non +44;Loire-Atlantique;06;6ème circonscription;5;56;F;BUREAU;Sandra;19/08/1972;REC;Cadre administratif et commercial d'entreprise;Non;M;LOUVEL;Tanguy;03/08/1977;Non +44;Loire-Atlantique;06;6ème circonscription;6;85;F;LAILLÉ;Catherine;24/06/1960;DVD;Ancien agriculteur exploitant;Non;M;SUEL;Claude;23/05/1957;Non +44;Loire-Atlantique;06;6ème circonscription;7;53;M;GUYOT;Francois;15/03/1979;LR;Agriculteur sur grande exploitation;Non;F;MARTIAS;Sophie;16/12/1976;Non +44;Loire-Atlantique;06;6ème circonscription;8;101;M;PETIT;Tony;11/02/1976;DSV;Artisan;Non;F;HUGUENOT;Nadia;22/11/1948;Non +44;Loire-Atlantique;06;6ème circonscription;9;73;M;FLIPPOT;Jacky;25/10/1947;REG;Ancienne profession intermédiaire;Non;M;COCHÉ;Jean-Guillaume;25/10/1947;Non +44;Loire-Atlantique;06;6ème circonscription;10;57;F;LETELLIER;Karine;20/08/1980;ECO;Personnel des services directs aux particuliers;Non;M;BOUCAND;Marc;11/02/1984;Non +44;Loire-Atlantique;06;6ème circonscription;11;54;M;RAUX;Jean-Claude;18/01/1967;NUPES;Professeur, profession scientifique;Non;F;LUCAS;Nadine;11/04/1975;Non +44;Loire-Atlantique;07;7ème circonscription;1;4;F;BELIN;Marie-France;19/11/1943;DXG;Ancien employé;Non;M;BENOÎT;Sébastien;16/06/1976;Non +44;Loire-Atlantique;07;7ème circonscription;2;118;M;GONTIER;Jean-Yves;07/11/1973;ENS;Profession libérale;Non;F;SETTELEN;Josette;11/04/1947;Non +44;Loire-Atlantique;07;7ème circonscription;3;116;M;SEILLÉ;Alain;17/12/1958;ECO;Ancien ouvrier;Non;F;BOUMAZA;Anissa;24/06/1982;Non +44;Loire-Atlantique;07;7ème circonscription;4;20;F;LE PAGE;Laurence;18/09/1974;RN;Profession intermédiaire de la santé et du travail social;Non;M;RIO;Franck;16/08/1967;Non +44;Loire-Atlantique;07;7ème circonscription;5;78;F;JOSSIC;Donatienne;02/11/1949;ECO;Ancien employé;Non;M;LEVESQUE;Jean-Pierre;03/10/1957;Non +44;Loire-Atlantique;07;7ème circonscription;6;114;M;PLOUVIER;Bertrand;14/06/1976;LR;Profession libérale;Non;F;GOSLIN;Sylvie;04/04/1979;Non +44;Loire-Atlantique;07;7ème circonscription;7;87;F;AURY;Martine;12/05/1975;DVD;Ancien employé;Non;F;THÉBAUD;Doriane;28/04/1995;Non +44;Loire-Atlantique;07;7ème circonscription;8;33;M;GAUDEAU;Laurent;22/05/1956;REC;Ancien cadre;Non;F;ROUSSEAU;Francoise;31/03/1957;Non +44;Loire-Atlantique;07;7ème circonscription;9;110;M;BOUTRY;Olivier;18/07/1962;DIV;Professeur, profession scientifique;Non;F;VADAINE;Elisabeth;11/11/1975;Non +44;Loire-Atlantique;07;7ème circonscription;10;100;M;BOURDEAU;Gaël;07/08/1952;DSV;Ancien cadre;Non;F;DURAND;Chantal;26/02/1948;Non +44;Loire-Atlantique;07;7ème circonscription;11;34;F;JOSSO;Sandrine;19/09/1975;ENS;Profession libérale;Oui;M;TEXIER;Jean-Michel;29/06/1976;Non +44;Loire-Atlantique;07;7ème circonscription;12;60;F;MAHÉ;Veronique;03/08/1961;NUPES;Cadre administratif et commercial d'entreprise;Non;M;ROUXEL;Christophe;06/12/1955;Non +44;Loire-Atlantique;08;8ème circonscription;1;102;F;BOSSARD;Cécilia;22/12/1982;REG;Ingénieur et cadre technique d'entreprise;Non;M;BLUM;Cédric;07/01/1980;Non +44;Loire-Atlantique;08;8ème circonscription;2;16;M;CARRO;Hervé;15/09/1957;REG;Ancien cadre;Non;F;PRUNIER;Agnès;26/01/1963;Non +44;Loire-Atlantique;08;8ème circonscription;3;63;F;PORCHER;Andréa;15/05/1985;LR;Profession intermédiaire administrative et commerciale des entreprises;Non;F;LEBASTARD;Agnès;02/10/1962;Non +44;Loire-Atlantique;08;8ème circonscription;4;5;M;LE BELLER;Eddy;19/01/1969;DXG;Technicien;Non;M;SAINT-ARROMAN;Jean-Claude;06/02/1948;Non +44;Loire-Atlantique;08;8ème circonscription;5;105;F;MASSON;Edith;16/09/1961;DSV;Ancien cadre;Non;M;FLEURY;Yaouen;26/07/1978;Non +44;Loire-Atlantique;08;8ème circonscription;6;122;F;DESMARIE;Evelyne;09/02/1953;REG;Ancien artisan, commerçant, chef d'entreprise;Non;M;ALIX;Jean-François;29/03/1982;Non +44;Loire-Atlantique;08;8ème circonscription;7;91;F;PETREAU;Bénédicte;05/04/1975;ECO;Profession libérale;Non;F;DUMITRACHE;Adelina;24/07/1985;Non +44;Loire-Atlantique;08;8ème circonscription;8;88;M;TAVEL;Matthias;06/07/1987;NUPES;Cadre de la fonction publique;Non;F;ARDOUIN;Christelle;19/08/1983;Non +44;Loire-Atlantique;08;8ème circonscription;9;89;F;DUVILLIER;Frédérica;27/12/1963;REC;Commerçant et assimilé;Non;M;CROCHET;Dominique;03/11/1952;Non +44;Loire-Atlantique;08;8ème circonscription;10;62;F;DUFEU;Audrey;03/06/1980;ENS;Ingénieur et cadre technique d'entreprise;Oui;M;BLANC;Jean-Pierre;16/03/1960;Non +44;Loire-Atlantique;08;8ème circonscription;11;36;M;PERRIN;Xavier;12/10/1975;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;TRAMIER;Claire;26/06/1964;Non +44;Loire-Atlantique;08;8ème circonscription;12;19;M;BOUCHET;Gauthier;15/11/1987;RN;Professeur, profession scientifique;Non;F;TRIVIDIC;Anne;28/07/1957;Non +44;Loire-Atlantique;08;8ème circonscription;13;75;M;BOUCHEZ;David;13/11/1988;DIV;Ouvrier qualifié de type industriel;Non;F;ANDREAU BOUCHEZ;Elodie;23/04/1987;Non +44;Loire-Atlantique;09;9ème circonscription;1;97;M;PILET;Dominique;08/04/1967;DVD;Ouvrier agricole;Non;M;NORMAND;Luc;12/06/1960;Non +44;Loire-Atlantique;09;9ème circonscription;2;66;M;ROZIER;Ulrich;18/07/1986;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;BREGONZIO;Lola;13/05/1987;Non +44;Loire-Atlantique;09;9ème circonscription;3;39;M;HAURY;Yannick;12/06/1954;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;F;PACREAU;Fanny;22/07/1976;Non +44;Loire-Atlantique;09;9ème circonscription;4;79;M;LE COZ;Alain;26/01/1963;UDI;Ingénieur et cadre technique d'entreprise;Non;F;GIFFO;Marie;22/10/1979;Non +44;Loire-Atlantique;09;9ème circonscription;5;64;M;MALDINEY;Bastian;27/10/2000;RN;Employé administratif d'entreprise;Non;F;BEMBINOFF;Alesca;02/05/1988;Non +44;Loire-Atlantique;09;9ème circonscription;6;42;M;CHOMARD;Laurent;31/10/1971;REC;Cadre administratif et commercial d'entreprise;Non;F;BERTAUX;Valerie;04/02/1967;Non +44;Loire-Atlantique;09;9ème circonscription;7;81;F;RENAUDIN;Maryse;14/05/1960;REG;Ancienne profession intermédiaire;Non;F;FLIPPOT;Nicole;05/08/1942;Non +44;Loire-Atlantique;09;9ème circonscription;8;40;F;MACON;Hélène;25/12/1979;NUPES;Professeur, profession scientifique;Non;M;EVANS;Clement;21/02/1989;Non +44;Loire-Atlantique;09;9ème circonscription;9;96;M;MOUTOT;Alexandre;30/10/1984;REG;Commerçant et assimilé;Non;M;SÉGALOU;Loïc;24/12/1969;Non +44;Loire-Atlantique;09;9ème circonscription;10;2;F;HERVO;Annie;05/03/1957;DXG;Ancienne profession intermédiaire;Non;M;GEORGET;Alain;07/08/1966;Non +44;Loire-Atlantique;09;9ème circonscription;11;119;M;AVELLO;Alain;02/04/1971;DSV;Professeur, profession scientifique;Non;M;LE GUENIC;Maxime;30/04/1985;Non +44;Loire-Atlantique;09;9ème circonscription;12;65;M;BROUNAIS;Paul;24/12/1992;DVC;Commerçant et assimilé;Non;F;TRICHET-MIGNÉ;Valérie;18/06/1969;Non +44;Loire-Atlantique;10;10ème circonscription;1;45;F;LEGER;Sabine;23/11/1989;REC;Personnel des services directs aux particuliers;Non;M;VAILHEN;Bernard;10/01/1952;Non +44;Loire-Atlantique;10;10ème circonscription;2;107;F;LEMPERNESSE;Florence;17/12/1969;DSV;Employé administratif d'entreprise;Non;M;VENTROUX;Bertrand;07/04/1990;Non +44;Loire-Atlantique;10;10ème circonscription;3;69;F;BANNWARTH;Geneviève;22/04/1949;RN;Ancienne profession intermédiaire;Non;M;GIAMI;William;08/07/2001;Non +44;Loire-Atlantique;10;10ème circonscription;4;72;M;BONAMY;Guillaume;22/05/1977;DIV;Cadre administratif et commercial d'entreprise;Non;F;DANILO;Loïse;29/09/1989;Non +44;Loire-Atlantique;10;10ème circonscription;5;44;F;SAICHE;Malika;19/02/1969;ECO;Profession libérale;Non;F;FRADIN;Sabrina;31/05/1983;Non +44;Loire-Atlantique;10;10ème circonscription;6;46;M;CAILLETEAU;Bruno;15/05/1962;NUPES;Ancien employé;Non;F;FERRY;Léonie;25/09/1990;Non +44;Loire-Atlantique;10;10ème circonscription;7;90;M;CHÉNEAU;Philippe;19/11/1964;DVD;Agriculteur sur moyenne exploitation;Non;F;DENIS;Fabienne;25/07/1970;Non +44;Loire-Atlantique;10;10ème circonscription;8;49;F;ERRANTE;Sophie;22/07/1971;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;M;GENDRON;Jean-François;09/03/1957;Non +44;Loire-Atlantique;10;10ème circonscription;9;22;M;DANA;Richard;21/06/1979;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MONNOIR;Elvis;16/09/1977;Non +44;Loire-Atlantique;10;10ème circonscription;10;67;F;LUQUIAU;Charlotte;31/10/1978;LR;Cadre de la fonction publique;Non;M;GUILLOT;François;15/11/1969;Non +44;Loire-Atlantique;10;10ème circonscription;11;71;M;CHÉNEAU;Maxime;02/03/1987;REG;Agriculteur sur petite exploitation;Non;M;GÉRARD;Étienne;27/04/2000;Non +44;Loire-Atlantique;10;10ème circonscription;12;9;F;GARDAIR;Emmanuèle;02/08/1968;DXG;Professeur, profession scientifique;Non;M;THÉRIN;Jean-Yves;17/05/1957;Non +45;Loiret;01;1ère circonscription;1;59;F;KHIDER;Sabryna;30/08/1997;DSV;Ouvrier qualifié de type industriel;Non;M;QUILLET;Renaud;09/08/1967;Non +45;Loiret;01;1ère circonscription;2;44;F;RIST;Stéphanie;06/08/1973;ENS;Professeur, profession scientifique;Oui;M;GENTY;Romuald;11/06/1982;Non +45;Loiret;01;1ère circonscription;3;10;M;COUSIN;Thierry;16/05/1960;UDI;Cadre administratif et commercial d'entreprise;Non;F;PICARD;Fanny;18/01/1997;Non +45;Loiret;01;1ère circonscription;4;61;F;LEQUEN;Patricia;14/12/1951;REC;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;SOUFFI;Hayet;11/01/1974;Non +45;Loiret;01;1ère circonscription;5;35;F;KHUWAYLID;Dounia;01/07/1981;DIV;Professeur, profession scientifique;Non;M;HISSAB;Mohcine;23/12/1985;Non +45;Loiret;01;1ère circonscription;6;28;M;TREPKA;Claude;13/06/1965;DXG;Technicien;Non;F;SANÇOIS;Céline;28/06/1975;Non +45;Loiret;01;1ère circonscription;7;5;M;HELIE;François-Valbert;13/07/1974;RN;Employé de commerce;Non;F;COUTEAU;Murielle;19/08/1971;Non +45;Loiret;01;1ère circonscription;8;50;F;KOUNOWSKI;Ghislaine;28/11/1957;NUPES;Ancien cadre;Non;M;JOUIN;Olivier;30/03/1963;Non +45;Loiret;02;2ème circonscription;1;11;M;CHAILLOU;Yann;15/07/1993;DVG;Cadre administratif et commercial d'entreprise;Non;F;VOIGT;Caroline;03/07/1990;Non +45;Loiret;02;2ème circonscription;2;13;F;BABIN;Élodie;16/08/1990;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LECOQ;Philippe;13/10/1964;Non +45;Loiret;02;2ème circonscription;3;53;M;MALLET;Jean-Paul;24/09/1972;REC;Commerçant et assimilé;Non;F;DUVILLARD;Marie-Odile;09/09/1960;Non +45;Loiret;02;2ème circonscription;4;20;F;BOYER;Anaïs;05/12/1995;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;M;PELLETIER;Gaël;12/04/1980;Non +45;Loiret;02;2ème circonscription;5;48;F;BERTRAN;Sarah;21/11/1982;DIV;Professeur, profession scientifique;Non;M;NGUYEN;Thomas;29/06/1987;Non +45;Loiret;02;2ème circonscription;6;12;F;MEGDOUD;Farida;27/12/1961;DXG;Professeur, profession scientifique;Non;M;PRODHOMME;Pierre;05/08/1987;Non +45;Loiret;02;2ème circonscription;7;30;M;HOUSSARD;Alexandre;30/06/1976;LR;Cadre administratif et commercial d'entreprise;Non;F;CARL;Clarisse;20/05/1965;Non +45;Loiret;02;2ème circonscription;8;52;M;DUPLESSY;Emmanuel;02/01/1990;NUPES;Cadre de la fonction publique;Non;F;SAUTREUIL;Magali;15/04/1987;Non +45;Loiret;02;2ème circonscription;9;18;F;JANVIER;Caroline;09/03/1982;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;LEPÊCHEUR;Eric;04/05/1961;Non +45;Loiret;02;2ème circonscription;10;51;M;ACHBOUNE;Abdelrachid;11/10/1981;DIV;Ingénieur et cadre technique d'entreprise;Non;F;BEN MOHAMED;Aziza;18/05/1971;Non +45;Loiret;03;3ème circonscription;1;26;M;GOURRET-GUÉNIN;Philippe;04/10/1965;ECO;Profession de l'information, des arts et des spectacles;Non;F;GUÉRIN;Nathalie;04/03/1961;Non +45;Loiret;03;3ème circonscription;2;31;F;LAMARQUE;Isabelle;11/09/1967;REC;Commerçant et assimilé;Non;F;THOMAS;Joëlle;04/09/1973;Non +45;Loiret;03;3ème circonscription;3;58;M;MERLOT;Kévin;23/03/1984;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;FUMÉ;Catherine;30/11/1957;Non +45;Loiret;03;3ème circonscription;4;34;F;BARBIER;Carine;31/07/1969;ENS;Profession de l'information, des arts et des spectacles;Non;M;RADIN;Alexandre;06/12/1973;Non +45;Loiret;03;3ème circonscription;5;33;M;RIGLET;Jean-Luc;24/09/1962;DVD;Ancien cadre;Non;F;VICHERAT;Valérie;21/01/1972;Non +45;Loiret;03;3ème circonscription;6;55;M;CESSAC;Sébastien;12/12/1982;DIV;Profession intermédiaire administrative de la fonction publique;Non;F;JAMET;Aurélie;10/05/1982;Non +45;Loiret;03;3ème circonscription;7;29;M;DE GANAY;Claude;05/09/1953;LR;Cadre de la fonction publique;Oui;M;CHASSINE;Louis;21/08/1990;Non +45;Loiret;03;3ème circonscription;8;27;F;PARIS;Mathilde;14/01/1985;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;MAROT;Jany;29/03/2004;Non +45;Loiret;03;3ème circonscription;9;6;M;NAULIN;Michel;30/04/1958;DXG;Ancienne profession intermédiaire;Non;F;BERNIER;Martine;12/02/1958;Non +45;Loiret;04;4ème circonscription;1;36;M;ROHAUT;Olivier;13/08/1984;DIV;Artisan;Non;M;PROFFIT;Alphonse;09/04/1980;Non +45;Loiret;04;4ème circonscription;2;17;F;CLERGUE;Dominique;03/03/1961;DXG;Ouvrier non qualifié de type industriel;Non;F;FOURNIOLS;Anne Marie;22/01/1958;Non +45;Loiret;04;4ème circonscription;3;38;M;MOREAU;Philippe;09/06/1967;DVD;Cadre administratif et commercial d'entreprise;Non;M;MADEC-CLEÏ;Claude;11/11/1955;Non +45;Loiret;04;4ème circonscription;4;32;F;LECHEVALIER;Sylvie;01/12/1961;DSV;Profession intermédiaire de la santé et du travail social;Non;M;LEMAIRE;Henri;22/11/1958;Non +45;Loiret;04;4ème circonscription;5;15;M;NOTTIN;Bruno;27/08/1974;NUPES;Profession intermédiaire administrative de la fonction publique;Non;F;PHÉSOR;Francine;08/02/1969;Non +45;Loiret;04;4ème circonscription;6;9;M;MÉNAGÉ;Thomas;06/01/1992;RN;Cadre administratif et commercial d'entreprise;Non;M;SAUVEGRAIN;Frédéric;21/03/1966;Non +45;Loiret;04;4ème circonscription;7;39;M;BLANQUER;Jean-Michel;04/12/1964;ENS;Cadre de la fonction publique;Non;M;BOUQUET;Christophe;04/02/1975;Non +45;Loiret;04;4ème circonscription;8;40;M;LÉVY;Ariel;27/02/1990;LR;Cadre administratif et commercial d'entreprise;Non;F;MELZASSARD;Corinne;15/10/1971;Non +45;Loiret;04;4ème circonscription;9;57;M;CUIGNACHE;Alexandre;11/08/1984;REC;Profession libérale;Non;F;THOMAS;Guillemette;06/06/1998;Non +45;Loiret;04;4ème circonscription;10;47;M;D'ISOARD DE CHENERILLES;Romain;12/05/1992;ECO;Professeur des écoles, instituteur et assimilé;Non;M;D'ISOARD DE CHENERILLES;Isaac;19/02/1998;Non +45;Loiret;05;5ème circonscription;1;21;M;DE NAS DE TOURRIS;Eric;20/10/1968;REC;Profession libérale;Non;F;ROBERT;Martine;19/04/1954;Non +45;Loiret;05;5ème circonscription;2;46;M;MOLLIERE;Laurent;26/03/1975;ECO;Ingénieur et cadre technique d'entreprise;Non;F;BONNIN;Maëlle;09/02/1991;Non +45;Loiret;05;5ème circonscription;3;8;M;MANENT;Valentin;22/12/1988;RN;Technicien;Non;F;PANTALÉON;Blandine;31/05/1990;Non +45;Loiret;05;5ème circonscription;4;37;M;BUIZARD;Maxime;05/05/1992;LR;Agriculteur sur petite exploitation;Non;F;DUBOIS;Marianne;17/12/1957;Oui +45;Loiret;05;5ème circonscription;5;2;F;SOTTEJEAU;Céline;16/09/1978;DXG;Professeur, profession scientifique;Non;M;RAVET;Pascal;07/01/1969;Non +45;Loiret;05;5ème circonscription;6;41;M;BROSSE;Anthony;04/11/1980;ENS;Profession intermédiaire de la santé et du travail social;Non;F;DINIZ;Sandra;20/01/1970;Non +45;Loiret;05;5ème circonscription;7;42;F;CHABIRAND;Florence;31/01/1969;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;JAY;Thierry;11/12/1963;Non +45;Loiret;05;5ème circonscription;8;24;M;THEBAUT;Laurent;01/03/1976;DXG;Professeur, profession scientifique;Non;F;MAZEYRAT;Liliane;10/06/1952;Non +45;Loiret;05;5ème circonscription;9;7;M;BARJONET;Thierry;09/02/1969;DVD;Profession de l'information, des arts et des spectacles;Non;F;BERTHELOT;Isabelle;03/10/1965;Non +45;Loiret;06;6ème circonscription;1;62;F;KHELIL;Anna;21/02/1993;REC;Cadre administratif et commercial d'entreprise;Non;M;MARC;Samuel;09/12/1994;Non +45;Loiret;06;6ème circonscription;2;25;M;LEGROS;Raphaël;01/05/1995;ECO;Ingénieur et cadre technique d'entreprise;Non;F;HERSCOVICI;Edna;26/07/1951;Non +45;Loiret;06;6ème circonscription;3;3;F;BOUBEKEUR;Carla;10/07/1995;RN;Profession intermédiaire de la santé et du travail social;Non;M;TEMPLIER;Jean-Pierre;02/02/1954;Non +45;Loiret;06;6ème circonscription;4;19;M;CHOQUEL;David;12/11/1977;DXG;Professeur, profession scientifique;Non;M;LEMERLE;Arnaud;05/07/1972;Non +45;Loiret;06;6ème circonscription;5;45;M;RAMOS;Richard;23/03/1968;ENS;Cadre administratif et commercial d'entreprise;Oui;F;CAILLETEAU-CRUCY;Clémentine;19/05/1981;Non +45;Loiret;06;6ème circonscription;6;22;M;BAUMGARTNER;Gaël;20/08/1973;ECO;Profession libérale;Non;F;MBENGUE;Khady;16/06/1981;Non +45;Loiret;06;6ème circonscription;7;43;M;HICTER;Olivier;20/12/1966;NUPES;Professeur, profession scientifique;Non;F;SALVATORE;Nathalie;05/07/1967;Non +45;Loiret;06;6ème circonscription;8;14;M;DELAGUETTE;Xavier;31/07/1986;DIV;Profession libérale;Non;F;BOUNEFIKHA;Sarah;24/07/1992;Non +45;Loiret;06;6ème circonscription;9;4;M;TOULOUGOUSSOU;Théodore-Richard;28/05/1960;DVG;Professeur, profession scientifique;Non;M;DELPOÏO;Guillaume;08/07/1985;Non +45;Loiret;06;6ème circonscription;10;49;F;DE FILIPPI;Chrystel;14/04/1976;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;GOUSSARD;Olivier;02/04/1952;Non +45;Loiret;06;6ème circonscription;11;60;M;SILVESTRE;Dylan;22/08/1995;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;PIRES;Mathilde;21/03/1995;Non +45;Loiret;06;6ème circonscription;12;54;M;BIBET;Sébastien;31/07/1981;DSV;Technicien;Non;F;DELENTE;Anne;17/06/1981;Non +46;Lot;01;1ère circonscription;1;12;F;SALLINEN;Frédérique;23/10/1967;ECO;Cadre administratif et commercial d'entreprise;Non;M;HARBOUN;David;04/02/1960;Non +46;Lot;01;1ère circonscription;2;3;M;DOMENECH;Ghislain;30/09/1953;DXG;Ancienne profession intermédiaire;Non;M;ROCCA;Henri;23/11/1958;Non +46;Lot;01;1ère circonscription;3;2;M;MAURY;Patrice;26/04/1969;DVC;Ingénieur et cadre technique d'entreprise;Non;F;AGUIRREGOMEZCORTA;Emilie;14/11/1979;Non +46;Lot;01;1ère circonscription;4;23;F;BOUGEARD;Elsa;11/01/1982;NUPES;Professeur, profession scientifique;Non;M;LE GUILLOUX;Sylvain;06/06/1983;Non +46;Lot;01;1ère circonscription;5;6;F;GOUSSU;Monique;19/07/1947;REC;Ancien cadre;Non;M;TESSON;François;19/07/1958;Non +46;Lot;01;1ère circonscription;6;19;F;COUTURIER;Cendrine;11/04/1970;RN;Profession libérale;Non;M;MARTY;Jean-Jacques;28/01/1958;Non +46;Lot;01;1ère circonscription;7;10;M;GERARD;Frédéric;08/04/1970;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;F;JUDE;Fabienne;30/07/1966;Non +46;Lot;01;1ère circonscription;8;9;M;STUMM;Florent;21/10/1996;DVG;Employé administratif d'entreprise;Non;F;ALRIVIE;Françoise;31/08/1961;Non +46;Lot;01;1ère circonscription;9;17;M;BRANCO;Rémi;20/07/1984;DVG;Cadre administratif et commercial d'entreprise;Non;F;MAURY;Maryse;22/03/1951;Non +46;Lot;01;1ère circonscription;10;21;M;PRADIÉ;Aurélien;14/03/1986;LR;Cadre administratif et commercial d'entreprise;Oui;F;RIVIÈRE;Brigitte;23/03/1959;Non +46;Lot;02;2ème circonscription;1;7;M;ASTOUL;Roland;29/11/1954;DVD;Ancien cadre;Non;M;SERMET;Jean-Claude;13/10/1962;Non +46;Lot;02;2ème circonscription;2;13;M;BONTEMPS;Louis;08/10/1997;LR;Elève, étudiant;Non;F;ROUQUIE;Valérie;27/03/1973;Non +46;Lot;02;2ème circonscription;3;11;M;LUCAS;Bruno;27/10/1955;DVG;Profession libérale;Non;M;SACCO;Stéphane;07/05/1963;Non +46;Lot;02;2ème circonscription;4;20;F;LE GLOANNEC;Armelle;18/08/1969;RN;Agriculteur sur petite exploitation;Non;F;TEISSEDRE;Nadège;02/02/1981;Non +46;Lot;02;2ème circonscription;5;18;F;TIEGNA;Huguette;01/04/1982;ENS;Ingénieur et cadre technique d'entreprise;Oui;F;LACASSAGNE;Chantal;23/12/1957;Non +46;Lot;02;2ème circonscription;6;15;M;BARBIER DAMIETTE;Frédéric;26/07/1978;DIV;Profession libérale;Non;F;HARLEZ;Claire;11/08/1981;Non +46;Lot;02;2ème circonscription;7;22;M;GROSSEMY;Thierry;05/12/1959;NUPES;Ancien ouvrier;Non;F;GONTIER;Patricia;18/01/1967;Non +46;Lot;02;2ème circonscription;8;8;M;PROENÇA;Christophe;31/05/1966;DVG;Professeur, profession scientifique;Non;F;LAPORTERIE;Anne;26/05/1971;Non +46;Lot;02;2ème circonscription;9;4;M;MILLARD;Alain;17/07/1955;DXG;Ancien employé;Non;F;ARNAC;Sylviane;23/09/1953;Non +46;Lot;02;2ème circonscription;10;16;M;FORESTIÉ;Alexis;23/06/1974;DVG;Profession de l'information, des arts et des spectacles;Non;F;GUERRIERI;Léa;23/02/1982;Non +46;Lot;02;2ème circonscription;11;14;M;SALAUZE;Stanislas;23/03/1965;REC;Ingénieur et cadre technique d'entreprise;Non;M;CHOLLIER;Maxime;15/10/1998;Non +46;Lot;02;2ème circonscription;12;5;F;VIAU;Marie-Michèle;20/01/1944;DXG;Ancienne profession intermédiaire;Non;M;ISNARD;Jean-Marc;11/05/1952;Non +47;Lot-et-Garonne;01;1ère circonscription;1;13;M;LAUZZANA;Michel;20/03/1957;ENS;Profession libérale;Oui;F;BORDERIE;Chantal;16/05/1956;Non +47;Lot-et-Garonne;01;1ère circonscription;2;10;M;DELBOSQ;Sébastien;06/05/1986;RN;Cadre administratif et commercial d'entreprise;Non;M;RENARD;Fabrice;16/01/1975;Non +47;Lot-et-Garonne;01;1ère circonscription;3;19;F;COMBRES;Maryse;24/10/1958;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;LAPEYRÈRE;Philippe;30/11/1963;Non +47;Lot-et-Garonne;01;1ère circonscription;4;4;M;EL MARBATI;Mohamed;06/03/1958;DXG;Ancien cadre;Non;F;FARNO-AVERLANT;Isabelle;08/12/1966;Non +47;Lot-et-Garonne;01;1ère circonscription;5;8;M;GIRARDI;Bertrand;21/03/1978;LR;Commerçant et assimilé;Non;M;MACHADO;André;14/08/1968;Non +47;Lot-et-Garonne;01;1ère circonscription;6;20;F;RAMBOURG;Sophie;17/01/1976;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;HINGANT;Karine;26/05/1963;Non +47;Lot-et-Garonne;01;1ère circonscription;7;27;M;AURICES;Benoit;01/07/1988;DSV;Professeur des écoles, instituteur et assimilé;Non;M;PIOT;Bernard;03/08/1947;Non +47;Lot-et-Garonne;01;1ère circonscription;8;5;F;BRUYÈRES;Marie Line;24/06/1958;REC;Ancien cadre;Non;M;SANTET;Philippe;09/11/1956;Non +47;Lot-et-Garonne;02;2ème circonscription;1;3;M;VENDÈGE;Michel;30/09/1964;ECO;Chauffeur;Non;M;MAZAGOT;Olivier;14/12/1970;Non +47;Lot-et-Garonne;02;2ème circonscription;2;18;M;FRESCHI;Alexandre;17/05/1979;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;DUCOS;Laurence;22/04/1964;Non +47;Lot-et-Garonne;02;2ème circonscription;3;26;F;CALZAVARA;Martine;01/11/1955;LR;Profession libérale;Non;M;LANDAT;Jean-Pierre;10/09/1960;Non +47;Lot-et-Garonne;02;2ème circonscription;4;28;F;LAPORTE;Hélène;29/12/1978;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CHAUMEIL;Romain;03/08/1991;Non +47;Lot-et-Garonne;02;2ème circonscription;5;24;M;COURREGELONGUE;Christophe;06/09/1972;NUPES;Professeur, profession scientifique;Non;F;BOTTECCHIA;Valérie;01/01/1965;Non +47;Lot-et-Garonne;02;2ème circonscription;6;11;F;REDOULEZ;Laetitia;11/07/1977;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;LE HIR;Monique;17/09/1953;Non +47;Lot-et-Garonne;02;2ème circonscription;7;29;M;MAURIN;Patrick;02/08/1953;DVD;Ancien artisan, commerçant, chef d'entreprise;Non;F;CARLES;Marie-Françoise;21/03/1961;Non +47;Lot-et-Garonne;02;2ème circonscription;8;12;F;HÉNAFF;Isabelle;09/06/1983;REC;Cadre de la fonction publique;Non;M;CHOPLIN;Claude;14/05/1961;Non +47;Lot-et-Garonne;03;3ème circonscription;1;30;M;BOUFFIES;Mathias;20/02/1992;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;SIRAND;Juliette;03/09/1993;Non +47;Lot-et-Garonne;03;3ème circonscription;2;15;M;SOUBIRAN;Pierre;17/05/1958;DVC;Ancien artisan, commerçant, chef d'entreprise;Non;F;VERGNOLLE;Marie-Line;31/03/1957;Non +47;Lot-et-Garonne;03;3ème circonscription;3;22;M;GARY;Geoffroy;27/10/1977;REC;Professeur, profession scientifique;Non;F;LANDRIN;Pia;27/08/1983;Non +47;Lot-et-Garonne;03;3ème circonscription;4;9;F;COUSIN;Annick;07/08/1973;RN;Employé civil et agent de service de la fonction publique;Non;M;BEAUPUIS;Christophe;07/04/1977;Non +47;Lot-et-Garonne;03;3ème circonscription;5;25;M;DAMAISIN;Olivier;05/08/1966;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;F;HAMIDANI;Farah;16/04/1981;Non +47;Lot-et-Garonne;03;3ème circonscription;6;16;F;DE BOISSEZON;Therese;23/10/1962;REG;Profession intermédiaire de la santé et du travail social;Non;M;LE MONIER;Jean Marie;18/11/1960;Non +47;Lot-et-Garonne;03;3ème circonscription;7;14;M;FANCHTEIN;Jean-Jacques;17/11/1957;DXD;Ancien artisan, commerçant, chef d'entreprise;Non;F;BACQUEY;Yolande;26/11/1954;Non +47;Lot-et-Garonne;03;3ème circonscription;8;17;M;VIALETTES;Jacques;27/10/1958;RDG;Technicien;Non;M;LAFFARGUE;Eric;18/02/1956;Non +47;Lot-et-Garonne;03;3ème circonscription;9;21;M;CZAPLA;Xavier;30/11/1967;NUPES;Profession de l'information, des arts et des spectacles;Non;F;BINOIS-FIEGEL;Carole;26/09/1959;Non +47;Lot-et-Garonne;03;3ème circonscription;10;23;M;MERLY;Alain;15/06/1954;DVD;Ancien cadre;Non;F;BESSON;Séverine;17/05/1972;Non +47;Lot-et-Garonne;03;3ème circonscription;11;6;F;GASC;Bernadette;11/08/1960;DXG;Employé administratif d'entreprise;Non;M;GIL;Patrick;14/12/1950;Non +47;Lot-et-Garonne;03;3ème circonscription;12;2;F;SIDER;Myriam;16/09/1971;DXG;Professeur des écoles, instituteur et assimilé;Non;M;GODARD;Cyrille;16/12/1969;Non +47;Lot-et-Garonne;03;3ème circonscription;13;7;M;COSTES;Jean-Louis;23/08/1963;LR;Cadre de la fonction publique;Non;F;LÉVÊQUE;Cathy;04/05/1971;Non +48;Lozère;01;1ère circonscription;1;2;F;DESCAVES;Sandrine;22/04/1975;NUPES;Technicien;Non;M;CAUSSE;Christian;02/06/1954;Non +48;Lozère;01;1ère circonscription;2;11;M;ZIDOUN;Dja;14/02/1965;DIV;Agriculteur sur petite exploitation;Non;F;DE LA FOUCHARDIÈRE;Alice;11/04/1995;Non +48;Lozère;01;1ère circonscription;3;8;M;SUAU;Laurent;26/08/1964;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GAUTHIER;Marie-Laure;07/07/1971;Non +48;Lozère;01;1ère circonscription;4;6;M;PARDIGON;Jean François;10/07/1947;RN;Ancien artisan, commerçant, chef d'entreprise;Non;F;MICHALLET;Danielle;18/02/1947;Non +48;Lozère;01;1ère circonscription;5;10;M;PALOMBI;Francis;06/08/1948;DIV;Ancien cadre;Non;F;LADEVIE;Sandrine;16/02/1976;Non +48;Lozère;01;1ère circonscription;6;3;M;MOREL A L'HUISSIER;Pierre;21/12/1958;UDI;Profession libérale;Oui;F;FANTINI ÉPOUSE MALAVAL;Audrey;13/06/1984;Non +48;Lozère;01;1ère circonscription;7;5;F;SOUCHON;Annie;08/07/1947;DXG;Ancien employé;Non;M;FRONTY;Thierry;10/01/1963;Non +48;Lozère;01;1ère circonscription;8;9;M;CASTAN;Christophe;15/06/1973;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;HOSZMAN;Nadine;31/05/1953;Non +48;Lozère;01;1ère circonscription;9;7;M;SAINT-LEGER;Patrice;03/06/1962;DVD;Profession libérale;Non;M;DE LAS CASES;Paul;12/01/1996;Non +48;Lozère;01;1ère circonscription;10;4;M;POUGNET;Nicolas;13/05/1960;REC;Cadre administratif et commercial d'entreprise;Non;M;DOURAU;Jacques;01/10/1954;Non +48;Lozère;01;1ère circonscription;11;12;M;BLAYAC;Dorian;07/01/1998;ECO;Profession intermédiaire de la santé et du travail social;Non;M;GENESTA;Vincent;11/05/1995;Non +49;Maine-et-Loire;01;1ère circonscription;1;2;F;DUPAS;Marie-Louise;28/01/1950;DXG;Ancienne profession intermédiaire;Non;M;DESPORTES;David;10/03/1972;Non +49;Maine-et-Loire;01;1ère circonscription;2;21;M;BOVIER-LAPIERRE;Tristan;04/10/1971;REC;Ancien artisan, commerçant, chef d'entreprise;Non;F;GOD;Léna;14/08/1995;Non +49;Maine-et-Loire;01;1ère circonscription;3;29;M;CAYLA;David;12/01/1976;DVG;Professeur, profession scientifique;Non;F;DEGROTT;Ingrid;10/11/1995;Non +49;Maine-et-Loire;01;1ère circonscription;4;24;M;SAEIDI;Arash;25/05/1975;NUPES;Chef d'entreprise de 10 salariés ou plus;Non;F;RAFFIN;Elise;19/02/1979;Non +49;Maine-et-Loire;01;1ère circonscription;5;4;M;DE CHABOT;Gabriel;02/09/1981;RN;Professeur, profession scientifique;Non;M;GAILLARD;Roger;22/08/2000;Non +49;Maine-et-Loire;01;1ère circonscription;6;34;M;BENOIT;Sulyvan;07/11/1995;ECO;Employé administratif d'entreprise;Non;F;GASBLAN DIXNEUF;Laura;07/06/1994;Non +49;Maine-et-Loire;01;1ère circonscription;7;17;M;BRANCOUR;Roch;02/10/1973;LR;Cadre administratif et commercial d'entreprise;Non;F;LEZE;Maryline;14/06/1961;Non +49;Maine-et-Loire;01;1ère circonscription;8;46;M;GERNIGON;François;02/04/1961;ENS;Ancien cadre;Non;F;CRUYPENNINCK;Hélène;01/04/1983;Non +49;Maine-et-Loire;02;2ème circonscription;1;36;F;BESSAT;Caroline;19/08/1968;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;FOLOPPE;Déborah;29/03/1987;Non +49;Maine-et-Loire;02;2ème circonscription;2;59;M;LE SOURD;Fabrice;15/03/1977;DSV;Artisan;Non;F;NOEL (DOUAY);Doris;20/01/1956;Non +49;Maine-et-Loire;02;2ème circonscription;3;49;M;BAUDOIN;Jean-Charles;29/03/1979;ECO;Cadre administratif et commercial d'entreprise;Non;F;AVETAIN;Isabelle;21/01/1963;Non +49;Maine-et-Loire;02;2ème circonscription;4;64;F;GRANIER;Blandine;17/02/1989;DIV;Commerçant et assimilé;Non;M;THOMAS;Christophe;17/10/1980;Non +49;Maine-et-Loire;02;2ème circonscription;5;18;F;GRENIER;Aurélie;24/03/1976;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;DOUCELIN;Dominique;10/07/1948;Non +49;Maine-et-Loire;02;2ème circonscription;6;30;M;MOULIN;Simon;16/07/1980;ECO;Professeur, profession scientifique;Non;F;LECOMTE;Amélie;11/01/1984;Non +49;Maine-et-Loire;02;2ème circonscription;7;54;F;DUPONT;Stella;03/11/1973;ENS;Cadre administratif et commercial d'entreprise;Oui;M;BOUSSION;Sébastien;07/01/1981;Non +49;Maine-et-Loire;02;2ème circonscription;8;56;F;HENNO;Inès;16/06/1999;UDI;Commerçant et assimilé;Non;M;FERRO;Maxence;18/03/1999;Non +49;Maine-et-Loire;02;2ème circonscription;9;10;F;LEMENACH;Anne-Sophie;18/08/1985;RN;Employé administratif d'entreprise;Non;M;SYDAPHASAVANH;Sébastien;14/04/1997;Non +49;Maine-et-Loire;02;2ème circonscription;10;28;M;LEBRUN;Philippe;30/11/1956;DXG;Professeur des écoles, instituteur et assimilé;Non;M;QUEURY;Jean-Michel;16/03/1968;Non +49;Maine-et-Loire;02;2ème circonscription;11;35;M;LYS;Miguel;16/05/1964;DIV;Cadre de la fonction publique;Non;M;LECLERC;Jean Louis;27/08/1960;Non +49;Maine-et-Loire;03;3ème circonscription;1;23;M;BABINET;Charles;05/02/1980;REC;Cadre de la fonction publique;Non;F;DE LUSTRAC;Sophie;10/10/1972;Non +49;Maine-et-Loire;03;3ème circonscription;2;13;F;BAVERET;Sylvie;04/08/1974;DSV;Profession de l'information, des arts et des spectacles;Non;M;OLIVIER;Tony;06/11/1989;Non +49;Maine-et-Loire;03;3ème circonscription;3;5;M;LAHONDÈS;Bernard;11/12/1960;RN;Profession intermédiaire de la santé et du travail social;Non;F;DUPONT;Dolorès;20/04/1961;Non +49;Maine-et-Loire;03;3ème circonscription;4;16;F;ROUDÉVITCH;Véronique;23/06/1959;NUPES;Ingénieur et cadre technique d'entreprise;Non;M;ALEXANDRE;Patrick;29/09/1959;Non +49;Maine-et-Loire;03;3ème circonscription;5;37;M;ROBERT;David;15/03/1973;RDG;Professeur, profession scientifique;Non;M;CERIZIER;Emilien;13/02/2001;Non +49;Maine-et-Loire;03;3ème circonscription;6;31;F;PEILLON;Patricia;14/10/1975;DXG;Employé civil et agent de service de la fonction publique;Non;M;CHOUFA;Abdel-Nour;29/12/1958;Non +49;Maine-et-Loire;03;3ème circonscription;7;58;F;BLIN;Anne-Laure;12/06/1983;LR;Ancien cadre;Oui;M;BEAUDOIN;Jean-Pierre;31/01/1958;Non +49;Maine-et-Loire;03;3ème circonscription;8;3;M;HOLLEY;Simon;17/12/1992;ENS;Professeur, profession scientifique;Non;F;MARTIN;Marie-Pierre;11/05/1954;Non +49;Maine-et-Loire;04;4ème circonscription;1;14;F;SAINT-PAUL;Laëtitia;21/01/1981;ENS;Militaire du contingent;Oui;M;ALGOET;Philippe;02/05/1956;Non +49;Maine-et-Loire;04;4ème circonscription;2;8;F;RABAULT;Caroline;19/12/1973;NUPES;Employé civil et agent de service de la fonction publique;Non;F;LELOUP-COTTIN;Catherine Renée Nicole;11/07/1965;Non +49;Maine-et-Loire;04;4ème circonscription;3;6;F;GERET;Sylvie;28/11/1955;DXG;Profession libérale;Non;M;LIZÉ;Didier;05/02/1962;Non +49;Maine-et-Loire;04;4ème circonscription;4;11;M;MORINEAU;Patrick;18/02/1951;RN;Ancien artisan, commerçant, chef d'entreprise;Non;F;TEISSEIRE;Véronique;16/06/1961;Non +49;Maine-et-Loire;04;4ème circonscription;5;48;F;LEQUET;Christelle;02/10/1978;DSV;Employé administratif d'entreprise;Non;M;MARATRAY;Jean-Philippe;17/05/1968;Non +49;Maine-et-Loire;04;4ème circonscription;6;63;M;DEVEAUX;Nicolas;08/02/1968;DIV;Ingénieur et cadre technique d'entreprise;Non;F;ROUSSEAU;Virginie;12/03/1974;Non +49;Maine-et-Loire;04;4ème circonscription;7;60;M;HERVE;Gérard;29/06/1955;DVD;Ancien employé;Non;M;DEVAUD;Marc;23/09/1962;Non +49;Maine-et-Loire;04;4ème circonscription;8;32;F;CATIN;Régine;03/10/1956;LR;Ancien agriculteur exploitant;Non;M;HOUET;Bruno;31/05/1957;Non +49;Maine-et-Loire;04;4ème circonscription;9;19;M;JAMIN;Charles-Henri;25/08/1962;REC;Cadre administratif et commercial d'entreprise;Non;F;SAUER;Claire;24/08/1985;Non +49;Maine-et-Loire;05;5ème circonscription;1;45;M;AIRAUD;Christophe;09/12/1963;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;ANGEVIN;Kimberley;28/06/1995;Non +49;Maine-et-Loire;05;5ème circonscription;2;22;F;GORIOUX;Valérie;30/11/1957;REC;Ancien cadre;Non;M;BOURGET;Noham;01/03/2004;Non +49;Maine-et-Loire;05;5ème circonscription;3;33;M;TESTU;Didier;05/04/1953;DXG;Ancien ouvrier;Non;F;RAMBAUD;Marie-Claude;20/07/1957;Non +49;Maine-et-Loire;05;5ème circonscription;4;38;M;MASSEGLIA;Denis;11/04/1981;ENS;Ingénieur et cadre technique d'entreprise;Oui;F;FLEURANCE;Cécile;13/08/1972;Non +49;Maine-et-Loire;05;5ème circonscription;5;51;M;LIGOT;Jacquelin;02/03/1962;DVD;Profession libérale;Non;M;CESBRON;Richard;09/03/1977;Non +49;Maine-et-Loire;05;5ème circonscription;6;62;M;DEBARRE;Jean-Michel;07/09/1955;DVC;Profession libérale;Non;F;CORREC;Anaëlle Abia Rejane;08/09/1987;Non +49;Maine-et-Loire;05;5ème circonscription;7;12;M;GUYARD;Frédéric;30/05/1960;DSV;Cadre administratif et commercial d'entreprise;Non;F;FOLLEZOU;Fiona;12/08/1995;Non +49;Maine-et-Loire;05;5ème circonscription;8;39;M;FUSIL;Hervé;18/08/1955;ECO;Ancien cadre;Non;F;MAREAU;Valérie;21/01/1976;Non +49;Maine-et-Loire;05;5ème circonscription;9;7;F;DE CAMPEAU;Sigline;30/03/1985;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MERLAUD;Lucie;06/07/1969;Non +49;Maine-et-Loire;06;6ème circonscription;1;26;M;LECLUSE;Pie-Louis;29/07/1998;RN;Ouvrier agricole;Non;M;GOURMAUD;Steeve;05/05/1990;Non +49;Maine-et-Loire;06;6ème circonscription;2;55;F;AMGHAR;Tassadit;09/10/1969;NUPES;Professeur, profession scientifique;Non;M;VERNEAU;Eric;01/11/1971;Non +49;Maine-et-Loire;06;6ème circonscription;3;25;F;DURAND;Marie;11/05/1997;REC;Ingénieur et cadre technique d'entreprise;Non;M;FAVRE;Antoine;13/06/2002;Non +49;Maine-et-Loire;06;6ème circonscription;4;27;F;DUBRE-CHIRAT;Nicole;18/12/1951;ENS;Cadre de la fonction publique;Oui;M;BRUGÈRE;Alexandre;05/07/1987;Non +49;Maine-et-Loire;06;6ème circonscription;5;40;M;CIOFI;Bruno;21/01/1969;DIV;Agriculteur sur petite exploitation;Non;F;CHIMIER;Marie;21/06/1987;Non +49;Maine-et-Loire;06;6ème circonscription;6;61;F;HUMEAU;Bernadette;19/01/1961;DVC;Agriculteur sur petite exploitation;Non;M;GUILLOT;Cyrille;18/02/1969;Non +49;Maine-et-Loire;06;6ème circonscription;7;52;F;GAILLARD;Geneviève;22/05/1959;LR;Ancien cadre;Non;M;PICHERIT;Pierre;02/10/1973;Non +49;Maine-et-Loire;06;6ème circonscription;8;47;F;CREVENNA;Lydie;13/04/1966;DSV;Profession libérale;Non;M;OLIVIER;David;26/04/1974;Non +49;Maine-et-Loire;06;6ème circonscription;9;41;M;LE DIAGON;Yann;24/12/1976;DXG;Professeur, profession scientifique;Non;F;KHRAIEF;Lamya;11/06/1979;Non +49;Maine-et-Loire;07;7ème circonscription;1;15;M;CRESPIN;Régis;09/05/1959;DSV;Artisan;Non;F;MASSE;Christelle;11/07/1971;Non +49;Maine-et-Loire;07;7ème circonscription;2;50;M;GUERBAA;Abderrazak;01/05/1966;ECO;Cadre administratif et commercial d'entreprise;Non;F;TROUCHE;Irène;05/08/1937;Non +49;Maine-et-Loire;07;7ème circonscription;3;53;M;BOLO;Philippe;25/03/1967;ENS;Ingénieur et cadre technique d'entreprise;Oui;F;MAUSSION;Patricia;23/09/1968;Non +49;Maine-et-Loire;07;7ème circonscription;4;43;M;JOUANNEAU;Guillaume;27/03/1988;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;MEZIERE-FORTIN;Marie;07/10/1979;Non +49;Maine-et-Loire;07;7ème circonscription;5;9;F;LAHONDÈS;Aurore;11/07/1997;RN;Cadre de la fonction publique;Non;M;METAYER;Eric;28/07/1959;Non +49;Maine-et-Loire;07;7ème circonscription;6;57;M;TROTTIER;Stéphane;20/06/1966;DVD;Chauffeur;Non;M;DE MONTMARIN;Hubert;07/03/1944;Non +49;Maine-et-Loire;07;7ème circonscription;7;44;F;L'HUILLIER;Céline;10/09/1975;DXG;Professeur des écoles, instituteur et assimilé;Non;M;CHOUETTE;Luc;15/12/1965;Non +49;Maine-et-Loire;07;7ème circonscription;8;42;F;MAZIÈRES;Barbara;10/02/1972;REC;Cadre administratif et commercial d'entreprise;Non;M;VINTRAS;Benoit;26/12/1984;Non +50;Manche;01;1ère circonscription;1;5;M;LOUICHE;Jérôme;05/11/1976;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;BROCHEN;Cécile;06/05/1970;Non +50;Manche;01;1ère circonscription;2;34;M;HÉDOUIN;Guillaume;18/03/1976;NUPES;Cadre de la fonction publique;Non;F;DAVID;Amélie;26/05/1980;Non +50;Manche;01;1ère circonscription;3;39;M;PASQUIER;François;16/02/1967;DSV;Cadre de la fonction publique;Non;F;CHAMARD;Annie;20/02/1952;Non +50;Manche;01;1ère circonscription;4;6;M;JAN DE LAGILLARDAIE;Victor;15/04/2000;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;F;DUREL;Michèle;21/12/1998;Non +50;Manche;01;1ère circonscription;5;16;M;PIEN;Laurent;08/08/1968;ENS;Cadre de la fonction publique;Non;F;LEBOUTELLIER;Mélanie;27/09/1985;Non +50;Manche;01;1ère circonscription;6;36;M;SIMON;Franck;21/07/1964;RN;Chauffeur;Non;F;DURAND;Catherine;11/10/1977;Non +50;Manche;01;1ère circonscription;7;25;F;LEWI;Olivia;27/01/1973;DXG;Professeur, profession scientifique;Non;F;LEMIÈRE;Françoise;23/01/1964;Non +50;Manche;01;1ère circonscription;8;11;M;GOSSELIN;Philippe;23/10/1966;LR;Professeur, profession scientifique;Oui;F;CASTELEIN;Christèle;30/11/1967;Non +50;Manche;01;1ère circonscription;9;37;M;POISSON;Jacques;27/09/1971;DVD;Agriculteur sur moyenne exploitation;Non;F;DE PONCINS;Martine;17/04/1946;Non +50;Manche;02;2ème circonscription;1;14;F;LAIR;Anne-Marie;18/02/1969;ECO;Profession libérale;Non;M;PIERRET;José;14/08/1968;Non +50;Manche;02;2ème circonscription;2;29;M;JOURNEL;Thomas;09/12/1976;DVG;Employé de commerce;Non;F;LAMBERT;France;17/02/1954;Non +50;Manche;02;2ème circonscription;3;35;M;BAZINCOURT;Cédric;30/11/1969;DSV;Commerçant et assimilé;Non;M;MAFIODO;Jordan;27/05/1994;Non +50;Manche;02;2ème circonscription;4;3;M;SORRE;Bertrand;08/05/1965;ENS;Professeur des écoles, instituteur et assimilé;Oui;F;FILLÂTRE;Marie-Hélène;08/02/1959;Non +50;Manche;02;2ème circonscription;5;30;M;GRIMBERT;Patrick;28/10/1956;NUPES;Ancien cadre;Non;F;LESCURE;Clarisse;19/09/1971;Non +50;Manche;02;2ème circonscription;6;2;M;FÉRET;Denis;14/12/1961;REC;Artisan;Non;M;POINCHEVAL;Quentin;06/03/1998;Non +50;Manche;02;2ème circonscription;7;20;F;TRAN;Mai;14/08/1972;DXG;Professeur, profession scientifique;Non;F;MARIETTE;Annie;14/10/1960;Non +50;Manche;02;2ème circonscription;8;26;F;GOUZIEN;Valérie;30/06/1966;ECO;Ancienne profession intermédiaire;Non;M;HÈME;Jean-François;10/11/1948;Non +50;Manche;02;2ème circonscription;9;4;F;KURDZIEL;Marie-Françoise;26/01/1958;RN;Ancien employé;Non;F;IGNATOV;Kamelia;14/04/1957;Non +50;Manche;02;2ème circonscription;10;17;F;FILUZEAU;Florence;25/04/1969;ECO;Commerçant et assimilé;Non;M;MASSIEU;Jonas;07/01/1988;Non +50;Manche;02;2ème circonscription;11;38;M;TOULLEC DUFOUR;Erwan;30/01/1975;LR;Cadre administratif et commercial d'entreprise;Non;F;BARENTON GUILLAS;Julie;14/04/1975;Non +50;Manche;03;3ème circonscription;1;12;M;TRAVERT;Stéphane;12/10/1969;ENS;Cadre administratif et commercial d'entreprise;Oui;F;LECONTE;Valérie;07/12/1965;Non +50;Manche;03;3ème circonscription;2;15;F;DANIEL;Nadège;03/12/1962;REC;Cadre administratif et commercial d'entreprise;Non;M;DEUVE;Richard;18/03/1953;Non +50;Manche;03;3ème circonscription;3;23;F;DERREY;Laurence;28/10/1964;DXG;Professeur, profession scientifique;Non;M;AYOUTI;Mansour;22/11/1957;Non +50;Manche;03;3ème circonscription;4;10;F;MASSON;Carmen;10/11/1946;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;REGNOUF;Emmanuel;17/04/1958;Non +50;Manche;03;3ème circonscription;5;13;F;VEROVE;Gaëlle;15/11/1972;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;BOUTON;William;04/05/1969;Non +50;Manche;03;3ème circonscription;6;22;M;LAVALLEY;Stéphane;26/09/1976;DVC;Profession intermédiaire administrative de la fonction publique;Non;M;HAREL;Sébastien;28/11/1969;Non +50;Manche;03;3ème circonscription;7;24;F;RYST;Agnès;05/06/1962;ECO;Cadre administratif et commercial d'entreprise;Non;F;BRIERE HAQUET;Alice;10/02/1979;Non +50;Manche;03;3ème circonscription;8;21;F;CAILLAUX;Marie-Agnès;29/11/1958;DSV;Ancien employé;Non;M;BRICQ;Christophe;28/10/1960;Non +50;Manche;03;3ème circonscription;9;27;M;BINET;Jean-René;21/10/1971;LR;Professeur, profession scientifique;Non;F;MARTIN-MORVAN;Véronique;20/07/1966;Non +50;Manche;04;4ème circonscription;1;32;M;CALLUAUD;Nicolas;27/07/1989;UDI;Profession libérale;Non;M;HELIE;Lionel;12/06/1957;Non +50;Manche;04;4ème circonscription;2;8;M;DA CRUZ-LEGELEUX;Yann;20/03/1987;REC;Technicien;Non;F;SVARTMAN;Aurore;10/04/1981;Non +50;Manche;04;4ème circonscription;3;33;F;DAUGE;Marine;03/11/1984;DVD;Agriculteur sur petite exploitation;Non;M;ROSTAND;Benoît;02/01/1981;Non +50;Manche;04;4ème circonscription;4;31;M;BENRAMDANE;Abdelkader;09/01/1963;DXG;Ouvrier non qualifié de type industriel;Non;F;FOUQUES-GAUTIER;Salomé;28/10/2000;Non +50;Manche;04;4ème circonscription;5;19;F;PIC;Anna;04/06/1978;NUPES;Professeur, profession scientifique;Non;F;PLAINEAU;Nadège;12/08/1970;Non +50;Manche;04;4ème circonscription;6;18;M;FOUACE;Eric;17/04/1952;RN;Cadre de la fonction publique;Non;M;ADELINE;Nicolas;01/02/1976;Non +50;Manche;04;4ème circonscription;7;9;F;KRIMI;Sonia;20/12/1982;ENS;Ingénieur et cadre technique d'entreprise;Oui;M;DESQUESNES;Olivier;05/10/1970;Non +50;Manche;04;4ème circonscription;8;7;F;JEAN;Laure;05/01/1994;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;HUARD;Nathalie;07/08/1977;Non +50;Manche;04;4ème circonscription;9;28;F;MARGUERITTE;Camille;20/12/1981;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;JEAN;Antoine;25/09/1992;Non +51;Marne;01;1ère circonscription;1;24;M;MARÉCHAL;Olivier;22/03/1983;DIV;Ingénieur et cadre technique d'entreprise;Non;F;LAMBERT;Julie;16/05/1981;Non +51;Marne;01;1ère circonscription;2;15;M;BENADASSI;Florian;29/10/1992;REC;Contremaître, agent de maîtrise;Non;M;KESTEL;Josias;29/07/1996;Non +51;Marne;01;1ère circonscription;3;33;M;ALBERTINI;Xavier;28/01/1970;ENS;Profession libérale;Non;F;HANS;Stella;04/12/1964;Non +51;Marne;01;1ère circonscription;4;16;F;BOURGOIN;Evelyne;04/05/1961;NUPES;Profession libérale;Non;F;CHATELAIN-KHECHACHE;Lila;02/10/1970;Non +51;Marne;01;1ère circonscription;5;42;M;PARIS;Roger;03/05/1946;RN;Chef d'entreprise de 10 salariés ou plus;Non;F;GRIFFIN;Patricia;10/11/1970;Non +51;Marne;01;1ère circonscription;6;27;F;BRUNHOSO;Céline;02/05/1977;ECO;Professeur des écoles, instituteur et assimilé;Non;M;DANCOURT;Laurent;23/10/1959;Non +51;Marne;01;1ère circonscription;7;19;M;VARLET;Vincent;24/01/1978;DXG;Profession intermédiaire administrative de la fonction publique;Non;F;BUTTEZ;Marianne;26/01/1965;Non +51;Marne;01;1ère circonscription;8;38;M;DEJOIE;Corentin;29/11/2002;DSV;Employé civil et agent de service de la fonction publique;Non;M;BERGERON;Pierre;19/09/1996;Non +51;Marne;01;1ère circonscription;9;6;F;BEAUVAIS;Valérie;08/03/1963;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;LAUDY;Franck;13/10/1969;Non +51;Marne;02;2ème circonscription;1;26;F;KURIC;Aina;15/05/1987;DVC;Ancien artisan, commerçant, chef d'entreprise;Oui;M;JACQUET;Franck;27/03/1968;Non +51;Marne;02;2ème circonscription;2;36;F;MILLER;Laure;25/12/1983;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;SALMON;Philippe;03/05/1952;Non +51;Marne;02;2ème circonscription;3;5;M;PHILIPOT;Jean-Claude;06/05/1951;REC;Policier et militaire;Non;M;PÉRIN;Freddy;17/06/1985;Non +51;Marne;02;2ème circonscription;4;40;F;FRIGOUT;Anne-Sophie;11/04/1971;RN;Professeur, profession scientifique;Non;M;VANDAMME;Quentin;09/07/1995;Non +51;Marne;02;2ème circonscription;5;29;M;ROSE;Thomas;05/05/1968;DXG;Professeur, profession scientifique;Non;F;REHMET;Marlène;18/09/1984;Non +51;Marne;02;2ème circonscription;6;41;M;LAVENTURE;Werner;30/06/1987;DSV;Profession intermédiaire administrative de la fonction publique;Non;F;MEUNIER;Mélissa;02/02/1995;Non +51;Marne;02;2ème circonscription;7;35;F;SAYOUD;Nesma;22/05/1985;ECO;Profession intermédiaire de la santé et du travail social;Non;M;BAYART;Jean-Claude;03/03/1938;Non +51;Marne;02;2ème circonscription;8;45;M;LANG;Stéphane;12/04/1971;LR;Artisan;Non;M;PENNAFORTE;Timothé;05/06/1992;Non +51;Marne;02;2ème circonscription;9;31;F;MEGUENINE;Lynda;10/01/1976;NUPES;Cadre de la fonction publique;Non;M;GEORGES;Michel;10/04/1952;Non +51;Marne;03;3ème circonscription;1;28;M;JACQUET;Antoine;21/10/1972;LR;Commerçant et assimilé;Non;M;LAGARDE;Valentin;09/08/1996;Non +51;Marne;03;3ème circonscription;2;9;F;MARC;Jennifer;22/07/1985;RN;Agriculteur sur petite exploitation;Non;M;LAMBERT;Christophe;30/09/1970;Non +51;Marne;03;3ème circonscription;3;8;M;ADNOT;Thomas;03/03/1976;REC;Commerçant et assimilé;Non;M;PERRIN;Maxime;19/06/1982;Non +51;Marne;03;3ème circonscription;4;12;F;JABBOUR;Johanna;25/05/1987;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PFEMMERT;Gaëtan;14/04/1993;Non +51;Marne;03;3ème circonscription;5;20;F;CORMERAIS;Charlotte;31/12/1981;DXG;Professeur, profession scientifique;Non;F;DALBARET;Laurence;19/10/1964;Non +51;Marne;03;3ème circonscription;6;13;M;DEBARLE;Bertrand;24/01/1972;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;QUENTIN;Elodie;12/01/1974;Non +51;Marne;03;3ème circonscription;7;25;F;BERTHELEMY;Chantal;25/11/1964;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;LATTUADA;Cedric;28/08/1975;Non +51;Marne;03;3ème circonscription;8;34;F;D'ORGEVILLE;Sonia;28/07/1977;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;DA SILVA;Isabelle;01/01/1970;Non +51;Marne;03;3ème circonscription;9;18;M;GIRARDIN;Eric;12/02/1962;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;F;ROUILLERE;Sylvie;02/05/1964;Non +51;Marne;04;4ème circonscription;1;21;M;GOSSEAU;Laurent;22/12/1967;DXG;Ouvrier qualifié de type industriel;Non;F;GISCLOUX;Valérie;04/04/1966;Non +51;Marne;04;4ème circonscription;2;14;M;CRUZ;Rémy;17/03/1962;ECO;Ancienne profession intermédiaire;Non;M;SOMME;Christian;06/07/1970;Non +51;Marne;04;4ème circonscription;3;37;M;PICART;Pascal;12/09/1961;ECO;Employé civil et agent de service de la fonction publique;Non;F;LECLERCQ-CHAUDET;Colette;24/03/1942;Non +51;Marne;04;4ème circonscription;4;39;M;DEVAUX;Jean-Louis;30/09/1957;LR;Agriculteur sur grande exploitation;Non;F;PICOT;Marie-Thérèse;09/12/1962;Non +51;Marne;04;4ème circonscription;5;17;M;SMITH;Anthony;03/04/1975;NUPES;Cadre de la fonction publique;Non;F;GUYOT;Agnes;10/07/1968;Non +51;Marne;04;4ème circonscription;6;2;F;MAGNIER;Lise;31/12/1984;ENS;Cadre de la fonction publique;Oui;F;GUILLAUME;Emmanuelle;12/01/1978;Non +51;Marne;04;4ème circonscription;7;4;M;BESSON;Thierry;02/04/1958;RN;Ancien cadre;Non;M;CHAPRON;Alain;09/04/1965;Non +51;Marne;04;4ème circonscription;8;47;M;KUZMANOVIC;Georges;16/05/1973;DIV;Profession libérale;Non;F;HOFFMANN;Garance;20/10/2000;Non +51;Marne;04;4ème circonscription;9;32;F;THENANCE;Irma;20/03/1971;DSV;Employé civil et agent de service de la fonction publique;Non;M;CLEMENT;Nicolas;10/04/1984;Non +51;Marne;04;4ème circonscription;10;46;F;BRY;Emilie Laurence;11/07/2003;REC;Elève, étudiant;Non;M;LOIZILLON;Maxence;23/01/2003;Non +51;Marne;05;5ème circonscription;1;23;M;RENOUD;Emmanuel;04/08/1989;REC;Cadre de la fonction publique;Non;M;MERZEAUD;Paul-Henri;17/01/1994;Non +51;Marne;05;5ème circonscription;2;10;F;LE LURON;Karine;17/11/1972;NUPES;Profession libérale;Non;M;LAURENT;Maxence;24/03/1992;Non +51;Marne;05;5ème circonscription;3;11;M;THIONNET;Pierre;19/01/1994;RN;Profession intermédiaire administrative de la fonction publique;Non;M;GUÉRIN;Julien;17/12/1995;Non +51;Marne;05;5ème circonscription;4;43;F;MARTINS;Lucie;29/03/1988;ECO;Professeur des écoles, instituteur et assimilé;Non;F;HUAT;Catherine;06/02/1954;Non +51;Marne;05;5ème circonscription;5;3;M;DE COURSON;Charles;02/04/1952;DVD;Ancien cadre;Oui;M;MIRGODIN;Sebastien;24/11/1992;Non +51;Marne;05;5ème circonscription;6;30;F;DE LA ROCHÈRE;Marie-Amélie;02/06/1981;DSV;Cadre de la fonction publique;Non;F;ERMACORA;Florence;26/03/1978;Non +51;Marne;05;5ème circonscription;7;7;F;PESTRE;Isabelle;02/08/1962;ENS;Agriculteur sur moyenne exploitation;Non;M;CLAUDOTTE;Philippe;03/05/1975;Non +51;Marne;05;5ème circonscription;8;22;F;BASTIEN;Joelle;10/12/1954;DXG;Ancien ouvrier;Non;M;DICHANT;Jerome;11/11/1971;Non +51;Marne;05;5ème circonscription;9;44;M;BRUNEL;Camille;16/03/1986;ECO;Profession de l'information, des arts et des spectacles;Non;F;MEROUR;Valérie;08/08/1973;Non +52;Haute-Marne;01;1ère circonscription;1;15;F;ABBA;Bérangère;22/10/1976;ENS;Cadre de la fonction publique;Non;M;MARTINELLI;Stéphane;21/02/1972;Non +52;Haute-Marne;01;1ère circonscription;2;8;M;CAVIEZEL;Théo;28/01/1997;DIV;Profession libérale;Non;M;MARET;Valentin;04/05/1997;Non +52;Haute-Marne;01;1ère circonscription;3;14;M;ROSSIGNOL;Georges;17/11/1946;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;F;JAROSZ;Roseline;02/06/1955;Non +52;Haute-Marne;01;1ère circonscription;4;17;F;VENANCIO;Eloïse;04/06/1988;DVG;Profession intermédiaire de la santé et du travail social;Non;M;ANGERS;Jean-Paul;04/08/1960;Non +52;Haute-Marne;01;1ère circonscription;5;2;M;DEMAY;Sylvain;28/04/1978;DXG;Professeur des écoles, instituteur et assimilé;Non;F;BOURGEONNIER;Francine;20/05/1956;Non +52;Haute-Marne;01;1ère circonscription;6;10;F;DELONG;Sophie;17/07/1957;LR;Professeur, profession scientifique;Non;M;ROYER;Antoine;01/10/1998;Non +52;Haute-Marne;01;1ère circonscription;7;5;F;LECLERC;Michèle;28/07/1953;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;PICHON;Valentin;15/04/1995;Non +52;Haute-Marne;01;1ère circonscription;8;4;F;LEBLANC-GABRIEL;Jocelyne;16/04/1969;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;ZAMOURI;Bahi;26/07/1970;Non +52;Haute-Marne;01;1ère circonscription;9;3;F;DE DINECHIN;Bénédicte;05/09/1969;REC;Profession libérale;Non;F;PASCAL;Marthe-Marie;25/12/2002;Non +52;Haute-Marne;01;1ère circonscription;10;13;M;BENTZ;Christophe;04/07/1987;RN;Professeur, profession scientifique;Non;F;GRAY;Hélène;14/04/1980;Non +52;Haute-Marne;02;2ème circonscription;1;7;M;CORNUT-GENTILLE;François;22/05/1958;LR;Ancien cadre;Oui;M;MARASI;Etienne;27/02/1978;Non +52;Haute-Marne;02;2ème circonscription;2;12;F;DAVAL;Déborah;23/12/1983;ENS;Professeur, profession scientifique;Non;M;KARATAY;Muzaffer;16/01/1981;Non +52;Haute-Marne;02;2ème circonscription;3;19;M;NOVAC;Philippe;28/07/1953;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;NÉAULT-VAN SPEYBROECK;Azèle;15/11/1995;Non +52;Haute-Marne;02;2ème circonscription;4;16;F;LETTRÉE;Anne;30/01/1951;REC;Profession libérale;Non;M;MULLER;Patrick;19/05/1955;Non +52;Haute-Marne;02;2ème circonscription;5;9;F;VIOT;Ingrid;11/04/1983;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;GONZALEZ;Edouard;25/10/1991;Non +52;Haute-Marne;02;2ème circonscription;6;6;F;ROBERT-DEHAULT;Laurence;17/01/1964;RN;Profession libérale;Non;M;GAUTHIER;Eric;31/12/1960;Non +52;Haute-Marne;02;2ème circonscription;7;18;F;VALLÉE;Marie-Agnès;27/04/1959;DSV;Ancien cadre;Non;M;CONDI;Jean-Jacques;02/09/1959;Non +52;Haute-Marne;02;2ème circonscription;8;11;M;PRUM;Justin;21/03/1984;DXG;Professeur, profession scientifique;Non;F;HALIN;Anne;17/03/1978;Non +53;Mayenne;01;1ère circonscription;1;20;M;MAILLARD;Alexandre;07/02/1995;LR;Professeur des écoles, instituteur et assimilé;Non;F;ROUSSEAU;Nathalie;12/11/1975;Non +53;Mayenne;01;1ère circonscription;2;22;M;GAROT;Guillaume;29/05/1966;NUPES;Cadre de la fonction publique;Oui;F;FOUGERAY;Isabelle;26/05/1975;Non +53;Mayenne;01;1ère circonscription;3;19;M;RIVES;Siegfried;13/04/1980;DSV;Technicien;Non;F;IDOUX;Yvette;26/03/1953;Non +53;Mayenne;01;1ère circonscription;4;3;M;ROMIER;Fabrice;24/02/1972;DXG;Professeur des écoles, instituteur et assimilé;Non;F;GERMAIN;Nadine;17/02/1963;Non +53;Mayenne;01;1ère circonscription;5;24;M;SICOT;Cédric;31/01/1969;DSV;Profession de l'information, des arts et des spectacles;Non;M;GAUTIER;Pascal;03/06/1963;Non +53;Mayenne;01;1ère circonscription;6;21;F;MOTTIER;Béatrice;08/10/1969;ENS;Profession libérale;Non;M;BESSON;Rémy;20/04/1994;Non +53;Mayenne;01;1ère circonscription;7;6;F;ROCTON;Sandra;07/12/1979;RN;Profession intermédiaire de la santé et du travail social;Non;M;BENOIST;Bryan;31/12/1996;Non +53;Mayenne;01;1ère circonscription;8;2;M;SCHLIENGER;Hugues;15/10/1983;REC;Ingénieur et cadre technique d'entreprise;Non;F;LEFORT;Sophie;08/03/1957;Non +53;Mayenne;02;2ème circonscription;1;17;M;D'HERBAIS;Pierre;23/07/1987;REC;Cadre administratif et commercial d'entreprise;Non;M;BINET;Didier;08/10/1958;Non +53;Mayenne;02;2ème circonscription;2;18;M;LANGOUET;Christophe;28/08/1965;DVD;Cadre administratif et commercial d'entreprise;Non;F;DASSE;Marie Line;29/01/1959;Non +53;Mayenne;02;2ème circonscription;3;5;M;BOISSEAU;Grégory;15/10/1978;NUPES;Employé civil et agent de service de la fonction publique;Non;F;CHAUDRON;Camille;27/12/1989;Non +53;Mayenne;02;2ème circonscription;4;12;M;PLACE;Jean-Luc;19/04/1949;DXG;Ancienne profession intermédiaire;Non;F;LE MEUR;Chantal;25/10/1957;Non +53;Mayenne;02;2ème circonscription;5;15;M;BAYLE DE JESSE;Jean;10/06/1948;DSV;Ancien cadre;Non;M;CHIVERT;Eric;07/11/1968;Non +53;Mayenne;02;2ème circonscription;6;8;M;CADENAS;Jean-Michel;13/10/1953;RN;Cadre de la fonction publique;Non;F;AMIEL;Marie-Aude;02/02/1959;Non +53;Mayenne;02;2ème circonscription;7;7;F;BANNIER;Géraldine;22/11/1979;ENS;Professeur, profession scientifique;Oui;F;DEROUET;Josiane;04/04/1957;Non +53;Mayenne;02;2ème circonscription;8;25;F;DIRSON;Sophie;21/07/1985;LR;Profession intermédiaire de la santé et du travail social;Non;M;MARTEAU;Florian;15/03/1989;Non +53;Mayenne;03;3ème circonscription;1;16;F;DE GRANDMAISON;Amélie;13/01/1999;REC;Profession libérale;Non;M;LE MAREC;Yoann;10/05/1999;Non +53;Mayenne;03;3ème circonscription;2;10;F;DETAIS;Marion;31/05/1983;NUPES;Employé administratif d'entreprise;Non;M;HUBERT;Alban Paul Andre;03/09/1983;Non +53;Mayenne;03;3ème circonscription;3;11;F;BELL;Annie;14/12/1945;RN;Employé administratif d'entreprise;Non;M;BONNEAU;Ythier;31/03/1968;Non +53;Mayenne;03;3ème circonscription;4;23;F;GARNIER;Sonia;08/03/1974;ECO;Profession intermédiaire de la santé et du travail social;Non;F;GARNIER;Maryline;28/01/1972;Non +53;Mayenne;03;3ème circonscription;5;9;F;AMELIN;Martine;27/06/1956;DXG;Ancienne profession intermédiaire;Non;F;POPOWICI;Michelle;25/09/1950;Non +53;Mayenne;03;3ème circonscription;6;13;M;FAVENNEC;Yannick;12/08/1958;ENS;Ancien cadre;Oui;M;LESTAS;Bruno;27/06/1960;Non +53;Mayenne;03;3ème circonscription;7;14;F;CHARTIER;Claudine;26/03/1960;DSV;Ancien employé;Non;M;BULOT;Benoit;20/09/1983;Non +54;Meurthe-et-Moselle;01;1ère circonscription;1;34;M;HENNEQUIN;Laurent;28/12/1959;REC;Profession libérale;Non;F;MASSON;Isabelle;07/05/1960;Non +54;Meurthe-et-Moselle;01;1ère circonscription;2;32;F;GRANDJEAN;Carole;18/05/1983;ENS;Cadre administratif et commercial d'entreprise;Oui;M;GUILLEMARD;Philippe;28/04/1975;Non +54;Meurthe-et-Moselle;01;1ère circonscription;3;52;F;BRIN;Claudine;15/01/1962;LR;Cadre de la fonction publique;Non;M;CHAUFER;Philippe;15/12/1969;Non +54;Meurthe-et-Moselle;01;1ère circonscription;4;58;F;LOMBARDIA;Lila;03/12/2001;DIV;Elève, étudiant;Non;M;BIETRY;Samuel;28/07/1987;Non +54;Meurthe-et-Moselle;01;1ère circonscription;5;47;M;L'HUILLIER;Pascal;03/05/1950;DSV;Ancien cadre;Non;F;LECLERC;Tyna;13/09/2002;Non +54;Meurthe-et-Moselle;01;1ère circonscription;6;4;F;NIMSGERN;Christiane;02/08/1955;DXG;Ancien employé;Non;M;MAHMOUDI;Mohamed;10/08/1967;Non +54;Meurthe-et-Moselle;01;1ère circonscription;7;35;M;POTIER;Frank-Olivier;01/08/1974;DVD;Profession intermédiaire administrative de la fonction publique;Non;F;CARRARO;Chantal;13/02/1957;Non +54;Meurthe-et-Moselle;01;1ère circonscription;8;63;M;TOLLÉNAÈRE;Eric;28/11/1956;DVG;Professeur, profession scientifique;Non;F;LAÏBI;Mombolassi;02/10/1998;Non +54;Meurthe-et-Moselle;01;1ère circonscription;9;55;F;NORTON;Sophie;12/03/1950;ECO;Profession de l'information, des arts et des spectacles;Non;M;LABAT;Joe;20/10/1954;Non +54;Meurthe-et-Moselle;01;1ère circonscription;10;66;M;BUCHY;Armand;04/08/1972;ECO;Employé administratif d'entreprise;Non;F;MARTINERIE;Marie;30/03/1980;Non +54;Meurthe-et-Moselle;01;1ère circonscription;11;25;M;JOUIRA;Nordine;09/07/1981;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;VIDAL;Lucile;23/06/1994;Non +54;Meurthe-et-Moselle;01;1ère circonscription;12;18;F;MELET;Patricia;15/09/1968;RN;Profession intermédiaire administrative de la fonction publique;Non;M;CURTI;Gwendal;02/04/1997;Non +54;Meurthe-et-Moselle;02;2ème circonscription;1;15;M;MAILLOT;Olivier;27/06/1956;RN;Ancien artisan, commerçant, chef d'entreprise;Non;F;MARTIN;Corinne;17/05/1966;Non +54;Meurthe-et-Moselle;02;2ème circonscription;2;5;M;LACREUSE;Jacques;05/01/1952;DXG;Ancienne profession intermédiaire;Non;M;PELLERIN;Alain;29/12/1948;Non +54;Meurthe-et-Moselle;02;2ème circonscription;3;40;M;LACRESSE;Emmanuel;14/07/1971;ENS;Cadre de la fonction publique;Non;F;SADOUNE;Sonia;25/05/1972;Non +54;Meurthe-et-Moselle;02;2ème circonscription;4;54;F;AJDIR;Nora;02/12/1979;DIV;Commerçant et assimilé;Non;M;AJDIR;Mohamed;31/12/1975;Non +54;Meurthe-et-Moselle;02;2ème circonscription;5;44;M;PEZZETTA;Patrick;18/08/1959;ECO;Cadre de la fonction publique;Non;F;LABARRE;Gillot Aurelie;16/05/1985;Non +54;Meurthe-et-Moselle;02;2ème circonscription;6;39;M;HABLOT;Stéphane;30/06/1965;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;AL KATTANI;Marie;08/08/1986;Non +54;Meurthe-et-Moselle;02;2ème circonscription;7;10;M;DAMAMME;Eric;17/12/1983;DVD;Cadre de la fonction publique;Non;F;VICENTE;Ana;01/07/1993;Non +54;Meurthe-et-Moselle;02;2ème circonscription;8;19;M;BOUSSUGE;Anselme;16/06/2000;REC;Elève, étudiant;Non;F;DE SAULIEU;Camille;12/05/1999;Non +54;Meurthe-et-Moselle;02;2ème circonscription;9;56;M;FLAUS;Florian;07/07/1999;ECO;Employé administratif d'entreprise;Non;M;FLAUS;Kévin;14/08/1996;Non +54;Meurthe-et-Moselle;02;2ème circonscription;10;68;M;MANFREDI;Vincent;28/04/1986;UDI;Profession de l'information, des arts et des spectacles;Non;F;DELUCE;Marie-Claude;05/08/1950;Non +54;Meurthe-et-Moselle;03;3ème circonscription;1;61;M;BEAUDOUIN;Xavier;06/11/1972;REG;Ingénieur et cadre technique d'entreprise;Non;M;RODRIGUES;Flavien;08/01/1992;Non +54;Meurthe-et-Moselle;03;3ème circonscription;2;22;M;BOURY;Xavier;26/06/1953;DXG;Chauffeur;Non;F;HEILLIETTE;Yolande;11/11/1956;Non +54;Meurthe-et-Moselle;03;3ème circonscription;3;27;M;ROSSKOPF;Nicolas;18/11/1971;REC;Professeur, profession scientifique;Non;F;CHAPELAIN;Mathilde;01/02/2002;Non +54;Meurthe-et-Moselle;03;3ème circonscription;4;26;M;SERVAGI;Mathieu;18/06/1986;LR;Profession libérale;Non;F;THISSE;Julie;03/07/1986;Non +54;Meurthe-et-Moselle;03;3ème circonscription;5;50;M;HERBAYS;Francis;06/05/1963;DVG;Cadre administratif et commercial d'entreprise;Non;F;PIERRAT;Christine;28/07/1971;Non +54;Meurthe-et-Moselle;03;3ème circonscription;6;57;F;ETIENNE;Martine;22/06/1956;NUPES;Ancien employé;Non;M;ZOLFO;Patrice;13/06/1961;Non +54;Meurthe-et-Moselle;03;3ème circonscription;7;7;F;KRAL;Françoise;12/09/1961;DXG;Profession intermédiaire de la santé et du travail social;Non;F;CICOLARI;Laetitia;06/02/1991;Non +54;Meurthe-et-Moselle;03;3ème circonscription;8;17;F;REINERT;Eurydice;14/11/1969;DIV;Professeur des écoles, instituteur et assimilé;Non;M;FENNICHE;Hugo;16/11/2003;Non +54;Meurthe-et-Moselle;03;3ème circonscription;9;13;F;DI REZZE;Muriel;20/04/1976;RN;Artisan;Non;M;HALFTERMEYER;Rémy;20/06/1995;Non +54;Meurthe-et-Moselle;03;3ème circonscription;10;21;F;FOLTZ;Véronique;19/12/1963;ECO;Professeur, profession scientifique;Non;F;COLOMBO;Marie;04/04/1997;Non +54;Meurthe-et-Moselle;03;3ème circonscription;11;14;M;GERMINI;Matteo;13/11/2003;DIV;Elève, étudiant;Non;M;BRUSCO;Mathis;04/04/2004;Non +54;Meurthe-et-Moselle;03;3ème circonscription;12;9;M;PALUSZKIEWICZ;Xavier;13/12/1972;ENS;Ancien cadre;Oui;F;DE MICHELI;Sylvie;01/09/1963;Non +54;Meurthe-et-Moselle;03;3ème circonscription;13;67;M;GRASSE;Frédéric;22/03/1962;DIV;Professeur des écoles, instituteur et assimilé;Non;F;JACQUOT;Anne-Marie;18/03/1976;Non +54;Meurthe-et-Moselle;04;4ème circonscription;1;37;F;GEORGES;Lucy;09/12/1968;REC;Professeur, profession scientifique;Non;M;AUBERTIN;Francis;23/03/1961;Non +54;Meurthe-et-Moselle;04;4ème circonscription;2;41;F;BERTOZZI BIEVELOT;Barbara;23/08/1971;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;HOUCHARD;Marie-Neige;08/12/1955;Non +54;Meurthe-et-Moselle;04;4ème circonscription;3;59;M;BOUGUERRA;Monir;11/12/1986;DIV;Chauffeur;Non;F;HARDI;Safa;16/06/1990;Non +54;Meurthe-et-Moselle;04;4ème circonscription;4;65;M;THIRIET;Rémi;04/05/1992;DVG;Employé civil et agent de service de la fonction publique;Non;M;POIRSON;Christian;23/10/1952;Non +54;Meurthe-et-Moselle;04;4ème circonscription;5;20;F;BILDE;Dominique;01/08/1953;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;FOURCHET;Robin;30/12/2003;Non +54;Meurthe-et-Moselle;04;4ème circonscription;6;43;F;MAILLOT;Corinne;23/06/1967;ECO;Cadre de la fonction publique;Non;F;GOUSSOT;Sophie;23/12/1971;Non +54;Meurthe-et-Moselle;04;4ème circonscription;7;7;M;BAZIN;Thibault;27/10/1984;LR;Ancien cadre;Oui;F;PAYEUR;Valérie;18/12/1970;Non +54;Meurthe-et-Moselle;04;4ème circonscription;8;30;F;THOMAS;Rachel;29/11/1967;ENS;Agriculteur sur petite exploitation;Non;M;KOESSLER;Laurent;04/05/1979;Non +54;Meurthe-et-Moselle;04;4ème circonscription;9;3;F;HEILLIETTE;Geneviève;01/12/1959;DXG;Ancien employé;Non;M;PIERRE;Sébastien;30/07/1972;Non +54;Meurthe-et-Moselle;04;4ème circonscription;10;64;M;RAVAILLER;Bertrand;25/12/1969;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;VANONI;Jason;29/07/1988;Non +54;Meurthe-et-Moselle;04;4ème circonscription;11;28;M;BIHAKI;Gregory;16/01/1981;DXG;Professeur, profession scientifique;Non;F;LECOMTE;Clémence;25/02/1983;Non +54;Meurthe-et-Moselle;05;5ème circonscription;1;16;M;MORENVILLIER;Philippe;06/12/1965;RN;Commerçant et assimilé;Non;F;MOREL;Stessy;25/11/1998;Non +54;Meurthe-et-Moselle;05;5ème circonscription;2;49;F;BRET;Marika;27/12/1962;ENS;Cadre administratif et commercial d'entreprise;Non;M;BONNIN;Pierre;09/03/1960;Non +54;Meurthe-et-Moselle;05;5ème circonscription;3;33;F;RICARD;Julie;14/12/1996;REC;Professeur des écoles, instituteur et assimilé;Non;M;BRETON;Gaëtan;14/05/1999;Non +54;Meurthe-et-Moselle;05;5ème circonscription;4;2;F;AUBERT;Miriam;04/03/1960;DXG;Ancien employé;Non;M;NEIS;Gérard;10/07/1956;Non +54;Meurthe-et-Moselle;05;5ème circonscription;5;48;F;PAINE;Corinne;13/10/1964;DSV;Professeur des écoles, instituteur et assimilé;Non;M;LAGIER;Clément;27/01/1989;Non +54;Meurthe-et-Moselle;05;5ème circonscription;6;38;M;POTIER;Dominique;17/03/1964;NUPES;Agriculteur sur moyenne exploitation;Oui;F;BARDOT;Audrey;28/05/1977;Non +54;Meurthe-et-Moselle;05;5ème circonscription;7;60;M;FRANÇOIS;Yannick;16/08/1983;LR;Profession libérale;Non;F;LUTZ;Marie-Angelique;17/08/1966;Non +54;Meurthe-et-Moselle;05;5ème circonscription;8;45;F;FAYAD;Sophia;16/10/1985;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;ASSANI;Nizari;18/05/1961;Non +54;Meurthe-et-Moselle;05;5ème circonscription;9;8;F;SCHILDER;Elisabeth;08/02/1966;ECO;Employé administratif d'entreprise;Non;M;SCHILDER;Xavier;08/06/1974;Non +54;Meurthe-et-Moselle;06;6ème circonscription;1;6;M;BARBIN;Dominique;17/03/1952;DXG;Ancien employé;Non;M;AUBERT;Lucien;01/05/1954;Non +54;Meurthe-et-Moselle;06;6ème circonscription;2;53;M;RICHERMOZ;Eric;26/09/1992;DSV;Cadre administratif et commercial d'entreprise;Non;M;CARBALLO;Romain;13/09/1993;Non +54;Meurthe-et-Moselle;06;6ème circonscription;3;42;M;TOPARSLAN;Ergün;11/03/1988;ENS;Ingénieur et cadre technique d'entreprise;Non;F;BELLUSSI;Brigitte;17/03/1961;Non +54;Meurthe-et-Moselle;06;6ème circonscription;4;11;M;BOULOGNE;Anthony;08/06/1993;RN;Cadre administratif et commercial d'entreprise;Non;F;RIBAU;Angelina;11/09/1974;Non +54;Meurthe-et-Moselle;06;6ème circonscription;5;36;F;AMANN;Jeanne;13/10/1956;REC;Ancien cadre;Non;M;DUBY;Sullyvan;30/10/2001;Non +54;Meurthe-et-Moselle;06;6ème circonscription;6;29;M;GEHBAUER;Xavier;26/01/1977;DXG;Employé civil et agent de service de la fonction publique;Non;F;BARBAUX;Orianne;21/12/2000;Non +54;Meurthe-et-Moselle;06;6ème circonscription;7;62;M;HEDIN;Olivier;29/01/1970;DVC;Ingénieur et cadre technique d'entreprise;Non;F;ZAVETTIERI;Laora;22/07/2002;Non +54;Meurthe-et-Moselle;06;6ème circonscription;8;24;M;COUPAYE;Xavier;02/03/1983;ECO;Technicien;Non;F;COUPAYE;Laëtitia;08/07/1984;Non +54;Meurthe-et-Moselle;06;6ème circonscription;9;23;F;FIAT;Caroline;28/01/1977;NUPES;Profession intermédiaire de la santé et du travail social;Oui;M;HÉZARD;Julien;10/06/1982;Non +54;Meurthe-et-Moselle;06;6ème circonscription;10;12;M;RICHIER;Jonathan;17/05/1990;LR;Cadre administratif et commercial d'entreprise;Non;F;JOURDAN-CONGE;Nathalie;07/01/1968;Non +55;Meuse;01;1ère circonscription;1;20;M;PANCHER;Bertrand;05/06/1958;DVD;Chef d'entreprise de 10 salariés ou plus;Oui;F;HUEBER GODEY;Fabienne;03/01/1981;Non +55;Meuse;01;1ère circonscription;2;11;F;RAFFNER KIEFER;Sandrine;25/10/1972;ENS;Employé civil et agent de service de la fonction publique;Non;M;REYRE;Benoit;07/09/1951;Non +55;Meuse;01;1ère circonscription;3;23;M;GUCKERT;Olivier;16/03/1967;NUPES;Cadre de la fonction publique;Non;F;PIASTA;Flavie;28/09/1985;Non +55;Meuse;01;1ère circonscription;4;18;M;CAILLE;Bruno;26/07/1970;REG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;WEBER;Aymerick;13/03/1992;Non +55;Meuse;01;1ère circonscription;5;22;F;BENSAID;Melika;28/01/1949;REG;Ancien employé;Non;M;ABOU HAMDAN;Hani;04/01/1977;Non +55;Meuse;01;1ère circonscription;6;17;F;MARIAGE;Sylvie;04/12/1947;DSV;Ancien cadre;Non;M;VOLKER;Patrick;08/09/1954;Non +55;Meuse;01;1ère circonscription;7;8;M;CHAPON;Arnaud;07/10/1968;REC;Employé civil et agent de service de la fonction publique;Non;F;DAVID;Isabelle;14/06/1969;Non +55;Meuse;01;1ère circonscription;8;9;F;GAUDINEAU;Brigitte;16/07/1958;RN;Profession libérale;Non;M;MAILFAIT;Marc;27/02/1963;Non +55;Meuse;01;1ère circonscription;9;5;F;THIÉBAUT-LAMY;Nathalie;08/02/1972;ECO;Cadre de la fonction publique;Non;F;REMY-THIÉBAUT;Elisabeth;13/05/1994;Non +55;Meuse;01;1ère circonscription;10;7;M;TYMEN;Blaise;15/11/1987;DXG;Professeur, profession scientifique;Non;M;AUSSEL;Denis;03/06/1964;Non +55;Meuse;02;2ème circonscription;1;3;M;MENNESON;Michel;22/04/1959;REC;Cadre administratif et commercial d'entreprise;Non;M;ASSELBORN;Jean-Claude;25/03/1947;Non +55;Meuse;02;2ème circonscription;2;13;M;GALLIC;Martin;24/09/1991;DVC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;ROGIE;Marion;15/11/1990;Non +55;Meuse;02;2ème circonscription;3;19;M;LAFLOTTE;Johan;11/05/1989;NUPES;Cadre de la fonction publique;Non;F;COLLINET-JUNG;Catherine;10/05/1975;Non +55;Meuse;02;2ème circonscription;4;25;M;DURET;Jean-Luc;19/11/1962;DVC;Profession libérale;Non;F;COLADO;Elisabeth;27/09/1948;Non +55;Meuse;02;2ème circonscription;5;10;F;GOULET;Florence;30/06/1961;RN;Cadre de la fonction publique;Non;F;GEORGE;Carine;16/08/1976;Non +55;Meuse;02;2ème circonscription;6;14;M;HAROS;Pascal;29/01/1975;DVG;Cadre de la fonction publique;Non;M;CAPUT;Christophe;02/09/1972;Non +55;Meuse;02;2ème circonscription;7;12;M;ADDENET;Jean-Marie;31/12/1954;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;MARQUET;Théophile;04/02/2002;Non +55;Meuse;02;2ème circonscription;8;4;M;BEDEL;Nicolas;25/01/1991;DSV;Employé de commerce;Non;F;MAHEY;Florie;03/03/1988;Non +55;Meuse;02;2ème circonscription;9;6;M;NORDEMANN;Pierre;22/01/1982;DXG;Ingénieur et cadre technique d'entreprise;Non;F;LAB;Amandine;14/12/1981;Non +55;Meuse;02;2ème circonscription;10;24;F;BOIS;Anne;05/01/1984;ENS;Cadre administratif et commercial d'entreprise;Non;M;MAGISSON;Robin;25/07/1997;Non +55;Meuse;02;2ème circonscription;11;21;M;DHYVERT;Yves;15/06/1952;ECO;Profession libérale;Non;F;LEMAIRE;Aline;24/04/1987;Non +55;Meuse;02;2ème circonscription;12;15;M;TESTI;Michel;26/08/1952;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;ROBERT;Margot-Sarah;14/01/2000;Non +56;Morbihan;01;1ère circonscription;1;25;F;LE HÉNANFF;Anne;22/07/1969;ENS;Commerçant et assimilé;Non;M;CRIAUD;Michel;03/08/1962;Non +56;Morbihan;01;1ère circonscription;2;66;F;RAMEL;Françoise;09/03/1964;REG;Ancienne profession intermédiaire;Non;M;LE FLOCH;Tristan;02/05/1957;Non +56;Morbihan;01;1ère circonscription;3;14;F;CROCI;Magali;29/09/1969;ECO;Employé de commerce;Non;M;ETIENNE;Gwenael;28/06/1963;Non +56;Morbihan;01;1ère circonscription;4;27;F;LE BARZ;Lydia Veronique Caroline;06/05/1979;RN;Ouvrier non qualifié de type artisanal;Non;M;LAMBERT;Laurent;04/01/1975;Non +56;Morbihan;01;1ère circonscription;5;3;M;PESCHANSKI;Marc;07/01/1952;DXG;Professeur, profession scientifique;Non;M;WISSOCQ;Stéphane;05/04/1972;Non +56;Morbihan;01;1ère circonscription;6;40;M;CHEVREL;Franck;01/10/1967;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;NAVARRE;Michèle;09/01/1966;Non +56;Morbihan;01;1ère circonscription;7;62;M;FOUCAULT;Luc;17/05/1960;NUPES;Cadre de la fonction publique;Non;F;BERTHIER;Sandrine;11/02/1978;Non +56;Morbihan;01;1ère circonscription;8;41;M;ROBEL;Paul;26/08/1954;DXG;Profession intermédiaire de la santé et du travail social;Non;F;ELAIN;Françoise;02/05/1970;Non +56;Morbihan;01;1ère circonscription;9;49;M;LE BARAILLEC;Yann;25/04/1980;DVG;Profession de l'information, des arts et des spectacles;Non;M;DELHOMME;Paul;25/04/1995;Non +56;Morbihan;01;1ère circonscription;10;2;M;PAGE;Jean-Jacques;06/09/1960;REG;Cadre de la fonction publique;Non;F;LE PRIELLEC;Carole;13/07/1971;Non +56;Morbihan;01;1ère circonscription;11;26;M;ARS;François;04/03/1966;LR;Professeur, profession scientifique;Non;F;LE NEVE;Marie-Thérèse;17/07/1958;Non +56;Morbihan;01;1ère circonscription;12;24;M;CABAS;David;02/02/1980;DSV;Employé civil et agent de service de la fonction publique;Non;M;ROBIC;Lucas;10/04/2001;Non +56;Morbihan;01;1ère circonscription;13;13;M;DELÉON;Bertrand;22/03/1974;DXG;Professeur des écoles, instituteur et assimilé;Non;F;THEFAINE;Yolaine;09/09/1978;Non +56;Morbihan;01;1ère circonscription;14;69;M;MOUSSET;François;08/08/1977;DVD;Commerçant et assimilé;Non;F;LIGONNIERE;Séverine;17/07/1975;Non +56;Morbihan;02;2ème circonscription;1;63;M;LUNEAU;Pierre-Léon;17/01/1984;DVC;Profession libérale;Non;F;BORDENAVE;Marion;06/05/1981;Non +56;Morbihan;02;2ème circonscription;2;15;M;VALLEIN;Franck Jean Marie;12/07/1966;DVD;Contremaître, agent de maîtrise;Non;F;QUENECH'DU;Isabelle;05/09/1963;Non +56;Morbihan;02;2ème circonscription;3;64;M;VELLUTINI;Alexandre;29/05/1989;DSV;Technicien;Non;F;BASAILLE;Karine;20/02/1971;Non +56;Morbihan;02;2ème circonscription;4;70;F;LE BIHAN;Rachel;07/04/1986;DIV;Ingénieur et cadre technique d'entreprise;Non;M;MORNET;Adrien;19/06/1989;Non +56;Morbihan;02;2ème circonscription;5;57;M;KIRCHNER;Karol;17/12/1966;NUPES;Artisan;Non;F;BALECH;Margot;05/08/1979;Non +56;Morbihan;02;2ème circonscription;6;30;M;MALARDÉ;Alain;15/01/1949;REG;Profession libérale;Non;F;LE MOING;Beatrice;29/11/1964;Non +56;Morbihan;02;2ème circonscription;7;52;F;KAPPELER;Florence;02/03/1988;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BRUNEBARBE;Gilles;24/06/1952;Non +56;Morbihan;02;2ème circonscription;8;4;M;CHEÈRE;Yves;25/07/1956;DXG;Ancien ouvrier;Non;F;GUIRAUD;Sylvie;09/03/1977;Non +56;Morbihan;02;2ème circonscription;9;29;F;BRIÈRE;Corinne;30/09/1970;ECO;Employé civil et agent de service de la fonction publique;Non;M;CRÉZÉ;David;24/07/1970;Non +56;Morbihan;02;2ème circonscription;10;51;M;CORDAILLAT-DALLARA;Jean-Christophe;09/09/1987;REG;Profession intermédiaire administrative de la fonction publique;Non;F;DESURY;Nicole;08/04/1955;Non +56;Morbihan;02;2ème circonscription;11;28;M;MARTIN;Joseph;24/04/1954;RN;Commerçant et assimilé;Non;M;GOUMOT;Jacques;06/08/1951;Non +56;Morbihan;02;2ème circonscription;12;42;M;PAHUN;Jimmy;15/05/1962;ENS;Profession de l'information, des arts et des spectacles;Oui;F;DURIEZ;Christine;22/10/1962;Non +56;Morbihan;02;2ème circonscription;13;50;F;LEMOULINIER;Sophie;14/04/1971;LR;Employé administratif d'entreprise;Non;M;LE GOFF;Guy;27/06/1949;Non +56;Morbihan;03;3ème circonscription;1;32;F;COUDÉ;Charlène;30/08/1991;ECO;Commerçant et assimilé;Non;M;SOUELA;Teddy;20/04/1986;Non +56;Morbihan;03;3ème circonscription;2;17;F;DORE-LUCAS;Marie Madeleine;07/11/1959;NUPES;Profession libérale;Non;M;DENOUAL;Didier;23/06/1968;Non +56;Morbihan;03;3ème circonscription;3;5;F;LEPERT;Julie;29/04/1990;DXG;Profession intermédiaire de la santé et du travail social;Non;M;LE BAIL;Cyril;13/03/1953;Non +56;Morbihan;03;3ème circonscription;4;58;M;QUÉRO;Benoît;07/09/1976;LR;Profession libérale;Non;F;LE GOFF-CARNEC;Nadine;09/05/1964;Non +56;Morbihan;03;3ème circonscription;5;53;M;LOPEZ;Yoann;10/01/1985;DIV;Commerçant et assimilé;Non;F;MARION;Mélanie;18/06/1994;Non +56;Morbihan;03;3ème circonscription;6;19;M;LE GALL;Régis;30/05/1983;REC;Professeur, profession scientifique;Non;F;REBOUL;Annick;15/06/1970;Non +56;Morbihan;03;3ème circonscription;7;18;F;CUCINIELLO;Julie;22/01/1997;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CAMBOT;Florence;25/08/1970;Non +56;Morbihan;03;3ème circonscription;8;67;M;LUGUÉ;Pierre-Alexandre;18/04/1994;REG;Professeur, profession scientifique;Non;M;LE QUÉRÉ;Hervé;28/09/1956;Non +56;Morbihan;03;3ème circonscription;9;43;F;MASSARD;Lydie;24/08/1978;REG;Employé civil et agent de service de la fonction publique;Non;M;MERCIER;Loïck;20/05/1991;Non +56;Morbihan;03;3ème circonscription;10;31;F;GOHIN;Alice;27/02/1994;RN;Elève, étudiant;Non;M;CHARPENTIER;Odin;05/06/2003;Non +56;Morbihan;03;3ème circonscription;11;6;M;EPAILLARD;Lionel Guy Marie;02/12/1954;ECO;Profession libérale;Non;F;LETORT;Virginie;31/01/1980;Non +56;Morbihan;03;3ème circonscription;12;16;F;LE PEIH;Nicole;28/09/1959;ENS;Agriculteur sur moyenne exploitation;Oui;M;MOUHAOU;François-Denis;15/05/1958;Non +56;Morbihan;04;4ème circonscription;1;34;F;LE FLECHER;Lhea;17/10/2001;NUPES;Elève, étudiant;Non;M;MARTEAU;Florian;20/05/1980;Non +56;Morbihan;04;4ème circonscription;2;59;M;MAMAR;Khaled;06/06/1983;ECO;Commerçant et assimilé;Non;M;CHAUDET;Roger;10/03/1976;Non +56;Morbihan;04;4ème circonscription;3;8;F;DECUYPERE;Isabelle;01/11/1970;DSV;Profession libérale;Non;M;VINCENT;Jérome;12/12/1983;Non +56;Morbihan;04;4ème circonscription;4;9;M;MOLAC;Paul;21/05/1962;REG;Professeur, profession scientifique;Oui;F;LE VIAVANT;Régine;16/09/1962;Non +56;Morbihan;04;4ème circonscription;5;68;F;TONYE;Louise;09/09/1957;ECO;Cadre de la fonction publique;Non;M;GILLES;Patrick;04/08/1944;Non +56;Morbihan;04;4ème circonscription;6;71;F;LAIGRE;Béatrice;22/04/1956;REG;Ingénieur et cadre technique d'entreprise;Non;M;YHUEL;Pierrick;13/08/1950;Non +56;Morbihan;04;4ème circonscription;7;20;F;MARIN;Béatrice;31/05/1961;ECO;Professeur, profession scientifique;Non;F;GUEGAN;Virginie;07/02/1977;Non +56;Morbihan;04;4ème circonscription;8;21;F;REGNIER;Sophie;25/08/1973;REC;Professeur, profession scientifique;Non;M;HUET;Bernard;05/12/1954;Non +56;Morbihan;04;4ème circonscription;9;45;F;GUEGAN;Rozenn;16/04/1975;ENS;Profession intermédiaire administrative de la fonction publique;Non;F;GOURIOU;Françoise;19/05/1971;Non +56;Morbihan;04;4ème circonscription;10;46;M;CLODIC;Jean-Marc;29/08/1965;DVG;Chauffeur;Non;F;DELAUNAY;Nadine;30/10/1971;Non +56;Morbihan;04;4ème circonscription;11;33;M;DE KERSAUSON;Florent;05/12/1949;RN;Ancien employé;Non;M;FLEURY;Stephane;20/03/1971;Non +56;Morbihan;04;4ème circonscription;12;7;M;CRUNIL;Patrice;14/12/1953;DXG;Ancien ouvrier;Non;F;VELLY;Françoise;28/03/1956;Non +56;Morbihan;04;4ème circonscription;13;44;F;LOURO;Maria;10/03/1971;UDI;Employé administratif d'entreprise;Non;M;FERREIRA;Marc;18/07/1996;Non +56;Morbihan;05;5ème circonscription;1;10;F;PIERRON;Blandine;28/02/1967;DXG;Ouvrier non qualifié de type industriel;Non;M;PIRO;Mathieu;21/03/1972;Non +56;Morbihan;05;5ème circonscription;2;65;M;LOAS;Ronan;15/04/1982;DVD;Cadre administratif et commercial d'entreprise;Non;F;CHRISTIEN;Morgane;17/11/1976;Non +56;Morbihan;05;5ème circonscription;3;72;M;QUESTIAUX;Jean-Louis;13/09/1954;REG;Ancienne profession intermédiaire;Non;M;LE FERRAN;Michel;13/04/1956;Non +56;Morbihan;05;5ème circonscription;4;22;F;PAOLI;Ghislaine;05/08/1961;ECO;Profession libérale;Non;F;SANDOZ;Nathalie;15/07/1966;Non +56;Morbihan;05;5ème circonscription;5;60;M;MEGEL;David;18/06/1976;RN;Employé administratif d'entreprise;Non;F;LE NY;Séverine;09/04/1976;Non +56;Morbihan;05;5ème circonscription;6;35;M;GIRARD;Damien;30/05/1973;NUPES;Cadre administratif et commercial d'entreprise;Non;F;GOURLAY;Florence;18/07/1970;Non +56;Morbihan;05;5ème circonscription;7;55;F;MÉTAYER;Lysiane;07/08/1963;ENS;Cadre de la fonction publique;Non;M;CAUBEL;Antoine;04/03/1969;Non +56;Morbihan;05;5ème circonscription;8;36;M;PERRIN;Thibault;06/03/1984;REC;Cadre de la fonction publique;Non;M;BARBAT;Emeric;19/06/1984;Non +56;Morbihan;05;5ème circonscription;9;54;M;BRIAND;Gael;09/05/1984;REG;Profession de l'information, des arts et des spectacles;Non;F;RIOU;Patricia;23/07/1964;Non +56;Morbihan;06;6ème circonscription;1;37;F;ROSCONVAL;Christelle;18/09/1968;REG;Ouvrier qualifié de type industriel;Non;M;ANTOINE;Deniel;25/01/1956;Non +56;Morbihan;06;6ème circonscription;2;75;M;KIEFER;Guillaume;31/12/1982;LR;Cadre administratif et commercial d'entreprise;Non;F;TATIBOUET;Laura;13/05/1989;Non +56;Morbihan;06;6ème circonscription;3;48;F;BERNARD;Anne;05/01/1980;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;CHICHERY;Yvan;08/05/1965;Non +56;Morbihan;06;6ème circonscription;4;61;M;BAUDRY;Jean-Michel;08/07/1964;NUPES;Technicien;Non;F;HERVAULT;Claudette;14/05/1956;Non +56;Morbihan;06;6ème circonscription;5;11;F;LAGREE;Kelig;14/10/1972;DXG;Professeur, profession scientifique;Non;M;ROUSSEAU;Sylvain;06/03/1980;Non +56;Morbihan;06;6ème circonscription;6;74;M;HUGUET;Olivier;15/09/1967;DVD;Cadre administratif et commercial d'entreprise;Non;F;GOURVES;Sylvie;05/01/1962;Non +56;Morbihan;06;6ème circonscription;7;73;F;PARRAT;Matilda;03/09/2001;ECO;Elève, étudiant;Non;F;GORSKY;Catherine;09/09/1960;Non +56;Morbihan;06;6ème circonscription;8;47;F;NAÏT-KACI;Kahina;19/08/1974;UDI;Profession intermédiaire administrative et commerciale des entreprises;Non;F;BELLIERE;Emmanuelle;20/05/1968;Non +56;Morbihan;06;6ème circonscription;9;23;M;CHARLERY;Valère;18/05/1954;DSV;Ancien cadre;Non;M;HILLION;Jean-Marc;22/09/1986;Non +56;Morbihan;06;6ème circonscription;10;38;F;SIRET;Tiphaine;24/02/1998;REG;Profession de l'information, des arts et des spectacles;Non;M;AUFFRET;Gilles;09/09/1955;Non +56;Morbihan;06;6ème circonscription;11;12;M;JACQUES;Jean-Michel;29/02/1968;ENS;Profession libérale;Oui;F;SOUFFOY;Nadia;23/02/1990;Non +56;Morbihan;06;6ème circonscription;12;39;F;LE GOFF;Aurélie;12/10/1985;RN;Profession libérale;Non;M;ROBIC;Joris;10/04/1973;Non +57;Moselle;01;1ère circonscription;1;61;M;BOUHENNA;Abderrahemane;21/05/1961;DVG;Artisan;Non;M;MATTEUCCI;Jeremy;18/05/1986;Non +57;Moselle;01;1ère circonscription;2;9;F;KUNTZ;Malou;23/02/1961;LR;Employé administratif d'entreprise;Non;M;MALASSÉ;Henri;13/09/1989;Non +57;Moselle;01;1ère circonscription;3;85;M;KADRI;Camal;08/05/1966;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;BAILLY;Rachel;10/04/1965;Non +57;Moselle;01;1ère circonscription;4;65;F;FRICHETEAU;Jessy;10/09/1990;DVG;Artisan;Non;M;CHICHEREAU;Vincent;29/05/1982;Non +57;Moselle;01;1ère circonscription;5;60;F;LEICK;Esther;18/06/1988;NUPES;Cadre administratif et commercial d'entreprise;Non;M;NYALENDO;Jean-Hugues;13/09/1971;Non +57;Moselle;01;1ère circonscription;6;16;M;LALOUX;Grégoire;12/09/1995;RN;Profession intermédiaire administrative de la fonction publique;Non;F;BURG;Laurence;18/05/1966;Non +57;Moselle;01;1ère circonscription;7;64;F;ROUSSE;Christèle;01/04/1971;DSV;Professeur, profession scientifique;Non;M;FERSING;Daniel;01/06/1966;Non +57;Moselle;01;1ère circonscription;8;20;M;BELHADDAD;Belkhir;09/07/1969;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;SAS-BARONDEAU;Martine;09/01/1952;Non +57;Moselle;01;1ère circonscription;9;36;M;GEORGET;Didier;07/08/1966;DXG;Ouvrier qualifié de type industriel;Non;M;BRUSTOLIN;Nicolas;16/10/1991;Non +57;Moselle;01;1ère circonscription;10;71;M;HADADI;Yoan;15/07/1986;DVG;Cadre administratif et commercial d'entreprise;Non;F;AIDARA;Katia;16/08/1970;Non +57;Moselle;01;1ère circonscription;11;76;F;KONARSKI;Rebecca;22/07/1966;REC;Professeur, profession scientifique;Non;M;SOMNY;Jean-François;04/01/1961;Non +57;Moselle;02;2ème circonscription;1;11;M;RINALDI;Mario;20/12/1964;DXG;Technicien;Non;M;SCHMITT;Fabien;23/03/1966;Non +57;Moselle;02;2ème circonscription;2;27;F;CONTAL;Aurélie;10/02/1961;ECO;Ancien employé;Non;M;RIBOULET;Thomas;22/04/1987;Non +57;Moselle;02;2ème circonscription;3;30;M;BAUCHAT;Olivier;04/12/1969;RN;Commerçant et assimilé;Non;F;ROZE;Régine;14/03/1967;Non +57;Moselle;02;2ème circonscription;4;98;M;KURTH;Jean-Jacques;07/03/1957;DVG;Professeur des écoles, instituteur et assimilé;Non;F;HAFNER;Marie-Michèle;24/03/1964;Non +57;Moselle;02;2ème circonscription;5;62;F;LAHORE;Lisa;26/09/2000;NUPES;Elève, étudiant;Non;M;FELIX;Vincent;26/10/1983;Non +57;Moselle;02;2ème circonscription;6;74;M;TEIXEIRA;Quentin;17/01/1993;ECO;Technicien;Non;F;VALLIES;Louise;06/06/1993;Non +57;Moselle;02;2ème circonscription;7;15;F;SAID;Sandrine;15/11/1977;DIV;Profession libérale;Non;M;DEVÈZE;Armand;16/12/1965;Non +57;Moselle;02;2ème circonscription;8;81;F;EL BARNOUSSI;Nadia;03/01/1975;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;ABDOU;Kamal;13/11/1963;Non +57;Moselle;02;2ème circonscription;9;96;M;PITTI;Raphaël;29/01/1950;DVG;Profession intermédiaire de la santé et du travail social;Non;F;LAVEAU-ZIMMERLÉ;Amandine;08/05/1983;Non +57;Moselle;02;2ème circonscription;10;88;M;MENDES;Ludovic;11/04/1987;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;HENRION;François;09/07/1968;Non +57;Moselle;02;2ème circonscription;11;32;M;HORY;Thierry;30/07/1963;LR;Cadre administratif et commercial d'entreprise;Non;F;LINDEN-GUESDON;Anne-Marie;10/10/1964;Non +57;Moselle;02;2ème circonscription;12;2;M;JACQUES;Jean-François;10/12/1961;DSV;Ancienne profession intermédiaire;Non;M;BIENTZ;Christian;19/04/1957;Non +57;Moselle;02;2ème circonscription;13;95;F;MAUSER;Martine;01/02/1969;REC;Profession libérale;Non;M;ROSIER;Jean-Marc;13/03/1955;Non +57;Moselle;03;3ème circonscription;1;47;F;LEUCART;Anne-Catherine;20/10/1974;DVC;Profession libérale;Non;M;KEFF;Gregory;13/09/1981;Non +57;Moselle;03;3ème circonscription;2;26;F;ZIMMERMANN;Marie-Jo;29/04/1951;DVC;Professeur, profession scientifique;Non;M;ALDRIN;Jérémy;27/09/1983;Non +57;Moselle;03;3ème circonscription;3;10;F;BECHT;Marie Jeanne;26/08/1957;DXG;Ancienne profession intermédiaire;Non;M;ZIMMERMANN;Gabriel;03/11/1954;Non +57;Moselle;03;3ème circonscription;4;67;M;BEMER;Christian;13/03/1961;REC;Commerçant et assimilé;Non;M;GOURLOT;Thierry;26/07/1959;Non +57;Moselle;03;3ème circonscription;5;57;F;LEDUC;Charlotte;18/06/1980;NUPES;Professeur, profession scientifique;Non;M;BROUSSE;Sylvain;23/03/1988;Non +57;Moselle;03;3ème circonscription;6;72;M;GULINO;Eric;09/09/1965;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;BECKER;Fatima;09/07/1970;Non +57;Moselle;03;3ème circonscription;7;79;F;JURION;Roxane;18/12/1984;ECO;Elève, étudiant;Non;F;COLLIN;Marielle;03/10/1989;Non +57;Moselle;03;3ème circonscription;8;37;F;COLIN-OESTERLÉ;Nathalie;05/05/1965;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;STREBLY;Dominique;10/08/1957;Non +57;Moselle;03;3ème circonscription;9;19;M;LIOGER;Richard;18/09/1957;ENS;Professeur, profession scientifique;Oui;F;MELON;Ghislaine;17/11/1950;Non +57;Moselle;03;3ème circonscription;10;63;M;CARRARA;Bernard;02/04/1940;DIV;Ancien cadre;Non;F;MAURICE;Céline;24/09/1979;Non +57;Moselle;03;3ème circonscription;11;100;F;WAGNER;Marlène;01/08/1977;DSV;Chef d'entreprise de 10 salariés ou plus;Non;M;DUCROCQ;Quentin;10/07/1999;Non +57;Moselle;03;3ème circonscription;12;25;M;HODARA;Etienne;22/07/1952;DXG;Ancien cadre;Non;F;SCHMITT;Odile;19/08/1956;Non +57;Moselle;03;3ème circonscription;13;89;M;DIAFERIA;Gaël;06/09/1980;DXG;Employé civil et agent de service de la fonction publique;Non;F;MUSZYNSKI;Chantal;05/11/1953;Non +57;Moselle;03;3ème circonscription;14;12;F;GROLET;Françoise;28/08/1963;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DUFOUR;Gregory;01/01/1974;Non +57;Moselle;04;4ème circonscription;1;45;M;RAMBOUR;Michel;30/01/1948;RN;Cadre administratif et commercial d'entreprise;Non;M;CONTE;Didier;20/10/1969;Non +57;Moselle;04;4ème circonscription;2;86;F;GIRARDOT;Hélène;16/12/1984;NUPES;Cadre administratif et commercial d'entreprise;Non;M;VILLARD;Antoine;09/10/1975;Non +57;Moselle;04;4ème circonscription;3;84;M;VILAIN;Eric;20/11/1958;DSV;Contremaître, agent de maîtrise;Non;M;FISSON;Norbert;31/01/1963;Non +57;Moselle;04;4ème circonscription;4;55;M;VAN DER STRAETEN;Antonin;25/07/1996;DSV;Elève, étudiant;Non;F;CHASSÉ;Nawaël;11/04/1998;Non +57;Moselle;04;4ème circonscription;5;22;M;BAUD-BERTHIER;Marc;25/05/1956;DXG;Ancienne profession intermédiaire;Non;M;GASQUET;Hervé;11/09/1957;Non +57;Moselle;04;4ème circonscription;6;21;F;KONARSKI;Chloé;09/05/2000;REC;Elève, étudiant;Non;M;KAPFER;René;06/03/1958;Non +57;Moselle;04;4ème circonscription;7;13;M;DI FILIPPO;Fabien;23/08/1986;LR;Ancien cadre;Oui;M;END;Jérôme;09/04/1979;Non +57;Moselle;04;4ème circonscription;8;82;F;CRENNER;Emilie;18/01/1990;ENS;Commerçant et assimilé;Non;M;PIERCY;Emmanuel;06/05/1970;Non +57;Moselle;05;5ème circonscription;1;24;M;OLLIER;Sébastien;04/07/1978;DXG;Professeur, profession scientifique;Non;M;SEBASTIAN;Gilles;06/01/1957;Non +57;Moselle;05;5ème circonscription;2;6;F;TOUSSAINT;Brigitte;23/06/1958;DSV;Ancien cadre;Non;F;BRAUER;Hélène;03/09/1958;Non +57;Moselle;05;5ème circonscription;3;7;M;BOURBEAU;François;06/02/1967;DVC;Cadre administratif et commercial d'entreprise;Non;F;GROSS;Barbara;29/10/1971;Non +57;Moselle;05;5ème circonscription;4;5;F;VOINÇON;Marie-Claude;11/01/1966;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;F;HENNARD;Naïla;22/03/1960;Non +57;Moselle;05;5ème circonscription;5;77;F;SELLINI;Sabrina;07/10/1980;REC;Employé administratif d'entreprise;Non;F;BRUZZI;Elia;10/12/2002;Non +57;Moselle;05;5ème circonscription;6;41;F;TRISSE;Nicole;29/06/1963;ENS;Ancien cadre;Oui;M;KIEFFER;Benoît;22/05/1969;Non +57;Moselle;05;5ème circonscription;7;31;F;RACINE;Caroline;22/09/2000;NUPES;Elève, étudiant;Non;M;HOELLINGER;Martial;15/10/1974;Non +57;Moselle;05;5ème circonscription;8;80;M;SEITLINGER;Vincent;18/01/1987;LR;Profession libérale;Non;F;FIRTION;Evelyne;08/03/1965;Non +57;Moselle;06;6ème circonscription;1;52;F;GREFF OSTERMANN;Monique;14/01/1963;DIV;Employé civil et agent de service de la fonction publique;Non;M;HALIMI;Toumi;11/09/1959;Non +57;Moselle;06;6ème circonscription;2;92;M;MASSING;Ludovic;26/11/1991;DIV;Employé civil et agent de service de la fonction publique;Non;M;DABA;Lotfi;01/01/1993;Non +57;Moselle;06;6ème circonscription;3;43;M;DILIGENT;Eric;02/01/1972;REC;Cadre de la fonction publique;Non;M;CAPS;Olivier;13/06/1969;Non +57;Moselle;06;6ème circonscription;4;23;F;LEGRAND;Lola;27/06/1989;DXG;Professeur, profession scientifique;Non;M;SCHULZ;Thierry;02/01/1946;Non +57;Moselle;06;6ème circonscription;5;75;M;MOUYNET;Christophe;23/08/1982;DIV;Ouvrier qualifié de type artisanal;Non;F;VERDIER;Martine;10/10/1960;Non +57;Moselle;06;6ème circonscription;6;50;M;OUTOMURO;Jonathan;28/10/1977;NUPES;Cadre de la fonction publique;Non;F;HENRY;Tiffany;12/09/1984;Non +57;Moselle;06;6ème circonscription;7;35;M;PFEFFER;Kévin;09/07/1990;RN;Cadre administratif et commercial d'entreprise;Non;M;SOBCZYK;Philippe;09/05/1983;Non +57;Moselle;06;6ème circonscription;8;97;M;ASKAL;Abdel;22/12/1975;DVG;Profession intermédiaire de la santé et du travail social;Non;F;DI LORENZO;Marylène;11/08/1986;Non +57;Moselle;06;6ème circonscription;9;56;M;AREND;Christophe;12/08/1975;ENS;Profession libérale;Oui;F;BAGUR;Lisa;03/09/1998;Non +57;Moselle;06;6ème circonscription;10;14;M;THIEL;Anthony;21/11/1988;SOC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;SONMEZ;Gunes;17/01/1969;Non +57;Moselle;06;6ème circonscription;11;99;F;AÏT;Saliha;04/10/1987;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;AUGER;Alexandre;16/09/1991;Non +57;Moselle;06;6ème circonscription;12;39;M;FRIEDRICH;Marc;19/10/1959;LR;Ancien cadre;Non;M;FLORSCH;Michel;17/10/1950;Non +57;Moselle;06;6ème circonscription;13;51;M;PHILIPPOT;Florian;24/10/1981;DSV;Cadre de la fonction publique;Non;F;MIHELIC;Patricia;23/10/1963;Non +57;Moselle;07;7ème circonscription;1;3;M;HOCQUET;Hervé;10/06/1957;DSV;Ancien cadre;Non;M;FRANCOIS;Jean-Luc;03/09/1953;Non +57;Moselle;07;7ème circonscription;2;40;M;GALANTE;Clément;03/04/1993;REC;Cadre administratif et commercial d'entreprise;Non;M;DA ROS;Lucien;23/03/1953;Non +57;Moselle;07;7ème circonscription;3;70;F;ZANNIER;Hélène;19/09/1972;ENS;Cadre de la fonction publique;Oui;M;STAUB;Claude;12/07/1953;Non +57;Moselle;07;7ème circonscription;4;78;M;MULLER;Luc;24/12/1955;NUPES;Agriculteur sur moyenne exploitation;Non;F;NUSS;Patricia;03/12/1971;Non +57;Moselle;07;7ème circonscription;5;66;F;BOUCHER;Anne;01/09/1972;LR;Profession intermédiaire de la santé et du travail social;Non;M;BETTINGER;Edmond;31/05/1969;Non +57;Moselle;07;7ème circonscription;6;29;F;BOUSSET;Diane;22/05/1963;DXG;Employé civil et agent de service de la fonction publique;Non;M;GRIMONT;Pascal;29/08/1956;Non +57;Moselle;07;7ème circonscription;7;53;M;LOUBET;Alexandre;07/07/1994;RN;Cadre administratif et commercial d'entreprise;Non;F;CHATELAIN;Magali;17/03/1973;Non +57;Moselle;08;8ème circonscription;1;8;F;LEVECQUE;Anne-Catherine;10/10/1954;DXG;Ancien cadre;Non;M;ALESCH;Gilles;28/08/1957;Non +57;Moselle;08;8ème circonscription;2;34;M;HAMMOUCHE;Brahim;17/05/1971;ENS;Professeur, profession scientifique;Oui;F;BUCKI;Barbara;23/05/1981;Non +57;Moselle;08;8ème circonscription;3;48;F;LEGER;Céline;15/11/1977;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;DANEL;Sebastien;04/03/1970;Non +57;Moselle;08;8ème circonscription;4;59;F;JOLIVET;Annick;12/01/1949;DXG;Professeur, profession scientifique;Non;M;VOLZ;Jonathan;18/09/1978;Non +57;Moselle;08;8ème circonscription;5;42;M;JACOBELLI;Laurent;13/10/1969;RN;Profession de l'information, des arts et des spectacles;Non;M;ENGELMANN;Fabien;07/05/1979;Non +57;Moselle;08;8ème circonscription;6;83;F;OUM;Chariya;11/05/1977;ECO;Employé de commerce;Non;F;MANSUY;Nadine;18/01/1963;Non +57;Moselle;08;8ème circonscription;7;90;F;ROSA;Raphaëlle;10/04/2004;LR;Elève, étudiant;Non;M;SCHWEITZER;Kévin;11/02/2003;Non +57;Moselle;08;8ème circonscription;8;18;F;DAVID;Claire;21/09/1988;DSV;Commerçant et assimilé;Non;M;CONREAUX;Fabrice;31/05/1966;Non +57;Moselle;08;8ème circonscription;9;17;M;ANDRÉ;Sébastien;18/04/1987;REC;Chauffeur;Non;M;HAMMERSCHMITT;Florent;03/07/1994;Non +57;Moselle;09;9ème circonscription;1;93;F;VAÏSSE;Brigitte;10/12/1952;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;LICHTEROWICZ;Hugo;15/03/1980;Non +57;Moselle;09;9ème circonscription;2;33;M;REICHLING;Stéphane;12/09/1971;RN;Technicien;Non;M;MESSMER;Pascal;08/05/1967;Non +57;Moselle;09;9ème circonscription;3;49;M;ENGEL;Fred;10/02/1963;DIV;Ancien cadre;Non;F;NASSO;Drosana;15/06/1963;Non +57;Moselle;09;9ème circonscription;4;58;F;WALLIAN;Aurélie;22/11/1990;REC;Employé administratif d'entreprise;Non;M;RODICQ;Yanis;26/02/2000;Non +57;Moselle;09;9ème circonscription;5;91;M;RUTILI;Yan;21/03/1982;RDG;Cadre de la fonction publique;Non;F;EFOUA;Anna;02/12/1992;Non +57;Moselle;09;9ème circonscription;6;28;F;WERCKMANN;Françoise;04/02/1942;ECO;Profession de l'information, des arts et des spectacles;Non;M;GIGES;Kévin;17/12/1985;Non +57;Moselle;09;9ème circonscription;7;54;M;MAURHOFER;Guy;08/02/1959;DXG;Ancien employé;Non;F;SALET;Chantal;17/09/1960;Non +57;Moselle;09;9ème circonscription;8;94;F;RAUCH;Isabelle;10/08/1968;ENS;Cadre de la fonction publique;Oui;M;BERTIN;Emmanuel;13/10/1969;Non +57;Moselle;09;9ème circonscription;9;87;F;BEY;Laurène;28/09/1995;ECO;Employé administratif d'entreprise;Non;M;BEY;Philippe;19/12/1956;Non +57;Moselle;09;9ème circonscription;10;69;F;MELLINGER;Marlène;12/10/1968;DSV;Profession libérale;Non;M;KEMPNICH;Pierre;21/03/1970;Non +57;Moselle;09;9ème circonscription;11;73;M;BIEDER;Lionel;31/05/1970;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;BAUDOT;Sébastien;21/11/1968;Non +57;Moselle;09;9ème circonscription;12;44;M;GRANDJEAN;Lucas;23/10/1995;LR;Cadre de la fonction publique;Non;F;VILLAIN;Emilie;10/01/1980;Non +58;Nièvre;01;1ère circonscription;1;20;M;PETERS;Michel;14/10/1970;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;NIVARD;Olivier;01/05/1967;Non +58;Nièvre;01;1ère circonscription;2;3;F;LEMOINE;Geneviève;27/06/1952;DXG;Profession intermédiaire de la santé et du travail social;Non;M;DUVERNAY;Thierry;22/12/1971;Non +58;Nièvre;01;1ère circonscription;3;5;M;IMPENGE;Orny;14/09/1984;DVG;Ingénieur et cadre technique d'entreprise;Non;F;BONNEVIE;Manon;08/02/1996;Non +58;Nièvre;01;1ère circonscription;4;10;F;VIGNERON;Pauline;26/11/1990;RN;Technicien;Non;M;PERRET;Thomas;17/09/2001;Non +58;Nièvre;01;1ère circonscription;5;13;M;VERDEZ;Bryton;11/12/1999;REC;Technicien;Non;F;DUPUTEL;Isabelle;27/05/1965;Non +58;Nièvre;01;1ère circonscription;6;12;M;COUTELLEC;Leo;31/07/1983;NUPES;Cadre de la fonction publique;Non;F;DELACOUR;Charlene;15/02/2001;Non +58;Nièvre;01;1ère circonscription;7;17;M;GALLOIS;Charles-Henri;31/10/1988;DSV;Cadre administratif et commercial d'entreprise;Non;M;GARCIA;Fabrice;18/05/1973;Non +58;Nièvre;01;1ère circonscription;8;19;M;LE METAYER;François;18/02/1993;LR;Profession libérale;Non;F;CHENE;Anne Marie;19/06/1956;Non +58;Nièvre;01;1ère circonscription;9;2;F;GOULET;Perrine;19/03/1978;ENS;Ingénieur et cadre technique d'entreprise;Oui;M;COINTAT;Sylvain;28/08/1972;Non +58;Nièvre;02;2ème circonscription;1;14;F;GUILLEMAIN;Marie Anne;21/10/1970;NUPES;Profession de l'information, des arts et des spectacles;Non;M;BOUIS;Andre;13/08/1952;Non +58;Nièvre;02;2ème circonscription;2;4;M;DUPUIS;Dominique;11/05/1956;DXG;Ouvrier qualifié de type industriel;Non;M;SIMON;Philippe;05/04/1953;Non +58;Nièvre;02;2ème circonscription;3;16;M;LEPETIT;Pascal;30/05/1964;DSV;Ancien cadre;Non;M;CAMBIANICA;Jean-Pierre;11/11/1946;Non +58;Nièvre;02;2ème circonscription;4;18;F;MEGY;Heloïse;15/07/1972;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MUNTONI;Sandra;11/07/1966;Non +58;Nièvre;02;2ème circonscription;5;9;M;DENIAUX;Christophe;11/05/1970;LR;Cadre de la fonction publique;Non;F;DE RIBEROLLES;Marie France;11/10/1944;Non +58;Nièvre;02;2ème circonscription;6;8;M;PERROT;Patrice;24/02/1964;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;GERMAIN;Sandra;15/12/1969;Non +58;Nièvre;02;2ème circonscription;7;15;F;GUILLAUME;Marie Joelle;09/08/1949;REC;Profession de l'information, des arts et des spectacles;Non;M;ROYE;Claude;25/01/1947;Non +58;Nièvre;02;2ème circonscription;8;11;M;GUIBERT;Julien;11/05/1984;RN;Cadre administratif et commercial d'entreprise;Non;F;MERCIER;Laetitia;22/11/1984;Non +59;Nord;01;1ère circonscription;1;85;M;LEFRANCQ;Jonathan;09/11/1988;DIV;Professeur, profession scientifique;Non;F;COLLIER;Cécile Laure-Anne;25/10/1977;Non +59;Nord;01;1ère circonscription;2;103;F;RIMLINGER;Mai;25/09/1996;REC;Employé de commerce;Non;M;CUBUK;Bekir;13/09/2002;Non +59;Nord;01;1ère circonscription;3;115;M;ALEXANDRE;Audric;24/05/1989;DIV;Professeur, profession scientifique;Non;F;BILLET;Florence;24/08/1954;Non +59;Nord;01;1ère circonscription;4;4;M;MADELAIN;Pierre;12/03/1968;DXG;Professeur, profession scientifique;Non;F;COLLINET;Corentine;25/03/1981;Non +59;Nord;01;1ère circonscription;5;52;F;DUHAMEL;Vanessa;07/10/1970;ENS;Employé de commerce;Non;F;SOW;Khadidjatou;19/09/1990;Non +59;Nord;01;1ère circonscription;6;50;F;LECLERCQ;Carole;11/01/1954;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;VERBRUGGHE;Bastien;05/10/1985;Non +59;Nord;01;1ère circonscription;7;143;F;GODEST;Constance;18/09/1995;ECO;Elève, étudiant;Non;F;FELLOUS;Charlotte;18/09/1992;Non +59;Nord;01;1ère circonscription;8;70;M;CHAOUAT;Frédéric;15/03/1963;DIV;Professeur, profession scientifique;Non;M;BOUDOU;Benoît;04/02/1978;Non +59;Nord;01;1ère circonscription;9;155;M;FABRE;Thomas;31/03/1994;UDI;Cadre de la fonction publique;Non;F;BARA;Marie-Claude;04/03/1969;Non +59;Nord;01;1ère circonscription;10;154;M;DESMARCHELIER;Hugo;18/06/1994;DIV;Elève, étudiant;Non;M;MOREEL;Kevin;09/08/1986;Non +59;Nord;01;1ère circonscription;11;129;M;QUATENNENS;Adrien;23/05/1990;NUPES;Employé administratif d'entreprise;Oui;F;ADDOUCHE;Lahouaria;19/01/1983;Non +59;Nord;02;2ème circonscription;1;121;F;BOISARD-VANNIER;Caroline;12/08/1958;LR;Profession libérale;Non;F;VAN NIEUWENHUYSE;Léna;05/04/2000;Non +59;Nord;02;2ème circonscription;2;87;F;DELEVALLET;Monique;26/11/1945;REC;Ancien artisan, commerçant, chef d'entreprise;Non;M;THOMES;Serge;24/04/1954;Non +59;Nord;02;2ème circonscription;3;44;M;KARASIEWICZ;Nicolas;24/07/1986;DVC;Commerçant et assimilé;Non;M;DELACHER;Guillaume;11/05/1984;Non +59;Nord;02;2ème circonscription;4;192;M;AASSI;Nordine;02/06/1987;DIV;Professeur, profession scientifique;Non;M;RASMI;Mustapha;12/10/1987;Non +59;Nord;02;2ème circonscription;5;7;F;ROUGÉE;Pascale;28/08/1957;DXG;Ancienne profession intermédiaire;Non;F;JASIAK;Karine;08/01/1966;Non +59;Nord;02;2ème circonscription;6;114;F;CHAUCHOY;Virginie;18/04/1970;ECO;Employé administratif d'entreprise;Non;M;COUTEL;Simon;13/03/1972;Non +59;Nord;02;2ème circonscription;7;33;M;ELEGEEST;Rudy;13/03/1959;ENS;Ancien cadre;Non;F;SALANON;Violette;25/09/1987;Non +59;Nord;02;2ème circonscription;8;64;M;GUÉRARD;Philippe;09/11/1958;RN;Profession libérale;Non;F;HOORENS;Anaïs;29/10/1990;Non +59;Nord;02;2ème circonscription;9;148;F;SAVAGE;Marie;08/05/1981;DXG;Profession de l'information, des arts et des spectacles;Non;M;LOURDELLE;Quentin;06/01/1988;Non +59;Nord;02;2ème circonscription;10;120;M;BERNALICIS;Ugo;25/09/1989;NUPES;Cadre de la fonction publique;Oui;F;BOUCKNOOGHE;Marie;14/04/1986;Non +59;Nord;03;3ème circonscription;1;196;F;VILLETTE;Sophie;24/02/1973;NUPES;Cadre de la fonction publique;Non;M;HANNECART;Marc;01/07/1968;Non +59;Nord;03;3ème circonscription;2;160;M;DEHONDT;Marc;07/03/1961;ECO;Technicien;Non;F;ORIOLI;Liliane;24/01/1942;Non +59;Nord;03;3ème circonscription;3;89;M;SAINT-HUILE;Benjamin;10/05/1983;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;DUHAMEL;Sandrine;17/06/1973;Non +59;Nord;03;3ème circonscription;4;107;F;WATTIEZ;Jessica;29/05/1978;REC;Employé administratif d'entreprise;Non;M;BREBION;Fabrice;10/01/1968;Non +59;Nord;03;3ème circonscription;5;54;F;RONDEAUX;Marie-Claude;04/08/1955;DXG;Ancien ouvrier;Non;M;MONTMORY;Bruno;26/09/1964;Non +59;Nord;03;3ème circonscription;6;9;M;LEBLANC;Nicolas;14/10/1983;LR;Cadre de la fonction publique;Non;F;PEROT;Aurélie;02/04/1980;Non +59;Nord;03;3ème circonscription;7;82;M;DI POMPEO;Christophe;15/07/1964;ENS;Professeur, profession scientifique;Oui;F;BOUTTEFEUX - TORNOTTI;Joëlle;09/11/1958;Non +59;Nord;03;3ème circonscription;8;59;F;DELANNOY;Sandra;01/05/1974;RN;Artisan;Non;M;BEAUJEAN;Olivier;30/07/1973;Non +59;Nord;03;3ème circonscription;9;184;F;SAFAI;Irène;01/11/1962;DSV;Cadre de la fonction publique;Non;M;YU;Nicolas;01/04/1965;Non +59;Nord;04;4ème circonscription;1;27;F;ABDELLAOUI;Fatima;09/06/1965;DXG;Employé civil et agent de service de la fonction publique;Non;M;MATHIEU;Yoann;27/07/1975;Non +59;Nord;04;4ème circonscription;2;168;M;MONTEUX;Frédéric;30/08/1967;DSV;Professeur des écoles, instituteur et assimilé;Non;M;LEFEBVRE;Nicolas;09/08/1983;Non +59;Nord;04;4ème circonscription;3;48;F;PLANCKE;Patricia;31/10/1958;RN;Employé administratif d'entreprise;Non;M;LANDRU;Jean-Luc;25/05/1952;Non +59;Nord;04;4ème circonscription;4;96;M;BOULLET;Gauthier;23/04/1994;ECO;Cadre administratif et commercial d'entreprise;Non;F;SOMMARO;Laura;14/08/1990;Non +59;Nord;04;4ème circonscription;5;138;F;GAMBIRASIO;Georgia;19/12/1969;DVC;Professeur, profession scientifique;Non;M;SAINTE-MARIE;Evrard;08/07/1955;Non +59;Nord;04;4ème circonscription;6;31;M;HOUSSIN;Jacques;16/02/1964;DVD;Commerçant et assimilé;Non;M;LEPRETRE;Sébastien;17/02/1971;Non +59;Nord;04;4ème circonscription;7;105;F;DESBOIS;Claire;22/12/1987;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;ROCCA;Nicolas;03/06/1986;Non +59;Nord;04;4ème circonscription;8;128;M;JARDIN;Patrick;27/11/1952;REC;Ancien artisan, commerçant, chef d'entreprise;Non;M;LIPKA;Jean-François;11/09/1956;Non +59;Nord;04;4ème circonscription;9;180;M;LEBLANC;Sébastien;03/01/1989;LR;Cadre de la fonction publique;Non;M;DETOURNAY;Alain;05/12/1954;Non +59;Nord;04;4ème circonscription;10;152;M;GAVARD;Ewann;01/09/1992;DIV;Profession libérale;Non;M;TISSIER;Antoine;24/12/1978;Non +59;Nord;04;4ème circonscription;11;76;M;DELEPIERE;Octave;15/04/1999;NUPES;Elève, étudiant;Non;F;SEDOU;Nathalie;20/11/1971;Non +59;Nord;04;4ème circonscription;12;132;F;LISO;Brigitte;29/07/1959;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;M;PEROT;Grégoire;25/08/1991;Non +59;Nord;05;5ème circonscription;1;53;M;CATTEAU;Victor;18/09/1995;RN;Cadre administratif et commercial d'entreprise;Non;M;DESCAMPS;Carlos;08/04/1968;Non +59;Nord;05;5ème circonscription;2;102;F;STOFFEL;Manon;18/12/1998;ECO;Elève, étudiant;Non;F;WOJTKOWIAK;Emilie;06/06/2002;Non +59;Nord;05;5ème circonscription;3;93;M;CAUDERLIER;Frédéric;13/01/1975;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;FOSSAERT;Josephine;19/10/1993;Non +59;Nord;05;5ème circonscription;4;77;F;DELNESTE;Ophélie;08/05/1995;NUPES;Elève, étudiant;Non;M;GODEFROY;Michael;02/03/1974;Non +59;Nord;05;5ème circonscription;5;200;M;DENNEQUIN;Pierrick;10/09/1989;DSV;Cadre administratif et commercial d'entreprise;Non;F;CHEVALIER AMMAR;Estelle;20/03/1971;Non +59;Nord;05;5ème circonscription;6;205;M;SION;Hugues;28/04/1976;REC;Commerçant et assimilé;Non;F;DRAPRI;Sylvie;18/01/1962;Non +59;Nord;05;5ème circonscription;7;95;M;HUYGHE;Sébastien;25/10/1969;LR;Profession libérale;Oui;F;BAZAN;Laure;08/07/1981;Non +59;Nord;05;5ème circonscription;8;39;M;DUBOIS;Luc;19/02/1966;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;COVAIN;Raymond;21/08/1957;Non +59;Nord;06;6ème circonscription;1;172;M;ROLLAND;Thierry;17/10/1969;DVD;Ancien cadre;Non;F;ROGER;Christine;03/10/1965;Non +59;Nord;06;6ème circonscription;2;80;F;PEREIRA;Célia;25/07/1999;NUPES;Employé administratif d'entreprise;Non;M;RICCELLI;Olivier;03/04/1981;Non +59;Nord;06;6ème circonscription;3;163;M;FOUTRY;Luc;10/05/1974;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GAU;Carine;04/05/1982;Non +59;Nord;06;6ème circonscription;4;20;M;DEMEESTER;André;26/08/1958;REC;Ancien cadre;Non;F;BENCHEGRA;Kenza;02/05/1998;Non +59;Nord;06;6ème circonscription;5;11;F;FENAIN;Virginie;29/08/1976;RN;Ouvrier qualifié de type industriel;Non;M;SKURPEL;Antoine;30/11/1962;Non +59;Nord;06;6ème circonscription;6;13;M;BARREZ;Frédéric;13/12/1982;DXG;Ouvrier non qualifié de type industriel;Non;F;DEMORY;Léa;04/09/1955;Non +59;Nord;06;6ème circonscription;7;30;F;LABRE;Vanessa;07/04/1979;ECO;Cadre administratif et commercial d'entreprise;Non;F;JANON;Cléa;27/05/1987;Non +59;Nord;06;6ème circonscription;8;174;F;FABER-ROSSI;Maryse;28/10/1949;RDG;Ancienne profession intermédiaire;Non;M;DUBAR;Ludovic;07/10/1978;Non +59;Nord;06;6ème circonscription;9;158;F;LELEU;Delphine;27/06/1985;DSV;Employé administratif d'entreprise;Non;M;BLERVAQUE;Stéphane;13/05/1960;Non +59;Nord;06;6ème circonscription;10;135;F;PARMENTIER-LECOCQ;Charlotte;17/07/1977;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;MOULLIERE;Jean;29/03/1994;Non +59;Nord;07;7ème circonscription;1;191;F;BICHON;Jeyan;14/08/1997;ECO;Elève, étudiant;Non;F;GUILLOT;Charlotte;18/03/1997;Non +59;Nord;07;7ème circonscription;2;41;F;LECONTE DUCHANGE;Mathilde;08/09/1998;REC;Elève, étudiant;Non;F;VANHOUTTE;Lucie;12/09/2001;Non +59;Nord;07;7ème circonscription;3;18;M;SCHUURMAN;Nicolas;07/09/1979;DXG;Profession intermédiaire de la santé et du travail social;Non;F;TOILLON;Renée;19/12/1964;Non +59;Nord;07;7ème circonscription;4;144;F;SAVIO;Nelly;11/01/1970;DVC;Cadre administratif et commercial d'entreprise;Non;M;MONCEAU;Alexandre;02/08/1974;Non +59;Nord;07;7ème circonscription;5;187;F;HOUCKE;Charlotte;25/03/1970;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;F;VANDAME-WASTYN;Marina;01/10/1975;Non +59;Nord;07;7ème circonscription;6;109;F;CHOUIA;Karima;24/02/1978;NUPES;Cadre de la fonction publique;Non;M;DE VEYLDER;Bernard;30/06/1953;Non +59;Nord;07;7ème circonscription;7;119;M;WILLEM;Jean-Sébastien;23/02/1971;RN;Commerçant et assimilé;Non;M;FLORENT;Thomas;20/08/1986;Non +59;Nord;07;7ème circonscription;8;62;F;GÉRARD;Félicie;28/01/1974;ENS;Contremaître, agent de maîtrise;Non;M;GARCIN;Alexandre;17/06/1977;Non +59;Nord;07;7ème circonscription;9;16;F;SIX;Valérie;11/01/1963;UDI;Profession libérale;Oui;M;NYS;Pascal;13/06/1956;Non +59;Nord;08;8ème circonscription;1;113;F;SAHRAOUI;Rachida;26/06/1963;RN;Profession libérale;Non;F;BLAIN;Marie-Chantal;30/12/1956;Non +59;Nord;08;8ème circonscription;2;106;F;DELBARRE;Françoise;15/06/1955;DXG;Ancienne profession intermédiaire;Non;M;LEROY;Jean-Christophe;02/08/1963;Non +59;Nord;08;8ème circonscription;3;47;M;GUIRAUD;David;18/11/1992;NUPES;Cadre administratif et commercial d'entreprise;Non;F;BENTORKI;Sheherazade;06/11/1986;Non +59;Nord;08;8ème circonscription;4;189;M;VERMEERSCH;Christian;17/03/1963;ECO;Cadre de la fonction publique;Non;F;DUBREUIL;Sabine;11/08/1952;Non +59;Nord;08;8ème circonscription;5;58;M;ELBAHI;Amine;27/04/1996;LR;Elève, étudiant;Non;F;BEAUGRAND;Elisabeth;19/05/1953;Non +59;Nord;08;8ème circonscription;6;190;M;TANDONNET;Samuel;26/06/2003;DIV;Elève, étudiant;Non;M;DUTERTRE;Frédéric;23/08/1983;Non +59;Nord;08;8ème circonscription;7;78;F;VERLANDE;Lisa;18/10/2001;REC;Elève, étudiant;Non;M;POTIÉ;Thomas;17/07/2000;Non +59;Nord;08;8ème circonscription;8;204;M;PACO;Aymeric;11/01/1988;DVC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;BENDRIDJ;Sakina;04/07/1978;Non +59;Nord;08;8ème circonscription;9;164;F;OSSON;Catherine;07/02/1974;ENS;Professeur des écoles, instituteur et assimilé;Oui;M;KERROUCHE;Djamel;26/07/1969;Non +59;Nord;08;8ème circonscription;10;55;M;CAMERLYNCK;Maël;26/01/1992;DSV;Ingénieur et cadre technique d'entreprise;Non;F;DETURCK;Sonia;31/07/1974;Non +59;Nord;09;9ème circonscription;1;21;F;SARAZIN;Chantal;29/01/1956;DXG;Ancien employé;Non;F;MOUCHOUX;Maryline;16/07/1973;Non +59;Nord;09;9ème circonscription;2;72;F;VIDAL-SAGNIER;Odile;13/03/1962;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;M;PLANCKE;Dominique;19/04/1957;Non +59;Nord;09;9ème circonscription;3;149;F;CLAVEL;Carla;09/10/1973;DSV;Cadre administratif et commercial d'entreprise;Non;M;BOURBOTTE;Philippe;09/06/1960;Non +59;Nord;09;9ème circonscription;4;51;F;LANDRU;Christine;22/04/1954;RN;Ancien employé;Non;M;ROSSIGNOL;Laurent;24/10/1967;Non +59;Nord;09;9ème circonscription;5;22;M;LETURQUE;Laurent;04/10/1969;ECO;Ingénieur et cadre technique d'entreprise;Non;F;LECOUTY;Isabelle;17/05/1957;Non +59;Nord;09;9ème circonscription;6;66;M;GALERA;Eric;05/09/1978;DIV;Employé civil et agent de service de la fonction publique;Non;F;MOUNSI;Kenza;14/04/1976;Non +59;Nord;09;9ème circonscription;7;29;F;GODDYN;Sylvie;24/06/1964;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;COTTIGNIES;Patrice;31/05/1950;Non +59;Nord;09;9ème circonscription;8;117;M;PAPIACHVILI;Nicolas;05/03/1984;LR;Profession libérale;Non;F;DELSALLE;Sandrine;14/05/1969;Non +59;Nord;09;9ème circonscription;9;26;F;SPILLEBOUT;Violette;02/09/1972;ENS;Cadre administratif et commercial d'entreprise;Non;M;CHARPENTIER;Raphaël;14/10/1992;Non +59;Nord;10;10ème circonscription;1;104;M;VAN GANSEN;Romain;13/10/1998;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;FAURE;Gwennaelle;08/02/1980;Non +59;Nord;10;10ème circonscription;2;81;M;GARCIA;Jérôme;05/05/1969;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;VASSELIN;Christian;08/08/1951;Non +59;Nord;10;10ème circonscription;3;130;M;BLEUZÉ;Louis;11/06/1993;REC;Artisan;Non;F;GHESQUIER;Dorothée;09/09/1966;Non +59;Nord;10;10ème circonscription;4;150;M;DARMANIN;Gérald;11/10/1982;ENS;Cadre administratif et commercial d'entreprise;Non;M;LEDOUX;Vincent;21/06/1966;Oui +59;Nord;10;10ème circonscription;5;176;M;LEUCHI;Oueb;26/06/1961;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;M;AIT AMEUR;Dyene;22/09/1982;Non +59;Nord;10;10ème circonscription;6;145;M;BRAZON;Marcellin;09/01/2004;DVD;Elève, étudiant;Non;M;NOLLET;Stéphane;15/03/1968;Non +59;Nord;10;10ème circonscription;7;5;M;CHARLON;Christophe;26/10/1964;DXG;Employé civil et agent de service de la fonction publique;Non;M;CRETON;Kevin;14/08/1987;Non +59;Nord;10;10ème circonscription;8;167;M;MORTREUX;Leslie;01/02/1996;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;DEVLOO;Maurice;10/03/1970;Non +59;Nord;10;10ème circonscription;9;134;F;DUMORTIER;Valérie;26/08/1965;DSV;Professeur, profession scientifique;Non;F;ANOUAR;Majdouline;18/02/1978;Non +59;Nord;10;10ème circonscription;10;112;F;D'HONT;Mélanie;02/12/1989;RN;Personnel des services directs aux particuliers;Non;F;MORAND;Anne;12/04/1967;Non +59;Nord;11;11ème circonscription;1;151;M;PIETRASZEWSKI;Laurent;19/11/1966;ENS;Cadre administratif et commercial d'entreprise;Non;M;DELEPAUL;Michel;15/11/1955;Non +59;Nord;11;11ème circonscription;2;140;M;CHERPIN;Priscilla;02/05/1956;ECO;Ancien employé;Non;M;DESMOULINS;Thierry;24/08/1957;Non +59;Nord;11;11ème circonscription;3;201;M;PLOUY;Michel;23/11/1974;LR;Cadre administratif et commercial d'entreprise;Non;F;SIMON;Martine;09/06/1956;Non +59;Nord;11;11ème circonscription;4;157;F;GOUDENHOOFT;Sophie;30/05/1971;ECO;Cadre de la fonction publique;Non;M;NOTEBAERT;Etienne;17/05/1959;Non +59;Nord;11;11ème circonscription;5;37;F;BAILLEUL;Carole;02/05/1960;DXG;Personnel des services directs aux particuliers;Non;M;MARTIN;Claude;05/02/1952;Non +59;Nord;11;11ème circonscription;6;108;M;MOULIN;Maxime;24/11/1974;RN;Profession libérale;Non;F;DESMAZIERES;Marie;13/09/1989;Non +59;Nord;11;11ème circonscription;7;65;M;CASTERMAN;Eddy;28/07/1996;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;PROVOST;Nolwenn;30/05/1982;Non +59;Nord;11;11ème circonscription;8;175;M;GOLLET MURET;Pascal;28/06/1970;DSV;Chauffeur;Non;F;DUFOUR;Laurence;13/09/1969;Non +59;Nord;11;11ème circonscription;9;197;M;FIEY;Sebastien;27/11/1976;DVD;Ingénieur et cadre technique d'entreprise;Non;M;BAILLEUL;Christian;21/07/1961;Non +59;Nord;11;11ème circonscription;10;74;M;VICOT;Roger;01/06/1963;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;PRINGUEZ;Valérie;07/12/1974;Non +59;Nord;12;12ème circonscription;1;25;M;FLAHAUT;Simon;19/06/1984;REC;Cadre administratif et commercial d'entreprise;Non;M;GALIEGUE;Pierre-Philippe;24/10/1972;Non +59;Nord;12;12ème circonscription;2;38;M;YAHIATENE;Malik;22/12/1974;NUPES;Professeur, profession scientifique;Non;F;BLOSEUR;Charlène;28/09/1993;Non +59;Nord;12;12ème circonscription;3;34;M;LEHRHAUPT;Laurent;16/10/1964;DXG;Professeur, profession scientifique;Non;F;DELAHAYE;Sandrine;25/04/1975;Non +59;Nord;12;12ème circonscription;4;56;M;TAVERNE;Michaël;10/03/1979;RN;Policier et militaire;Non;M;DELHAYE;Valentin;15/02/2002;Non +59;Nord;12;12ème circonscription;5;141;M;DUPONT;Claude;04/08/1952;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;ZAREMBA;Jérémy;26/10/1986;Non +59;Nord;12;12ème circonscription;6;136;M;DENIS;Geoffrey;29/05/1981;DSV;Employé civil et agent de service de la fonction publique;Non;M;BEAUVOISE;Bertrand;11/06/1991;Non +59;Nord;12;12ème circonscription;7;84;M;LUSSIEZ;Ludovic;21/03/1966;DVD;Chauffeur;Non;M;MARION;Stéphane;24/11/1977;Non +59;Nord;12;12ème circonscription;8;137;M;PAMART;Grégory;08/10/1988;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CAILLAUD;Anne-France;19/09/1985;Non +59;Nord;12;12ème circonscription;9;12;F;CATTELOT;Anne Laure;25/10/1988;ENS;Cadre administratif et commercial d'entreprise;Oui;M;SAGNIEZ;Paul;26/08/1960;Non +59;Nord;13;13ème circonscription;1;173;F;DE MIRIBEL;Véronique;02/04/1955;LR;Commerçant et assimilé;Non;M;FAËS;François-Xavier;25/10/1972;Non +59;Nord;13;13ème circonscription;2;43;M;BÉZINE;Clément;22/12/1983;DXG;Professeur, profession scientifique;Non;M;WARINGHEM;Jean-Luc;26/03/1957;Non +59;Nord;13;13ème circonscription;3;42;M;PELTIER;Alexis;30/03/1985;ECO;Technicien;Non;F;PÉCHER;Marion;01/06/1975;Non +59;Nord;13;13ème circonscription;4;199;F;MADELAINE;Eugénie;05/05/1954;REC;Professeur, profession scientifique;Non;M;YKEMA;Clément;14/09/1997;Non +59;Nord;13;13ème circonscription;5;146;M;LACROIX;Damien;05/12/1991;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;LECLERC;Françoise;25/03/1954;Non +59;Nord;13;13ème circonscription;6;147;F;MENNEBOO;Maeva;05/11/1991;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DUSAUTOIS;Claude;07/01/1961;Non +59;Nord;13;13ème circonscription;7;61;M;DUVAL;Yohann;07/06/1983;RN;Cadre de la fonction publique;Non;M;EYMERY;Philippe;10/12/1951;Non +59;Nord;13;13ème circonscription;8;40;F;DECODTS;Christine;19/05/1966;ENS;Ancien cadre;Non;M;VERGRIETE;Patrice;04/07/1968;Non +59;Nord;14;14ème circonscription;1;156;M;MAERTEN;Eric;06/10/1962;REC;Artisan;Non;M;BUTEZ;Vincent;16/08/1968;Non +59;Nord;14;14ème circonscription;2;170;M;LÉVECQ;Guillaume;02/11/1971;DSV;Cadre administratif et commercial d'entreprise;Non;F;FLOURY;Carole;31/07/1966;Non +59;Nord;14;14ème circonscription;3;118;F;CUVELIER;Pierrette;11/03/1962;RN;Profession intermédiaire administrative de la fonction publique;Non;M;BATAILLE;Maxime;22/06/1984;Non +59;Nord;14;14ème circonscription;4;171;F;HEYMAN;Philippine;04/12/2001;NUPES;Elève, étudiant;Non;M;CORDIEZ;Daniel;30/01/1946;Non +59;Nord;14;14ème circonscription;5;185;M;GONZALEZ;Pierre;27/04/1960;DVG;Ancien ouvrier;Non;F;ZONNEQUIN;Maria;08/12/1947;Non +59;Nord;14;14ème circonscription;6;10;F;DESRAYAUD;Sandrine;02/05/1974;DXG;Professeur, profession scientifique;Non;M;HAILLANT;David;19/10/1977;Non +59;Nord;14;14ème circonscription;7;35;M;CHRISTOPHE;Paul;10/02/1971;ENS;Cadre de la fonction publique;Oui;M;MARLE;Pierre;19/02/1954;Non +59;Nord;14;14ème circonscription;8;97;M;DEVOS;Frédéric;17/03/1961;LR;Ancien cadre;Non;F;ANDRIES;Françoise;04/06/1953;Non +59;Nord;14;14ème circonscription;9;153;M;BÉAGUE;Frédéric;07/04/1965;ECO;Professeur des écoles, instituteur et assimilé;Non;F;BÉAGUE;Rébecca;27/09/1991;Non +59;Nord;15;15ème circonscription;1;178;F;ABADIE;Anne;22/09/1969;DVD;Agriculteur sur petite exploitation;Non;M;BOSSAERT;Maxence;07/12/1993;Non +59;Nord;15;15ème circonscription;2;165;F;PERCHE;Anne-Lise;22/11/1973;DSV;Cadre de la fonction publique;Non;F;RUYSSCHAERT;Dominique;01/04/1971;Non +59;Nord;15;15ème circonscription;3;92;F;LANDTSHEERE;Caroline;06/06/1981;DVD;Profession libérale;Non;M;LENOIR;Jeremy;05/07/1975;Non +59;Nord;15;15ème circonscription;4;202;M;DIEUSAERT;Stephane;27/06/1970;LR;Agriculteur sur moyenne exploitation;Non;F;PETITPREZ;Ghislaine;25/08/1950;Non +59;Nord;15;15ème circonscription;5;98;M;DENEUCHE;Marc;30/09/1957;DVC;Profession libérale;Non;M;PERLEIN;Fabrice;13/01/1967;Non +59;Nord;15;15ème circonscription;6;142;M;LEDEZ;Stéphane;24/03/1963;DVC;Ingénieur et cadre technique d'entreprise;Non;M;BAHEU;Eddy;08/10/1969;Non +59;Nord;15;15ème circonscription;7;46;M;BERTELOOT;Pierrick;11/01/1999;RN;Employé de commerce;Non;M;PRINCE;Pascal;06/11/1956;Non +59;Nord;15;15ème circonscription;8;116;M;LAMÉRANT;Gaétan;08/11/1975;ECO;Employé civil et agent de service de la fonction publique;Non;F;DOBOSZ;Marjorie;18/08/1977;Non +59;Nord;15;15ème circonscription;9;166;M;NICOLET;Claude;20/05/1963;ENS;Cadre de la fonction publique;Non;F;BURGGRAEVE;Joëlle;12/10/1960;Non +59;Nord;15;15ème circonscription;10;188;M;DUYCK;Joël;17/12/1954;DVD;Ancien cadre;Non;F;BARROIS-GOBLET;Laurence;05/11/1956;Non +59;Nord;15;15ème circonscription;11;73;F;DUCOURANT;Emilie;24/11/1984;NUPES;Professeur, profession scientifique;Non;M;HOVINE;Pol;25/07/1987;Non +59;Nord;15;15ème circonscription;12;198;M;DARQUES;Jérôme;21/03/1968;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;JOLY;Dominique;15/11/1956;Non +59;Nord;15;15ème circonscription;13;57;F;LELEU;Aurélie;12/01/1982;REC;Employé administratif d'entreprise;Non;M;DUBAELE;Gildas;19/03/1983;Non +59;Nord;15;15ème circonscription;14;63;M;DUBIEZ;Benjamin;10/01/1979;DXG;Professeur, profession scientifique;Non;M;D'HULSTER;Jean-Pierre;21/02/1969;Non +59;Nord;16;16ème circonscription;1;2;M;STATHOULIAS;Antoine;17/12/1981;ECO;Profession libérale;Non;F;BONTEMPS;Camille;09/05/1992;Non +59;Nord;16;16ème circonscription;2;99;F;RYBAK;Chantal;12/09/1952;ENS;Cadre administratif et commercial d'entreprise;Non;M;WARUSFEL;Hugues;30/09/1968;Non +59;Nord;16;16ème circonscription;3;28;M;BRUNEEL;Alain;07/03/1952;NUPES;Ancien ouvrier;Oui;F;LUCAS;Maryline;13/07/1963;Non +59;Nord;16;16ème circonscription;4;75;M;MARCHIO;Matthieu;08/06/1993;RN;Cadre administratif et commercial d'entreprise;Non;F;LECLERC;Anne-Sophie;19/09/1972;Non +59;Nord;16;16ème circonscription;5;15;F;DORCHIES;Mady;05/12/1960;LR;Cadre administratif et commercial d'entreprise;Non;M;LEBRUN;Ludovic;20/07/1981;Non +59;Nord;16;16ème circonscription;6;161;F;ZAGACKI;Delphine;05/10/1983;RDG;Profession intermédiaire de la santé et du travail social;Non;F;BONNAFIL;Marie;24/11/1980;Non +59;Nord;16;16ème circonscription;7;6;M;PECQUEUR;Éric;03/08/1966;DXG;Ouvrier non qualifié de type industriel;Non;M;SZARZEC;Ludovic;31/08/1970;Non +59;Nord;16;16ème circonscription;8;110;M;ADRIENCENSE;Tanneguy;05/05/2002;REC;Elève, étudiant;Non;M;DELPORTE;Fabrice;26/08/1966;Non +59;Nord;17;17ème circonscription;1;23;M;DELANNOY;Christian;22/08/1954;DXG;Profession libérale;Non;F;DREVET;Michèle;22/02/1964;Non +59;Nord;17;17ème circonscription;2;133;F;MAMAN;Isabelle;10/02/1966;ECO;Commerçant et assimilé;Non;F;JAKUBOWSKI;Brigitte;15/11/1954;Non +59;Nord;17;17ème circonscription;3;124;M;GRANDIN;Cyril;04/11/1994;NUPES;Professeur, profession scientifique;Non;F;BOULAN;Patricia;22/06/1957;Non +59;Nord;17;17ème circonscription;4;169;F;NORREEL;Valérie;21/05/1969;REC;Cadre administratif et commercial d'entreprise;Non;M;KACZMAREK;Florian;06/07/1999;Non +59;Nord;17;17ème circonscription;5;194;F;GARAUD;Dominique;07/04/1955;DVD;Ancien cadre;Non;M;GRIVILLERS;Anthony;25/03/1986;Non +59;Nord;17;17ème circonscription;6;69;M;FRANCOIS;Thibaut;10/12/1989;RN;Cadre de la fonction publique;Non;F;DELFOSSE;Nadège;10/10/1969;Non +59;Nord;17;17ème circonscription;7;19;M;FLUCKIGER;Cédric;16/03/1976;DXG;Professeur, profession scientifique;Non;F;DUFRÉNOY;Marie-Anne;10/04/1959;Non +59;Nord;17;17ème circonscription;8;111;M;BRUNI;Thibault;18/02/1993;DSV;Contremaître, agent de maîtrise;Non;M;LE MEILLEUR;Kevin;29/04/1988;Non +59;Nord;17;17ème circonscription;9;203;M;BOULANT;Romain;10/01/1987;UDI;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;PARENT;Monique;24/08/1956;Non +59;Nord;17;17ème circonscription;10;67;M;HOUBRON;Dimitri;12/02/1991;ENS;Cadre de la fonction publique;Oui;F;BONTEMPS;Aurore;03/11/1984;Non +59;Nord;17;17ème circonscription;11;123;F;T'HOOFT;Marion;20/10/1986;RDG;Professeur, profession scientifique;Non;M;CAMBRAY;Cyril;14/03/1980;Non +59;Nord;17;17ème circonscription;12;49;M;FRYDMAN;Jean-Luc;26/08/1967;DIV;Commerçant et assimilé;Non;F;ROGER;Véronique;31/03/1973;Non +59;Nord;18;18ème circonscription;1;24;M;BRICOUT;Guy;18/02/1944;UDI;Ancien cadre;Oui;M;COOLZAET;Sébastien;30/03/1973;Non +59;Nord;18;18ème circonscription;2;159;F;MARÉCHAL;Stéphanie;26/09/1976;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;DEBAILLEUX;Geofrey;09/08/1998;Non +59;Nord;18;18ème circonscription;3;14;M;PHILIPPE;Gérard;20/01/1958;REC;Commerçant et assimilé;Non;F;LENOTTE;Sylvie;23/08/1971;Non +59;Nord;18;18ème circonscription;4;131;M;VILLAIN;Pierre-Antoine;30/11/1977;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;DAVOINE;Matthieu;21/06/1982;Non +59;Nord;18;18ème circonscription;5;195;M;DOLAY;Aurélien;06/11/1986;ECO;Professeur, profession scientifique;Non;F;HANOCQ;Cindy;02/07/1979;Non +59;Nord;18;18ème circonscription;6;90;M;LOYEZ;Philippe;19/03/1958;ENS;Ancien cadre;Non;F;TERLYNCK;Audrey;22/07/1985;Non +59;Nord;18;18ème circonscription;7;68;F;DISDIER;Mélanie;27/01/1974;RN;Commerçant et assimilé;Non;M;WATREMEZ;Pierre-Antoine;25/05/1995;Non +59;Nord;18;18ème circonscription;8;71;F;REYNAERT;Nadine;26/08/1960;DXG;Profession intermédiaire de la santé et du travail social;Non;M;THERY;Gautier;02/09/1987;Non +59;Nord;19;19ème circonscription;1;86;M;SOLOCH;Patrick;15/01/1958;NUPES;Ancien cadre;Non;F;CHOAIN;Isabelle;19/07/1960;Non +59;Nord;19;19ème circonscription;2;8;F;BOURLET;Cécile;04/05/1979;DXG;Employé administratif d'entreprise;Non;M;TEHAMI;Samy;21/04/1981;Non +59;Nord;19;19ème circonscription;3;179;M;DRICI;Djemi;21/10/1966;DVC;Profession libérale;Non;M;BECART;Mathieu;28/07/1985;Non +59;Nord;19;19ème circonscription;4;79;F;TROIA;Christine;31/03/1962;REC;Ancien employé;Non;M;DELOGE;Franck;24/03/1998;Non +59;Nord;19;19ème circonscription;5;45;M;CHENU;Sébastien;13/04/1973;RN;Cadre de la fonction publique;Oui;F;ANDRIS;Régine;18/07/1947;Non +59;Nord;19;19ème circonscription;6;126;M;RACZKIEWICZ;Bruno;26/08/1964;UDI;Professeur, profession scientifique;Non;F;CARLIER;Virginie;23/08/1976;Non +59;Nord;19;19ème circonscription;7;83;M;CHERRIER;Emmanuel;20/04/1970;ENS;Professeur, profession scientifique;Non;F;CARPENTIER-ROOTHAER;Amélie;10/04/1987;Non +59;Nord;19;19ème circonscription;8;186;M;DUQUENNE;Vincent;01/05/1974;ECO;Professeur, profession scientifique;Non;F;LAFFINEUR;Bella;30/06/1989;Non +59;Nord;20;20ème circonscription;1;122;M;PATEL;Rudy;14/12/1983;ECO;Employé civil et agent de service de la fonction publique;Non;F;BILLARD;Sabine;01/02/1985;Non +59;Nord;20;20ème circonscription;2;88;F;LASSERRE;Béatrice;18/07/1967;REC;Employé administratif d'entreprise;Non;M;SLABOLEPSZY;Dominique;20/06/1943;Non +59;Nord;20;20ème circonscription;3;177;F;HUON;Monique;28/10/1951;DVD;Ancien cadre;Non;M;LELONG;Corentin;04/05/1999;Non +59;Nord;20;20ème circonscription;4;60;M;FLORQUIN;Guillaume;04/05/1993;RN;Profession intermédiaire administrative de la fonction publique;Non;M;DRAPPIER;Sébastien;21/01/1974;Non +59;Nord;20;20ème circonscription;5;125;M;ROUSSEL;Fabien;16/04/1969;NUPES;Profession intermédiaire administrative de la fonction publique;Oui;F;VALEMBOIS;Mathilde;15/08/1990;Non +59;Nord;20;20ème circonscription;6;3;M;MOZDZIERZ;Dimitri;02/02/1982;DXG;Chauffeur;Non;F;POLLET;Stéphanie;19/01/1983;Non +59;Nord;20;20ème circonscription;7;101;F;ALEXANDRE;Delphine;28/05/1969;ENS;Professeur, profession scientifique;Non;M;KASPRZYK;Rémi;22/10/1986;Non +59;Nord;20;20ème circonscription;8;183;M;DUQUESNE;Bruno;07/03/1967;RDG;Professeur, profession scientifique;Non;M;ARNOULD;Frédéric;06/04/1974;Non +59;Nord;20;20ème circonscription;9;139;M;RENAUD;Éric;28/08/1960;DVG;Ancienne profession intermédiaire;Non;M;CZAPSKI;Julien;06/11/1981;Non +59;Nord;21;21ème circonscription;1;17;F;WEISSHAUPT;Edith;13/09/1972;DXG;Ouvrier non qualifié de type industriel;Non;M;ESMANS;Raynald;23/07/1965;Non +59;Nord;21;21ème circonscription;2;36;M;AUBRY;Ludovic;22/10/1988;ECO;Contremaître, agent de maîtrise;Non;M;ADAM;Benoit;05/04/1989;Non +59;Nord;21;21ème circonscription;3;100;F;DESCAMPS;Béatrice;24/04/1961;DVD;Professeur des écoles, instituteur et assimilé;Oui;M;CASTIGLIONE;Salvatore;18/02/1970;Non +59;Nord;21;21ème circonscription;4;181;F;SERRALTA;Elisabeth;06/09/1972;DSV;Personnel des services directs aux particuliers;Non;M;COFFIER;Christophe;12/06/1966;Non +59;Nord;21;21ème circonscription;5;32;M;LASSELIN;Laurent;02/05/1969;DVD;Employé civil et agent de service de la fonction publique;Non;F;BERTIEAUX;Annick;21/10/1954;Non +59;Nord;21;21ème circonscription;6;94;F;LAIRÉ;Corinne;20/11/1956;REC;Ancienne profession intermédiaire;Non;F;DUMINY;Séverine;16/07/1976;Non +59;Nord;21;21ème circonscription;7;127;F;TROADEC;Luce;01/12/1966;NUPES;Professeur, profession scientifique;Non;M;KOLEBACKI;Patrick;05/10/1964;Non +59;Nord;21;21ème circonscription;8;91;F;VALENTIN;Océane;15/04/1999;RN;Profession intermédiaire administrative de la fonction publique;Non;M;CULOT;Bertrand;14/11/1978;Non +60;Oise;01;1ère circonscription;1;46;F;LUNDY;Roxane;25/09/1995;NUPES;Cadre de la fonction publique;Non;M;AURY;Thierry;11/01/1961;Non +60;Oise;01;1ère circonscription;2;47;F;JOLY;Aurélie;20/08/1992;ENS;Cadre administratif et commercial d'entreprise;Non;M;CAGNARD;Marc;15/08/1953;Non +60;Oise;01;1ère circonscription;3;71;M;LEBOUCHER;Jimmy;19/06/1980;DSV;Ancien agriculteur exploitant;Non;F;PRUVOST;Dorine;09/04/1996;Non +60;Oise;01;1ère circonscription;4;34;M;MAGNIER;David;05/06/1972;RN;Contremaître, agent de maîtrise;Non;F;HANGARD;Elodie;15/07/1999;Non +60;Oise;01;1ère circonscription;5;24;M;CAVELIER;Lucien;03/08/1991;ECO;Profession intermédiaire de la santé et du travail social;Non;F;DEPARIS;Manon;23/04/1999;Non +60;Oise;01;1ère circonscription;6;36;M;FRUITIER;Jean-Philippe;16/09/1968;DXG;Employé civil et agent de service de la fonction publique;Non;F;FAUVILLE;Heidi;04/04/1979;Non +60;Oise;01;1ère circonscription;7;7;M;DEPRESLES;Norbert;02/03/1968;REC;Cadre administratif et commercial d'entreprise;Non;F;BENSEDDIK;Fatia;24/01/1981;Non +60;Oise;01;1ère circonscription;8;5;M;HABERT-DASSAULT;Victor;12/07/1992;LR;Profession libérale;Oui;F;CORDIER;Nicole;12/02/1948;Non +60;Oise;01;1ère circonscription;9;55;F;LATRASSE;Axelle;04/05/1980;ECO;Commerçant et assimilé;Non;M;LECLERC;Sylvain;16/03/1970;Non +60;Oise;02;2ème circonscription;1;50;M;REGNIER;Bastien;19/03/1996;DSV;Employé de commerce;Non;M;LEROY;Tanguy;02/06/2001;Non +60;Oise;02;2ème circonscription;2;48;M;CERVANTES;Guillaume;13/08/1976;DVG;Professeur des écoles, instituteur et assimilé;Non;M;FRAIGNEAU;Pierre;26/10/1999;Non +60;Oise;02;2ème circonscription;3;59;M;FOUGERE;Benjamin;27/10/1982;REC;Profession libérale;Non;M;RICHY;Julien;21/05/1998;Non +60;Oise;02;2ème circonscription;4;31;F;LEPERRE-VERRIER;Odile;18/10/1950;RDG;Ancien cadre;Non;M;PÉRIMONY;Patrick;10/05/1956;Non +60;Oise;02;2ème circonscription;5;51;F;PREVOT;Annick;08/05/1966;NUPES;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;TIGHAT;Ahmed;26/09/1981;Non +60;Oise;02;2ème circonscription;6;9;M;BALLARD;Philippe;24/11/1960;RN;Ancien cadre;Non;M;TURIN;Sébastien;19/07/1987;Non +60;Oise;02;2ème circonscription;7;2;F;HERBANNE;Chanez;11/03/1993;ENS;Employé administratif d'entreprise;Non;M;ESTIENNE;Jean-Pierre;27/10/1945;Non +60;Oise;02;2ème circonscription;8;53;F;THILL;Agnès;02/06/1964;UDI;Professeur des écoles, instituteur et assimilé;Oui;F;PICHARD;Hélène;24/07/1957;Non +60;Oise;02;2ème circonscription;9;35;F;POTCHTOVIK;Renée;22/09/1960;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;OLAGNIER;Boris;11/11/1962;Non +60;Oise;02;2ème circonscription;10;45;M;ROLS;Didier;11/03/1967;ECO;Contremaître, agent de maîtrise;Non;F;TADDEI;Alexandra;06/02/2000;Non +60;Oise;02;2ème circonscription;11;25;M;EL AIYATE;Mohamed;12/12/1966;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;BAPAUME;Mylène;24/03/1956;Non +60;Oise;02;2ème circonscription;12;67;M;LAGHRARI;Mohrad;23/08/1982;DVC;Commerçant et assimilé;Non;F;GARNIER;Kaoutheur;21/05/1965;Non +60;Oise;02;2ème circonscription;13;49;M;CASTANIÉ;Ludovic;31/10/1976;DVD;Profession libérale;Non;F;VERSCHUERE;Élodie;05/07/1988;Non +60;Oise;03;3ème circonscription;1;44;M;BOIS;Pascal;03/12/1959;ENS;Ancien cadre;Oui;F;COMBET;Anne-Laure;14/04/1981;Non +60;Oise;03;3ème circonscription;2;17;F;ROUSSEL;Julie;29/09/1990;REC;Profession intermédiaire de la santé et du travail social;Non;M;TRIFI;Julien;02/05/1983;Non +60;Oise;03;3ème circonscription;3;4;M;DIETRICH;Christophe;19/10/1971;LR;Policier et militaire;Non;F;LEDARD;Lydie;23/03/1968;Non +60;Oise;03;3ème circonscription;4;68;F;GRELA;Viridiana;09/02/1993;DSV;Profession libérale;Non;M;MEGROT;Fabrice;07/04/1970;Non +60;Oise;03;3ème circonscription;5;54;M;LUCAS;Johann;23/01/1984;DVG;Chef d'entreprise de 10 salariés ou plus;Non;M;BELMHAND;Brahim;20/03/1973;Non +60;Oise;03;3ème circonscription;6;65;M;BOUILLY GERONIMI;Maxime;01/07/1985;ECO;Profession libérale;Non;F;LÉGER;Chloé;21/12/1989;Non +60;Oise;03;3ème circonscription;7;19;M;SZPIRKO;Roland;15/03/1946;DXG;Ancien ouvrier;Non;F;PAMART;Aude;12/02/1978;Non +60;Oise;03;3ème circonscription;8;28;M;SABATOU;Alexandre;18/02/1993;RN;Cadre de la fonction publique;Non;F;PAOLETTI;Laëtitia;08/05/1986;Non +60;Oise;03;3ème circonscription;9;57;F;LABATUT;Valérie;23/11/1974;NUPES;Cadre de la fonction publique;Non;M;FRIADT;Guy;18/09/1962;Non +60;Oise;04;4ème circonscription;1;23;M;FABRE;Frédéric;25/03/1973;DXD;Policier et militaire;Non;M;FRAGMAN;Marc;27/10/1968;Non +60;Oise;04;4ème circonscription;2;64;M;DA SILVA MOREIRA;Pierre;09/06/1972;DSV;Artisan;Non;M;ROGEZ;Bernard;21/05/1953;Non +60;Oise;04;4ème circonscription;3;62;M;DUMONTIER;Arnaud;26/03/1973;LR;Cadre de la fonction publique;Non;F;VAN MOLLE;Corry;12/10/1954;Non +60;Oise;04;4ème circonscription;4;69;M;LANDWERLIN;Loïc;12/06/1991;DSV;Cadre administratif et commercial d'entreprise;Non;F;HOMERVILLE;Caroline;21/03/1973;Non +60;Oise;04;4ème circonscription;5;66;M;WOERTH;Eric;29/01/1956;ENS;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;F;LUDMANN;Véronique;17/03/1963;Non +60;Oise;04;4ème circonscription;6;22;M;MEESCHAERT;Laurent;25/06/1971;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;DOUCET;Marie;13/07/1995;Non +60;Oise;04;4ème circonscription;7;37;F;HAVEZ;Audrey;04/12/1976;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;F;ROUZIC;Valérie;30/06/1966;Non +60;Oise;04;4ème circonscription;8;61;M;NGABISSIO;Noël;19/11/1943;ECO;Professeur, profession scientifique;Non;M;SANTO;Sylvain;15/07/1953;Non +60;Oise;04;4ème circonscription;9;20;F;DASINI;Caroline;24/02/1969;DXG;Professeur, profession scientifique;Non;F;MEUBLAT;Valérie;23/02/1965;Non +60;Oise;04;4ème circonscription;10;42;M;BEDOSSA;Thierry;09/12/1964;ECO;Profession libérale;Non;F;GORINS;Elisa;14/05/1993;Non +60;Oise;04;4ème circonscription;11;70;M;BASSINOT;Xavier;19/02/1986;DVD;Contremaître, agent de maîtrise;Non;M;OLIVIER;Michel;10/12/1956;Non +60;Oise;04;4ème circonscription;12;13;M;ASSAMTI;Mohamed;09/08/1960;NUPES;Professeur, profession scientifique;Non;F;ARRAULT;Mélissa;11/08/2000;Non +60;Oise;04;4ème circonscription;13;32;F;REYNAL;Sophie;16/02/1972;DVC;Profession libérale;Non;M;KORELL;Christophe;11/07/1975;Non +60;Oise;05;5ème circonscription;1;11;F;BECHERINI;Hélène;09/08/1958;DXG;Professeur, profession scientifique;Non;M;DENIS;Xavier;28/07/1961;Non +60;Oise;05;5ème circonscription;2;8;F;LAMZOUDI;Myriam;23/10/1976;RN;Profession libérale;Non;M;AUBIGNY;Alain;21/03/1952;Non +60;Oise;05;5ème circonscription;3;58;M;BLANCHARD;Luc;14/10/1969;NUPES;Professeur, profession scientifique;Non;F;LIÉGEOIS;Marie;03/02/1978;Non +60;Oise;05;5ème circonscription;4;38;M;VATIN;Pierre;21/08/1967;LR;Cadre de la fonction publique;Oui;F;CARLIER;Danielle;20/09/1948;Non +60;Oise;05;5ème circonscription;5;40;F;HARRAY COHEN;Régine;01/09/1965;ECO;Professeur des écoles, instituteur et assimilé;Non;F;CAUX;Audrey;30/04/1981;Non +60;Oise;05;5ème circonscription;6;56;M;FERNANDES;Augusto;03/05/1964;DSV;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;LENGLEN;Michel;17/12/1993;Non +60;Oise;05;5ème circonscription;7;16;F;LANGLOIS-MEURINNE;Clary;30/04/1969;REC;Commerçant et assimilé;Non;M;GACHIGNARD;François;22/08/1971;Non +60;Oise;05;5ème circonscription;8;26;M;DIOT;Etienne;03/01/1985;ENS;Cadre administratif et commercial d'entreprise;Non;F;MONTREUIL;Sabine;01/09/1972;Non +60;Oise;06;6ème circonscription;1;15;F;ROGEZ;Véronique;17/03/1958;DSV;Profession libérale;Non;M;FILLAUD;Bertrand;21/03/1946;Non +60;Oise;06;6ème circonscription;2;63;F;ESCHERICH;Elisa;22/02/1983;ECO;Employé de commerce;Non;M;DUBOST;Jean-Jacques;07/01/1933;Non +60;Oise;06;6ème circonscription;3;12;F;FONTAINE;Anne-Sophie;04/06/1971;LR;Cadre de la fonction publique;Non;F;SCHWARZ;Sophie;09/01/1980;Non +60;Oise;06;6ème circonscription;4;6;M;IMBERT;Guy-Eric;24/05/1964;REC;Cadre de la fonction publique;Non;F;DUFOUR;Marie;02/10/1981;Non +60;Oise;06;6ème circonscription;5;41;F;IUNG;Nicole;15/01/1961;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;DRUAIS;Maryse;18/11/1952;Non +60;Oise;06;6ème circonscription;6;29;M;GUINIOT;Michel;29/11/1954;RN;Ancien cadre;Non;M;GAFFÉ;Vincent;07/11/1981;Non +60;Oise;06;6ème circonscription;7;10;M;ISKIN;Jean-Marc;15/07/1956;DXG;Ouvrier qualifié de type industriel;Non;F;LION;Béatrice;04/10/1950;Non +60;Oise;06;6ème circonscription;8;27;F;BUREAU-BONNARD;Carole;09/08/1965;ENS;Profession libérale;Oui;M;KAYA;Serdar;18/06/1991;Non +60;Oise;06;6ème circonscription;9;60;M;DUMOULIN;Florian;07/07/1999;NUPES;Profession libérale;Non;F;BEDOS;Marie-Pierre;28/08/1951;Non +60;Oise;06;6ème circonscription;10;30;M;MAB-BREKIESZ;Marc-Antoine;13/09/1984;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;PETITPAS-DE AZEVEDO;Sandra;09/07/1978;Non +60;Oise;07;7ème circonscription;1;14;F;ITALIANI;Florence;18/06/1954;REC;Ancienne profession intermédiaire;Non;M;BARBERY;Jean-Claude;30/07/1953;Non +60;Oise;07;7ème circonscription;2;43;F;BOILLET;Agnès;08/04/1962;ECO;Profession intermédiaire de la santé et du travail social;Non;F;SUCHET;Anais;14/03/1996;Non +60;Oise;07;7ème circonscription;3;3;M;MINOT;Maxime;20/07/1987;LR;Ancien employé;Oui;F;DIAS;Térésa;26/11/1974;Non +60;Oise;07;7ème circonscription;4;18;F;DINGIVAL;Agnès;26/05/1958;DXG;Employé civil et agent de service de la fonction publique;Non;M;VATINEL;Franck;27/10/1965;Non +60;Oise;07;7ème circonscription;5;72;M;ROUL;Daniel;31/10/1973;DSV;Cadre administratif et commercial d'entreprise;Non;F;GATEAU;Manon;21/12/1995;Non +60;Oise;07;7ème circonscription;6;33;F;VAN ELSUWE;Ophélie;11/10/1978;ENS;Commerçant et assimilé;Non;M;CARON;Didier;15/09/1959;Non +60;Oise;07;7ème circonscription;7;39;M;PEN;Loïc;29/12/1968;NUPES;Professeur, profession scientifique;Non;F;JAKOVLJEVIC;Mirjana;06/02/1963;Non +60;Oise;07;7ème circonscription;8;21;M;SZYSZKA;Tristan;07/07/1991;RN;Professeur des écoles, instituteur et assimilé;Non;M;FIQUET;Grégory;01/01/1977;Non +61;Orne;01;1ère circonscription;1;10;F;MAIGNAN;Myriam;23/07/1961;RN;Employé administratif d'entreprise;Non;M;GILBERT;Pascal;02/04/1963;Non +61;Orne;01;1ère circonscription;2;22;F;DUHARD;Marie-Annick;28/03/1952;ENS;Ancien cadre;Non;M;BOUCHÉ;Nicolas;06/03/1972;Non +61;Orne;01;1ère circonscription;3;26;M;LORAND-BRIONNE;Marc;07/05/1971;ECO;Chauffeur;Non;F;DUTOT;Patricia;10/03/1958;Non +61;Orne;01;1ère circonscription;4;5;M;PILOQUET;Oscar;24/07/1998;REC;Elève, étudiant;Non;M;HERBRETEAU;Raymond;16/09/1949;Non +61;Orne;01;1ère circonscription;5;15;F;JOURDAN;Chantal;02/09/1958;NUPES;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;M;SEBERT;Maxence;12/07/1990;Non +61;Orne;01;1ère circonscription;6;28;M;SOUL;Bernard;18/04/1953;LR;Ancienne profession intermédiaire;Non;F;DOUVRY;Sophie;29/03/1978;Non +61;Orne;01;1ère circonscription;7;9;F;FRÉVAL;Martine;05/08/1960;ECO;Ancien employé;Non;F;FLICHER;Isabelle;06/04/1962;Non +61;Orne;01;1ère circonscription;8;18;F;TESSIER;Florence;08/09/1954;DSV;Ancienne profession intermédiaire;Non;F;LE BERRE;Claire;01/03/1981;Non +61;Orne;01;1ère circonscription;9;4;F;LAPLASSE;Sylvie;30/06/1976;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;F;DE LA FERTE;Adélaïde;19/07/1998;Non +61;Orne;01;1ère circonscription;10;2;F;SÉCHET;Charlotte;18/03/1973;DXG;Professeur, profession scientifique;Non;M;TRUCHON;Luc;18/01/1964;Non +61;Orne;02;2ème circonscription;1;7;F;EL KHALEDI;Amale;08/07/1964;ENS;Commerçant et assimilé;Non;F;BARBIER;Flora;15/09/2002;Non +61;Orne;02;2ème circonscription;2;27;F;LOUWAGIE;Véronique;20/03/1961;LR;Profession libérale;Oui;M;LIGER;Thierry;27/05/1970;Non +61;Orne;02;2ème circonscription;3;14;M;DE BOURBON PARME;Amaury;30/10/1991;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;VIENNE;Gérard;03/02/1953;Non +61;Orne;02;2ème circonscription;4;20;M;MOUSSET;Denis;27/06/1961;DIV;Agriculteur sur moyenne exploitation;Non;F;GARCIA;Paula;14/08/1966;Non +61;Orne;02;2ème circonscription;5;21;F;BUSSIÈRE;Cécile;04/12/1982;NUPES;Profession libérale;Non;M;RISTIC;Pierre;13/12/1971;Non +61;Orne;02;2ème circonscription;6;19;F;MARIE;Sandrine;10/03/1967;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LATEUX;Pierre;20/04/1948;Non +61;Orne;02;2ème circonscription;7;16;F;VELLY;Bernadette;07/05/1967;DXG;Professeur, profession scientifique;Non;M;BIAGGINI;Alain;06/04/1952;Non +61;Orne;02;2ème circonscription;8;8;F;ANSQUER;Patricia;11/01/1956;ECO;Ancien employé;Non;F;REBINDAINE;Elodie;03/12/1982;Non +61;Orne;02;2ème circonscription;9;24;M;JOSEPH;Christophe;02/08/1964;DVG;Cadre de la fonction publique;Non;F;FRUCTUS;Jade;19/06/1989;Non +61;Orne;02;2ème circonscription;10;11;M;MOREL;Alexandre;15/05/1990;RN;Contremaître, agent de maîtrise;Non;M;LATINIER;Gérard;22/04/1959;Non +61;Orne;03;3ème circonscription;1;25;M;NURY;Jérôme;25/08/1972;LR;Cadre administratif et commercial d'entreprise;Oui;F;FOUCHER-CHAZÉ;Cendrine;14/10/1977;Non +61;Orne;03;3ème circonscription;2;23;M;BEAUMONT;Vincent;22/11/1956;DVC;Ancien cadre;Non;M;RABACHE;Gilles;31/08/1955;Non +61;Orne;03;3ème circonscription;3;17;F;GIBAULT;Solène;30/08/1994;ENS;Cadre administratif et commercial d'entreprise;Non;M;TERRÉ;Paul-Emilien;19/05/1987;Non +61;Orne;03;3ème circonscription;4;6;F;GAUER;Claire-Emmanuelle;27/01/1992;REC;Professeur, profession scientifique;Non;M;DEWILDE;Jean-François;11/11/1950;Non +61;Orne;03;3ème circonscription;5;30;M;YVER;Aymeric;22/12/1986;DSV;Profession intermédiaire de la santé et du travail social;Non;F;GRAULIER;Morgane;02/08/2000;Non +61;Orne;03;3ème circonscription;6;3;M;GAUTIER;Arnaud;11/03/1974;DXG;Professeur, profession scientifique;Non;M;CATHERINE;Pascal;26/11/1957;Non +61;Orne;03;3ème circonscription;7;12;M;FRÉMONT;Anthony;26/04/1980;RN;Agriculteur sur petite exploitation;Non;M;CLOUET;Guillaume;20/06/1991;Non +61;Orne;03;3ème circonscription;8;29;M;KHEMARI;Mehdi;21/05/1988;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;LEGUÉDÉ;Michelle;30/06/1949;Non +61;Orne;03;3ème circonscription;9;32;M;CLÉRIS;Marc;21/03/1966;DVC;Ingénieur et cadre technique d'entreprise;Non;F;SEASSAU;Magali;24/01/1980;Non +61;Orne;03;3ème circonscription;10;31;M;DURANDY;Didier;30/12/1945;DIV;Profession libérale;Non;F;DE GASTÉ;Donatienne;25/06/1981;Non +62;Pas-de-Calais;01;1ère circonscription;1;20;M;WIELGOSZ;Michel;24/09/1967;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;THOMAS;Laurence;22/10/1970;Non +62;Pas-de-Calais;01;1ère circonscription;2;24;M;DUVERGÉ;Bruno;03/04/1957;ENS;Ancien cadre;Oui;F;GAILLARD;Ingrid;29/12/1974;Non +62;Pas-de-Calais;01;1ère circonscription;3;28;F;BERTHOUD;Marie;30/11/1987;DXG;Employé civil et agent de service de la fonction publique;Non;M;RÉTHORÉ;Toussaint;03/09/1988;Non +62;Pas-de-Calais;01;1ère circonscription;4;81;F;ITEY;Liliane;07/12/1937;DVD;Ancien agriculteur exploitant;Non;M;LAMBIN;Hugues;17/12/1982;Non +62;Pas-de-Calais;01;1ère circonscription;5;100;M;FLAHAUT;Michel;01/06/1970;DVG;Technicien;Non;F;CIESLAK;Jocelyne;05/06/1951;Non +62;Pas-de-Calais;01;1ère circonscription;6;105;F;BERNARD;Marie;13/07/1982;LR;Professeur, profession scientifique;Non;M;YUX;Alain;17/07/1965;Non +62;Pas-de-Calais;01;1ère circonscription;7;106;M;CAGNACHE;Eric;23/07/1983;NUPES;Professeur, profession scientifique;Non;F;LECLUSE;Virginie;05/07/1974;Non +62;Pas-de-Calais;01;1ère circonscription;8;53;M;BLAIRY;Emmanuel;14/03/1986;RN;Contremaître, agent de maîtrise;Non;M;MOCQUANT;Gil;10/08/1983;Non +62;Pas-de-Calais;01;1ère circonscription;9;49;M;FOURNIER;Geoffrey;20/10/1990;REC;Cadre administratif et commercial d'entreprise;Non;F;CAUDRON;Agnès;24/02/1969;Non +62;Pas-de-Calais;02;2ème circonscription;1;51;F;LAPOUILLE;Emmanuelle;03/07/1970;LR;Cadre de la fonction publique;Non;M;DELAVAQUERIE;Melchior;03/05/1998;Non +62;Pas-de-Calais;02;2ème circonscription;2;83;M;HEUSÈLE;Alban;16/02/1981;RN;Profession intermédiaire administrative de la fonction publique;Non;M;DUCROUX;Thierry;16/11/1961;Non +62;Pas-de-Calais;02;2ème circonscription;3;102;F;RENGARD;Morgane;13/08/1999;NUPES;Elève, étudiant;Non;M;DUSSAUX;Charles-Harris;09/07/1989;Non +62;Pas-de-Calais;02;2ème circonscription;4;32;F;BOUFFART;Béatrice;23/01/1962;DXG;Ancienne profession intermédiaire;Non;M;BELHADJ;Abmajid;05/05/1959;Non +62;Pas-de-Calais;02;2ème circonscription;5;7;F;LOIR;Véronique;20/02/1956;DSV;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;THOMAS;Thérèse-Marie;09/03/1948;Non +62;Pas-de-Calais;02;2ème circonscription;6;52;F;GEORGET;Isabelle;21/05/1956;REC;Ancien cadre;Non;M;WATTRELOT;Benoît;20/07/1996;Non +62;Pas-de-Calais;02;2ème circonscription;7;116;M;PEUGNET;Sébastien;08/06/1980;DIV;Technicien;Non;M;PEYDECASTAING;David;07/01/1986;Non +62;Pas-de-Calais;02;2ème circonscription;8;16;F;ZAYONNET;Nathalie;10/01/1967;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;DECROIX;Géraldine;01/05/1967;Non +62;Pas-de-Calais;02;2ème circonscription;9;50;M;LADSOUS;Bruno;04/08/1956;ECO;Ancien cadre;Non;F;LEROY;Corinne;09/07/1965;Non +62;Pas-de-Calais;02;2ème circonscription;10;29;M;LA GRANGE;Philippe;30/10/1958;RDG;Ancien cadre;Non;F;GUENDOUZ;Malika;16/12/1973;Non +62;Pas-de-Calais;02;2ème circonscription;11;82;F;NAYET;Pauline;22/09/1985;DVG;Profession libérale;Non;F;KARBOWY;Sylvie;03/01/1961;Non +62;Pas-de-Calais;02;2ème circonscription;12;101;M;KOSBUR;Arnaud;04/07/1971;DIV;Profession intermédiaire de la santé et du travail social;Non;F;COPIN;Véronique;09/05/1966;Non +62;Pas-de-Calais;02;2ème circonscription;13;27;F;MAQUET;Jacqueline;13/05/1949;ENS;Ancien cadre;Oui;M;DESFACHELLE;Nicolas;13/07/1969;Non +62;Pas-de-Calais;03;3ème circonscription;1;84;F;FIEVET;Elodie;09/07/1985;REG;Employé administratif d'entreprise;Non;M;FIEVET;Frédéric;24/02/1979;Non +62;Pas-de-Calais;03;3ème circonscription;2;36;M;DESMARETZ;Arnaud;08/07/1972;RDG;Commerçant et assimilé;Non;F;CECAK;Carole;19/12/1964;Non +62;Pas-de-Calais;03;3ème circonscription;3;56;M;KAZNOWSKI;Guillaume;27/06/1988;REC;Employé civil et agent de service de la fonction publique;Non;F;KOVACS;Laurence;20/08/1979;Non +62;Pas-de-Calais;03;3ème circonscription;4;17;M;CAFLERS;Vincent;08/06/1967;DVD;Employé de commerce;Non;M;MULIER;Fabrice;02/05/1976;Non +62;Pas-de-Calais;03;3ème circonscription;5;9;M;DAMAY;Alexandre;22/03/1979;ECO;Employé civil et agent de service de la fonction publique;Non;F;VINCKE;Cindy;16/03/1985;Non +62;Pas-de-Calais;03;3ème circonscription;6;34;M;DARRAS;Michel;25/01/1956;DXG;Ancien ouvrier;Non;M;GERIN;Jérôme;06/08/1969;Non +62;Pas-de-Calais;03;3ème circonscription;7;103;M;TELLIER;Jean-Marc;23/08/1969;NUPES;Ancien cadre;Non;F;HOCHART;Donata;07/07/1954;Non +62;Pas-de-Calais;03;3ème circonscription;8;54;M;BAYS;Nicolas;01/05/1977;ENS;Cadre de la fonction publique;Non;M;LACHOR;Yoann;17/01/1976;Non +62;Pas-de-Calais;03;3ème circonscription;9;38;M;CLAVET;Bruno;06/05/1989;RN;Cadre de la fonction publique;Non;F;PIJANOWSKI;Nathalie;13/01/1972;Non +62;Pas-de-Calais;03;3ème circonscription;10;112;F;LAMBRE;Claudine;04/10/1962;LR;Profession intermédiaire de la santé et du travail social;Non;M;PIAT;Guy;03/09/1945;Non +62;Pas-de-Calais;04;4ème circonscription;1;42;M;HERICOURT;Dominique;11/03/1955;DXG;Ancienne profession intermédiaire;Non;M;MACQUET;Patrick;29/11/1959;Non +62;Pas-de-Calais;04;4ème circonscription;2;5;M;ANDREAU;Jean-Michel;24/05/1956;DSV;Ingénieur et cadre technique d'entreprise;Non;F;MARCONI;Valérie;09/10/1969;Non +62;Pas-de-Calais;04;4ème circonscription;3;123;F;DELATTRE;Karen;09/02/1965;DXG;Personnel des services directs aux particuliers;Non;M;LAUTOUR;Jérémy;22/12/1982;Non +62;Pas-de-Calais;04;4ème circonscription;4;58;M;SERGENT;David;20/02/1971;REC;Ingénieur et cadre technique d'entreprise;Non;M;STEEGMANS;Franck;15/06/1964;Non +62;Pas-de-Calais;04;4ème circonscription;5;94;F;VANPEENE;Françoise;06/04/1965;RN;Profession libérale;Non;M;DEPRES;Nicolas;08/04/2000;Non +62;Pas-de-Calais;04;4ème circonscription;6;2;M;FAIT;Philippe;24/06/1969;ENS;Professeur des écoles, instituteur et assimilé;Non;F;DEFOSSE;Annie;05/01/1954;Non +62;Pas-de-Calais;04;4ème circonscription;7;61;M;HOFF;Mervyn;05/05/1993;DXD;Artisan;Non;F;MARQUANT;Sylviane;15/12/1979;Non +62;Pas-de-Calais;04;4ème circonscription;8;59;F;BONVOISIN;Mary;21/06/1974;LR;Cadre de la fonction publique;Non;M;TETARD;Ghislain;28/12/1952;Non +62;Pas-de-Calais;04;4ème circonscription;9;21;F;AMEYE;Evelyne;29/09/1963;ECO;Profession libérale;Non;F;LEROY;Caroline;21/05/1989;Non +62;Pas-de-Calais;04;4ème circonscription;10;40;F;DRAIN;Blandine;26/02/1977;NUPES;Professeur, profession scientifique;Non;M;FILIPPI;Florent;27/05/1972;Non +62;Pas-de-Calais;05;5ème circonscription;1;127;F;HINGREZ-CEREDA;Mireille;14/05/1969;DVG;Professeur, profession scientifique;Non;M;CUVILLIER;Frédéric;09/12/1968;Non +62;Pas-de-Calais;05;5ème circonscription;2;86;M;GOLLIOT;Antoine;13/08/1985;RN;Technicien;Non;M;PAMART;Thomas;06/12/1972;Non +62;Pas-de-Calais;05;5ème circonscription;3;31;M;CARRAUD;Olivier;18/02/1979;DXG;Professeur, profession scientifique;Non;M;LANGLET;Pierre;01/02/1974;Non +62;Pas-de-Calais;05;5ème circonscription;4;62;F;LUCIEN;Emeline;14/09/1998;REC;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;PELTIER;Pierre;17/06/1998;Non +62;Pas-de-Calais;05;5ème circonscription;5;97;M;PONT;Jean-Pierre;09/05/1950;ENS;Profession libérale;Oui;F;DERAM;Sandrine;21/09/1983;Non +62;Pas-de-Calais;05;5ème circonscription;6;12;F;BÉLART;Nancy;06/07/1963;NUPES;Ancienne profession intermédiaire;Non;M;LECARPENTIER;Jérémy;02/07/1997;Non +62;Pas-de-Calais;05;5ème circonscription;7;18;M;BLANCKAERT;Christophe;22/04/1969;ECO;Profession libérale;Non;F;LEFEBVRE;Stéphanie;18/12/1974;Non +62;Pas-de-Calais;05;5ème circonscription;8;85;F;DELBART;Géraldine;18/11/1990;DVD;Professeur des écoles, instituteur et assimilé;Non;M;VIUDES;Jean-Luc;25/06/1966;Non +62;Pas-de-Calais;06;6ème circonscription;1;111;M;LOIRE-RÉNIER;Terry;25/03/2003;REG;Elève, étudiant;Non;F;BAYRAM;Ceyda;25/06/2003;Non +62;Pas-de-Calais;06;6ème circonscription;2;95;F;ENGRAND;Christine;07/05/1955;RN;Cadre administratif et commercial d'entreprise;Non;M;FASQUELLE;Cédric;02/05/1983;Non +62;Pas-de-Calais;06;6ème circonscription;3;26;F;BOURGUIGNON;Brigitte;21/03/1959;ENS;Cadre de la fonction publique;Non;M;LEROY;Christian;23/01/1966;Non +62;Pas-de-Calais;06;6ème circonscription;4;87;M;ERCKELBOUDT;Simon;28/07/2000;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;WOETS;Didier;02/05/1982;Non +62;Pas-de-Calais;06;6ème circonscription;5;15;M;LEBECQ;Pascal;06/11/1959;NUPES;Artisan;Non;F;VIANDIER;Alexandra;16/02/1993;Non +62;Pas-de-Calais;06;6ème circonscription;6;14;F;MALIAR;Faustine;07/06/1995;LR;Cadre de la fonction publique;Non;M;DEBOVE;Gilles;14/10/1968;Non +62;Pas-de-Calais;06;6ème circonscription;7;128;F;DUVIEUBOURG;Patricia;17/09/1958;DVG;Ancien employé;Non;M;JOSSIEN;Jérôme;27/07/1969;Non +62;Pas-de-Calais;06;6ème circonscription;8;65;M;JUDEK;Jérôme;30/08/1980;REC;Ingénieur et cadre technique d'entreprise;Non;F;FASSILIS;Helena;11/09/1999;Non +62;Pas-de-Calais;06;6ème circonscription;9;4;F;BOUREL;Vanessa;08/09/1987;ECO;Profession intermédiaire de la santé et du travail social;Non;F;BAUDELET;Elisabeth;23/11/1968;Non +62;Pas-de-Calais;06;6ème circonscription;10;33;F;BOUREL;Laure;16/03/1965;DXG;Professeur, profession scientifique;Non;M;WALLARD;Jean-Paul;22/12/1960;Non +62;Pas-de-Calais;06;6ème circonscription;11;117;F;BLAUWART;Claudine;25/04/1943;DSV;Ancien cadre;Non;M;DUCATEZ;Jean-Luc;12/07/1959;Non +62;Pas-de-Calais;07;7ème circonscription;1;69;M;DESCAMPS;François;17/01/1964;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;LELEU;Myriam;03/11/1976;Non +62;Pas-de-Calais;07;7ème circonscription;2;37;M;MOUSSALLY;Jean-Pierre;01/09/1971;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;ROTAR;Brigitte;18/07/1960;Non +62;Pas-de-Calais;07;7ème circonscription;3;107;F;FATOUX;Isabelle;17/05/1953;DXG;Professeur des écoles, instituteur et assimilé;Non;M;VINCENOT;Dominique;24/01/1973;Non +62;Pas-de-Calais;07;7ème circonscription;4;22;F;NISZCZOTA;Dominique;07/10/1963;ECO;Profession intermédiaire de la santé et du travail social;Non;M;NISZCZOTA;Bastian;19/12/1996;Non +62;Pas-de-Calais;07;7ème circonscription;5;88;F;LEPRETRE;Laurence;16/04/1966;DVD;Ouvrier qualifié de type industriel;Non;M;PENIN;Bruno;29/07/1966;Non +62;Pas-de-Calais;07;7ème circonscription;6;25;M;DUMONT;Pierre-Henri;07/10/1987;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;LEBLOND;Edwige;14/02/1964;Non +62;Pas-de-Calais;07;7ème circonscription;7;39;M;DE FLEURIAN;Marc;07/02/1989;RN;Cadre de la fonction publique;Non;F;CRÉBOUW;Aurélie;23/07/1980;Non +62;Pas-de-Calais;07;7ème circonscription;8;35;M;VASSEUR;Philippe;12/02/1957;RDG;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;SIMONET;Sylvie;27/03/1965;Non +62;Pas-de-Calais;07;7ème circonscription;9;67;M;WAROCZYK;Henri;09/07/1951;ENS;Ancien cadre;Non;F;FONTAINE;Janique;28/06/1965;Non +62;Pas-de-Calais;07;7ème circonscription;10;66;M;BERTELOOT;Frédéric;10/01/1964;REC;Artisan;Non;F;SANTIN;Valérie;26/06/1966;Non +62;Pas-de-Calais;07;7ème circonscription;11;89;F;MILLOT;Françoise;04/08/1952;DXG;Ancienne profession intermédiaire;Non;M;LETREN;Didier;21/07/1955;Non +62;Pas-de-Calais;08;8ème circonscription;1;90;M;EVRARD;Auguste;04/05/2000;RN;Cadre de la fonction publique;Non;F;HELIE;Séverine;18/04/1979;Non +62;Pas-de-Calais;08;8ème circonscription;2;122;M;CARON;Philippe;05/04/1952;UDI;Ancien cadre;Non;F;BIALON;Perrine;16/11/1983;Non +62;Pas-de-Calais;08;8ème circonscription;3;108;M;ROUSSEL;Simon;02/01/1991;NUPES;Employé administratif d'entreprise;Non;F;FAYEULLE;Hélène;08/03/1984;Non +62;Pas-de-Calais;08;8ème circonscription;4;11;F;VANDOMME;Laura;12/02/1987;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;MONIEZ;Stéphane;07/08/1969;Non +62;Pas-de-Calais;08;8ème circonscription;5;68;F;MAYAUD;Aude;21/06/1987;REC;Ingénieur et cadre technique d'entreprise;Non;M;WEBER;Jérémie;19/07/2000;Non +62;Pas-de-Calais;08;8ème circonscription;6;30;M;POTTERIE;Benoît;23/07/1967;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;DIERS;Véronique;25/12/1970;Non +62;Pas-de-Calais;08;8ème circonscription;7;70;M;BAYARD;Frédéric;23/09/1973;DSV;Ingénieur et cadre technique d'entreprise;Non;M;VROELANT;Stéphane;03/02/1968;Non +62;Pas-de-Calais;08;8ème circonscription;8;91;F;SACHOT;Marie-Denise;18/04/1951;DVD;Ancien employé;Non;M;LEURS;Jacques;16/03/1959;Non +62;Pas-de-Calais;08;8ème circonscription;9;23;M;PETIT;Bertrand;28/08/1964;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;HOCQ;René;23/11/1951;Non +62;Pas-de-Calais;08;8ème circonscription;10;41;M;ZANNIS;Etienne;13/08/1990;DXG;Professeur, profession scientifique;Non;F;LEGRAND;Valérie;14/09/1974;Non +62;Pas-de-Calais;09;9ème circonscription;1;43;M;ELAZOUZI;Hakim;23/08/1986;UDI;Cadre de la fonction publique;Non;M;DEBAS;Grégory;03/08/1975;Non +62;Pas-de-Calais;09;9ème circonscription;2;63;F;JUDEK;Fanny;16/09/1989;REC;Employé civil et agent de service de la fonction publique;Non;M;CAILLIAUX;Axel;17/10/1974;Non +62;Pas-de-Calais;09;9ème circonscription;3;45;F;MATTON;Charlotte;16/05/1978;DSV;Profession libérale;Non;F;DELEBARRE;Véronique;02/09/1978;Non +62;Pas-de-Calais;09;9ème circonscription;4;96;M;BAÏK;Abdellah;13/12/1964;ECO;Professeur, profession scientifique;Non;F;QUENIART;Géraldine;04/05/1967;Non +62;Pas-de-Calais;09;9ème circonscription;5;46;F;DEFLANDRE;Anne-Marie;27/02/1956;DXG;Ancien employé;Non;M;LALOUX;Grégory;14/02/1978;Non +62;Pas-de-Calais;09;9ème circonscription;6;92;M;BRASSEUR;Valentin;22/11/1996;DIV;Profession intermédiaire de la santé et du travail social;Non;F;PETIT;Christelle;21/01/1975;Non +62;Pas-de-Calais;09;9ème circonscription;7;10;F;BONIFACIO;Amandine;03/10/1990;NUPES;Employé administratif d'entreprise;Non;M;TRACHÉ;Daniel;09/07/1963;Non +62;Pas-de-Calais;09;9ème circonscription;8;64;M;PINCHON;Matthieu;01/12/1978;DVD;Ingénieur et cadre technique d'entreprise;Non;M;DUPONT;Laurent;20/03/1973;Non +62;Pas-de-Calais;09;9ème circonscription;9;98;F;DEPREZ-AUDEBERT;Marguerite;17/05/1952;ENS;Ancien cadre;Oui;M;THOREZ;Jean-Claude;14/04/1954;Non +62;Pas-de-Calais;09;9ème circonscription;10;109;F;FELLAHA;Zaïna;15/02/1980;DIV;Profession intermédiaire de la santé et du travail social;Non;M;SOFIANE;Ali;13/03/1982;Non +62;Pas-de-Calais;09;9ème circonscription;11;44;F;PARMENTIER;Caroline;16/12/1965;RN;Profession intermédiaire administrative de la fonction publique;Non;M;MAESEELE;Alexandre;13/08/1997;Non +62;Pas-de-Calais;09;9ème circonscription;12;124;M;SAINT-ANDRÉ;Stéphane;21/05/1964;DVG;Cadre administratif et commercial d'entreprise;Non;M;ANDRIES;Lucien;10/01/1937;Non +62;Pas-de-Calais;09;9ème circonscription;13;113;F;MARTIN;Corinne;04/02/1958;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;SASIELA;Marie;09/12/1990;Non +62;Pas-de-Calais;09;9ème circonscription;14;48;M;DELAIRE;Jacques;23/03/1951;DXD;Ancien employé;Non;F;DETRAIT;Jocelyne;23/06/1948;Non +62;Pas-de-Calais;09;9ème circonscription;15;118;M;GUAQUIER;Julien;23/03/1994;DIV;Employé administratif d'entreprise;Non;F;BOURDON;Sylvie;18/12/1966;Non +62;Pas-de-Calais;10;10ème circonscription;1;120;F;VANTOUROUX;Françoise;07/06/1949;LR;Ancien cadre;Non;M;CASTELAIN;Daniel;05/07/1973;Non +62;Pas-de-Calais;10;10ème circonscription;2;47;F;RUS;Ludivine;05/10/1983;RDG;Employé civil et agent de service de la fonction publique;Non;M;EDOUARD;Eric;03/08/1964;Non +62;Pas-de-Calais;10;10ème circonscription;3;99;M;DAGBERT;Michel;28/01/1962;ENS;Employé civil et agent de service de la fonction publique;Non;F;DECOURCELLE;Catherine;29/07/1964;Non +62;Pas-de-Calais;10;10ème circonscription;4;125;M;MAJORCZYK;Rémy;04/12/1990;DIV;Employé de commerce;Non;M;DUQUESNOY;Thomas;03/01/1991;Non +62;Pas-de-Calais;10;10ème circonscription;5;60;F;HOUPLAIN;Myriane;05/06/1946;REC;Ancien employé;Oui;F;LEFEBVRE;Elissa;19/05/1998;Non +62;Pas-de-Calais;10;10ème circonscription;6;72;M;CAPPE;Florent;20/03/1968;DSV;Professeur, profession scientifique;Non;M;HOCHART;Sébastien;01/01/1977;Non +62;Pas-de-Calais;10;10ème circonscription;7;71;F;COQUERIE;Sandrine;02/04/1966;NUPES;Profession intermédiaire administrative de la fonction publique;Non;M;KIEBA;Jordan;27/07/2002;Non +62;Pas-de-Calais;10;10ème circonscription;8;119;F;LEU;Noémie;27/09/1999;DVD;Elève, étudiant;Non;M;TEINTENIER;Marc;24/11/1999;Non +62;Pas-de-Calais;10;10ème circonscription;9;104;M;FRAPPÉ;Thierry;23/05/1952;RN;Profession libérale;Non;M;PAJOT;Ludovic;18/11/1993;Non +62;Pas-de-Calais;10;10ème circonscription;10;19;M;LALOUX;Geoffrey;29/03/1982;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;VAHÉ;Céline;02/06/1973;Non +62;Pas-de-Calais;10;10ème circonscription;11;114;M;CARINCOTTE;Davy;14/10/1981;ECO;Elève, étudiant;Non;F;ANTOINE;Julie;09/05/1987;Non +62;Pas-de-Calais;11;11ème circonscription;1;13;F;CARON;Léa;11/03/1992;ECO;Contremaître, agent de maîtrise;Non;M;FRADJ;Patrick;11/03/1992;Non +62;Pas-de-Calais;11;11ème circonscription;2;73;F;GAI;Dominique;07/09/1962;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;LORENTE;Jean;07/03/1961;Non +62;Pas-de-Calais;11;11ème circonscription;3;8;M;WEINMANN;Gautier;11/03/1983;DXG;Cadre de la fonction publique;Non;F;SOLTYSIAK;Katia;15/11/1971;Non +62;Pas-de-Calais;11;11ème circonscription;4;121;M;LEGRAND;Maxime;02/07/1975;RDG;Chef d'entreprise de 10 salariés ou plus;Non;M;HARDUIN;Stéphane;14/05/1975;Non +62;Pas-de-Calais;11;11ème circonscription;5;55;F;LE PEN;Marine;05/08/1968;RN;Profession libérale;Oui;M;BRIOIS;Steeve;28/11/1972;Non +62;Pas-de-Calais;11;11ème circonscription;6;115;F;TONDELIER;Marine;23/08/1986;NUPES;Cadre administratif et commercial d'entreprise;Non;F;YOSBERGUE;Cécile;16/11/1983;Non +62;Pas-de-Calais;11;11ème circonscription;7;110;M;RAÏSS;Lahcen;11/03/1978;DIV;Employé civil et agent de service de la fonction publique;Non;M;BARAKA;Yanis;30/06/1992;Non +62;Pas-de-Calais;11;11ème circonscription;8;93;F;TASZAREK;Anne-Sophie;02/09/1986;UDI;Commerçant et assimilé;Non;M;DUQUESNE;Francis;17/12/1964;Non +62;Pas-de-Calais;11;11ème circonscription;9;74;F;PINTUS;Alexandrine;11/09/1991;ENS;Contremaître, agent de maîtrise;Non;F;BARLET;Stéphanie;26/12/1975;Non +62;Pas-de-Calais;12;12ème circonscription;1;80;M;DE CARRION;Alain;30/10/1965;RDG;Ancien artisan, commerçant, chef d'entreprise;Non;F;DA SILVA;Inès;14/01/1975;Non +62;Pas-de-Calais;12;12ème circonscription;2;3;M;VAN LIERDE;Christophe;04/02/1963;DXG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;TILLIER;Pascale;31/07/1958;Non +62;Pas-de-Calais;12;12ème circonscription;3;75;M;DEBRUYNE;Patrick;12/08/1976;ENS;Cadre de la fonction publique;Non;F;MELLIN;Sophie;17/09/1960;Non +62;Pas-de-Calais;12;12ème circonscription;4;79;F;DANJOU;Emmanuelle;17/01/1967;REC;Cadre administratif et commercial d'entreprise;Non;M;FLAMENT;Alexis;07/07/1991;Non +62;Pas-de-Calais;12;12ème circonscription;5;77;M;PETIT;Matthieu;20/04/1977;DSV;Employé civil et agent de service de la fonction publique;Non;F;ROSIAUX;Vanessa;03/12/1981;Non +62;Pas-de-Calais;12;12ème circonscription;6;6;M;DARRAS;Jérôme;30/10/1957;NUPES;Ancien cadre;Non;F;BUISSETTE;Christelle;30/04/1976;Non +62;Pas-de-Calais;12;12ème circonscription;7;126;F;BELOT;Martine;23/12/1955;LR;Ancien artisan, commerçant, chef d'entreprise;Non;M;LANOY;Michel;07/12/1964;Non +62;Pas-de-Calais;12;12ème circonscription;8;78;M;SCHEENAERTS;Régis;02/12/1963;DXG;Ouvrier qualifié de type industriel;Non;M;BERNARD;Eric;15/12/1963;Non +62;Pas-de-Calais;12;12ème circonscription;9;57;M;BILDE;Bruno;22/09/1976;RN;Profession libérale;Oui;F;MELONI;Caroline;21/01/1982;Non +62;Pas-de-Calais;12;12ème circonscription;10;76;M;AIT MOUSSA;Abdellah;02/07/1976;DIV;Chauffeur;Non;F;BLAMOU;Nadia;31/07/1977;Non +63;Puy-de-Dôme;01;1ère circonscription;1;47;M;BOUZID;Chrif;24/09/1968;DVG;Profession intermédiaire de la santé et du travail social;Non;F;ROUX-DOMINGET;Nathalie;01/03/1969;Non +63;Puy-de-Dôme;01;1ère circonscription;2;40;M;OLIVER;Xavier;22/12/1968;REC;Profession libérale;Non;M;DALAN;Alain;21/11/1951;Non +63;Puy-de-Dôme;01;1ère circonscription;3;30;F;MAXIMI;Marianne;13/11/1985;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;LANDIVAR;Diego;26/09/1981;Non +63;Puy-de-Dôme;01;1ère circonscription;4;39;M;FAUCHEUX;Patrice;15/06/1954;DXG;Ancien employé;Non;F;BODIN;Martine;21/11/1956;Non +63;Puy-de-Dôme;01;1ère circonscription;5;52;M;HECQUET;Laurent;25/09/1967;DVG;Ingénieur et cadre technique d'entreprise;Non;M;JOLLES;Simon;01/12/1982;Non +63;Puy-de-Dôme;01;1ère circonscription;6;5;M;LECLAIR;Dominique;16/05/1965;DXG;Technicien;Non;F;JUÉRY;Catherine;19/11/1954;Non +63;Puy-de-Dôme;01;1ère circonscription;7;15;F;BISCOS;Anne;09/01/1968;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;OUADAH;Yanis;22/03/2003;Non +63;Puy-de-Dôme;01;1ère circonscription;8;48;M;CAPOLINO;Maël;25/12/2000;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CHÂTEAU-ANNAUD;Sarah;06/11/1998;Non +63;Puy-de-Dôme;01;1ère circonscription;9;12;F;DE FRANCESCO;Aurélie;08/07/1977;ECO;Chauffeur;Non;M;REINHARD;Pierre;14/01/1948;Non +63;Puy-de-Dôme;01;1ère circonscription;10;37;M;GALPIER;Sébastien;26/07/1988;LR;Profession libérale;Non;M;CHABRILLAT;Antoine;22/03/1999;Non +63;Puy-de-Dôme;01;1ère circonscription;11;36;F;THOMAS;Valérie;21/01/1968;ENS;Profession libérale;Oui;M;LAVOCAT;Guy;14/02/1963;Non +63;Puy-de-Dôme;02;2ème circonscription;1;7;F;PIRÈS BEAUNE;Christine;06/10/1964;NUPES;Cadre de la fonction publique;Oui;M;BARÉ;Michaël;16/05/1975;Non +63;Puy-de-Dôme;02;2ème circonscription;2;32;F;MONNET;Karina;25/09/1978;ENS;Cadre de la fonction publique;Non;M;SOLA;Guilhem;30/06/1970;Non +63;Puy-de-Dôme;02;2ème circonscription;3;44;F;LACOMBE;Marie-Paule;08/04/1964;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BEAUSSARON;Joseph;13/10/1944;Non +63;Puy-de-Dôme;02;2ème circonscription;4;18;F;DUPRÉ;Isabelle;18/06/1956;RN;Ancien employé;Non;M;BONNEFOY;Claude;05/09/1974;Non +63;Puy-de-Dôme;02;2ème circonscription;5;41;M;BERTHON;Kenny;07/03/1980;DVG;Cadre de la fonction publique;Non;M;GAILLARD;Jean-Michel;16/12/1986;Non +63;Puy-de-Dôme;02;2ème circonscription;6;21;M;DURIN;Sylvain;12/09/1977;LR;Employé civil et agent de service de la fonction publique;Non;F;ROUSSEL;Sandrine;09/11/1965;Non +63;Puy-de-Dôme;02;2ème circonscription;7;11;F;FREZOULS-LE PONT;Nicole;09/02/1958;ECO;Ancien cadre;Non;M;GIMENEZ;Max;14/04/1948;Non +63;Puy-de-Dôme;02;2ème circonscription;8;34;M;FÉLIX;Jean-Pierre;13/05/1948;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;F;GONCALVES;Marie;03/09/1968;Non +63;Puy-de-Dôme;02;2ème circonscription;9;26;M;CHABRIER;Aurélien;13/12/1989;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PAGÈS;Philippe;20/10/1964;Non +63;Puy-de-Dôme;02;2ème circonscription;10;3;M;TRUCHON;Franck;19/09/1963;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;SIMONET;Ivan;03/06/1969;Non +63;Puy-de-Dôme;03;3ème circonscription;1;50;F;WATREMEZ;Élisabeth;18/06/1961;DVD;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;MERLE;Jean Marc;04/03/1958;Non +63;Puy-de-Dôme;03;3ème circonscription;2;2;F;SAVRE;Marie;27/08/1971;DXG;Profession intermédiaire de la santé et du travail social;Non;M;MAINVILLE;Frédéric;20/05/1990;Non +63;Puy-de-Dôme;03;3ème circonscription;3;24;F;BATISSON;Françoise;27/01/1957;RN;Ancien employé;Non;M;HUGUET;Pascal;25/05/1959;Non +63;Puy-de-Dôme;03;3ème circonscription;4;27;F;HENRY;Mathilde;26/06/1996;REC;Ingénieur et cadre technique d'entreprise;Non;M;AIBY;Marc;31/08/1970;Non +63;Puy-de-Dôme;03;3ème circonscription;5;19;M;BONY;Richard;19/02/1972;DVG;Employé civil et agent de service de la fonction publique;Non;M;MANRY;Christian;07/05/1955;Non +63;Puy-de-Dôme;03;3ème circonscription;6;35;M;BONNET;Nicolas;11/02/1981;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;CROZET;Elisabeth;10/08/1976;Non +63;Puy-de-Dôme;03;3ème circonscription;7;20;F;LAVIER;Sophie;12/05/1967;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;F;MICHEL;Catherine;25/11/1954;Non +63;Puy-de-Dôme;03;3ème circonscription;8;23;F;LHERMET;Florence;05/06/1968;RDG;Ingénieur et cadre technique d'entreprise;Non;M;MEALLET;Roger Jean;03/03/1956;Non +63;Puy-de-Dôme;03;3ème circonscription;9;16;M;OTHILY;Cédic;08/09/1970;ECO;Commerçant et assimilé;Non;F;PALAO;Virginie;03/01/1979;Non +63;Puy-de-Dôme;03;3ème circonscription;10;8;F;MARCHIS;Marie-Anne;30/03/1967;LR;Profession intermédiaire administrative de la fonction publique;Non;M;MERCIER;Alain;04/12/1957;Non +63;Puy-de-Dôme;03;3ème circonscription;11;28;F;VICHNIEVSKY;Laurence;05/02/1955;ENS;Ancien cadre;Oui;M;FOUROT;Olivier;12/08/1963;Non +63;Puy-de-Dôme;04;4ème circonscription;1;29;F;GOLÉO;Valérie;17/12/1968;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BIDET;Alain;09/07/1964;Non +63;Puy-de-Dôme;04;4ème circonscription;2;25;F;SANCHEZ;Pascale;17/05/1960;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;PETIT;Clément;03/02/1992;Non +63;Puy-de-Dôme;04;4ème circonscription;3;10;F;CHAVROCHE;Isabelle;25/10/1962;ECO;Ancienne profession intermédiaire;Non;F;ROUSSEAU;Ingrid;17/10/1960;Non +63;Puy-de-Dôme;04;4ème circonscription;4;45;F;HÉNOUX;Béatrice;11/06/1966;DSV;Artisan;Non;M;MASCLET;Mathias;27/11/1986;Non +63;Puy-de-Dôme;04;4ème circonscription;5;46;F;LINGEMANN;Delphine;14/11/1972;ENS;Profession libérale;Non;M;POINSOT;Christian;12/12/1960;Non +63;Puy-de-Dôme;04;4ème circonscription;6;14;M;BRULÉ;Didier;27/08/1959;RN;Technicien;Non;M;LIMET;Anthony;16/07/1987;Non +63;Puy-de-Dôme;04;4ème circonscription;7;6;M;MAROTTE;François;24/11/1989;DXG;Employé de commerce;Non;M;DUFOUR;Claude;13/03/1954;Non +63;Puy-de-Dôme;04;4ème circonscription;8;51;M;PRADIER;Laurent;26/09/1964;RDG;Agriculteur sur petite exploitation;Non;F;MAHOUDEAUX;Gaelle;22/08/1967;Non +63;Puy-de-Dôme;04;4ème circonscription;10;22;F;DUBESSY;Florence;31/12/1965;LR;Professeur des écoles, instituteur et assimilé;Non;M;BONY;Julien;20/09/1979;Non +63;Puy-de-Dôme;05;5ème circonscription;1;17;F;CARLETTO;Brigitte;15/07/1959;RN;Employé administratif d'entreprise;Non;M;LAVOINE;Tom;09/05/1996;Non +63;Puy-de-Dôme;05;5ème circonscription;2;13;M;LE PONT;Philippe;12/08/1952;ECO;Ancien cadre;Non;F;GIMENEZ;Dominique;26/09/1954;Non +63;Puy-de-Dôme;05;5ème circonscription;3;43;M;PRÉVOST;Jérémy;31/01/1996;REC;Contremaître, agent de maîtrise;Non;M;FINOTO;Patrick;13/05/1969;Non +63;Puy-de-Dôme;05;5ème circonscription;4;42;M;COURTHALIAC;Yves;19/05/1971;LR;Policier et militaire;Non;M;THÉVENON;Maxime;05/11/1995;Non +63;Puy-de-Dôme;05;5ème circonscription;5;4;F;CAPRON;Gabrielle;28/02/1947;DXG;Ancien cadre;Non;M;NANGERONI;Guillaume;04/05/1990;Non +63;Puy-de-Dôme;05;5ème circonscription;6;31;M;CHASSAIGNE;André;02/07/1950;NUPES;Professeur, profession scientifique;Oui;M;BRUGEROLLES;Julien;05/07/1982;Non +63;Puy-de-Dôme;05;5ème circonscription;7;49;M;POINTUD;Pascal;14/05/1965;DVD;Ancienne profession intermédiaire;Non;F;CORBET;Florence;10/10/1975;Non +63;Puy-de-Dôme;05;5ème circonscription;8;38;F;TARRERIAS;Emmanuelle;08/07/1977;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MORLOT;Yann;04/10/1969;Non +63;Puy-de-Dôme;05;5ème circonscription;9;33;F;LEGRAND;Karine;28/07/1966;ENS;Profession intermédiaire administrative et commerciale des entreprises;Non;M;CESCUT;Christophe;29/12/1967;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;1;13;M;PINOTEAU;Jean-Jacques;18/02/1956;DIV;Profession libérale;Non;F;FEYTE;Marie;01/08/1964;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;2;63;M;PONSARD VIDAL;David;21/11/1969;DSV;Commerçant et assimilé;Non;F;DAYRAUD;Valérie;28/09/1969;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;3;17;F;HEGOBURU;Agnès;31/10/1979;DXG;Cadre de la fonction publique;Non;M;CAUCHOIS;Claude;11/12/1952;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;4;2;M;ANDRAUD;Cédric;08/07/1978;ECO;Professeur des écoles, instituteur et assimilé;Non;M;VILLANUEVA;Jordan;28/11/1995;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;5;32;F;LAFARGUE;Sandrine;08/10/1967;LR;Cadre de la fonction publique;Non;M;PANDO;Christophe;27/05/1968;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;6;3;M;VERRIERE;François;14/08/1969;RN;Employé civil et agent de service de la fonction publique;Non;M;GALLOUIN;Sylvain;03/07/1976;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;7;19;F;LORENZI;Muriel;26/01/1981;ECO;Commerçant et assimilé;Non;F;GRATELOUP;Johanna;07/06/1990;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;8;33;F;POUEYTO;Josy;13/01/1954;ENS;Ancien employé;Oui;M;MORA;Pascal;21/10/1972;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;9;62;M;SOULERE;Jacques-Henri;13/09/1962;DIV;Profession libérale;Non;M;SARRES;Philippe;19/04/1975;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;10;34;M;LALANNE;Jean-Yves;26/03/1958;NUPES;Contremaître, agent de maîtrise;Non;F;MAZA;Stéphanie;06/02/1970;Non +64;Pyrénées-Atlantiques;01;1ère circonscription;11;64;F;GILLOT;Juliette;26/11/1968;REC;Professeur des écoles, instituteur et assimilé;Non;M;LOLLIEROU;Jean-Yves;26/03/1958;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;1;26;F;FAURE;Cécile;26/08/1978;NUPES;Cadre de la fonction publique;Non;M;REINBERGER;Eugène;18/09/1958;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;2;36;M;GAIRIN;Marc;24/09/1957;REC;Cadre de la fonction publique;Non;F;THERET;Laura;24/12/1992;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;3;43;M;CESCAU;Patrick;13/11/1973;REG;Profession intermédiaire de la santé et du travail social;Non;M;HOSTEIN;Jordi;08/11/1982;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;4;8;F;JOINT;Frédérique;17/02/1977;RN;Cadre administratif et commercial d'entreprise;Non;M;ARGENTIN;Sylvain;23/06/1976;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;5;7;M;MAUHOURAT;Jacques;11/12/1964;ECO;Profession intermédiaire de la santé et du travail social;Non;F;MATRAIRE;Sabine;20/01/1971;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;6;55;F;LASSUS-DAVID;Emilie;19/10/1989;DIV;Employé civil et agent de service de la fonction publique;Non;M;PIERROU;Vincent;08/06/1991;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;7;15;M;MATTEI;Jean-Paul;21/03/1954;ENS;Profession libérale;Oui;M;RHAUT;Jean-Christophe;30/04/1969;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;8;16;M;CIVILETTI;Lucien;26/11/1962;DIV;Policier et militaire;Non;F;DAVO;Denise Patricia;23/12/1958;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;9;41;F;SENMARTIN-LAURENT;Tiphanie;31/01/1981;ECO;Employé civil et agent de service de la fonction publique;Non;F;VIGNEAU;Sonia;29/03/1988;Non +64;Pyrénées-Atlantiques;02;2ème circonscription;10;21;M;MARCONI;Cyrille;08/10/1982;DXG;Professeur, profession scientifique;Non;F;ALIBERT;Claude;23/08/1948;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;1;52;M;HABIB;David;16/03/1961;DVG;Cadre administratif et commercial d'entreprise;Oui;M;DUIZIDOU;David;05/12/1967;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;2;29;F;COSTEDOAT-DIU;Fabienne;14/10/1962;LR;Profession libérale;Non;F;BERGÉ;Geneviève;16/03/1949;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;3;60;F;LE ROUX;Françoise;27/01/1976;DSV;Cadre administratif et commercial d'entreprise;Non;M;JAUREGUIBERRY;Michel;04/12/1978;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;4;54;F;CHARLOT;Christelle, Huguette, Sarah;02/01/1983;ECO;Employé de commerce;Non;F;THELMAT;Marie-José, Agnès, Andrée;25/10/1976;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;5;12;F;PEYRE;Edith;24/04/1959;ECO;Profession de l'information, des arts et des spectacles;Non;F;POMMES;Sarah;13/10/1994;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;6;31;F;ALBANEL;Romane;28/11/1998;REC;Elève, étudiant;Non;M;ANSART;Théo;07/10/1998;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;7;4;M;BABY;Jean-François;18/12/1963;NUPES;Profession de l'information, des arts et des spectacles;Non;F;LOSSON;Joëlle;13/01/1958;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;8;20;M;MISSIER;Antoine;04/05/1964;DXG;Professeur, profession scientifique;Non;M;NAVARRO;Johan;20/09/1977;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;9;38;F;BORDENAVE;Karine;23/02/1971;REG;Agriculteur sur petite exploitation;Non;M;MAUBOULES;Patrick;17/10/1956;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;10;6;M;DELTEIL;Eric;21/07/1963;DXG;Professeur, profession scientifique;Non;F;SPITZER;Catherine;28/08/1971;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;11;10;F;PERNET;Eva;05/09/1979;DIV;Profession libérale;Non;M;RENAUD;Jacky;26/04/1958;Non +64;Pyrénées-Atlantiques;03;3ème circonscription;12;9;M;CRESSON;Nicolas;08/09/1989;RN;Commerçant et assimilé;Non;M;LAGAHE;Benjamin;16/10/1999;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;1;30;F;TAILLEFER;Margaux;27/10/1999;REC;Elève, étudiant;Non;M;FOURTIC;Quentin;25/11/1988;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;2;48;M;URRUTIKOETXEA;Egoitz;24/06/1974;REG;Cadre administratif et commercial d'entreprise;Non;F;LEKUMBERRI;Terexa;28/11/1962;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;3;56;M;LASSALLE;Julien;09/12/1959;DIV;Agriculteur sur petite exploitation;Non;F;DENZOIN;Véronique;14/05/1969;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;4;37;F;BOUCHARD;Valérie;17/06/1965;ECO;Commerçant et assimilé;Non;M;ZEN;Jérémy;13/11/1984;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;5;18;F;TROUNDAY;Annick;10/12/1964;ENS;Profession intermédiaire de la santé et du travail social;Non;M;CONGUES;Pierre;15/02/1979;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;6;42;M;DARNET;Paul;22/06/1983;ECO;Cadre administratif et commercial d'entreprise;Non;F;LALLEMAND;Bénédicte;10/09/1980;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;7;57;M;ECHANIZ;Inaki;02/09/1993;NUPES;Cadre de la fonction publique;Non;F;SENDERAIN;Cécile;23/02/1959;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;8;25;F;LOPEZ;Sylviane;28/10/1956;RN;Ancien employé;Non;M;MICHEL;Alain;08/05/1949;Non +64;Pyrénées-Atlantiques;04;4ème circonscription;9;53;M;RIBEIRO;Carlos;28/01/1949;DXG;Ancien ouvrier;Non;M;MIRCOVICH;Frédéric;18/08/1966;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;1;61;M;BARDANOUVE;Philippe;16/09/1950;DXG;Ancien ouvrier;Non;F;QUARANTA;Maïté;25/11/1981;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;2;35;F;PEREIRA-OSTANEL;Sandra;08/12/1966;NUPES;Profession intermédiaire administrative de la fonction publique;Non;M;OLHAGARAY;Mathieu;16/04/1985;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;3;51;M;GIL;Benjamin;12/10/1993;DSV;Employé de commerce;Non;M;BLANLEUIL;Benoît;06/12/1999;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;4;40;F;HARY;Mathilde;22/12/1992;REG;Profession intermédiaire de la santé et du travail social;Non;M;AIMÉ;Sylvain;12/01/1981;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;5;14;F;LASSERRE;Florence;29/06/1974;ENS;Cadre administratif et commercial d'entreprise;Oui;M;GONZALEZ;Francis;15/11/1949;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;6;39;F;ROUBIN;Sylvie;17/05/1961;ECO;Chauffeur;Non;F;HAMARD;Marie-Rose;07/11/1964;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;7;50;M;RICHÉ;Thomas;08/01/1982;DIV;Profession libérale;Non;F;JOANNAN;Florence;08/12/1967;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;8;23;M;LESELLIER;Pascal;04/01/1961;RN;Ancienne profession intermédiaire;Non;M;PINNA;Serge;28/01/1959;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;9;58;F;SUSBIELLE;Hélène;11/01/1965;DIV;Professeur, profession scientifique;Non;M;CLAUSELL;Ramuntcho;10/11/1979;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;10;59;M;PATHIAS;Thibault;01/03/1993;DVG;Commerçant et assimilé;Non;F;DESCROIX;Pauline;25/06/1999;Non +64;Pyrénées-Atlantiques;05;5ème circonscription;11;22;F;PILLOT;Annick;19/01/1964;REC;Cadre administratif et commercial d'entreprise;Non;F;TAIEB;Valérie;17/09/1967;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;1;27;M;DUBOIS--ROBIN;Tom;31/12/1992;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;ETCHEPARE;Laurie;15/02/1983;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;2;47;M;JOUVET;Philippe;09/04/1980;DVC;Cadre administratif et commercial d'entreprise;Non;M;ELISSALDE;Philippe;15/08/1963;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;3;5;M;DUFAU;Peio;30/05/1979;REG;Contremaître, agent de maîtrise;Non;F;GALLOIS;Françoise;20/06/1959;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;4;45;M;SOUBELET;Bertrand;20/05/1959;DVD;Policier et militaire;Non;F;PINATEL;Anne;09/06/1964;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;5;11;M;BACH;Fabrice Sébastien;31/12/1968;LR;Cadre administratif et commercial d'entreprise;Non;F;JAUREGUIBERRY;Katixa;07/08/2001;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;6;24;M;BRIOLAIS;Kévin;22/07/1989;ECO;Employé administratif d'entreprise;Non;F;CIORCARLAN;Ioana;25/11/1995;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;7;65;F;GOITSCHEL;Marielle;28/09/1945;DIV;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;BROCQUEVIELLE;Karine;09/06/1971;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;8;66;F;NÉEL;Christiane;01/10/1937;REC;Ancien cadre;Non;M;PRUVOST;Gérald;23/11/1950;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;9;49;F;UHART;Jacqueline;15/05/1966;DXG;Professeur, profession scientifique;Non;M;AQUERRETA;Jacques;05/07/1946;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;10;44;M;TENNESON;Mathis;14/12/1999;DVC;Elève, étudiant;Non;F;SNELL GIBARD;Eva;11/05/1980;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;11;46;M;BRU;Vincent;29/04/1955;ENS;Professeur, profession scientifique;Oui;F;FRANÇOIS;Maria;09/01/1973;Non +64;Pyrénées-Atlantiques;06;6ème circonscription;12;28;F;BECKER;Monique;21/06/1951;RN;Ancienne profession intermédiaire;Non;M;BRASSÉ;Jean-Luc;23/07/1964;Non +65;Hautes-Pyrénées;01;1ère circonscription;1;23;M;VILLANUEVA;Alexis;31/12/1990;ECO;Ingénieur et cadre technique d'entreprise;Non;F;LIAUZUN-CAU;Léa;10/08/1995;Non +65;Hautes-Pyrénées;01;1ère circonscription;2;4;M;CLARET;Pierre;07/09/1965;DIV;Cadre administratif et commercial d'entreprise;Non;M;ACHARD;Jean-Bernard;19/03/1986;Non +65;Hautes-Pyrénées;01;1ère circonscription;3;11;M;GIRAL;Romain;27/07/1982;LR;Profession libérale;Non;F;LAFFORGUE;Laurence;19/12/1949;Non +65;Hautes-Pyrénées;01;1ère circonscription;4;2;F;SORIN;Marie-Christine;05/04/1949;RN;Ancien cadre;Non;M;SANCHEZ;José;25/11/1951;Non +65;Hautes-Pyrénées;01;1ère circonscription;5;9;F;SAEZ;Maria;29/06/1948;DXG;Ancienne profession intermédiaire;Non;F;REBILLARD;Geneviève;25/01/1950;Non +65;Hautes-Pyrénées;01;1ère circonscription;6;12;F;GUÉNICHOT;Ophélie;02/02/1994;ECO;Employé administratif d'entreprise;Non;F;GRIMAUD;Sylvette;04/05/1977;Non +65;Hautes-Pyrénées;01;1ère circonscription;7;6;F;BEYRIÉ;Maryse;24/07/1962;DVG;Chef d'entreprise de 10 salariés ou plus;Non;M;DATAS-TAPIE;Nicolas;27/11/1980;Non +65;Hautes-Pyrénées;01;1ère circonscription;8;8;M;SEMPASTOUS;Jean-Bernard;05/08/1964;ENS;Professeur, profession scientifique;Oui;F;SIANI WEMBOU;Virginie;30/03/1960;Non +65;Hautes-Pyrénées;01;1ère circonscription;9;15;F;FERRER;Sylvie;06/11/1967;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;SIRE;Benjamin-Florian;31/03/1982;Non +65;Hautes-Pyrénées;01;1ère circonscription;10;18;F;BONNECARRERE;Catherine;09/04/1963;REC;Ancienne profession intermédiaire;Non;M;JACQUET;Louis;12/09/1991;Non +65;Hautes-Pyrénées;02;2ème circonscription;1;20;F;BEAUDRY;Delphine;18/01/1971;REG;Employé civil et agent de service de la fonction publique;Non;M;ARMAND MÈGE;Audric;19/10/1988;Non +65;Hautes-Pyrénées;02;2ème circonscription;2;10;M;MEUNIER;François;09/10/1962;DXG;Professeur des écoles, instituteur et assimilé;Non;M;TRAVERT;Jean;12/02/1978;Non +65;Hautes-Pyrénées;02;2ème circonscription;3;22;M;RIGOLLET;Antoine;06/08/1992;ECO;Cadre administratif et commercial d'entreprise;Non;F;CERVANTES;Brigitte;10/08/1962;Non +65;Hautes-Pyrénées;02;2ème circonscription;4;21;M;DABAT;Jean-Marc;05/02/1965;DIV;Employé civil et agent de service de la fonction publique;Non;M;BERNISSAN;Fabrice;03/08/1968;Non +65;Hautes-Pyrénées;02;2ème circonscription;5;17;M;KORN;Grégory;07/02/1981;NUPES;Professeur, profession scientifique;Non;F;DASSE;Héloïse;31/03/1993;Non +65;Hautes-Pyrénées;02;2ème circonscription;6;5;F;BARBE;Aline;12/05/1961;DSV;Ancienne profession intermédiaire;Non;F;SARDA;Janine;16/04/1952;Non +65;Hautes-Pyrénées;02;2ème circonscription;7;14;M;MOURNET;Benoit;16/01/1986;ENS;Cadre de la fonction publique;Non;F;VALLIN;Gaëlle;04/11/1974;Non +65;Hautes-Pyrénées;02;2ème circonscription;8;7;M;CRAMPE;Jérome;30/01/1973;RDG;Chef d'entreprise de 10 salariés ou plus;Non;F;DUBERTRAND;Sylvie;02/04/1964;Non +65;Hautes-Pyrénées;02;2ème circonscription;9;13;M;CASTÉRA;Yves;10/03/1965;DVG;Artisan;Non;F;KACZMAREK;Marie;08/09/1980;Non +65;Hautes-Pyrénées;02;2ème circonscription;10;16;F;DUTREY;Véronique;18/11/1966;LR;Profession libérale;Non;M;VARIS;Mathieu;22/07/1979;Non +65;Hautes-Pyrénées;02;2ème circonscription;11;19;M;ALVES DA CUNHA;Claude;03/01/1950;REC;Ancien artisan, commerçant, chef d'entreprise;Non;M;CANIVENQ;Noël;24/12/1959;Non +65;Hautes-Pyrénées;02;2ème circonscription;12;3;M;DUMANOIR;Serge;27/01/1962;RN;Ancien cadre;Non;F;BOULIN;Sylvie;31/03/1967;Non +66;Pyrénées-Orientales;01;1ère circonscription;1;22;M;DASPE;Francis;30/07/1970;NUPES;Professeur, profession scientifique;Non;F;VENTURA-CID;Sylvie;12/03/1964;Non +66;Pyrénées-Orientales;01;1ère circonscription;2;44;M;BARBARIN;Loïc;18/05/1976;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;RAMIREZ;Patrick;13/04/1972;Non +66;Pyrénées-Orientales;01;1ère circonscription;3;24;M;CHAMBAUD;Georges-Henri;08/09/1956;REC;Ancien cadre;Non;M;BROSED;Olivier;11/06/1973;Non +66;Pyrénées-Orientales;01;1ère circonscription;4;42;F;PEIX;Rita;21/07/1965;REG;Professeur, profession scientifique;Non;M;LAFONTAINE;Brice;29/06/1982;Non +66;Pyrénées-Orientales;01;1ère circonscription;5;21;M;GRAU;Romain;21/06/1974;ENS;Profession libérale;Oui;F;DE NOËLL-MARCHESAN;Isabelle;21/03/1955;Non +66;Pyrénées-Orientales;01;1ère circonscription;6;4;F;SCHMITT;Vanessa;12/02/1977;ECO;Cadre de la fonction publique;Non;M;STAWIARSKI;Marcin;29/11/1979;Non +66;Pyrénées-Orientales;01;1ère circonscription;7;46;M;BOLO;Alexandre;19/08/1986;DVD;Commerçant et assimilé;Non;M;SYMPHORIEN;Philippe;25/04/1957;Non +66;Pyrénées-Orientales;01;1ère circonscription;8;19;F;POCH;Cathy;19/01/1973;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PEREZ;Nicolas;07/08/1977;Non +66;Pyrénées-Orientales;01;1ère circonscription;9;40;F;GAVALDA MOULENAT;Christine;31/03/1976;LR;Professeur, profession scientifique;Non;M;GUILLAUME;Gilles;29/10/1963;Non +66;Pyrénées-Orientales;01;1ère circonscription;10;29;F;FOURCADE;Fabienne;01/09/1962;DXG;Professeur des écoles, instituteur et assimilé;Non;M;QUÉVREUX;Michel;24/06/1949;Non +66;Pyrénées-Orientales;01;1ère circonscription;11;6;M;CHIFFRE;Anthony Léonce Eugène;26/02/1993;REG;Profession intermédiaire de la santé et du travail social;Non;F;GOUMAN;Marie-Christine;24/08/1958;Non +66;Pyrénées-Orientales;01;1ère circonscription;12;15;F;BLANC;Sophie;20/02/1968;RN;Profession libérale;Non;F;MUTI;Carla;03/08/1997;Non +66;Pyrénées-Orientales;01;1ère circonscription;13;2;F;ADVENARD;Pascale;02/08/1961;DXG;Employé civil et agent de service de la fonction publique;Non;M;RAIFF;Bertrand;24/01/1965;Non +66;Pyrénées-Orientales;02;2ème circonscription;1;14;F;SABATINI;Anaïs;10/03/1990;RN;Profession libérale;Non;M;POTEL;Julien;23/03/1982;Non +66;Pyrénées-Orientales;02;2ème circonscription;2;10;F;RASPAUD;Alexandra;24/08/1972;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CATALDO;Jacques;08/10/1972;Non +66;Pyrénées-Orientales;02;2ème circonscription;3;43;M;BERRUÉ;David;11/06/1976;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;BEUZE;Lola;03/09/1963;Non +66;Pyrénées-Orientales;02;2ème circonscription;4;13;M;BRET;David;15/04/1984;LR;Cadre administratif et commercial d'entreprise;Non;F;DE BESOMBES-SINGLA;Laurence;17/09/1976;Non +66;Pyrénées-Orientales;02;2ème circonscription;5;8;M;BLANC;Cyril;20/07/1978;ECO;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;MONNIER;Nathalie;10/05/1980;Non +66;Pyrénées-Orientales;02;2ème circonscription;6;36;M;GABARDA;David;07/08/1987;DSV;Profession libérale;Non;M;FERRANDERY;Jean;12/04/1948;Non +66;Pyrénées-Orientales;02;2ème circonscription;7;38;F;LIS;Frédérique;24/09/1989;ENS;Cadre de la fonction publique;Non;M;BARBARO;Daniel;15/12/1953;Non +66;Pyrénées-Orientales;02;2ème circonscription;8;31;M;DIAGO;Joël;13/06/1966;REG;Profession libérale;Non;F;BREANT;Véronique;08/10/1966;Non +66;Pyrénées-Orientales;02;2ème circonscription;9;5;M;GOISET;Philippe;06/11/1955;DXG;Ancien ouvrier;Non;M;MÉROC;Antoine;08/01/1975;Non +66;Pyrénées-Orientales;03;3ème circonscription;1;47;F;SGARD;Marlène;30/07/1991;DIV;Profession de l'information, des arts et des spectacles;Non;M;ROCHE;Florian;21/06/1986;Non +66;Pyrénées-Orientales;03;3ème circonscription;2;20;M;MANDAR;Charles;29/04/1958;REC;Ingénieur et cadre technique d'entreprise;Non;M;DEBAIX;Alain;30/07/1963;Non +66;Pyrénées-Orientales;03;3ème circonscription;3;41;M;MADELINE;Blaise;21/12/1971;DIV;Professeur, profession scientifique;Non;M;GRABOLOSA;Pierre;29/01/1983;Non +66;Pyrénées-Orientales;03;3ème circonscription;4;39;F;MARTIN;Laurence;06/09/1979;LR;Artisan;Non;M;GUIZARD;Yves;12/08/1974;Non +66;Pyrénées-Orientales;03;3ème circonscription;5;32;F;LE FLOCH;Morgane;29/02/1996;REG;Cadre administratif et commercial d'entreprise;Non;M;PANO;Alexandre;07/08/1950;Non +66;Pyrénées-Orientales;03;3ème circonscription;6;37;M;GUITART;Henri;04/07/1951;DIV;Profession libérale;Non;M;MONTESSINO;Joseph;11/06/1963;Non +66;Pyrénées-Orientales;03;3ème circonscription;7;16;F;PERAULT;Françoise;12/04/1949;DSV;Ancien cadre;Non;M;CROUZET;Jean-Marc;21/07/1964;Non +66;Pyrénées-Orientales;03;3ème circonscription;8;3;F;URROZ;Anna-Maria;26/10/1956;DXG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;THOMAS;Grégoire;28/05/1977;Non +66;Pyrénées-Orientales;03;3ème circonscription;9;33;M;BATAILLE;Pierre;28/11/1970;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;BRUZI;Chantal;20/06/1971;Non +66;Pyrénées-Orientales;03;3ème circonscription;10;35;F;CULLELL;Nathalie;28/08/1976;NUPES;Professeur, profession scientifique;Non;M;FERRAND;François;15/07/1969;Non +66;Pyrénées-Orientales;03;3ème circonscription;11;12;F;DOGOR-SUCH;Sandrine;08/11/1970;RN;Employé de commerce;Non;M;FOXONET;Gilles;06/09/1967;Non +66;Pyrénées-Orientales;04;4ème circonscription;1;26;M;REYNAL;Alexandre;11/09/1956;DVG;Ancien artisan, commerçant, chef d'entreprise;Non;M;FAJULA;Jacques;18/04/1957;Non +66;Pyrénées-Orientales;04;4ème circonscription;2;17;F;POUPARD;Caroline;01/12/1966;DXG;Professeur, profession scientifique;Non;M;BASSO;Patrice;19/12/1950;Non +66;Pyrénées-Orientales;04;4ème circonscription;3;11;F;MARTINEZ;Michèle;06/06/1968;RN;Employé administratif d'entreprise;Non;F;CHRETIEN;Laura;30/08/1992;Non +66;Pyrénées-Orientales;04;4ème circonscription;4;18;F;TRUCHET;Sylvie;20/04/1968;REC;Employé de commerce;Non;M;STEFAN;Robert;30/11/1955;Non +66;Pyrénées-Orientales;04;4ème circonscription;5;28;M;POUS;Jérôme;20/11/1972;NUPES;Profession libérale;Non;F;FRATANI;Emmanuelle;04/10/1972;Non +66;Pyrénées-Orientales;04;4ème circonscription;6;9;F;BAILLY;Delphine;05/11/1990;ECO;Cadre administratif et commercial d'entreprise;Non;F;BAILLY;Christèle;08/04/1985;Non +66;Pyrénées-Orientales;04;4ème circonscription;7;45;M;MALORTIGUE;Carol;17/01/1958;DIV;Ingénieur et cadre technique d'entreprise;Non;F;LLENSE FERRANT;Annie;13/10/1960;Non +66;Pyrénées-Orientales;04;4ème circonscription;8;7;F;VINCENT DE BOURBON PAHLAVI;Edwige;05/04/1957;DIV;Ancien cadre;Non;M;MELLET;Henry;21/01/1954;Non +66;Pyrénées-Orientales;04;4ème circonscription;9;27;M;CAZENOVE;Sébastien;28/12/1976;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;MUGUET;Laurence;14/04/1969;Non +66;Pyrénées-Orientales;04;4ème circonscription;10;25;M;FABRA;Stéphane;09/01/1971;DSV;Cadre administratif et commercial d'entreprise;Non;M;BOVRY;Jean-Alain;20/06/1972;Non +66;Pyrénées-Orientales;04;4ème circonscription;11;30;M;VERA;Jordi;30/08/1953;REG;Ancien cadre;Non;F;DAVESA;Céline;20/12/1967;Non +66;Pyrénées-Orientales;04;4ème circonscription;12;34;M;GALAN;Bruno;04/02/1962;LR;Profession libérale;Non;F;BELTRAMI;France;22/08/1969;Non +67;Bas-Rhin;01;1ère circonscription;1;31;F;FÈVE;Louise;19/07/1980;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;ROBERT;Roland;20/10/1957;Non +67;Bas-Rhin;01;1ère circonscription;2;97;F;GROSJEAN;Yamina;01/06/1982;DIV;Profession intermédiaire de la santé et du travail social;Non;F;WOEHL;Karine;13/04/1985;Non +67;Bas-Rhin;01;1ère circonscription;3;9;M;ROUCHDI;Jamal;20/07/1980;DIV;Chauffeur;Non;M;NAJI;Azeddine;01/08/1978;Non +67;Bas-Rhin;01;1ère circonscription;4;78;F;CHRISTMANN;Elena;06/04/1956;REC;Professeur des écoles, instituteur et assimilé;Non;M;GRASSER;Jean-Pierre;27/07/1955;Non +67;Bas-Rhin;01;1ère circonscription;5;38;F;REGOL;Sandra;13/04/1978;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LELOUP;Lucas;12/12/1994;Non +67;Bas-Rhin;01;1ère circonscription;6;44;F;KARMANN;Stéphanie;15/08/1967;REG;Employé administratif d'entreprise;Non;M;KRETZ;Pierre;13/02/1950;Non +67;Bas-Rhin;01;1ère circonscription;7;110;M;COURCOUX;Sylvain;31/10/1974;DIV;Ingénieur et cadre technique d'entreprise;Non;F;NEGGACHE;Zina;06/08/1989;Non +67;Bas-Rhin;01;1ère circonscription;8;53;F;BLACHE;Elisa;20/09/1986;DXG;Elève, étudiant;Non;F;HOHMANN;Lucette;27/09/1951;Non +67;Bas-Rhin;01;1ère circonscription;9;85;M;FONTANEL;Alain;02/01/1969;ENS;Cadre de la fonction publique;Non;F;ROUX;Laurine;26/03/1991;Non +67;Bas-Rhin;01;1ère circonscription;10;74;M;SAUNER;Lionel;27/06/1989;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;EHLES;Pénélope;05/12/1994;Non +67;Bas-Rhin;01;1ère circonscription;11;5;F;VOLOKHOVA;Tamara;30/04/1990;RN;Cadre de la fonction publique;Non;M;QUESNOT;Bastien;07/11/2002;Non +67;Bas-Rhin;01;1ère circonscription;12;20;M;ELKOUBY;Éric;24/06/1973;DVG;Cadre de la fonction publique;Non;F;WENNER;Carole;02/07/1981;Non +67;Bas-Rhin;01;1ère circonscription;13;96;M;BARRET;Albéric;12/05/1995;DIV;Profession libérale;Non;F;DARGENTOLLE;Lise;19/05/1995;Non +67;Bas-Rhin;01;1ère circonscription;14;25;M;GOVI;Jérémy;13/09/1977;DVG;Profession intermédiaire de la santé et du travail social;Non;F;BOUGRIN;Sarah;26/02/1961;Non +67;Bas-Rhin;01;1ère circonscription;15;63;M;SEIGLE-MURANDI;Frédéric;22/01/1985;DIV;Profession libérale;Non;F;REY;Caroline;27/04/1976;Non +67;Bas-Rhin;01;1ère circonscription;16;70;F;HAFED;Nawal;17/12/1977;ECO;Profession intermédiaire de la santé et du travail social;Non;F;CHEAÏBI;Aïda;03/10/1991;Non +67;Bas-Rhin;01;1ère circonscription;17;64;F;ROZENHAFT;Audrey;17/01/1980;LR;Profession intermédiaire administrative et commerciale des entreprises;Non;M;ZARYATY;Amine;01/08/1969;Non +67;Bas-Rhin;02;2ème circonscription;1;22;F;GOULET;Déborah;05/11/1999;ECO;Elève, étudiant;Non;F;DELHAYE;Shannon Lee;15/11/2002;Non +67;Bas-Rhin;02;2ème circonscription;2;59;F;SCHNITZLER;Fabienne;18/03/1955;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;RENAUDET;Clément;25/01/1948;Non +67;Bas-Rhin;02;2ème circonscription;3;35;M;FERNANDES;Emmanuel;10/08/1980;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;F;BERÇOT;Marianne;17/05/1996;Non +67;Bas-Rhin;02;2ème circonscription;4;30;M;RICHARD;Alain;08/01/1969;DXG;Ouvrier qualifié de type industriel;Non;F;MORINAUD;Pierrette;04/02/1947;Non +67;Bas-Rhin;02;2ème circonscription;5;54;M;WASERMAN;Sylvain;08/12/1967;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;BREITMAN;Rebecca;01/05/1990;Non +67;Bas-Rhin;02;2ème circonscription;6;92;M;BOUSSIF;Jamal;05/10/1960;DIV;Employé administratif d'entreprise;Non;F;GHELLAF;Jihane;05/01/1990;Non +67;Bas-Rhin;02;2ème circonscription;7;82;M;VINCI;Thibaut;22/11/1986;RDG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;SERFATI;Léo;29/01/1989;Non +67;Bas-Rhin;02;2ème circonscription;8;91;F;DIEMUNSCH;Cendrine;05/09/1982;REG;Professeur, profession scientifique;Non;M;RICHERT-HARTMANN;Arnaud;26/05/2001;Non +67;Bas-Rhin;02;2ème circonscription;9;83;M;WOLF SAMALOUSSI;Alexandre;10/09/1995;LR;Elève, étudiant;Non;M;MAURER;Jean-Philippe;07/07/1960;Non +67;Bas-Rhin;02;2ème circonscription;10;43;F;LEONHART-GRUBER;Margarethe;17/02/1955;ECO;Employé administratif d'entreprise;Non;F;MASSING;Catherine;25/11/1970;Non +67;Bas-Rhin;02;2ème circonscription;11;77;F;BENNES;Armèle;11/02/1968;DIV;Professeur, profession scientifique;Non;F;LOUATI;Selma;11/01/1997;Non +67;Bas-Rhin;02;2ème circonscription;12;52;F;DU PARC;Hombeline;05/04/1975;RN;Cadre de la fonction publique;Non;M;LOUVIAUX;Jacques;28/11/1955;Non +67;Bas-Rhin;02;2ème circonscription;13;27;F;CAMINADE;Nelly;12/03/1955;REC;Ancienne profession intermédiaire;Non;M;METZGER;Jean-Marc;27/03/1948;Non +67;Bas-Rhin;02;2ème circonscription;14;65;M;GRANDJEAN;Alexandre;13/09/1983;DIV;Profession intermédiaire de la santé et du travail social;Non;M;BACHSCHMIDT;Nicolas;09/03/1988;Non +67;Bas-Rhin;03;3ème circonscription;1;106;M;PLICHON;Valentin;26/11/1993;DIV;Profession intermédiaire administrative de la fonction publique;Non;M;MAUVIARD;François;09/11/1963;Non +67;Bas-Rhin;03;3ème circonscription;2;60;F;SFAXI;Imene;01/06/1980;LR;Commerçant et assimilé;Non;M;TRABAND;Frédéric;03/03/1980;Non +67;Bas-Rhin;03;3ème circonscription;3;94;F;WETZEL;Virginie;04/02/1975;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;HELM;Franck;18/06/1990;Non +67;Bas-Rhin;03;3ème circonscription;4;36;M;MAS;Sébastien;03/07/1979;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;MEYNIOGLU;Marie Albera;25/10/1966;Non +67;Bas-Rhin;03;3ème circonscription;5;103;F;BERNHARDT;Cindy;09/05/1981;DIV;Profession intermédiaire administrative de la fonction publique;Non;F;GEAUGEY;Sophie;11/10/1990;Non +67;Bas-Rhin;03;3ème circonscription;6;40;F;GAUBERT;Joëlle;02/05/1972;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MESNET;Henri;07/08/1973;Non +67;Bas-Rhin;03;3ème circonscription;7;7;F;DÔ;Stéphanie;14/12/1985;RN;Profession intermédiaire de la santé et du travail social;Non;M;BERNHARDT;Théo;22/06/2000;Non +67;Bas-Rhin;03;3ème circonscription;8;41;F;CUTAJAR;Chantal;20/01/1959;ECO;Professeur, profession scientifique;Non;M;CADIOT;Frédéric;21/05/1957;Non +67;Bas-Rhin;03;3ème circonscription;9;8;F;GRANDMOUGIN;Denise;19/06/1955;DXG;Professeur des écoles, instituteur et assimilé;Non;M;LEMERLE;Gilles;24/07/1947;Non +67;Bas-Rhin;03;3ème circonscription;10;67;F;GAUTHERON;Capucine;26/06/2002;REG;Elève, étudiant;Non;M;SAUER;Franz;11/04/1965;Non +67;Bas-Rhin;03;3ème circonscription;11;111;M;HAMZA;Hicham;24/09/1976;DIV;Profession de l'information, des arts et des spectacles;Non;M;EL KHALIFA;Samir;30/08/1963;Non +67;Bas-Rhin;03;3ème circonscription;12;14;M;STUDER;Bruno;18/06/1978;ENS;Professeur, profession scientifique;Oui;F;HOLLEDERER;Hélène;27/01/1970;Non +67;Bas-Rhin;03;3ème circonscription;13;17;F;NOEL;Patricia;27/05/1964;ECO;Cadre administratif et commercial d'entreprise;Non;F;HOUEDE;Marine;19/05/1991;Non +67;Bas-Rhin;04;4ème circonscription;1;15;F;LAFAY;Marina;31/07/1975;DVG;Profession libérale;Non;M;CORDUAN;Guillaume;24/07/1981;Non +67;Bas-Rhin;04;4ème circonscription;2;23;M;BENHLAL;Mehdi;14/04/1972;DXG;Contremaître, agent de maîtrise;Non;F;JACQUEL;Annelyse;21/07/1983;Non +67;Bas-Rhin;04;4ème circonscription;3;88;F;BUFFET;Françoise;11/12/1953;ENS;Ancien artisan, commerçant, chef d'entreprise;Non;M;CAZIER;David;27/09/1968;Non +67;Bas-Rhin;04;4ème circonscription;4;47;F;BECK;Virginie;04/06/1967;REC;Cadre de la fonction publique;Non;M;JOSSERAND;Jean-Yves;03/07/1960;Non +67;Bas-Rhin;04;4ème circonscription;5;6;F;JORON;Virginie;11/12/1973;RN;Ancien cadre;Non;F;BARRILE;Marie-Madeleine;02/08/1971;Non +67;Bas-Rhin;04;4ème circonscription;6;76;F;LAHMEUR;Imane;12/05/1999;NUPES;Elève, étudiant;Non;F;PONPON;Marie-Pierre;04/04/1977;Non +67;Bas-Rhin;04;4ème circonscription;7;105;M;BEHR;Clément;17/09/1970;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;ROUSSEL;Denis;15/05/1959;Non +67;Bas-Rhin;04;4ème circonscription;8;72;M;AMIET;Éric;12/01/1967;LR;Profession libérale;Non;F;GRAEF-ECKERT;Catherine;27/05/1976;Non +67;Bas-Rhin;04;4ème circonscription;9;39;M;CHIROLLET;Jean-Claude;24/08/1950;DSV;Professeur, profession scientifique;Non;F;PFEIFFER;Julie;05/10/1987;Non +67;Bas-Rhin;04;4ème circonscription;10;98;F;WONNER;Martine;27/03/1964;DIV;Cadre administratif et commercial d'entreprise;Oui;M;BRUCKMANN;Jean-Yves;19/10/1958;Non +67;Bas-Rhin;04;4ème circonscription;11;80;F;MATZ;Bénédicte;14/03/1964;REG;Professeur, profession scientifique;Non;M;GOEPFERT;Jérôme;19/09/1980;Non +67;Bas-Rhin;04;4ème circonscription;12;87;M;NORTH;Alain;16/08/1957;DIV;Ingénieur et cadre technique d'entreprise;Non;M;VEIBERT;Sébastien;13/11/1984;Non +67;Bas-Rhin;05;5ème circonscription;1;26;M;SITZENSTUHL;Charles;03/12/1988;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;JUNG-GENGENWIN;Monique;01/11/1964;Non +67;Bas-Rhin;05;5ème circonscription;2;75;F;WEISS MOESSMER;Sarah;09/06/1983;REG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;MEYER;Martin;14/02/1967;Non +67;Bas-Rhin;05;5ème circonscription;3;109;M;MERTZ;Quentin;25/05/1997;DXD;Profession intermédiaire administrative de la fonction publique;Non;F;WÜLK;Désirée;28/02/1998;Non +67;Bas-Rhin;05;5ème circonscription;4;48;F;ABASSI;Mélanie;10/01/1992;REC;Employé de commerce;Non;M;GAUTIER;Eric;09/09/1959;Non +67;Bas-Rhin;05;5ème circonscription;5;89;M;WEBER;Daniel;28/04/1954;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;BACCOU;Monique;26/10/1947;Non +67;Bas-Rhin;05;5ème circonscription;6;33;F;TETART;Yolande;05/02/1957;DIV;Profession intermédiaire de la santé et du travail social;Non;M;COELSCH;Patrice;14/12/1973;Non +67;Bas-Rhin;05;5ème circonscription;7;21;M;DUTTER;Patrick;09/12/1960;DXG;Ouvrier qualifié de type artisanal;Non;F;LECHÊNE;Marie-Claire;26/02/1957;Non +67;Bas-Rhin;05;5ème circonscription;8;29;M;PLUSKOTA;Jean;16/04/1948;ECO;Technicien;Non;M;DANTZ;Christian;26/03/1960;Non +67;Bas-Rhin;05;5ème circonscription;9;13;M;WOLFF;Marc;16/05/1976;RN;Professeur, profession scientifique;Non;M;WEISHEIMER;Steeve;26/01/1980;Non +67;Bas-Rhin;05;5ème circonscription;10;50;F;TOULZA;Véronique;28/10/1958;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;BENOIT;Thomas;05/06/2000;Non +67;Bas-Rhin;05;5ème circonscription;11;95;M;ERRERA-MULLER;Angelo;15/04/1969;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;SZUPTAR-FALLER;Clothilde;26/07/1989;Non +67;Bas-Rhin;05;5ème circonscription;12;81;M;SOHLER;Olivier;13/08/1970;UDI;Cadre administratif et commercial d'entreprise;Non;F;KALCK;Amandine;19/02/1977;Non +67;Bas-Rhin;06;6ème circonscription;1;51;F;MARCHAL-MINAZZI;Martine;14/08/1954;NUPES;Ancienne profession intermédiaire;Non;M;ANDRES;Didier;16/05/1972;Non +67;Bas-Rhin;06;6ème circonscription;2;90;F;HAMM;Carine;01/09/1968;REG;Professeur, profession scientifique;Non;M;SCHUBNEL;Daniel;05/02/1963;Non +67;Bas-Rhin;06;6ème circonscription;3;24;M;MACIA;Bastien;01/11/1970;DSV;Cadre administratif et commercial d'entreprise;Non;M;KOENIG;David;28/10/1972;Non +67;Bas-Rhin;06;6ème circonscription;4;49;M;MEYER;Philippe;29/04/1969;LR;Professeur, profession scientifique;Oui;M;PANNEKOECKE;Jean-Bernard;30/10/1964;Non +67;Bas-Rhin;06;6ème circonscription;5;99;M;DEBRIFFE;Martial;14/03/1975;ECO;Chef d'entreprise de 10 salariés ou plus;Non;M;ADAM;Pierre;21/11/1963;Non +67;Bas-Rhin;06;6ème circonscription;6;28;F;RITTER;Sabrina;26/07/1987;REC;Profession de l'information, des arts et des spectacles;Non;M;PINT;Denis;28/10/1959;Non +67;Bas-Rhin;06;6ème circonscription;7;71;F;MOREL;Louise;15/10/1995;ENS;Cadre administratif et commercial d'entreprise;Non;M;MULLER;Xavier;19/12/1964;Non +67;Bas-Rhin;06;6ème circonscription;8;62;F;GRUSSI;Véronique;08/12/1964;ECO;Personnel des services directs aux particuliers;Non;M;ARBOGAST;Patrick;22/05/1961;Non +67;Bas-Rhin;06;6ème circonscription;9;45;M;CAMUS;René;21/02/1963;DXG;Ouvrier qualifié de type artisanal;Non;M;SOUCIER;Philippe;22/02/1966;Non +67;Bas-Rhin;06;6ème circonscription;10;12;M;STEINBACH;Jean-Frédéric;08/02/1971;RN;Cadre administratif et commercial d'entreprise;Non;M;STREICHER;Yoan;22/09/1992;Non +67;Bas-Rhin;07;7ème circonscription;1;100;M;DEPYL;Patrick;04/09/1955;ENS;Ancien cadre;Non;M;WOLFF;Eric;04/09/1966;Non +67;Bas-Rhin;07;7ème circonscription;2;55;M;HOENICKE;Brian;23/09/1997;ECO;Ouvrier non qualifié de type industriel;Non;F;DESTOUCHES;Margot;03/09/1998;Non +67;Bas-Rhin;07;7ème circonscription;3;37;M;STAB;Cédric;28/07/1980;DIV;Ouvrier qualifié de type artisanal;Non;F;DILEK;Handan;02/06/1973;Non +67;Bas-Rhin;07;7ème circonscription;4;58;F;TOUSSAINT;Lou;19/06/1999;NUPES;Elève, étudiant;Non;M;BLOCH;Serge;03/08/1953;Non +67;Bas-Rhin;07;7ème circonscription;5;69;M;LORBER;Jean-Marie;05/02/1963;REG;Cadre administratif et commercial d'entreprise;Non;F;LEIPP;Anastasie;16/11/1965;Non +67;Bas-Rhin;07;7ème circonscription;6;19;M;HETZEL;Patrick;02/07/1964;LR;Professeur, profession scientifique;Oui;F;KREMER;Eliane;12/03/1956;Non +67;Bas-Rhin;07;7ème circonscription;7;61;M;MARGARITO;Dino;06/11/1964;ECO;Technicien;Non;F;DESOUSA;Ilizette;02/10/1974;Non +67;Bas-Rhin;07;7ème circonscription;8;34;M;MORARD;Hervé;26/11/1974;REC;Artisan;Non;M;WICKER;Pascal;18/01/1965;Non +67;Bas-Rhin;07;7ème circonscription;9;46;M;HECKER;Christophe;22/03/1984;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;LAMBERT;Emmanuel;30/01/1981;Non +67;Bas-Rhin;07;7ème circonscription;10;3;M;MEYER;Jean;17/03/1955;DXG;Professeur, profession scientifique;Non;M;BIANCHINI;Gilles;23/05/1961;Non +67;Bas-Rhin;07;7ème circonscription;11;18;F;ESCHENMANN;Valérie;05/07/1989;RN;Agriculteur sur moyenne exploitation;Non;M;GREBIL;Noa;12/01/2003;Non +67;Bas-Rhin;07;7ème circonscription;12;101;F;WOJTKOWIAK;Florine;18/03/2002;DSV;Elève, étudiant;Non;M;FAJARDO;Thomas;30/09/2002;Non +67;Bas-Rhin;07;7ème circonscription;13;102;M;SOHM;Philippe;15/04/1982;DIV;Commerçant et assimilé;Non;M;DUJARDIN;Florian;21/04/1983;Non +67;Bas-Rhin;08;8ème circonscription;1;84;F;KOCHERT;Stéphanie;12/08/1975;ENS;Profession intermédiaire de la santé et du travail social;Non;M;KLIPFEL;Christian;15/08/1980;Non +67;Bas-Rhin;08;8ème circonscription;2;86;M;KRILOFF;Sébastien;28/12/1981;REC;Commerçant et assimilé;Non;M;HOSSANN;Thierry;09/07/1973;Non +67;Bas-Rhin;08;8ème circonscription;3;107;M;AHMED-YAHIA;Samy;20/07/1976;NUPES;Contremaître, agent de maîtrise;Non;F;DAUBARD;Isabelle;20/06/1967;Non +67;Bas-Rhin;08;8ème circonscription;4;32;F;GROSHEITSCH;Claire;05/08/1997;ECO;Profession libérale;Non;M;WAECHTER;Pierre;18/03/1950;Non +67;Bas-Rhin;08;8ème circonscription;5;11;M;KNOEPFFLER;Ludwig;20/06/1996;RN;Profession de l'information, des arts et des spectacles;Non;M;HEYD;Christophe;05/03/1977;Non +67;Bas-Rhin;08;8ème circonscription;6;104;F;PISSARD;Colette;13/03/1966;DSV;Employé administratif d'entreprise;Non;M;WINDENBERGER;Adrien;04/05/2001;Non +67;Bas-Rhin;08;8ème circonscription;7;10;F;GSELL;Catherine;31/01/1966;DXG;Cadre de la fonction publique;Non;M;TURMEL;Michel;21/07/1958;Non +67;Bas-Rhin;08;8ème circonscription;8;57;M;JACKY;Bruno;27/06/1971;REG;Chef d'entreprise de 10 salariés ou plus;Non;M;STEINMANN;Étienne;15/08/1959;Non +67;Bas-Rhin;08;8ème circonscription;9;16;F;SANDER;Anne;01/10/1973;DVD;Cadre de la fonction publique;Non;M;HEINTZ;Paul;15/11/1970;Non +67;Bas-Rhin;09;9ème circonscription;1;42;M;RIEDINGER;Denis;27/12/1960;UDI;Ancien cadre;Non;M;STAERLE;Jean-Michel;08/11/1969;Non +67;Bas-Rhin;09;9ème circonscription;2;79;M;STEINMETZ;Lenny;29/10/2003;DIV;Elève, étudiant;Non;F;LAWSON;Ornella;03/03/2003;Non +67;Bas-Rhin;09;9ème circonscription;3;93;F;WITZMANN;Leilla;07/01/1970;NUPES;Cadre administratif et commercial d'entreprise;Non;M;STAUT;Frédéric;15/09/1991;Non +67;Bas-Rhin;09;9ème circonscription;4;68;F;ALTHERR;Stéphanie;22/01/1990;REC;Ancien employé;Non;F;DELORME;Claudie;29/11/1956;Non +67;Bas-Rhin;09;9ème circonscription;5;2;M;LUCAS;Yann;16/04/1978;DXG;Professeur, profession scientifique;Non;F;JACQUEL;Elisabeth;13/05/1985;Non +67;Bas-Rhin;09;9ème circonscription;6;56;F;DESCHAMPS;Solange;09/12/1939;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;BOLLÉE;Timothé;19/09/1997;Non +67;Bas-Rhin;09;9ème circonscription;7;14;M;GNAEDIG;Laurent;24/02/1970;RN;Professeur des écoles, instituteur et assimilé;Non;F;LEMAIRE;Marguerite;21/11/1948;Non +67;Bas-Rhin;09;9ème circonscription;8;108;M;THIEBAUT;Vincent;23/05/1972;ENS;Cadre administratif et commercial d'entreprise;Oui;F;PARISSE;Emmanuelle;10/05/1978;Non +67;Bas-Rhin;09;9ème circonscription;9;66;M;GLUCK;Maurice;31/01/1980;REG;Ingénieur et cadre technique d'entreprise;Non;M;UNDREINER;Nicolas;24/09/1969;Non +68;Haut-Rhin;01;1ère circonscription;1;38;F;FRITSCH;Aïcha;31/12/1959;NUPES;Ancien employé;Non;M;ANCELY-FREY;Flavien;04/10/1991;Non +68;Haut-Rhin;01;1ère circonscription;2;4;F;COUVAL;Cyrielle;16/01/1986;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;COLLARD;Frédéric;03/09/1976;Non +68;Haut-Rhin;01;1ère circonscription;3;26;M;MARTIN;Paul;11/09/1965;RDG;Cadre administratif et commercial d'entreprise;Non;F;MESQUITA;Rosa;18/04/1955;Non +68;Haut-Rhin;01;1ère circonscription;4;31;M;HEMEDINGER;Yves;23/10/1965;LR;Cadre administratif et commercial d'entreprise;Oui;F;LEHRY;Christelle;15/05/1987;Non +68;Haut-Rhin;01;1ère circonscription;5;21;F;KLINKERT;Brigitte;22/07/1956;ENS;Ancien cadre;Non;M;BOUCHÉ;Marc;08/10/1952;Non +68;Haut-Rhin;01;1ère circonscription;6;57;F;GISIE;Laure;14/09/1995;ECO;Elève, étudiant;Non;F;HAEFFLINGER;Claudine;17/08/1961;Non +68;Haut-Rhin;01;1ère circonscription;7;73;M;ZITVOGEL;Thiébault;13/04/1973;REG;Professeur, profession scientifique;Non;F;JELTSCH;Virginie;24/11/1957;Non +68;Haut-Rhin;01;1ère circonscription;8;16;F;BISCHOFF BATMA;Ariane;26/01/1984;REC;Profession intermédiaire administrative de la fonction publique;Non;M;LOMBARD;Tristan;01/06/1988;Non +68;Haut-Rhin;01;1ère circonscription;9;35;M;SCHAFFAR;Gilles;14/12/1978;DXG;Professeur, profession scientifique;Non;M;KARADUMAN;Hüseyin;01/09/1968;Non +68;Haut-Rhin;01;1ère circonscription;10;19;M;SCHOENBECK;Steven;07/06/1997;RN;Personnel des services directs aux particuliers;Non;F;DIRRINGER;Aurélia;08/12/1989;Non +68;Haut-Rhin;02;2ème circonscription;1;27;F;DEFFARGES;Anne;02/12/1971;DXG;Professeur, profession scientifique;Non;M;METEYER;Romain;03/08/1988;Non +68;Haut-Rhin;02;2ème circonscription;2;58;M;ACKERMANN;Vincent;23/06/1978;ECO;Contremaître, agent de maîtrise;Non;F;POIROT;Stéphanie;24/12/1986;Non +68;Haut-Rhin;02;2ème circonscription;3;70;F;VANACKERE;Sophie;14/06/1976;DSV;Artisan;Non;F;CUEILLE;Nathalie;25/06/1987;Non +68;Haut-Rhin;02;2ème circonscription;4;39;M;BECKER;Fabien;10/09/1962;DVG;Commerçant et assimilé;Non;F;LEONE;Clara;02/12/1990;Non +68;Haut-Rhin;02;2ème circonscription;5;10;F;AUBERT;Nathalie;25/07/1965;RN;Profession libérale;Non;M;ESTEVE;Thomas;03/04/2001;Non +68;Haut-Rhin;02;2ème circonscription;6;17;M;OTT;Hubert;06/06/1964;ENS;Professeur, profession scientifique;Non;F;GAY;Marie-Paule;07/12/1962;Non +68;Haut-Rhin;02;2ème circonscription;7;45;M;MOREAU;Abel;11/10/1995;REG;Ingénieur et cadre technique d'entreprise;Non;M;PETITDEMANGE;Nicolas;05/10/1982;Non +68;Haut-Rhin;02;2ème circonscription;8;2;M;CATTIN;Jacques;04/06/1958;LR;Agriculteur sur grande exploitation;Oui;F;BUHL;Denise;21/11/1967;Non +68;Haut-Rhin;02;2ème circonscription;9;32;F;GRAVIER;Emily;10/07/1996;REC;Cadre de la fonction publique;Non;F;SOLIVA;Mélissa;25/10/1995;Non +68;Haut-Rhin;02;2ème circonscription;10;40;M;SCHERMANN;Gabriel;12/05/1995;ECO;Profession libérale;Non;F;ABRIC;Ludivine;13/09/1979;Non +68;Haut-Rhin;02;2ème circonscription;11;76;M;TROUILLET;Jean-Georges;27/11/1977;REG;Ingénieur et cadre technique d'entreprise;Non;F;MÉNÉTRÉ;Corinne;17/12/1969;Non +68;Haut-Rhin;02;2ème circonscription;12;48;M;BOURGEOIS;Lilian;21/01/1997;NUPES;Employé de commerce;Non;F;FEST;Simone;29/05/1952;Non +68;Haut-Rhin;03;3ème circonscription;1;25;M;FERRY;Géraud;27/01/1974;DXG;Technicien;Non;M;BRUSTLEIN;Jean-François;01/06/1977;Non +68;Haut-Rhin;03;3ème circonscription;2;64;M;JOHANECK;Jean-Luc;28/04/1954;DIV;Cadre administratif et commercial d'entreprise;Non;F;GROLI;Sandrine;26/03/1975;Non +68;Haut-Rhin;03;3ème circonscription;3;22;F;KOENIG;Louise;06/09/1998;ECO;Elève, étudiant;Non;F;KOENIG;Valerie;08/10/1969;Non +68;Haut-Rhin;03;3ème circonscription;4;68;M;STUTZMANN;Marc Thierry;04/01/1966;ECO;Profession libérale;Non;F;CHIEREGATO;Deborah Marie Louise;27/11/1979;Non +68;Haut-Rhin;03;3ème circonscription;5;8;M;ZIMMERMANN;Christian;22/03/1959;RN;Cadre de la fonction publique;Non;F;BALLARIN;Emilie;11/03/1982;Non +68;Haut-Rhin;03;3ème circonscription;6;15;F;NOEL;Sandrine;16/05/1979;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;THOMA;Gilles;06/04/1968;Non +68;Haut-Rhin;03;3ème circonscription;7;41;M;LEMAIRE;Didier;23/07/1975;ENS;Employé civil et agent de service de la fonction publique;Non;F;WEIDER-NIGLIS;Séverine;11/01/1985;Non +68;Haut-Rhin;03;3ème circonscription;8;52;F;SILVA;Priscille;03/07/1987;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;M;TREPAUT;Quentin;24/01/1989;Non +68;Haut-Rhin;03;3ème circonscription;9;54;M;STRIBY;Patrick;01/01/1969;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;LEFEBVRE;Martine;04/11/1965;Non +68;Haut-Rhin;03;3ème circonscription;10;34;M;ZELLER;Thomas;01/09/1982;LR;Commerçant et assimilé;Non;F;PI;Isabelle;03/01/1975;Non +68;Haut-Rhin;03;3ème circonscription;11;47;F;FISCHER;Simone;24/11/1952;DSV;Ancien cadre;Non;F;STRIBY;Isabelle;06/07/1970;Non +68;Haut-Rhin;03;3ème circonscription;12;6;M;WAECHTER;Antoine;11/02/1949;ECO;Ingénieur et cadre technique d'entreprise;Non;F;MARZULLO;Marie;14/05/1970;Non +68;Haut-Rhin;03;3ème circonscription;13;59;M;ZOELLÉ;Jean-Denis;10/10/1959;REG;Contremaître, agent de maîtrise;Non;F;WIRA;Céline;19/04/1985;Non +68;Haut-Rhin;04;4ème circonscription;1;23;M;SENSE;Aimé;22/02/1955;DXG;Ancien employé;Non;F;PARMENTIER;Ginette;22/09/1958;Non +68;Haut-Rhin;04;4ème circonscription;2;63;F;MAYER;Sandrine;06/11/1973;ENS;Cadre administratif et commercial d'entreprise;Non;M;GOEPFERT;Yves;14/02/1961;Non +68;Haut-Rhin;04;4ème circonscription;3;13;F;MORGEN;Corinne;20/03/1960;ECO;Ingénieur et cadre technique d'entreprise;Non;M;FLORANGE;David;16/06/1969;Non +68;Haut-Rhin;04;4ème circonscription;4;3;M;SCHELLENBERGER;Raphaël;14/02/1990;LR;Cadre de la fonction publique;Oui;F;PAGLIARULO;Karine;05/09/1961;Non +68;Haut-Rhin;04;4ème circonscription;5;61;M;BASCHUNG;Guy;18/12/1954;REG;Chef d'entreprise de 10 salariés ou plus;Non;F;MAURY;Christelle;14/04/1978;Non +68;Haut-Rhin;04;4ème circonscription;6;5;F;WILHELM;Marion;26/01/1991;RN;Cadre administratif et commercial d'entreprise;Non;M;AST;Jean-Didier;27/11/1999;Non +68;Haut-Rhin;04;4ème circonscription;7;37;F;LEFORT;Ophélie;10/05/1996;REC;Profession de l'information, des arts et des spectacles;Non;M;GULLY;Florian;14/01/2000;Non +68;Haut-Rhin;04;4ème circonscription;8;77;M;BITTERLIN;Olivier;30/10/1979;ECO;Ingénieur et cadre technique d'entreprise;Non;F;BLOCH;Sabrina;07/08/1973;Non +68;Haut-Rhin;04;4ème circonscription;9;55;M;ALTHERR;Cédric;18/02/1980;ECO;Ingénieur et cadre technique d'entreprise;Non;M;ENSEL;Christophe;18/10/1971;Non +68;Haut-Rhin;04;4ème circonscription;10;33;F;LAPOUBLE;Martine;03/03/1952;DVC;Ancien artisan, commerçant, chef d'entreprise;Non;F;GUILLONNEAU;Martine;01/07/1955;Non +68;Haut-Rhin;04;4ème circonscription;11;43;M;REFFAY;Guillaume;14/09/1974;ECO;Commerçant et assimilé;Non;F;MYOTTE;Vanessa;29/05/1975;Non +68;Haut-Rhin;04;4ème circonscription;12;12;F;CHRISTOPHE;Sylvie;24/08/1978;DSV;Technicien;Non;M;BIER;Stephane;31/10/1982;Non +68;Haut-Rhin;04;4ème circonscription;13;50;F;GAREL;Chrystelle;15/03/1972;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;CLERC;Michel;27/06/1963;Non +68;Haut-Rhin;05;5ème circonscription;1;36;M;BECHT;Olivier;28/04/1976;ENS;Cadre de la fonction publique;Oui;F;GOETSCHY-BOLOGNESE;Charlotte;21/07/1990;Non +68;Haut-Rhin;05;5ème circonscription;2;75;M;DOLUI;David;16/04/1984;DVG;Profession intermédiaire de la santé et du travail social;Non;F;VAILLIE;Maïlys;27/02/1994;Non +68;Haut-Rhin;05;5ème circonscription;3;71;M;OCHE;Lionel;29/08/1985;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MIOTTO;Sandra;06/05/1970;Non +68;Haut-Rhin;05;5ème circonscription;4;42;M;BARAZI;Alexandre;23/08/1958;ECO;Profession libérale;Non;F;BOHNER;Magaly;03/07/1980;Non +68;Haut-Rhin;05;5ème circonscription;5;30;M;COLOM;Florian;19/08/1991;LR;Profession libérale;Non;M;MOSER;Hubert;28/02/1967;Non +68;Haut-Rhin;05;5ème circonscription;6;14;M;TAFFARELLI;Emmanuel;19/06/1974;REC;Profession de l'information, des arts et des spectacles;Non;M;HANSER;Joris;22/06/1993;Non +68;Haut-Rhin;05;5ème circonscription;7;11;F;STEIMER;Marie Odile;04/01/1958;ECO;Profession intermédiaire de la santé et du travail social;Non;F;WAECHTER;Camille;10/07/1990;Non +68;Haut-Rhin;05;5ème circonscription;8;60;M;CHAMY;André;17/07/1960;DIV;Profession libérale;Non;F;OSER;Laetitia;08/07/1983;Non +68;Haut-Rhin;05;5ème circonscription;9;7;M;PINTO;Pierre;25/02/1999;RN;Employé civil et agent de service de la fonction publique;Non;M;RENKERT;Paul;18/10/2002;Non +68;Haut-Rhin;05;5ème circonscription;10;69;M;KELTOUMI;Salah;04/09/1968;DXG;Ouvrier non qualifié de type industriel;Non;M;MOUILA;Brice;14/07/1986;Non +68;Haut-Rhin;05;5ème circonscription;11;49;F;NIMESKERN;Amalia;17/11/2002;ECO;Elève, étudiant;Non;F;TINÉ;Marie-Hélène;31/08/1954;Non +68;Haut-Rhin;05;5ème circonscription;12;51;F;EL HAJJAJI;Nadia;15/12/1977;NUPES;Employé administratif d'entreprise;Non;M;RENARD;Axel;27/02/1996;Non +68;Haut-Rhin;05;5ème circonscription;13;29;M;BASCHUNG;Régis;21/12/1963;REG;Technicien;Non;M;GOERKÉ;Frédéric;01/10/1975;Non +68;Haut-Rhin;06;6ème circonscription;1;78;M;TARANTOLA;Hugo;21/05/1992;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;TARANTOLA;Gilbert;07/11/1958;Non +68;Haut-Rhin;06;6ème circonscription;2;20;M;BLUM;Pascal;07/01/1965;ECO;Ingénieur et cadre technique d'entreprise;Non;F;METZGER;Doris;01/07/1959;Non +68;Haut-Rhin;06;6ème circonscription;3;67;F;KARLEN-DEBÈVE;Mireille;14/12/1947;REG;Ancien employé;Non;M;BAECHLER;Jean-Frédéric;21/04/1971;Non +68;Haut-Rhin;06;6ème circonscription;4;46;M;LOURENÇO;Romuald;30/06/1973;DSV;Chauffeur;Non;M;SAVOYEN;Jean-Philippe;26/08/1987;Non +68;Haut-Rhin;06;6ème circonscription;5;18;M;BARTH;Stephane;30/04/1988;ECO;Professeur, profession scientifique;Non;F;HORNY;Gaelle;11/10/1989;Non +68;Haut-Rhin;06;6ème circonscription;6;44;M;BEAUSSART;Pascal;11/05/1965;DSV;Contremaître, agent de maîtrise;Non;M;GROSSE;Mathieu;24/09/1990;Non +68;Haut-Rhin;06;6ème circonscription;7;56;F;MULOT;Nathalie;12/09/1976;DXG;Cadre de la fonction publique;Non;M;CURIEN;Frédéric;27/05/1975;Non +68;Haut-Rhin;06;6ème circonscription;8;65;M;SEVIN;Guillaume;31/12/1987;DVD;Commerçant et assimilé;Non;F;WOEHRLE;Brigitte;14/10/1958;Non +68;Haut-Rhin;06;6ème circonscription;9;74;M;ROTH;Laurent;28/10/1988;DVD;Cadre administratif et commercial d'entreprise;Non;M;WEIBEL;Bruno;31/07/1954;Non +68;Haut-Rhin;06;6ème circonscription;10;79;M;MARCELLI;Sylvain;14/07/1988;REC;Ingénieur et cadre technique d'entreprise;Non;M;THOMA;Anthony;03/03/1998;Non +68;Haut-Rhin;06;6ème circonscription;11;53;M;ZILL;Yvan;27/01/1982;DVC;Ingénieur et cadre technique d'entreprise;Non;M;WUSTMANN;Christian;30/10/1968;Non +68;Haut-Rhin;06;6ème circonscription;12;62;F;HEBERT;Léonie;13/05/1982;NUPES;Cadre de la fonction publique;Non;M;FLECK;Jason;13/01/1990;Non +68;Haut-Rhin;06;6ème circonscription;13;72;F;GERHART;Anne;20/05/1977;DVC;Cadre administratif et commercial d'entreprise;Non;M;STRICH;Vincent;24/02/1970;Non +68;Haut-Rhin;06;6ème circonscription;14;9;F;RITZ;Christelle;15/06/1977;RN;Professeur, profession scientifique;Non;M;WUNENBURGER;Thierry;09/05/1963;Non +68;Haut-Rhin;06;6ème circonscription;15;66;M;FUCHS;Bruno;07/04/1959;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;POMMIER;Corinne;21/07/1972;Non +68;Haut-Rhin;06;6ème circonscription;16;24;M;BREINER;Dimitri;20/02/1987;DIV;Professeur des écoles, instituteur et assimilé;Non;M;NOUREAU;Vincent;13/05/1999;Non +69;Rhône;01;1ère circonscription;1;31;F;PROST;Anne;31/05/1963;LR;Profession libérale;Non;F;JENN;Emmanuelle;04/12/1988;Non +69;Rhône;01;1ère circonscription;2;147;M;DAYME;Grégory;14/12/1977;RDG;Cadre administratif et commercial d'entreprise;Non;F;EVA;Anne-Rose;01/09/1970;Non +69;Rhône;01;1ère circonscription;3;109;M;RUDIGOZ;Thomas;11/01/1971;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;PATRIARCA;Laetitia;11/08/1977;Non +69;Rhône;01;1ère circonscription;4;145;F;GAGARINE;Voliaria;30/10/1997;RN;Employé de commerce;Non;M;MURADIAN;Fabien;16/02/2001;Non +69;Rhône;01;1ère circonscription;5;96;F;VUARIN--APPA PLAZA;Celina;21/07/1994;DVD;Profession de l'information, des arts et des spectacles;Non;M;CEDAT;Christophe;25/11/1966;Non +69;Rhône;01;1ère circonscription;6;16;F;BONFILS;Sixtine;13/07/1996;REC;Employé civil et agent de service de la fonction publique;Non;F;DU CHOUCHET;Jeanne;10/02/1997;Non +69;Rhône;01;1ère circonscription;7;37;F;GRIES;Aurélie;11/11/1990;NUPES;Cadre de la fonction publique;Non;M;PRISSETTE;Julien;26/06/1986;Non +69;Rhône;01;1ère circonscription;8;111;F;COLOMBIER;Fanny;11/01/1998;DIV;Ouvrier agricole;Non;F;COLOMBIER;Marylou;23/09/1996;Non +69;Rhône;01;1ère circonscription;9;44;M;CHARRON;Patrick;18/12/1959;ECO;Ancienne profession intermédiaire;Non;F;DEBAUMONT;Maryse;25/07/1958;Non +69;Rhône;01;1ère circonscription;10;35;M;BUGNI;Jim;30/01/1976;DXG;Professeur, profession scientifique;Non;F;CHAMBON;Anne-Marie;28/01/1950;Non +69;Rhône;02;2ème circonscription;1;20;M;SIMON;Pierre;03/08/1990;REC;Cadre administratif et commercial d'entreprise;Non;M;BERRODIER;Gilles;10/03/1954;Non +69;Rhône;02;2ème circonscription;2;102;M;PRIETO;Philippe;28/03/1961;SOC;Cadre administratif et commercial d'entreprise;Non;F;EL YOUSSEF;Zaïma;01/03/1962;Non +69;Rhône;02;2ème circonscription;3;101;M;JULIEN-LAFERRIERE;Hubert;27/02/1966;NUPES;Professeur, profession scientifique;Oui;F;BOUAGGA;Yasmine;12/10/1982;Non +69;Rhône;02;2ème circonscription;4;38;F;VELICITAT;Claire;06/05/1993;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CERETTO;Cédric;06/09/1990;Non +69;Rhône;02;2ème circonscription;5;154;M;BÖHNKE;Laurent;09/06/1974;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;POUCHOL;Amélie;07/07/1983;Non +69;Rhône;02;2ème circonscription;6;153;M;DRIOLI;Adrien;09/07/1982;DVG;Cadre de la fonction publique;Non;F;KABOUYA;Chaineze;12/05/1983;Non +69;Rhône;02;2ème circonscription;7;56;M;TERRENES;Loic;19/06/1996;ENS;Profession intermédiaire administrative et commerciale des entreprises;Non;F;VARENNE;Virginie;28/01/1965;Non +69;Rhône;02;2ème circonscription;8;59;F;SINTÈS;Sylvine;13/11/1946;RN;Ancien employé;Non;M;MILIOTI;Thomas;05/01/2001;Non +69;Rhône;02;2ème circonscription;9;151;M;COULAN;Pascal;30/07/1961;DIV;Profession de l'information, des arts et des spectacles;Non;M;EYMERIC;Guillaume;12/12/1993;Non +69;Rhône;02;2ème circonscription;10;43;F;BRIDAY;Delphine;26/10/1991;DXG;Employé civil et agent de service de la fonction publique;Non;F;RICOTTA;Anne-Marie;08/12/1963;Non +69;Rhône;02;2ème circonscription;11;76;F;FOGEL-JEDIDI;Myriam;01/10/1977;LR;Cadre administratif et commercial d'entreprise;Non;M;MOUCHBAHANI;Michel;03/03/1965;Non +69;Rhône;02;2ème circonscription;12;86;M;ARNAULT;Raphaël;08/01/1995;REG;Employé civil et agent de service de la fonction publique;Non;F;MILLAT;Mathilde;11/03/1998;Non +69;Rhône;02;2ème circonscription;13;146;F;AISSOU;Karima;26/06/1983;ECO;Profession intermédiaire de la santé et du travail social;Non;M;BOUMEDIENE;Mehdi;21/02/1990;Non +69;Rhône;02;2ème circonscription;14;152;M;ALI;Muhammad;25/06/1972;DIV;Artisan;Non;F;JALOUK;Ibtissam;18/06/1988;Non +69;Rhône;02;2ème circonscription;15;19;F;RANNOU;Delphine;13/05/1974;DXG;Profession intermédiaire de la santé et du travail social;Non;M;JOUTEUX;Michaël;28/02/1981;Non +69;Rhône;03;3ème circonscription;1;121;F;DE MONTILLE;Béatrice;12/02/1977;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;TREMSAL;Théo;16/02/1991;Non +69;Rhône;03;3ème circonscription;2;54;M;CHINAL;Marc;07/05/1970;DIV;Commerçant et assimilé;Non;M;CASSIAU;Léo;21/09/1956;Non +69;Rhône;03;3ème circonscription;3;125;F;PEILLON;Sarah;11/04/1981;ENS;Profession intermédiaire administrative et commerciale des entreprises;Non;F;THOLLON-BAYEUL;Virginie;26/05/1974;Non +69;Rhône;03;3ème circonscription;4;10;M;DUDUKDJIAN;Jean-Noël;09/11/1964;DXG;Employé civil et agent de service de la fonction publique;Non;F;PERNIN;Marie-Christine;09/06/1951;Non +69;Rhône;03;3ème circonscription;5;62;M;VOLLORY;Gérard;08/04/1957;RN;Technicien;Non;F;FAURE;Véronique;31/03/1959;Non +69;Rhône;03;3ème circonscription;6;123;F;BARRALLON;Anaïs;28/05/1998;DXG;Elève, étudiant;Non;M;OTHMAN;Adil;29/03/2002;Non +69;Rhône;03;3ème circonscription;7;29;F;GUILLAUMONT;Nadège;26/04/2001;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PIRES;Christopher;23/03/1996;Non +69;Rhône;03;3ème circonscription;8;139;M;GEFFRAULT;Alexis;12/08/1994;DIV;Profession libérale;Non;F;KAYA;Filiz;27/12/1980;Non +69;Rhône;03;3ème circonscription;9;140;F;RAMOS;Valérie;09/12/1971;ECO;Profession intermédiaire de la santé et du travail social;Non;M;SPENNATO;Stéphane;01/11/1978;Non +69;Rhône;03;3ème circonscription;10;48;M;DELUCENAY;Olivier;31/08/1969;REC;Ingénieur et cadre technique d'entreprise;Non;M;GUYOT;Aurélien;28/11/1989;Non +69;Rhône;03;3ème circonscription;11;82;F;GARIN;Marie-Charlotte;02/09/1995;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MIACHON-DEBARD;Boris;30/10/1989;Non +69;Rhône;03;3ème circonscription;12;131;M;AUZAL;Jean-François;17/02/1964;RDG;Ancien artisan, commerçant, chef d'entreprise;Non;F;HAELEWYN;Valérie;06/09/1963;Non +69;Rhône;03;3ème circonscription;13;99;M;TODOROVIC;Nicolas;16/08/1994;ECO;Ingénieur et cadre technique d'entreprise;Non;F;TOURRE;Clara;07/01/1998;Non +69;Rhône;04;4ème circonscription;1;17;F;DARBON;Florence;18/10/1964;REC;Cadre administratif et commercial d'entreprise;Non;M;PALKOVICS;Michel;07/01/1964;Non +69;Rhône;04;4ème circonscription;2;14;F;LAURENT;Coralie;31/12/1982;DXG;Cadre de la fonction publique;Non;M;DESPLANQUES;Jean-Louis;15/02/1967;Non +69;Rhône;04;4ème circonscription;3;127;F;KEBIR;Nadia;10/10/1978;ECO;Employé civil et agent de service de la fonction publique;Non;F;LATORRE-PLUMED;Marie-Laure;01/02/1987;Non +69;Rhône;04;4ème circonscription;4;51;M;BLACHE;Pascal;21/04/1965;LR;Ancien artisan, commerçant, chef d'entreprise;Non;F;PRIVEL;Léa;30/01/1996;Non +69;Rhône;04;4ème circonscription;5;49;F;COULAIS;Véronique;14/04/1972;RN;Profession intermédiaire de la santé et du travail social;Non;M;CUZIN;Thierry;07/08/1959;Non +69;Rhône;04;4ème circonscription;6;105;F;BRUGNERA;Anne;28/11/1970;ENS;Cadre de la fonction publique;Oui;M;ACHACHE;Abdel;05/07/1967;Non +69;Rhône;04;4ème circonscription;7;149;F;VEL;Juliette;08/11/1997;DIV;Profession libérale;Non;F;CROS;Rachel;21/10/1973;Non +69;Rhône;04;4ème circonscription;8;159;M;BENRAMDANE;Malik;06/01/1988;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;ASLAN;Meryem;12/03/2000;Non +69;Rhône;04;4ème circonscription;9;81;M;BADOUARD;Benjamin;20/06/1983;NUPES;Cadre administratif et commercial d'entreprise;Non;F;CELDRAN;Annie;28/07/1961;Non +69;Rhône;05;5ème circonscription;1;116;M;DUIGOU;Yves;04/09/1958;RN;Cadre administratif et commercial d'entreprise;Non;M;DAL TOE;Lilian;09/06/1997;Non +69;Rhône;05;5ème circonscription;2;3;M;JOINT;Bastien;09/10/1994;LR;Cadre de la fonction publique;Non;M;SUCHET;Gilbert;26/03/1948;Non +69;Rhône;05;5ème circonscription;3;39;M;LE BEL;Cédric;08/09/1966;REC;Cadre administratif et commercial d'entreprise;Non;F;MICHAUD;Séverine;30/06/1974;Non +69;Rhône;05;5ème circonscription;4;95;F;BOUARD;Stéphanie;28/08/1980;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GALLARDO;Sandrine;04/12/1969;Non +69;Rhône;05;5ème circonscription;5;74;F;BROCARD;Blandine;03/11/1981;ENS;Employé administratif d'entreprise;Oui;M;BOUCHERON;Hugo;30/05/1993;Non +69;Rhône;05;5ème circonscription;6;87;M;MATTEUCCI;Fabrice;10/02/1970;NUPES;Cadre administratif et commercial d'entreprise;Non;F;DECLERCK;Valérie;09/11/1968;Non +69;Rhône;05;5ème circonscription;7;7;F;RIVIÈRE;Hélène;09/12/1975;DXG;Employé civil et agent de service de la fonction publique;Non;M;RIVOAL;Yann;08/06/1973;Non +69;Rhône;05;5ème circonscription;8;72;M;SLIMANI;Mohamed;21/06/1982;DIV;Ingénieur et cadre technique d'entreprise;Non;F;BENMALEK;Amina;21/08/1999;Non +69;Rhône;05;5ème circonscription;9;21;F;KABIL;Julie;30/11/1990;ECO;Ingénieur et cadre technique d'entreprise;Non;M;BERNARD;Valentin;07/02/1989;Non +69;Rhône;06;6ème circonscription;1;135;F;BUISSON;Katia;08/09/1992;RDG;Professeur, profession scientifique;Non;F;ABDELLI;Marwa;02/04/2001;Non +69;Rhône;06;6ème circonscription;2;92;M;SENDE;Jean-Eric;27/02/1967;DVC;Professeur des écoles, instituteur et assimilé;Non;F;BRAMUCCI;Hélène;20/05/1977;Non +69;Rhône;06;6ème circonscription;3;55;M;RYCKAERT;Paul;28/11/1948;DIV;Ingénieur et cadre technique d'entreprise;Non;F;RYCKAERT;Nicole;21/10/1946;Non +69;Rhône;06;6ème circonscription;4;158;F;WINKELMULLER;Laura;07/01/2001;REG;Elève, étudiant;Non;M;OUMEHDI;Emilien;28/04/1990;Non +69;Rhône;06;6ème circonscription;5;118;M;CHARLIEU;Clément;14/12/1985;UDI;Cadre administratif et commercial d'entreprise;Non;M;ABERKANE;Fayçal;23/03/1974;Non +69;Rhône;06;6ème circonscription;6;25;M;PRIVOLT;Grégoire;07/10/1987;DXG;Professeur des écoles, instituteur et assimilé;Non;F;NIERAT;Donatille;17/07/1969;Non +69;Rhône;06;6ème circonscription;7;4;F;BOUHAMI;Nadia;23/05/1970;DXG;Employé civil et agent de service de la fonction publique;Non;M;BRUNEAU;Philippe;30/11/1955;Non +69;Rhône;06;6ème circonscription;8;141;F;BOUTAYEB;Maude;16/08/1995;DIV;Ouvrier agricole;Non;M;DIAZ;Maxime;19/08/1995;Non +69;Rhône;06;6ème circonscription;9;100;F;ROCHE;Ingrid;26/06/1976;ECO;Professeur, profession scientifique;Non;F;JOSEPH;Céline;19/07/1983;Non +69;Rhône;06;6ème circonscription;10;12;F;MOREL;Michèle;26/03/1947;RN;Ancien cadre;Non;M;DURAND;Jean-François;16/02/1959;Non +69;Rhône;06;6ème circonscription;11;41;M;PORTA;Pierre;21/01/1961;REC;Ingénieur et cadre technique d'entreprise;Non;F;AGUS;Délia;10/11/1968;Non +69;Rhône;06;6ème circonscription;12;66;M;MEZIANI;Zaïr;04/12/1967;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;M;DANDEL;Lionnel;13/03/1961;Non +69;Rhône;06;6ème circonscription;13;83;F;HAZIZA;Emmanuelle;24/05/1985;ENS;Profession libérale;Non;M;GARLAN;Alain;13/10/1948;Non +69;Rhône;06;6ème circonscription;14;34;M;AMARD;Gabriel;05/05/1967;NUPES;Cadre administratif et commercial d'entreprise;Non;F;HADJ-MIMOUNE;Melouka;27/04/1960;Non +69;Rhône;06;6ème circonscription;15;90;M;VIEIRA;Philippe;01/05/1975;DIV;Commerçant et assimilé;Non;F;CASANOVA;Viviane;09/07/1956;Non +69;Rhône;07;7ème circonscription;1;106;F;BOUGUERRA;Monia;21/03/1984;DIV;Professeur des écoles, instituteur et assimilé;Non;M;ÖZER;Sinan;27/08/2002;Non +69;Rhône;07;7ème circonscription;2;8;F;LUCCHESI;Geneviève;15/01/1948;REC;Ancien cadre;Non;F;VENARD;Roseline;04/11/1961;Non +69;Rhône;07;7ème circonscription;3;79;F;KHEDHER;Anissa;01/04/1980;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;CHANAS;Jean;05/02/1961;Non +69;Rhône;07;7ème circonscription;4;75;M;LAHMAR;Abdelkader;12/05/1971;NUPES;Professeur, profession scientifique;Non;F;MERMOUD;Françoise;08/10/1950;Non +69;Rhône;07;7ème circonscription;5;150;M;VINCENDET;Alexandre;06/10/1983;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CHAREYRE;Martine;27/04/1953;Non +69;Rhône;07;7ème circonscription;6;124;M;VACHON;Alain;22/03/1951;DIV;Ancien cadre;Non;F;BERTIN;Christine;26/06/1971;Non +69;Rhône;07;7ème circonscription;7;104;M;GASMI;Nordine;24/07/1970;DIV;Professeur, profession scientifique;Non;F;ZEROUAL;Myriam;27/06/1987;Non +69;Rhône;07;7ème circonscription;8;156;F;PAPA;Anna;02/06/1972;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;PUIG;Jérôme;09/04/1980;Non +69;Rhône;07;7ème circonscription;9;164;M;DOGANEL;Izzet;05/05/1981;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;FOIZON;Carole;21/11/1961;Non +69;Rhône;07;7ème circonscription;10;24;M;SPREUX;Thomas;14/09/1984;DXG;Professeur des écoles, instituteur et assimilé;Non;M;FORMET;Michel;11/04/1959;Non +69;Rhône;07;7ème circonscription;11;112;M;GOMEZ;Stéphane;02/10/1975;SOC;Professeur, profession scientifique;Non;F;REMILI;Sirine;26/04/1994;Non +69;Rhône;07;7ème circonscription;12;107;F;JONCOUR;Tiffany;02/09/1989;RN;Employé administratif d'entreprise;Non;M;PIGNAL;Cédric;13/09/1991;Non +69;Rhône;07;7ème circonscription;13;28;M;LOUNES;Rachid;24/10/1960;ECO;Employé administratif d'entreprise;Non;M;ROYER;Patrick;21/03/1969;Non +69;Rhône;07;7ème circonscription;14;53;F;BOUHILA;Charlotte;29/09/1961;ECO;Personnel des services directs aux particuliers;Non;M;BOUHILA;Merwan;09/12/1993;Non +69;Rhône;08;8ème circonscription;1;128;F;LAWO;Valérie;11/07/1978;ECO;Employé de commerce;Non;M;SPENNATO;Roberto;21/07/1957;Non +69;Rhône;08;8ème circonscription;2;160;F;BRAUD;Pascale;20/11/1962;DVG;Cadre administratif et commercial d'entreprise;Non;M;CHOA-PIANE;Kenny;15/02/1993;Non +69;Rhône;08;8ème circonscription;3;11;F;DE PENFENTENYO DE KERVÉRÉGUIN;Marie;26/10/1981;REC;Employé de commerce;Non;M;FOURBOUL;Xavier;09/06/1986;Non +69;Rhône;08;8ème circonscription;4;32;M;TEYSSIER;Tristan;22/06/1981;DXG;Technicien;Non;F;PERRIN-GILBERT;Nolwenn;13/11/1978;Non +69;Rhône;08;8ème circonscription;5;137;F;PELERINS;Noëlle;25/12/1957;ECO;Ancien cadre;Non;F;SETTE;Christiane;16/12/1965;Non +69;Rhône;08;8ème circonscription;6;117;M;GAUDE;Joël;26/05/1956;ECO;Ancienne profession intermédiaire;Non;F;PRUDHON;Amélie;05/10/1974;Non +69;Rhône;08;8ème circonscription;7;89;M;DUBOIS;Antoine;13/12/1994;RN;Profession intermédiaire administrative de la fonction publique;Non;M;PRUDHOMME;Daniel;09/02/1957;Non +69;Rhône;08;8ème circonscription;8;47;F;SERRE;Nathalie;17/08/1968;LR;Profession intermédiaire administrative et commerciale des entreprises;Oui;M;CHAMPALE;Aymeric;17/05/1983;Non +69;Rhône;08;8ème circonscription;9;94;F;BULIN;Cécile;31/03/1978;NUPES;Employé civil et agent de service de la fonction publique;Non;M;AVRIL;Yoann;13/04/1975;Non +69;Rhône;08;8ème circonscription;10;26;M;DESPRAS;Dominique;24/03/1976;ENS;Agriculteur sur moyenne exploitation;Non;F;ASTI-LAPPERRIÈRE;Florence;06/08/1964;Non +69;Rhône;08;8ème circonscription;11;148;M;NOVE JOSSERAND;Mathieu;05/03/1964;DSV;Profession libérale;Non;F;GUTHMANN;Marie-Laure;15/10/1959;Non +69;Rhône;09;9ème circonscription;1;108;M;BERTHOUX;Rémi;14/09/1996;RN;Professeur, profession scientifique;Non;M;COLLOMB;Patrick;02/10/1964;Non +69;Rhône;09;9ème circonscription;2;2;M;PORTIER;Alexandre;21/04/1990;LR;Professeur, profession scientifique;Non;M;PERRUT;Bernard;24/01/1957;Oui +69;Rhône;09;9ème circonscription;3;52;F;DUNE;Mylène;14/11/1974;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;NAVARRO;Pierre;26/11/1956;Non +69;Rhône;09;9ème circonscription;4;78;M;MÉJEAN;Ambroise;29/09/1995;ENS;Profession intermédiaire administrative et commerciale des entreprises;Non;M;LAURENT;Antoine;21/05/1990;Non +69;Rhône;09;9ème circonscription;5;155;F;BAÏDA;Delphine;29/04/1983;DIV;Cadre administratif et commercial d'entreprise;Non;M;SOYAK;Bilal;20/10/1984;Non +69;Rhône;09;9ème circonscription;6;88;M;CHAVANNE;Alexandre;01/09/1970;REG;Commerçant et assimilé;Non;F;GEREZ;Claudine;12/02/1974;Non +69;Rhône;09;9ème circonscription;7;73;F;HELLY;Chantal;21/01/1975;DXG;Professeur, profession scientifique;Non;M;GOIFFON;Denis;11/12/1959;Non +69;Rhône;09;9ème circonscription;8;132;F;PERRICHON;Elodie;28/07/1982;ECO;Profession libérale;Non;M;CABEZAS;Alain;11/07/1962;Non +69;Rhône;09;9ème circonscription;9;30;F;DE GUERNON;Claire;26/09/1991;REC;Cadre administratif et commercial d'entreprise;Non;M;ORIOL;Florian;05/05/1981;Non +69;Rhône;09;9ème circonscription;10;97;F;GIRERD;Maguy;18/04/1947;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;BENSALEM;Bruno;05/09/1965;Non +69;Rhône;10;10ème circonscription;1;120;M;ULUBAS;Xavier;14/03/1979;ECO;Ouvrier non qualifié de type industriel;Non;F;MONTEUX;Marina;23/10/1965;Non +69;Rhône;10;10ème circonscription;2;13;M;BOMPARD;Gilles;24/06/1975;DXG;Technicien;Non;F;BARATIER;Sylvie;22/01/1962;Non +69;Rhône;10;10ème circonscription;3;63;M;RAMBAUD;Gerbert;20/10/1963;DSV;Profession libérale;Non;M;CAPPEAU;Guy;16/08/1946;Non +69;Rhône;10;10ème circonscription;4;110;F;EDERY;Michèle;30/03/1956;NUPES;Ancien cadre;Non;M;DALLE;Warren;21/09/1995;Non +69;Rhône;10;10ème circonscription;5;9;F;MARION;Agnès;07/06/1977;REC;Artisan;Non;M;VERNY;Thibault;12/11/1987;Non +69;Rhône;10;10ème circonscription;6;91;F;CHANELET;Fatiha;25/07/1975;DVD;Profession de l'information, des arts et des spectacles;Non;M;BINA;Edouard;13/10/2002;Non +69;Rhône;10;10ème circonscription;7;133;F;CRUZ;Sophie;11/09/1967;LR;Professeur, profession scientifique;Non;F;MAROLLEAU;Céline;14/05/1975;Non +69;Rhône;10;10ème circonscription;8;36;M;GASSILLOUD;Thomas;21/05/1981;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;TIRTIAUX;Fabienne;21/04/1964;Non +69;Rhône;10;10ème circonscription;9;98;M;RUIZ;Sébastien;10/04/1999;ECO;Elève, étudiant;Non;F;MICHAUDON;Régine;19/11/1961;Non +69;Rhône;11;11ème circonscription;1;68;M;ASCARINO;Charles;07/10/1992;REC;Professeur, profession scientifique;Non;F;TESSIER;Marie;13/07/1990;Non +69;Rhône;11;11ème circonscription;2;6;F;BROWNING;Isabelle;15/11/1998;DXG;Elève, étudiant;Non;M;MARQUEZ;David;22/06/1967;Non +69;Rhône;11;11ème circonscription;3;163;M;CHIRAT;Christophe;20/03/1971;DIV;Commerçant et assimilé;Non;F;JAMARIN;Mélanie;04/01/1996;Non +69;Rhône;11;11ème circonscription;4;42;M;MARTINON;Alexis;03/07/1993;ECO;Commerçant et assimilé;Non;F;BRUGNAUX;Émilie;04/07/1981;Non +69;Rhône;11;11ème circonscription;5;58;M;ALLALI;Moshen;17/09/1961;DVG;Ancien employé;Non;F;CHAN;Kathy;24/11/1994;Non +69;Rhône;11;11ème circonscription;6;50;M;VIDAL;Paul;08/09/1950;LR;Ancien cadre;Non;M;PFEFFER;Renaud;08/02/1980;Non +69;Rhône;11;11ème circonscription;7;142;M;DULAC;Michel;26/09/1942;RN;Commerçant et assimilé;Non;M;SIMIAN;Roch;05/04/1997;Non +69;Rhône;11;11ème circonscription;8;126;F;SPENNATO;Sophie;07/04/1980;ECO;Employé civil et agent de service de la fonction publique;Non;M;PAQUET;Benoît;20/01/1986;Non +69;Rhône;11;11ème circonscription;9;57;M;YOUSFI;Abdel;16/09/1968;NUPES;Ouvrier qualifié de type industriel;Non;F;BOIZET;Pia;21/02/1960;Non +69;Rhône;11;11ème circonscription;10;23;M;FUGIT;Jean-Luc;27/11/1969;ENS;Professeur, profession scientifique;Oui;F;BACLE-COULOUVRAT;Magali;24/08/1974;Non +69;Rhône;11;11ème circonscription;11;119;F;ROSSOLINI;Aude;25/07/1984;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BACHAUD;Yvan;17/04/1939;Non +69;Rhône;11;11ème circonscription;12;157;M;COMMUNAL;Pierre-Henri;25/01/1970;DSV;Profession libérale;Non;M;FREYDIERE;Cyril;15/09/1976;Non +69;Rhône;12;12ème circonscription;1;161;M;HEURTEL;Antoine;04/06/1996;DIV;Ingénieur et cadre technique d'entreprise;Non;M;HEURTEL;Geoffroy;31/12/1999;Non +69;Rhône;12;12ème circonscription;2;113;M;PIRRA;Olivier;24/03/1982;REC;Ingénieur et cadre technique d'entreprise;Non;F;COATIVY;Muriel;27/02/1966;Non +69;Rhône;12;12ème circonscription;3;162;F;CARRON;Lucie;14/01/1961;ECO;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;DUJET;Vincent;20/06/2000;Non +69;Rhône;12;12ème circonscription;4;129;F;SPENNATO;Samantha;16/08/2001;ECO;Elève, étudiant;Non;F;BOUCHARA;Médine;06/09/2000;Non +69;Rhône;12;12ème circonscription;5;61;M;ISAAC-SIBILLE;Cyrille;30/04/1958;ENS;Profession libérale;Oui;F;FRAPPA-ROUSSE;Carine;14/05/1975;Non +69;Rhône;12;12ème circonscription;6;67;M;MOROGE;Jérôme;23/08/1979;LR;Profession libérale;Non;F;PECHARD;Katia;04/03/1970;Non +69;Rhône;12;12ème circonscription;7;22;M;AMSELLEM;David;02/01/1985;DSV;Commerçant et assimilé;Non;M;AMSELLEM;Jonathan;07/12/1998;Non +69;Rhône;12;12ème circonscription;8;5;F;FAURITE;Cécile;16/08/1970;DXG;Profession libérale;Non;M;RENAULT;Jean-Luc;28/06/1949;Non +69;Rhône;12;12ème circonscription;9;15;F;ANNANI;Elodie;23/03/1995;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;GRECO;Antonin;23/12/2000;Non +69;Rhône;12;12ème circonscription;10;45;M;BAUDIN;Jean-François;28/02/1966;NUPES;Profession intermédiaire administrative de la fonction publique;Non;F;AUGEY;Apolline;01/04/1993;Non +69;Rhône;12;12ème circonscription;11;138;F;BEUZIT;Céline;06/01/1989;ECO;Cadre de la fonction publique;Non;M;MANUCCI;Julien;17/10/1993;Non +69;Rhône;12;12ème circonscription;12;136;M;CHAMBON;Arthur;13/11/1995;RDG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;BOISSIEU;Claire;25/02/1964;Non +69;Rhône;13;13ème circonscription;1;143;F;TANZILLI;Sarah;23/01/1985;ENS;Cadre administratif et commercial d'entreprise;Non;M;JOURDAIN;Jean-Pierre;30/07/1951;Non +69;Rhône;13;13ème circonscription;2;69;M;PRANDT;Victor;01/03/1995;NUPES;Cadre de la fonction publique;Non;F;DIDAOUI;Fatiha;31/10/1974;Non +69;Rhône;13;13ème circonscription;3;18;M;BARTHÈS;Didier;13/06/1958;ECO;Profession libérale;Non;F;TEYSSEIRE;Anne-Marie;11/05/1954;Non +69;Rhône;13;13ème circonscription;4;46;M;PIOT;Michel;26/04/1973;DXG;Ouvrier qualifié de type industriel;Non;M;FAGNOU;Jean-Charles;21/04/1987;Non +69;Rhône;13;13ème circonscription;5;144;F;GIGAREL;Océane;18/06/1991;REC;Employé administratif d'entreprise;Non;M;GROS;Didier;25/03/1978;Non +69;Rhône;13;13ème circonscription;6;134;F;PERREIRA;Christina;14/02/1975;ECO;Commerçant et assimilé;Non;M;GOLESTIN;Fabien;13/09/1976;Non +69;Rhône;13;13ème circonscription;7;122;F;CHOMETTE;Auriane;19/07/2003;DSV;Elève, étudiant;Non;M;BOUILLARD;Christian;06/03/1990;Non +69;Rhône;13;13ème circonscription;8;60;M;PECHEREAU;Alain;30/08/1955;RN;Ancien cadre;Non;F;DERVAHANIAN;Isabelle;24/10/1966;Non +69;Rhône;13;13ème circonscription;9;70;M;GASCON;Gilles;21/01/1967;LR;Commerçant et assimilé;Non;F;ZARTARIAN;Dany-Claude;09/08/1984;Non +69;Rhône;13;13ème circonscription;10;84;F;BRIZA;Sabrina;22/09/1988;DIV;Professeur, profession scientifique;Non;M;BEKKALI;Ismaïl;08/01/1969;Non +69;Rhône;14;14ème circonscription;1;115;M;MONCHAU;Damien;17/09/1986;RN;Policier et militaire;Non;F;LAM;Maïté;10/05/1992;Non +69;Rhône;14;14ème circonscription;2;80;M;KESSI;Mokrane;14/08/1966;DVC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;SAÏD;Hidaya;26/07/1991;Non +69;Rhône;14;14ème circonscription;3;40;M;MINOUX;Olivier;26/03/1969;DXG;Ouvrier qualifié de type industriel;Non;F;PETIT;Barbara;13/08/1984;Non +69;Rhône;14;14ème circonscription;4;130;F;SALMI;Camila;27/03/2004;ECO;Elève, étudiant;Non;M;DUPONT;Steve;26/09/1981;Non +69;Rhône;14;14ème circonscription;5;65;M;OMEIR;Farid;12/09/1986;DIV;Professeur, profession scientifique;Non;F;ZEDIOUI;Zohra;20/07/1998;Non +69;Rhône;14;14ème circonscription;6;77;M;AYVALI;Yalcin;07/03/1981;DIV;Ingénieur et cadre technique d'entreprise;Non;F;LOUCIF;Fatma;06/01/1975;Non +69;Rhône;14;14ème circonscription;7;27;F;PALLUY;Delphine;17/03/1974;ECO;Commerçant et assimilé;Non;M;BEVILLON;Emile;21/02/1983;Non +69;Rhône;14;14ème circonscription;8;114;M;ATTAL;Bruno;07/04/1973;REC;Policier et militaire;Non;F;ETENNE;Vanessa;03/04/1986;Non +69;Rhône;14;14ème circonscription;9;71;M;BOUMERTIT;Idir;04/10/1974;NUPES;Employé administratif d'entreprise;Non;F;PUTOUD;Gisèle;21/08/1960;Non +69;Rhône;14;14ème circonscription;10;64;M;BLEIN;Yves;12/10/1954;ENS;Ancien cadre;Oui;M;OBRECHT;Pierre;01/01/1965;Non +69;Rhône;14;14ème circonscription;11;103;M;EGRON;Martin;25/05/1991;DSV;Cadre administratif et commercial d'entreprise;Non;F;ALFONSI;Orane;10/10/1991;Non +70;Haute-Saône;01;1ère circonscription;1;2;F;BESSOT BALLOT;Barbara;13/04/1972;ENS;Commerçant et assimilé;Oui;M;PINI;Stéphane;08/10/1974;Non +70;Haute-Saône;01;1ère circonscription;2;17;F;ERARD;Karine;04/09/1973;ECO;Elève, étudiant;Non;F;BARROIS;Nadine;26/01/1972;Non +70;Haute-Saône;01;1ère circonscription;3;6;M;FISCHER;Cédric;11/07/1974;DXG;Ouvrier non qualifié de type industriel;Non;F;GARRET;Thérèse;28/02/1951;Non +70;Haute-Saône;01;1ère circonscription;4;4;M;VILLEDIEU;Antoine;08/03/1989;RN;Policier et militaire;Non;M;MAGNIN;Antoni;15/09/1992;Non +70;Haute-Saône;01;1ère circonscription;5;13;M;DOUSSOT;Dimitri;17/05/1985;LR;Cadre de la fonction publique;Non;M;LEDUC;Sébastien;23/04/1975;Non +70;Haute-Saône;01;1ère circonscription;6;10;F;KEMPS HOUVER;Marion;07/01/1989;DSV;Cadre administratif et commercial d'entreprise;Non;M;KEMPS;Hjalmar;17/08/1963;Non +70;Haute-Saône;01;1ère circonscription;7;8;M;GHILES;Philippe;09/02/1950;REC;Ancien artisan, commerçant, chef d'entreprise;Non;F;GRANDGERARD;Anny;14/05/1954;Non +70;Haute-Saône;01;1ère circonscription;8;15;F;GIRARDOT;Sandra;07/04/1968;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;POYARD;Alexis;26/10/2001;Non +70;Haute-Saône;02;2ème circonscription;1;7;F;APRO;Isabelle;29/03/1973;DXG;Profession intermédiaire de la santé et du travail social;Non;M;ROUILLON;Daniel;28/01/1958;Non +70;Haute-Saône;02;2ème circonscription;2;14;M;GUERAIN;Patrice;22/03/1967;NUPES;Ouvrier qualifié de type industriel;Non;F;THOMASSEY;Emmanuelle;08/10/1970;Non +70;Haute-Saône;02;2ème circonscription;3;11;F;ROCHON;Sophie;03/12/1976;ECO;Cadre administratif et commercial d'entreprise;Non;M;CRUCHON;Lionel;21/01/1965;Non +70;Haute-Saône;02;2ème circonscription;4;3;M;LEJEUNE;Christophe;22/03/1969;ENS;Commerçant et assimilé;Oui;F;PY;Béatrice;29/03/1954;Non +70;Haute-Saône;02;2ème circonscription;5;9;M;MONNIER;Maurice;14/03/1983;REC;Employé civil et agent de service de la fonction publique;Non;F;SUBIGER;Rose-Marie;03/04/1960;Non +70;Haute-Saône;02;2ème circonscription;6;5;M;SALMON;Emeric;26/11/1973;RN;Cadre administratif et commercial d'entreprise;Non;M;MOREL;Denis;24/09/1943;Non +70;Haute-Saône;02;2ème circonscription;7;12;F;COUDEREAU;Corinne;18/08/1976;UDI;Employé administratif d'entreprise;Non;M;CALLOCH;Michel;21/03/1955;Non +70;Haute-Saône;02;2ème circonscription;8;16;M;BURI;Ludovic;06/01/1971;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;DUCHET SUCHAUX;Marc;26/11/1958;Non +71;Saône-et-Loire;01;1ère circonscription;1;9;F;KOLLER;Odile;07/09/1957;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;CHASSARD;Daniel;10/05/1960;Non +71;Saône-et-Loire;01;1ère circonscription;2;35;M;MONIN;Patrick;10/03/1960;NUPES;Ancien cadre;Non;F;AMARO;Catherine;26/06/1975;Non +71;Saône-et-Loire;01;1ère circonscription;3;28;M;JUVANON;Christophe;21/01/1970;LR;Ingénieur et cadre technique d'entreprise;Non;F;GAUDILLÈRE;Valérie;06/05/1978;Non +71;Saône-et-Loire;01;1ère circonscription;4;40;M;LAUNOY;Manuel;01/06/1972;DVD;Ingénieur et cadre technique d'entreprise;Non;M;CHEVALLIER;Luc;12/07/1969;Non +71;Saône-et-Loire;01;1ère circonscription;5;24;M;VAUCHER;Philippe;20/11/1961;DSV;Ancien cadre;Non;F;VAUCHER;Caroline;10/07/1991;Non +71;Saône-et-Loire;01;1ère circonscription;6;36;M;ROY;Armand;20/12/1953;DSV;Agriculteur sur moyenne exploitation;Non;M;ALEXANDRE;Patrick;11/07/1969;Non +71;Saône-et-Loire;01;1ère circonscription;7;17;M;DUTREMBLE;Aurélien;23/12/1978;RN;Profession intermédiaire administrative de la fonction publique;Non;F;DREVET;Rachel;23/11/1967;Non +71;Saône-et-Loire;01;1ère circonscription;8;2;F;BIZE;Myriam;26/12/1975;REC;Employé administratif d'entreprise;Non;M;RENAULT;Joseph;07/07/1965;Non +71;Saône-et-Loire;01;1ère circonscription;9;34;M;DIRX;Benjamin;25/01/1979;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;BROCHETTE;Anne;02/12/1964;Non +71;Saône-et-Loire;02;2ème circonscription;1;15;F;CORNELOUP;Josiane;30/09/1959;LR;Profession libérale;Oui;M;LABAUNE;Arnaud;25/06/1979;Non +71;Saône-et-Loire;02;2ème circonscription;2;18;M;DAMIEN;Olivier;22/03/1955;RN;Ancien cadre;Non;F;CONDAMIN;Catherine;05/05/1967;Non +71;Saône-et-Loire;02;2ème circonscription;3;3;F;ALBERT;Laurence;17/11/1969;REC;Cadre de la fonction publique;Non;M;CUISSINAT;Yohan;14/12/1998;Non +71;Saône-et-Loire;02;2ème circonscription;4;26;F;VARÉLA;Chantal;27/10/1956;DSV;Ancien employé;Non;M;LEBEAULT;Gilles;29/07/1969;Non +71;Saône-et-Loire;02;2ème circonscription;5;25;F;VINAUGER;Céline;23/05/1969;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;JOUHANDEAUD;Maxence;22/05/1997;Non +71;Saône-et-Loire;02;2ème circonscription;6;44;F;SICARD;Maud;02/11/1993;DIV;Cadre de la fonction publique;Non;M;MUNOZ;Teddy;07/01/1988;Non +71;Saône-et-Loire;02;2ème circonscription;7;37;F;GAUTHIER;Laurence;01/08/1966;ENS;Cadre administratif et commercial d'entreprise;Non;M;COMTE;Jacky;17/02/1960;Non +71;Saône-et-Loire;02;2ème circonscription;8;10;M;DUSSAUGE;Pascal;04/06/1958;DXG;Ancien employé;Non;F;BUNEL;Fabienne;09/04/1957;Non +71;Saône-et-Loire;03;3ème circonscription;1;11;M;REBEYROTTE;Rémy;27/03/1966;ENS;Professeur, profession scientifique;Oui;F;PICARD;Danièle;18/09/1970;Non +71;Saône-et-Loire;03;3ème circonscription;2;30;F;BERTHELIER;Muriel;27/04/1958;ECO;Ancien employé;Non;M;GUERINI;Jean-Baptiste;28/01/1996;Non +71;Saône-et-Loire;03;3ème circonscription;3;5;F;LUCOTTE;Julie;07/11/1980;DXG;Profession intermédiaire de la santé et du travail social;Non;M;BARTCZAK;Daniel;02/10/1954;Non +71;Saône-et-Loire;03;3ème circonscription;4;38;M;LANDRE;Charles;30/04/1988;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;PHILIPPE;Marie-Jeanne;14/05/1948;Non +71;Saône-et-Loire;03;3ème circonscription;5;14;M;BENINGER;Richard;20/10/1953;NUPES;Ancien cadre;Non;F;FEBVRE;Margaux;06/03/1986;Non +71;Saône-et-Loire;03;3ème circonscription;6;33;F;ROBERT;France;10/11/1958;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;ROTH;Sébastien;25/04/1971;Non +71;Saône-et-Loire;03;3ème circonscription;7;43;F;BIGOT;Anne;17/08/1971;REC;Cadre administratif et commercial d'entreprise;Non;M;DEVAUX;Romain;29/12/1984;Non +71;Saône-et-Loire;03;3ème circonscription;8;20;F;BAROIN;Sandrine;25/06/1977;RN;Employé de commerce;Non;M;PIMET;Edouard;18/03/1994;Non +71;Saône-et-Loire;04;4ème circonscription;1;8;F;ROBLOT;Elisabeth;01/09/1968;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MARMEYS;Anthony;19/10/1987;Non +71;Saône-et-Loire;04;4ème circonscription;2;12;M;RAFFA;Jean;02/08/1963;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;CARNAILLE;Anthony;15/03/1984;Non +71;Saône-et-Loire;04;4ème circonscription;3;31;F;SZYCH;Nathalie;20/03/1967;DSV;Profession intermédiaire de la santé et du travail social;Non;M;MICHAUD;Claude;21/02/1965;Non +71;Saône-et-Loire;04;4ème circonscription;4;21;M;MICHOUX;Eric;17/06/1959;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;GACON;Sandrine;30/06/1976;Non +71;Saône-et-Loire;04;4ème circonscription;5;19;F;DELOGE;Valérie;09/05/1966;RN;Agriculteur sur petite exploitation;Non;M;GAUDILLAT;Dominique;12/06/1970;Non +71;Saône-et-Loire;04;4ème circonscription;6;6;M;COURATIER;Claude;10/01/1970;DXG;Employé de commerce;Non;M;COROT;Gilles;05/03/1963;Non +71;Saône-et-Loire;04;4ème circonscription;7;39;F;UNTERMAIER;Cécile;28/12/1951;NUPES;Ancien cadre;Oui;M;CANNARD;Frédéric;23/10/1968;Non +71;Saône-et-Loire;05;5ème circonscription;1;42;M;PLATRET;Gilles;19/04/1973;LR;Profession libérale;Non;M;DUPARAY;Lionel;07/02/1981;Non +71;Saône-et-Loire;05;5ème circonscription;2;7;M;DUFRAIGNE;Pascal;11/08/1963;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;PELLETIER;Christine;02/02/1963;Non +71;Saône-et-Loire;05;5ème circonscription;3;27;M;BATHIARD;Tristan-Ludovic;16/03/1987;RDG;Cadre de la fonction publique;Non;M;GARY;François;19/09/1946;Non +71;Saône-et-Loire;05;5ème circonscription;4;4;M;GOUBEAULT;Denis;11/12/1990;REC;Ingénieur et cadre technique d'entreprise;Non;F;PERCIVALLE;Cécile;16/09/1992;Non +71;Saône-et-Loire;05;5ème circonscription;5;22;M;CALLI;Ramazan;19/12/1994;DVG;Profession de l'information, des arts et des spectacles;Non;F;CALLI;Deniz;28/02/1995;Non +71;Saône-et-Loire;05;5ème circonscription;6;16;M;SANVERT;Arnaud;03/08/1983;RN;Personnel des services directs aux particuliers;Non;M;MEUNIER;Gilles;01/04/1955;Non +71;Saône-et-Loire;05;5ème circonscription;7;32;M;RIBOULET;Eric;27/09/1961;NUPES;Ancien employé;Non;F;KOURICHE;Fatima;10/03/1971;Non +71;Saône-et-Loire;05;5ème circonscription;8;29;F;PELLETIER;Christine;24/03/1970;ECO;Profession intermédiaire de la santé et du travail social;Non;F;GUYOT;Géraldine;07/01/1975;Non +71;Saône-et-Loire;05;5ème circonscription;9;13;M;LARTAUT;Patrick;13/08/1966;DXG;Ouvrier qualifié de type industriel;Non;F;PITAUD;Stéphanie;22/11/1968;Non +71;Saône-et-Loire;05;5ème circonscription;10;23;M;MARGUERITTE;Louis;10/09/1984;ENS;Cadre de la fonction publique;Non;F;JARROT;Marie-Claude;10/10/1955;Non +71;Saône-et-Loire;05;5ème circonscription;11;41;F;LE THEIX;Sonia;20/03/1961;DSV;Personnel des services directs aux particuliers;Non;M;ROY;Anthony;07/05/1983;Non +72;Sarthe;01;1ère circonscription;1;48;F;COLLET;Patricia;23/07/1956;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;HARPIN;Joël;10/05/1973;Non +72;Sarthe;01;1ère circonscription;2;17;F;PICOULEAU;Edwige;11/01/1970;RN;Artisan;Non;M;GUILLORET;Benoit;22/10/1967;Non +72;Sarthe;01;1ère circonscription;3;11;M;CORTÉS;Yves;05/10/1959;UDI;Profession libérale;Non;F;MOINET;Sonia;09/03/1962;Non +72;Sarthe;01;1ère circonscription;4;30;M;FOUÉRÉ;Stéphane;23/01/1969;DVG;Cadre de la fonction publique;Non;F;BAGHOU;Rafika;11/10/1978;Non +72;Sarthe;01;1ère circonscription;5;25;F;DELPECH;Julie;25/09/1989;ENS;Cadre administratif et commercial d'entreprise;Non;M;EVENISSE;Marc;02/06/1980;Non +72;Sarthe;01;1ère circonscription;6;24;F;DUJARDIN;Brigitte;06/05/1980;REC;Cadre administratif et commercial d'entreprise;Non;M;BIARD;Hervé;28/10/1960;Non +72;Sarthe;01;1ère circonscription;7;12;F;LABRETTE-MÉNAGER;Fabienne;08/01/1961;LR;Profession libérale;Non;M;SASSO;Olivier;05/01/1972;Non +72;Sarthe;01;1ère circonscription;8;35;M;BÉNAUD;Dylan;24/05/1999;SOC;Employé administratif d'entreprise;Non;F;DUBOIS;Françoise;06/12/1947;Non +72;Sarthe;01;1ère circonscription;9;22;F;MAILLET;Sylvie;17/05/1965;DXG;Professeur, profession scientifique;Non;M;RABETTE;Arnaud;14/04/1974;Non +72;Sarthe;01;1ère circonscription;10;40;F;BONNET;Ghislaine;12/10/1956;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;BUCHOT;Nathalie;16/03/1968;Non +72;Sarthe;02;2ème circonscription;1;21;M;LE FORESTIER;François;27/06/1979;LR;Cadre administratif et commercial d'entreprise;Non;F;GAUTHIER-CHAILLOUX;Nathalie;17/05/1967;Non +72;Sarthe;02;2ème circonscription;2;50;F;MONET;Alexandra;04/03/1996;ENS;Profession de l'information, des arts et des spectacles;Non;M;POIRIER;Jean-Pierre;04/10/1951;Non +72;Sarthe;02;2ème circonscription;3;37;M;PICAVEZ;Vincent;28/11/1973;DXG;Professeur des écoles, instituteur et assimilé;Non;M;POIX;Christian;29/11/1949;Non +72;Sarthe;02;2ème circonscription;4;23;F;ZBIROU;Marylin;29/12/1955;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;M;LOPEZ;Grégory;12/04/1997;Non +72;Sarthe;02;2ème circonscription;5;8;M;JOVER;Serge;01/01/1954;DXG;Ancien cadre;Non;F;DUCLOS;Albertine;16/05/1979;Non +72;Sarthe;02;2ème circonscription;6;15;M;BESLIER;Olivier;15/12/1960;REC;Professeur, profession scientifique;Non;F;GOUJARD;Chor-Nay;21/12/1993;Non +72;Sarthe;02;2ème circonscription;7;39;F;CABARET;Muriel;09/03/1955;SOC;Ancien cadre;Non;M;COUNIL;Christophe;05/09/1972;Non +72;Sarthe;02;2ème circonscription;8;52;F;KARAMANLI;Marietta;18/12/1964;NUPES;Professeur, profession scientifique;Oui;M;HERVÉ;Yves-Marie;21/05/1963;Non +72;Sarthe;02;2ème circonscription;9;9;M;TROCHON;Eric;30/09/1967;DSV;Agriculteur sur grande exploitation;Non;M;BAUDON;Jérémy;09/06/1985;Non +72;Sarthe;02;2ème circonscription;10;14;F;FURET;Angéline;24/07/1981;RN;Profession libérale;Non;M;DERRÉ;Louis;04/10/1986;Non +72;Sarthe;02;2ème circonscription;11;20;M;HUBERT;Thomas;15/08/1968;DXG;Professeur, profession scientifique;Non;F;BRETON;Armelle;31/12/1976;Non +72;Sarthe;03;3ème circonscription;1;28;F;LELOUP;Dominique;17/03/1961;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;DUBOIS-GASNOT;Stéphanie;26/07/1975;Non +72;Sarthe;03;3ème circonscription;2;36;M;POISSON;Jérôme;19/11/1975;DSV;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;POISSON;Agathe;04/02/1972;Non +72;Sarthe;03;3ème circonscription;3;5;F;BRUTOUT;Maryse;14/07/1959;DXG;Ancien employé;Non;F;DEREC;Caroline;29/04/1974;Non +72;Sarthe;03;3ème circonscription;4;49;F;LATOUCHE;Béatrice;19/04/1973;LR;Cadre de la fonction publique;Non;M;GRUAU;Vincent;31/08/1971;Non +72;Sarthe;03;3ème circonscription;5;19;M;MARTINEAU;Eric;08/05/1968;ENS;Agriculteur sur moyenne exploitation;Non;M;DUPUIS;Pascal;08/04/1962;Non +72;Sarthe;03;3ème circonscription;6;45;F;COUDRAIN;Bernadette;20/05/1953;REC;Professeur des écoles, instituteur et assimilé;Non;M;POIRIER;Emmanuel;09/01/1967;Non +72;Sarthe;03;3ème circonscription;7;42;M;BRANCHU;Laurent;30/12/1972;SOC;Employé civil et agent de service de la fonction publique;Non;F;SINNAEVE;Émilie;23/11/1980;Non +72;Sarthe;03;3ème circonscription;8;47;M;NOËL;Henri;04/05/1989;DIV;Cadre de la fonction publique;Non;F;ALLAINGUILLAUME;Klervi;16/07/1989;Non +72;Sarthe;03;3ème circonscription;9;4;M;PINÇON;Bruno;23/01/1962;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;HANNIER;Christophe;04/05/1967;Non +72;Sarthe;04;4ème circonscription;1;33;M;DALIBERT;David;21/04/1973;ECO;Cadre administratif et commercial d'entreprise;Non;F;DALIBERT;Mireille;10/03/1973;Non +72;Sarthe;04;4ème circonscription;2;43;M;LE FLOCH-IMAD;Joachim;24/10/1996;ENS;Professeur, profession scientifique;Non;F;CAILLEAU;Catherine;21/01/1966;Non +72;Sarthe;04;4ème circonscription;3;34;M;FRANCO;Emmanuel;05/09/1970;LR;Cadre administratif et commercial d'entreprise;Non;F;BODARD-SOUDÉE;Ghislaine;21/03/1972;Non +72;Sarthe;04;4ème circonscription;4;29;M;BARBET;Didier;14/07/1968;DIV;Profession libérale;Non;F;CHAUMONT;Michaëla;17/09/1969;Non +72;Sarthe;04;4ème circonscription;5;31;F;TOLMONT;Sylvie;09/10/1962;SOC;Cadre administratif et commercial d'entreprise;Oui;M;MARTIN;Romuald;09/11/1970;Non +72;Sarthe;04;4ème circonscription;6;51;F;LEBOUCHER;Elise;09/10/1982;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;GIBERT;Florence;28/02/1974;Non +72;Sarthe;04;4ème circonscription;7;6;M;NOUCHY;Thierry;16/01/1965;DXG;Professeur, profession scientifique;Non;M;THÉNAISIE;Matthieu;14/06/1977;Non +72;Sarthe;04;4ème circonscription;8;7;M;BOULAY;Stéphane;21/08/1968;DSV;Ingénieur et cadre technique d'entreprise;Non;F;DUFAY;Mireille;02/07/1977;Non +72;Sarthe;04;4ème circonscription;9;3;M;DE MALHERBE;Raymond;30/03/1957;RN;Ancien cadre;Non;M;CARTON;Fabien;09/03/1966;Non +72;Sarthe;04;4ème circonscription;10;10;M;BUARD;Sébastien;21/09/1978;REC;Professeur, profession scientifique;Non;M;LORNE;Fabien;19/08/1956;Non +72;Sarthe;05;5ème circonscription;1;46;M;ROBYN;Laurent;22/12/1975;DXG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;RIEST;Enzo;26/08/1997;Non +72;Sarthe;05;5ème circonscription;2;44;M;LUNEL;Frédéric;30/04/1984;SOC;Professeur, profession scientifique;Non;F;HAMONOU-BOIROUX;Lydia;20/09/1960;Non +72;Sarthe;05;5ème circonscription;3;13;F;BAYLE DE JESSÉ;Cécile;20/02/1948;DSV;Chef d'entreprise de 10 salariés ou plus;Non;M;MARTINI;Stéphane;11/04/1967;Non +72;Sarthe;05;5ème circonscription;4;18;M;DE VILMAREST;Eric;17/03/1959;REC;Commerçant et assimilé;Non;F;GOUBAULT;Marine;28/10/1977;Non +72;Sarthe;05;5ème circonscription;5;27;F;MANUEL;Solène;27/01/1991;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;ALEID-RIPOCHE;Yann-Falah;17/10/1993;Non +72;Sarthe;05;5ème circonscription;6;16;F;DE VIGNERAL;Victoria;30/05/1984;RN;Profession intermédiaire administrative de la fonction publique;Non;M;VAUGARNY;Pierre;22/10/1968;Non +72;Sarthe;05;5ème circonscription;7;26;F;FOUQUET;Karine;01/07/1966;DXG;Cadre de la fonction publique;Non;M;LACAVE;Olivier;01/07/1974;Non +72;Sarthe;05;5ème circonscription;8;41;M;GADRAULT;Julien;17/12/1984;DIV;Cadre administratif et commercial d'entreprise;Non;F;DERRIEN;Allison;06/02/1989;Non +72;Sarthe;05;5ème circonscription;9;38;M;KOKOLO;Rabbi;05/04/1989;NUPES;Cadre de la fonction publique;Non;F;GUEDOUAR;Salima;29/08/1970;Non +72;Sarthe;05;5ème circonscription;10;2;M;GRELIER;Jean-Carles;15/03/1966;ENS;Profession libérale;Oui;F;BEAUCHEF;Anne;14/02/1972;Non +72;Sarthe;05;5ème circonscription;11;32;M;LEROSIER;Noa;31/10/2003;LR;Elève, étudiant;Non;M;LOUBIER;Gérard;06/09/1952;Non +73;Savoie;01;1ère circonscription;1;36;M;GUILHOT;Rodolphe;25/01/1985;REG;Professeur, profession scientifique;Non;F;DUPASSIEUX PALMIER;Véronique;03/02/1969;Non +73;Savoie;01;1ère circonscription;2;42;M;ROUSSEL;Christian;31/08/1965;DIV;Commerçant et assimilé;Non;F;PRAGER;Sandra;24/12/1981;Non +73;Savoie;01;1ère circonscription;3;41;M;EXERTIER;Frédéric;24/12/1968;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;COMTE;Jacques;04/04/1934;Non +73;Savoie;01;1ère circonscription;4;21;F;DERUEM;Manon;25/10/1993;RN;Commerçant et assimilé;Non;F;RAULT;Viviane;07/04/1960;Non +73;Savoie;01;1ère circonscription;5;43;M;CHAUVEAU;Jean-Pierre;10/04/1948;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;M;LEVEL;Johan;29/06/2002;Non +73;Savoie;01;1ère circonscription;6;11;F;FERRARI;Marina;10/10/1973;ENS;Cadre administratif et commercial d'entreprise;Non;M;PADEY;Didier;09/11/1965;Non +73;Savoie;01;1ère circonscription;7;39;M;BARDAGI;Thierry;12/05/1962;DIV;Profession libérale;Non;M;FRANCOZ;Philippe;24/08/1955;Non +73;Savoie;01;1ère circonscription;8;24;F;DUBOUCHET;Karine;06/12/1971;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;DORD;Thomas;25/12/1995;Non +73;Savoie;01;1ère circonscription;9;25;F;GRANATA;Christel;16/01/1975;NUPES;Employé civil et agent de service de la fonction publique;Non;M;PINEAU;Grégory;07/08/1981;Non +73;Savoie;01;1ère circonscription;10;37;M;CROZE;Jean-Claude;15/06/1965;DVD;Cadre administratif et commercial d'entreprise;Non;F;PROFIT;Linda;06/07/1981;Non +73;Savoie;01;1ère circonscription;11;38;M;LAFARGUE;Pierre;31/10/1977;DSV;Artisan;Non;M;PARAIS;Pierre;15/06/1956;Non +73;Savoie;01;1ère circonscription;12;17;M;CASEJUANE;Adrien;17/03/1992;DXG;Professeur, profession scientifique;Non;F;DUCRUET;Marie-Christine;10/01/1953;Non +73;Savoie;01;1ère circonscription;13;33;F;MILLORD;Beatrix;07/11/1963;REC;Profession de l'information, des arts et des spectacles;Non;M;BERTON;David;25/10/1991;Non +73;Savoie;02;2ème circonscription;1;18;M;BERNARD;Brice;22/09/1985;RN;Cadre administratif et commercial d'entreprise;Non;F;BOGUET;Sara;02/08/1992;Non +73;Savoie;02;2ème circonscription;2;7;M;CHENU;Jordan;07/09/1998;DVD;Elève, étudiant;Non;M;BINSE;Thibaud;13/10/1990;Non +73;Savoie;02;2ème circonscription;3;9;M;EMPEREUR;Arthur;23/05/1990;ENS;Employé civil et agent de service de la fonction publique;Non;F;CRESSENS;Annick;12/07/1958;Non +73;Savoie;02;2ème circonscription;4;8;M;MORAND;Cédric;19/03/1973;NUPES;Profession libérale;Non;F;THIBAULT;Dominique;02/04/1951;Non +73;Savoie;02;2ème circonscription;5;14;F;RAHALIA;Myriam;26/10/1996;DXG;Professeur, profession scientifique;Non;M;LESOURD;Maxime;13/04/1993;Non +73;Savoie;02;2ème circonscription;6;28;M;TROUTOT;Philippe;16/01/1967;DIV;Commerçant et assimilé;Non;F;DÉPINOY;Fabienne;19/10/1967;Non +73;Savoie;02;2ème circonscription;7;35;F;WURTZ;Anne-Sophie;02/10/1966;REC;Profession libérale;Non;M;GAY;Frédéric;09/08/1961;Non +73;Savoie;02;2ème circonscription;8;44;F;BUSSY;Flora;09/05/1964;ECO;Employé de commerce;Non;M;ZOUD;Mehdy;27/08/1986;Non +73;Savoie;02;2ème circonscription;9;3;M;CICERI;Mathieu;22/09/1981;DSV;Personnel des services directs aux particuliers;Non;F;GILLET;Michelle;11/11/1945;Non +73;Savoie;02;2ème circonscription;10;34;M;CAMUS;Bertrand;09/02/1953;ECO;Profession libérale;Non;F;TISSOT;Frédérique;10/07/1968;Non +73;Savoie;02;2ème circonscription;11;12;M;ROLLAND;Vincent;01/02/1970;LR;Cadre administratif et commercial d'entreprise;Oui;M;BURNIER FRAMBORET;Frédéric;05/05/1967;Non +73;Savoie;03;3ème circonscription;1;26;M;FLORIO;Mikaël;06/12/1993;REC;Employé administratif d'entreprise;Non;M;CHALOT;Pierre;28/09/1957;Non +73;Savoie;03;3ème circonscription;2;32;F;BONNIVARD;Emilie;02/08/1980;LR;Profession intermédiaire administrative de la fonction publique;Oui;M;HACHET;Valentin;15/12/1993;Non +73;Savoie;03;3ème circonscription;3;5;M;TROSSET;Xavier;01/12/1966;ENS;Cadre administratif et commercial d'entreprise;Non;F;DUMARGNE;Audrey;10/09/1979;Non +73;Savoie;03;3ème circonscription;4;2;M;THOMAZO;Vincent;25/12/1962;DSV;Profession intermédiaire administrative de la fonction publique;Non;F;BURGOS;Laetitia;14/09/1999;Non +73;Savoie;03;3ème circonscription;5;29;F;NOWAK;Patricia;27/10/1955;ECO;Ancien employé;Non;F;CROUZILLE;Stephanie;12/05/1971;Non +73;Savoie;03;3ème circonscription;6;30;F;SOCQUET-JUGLARD;Ghislaine;17/01/1953;ECO;Ancien employé;Non;F;FOSSATI;Marie-Ange;02/09/1948;Non +73;Savoie;03;3ème circonscription;7;31;F;KRAWEZYNSKI;Nathalie;03/10/1969;NUPES;Employé administratif d'entreprise;Non;M;DEZETTRE;William;27/08/1975;Non +73;Savoie;03;3ème circonscription;8;16;F;TROUVÉ;Pascale;13/06/1962;DXG;Professeur, profession scientifique;Non;M;CÔME;Rémy;19/05/1993;Non +73;Savoie;03;3ème circonscription;9;20;F;DAUCHY;Marie;05/02/1987;RN;Employé administratif d'entreprise;Non;M;COMBET;Lionel;08/07/1970;Non +73;Savoie;04;4ème circonscription;1;23;M;MIGNOLA;Patrick;08/08/1971;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;KADRI;Sandra;16/02/1978;Non +73;Savoie;04;4ème circonscription;2;10;M;GAUDIN;François;05/06/1969;LR;Cadre administratif et commercial d'entreprise;Non;F;ALZAY;Cristel;19/09/1968;Non +73;Savoie;04;4ème circonscription;3;15;F;DUCRUET;Marie;01/05/1988;DXG;Cadre de la fonction publique;Non;M;BARRACLOUGH FERNANDEZ;Edgar;30/12/1975;Non +73;Savoie;04;4ème circonscription;4;40;M;MERCIER;David;06/08/1983;DSV;Profession libérale;Non;M;BIGUET;Pierre;22/09/1948;Non +73;Savoie;04;4ème circonscription;5;22;M;GUILLAUD;Albin;20/03/1986;DIV;Profession libérale;Non;F;DARBOIS;Nelly;16/01/1990;Non +73;Savoie;04;4ème circonscription;6;4;F;BOUVIER;Mireille;13/09/1954;DIV;Ancien artisan, commerçant, chef d'entreprise;Non;M;CHENU;Roger;15/09/1941;Non +73;Savoie;04;4ème circonscription;7;19;M;GARNIER;Rémi;04/04/1985;RN;Employé de commerce;Non;F;MERCIER;Euryanthe;01/08/1994;Non +73;Savoie;04;4ème circonscription;8;13;M;GONZALEZ;Charles;24/01/1998;REC;Employé de commerce;Non;F;HENRICH;Madeline;18/06/2002;Non +73;Savoie;04;4ème circonscription;9;6;M;COULOMME;Jean-François;01/04/1966;NUPES;Cadre administratif et commercial d'entreprise;Non;F;HAMOUDI WILKOWSKY;Sarah;13/06/1982;Non +73;Savoie;04;4ème circonscription;10;27;F;FELFOULI;Sonia;28/03/1989;DSV;Ancien artisan, commerçant, chef d'entreprise;Non;F;MALAVASSI;Marina;24/11/1969;Non +74;Haute-Savoie;01;1ère circonscription;1;62;F;BATA;Anne-Sophie;16/03/1991;ECO;Cadre administratif et commercial d'entreprise;Non;F;BATA;Camille;04/08/1993;Non +74;Haute-Savoie;01;1ère circonscription;2;68;M;BUHLER;Franck;06/08/1965;DSV;Profession libérale;Non;M;DÉMOULINS;Paul-Romain;11/01/1985;Non +74;Haute-Savoie;01;1ère circonscription;3;25;M;CHIAD;Daniel Salem;06/10/1968;DIV;Technicien;Non;F;CHIAD;Souad;04/05/1977;Non +74;Haute-Savoie;01;1ère circonscription;4;37;F;PATTY GOMILA;Aurélia;25/08/1979;LR;Cadre administratif et commercial d'entreprise;Non;M;GRANGER;Anthony;10/07/1989;Non +74;Haute-Savoie;01;1ère circonscription;5;65;F;DUVAL;Anne-Valérie;02/11/1962;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;M;GIONA;Témistocle;12/10/1973;Non +74;Haute-Savoie;01;1ère circonscription;6;6;M;MATTEI;Jacques;12/12/1965;DXG;Ouvrier qualifié de type industriel;Non;F;CARDOT;Isabelle;14/04/1957;Non +74;Haute-Savoie;01;1ère circonscription;7;56;M;GIRARD-DESPROLET;William;06/07/1988;REG;Professeur, profession scientifique;Non;F;BERNARD;Denise;18/02/1961;Non +74;Haute-Savoie;01;1ère circonscription;8;2;M;JAMBARD;Guillaume;12/07/1967;REC;Commerçant et assimilé;Non;F;GUILLERMAIN;Cecile;10/08/1980;Non +74;Haute-Savoie;01;1ère circonscription;9;49;M;JOUFFREY;Didier;04/02/1966;RN;Employé administratif d'entreprise;Non;M;FOL;Jean-Luc;12/05/1963;Non +74;Haute-Savoie;01;1ère circonscription;10;43;F;RIOTTON;Véronique;02/11/1969;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;M;LOMBARD;Roland;24/03/1957;Non +74;Haute-Savoie;02;2ème circonscription;1;63;M;COLLOMB-PATTON;Willy;17/07/1985;REG;Chef d'entreprise de 10 salariés ou plus;Non;F;GAYET;Cécile;21/04/1972;Non +74;Haute-Savoie;02;2ème circonscription;2;10;M;CORNU;Damien;24/01/1975;DSV;Chef d'entreprise de 10 salariés ou plus;Non;M;DUCRUET;Paul;04/11/1972;Non +74;Haute-Savoie;02;2ème circonscription;3;69;F;NANCHE;Anaîs;04/06/1971;RN;Employé administratif d'entreprise;Non;F;HOARAU;Elsa;30/01/1983;Non +74;Haute-Savoie;02;2ème circonscription;4;33;F;PACORET;Catherine;18/04/1976;UDI;Professeur, profession scientifique;Non;F;VEYRAT-DUREBEX;Nelly;12/07/1976;Non +74;Haute-Savoie;02;2ème circonscription;5;24;F;BRANCALEONE;Sylvie;23/01/1968;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;VIVINUS;Jean Camille;06/03/1946;Non +74;Haute-Savoie;02;2ème circonscription;6;48;M;BOUSSA;Oujdi;08/10/1972;DIV;Technicien;Non;M;BOUSSA;Ahbas;22/11/1967;Non +74;Haute-Savoie;02;2ème circonscription;7;5;M;VIGARIÉ;Jean-Paul;28/03/1949;ECO;Profession libérale;Non;F;FERARY-BERTHELOT;Alexandra;12/05/1969;Non +74;Haute-Savoie;02;2ème circonscription;8;3;M;YILDIRIM;Naci;20/11/1975;DXG;Ouvrier non qualifié de type industriel;Non;F;SCHROEDT;Denise;22/01/1963;Non +74;Haute-Savoie;02;2ème circonscription;9;38;M;TARDY;Lionel;07/06/1966;DVD;Commerçant et assimilé;Non;F;ANDRÉ;Annabel;08/10/1970;Non +74;Haute-Savoie;02;2ème circonscription;10;41;M;HIPPOMÈNE;San;25/07/1970;REC;Employé de commerce;Non;F;BERNARD;Jade;29/12/2000;Non +74;Haute-Savoie;02;2ème circonscription;11;53;M;PERALDI;Timothée;31/12/2002;DIV;Elève, étudiant;Non;F;PERCHERON;Elodie;04/11/2002;Non +74;Haute-Savoie;02;2ème circonscription;12;36;M;ARMAND;Antoine;10/09/1991;ENS;Cadre de la fonction publique;Non;F;CARTERON;Danièle;31/01/1984;Non +74;Haute-Savoie;02;2ème circonscription;13;64;F;FONTANA;Loris;05/11/1989;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;BARO;Corinne;08/08/1963;Non +74;Haute-Savoie;02;2ème circonscription;14;50;M;SCIABBARRASI;Pascal;08/07/1982;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MOTHE;Caroline;19/08/1963;Non +74;Haute-Savoie;02;2ème circonscription;15;54;M;CURDY;Christian;15/08/1952;ECO;Ancien cadre;Non;F;BÉRARD;Carla;03/03/1984;Non +74;Haute-Savoie;03;3ème circonscription;1;34;F;BOUVIER;Véronique;20/09/1973;REG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;DUPUIS;Alain;15/06/1959;Non +74;Haute-Savoie;03;3ème circonscription;2;57;M;COHEN;Albert;25/03/1973;DIV;Professeur, profession scientifique;Non;M;GUILLORY;Nicolas;14/03/1980;Non +74;Haute-Savoie;03;3ème circonscription;3;47;M;DAGHRIR;Anis;14/06/1995;RN;Ouvrier qualifié de type industriel;Non;F;BRULÉ;Marie-Claire;21/06/1961;Non +74;Haute-Savoie;03;3ème circonscription;5;52;F;FERRARINI;Valérie;30/04/1971;ENS;Chef d'entreprise de 10 salariés ou plus;Non;M;HARMAND;Jean-Claude;02/03/1956;Non +74;Haute-Savoie;03;3ème circonscription;6;23;F;PETEX-LEVET;Christelle;02/09/1980;LR;Cadre administratif et commercial d'entreprise;Oui;M;FOURNIER;Christophe;16/03/1965;Non +74;Haute-Savoie;03;3ème circonscription;7;28;M;JACCAZ;Joseph;14/10/1992;ECO;Personnel des services directs aux particuliers;Non;F;PETER;Morgane;11/01/2000;Non +74;Haute-Savoie;03;3ème circonscription;8;9;M;JOANNOT;Sébastien;05/10/1973;REC;Artisan;Non;M;MATTIO;Pierre;11/04/1994;Non +74;Haute-Savoie;03;3ème circonscription;9;15;F;LEGOUHY;Jocelyne;01/03/1952;DXG;Ancien employé;Non;M;BOURGAIS;Olivier;09/05/1983;Non +74;Haute-Savoie;03;3ème circonscription;10;59;F;VANEECKELOOT-TASSA;Fabienne;14/08/1965;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;VEZ;Gérard;17/06/1960;Non +74;Haute-Savoie;04;4ème circonscription;1;73;M;BOUVIER;Shan;29/01/1996;ECO;Ouvrier qualifié de type industriel;Non;F;BIGLIA;Nelly;05/05/1985;Non +74;Haute-Savoie;04;4ème circonscription;2;51;M;VIELLIARD;Antoine;31/12/1971;ENS;Cadre administratif et commercial d'entreprise;Non;F;GERST;Véronique;05/11/1962;Non +74;Haute-Savoie;04;4ème circonscription;3;70;M;DJONGANDEKE;Tongomo;08/12/1956;DIV;Professeur des écoles, instituteur et assimilé;Non;F;RATNAM;Sylvie;01/05/1990;Non +74;Haute-Savoie;04;4ème circonscription;4;42;M;YILDIRIM;Murat;12/08/1989;DIV;Technicien;Non;F;RAMRADJ;Rachèle;16/10/1986;Non +74;Haute-Savoie;04;4ème circonscription;5;20;F;VERBASCO;Véronique;30/09/1967;DSV;Ancien agriculteur exploitant;Non;M;LEGAL;Eric;29/06/1978;Non +74;Haute-Savoie;04;4ème circonscription;6;22;F;BÉDAGUE;Sophie;21/05/1964;DXG;Profession intermédiaire de la santé et du travail social;Non;M;ROSAY;Fabrice;13/02/1978;Non +74;Haute-Savoie;04;4ème circonscription;7;61;F;FERRANDI;Lea;30/07/1996;REG;Cadre administratif et commercial d'entreprise;Non;M;BLONDAZ;Laurent;22/08/1971;Non +74;Haute-Savoie;04;4ème circonscription;8;14;F;DUBY-MULLER;Virginie;16/08/1979;LR;Cadre de la fonction publique;Oui;M;BOSLAND;Jean-Paul;18/07/1969;Non +74;Haute-Savoie;04;4ème circonscription;9;45;F;LUHO;Magalie;28/05/1976;RN;Employé de commerce;Non;M;CHALEIL--DOS RAMOS;Kévin;12/02/1992;Non +74;Haute-Savoie;04;4ème circonscription;10;72;M;VERVOORT;Valérian;29/10/1987;NUPES;Professeur, profession scientifique;Non;F;ESSOUFI;Imane;16/11/1995;Non +74;Haute-Savoie;04;4ème circonscription;11;55;M;GIRAUD;Romain;07/11/1986;DXG;Cadre administratif et commercial d'entreprise;Non;F;BARTHEZ;Floriane;21/06/1984;Non +74;Haute-Savoie;04;4ème circonscription;12;12;M;BAILLY;Nicolas;08/03/1970;REC;Cadre de la fonction publique;Non;F;GERMANO;Nathalie;01/10/1968;Non +74;Haute-Savoie;04;4ème circonscription;13;7;F;DAHMAL;Vanessa;17/01/1982;ECO;Contremaître, agent de maîtrise;Non;M;DELAPREE;Damien;04/07/1984;Non +74;Haute-Savoie;04;4ème circonscription;14;16;M;COHARD;Alexandre;29/12/1988;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;POLY;Eric;04/12/1984;Non +74;Haute-Savoie;05;5ème circonscription;1;18;F;DION;Sophie;25/03/1956;LR;Profession libérale;Non;M;ARMINJON;Christophe;08/03/1967;Non +74;Haute-Savoie;05;5ème circonscription;2;66;M;DUCROT;Guillaume;07/08/1997;DVD;Profession libérale;Non;F;DECROUX;Diane;09/12/1991;Non +74;Haute-Savoie;05;5ème circonscription;3;27;F;VICO;Céline;26/07/1973;REC;Employé administratif d'entreprise;Non;M;POIDEVIN;Sacha;05/07/1998;Non +74;Haute-Savoie;05;5ème circonscription;4;4;F;CAPELLI;Audrey;09/07/1975;ECO;Employé administratif d'entreprise;Non;F;FOURRICHON;Patricia;11/06/1981;Non +74;Haute-Savoie;05;5ème circonscription;5;46;F;TERRENI;Jessica;30/06/1980;RN;Profession intermédiaire de la santé et du travail social;Non;M;JARRIER;Patrick;07/05/1960;Non +74;Haute-Savoie;05;5ème circonscription;6;31;F;LEMMO GAUD;Barbara;28/01/1971;REG;Profession libérale;Non;M;MAGNIN;Daniel;12/05/1964;Non +74;Haute-Savoie;05;5ème circonscription;7;32;M;DUVOCELLE;Quentin;19/09/1972;ECO;Ingénieur et cadre technique d'entreprise;Non;F;MOUCHET;Myriam;27/12/1969;Non +74;Haute-Savoie;05;5ème circonscription;8;67;M;BOUREL;Michel;01/05/1969;DVD;Commerçant et assimilé;Non;F;DUCROT;Carole;24/11/1976;Non +74;Haute-Savoie;05;5ème circonscription;9;35;F;MARTIN-COCHER;Odile;15/04/1959;NUPES;Profession de l'information, des arts et des spectacles;Non;M;GILIBERT;Pierre;14/01/1955;Non +74;Haute-Savoie;05;5ème circonscription;10;71;F;MESSIN;Michelle;06/12/1958;DSV;Cadre administratif et commercial d'entreprise;Non;M;VINCENT;Marc;11/10/1956;Non +74;Haute-Savoie;05;5ème circonscription;11;29;F;BALLY;Michelle;02/05/1955;DXG;Ancien employé;Non;M;PONSARD;Raphaël;15/06/1966;Non +74;Haute-Savoie;05;5ème circonscription;12;26;F;VIOLLAND;Anne-Cécile;10/06/1973;ENS;Profession libérale;Non;M;SONGEON;Christophe;17/12/1964;Non +74;Haute-Savoie;06;6ème circonscription;1;40;F;DUVILLARD;Virginie;30/11/1966;REC;Profession libérale;Non;M;LEFEBVRE;Edouard;14/12/1944;Non +74;Haute-Savoie;06;6ème circonscription;2;39;M;LAGARDE;Stéphane;17/04/1973;ECO;Profession libérale;Non;F;APPERTET-COLBAUT;Sophie;16/06/1972;Non +74;Haute-Savoie;06;6ème circonscription;3;11;M;ROSEREN;Xavier;12/01/1970;ENS;Commerçant et assimilé;Oui;F;CURDY;Sophie;08/12/1976;Non +74;Haute-Savoie;06;6ème circonscription;4;60;F;DUGERDIL;Valérie;10/04/1969;REG;Technicien;Non;M;LEIS;Christophe;15/03/1977;Non +74;Haute-Savoie;06;6ème circonscription;5;44;M;PRATS;Charles;23/12/1970;UDI;Cadre de la fonction publique;Non;F;OLLIÉ;Martine;10/10/1962;Non +74;Haute-Savoie;06;6ème circonscription;6;19;M;MARTIN;Dominique;01/10/1961;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;BOUTOILLE;Florence;28/01/1987;Non +74;Haute-Savoie;06;6ème circonscription;7;30;M;LOUNIS;Ahmed;24/11/1986;NUPES;Ouvrier qualifié de type industriel;Non;F;SBA;Zohra;01/08/1988;Non +74;Haute-Savoie;06;6ème circonscription;8;13;M;DEMEURE;Alexandre;07/10/1979;DXG;Professeur, profession scientifique;Non;F;GESLAIN;Maryvonne;26/11/1960;Non +74;Haute-Savoie;06;6ème circonscription;9;21;F;MÉNY;Laurence;12/11/1964;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;RICHARD;Catherine;13/06/1957;Non +74;Haute-Savoie;06;6ème circonscription;10;8;F;PLUMIER;Noémie;17/11/1992;ECO;Elève, étudiant;Non;M;TERNON;François;06/08/1963;Non +74;Haute-Savoie;06;6ème circonscription;11;17;M;CHANTELOT;Xavier;27/03/1961;LR;Profession libérale;Non;M;HENRIOUD;Thibault;15/04/1999;Non +74;Haute-Savoie;06;6ème circonscription;12;58;M;SOCQUET-JUGLARD;Sylvain;09/08/1950;ECO;Ancien ouvrier;Non;F;BARDAGI;Laetitia;01/08/1971;Non +75;Paris;01;1ère circonscription;1;39;F;DELWASSE;Liliane;09/06/1945;ECO;Profession de l'information, des arts et des spectacles;Non;F;GASNIER;Léa;24/10/1986;Non +75;Paris;01;1ère circonscription;2;189;F;CHEDHOMME;Morgane;06/03/1966;RN;Contremaître, agent de maîtrise;Non;F;ALVES;Sylvain;11/04/1969;Non +75;Paris;01;1ère circonscription;3;21;F;BOULINIER;Laurence;30/06/1953;DXG;Ancien employé;Non;M;SCHLUCHTER;Yannick;20/09/1973;Non +75;Paris;01;1ère circonscription;4;209;F;TOURTE;Dominique;20/02/1956;DVG;Ancien cadre;Non;M;LEBAUBE;Amado;09/02/1997;Non +75;Paris;01;1ère circonscription;5;11;M;MAILLARD;Sylvain;28/04/1974;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;FIGUÉROA;Martine;20/07/1962;Non +75;Paris;01;1ère circonscription;6;131;M;BALADI;Vincent;30/04/1985;LR;Cadre administratif et commercial d'entreprise;Non;F;D'HAUTESERRE;Jeanne;28/07/1953;Non +75;Paris;01;1ère circonscription;7;134;F;CHAUMETTE;Manon;07/02/2000;UDI;Elève, étudiant;Non;M;PLEZ;Barthélémy;03/11/1993;Non +75;Paris;01;1ère circonscription;8;147;M;ATTIA;David;16/12/1992;REC;Profession libérale;Non;F;LE MARÉCHAL;Pascale;03/12/1963;Non +75;Paris;01;1ère circonscription;9;214;F;FAUX;Juliane;07/05/2001;REG;Elève, étudiant;Non;M;POIRIER;Tristan;09/04/1979;Non +75;Paris;01;1ère circonscription;10;108;F;LECUYER;Catherine;01/02/1973;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;GUÉVEL;Ronan;03/01/1974;Non +75;Paris;01;1ère circonscription;11;104;M;LUQUET;Thomas;09/11/1986;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;BOURET;Coline;03/09/1995;Non +75;Paris;01;1ère circonscription;12;148;F;PARIS;Annie;26/08/1947;DVG;Ancienne profession intermédiaire;Non;M;AOUDAY;Patrick;28/09/1952;Non +75;Paris;02;2ème circonscription;1;136;F;ROSSET;Marine;14/12/1985;NUPES;Professeur, profession scientifique;Non;M;COMET;François;29/07/1957;Non +75;Paris;02;2ème circonscription;2;49;M;LECOQ;Jean-Pierre;18/07/1954;LR;Cadre administratif et commercial d'entreprise;Non;F;DAUVERGNE;Emmanuelle;03/10/1971;Non +75;Paris;02;2ème circonscription;3;223;M;ASSAYAG;Daniel;20/09/1986;DIV;Profession libérale;Non;M;CALAMIA;Enzo;01/08/1994;Non +75;Paris;02;2ème circonscription;4;62;F;GILBERT;Isabelle;16/11/1964;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;COURTOIS;Olivier;16/03/1959;Non +75;Paris;02;2ème circonscription;5;99;F;DE VILLEPIN;Quitterie;08/04/1978;DVC;Professeur, profession scientifique;Non;M;PLATIAU;Martin;08/10/2001;Non +75;Paris;02;2ème circonscription;6;4;F;JOLIVEAU;Charline;22/01/1966;DXG;Employé administratif d'entreprise;Non;F;MADANI;Amina;31/10/1965;Non +75;Paris;02;2ème circonscription;7;85;M;FRANTZ;Adrien;12/09/1978;DXG;Professeur, profession scientifique;Non;F;ROSIER;Catherine;09/08/1961;Non +75;Paris;02;2ème circonscription;8;208;M;ROUGÉ;André;23/12/1961;RN;Ancien cadre;Non;M;VIGUIER;Annie;20/07/1950;Non +75;Paris;02;2ème circonscription;9;44;M;LE GENDRE;Gilles;13/05/1958;ENS;Ancien cadre;Oui;F;DE COMPREIGNAC;Séverine;08/02/1969;Non +75;Paris;02;2ème circonscription;10;34;F;DREYFUSS;Karine;31/08/1969;ECO;Profession intermédiaire de la santé et du travail social;Non;F;MONNIER;Sophie;14/03/1953;Non +75;Paris;02;2ème circonscription;11;220;F;MAGNE;Elise;08/09/1999;DIV;Elève, étudiant;Non;M;TOUILLET-ORSINI;Maxime;30/09/1983;Non +75;Paris;03;3ème circonscription;1;77;F;EUPHRASIE;Marie-Emilie;25/06/1996;RN;Employé administratif d'entreprise;Non;M;JUNTAS;Michel;09/12/1950;Non +75;Paris;03;3ème circonscription;2;33;M;BURTAIRE;Laurent;01/07/1974;DXG;Ingénieur et cadre technique d'entreprise;Non;F;ROBIN;Sophie;08/07/1973;Non +75;Paris;03;3ème circonscription;3;159;M;BAFFIE;Laurent;18/04/1958;ECO;Profession libérale;Non;F;MARKOVIC;Douchka;08/04/1978;Non +75;Paris;03;3ème circonscription;4;76;F;MICHALET;Christine;26/06/1971;DIV;Cadre administratif et commercial d'entreprise;Non;F;ZAHID LEVY;Zoubida;16/11/1951;Non +75;Paris;03;3ème circonscription;5;36;F;IKUESAN;Ayodele;15/05/1985;DVG;Cadre administratif et commercial d'entreprise;Non;F;SAURAT;Charlotte;30/07/1992;Non +75;Paris;03;3ème circonscription;6;50;F;BOUGERET;Alix;13/04/1978;LR;Cadre administratif et commercial d'entreprise;Non;M;HATTE;Paul;05/09/1993;Non +75;Paris;03;3ème circonscription;7;106;M;GUERINI;Stanislas;14/05/1982;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;YADAN;Caroline;14/08/1968;Non +75;Paris;03;3ème circonscription;8;86;F;PLANTEVIN;Marguerite;08/11/1959;DXG;Profession intermédiaire de la santé et du travail social;Non;M;GIBERT;Florian;02/07/1981;Non +75;Paris;03;3ème circonscription;9;75;F;FISCHER;Cécile;13/11/1976;REC;Cadre administratif et commercial d'entreprise;Non;M;FERLET;Louis;29/04/1987;Non +75;Paris;03;3ème circonscription;10;87;F;BALAGE EL MARIKY;Léa;09/04/1990;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;ARNAUD;Pierre-Yvain;21/08/1981;Non +75;Paris;04;4ème circonscription;1;29;F;BONILLA;Dayana;28/05/1987;ECO;Commerçant et assimilé;Non;F;LETOURNEUR;Elisabeth;21/07/1961;Non +75;Paris;04;4ème circonscription;2;174;M;PERREAU;Jérôme;27/04/1976;DVC;Ingénieur et cadre technique d'entreprise;Non;M;GUEHO;Didier;25/01/1963;Non +75;Paris;04;4ème circonscription;3;153;M;BRITEL;Karim;23/07/1963;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;LORRIAUX;Jean-Pierre;04/04/1949;Non +75;Paris;04;4ème circonscription;4;138;F;PANOSYAN-BOUVET;Astrid;13/08/1971;ENS;Cadre administratif et commercial d'entreprise;Non;M;LAVAUD;Bertrand;03/12/1956;Non +75;Paris;04;4ème circonscription;5;2;F;DEPRAZ;Natalie;13/12/1964;NUPES;Professeur, profession scientifique;Non;M;PUJOL;Alexis Raphaël;16/04/1991;Non +75;Paris;04;4ème circonscription;6;202;F;ECLOU;Chantal;15/02/1971;ECO;Profession libérale;Non;F;LE CORRE;Mireille;13/09/1963;Non +75;Paris;04;4ème circonscription;7;51;F;LAVENIER;Annie Marcelle Mauricette;04/08/1943;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;BELMONDO;Jean-François Paul;24/02/1958;Non +75;Paris;04;4ème circonscription;8;125;M;SHNORHOKIAN;Garen;15/06/1989;REC;Profession libérale;Non;F;DE MAISTRE;Charlotte;05/07/1975;Non +75;Paris;04;4ème circonscription;9;185;F;FREUDBERG;Francine;10/06/1955;DVC;Ancien cadre;Non;F;CORNU;Coraline;15/08/1966;Non +75;Paris;04;4ème circonscription;10;66;M;TOUATI;Adrien;08/06/1985;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;LATASTE;Emilie;30/05/1996;Non +75;Paris;04;4ème circonscription;11;115;M;LÉVENARD;Pierre;10/08/1967;DXG;Ouvrier qualifié de type industriel;Non;M;CHRISTOPH;Frédéric;22/04/1971;Non +75;Paris;04;4ème circonscription;12;182;M;GUILLAS-CAVAN;Kevin;05/09/1989;DVG;Professeur, profession scientifique;Non;F;CHARTIER;Fanny;26/03/1992;Non +75;Paris;04;4ème circonscription;13;53;F;KUSTER;Brigitte;12/04/1959;LR;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;M;GACHET;Gérard;24/01/1951;Non +75;Paris;05;5ème circonscription;1;188;F;MEDDAH;Assia;16/01/1982;RDG;Profession intermédiaire de la santé et du travail social;Non;M;SCANVIC;Frédéric;19/11/1960;Non +75;Paris;05;5ème circonscription;2;165;M;ABEL;Arnaud;28/07/1974;DVC;Cadre de la fonction publique;Non;F;CHAZAL;Maëva;30/07/1990;Non +75;Paris;05;5ème circonscription;3;64;F;GILLE;Annaëlle;14/08/1999;UDI;Elève, étudiant;Non;M;BRUNO;Antoine;03/08/1992;Non +75;Paris;05;5ème circonscription;4;218;F;VOGT;Marguerite;05/07/1948;RN;Ancienne profession intermédiaire;Non;F;MONSAURET;Stacy;06/06/1994;Non +75;Paris;05;5ème circonscription;5;151;M;MAURIN;Pierre;11/10/1966;DVD;Profession libérale;Non;M;ROUET;Julien;12/05/1985;Non +75;Paris;05;5ème circonscription;6;56;M;GAUTIER;Yann;22/04/1962;REC;Profession libérale;Non;F;MARTIN;Dorothée;28/12/1969;Non +75;Paris;05;5ème circonscription;7;150;F;FAJGELES;Elise;06/07/1970;ENS;Cadre de la fonction publique;Non;M;PONSOYE;Olivier;18/06/1964;Non +75;Paris;05;5ème circonscription;8;23;F;DABAT;Monique;26/11/1961;DXG;Ancienne profession intermédiaire;Non;M;CHALLAL;Éric;08/07/1984;Non +75;Paris;05;5ème circonscription;9;15;M;BALLON;Jean;20/07/1967;ECO;Profession libérale;Non;F;MORELL;Gilian;19/03/1943;Non +75;Paris;05;5ème circonscription;10;103;M;BAYOU;Julien;11/06/1980;NUPES;Profession libérale;Non;F;SCHERER;Sylvie;28/08/1964;Non +75;Paris;05;5ème circonscription;11;198;F;JOUVEAU;Marie-Jeanne;03/08/1983;DIV;Profession libérale;Non;M;FAURE;Melchior;02/04/1987;Non +75;Paris;06;6ème circonscription;1;120;F;HUYNH THI BOZZI;Marie Rosette;18/06/1946;RN;Ancienne profession intermédiaire;Non;F;DELATTRE LECAULT DELATTRE;Jennifer;26/03/1989;Non +75;Paris;06;6ème circonscription;2;179;F;BONZANI;Laurence;10/05/1960;ECO;Professeur des écoles, instituteur et assimilé;Non;M;ROSSIGNOL;Christophe;14/08/1966;Non +75;Paris;06;6ème circonscription;3;126;M;BARGETON;Julien;29/03/1973;ENS;Cadre de la fonction publique;Non;F;CAPELLE;Liliane;05/06/1948;Non +75;Paris;06;6ème circonscription;4;101;F;CHIKIROU;Sophia;03/06/1979;NUPES;Chef d'entreprise de 10 salariés ou plus;Non;F;DE LA ROCHEFOUCAULD;Sophie;11/10/1965;Non +75;Paris;06;6ème circonscription;5;7;M;MELDENER;Victor;20/11/1991;REC;Employé de commerce;Non;M;TYL;Stanislas;17/10/2000;Non +75;Paris;06;6ème circonscription;6;210;F;BERROUBA;Yasmin;14/04/2002;DVC;Elève, étudiant;Non;F;LABEL;Marie-Rose;13/05/1973;Non +75;Paris;06;6ème circonscription;7;60;F;GODDE;Anne-Catherine;14/07/1963;DXG;Profession intermédiaire de la santé et du travail social;Non;M;GAILLARD;Jean-Louis;14/03/1945;Non +75;Paris;06;6ème circonscription;8;40;M;MARTIN;Jean-Christophe;21/10/1985;LR;Ingénieur et cadre technique d'entreprise;Non;F;GAMAL EL DINE;Mona;25/12/1950;Non +75;Paris;06;6ème circonscription;9;196;F;BORSELLINO;Jennifer;28/11/1985;DIV;Employé administratif d'entreprise;Non;M;RICHARD;Cyrille;31/03/1975;Non +75;Paris;06;6ème circonscription;10;194;M;FREMION;Yves;14/06/1947;ECO;Profession de l'information, des arts et des spectacles;Non;F;CHLIQUE;Annie;17/01/1947;Non +75;Paris;06;6ème circonscription;11;31;M;DUPUY;Charles;19/11/1947;DXG;Ancien cadre;Non;F;SCHIDLOWER;Sarah;28/10/1974;Non +75;Paris;06;6ème circonscription;12;80;M;VAN DEN BROUCKE;Romain;10/05/1999;ECO;Elève, étudiant;Non;F;BIGOIN;Marion;25/12/2002;Non +75;Paris;07;7ème circonscription;1;18;F;PETIT;Aurélia;27/11/1972;DXG;Ingénieur et cadre technique d'entreprise;Non;M;MARSAULT;Philippe;20/09/1958;Non +75;Paris;07;7ème circonscription;2;91;M;BEAUNE;Clément;14/08/1981;ENS;Cadre de la fonction publique;Non;F;CHASSANIOL;Clara;26/07/1993;Non +75;Paris;07;7ème circonscription;3;129;M;MAZUEL;Philippe;19/01/1956;DVG;Cadre de la fonction publique;Non;M;BELGUECHI;Moncef;09/08/1987;Non +75;Paris;07;7ème circonscription;4;52;F;LAENG;Cindy'Lee Isabelle;27/04/1968;DIV;Profession de l'information, des arts et des spectacles;Non;M;LAFFITTE;Frank;03/05/1962;Non +75;Paris;07;7ème circonscription;5;58;M;CLAUDIO;Louis;01/09/1994;DVC;Commerçant et assimilé;Non;M;ROUSSAT;Jacques;16/04/1967;Non +75;Paris;07;7ème circonscription;6;187;M;FLAHAUT-PREVOT;Rodrigue;15/03/1972;RDG;Cadre de la fonction publique;Non;F;CERVERA;Caroline;05/02/1972;Non +75;Paris;07;7ème circonscription;7;112;F;DELÉTANG;Constance;28/03/2003;REC;Elève, étudiant;Non;M;COSTET;Olivier;08/04/1980;Non +75;Paris;07;7ème circonscription;8;180;M;CHAMEROY;Gaspard;23/09/1994;ECO;Ingénieur et cadre technique d'entreprise;Non;F;CHARLES;Pauline;27/12/1996;Non +75;Paris;07;7ème circonscription;9;142;M;MOULINS;Thomas;27/04/1972;ECO;Profession intermédiaire de la santé et du travail social;Non;M;GASPERINI;Nathalie;02/05/1971;Non +75;Paris;07;7ème circonscription;10;42;F;MECARY;Caroline;16/04/1963;NUPES;Profession libérale;Non;M;KUBACKI;Yann;26/09/1994;Non +75;Paris;07;7ème circonscription;11;72;M;VÉRON;Aurélien;03/04/1969;LR;Cadre administratif et commercial d'entreprise;Non;F;MALACHARD;Delphine;31/03/1970;Non +75;Paris;07;7ème circonscription;12;211;F;MOGHIR;Naïma;28/02/1962;ECO;Professeur, profession scientifique;Non;M;EL HAIRY;Abdel Ilah;15/06/1957;Non +75;Paris;07;7ème circonscription;13;177;F;DAGUENEL (NGUYEN CONG DUC);Anne Hélène Janine Marie;01/09/1957;RN;Cadre de la fonction publique;Non;F;RABY;Monique Simone;03/03/1954;Non +75;Paris;08;8ème circonscription;1;204;F;BLONDEL;Marie-Noelle;24/12/1962;DVC;Commerçant et assimilé;Non;F;BAKUPA;Anne;08/07/1999;Non +75;Paris;08;8ème circonscription;2;215;M;RITROVATO;Grégory;18/08/2000;DIV;Elève, étudiant;Non;M;DUSSOL;Gautier;09/11/2001;Non +75;Paris;08;8ème circonscription;3;35;F;VOLBART;Laurence;11/02/1970;ECO;Cadre administratif et commercial d'entreprise;Non;M;BÉRODIER;Gilles;06/05/1970;Non +75;Paris;08;8ème circonscription;4;12;F;DUPONCEL;Crystal;25/09/2001;DSV;Elève, étudiant;Non;M;SPOUTIL;Paul;26/07/1993;Non +75;Paris;08;8ème circonscription;5;17;F;LANCELOT;Vanessa;31/03/1971;RN;Cadre de la fonction publique;Non;F;LHULLIER;Joëlle;12/08/1946;Non +75;Paris;08;8ème circonscription;6;193;F;KOBBI;Nezha;24/02/1978;ECO;Cadre administratif et commercial d'entreprise;Non;M;BARBAROUX;Bernard;26/01/1942;Non +75;Paris;08;8ème circonscription;7;171;M;LUTZ;Manuel;17/11/1976;DIV;Elève, étudiant;Non;M;SALMI;Amir;19/11/1973;Non +75;Paris;08;8ème circonscription;8;90;F;MONTANDON;Valérie;31/03/1976;LR;Ancien artisan, commerçant, chef d'entreprise;Non;M;SEINGIER;Matthieu;22/03/1982;Non +75;Paris;08;8ème circonscription;9;152;F;GIRAUD;Marie-Claude;28/06/1957;DVG;Ancien cadre;Non;M;MORIZET;Hervé;18/11/1953;Non +75;Paris;08;8ème circonscription;10;32;F;BERNON;Anne;30/08/1956;DXG;Professeur, profession scientifique;Non;M;CARN;Pascal;10/03/1962;Non +75;Paris;08;8ème circonscription;11;37;M;TRUNKENWALD;Jannick;23/09/1972;REC;Professeur, profession scientifique;Non;F;N'DRI;Marie-Chantal;28/08/1964;Non +75;Paris;08;8ème circonscription;12;113;F;AVIA;Laëtitia;29/10/1985;ENS;Profession libérale;Oui;M;PERNIN;Benoît;20/08/1971;Non +75;Paris;08;8ème circonscription;13;84;F;SAS;Eva;13/08/1970;NUPES;Cadre administratif et commercial d'entreprise;Non;F;CHARNOZ;Sandrine;09/01/1972;Non +75;Paris;09;9ème circonscription;1;133;F;COSSART;Béatrice;10/04/1969;ECO;Profession intermédiaire de la santé et du travail social;Non;F;VALESI;Paule;09/10/1960;Non +75;Paris;09;9ème circonscription;2;135;M;OLIVIER;Jean-Baptiste;01/08/1979;LR;Cadre de la fonction publique;Non;F;ESTIENNE;Mireille;16/08/1970;Non +75;Paris;09;9ème circonscription;3;73;F;BEDAGUE;Florence;12/12/1962;DXG;Profession intermédiaire de la santé et du travail social;Non;M;CHOULAK;Karim;14/12/1968;Non +75;Paris;09;9ème circonscription;4;169;M;NECHADI;Farid;28/06/1978;DVG;Professeur, profession scientifique;Non;F;KANANE;Kahina;25/01/1980;Non +75;Paris;09;9ème circonscription;5;184;M;BEYSSAC;Pierre;20/07/1966;DIV;Commerçant et assimilé;Non;M;FRÉNÉHARD;Duncan;14/09/1996;Non +75;Paris;09;9ème circonscription;6;83;M;MEYER;David;14/11/1977;REC;Profession libérale;Non;F;BOTTOU;Marion;06/07/1973;Non +75;Paris;09;9ème circonscription;7;24;M;GLOESS;Éric;16/01/1981;DXG;Professeur, profession scientifique;Non;F;FRANTZ;Evelyne;11/07/1952;Non +75;Paris;09;9ème circonscription;8;207;F;ROUSSEAU;Sandrine;11/08/1971;DVD;Profession intermédiaire de la santé et du travail social;Non;M;NOBLET;Alexandre;18/07/1991;Non +75;Paris;09;9ème circonscription;9;132;M;TAN;Buon;10/03/1967;ENS;Chef d'entreprise de 10 salariés ou plus;Oui;F;HACHEM;Fatima;06/10/1978;Non +75;Paris;09;9ème circonscription;10;144;F;ROUSSEL;Carole Isabelle Gabrielle;06/03/1950;RN;Profession libérale;Non;M;MAZELI;Théo;19/12/2001;Non +75;Paris;09;9ème circonscription;11;139;M;MIERMONT;Laurent;17/04/1975;DVG;Cadre de la fonction publique;Non;F;AUTARD;Tiphaine;11/02/2002;Non +75;Paris;09;9ème circonscription;12;178;F;LABUS;Irène;28/04/1971;DSV;Ancien cadre;Non;M;LIFCHITZ;Serge Albert;28/06/1952;Non +75;Paris;09;9ème circonscription;13;82;F;ROUSSEAU;Sandrine;08/03/1972;NUPES;Professeur, profession scientifique;Non;M;BÉTOURNÉ;Wilfried;08/08/1985;Non +75;Paris;10;10ème circonscription;1;9;F;LANG;Anne-Christine;10/08/1961;ENS;Cadre de la fonction publique;Oui;M;TEDESCHI;Théo;01/11/1990;Non +75;Paris;10;10ème circonscription;2;45;M;ARENAS;Rodrigo;24/04/1974;NUPES;Cadre de la fonction publique;Non;F;HAMDI;Ouns;16/01/1993;Non +75;Paris;10;10ème circonscription;3;163;M;GOLDSTEIN;Michel Abdul Wahid;12/11/1960;DVC;Profession de l'information, des arts et des spectacles;Non;F;HENRY;Florelle;03/12/1991;Non +75;Paris;10;10ème circonscription;4;118;F;DENEUVE;Jacqueline;10/06/1981;DVC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;BOUCHARD;David;17/07/1967;Non +75;Paris;10;10ème circonscription;5;140;F;HONGRE;Anne-Sophie;24/11/1970;REC;Profession libérale;Non;M;MARGELIDON;Jérôme;28/02/1955;Non +75;Paris;10;10ème circonscription;6;78;M;DE SAINT JUST;Wallerand;06/07/1950;RN;Ancien cadre;Non;M;ROUX;Wilson;20/05/1997;Non +75;Paris;10;10ème circonscription;7;146;F;MODRONO RODRIGUEZ;Margarita;17/06/1966;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;FAYAUT;Sheila;20/12/1982;Non +75;Paris;10;10ème circonscription;8;30;F;TISSIER;Sophie;23/02/1979;DIV;Profession de l'information, des arts et des spectacles;Non;F;PATEY;Sophie;20/03/1965;Non +75;Paris;10;10ème circonscription;9;20;M;VAUTIER;Vincent;13/12/1980;DXG;Technicien;Non;F;KIKITA;Martine;30/03/1956;Non +75;Paris;10;10ème circonscription;10;95;F;MUET;Myriam;04/09/1995;UDI;Profession libérale;Non;F;CHIRON;Elisa;27/06/1999;Non +75;Paris;10;10ème circonscription;11;41;M;NORDMANN;Simon;26/10/1995;ECO;Ouvrier non qualifié de type industriel;Non;F;DELVAUX;Marine;23/03/1988;Non +75;Paris;10;10ème circonscription;12;3;F;BAILLE;Olivia;18/06/1975;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;MONNIAUX;Alain;19/03/1954;Non +75;Paris;10;10ème circonscription;13;122;M;SANDO;Francis;01/06/1959;DVD;Cadre administratif et commercial d'entreprise;Non;F;RISSELET;Odile;10/08/1959;Non +75;Paris;10;10ème circonscription;14;161;M;HAMDANI;Khalid;11/12/1956;ECO;Cadre administratif et commercial d'entreprise;Non;F;PEYTAVI;Sophie;05/12/1961;Non +75;Paris;10;10ème circonscription;15;10;M;SHOUKRY;Habib;15/07/1981;LR;Cadre administratif et commercial d'entreprise;Non;F;VEYRENC;Marie-Cécile;05/12/1968;Non +75;Paris;10;10ème circonscription;16;160;F;NGUEMBOCK;Deza;06/12/1973;DVG;Profession libérale;Non;F;FOULETIER;Alicia Charlotte Emmanuelle;23/10/1970;Non +75;Paris;10;10ème circonscription;17;164;F;MOORADUN RUMJAUN;Hania;18/06/1998;ECO;Ancien employé;Non;F;NGUON;Linda;03/09/1987;Non +75;Paris;10;10ème circonscription;18;222;M;SELLIER;Thomas;17/07/1994;DIV;Ingénieur et cadre technique d'entreprise;Non;M;HUERRE;Dimitri;24/07/1994;Non +75;Paris;11;11ème circonscription;1;205;F;SIMEÉON ÉP EYCHART;Marie-Thérèse-Jeanne;22/10/1945;DVG;Professeur, profession scientifique;Non;M;RAVOAVY;Carl;11/10/1997;Non +75;Paris;11;11ème circonscription;2;47;F;LABOURDETTE;Valentine;21/06/1999;ECO;Elève, étudiant;Non;F;MILERT;Ophélie;17/10/1996;Non +75;Paris;11;11ème circonscription;3;121;F;GATEL;Maud;06/04/1979;ENS;Cadre administratif et commercial d'entreprise;Oui;M;MANSIER;Nicolas;22/12/1970;Non +75;Paris;11;11ème circonscription;4;27;F;EDON-GUILLOT;Dominique;09/02/1955;DXG;Ancien cadre;Non;M;DAYMARD;Jean-Pierre;26/03/1955;Non +75;Paris;11;11ème circonscription;5;111;F;COUSIN;Saddia;21/05/1977;RN;Cadre administratif et commercial d'entreprise;Non;F;STOYANOVA;Krassimira;28/12/1957;Non +75;Paris;11;11ème circonscription;6;141;F;POLSKI;Olivia;02/06/1975;NUPES;Cadre de la fonction publique;Non;F;HERVIEU;Céline;19/08/1993;Non +75;Paris;11;11ème circonscription;7;65;F;CARRERE-GEE;Marie-Claire;23/03/1963;LR;Cadre de la fonction publique;Non;M;MARIA;Paul;17/08/1983;Non +75;Paris;11;11ème circonscription;8;6;M;LAYRÉ-CASSOU;Franck;16/03/1984;REC;Commerçant et assimilé;Non;F;EL-BAZE;Deborah;22/06/1981;Non +75;Paris;11;11ème circonscription;9;166;F;LE GAC;Nolwenn;15/08/1983;DIV;Policier et militaire;Non;M;LE GLAND;Nicolas;03/05/1982;Non +75;Paris;11;11ème circonscription;10;57;M;VINCIGUERRA;Laurent;25/04/1966;DXG;Chauffeur;Non;M;LE GUENNEC;Marc;18/04/1987;Non +75;Paris;12;12ème circonscription;1;70;M;DE CLINCHAMP-BELLEGARDE;Benoît;20/10/1998;REC;Profession intermédiaire administrative de la fonction publique;Non;M;ESTIENNE;Pierre;14/09/1988;Non +75;Paris;12;12ème circonscription;2;69;F;BOULEY;Chloé;22/01/1991;UDI;Cadre administratif et commercial d'entreprise;Non;M;DREYER;Maxime;07/05/1990;Non +75;Paris;12;12ème circonscription;3;123;F;GREGOIRE;Olivia;30/09/1978;ENS;Cadre de la fonction publique;Non;F;BERETE;Fanta;31/05/1975;Non +75;Paris;12;12ème circonscription;4;130;M;LORIAU;Jérôme;04/04/1971;LR;Professeur, profession scientifique;Non;F;ROLGEN;Chantal;04/01/1950;Non +75;Paris;12;12ème circonscription;5;59;F;MONCHAL;Muriel;29/10/1966;DXG;Professeur, profession scientifique;Non;M;CAMMOUN;Zakariyya;05/07/1975;Non +75;Paris;12;12ème circonscription;6;46;M;BATTINI;Jean-Luc;14/11/1957;ECO;Profession de l'information, des arts et des spectacles;Non;F;METAYER;Margaux;31/05/1995;Non +75;Paris;12;12ème circonscription;7;175;M;MINEV;Michael;04/10/2000;DIV;Elève, étudiant;Non;F;DENCHEVA;Elitsa;14/07/1986;Non +75;Paris;12;12ème circonscription;8;183;F;DELINOT;Annel;19/10/1980;DIV;Profession de l'information, des arts et des spectacles;Non;F;HUITOREL;Carole;29/08/1971;Non +75;Paris;12;12ème circonscription;9;100;F;MALAISÉ;Céline;13/12/1979;NUPES;Professeur, profession scientifique;Non;F;MICHAUT;Léa;10/10/1995;Non +75;Paris;12;12ème circonscription;10;212;F;VIERNE;Sidonie;19/12/1971;DSV;Employé administratif d'entreprise;Non;M;CROUZY;Frederic, Marie, Jacques;17/11/1959;Non +75;Paris;12;12ème circonscription;11;14;F;PAGEARD;Agnès;07/05/1968;RN;Commerçant et assimilé;Non;F;MERLET;Marie-Claude;09/05/1940;Non +75;Paris;13;13ème circonscription;1;127;M;JEANNETÉ;Nicolas;22/06/1965;DVD;Cadre administratif et commercial d'entreprise;Non;F;LAHOUASSA;Anessa;03/02/1983;Non +75;Paris;13;13ème circonscription;2;116;M;MARINHO;Mickaël;18/05/1992;DVC;Chauffeur;Non;M;MARINHO;Jason;08/01/1998;Non +75;Paris;13;13ème circonscription;3;74;F;FUSI;Muriel;16/10/1979;ECO;Cadre administratif et commercial d'entreprise;Non;M;PAILLONCY;Lionel;03/11/1980;Non +75;Paris;13;13ème circonscription;4;149;M;DARGHAM;Pierre;16/10/1991;DVG;Ingénieur et cadre technique d'entreprise;Non;F;MARQUES;Camille;15/08/1973;Non +75;Paris;13;13ème circonscription;5;8;F;ROETHLISBERGER;Corinne;30/06/1963;DXG;Employé civil et agent de service de la fonction publique;Non;F;NAUDET;Sylvie;11/01/1964;Non +75;Paris;13;13ème circonscription;6;162;F;MALLET;Maïalen;30/12/1997;DVG;Cadre de la fonction publique;Non;M;ULMANN;Paul;27/09/1998;Non +75;Paris;13;13ème circonscription;7;63;F;EVANGELISTA;Ornella;16/04/1991;REC;Commerçant et assimilé;Non;F;D'AUBERT HENRION;Edith;11/10/1962;Non +75;Paris;13;13ème circonscription;8;213;F;TRAINAR;Nadia;18/07/1976;DVC;Ingénieur et cadre technique d'entreprise;Non;M;KREBS;Thomas;24/12/1998;Non +75;Paris;13;13ème circonscription;9;79;F;NIAKATÉ;Aminata;07/11/1980;NUPES;Profession libérale;Non;F;AZMINE-AYOUT;Emma;30/03/1991;Non +75;Paris;13;13ème circonscription;10;94;F;BOLVIN;Isabelle;02/12/1969;RN;Artisan;Non;F;MARJANOVIC;Zeljka;12/07/1973;Non +75;Paris;13;13ème circonscription;11;197;F;MOREL;Daniele;04/04/1949;DVG;Ancien cadre;Non;M;TARDITO;Theodore;18/11/1994;Non +75;Paris;13;13ème circonscription;12;97;M;AMIEL;David;28/11/1992;ENS;Cadre administratif et commercial d'entreprise;Non;F;IBLED;Catherine;25/05/1975;Non +75;Paris;13;13ème circonscription;13;93;M;BOURSE-PROVENCE;Dominique;03/02/1952;DSV;Profession libérale;Non;F;ADDE;Agnès;03/07/1965;Non +75;Paris;14;14ème circonscription;1;55;M;SZPINER;Francis;22/03/1954;LR;Profession libérale;Non;F;BOËLLE;Sandra;26/05/1961;Oui +75;Paris;14;14ème circonscription;2;172;F;KRATZ;Catherine;08/04/1962;DVC;Profession libérale;Non;F;BEVIERE;Bénédicte;06/07/1967;Non +75;Paris;14;14ème circonscription;3;128;F;DE LA BRÉLIE;Anne;05/07/1968;RN;Profession intermédiaire de la santé et du travail social;Non;F;PERNOT;Anne;29/05/1968;Non +75;Paris;14;14ème circonscription;4;143;M;PILARD;Sébastien;21/08/1978;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;MEMMI;Dan-Alexandre;26/01/1989;Non +75;Paris;14;14ème circonscription;5;200;F;MATHURIN;Isabelle;27/02/1959;DVG;Cadre de la fonction publique;Non;M;BELEM;Bruno;11/08/1958;Non +75;Paris;14;14ème circonscription;6;92;M;DORDOIGNE;Serge;08/03/1990;ECO;Employé civil et agent de service de la fonction publique;Non;M;BOUSSAHEL;Sofiane;30/09/1978;Non +75;Paris;14;14ème circonscription;7;5;F;BOURDY;Marie;12/02/1968;DXG;Ingénieur et cadre technique d'entreprise;Non;M;HEMERY;Frédéric;31/12/1966;Non +75;Paris;14;14ème circonscription;8;13;M;HADDAD;Benjamin;23/10/1985;ENS;Professeur, profession scientifique;Non;F;MISSOFFE;Joséphine;24/09/1973;Non +75;Paris;14;14ème circonscription;9;224;F;ACHOUR;Wendy;10/02/1990;DVG;Cadre administratif et commercial d'entreprise;Non;M;VANDEMBROUCQ;Damien;16/03/1969;Non +75;Paris;14;14ème circonscription;10;110;F;MAURY;Julie;17/03/1989;NUPES;Profession de l'information, des arts et des spectacles;Non;M;ROTA;Hugo;24/01/2002;Non +75;Paris;15;15ème circonscription;1;48;F;TYBURCZY;Apolline;12/10/1987;ECO;Profession libérale;Non;F;MARASTI;Muriel;28/09/1968;Non +75;Paris;15;15ème circonscription;2;43;M;HOUPLAIN;Philippe;16/07/1961;REC;Cadre de la fonction publique;Non;F;BARBAROUX;Sophie;01/04/1989;Non +75;Paris;15;15ème circonscription;3;225;F;SYLVESTRE;Albertine;13/09/1974;DIV;Employé civil et agent de service de la fonction publique;Non;M;ADJÉTÉ;Séwa Pierre;22/02/1956;Non +75;Paris;15;15ème circonscription;4;26;F;BOULAIRE;Marie-Josée;26/01/1959;RN;Ancien employé;Non;F;TACHER;Angélique;02/04/1999;Non +75;Paris;15;15ème circonscription;5;98;F;SIMONNET;Danielle;02/07/1971;NUPES;Professeur, profession scientifique;Non;F;GARREZ;Alice;05/12/1971;Non +75;Paris;15;15ème circonscription;6;22;M;DIDIER;François-Marie;03/10/1980;LR;Cadre administratif et commercial d'entreprise;Non;F;JASSIN;Brigitte;22/10/1955;Non +75;Paris;15;15ème circonscription;7;114;M;GASSAMA;Mohamad;22/11/1979;ENS;Ingénieur et cadre technique d'entreprise;Non;F;ZILBERG;Arlette;20/05/1956;Non +75;Paris;15;15ème circonscription;8;176;F;EL AARAJE;Lamia;22/11/1986;SOC;Cadre administratif et commercial d'entreprise;Non;M;CASANOVA;Alain;21/03/1963;Non +75;Paris;15;15ème circonscription;9;19;F;ZEKA LEMA;Pauline;19/01/1982;DXG;Contremaître, agent de maîtrise;Non;F;LISCOËT;Catherine;04/05/1954;Non +75;Paris;15;15ème circonscription;10;186;F;ADOBATI;Sandrine;30/03/1974;DIV;Cadre administratif et commercial d'entreprise;Non;M;GARCIA;Virgile;13/09/1985;Non +75;Paris;15;15ème circonscription;11;173;M;ARAGON;Philippe;23/05/1968;DVC;Cadre administratif et commercial d'entreprise;Non;M;MUZARD;Alain;12/02/1962;Non +75;Paris;15;15ème circonscription;12;170;M;NOBIN;Thierry Jean Pierre;09/11/1962;DXG;Employé civil et agent de service de la fonction publique;Non;F;MOREAU;Martine Annie;26/04/1954;Non +75;Paris;15;15ème circonscription;13;38;M;CHARVILLAT;Arnaud;28/10/1977;DXG;Employé civil et agent de service de la fonction publique;Non;M;SOUCIER;Dominique;16/06/1970;Non +75;Paris;16;16ème circonscription;1;102;F;LEGRAIN;Sarah;17/11/1985;NUPES;Professeur, profession scientifique;Non;F;AIDARA;Ramata;28/07/1982;Non +75;Paris;16;16ème circonscription;2;89;M;EL-MARBATI;Nordine;05/06/1962;DXG;Employé administratif d'entreprise;Non;F;GUIDOT;Catherine;21/06/1952;Non +75;Paris;16;16ème circonscription;3;191;M;BACHA;Yanis;16/01/1993;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MAMAN;Noémie Simha;02/04/1998;Non +75;Paris;16;16ème circonscription;4;16;F;TOUBIANA;Marie;18/10/1947;LR;Ancien cadre;Non;M;LAMBEY;Aymeric;15/02/1983;Non +75;Paris;16;16ème circonscription;5;68;M;MARCHIKA;Ivan;19/11/1988;DXG;Professeur des écoles, instituteur et assimilé;Non;F;BARAY;Elise-Anne;22/08/1990;Non +75;Paris;16;16ème circonscription;6;217;M;FOURNIER;Laurent;08/04/1964;DVC;Commerçant et assimilé;Non;F;TALEB;Monira;20/06/1979;Non +75;Paris;16;16ème circonscription;7;167;M;COUPEL;Sébastien;30/07/1976;ECO;Employé administratif d'entreprise;Non;M;GROSBOIS;Etienne;09/12/1988;Non +75;Paris;16;16ème circonscription;8;219;F;AROUS;Jihane;25/09/1967;DIV;Commerçant et assimilé;Non;M;NASRI;Mehdi;25/11/2002;Non +75;Paris;16;16ème circonscription;9;124;F;MONSAURET;Nathalie;09/02/1969;RN;Personnel des services directs aux particuliers;Non;F;KEMARI-LAURADOUR;Ouneïza;08/05/1935;Non +75;Paris;16;16ème circonscription;10;168;M;BECHIEAU;François;03/01/1970;DVG;Profession libérale;Non;F;GUIGNARD;Agnès;24/05/1959;Non +75;Paris;16;16ème circonscription;11;192;F;KHELFA;Hakima;25/12/1982;DIV;Cadre de la fonction publique;Non;M;GUIGNIER;Antoine Jean Raymond;16/06/1969;Non +75;Paris;16;16ème circonscription;12;216;F;DESGRANGE;Caroline;14/01/1960;REC;Cadre administratif et commercial d'entreprise;Non;M;BELLINI;Pierre;28/05/2003;Non +75;Paris;17;17ème circonscription;1;154;M;YAFFA;Mams;01/01/1976;ECO;Profession libérale;Non;F;CHAOUCHE;Sonia;17/06/1984;Non +75;Paris;17;17ème circonscription;2;107;F;OBONO;Danièle;12/07/1980;NUPES;Cadre de la fonction publique;Oui;M;MONGKHOY;Michel;10/11/1987;Non +75;Paris;17;17ème circonscription;3;137;F;FAILLÈS;Béatrice;27/09/1967;RDG;Militaire du contingent;Non;M;NOAH;Christophe;29/11/1949;Non +75;Paris;17;17ème circonscription;4;54;M;AKSAS;Abdellah;06/08/1970;DXG;Ouvrier qualifié de type industriel;Non;M;LE GOFF;Stéphane;19/11/1964;Non +75;Paris;17;17ème circonscription;5;190;F;TÉCHER;Marianna;21/02/1955;RN;Ancien ouvrier;Non;F;FEDOSSOVA;Natalia;09/03/1959;Non +75;Paris;17;17ème circonscription;6;88;F;FALICON;Marie;04/05/2000;REC;Employé administratif d'entreprise;Non;M;MEYER;Adrien;12/10/1991;Non +75;Paris;17;17ème circonscription;7;158;M;HADBI;Youcef;31/12/1957;DIV;Ingénieur et cadre technique d'entreprise;Non;M;SAUTON;Claude;08/01/1948;Non +75;Paris;17;17ème circonscription;8;221;M;FIQUET;Clement;05/08/1996;DIV;Cadre administratif et commercial d'entreprise;Non;M;MORSHED;Magdy;17/03/1996;Non +75;Paris;17;17ème circonscription;9;155;M;SIGLER;Pierre;12/04/1981;ECO;Profession de l'information, des arts et des spectacles;Non;F;VELTÉ;Sarah;10/06/1986;Non +75;Paris;17;17ème circonscription;10;25;F;MICHEL;Angélique;07/10/1971;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;ABORDJEL;Stéphan;24/06/1971;Non +75;Paris;17;17ème circonscription;11;203;M;BACHIR;Fatah;28/09/1975;DIV;Commerçant et assimilé;Non;M;BENAMAR;Salima;12/04/1989;Non +75;Paris;17;17ème circonscription;12;119;F;BÉNIÉ;Kolia;02/10/1984;ENS;Cadre de la fonction publique;Non;M;MONCOMBLE;Mathieu;13/11/1986;Non +75;Paris;17;17ème circonscription;13;201;F;CLEMENT;Annie;04/11/1960;DVD;Cadre administratif et commercial d'entreprise;Non;M;SENBEL;Abdel;27/12/1960;Non +75;Paris;17;17ème circonscription;14;181;F;LARGUECH;Siwar;21/10/1976;DVG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;WHITNEY;Anthony;26/10/1974;Non +75;Paris;18;18ème circonscription;1;195;M;LEININGER;Johannes Christoph;16/09/1990;DIV;Cadre administratif et commercial d'entreprise;Non;F;FABIOLA;Fabiola;03/06/1986;Non +75;Paris;18;18ème circonscription;2;81;M;BOURNAZEL;Pierre-Yves;31/08/1977;ENS;Cadre administratif et commercial d'entreprise;Oui;F;BORISSOVA-EBRAHIM;Carmen;26/09/1994;Non +75;Paris;18;18ème circonscription;3;105;F;CARRASCO;Julia;23/05/1982;RN;Technicien;Non;F;MORIGAUD;Christiane;23/04/1955;Non +75;Paris;18;18ème circonscription;4;157;F;LE GAL DE KERANGAL;Axelle;03/10/1995;REC;Ancien cadre;Non;M;ZAJDERMAN;Frédéric;25/05/1972;Non +75;Paris;18;18ème circonscription;5;199;M;BOULA;Laurent;28/05/1961;DVD;Profession libérale;Non;F;LECLERC;Sonia;17/10/1970;Non +75;Paris;18;18ème circonscription;6;61;M;CAMBOURAKIS;Philippe Heracles Charles;10/02/1965;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LABAT;Didier;01/12/1967;Non +75;Paris;18;18ème circonscription;7;145;M;RAVAILHE;Nicolas;03/06/1969;DVG;Professeur, profession scientifique;Non;M;MORANE;Ivan;31/10/1956;Non +75;Paris;18;18ème circonscription;8;206;M;LE;Victor;30/10/1973;DIV;Profession de l'information, des arts et des spectacles;Non;F;BOUCHER;Flavie Boucher;21/12/1989;Non +75;Paris;18;18ème circonscription;9;117;F;BOUBAULT;Annie;01/12/1966;DXG;Employé civil et agent de service de la fonction publique;Non;M;GUETTÉ;Pascal;09/08/1956;Non +75;Paris;18;18ème circonscription;10;28;M;EL YASNI;Marc;23/08/1979;DIV;Contremaître, agent de maîtrise;Non;F;PICCHIRALLO;Céline;04/01/1982;Non +75;Paris;18;18ème circonscription;11;156;M;GRANIER;Rudolph;20/06/1979;LR;Profession libérale;Non;F;HAMMAL;Djamila;12/09/1963;Non +75;Paris;18;18ème circonscription;12;109;M;CARON;Aymeric;04/12/1971;NUPES;Profession de l'information, des arts et des spectacles;Non;F;DIETHELM;Victoire;04/04/1992;Non +76;Seine-Maritime;01;1ère circonscription;1;79;M;BESSON;Pierre-Alexandre;20/09/1971;ECO;Profession libérale;Non;F;SIRGO;Marianne;12/07/1979;Non +76;Seine-Maritime;01;1ère circonscription;2;60;F;VITARD;Céline;05/03/1980;DXG;Professeur, profession scientifique;Non;M;ZERROUALI;Morad;15/05/1977;Non +76;Seine-Maritime;01;1ère circonscription;3;83;M;VACQUER;Richard;26/12/1982;DVG;Contremaître, agent de maîtrise;Non;M;SAINT-ÉTIENNE;Aymeric;15/09/1974;Non +76;Seine-Maritime;01;1ère circonscription;4;39;M;GUESDON;Pierre-Alexandre;05/01/1984;ECO;Employé civil et agent de service de la fonction publique;Non;M;DIEULLE;Loïc;08/08/1987;Non +76;Seine-Maritime;01;1ère circonscription;5;35;F;CROSNIER;Mélanie;03/11/1995;RN;Ouvrier non qualifié de type industriel;Non;M;HELDEBAUME;Thibault;19/07/1995;Non +76;Seine-Maritime;01;1ère circonscription;6;71;F;ROUX;Marie-Hélène;13/01/1965;LR;Cadre de la fonction publique;Non;M;VION;François;05/10/1967;Non +76;Seine-Maritime;01;1ère circonscription;7;37;M;DA SILVA;Maxime;23/06/1993;NUPES;Profession intermédiaire administrative de la fonction publique;Non;F;NICQ-CROIZAT;Sylvie;24/06/1964;Non +76;Seine-Maritime;01;1ère circonscription;8;64;F;DE CINTRÉ;Christine;24/06/1979;DVG;Profession libérale;Non;M;DUCHAUSSOY;Vincent;13/06/1986;Non +76;Seine-Maritime;01;1ère circonscription;9;81;M;ADAM;Damien;28/06/1989;ENS;Cadre administratif et commercial d'entreprise;Oui;F;MOTTET;Delphine;30/12/1971;Non +76;Seine-Maritime;01;1ère circonscription;10;2;F;FOISSEY;Valérie;13/03/1969;DXG;Employé civil et agent de service de la fonction publique;Non;M;LAMY;Joël;16/02/1956;Non +76;Seine-Maritime;01;1ère circonscription;11;19;M;CLELAND;Olivier;12/12/1966;REC;Agriculteur sur moyenne exploitation;Non;M;BARELLE;Romain;13/11/1989;Non +76;Seine-Maritime;02;2ème circonscription;1;3;M;GARAULT;Jean-Claude;26/06/1956;DXG;Ancien ouvrier;Non;F;TORRE;Christelle;23/10/1964;Non +76;Seine-Maritime;02;2ème circonscription;2;36;M;HOLINGUE;Bastien;29/09/2001;RN;Employé civil et agent de service de la fonction publique;Non;F;RACHEDI;Malika;30/06/1967;Non +76;Seine-Maritime;02;2ème circonscription;3;89;M;DUVAL;Sébastien;23/07/1975;NUPES;Cadre administratif et commercial d'entreprise;Non;F;AURÉGAN;Véronique;05/07/1962;Non +76;Seine-Maritime;02;2ème circonscription;4;13;M;LE BAY;Dorian;26/06/1992;ECO;Cadre administratif et commercial d'entreprise;Non;F;DELCROS;Gwenaëlle;14/11/1980;Non +76;Seine-Maritime;02;2ème circonscription;5;61;F;DEPITRE;Catherine;17/08/1952;DVG;Professeur des écoles, instituteur et assimilé;Non;M;BLAVETTE;Guillaume;23/11/1971;Non +76;Seine-Maritime;02;2ème circonscription;6;38;F;VIDAL;Annie;17/09/1956;ENS;Ancien cadre;Oui;M;BOURGUIGNON;Alban;31/03/1994;Non +76;Seine-Maritime;02;2ème circonscription;7;18;M;BRIQUET;Maxence;17/02/2000;REC;Cadre administratif et commercial d'entreprise;Non;F;BADJI;Laura;20/03/1982;Non +76;Seine-Maritime;02;2ème circonscription;8;93;F;LETORT;Nathalie;18/02/1971;DSV;Employé administratif d'entreprise;Non;M;LÉCUYER;Rémy;20/12/1956;Non +76;Seine-Maritime;02;2ème circonscription;9;53;M;HORCHOLLE;Jody;01/06/1972;DVC;Professeur des écoles, instituteur et assimilé;Non;F;BEN SALEM;Noura;26/12/1977;Non +76;Seine-Maritime;02;2ème circonscription;10;73;M;HADDAD;Jonas;14/12/1987;LR;Profession libérale;Non;F;GOULAY;Sabrina;03/03/1979;Non +76;Seine-Maritime;03;3ème circonscription;1;58;M;WULFRANC;Hubert;17/12/1956;NUPES;Professeur, profession scientifique;Oui;M;BÉNARD;Édouard;18/02/1995;Non +76;Seine-Maritime;03;3ème circonscription;2;11;M;LE MANACH;Pascal;11/09/1966;DXG;Ouvrier qualifié de type industriel;Non;F;LOPEZ-MAESTRE;Hélène;29/05/1990;Non +76;Seine-Maritime;03;3ème circonscription;3;65;M;HUET DE BARROS;Nicolas;19/03/1984;DIV;Technicien;Non;F;PAIN;Stella;25/02/1987;Non +76;Seine-Maritime;03;3ème circonscription;4;78;F;TESSIER;Salomée;11/05/1988;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;PERRIER;Thierry;26/04/1967;Non +76;Seine-Maritime;03;3ème circonscription;5;14;F;GERDAY;Delphine;08/04/1966;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GERDAY;Maryne;18/03/1995;Non +76;Seine-Maritime;03;3ème circonscription;6;63;F;OSSIBI;Letycia;22/08/1978;ENS;Profession intermédiaire administrative et commerciale des entreprises;Non;M;BOISSIÈRE;Maxime;31/05/1984;Non +76;Seine-Maritime;03;3ème circonscription;7;46;M;CHEKHEMANI;Kader;18/07/1971;DVG;Cadre de la fonction publique;Non;F;GOUJON;Charlotte;12/01/1983;Non +76;Seine-Maritime;03;3ème circonscription;8;45;F;BOURDET;Clémence;24/08/2000;REC;Elève, étudiant;Non;M;BROCARD;Damien;06/02/2003;Non +76;Seine-Maritime;03;3ème circonscription;9;59;M;CHABERT;Patrick;02/11/1955;DVD;Profession libérale;Non;F;DELBOS;Evelyne;16/02/1966;Non +76;Seine-Maritime;03;3ème circonscription;10;57;M;VASSEUR;Tony;30/01/1971;DSV;Chauffeur;Non;F;CATTANEO;Isabelle;05/01/1975;Non +76;Seine-Maritime;03;3ème circonscription;11;87;F;EL ATRASSI;Ouarda;25/09/1968;DIV;Employé de commerce;Non;M;CHAOU;Mohamed;15/08/1996;Non +76;Seine-Maritime;04;4ème circonscription;1;23;F;JEZEQUEL;Jennifer;23/03/1978;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LAIGNIEZ;Romain;19/01/1989;Non +76;Seine-Maritime;04;4ème circonscription;2;75;F;DUFOUR;Alma;06/05/1990;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BRUNEAU;Olivier;25/09/1977;Non +76;Seine-Maritime;04;4ème circonscription;3;42;M;MERABET;Djoudé;23/09/1974;DVG;Profession intermédiaire de la santé et du travail social;Non;F;GUILLEMIN;Barbara;06/04/1977;Non +76;Seine-Maritime;04;4ème circonscription;4;47;M;PENNELLE;Guillaume;19/02/1975;RN;Professeur, profession scientifique;Non;M;FINOT;Jimmy;05/06/1993;Non +76;Seine-Maritime;04;4ème circonscription;5;101;M;ROUSSEL;Olivier;21/12/1979;DVD;Commerçant et assimilé;Non;F;ANDRÉ;Coralie;19/03/1999;Non +76;Seine-Maritime;04;4ème circonscription;6;85;M;PORET;Michaël;08/02/1975;DIV;Ouvrier qualifié de type industriel;Non;M;AUGER;Roger;03/08/1930;Non +76;Seine-Maritime;04;4ème circonscription;7;86;F;SYLLA;Sira;14/03/1980;ENS;Profession libérale;Oui;M;ROGUEZ;Yves;18/09/1975;Non +76;Seine-Maritime;04;4ème circonscription;8;40;F;FROGER;Eve;25/10/1996;REC;Employé de commerce;Non;M;BAY;Nicolas;21/12/1977;Non +76;Seine-Maritime;04;4ème circonscription;9;16;M;PODGUSZER;Frédéric;04/01/1964;DXG;Ouvrier qualifié de type industriel;Non;F;RÉTHORÉ;Laurence;16/01/1961;Non +76;Seine-Maritime;05;5ème circonscription;1;74;M;LESEUL;Gérard;15/08/1960;NUPES;Cadre administratif et commercial d'entreprise;Oui;F;DÉCHAMPS;Christine;22/01/1963;Non +76;Seine-Maritime;05;5ème circonscription;2;48;M;DELALANDRE;Jean;05/06/1982;ENS;Cadre administratif et commercial d'entreprise;Non;M;QUESNE;Fabien;22/12/1979;Non +76;Seine-Maritime;05;5ème circonscription;3;4;M;SULKOWSKI;Simon;11/10/1956;DXG;Ancienne profession intermédiaire;Non;F;POTEL;Catherine;20/03/1953;Non +76;Seine-Maritime;05;5ème circonscription;4;66;M;LEFAUX;Eddy;28/05/1990;LR;Profession libérale;Non;F;LASNEZ;Dominique;28/10/1948;Non +76;Seine-Maritime;05;5ème circonscription;5;28;M;MONTIER;Jean-Cyril;03/05/1989;RN;Ouvrier qualifié de type artisanal;Non;M;DAVID;Jean-Paul;24/01/1961;Non +76;Seine-Maritime;05;5ème circonscription;6;10;M;GUILLOTTE;Alain;23/03/1946;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;F;TAILLIS RACINE;Claudine;20/11/1950;Non +76;Seine-Maritime;05;5ème circonscription;7;68;M;MAZIER;Frédéric;09/06/1964;REC;Cadre de la fonction publique;Non;F;COCQUEBERT;Anne-Sophie;30/07/1987;Non +76;Seine-Maritime;06;6ème circonscription;1;9;F;SPRIET;Nathalie;01/08/1959;ECO;Ancien employé;Non;F;RACOIS;Brigitte;22/11/1949;Non +76;Seine-Maritime;06;6ème circonscription;2;21;M;MARTIN;Patrice;13/09/1963;RN;Agriculteur sur moyenne exploitation;Non;M;PERRIER;Alexis;06/04/1996;Non +76;Seine-Maritime;06;6ème circonscription;3;41;M;JUMEL;Sébastien;20/12/1971;NUPES;Cadre de la fonction publique;Oui;M;JACQUES;Laurent;17/08/1968;Non +76;Seine-Maritime;06;6ème circonscription;4;70;F;BROUTTÉ;Lisa;20/03/1995;ENS;Cadre de la fonction publique;Non;M;MALLET;Emmanuel;07/09/1970;Non +76;Seine-Maritime;06;6ème circonscription;5;100;M;ARTHUS;Florentin;07/05/1981;ECO;Commerçant et assimilé;Non;M;BRETOUT;Yann;30/04/1978;Non +76;Seine-Maritime;06;6ème circonscription;6;77;M;LEDUC;François;07/04/1956;UDI;Profession libérale;Non;M;BOUCHIER;Aurélien;20/10/1976;Non +76;Seine-Maritime;06;6ème circonscription;7;90;M;THÉRON;Renaud;27/06/1958;DVC;Profession libérale;Non;M;MOUGGAS;Zinedine;23/11/1989;Non +76;Seine-Maritime;06;6ème circonscription;8;26;F;COPPIN;Claire;04/07/1978;REC;Professeur, profession scientifique;Non;M;DE LA CELLE;Cédric;13/04/1978;Non +76;Seine-Maritime;06;6ème circonscription;9;80;M;DEVOGELAERE;Robin;31/05/1973;DVD;Cadre de la fonction publique;Non;F;DUNET;Alexandra;18/01/1975;Non +76;Seine-Maritime;06;6ème circonscription;10;15;F;PETITEVILLE;Michelle;09/09/1951;DXG;Ancien employé;Non;M;MOISAN;Éric;19/07/1972;Non +76;Seine-Maritime;07;7ème circonscription;1;44;F;DUBOC;Nancy;15/03/1973;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;QUERON;Jean-François;22/05/1958;Non +76;Seine-Maritime;07;7ème circonscription;2;55;F;LARUE;Brigitte;20/02/1966;DSV;Employé administratif d'entreprise;Non;F;HEDOUIN;Patricia;16/11/1957;Non +76;Seine-Maritime;07;7ème circonscription;3;99;F;LELIÈVRE;Caroline;26/09/1973;DSV;Profession libérale;Non;F;TARLET;Eléonore;18/05/1973;Non +76;Seine-Maritime;07;7ème circonscription;4;97;M;DECK;Alexis;04/03/1976;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;BEAUFILS;Odile;01/10/1956;Non +76;Seine-Maritime;07;7ème circonscription;5;50;F;COUFOURIER;Lauriane;30/01/1992;DVG;Employé administratif d'entreprise;Non;F;OMONT;Catherine;27/11/1958;Non +76;Seine-Maritime;07;7ème circonscription;6;76;M;FORESTIER;Jacques;28/05/1965;LR;Profession libérale;Non;F;LEFEBVRE;Anne-Sophie;26/02/1977;Non +76;Seine-Maritime;07;7ème circonscription;7;12;F;DENIS;Camille;03/05/1990;DXG;Professeur, profession scientifique;Non;M;ALLART;Jean-Christophe;30/11/1965;Non +76;Seine-Maritime;07;7ème circonscription;8;98;F;PRUNIER;Virginie;13/11/1978;DIV;Cadre de la fonction publique;Non;M;LE BARBÉ;Gaëtan;21/09/1991;Non +76;Seine-Maritime;07;7ème circonscription;9;43;M;MOUHANNA;Marc;17/01/1983;DXG;Professeur, profession scientifique;Non;F;EUDIER-NIEL;Luce;21/08/1941;Non +76;Seine-Maritime;07;7ème circonscription;10;91;F;DELESTRE;Lucie;15/01/1985;RN;Personnel des services directs aux particuliers;Non;M;MAHEU;Bruno;15/11/1963;Non +76;Seine-Maritime;07;7ème circonscription;11;94;F;FIRMIN LE BODO;Agnès;20/11/1968;ENS;Profession libérale;Oui;F;CAREL;Agnès;09/06/1968;Non +76;Seine-Maritime;07;7ème circonscription;12;5;F;CANEL-DEPITRE;Béatrice;30/10/1954;ECO;Ancienne profession intermédiaire;Non;F;LEBLOND;Élisabeth;22/05/1954;Non +76;Seine-Maritime;07;7ème circonscription;13;8;M;GROUSSARD;Frédéric;02/08/1970;REC;Contremaître, agent de maîtrise;Non;F;ALEXANDRE;Julie;13/11/2002;Non +76;Seine-Maritime;08;8ème circonscription;1;52;M;LECOQ;Jean-Paul;13/10/1958;NUPES;Technicien;Oui;F;NAIL;Nathalie;30/01/1969;Non +76;Seine-Maritime;08;8ème circonscription;2;22;F;LE COZ;Isabelle;16/04/1972;RN;Profession libérale;Non;M;GIBOURDEL;Yannick;17/04/1957;Non +76;Seine-Maritime;08;8ème circonscription;3;6;F;CAUCHOIS;Magali;06/01/1970;DXG;Professeur, profession scientifique;Non;M;LEVASTRE;Gérald;31/12/1953;Non +76;Seine-Maritime;08;8ème circonscription;4;88;M;ECHCHENNA;Wasil;10/01/1986;ENS;Professeur, profession scientifique;Non;M;ROMAIN;Jacques;08/08/1947;Non +76;Seine-Maritime;08;8ème circonscription;5;51;M;LEPRÊTRE;Tony;07/04/1987;DSV;Ouvrier non qualifié de type industriel;Non;F;ENOCQ;Camille;08/05/1988;Non +76;Seine-Maritime;08;8ème circonscription;6;54;M;LEGENDRE;Joachim;04/03/1987;ECO;Employé administratif d'entreprise;Non;F;DUFRESNE;Élodie;17/07/1988;Non +76;Seine-Maritime;08;8ème circonscription;7;20;F;DUCOEURJOLY;Isabelle;11/03/1975;REC;Employé civil et agent de service de la fonction publique;Non;M;LE COZ;Pierre;15/04/1994;Non +76;Seine-Maritime;09;9ème circonscription;1;96;M;BLED;Jean Marc;06/09/1967;REC;Ingénieur et cadre technique d'entreprise;Non;F;BOUILLE;Armelle;17/06/1966;Non +76;Seine-Maritime;09;9ème circonscription;2;82;M;BALIER;Victor;19/04/1991;LR;Ouvrier qualifié de type industriel;Non;F;STIL;Carole;29/11/1971;Non +76;Seine-Maritime;09;9ème circonscription;3;7;M;MACÉ;Jean-Paul;05/10/1955;DXG;Ancien ouvrier;Non;F;GENETTE;Géraldine;28/10/1992;Non +76;Seine-Maritime;09;9ème circonscription;4;95;M;BUCOURT;Patrick;15/10/1954;DSV;Ancien cadre;Non;M;VARIN;Pierre;16/03/1956;Non +76;Seine-Maritime;09;9ème circonscription;5;33;F;POUSSIER-WINSBACK;Marie-Agnès;25/03/1967;ENS;Professeur des écoles, instituteur et assimilé;Non;M;GUÉRIN;David;09/01/1966;Non +76;Seine-Maritime;09;9ème circonscription;6;34;F;FOUANI;Stéphanie;11/05/1971;NUPES;Employé administratif d'entreprise;Non;F;BOUTEILLAN;Christine;08/04/1963;Non +76;Seine-Maritime;09;9ème circonscription;7;49;M;GOURY;Nicolas;07/09/1985;RN;Employé civil et agent de service de la fonction publique;Non;M;LEBRETON;Gilles;11/10/1958;Non +76;Seine-Maritime;09;9ème circonscription;8;69;M;FOURNIER;Victor;08/12/2000;DVC;Elève, étudiant;Non;M;VANDERMEERSCH;Aldric;15/06/1982;Non +76;Seine-Maritime;09;9ème circonscription;9;17;F;BETEMPS FOLAIN;Annabelle;22/04/1973;DVD;Employé de commerce;Non;M;MICHEL;Bruno;22/06/1959;Non +76;Seine-Maritime;09;9ème circonscription;10;56;M;BARON;Mickaël;22/08/1973;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;HAUTOT-MOUGNE;Anne-Dominique;07/12/1969;Non +76;Seine-Maritime;09;9ème circonscription;11;84;F;SERVAIS;Carole;04/01/1969;ECO;Profession intermédiaire de la santé et du travail social;Non;F;ALLAIN;Gaëlle;13/03/1976;Non +76;Seine-Maritime;09;9ème circonscription;12;31;F;KERBARH;Stéphanie;31/07/1975;DVC;Profession libérale;Oui;M;PAQUIN;François;14/04/1977;Non +76;Seine-Maritime;10;10ème circonscription;1;72;F;BÉRÉGOVOY;Véronique;16/08/1967;NUPES;Cadre de la fonction publique;Non;M;MOUILLARD;Arnaud;03/06/1980;Non +76;Seine-Maritime;10;10ème circonscription;2;32;F;BAUDET;Véronique;23/10/1959;DSV;Artisan;Non;M;BISSON;Joël;31/10/1960;Non +76;Seine-Maritime;10;10ème circonscription;3;24;M;CRAMBES;Nicolas;01/10/1992;DXG;Professeur, profession scientifique;Non;F;HOUISSE;Brigitte;27/06/1956;Non +76;Seine-Maritime;10;10ème circonscription;4;92;F;KÉRADEC-DUJARDIN;Pascale;20/07/1959;DVD;Professeur, profession scientifique;Non;F;DUTEURTRE;Albane;24/09/1989;Non +76;Seine-Maritime;10;10ème circonscription;5;25;M;DUMAS;Nicolas;12/04/1997;REC;Employé civil et agent de service de la fonction publique;Non;F;BLONDEL;Stacy;19/05/1994;Non +76;Seine-Maritime;10;10ème circonscription;6;62;M;BATUT;Xavier;26/12/1976;ENS;Cadre administratif et commercial d'entreprise;Oui;F;LAMBARD;Stéphanie;03/03/1974;Non +76;Seine-Maritime;10;10ème circonscription;7;29;F;LERCIER;Marine;09/04/1991;ECO;Elève, étudiant;Non;F;MASSÉ;Ophélie;09/06/1983;Non +76;Seine-Maritime;10;10ème circonscription;8;27;F;THOMAS;Anaïs;15/11/1994;RN;Employé de commerce;Non;M;BONNET;Yves;20/11/1935;Non +76;Seine-Maritime;10;10ème circonscription;9;30;M;HUVEY;Jérôme;08/03/1969;DIV;Profession libérale;Non;F;DAS;Françoise;05/02/1957;Non +77;Seine-et-Marne;01;1ère circonscription;1;34;M;JULLEMIER;Denis;18/11/1968;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;CHAGNAT;Véronique;31/01/1974;Non +77;Seine-et-Marne;01;1ère circonscription;2;101;F;BRANDY;Jeannine;11/09/1952;REC;Profession libérale;Non;M;VILETTE;Julien;14/01/1992;Non +77;Seine-et-Marne;01;1ère circonscription;3;35;F;SAUGET;Caroline;07/10/1971;ECO;Cadre de la fonction publique;Non;F;VOTTERO;Béatrice;19/05/1962;Non +77;Seine-et-Marne;01;1ère circonscription;4;108;M;MAHBOULI;Fadhel;18/09/1948;ECO;Profession de l'information, des arts et des spectacles;Non;F;SAHARI;Célia;02/07/1977;Non +77;Seine-et-Marne;01;1ère circonscription;5;59;F;PUZIN;Morgane;16/12/1978;DSV;Personnel des services directs aux particuliers;Non;M;LE MOULNIER;Julien;01/11/1980;Non +77;Seine-et-Marne;01;1ère circonscription;6;95;F;LUQUET;Aude;18/08/1967;ENS;Cadre de la fonction publique;Oui;M;VAUTIER;Anthony;21/01/1976;Non +77;Seine-et-Marne;01;1ère circonscription;7;67;M;DELVERT;Patrick;20/04/1961;DXG;Ancien cadre;Non;F;BODIN;Monique;07/01/1957;Non +77;Seine-et-Marne;01;1ère circonscription;8;48;M;GUERRIER;Jean-Louis;10/12/1952;DXG;Ancien cadre;Non;M;BOISSELLE;Bertrand;15/01/1977;Non +77;Seine-et-Marne;01;1ère circonscription;9;120;F;SIDHOUM;Samira;27/03/1973;DIV;Cadre administratif et commercial d'entreprise;Non;M;BEDDIAR;Nordine;07/10/1976;Non +77;Seine-et-Marne;01;1ère circonscription;10;40;M;SAINT-MARTIN;Arnaud;25/01/1979;NUPES;Professeur, profession scientifique;Non;F;CUNY;Armelle;28/01/1976;Non +77;Seine-et-Marne;01;1ère circonscription;11;106;M;ZANIFÉ;Dawé;17/07/1962;ECO;Cadre de la fonction publique;Non;M;HARLÉ;Éric;13/10/1962;Non +77;Seine-et-Marne;01;1ère circonscription;12;3;M;PARADOL;François;27/09/1987;RN;Profession intermédiaire administrative de la fonction publique;Non;M;SOUSA;Joaquim;01/11/1999;Non +77;Seine-et-Marne;02;2ème circonscription;1;69;M;ROUSSELLE;Loïc;25/12/1970;ECO;Professeur, profession scientifique;Non;F;FOURNIER;Françoise;05/06/1959;Non +77;Seine-et-Marne;02;2ème circonscription;2;17;M;CAZAURAN;Guillaume;24/07/1958;REC;Ancien artisan, commerçant, chef d'entreprise;Non;F;SVATEK;Paule;23/12/1961;Non +77;Seine-et-Marne;02;2ème circonscription;3;87;F;MOLINA;Marie-Pierre;26/03/1975;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;PLOUZEAU;Bruno;29/06/1963;Non +77;Seine-et-Marne;02;2ème circonscription;4;5;F;DIMITROVA;Ivanka;13/03/1959;RN;Profession intermédiaire administrative de la fonction publique;Non;M;GARNIER;Armel;13/04/1978;Non +77;Seine-et-Marne;02;2ème circonscription;5;18;M;DELALANDE;Franck;24/06/1971;ECO;Technicien;Non;F;JOSSE;Sophie;21/10/1969;Non +77;Seine-et-Marne;02;2ème circonscription;6;76;M;VALLETOUX;Frédéric;23/08/1966;ENS;Profession de l'information, des arts et des spectacles;Non;F;VILGRAIN;Juliette;07/05/1960;Non +77;Seine-et-Marne;02;2ème circonscription;7;42;F;FAURY;Stéphanie;09/05/1973;DXG;Profession intermédiaire de la santé et du travail social;Non;M;RISACHER;Michel;05/01/1957;Non +77;Seine-et-Marne;02;2ème circonscription;8;84;F;GARREAU;Isoline;15/10/1984;LR;Employé administratif d'entreprise;Non;M;GOUHOURY;Pascal;24/04/1968;Non +77;Seine-et-Marne;02;2ème circonscription;9;97;M;CASTELLAN;Laurent;24/05/1975;DSV;Cadre administratif et commercial d'entreprise;Non;F;DUROCHER;Marie-Elisabeth;21/03/1958;Non +77;Seine-et-Marne;02;2ème circonscription;10;4;F;BROCH;Élodie;13/03/1972;DXG;Professeur des écoles, instituteur et assimilé;Non;M;GENNETIER;Fabien;31/08/1971;Non +77;Seine-et-Marne;02;2ème circonscription;11;116;F;PAPIN;Sandrine;10/02/1975;DIV;Cadre administratif et commercial d'entreprise;Non;M;JESSA-FERRÉ;Philippe;15/01/1968;Non +77;Seine-et-Marne;03;3ème circonscription;1;19;F;GARDEL;Laëtitia;14/03/1973;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;NEVES;Carlos;27/12/1960;Non +77;Seine-et-Marne;03;3ème circonscription;2;104;M;SEPTIERS;Patrick;07/10/1954;DVC;Ancienne profession intermédiaire;Non;M;BOUTILLIER;Bernard;22/05/1958;Non +77;Seine-et-Marne;03;3ème circonscription;3;105;M;THIÉRIOT;Jean-Louis;26/06/1969;LR;Profession libérale;Oui;M;MOMON;Alain;12/08/1958;Non +77;Seine-et-Marne;03;3ème circonscription;4;121;F;BENKABA;Maïssane;29/01/1995;DIV;Employé de commerce;Non;M;KACEM;Abdellah;08/09/1965;Non +77;Seine-et-Marne;03;3ème circonscription;5;38;F;GÉRÔME-DELGADO;Elodie;25/01/1985;NUPES;Cadre administratif et commercial d'entreprise;Non;M;MOREL;Yannick;01/11/1971;Non +77;Seine-et-Marne;03;3ème circonscription;6;15;M;THÉOT;Olivier;01/11/1981;DVG;Professeur, profession scientifique;Non;F;PASQUET;Hélène;04/04/2001;Non +77;Seine-et-Marne;03;3ème circonscription;7;111;F;LEGUILLON;Camille;03/11/1986;ECO;Cadre administratif et commercial d'entreprise;Non;F;ANFRAY;Adeline;06/12/1980;Non +77;Seine-et-Marne;03;3ème circonscription;8;99;F;BACAR;Amina;23/02/1981;DVG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;TOURNIER;Cyril;14/02/1969;Non +77;Seine-et-Marne;03;3ème circonscription;9;6;M;LIORET;Dominique;11/10/1954;RN;Ancien cadre;Non;F;RODDES;Elisa;23/11/1997;Non +77;Seine-et-Marne;03;3ème circonscription;10;70;F;COUPÉ;Valérie;11/12/1964;DXG;Employé administratif d'entreprise;Non;M;AUCOUTURIER;Alain;23/05/1950;Non +77;Seine-et-Marne;03;3ème circonscription;11;27;M;MALLET;Xavier;15/07/1984;REC;Policier et militaire;Non;F;JOANNESSE;Léa Marie;26/06/2003;Non +77;Seine-et-Marne;03;3ème circonscription;12;113;F;NOMELLINI;Elisa;03/12/1999;REG;Elève, étudiant;Non;F;ASHCROFT;Ella;14/08/1999;Non +77;Seine-et-Marne;03;3ème circonscription;13;30;F;VAN CAUTEREN;Catherine;21/03/1964;DXG;Ouvrier qualifié de type industriel;Non;M;STEINMESSE;Rambert;01/12/1988;Non +77;Seine-et-Marne;04;4ème circonscription;1;33;F;COTTIN;Françoise;05/03/1954;DXG;Ancien cadre;Non;M;SENOTIER;Michel;30/09/1949;Non +77;Seine-et-Marne;04;4ème circonscription;2;41;F;CHABRAND;Cécile;04/02/1986;DSV;Profession libérale;Non;M;PADOVANI;Pierre-Antoine;04/12/1991;Non +77;Seine-et-Marne;04;4ème circonscription;3;90;F;MERZOUD-AISSAOUI;Djamila;09/11/1963;RDG;Employé civil et agent de service de la fonction publique;Non;M;ASSEZ;Pierre;11/04/1950;Non +77;Seine-et-Marne;04;4ème circonscription;4;71;F;PERIGAULT;Isabelle;04/09/1971;LR;Cadre de la fonction publique;Non;M;JACOB;Christian;04/12/1959;Oui +77;Seine-et-Marne;04;4ème circonscription;5;11;M;VENANT;Frederic;07/02/1968;REC;Profession de l'information, des arts et des spectacles;Non;M;SERRENTINO;Lucas;21/12/1993;Non +77;Seine-et-Marne;04;4ème circonscription;6;109;F;ROUSSET;Audrey Roseline;24/09/1982;DVD;Ouvrier qualifié de type industriel;Non;M;BILLIEMAZ;Matthieu Pierre Henry;19/02/1968;Non +77;Seine-et-Marne;04;4ème circonscription;7;118;M;DELVAUX;Jean-Philippe;04/03/1972;ENS;Cadre de la fonction publique;Non;F;FAVIER;Isabelle;02/05/1964;Non +77;Seine-et-Marne;04;4ème circonscription;8;43;M;DUROX;Aymeric;06/08/1985;RN;Professeur des écoles, instituteur et assimilé;Non;M;ABDILLA;Jean-Marie;10/05/1956;Non +77;Seine-et-Marne;04;4ème circonscription;9;24;M;GAUDEY;Jean-Yves;07/06/1964;DXG;Professeur, profession scientifique;Non;M;DENIS;Bernard;31/08/1962;Non +77;Seine-et-Marne;04;4ème circonscription;10;100;M;GARNIER;Mathieu;14/08/1984;NUPES;Profession libérale;Non;F;BARTHE-VIGIER;Céline;27/10/1972;Non +77;Seine-et-Marne;04;4ème circonscription;11;23;F;HUOT;Gabrielle;26/10/1980;ECO;Employé administratif d'entreprise;Non;M;ECK;Sébastien;05/09/1981;Non +77;Seine-et-Marne;05;5ème circonscription;1;64;M;JUDAS;Gurvan;22/04/2000;RDG;Elève, étudiant;Non;M;CHARPENTIER;David;22/12/1974;Non +77;Seine-et-Marne;05;5ème circonscription;2;10;M;LENORMAND;François;04/02/1951;RN;Profession libérale;Non;F;YAIGRE;Claire;16/11/2000;Non +77;Seine-et-Marne;05;5ème circonscription;3;103;M;RIESTER;Franck;03/01/1974;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;LEMOINE;Patricia;30/12/1961;Oui +77;Seine-et-Marne;05;5ème circonscription;4;46;M;QUENOT;Pascal;14/12/1959;DXG;Ancien ouvrier;Non;M;HARIVEL;Patrice;27/06/1965;Non +77;Seine-et-Marne;05;5ème circonscription;5;91;M;NOIREZ;Éric;02/02/1977;DSV;Employé civil et agent de service de la fonction publique;Non;M;THÉVENOT;François;08/03/1977;Non +77;Seine-et-Marne;05;5ème circonscription;6;82;M;LEMOINE;Jacques;16/09/1978;DVD;Ingénieur et cadre technique d'entreprise;Non;M;DUGUÉ;Denis;12/01/1976;Non +77;Seine-et-Marne;05;5ème circonscription;7;36;M;ASPRO;Jean-Michel;09/02/1961;REC;Profession libérale;Non;M;URDIALES;Daniel;08/07/1988;Non +77;Seine-et-Marne;05;5ème circonscription;8;115;F;LAJOYE;Eléonore;29/06/1996;ECO;Cadre administratif et commercial d'entreprise;Non;F;JOLY;Muriel;08/02/1965;Non +77;Seine-et-Marne;05;5ème circonscription;9;44;M;CAUX;Nicolas;03/03/1975;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;FLAMENT-BJARSTAL;Véronique;19/04/1965;Non +77;Seine-et-Marne;05;5ème circonscription;10;78;M;COLIN;Cédric;11/02/1991;NUPES;Professeur, profession scientifique;Non;F;COYNE;Julie;22/07/1985;Non +77;Seine-et-Marne;05;5ème circonscription;11;62;F;CHEVALLIER;Marie-Pierre;02/09/1956;ECO;Ancien employé;Non;F;TABACS;Maryvonne;02/02/1958;Non +77;Seine-et-Marne;05;5ème circonscription;12;107;M;DAHMANE;Redouane;19/05/1979;DIV;Contremaître, agent de maîtrise;Non;F;HAMADI;Yasmine;01/09/1999;Non +77;Seine-et-Marne;06;6ème circonscription;1;37;F;MURCIA;Claire;09/08/1994;REC;Cadre administratif et commercial d'entreprise;Non;M;PALACCI;Clément;12/10/1990;Non +77;Seine-et-Marne;06;6ème circonscription;2;56;F;MEKIDICHE;Fatna;04/06/1965;ENS;Ingénieur et cadre technique d'entreprise;Non;M;ROUGIER;Bruno;18/01/1970;Non +77;Seine-et-Marne;06;6ème circonscription;3;65;M;SALAMONE;Valentin;03/02/1995;DSV;Employé de commerce;Non;F;PRUNELLE;Patricia;26/01/1966;Non +77;Seine-et-Marne;06;6ème circonscription;4;51;F;MOINE;Nathalie;29/05/1977;DVG;Cadre administratif et commercial d'entreprise;Non;M;SOUVERAIN;Martial;13/02/1948;Non +77;Seine-et-Marne;06;6ème circonscription;5;60;F;ROULLAUD;Béatrice;09/06/1960;RN;Profession libérale;Non;M;ROUVELLAT;Alain;22/07/1962;Non +77;Seine-et-Marne;06;6ème circonscription;6;75;F;RIEUPET;Annie;15/11/1952;DXG;Ancien employé;Non;M;ROCHER;Daniel;01/08/1947;Non +77;Seine-et-Marne;06;6ème circonscription;7;88;F;DELAGE;Valérie;04/04/1963;NUPES;Personnel des services directs aux particuliers;Non;M;SAVERET;Gilles;06/08/1962;Non +77;Seine-et-Marne;06;6ème circonscription;8;68;F;REZEG;Hamida;09/11/1972;LR;Professeur des écoles, instituteur et assimilé;Non;M;DEVAUCHELLE;Stéphane;17/01/1966;Non +77;Seine-et-Marne;06;6ème circonscription;9;47;M;KLISARIC;Dragan;30/08/1968;ECO;Commerçant et assimilé;Non;F;METERT;Martine;07/08/1953;Non +77;Seine-et-Marne;07;7ème circonscription;1;73;F;GUILLARD;Laetitia;07/11/1971;ECO;Contremaître, agent de maîtrise;Non;M;DUMONT;Sébastien;08/04/1982;Non +77;Seine-et-Marne;07;7ème circonscription;2;29;M;JAHIER;Patrick;15/11/1968;LR;Ingénieur et cadre technique d'entreprise;Non;F;BROUET-HUET;Severine;27/05/1973;Non +77;Seine-et-Marne;07;7ème circonscription;3;53;M;KOKOUENDO;Rodrigue;08/03/1974;ENS;Cadre administratif et commercial d'entreprise;Oui;F;AUZIAS;Stéphanie;01/10/1971;Non +77;Seine-et-Marne;07;7ème circonscription;4;49;M;HEMET;Patrice;30/06/1958;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;FISSOUROU;Awa;19/06/2000;Non +77;Seine-et-Marne;07;7ème circonscription;5;57;M;DAILLY;Michel;23/03/1959;DSV;Ancien cadre;Non;F;LHUILLIER;Sandrine;18/03/1968;Non +77;Seine-et-Marne;07;7ème circonscription;6;8;M;BERNARD;Didier;27/08/1957;RN;Ancienne profession intermédiaire;Non;F;NICOLLE;Dorothée;27/11/1964;Non +77;Seine-et-Marne;07;7ème circonscription;7;25;F;FRIJA;Gabrielle;03/07/1979;DXG;Professeur, profession scientifique;Non;F;WEISS;Catherine;24/07/1958;Non +77;Seine-et-Marne;07;7ème circonscription;8;80;F;SOUDAIS;Ersilia;21/05/1988;NUPES;Professeur, profession scientifique;Non;F;TUTTLE;Cynthia;02/11/1987;Non +77;Seine-et-Marne;07;7ème circonscription;9;112;F;TROUSSARD;Beatrice;21/01/1969;REC;Professeur, profession scientifique;Non;M;BAYLE;Emilion;09/06/1998;Non +77;Seine-et-Marne;07;7ème circonscription;10;94;F;BAKU MANDEDIBA;Ketty;08/10/1986;DVD;Cadre administratif et commercial d'entreprise;Non;F;HERBELIN;Jennifer;02/10/1986;Non +77;Seine-et-Marne;08;8ème circonscription;1;32;F;MAIRIAUX;Delphine;20/09/1967;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;COLAISSEAU;Olivier;03/11/1970;Non +77;Seine-et-Marne;08;8ème circonscription;2;14;M;RENAULT;Frédéric;19/03/1957;DXG;Technicien;Non;M;DOUCET;Emmanuel;08/03/1968;Non +77;Seine-et-Marne;08;8ème circonscription;3;61;M;DUCHAUSSOY;Bernard;03/02/1968;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;KEBCI;Sophia;15/11/1970;Non +77;Seine-et-Marne;08;8ème circonscription;4;52;M;MEILLET;Kevin;22/05/1989;ECO;Ingénieur et cadre technique d'entreprise;Non;F;MORELLI;Samantha;20/09/1971;Non +77;Seine-et-Marne;08;8ème circonscription;5;9;F;LECUYER;Reine;25/02/1955;RN;Profession intermédiaire de la santé et du travail social;Non;F;ROUX;Flora;30/01/1955;Non +77;Seine-et-Marne;08;8ème circonscription;6;81;M;BONNET;Arnaud;23/02/1977;NUPES;Professeur, profession scientifique;Non;F;JANIAUD-VERGNAUD;Amandine;23/05/1983;Non +77;Seine-et-Marne;08;8ème circonscription;7;63;M;GHOMI;Hadrien;06/04/1989;ENS;Cadre de la fonction publique;Non;M;BOUCHART;François;11/01/1978;Non +77;Seine-et-Marne;08;8ème circonscription;8;102;M;MOSKOWICZ;Jean-Marc;08/07/1958;REC;Ancien cadre;Non;F;MÉRIMÉE;Emmanuelle;19/04/1996;Non +77;Seine-et-Marne;08;8ème circonscription;9;92;M;SANCHEZ;Michaël;18/04/1981;DSV;Commerçant et assimilé;Non;F;PAUL;Gaëlle;28/06/1981;Non +77;Seine-et-Marne;09;9ème circonscription;1;72;M;BUI;Jérôme;11/10/1978;DXG;Professeur des écoles, instituteur et assimilé;Non;F;CORDIER-GRISON;Margot;30/01/2002;Non +77;Seine-et-Marne;09;9ème circonscription;2;21;M;ROBERT;Pascal;07/10/1963;DSV;Commerçant et assimilé;Non;F;RECCHIA;Alma;20/01/1971;Non +77;Seine-et-Marne;09;9ème circonscription;3;114;M;MORETTI;Pierre;18/02/1998;REG;Ingénieur et cadre technique d'entreprise;Non;M;LEVILLAYER;Timothée;11/08/1993;Non +77;Seine-et-Marne;09;9ème circonscription;4;110;M;TARNIER;Charles;28/09/1994;DVG;Ingénieur et cadre technique d'entreprise;Non;M;DELILLE;Charles-Xavier;11/10/1993;Non +77;Seine-et-Marne;09;9ème circonscription;5;12;F;WOODS;Florence;25/12/1952;DXG;Ancien employé;Non;F;SURGET;Coralie;21/08/1966;Non +77;Seine-et-Marne;09;9ème circonscription;6;13;M;GEOFFROY;Guy;26/05/1949;LR;Professeur, profession scientifique;Non;F;CHABANON-DEGUELLE;Sophie;02/08/1970;Non +77;Seine-et-Marne;09;9ème circonscription;7;85;F;MAURIZE;Nathalie;03/07/1965;ECO;Ingénieur et cadre technique d'entreprise;Non;F;PILLOUD;Mélanie;18/04/1986;Non +77;Seine-et-Marne;09;9ème circonscription;8;93;M;NOVAIS;Pascal;16/02/1979;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;HEUCLIN;Delphine;03/05/1972;Non +77;Seine-et-Marne;09;9ème circonscription;9;28;F;PEYRON;Michèle;22/07/1961;ENS;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;M;MARCELOT;Hugues;05/05/1980;Non +77;Seine-et-Marne;09;9ème circonscription;10;22;M;SIMONPIETRI;Laurent;01/09/1959;ECO;Ingénieur et cadre technique d'entreprise;Non;F;FUSTÉ;Laurence;06/04/1966;Non +77;Seine-et-Marne;09;9ème circonscription;11;45;M;VANACKER;Morgann;06/01/1994;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;DUMONT;Michel;18/05/1977;Non +77;Seine-et-Marne;09;9ème circonscription;12;26;M;DELALANDRE;Bruno-Charles;13/05/1964;REC;Ouvrier qualifié de type artisanal;Non;M;CORNELOUP;Sylvain;13/07/1964;Non +77;Seine-et-Marne;09;9ème circonscription;13;74;M;VALCIN;Kamal;08/06/1979;DIV;Artisan;Non;M;BEASSE;Axel;05/08/1988;Non +77;Seine-et-Marne;10;10ème circonscription;1;77;M;RUGGERI;Vincent;14/09/1980;ECO;Cadre administratif et commercial d'entreprise;Non;F;RICORDEL;Mélanie;25/07/1994;Non +77;Seine-et-Marne;10;10ème circonscription;2;119;M;KSOUROU;Mohammed;10/11/1955;DIV;Artisan;Non;F;DAOUDI;Sophia;01/07/1981;Non +77;Seine-et-Marne;10;10ème circonscription;3;89;M;LAISNEY;Maxime;19/01/1981;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;DE KERPEL;Céline;18/01/1978;Non +77;Seine-et-Marne;10;10ème circonscription;4;96;M;HENNEBELLE;Olivier;11/05/1979;ECO;Profession libérale;Non;F;STOCKER;Martine;09/10/1951;Non +77;Seine-et-Marne;10;10ème circonscription;5;83;M;DERVAUX;Philippe;03/09/1969;REC;Profession intermédiaire administrative de la fonction publique;Non;F;LACOSTE;Christiane;08/01/1954;Non +77;Seine-et-Marne;10;10ème circonscription;6;7;F;FRANCISCO;Cathy;20/11/1973;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;DARAKHSHANFAR;Homan;11/03/1970;Non +77;Seine-et-Marne;10;10ème circonscription;7;58;M;DE SOUSA;Olivier;11/07/1976;DIV;Ingénieur et cadre technique d'entreprise;Non;F;PEREIRA;Cassandra;26/03/2002;Non +77;Seine-et-Marne;10;10ème circonscription;8;86;F;CAILLIS-BRANDL;Ingrid;09/11/1972;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;COLAS;Michel;05/06/1965;Non +77;Seine-et-Marne;10;10ème circonscription;9;54;M;BOUIS;Alain;26/02/1949;DSV;Ancien employé;Non;F;BRINON;Annette;23/01/1950;Non +77;Seine-et-Marne;10;10ème circonscription;10;50;M;CAYARD;Sylvain;09/08/1987;DXG;Technicien;Non;F;ROSE;Myriam;23/02/1969;Non +77;Seine-et-Marne;10;10ème circonscription;11;16;F;DO;Stéphanie;20/12/1979;ENS;Cadre de la fonction publique;Oui;M;KELYOR;Alain;09/07/1943;Non +77;Seine-et-Marne;11;11ème circonscription;1;79;M;SANGARÉ;Joël;29/06/1989;UDI;Profession libérale;Non;F;PÉRIGAUD;Clotilde;30/05/1972;Non +77;Seine-et-Marne;11;11ème circonscription;2;2;F;DEMONCHY;Martine;27/10/1960;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;DE AZEVEDO;Steven;05/12/2003;Non +77;Seine-et-Marne;11;11ème circonscription;3;31;F;MOREL-LELU;Sylvie;19/03/1957;ECO;Profession libérale;Non;F;HERVY;Brigitte;02/02/1955;Non +77;Seine-et-Marne;11;11ème circonscription;4;20;F;LAPEYRONIE;Brigitte;25/09/1968;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;HADJADJ;Régis;02/03/1971;Non +77;Seine-et-Marne;11;11ème circonscription;5;55;F;DE LA TORRE;Anne;09/04/1965;DXG;Technicien;Non;M;GILLARD;Hugues;24/03/1964;Non +77;Seine-et-Marne;11;11ème circonscription;6;117;F;PÉCULIER;Charlyne;07/08/1997;ENS;Cadre de la fonction publique;Non;F;DIOP;Nadia;08/11/1970;Non +77;Seine-et-Marne;11;11ème circonscription;7;66;M;FAURE;Olivier;18/08/1968;NUPES;Cadre administratif et commercial d'entreprise;Oui;F;MARCHETTI;Xaviera;25/04/1979;Non +77;Seine-et-Marne;11;11ème circonscription;8;98;F;MARQUE GRAS;Evelyne;14/04/1958;DSV;Ancien cadre;Non;M;SAADI;Marc;04/02/1957;Non +78;Yvelines;01;1ère circonscription;1;45;F;TROCHU;Laurence;04/07/1973;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DES MONSTIERS;Charles;09/07/1969;Non +78;Yvelines;01;1ère circonscription;2;46;M;LEROUX;Jean-Loup;28/07/1976;DXG;Ingénieur et cadre technique d'entreprise;Non;F;HESSE;Laurence;11/02/1966;Non +78;Yvelines;01;1ère circonscription;3;78;F;KAMENI;Iphigénie;16/05/1968;DVD;Commerçant et assimilé;Non;M;PINAUD;Thierry;21/09/1960;Non +78;Yvelines;01;1ère circonscription;4;120;M;AUGER;Christophe;23/01/1973;DXG;Contremaître, agent de maîtrise;Non;F;DEVAUX;Catherine;20/12/1960;Non +78;Yvelines;01;1ère circonscription;5;123;F;JEGOU;Sylvie;12/03/1963;DSV;Ancienne profession intermédiaire;Non;M;ACHARD;Alexandre;14/01/1999;Non +78;Yvelines;01;1ère circonscription;6;77;M;RODWELL;Charles;26/07/1996;ENS;Cadre de la fonction publique;Non;F;BOULARAN;Laurence;16/08/1958;Non +78;Yvelines;01;1ère circonscription;7;3;F;JACQMIN;Anne;18/12/1970;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;GOLLNISCH;Bruno;28/01/1950;Non +78;Yvelines;01;1ère circonscription;8;79;M;RAMAGE;Sébastien;05/11/1991;NUPES;Employé de commerce;Non;F;BONNEFOND;Muriel;21/11/1961;Non +78;Yvelines;01;1ère circonscription;9;2;F;GRESPIER;Margaux-Charlotte;08/04/1987;ECO;Employé administratif d'entreprise;Non;M;GRESPIER;Michel;11/08/1958;Non +78;Yvelines;01;1ère circonscription;10;47;M;DE LA FAIRE;Olivier;25/04/1970;LR;Cadre de la fonction publique;Non;F;LOGANADANE;Devi;23/07/1971;Non +78;Yvelines;02;2ème circonscription;1;111;M;BIZET;Jérémy;28/02/1989;ECO;Ingénieur et cadre technique d'entreprise;Non;M;JULIEN-LABRUYERE;Dominique;16/03/1942;Non +78;Yvelines;02;2ème circonscription;2;5;M;BRAULT;Gaëtan;03/05/1989;RN;Contremaître, agent de maîtrise;Non;M;LAPOUX;Xavier;03/08/1972;Non +78;Yvelines;02;2ème circonscription;3;4;F;JULLIÉ;Céline;06/01/1975;REC;Professeur des écoles, instituteur et assimilé;Non;M;LESECQ;François;11/10/1971;Non +78;Yvelines;02;2ème circonscription;4;106;F;FERRÉ;Clara;21/09/1998;ECO;Elève, étudiant;Non;F;ALLIÈSE;Florence;27/12/1988;Non +78;Yvelines;02;2ème circonscription;5;48;M;CASIMIR-PERRIER;Pascal;17/06/1971;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;DOUAREC;Erwann;15/12/1971;Non +78;Yvelines;02;2ème circonscription;6;6;F;JANISSET;Hélène;11/01/1957;DXG;Ancien employé;Non;M;LARROUY;Daniel;05/08/1969;Non +78;Yvelines;02;2ème circonscription;7;49;M;THÉVENOT;Pascal;03/06/1966;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;DOUCERAIN;Caroline;05/04/1976;Non +78;Yvelines;02;2ème circonscription;8;126;F;WAWSZCZYK;Isabelle;02/04/1965;DSV;Professeur des écoles, instituteur et assimilé;Non;M;CHAUVEAU;Philippe;28/03/1960;Non +78;Yvelines;02;2ème circonscription;9;42;F;CARRIVE-BEDOUANI;Maïté;13/01/1963;NUPES;Professeur, profession scientifique;Non;M;ORSOLIN;Hugues;13/06/1972;Non +78;Yvelines;02;2ème circonscription;10;132;M;BOROCCO;Matthieu;09/11/1984;DIV;Ingénieur et cadre technique d'entreprise;Non;M;MORY;Adam;15/01/1992;Non +78;Yvelines;02;2ème circonscription;11;96;M;BARROT;Jean-Noël;13/05/1983;ENS;Professeur, profession scientifique;Oui;F;GRIGNON;Anne;16/05/1977;Non +78;Yvelines;03;3ème circonscription;1;50;M;COQUARD;Bertrand;26/02/1971;UDI;Cadre administratif et commercial d'entreprise;Non;F;D'ESTEVE;Sylvie;07/12/1953;Non +78;Yvelines;03;3ème circonscription;2;8;M;DESCHAMPS;Lionel;20/03/1977;ECO;Ingénieur et cadre technique d'entreprise;Non;F;FEUGUEUR;Morgane;11/09/1999;Non +78;Yvelines;03;3ème circonscription;3;131;F;ASLAN;Ayse;23/11/1984;DSV;Cadre administratif et commercial d'entreprise;Non;F;MOREL;Carla;28/07/1999;Non +78;Yvelines;03;3ème circonscription;4;119;F;PIRON;Béatrice;30/08/1965;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;M;SÉVELY;Marc;26/09/1980;Non +78;Yvelines;03;3ème circonscription;5;122;F;NIEBEL;Caroline;10/11/1975;DVD;Cadre de la fonction publique;Non;M;PERIGORD;Romain;26/04/1976;Non +78;Yvelines;03;3ème circonscription;6;51;F;GUIGARD;Isabelle;09/12/1950;ECO;Ancien cadre;Non;F;GUEROULT;Agnès;19/01/1949;Non +78;Yvelines;03;3ème circonscription;7;10;M;CUIGNET;Jean-François;10/02/1967;REC;Cadre administratif et commercial d'entreprise;Non;F;CORNU-DUTRÉVY;Valérie;28/02/1971;Non +78;Yvelines;03;3ème circonscription;8;7;M;PINCHAUX;Pierre-Yves;09/02/1954;RN;Ancien cadre;Non;F;BARBEROT;Peggy;25/04/1978;Non +78;Yvelines;03;3ème circonscription;9;9;M;AUGUSTIN;Olivier;04/11/1963;DXG;Ouvrier qualifié de type industriel;Non;M;BASTONG;Jérôme;21/06/1974;Non +78;Yvelines;03;3ème circonscription;10;80;F;BRODY;Louise;06/02/1995;NUPES;Employé civil et agent de service de la fonction publique;Non;M;HUE;Nicolas;10/03/1972;Non +78;Yvelines;04;4ème circonscription;1;55;M;CANEPARO;Bruno;23/10/1955;DVD;Profession libérale;Non;M;CONNOIS;Marc;02/12/1964;Non +78;Yvelines;04;4ème circonscription;2;13;F;RATIVET;Bénédicte;19/05/1974;REC;Profession libérale;Non;F;CERVIA GALOPHE;Valérie;18/06/1961;Non +78;Yvelines;04;4ème circonscription;3;56;F;LEBEC;Marie;17/12/1990;ENS;Cadre administratif et commercial d'entreprise;Oui;M;BERNAERT;Denis;01/05/1964;Non +78;Yvelines;04;4ème circonscription;4;12;F;LELANDAIS;Sophie;20/01/1969;RN;Employé administratif d'entreprise;Non;M;PALIX;Didier;21/02/1958;Non +78;Yvelines;04;4ème circonscription;5;98;M;CONSIGNY;Charles;14/07/1989;LR;Profession libérale;Non;M;BABINET;Mathieu;22/10/1999;Non +78;Yvelines;04;4ème circonscription;6;14;M;MAUREL;Franck;09/03/1964;DXG;Ingénieur et cadre technique d'entreprise;Non;M;MAURICE;Jean-Pierre;08/04/1958;Non +78;Yvelines;04;4ème circonscription;7;11;F;RICHARD-DESOUBEAUX;Chloé;06/06/1989;ECO;Cadre de la fonction publique;Non;F;THIEBAUD-TEXEREAU;Virginie;29/03/1958;Non +78;Yvelines;04;4ème circonscription;8;97;F;BOURDON;Céline;09/11/1990;NUPES;Technicien;Non;M;MOUTAOUKIL-KERLERO;Hadrien;05/02/1994;Non +78;Yvelines;04;4ème circonscription;9;113;F;ZANATTA;Céline;24/02/1979;DIV;Cadre administratif et commercial d'entreprise;Non;M;ORSONI;Florent;17/12/1991;Non +78;Yvelines;05;5ème circonscription;1;53;F;ANDROUËT;Mathilde;03/07/1984;RN;Cadre de la fonction publique;Non;M;BERTIN;Nathan;29/12/2002;Non +78;Yvelines;05;5ème circonscription;2;52;M;BRINGUIER;Maxence;03/06/1995;REC;Profession libérale;Non;F;COLNAGHI;Christelle;06/08/1963;Non +78;Yvelines;05;5ème circonscription;3;93;F;DUBLANCHE;Alexandra;25/04/1982;LR;Chef d'entreprise de 10 salariés ou plus;Non;M;MOURGUES;Charles-Philippe;22/09/1979;Non +78;Yvelines;05;5ème circonscription;4;107;F;LAGRANGE;Diane;20/06/1981;DVG;Cadre administratif et commercial d'entreprise;Non;M;MAREC;Stéphane;25/09/1972;Non +78;Yvelines;05;5ème circonscription;5;15;M;LÉPICIER;Alain;14/08/1962;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;VILACA;Jean;20/10/1972;Non +78;Yvelines;05;5ème circonscription;6;54;F;THEVENET;Sophie;06/11/1960;NUPES;Cadre administratif et commercial d'entreprise;Non;M;MENDIHARAT;Martin;15/09/1996;Non +78;Yvelines;05;5ème circonscription;7;112;F;BRAUN-PIVET;Yaël;07/12/1970;ENS;Profession libérale;Oui;M;DOS REIS;Gabriel;14/12/1995;Non +78;Yvelines;05;5ème circonscription;8;124;F;THEROND KERAUDREN;Amélie;13/05/1980;DVD;Profession libérale;Non;M;ROY;Pascal;25/10/1963;Non +78;Yvelines;05;5ème circonscription;9;16;M;DENÉ;Jean-Luc;14/08/1962;ECO;Ingénieur et cadre technique d'entreprise;Non;F;BRASSEUR;Dominique;24/08/1963;Non +78;Yvelines;05;5ème circonscription;10;116;F;VOISIN;Katia;17/05/1975;DSV;Profession libérale;Non;M;LAVIGNE;Nolan;19/04/1994;Non +78;Yvelines;06;6ème circonscription;1;100;F;SAUGER;Mélinda;31/03/1981;NUPES;Professeur, profession scientifique;Non;M;VALBERT;Loïc;15/09/1995;Non +78;Yvelines;06;6ème circonscription;2;118;M;VERILHAC;Julian;13/05/1999;DIV;Elève, étudiant;Non;M;MOUHARTEM;Fabrice;28/11/1992;Non +78;Yvelines;06;6ème circonscription;3;18;M;DE MONTBRIAL;Thibault;01/09/1968;LR;Profession libérale;Non;F;BOUYSSOU;Marie-Agnès;31/12/1970;Non +78;Yvelines;06;6ème circonscription;4;108;F;PERRAUDIN;Cécile;06/06/1987;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;DARSY;Marc;11/02/1968;Non +78;Yvelines;06;6ème circonscription;5;81;F;LEMIERE;Bénédicte;22/06/1968;DIV;Cadre administratif et commercial d'entreprise;Non;M;DAL MOLIN;Edward;30/12/1991;Non +78;Yvelines;06;6ème circonscription;6;58;F;POUZYREFF;Natalia;18/02/1961;ENS;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;M;BOVIS;Pierre-Henry;31/10/1992;Non +78;Yvelines;06;6ème circonscription;7;17;F;MACEDO DE SOUZA;Maria;13/09/1955;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;QUENTIN;David;11/06/1996;Non +78;Yvelines;06;6ème circonscription;8;59;M;SUZÉ;Jean-Luc;06/04/1979;ECO;Professeur, profession scientifique;Non;M;LÉAL;Kévin;12/02/1993;Non +78;Yvelines;06;6ème circonscription;9;99;M;BOUCHER;Stéphane;26/11/1965;REC;Cadre administratif et commercial d'entreprise;Non;F;GRIMMER;Odile;07/03/1968;Non +78;Yvelines;06;6ème circonscription;10;57;F;ONOFRI;Catherine;03/07/1971;DSV;Profession de l'information, des arts et des spectacles;Non;M;VOISIN;Stéphane;19/03/1971;Non +78;Yvelines;07;7ème circonscription;1;19;F;HAI;Nadia;08/03/1980;ENS;Cadre administratif et commercial d'entreprise;Non;M;LITTIERE;Mickaël;12/12/1979;Non +78;Yvelines;07;7ème circonscription;2;109;M;BORIE;Jacques;14/05/1965;ECO;Profession libérale;Non;F;ARTHUR;Françoise;26/10/1964;Non +78;Yvelines;07;7ème circonscription;3;121;M;ABOUHAMDA;Fouad;14/12/1973;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;DORGHAL;Leïla;02/11/2003;Non +78;Yvelines;07;7ème circonscription;4;60;F;DIDIERJEAN;Christèle;10/11/1978;REC;Commerçant et assimilé;Non;M;LE FORESTIER;Valentin;12/12/1994;Non +78;Yvelines;07;7ème circonscription;5;22;F;JOMBART;Christiane;29/05/1985;REC;Contremaître, agent de maîtrise;Non;M;JOMBART;Patrice;28/03/1968;Non +78;Yvelines;07;7ème circonscription;6;21;F;FORTIN;Emmanuelle;02/09/1963;RN;Cadre administratif et commercial d'entreprise;Non;M;COLLIN;Thierry;12/03/1967;Non +78;Yvelines;07;7ème circonscription;7;101;F;CHRISTOPHOUL;Michèle;30/05/1951;NUPES;Ancien cadre;Non;M;GARCIA;Alexandre;16/04/1990;Non +78;Yvelines;07;7ème circonscription;8;127;F;KATUSEVANAKO;Rithe;15/01/1994;DSV;Cadre administratif et commercial d'entreprise;Non;M;CASTILLO;Thomas;16/10/1993;Non +78;Yvelines;07;7ème circonscription;9;20;M;BROSSE;Laurent;25/10/1985;DVD;Profession libérale;Non;F;LE BLAY;Myriam;06/05/1969;Non +78;Yvelines;07;7ème circonscription;10;23;M;KAYA;Ali;10/12/1969;DXG;Ouvrier qualifié de type industriel;Non;F;GELVEZ;Olga;08/05/1964;Non +78;Yvelines;07;7ème circonscription;11;110;M;PLANCOULAINE;Pierre;14/03/1970;ECO;Professeur, profession scientifique;Non;F;GAUCHER;Florence;17/04/1973;Non +78;Yvelines;07;7ème circonscription;12;94;M;VINCENT;Rémi;21/06/1978;DIV;Profession libérale;Non;M;GUILLOU;Michel;17/04/1948;Non +78;Yvelines;07;7ème circonscription;13;43;M;JANVIER;Frédéric;06/02/1965;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;TEXIER;Sandra;09/10/1970;Non +78;Yvelines;08;8ème circonscription;1;117;F;BEKONO;Mélanie;12/09/1974;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LE THIERRY D'ENNEQUIN;Yann;22/11/1972;Non +78;Yvelines;08;8ème circonscription;2;63;M;PRÉAU;Jean-Marwaan;20/07/1962;DIV;Professeur, profession scientifique;Non;F;EL AMERANY;Halima;05/03/1971;Non +78;Yvelines;08;8ème circonscription;3;24;M;NAUTH;Cyril;19/12/1981;RN;Professeur, profession scientifique;Non;F;FÜHRER-MOGUEROU;Monique;06/06/1944;Non +78;Yvelines;08;8ème circonscription;4;86;M;KOSSOKO;Bernard;25/09/1969;DIV;Cadre administratif et commercial d'entreprise;Non;F;EL ASRI;Sabah;03/07/1979;Non +78;Yvelines;08;8ème circonscription;5;84;F;SICARD;Anne;15/06/1967;REC;Professeur, profession scientifique;Non;M;ALLART;Geoffrey;27/04/1991;Non +78;Yvelines;08;8ème circonscription;6;62;M;LUCAS;Benjamin;08/10/1990;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;SAKAT;Kanza;11/02/1974;Non +78;Yvelines;08;8ème circonscription;7;85;F;HERVIEUX;Edwige;29/12/1980;ENS;Cadre administratif et commercial d'entreprise;Non;M;DUPRAT;Sébastien;12/05/1975;Non +78;Yvelines;08;8ème circonscription;8;91;M;BLAISE;François;09/03/1982;ECO;Cadre de la fonction publique;Non;F;DUVAL;Fernande;26/04/1965;Non +78;Yvelines;08;8ème circonscription;9;82;M;LEFEBVRE;Jack;04/09/1954;DXG;Ancien cadre;Non;F;ANDRÉ;Juliette;07/10/1991;Non +78;Yvelines;08;8ème circonscription;10;83;M;VIALAY;Michel;06/01/1960;LR;Cadre administratif et commercial d'entreprise;Oui;M;JEANNE;Stéphane;08/11/1959;Non +78;Yvelines;08;8ème circonscription;11;61;M;GONNOT;Thierry;23/04/1963;DXG;Ouvrier qualifié de type industriel;Non;M;THÉVIN;Jean-Claude;24/06/1966;Non +78;Yvelines;09;9ème circonscription;1;102;M;MARTIN;Dominique;04/01/1957;DXG;Ancienne profession intermédiaire;Non;F;DE SOUSA;Claudia;12/05/1982;Non +78;Yvelines;09;9ème circonscription;2;28;M;LE HOT;Christophe;12/02/1966;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;LOUPMON;Audrey;29/08/1987;Non +78;Yvelines;09;9ème circonscription;3;115;F;CZAP;Aïda;13/10/1999;ECO;Elève, étudiant;Non;F;CZAP;Manon;28/09/1989;Non +78;Yvelines;09;9ème circonscription;4;26;M;ETTORI;Magà;15/02/1972;ECO;Profession de l'information, des arts et des spectacles;Non;F;HAMDOUCHY;Sonia;21/07/1980;Non +78;Yvelines;09;9ème circonscription;5;95;F;DE ROZIERES;Babette;27/05/1946;DVD;Ancien artisan, commerçant, chef d'entreprise;Non;M;DEVERS;Jérémy;23/06/1983;Non +78;Yvelines;09;9ème circonscription;6;27;M;GOMMARD;Philippe;02/07/1961;DXG;Ancien ouvrier;Non;F;BELGADI;Najette;28/04/1985;Non +78;Yvelines;09;9ème circonscription;7;125;F;LEVRARD;Marion Sabine;21/02/1980;DIV;Cadre administratif et commercial d'entreprise;Non;M;DE MAEYER;Arnaud;28/12/1972;Non +78;Yvelines;09;9ème circonscription;8;25;M;MORIN;Laurent;11/05/1976;RN;Chef d'entreprise de 10 salariés ou plus;Non;F;OFFROY;Mélanie;22/01/1981;Non +78;Yvelines;09;9ème circonscription;9;68;M;MILLIENNE;Bruno;28/11/1959;ENS;Cadre administratif et commercial d'entreprise;Oui;F;AUFFRET;Gaëlle;04/04/1975;Non +78;Yvelines;09;9ème circonscription;10;128;F;IHIA;Aïcha;27/04/1974;DIV;Employé administratif d'entreprise;Non;M;BOULAIFA;Houssen;02/06/1994;Non +78;Yvelines;09;9ème circonscription;11;64;M;ZEROUALI;Rachid;28/05/1971;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;VILLETTE;Valérie Christine;20/07/1972;Non +78;Yvelines;09;9ème circonscription;12;65;F;LAMIR;Fatma;29/11/1979;DVD;Professeur des écoles, instituteur et assimilé;Non;F;MENDY;N'Gricia;30/07/1979;Non +78;Yvelines;09;9ème circonscription;13;66;F;WINOCOUR LEFEVRE;Pauline;25/11/1978;LR;Professeur, profession scientifique;Non;M;KOKELKA;Jean-Luc;02/02/1960;Non +78;Yvelines;09;9ème circonscription;14;67;M;PAILHAC;Victor;30/09/2001;NUPES;Elève, étudiant;Non;F;OKMEN;Gina;03/09/1994;Non +78;Yvelines;10;10ème circonscription;1;31;F;CABRIT;Anne;01/06/1970;LR;Ancien cadre;Non;M;DUTAT;Emmanuel;07/10/1969;Non +78;Yvelines;10;10ème circonscription;2;72;F;COUEIGNAS;Claire;05/04/1956;DSV;Ancien cadre;Non;M;ESKÉNAZI;Thomas;07/04/1997;Non +78;Yvelines;10;10ème circonscription;3;29;M;DU CHALARD;Thomas;20/12/1984;RN;Cadre de la fonction publique;Non;M;FONTAINE;Olivier;10/03/1975;Non +78;Yvelines;10;10ème circonscription;4;70;M;JACONO;Patrice;01/04/1946;ECO;Ancien cadre;Non;M;GUIGARD;Philippe;30/07/1947;Non +78;Yvelines;10;10ème circonscription;5;32;M;CHEVRIER;Philippe;09/06/1950;REC;Ancien cadre;Non;M;TEXIER;Vincent;03/12/1985;Non +78;Yvelines;10;10ème circonscription;6;71;M;BIZIEN;Michel;31/03/1950;DXG;Professeur, profession scientifique;Non;F;BAVAGE;Victoria;07/07/1966;Non +78;Yvelines;10;10ème circonscription;7;30;F;BOGAERS;Sylvie Michelle;21/04/1961;ECO;Ancien employé;Non;F;JARDIN;Patricia;18/11/1960;Non +78;Yvelines;10;10ème circonscription;8;92;F;SAULNIER;Marielle;23/07/1968;DXG;Profession intermédiaire de la santé et du travail social;Non;M;OUDOT;Marc;08/05/1979;Non +78;Yvelines;10;10ème circonscription;9;103;M;BRIOLAIS;Cédric;28/01/1980;NUPES;Employé civil et agent de service de la fonction publique;Non;F;LASSERRE;Catherine;23/05/1963;Non +78;Yvelines;10;10ème circonscription;10;69;F;BERGÉ;Aurore;13/11/1986;ENS;Cadre de la fonction publique;Oui;M;EMMANUEL;Philippe;08/06/1960;Non +78;Yvelines;11;11ème circonscription;1;38;M;GALLANT;Olivier;02/04/1967;DSV;Cadre administratif et commercial d'entreprise;Non;F;GENTELLE-GIRY;Stéphanie;19/11/1972;Non +78;Yvelines;11;11ème circonscription;2;34;F;PIACENZA;Aurélie;09/04/1980;ENS;Cadre administratif et commercial d'entreprise;Non;M;GAULTIER;Bruno;28/05/1961;Non +78;Yvelines;11;11ème circonscription;3;73;M;MAÏZA;Raouf;12/05/1976;DIV;Artisan;Non;F;ILAUO;Jeanne;03/09/1984;Non +78;Yvelines;11;11ème circonscription;4;33;M;AUBIN;Christophe;16/04/1974;ECO;Policier et militaire;Non;F;ABDOUL DENOO;Louise;13/03/1989;Non +78;Yvelines;11;11ème circonscription;5;36;M;MARTINET;William;06/09/1988;NUPES;Cadre administratif et commercial d'entreprise;Non;F;PERROTIN-RAUFASTE;Catherine;06/06/1959;Non +78;Yvelines;11;11ème circonscription;6;39;M;PLANQUE;Patrick;21/02/1968;DXG;Ouvrier qualifié de type industriel;Non;F;ÉGASSE;Christine;15/07/1952;Non +78;Yvelines;11;11ème circonscription;7;35;F;CHABANET;Sophie;20/01/1966;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BARBEROT;Maurice;03/10/1941;Non +78;Yvelines;11;11ème circonscription;8;105;M;DELEFOSSE;Aymeric;16/05/1997;DIV;Elève, étudiant;Non;M;DURRIEUX;Romain;11/06/1980;Non +78;Yvelines;11;11ème circonscription;9;114;M;TRAMONI;Jean-Luc;01/04/1958;ECO;Profession libérale;Non;F;LANTOINE;Christelle;24/08/1971;Non +78;Yvelines;11;11ème circonscription;10;74;M;BENASSAYA;Philippe;04/08/1964;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;DAINVILLE;Nicolas;21/09/1986;Non +78;Yvelines;11;11ème circonscription;11;37;M;ARNAUD;Alexandre;17/07/1985;REC;Cadre administratif et commercial d'entreprise;Non;M;FLEURDEN-BISSIÈRE;Lucas;05/03/2001;Non +78;Yvelines;12;12ème circonscription;1;76;M;MOUTOT;François;20/02/1952;DVD;Ancien cadre;Non;F;GUILLEUX;Adeline;29/01/1983;Non +78;Yvelines;12;12ème circonscription;2;75;M;MERCIER;Jean-Pierre;15/02/1968;DXG;Ouvrier qualifié de type industriel;Non;M;PARENT;Patrice;12/01/1952;Non +78;Yvelines;12;12ème circonscription;3;89;M;CARBONNELLE;Dimitri;08/08/1971;ECO;Commerçant et assimilé;Non;F;DECANTON;Joëlle;06/03/1966;Non +78;Yvelines;12;12ème circonscription;4;129;M;BOUDIAF;Lamine;29/09/1999;DIV;Elève, étudiant;Non;F;HOCINE;Yamina;01/01/1940;Non +78;Yvelines;12;12ème circonscription;5;104;M;LEGRIS;Edwin;20/12/1973;NUPES;Professeur, profession scientifique;Non;M;MARGUERETTAZ;Félicien;31/10/1997;Non +78;Yvelines;12;12ème circonscription;6;90;M;TRAN;Jean-Marc;21/06/1962;DIV;Ingénieur et cadre technique d'entreprise;Non;F;CARLES;Marie-Capucine;22/06/1976;Non +78;Yvelines;12;12ème circonscription;7;130;F;FOURNIÈRE;Isabelle;11/02/1958;ECO;Professeur des écoles, instituteur et assimilé;Non;F;DUPERRET;Claudine;22/02/1959;Non +78;Yvelines;12;12ème circonscription;8;41;M;METTELET;Jean-Louis;19/10/1970;RN;Cadre administratif et commercial d'entreprise;Non;M;FARÉ;Frédéric;18/12/1957;Non +78;Yvelines;12;12ème circonscription;9;44;M;OLIVE;Karl;29/03/1969;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;DEVEZE;Fabienne;26/08/1962;Non +78;Yvelines;12;12ème circonscription;10;40;M;PARANTHOËN;Mathieu;04/07/1987;ECO;Cadre administratif et commercial d'entreprise;Non;F;FALAIZE;Aurore;24/03/1988;Non +78;Yvelines;12;12ème circonscription;11;88;F;CLÉMENT;Sabine;07/10/1965;REC;Commerçant et assimilé;Non;M;JAY;Bruno;08/05/1963;Non +79;Deux-Sèvres;01;1ère circonscription;1;9;M;MARCHIVE;Bastien;15/07/1990;ENS;Cadre administratif et commercial d'entreprise;Non;F;VINATIER;Nathalie;15/04/1967;Non +79;Deux-Sèvres;01;1ère circonscription;2;8;F;BRETHENOUX;Matylde;13/12/1999;REC;Elève, étudiant;Non;M;BRIDONNEAU;Damien;28/08/1997;Non +79;Deux-Sèvres;01;1ère circonscription;3;11;F;VAUZELLE;Danielle;18/09/1947;DXG;Ancien employé;Non;M;MARÉCHAL;Anatole;21/09/1992;Non +79;Deux-Sèvres;01;1ère circonscription;4;21;M;CHICHE;Guillaume;30/03/1986;DVC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;MICOU;Corine;14/11/1963;Non +79;Deux-Sèvres;01;1ère circonscription;5;16;F;CHAMPEAU;Dorothée;09/04/1979;RN;Ouvrier non qualifié de type artisanal;Non;M;KUTTLER;Frédéric;13/06/1977;Non +79;Deux-Sèvres;01;1ère circonscription;6;22;F;MASSON;Geneviève;26/02/1961;ECO;Profession libérale;Non;M;GÉRAUD;Michel;16/12/1957;Non +79;Deux-Sèvres;01;1ère circonscription;7;10;M;CHARRON;François;02/08/1981;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;THOMAS;Ludivine;12/12/1988;Non +79;Deux-Sèvres;01;1ère circonscription;8;7;F;GANIVET;Catherine;02/12/1957;UDI;Commerçant et assimilé;Non;F;AUGÉ;Catherine;07/08/1965;Non +79;Deux-Sèvres;02;2ème circonscription;1;19;M;JOSEPH;Gaël;01/01/1995;DVG;Cadre de la fonction publique;Non;F;BRILLAUD;Chantal;24/11/1960;Non +79;Deux-Sèvres;02;2ème circonscription;2;12;M;SAINTY;Roland;08/09/1977;REC;Profession intermédiaire de la santé et du travail social;Non;M;GARRIGA;Alain;26/05/1967;Non +79;Deux-Sèvres;02;2ème circonscription;3;20;F;BAUDREZ;Emilie;28/02/1982;LR;Employé administratif d'entreprise;Non;M;MARTINEAU;Jean-Yann;26/09/1968;Non +79;Deux-Sèvres;02;2ème circonscription;4;23;F;DUPUY;Valérie;20/09/1972;DSV;Ouvrier non qualifié de type artisanal;Non;F;DECOBERT;Océane;01/09/2002;Non +79;Deux-Sèvres;02;2ème circonscription;5;18;F;BATHO;Delphine;23/03/1973;NUPES;Cadre de la fonction publique;Oui;M;CUBAUD;Olivier;27/04/1966;Non +79;Deux-Sèvres;02;2ème circonscription;6;15;F;REVERS;Carine;20/10/1973;RN;Profession intermédiaire administrative de la fonction publique;Non;M;GIROUX;Stéphane;19/03/1973;Non +79;Deux-Sèvres;02;2ème circonscription;7;17;F;ROCHEFORT;Cécilia;28/07/1969;ENS;Profession de l'information, des arts et des spectacles;Non;M;PICHON;Gilles;13/03/1964;Non +79;Deux-Sèvres;02;2ème circonscription;8;5;M;GORIZZUTTI;Roger;18/02/1956;DXG;Ancienne profession intermédiaire;Non;F;BERNARD;Marie;10/02/2000;Non +79;Deux-Sèvres;03;3ème circonscription;1;6;F;VALLÉE;Maryse;04/04/1955;DXG;Ancien cadre;Non;F;ROBERT;Christine;24/02/1955;Non +79;Deux-Sèvres;03;3ème circonscription;2;24;M;BARBOT;Alexis;01/07/1995;DIV;Ingénieur et cadre technique d'entreprise;Non;F;HERAULT;Claude;28/08/1967;Non +79;Deux-Sèvres;03;3ème circonscription;3;2;M;FAIVRE;Gerard;09/07/1955;REC;Ancien cadre;Non;M;MOUNIER;Aimé;21/12/1995;Non +79;Deux-Sèvres;03;3ème circonscription;4;13;F;WOILLEZ;Juliette;07/11/1980;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;URBAIN;Axel;26/11/1999;Non +79;Deux-Sèvres;03;3ème circonscription;5;14;M;GUIBERT;Olivier;24/07/1967;RN;Commerçant et assimilé;Non;F;COURTOIS;Maryline;07/10/1967;Non +79;Deux-Sèvres;03;3ème circonscription;6;4;M;FIÉVET;Jean-Marie;19/06/1964;ENS;Employé civil et agent de service de la fonction publique;Oui;F;PINEAU;Caroline;25/01/1993;Non +79;Deux-Sèvres;03;3ème circonscription;7;3;M;ROBIN;Philippe;05/01/1957;LR;Ancien cadre;Non;F;MAHIET-LUCAS;Esther;20/02/1954;Non +80;Somme;01;1ère circonscription;1;13;F;ROY;Mathilde;15/02/1960;LR;Cadre administratif et commercial d'entreprise;Non;M;LEPAGE;Michel;16/03/1971;Non +80;Somme;01;1ère circonscription;2;34;M;RIFFLART;Pascal;25/04/1957;ENS;Profession libérale;Non;F;ANDASMAS;Farida;01/07/1972;Non +80;Somme;01;1ère circonscription;3;45;M;FRADCOURT;Pascal;06/04/1960;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;MERAOUMIA;Marien;14/05/1973;Non +80;Somme;01;1ère circonscription;4;32;M;BOXOËN;Noé;25/10/1999;DSV;Agriculteur sur moyenne exploitation;Non;F;BELLANGER;Sandrine;20/12/1970;Non +80;Somme;01;1ère circonscription;5;33;M;SCRIBE;Pascal;18/03/1965;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;LEROUX;Pascal;16/11/1964;Non +80;Somme;01;1ère circonscription;6;22;F;RIBEIRO-BILLET;Nathalie;11/12/1990;RN;Employé administratif d'entreprise;Non;F;LOIR;Sabine;27/04/1972;Non +80;Somme;01;1ère circonscription;7;6;M;BAUDRY;Jean-Patrick;30/10/1980;DXG;Professeur, profession scientifique;Non;M;GAMBET;Jean-Luc;18/12/1963;Non +80;Somme;01;1ère circonscription;8;17;M;VANDEPLASSCHE;Thierry;02/11/1967;ECO;Contremaître, agent de maîtrise;Non;F;LESCOAT;Laurence;01/11/1967;Non +80;Somme;01;1ère circonscription;9;26;M;RUFFIN;François;18/10/1975;NUPES;Profession de l'information, des arts et des spectacles;Oui;F;MATBOUA;Hayat;15/02/1978;Non +80;Somme;02;2ème circonscription;1;2;F;REITZMAN;Dominique;24/06/1952;DXG;Ancienne profession intermédiaire;Non;M;DENOIRJEAN;Thomas;06/05/1994;Non +80;Somme;02;2ème circonscription;2;40;M;CARON;Aurélien;22/06/1990;DVD;Cadre de la fonction publique;Non;F;HAMADI;Sonia;22/06/1964;Non +80;Somme;02;2ème circonscription;3;46;M;BOREL;Bernard;22/06/1962;DVD;Commerçant et assimilé;Non;M;DESACHY;Jean-Marie;26/03/1947;Non +80;Somme;02;2ème circonscription;4;12;F;SOYER;Aurélie;04/07/1979;REC;Artisan;Non;M;TUAHIVA;Eric;20/04/1960;Non +80;Somme;02;2ème circonscription;5;39;F;L'AMINOT;Sandrine;29/08/1977;ECO;Cadre de la fonction publique;Non;F;BOURGEOIS;Claudine;08/07/1954;Non +80;Somme;02;2ème circonscription;6;21;F;HERMANS;Nadia;10/11/1957;RN;Ancien cadre;Non;F;DEBUICHE;Delphine;23/01/1975;Non +80;Somme;02;2ème circonscription;7;38;F;DEVAUX;Valérie;19/06/1964;UDI;Professeur, profession scientifique;Non;M;SAVREUX;Pierre;22/04/1983;Non +80;Somme;02;2ème circonscription;8;5;M;PALENI;Bruno;27/02/1962;DXG;Professeur, profession scientifique;Non;M;PAUCHET;Kevin;14/02/1991;Non +80;Somme;02;2ème circonscription;9;24;F;POMPILI;Barbara;13/06/1975;ENS;Employé civil et agent de service de la fonction publique;Non;F;DORDAIN-SAINT;Ingrid;18/03/1978;Non +80;Somme;02;2ème circonscription;10;35;F;HAMDANE;Zahia;14/05/1965;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;VINCENT;Laure;08/12/1974;Non +80;Somme;03;3ème circonscription;1;15;M;DEVAUX;Frédéric;18/08/1968;ECO;Technicien;Non;M;COMYN;Olivier;05/05/1971;Non +80;Somme;03;3ème circonscription;2;48;F;MASSONNEAU;Marine;17/02/1969;DVC;Employé administratif d'entreprise;Non;M;JOLIBOIS;Cédric;16/02/1982;Non +80;Somme;03;3ème circonscription;3;9;M;MONGIN;David;03/02/1974;DXG;Profession libérale;Non;M;CAHILL;Daniel;27/07/1961;Non +80;Somme;03;3ème circonscription;4;20;M;LOTTIN;Nicolas;03/09/1961;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;CORROYER;Sylvie;09/09/1963;Non +80;Somme;03;3ème circonscription;5;8;M;MIRAMONT;François;14/06/1969;REC;Profession libérale;Non;M;MACHU;Jean-Philippe;30/08/1969;Non +80;Somme;03;3ème circonscription;6;43;F;FINEL;Marianne;29/01/1985;DVG;Cadre administratif et commercial d'entreprise;Non;M;SPINELLI;Olivier;09/04/1965;Non +80;Somme;03;3ème circonscription;7;30;M;PETIT;Arnaud;14/09/1976;NUPES;Ouvrier qualifié de type industriel;Non;F;MASSALON;Catherine;10/01/1969;Non +80;Somme;03;3ème circonscription;8;3;M;VALET;Michel;02/04/1956;DXG;Ancien employé;Non;F;ACOULON;Elise;07/10/1958;Non +80;Somme;03;3ème circonscription;9;25;F;BRANLANT;Albane;04/11/1996;ENS;Profession intermédiaire administrative et commerciale des entreprises;Non;M;MACHAT;Jean-Marie;02/09/1954;Non +80;Somme;03;3ème circonscription;10;42;F;PONSARD;Anabelle;18/05/1965;DSV;Commerçant et assimilé;Non;M;LEMERCIER;Théo;11/07/2000;Non +80;Somme;03;3ème circonscription;11;28;M;MAQUET;Emmanuel;02/06/1968;LR;Cadre administratif et commercial d'entreprise;Oui;F;POUPART;Patricia;28/11/1965;Non +80;Somme;04;4ème circonscription;1;29;F;DELGOVE;Rachèle;03/05/1988;DSV;Artisan;Non;F;DUCELLIER;Elodie;12/01/1980;Non +80;Somme;04;4ème circonscription;2;36;F;HÉREN;Elodie;10/04/1976;NUPES;Cadre de la fonction publique;Non;M;RÉMY;Claude;01/05/1958;Non +80;Somme;04;4ème circonscription;3;27;M;LECLABART;Jean-Claude;04/12/1954;ENS;Ancien agriculteur exploitant;Oui;F;BEYLIER;Dominique;04/02/1957;Non +80;Somme;04;4ème circonscription;4;31;M;JACQUES;Vincent;11/12/1981;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;MOUTON;Valérie;22/09/1969;Non +80;Somme;04;4ème circonscription;5;41;M;TANGUY;Jean-Philippe;25/03/1986;RN;Cadre administratif et commercial d'entreprise;Non;M;THÉVENIAUD;Philippe;14/08/1961;Non +80;Somme;04;4ème circonscription;6;44;M;SERREAU;Dany;04/08/1992;ECO;Professeur des écoles, instituteur et assimilé;Non;F;CHENARD;Aline;26/07/1964;Non +80;Somme;04;4ème circonscription;7;10;M;MAGUIN;Jacques;25/08/1958;REC;Ancien cadre;Non;M;JESU;Xavier;18/05/1959;Non +80;Somme;04;4ème circonscription;8;7;M;VITOUX;Guy;09/03/1954;DXG;Ancien ouvrier;Non;M;MAURICE;Pascal;03/08/1958;Non +80;Somme;04;4ème circonscription;9;18;M;MAKOWSKI;Adam;14/08/1962;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DAULLÉ;Gérard;02/11/1969;Non +80;Somme;05;5ème circonscription;1;14;M;BEAUVARLET;Laurent;20/10/1962;REC;Professeur, profession scientifique;Non;M;GAJEWSKI;Thomas;22/09/1982;Non +80;Somme;05;5ème circonscription;2;19;F;MENACHE;Yael;12/05/1985;RN;Cadre administratif et commercial d'entreprise;Non;F;WALBECQ;Françoise;30/04/1953;Non +80;Somme;05;5ème circonscription;3;23;M;ANCELET;Guillaume;23/02/1983;NUPES;Professeur, profession scientifique;Non;F;KUMM;Valérie;02/11/1967;Non +80;Somme;05;5ème circonscription;4;47;F;LEGOT;Sabine;28/01/1963;DSV;Profession intermédiaire administrative de la fonction publique;Non;M;SOULEYRE;Rémy;29/03/1976;Non +80;Somme;05;5ème circonscription;5;16;M;GRÉBIL;Claude;23/12/1952;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;M;DOPRÉ;Michel;19/11/1956;Non +80;Somme;05;5ème circonscription;6;11;M;LABILLE;Grégory;10/07/1968;LR;Professeur, profession scientifique;Oui;M;DUPREZ;Mickaël;05/06/1990;Non +80;Somme;05;5ème circonscription;7;49;M;LEVEQUE;Adrien;22/10/1990;DVD;Profession libérale;Non;M;LEGRAND;Bruno;15/07/1963;Non +80;Somme;05;5ème circonscription;8;37;F;CARON-DECROIX;Virginie;01/11/1977;ENS;Profession libérale;Non;M;MASSIAS;Fabrice;02/01/1963;Non +80;Somme;05;5ème circonscription;9;4;F;LAUNAY;Hélène;22/05/1967;DXG;Employé civil et agent de service de la fonction publique;Non;M;ISIDORI;Marc;28/01/1967;Non +81;Tarn;01;1ère circonscription;1;12;M;GILLES;Roland;07/02/1954;DVD;Ancien cadre;Non;F;BOURGES;Marie-Clotilde;19/11/1979;Non +81;Tarn;01;1ère circonscription;2;11;F;ROQUES-ETIENNE;Muriel;05/03/1979;ENS;Profession libérale;Oui;M;MARTINEZ;Franck;03/03/1970;Non +81;Tarn;01;1ère circonscription;3;25;F;ANDRIEU;Patricia;09/03/1970;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;WATTIER;Mathilde;15/12/1997;Non +81;Tarn;01;1ère circonscription;4;22;M;PIRÈS;Rodolphe;26/01/1973;LR;Profession de l'information, des arts et des spectacles;Non;F;BARTHE-DE LA OSA;Nadège;22/04/1979;Non +81;Tarn;01;1ère circonscription;5;10;M;BARDY;Stéphane;12/02/1961;REC;Commerçant et assimilé;Non;F;BOUYE;Virginie;12/04/1975;Non +81;Tarn;01;1ère circonscription;6;29;M;RICCI;Johann;31/01/1987;DVD;Profession libérale;Non;F;RAYSSIGUIÉ;Nathalie;19/04/1968;Non +81;Tarn;01;1ère circonscription;7;6;M;CHAVEGRAND;Eric;03/07/1964;DXG;Ouvrier qualifié de type industriel;Non;M;LOPEZ;Vincent;07/03/1952;Non +81;Tarn;01;1ère circonscription;8;31;M;MOULIN;Etienne;08/05/1959;RDG;Professeur, profession scientifique;Non;F;VIALA;Armelle;07/09/1970;Non +81;Tarn;01;1ère circonscription;9;4;M;CABROLIER;Frédéric;12/10/1966;RN;Cadre administratif et commercial d'entreprise;Non;M;DAUZATS;Alain;30/01/1959;Non +81;Tarn;01;1ère circonscription;10;14;M;POUJADE;Gérard;31/03/1960;NUPES;Profession libérale;Non;F;DELMAS;Cécile;02/11/1970;Non +81;Tarn;01;1ère circonscription;11;2;F;CAPO ORTEGA;Julie;27/10/1984;DVD;Commerçant et assimilé;Non;M;ALIBERT;Nicolas;03/12/1987;Non +81;Tarn;01;1ère circonscription;12;23;M;LAPEYRE;Philippe;09/03/1967;DSV;Ancien cadre;Non;F;GERMAIN;Véronique;07/03/1953;Non +81;Tarn;02;2ème circonscription;1;8;F;BOYER;Céline;17/07/1962;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LEGRIS;Christian;24/07/1954;Non +81;Tarn;02;2ème circonscription;2;28;F;DARMANI;Corinne;16/10/1968;REG;Commerçant et assimilé;Non;M;DUMAS;Eric;22/07/1972;Non +81;Tarn;02;2ème circonscription;3;18;M;VOIZARD;Karl-Henri;24/10/1981;ECO;Cadre de la fonction publique;Non;F;COTELLE;Nadia;15/08/1966;Non +81;Tarn;02;2ème circonscription;4;15;F;VERDIER-JOUCLAS;Marie-Christine;19/03/1965;ENS;Cadre administratif et commercial d'entreprise;Oui;F;DAVOINE-DERREVEAUX;Cécile;26/12/1968;Non +81;Tarn;02;2ème circonscription;5;33;M;ENCONTRE;Joël;30/08/1961;REG;Profession intermédiaire administrative de la fonction publique;Non;F;HOULES;Evelyne;01/09/1958;Non +81;Tarn;02;2ème circonscription;6;3;M;GIMENEZ SASTRE;Boris;08/06/1977;DXG;Professeur des écoles, instituteur et assimilé;Non;F;MERIC;Chistine;23/01/1963;Non +81;Tarn;02;2ème circonscription;7;36;F;LADA;Fabienne Marie;19/03/1968;ECO;Cadre de la fonction publique;Non;F;GRACIA;Laetitia;22/05/1985;Non +81;Tarn;02;2ème circonscription;8;32;M;BACOU;Julien;29/10/1986;RN;Technicien;Non;M;BESSOU;Raymond;02/01/1946;Non +81;Tarn;02;2ème circonscription;9;20;F;MADESCLAIR;Sandrine;09/02/1972;DVG;Cadre administratif et commercial d'entreprise;Non;F;MALRIC;Florence;05/04/1966;Non +81;Tarn;02;2ème circonscription;10;30;F;CUNY;Pascale;17/08/1963;DVG;Professeur des écoles, instituteur et assimilé;Non;M;BREFEIL;Pierre;25/06/1965;Non +81;Tarn;02;2ème circonscription;11;19;F;PONNELLE;Véronique;31/08/1970;DSV;Profession libérale;Non;M;WITTICH;Eberhard;03/02/1963;Non +81;Tarn;02;2ème circonscription;12;27;F;ERODI;Karen;04/02/1977;NUPES;Profession libérale;Non;M;JAMMES;Romain;12/08/1987;Non +81;Tarn;03;3ème circonscription;1;26;M;LASSALLE;Julien;15/09/1981;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;F;ALFANDARI;Léa;20/12/1996;Non +81;Tarn;03;3ème circonscription;2;21;F;BALESTAN;Ophélie;12/03/1995;ECO;Commerçant et assimilé;Non;M;VERGER;Jean-Luc;18/05/1952;Non +81;Tarn;03;3ème circonscription;3;16;F;CALLEJON;Virginie;26/10/1974;RN;Cadre de la fonction publique;Non;M;PILOZ;Jean-Paul;19/09/1958;Non +81;Tarn;03;3ème circonscription;4;24;F;CABANIS;Christelle;30/09/1975;RDG;Professeur, profession scientifique;Non;F;BOUSQUET;Alexia;04/12/1972;Non +81;Tarn;03;3ème circonscription;5;13;M;TERLIER;Jean;02/03/1977;ENS;Profession libérale;Oui;F;DE GÉRANDO;Valérie;11/02/1976;Non +81;Tarn;03;3ème circonscription;6;34;F;REY;Sandra;25/10/1980;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BOKOBZA;Florent;22/11/1983;Non +81;Tarn;03;3ème circonscription;7;5;F;TRESSENS;Chantal;17/03/1955;DXG;Ancienne profession intermédiaire;Non;F;BERNOT;Bénédicte;30/01/1971;Non +81;Tarn;03;3ème circonscription;8;17;M;CARAYON;Guilhem;26/05/1999;LR;Elève, étudiant;Non;F;SÈNES;Isabelle;27/12/1974;Non +81;Tarn;03;3ème circonscription;9;9;M;LAPORTE;Pierre;17/08/1961;DVD;Profession libérale;Non;F;LEROUX;Nathalie;05/01/1988;Non +81;Tarn;03;3ème circonscription;10;7;F;PONCE;Laura;28/11/1996;REC;Employé de commerce;Non;M;COUDERC;Luc;17/05/1957;Non +81;Tarn;03;3ème circonscription;11;35;F;DAUGE;Claire;07/06/1961;REG;Profession intermédiaire administrative de la fonction publique;Non;M;LARRUCHON;Jacques;16/09/1940;Non +82;Tarn-et-Garonne;01;1ère circonscription;1;11;M;DESCAZEAUX;Ghislain;23/12/1960;DVG;Professeur, profession scientifique;Non;F;MORVAN;Liliane;01/01/1963;Non +82;Tarn-et-Garonne;01;1ère circonscription;2;17;M;PERRINAUD;Dylan;31/08/1998;DIV;Elève, étudiant;Non;F;ROUSSELLE;Maeva;06/04/2001;Non +82;Tarn-et-Garonne;01;1ère circonscription;3;18;M;BENCHEKROUN;Chafik;27/07/1988;DSV;Professeur, profession scientifique;Non;F;JUVIN;Léonie;14/07/1988;Non +82;Tarn-et-Garonne;01;1ère circonscription;4;15;F;SIMONIN;Catherine;26/08/1957;ENS;Ancien cadre;Non;M;AUDOUY;Damien;14/07/1980;Non +82;Tarn-et-Garonne;01;1ère circonscription;5;22;F;RABAULT;Valérie;25/04/1973;NUPES;Ingénieur et cadre technique d'entreprise;Oui;M;TELLIER;Morgan;02/11/1979;Non +82;Tarn-et-Garonne;01;1ère circonscription;6;14;M;VIGOUROUX;Claude;11/11/1953;LR;Ancien cadre;Non;F;FORESTIE;Pauline;16/08/1982;Non +82;Tarn-et-Garonne;01;1ère circonscription;7;8;M;POMA;Pierre;04/10/1957;RN;Ancien agriculteur exploitant;Non;F;MAYRE;Sabine;06/04/1974;Non +82;Tarn-et-Garonne;01;1ère circonscription;8;2;M;BLANCO;Richard;27/04/1971;DXG;Cadre de la fonction publique;Non;M;HAAS;Vincent;27/03/1968;Non +82;Tarn-et-Garonne;01;1ère circonscription;9;16;F;LAFOND;Laurence;26/07/1967;DXG;Profession de l'information, des arts et des spectacles;Non;M;PUJOL;Joël;12/07/1954;Non +82;Tarn-et-Garonne;01;1ère circonscription;10;13;M;GRILHAULT DES FONTAINES;Jean-François;27/06/1962;DSV;Artisan;Non;M;CROUSIER;Vincent;22/12/1979;Non +82;Tarn-et-Garonne;01;1ère circonscription;11;5;M;FRANCEZ-CHARLOT;Luc;25/09/1966;REC;Employé civil et agent de service de la fonction publique;Non;M;TORRENS;Cédric;17/10/1988;Non +82;Tarn-et-Garonne;02;2ème circonscription;1;10;M;ASTRUC;Christian;10/11/1949;ENS;Ancien agriculteur exploitant;Non;F;BAULU;Maryse;25/01/1954;Non +82;Tarn-et-Garonne;02;2ème circonscription;2;9;F;HAMELET;Marine;13/07/1967;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;F;GAYET;Stéphanie;23/01/1980;Non +82;Tarn-et-Garonne;02;2ème circonscription;3;20;F;AYMES;Claire;23/05/1958;REG;Profession libérale;Non;M;CARO;Alain;28/09/1967;Non +82;Tarn-et-Garonne;02;2ème circonscription;4;12;M;CASES;Frédéric;03/05/1972;REC;Policier et militaire;Non;F;LOPEZ;Sophie;19/03/1966;Non +82;Tarn-et-Garonne;02;2ème circonscription;5;6;F;RATSIMBA;Françoise;27/02/1956;DXG;Ancien cadre;Non;M;GOMILA;Stéphane;13/06/1971;Non +82;Tarn-et-Garonne;02;2ème circonscription;6;3;M;JOUGLAR;Jean-Yves;22/05/1954;DIV;Ancien artisan, commerçant, chef d'entreprise;Non;M;DESMONS;Jacques;12/09/1949;Non +82;Tarn-et-Garonne;02;2ème circonscription;7;19;M;LEVIEUX;Cédric;23/04/1978;DIV;Ingénieur et cadre technique d'entreprise;Non;M;GOUGOUZIAN;Sylvain;13/12/1982;Non +82;Tarn-et-Garonne;02;2ème circonscription;8;4;F;MANCHADO;Nathalie;07/09/1964;NUPES;Cadre de la fonction publique;Non;M;PETITOU;Yannick;02/05/1958;Non +82;Tarn-et-Garonne;02;2ème circonscription;9;7;F;PINEL;Sylvia;28/09/1977;RDG;Cadre de la fonction publique;Oui;M;DEPRINCE;Jean Luc;08/02/1957;Non +83;Var;01;1ère circonscription;1;37;F;BENOIT-LIZON;Françoise;16/05/1962;ECO;Profession libérale;Non;F;ROGIER;Alice;28/02/1991;Non +83;Var;01;1ère circonscription;2;21;M;NAVARRANNE;Amaury;14/03/1985;RN;Cadre administratif et commercial d'entreprise;Non;F;DE VITA;Camille;14/02/2001;Non +83;Var;01;1ère circonscription;3;4;M;CHENEVARD;Yannick;27/11/1959;ENS;Profession libérale;Non;F;LEVY;Geneviève;24/02/1948;Oui +83;Var;01;1ère circonscription;4;9;M;HABOUZIT;Eric;27/03/1987;NUPES;Professeur, profession scientifique;Non;F;JEZEQUEL;Gwennaelle;13/01/1981;Non +83;Var;01;1ère circonscription;5;29;M;VITEL;Philippe;22/02/1955;LR;Profession libérale;Non;F;HUBERT;Aline;19/04/1974;Non +83;Var;01;1ère circonscription;6;77;M;BOULANGER;Caroll;25/01/1952;DIV;Ancien cadre;Non;F;NADEAU;Aline;27/07/1959;Non +83;Var;01;1ère circonscription;7;56;M;HENO;Philippe;02/12/1963;REC;Profession de l'information, des arts et des spectacles;Non;M;GREMARE;Benoît;18/06/1984;Non +83;Var;01;1ère circonscription;8;30;F;BALTY;Marie-Renée;28/05/1955;DXG;Profession intermédiaire de la santé et du travail social;Non;F;CAVAZZA;Corinne;14/07/1962;Non +83;Var;01;1ère circonscription;9;28;F;DUPONCHEL;Deborah;08/12/1969;DSV;Profession libérale;Non;M;PEYRAUD;Richard;24/02/1969;Non +83;Var;01;1ère circonscription;10;73;F;GIANOLZO;Marie;18/06/1951;ECO;Ancien employé;Non;M;SANTONI;Antoine;21/03/1956;Non +83;Var;02;2ème circonscription;1;14;F;LAVALETTE;Laure;16/04/1976;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CHEVROT;Régis;16/06/1950;Non +83;Var;02;2ème circonscription;2;38;F;CORNIL;Isaline;13/06/1985;NUPES;Professeur, profession scientifique;Non;M;SERVEL;Franck;11/07/1971;Non +83;Var;02;2ème circonscription;3;40;M;JUVING-BRUNET;Alexandre;21/03/1982;DXD;Chef d'entreprise de 10 salariés ou plus;Non;F;DUSSOL;Josephine;24/04/1973;Non +83;Var;02;2ème circonscription;4;72;F;PERRETO;Alexandra;25/03/1978;ECO;Employé civil et agent de service de la fonction publique;Non;M;ROURE;Daniel;24/11/1948;Non +83;Var;02;2ème circonscription;5;89;F;GAGO-CHIDAINE;Claire;20/07/1987;REG;Cadre de la fonction publique;Non;F;BONIFAY;Manon;18/12/1987;Non +83;Var;02;2ème circonscription;6;93;F;FOURNIER;Myriam;18/08/1980;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;ENGRAND;Xavier;04/02/1970;Non +83;Var;02;2ème circonscription;7;68;F;BERTRAND;Aline;29/11/1985;REC;Commerçant et assimilé;Non;M;PIERRE;Roger;28/04/1956;Non +83;Var;02;2ème circonscription;8;39;M;ARGENTO;Julien;30/05/1993;LR;Commerçant et assimilé;Non;M;CASTEL;Roger;16/03/1949;Non +83;Var;02;2ème circonscription;9;5;M;MUSSO;Ange;01/04/1966;ENS;Cadre administratif et commercial d'entreprise;Non;F;MONDONE;Valérie;04/08/1974;Non +83;Var;02;2ème circonscription;10;81;M;GONI;Jean-Claude;04/06/1962;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;BERVILLER;Isabelle;12/02/1967;Non +83;Var;02;2ème circonscription;11;32;M;BOISSIN;Laurent;12/03/1970;ECO;Employé civil et agent de service de la fonction publique;Non;M;GUARINO;Alain;22/10/1974;Non +83;Var;02;2ème circonscription;12;58;M;BLANC;Pierre;22/03/1963;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;M;BARACCO;Jean-Pierre;29/05/1954;Non +83;Var;02;2ème circonscription;13;31;M;GHIOTTO;Jean-Michel;26/03/1951;DXG;Ancienne profession intermédiaire;Non;M;JEMIAI;Medhi;10/02/1988;Non +83;Var;03;3ème circonscription;1;11;F;ROLLAND;Delphine;11/06/1974;REG;Profession intermédiaire de la santé et du travail social;Non;M;COSTA;Pèire;21/01/1980;Non +83;Var;03;3ème circonscription;2;27;M;DOMINIAK;Alexis;25/08/1982;ECO;Ancien cadre;Non;F;SIRI;Santi;02/08/1980;Non +83;Var;03;3ème circonscription;3;87;M;DENIZART;Geoffrey;12/07/1977;DSV;Employé de commerce;Non;F;CHANTELOUP;Karoline;15/03/1979;Non +83;Var;03;3ème circonscription;4;80;M;FIMBEL;Florian;10/05/1991;DIV;Cadre administratif et commercial d'entreprise;Non;F;MORETEAUD;Isabelle;24/02/1964;Non +83;Var;03;3ème circonscription;5;88;F;BENYAMIN;Salomé;01/10/1999;REC;Employé de commerce;Non;F;CHANTEPIE;Mahée;14/08/2002;Non +83;Var;03;3ème circonscription;6;15;F;MONFORT;Isabelle;12/03/1960;ENS;Profession libérale;Non;M;STASSINOS;Hervé;30/01/1961;Non +83;Var;03;3ème circonscription;7;92;M;CALABRO;Olivier;02/11/1974;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;VACCARO;Pascal;12/06/1968;Non +83;Var;03;3ème circonscription;8;7;M;DEIDON;Pierre;08/09/1949;DXG;Cadre de la fonction publique;Non;M;BASTIDE;Yves;28/07/1974;Non +83;Var;03;3ème circonscription;9;59;F;PEIRONET BREMOND;Julia;18/02/1982;NUPES;Profession libérale;Non;M;GUERIN;Benoit;02/06/1980;Non +83;Var;03;3ème circonscription;10;44;M;GRÉGOIRE;Michel;31/05/1957;ECO;Technicien;Non;F;BAUME;Michelle;30/04/1951;Non +83;Var;03;3ème circonscription;11;3;F;STORTZ;Magalie;26/06/1966;ECO;Employé civil et agent de service de la fonction publique;Non;F;FUZEAU;Milva;10/08/1962;Non +83;Var;03;3ème circonscription;12;57;F;RIALLAND;Valérie;12/11/1973;LR;Professeur, profession scientifique;Non;M;DIAMANT;Julien;01/05/1979;Non +83;Var;03;3ème circonscription;13;24;M;RAMBAUD;Stephane;05/04/1960;RN;Ancien cadre;Non;M;EYNARD-TOMATIS;Jean-Michel;05/03/1958;Non +83;Var;04;4ème circonscription;1;63;F;MAUBORGNE;Sereine;03/05/1972;ENS;Profession libérale;Oui;M;PARLANTI;Alain;15/03/1953;Non +83;Var;04;4ème circonscription;2;20;F;RIBEIRO TEIXEIRA;Sabrina;18/02/1979;ECO;Employé civil et agent de service de la fonction publique;Non;F;RINGOT;Cindy;27/09/1978;Non +83;Var;04;4ème circonscription;3;53;F;CRISTOFANI-VIGLIONE;Sabine;30/09/1971;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;DHORNE;Bernard;07/12/1954;Non +83;Var;04;4ème circonscription;4;34;F;HAMEL;Marie-Christine;15/10/1953;LR;Professeur, profession scientifique;Non;F;CERATO;Elisabeth;24/06/1958;Non +83;Var;04;4ème circonscription;5;6;F;MOREL;Pascale;25/02/1964;DXG;Profession intermédiaire de la santé et du travail social;Non;F;DELAGE;Hélène;08/05/1948;Non +83;Var;04;4ème circonscription;6;83;F;TERRAZZONI;Valérie;09/05/1970;ECO;Employé de commerce;Non;M;GRAVEREAUX;Jules;23/12/2001;Non +83;Var;04;4ème circonscription;7;70;F;SARRUT;Chantal;23/01/1947;ECO;Ancien cadre;Non;F;QUIN;Suzanne;12/02/1935;Non +83;Var;04;4ème circonscription;8;35;M;ZEMMOUR;Eric;31/08/1958;REC;Profession de l'information, des arts et des spectacles;Non;M;LANSADE;Marc-Etienne;03/11/1973;Non +83;Var;04;4ème circonscription;9;62;M;LOTTIAUX;Philippe;14/08/1966;RN;Cadre de la fonction publique;Non;F;HOUSSAYS;Coline;10/12/1998;Non +83;Var;05;5ème circonscription;1;47;F;HOLLENDER;Nathalie;20/12/1969;DXD;Employé de commerce;Non;F;BOTELLA;Joëlle;17/02/1962;Non +83;Var;05;5ème circonscription;2;18;M;LAROCHE;Baptiste;30/12/1997;REC;Profession libérale;Non;F;CHICHE;Laureen;23/03/1982;Non +83;Var;05;5ème circonscription;3;90;M;HERVE;Joël;17/01/1952;ECO;Ancien cadre;Non;F;MOUSSA;Macha;22/12/1986;Non +83;Var;05;5ème circonscription;4;33;M;CARAGUEL;Robert;14/04/1955;NUPES;Ancien cadre;Non;F;KHATTAR;Fatiha;26/04/1959;Non +83;Var;05;5ème circonscription;5;82;M;MAURIN;Jean-Marc;28/10/1958;LR;Cadre de la fonction publique;Non;F;LOMBARD;Danièle;17/06/1950;Non +83;Var;05;5ème circonscription;6;91;F;DES ACCORDS;Anne;08/11/1971;DVD;Cadre de la fonction publique;Non;M;CRISTIANO;Bernard;22/08/1967;Non +83;Var;05;5ème circonscription;7;13;F;AULOY;Brigitte;07/06/1964;DSV;Profession libérale;Non;M;LIO;Francesco;14/07/1953;Non +83;Var;05;5ème circonscription;8;48;M;KRANZER;Rémi;25/06/1966;DXG;Professeur, profession scientifique;Non;F;RIZZO;Jeannine;13/04/1953;Non +83;Var;05;5ème circonscription;9;60;F;LECHANTEUX;Julie;22/12/1977;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CURTI;Fabrice;01/07/1980;Non +83;Var;05;5ème circonscription;10;74;M;MALOT;Charles;15/05/1987;ECO;Technicien;Non;F;HOUZE;Émilie;16/10/1992;Non +83;Var;05;5ème circonscription;11;55;M;MICHEL-KLEISBAUER;Philippe;06/03/1969;ENS;Profession libérale;Oui;F;BORNE;Chantal;08/12/1953;Non +83;Var;06;6ème circonscription;1;49;M;BOLLA;Alain;16/09/1959;NUPES;Ancien ouvrier;Non;F;VINCENEUX;Sylvie;19/07/1955;Non +83;Var;06;6ème circonscription;2;8;M;GUEYRARD;Louis;23/12/1956;DXG;Technicien;Non;F;COEN;Sabrina;28/07/1968;Non +83;Var;06;6ème circonscription;3;79;M;THIERY;Jean-Christophe;20/02/1963;DIV;Employé civil et agent de service de la fonction publique;Non;F;BERNARD;Sophie;14/12/1978;Non +83;Var;06;6ème circonscription;4;94;F;LUCCIONI;Laurence;01/07/1966;ECO;Profession intermédiaire de la santé et du travail social;Non;M;GUERINI;Jean;22/11/1959;Non +83;Var;06;6ème circonscription;5;42;F;LOPEZ;Chantal;03/05/1960;DSV;Cadre administratif et commercial d'entreprise;Non;F;BENITO;Alexandra;06/01/1989;Non +83;Var;06;6ème circonscription;6;2;M;ROGIER;Daniel;27/04/1947;DVG;Professeur, profession scientifique;Non;F;TEISSIER;Solange;17/01/1947;Non +83;Var;06;6ème circonscription;7;52;F;GOMEZ-BASSAC;Valérie;16/07/1969;ENS;Professeur, profession scientifique;Oui;M;VALLOT;Philippe;05/04/1964;Non +83;Var;06;6ème circonscription;8;86;M;VIRRIAT;Joël;09/05/1956;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;F;PAULET-PUCCINI;Stéphanie;18/10/1977;Non +83;Var;06;6ème circonscription;9;75;M;CADE;Didier;30/01/1969;REG;Agriculteur sur moyenne exploitation;Non;F;MORIAZ;Stéphanie;22/06/1974;Non +83;Var;06;6ème circonscription;10;43;M;RIGAUD;Hervé;04/06/1975;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;FÉVRIER;Frédérique;15/08/1968;Non +83;Var;06;6ème circonscription;11;23;M;GILETTI;Frank;01/03/1973;RN;Employé de commerce;Non;M;CHEVET;Julien;11/10/1993;Non +83;Var;06;6ème circonscription;12;67;M;CONSTANS;Jean-Michel;14/06/1969;LR;Profession libérale;Non;F;CINQUINI;Laëtitia;21/09/1974;Non +83;Var;06;6ème circonscription;13;51;F;LALESART;Elisabeth;11/11/1967;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;CAMILLI;Julien;13/05/1995;Non +83;Var;07;7ème circonscription;1;19;F;PERRU;Marie-Eve;03/05/1959;DVC;Ancien cadre;Non;F;COTTINI;Laetitia;20/10/1980;Non +83;Var;07;7ème circonscription;2;76;F;KOSCIELSKI;Laurile;02/10/1984;ECO;Profession libérale;Non;M;BERENGUIER;Jean-Michel;16/09/1953;Non +83;Var;07;7ème circonscription;3;50;M;VINCENT;Romain;29/11/1981;LR;Ingénieur et cadre technique d'entreprise;Non;F;ONTENIENTE;Lydie;07/11/1984;Non +83;Var;07;7ème circonscription;4;71;M;IANNESSI;Charles;28/10/1989;REC;Cadre administratif et commercial d'entreprise;Non;F;JURY;Céline;02/12/1966;Non +83;Var;07;7ème circonscription;5;10;F;MUSCHOTTI;Cécile;30/10/1987;ENS;Cadre de la fonction publique;Non;M;JOSEPH;Jean-Paul;17/07/1955;Non +83;Var;07;7ème circonscription;6;61;F;BOUCHKARA;Basma;21/04/1969;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;M;BONIFACCINO;Enzo;11/07/2000;Non +83;Var;07;7ème circonscription;7;12;M;CANDIDO DA SILVA;Ricardo;25/03/1965;DXG;Artisan;Non;M;CIUTI;Patrice;25/04/1951;Non +83;Var;07;7ème circonscription;8;22;M;MONNIER;Louis;30/12/1991;ECO;Cadre administratif et commercial d'entreprise;Non;F;LECLAIRE;Elisa;18/09/1997;Non +83;Var;07;7ème circonscription;9;85;F;CLANET;Régine;01/07/1959;DSV;Cadre de la fonction publique;Non;M;VIGNAL;Hervé;15/04/1966;Non +83;Var;07;7ème circonscription;10;65;F;REANO;Bouchra;06/09/1977;DVG;Professeur, profession scientifique;Non;M;CHOUKAR;Lahcen;22/04/1965;Non +83;Var;07;7ème circonscription;11;78;F;BERMUDEZ;Magali;07/03/1964;DIV;Cadre administratif et commercial d'entreprise;Non;M;GUILLAUME;Loïc;17/11/1981;Non +83;Var;07;7ème circonscription;12;26;M;BOCCALETTI;Frédéric;23/11/1973;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;DELYON;Isabelle;03/08/1955;Non +83;Var;08;8ème circonscription;1;17;M;JUBLOT;Guillaume;16/12/1974;LR;Cadre de la fonction publique;Non;M;PANIZZI;Frank;20/10/1969;Non +83;Var;08;8ème circonscription;2;41;M;REZK;Michel;23/02/1963;DIV;Ingénieur et cadre technique d'entreprise;Non;M;BACCI;Baptiste;13/11/1997;Non +83;Var;08;8ème circonscription;3;64;M;MARTIN;Ludovic;28/07/1974;DXG;Ingénieur et cadre technique d'entreprise;Non;M;KOZAK;Guy;08/06/1939;Non +83;Var;08;8ème circonscription;4;69;M;LE LOSTEC;Emmanuel;15/10/1967;ECO;Cadre de la fonction publique;Non;F;BARON;Martine;22/12/1967;Non +83;Var;08;8ème circonscription;5;46;F;CARBONNEL;Marie-Claire;27/09/1962;REG;Profession intermédiaire administrative de la fonction publique;Non;M;BERRUS;Estève;20/06/1952;Non +83;Var;08;8ème circonscription;6;84;M;SIMON;Stéphane;28/04/1969;DSV;Profession intermédiaire de la santé et du travail social;Non;M;POMMIER;Laurent;08/12/1968;Non +83;Var;08;8ème circonscription;7;66;F;RAZEAU;Claudine;13/12/1946;ECO;Ancienne profession intermédiaire;Non;F;ROBIONY;Viviane;10/10/1948;Non +83;Var;08;8ème circonscription;8;25;M;SCHRECK;Philippe;02/02/1972;RN;Profession libérale;Non;M;PELERIN;Eric;27/03/1960;Non +83;Var;08;8ème circonscription;9;36;F;JOUANNEAU;Catherine;16/12/1965;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;BOUYÉ;Alexandre;29/03/1999;Non +83;Var;08;8ème circonscription;10;54;M;MATRAS;Fabien;12/09/1984;ENS;Professeur, profession scientifique;Oui;M;GIBAUD;François;12/02/1958;Non +83;Var;08;8ème circonscription;11;16;F;LUCIDO;Vanessa;02/07/1987;REC;Profession libérale;Non;M;BOUSQUIERES;Christian;05/07/1953;Non +83;Var;08;8ème circonscription;12;45;F;BOURREAU;Virginie;24/07/1983;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MOILIER;Catherine;03/04/1954;Non +84;Vaucluse;01;1ère circonscription;1;17;M;SCHMID;Denis;17/08/1948;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;F;GERARD;Nancy;08/06/1975;Non +84;Vaucluse;01;1ère circonscription;2;30;F;CHATENAY;Christine;27/05/1962;REG;Technicien;Non;M;VATON;Bernard;23/10/1949;Non +84;Vaucluse;01;1ère circonscription;3;57;M;PASCAL;Philippe;03/12/1956;DVG;Profession libérale;Non;F;CAVALLI;Christine;27/03/1950;Non +84;Vaucluse;01;1ère circonscription;4;18;F;NAU;Ophélie;14/01/2000;REC;Elève, étudiant;Non;M;LIOTAUD;Serge;27/04/1961;Non +84;Vaucluse;01;1ère circonscription;5;29;M;LEMAIRE;Vincent;22/06/1989;DVG;Cadre de la fonction publique;Non;F;ROUSSIES;Judith;29/08/1987;Non +84;Vaucluse;01;1ère circonscription;6;39;F;ZITOUNI;Souad;23/04/1974;ENS;Profession libérale;Oui;M;PALY;Christian;30/03/1964;Non +84;Vaucluse;01;1ère circonscription;7;48;M;RIZZA;Salvator;02/06/1960;DXG;Ancien ouvrier;Non;M;GHOUALI;Nour-Eddine;16/02/1960;Non +84;Vaucluse;01;1ère circonscription;8;8;M;HEBRARD;Joris;31/05/1982;RN;Profession libérale;Non;F;JAOUEN;Catherine;05/04/1962;Non +84;Vaucluse;01;1ère circonscription;9;38;M;GESLIN;Stéphane;20/06/1974;DXG;Professeur, profession scientifique;Non;F;PRUNET;Marie-José;04/01/1954;Non +84;Vaucluse;01;1ère circonscription;10;16;F;BROGI;Dominique;22/12/1965;LR;Ingénieur et cadre technique d'entreprise;Non;F;COURBET;Marie-Laure;16/08/1965;Non +84;Vaucluse;01;1ère circonscription;11;19;F;SEDDIK;Kheira;24/09/1964;DVD;Cadre administratif et commercial d'entreprise;Non;M;DEGIRMENCI;Adem;06/04/1988;Non +84;Vaucluse;01;1ère circonscription;12;40;M;FARYSSY;Farid;02/02/1978;NUPES;Profession libérale;Non;F;CAILLÉ;Mathilde;11/09/1989;Non +84;Vaucluse;02;2ème circonscription;1;2;F;ALBERT;Sophia;30/10/1971;ECO;Profession libérale;Non;F;LAURENT;Solene;22/03/2001;Non +84;Vaucluse;02;2ème circonscription;2;51;M;MANGIAVILLANO;Gérard;10/07/1948;DXG;Ancienne profession intermédiaire;Non;F;GARDET;Catherine;28/11/1949;Non +84;Vaucluse;02;2ème circonscription;3;45;M;RIGAULT;Stanislas;16/05/1999;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;F;MARÉCHAL;Marion;10/12/1989;Non +84;Vaucluse;02;2ème circonscription;4;9;F;AUZANOT;Bénédicte;05/08/1972;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DURY;Valéry;16/06/1974;Non +84;Vaucluse;02;2ème circonscription;5;10;M;DUCHEMIN;Sébastien;03/04/1968;DSV;Cadre de la fonction publique;Non;F;FANCHON;Christelle;16/05/1988;Non +84;Vaucluse;02;2ème circonscription;6;22;F;VIALA;Sylvie;07/07/1964;ENS;Professeur, profession scientifique;Non;M;BRUXELLE;Eric;22/05/1957;Non +84;Vaucluse;02;2ème circonscription;7;31;F;LEON;Joséfa;21/10/1947;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;CASANOVA;Alain;27/07/1963;Non +84;Vaucluse;02;2ème circonscription;8;20;F;AMOROS;Elisabeth;23/07/1949;LR;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;CRESP;Delphine;03/12/1977;Non +84;Vaucluse;02;2ème circonscription;9;49;M;GUILLAUMIN;Eric;08/06/1956;DVC;Commerçant et assimilé;Non;F;TALLIEUX;Andréa;30/10/1977;Non +84;Vaucluse;02;2ème circonscription;10;21;M;SANDOZ;François;15/04/1982;NUPES;Cadre administratif et commercial d'entreprise;Non;F;RODRIGUEZ;Myriam;22/01/1967;Non +84;Vaucluse;02;2ème circonscription;11;50;F;PILLER;Agnès;19/09/1959;ECO;Commerçant et assimilé;Non;F;RUBIN;Claire;17/10/1944;Non +84;Vaucluse;02;2ème circonscription;12;46;M;GAIFFE;Germain;25/10/1967;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;CARON;Christophe;11/10/1972;Non +84;Vaucluse;03;3ème circonscription;1;23;M;MORENAS;Adrien;01/01/1982;ENS;Profession libérale;Oui;F;CONRAD;Emilie;20/06/1988;Non +84;Vaucluse;03;3ème circonscription;2;4;F;ROGIER;Patricia;16/06/1959;ECO;Ancien employé;Non;F;PASCAL;Noémie;08/05/1978;Non +84;Vaucluse;03;3ème circonscription;3;32;F;DUENAS;Muriel;25/06/1960;NUPES;Employé de commerce;Non;M;SAFON;Olivier;06/05/1977;Non +84;Vaucluse;03;3ème circonscription;4;3;M;DE LÉPINAU;Hervé;08/06/1969;RN;Profession libérale;Non;F;LAUZEN-JEUDY;Fanny;28/08/1980;Non +84;Vaucluse;03;3ème circonscription;5;33;M;TONNAIRE;Christophe;17/07/1975;LR;Cadre administratif et commercial d'entreprise;Non;F;RAYNAUD;Audrey;30/07/1995;Non +84;Vaucluse;03;3ème circonscription;6;24;M;GONTARD;Rolland;12/02/1973;DIV;Commerçant et assimilé;Non;F;BIGOTTE;Laurence;25/10/1959;Non +84;Vaucluse;03;3ème circonscription;7;54;F;ROUGEAU;Sarah;14/08/1992;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;HAESSIG;Thomas;16/10/1976;Non +84;Vaucluse;03;3ème circonscription;8;55;M;CHARBONNEL;Laurent;26/06/1982;DSV;Commerçant et assimilé;Non;M;GRECO;Karl-Alexi;27/06/2001;Non +84;Vaucluse;03;3ème circonscription;9;42;M;HELLEU;Bertrand;02/05/1946;DXG;Ancien cadre;Non;F;ARACIL;Joëlle;08/06/1970;Non +84;Vaucluse;03;3ème circonscription;10;41;F;BONELLO;Chantal;29/01/1954;DXG;Ancienne profession intermédiaire;Non;M;HÖCHT;Pablo;06/01/1981;Non +84;Vaucluse;03;3ème circonscription;11;58;F;VIVIER;Solène;03/09/1993;REG;Cadre de la fonction publique;Non;M;BADINIER;Rémi;15/11/1994;Non +84;Vaucluse;03;3ème circonscription;12;34;M;MAUNIER;Bernard;03/12/1958;ECO;Militaire du contingent;Non;F;D'AMBROSIO;Arlette;16/07/1938;Non +84;Vaucluse;03;3ème circonscription;13;11;M;MONTAGARD;Christian;30/09/1959;REC;Ancien cadre;Non;F;GUILLAUME;Florence;01/05/1979;Non +84;Vaucluse;04;4ème circonscription;1;43;F;RICHARD;Violaine;01/05/1972;ENS;Cadre administratif et commercial d'entreprise;Non;M;BOULETIN;Jérôme;26/06/1968;Non +84;Vaucluse;04;4ème circonscription;2;59;M;WAILLY;Jean-Marie;08/12/1970;DIV;Commerçant et assimilé;Non;M;ADAMO;Joseph;16/06/1964;Non +84;Vaucluse;04;4ème circonscription;3;56;M;GOVERNATORI;Marc;06/10/1981;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;DALMASSO;Amandine;25/04/1985;Non +84;Vaucluse;04;4ème circonscription;4;12;M;ROSSIN;Roger;21/02/1980;LR;Cadre de la fonction publique;Non;M;PROTO;Ronan;17/03/1967;Non +84;Vaucluse;04;4ème circonscription;5;35;F;HAUTANT;Anne-Marie;07/01/1956;REG;Profession libérale;Non;M;OPDENACKER;Michaël;09/01/1972;Non +84;Vaucluse;04;4ème circonscription;6;52;F;CARVOU;Betty;17/02/1975;ECO;Cadre administratif et commercial d'entreprise;Non;M;LAPEYRE;Sébastien;11/12/2000;Non +84;Vaucluse;04;4ème circonscription;7;15;M;PETILLOT;Nicolas;25/05/1973;DXG;Professeur, profession scientifique;Non;M;BELLOT;Olivier;25/08/1977;Non +84;Vaucluse;04;4ème circonscription;8;25;M;RIGORD;Alexandre;31/03/2001;ECO;Chômeur n'ayant jamais travaillé;Non;F;BIGNON;Cécile;19/04/1977;Non +84;Vaucluse;04;4ème circonscription;9;13;F;LORHO;Marie-France;15/12/1964;RN;Cadre administratif et commercial d'entreprise;Oui;M;DE BEAUREGARD;Philippe;27/10/1965;Non +84;Vaucluse;04;4ème circonscription;10;14;F;GALVEZ;Monia;21/05/1963;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DJOUMER;Lounes;20/02/1986;Non +84;Vaucluse;05;5ème circonscription;1;37;M;BOURDIER;David;22/03/1971;DVG;Cadre administratif et commercial d'entreprise;Non;F;DALE BOURDIER;Jennifer;24/02/1974;Non +84;Vaucluse;05;5ème circonscription;2;28;F;CELCE;Céline;12/06/1973;NUPES;Cadre de la fonction publique;Non;M;THEROND;Laurent;10/07/1963;Non +84;Vaucluse;05;5ème circonscription;3;47;M;CHALENÇON;Christophe;17/11/1966;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;AMARACHE;Samira;15/11/1976;Non +84;Vaucluse;05;5ème circonscription;4;44;M;PINON;Jean-Paul;21/09/1955;ECO;Profession libérale;Non;F;ROUX;Isabelle;23/10/1970;Non +84;Vaucluse;05;5ème circonscription;5;60;M;VINCETTI;Jean;13/09/1947;ECO;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;ARMAND;Frédérique;01/12/1976;Non +84;Vaucluse;05;5ème circonscription;6;5;M;AUBERT;Julien;11/06/1978;LR;Cadre de la fonction publique;Oui;F;DUPAQUIER;Corinne;10/08/1963;Non +84;Vaucluse;05;5ème circonscription;7;53;M;TRICHAUD;Jérémy;24/08/1997;DSV;Elève, étudiant;Non;F;VERSINI-CABITTA;Sara-Louise;06/08/2000;Non +84;Vaucluse;05;5ème circonscription;8;36;F;RODINSON;Claudine;18/02/1943;DXG;Ancien employé;Non;M;WUJEK;Regis;03/08/1968;Non +84;Vaucluse;05;5ème circonscription;9;27;M;LOVISOLO;Jean-François;15/11/1968;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;LALAURIE;Olivia;28/08/1981;Non +84;Vaucluse;05;5ème circonscription;10;7;F;THOMAS DE MALEVILLE;Marie;21/12/1979;RN;Profession libérale;Non;M;MATHIEU;Aymonn;05/12/1977;Non +84;Vaucluse;05;5ème circonscription;11;26;F;CHAVRIER;Catherine;01/12/1961;REC;Profession libérale;Non;M;LE HIR;Charles;12/06/1998;Non +85;Vendée;01;1ère circonscription;1;11;F;N'DONG;Lilas;09/03/1982;RN;Profession libérale;Non;M;DEBERGUE;Gérard;04/01/1954;Non +85;Vendée;01;1ère circonscription;2;9;M;CAILLAUD;Laurent;01/11/1968;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;DURAND FLAIRE;Roselyne;03/09/1958;Non +85;Vendée;01;1ère circonscription;3;51;F;SALAMA;Aya;03/11/2003;REG;Elève, étudiant;Non;M;PINON;Anthony;12/10/1993;Non +85;Vendée;01;1ère circonscription;4;12;M;PILET;Vincent;23/05/1970;DVD;Commerçant et assimilé;Non;M;JAUNET;Dany;05/09/1979;Non +85;Vendée;01;1ère circonscription;5;40;M;HEE;Jean-François;01/06/1967;DSV;Artisan;Non;M;ROGIER;Pascal Alexandre;29/08/1960;Non +85;Vendée;01;1ère circonscription;6;37;M;LATOMBE;Philippe;21/04/1975;ENS;Cadre administratif et commercial d'entreprise;Oui;M;SCHNEL;Maximilien;07/08/1986;Non +85;Vendée;01;1ère circonscription;7;20;F;ETONNO;Lucie;22/04/1986;NUPES;Employé de commerce;Non;M;RAFFIN;Tony;16/09/1974;Non +85;Vendée;01;1ère circonscription;8;22;M;MAUVOISIN-DELAVAUD;Eric;26/08/1964;REC;Profession de l'information, des arts et des spectacles;Non;F;PAOLI;Valérie;24/04/1969;Non +85;Vendée;01;1ère circonscription;9;33;M;DUBOIS;Arthur;30/06/1986;ECO;Technicien;Non;F;DUBOIS;Mathilde;10/06/1986;Non +85;Vendée;01;1ère circonscription;10;19;M;DREYFUS;Etienne;14/11/1980;DSV;Technicien;Non;F;FAURE;Christiane;03/03/1962;Non +85;Vendée;01;1ère circonscription;11;14;M;ROBIN;Gilles;05/03/1957;DXG;Ancienne profession intermédiaire;Non;M;FERRÉ;Cyrille;12/10/1978;Non +85;Vendée;01;1ère circonscription;12;32;M;BOUYER;Alain;25/04/1959;ECO;Ancienne profession intermédiaire;Non;F;LE GAL LA SALLE;Annie;07/06/1965;Non +85;Vendée;02;2ème circonscription;1;42;F;ORIZET-VIEILLEFOND;Sophie;07/09/1965;DVD;Profession intermédiaire administrative et commerciale des entreprises;Non;M;BARIL;Joël;03/06/1948;Non +85;Vendée;02;2ème circonscription;2;29;M;MARCHAND;Jérôme;05/02/1966;ECO;Technicien;Non;F;MARCHAND;Patricia;26/04/1957;Non +85;Vendée;02;2ème circonscription;3;38;M;LOISEAU;Patrick;08/05/1960;DVC;Cadre de la fonction publique;Oui;F;TESSON;Brigitte;06/01/1959;Non +85;Vendée;02;2ème circonscription;4;41;F;GRÉAU;Ninon;18/12/1999;ECO;Elève, étudiant;Non;M;BRIDONNEAU;Titouan;24/08/1999;Non +85;Vendée;02;2ème circonscription;5;15;F;BARILLOT;Sophie;14/11/1961;DXG;Ancien employé;Non;M;GUYON;Stéphane;05/05/1969;Non +85;Vendée;02;2ème circonscription;6;52;F;GHOUALI;Célia;06/08/1996;DIV;Profession intermédiaire de la santé et du travail social;Non;M;LEMOINE;Arthur;07/05/1985;Non +85;Vendée;02;2ème circonscription;7;6;M;DE RUGY;Maxence;25/10/1982;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MOINET;Isabelle;07/06/1958;Non +85;Vendée;02;2ème circonscription;8;24;F;NEVEUX;Brigitte;09/05/1944;REC;Ancienne profession intermédiaire;Non;M;DE CHANTERAC;François;14/12/1958;Non +85;Vendée;02;2ème circonscription;9;23;F;BELLAMY;Béatrice;20/10/1966;ENS;Cadre administratif et commercial d'entreprise;Non;M;CAYEUX;Philippe;09/11/1971;Non +85;Vendée;02;2ème circonscription;10;34;M;JAMONNEAU;Benoît;15/12/1964;DSV;Contremaître, agent de maîtrise;Non;F;GUILLET;Stéphanie;14/12/1967;Non +85;Vendée;02;2ème circonscription;11;25;M;HELARY;Nicolas;04/10/1978;NUPES;Employé civil et agent de service de la fonction publique;Non;F;BOUTET;Elisabeth;11/09/1969;Non +85;Vendée;02;2ème circonscription;12;26;F;CARPENTIER;Sophie;29/06/1969;DSV;Profession intermédiaire de la santé et du travail social;Non;F;LEBON;Cindy;19/10/1984;Non +85;Vendée;02;2ème circonscription;13;2;M;LALOUE;Franck;29/09/1966;RN;Cadre de la fonction publique;Non;F;GARWIG;Jessica;08/08/1990;Non +85;Vendée;03;3ème circonscription;1;10;F;FILLET;Corinne;25/11/1961;RN;Employé civil et agent de service de la fonction publique;Non;M;SANTOS;François;09/04/1997;Non +85;Vendée;03;3ème circonscription;2;53;F;GUÉNOLÉ;Armelle;30/12/1955;DSV;Ancienne profession intermédiaire;Non;M;CHARRIEAU;Robert;02/12/1950;Non +85;Vendée;03;3ème circonscription;3;5;M;BLANCHARD;Alain;31/07/1981;LR;Cadre administratif et commercial d'entreprise;Non;F;RENAUD;Denise;09/06/1952;Non +85;Vendée;03;3ème circonscription;4;16;M;FESTIEN;Philippe;07/01/1959;DXG;Ancien ouvrier;Non;M;NICOLAS;Jean-François;02/08/1964;Non +85;Vendée;03;3ème circonscription;5;31;M;MAUGER;Aurélien;27/09/1990;NUPES;Ouvrier qualifié de type industriel;Non;F;MARCHAND;Pascale;26/03/1957;Non +85;Vendée;03;3ème circonscription;6;47;M;ANDRE;Benjamin;07/03/1999;ECO;Elève, étudiant;Non;F;CHARLOS;Sonia;04/12/1971;Non +85;Vendée;03;3ème circonscription;7;39;M;MOREAU;Jean-Baptiste;17/05/1956;DVD;Ancien cadre;Non;M;LAIDIN;Jean-Michel;17/09/1959;Non +85;Vendée;03;3ème circonscription;8;30;M;BUCHOU;Stéphane;14/03/1974;ENS;Cadre administratif et commercial d'entreprise;Oui;F;ROZO-LUCAS;Orlane;23/08/1990;Non +85;Vendée;04;4ème circonscription;1;8;M;DALCANTARA;Bruno;31/01/1960;RN;Ancien ouvrier;Non;M;FILLET;Jean-Patrick;17/10/1955;Non +85;Vendée;04;4ème circonscription;2;50;M;BABARIT;Théodore;25/04/1999;ECO;Elève, étudiant;Non;M;GELOT;Ludovic;31/05/1984;Non +85;Vendée;04;4ème circonscription;3;48;M;UMLIL;Amine;11/01/1971;DSV;Professeur, profession scientifique;Non;F;ONDET;Edith;03/08/1959;Non +85;Vendée;04;4ème circonscription;4;28;M;MAROLLEAU;Erick;16/03/1952;DVD;Ancien cadre;Non;M;PAVAGEAU;Daniel;22/04/1960;Non +85;Vendée;04;4ème circonscription;5;21;F;BESSE;Véronique;11/08/1963;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;HERVOUET;Eric;13/05/1973;Non +85;Vendée;04;4ème circonscription;6;3;M;LE BARS;Denis;02/02/1968;DVD;Profession de l'information, des arts et des spectacles;Non;M;MOREAU;Florent;25/05/1981;Non +85;Vendée;04;4ème circonscription;7;7;F;FOUQUET;Virginie;23/10/1979;DSV;Commerçant et assimilé;Non;M;GUEDON;Daniel;06/08/1957;Non +85;Vendée;04;4ème circonscription;8;17;F;BOUR;Claude;09/05/1959;DXG;Ancien ouvrier;Non;M;DELEBARRE;Christian;14/03/1971;Non +85;Vendée;04;4ème circonscription;9;43;F;SAUVÊTRE;Céline;08/01/1982;NUPES;Employé civil et agent de service de la fonction publique;Non;M;RONDEAU;Valentin;15/10/1986;Non +85;Vendée;04;4ème circonscription;10;49;F;LEGUILLE-BALLOY;Martine;06/09/1957;ENS;Profession libérale;Oui;M;BARON;Adrien;27/03/1988;Non +85;Vendée;05;5ème circonscription;1;44;M;JIMENEZ;Jordi;06/05/1982;DXG;Profession intermédiaire de la santé et du travail social;Non;F;ARNAUD;Cécile;17/05/1982;Non +85;Vendée;05;5ème circonscription;2;35;M;HENRIET;Pierre;26/11/1991;ENS;Professeur, profession scientifique;Oui;F;GROLLEAU;Magalie;11/08/1973;Non +85;Vendée;05;5ème circonscription;3;18;F;RUAULT;Béatrice;29/09/1964;DXG;Personnel des services directs aux particuliers;Non;M;LEMOINE;Frédéric;04/02/1970;Non +85;Vendée;05;5ème circonscription;4;27;M;DEBOUT;Benjamin;04/05/1988;ECO;Profession libérale;Non;M;SPAHN;Julien;09/07/1990;Non +85;Vendée;05;5ème circonscription;5;45;F;THIBAUD-LALERE;Thimothée;02/05/1995;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PINAUD;Enzo;27/08/1998;Non +85;Vendée;05;5ème circonscription;6;36;M;PERROY;Pierre;28/09/1974;DVD;Contremaître, agent de maîtrise;Non;M;BOURRIER;Yves;17/06/1952;Non +85;Vendée;05;5ème circonscription;7;13;F;DELATRE;Sandrine;03/05/1975;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;VERMEULEN;Antoine;16/04/1993;Non +85;Vendée;05;5ème circonscription;8;54;M;LEGENTILHOMME;Jacqueline;26/08/1961;DSV;Artisan;Non;M;LABAUT;Yvan;30/07/1968;Non +85;Vendée;05;5ème circonscription;9;4;F;MAGNIN;Isabelle;16/04/1974;RN;Personnel des services directs aux particuliers;Non;M;VALOTEAU;Jean-Claude;17/10/1953;Non +85;Vendée;05;5ème circonscription;10;46;F;THIBAUD;Yveline;17/06/1959;LR;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;HERAUD;Michel;25/06/1954;Non +86;Vienne;01;1ère circonscription;1;20;M;GIRAUDET;Alexandre;14/08/1977;ECO;Employé de commerce;Non;F;FLORES-HIDALGO;Guisela;08/12/1982;Non +86;Vienne;01;1ère circonscription;2;15;F;BALLET-BLU;Françoise;09/03/1964;ENS;Profession libérale;Oui;M;ROUET;Pierre-Etienne;09/04/1983;Non +86;Vienne;01;1ère circonscription;3;41;F;DE MASCUREAU;Marie-Aline;26/12/1977;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;TOURNEMINE;Charles;25/09/1990;Non +86;Vienne;01;1ère circonscription;4;5;M;COURTOIS;Kevin;24/04/1992;RN;Ouvrier qualifié de type industriel;Non;F;LACOMBE;Maryse;02/05/1948;Non +86;Vienne;01;1ère circonscription;5;2;M;GAILLARD;Ludovic;11/05/1965;DXG;Professeur, profession scientifique;Non;F;DEHON;Nolwenn;28/04/1987;Non +86;Vienne;01;1ère circonscription;6;27;F;BELLUCO;Lisa;20/07/1988;NUPES;Cadre de la fonction publique;Non;M;PATRIER;Stéphane;17/06/1960;Non +86;Vienne;01;1ère circonscription;7;13;F;FARINE;Elise;01/06/1982;ECO;Profession libérale;Non;F;FARINE-BODET;Alexandrine;31/05/1978;Non +86;Vienne;01;1ère circonscription;8;44;M;LAADNANI;Idriss;10/01/1973;DVG;Professeur, profession scientifique;Non;M;ABRO;Ahmed;01/01/1963;Non +86;Vienne;01;1ère circonscription;9;31;M;ASSOUMANI;Jeannot;17/10/1961;DIV;Commerçant et assimilé;Non;M;KASSIM;Ben;01/10/1982;Non +86;Vienne;01;1ère circonscription;10;17;F;JARRY;Corine;08/12/1961;DSV;Technicien;Non;M;BOUR;Jean-Luc;18/05/1956;Non +86;Vienne;01;1ère circonscription;11;14;M;NEVEUX;Jérôme;01/08/1974;UDI;Cadre administratif et commercial d'entreprise;Non;F;PLISSON;Céline;19/05/1979;Non +86;Vienne;02;2ème circonscription;1;8;M;MAYENGA;Carridy;01/12/1994;ECO;Elève, étudiant;Non;F;COTTEREAU;Albane;29/01/1997;Non +86;Vienne;02;2ème circonscription;2;35;M;BOUCHAREB;Frédéric;25/01/1960;RDG;Profession libérale;Non;F;ASSAYHI;Latifa;02/12/1977;Non +86;Vienne;02;2ème circonscription;3;23;F;PROST;Marie Dolores;16/05/1960;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;F;DEDRYVER;Nicole;14/01/1962;Non +86;Vienne;02;2ème circonscription;4;33;F;SOUMAILLE;Valérie;10/01/1968;NUPES;Professeur, profession scientifique;Non;M;LÉVÊQUE;Aladin;07/06/1991;Non +86;Vienne;02;2ème circonscription;5;40;M;DESSAUX;Aurélien;19/12/1991;DXD;Profession intermédiaire administrative et commerciale des entreprises;Non;M;LECAUSSIN;Nicolas;09/06/1969;Non +86;Vienne;02;2ème circonscription;6;39;F;DU CHAMBON;Roselyne;17/04/1956;DSV;Ancien cadre;Non;M;KARAMAT;Mounir;21/03/1986;Non +86;Vienne;02;2ème circonscription;7;4;F;PHILIPPE;Céline;31/05/1979;RN;Commerçant et assimilé;Non;M;DUBOIS;Julien;02/01/1999;Non +86;Vienne;02;2ème circonscription;8;45;F;FERREIRA;Maryse;24/12/1973;DVG;Professeur des écoles, instituteur et assimilé;Non;M;KARROUM;Driss;10/10/1954;Non +86;Vienne;02;2ème circonscription;9;11;F;CHAUVIN;Agnes;05/07/1974;DXG;Professeur des écoles, instituteur et assimilé;Non;M;BARERE;François;14/08/1967;Non +86;Vienne;02;2ème circonscription;10;19;M;HOULIÉ;Sacha;08/10/1988;ENS;Profession libérale;Oui;F;GIRARD;Sandra;13/11/1973;Non +86;Vienne;02;2ème circonscription;11;29;M;OUSSENI;Soifidine;01/01/1974;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;AUGER;Sarah;15/06/1974;Non +86;Vienne;03;3ème circonscription;1;21;M;LEPERCQ;Olivier;17/03/1966;REC;Commerçant et assimilé;Non;F;REMONDIERE-ROUX;Géraldine;06/01/1982;Non +86;Vienne;03;3ème circonscription;2;7;F;JOUAN;Soizic;03/01/1970;DXG;Professeur des écoles, instituteur et assimilé;Non;M;CHAUVIN;Gérard;01/06/1946;Non +86;Vienne;03;3ème circonscription;3;26;M;BOCK;François;08/02/1971;DVD;Cadre administratif et commercial d'entreprise;Non;F;BURBAUD;Marie-Catherine;25/04/1960;Non +86;Vienne;03;3ème circonscription;4;10;F;BORTOLOTTI;Sabine;25/11/1977;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MONNAIS;Xavier;10/02/1962;Non +86;Vienne;03;3ème circonscription;5;32;M;ZERBIB;Léonard;24/11/1993;LR;Profession libérale;Non;F;LARDEAU-MAUXION;Sylviane;24/09/1965;Non +86;Vienne;03;3ème circonscription;6;36;M;LECAMP;Pascal;06/04/1958;ENS;Cadre administratif et commercial d'entreprise;Non;F;GIRAUDEAU;Virginie Célia;03/03/1984;Non +86;Vienne;03;3ème circonscription;7;38;M;VALENTE;Jason;31/08/1990;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;F;GIRAUD;Dominique;20/12/1954;Non +86;Vienne;03;3ème circonscription;8;34;M;CLÉMENT;Jean-Michel;31/10/1954;DVG;Profession libérale;Oui;F;LE MEUR;Françoise;14/02/1955;Non +86;Vienne;03;3ème circonscription;9;12;M;SOULAT;Eric;11/07/1972;RN;Employé civil et agent de service de la fonction publique;Non;F;GOUBAULT;Véronique;04/01/1969;Non +86;Vienne;03;3ème circonscription;10;42;F;BARBOT;Isabelle;02/02/1971;ECO;Employé de commerce;Non;M;CRUZEL;Alain;31/01/1965;Non +86;Vienne;03;3ème circonscription;11;9;M;MINOT;Patrick;05/08/1972;DVD;Agriculteur sur moyenne exploitation;Non;M;ZANARDO;Jean-Louis;21/09/1965;Non +86;Vienne;03;3ème circonscription;12;30;F;BOUTAYEB;Fatiha;18/03/1973;DIV;Commerçant et assimilé;Non;M;ABDOU;Daoud;01/01/1957;Non +86;Vienne;04;4ème circonscription;1;18;M;TURQUOIS;Nicolas;26/07/1972;ENS;Agriculteur sur grande exploitation;Oui;F;DAUGE;Valérie;14/12/1967;Non +86;Vienne;04;4ème circonscription;2;28;M;AUGER;Fabrice;21/01/1972;DIV;Commerçant et assimilé;Non;F;AUGER;Eva;28/01/1999;Non +86;Vienne;04;4ème circonscription;3;43;M;LIEUTET;Gerard;23/03/1949;REG;Ancien artisan, commerçant, chef d'entreprise;Non;M;KHNAFO;Dalhia;09/01/1974;Non +86;Vienne;04;4ème circonscription;4;16;F;PIMOT;Sylvie;27/04/1975;ECO;Employé civil et agent de service de la fonction publique;Non;F;BOURREAU;Alexia;24/06/1996;Non +86;Vienne;04;4ème circonscription;5;37;M;GUICHARD;Patrick;07/03/1954;DSV;Ancien cadre;Non;F;DE MAESTRI;Marie-José;05/04/1963;Non +86;Vienne;04;4ème circonscription;6;6;M;VILLERET;Patrice;24/06/1962;DXG;Ouvrier qualifié de type industriel;Non;F;MARAICHER;Sylvie;22/09/1972;Non +86;Vienne;04;4ème circonscription;7;3;F;LATUS;Marion;10/02/1993;RN;Profession intermédiaire de la santé et du travail social;Non;M;TOULET;Jérôme;21/08/1976;Non +86;Vienne;04;4ème circonscription;8;25;M;CARTIER;Flavien;30/08/1993;NUPES;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;BENCHERNINE;Nadia;25/11/1965;Non +86;Vienne;04;4ème circonscription;9;22;M;VERDIN;Alain;20/03/1953;REC;Policier et militaire;Non;F;DOMINGUEZ;Michèle;09/08/1956;Non +87;Haute-Vienne;01;1ère circonscription;1;13;F;TAMBO;Stéphanie;15/12/1975;DVD;Profession libérale;Non;M;RAYNAUD;Xavier;27/04/1969;Non +87;Haute-Vienne;01;1ère circonscription;2;2;F;MARQUET;Fabienne;09/07/1971;REC;Cadre administratif et commercial d'entreprise;Non;M;ROUFFIGNAC;Jean;19/05/1950;Non +87;Haute-Vienne;01;1ère circonscription;3;7;M;VALIERE-VIALEIX;Jean;13/01/1976;LR;Profession libérale;Non;F;BELEZY;Géraldine;14/06/1989;Non +87;Haute-Vienne;01;1ère circonscription;4;20;F;GÉDOUX;Christiane;14/09/1951;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;LOUIC;Cyril;16/08/1972;Non +87;Haute-Vienne;01;1ère circonscription;5;14;F;BEAUDOUIN HUBIERE;Sophie;20/11/1972;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;NEGRIER;Isabelle;10/08/1964;Non +87;Haute-Vienne;01;1ère circonscription;6;19;M;PROVOST;David;11/05/1992;DIV;Technicien;Non;F;AMSELEK JAQUET;Louise;18/05/1984;Non +87;Haute-Vienne;01;1ère circonscription;7;10;F;FAUCON;Elisabeth;22/11/1965;DXG;Professeur, profession scientifique;Non;F;DESROCHES;Isabelle;12/12/1954;Non +87;Haute-Vienne;01;1ère circonscription;8;15;M;MAUDET;Damien;14/11/1996;NUPES;Cadre administratif et commercial d'entreprise;Non;F;SERIER;Cassandra;14/08/1993;Non +87;Haute-Vienne;02;2ème circonscription;1;17;M;DELAUTRETTE;Stéphane;20/09/1972;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;RABETEAU;Emilie;02/03/1981;Non +87;Haute-Vienne;02;2ème circonscription;2;5;M;BOST;Jean Marie;16/02/1955;LR;Ancien artisan, commerçant, chef d'entreprise;Non;M;BATTISTINI;Benjamin;29/04/1983;Non +87;Haute-Vienne;02;2ème circonscription;3;25;M;COGNERAS;Cyril;20/05/1972;REG;Employé civil et agent de service de la fonction publique;Non;F;GUILLOT;Corinne;06/01/1978;Non +87;Haute-Vienne;02;2ème circonscription;4;22;M;BONNET;Jean-Luc;18/03/1967;DVC;Cadre administratif et commercial d'entreprise;Non;M;VENTEAU;Bertrand;17/01/1979;Non +87;Haute-Vienne;02;2ème circonscription;5;3;F;ROUSSIE;Claudine;13/12/1950;DXG;Ancienne profession intermédiaire;Non;F;CHAPELOT;Monique;09/01/1956;Non +87;Haute-Vienne;02;2ème circonscription;6;23;M;GENDARME;Daniel;09/08/1982;DVG;Artisan;Non;F;CORNU;Micheline;09/08/1968;Non +87;Haute-Vienne;02;2ème circonscription;7;21;F;MINGUET;Sabrina;23/08/1991;RN;Profession intermédiaire de la santé et du travail social;Non;M;LECHEVALLIER;Christophe;23/12/1967;Non +87;Haute-Vienne;02;2ème circonscription;8;16;F;CARRE;Gisèle;29/05/1955;REC;Profession libérale;Non;M;DEVAUD;Jean-Michel;19/09/1949;Non +87;Haute-Vienne;02;2ème circonscription;9;24;F;ZAITER;Shérazade;12/03/1973;ENS;Profession libérale;Non;M;PAROT;Geoffrey;05/01/1976;Non +87;Haute-Vienne;03;3ème circonscription;1;18;M;TOULZA;Gilles;22/06/1959;LR;Cadre administratif et commercial d'entreprise;Non;F;MÉZILLE;Nathalie;01/05/1972;Non +87;Haute-Vienne;03;3ème circonscription;2;8;M;FREYCHET;Albin;10/01/1992;RN;Cadre de la fonction publique;Non;M;WILLY;Jonathan;16/04/1986;Non +87;Haute-Vienne;03;3ème circonscription;3;12;M;MOURNETAS;Daniel;12/10/1954;DXG;Ancien employé;Non;F;DANEN;Chantal;22/12/1955;Non +87;Haute-Vienne;03;3ème circonscription;4;26;M;SABOUNE;Nazih;06/09/1967;DVC;Ingénieur et cadre technique d'entreprise;Non;F;GAUVIN;Anne-Céline;24/07/1993;Non +87;Haute-Vienne;03;3ème circonscription;5;11;M;ARDANT;Antoine;08/11/1960;REC;Ancienne profession intermédiaire;Non;F;LAFOURCADE;Josiane;03/06/1958;Non +87;Haute-Vienne;03;3ème circonscription;6;6;M;SARDIN;Geoffroy;01/04/1969;ENS;Chef d'entreprise de 10 salariés ou plus;Non;M;MERIGOUX;Roland;02/04/1968;Non +87;Haute-Vienne;03;3ème circonscription;7;9;F;MEUNIER;Manon;30/03/1996;NUPES;Cadre de la fonction publique;Non;M;FONTANILLAS;Eric;28/03/1976;Non +87;Haute-Vienne;03;3ème circonscription;8;4;F;BROSSARD;Corinne;13/12/1964;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;UPTON-DESOBRY;Elisabeth;09/08/1947;Non +87;Haute-Vienne;03;3ème circonscription;9;27;M;LEONIE;Vincent;14/06/1974;DVC;Cadre de la fonction publique;Non;F;LE NORMAND;Valérie;23/07/1982;Non +87;Haute-Vienne;03;3ème circonscription;10;28;F;RASSAT;Nelly;06/08/1983;REG;Employé civil et agent de service de la fonction publique;Non;M;CAILLON;Maxime;06/10/1977;Non +88;Vosges;01;1ère circonscription;1;20;F;ABBOT;Evelyne;06/07/1953;DXG;Ancienne profession intermédiaire;Non;M;PELLICIOLI;Cyrille;26/10/1975;Non +88;Vosges;01;1ère circonscription;2;35;F;MONANGE;Anne-Sophie;04/08/1966;ENS;Cadre administratif et commercial d'entreprise;Non;M;PETIT;Christophe;08/09/1969;Non +88;Vosges;01;1ère circonscription;3;29;M;NICOLAZZI;Maxime;10/03/1948;DXG;Ancienne profession intermédiaire;Non;F;HALTER;Sandrine;28/05/1968;Non +88;Vosges;01;1ère circonscription;4;36;F;MOONS;Emmie;04/01/1998;RN;Employé de commerce;Non;F;VAIVRE;Sophie;03/02/1973;Non +88;Vosges;01;1ère circonscription;5;33;F;AJDIR;Ihsane;26/04/1983;DIV;Commerçant et assimilé;Non;M;BOUHASSOUN;Mohamed;27/04/1970;Non +88;Vosges;01;1ère circonscription;6;13;M;FETET;Jules;14/11/1988;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;D'HABIT-PERRIN;Dominique;10/03/1962;Non +88;Vosges;01;1ère circonscription;7;28;M;AIT AHMED;Mohamed;26/01/1982;ECO;Artisan;Non;F;HOVASSE;Emilie;03/04/1984;Non +88;Vosges;01;1ère circonscription;8;6;M;VIRY;Stéphane;14/10/1969;LR;Profession libérale;Oui;M;HAXAIRE;Cédric;29/08/1984;Non +88;Vosges;01;1ère circonscription;9;7;M;DUPARCQ;Eric;22/05/1966;DSV;Ouvrier agricole;Non;F;MENGOZZI;Josiane;11/11/1958;Non +88;Vosges;01;1ère circonscription;10;37;F;ROSSATO;Elisabetta;05/12/1985;DIV;Ingénieur et cadre technique d'entreprise;Non;M;CLAVER;Julien;25/11/1985;Non +88;Vosges;01;1ère circonscription;11;17;M;PERRY;Stéphane;13/06/1963;REC;Technicien;Non;F;ARMENGAUD;Isabelle;10/01/1972;Non +88;Vosges;02;2ème circonscription;1;5;M;THIEBAUT;Emmanuel;31/12/1968;ECO;Technicien;Non;M;CHOSEROT;Jean-Michaël;27/06/1994;Non +88;Vosges;02;2ème circonscription;2;4;M;VALENCE;David;07/10/1981;ENS;Professeur, profession scientifique;Non;F;PRINCE;Charline;07/02/1993;Non +88;Vosges;02;2ème circonscription;3;27;F;MOREAU;Charlotte;15/04/1992;NUPES;Employé civil et agent de service de la fonction publique;Non;M;CALBRIX;Sylvain;18/02/1956;Non +88;Vosges;02;2ème circonscription;4;24;M;CHAMBROT;Lionel;23/03/1971;DXG;Employé administratif d'entreprise;Non;F;BONNAFÉ;Sandrine;13/03/1972;Non +88;Vosges;02;2ème circonscription;5;10;F;PRIVAT MATTIONI;Caroline;21/08/1974;LR;Artisan;Non;M;LALLEMAND;Nicolas;17/10/1990;Non +88;Vosges;02;2ème circonscription;6;12;M;SCHAFFHAUSER;Jean-Luc;17/12/1955;DXD;Ancien artisan, commerçant, chef d'entreprise;Non;M;DUMET;Alain;24/11/1954;Non +88;Vosges;02;2ème circonscription;7;11;M;ROBINOT;Pierre-Jean;12/03/1965;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;BERRUET;Jean-Luc;24/11/1961;Non +88;Vosges;02;2ème circonscription;8;38;M;JUGOWAL;Sudarshan;10/07/1991;ECO;Employé civil et agent de service de la fonction publique;Non;M;JUGOWAL;Suyash;24/05/1998;Non +88;Vosges;02;2ème circonscription;9;16;F;CANADAS;Martine;14/03/1961;DVD;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;GRENOT;Kévin;31/05/1994;Non +88;Vosges;02;2ème circonscription;10;21;F;LANGLADE;Jeanne-Françoise;31/08/1945;DXG;Ancienne profession intermédiaire;Non;M;JEUDY;Clément;15/05/1988;Non +88;Vosges;02;2ème circonscription;11;39;F;MORÉ;Elisa;26/12/2000;REG;Elève, étudiant;Non;M;ORTNER;François;01/03/1995;Non +88;Vosges;02;2ème circonscription;12;25;M;DUSSAUSAYE;Gaëtan;05/04/1994;RN;Commerçant et assimilé;Non;M;MOUREY;Geoffrey;23/04/1998;Non +88;Vosges;03;3ème circonscription;1;31;M;FRANÇOIS;Pierre;15/04/1986;RN;Cadre administratif et commercial d'entreprise;Non;M;GIROT;Johan;24/12/1995;Non +88;Vosges;03;3ème circonscription;2;2;F;ERB;Anne-Caroline;24/04/1969;REC;Professeur, profession scientifique;Non;M;VALENTIN;Jean-Paul;19/09/1943;Non +88;Vosges;03;3ème circonscription;3;26;F;VILLEMIN;Stéphanie;15/10/1969;ENS;Artisan;Non;M;GEHIN;François;29/10/1952;Non +88;Vosges;03;3ème circonscription;4;23;F;PIERRAT;Béatrice;16/01/1970;NUPES;Ingénieur et cadre technique d'entreprise;Non;M;BILOT;Gilles;30/10/1960;Non +88;Vosges;03;3ème circonscription;5;9;M;NAEGELEN;Christophe;30/12/1983;DVD;Chef d'entreprise de 10 salariés ou plus;Oui;F;PERRIN;Nadine;03/05/1962;Non +88;Vosges;03;3ème circonscription;6;41;M;ZIRGEL;Félix;11/05/1993;REG;Artisan;Non;F;BERTRAND-MONTEMBAULT;Fleur;06/01/1993;Non +88;Vosges;03;3ème circonscription;7;22;F;BAILLY;Stéphanie;03/03/1974;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;DAMGÉ;Wilfrid;04/09/1970;Non +88;Vosges;03;3ème circonscription;8;8;F;COLLIN DUPARCQ;Marina;01/04/1976;DSV;Employé administratif d'entreprise;Non;M;BORNET;Pierre Charles;09/08/1977;Non +88;Vosges;04;4ème circonscription;1;32;M;LAURENT;Christophe;08/02/1954;ENS;Ancien cadre;Non;F;JEANDEL;Corinne;28/11/1972;Non +88;Vosges;04;4ème circonscription;2;30;M;HUMBERT;Sébastien;10/07/1990;RN;Cadre administratif et commercial d'entreprise;Non;M;ALEXANDRE;Christophe;01/11/1971;Non +88;Vosges;04;4ème circonscription;3;18;F;JABRIN;Jocelyne;09/06/1965;REC;Ancien employé;Non;M;HERBUVAUX;Didier;28/04/1962;Non +88;Vosges;04;4ème circonscription;4;3;M;GAULTIER;Jean-Jacques;13/07/1963;LR;Profession libérale;Oui;F;THIEBAUT-GAUDÉ;Carole;21/06/1976;Non +88;Vosges;04;4ème circonscription;5;40;M;FRANQUEVILLE;Christian;14/05/1949;DVG;Ancien employé;Non;M;NICOLLE;Christophe;25/11/1968;Non +88;Vosges;04;4ème circonscription;6;14;M;WEIN;François-Xavier;29/04/1987;NUPES;Profession libérale;Non;F;ROTHIOT;Renée-Lise;26/02/1954;Non +88;Vosges;04;4ème circonscription;7;34;M;MORALES;Thierry;23/08/1967;ECO;Professeur, profession scientifique;Non;F;CHOLLEY;Hélène;16/02/1971;Non +88;Vosges;04;4ème circonscription;8;19;F;BAILLY;Camille;16/07/1949;DXG;Ancien ouvrier;Non;M;KAHL;Luc;05/03/1984;Non +88;Vosges;04;4ème circonscription;9;15;M;HURIOT;Joris;29/12/1992;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MARCHAL;Nathalie;04/08/1976;Non +89;Yonne;01;1ère circonscription;1;8;M;TÉQUI;Paul;23/03/1976;REC;Artisan;Non;M;REDOR;Dimitri;28/07/1994;Non +89;Yonne;01;1ère circonscription;2;13;M;KERMIN;Jean-Charles;05/08/1949;DXG;Ancien employé;Non;F;CADIOU;Alice;21/10/1946;Non +89;Yonne;01;1ère circonscription;3;9;F;MANIGAUT;Sylvie;07/01/1959;DXG;Ancien employé;Non;M;GAUDIAU;Armand;26/07/1950;Non +89;Yonne;01;1ère circonscription;4;21;M;ALBRECHT;Victor;25/03/1992;ENS;Cadre administratif et commercial d'entreprise;Non;M;DEBAIN;Mathieu;14/03/1977;Non +89;Yonne;01;1ère circonscription;5;25;F;LOURY;Florence;08/11/1973;NUPES;Professeur, profession scientifique;Non;F;LAROCHE-FONTAINE;Claire;30/08/1967;Non +89;Yonne;01;1ère circonscription;6;18;M;GRENON;Daniel;31/07/1948;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;BLAISE;Pascal;11/06/1955;Non +89;Yonne;01;1ère circonscription;7;22;F;GUYOT;Elsa;24/06/1986;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;ARNAUD;Patricia;06/10/1965;Non +89;Yonne;01;1ère circonscription;8;34;F;GUYARD;Yvonne;26/01/1937;DSV;Ancien employé;Non;M;MANUEL;Matondo;15/12/1987;Non +89;Yonne;01;1ère circonscription;9;10;M;LARRIVÉ;Guillaume;24/01/1977;LR;Profession libérale;Oui;M;BONNEFOND;Christophe;23/06/1970;Non +89;Yonne;02;2ème circonscription;1;4;F;CARRASCO;Anita;07/01/1963;DXG;Profession intermédiaire de la santé et du travail social;Non;M;SPRINGAUX;Christophe;08/08/1961;Non +89;Yonne;02;2ème circonscription;2;12;F;DUMOULIN;Marie;31/03/1989;REC;Professeur, profession scientifique;Non;M;RÉGNIER;Vincent;01/01/1993;Non +89;Yonne;02;2ème circonscription;3;33;M;FRAYER;Florian;18/01/1982;DVD;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;COURTOIS;Xavier;13/09/1974;Non +89;Yonne;02;2ème circonscription;4;28;M;VILLIERS;André;13/12/1954;ENS;Agriculteur sur grande exploitation;Oui;F;MOREAU;Dorothée;16/10/1974;Non +89;Yonne;02;2ème circonscription;5;15;F;LOPEZ;Audrey;10/09/1976;RN;Profession libérale;Non;M;BLANCHARD;Antoine;08/05/1996;Non +89;Yonne;02;2ème circonscription;6;29;M;VEYSSIERE;Philippe;06/02/1959;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;CALIF;Judicaëlle;04/11/1977;Non +89;Yonne;02;2ème circonscription;7;2;F;NAKOV;Iris;06/11/1989;ECO;Profession libérale;Non;F;VOIS;Caroline;03/08/1986;Non +89;Yonne;02;2ème circonscription;8;23;M;PRESSARD;Patrice;05/10/1964;ECO;Profession libérale;Non;F;RENARD;Karine;07/08/1969;Non +89;Yonne;02;2ème circonscription;9;32;F;CARDONA;Maryse;31/05/1965;DSV;Professeur des écoles, instituteur et assimilé;Non;M;KRAUS;Stephane;26/07/1962;Non +89;Yonne;03;3ème circonscription;1;6;F;LOUIS-STOKOBER;Laurence;09/04/1962;REC;Professeur, profession scientifique;Non;M;LASNIER;Mathieu;04/07/1988;Non +89;Yonne;03;3ème circonscription;2;19;M;ODOUL;Julien;08/05/1985;RN;Cadre administratif et commercial d'entreprise;Non;F;VILBOIS;Annick;28/12/1963;Non +89;Yonne;03;3ème circonscription;3;27;M;PIRMAN;Gilles;10/04/1968;LR;Cadre de la fonction publique;Non;F;PICOUET;Marianne;13/07/1966;Non +89;Yonne;03;3ème circonscription;4;7;M;KHAN;Mehdi;29/03/1983;DVG;Commerçant et assimilé;Non;F;FRESNAIS;Elisabeth;07/02/1965;Non +89;Yonne;03;3ème circonscription;5;3;F;PALLANT;Simonne;13/04/1956;DXG;Ancien employé;Non;M;CARRASCO;José;02/02/1974;Non +89;Yonne;03;3ème circonscription;6;14;F;KERMIN;Annie;03/06/1960;DXG;Ancien employé;Non;M;LEGROS;Thierry;02/08/1967;Non +89;Yonne;03;3ème circonscription;7;30;F;WANG;Aline;06/02/1966;DSV;Profession libérale;Non;F;RIFFAUT;Claudine;18/07/1954;Non +89;Yonne;03;3ème circonscription;8;5;F;CROUZET;Michèle;31/08/1967;ENS;Ancien cadre;Oui;M;HARPER;Patrick;20/08/1951;Non +89;Yonne;03;3ème circonscription;9;20;F;VIGNIER;Agnès;13/04/1959;ECO;Ancien cadre;Non;F;VIGNIER;Viviane;01/09/1968;Non +89;Yonne;03;3ème circonscription;10;24;F;DENÉ;Manon;02/10/1991;NUPES;Profession libérale;Non;M;THIRIET;Jérôme;15/06/1976;Non +89;Yonne;03;3ème circonscription;11;26;F;FRANTZ;Véronique;29/06/1963;DVC;Ancien cadre;Non;M;BOTIN;Marc;08/05/1962;Non +89;Yonne;03;3ème circonscription;12;31;F;HENRY;Florence;27/01/1975;ECO;Profession de l'information, des arts et des spectacles;Non;M;CLÉMENT;Jéremy;15/06/1977;Non +90;Territoire de Belfort;01;1ère circonscription;1;12;M;GRUDLER;Thiebaud;16/04/1993;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GROSDIDIER;Maggy;14/11/1986;Non +90;Territoire de Belfort;01;1ère circonscription;2;4;F;PETITOT;Christiane;15/03/1951;DXG;Ancienne profession intermédiaire;Non;M;FONTANIVE;Yves;21/05/1960;Non +90;Territoire de Belfort;01;1ère circonscription;3;8;F;FILLON;Agnès;07/02/1967;ECO;Cadre administratif et commercial d'entreprise;Non;M;LEBOURGEOIS;Kevin;29/04/1991;Non +90;Territoire de Belfort;01;1ère circonscription;4;2;M;CORDONNIER;Jean;12/12/1991;DSV;Profession libérale;Non;M;ZAJAC;Christian;10/06/1956;Non +90;Territoire de Belfort;01;1ère circonscription;5;7;M;BOUCARD;Ian;05/05/1988;LR;Ancien employé;Oui;M;MESLOT;Damien;11/11/1964;Non +90;Territoire de Belfort;01;1ère circonscription;6;13;F;FRANQUET;Nathalie;08/07/1974;REC;Cadre administratif et commercial d'entreprise;Non;M;SCHAEFFER;Pierre;20/11/2000;Non +90;Territoire de Belfort;01;1ère circonscription;7;17;M;LORIDAT;Gérald;30/05/1957;NUPES;Ancien cadre;Non;F;HAMARD;Juliette;04/04/1974;Non +90;Territoire de Belfort;01;1ère circonscription;8;16;M;BARATAY;Kévin;01/09/1988;DVD;Cadre administratif et commercial d'entreprise;Non;F;DIMITRIADES;Ariane;07/06/1979;Non +90;Territoire de Belfort;01;1ère circonscription;9;3;M;SOUSTELLE;Christophe;12/08/1969;RN;Ingénieur et cadre technique d'entreprise;Non;F;MERAT;Pauline;13/11/1942;Non +90;Territoire de Belfort;02;2ème circonscription;1;18;M;CHAUCHE;Florian;22/01/1984;NUPES;Profession intermédiaire administrative de la fonction publique;Non;F;REGNAUD;Mathilde;14/08/1980;Non +90;Territoire de Belfort;02;2ème circonscription;2;14;M;VALLVERDU;Didier;19/07/1973;DVD;Professeur, profession scientifique;Non;F;CABROL;Marie-Line;31/08/1958;Non +90;Territoire de Belfort;02;2ème circonscription;3;19;F;HANNA;Christelle;09/03/1957;DSV;Profession intermédiaire de la santé et du travail social;Non;F;KUEHN;Marie-France;20/10/1966;Non +90;Territoire de Belfort;02;2ème circonscription;4;15;M;PETITJEAN;Baptiste;19/11/1987;ENS;Cadre de la fonction publique;Non;M;COLIN;Jacques;12/09/1951;Non +90;Territoire de Belfort;02;2ème circonscription;5;11;M;ARCHAMBAULT;Marc;11/07/1963;DXD;Professeur, profession scientifique;Non;M;PITAVAL;Benoît;22/03/1983;Non +90;Territoire de Belfort;02;2ème circonscription;6;9;M;FELEMEZ;Marc;03/12/1969;REC;Professeur, profession scientifique;Non;M;BEY;Denis;21/05/1951;Non +90;Territoire de Belfort;02;2ème circonscription;7;6;M;ZUMKELLER;Michel;21/01/1966;UDI;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;SCHERRER;Matthieu;01/04/1998;Non +90;Territoire de Belfort;02;2ème circonscription;8;10;F;CARNICER;Sophie;29/03/1974;RN;Ouvrier qualifié de type industriel;Non;M;GARGIONI;Marc;10/01/1960;Non +90;Territoire de Belfort;02;2ème circonscription;9;5;M;PHEULPIN;Simon;11/11/1988;DXG;Profession intermédiaire administrative de la fonction publique;Non;F;ROUSSEAUX;Estelle;12/12/1977;Non +91;Essonne;01;1ère circonscription;1;16;M;VEGA;Thiebauld;21/07/1993;RN;Personnel des services directs aux particuliers;Non;F;MAILLE;Jenny;22/06/1993;Non +91;Essonne;01;1ère circonscription;2;60;M;CAMONIN;Jean;07/02/1956;DXG;Ancienne profession intermédiaire;Non;F;MÜLLER;Elisabeth;22/07/1954;Non +91;Essonne;01;1ère circonscription;3;21;F;DANQUIGNY;Christine;21/08/1955;DXG;Ancienne profession intermédiaire;Non;M;RISACHER;François;02/07/1964;Non +91;Essonne;01;1ère circonscription;4;97;M;ZEGHOUF;Medhy;23/10/1991;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;LESAGE;Bernadette;22/06/1956;Non +91;Essonne;01;1ère circonscription;5;105;M;BERLINGEN;Eric;24/04/1969;DVG;Cadre administratif et commercial d'entreprise;Non;F;BOUZIZ;Hayat;20/12/1976;Non +91;Essonne;01;1ère circonscription;6;52;M;DE SCORRAILLE;Antoine;13/07/1996;ECO;Professeur, profession scientifique;Non;M;BRIAND;Raphaël;24/07/1998;Non +91;Essonne;01;1ère circonscription;7;35;F;KETFI;Samira;08/07/1980;LR;Cadre administratif et commercial d'entreprise;Non;M;NSONDÉ;Freddy;17/11/1971;Non +91;Essonne;01;1ère circonscription;8;77;F;AMRANI;Farida;03/09/1976;NUPES;Cadre de la fonction publique;Non;M;SEGURA;Oscar;18/05/1977;Non +91;Essonne;01;1ère circonscription;9;101;M;RICOIS;Jean-François;24/07/1970;DIV;Profession libérale;Non;F;CHARLAND;Murielle;01/11/1973;Non +91;Essonne;01;1ère circonscription;10;79;M;GARNIT;Rafik;22/08/1971;DVG;Ingénieur et cadre technique d'entreprise;Non;F;BEKKOUR;Aurélia;06/06/1992;Non +91;Essonne;01;1ère circonscription;11;9;M;SAIKALY;Joseph;20/03/1952;REC;Cadre de la fonction publique;Non;M;CLEMENTI;Maxime;28/08/2001;Non +91;Essonne;01;1ère circonscription;12;109;F;BAILLEUL;Géraldine;13/07/1996;DIV;Elève, étudiant;Non;M;BARBIER;Anthony;06/06/1996;Non +91;Essonne;02;2ème circonscription;1;31;F;BRYON;Eveline;03/02/1955;REC;Ancienne profession intermédiaire;Non;M;DEPERNET;Stéphane;23/04/1966;Non +91;Essonne;02;2ème circonscription;2;66;F;SY;Mama;03/11/1986;DVD;Profession intermédiaire de la santé et du travail social;Non;M;RASSIER;Gérard;27/01/1955;Non +91;Essonne;02;2ème circonscription;3;41;F;SIFER;Naïma;08/11/1977;ENS;Profession intermédiaire de la santé et du travail social;Non;M;NAUDIN;Christophe;12/08/1982;Non +91;Essonne;02;2ème circonscription;4;28;M;PAROLINI;François;02/04/1953;DVG;Ancien cadre;Non;F;COLONNA;Laetitia;08/12/1975;Non +91;Essonne;02;2ème circonscription;5;39;M;DUGOIN-CLEMENT;Jean-Philippe;15/05/1975;UDI;Cadre de la fonction publique;Non;M;BERTOL;Gino;04/04/1970;Non +91;Essonne;02;2ème circonscription;6;13;F;DA CONCEICAO CARVALHO;Nathalie;31/03/1966;RN;Profession libérale;Non;F;GIRARD;Valérie;15/02/1970;Non +91;Essonne;02;2ème circonscription;7;83;M;HILLAIRE;Mathieu;22/03/1982;NUPES;Technicien;Non;F;GUYET BENAILI;Mounia;23/07/1978;Non +91;Essonne;02;2ème circonscription;8;82;F;PHAN HIEU;Mathilde;06/09/1986;DXG;Professeur, profession scientifique;Non;M;LEBRETON;Olivier;03/04/1971;Non +91;Essonne;02;2ème circonscription;9;29;M;LEMAIRE;Pascal;12/05/1956;ECO;Ancien cadre;Non;F;GAUDE;Emmanuelle;15/07/1989;Non +91;Essonne;02;2ème circonscription;10;106;M;MORELLE;Antonin;14/10/1997;DVD;Employé civil et agent de service de la fonction publique;Non;M;LIGER;Guillaume;15/07/1999;Non +91;Essonne;02;2ème circonscription;11;56;M;BIELAK;Vincent;10/09/1968;DSV;Commerçant et assimilé;Non;M;SARRIQUE;Johan;13/06/1973;Non +91;Essonne;03;3ème circonscription;1;63;F;LOPÈS-VENOT;Joëlle;20/07/1955;DXG;Ancien employé;Non;M;SCHROEDER;Serge;28/02/1955;Non +91;Essonne;03;3ème circonscription;2;96;M;KEMOUNE;Mehdi;17/02/1972;DVG;Contremaître, agent de maîtrise;Non;F;DELETANG;Nadine;04/12/1953;Non +91;Essonne;03;3ème circonscription;3;18;M;MOUSNIER;Gilbert;01/02/1972;RN;Employé de commerce;Non;M;SEVESTRE;Pascal;25/09/1960;Non +91;Essonne;03;3ème circonscription;4;8;F;PERDEREAU;Isabelle;05/01/1961;LR;Commerçant et assimilé;Non;M;VALLÉE;Pierre;06/10/1998;Non +91;Essonne;03;3ème circonscription;5;68;M;IZARD;Alexis;15/06/1992;ENS;Cadre administratif et commercial d'entreprise;Non;F;LE BOURNOT;Nadia;03/05/1972;Non +91;Essonne;03;3ème circonscription;6;61;M;LEMOIGNE;Gérard;14/06/1963;ECO;Cadre de la fonction publique;Non;F;HENRY;Mathilde;12/10/1984;Non +91;Essonne;03;3ème circonscription;7;10;M;CHARVILLAT;Jean-Paul;20/08/1953;DIV;Profession libérale;Non;M;VALENET;Olivier;03/10/1962;Non +91;Essonne;03;3ème circonscription;8;40;F;CHAA BENAHMED;Shéhérazade;05/11/1990;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DORIZON;Maurice;03/02/1946;Non +91;Essonne;03;3ème circonscription;9;78;F;MOREIRA;Alice;27/08/1986;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;DROBNIAK;Pierre;21/05/1992;Non +91;Essonne;03;3ème circonscription;10;95;M;GUSTAVE;Steevy;05/02/1970;NUPES;Profession de l'information, des arts et des spectacles;Non;F;PERRON;Pascale;27/02/1959;Non +91;Essonne;03;3ème circonscription;11;7;M;BAURE;Paul-Henri;17/01/1951;ECO;Contremaître, agent de maîtrise;Non;M;DI STEFANO;François;18/07/1952;Non +91;Essonne;04;4ème circonscription;1;50;M;COQUELET;Jean-Pierre;29/04/1954;DIV;Profession libérale;Non;F;DESTRUEL;Magali;23/04/1966;Non +91;Essonne;04;4ème circonscription;2;71;M;LA SELVE;François;28/09/1993;REC;Cadre de la fonction publique;Non;M;PILATI;Thomas;16/07/1982;Non +91;Essonne;04;4ème circonscription;3;15;M;BOUTALEB;Alain;11/07/1987;RN;Ingénieur et cadre technique d'entreprise;Non;M;FRÖLICH;Jean-Claude;27/05/1943;Non +91;Essonne;04;4ème circonscription;4;93;M;DUMONT;Dimitri;22/10/1975;DVG;Profession de l'information, des arts et des spectacles;Non;M;LE CALVÉ;Christophe;14/03/1977;Non +91;Essonne;04;4ème circonscription;5;100;F;SCACHE;Agathe;01/05/1988;DVC;Profession intermédiaire administrative et commerciale des entreprises;Non;F;FALLETTI;Sandy;06/07/1998;Non +91;Essonne;04;4ème circonscription;6;43;M;MARTIN;Jérémy;22/09/1978;LR;Cadre de la fonction publique;Non;F;KLJAJIC;Isabelle;09/11/1971;Non +91;Essonne;04;4ème circonscription;7;62;M;LOIZILLON;Martin;02/10/1989;DIV;Profession de l'information, des arts et des spectacles;Non;M;LECOMTE;Xavier;27/02/1952;Non +91;Essonne;04;4ème circonscription;8;22;F;DJABALI;Miriam;20/08/1977;DVC;Professeur, profession scientifique;Non;M;MANSON;Pascal;17/02/1959;Non +91;Essonne;04;4ème circonscription;9;34;F;RIXAIN;Marie-Pierre;18/01/1977;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;TRICKOVSKI;Igor;11/06/1977;Non +91;Essonne;04;4ème circonscription;10;75;M;DEME;Amadou;10/06/1968;NUPES;Cadre de la fonction publique;Non;F;COLSON;Marie;14/10/1978;Non +91;Essonne;04;4ème circonscription;11;110;F;POLIZZO;Iliane;21/10/1965;ECO;Profession libérale;Non;M;SÉBIRE;Baptiste;18/12/1992;Non +91;Essonne;04;4ème circonscription;12;5;F;PLOUIN;Juliette;18/09/1975;DXG;Professeur, profession scientifique;Non;M;BARAT;Eric;30/12/1964;Non +91;Essonne;05;5ème circonscription;1;99;M;DEBON;Christophe;05/08/1976;RN;Cadre de la fonction publique;Non;F;DJEMA;Évelyne;06/03/1954;Non +91;Essonne;05;5ème circonscription;2;90;M;ODILLE;Benoît;28/11/1985;DVG;Professeur des écoles, instituteur et assimilé;Non;F;SULTAN;Chérine;22/04/1986;Non +91;Essonne;05;5ème circonscription;3;38;M;MIDY;Paul;25/01/1983;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;NOIROT;Florence;11/04/1969;Non +91;Essonne;05;5ème circonscription;4;102;F;POISSON;Anne-Christine;29/12/1955;DVD;Ancienne profession intermédiaire;Non;M;VANDAME;Stéphane;28/01/1963;Non +91;Essonne;05;5ème circonscription;5;76;F;BARBARAT;Denise;23/10/1968;REC;Cadre administratif et commercial d'entreprise;Non;M;VAILLANT;Guillaume;15/01/1992;Non +91;Essonne;05;5ème circonscription;6;55;M;PAXION;Didier;17/06/1964;DXG;Professeur, profession scientifique;Non;M;ROY;Jean-Philippe;20/03/1968;Non +91;Essonne;05;5ème circonscription;7;72;M;VILLANI;Cédric;05/10/1973;NUPES;Professeur, profession scientifique;Oui;F;CHARPENTIER;Servane;20/01/1976;Non +91;Essonne;05;5ème circonscription;8;69;M;RONFARD-HARET;Marc;18/05/1972;DSV;Technicien;Non;F;PHILIPPE;Adeline;12/12/1970;Non +91;Essonne;05;5ème circonscription;9;19;M;BOURNAT;Michel;28/08/1955;LR;Ancien cadre;Non;M;TRÉBULLE;François Guy;10/02/1971;Non +91;Essonne;06;6ème circonscription;1;33;F;ASKAR;Ecaterina;25/12/1948;DSV;Profession libérale;Non;M;MARIE-CLAIRE;Kevin;22/01/1997;Non +91;Essonne;06;6ème circonscription;2;48;F;LONCHAMPT;Wendy;05/10/1993;REC;Ingénieur et cadre technique d'entreprise;Non;M;GOMES;Antonio;02/04/1967;Non +91;Essonne;06;6ème circonscription;3;26;F;LACARRIERE;Chantal;03/01/1964;LR;Cadre administratif et commercial d'entreprise;Non;M;HOUËT;Jordan;24/09/1996;Non +91;Essonne;06;6ème circonscription;4;107;M;SAHARI;Mokrane;22/08/1964;DVD;Cadre de la fonction publique;Non;F;HENNEBIQUE;Louise;04/02/2002;Non +91;Essonne;06;6ème circonscription;5;88;F;PIOTELAT;Elisabeth;18/04/1971;DVG;Cadre de la fonction publique;Non;M;MARTIN-GOMEZ;Pablo;08/08/1991;Non +91;Essonne;06;6ème circonscription;6;23;F;HADDAD;Lisa;19/04/1964;RN;Cadre administratif et commercial d'entreprise;Non;M;AUGER;Marcellin;26/04/1962;Non +91;Essonne;06;6ème circonscription;7;103;M;ROHAULT DE FLEURY;Jules;21/11/2002;ECO;Elève, étudiant;Non;F;DIRLEWANGER-LÜCKE;Johanna;07/07/1998;Non +91;Essonne;06;6ème circonscription;8;89;M;CHEN;Franck;02/12/1979;DVD;Artisan;Non;M;CAMP;Aubry;07/04/1998;Non +91;Essonne;06;6ème circonscription;9;3;F;DE MONTCHALIN;Amélie;19/06/1985;ENS;Cadre administratif et commercial d'entreprise;Non;M;OLLIER;Pierre;10/12/1962;Non +91;Essonne;06;6ème circonscription;10;73;M;BARONET;Pierre;27/12/1989;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CALAME;Adeline;06/11/1982;Non +91;Essonne;06;6ème circonscription;11;2;M;VAYSSIÈRE;Bastien;26/12/1985;DXG;Professeur, profession scientifique;Non;M;JANCO;Nicolas;30/01/1981;Non +91;Essonne;06;6ème circonscription;12;81;M;GUEDJ;Jérôme;23/01/1972;NUPES;Profession libérale;Non;F;KRIBI-ROMDHANE;Hella;20/03/1980;Non +91;Essonne;06;6ème circonscription;13;30;F;BOMMELAER;Esther;08/01/2001;ECO;Elève, étudiant;Non;F;PORTEIRON;Léa;03/04/2002;Non +91;Essonne;07;7ème circonscription;1;92;F;MARIE;Florie;20/10/1987;DVG;Ingénieur et cadre technique d'entreprise;Non;M;DALICHAMPT;Thibaut;08/07/1996;Non +91;Essonne;07;7ème circonscription;2;49;M;CARDOSO;Antony;17/12/1992;REC;Commerçant et assimilé;Non;M;MICHAUT;François;25/06/1961;Non +91;Essonne;07;7ème circonscription;3;108;F;DAAS;Rabia;04/05/1965;DVC;Employé civil et agent de service de la fonction publique;Non;F;MOUSSAOUI;Karima;21/05/1972;Non +91;Essonne;07;7ème circonscription;4;42;M;REDA;Robin;10/05/1991;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;VILAIN;Jean-Marie;10/06/1959;Non +91;Essonne;07;7ème circonscription;5;91;M;DUMAINE;Julien;23/07/1992;LR;Ingénieur et cadre technique d'entreprise;Non;M;DUGOIN;Xavier;04/08/1986;Non +91;Essonne;07;7ème circonscription;6;104;M;RACINE;Jacques;31/07/1951;DIV;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;CANTREL;Luc;14/11/1957;Non +91;Essonne;07;7ème circonscription;7;12;M;HOQUET;Marc;04/06/1959;DXG;Technicien;Non;M;OLIVIER;François-Georges;21/01/1974;Non +91;Essonne;07;7ème circonscription;8;24;F;GUIBERT;Audrey;07/07/1986;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;F;LOPES;Monique;05/09/1980;Non +91;Essonne;07;7ème circonscription;9;53;M;VAGNEUX;Olivier;28/10/1991;ECO;Profession libérale;Non;M;CORBIN;Jean-Marie;15/09/1967;Non +91;Essonne;07;7ème circonscription;10;94;F;LEJEUNE;Claire;07/09/1994;NUPES;Professeur, profession scientifique;Non;M;NOURI;Ouaddah;15/11/1979;Non +91;Essonne;07;7ème circonscription;11;58;F;RIGOLLET;Josselyne;10/08/1950;DSV;Ancien cadre;Non;M;COURIC;Guillaume;14/09/2002;Non +91;Essonne;07;7ème circonscription;12;45;F;BOMPARD;Catherine;17/03/1978;ECO;Ancien cadre;Non;M;VOLPI;David;31/08/1986;Non +91;Essonne;08;8ème circonscription;1;27;M;DUPONT-AIGNAN;Nicolas;07/03/1961;DSV;Cadre de la fonction publique;Oui;F;BECK;Bernadette;17/12/1947;Non +91;Essonne;08;8ème circonscription;2;84;F;CHAZETTE-GUILLET;Emilie;26/05/1980;NUPES;Professeur, profession scientifique;Non;M;DANET;Medhy;26/05/2001;Non +91;Essonne;08;8ème circonscription;3;64;M;DOHIN;Nicolas;13/01/1985;LR;Policier et militaire;Non;F;CARILLON;Sylvie;14/01/1965;Non +91;Essonne;08;8ème circonscription;4;11;M;GUIGUET;Jean-Claude;23/03/1949;DIV;Professeur, profession scientifique;Non;F;VANHULLE;Maryse;22/04/1958;Non +91;Essonne;08;8ème circonscription;5;14;M;JACOB;Daniel;19/03/1952;DIV;Ancien cadre;Non;F;PARSY;Ines;23/12/1999;Non +91;Essonne;08;8ème circonscription;6;32;M;BIDA;Mohamed;01/01/1962;ENS;Ancien cadre;Non;F;ALCARAZ;Nathalie;13/02/1966;Non +91;Essonne;08;8ème circonscription;7;59;F;DUBOULAY;Chantal;01/12/1953;DXG;Ancien employé;Non;F;GILARDI;Dominique;18/07/1964;Non +91;Essonne;09;9ème circonscription;1;74;F;GUÉVENOUX;Marie;02/11/1976;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;HUSSON;Eric;06/07/1963;Non +91;Essonne;09;9ème circonscription;2;54;M;MAZURIÉ;Lionel;21/07/1972;DSV;Profession libérale;Non;F;LEPAGE;Audrey;16/03/1984;Non +91;Essonne;09;9ème circonscription;3;25;M;STEENS;Philippe;23/05/1974;RN;Policier et militaire;Non;F;ALVES;Hélène;29/09/1971;Non +91;Essonne;09;9ème circonscription;4;65;M;BERNARD;Antonin;07/03/1996;ECO;Elève, étudiant;Non;F;SCHLOSS;Isabelle;29/11/1965;Non +91;Essonne;09;9ème circonscription;5;98;M;BENAMOU;Michel;21/09/1960;DIV;Cadre de la fonction publique;Non;F;D'HAUSSY;Florence;23/11/1971;Non +91;Essonne;09;9ème circonscription;6;17;F;HIDRI;Faten;09/04/1981;UDI;Profession libérale;Non;M;PETEL;Yann;13/06/1958;Non +91;Essonne;09;9ème circonscription;7;47;M;MERRIEN;Paul-Henri;19/09/1962;REC;Commerçant et assimilé;Non;F;MARTIN;Marie-Celine;17/03/1997;Non +91;Essonne;09;9ème circonscription;8;44;M;GRISAUD;Benoit;12/12/1971;DXG;Professeur, profession scientifique;Non;F;FELTRIN;Marianne;03/05/1960;Non +91;Essonne;09;9ème circonscription;9;57;F;BELETRECHE;Nadhera;18/05/1982;NUPES;Cadre de la fonction publique;Non;M;HEDJEM;Sami;09/01/1972;Non +91;Essonne;10;10ème circonscription;1;51;F;BELLON;Sandrine;16/06/1965;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LUCA;De Paris;30/08/1970;Non +91;Essonne;10;10ème circonscription;2;37;M;DE BOISHUE;Nicolas;06/04/1972;LR;Profession intermédiaire de la santé et du travail social;Non;M;DUMAS;Augustin;22/12/1986;Non +91;Essonne;10;10ème circonscription;3;111;F;AZZOUNI;Sabrine;10/07/1997;REG;Elève, étudiant;Non;M;LERON;Nicolas;12/08/1983;Non +91;Essonne;10;10ème circonscription;4;86;M;ZAOUI;Mustapha;28/01/1974;ECO;Ancien ouvrier;Non;F;GOMIS;Adelaïde;02/09/1981;Non +91;Essonne;10;10ème circonscription;5;36;F;CARCASSET;Nadia;08/01/1973;ENS;Cadre de la fonction publique;Non;M;SITCHARN;Ruddy;17/12/1969;Non +91;Essonne;10;10ème circonscription;6;6;F;LECLERC;Monique;07/06/1955;DXG;Ancienne profession intermédiaire;Non;M;LÉVÊQUE;Yves;05/11/1962;Non +91;Essonne;10;10ème circonscription;7;46;F;REHAB;Hanna;25/05/1996;ECO;Employé de commerce;Non;F;KERNEIS;Murielle;20/01/1959;Non +91;Essonne;10;10ème circonscription;8;4;M;CAMUS;Stephane;15/07/1972;DVD;Profession libérale;Non;F;LOBATO CORREA;Sarita;16/10/1977;Non +91;Essonne;10;10ème circonscription;9;70;F;CORMIER;Claudine;09/11/1964;ECO;Cadre de la fonction publique;Non;F;SPIRAL;Christine;27/04/1964;Non +91;Essonne;10;10ème circonscription;10;67;F;VERA-FONTANO;Inès;31/07/2001;REC;Elève, étudiant;Non;M;GACHON;Mathis;16/11/2000;Non +91;Essonne;10;10ème circonscription;11;20;F;GODIER;Marie;15/02/1979;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DULONG;Georges;13/03/1959;Non +91;Essonne;10;10ème circonscription;12;85;M;LÉAUMENT;Antoine;04/09/1989;NUPES;Cadre administratif et commercial d'entreprise;Non;F;KÖSE;Anaïs;25/06/1998;Non +92;Hauts-de-Seine;01;1ère circonscription;1;29;M;BENTAJ;Abdelaziz;11/03/1969;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;DE LONGUEVILLE;Diane;25/07/1978;Non +92;Hauts-de-Seine;01;1ère circonscription;2;133;F;DANGAS;Corinne;24/10/1970;DIV;Profession libérale;Non;M;KEMPF;Paul-Antoine;25/08/1988;Non +92;Hauts-de-Seine;01;1ère circonscription;3;107;M;QUIRANTE;Gaël;19/08/1975;DXG;Employé civil et agent de service de la fonction publique;Non;F;PERTUS;Armelle;27/11/1975;Non +92;Hauts-de-Seine;01;1ère circonscription;4;134;F;BOUMEDIENNE;Samir;31/05/1971;DIV;Technicien;Non;F;OUERTANI;Ouissila;27/09/1983;Non +92;Hauts-de-Seine;01;1ère circonscription;5;116;F;LE GAL;Anna;21/08/1959;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;BARUCHET;Isabelle;10/10/1960;Non +92;Hauts-de-Seine;01;1ère circonscription;6;22;F;DÉCAILLET;Marie-Laure;02/10/1967;REC;Cadre administratif et commercial d'entreprise;Non;M;MUFANA;Loïc;27/02/1997;Non +92;Hauts-de-Seine;01;1ère circonscription;7;66;F;CAMARA;Mariam;26/03/1982;RN;Employé de commerce;Non;M;CARRÉ;Roland;02/04/1990;Non +92;Hauts-de-Seine;01;1ère circonscription;8;46;F;JAN;Corinne;17/09/1956;DXG;Professeur des écoles, instituteur et assimilé;Non;F;LOUPIAS;Anne;26/11/1972;Non +92;Hauts-de-Seine;01;1ère circonscription;9;99;M;CHOLLET;Gary;07/12/1994;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;DAUDANS;Jean-Marc;27/07/1953;Non +92;Hauts-de-Seine;01;1ère circonscription;10;65;F;BOUNAB;Zina;04/03/1955;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;DELOBELLE;François;21/06/1959;Non +92;Hauts-de-Seine;01;1ère circonscription;11;16;F;FAUCILLON;Elsa;06/08/1981;NUPES;Cadre administratif et commercial d'entreprise;Oui;F;BOUCHOUICHA;Evelyne;25/04/1959;Non +92;Hauts-de-Seine;01;1ère circonscription;12;90;F;BADIN;Marie-Ange;27/01/1989;ENS;Cadre administratif et commercial d'entreprise;Non;F;ABITA;Marie;26/06/1970;Non +92;Hauts-de-Seine;02;2ème circonscription;1;60;F;ISAAC;Christel;27/12/1974;ECO;Profession intermédiaire de la santé et du travail social;Non;M;BENTEBRA;Mohamed;06/06/1972;Non +92;Hauts-de-Seine;02;2ème circonscription;2;91;M;MARTIN SAINT LEON;Laurent;25/01/1967;DVC;Cadre administratif et commercial d'entreprise;Non;F;DELSENY;Agnes;28/08/1964;Non +92;Hauts-de-Seine;02;2ème circonscription;3;98;F;DAGEVILLE;Marine;04/01/1993;DXG;Professeur, profession scientifique;Non;M;BAROUX;Sébastien, Jean, Claude;22/02/1979;Non +92;Hauts-de-Seine;02;2ème circonscription;4;135;M;PERROTEL;Sébastien;02/03/1969;DVD;Professeur, profession scientifique;Non;F;TATON;Yamina;06/04/1969;Non +92;Hauts-de-Seine;02;2ème circonscription;5;94;F;AESCHLIMANN;Marie-Do;17/04/1974;LR;Profession libérale;Non;F;DELATTRE;Amélie;07/01/1972;Non +92;Hauts-de-Seine;02;2ème circonscription;6;103;F;PASQUINI;Francesca;27/12/1981;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;MICHALLET;Léopold;30/07/1984;Non +92;Hauts-de-Seine;02;2ème circonscription;7;25;M;BRUNET;Antoine;10/12/1987;DXG;Professeur, profession scientifique;Non;F;BILONG;Louise;07/02/1971;Non +92;Hauts-de-Seine;02;2ème circonscription;8;62;M;BICHARA;Digui;27/01/1989;DVC;Elève, étudiant;Non;M;BIS;Richard Stéphane;20/08/1972;Non +92;Hauts-de-Seine;02;2ème circonscription;9;68;F;BERTIER;Frédérique;05/07/1957;REC;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;LOPEZ;Ludwig;12/01/1962;Non +92;Hauts-de-Seine;02;2ème circonscription;10;21;F;DENOO;Emilia;24/10/1983;ECO;Cadre administratif et commercial d'entreprise;Non;M;DEFOOR;Eric;25/03/1955;Non +92;Hauts-de-Seine;02;2ème circonscription;11;67;F;ACHIDI;Baï-Audrey;16/03/1980;ENS;Profession libérale;Non;M;LECLERE;Fabien;26/03/1968;Non +92;Hauts-de-Seine;02;2ème circonscription;12;123;F;BELLOUFA;Karima;19/10/1982;DIV;Cadre administratif et commercial d'entreprise;Non;M;SAIDI;Farouk;30/03/1972;Non +92;Hauts-de-Seine;02;2ème circonscription;13;59;M;LAURENT;Hadrien;12/09/1989;RDG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;SOMMIER;Annie;16/09/1947;Non +92;Hauts-de-Seine;02;2ème circonscription;14;93;M;FABRE;Michel;20/11/1951;DXG;Professeur des écoles, instituteur et assimilé;Non;F;AKSAS;Myriam;05/06/1978;Non +92;Hauts-de-Seine;02;2ème circonscription;15;13;M;MILLOT;Philippe;22/03/1952;RN;Ancien employé;Non;M;KIMBASSA;René;26/05/1967;Non +92;Hauts-de-Seine;03;3ème circonscription;1;110;F;TAQUILLAIN;Aurélie;19/08/1983;ENS;Cadre de la fonction publique;Non;M;FARAUT;Alexandre;11/06/1970;Non +92;Hauts-de-Seine;03;3ème circonscription;2;109;M;PIRON;Barthelemy;22/12/1996;DXG;Elève, étudiant;Non;F;HARMAND;Mathilde;27/11/1981;Non +92;Hauts-de-Seine;03;3ème circonscription;3;124;M;BELKADI;Abdel;05/09/1977;DIV;Commerçant et assimilé;Non;F;ASSIF;Karima;23/09/1999;Non +92;Hauts-de-Seine;03;3ème circonscription;4;2;F;LAFFITE;Agnès;05/02/1962;RN;Profession intermédiaire administrative de la fonction publique;Non;M;COSTE;Valentin;19/09/2002;Non +92;Hauts-de-Seine;03;3ème circonscription;5;136;F;BAUDRANT;Béatrice;03/10/1969;DIV;Cadre de la fonction publique;Non;M;ASSARAF;Roland;06/06/1970;Non +92;Hauts-de-Seine;03;3ème circonscription;6;18;M;MANRESA;Vincent;18/11/1981;ECO;Professeur, profession scientifique;Non;F;MIZZI;Pascale;09/02/1974;Non +92;Hauts-de-Seine;03;3ème circonscription;7;92;M;PARRY;Jean-Marie;28/09/1970;DXG;Ouvrier qualifié de type industriel;Non;M;FREJACQUES;Guillaume;19/10/1979;Non +92;Hauts-de-Seine;03;3ème circonscription;8;76;M;JUVIN;Philippe;01/02/1964;LR;Cadre de la fonction publique;Non;F;D'ALIGNY;Sybille;04/09/1974;Non +92;Hauts-de-Seine;03;3ème circonscription;9;43;F;GUEDJ;Anabelle;18/12/1990;REC;Profession libérale;Non;M;GERARD;Marc;22/08/1995;Non +92;Hauts-de-Seine;03;3ème circonscription;10;97;F;TIJ;Sara;05/11/1988;NUPES;Ingénieur et cadre technique d'entreprise;Non;M;RAIGA-CLEMENCEAU;Etienne;23/01/1994;Non +92;Hauts-de-Seine;04;4ème circonscription;1;26;M;SCHOENHENZ;Eric;11/11/1971;DIV;Cadre de la fonction publique;Non;F;HATTAB;Amale;21/06/1988;Non +92;Hauts-de-Seine;04;4ème circonscription;2;79;M;STRUMANNE;Laurent;11/01/1962;DXG;Profession intermédiaire administrative de la fonction publique;Non;F;BACONNET;Natacha;13/07/1974;Non +92;Hauts-de-Seine;04;4ème circonscription;3;32;M;ALLAIN;Michel;29/04/1952;DXG;Ancien cadre;Non;F;AUGÉS;Céline;23/12/1975;Non +92;Hauts-de-Seine;04;4ème circonscription;4;69;F;BIGDADE;Habiba;01/12/1977;DVG;Cadre administratif et commercial d'entreprise;Non;F;GUEROUT;Valérie;11/03/1965;Non +92;Hauts-de-Seine;04;4ème circonscription;5;57;F;MULLER;Florence;01/12/1966;REC;Cadre administratif et commercial d'entreprise;Non;M;BENSOUSSAN;Eyal;15/12/1995;Non +92;Hauts-de-Seine;04;4ème circonscription;6;139;M;COMBAZ;Philippe;22/09/1968;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CIBIEL;Sandrine;05/08/1971;Non +92;Hauts-de-Seine;04;4ème circonscription;7;137;M;BARNY;Valéry;04/09/1978;ECO;Profession intermédiaire de la santé et du travail social;Non;F;FAUVEAU;Frédérique;12/09/1977;Non +92;Hauts-de-Seine;04;4ème circonscription;8;41;F;FLORENNES;Isabelle;02/08/1967;ENS;Cadre de la fonction publique;Oui;M;THUILLLIER;Vincent;18/02/1969;Non +92;Hauts-de-Seine;04;4ème circonscription;9;64;F;SEBAIHI;Sabrina;10/05/1981;NUPES;Profession libérale;Non;M;PELLERIN;Jérôme;25/02/1978;Non +92;Hauts-de-Seine;04;4ème circonscription;10;63;F;BRAVO;Mélina;07/04/1999;RN;Elève, étudiant;Non;M;DE MASCAREL DE LA CORBIÈRE;Renaud;15/09/1984;Non +92;Hauts-de-Seine;04;4ème circonscription;11;138;M;SAHRAOUI BRAHIM;Youcef;04/12/1997;DVG;Cadre administratif et commercial d'entreprise;Non;M;DRAA;Sami;16/02/1997;Non +92;Hauts-de-Seine;04;4ème circonscription;12;104;F;EISENBERG;Mathilde;16/03/1983;DXG;Professeur des écoles, instituteur et assimilé;Non;M;MENDEZ;Victor;21/12/1996;Non +92;Hauts-de-Seine;04;4ème circonscription;13;58;M;SAÏZ;Guilhem;27/06/1995;ECO;Professeur, profession scientifique;Non;F;CHAUMETTE;Héléna;23/03/1999;Non +92;Hauts-de-Seine;04;4ème circonscription;14;105;M;AZERGUI;Nagib;11/11/1972;DIV;Ingénieur et cadre technique d'entreprise;Non;F;ATTABBANI;Malika;11/03/1972;Non +92;Hauts-de-Seine;05;5ème circonscription;1;56;F;LAMBERT;Mireille;22/07/1952;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;NICOLAS;Philippe;09/06/1964;Non +92;Hauts-de-Seine;05;5ème circonscription;2;55;M;CHASSAT;Pierre;13/05/1977;LR;Cadre de la fonction publique;Non;F;HADRI;Nadoi;10/06/1973;Non +92;Hauts-de-Seine;05;5ème circonscription;3;130;F;GEBARSKA;Agnieszka;21/08/1966;RN;Profession libérale;Non;M;COSTE;Philippe;05/01/1964;Non +92;Hauts-de-Seine;05;5ème circonscription;4;42;M;GAROYAN;Fabrice;06/08/1965;DSV;Artisan;Non;F;BALASTRE;Sophie;10/10/1967;Non +92;Hauts-de-Seine;05;5ème circonscription;5;101;M;SEHATA;Rezk;14/12/1957;ECO;Ingénieur et cadre technique d'entreprise;Non;F;KIBALI;Nadia;02/07/1982;Non +92;Hauts-de-Seine;05;5ème circonscription;6;141;F;RABOTOSON;Sonia;05/05/1969;DVD;Profession libérale;Non;F;SEGHOUANE;Nadine;19/02/1977;Non +92;Hauts-de-Seine;05;5ème circonscription;7;132;M;ADREF;Oussama;23/03/1972;DIV;Chauffeur;Non;F;MALAK;Leila;18/06/1980;Non +92;Hauts-de-Seine;05;5ème circonscription;8;30;F;GACEM;Zaya;11/04/1972;DXG;Profession intermédiaire de la santé et du travail social;Non;M;DUTHEIL;Daniel;17/03/1952;Non +92;Hauts-de-Seine;05;5ème circonscription;9;115;M;CROSNIER LECONTE;Cyril;08/02/2000;ECO;Employé de commerce;Non;M;CROSNIER LECONTE;Marc;25/04/1998;Non +92;Hauts-de-Seine;05;5ème circonscription;10;78;F;KHALIL;Mina;20/01/1986;DXG;Employé administratif d'entreprise;Non;M;MUSTO;Mickaël;20/04/1995;Non +92;Hauts-de-Seine;05;5ème circonscription;11;20;F;MERCIER;Caroline;01/09/1976;DIV;Cadre administratif et commercial d'entreprise;Non;F;PODBIELSKA;Klaudia;26/03/1965;Non +92;Hauts-de-Seine;05;5ème circonscription;12;102;F;DRUET;Léa;02/05/1994;NUPES;Cadre de la fonction publique;Non;M;TERCHI;Aïssa;05/08/1978;Non +92;Hauts-de-Seine;05;5ème circonscription;13;118;F;CALVEZ;Céline;24/07/1979;ENS;Cadre de la fonction publique;Oui;M;HALPHEN;Sacha;08/04/1997;Non +92;Hauts-de-Seine;05;5ème circonscription;14;140;M;ROUSSET-LEBLOND;Alexandre;11/03/1971;REC;Cadre administratif et commercial d'entreprise;Non;M;CONQUER;Nicolas;15/09/1986;Non +92;Hauts-de-Seine;06;6ème circonscription;1;81;F;MARCHISET;Denis Marie;03/09/1963;ECO;Technicien;Non;F;BENHAMOU;Seforah;05/04/1960;Non +92;Hauts-de-Seine;06;6ème circonscription;2;100;F;BASINI;Fayza;30/09/1978;ENS;Cadre administratif et commercial d'entreprise;Non;M;ANSART DE LESSAN;Frédéric;18/10/1965;Non +92;Hauts-de-Seine;06;6ème circonscription;3;147;M;AGUELON;Benoit;22/06/1977;DVD;Artisan;Non;F;AMSELLEM;Sabine;13/03/1978;Non +92;Hauts-de-Seine;06;6ème circonscription;4;145;M;KELLER;Franck;11/06/1971;REC;Cadre administratif et commercial d'entreprise;Non;F;BAZINI;Isabelle;19/06/1970;Non +92;Hauts-de-Seine;06;6ème circonscription;5;148;M;KHADOUR;Bilèle;31/05/1971;DIV;Technicien;Non;F;TADI;Rachia;10/09/1972;Non +92;Hauts-de-Seine;06;6ème circonscription;6;114;M;TRAORE;Adama;16/04/1969;DVC;Ingénieur et cadre technique d'entreprise;Non;F;LOUNIS-DAHAN;Nadia;14/06/1966;Non +92;Hauts-de-Seine;06;6ème circonscription;7;96;F;BARBAUX;Julie;13/06/1990;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;GRINDU;Jean-Cédric;23/05/1979;Non +92;Hauts-de-Seine;06;6ème circonscription;8;143;M;TAPIRO;Frank;07/10/1965;DVC;Ancien artisan, commerçant, chef d'entreprise;Non;F;PETROFF;Sophie;07/08/1968;Non +92;Hauts-de-Seine;06;6ème circonscription;9;144;M;PESSIS;Patrick;05/05/1958;LR;Profession de l'information, des arts et des spectacles;Non;F;DEBACHE-ABITBOL;Lina;26/10/1987;Non +92;Hauts-de-Seine;06;6ème circonscription;10;12;F;LE PEN;Marie-Caroline;23/01/1960;RN;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;FERCHICHI;Stéphane;19/06/1986;Non +92;Hauts-de-Seine;06;6ème circonscription;11;77;F;MARCEL;Françoise;21/11/1959;DXG;Professeur, profession scientifique;Non;M;GASPERONI;Ivan;12/10/1975;Non +92;Hauts-de-Seine;06;6ème circonscription;12;142;F;LE GRIP;Constance;14/11/1960;ENS;Cadre de la fonction publique;Oui;M;SIMIAND;Jules;01/12/2002;Non +92;Hauts-de-Seine;07;7ème circonscription;1;53;F;BIRTIC;Jeanne;17/03/1975;DSV;Ingénieur et cadre technique d'entreprise;Non;M;LOCUSSOL;Guillaume;27/02/1973;Non +92;Hauts-de-Seine;07;7ème circonscription;2;11;F;DUMONT;Agnès;02/06/1971;REC;Professeur, profession scientifique;Non;F;WEYL;Géraldine;28/08/1979;Non +92;Hauts-de-Seine;07;7ème circonscription;3;112;F;BROCHOT;Anne Denis Mercedes;13/10/1976;DXG;Employé de commerce;Non;M;ANGÉLY;Mickaël;19/09/1977;Non +92;Hauts-de-Seine;07;7ème circonscription;4;51;M;RATO;Sandro;22/11/1998;NUPES;Elève, étudiant;Non;F;VILLAIN;Jeanne;22/04/2000;Non +92;Hauts-de-Seine;07;7ème circonscription;5;27;M;HALARY;Pascal;27/06/1962;DIV;Ancien cadre;Non;F;HALARY;Christiane;23/07/1950;Non +92;Hauts-de-Seine;07;7ème circonscription;6;149;M;HLAVACEK;Guillaume;21/06/1982;DIV;Cadre administratif et commercial d'entreprise;Non;M;DURELLE;Gregory;22/02/1983;Non +92;Hauts-de-Seine;07;7ème circonscription;7;52;F;ABAD;Cécile;24/02/1972;DXG;Professeur, profession scientifique;Non;M;BRISON;Christian;14/04/1952;Non +92;Hauts-de-Seine;07;7ème circonscription;8;47;M;CAZENEUVE;Pierre;11/03/1995;ENS;Cadre de la fonction publique;Non;F;CORDON;Valérie;22/02/1967;Non +92;Hauts-de-Seine;07;7ème circonscription;9;24;M;VERSINI;Christophe;10/08/1985;RN;Cadre de la fonction publique;Non;F;BLICQ;Christelle;09/05/1978;Non +92;Hauts-de-Seine;07;7ème circonscription;10;61;F;DUTHU;Charlotte;02/10/1980;ECO;Professeur des écoles, instituteur et assimilé;Non;F;POUSSE;Valérie;06/07/1973;Non +92;Hauts-de-Seine;07;7ème circonscription;11;33;F;ELIZAGOYEN;Xabi;09/07/1990;LR;Cadre administratif et commercial d'entreprise;Non;F;DE LARMINAT;Ségolène;12/07/1978;Non +92;Hauts-de-Seine;07;7ème circonscription;12;54;M;ATTAF;Mokhtar;11/06/1996;DIV;Technicien;Non;F;ZIANE;Karima;22/03/1980;Non +92;Hauts-de-Seine;07;7ème circonscription;13;131;M;MANDEREAU;Christophe;30/11/1976;ECO;Ingénieur et cadre technique d'entreprise;Non;F;PETIT;Myriam;24/05/1961;Non +92;Hauts-de-Seine;08;8ème circonscription;1;150;M;SCHNEIDER;Frédéric;02/08/1966;DIV;Ingénieur et cadre technique d'entreprise;Non;M;MORVAN;Loïc;12/03/2000;Non +92;Hauts-de-Seine;08;8ème circonscription;2;74;F;LARROQUE-COMOY;Annie;05/06/1952;NUPES;Ancien cadre;Non;M;FORTECOËF;José;12/01/1957;Non +92;Hauts-de-Seine;08;8ème circonscription;3;23;F;LABBÉ;Laurence;12/04/1967;ECO;Cadre de la fonction publique;Non;F;BRAVO;Anais;30/11/1989;Non +92;Hauts-de-Seine;08;8ème circonscription;4;73;F;TARANNE;Chantal;16/09/1958;REC;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;SCHAUVING;Joachim;02/10/2000;Non +92;Hauts-de-Seine;08;8ème circonscription;5;84;M;PITTONI;Olivier Mario Michel;23/11/1964;DSV;Ingénieur et cadre technique d'entreprise;Non;M;D'ANDREA;Serge;22/06/1975;Non +92;Hauts-de-Seine;08;8ème circonscription;6;50;F;THEVENOT;Prisca;01/03/1985;ENS;Profession intermédiaire administrative de la fonction publique;Non;F;LANLO;Virginie;26/04/1968;Non +92;Hauts-de-Seine;08;8ème circonscription;7;38;M;HENIQUE;Philippe;31/03/1962;DXG;Professeur, profession scientifique;Non;F;PRECIGOUT;Lucie;05/11/1959;Non +92;Hauts-de-Seine;08;8ème circonscription;8;82;F;RICHEZ;Cécile;06/01/1975;LR;Cadre administratif et commercial d'entreprise;Non;F;BOUTE;Florence;07/05/1971;Non +92;Hauts-de-Seine;08;8ème circonscription;9;83;F;HABIB;Sarena;24/10/1994;RN;Cadre administratif et commercial d'entreprise;Non;M;LEROC;Dominique;24/08/1949;Non +92;Hauts-de-Seine;08;8ème circonscription;10;129;M;CUSA;Miron;01/10/1976;ECO;Profession intermédiaire de la santé et du travail social;Non;M;LEGRAND;Stephane;13/08/1965;Non +92;Hauts-de-Seine;09;9ème circonscription;1;95;F;RAPILLY FERNIOT;Pauline;25/07/1995;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;POVOLACHI;Stanislav;27/04/1984;Non +92;Hauts-de-Seine;09;9ème circonscription;2;113;F;SAUTERAY;Elena;19/06/1993;DXG;Profession intermédiaire de la santé et du travail social;Non;M;TONDU;Jean-Baptiste;22/02/1985;Non +92;Hauts-de-Seine;09;9ème circonscription;3;121;F;ASMANI;Monia;16/07/1990;DIV;Commerçant et assimilé;Non;M;LEJEUNE;Fabien;28/01/1988;Non +92;Hauts-de-Seine;09;9ème circonscription;4;17;F;GAUDÉ;Nathalie;16/07/1971;RN;Profession libérale;Non;M;GARCIA;Daniel;26/06/1991;Non +92;Hauts-de-Seine;09;9ème circonscription;5;108;M;DESNOS;Julien;11/01/1991;DVD;Ouvrier qualifié de type artisanal;Non;M;ABDI;Melvin;28/06/1998;Non +92;Hauts-de-Seine;09;9ème circonscription;6;153;M;VIOLLEAU;Laurent;07/07/1973;DVG;Cadre administratif et commercial d'entreprise;Non;F;OUEDRAOGO;Amanda;24/04/1985;Non +92;Hauts-de-Seine;09;9ème circonscription;7;28;F;CHAUDON;Anne-Laure;16/01/1968;DXG;Professeur, profession scientifique;Non;M;SNAIEDEN;Raphaël;12/05/1979;Non +92;Hauts-de-Seine;09;9ème circonscription;8;10;M;BESSIÈRES;Guillaume;18/12/1983;REC;Professeur des écoles, instituteur et assimilé;Non;F;LAURENT;Marianine;02/01/1971;Non +92;Hauts-de-Seine;09;9ème circonscription;9;85;M;CHESNEAU;Léopold;08/10/2001;ECO;Elève, étudiant;Non;F;LEFÈVRE;Stéphanie;05/02/1970;Non +92;Hauts-de-Seine;09;9ème circonscription;10;152;M;LOUAP;Pascal;20/10/1972;LR;Cadre administratif et commercial d'entreprise;Non;F;DE MAISTRE;Elisabeth;07/10/1975;Non +92;Hauts-de-Seine;09;9ème circonscription;11;151;M;DE JERPHANION;Antoine;22/04/1992;DVD;Cadre administratif et commercial d'entreprise;Non;F;MISSOFFE;Ségolène;08/09/1957;Non +92;Hauts-de-Seine;09;9ème circonscription;12;122;M;PELLERIN;Emmanuel;20/08/1970;ENS;Profession libérale;Non;F;DE COURCY;Nathalie;04/10/1973;Non +92;Hauts-de-Seine;10;10ème circonscription;1;72;F;SOUBELET;Cécile;25/11/1983;NUPES;Cadre administratif et commercial d'entreprise;Non;F;SCHOLLAERT;Eloïse;25/01/1992;Non +92;Hauts-de-Seine;10;10ème circonscription;2;40;F;VIGUIÉ;Laurence;17/09/1955;DXG;Technicien;Non;M;PAPUCHON;Adrien;18/03/1985;Non +92;Hauts-de-Seine;10;10ème circonscription;3;154;F;CABERAS;Edith;26/07/1968;REG;Agriculteur sur petite exploitation;Non;F;ABIVEN;Stéphanie;11/08/1983;Non +92;Hauts-de-Seine;10;10ème circonscription;4;146;M;AMRANI;Samir;04/01/1968;DIV;Technicien;Non;F;BELKHACEM;Nadia;07/03/1947;Non +92;Hauts-de-Seine;10;10ème circonscription;5;9;M;PETIT;Hadrien;26/12/1997;RN;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;WITCZAK;Nicolas;02/10/1993;Non +92;Hauts-de-Seine;10;10ème circonscription;6;19;M;ESCALE;Alexis;06/03/1976;ECO;Cadre administratif et commercial d'entreprise;Non;F;ATEKIAN;Beverly;20/04/1989;Non +92;Hauts-de-Seine;10;10ème circonscription;7;14;M;ATTAL;Gabriel;16/03/1989;ENS;Cadre de la fonction publique;Non;F;GUICHARD;Claire;30/05/1967;Non +92;Hauts-de-Seine;10;10ème circonscription;8;155;M;EL BOUZAIDI;Azedine;23/12/1958;ECO;Commerçant et assimilé;Non;M;EL BOUZAIDI CHEIKHI;Salim;29/04/1991;Non +92;Hauts-de-Seine;10;10ème circonscription;9;34;F;BESSIÈRES;Léa;31/08/1989;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;DE GRAEVE;Bruno;06/03/1967;Non +92;Hauts-de-Seine;10;10ème circonscription;10;156;F;RONCHINI;Vanessa;07/05/1986;DXG;Cadre administratif et commercial d'entreprise;Non;M;FOURNIER;Vincent;23/10/1983;Non +92;Hauts-de-Seine;11;11ème circonscription;1;86;M;SEHILI;Mustapha;07/03/1981;DIV;Employé de commerce;Non;F;KARNOU;Farida;03/03/1978;Non +92;Hauts-de-Seine;11;11ème circonscription;2;87;M;CHIARELLI;Xavier;05/02/1981;DXG;Employé civil et agent de service de la fonction publique;Non;F;LUONG;Man;11/06/1966;Non +92;Hauts-de-Seine;11;11ème circonscription;3;8;F;CHATELAIN;Juliette;02/08/1968;RN;Professeur des écoles, instituteur et assimilé;Non;M;COMBAUT;Christophe;18/08/1972;Non +92;Hauts-de-Seine;11;11ème circonscription;4;157;M;PONGE;Philippe;21/08/1963;DIV;Professeur des écoles, instituteur et assimilé;Non;F;TESTA;Estelle;04/12/1969;Non +92;Hauts-de-Seine;11;11ème circonscription;5;75;M;SAINTOUL;Aurélien;26/05/1988;NUPES;Cadre de la fonction publique;Non;F;GABIACHE;Claire;10/08/1988;Non +92;Hauts-de-Seine;11;11ème circonscription;6;4;M;GEOFFRE;Philippe;08/07/1957;DXG;Ancienne profession intermédiaire;Non;F;MONTOUT;Marie-Josée;28/01/1948;Non +92;Hauts-de-Seine;11;11ème circonscription;7;119;F;ROSSI;Laurianne;18/05/1984;ENS;Ancien cadre;Oui;F;PIGNARRE;Raphaëlle;08/09/1978;Non +92;Hauts-de-Seine;11;11ème circonscription;8;49;M;ROLLOT;Franck;31/01/1969;DXG;Ouvrier qualifié de type industriel;Non;M;LEBRUN;Alban;06/12/1989;Non +92;Hauts-de-Seine;11;11ème circonscription;9;7;M;LÉVÊQUE;Florence;04/05/1965;REC;Cadre administratif et commercial d'entreprise;Non;M;COLLIN;Stanislas;02/01/2000;Non +92;Hauts-de-Seine;11;11ème circonscription;10;37;F;BROUSSAUDIER;Dominique Chantal;29/04/1960;ECO;Employé civil et agent de service de la fonction publique;Non;F;CRUCHET;Audrey;22/06/1987;Non +92;Hauts-de-Seine;12;12ème circonscription;1;45;M;THOMAS;Marc;06/10/1964;RN;Profession libérale;Non;F;LEROC;Devi;15/11/1997;Non +92;Hauts-de-Seine;12;12ème circonscription;2;117;F;THOMAS;Cathy;25/03/1968;NUPES;Cadre administratif et commercial d'entreprise;Non;M;HUART;Robin;22/05/1984;Non +92;Hauts-de-Seine;12;12ème circonscription;3;44;M;BERNARD;Yann;19/06/1976;DXG;Ouvrier non qualifié de type industriel;Non;M;THOYER;Elvy;01/03/1978;Non +92;Hauts-de-Seine;12;12ème circonscription;4;36;M;BLOT;Benoit;06/08/1960;LR;Profession libérale;Non;F;QUILLERY;Christine;18/04/1955;Non +92;Hauts-de-Seine;12;12ème circonscription;5;39;M;NOBLET;Florent;01/06/1982;REC;Cadre administratif et commercial d'entreprise;Non;F;PARIZEL;Annie;11/06/1958;Non +92;Hauts-de-Seine;12;12ème circonscription;6;159;F;GABEN;Céline;16/07/1988;DSV;Employé de commerce;Non;M;TRUFFIER;Lionel;21/08/1959;Non +92;Hauts-de-Seine;12;12ème circonscription;7;120;M;GHALEB;Kamel;28/03/1968;DIV;Chauffeur;Non;F;DAOUDI;Malika;17/04/1986;Non +92;Hauts-de-Seine;12;12ème circonscription;8;31;M;VASTEL;Laurent;10/10/1959;UDI;Cadre de la fonction publique;Non;F;BENMERADI;Razika;26/08/1981;Non +92;Hauts-de-Seine;12;12ème circonscription;9;6;M;PREVEL;Guillaume;04/07/1978;ECO;Cadre de la fonction publique;Non;F;GAUCHY;Laurence;27/05/1966;Non +92;Hauts-de-Seine;12;12ème circonscription;10;158;F;BAKHTI;Hayat;23/03/1966;ECO;Elève, étudiant;Non;F;VICK;Sophie;18/06/1970;Non +92;Hauts-de-Seine;12;12ème circonscription;11;125;M;BOURLANGES;Jean-Louis;13/07/1946;ENS;Cadre de la fonction publique;Oui;F;GUILLERM;Carole;08/01/1987;Non +92;Hauts-de-Seine;12;12ème circonscription;12;160;M;SAMIEZ;Florian;24/01/1994;DIV;Ingénieur et cadre technique d'entreprise;Non;M;GALIBERT;Paul;13/10/1988;Non +92;Hauts-de-Seine;13;13ème circonscription;1;5;M;BENOIST;David;24/02/1972;ECO;Ingénieur et cadre technique d'entreprise;Non;F;DURRMEYER;Catherine;05/09/1961;Non +92;Hauts-de-Seine;13;13ème circonscription;2;71;F;MARTIN;Agathe;25/06/1967;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;GUELFAND;Patrick;23/06/1957;Non +92;Hauts-de-Seine;13;13ème circonscription;3;111;F;BREGEON;Maud;11/02/1991;ENS;Ingénieur et cadre technique d'entreprise;Non;M;MONGARDIEN;Christphe;09/01/1963;Non +92;Hauts-de-Seine;13;13ème circonscription;4;128;M;NASSIMI;Farid;10/04/1971;DIV;Chauffeur;Non;F;BOUSSOUF;Dalila;06/03/1983;Non +92;Hauts-de-Seine;13;13ème circonscription;5;106;M;ISNARD;Numa;14/03/1987;LR;Profession libérale;Non;F;BERGEROL;Véronique;28/10/1961;Non +92;Hauts-de-Seine;13;13ème circonscription;6;88;M;GAUTRELET;Julien;10/04/1976;RDG;Commerçant et assimilé;Non;F;BRUNAT;Emma;05/08/1998;Non +92;Hauts-de-Seine;13;13ème circonscription;7;161;M;LAURENT;Philippe;14/05/1954;UDI;Ancien cadre;Non;M;AIT-OUARAZ;Said;28/09/1979;Non +92;Hauts-de-Seine;13;13ème circonscription;8;3;M;YVARS;Patrick;20/08/1960;RN;Policier et militaire;Non;F;DOUMONT;Isabelle;21/10/1957;Non +92;Hauts-de-Seine;13;13ème circonscription;9;126;M;GAILLARD;Brice;03/07/1985;NUPES;Cadre de la fonction publique;Non;F;LARNAC;Justine;06/01/1997;Non +92;Hauts-de-Seine;13;13ème circonscription;10;70;M;TOYANE;Alexis;21/06/1988;DIV;Ingénieur et cadre technique d'entreprise;Non;M;LEMAIRE;Marc;28/09/1981;Non +92;Hauts-de-Seine;13;13ème circonscription;11;89;M;SIMONIN;Thibault;23/12/1991;REC;Contremaître, agent de maîtrise;Non;F;AMATO;Aude;18/11/1985;Non +93;Seine-Saint-Denis;01;1ère circonscription;1;87;F;AÏDARA DIABY;Madioula;14/03/1978;DVG;Professeur, profession scientifique;Non;M;PLOMB;Cyrille;09/03/1970;Non +93;Seine-Saint-Denis;01;1ère circonscription;2;149;F;ZEKRI;Fouzia;31/07/1972;DVG;Cadre administratif et commercial d'entreprise;Non;F;SOORANNA;Brayen;04/10/1985;Non +93;Seine-Saint-Denis;01;1ère circonscription;3;94;M;ABID;Mohamed-Jamil;25/09/1994;DVG;Contremaître, agent de maîtrise;Non;F;BARA;Nael;26/07/1979;Non +93;Seine-Saint-Denis;01;1ère circonscription;4;6;F;BAHLOUL;Maïa;15/01/2000;DXG;Elève, étudiant;Non;M;UHALDE;Paul;02/08/2000;Non +93;Seine-Saint-Denis;01;1ère circonscription;5;88;F;DROMARD;Jeanne;22/07/1983;ENS;Cadre de la fonction publique;Non;M;BONNIN;Gérald;18/05/1975;Non +93;Seine-Saint-Denis;01;1ère circonscription;6;26;F;ETIENNE;Etienna;05/01/1952;UDI;Ancien employé;Non;M;COURRIER;Jonathan;30/12/1990;Non +93;Seine-Saint-Denis;01;1ère circonscription;7;136;F;DARMON;Marianne;26/05/1988;DVG;Cadre de la fonction publique;Non;M;MOUGET;Edouart Daryth;17/08/1995;Non +93;Seine-Saint-Denis;01;1ère circonscription;8;31;M;AUBRY;Alain;02/07/1963;DXG;Employé civil et agent de service de la fonction publique;Non;M;MARANGET;Benoit;08/01/1971;Non +93;Seine-Saint-Denis;01;1ère circonscription;9;81;M;PÉGUILLET;François;18/08/1989;LR;Cadre administratif et commercial d'entreprise;Non;F;LEFORESTIER;Typhaine;24/10/1994;Non +93;Seine-Saint-Denis;01;1ère circonscription;10;48;M;HIRIGOYEN;Jérôme;06/03/1979;ECO;Ingénieur et cadre technique d'entreprise;Non;F;CHEVAL;Christine;12/11/1976;Non +93;Seine-Saint-Denis;01;1ère circonscription;11;146;M;DEROCHE;Francois;27/05/1963;DVC;Profession libérale;Non;F;FERTAT;Nora;23/11/1993;Non +93;Seine-Saint-Denis;01;1ère circonscription;12;129;F;EDE;Olga;29/11/1974;DVC;Profession libérale;Non;F;MAUBERT;Marie;01/08/1948;Non +93;Seine-Saint-Denis;01;1ère circonscription;13;109;F;BUSCH;Anne-Solenne;08/11/1985;REC;Profession libérale;Non;M;BENONI;Jacky;27/06/1997;Non +93;Seine-Saint-Denis;01;1ère circonscription;14;40;F;BRAND;Marie;07/12/1982;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;TSOBANOPOULOS;Alexandre;26/08/1971;Non +93;Seine-Saint-Denis;01;1ère circonscription;15;5;M;COQUEREL;Eric;30/12/1958;NUPES;Ancien artisan, commerçant, chef d'entreprise;Oui;F;MONMIREL;Manon;25/08/1991;Non +93;Seine-Saint-Denis;02;2ème circonscription;1;103;F;THABET;Sinaa;07/02/1989;LR;Cadre de la fonction publique;Non;M;KOUPPÉ DE K MARTIN;Pascal;27/09/1968;Non +93;Seine-Saint-Denis;02;2ème circonscription;2;84;M;SOUKOUNA;Bakary;19/05/1986;DVG;Employé civil et agent de service de la fonction publique;Non;F;SOUPRAYEN;Marie;23/02/1999;Non +93;Seine-Saint-Denis;02;2ème circonscription;3;98;M;CHIKHI;Brahim;06/08/1977;DVC;Ingénieur et cadre technique d'entreprise;Non;F;LEFEUVRE;Elisabeth;11/06/1964;Non +93;Seine-Saint-Denis;02;2ème circonscription;4;62;M;PEU;Stéphane;24/07/1962;NUPES;Employé administratif d'entreprise;Oui;M;AID;Farid;05/12/1971;Non +93;Seine-Saint-Denis;02;2ème circonscription;5;142;M;BROSSARD;Jean-Christophe;19/11/1996;DXG;Elève, étudiant;Non;F;COUTABLE;Carole;24/05/1974;Non +93;Seine-Saint-Denis;02;2ème circonscription;6;45;M;COLOMAS;Luc;15/08/1956;RN;Ancienne profession intermédiaire;Non;F;MULLER;Louisette;07/09/1942;Non +93;Seine-Saint-Denis;02;2ème circonscription;7;110;F;BROOD;Anaïs;25/03/1992;ENS;Cadre administratif et commercial d'entreprise;Non;M;PETO;Steve;09/02/1982;Non +93;Seine-Saint-Denis;02;2ème circonscription;8;13;F;RENAUD;Agnès;10/10/1964;DXG;Professeur, profession scientifique;Non;M;JULIEN;Philippe;06/12/1957;Non +93;Seine-Saint-Denis;02;2ème circonscription;9;91;M;PICHARD;Aurélien;21/02/1987;ECO;Ingénieur et cadre technique d'entreprise;Non;M;HAAS;Philippe;20/07/1973;Non +93;Seine-Saint-Denis;02;2ème circonscription;10;141;F;BARDY;Aurélia;09/12/1973;REC;Profession libérale;Non;M;LABOLLE;Stéphane;11/01/1973;Non +93;Seine-Saint-Denis;02;2ème circonscription;11;85;F;VÉTIL;Christelle;11/03/1975;UDI;Employé administratif d'entreprise;Non;F;WIRY;Prescilia;28/07/1999;Non +93;Seine-Saint-Denis;03;3ème circonscription;1;41;M;CRETIN-GIELLY;Denis;14/03/1960;RN;Ancien cadre;Non;M;TEMUTU;Jean-Baptiste;28/03/1974;Non +93;Seine-Saint-Denis;03;3ème circonscription;2;20;M;ZRIHEN;Joseph;20/11/1987;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;REVERTE;Karine;04/11/1969;Non +93;Seine-Saint-Denis;03;3ème circonscription;3;113;M;ANATO;Patrice;14/03/1976;ENS;Ingénieur et cadre technique d'entreprise;Oui;F;FACHE;Valérie;14/06/1968;Non +93;Seine-Saint-Denis;03;3ème circonscription;4;30;M;PORTES;Thomas;18/11/1985;NUPES;Employé civil et agent de service de la fonction publique;Non;F;MISSAOUI;Nadia;10/10/1954;Non +93;Seine-Saint-Denis;03;3ème circonscription;5;10;M;POILLOT;Harald;03/05/1972;LR;Chef d'entreprise de 10 salariés ou plus;Non;F;PONZIO-REFATTI;Marie;27/08/1981;Non +93;Seine-Saint-Denis;03;3ème circonscription;6;90;F;BEN MAMI;Louise;01/09/1950;ECO;Ancien employé;Non;M;LAPEYRE;Jean-Marie;20/07/1965;Non +93;Seine-Saint-Denis;03;3ème circonscription;7;125;F;TOURE;Maëlle Massandjie;19/02/1972;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;ROUHAUD;Michaël Sylvain;14/11/1974;Non +93;Seine-Saint-Denis;03;3ème circonscription;8;107;F;CHELKI;Fathia;01/06/1972;DIV;Commerçant et assimilé;Non;M;YAKOU;Kara;12/09/1978;Non +93;Seine-Saint-Denis;03;3ème circonscription;9;11;F;GAUCHERAND;Maëlle;28/12/1978;DXG;Professeur, profession scientifique;Non;M;KERDRAON;Jean-Yves;28/10/1961;Non +93;Seine-Saint-Denis;03;3ème circonscription;10;131;M;MELKA;Albert;18/01/1948;DVG;Commerçant et assimilé;Non;F;AÏNA;Jamila;22/06/1976;Non +93;Seine-Saint-Denis;03;3ème circonscription;11;96;F;AMOUROUX;Nathalie;10/04/1978;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;FOURCAULT-PEQUEGNOT;Aurélie;09/01/1993;Non +93;Seine-Saint-Denis;03;3ème circonscription;12;74;F;ENAUD;Geneviève;26/12/1946;DXG;Profession libérale;Non;M;HUGÉ;Guy;13/01/1949;Non +93;Seine-Saint-Denis;03;3ème circonscription;13;38;F;BORDREUIL;Myriam;02/04/1961;REC;Professeur, profession scientifique;Non;M;FAGE;André;07/11/1957;Non +93;Seine-Saint-Denis;03;3ème circonscription;14;2;F;CAMPANA;Sandrine;18/05/1972;DSV;Ingénieur et cadre technique d'entreprise;Non;F;SANAGUSTIN;Lys;12/09/1963;Non +93;Seine-Saint-Denis;04;4ème circonscription;1;27;M;DIOUARA;Aly;01/03/1987;DIV;Cadre de la fonction publique;Non;F;RIGAUDIERE;Laëtitia;02/01/1980;Non +93;Seine-Saint-Denis;04;4ème circonscription;2;29;F;LEY;Marlène;17/11/1976;DXG;Professeur, profession scientifique;Non;M;FOURNET;Serge;18/11/1961;Non +93;Seine-Saint-Denis;04;4ème circonscription;3;12;M;TAÏBI;Azzédine;21/06/1964;DVG;Profession intermédiaire de la santé et du travail social;Non;F;KHATIM;Karima;21/04/1985;Non +93;Seine-Saint-Denis;04;4ème circonscription;4;111;F;BOUROUAHA;Soumya;16/03/1964;NUPES;Professeur, profession scientifique;Non;F;BUFFET;Marie-George;07/05/1949;Oui +93;Seine-Saint-Denis;04;4ème circonscription;5;115;M;SOURDILLAT;Stéphane;04/09/1969;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;LE BALC'H;Nathalie;18/01/1968;Non +93;Seine-Saint-Denis;04;4ème circonscription;6;60;F;DESBOEUF;Sabine;27/03/1958;DXG;Professeur, profession scientifique;Non;M;JANVIER;Jean-Paul;29/08/1972;Non +93;Seine-Saint-Denis;04;4ème circonscription;7;51;F;LÉVÊQUE;Colette;04/07/1966;RN;Cadre de la fonction publique;Non;M;DELARUE;Bruno;26/02/1967;Non +93;Seine-Saint-Denis;04;4ème circonscription;8;144;M;ECH-CHETOUANI;Zouhairr;10/07/1974;DIV;Profession intermédiaire de la santé et du travail social;Non;F;BOUMAZA;Soraya;20/05/1991;Non +93;Seine-Saint-Denis;04;4ème circonscription;9;104;F;RINEL;Lova;13/06/1983;ENS;Cadre de la fonction publique;Non;M;BOUMEDJANE;Karim;28/04/1974;Non +93;Seine-Saint-Denis;04;4ème circonscription;10;23;F;PETTITT;Vanessa;11/05/1969;REC;Ingénieur et cadre technique d'entreprise;Non;F;MASSEÏ;Isabelle;26/02/1974;Non +93;Seine-Saint-Denis;04;4ème circonscription;11;34;F;GOUREAU;Marie-Claude;03/01/1955;LR;Ancien employé;Non;M;CARRE;Julien;01/12/1986;Non +93;Seine-Saint-Denis;04;4ème circonscription;12;36;F;ATTIG;Sonia;19/07/1975;DVG;Cadre administratif et commercial d'entreprise;Non;F;PAYOM;Emma;04/05/1983;Non +93;Seine-Saint-Denis;05;5ème circonscription;1;43;F;LESTRADET;Nelly;21/10/1966;RN;Ingénieur et cadre technique d'entreprise;Non;M;CLAVEL;Gilles;06/06/1964;Non +93;Seine-Saint-Denis;05;5ème circonscription;2;19;F;CORBANI;Corinne;03/08/1962;DXG;Profession intermédiaire de la santé et du travail social;Non;M;BONNERUE;Vincent;29/10/1979;Non +93;Seine-Saint-Denis;05;5ème circonscription;3;4;M;DESBOIS;Geoffroy;14/12/1978;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;M;FAOUAZE;Zaki;14/10/1981;Non +93;Seine-Saint-Denis;05;5ème circonscription;4;140;M;ROUECHE;Raynald;03/03/1966;DVC;Ancien cadre;Non;F;BOUTERFASS;Faysa;03/11/1983;Non +93;Seine-Saint-Denis;05;5ème circonscription;5;114;M;LIBERT;Raphaël;17/03/1969;REC;Ingénieur et cadre technique d'entreprise;Non;F;TARTARE;Tessa;20/10/1996;Non +93;Seine-Saint-Denis;05;5ème circonscription;6;65;F;GARRIDO;Raquel;23/04/1974;NUPES;Profession libérale;Non;M;MOURY;José;10/12/1969;Non +93;Seine-Saint-Denis;05;5ème circonscription;7;93;F;AIROUCHE;Sonia;01/09/1974;REG;Profession intermédiaire de la santé et du travail social;Non;M;M'BATEL;Djim;01/10/1976;Non +93;Seine-Saint-Denis;05;5ème circonscription;8;122;M;AIT AKKACHE;Nabil;29/06/1985;ENS;Cadre administratif et commercial d'entreprise;Non;M;CHOLOT;Christophe;03/01/1984;Non +93;Seine-Saint-Denis;05;5ème circonscription;9;112;M;SAULIERE;Gilles;25/07/1958;ECO;Cadre administratif et commercial d'entreprise;Non;F;POILLOT;Elisabeth;17/01/1962;Non +93;Seine-Saint-Denis;05;5ème circonscription;10;78;F;HORMI;Amel;30/04/1994;DVG;Professeur des écoles, instituteur et assimilé;Non;M;DELTEIL;Mehdi;03/10/1994;Non +93;Seine-Saint-Denis;05;5ème circonscription;11;86;M;LAGARDE;Jean-Christophe;24/10/1967;UDI;Cadre de la fonction publique;Oui;M;CHABANI;Hamid;25/03/1983;Non +93;Seine-Saint-Denis;05;5ème circonscription;12;22;M;FEGER;Rodolphe;07/05/1968;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;ZAJAC;Rémi;18/12/1966;Non +93;Seine-Saint-Denis;05;5ème circonscription;13;138;F;ARGOUSE;Nao;01/07/1998;DIV;Elève, étudiant;Non;M;PASSARD;Martin;11/12/1998;Non +93;Seine-Saint-Denis;06;6ème circonscription;1;59;F;SACKHO;Kourtoum;27/09/1984;UDI;Cadre de la fonction publique;Non;M;DOCTEUR ROZAN;Marc-Alain;13/03/1945;Non +93;Seine-Saint-Denis;06;6ème circonscription;2;42;F;TROVA;Françoise;07/03/1948;RN;Ancienne profession intermédiaire;Non;M;BEAUVOIS;Eric;17/09/1961;Non +93;Seine-Saint-Denis;06;6ème circonscription;3;147;M;ZEROUALI;Ali;28/09/1964;DIV;Profession intermédiaire de la santé et du travail social;Non;F;GHOTBI;Malika;30/03/1990;Non +93;Seine-Saint-Denis;06;6ème circonscription;4;55;F;ACHFAA;Soumia;13/11/1971;RDG;Profession libérale;Non;M;NOËL;Jean-Philippe;17/01/1982;Non +93;Seine-Saint-Denis;06;6ème circonscription;5;35;M;CHAMPION;Patrick;22/04/1964;DXG;Technicien;Non;F;JOURNO;Laurie;26/10/1977;Non +93;Seine-Saint-Denis;06;6ème circonscription;6;132;F;DJEBBARI;Nabila;17/05/1986;DVG;Cadre administratif et commercial d'entreprise;Non;F;CASTILLOU;Nadine;15/08/1970;Non +93;Seine-Saint-Denis;06;6ème circonscription;7;52;F;ARTHAUD;Nathalie;23/02/1970;DXG;Professeur, profession scientifique;Non;F;BORDES;Armonia;03/05/1945;Non +93;Seine-Saint-Denis;06;6ème circonscription;8;83;M;LACHAUD;Bastien;05/08/1980;NUPES;Professeur, profession scientifique;Oui;F;LO TUTALA;Aline;02/03/1969;Non +93;Seine-Saint-Denis;06;6ème circonscription;9;137;F;BOURAK;Aïcha;25/06/1966;DIV;Clergé, religieux;Non;M;BARUCHEL;Maurice;08/09/1956;Non +93;Seine-Saint-Denis;06;6ème circonscription;10;102;F;BAZIZ;Yasmina;16/04/1972;ENS;Profession intermédiaire administrative de la fonction publique;Non;F;DIMINO;Lucie;26/12/1966;Non +93;Seine-Saint-Denis;06;6ème circonscription;11;128;F;BEUGRÉ;Noélie;09/10/2003;REC;Elève, étudiant;Non;M;BOYDEV;Stoyan;10/03/1979;Non +93;Seine-Saint-Denis;06;6ème circonscription;12;139;M;MABIALA;Aymane;21/03/1995;DIV;Cadre administratif et commercial d'entreprise;Non;M;IGNACIO PINTO;Adé-Benjamin;10/02/1995;Non +93;Seine-Saint-Denis;07;7ème circonscription;1;80;M;CHAIR;Hamid;23/06/1978;RDG;Employé administratif d'entreprise;Non;F;BENTOUCHA;Faïrouz;08/09/1963;Non +93;Seine-Saint-Denis;07;7ème circonscription;2;66;F;DEHAY;Catherine;22/07/1960;ECO;Ingénieur et cadre technique d'entreprise;Non;F;BENABDALLAH;Corinne;10/09/1960;Non +93;Seine-Saint-Denis;07;7ème circonscription;3;54;F;BROSSIER;Marie-Laure;20/11/1968;ENS;Profession de l'information, des arts et des spectacles;Non;M;MONTARON;Xavier;15/09/1975;Non +93;Seine-Saint-Denis;07;7ème circonscription;4;32;F;JOCHAUD;Aurélie;03/08/1977;DXG;Profession intermédiaire de la santé et du travail social;Non;M;BONILAURI;Serge;13/08/1966;Non +93;Seine-Saint-Denis;07;7ème circonscription;5;143;F;MEHIDI;Myriam;01/01/1988;REC;Professeur des écoles, instituteur et assimilé;Non;F;HAMOUDI;Kahina;02/12/1990;Non +93;Seine-Saint-Denis;07;7ème circonscription;6;117;F;BOUCABEILLE;Madina;03/03/1997;UDI;Elève, étudiant;Non;M;DORIDANT;Richard;02/06/1964;Non +93;Seine-Saint-Denis;07;7ème circonscription;7;37;F;KEISER;Christel;10/11/1966;DXG;Professeur, profession scientifique;Non;F;TACCHELLA;Caroline;27/01/1977;Non +93;Seine-Saint-Denis;07;7ème circonscription;8;108;F;MONTAGNON;Jeanne;12/09/1953;ECO;Ancien cadre;Non;F;FERNANDEZ;Vanessa;31/07/1975;Non +93;Seine-Saint-Denis;07;7ème circonscription;9;135;F;YONIS;Choukri;30/03/1979;DVG;Cadre de la fonction publique;Non;F;CHAPPUT;Christel;16/07/1967;Non +93;Seine-Saint-Denis;07;7ème circonscription;10;53;M;YAGOUBI-MOROCHO;Karim;10/09/2002;RN;Elève, étudiant;Non;M;BLIN;Jean-Luc;02/07/1956;Non +93;Seine-Saint-Denis;07;7ème circonscription;11;79;M;CORBIÈRE;Alexis;17/08/1968;NUPES;Professeur, profession scientifique;Oui;F;SHAHRYARY;Sayna;01/05/1988;Non +93;Seine-Saint-Denis;08;8ème circonscription;1;33;M;TOBEILEM;Grégory;07/02/1977;DXG;Professeur, profession scientifique;Non;F;CHASTAING;Catherine;30/11/1966;Non +93;Seine-Saint-Denis;08;8ème circonscription;2;46;M;JOLIVET;Sébastien;24/01/1973;RN;Cadre de la fonction publique;Non;F;COTTEREAU;Valérie;17/02/1973;Non +93;Seine-Saint-Denis;08;8ème circonscription;3;121;M;GUIRAUDOU;Hugo;08/08/1997;DVG;Cadre administratif et commercial d'entreprise;Non;F;LAUR;Juliette;24/08/2000;Non +93;Seine-Saint-Denis;08;8ème circonscription;4;7;F;FOURNIER;Corinne;10/03/1965;ECO;Ingénieur et cadre technique d'entreprise;Non;F;AMSELLEM;Francine;07/05/1961;Non +93;Seine-Saint-Denis;08;8ème circonscription;5;21;F;KELOUA HACHI;Fatiha;05/06/1971;NUPES;Professeur, profession scientifique;Non;F;THIBAULT;Magalie;25/01/1988;Non +93;Seine-Saint-Denis;08;8ème circonscription;6;71;M;VALENTE;Sylvio;09/07/1960;REC;Ingénieur et cadre technique d'entreprise;Non;F;ZEMMOUR;Catherine;18/11/1954;Non +93;Seine-Saint-Denis;08;8ème circonscription;7;70;M;CARVALHINHO;Geoffrey;11/01/1990;LR;Cadre administratif et commercial d'entreprise;Non;F;MEDJAOUI;Aïcha;10/11/1979;Non +93;Seine-Saint-Denis;08;8ème circonscription;8;75;M;ZEIGER;Franck;22/03/1965;DSV;Professeur, profession scientifique;Non;M;SLAKMON;Nicolas;19/07/1984;Non +93;Seine-Saint-Denis;08;8ème circonscription;9;97;F;CHARRIERE;Sylvie;15/05/1961;ENS;Cadre de la fonction publique;Oui;M;BOULON;Alex;22/10/1962;Non +93;Seine-Saint-Denis;08;8ème circonscription;10;127;M;FOURNIER;Jean-Christophe;29/03/1985;DXG;Profession libérale;Non;F;BEKHTARI;Néva;01/07/1988;Non +93;Seine-Saint-Denis;08;8ème circonscription;11;89;M;CYRILLA;Eddy;31/03/1969;ECO;Profession intermédiaire de la santé et du travail social;Non;F;GAUTROT;Isabelle, Germaine, Gilberte;18/07/1964;Non +93;Seine-Saint-Denis;09;9ème circonscription;1;50;M;KOZELKO;Eric;22/04/1966;RN;Employé civil et agent de service de la fonction publique;Non;M;SUNA;Mustafa;15/11/1969;Non +93;Seine-Saint-Denis;09;9ème circonscription;2;16;F;TROUVÉ;Aurélie;20/09/1979;NUPES;Cadre de la fonction publique;Non;M;OZGUNER;Mehmet;20/08/1999;Non +93;Seine-Saint-Denis;09;9ème circonscription;3;17;M;PIERRE;Robenson;14/07/1980;LR;Profession libérale;Non;M;SAWICKI;Cédric;18/02/1997;Non +93;Seine-Saint-Denis;09;9ème circonscription;4;57;M;SAADA;Alexandre;08/02/1994;ENS;Employé civil et agent de service de la fonction publique;Non;F;CETINKAYA;Emel;13/06/1978;Non +93;Seine-Saint-Denis;09;9ème circonscription;5;119;F;GARRIGUE;Laure;11/07/1975;REC;Cadre administratif et commercial d'entreprise;Non;M;MAYER;Tahison;19/12/1991;Non +93;Seine-Saint-Denis;09;9ème circonscription;6;68;F;FITOUSSI;Carole;06/02/1961;ECO;Professeur, profession scientifique;Non;F;BLOT;Frédérique;24/04/1956;Non +93;Seine-Saint-Denis;09;9ème circonscription;7;99;M;LEFEBVRE;Jean-Paul;30/11/1956;DVG;Cadre administratif et commercial d'entreprise;Non;F;PETAT;Chloé;07/11/1997;Non +93;Seine-Saint-Denis;09;9ème circonscription;8;3;M;LANG-ROUSSEAU;Aloïs;14/11/1997;ECO;Profession de l'information, des arts et des spectacles;Non;F;VOTIER;Virginie;19/09/1975;Non +93;Seine-Saint-Denis;09;9ème circonscription;9;148;M;BADACHE;Atmane;19/02/1977;DIV;Profession libérale;Non;M;SY;Amadou;23/04/1980;Non +93;Seine-Saint-Denis;09;9ème circonscription;10;77;F;PETRZLJAN;Héléna;21/05/1993;UDI;Employé civil et agent de service de la fonction publique;Non;F;TOKYAY;Axelle;30/05/1970;Non +93;Seine-Saint-Denis;09;9ème circonscription;11;101;M;BUROT;Jean-Paul;21/11/1957;DXG;Ouvrier qualifié de type industriel;Non;M;TRIPELON;Olivier;25/05/1958;Non +93;Seine-Saint-Denis;09;9ème circonscription;12;69;F;ODOYER;Cécile;04/02/1972;DXG;Professeur des écoles, instituteur et assimilé;Non;M;FERNANDES;Grégory;19/12/1983;Non +93;Seine-Saint-Denis;10;10ème circonscription;1;14;F;GUY;Sylvie;08/07/1955;DXG;Professeur des écoles, instituteur et assimilé;Non;M;VIDAL;Dominique;28/12/1960;Non +93;Seine-Saint-Denis;10;10ème circonscription;2;15;M;MALARD;Jean-Ludwig;16/02/1984;ECO;Cadre administratif et commercial d'entreprise;Non;F;FERREIRA;Audrey;18/06/1990;Non +93;Seine-Saint-Denis;10;10ème circonscription;3;8;M;RAMADIER;Alain;08/07/1958;LR;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Oui;F;GAUTHIER;Christine;14/08/1958;Non +93;Seine-Saint-Denis;10;10ème circonscription;4;133;F;ABDELLAOUI;Leïla;24/12/1981;DVC;Cadre administratif et commercial d'entreprise;Non;M;PAVLOVIC;Zoran;18/04/1984;Non +93;Seine-Saint-Denis;10;10ème circonscription;5;134;F;HIMMI;Elhame;28/11/1979;DIV;Profession intermédiaire de la santé et du travail social;Non;M;KLEIN;Claude;20/09/1979;Non +93;Seine-Saint-Denis;10;10ème circonscription;6;145;M;BOUNOUA;Mohamed;27/05/1980;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;DETOEUF;Nathalie;11/09/1969;Non +93;Seine-Saint-Denis;10;10ème circonscription;7;118;M;SRAI;Abdelssamad;14/05/1998;DIV;Elève, étudiant;Non;M;OUAFFI;Nabil;20/05/1998;Non +93;Seine-Saint-Denis;10;10ème circonscription;8;106;F;BAKHTI-ALOUT;Sonia;30/04/1979;ENS;Profession intermédiaire administrative de la fonction publique;Non;F;CHERKAOUI;Nadia;04/07/1982;Non +93;Seine-Saint-Denis;10;10ème circonscription;9;82;F;ABOMANGOLI;Nadège;15/09/1975;NUPES;Cadre de la fonction publique;Non;M;CHANTEREAU;Jack;17/08/1950;Non +93;Seine-Saint-Denis;10;10ème circonscription;10;73;M;MINARDI;Gaëtan;16/02/1962;DXG;Ouvrier qualifié de type industriel;Non;M;BEAUFILS;Bruno;26/09/1966;Non +93;Seine-Saint-Denis;10;10ème circonscription;11;24;M;LOUBOTA;Praince Germain;13/07/1987;REC;Cadre administratif et commercial d'entreprise;Non;M;DOS SANTOS;Jean;16/12/1994;Non +93;Seine-Saint-Denis;10;10ème circonscription;12;67;F;CHATEAU;Pauline;03/06/2002;RN;Elève, étudiant;Non;F;THIBAULT;Gabrielle;17/02/1972;Non +93;Seine-Saint-Denis;11;11ème circonscription;1;105;M;KHUL;Ton Tona;01/02/1963;DVD;Ancien cadre;Non;F;EL ABED;Sonia;14/05/1974;Non +93;Seine-Saint-Denis;11;11ème circonscription;2;126;M;MERETREL;François;16/01/1978;DIV;Artisan;Non;F;DURANT;Joëlle;03/05/1999;Non +93;Seine-Saint-Denis;11;11ème circonscription;3;76;F;AÏT MESGHAT;Lynda;11/08/1965;UDI;Profession intermédiaire de la santé et du travail social;Non;M;FERNANDEZ;Laurent;26/08/1968;Non +93;Seine-Saint-Denis;11;11ème circonscription;4;28;M;LEVERRIER;Jean-Pierre;10/11/1945;ECO;Ancien cadre;Non;F;HERGUÉ;Patricia;13/02/1962;Non +93;Seine-Saint-Denis;11;11ème circonscription;5;58;F;COUFFIN-GUÉRIN;Isabelle;17/06/1961;DXG;Employé civil et agent de service de la fonction publique;Non;M;ESTEVES;Germano;24/04/1961;Non +93;Seine-Saint-Denis;11;11ème circonscription;6;124;M;NAUD;Emmanuel;13/01/1959;LR;Profession intermédiaire administrative de la fonction publique;Non;M;KHEBAL;Sofiane;09/04/2002;Non +93;Seine-Saint-Denis;11;11ème circonscription;7;56;F;AUTAIN;Clémentine;26/05/1973;NUPES;Profession de l'information, des arts et des spectacles;Oui;F;BERNEX;Brigitte;03/01/1957;Non +93;Seine-Saint-Denis;11;11ème circonscription;8;39;F;GUILLEMETTE;Micheline;09/07/1947;DXG;Ancien cadre;Non;M;HAMDI;Rachid;15/02/1977;Non +93;Seine-Saint-Denis;11;11ème circonscription;9;123;F;OUARET;Hakima;18/11/1977;ENS;Cadre administratif et commercial d'entreprise;Non;M;AÏT ELDJOUDI;Djemel;12/08/1972;Non +93;Seine-Saint-Denis;11;11ème circonscription;10;49;F;JOLY;Renée;14/06/1959;RN;Commerçant et assimilé;Non;M;MADJARIAN;Jean;08/03/1953;Non +93;Seine-Saint-Denis;11;11ème circonscription;11;44;F;DE CARVALHO;Virginie;12/05/1981;COM;Cadre administratif et commercial d'entreprise;Non;F;MABCHOUR;Najat;15/12/1968;Non +93;Seine-Saint-Denis;11;11ème circonscription;12;64;M;SCAGNI;Fabrice;28/12/1964;DVC;Cadre administratif et commercial d'entreprise;Non;F;LABORDE;Josette;26/06/1950;Non +93;Seine-Saint-Denis;11;11ème circonscription;13;116;F;DUSAUSOY;Guillemette;17/02/1986;REC;Profession intermédiaire de la santé et du travail social;Non;M;BENICHOU;Max;08/07/2002;Non +93;Seine-Saint-Denis;12;12ème circonscription;1;100;M;HOUHA;Malik;06/04/1978;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;JAN;Ludivine;27/02/1983;Non +93;Seine-Saint-Denis;12;12ème circonscription;2;9;F;CICERO;Sophie;29/03/1970;DXG;Professeur, profession scientifique;Non;M;JOLIVET;Francis;02/05/1953;Non +93;Seine-Saint-Denis;12;12ème circonscription;3;130;F;CISSE;Mariam;27/07/1982;REG;Cadre de la fonction publique;Non;M;LAAOUAJ;Ayoub;23/12/1999;Non +93;Seine-Saint-Denis;12;12ème circonscription;4;61;M;TORO;Ludovic;16/02/1959;UDI;Profession libérale;Non;F;MONIER;Annick;19/11/1955;Non +93;Seine-Saint-Denis;12;12ème circonscription;5;120;M;CESUR;Bahri;01/05/1964;DIV;Artisan;Non;F;GUNAY;Hélène Gözde;07/05/1988;Non +93;Seine-Saint-Denis;12;12ème circonscription;6;25;M;SALLE;Pierre Marie;23/11/1951;REC;Ancien cadre;Non;F;CARNINO;Sylvie;09/08/1964;Non +93;Seine-Saint-Denis;12;12ème circonscription;7;47;M;PERIER;Jean-François;05/02/1951;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;MARANO;Enzo;25/08/2000;Non +93;Seine-Saint-Denis;12;12ème circonscription;8;18;F;AISSAOUI;Amal;14/02/1975;DXG;Professeur, profession scientifique;Non;F;DELAUTRETTE;Corinne;08/05/1975;Non +93;Seine-Saint-Denis;12;12ème circonscription;9;72;M;LEGAVRE;Jérôme;20/08/1972;NUPES;Professeur, profession scientifique;Non;F;BARHANDI;Nezha;06/05/1979;Non +93;Seine-Saint-Denis;12;12ème circonscription;10;63;F;KLEBEK;Stéphanie;20/11/1967;DVG;Artisan;Non;M;LEFÉBURE;Pierre;13/02/1974;Non +93;Seine-Saint-Denis;12;12ème circonscription;11;95;M;TESTÉ;Stéphane;10/05/1968;ENS;Professeur des écoles, instituteur et assimilé;Oui;F;DJABALI;Sara;22/12/1990;Non +93;Seine-Saint-Denis;12;12ème circonscription;12;92;M;VOILLEMIN;Arnold;16/04/1978;DSV;Technicien;Non;M;POËTTE;Arnaud;30/01/1982;Non +94;Val-de-Marne;01;1ère circonscription;1;36;M;ROBIN;Pierre;27/11/1967;ECO;Profession libérale;Non;F;MIKRUT;Ivana;30/04/1991;Non +94;Val-de-Marne;01;1ère circonscription;2;68;M;DESCROZAILLE;Frédéric;16/04/1967;ENS;Cadre administratif et commercial d'entreprise;Oui;F;ROZEN-WARGON;Deborah;25/04/1971;Non +94;Val-de-Marne;01;1ère circonscription;3;54;F;BRATULESCU;Mirela;15/09/1971;REC;Cadre administratif et commercial d'entreprise;Non;M;BLAINVILLE;Jacques;11/11/1959;Non +94;Val-de-Marne;01;1ère circonscription;4;82;M;GUINTRAND;Thierry;24/03/1973;NUPES;Professeur des écoles, instituteur et assimilé;Non;F;PETIT;Émilie;03/06/1983;Non +94;Val-de-Marne;01;1ère circonscription;5;67;F;PATEL;Almash;17/10/1972;DXG;Professeur des écoles, instituteur et assimilé;Non;M;GENDRE;Daniel;04/07/1954;Non +94;Val-de-Marne;01;1ère circonscription;6;37;M;LAUZET;Pierre-Louis;02/02/1991;DVG;Elève, étudiant;Non;F;AUBERT;Nathalie;04/02/1953;Non +94;Val-de-Marne;01;1ère circonscription;7;35;F;BOUATLAOUI;Amina;30/12/1954;ECO;Professeur, profession scientifique;Non;M;FONTANA;Patrick;29/07/1958;Non +94;Val-de-Marne;01;1ère circonscription;8;5;M;JOLLY;Laurent;19/03/1968;RN;Employé administratif d'entreprise;Non;F;GROS;Isabelle;30/08/1957;Non +94;Val-de-Marne;01;1ère circonscription;9;120;F;LE PARC;Françoise;06/08/1946;COM;Ancien cadre;Non;F;DEISS;Jacqueline;17/01/1947;Non +94;Val-de-Marne;01;1ère circonscription;10;103;M;ROESCH;Germain;11/01/1959;LR;Ancien cadre;Non;F;MUSSOTTE-GUEDJ;Catherine;05/08/1969;Non +94;Val-de-Marne;01;1ère circonscription;11;34;F;TELLE;Géraldine;27/07/1980;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;GADEH;Abdo;10/10/1952;Non +94;Val-de-Marne;02;2ème circonscription;1;89;F;GUETTÉ;Clémence;15/03/1991;NUPES;Cadre administratif et commercial d'entreprise;Non;M;ALBERT;Robin;04/03/1981;Non +94;Val-de-Marne;02;2ème circonscription;2;26;F;TORRES;Josefa;07/03/1964;DXG;Technicien;Non;F;FEVRIER;Aline;02/11/1967;Non +94;Val-de-Marne;02;2ème circonscription;3;6;F;ROUSSEL;Françoise;08/09/1957;DXG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;M;ANGLIO;Jérémie;06/10/1973;Non +94;Val-de-Marne;02;2ème circonscription;4;112;F;LAVAL;Eloïse;16/09/2002;REC;Elève, étudiant;Non;M;BILAL;Hugo;10/01/2001;Non +94;Val-de-Marne;02;2ème circonscription;5;121;F;DERANSART;Elsa;06/10/1977;DVG;Cadre de la fonction publique;Non;M;GUIBERT;Vincent;06/08/1959;Non +94;Val-de-Marne;02;2ème circonscription;6;47;F;SUIN;Céline;13/01/1975;ECO;Personnel des services directs aux particuliers;Non;F;DELBOS;Mauricette;27/07/1956;Non +94;Val-de-Marne;02;2ème circonscription;7;83;F;AMARA;Salika;07/07/1949;DIV;Professeur, profession scientifique;Non;M;ISAMBA;Andy;20/12/1996;Non +94;Val-de-Marne;02;2ème circonscription;8;7;M;GHAYE;Antoine;20/01/1966;RN;Commerçant et assimilé;Non;F;VACHELOT;Dominique;23/01/1961;Non +94;Val-de-Marne;02;2ème circonscription;9;55;M;DRUART;Frédéric;07/10/1969;LR;Ingénieur et cadre technique d'entreprise;Non;M;HEBBRECHT;Thierry;27/07/1961;Non +94;Val-de-Marne;02;2ème circonscription;10;104;F;LARDEUX;Coline;20/02/1988;RDG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;ABDELLAOUI;Mohammed;11/10/1962;Non +94;Val-de-Marne;02;2ème circonscription;11;48;M;MBAYE;Jean François;01/01/1979;ENS;Cadre de la fonction publique;Oui;F;EUDE-DÜRLER;Jacqueline;21/11/1965;Non +94;Val-de-Marne;02;2ème circonscription;12;38;M;BOURIACHI;Taieb;25/11/1967;DIV;Technicien;Non;F;ULRY;Viviane;02/05/1968;Non +94;Val-de-Marne;03;3ème circonscription;1;40;M;ABRIBAT;Jean-Baptiste;15/09/1973;REC;Cadre administratif et commercial d'entreprise;Non;M;LAVAL;Vincent;29/08/1968;Non +94;Val-de-Marne;03;3ème circonscription;2;105;M;BRY-CHEVALIER;Tom;16/08/1996;ECO;Elève, étudiant;Non;M;BEDOIN;Maxime;21/03/1998;Non +94;Val-de-Marne;03;3ème circonscription;3;113;M;POIRET;Guillaume;07/12/1981;DXG;Cadre administratif et commercial d'entreprise;Non;F;N'TAKPE;Alice;31/05/1988;Non +94;Val-de-Marne;03;3ème circonscription;4;106;M;BOYARD;Louis;26/08/2000;NUPES;Elève, étudiant;Non;F;VENTURA;Odile;19/10/1975;Non +94;Val-de-Marne;03;3ème circonscription;5;122;M;ORKIDEZ;Blueez;13/02/1976;FI;Ouvrier qualifié de type industriel;Non;M;MOREAU;Raphaël Louis;25/08/1970;Non +94;Val-de-Marne;03;3ème circonscription;6;30;M;NOAILE;Lucien;04/07/1970;DXG;Technicien;Non;M;NEDELEC;Fabrice;19/01/1968;Non +94;Val-de-Marne;03;3ème circonscription;7;39;F;HAMZAOUI;Naoual;12/01/1978;DVD;Employé administratif d'entreprise;Non;F;MARIOLLE;Emilie;02/01/1977;Non +94;Val-de-Marne;03;3ème circonscription;8;28;M;SAINT-MARTIN;Laurent;22/06/1985;ENS;Ancien cadre;Oui;M;GUÉRIN;Daniel;01/07/1963;Non +94;Val-de-Marne;03;3ème circonscription;9;27;F;BAPTISTE;Marie-Françoise;23/06/1982;DSV;Ingénieur et cadre technique d'entreprise;Non;F;MANGOUA;Sophie;23/06/1988;Non +94;Val-de-Marne;03;3ème circonscription;10;107;F;MARQUES;Catherine;14/05/1981;DIV;Artisan;Non;M;HEURTEMATTE;Franck;23/11/1966;Non +94;Val-de-Marne;03;3ème circonscription;11;49;M;GONZALES;Didier;14/09/1960;LR;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;LECOUFLE;Françoise;25/06/1954;Non +94;Val-de-Marne;03;3ème circonscription;12;29;M;YON;André;05/09/1949;DXG;Professeur, profession scientifique;Non;F;TERNET;Katherine;17/03/1950;Non +94;Val-de-Marne;03;3ème circonscription;13;66;M;PRETOT;Francis;14/04/1958;RN;Ancienne profession intermédiaire;Non;F;CHOURRE;Natacha;15/05/1970;Non +94;Val-de-Marne;04;4ème circonscription;1;50;F;PETIT;Maud;15/11/1971;ENS;Cadre administratif et commercial d'entreprise;Oui;M;MARECHAL;Alexis;01/06/1977;Non +94;Val-de-Marne;04;4ème circonscription;2;69;F;LEMAIRE;Mirabelle;25/12/1963;NUPES;Employé civil et agent de service de la fonction publique;Non;M;DANTEC;Bernard;05/06/1967;Non +94;Val-de-Marne;04;4ème circonscription;3;31;M;PHILIPPET;Alain;08/02/1964;RN;Ancien cadre;Non;F;FLAMENT;Sandrine;22/04/1970;Non +94;Val-de-Marne;04;4ème circonscription;4;114;M;VICENT;Denis;14/03/1964;COM;Cadre de la fonction publique;Non;M;VERPILLEUX;Dominique;05/04/1954;Non +94;Val-de-Marne;04;4ème circonscription;5;128;F;CIUNTU;Marie-Carole;09/11/1964;LR;Profession libérale;Non;F;COMBAL;Carole;14/09/1964;Non +94;Val-de-Marne;04;4ème circonscription;6;95;M;SCOTTO;Gerard;23/12/1951;DSV;Profession libérale;Non;F;CHAMINADE;Anne;21/07/1967;Non +94;Val-de-Marne;04;4ème circonscription;7;41;F;YVOS;Isabelle;15/09/1966;ECO;Profession libérale;Non;F;BEZAULT;Christine;23/08/1961;Non +94;Val-de-Marne;04;4ème circonscription;8;32;F;MERLIN;Véronique;20/11/1990;REC;Profession intermédiaire administrative et commerciale des entreprises;Non;M;LAURENT-GUY;Alain;18/04/1955;Non +94;Val-de-Marne;04;4ème circonscription;9;8;F;MOULIN;Brigitte;16/06/1954;DXG;Profession intermédiaire de la santé et du travail social;Non;M;EL MARBATI;Abdelatif;09/03/1964;Non +94;Val-de-Marne;04;4ème circonscription;10;129;F;PERRU;Marie-Odile;04/12/1960;DVC;Professeur, profession scientifique;Non;M;ALGARD;Franck;03/03/1952;Non +94;Val-de-Marne;05;5ème circonscription;1;43;M;DUBOUCHER;Frédéric;22/02/1987;ECO;Profession intermédiaire administrative et commerciale des entreprises;Non;F;MUTHER;Isabelle;23/06/1969;Non +94;Val-de-Marne;05;5ème circonscription;2;52;F;VEYSSIÈRE;Stéphanie;01/09/1968;REC;Cadre administratif et commercial d'entreprise;Non;M;LAURENT;Xavier;31/05/1974;Non +94;Val-de-Marne;05;5ème circonscription;3;108;M;THENIN;Matthieu;03/03/2004;DIV;Elève, étudiant;Non;M;MARTEL;Corentin;16/03/2004;Non +94;Val-de-Marne;05;5ème circonscription;4;70;M;REUTHER;Guillaume;23/03/1981;DSV;Ingénieur et cadre technique d'entreprise;Non;M;MARTIN;David;01/08/1977;Non +94;Val-de-Marne;05;5ème circonscription;5;84;M;JOSLIN;François;21/11/1965;DXG;Professeur, profession scientifique;Non;M;PONTY;Laurent;16/08/1954;Non +94;Val-de-Marne;05;5ème circonscription;6;71;M;HENRY;Maxime;03/02/1998;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;F;CREVOISIER;Mathilde;23/07/1997;Non +94;Val-de-Marne;05;5ème circonscription;7;53;M;CHICHE;Bruno;17/08/1954;DXG;Ancien cadre;Non;F;PHILIPPE;Emmanuelle;25/12/1991;Non +94;Val-de-Marne;05;5ème circonscription;8;123;M;BAZIN;Paul;04/09/1985;LR;Cadre de la fonction publique;Non;F;RAMCHURN;Anicha;21/11/1989;Non +94;Val-de-Marne;05;5ème circonscription;9;124;M;MAHAUD;Alain;30/07/1957;COM;Profession intermédiaire administrative et commerciale des entreprises;Non;M;VALDEYRON;Guy Andre;07/01/1939;Non +94;Val-de-Marne;05;5ème circonscription;10;42;M;LEFEVRE;Mathieu;27/10/1986;ENS;Cadre de la fonction publique;Non;F;LALANNE;Sandrine;16/02/1973;Non +94;Val-de-Marne;05;5ème circonscription;11;51;M;LEGER;Julien;09/12/1979;NUPES;Cadre administratif et commercial d'entreprise;Non;F;SCHWARZ;Julie;12/03/1981;Non +94;Val-de-Marne;05;5ème circonscription;12;9;F;HUGUENIN-RICHARD;Isabelle;10/09/1976;RN;Employé de commerce;Non;M;DELMAS;Gauthier;07/01/1987;Non +94;Val-de-Marne;06;6ème circonscription;1;96;M;MASSOT;François;27/09/1983;REG;Ingénieur et cadre technique d'entreprise;Non;F;BONHOMME;Nina;05/10/2000;Non +94;Val-de-Marne;06;6ème circonscription;2;60;M;GOUFFIER-CHA;Guillaume;01/02/1986;ENS;Cadre de la fonction publique;Oui;F;CAZALS;Chantal;28/04/1965;Non +94;Val-de-Marne;06;6ème circonscription;3;72;M;HERZOG;Alexandre;22/02/1992;DXG;Profession intermédiaire administrative de la fonction publique;Non;F;PÉROU;Virginie;27/03/1973;Non +94;Val-de-Marne;06;6ème circonscription;4;44;F;HUNAUT;Véronique;09/03/1962;DXG;Technicien;Non;F;SAINTIER;Anne;31/01/1969;Non +94;Val-de-Marne;06;6ème circonscription;5;90;F;WYPOREK;Aniela;23/01/1941;ECO;Ancien cadre;Non;F;FEO;Hélène;12/04/1965;Non +94;Val-de-Marne;06;6ème circonscription;6;74;M;WILLARD;Benoit;17/08/1966;REG;Commerçant et assimilé;Non;F;PEREZ;Anna;15/04/1965;Non +94;Val-de-Marne;06;6ème circonscription;7;85;F;BOUHADA;May;26/02/1972;NUPES;Profession de l'information, des arts et des spectacles;Non;M;GAUTRAIS;Jean-Philippe;25/09/1980;Non +94;Val-de-Marne;06;6ème circonscription;8;125;M;GILLET;Fabrice;03/03/1960;COM;Cadre de la fonction publique;Non;M;DUVAL;Thierry;12/08/1969;Non +94;Val-de-Marne;06;6ème circonscription;9;11;F;CHAPUT;Catherine;26/02/1956;RN;Ancien employé;Non;M;LEJEMBLE;Jean-Jacques;07/09/1954;Non +94;Val-de-Marne;06;6ème circonscription;10;73;M;ALONSO;Luc;14/09/1971;RDG;Cadre administratif et commercial d'entreprise;Non;M;BOISSEL;Nicolas;20/07/1974;Non +94;Val-de-Marne;06;6ème circonscription;11;56;M;CORNET;Xavier;13/03/1965;ECO;Policier et militaire;Non;F;ZIMMERLÉ;Laurence;07/06/1965;Non +94;Val-de-Marne;06;6ème circonscription;12;81;F;BOURG;Jothi;11/04/1969;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;BENSASSON;Igor;29/10/1964;Non +94;Val-de-Marne;06;6ème circonscription;13;93;M;TAIEB;Charles;08/02/1981;REC;Profession libérale;Non;F;PONCET;Frédérique;04/11/1962;Non +94;Val-de-Marne;06;6ème circonscription;14;86;F;FRIEH;Huguette;24/04/1947;UDI;Ancien cadre;Non;M;QUÉRON;Alexandre;22/04/2000;Non +94;Val-de-Marne;06;6ème circonscription;15;10;M;RENAULT;Tony;19/01/1972;ECO;Employé de commerce;Non;F;MOUSSY;Céline;17/02/1972;Non +94;Val-de-Marne;07;7ème circonscription;1;62;M;NADAL;Noël;06/10/1997;REC;Professeur, profession scientifique;Non;M;NALLET;Nicolas;10/01/1984;Non +94;Val-de-Marne;07;7ème circonscription;2;45;F;KEKE;Rachel;30/05/1974;NUPES;Personnel des services directs aux particuliers;Non;F;LECLERC-BRUANT;Marie;15/04/1976;Non +94;Val-de-Marne;07;7ème circonscription;3;33;F;MAURY;Claire;09/04/1962;DXG;Technicien;Non;M;BOUTET;Pascal;26/03/1955;Non +94;Val-de-Marne;07;7ème circonscription;4;94;F;DEBBACHE;Gaëlle;10/12/1966;REG;Profession intermédiaire de la santé et du travail social;Non;M;DECARPENTRIE;Guy;11/02/1968;Non +94;Val-de-Marne;07;7ème circonscription;5;61;F;CORBIN;Pascale;27/03/1957;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;NGUYEN;Anh Tuan;17/04/1976;Non +94;Val-de-Marne;07;7ème circonscription;6;3;M;IANNUZZI;Ugo;21/10/1998;RN;Artisan;Non;M;BOUDIN;Paul;11/09/1945;Non +94;Val-de-Marne;07;7ème circonscription;7;91;M;JEANBRUN;Vincent;05/05/1984;LR;Cadre de la fonction publique;Non;M;TRYZNA;Nicolas;15/12/1987;Non +94;Val-de-Marne;07;7ème circonscription;8;65;F;MARACINEANU;Roxana;07/05/1975;ENS;Ancien cadre;Non;M;LADJICI;Yacine;06/08/1986;Non +94;Val-de-Marne;07;7ème circonscription;9;109;M;LEMAANNI;El-Mehdi;19/04/1985;DIV;Cadre administratif et commercial d'entreprise;Non;F;FREDON;Audrey;31/10/1986;Non +94;Val-de-Marne;08;8ème circonscription;1;16;M;PAGÈS;Erik;17/12/1991;NUPES;Cadre de la fonction publique;Non;F;SEMICHON-HUSSET;Mélodia;26/09/1987;Non +94;Val-de-Marne;08;8ème circonscription;2;92;M;CHALENDAR;Franck;01/11/1999;DSV;Cadre administratif et commercial d'entreprise;Non;F;DOUBLET;Patricia;10/11/1968;Non +94;Val-de-Marne;08;8ème circonscription;3;17;F;CHEYNS;Amandine;18/12/1979;DXG;Professeur, profession scientifique;Non;M;CAUX;Baptiste;12/02/1993;Non +94;Val-de-Marne;08;8ème circonscription;4;126;F;LAMIMI;Zohra;08/01/1957;COM;Ancien ouvrier;Non;M;PIROLLET;Joseph;12/12/1942;Non +94;Val-de-Marne;08;8ème circonscription;5;63;M;MOURLIN;Mickaël;03/02/1975;DXG;Technicien;Non;F;BACQUÉ;Agnès;26/11/1958;Non +94;Val-de-Marne;08;8ème circonscription;6;87;F;HUGON;Stéphanie;10/03/1980;DVG;Cadre de la fonction publique;Non;F;MORISSON;Elisabeth;23/05/1964;Non +94;Val-de-Marne;08;8ème circonscription;7;12;M;BUCLIN;Olivier;17/02/1964;REC;Ingénieur et cadre technique d'entreprise;Non;F;BOURGES;Marie-Capucine;11/12/2001;Non +94;Val-de-Marne;08;8ème circonscription;8;14;F;VUILLARD;Elisabeth;11/01/1948;RN;Ancien artisan, commerçant, chef d'entreprise;Non;M;CASSOU;Jean-Pierre;20/08/1950;Non +94;Val-de-Marne;08;8ème circonscription;9;97;F;SCOTTO;Alexandra;11/10/1953;ECO;Profession libérale;Non;F;PLUEGER;Michèle;27/05/1951;Non +94;Val-de-Marne;08;8ème circonscription;10;15;M;HERBILLON;Michel;06/03/1951;LR;Ancien cadre;Oui;M;GICQUEL;Hervé;04/03/1969;Non +94;Val-de-Marne;08;8ème circonscription;11;13;F;WARGON;Emmanuelle;24/02/1971;ENS;Cadre de la fonction publique;Non;M;NAHON;Samuel;24/08/1984;Non +94;Val-de-Marne;09;9ème circonscription;1;111;F;BENOUADAH;Simone;14/05/1974;REC;Employé de commerce;Non;M;ZBINDEN;Stéphane;03/10/1967;Non +94;Val-de-Marne;09;9ème circonscription;2;88;M;NDONGALA;Lufian;24/05/1982;DIV;Profession intermédiaire de la santé et du travail social;Non;F;BERTHOLOM;Yvette;23/06/1953;Non +94;Val-de-Marne;09;9ème circonscription;3;2;F;SANTIAGO;Isabelle;20/09/1965;NUPES;Cadre de la fonction publique;Oui;M;BELL-LLOCH;Pierre;02/08/1977;Non +94;Val-de-Marne;09;9ème circonscription;4;19;M;JAUBERT;Christophe;16/09/1981;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;LEISEING;Patrick;04/11/1946;Non +94;Val-de-Marne;09;9ème circonscription;5;20;F;RUCHOT;Sandrine;20/12/1967;DXG;Technicien;Non;F;VIEIRA;Marie;02/02/1962;Non +94;Val-de-Marne;09;9ème circonscription;6;127;F;MAHMOUDI;Monia;15/08/1973;DIV;Profession intermédiaire administrative de la fonction publique;Non;M;BORGI;Montassar;17/12/1975;Non +94;Val-de-Marne;09;9ème circonscription;7;115;M;BENBETKA;Abdallah;21/01/1970;COM;Profession intermédiaire administrative et commerciale des entreprises;Non;F;AOUTIA;Fatima;05/07/1969;Non +94;Val-de-Marne;09;9ème circonscription;8;18;F;CUI;Wenqi;28/11/1969;RN;Professeur des écoles, instituteur et assimilé;Non;M;SERIGNAT;Bruno;18/01/1946;Non +94;Val-de-Marne;09;9ème circonscription;9;98;M;GARY;Ethan;02/12/1999;DSV;Elève, étudiant;Non;M;BELLARD;Valentin;17/03/1998;Non +94;Val-de-Marne;09;9ème circonscription;10;110;F;BONHOMME-AFFLATET;Michèle;30/10/1954;LR;Profession libérale;Non;M;AUBERTIN;Jérôme;24/03/1951;Non +94;Val-de-Marne;09;9ème circonscription;11;75;M;OLLIVIER;Emmanuel;20/03/1972;ECO;Chef d'entreprise de 10 salariés ou plus;Non;F;DELEERSNYDER;Daphnée;26/06/1984;Non +94;Val-de-Marne;09;9ème circonscription;12;76;F;DUCANDAS;Véronique;23/11/1977;DXG;Professeur, profession scientifique;Non;F;FOURRIER;Séverine;06/10/1983;Non +94;Val-de-Marne;09;9ème circonscription;13;46;M;ROSENBLUM;Jonathan;24/07/1991;ENS;Cadre administratif et commercial d'entreprise;Non;F;PAPAZIAN;Sylvie;17/11/1966;Non +94;Val-de-Marne;10;10ème circonscription;1;57;M;CHAPPELLIER;Bernard;24/05/1957;ECO;Profession intermédiaire administrative de la fonction publique;Non;F;FYOT;Claudette;27/06/1942;Non +94;Val-de-Marne;10;10ème circonscription;2;99;M;JOUBERT;Alex;11/04/1995;UDI;Cadre administratif et commercial d'entreprise;Non;F;LATOUR;Alice;23/04/1998;Non +94;Val-de-Marne;10;10ème circonscription;3;21;M;HARDOUIN;Philippe;28/09/1953;ENS;Profession libérale;Non;F;BOULKROUN;Sheerazed;16/07/1974;Non +94;Val-de-Marne;10;10ème circonscription;4;117;F;LADIAN-FASSI;Laurine;31/03/2001;REC;Elève, étudiant;Non;M;CULERRIER;Thomas;18/12/1993;Non +94;Val-de-Marne;10;10ème circonscription;5;22;F;LIN;Elise;15/04/1982;RN;Employé de commerce;Non;M;GODET;Patrick;31/03/1975;Non +94;Val-de-Marne;10;10ème circonscription;6;116;M;COURANT;César;11/02/1982;ECO;Cadre administratif et commercial d'entreprise;Non;F;BOEUF;Evelyne;01/09/1977;Non +94;Val-de-Marne;10;10ème circonscription;7;77;F;PANOT;Mathilde;15/01/1989;NUPES;Cadre administratif et commercial d'entreprise;Oui;F;CHIKH;Farida;03/09/1969;Non +94;Val-de-Marne;10;10ème circonscription;8;64;F;LICHTENAUER;Christine;28/02/1976;DXG;Professeur, profession scientifique;Non;M;BENYACAR;Bernard;18/01/1950;Non +94;Val-de-Marne;11;11ème circonscription;1;101;F;AIT OUALI;Zahra;02/05/2003;REG;Elève, étudiant;Non;M;SCHWARZ;Pierre;15/11/1979;Non +94;Val-de-Marne;11;11ème circonscription;2;59;F;MILAMON;Sarah;23/01/2001;REC;Elève, étudiant;Non;M;AIGRISSE;Yohan;13/10/1995;Non +94;Val-de-Marne;11;11ème circonscription;3;100;F;TAILLÉ-POLIAN;Sophie;04/10/1974;NUPES;Cadre de la fonction publique;Non;M;ARROUCHE;Djamel;28/10/1972;Non +94;Val-de-Marne;11;11ème circonscription;4;79;M;BOUNEGTA;Mahrouf;23/04/1962;LR;Profession intermédiaire administrative et commerciale des entreprises;Non;F;GALHIÉ-ERIPRET;Clotilde;06/07/1975;Non +94;Val-de-Marne;11;11ème circonscription;5;119;F;MWANA-KUSU;Namunayao Kahambwe Ziada;08/10/1974;DIV;Employé de commerce;Non;F;BIANDOUNDA;Michaëlle;13/06/1976;Non +94;Val-de-Marne;11;11ème circonscription;6;102;M;GUANAES NETTO;Pedro;18/06/1979;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;AGHOUCHY;Kenza;18/02/1979;Non +94;Val-de-Marne;11;11ème circonscription;7;24;M;COUTHURES;Jean;04/06/1955;DVG;Professeur, profession scientifique;Non;F;RAMAH;Taheroon;26/12/1958;Non +94;Val-de-Marne;11;11ème circonscription;8;4;F;GABELICA;Martina;27/10/1997;RN;Employé de commerce;Non;M;PEIXOTO;Georges;15/10/1971;Non +94;Val-de-Marne;11;11ème circonscription;9;23;M;ROSAZ;Jocelyn-Pierre;24/09/1977;ECO;Cadre administratif et commercial d'entreprise;Non;F;MAISONNEUVE;Nathalie;22/12/1965;Non +94;Val-de-Marne;11;11ème circonscription;10;80;F;ROCHETEAU;Maryvonne;22/08/1944;DVG;Ancien cadre;Non;M;MICHELON;Quentin;13/01/1992;Non +94;Val-de-Marne;11;11ème circonscription;11;118;F;LAVILLETTE;Dany-Laure;08/06/1971;DVC;Cadre de la fonction publique;Non;M;ANDRIA;Rajaon;08/09/1960;Non +94;Val-de-Marne;11;11ème circonscription;12;25;F;FLORENCE;Nicole;10/08/1952;DXG;Ancien cadre;Non;M;LILLIER;Thierry;20/09/1961;Non +94;Val-de-Marne;11;11ème circonscription;13;78;F;MAZURIER;Christine;14/04/1962;DXG;Professeur des écoles, instituteur et assimilé;Non;F;GAUVAIN;Catherine;27/12/1963;Non +94;Val-de-Marne;11;11ème circonscription;14;58;M;CALVEZ;Erwann;26/04/1987;ENS;Cadre de la fonction publique;Non;F;ESCLANGON ADELEINE;Christel;20/04/1972;Non +95;Val-d'Oise;01;1ère circonscription;1;80;M;SAVIGNAT;Antoine;22/07/1975;LR;Profession libérale;Oui;M;DEMAILLY;Benjamin;12/07/1994;Non +95;Val-d'Oise;01;1ère circonscription;2;87;F;BARBIER;Sandrine;03/07/1970;ECO;Cadre administratif et commercial d'entreprise;Non;F;GOSSET;Sophie Anne;01/10/1967;Non +95;Val-d'Oise;01;1ère circonscription;3;6;F;GÉHAN;Barbara;15/02/1968;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;PLESSIS;Alexandre;17/02/1987;Non +95;Val-d'Oise;01;1ère circonscription;4;27;M;ATTAGNANT;Erwan;29/09/1974;REC;Cadre administratif et commercial d'entreprise;Non;F;DUEYMES;Sibylle;29/04/1969;Non +95;Val-d'Oise;01;1ère circonscription;5;41;F;CHANDLER;Emilie;29/04/1983;ENS;Profession libérale;Non;M;ERNST;Francois;25/07/1962;Non +95;Val-d'Oise;01;1ère circonscription;6;9;M;PIERRE;Philippe;25/08/1971;RN;Cadre de la fonction publique;Non;F;KREBS;Suzanne;07/06/1962;Non +95;Val-d'Oise;01;1ère circonscription;7;72;M;LESSAINT;Lionel;24/05/1972;DSV;Ingénieur et cadre technique d'entreprise;Non;M;FERREIRA;Frédéric;19/03/1976;Non +95;Val-d'Oise;01;1ère circonscription;8;28;F;IVORRA;Leïla;20/08/1995;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;PAIGNON;Gilles;05/07/1967;Non +95;Val-d'Oise;01;1ère circonscription;9;64;M;LAPEYRE;Albert;04/02/1961;ECO;Technicien;Non;F;PEIRETTI;Madeleine;15/10/1951;Non +95;Val-d'Oise;02;2ème circonscription;1;70;M;BRULARD;Jean-Luc;30/09/1961;DXG;Commerçant et assimilé;Non;F;DE CASTRO;Margot;23/10/1992;Non +95;Val-d'Oise;02;2ème circonscription;2;119;M;OUBAIROUK;Brahim;23/05/1976;ECO;Commerçant et assimilé;Non;F;AIT-MEHDI;Sandra;07/01/1972;Non +95;Val-d'Oise;02;2ème circonscription;3;56;F;CHIKHANE;Lydie;07/06/1970;DSV;Cadre administratif et commercial d'entreprise;Non;M;LUDET;Alexandre;10/07/1984;Non +95;Val-d'Oise;02;2ème circonscription;4;81;M;PAIN;Frédéric;11/12/1963;LR;Cadre administratif et commercial d'entreprise;Non;F;MICHEL;Valérie;03/09/1967;Non +95;Val-d'Oise;02;2ème circonscription;5;105;M;NICOLLE;Jérôme;15/01/1983;DIV;Profession libérale;Non;M;BRENON;Alexis;20/12/1991;Non +95;Val-d'Oise;02;2ème circonscription;6;82;F;GEOFFROY-MARTIN;Sylvie;27/11/1960;NUPES;Cadre de la fonction publique;Non;M;BERTHE;Sylvain;30/08/1970;Non +95;Val-d'Oise;02;2ème circonscription;7;79;F;DOMBROWSKI;Mireille;13/01/1944;DXG;Ancien employé;Non;M;SYLLA;Aboubacar;01/01/1980;Non +95;Val-d'Oise;02;2ème circonscription;8;5;M;CASSAN;Éric;19/07/1960;DXG;Chauffeur;Non;F;LE FLOHIC;Alice;11/11/1986;Non +95;Val-d'Oise;02;2ème circonscription;9;14;F;REMY;Nadejda;30/12/1961;RN;Ancien employé;Non;M;LE BON;Emeric;29/03/1988;Non +95;Val-d'Oise;02;2ème circonscription;10;51;M;CAVAIGNAC;Jeson;28/09/1977;DIV;Ingénieur et cadre technique d'entreprise;Non;F;LE;Yen;15/10/1978;Non +95;Val-d'Oise;02;2ème circonscription;11;54;M;DRARI;Abdelmadjid;29/06/1969;DIV;Artisan;Non;F;CHIDMI;Hakima;11/05/1972;Non +95;Val-d'Oise;02;2ème circonscription;12;35;M;VUILLETET;Guillaume;20/06/1967;ENS;Profession libérale;Oui;F;DRAPEAU;Delphine;26/05/1977;Non +95;Val-d'Oise;02;2ème circonscription;13;47;M;CHANZY;Philippe;05/03/1957;REC;Cadre administratif et commercial d'entreprise;Non;F;PRAVONG;Amélia;17/07/2001;Non +95;Val-d'Oise;02;2ème circonscription;14;17;F;BONUCCI;Laura;19/06/1968;DXG;Ouvrier qualifié de type artisanal;Non;M;LEFEBVRE DES NOËTTES;François;29/08/1956;Non +95;Val-d'Oise;02;2ème circonscription;15;4;F;FRAPPA;Morgane;17/02/2003;ECO;Elève, étudiant;Non;F;DEDEYE;Manon;28/04/2003;Non +95;Val-d'Oise;03;3ème circonscription;1;16;M;GÉRARD;Pascal;06/07/1966;REC;Employé civil et agent de service de la fonction publique;Non;M;HEUDE;Patrice;23/01/1974;Non +95;Val-d'Oise;03;3ème circonscription;2;96;M;DAVID;Fabrice;12/06/1959;ECO;Technicien;Non;F;BARNEOUD;Louise;22/02/1946;Non +95;Val-d'Oise;03;3ème circonscription;3;22;M;PECQUET;Eric;28/05/1963;DSV;Chef d'entreprise de 10 salariés ou plus;Non;F;TROUILLET;Nathalie;09/09/1966;Non +95;Val-d'Oise;03;3ème circonscription;4;98;F;PELEGRIN;Carine;15/10/1975;NUPES;Cadre de la fonction publique;Non;M;JALLU;Laurent;22/12/1962;Non +95;Val-d'Oise;03;3ème circonscription;5;85;F;RODAS-PAWLOFF;Véronique;08/04/1968;ECO;Profession libérale;Non;F;BRETEL;Anne;04/05/1949;Non +95;Val-d'Oise;03;3ème circonscription;6;43;M;MUNOZ;Juan;16/12/1956;DXG;Ancien ouvrier;Non;M;FAUVERTE;Bernard;17/05/1953;Non +95;Val-d'Oise;03;3ème circonscription;7;90;F;LAURINI;Romana;27/12/1959;RN;Profession libérale;Non;M;FARARD;Ronan;04/06/1991;Non +95;Val-d'Oise;03;3ème circonscription;8;53;F;RILHAC;Cécile;21/04/1974;ENS;Cadre de la fonction publique;Oui;M;KHIAT;Benjamin;10/05/1988;Non +95;Val-d'Oise;03;3ème circonscription;9;62;F;NEROZZI-BANFI;Sarah;11/09/1990;LR;Cadre de la fonction publique;Non;F;DANGUILHEN;Laurianne;26/05/1981;Non +95;Val-d'Oise;04;4ème circonscription;1;20;M;GEORJON;Fréderic;16/01/1976;REC;Chef d'entreprise de 10 salariés ou plus;Non;F;ROTARIU;Ilona;02/04/2001;Non +95;Val-d'Oise;04;4ème circonscription;2;88;F;LACOUTURE;Karine;18/11/1969;NUPES;Professeur, profession scientifique;Non;M;PREVOST;Camille;15/12/1978;Non +95;Val-d'Oise;04;4ème circonscription;3;57;F;MOUTCHOU;Naïma;04/11/1980;ENS;Profession libérale;Oui;F;LE MOING;Sandrine;02/06/1982;Non +95;Val-d'Oise;04;4ème circonscription;4;118;M;BERTHAULT;Grégory;02/11/1984;ECO;Employé civil et agent de service de la fonction publique;Non;F;KALACHNIKOFF;Clarisse;10/11/1993;Non +95;Val-d'Oise;04;4ème circonscription;5;104;M;BOULLÉ;Patrick;05/12/1966;LR;Professeur des écoles, instituteur et assimilé;Non;F;CHARBONNIER;Martine;22/02/1949;Non +95;Val-d'Oise;04;4ème circonscription;6;31;M;MACÉ;Régis;26/03/1972;RN;Ingénieur et cadre technique d'entreprise;Non;F;MARCEL-MAUPIN;Yolande;07/12/1960;Non +95;Val-d'Oise;04;4ème circonscription;7;89;F;TUCCI;Cindy;26/06/1987;ECO;Professeur des écoles, instituteur et assimilé;Non;F;POINGT;Véronique;03/07/1969;Non +95;Val-d'Oise;04;4ème circonscription;8;32;F;L'HOMMEDET;Marie-Françoise;10/02/1968;DXG;Professeur, profession scientifique;Non;M;BONHOMME;Gilles;20/05/1957;Non +95;Val-d'Oise;04;4ème circonscription;9;2;M;POUPARD;Alain;02/06/1949;DXG;Ancien employé;Non;F;PARNET;Christiane;24/09/1959;Non +95;Val-d'Oise;05;5ème circonscription;1;24;M;HAROUCH;Schemsdine;03/09/1978;DIV;Professeur, profession scientifique;Non;F;OUEDRAOGO;Ramatou;17/10/1975;Non +95;Val-d'Oise;05;5ème circonscription;2;77;F;LAZAAR;Fiona;19/09/1985;ENS;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;M;METEZEAU;Philippe;27/04/1948;Non +95;Val-d'Oise;05;5ème circonscription;3;26;F;HENRY;Stéphanie;12/02/1977;DXD;Policier et militaire;Non;M;AUBERTIN;Sébastien;13/07/1969;Non +95;Val-d'Oise;05;5ème circonscription;4;114;F;KOUYATE;Dienabou;27/04/1959;DVG;Profession libérale;Non;F;BOUGARA;Bouchra;08/07/1970;Non +95;Val-d'Oise;05;5ème circonscription;5;66;M;VANNIER;Paul;19/09/1985;NUPES;Professeur, profession scientifique;Non;F;CONAN;Laurence;28/06/1961;Non +95;Val-d'Oise;05;5ème circonscription;6;95;M;LALLAOUI;Mehdi;15/10/1957;REG;Profession de l'information, des arts et des spectacles;Non;F;MARCUZZO;Isabelle;12/12/1974;Non +95;Val-d'Oise;05;5ème circonscription;7;110;M;ARBAOUI;Rémy;11/08/1979;DIV;Ingénieur et cadre technique d'entreprise;Non;F;IALLATEN;Karina;28/05/1985;Non +95;Val-d'Oise;05;5ème circonscription;8;7;M;MARIETTE;Dominique;24/04/1952;DXG;Ancienne profession intermédiaire;Non;M;CAMPAGNAC;Michel;11/07/1970;Non +95;Val-d'Oise;05;5ème circonscription;9;33;F;DAUMAS;Fabienne;22/01/1963;RN;Technicien;Non;M;BATASSI;Matthieu;15/02/1970;Non +95;Val-d'Oise;05;5ème circonscription;10;39;F;SAPIN;Mathilde;26/10/1979;ECO;Employé administratif d'entreprise;Non;F;AMIDOU;Souad;04/07/1959;Non +95;Val-d'Oise;05;5ème circonscription;11;67;M;SAVRY;Gilles;20/11/1964;LR;Ingénieur et cadre technique d'entreprise;Non;M;ROULLIER;Marc;16/04/1969;Non +95;Val-d'Oise;05;5ème circonscription;12;121;M;TRAORE;Cheickna;06/07/1966;DVG;Cadre de la fonction publique;Non;F;BA;Aminata Oumar;08/05/1971;Non +95;Val-d'Oise;06;6ème circonscription;1;15;F;FERDEL;Anaïs;02/02/1995;REC;Artisan;Non;M;GLÉNAT;Denis;31/03/1988;Non +95;Val-d'Oise;06;6ème circonscription;2;93;M;LASSOUED;Samir;22/08/1996;SOC;Elève, étudiant;Non;F;GORI;Dalinda;27/11/1967;Non +95;Val-d'Oise;06;6ème circonscription;3;23;F;BRUNA;Annika;26/11/1956;RN;Ancien cadre;Non;M;BARBARIT;Christian;18/03/1957;Non +95;Val-d'Oise;06;6ème circonscription;4;30;F;CATHALA;Gabrielle;14/05/1992;NUPES;Cadre administratif et commercial d'entreprise;Non;F;DAVID;Catherine;30/05/1959;Non +95;Val-d'Oise;06;6ème circonscription;5;34;F;REINMANN;Agnès;25/12/1959;DXG;Ancienne profession intermédiaire;Non;M;RENOU;Philippe;28/06/1967;Non +95;Val-d'Oise;06;6ème circonscription;6;48;M;DEMARQUEZ;Philippe;31/10/1959;ECO;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;PINEAU;Léone;14/07/1944;Non +95;Val-d'Oise;06;6ème circonscription;7;36;M;FLAMENT;Nicolas;20/03/1982;LR;Cadre de la fonction publique;Non;F;GUILBAUD;Audrey;23/04/1979;Non +95;Val-d'Oise;06;6ème circonscription;8;108;F;ELIMAS;Nathalie;05/06/1973;DVC;Cadre de la fonction publique;Oui;M;ALVES;David;24/02/1973;Non +95;Val-d'Oise;06;6ème circonscription;9;83;F;FOLEST;Estelle;17/06/1976;ENS;Profession de l'information, des arts et des spectacles;Non;M;BAUX;Michel;05/11/1948;Non +95;Val-d'Oise;07;7ème circonscription;1;99;F;TOPUZOVIC;Andrijana;16/02/1993;LR;Employé administratif d'entreprise;Non;F;GROLIER;Chantal;01/03/1958;Non +95;Val-d'Oise;07;7ème circonscription;2;106;M;DEMARET;Philippe;31/10/1961;DVG;Cadre de la fonction publique;Non;F;PINSON;Nelly;07/02/1957;Non +95;Val-d'Oise;07;7ème circonscription;3;50;M;LE GUEVEL;Olivier;04/09/1972;REC;Profession libérale;Non;F;HENRY;Florence;26/07/1968;Non +95;Val-d'Oise;07;7ème circonscription;4;44;M;ESKENAZI;Romain;04/05/1986;NUPES;Cadre de la fonction publique;Non;F;MENACEUR;Laura;25/08/1964;Non +95;Val-d'Oise;07;7ème circonscription;5;55;M;DA SILVA;Dominique;30/06/1968;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;F;LIMAN;Sonia;15/04/1977;Non +95;Val-d'Oise;07;7ème circonscription;6;52;F;CHIKHANE;Myriam;19/05/1995;DSV;Employé de commerce;Non;M;BATTISTON;Patrice;28/03/1954;Non +95;Val-d'Oise;07;7ème circonscription;7;69;M;ZOUINE;Kamel;24/02/1969;ECO;Ancien employé;Non;F;DEDREUX;Séverine;26/09/1974;Non +95;Val-d'Oise;07;7ème circonscription;8;97;M;SACERDOT;François;06/01/1974;ECO;Technicien;Non;F;OLIVON;Corinne;06/03/1968;Non +95;Val-d'Oise;07;7ème circonscription;9;13;M;MARCEL;Bruno;29/04/1964;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;F;ROUSSEL;Nelly;06/10/1967;Non +95;Val-d'Oise;07;7ème circonscription;10;18;M;COUDERT;Noel;31/07/1955;DXG;Ancien employé;Non;F;LEGROS;Marie-Genevieve;03/11/1947;Non +95;Val-d'Oise;07;7ème circonscription;11;11;F;SUAREZ;Valérie;25/09/1972;DXG;Employé administratif d'entreprise;Non;F;LEGAY;Gaëlle;30/01/1971;Non +95;Val-d'Oise;08;8ème circonscription;1;120;M;AMANI;Zaki;12/12/1972;DIV;Profession intermédiaire de la santé et du travail social;Non;F;LAACHARI;Samira;18/10/1995;Non +95;Val-d'Oise;08;8ème circonscription;2;10;F;MÉRIENNE;Véronique;27/11/1958;RN;Cadre de la fonction publique;Non;M;MAGNIER;Philippe;28/03/1966;Non +95;Val-d'Oise;08;8ème circonscription;3;25;F;GAUTHERIN;Muriel;16/07/1966;REC;Profession intermédiaire de la santé et du travail social;Non;M;MONARI;Manuel;07/07/1976;Non +95;Val-d'Oise;08;8ème circonscription;4;8;M;GAJDOS;Rémi;29/09/1960;DXG;Ouvrier qualifié de type industriel;Non;M;BIGAUD;Michel;17/05/1952;Non +95;Val-d'Oise;08;8ème circonscription;5;117;F;CAMARA;Haissata;17/04/1977;DVG;Cadre administratif et commercial d'entreprise;Non;M;NDIAYE;Ibrahima;04/12/1972;Non +95;Val-d'Oise;08;8ème circonscription;6;78;M;BILONGO;Carlos Martens;31/12/1990;NUPES;Professeur, profession scientifique;Non;F;SAUGER;Ophélie;20/07/1983;Non +95;Val-d'Oise;08;8ème circonscription;7;71;F;RAJA;Shaïstah;19/10/1987;DVG;Elève, étudiant;Non;M;CRINON;Bruno;16/10/1958;Non +95;Val-d'Oise;08;8ème circonscription;8;91;F;PRUDHOMME;Marina;18/05/1999;ECO;Profession intermédiaire de la santé et du travail social;Non;F;ZAMMOUT;Danielle;14/02/1961;Non +95;Val-d'Oise;08;8ème circonscription;9;63;M;PUPPONI;François;31/07/1962;ENS;Cadre de la fonction publique;Oui;M;DEMBELE;Sori;24/08/1971;Non +95;Val-d'Oise;08;8ème circonscription;10;73;M;ZAOUI;Farouk;26/07/1977;DVG;Chef d'entreprise de 10 salariés ou plus;Non;M;ARRAJ;Benyounes;31/01/1967;Non +95;Val-d'Oise;08;8ème circonscription;11;65;M;ANGREVIER;Patrick;08/10/1991;UDI;Cadre administratif et commercial d'entreprise;Non;F;BOUZAÏDA;Fatma;28/06/1977;Non +95;Val-d'Oise;08;8ème circonscription;12;100;M;AUGUSTE;Daniel;06/07/1973;DVG;Technicien;Non;F;KUZEL;Nadia;17/03/1975;Non +95;Val-d'Oise;08;8ème circonscription;13;109;F;TOOR;Efatt;28/06/1979;DVG;Cadre de la fonction publique;Non;M;TOOR;Irfan;06/06/1970;Non +95;Val-d'Oise;09;9ème circonscription;1;102;M;LUSSOT;Jean-Marc;09/11/1957;DVG;Chef d'entreprise de 10 salariés ou plus;Non;F;HAJEJE;Nesrine;19/09/1978;Non +95;Val-d'Oise;09;9ème circonscription;2;61;F;PARK;Zivka;22/01/1985;ENS;Ancien cadre;Oui;M;ROUCAN;Florent;13/05/1991;Non +95;Val-d'Oise;09;9ème circonscription;3;94;M;LE GALL;Arnaud;29/11/1980;NUPES;Cadre de la fonction publique;Non;F;DANET;Véronique;21/12/1973;Non +95;Val-d'Oise;09;9ème circonscription;4;46;M;ITIM;Youcef;30/08/1986;ECO;Cadre administratif et commercial d'entreprise;Non;F;LEROY;Françoise;30/06/1958;Non +95;Val-d'Oise;09;9ème circonscription;5;68;M;ARCIERO;Anthony;15/02/1987;LR;Profession intermédiaire administrative et commerciale des entreprises;Non;F;RUSIN;Isabelle;24/02/1965;Non +95;Val-d'Oise;09;9ème circonscription;6;122;M;SLAMANI;Miloud;05/10/2002;DIV;Elève, étudiant;Non;F;BOUNABI;Afida;16/01/1997;Non +95;Val-d'Oise;09;9ème circonscription;7;101;M;NDALA;Sympson;18/07/1983;RDG;Employé administratif d'entreprise;Non;F;MOLINA;Christelle Marie;08/02/1983;Non +95;Val-d'Oise;09;9ème circonscription;8;21;M;SARAGOSA;Sylvain;07/11/1971;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;CASTANEDO;Mathieu;10/04/1995;Non +95;Val-d'Oise;09;9ème circonscription;9;12;M;MARLY;Jean-Baptiste;31/12/1983;RN;Cadre administratif et commercial d'entreprise;Non;F;VACCARI;Nathalie;23/03/1965;Non +95;Val-d'Oise;09;9ème circonscription;10;107;M;HAKKOU;Mohammed;08/09/1974;DVG;Commerçant et assimilé;Non;F;CHOUISSA;Véronique;12/07/1964;Non +95;Val-d'Oise;09;9ème circonscription;11;45;F;HANRYON;Danièle;22/04/1953;DXG;Ancien employé;Non;M;GAYRAUD;Patrick;15/06/1960;Non +95;Val-d'Oise;09;9ème circonscription;12;58;M;HITACHE;Abdelsalem;13/08/1971;DVC;Profession intermédiaire administrative de la fonction publique;Non;F;BERNADIN;Missoule;20/01/1978;Non +95;Val-d'Oise;09;9ème circonscription;13;115;M;JAOUADI;Nathan;01/10/1997;DIV;Ingénieur et cadre technique d'entreprise;Non;M;CERFF;Pierre;24/01/1988;Non +95;Val-d'Oise;10;10ème circonscription;1;111;F;LOULENDOT;Joseline Sylvie;12/07/1968;RDG;Chef d'entreprise de 10 salariés ou plus;Non;M;TAHAR;Amine;27/02/1989;Non +95;Val-d'Oise;10;10ème circonscription;2;75;F;JOSÉ;Patricia;21/05/1962;LR;Cadre de la fonction publique;Non;M;DECLERCK;Mickaël;09/02/1983;Non +95;Val-d'Oise;10;10ème circonscription;3;113;F;RIGOUSTE;Sabine;19/07/1979;DSV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MARION;Damien;29/03/1977;Non +95;Val-d'Oise;10;10ème circonscription;4;92;M;BELLOC;Augustin;03/10/1998;DVG;Elève, étudiant;Non;M;DAGUE;Didier;12/05/1959;Non +95;Val-d'Oise;10;10ème circonscription;5;86;M;TACHÉ;Aurélien;26/05/1984;NUPES;Cadre de la fonction publique;Oui;F;CORVIN;Élina;23/02/1959;Non +95;Val-d'Oise;10;10ème circonscription;6;112;F;ARRAR;Najet;20/05/1982;DIV;Employé administratif d'entreprise;Non;M;DURANT;Ludovic;28/06/1976;Non +95;Val-d'Oise;10;10ème circonscription;7;116;M;ZIABAT;Karim;20/04/1993;DVG;Employé civil et agent de service de la fonction publique;Non;F;EVRARD;Emilie;12/09/1976;Non +95;Val-d'Oise;10;10ème circonscription;8;40;M;FLAUX;Christophe;27/04/1968;DXG;Profession intermédiaire administrative de la fonction publique;Non;F;HUSSON;Valérie;18/05/1973;Non +95;Val-d'Oise;10;10ème circonscription;9;3;F;OLLIVIER;Evelyne;29/03/1960;ECO;Ancien cadre;Non;M;GUIOT;Loïc;18/12/1987;Non +95;Val-d'Oise;10;10ème circonscription;10;84;F;FIDI;Patricia;25/11/1970;DVC;Professeur des écoles, instituteur et assimilé;Non;M;GNOKA;Pierre;28/12/1970;Non +95;Val-d'Oise;10;10ème circonscription;11;49;M;BINET;Matthieu;27/11/1995;DXG;Employé de commerce;Non;F;QUENTON;Martine;30/01/1957;Non +95;Val-d'Oise;10;10ème circonscription;12;38;F;SAITOULI;Sanaa;02/02/1982;DVG;Cadre administratif et commercial d'entreprise;Non;M;BOULTAME;Elrazali;09/08/1995;Non +95;Val-d'Oise;10;10ème circonscription;13;60;M;LACHAS;Victorien;13/06/1986;ENS;Cadre administratif et commercial d'entreprise;Non;F;ESPARGILIÈRE;Juliette;27/08/1978;Non +95;Val-d'Oise;10;10ème circonscription;14;59;F;GRANVORKA PUISARD;Princesse;28/08/1970;REC;Profession intermédiaire de la santé et du travail social;Non;M;HURLE;Hugo;22/05/1999;Non +95;Val-d'Oise;10;10ème circonscription;15;42;M;MADI;Prabagarane;25/02/1966;DVG;Cadre de la fonction publique;Non;M;XAVIR;Charles Christophe;17/07/1978;Non +95;Val-d'Oise;10;10ème circonscription;16;74;M;BENSEDDIK;Malek;29/01/1952;DVC;Ancien cadre;Non;F;LECOMTE;Ophélie;08/06/1995;Non +95;Val-d'Oise;10;10ème circonscription;17;19;M;DURAND;Richard;18/05/1967;RN;Technicien;Non;M;BONIN;Louis;13/06/2000;Non +ZA;Guadeloupe;01;1ère circonscription;1;27;M;CECE;Raphaël;28/08/1986;DXG;Professeur, profession scientifique;Non;F;DIAKOK;Danielle;11/12/1957;Non +ZA;Guadeloupe;01;1ère circonscription;2;30;M;SERVA;Olivier;21/06/1974;DVG;Profession libérale;Oui;F;MANETTE;Sandra;05/12/1971;Non +ZA;Guadeloupe;01;1ère circonscription;3;39;M;ANGOL;Henri;02/03/1959;DIV;Cadre administratif et commercial d'entreprise;Non;M;MOULLOU;Ricardo;22/12/1981;Non +ZA;Guadeloupe;01;1ère circonscription;4;37;M;NABAJOTH;Alix;11/11/1973;DVG;Cadre de la fonction publique;Non;F;BARTEBIN-SOURHOU;Huguette;03/12/1971;Non +ZA;Guadeloupe;01;1ère circonscription;5;25;M;FARO;Rudy;30/08/1962;DIV;Profession libérale;Non;F;BAHADOUR;Marie-France;31/07/1971;Non +ZA;Guadeloupe;01;1ère circonscription;6;56;M;FABULAS;Thierry, Lucien;08/01/1972;RN;Commerçant et assimilé;Non;F;BALAY;Solise;11/11/1971;Non +ZA;Guadeloupe;01;1ère circonscription;7;5;M;BIRAS;Dominique;14/11/1964;DVG;Chef d'entreprise de 10 salariés ou plus;Non;F;PASSE-COUTRIN;Liliane;09/01/1974;Non +ZA;Guadeloupe;01;1ère circonscription;8;18;M;JACOBY-KOALY;Francillonne;02/11/1964;DVG;Chef d'entreprise de 10 salariés ou plus;Non;F;BELAIR;Dolorès;30/05/1955;Non +ZA;Guadeloupe;01;1ère circonscription;9;41;M;CIVILISE;Christian;17/12/1955;ECO;Professeur, profession scientifique;Non;M;MILNE;John;08/09/1954;Non +ZA;Guadeloupe;01;1ère circonscription;10;61;M;JEAN-PHILIPPE;Eric;08/10/1960;DIV;Artisan;Non;M;BERTILI;Angelin, Robert;05/04/1948;Non +ZA;Guadeloupe;01;1ère circonscription;11;40;F;MONTOUT;Nadège;10/11/1978;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;BAVARDAY;Philippe;28/07/1957;Non +ZA;Guadeloupe;01;1ère circonscription;12;12;F;SMITE;Marie;05/08/1963;UDI;Employé administratif d'entreprise;Non;M;ALPHONSINE;Christian;17/01/1952;Non +ZA;Guadeloupe;02;2ème circonscription;1;6;M;FERUS;Dun;23/05/1971;LR;Profession libérale;Non;F;PLATON;Mercédès, Maurice;22/09/1960;Non +ZA;Guadeloupe;02;2ème circonscription;2;9;F;RETOUR;Sonia;20/09/1962;UDI;Profession libérale;Non;M;LEMONY;Raymond;05/04/1942;Non +ZA;Guadeloupe;02;2ème circonscription;3;52;F;BENIN;Justine;12/03/1975;ENS;Employé civil et agent de service de la fonction publique;Oui;M;PANCREL;Bernard;06/09/1962;Non +ZA;Guadeloupe;02;2ème circonscription;4;47;F;COUVIN;Pauline;19/01/1946;ECO;Ancien cadre;Non;F;DAMOISEAU;Nadège;12/04/1969;Non +ZA;Guadeloupe;02;2ème circonscription;5;26;M;TOLASSY;Ludovic;13/12/1981;REG;Ouvrier qualifié de type industriel;Non;M;ISKANDAR;Paco;28/09/1980;Non +ZA;Guadeloupe;02;2ème circonscription;6;42;M;TOLA;Michel;01/04/1968;DVG;Agriculteur sur petite exploitation;Non;M;MIXTUR;Mathias;01/08/1986;Non +ZA;Guadeloupe;02;2ème circonscription;7;20;F;DELANNAY-CLARA;Christiane;23/12/1964;DSV;Professeur, profession scientifique;Non;M;MONDOR;Teddy;06/08/1985;Non +ZA;Guadeloupe;02;2ème circonscription;8;7;M;GIRDARY-RAMSSAMY;Michel;06/08/1976;RN;Commerçant et assimilé;Non;F;POMMIER;Paméla;16/02/1974;Non +ZA;Guadeloupe;02;2ème circonscription;9;14;F;MATHIAS;Nancy;21/05/1975;DVD;Employé administratif d'entreprise;Non;M;ROQUELAURE;Patrick;25/05/1970;Non +ZA;Guadeloupe;02;2ème circonscription;10;60;F;PLANTIER;Paola;02/12/1980;REC;Cadre administratif et commercial d'entreprise;Non;F;PISANNE;Caroline;26/06/1974;Non +ZA;Guadeloupe;02;2ème circonscription;11;53;M;BAPTISTE;Christian;18/06/1962;NUPES;Cadre de la fonction publique;Non;F;GORDON;Natasha;03/07/1982;Non +ZA;Guadeloupe;02;2ème circonscription;12;17;F;CERIL;Aline;05/09/1979;DXG;Professeur des écoles, instituteur et assimilé;Non;M;VALENTINO;Gérard;15/07/1951;Non +ZA;Guadeloupe;02;2ème circonscription;13;46;M;BOUGRER;Gérald;28/04/1955;DIV;Ingénieur et cadre technique d'entreprise;Non;M;MOLIA;Raymond;04/04/1960;Non +ZA;Guadeloupe;02;2ème circonscription;14;22;M;ROUYAR-CIREDERF;Steeve;11/12/1980;DIV;Profession libérale;Non;M;TONGA;Teddy;04/03/1974;Non +ZA;Guadeloupe;02;2ème circonscription;15;55;F;MAXO;Michelle;25/08/1955;ECO;Ancien employé;Non;F;IBO;Floriane;12/07/1993;Non +ZA;Guadeloupe;03;3ème circonscription;1;43;M;HENRY-LEO;Christian-Georges;24/07/1959;DIV;Profession de l'information, des arts et des spectacles;Non;M;MANGO;Patrick;26/05/1966;Non +ZA;Guadeloupe;03;3ème circonscription;2;31;M;QUIABA;Hubert;26/11/1966;ECO;Technicien;Non;M;HERMANTIN;Keyci;09/05/2000;Non +ZA;Guadeloupe;03;3ème circonscription;3;44;M;LOUISY;Ferdy;10/12/1961;ENS;Profession libérale;Non;M;LAPIN;Jim;01/01/1974;Non +ZA;Guadeloupe;03;3ème circonscription;4;3;F;ESDRAS;Sidjie;20/12/1990;DXG;Employé civil et agent de service de la fonction publique;Non;F;CASTROT;Marie-Agnès;12/04/1962;Non +ZA;Guadeloupe;03;3ème circonscription;5;19;M;LAPIN;Raphaël;30/12/1991;DVG;Profession libérale;Non;M;MELANE;Merlin;07/11/1957;Non +ZA;Guadeloupe;03;3ème circonscription;6;10;M;TOLASSY;Rody;21/09/1987;RN;Profession libérale;Non;F;SINIVASSIN;Murielle;30/09/1968;Non +ZA;Guadeloupe;03;3ème circonscription;7;23;M;SAVAN;Fauvert;05/10/1966;DIV;Cadre de la fonction publique;Non;F;CHERY;Jenna;13/05/1985;Non +ZA;Guadeloupe;03;3ème circonscription;8;50;F;AIGLE;Marie-Laure;22/06/1966;FI;Employé civil et agent de service de la fonction publique;Non;M;VIROLAN;Georges;27/10/1960;Non +ZA;Guadeloupe;03;3ème circonscription;9;15;F;GAMA;Béatrice;27/05/1976;UDI;Personnel des services directs aux particuliers;Non;F;MARGUERITE;Marie-Gabrielle;17/07/1948;Non +ZA;Guadeloupe;03;3ème circonscription;10;58;M;FLEMIN;Félix Alain;27/08/1957;DXG;Contremaître, agent de maîtrise;Non;F;NAGAU;Denise;30/11/1957;Non +ZA;Guadeloupe;03;3ème circonscription;11;32;F;PIERQUIN;Delphine;07/03/1971;LR;Employé administratif d'entreprise;Non;M;DINARD;Henri;12/01/1950;Non +ZA;Guadeloupe;03;3ème circonscription;12;57;M;TORIBIO;José;23/11/1951;DVG;Ancien cadre;Non;M;ABDOUL-MANINROUDINE;Bernard;08/10/1970;Non +ZA;Guadeloupe;03;3ème circonscription;13;36;M;CABRION;Grégory;22/07/1982;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;SALCEDE;Willy;04/12/1970;Non +ZA;Guadeloupe;03;3ème circonscription;14;28;F;CHAMMOUGON ANNO;Sylvie;23/07/1972;NUPES;Profession libérale;Non;M;BEAUZOR;Lucien;14/12/1959;Non +ZA;Guadeloupe;03;3ème circonscription;15;2;M;LUCE;Fabrice;07/10/1966;DVC;Professeur, profession scientifique;Non;F;MAMIE;Monique;03/09/1951;Non +ZA;Guadeloupe;03;3ème circonscription;16;54;M;MATHIASIN;Max;24/02/1956;DVC;Cadre de la fonction publique;Oui;M;MARICEL;Didier, Marc;29/07/1971;Non +ZA;Guadeloupe;03;3ème circonscription;17;24;M;MAYENGO;Prévert;16/08/1949;REC;Profession de l'information, des arts et des spectacles;Non;F;HILLIGER;Sabine;14/04/1973;Non +ZA;Guadeloupe;03;3ème circonscription;18;59;M;ARGIS;René-Claude;23/03/1956;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;VALORIS;Claude;04/10/1973;Non +ZA;Guadeloupe;03;3ème circonscription;19;21;M;EDINVAL;Gilbert;21/09/1969;DIV;Ouvrier qualifié de type artisanal;Non;F;ALBERT;Aurélie;25/08/1989;Non +ZA;Guadeloupe;03;3ème circonscription;20;51;M;CONFIAC;Paul, Eric;26/01/1958;DVG;Employé civil et agent de service de la fonction publique;Non;F;WORICK;Sandrine, Nina;14/01/1981;Non +ZA;Guadeloupe;04;4ème circonscription;1;34;M;PARAN;Martin Germain;30/01/1950;DXD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MONTHOUEL;Lydie;05/11/1962;Non +ZA;Guadeloupe;04;4ème circonscription;2;48;F;CIVIS;Marguerite;09/09/1967;DVG;Cadre de la fonction publique;Non;M;THENARD;Francis;24/05/1963;Non +ZA;Guadeloupe;04;4ème circonscription;3;8;M;COUDRET;Jordan;04/12/1993;DXG;Ouvrier non qualifié de type industriel;Non;F;DAHOMAY;Lita;12/11/1944;Non +ZA;Guadeloupe;04;4ème circonscription;4;4;M;RAMASSAMY;Jean-Yves;25/12/1958;DIV;Artisan;Non;M;HENRI;Judex;04/04/1955;Non +ZA;Guadeloupe;04;4ème circonscription;5;35;F;PENCHARD;Marie-Luce;14/12/1959;DVC;Cadre de la fonction publique;Non;F;DORVILLE;Murielle;24/06/1982;Non +ZA;Guadeloupe;04;4ème circonscription;6;16;F;LUTIN;Lucile;12/06/1960;UDI;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;ESTRIPEAUT;Betty;08/11/1957;Non +ZA;Guadeloupe;04;4ème circonscription;7;45;M;LOUPADIERE;Cédric;30/11/1990;LR;Employé administratif d'entreprise;Non;M;JULIENO;Davy;03/02/1998;Non +ZA;Guadeloupe;04;4ème circonscription;8;29;M;ZOZIO;Christian;04/12/1974;REC;Profession intermédiaire administrative de la fonction publique;Non;M;HILLIGER;Walter;13/08/1981;Non +ZA;Guadeloupe;04;4ème circonscription;9;49;M;AVRIL;Alain;10/08/1957;ECO;Ancien artisan, commerçant, chef d'entreprise;Non;M;LEON;Didier;20/05/1971;Non +ZA;Guadeloupe;04;4ème circonscription;10;11;F;PAISLEY;Yanetti;19/06/1978;FI;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;ZOU;Jocelyn;11/12/1969;Non +ZA;Guadeloupe;04;4ème circonscription;11;13;F;HOUBLON;Christine;28/05/1952;ENS;Ancien cadre;Non;M;HAGUY;Narcisse;29/10/1946;Non +ZA;Guadeloupe;04;4ème circonscription;12;33;M;CALIFER;Elie;19/04/1954;NUPES;Ancien cadre;Non;F;CARLE-MARTIAS;Nadia;21/12/1976;Non +ZB;Martinique;01;1ère circonscription;1;2;M;TABAR;Jonathan;11/10/1987;DVD;Employé civil et agent de service de la fonction publique;Non;F;JOSEPH;Joannifer;11/12/1996;Non +ZB;Martinique;01;1ère circonscription;2;5;M;VALERE;Erick;05/02/1956;DVG;Profession libérale;Non;F;CELESTE DELAUNAY;Suzanne;06/02/1969;Non +ZB;Martinique;01;1ère circonscription;3;28;M;SAMOT;Fred;24/02/1961;DVG;Ingénieur et cadre technique d'entreprise;Non;F;MANIN;Josette;16/03/1950;Oui +ZB;Martinique;01;1ère circonscription;4;4;F;GODARD;Joëlle;04/08/1959;UDI;Cadre administratif et commercial d'entreprise;Non;F;CAUMARTIN;Vanessa;04/03/1992;Non +ZB;Martinique;01;1ère circonscription;5;39;M;JEAN-MARIE-ALPHONSINE;Philippe;11/03/1971;DVG;Cadre de la fonction publique;Non;F;TIDAS;Francine;01/09/1970;Non +ZB;Martinique;01;1ère circonscription;6;29;M;EDMOND-MARIETTE;Philippe;15/10/1955;REG;Profession libérale;Non;F;LINORD;Clara;06/05/1987;Non +ZB;Martinique;01;1ère circonscription;7;25;F;BELLAY;Béatrice;25/07/1975;NUPES;Cadre de la fonction publique;Non;M;MOUTOUSSAMY;Jean-Philippe;29/08/1958;Non +ZB;Martinique;01;1ère circonscription;8;11;M;PUISARD;Jean-Pierre;29/08/1974;REG;Contremaître, agent de maîtrise;Non;M;CISERANE;Frantz;14/03/1972;Non +ZB;Martinique;01;1ère circonscription;9;31;M;ROMAIN;Ludovic;20/11/1987;DVG;Profession libérale;Non;F;BERNABE;Kora;04/06/1989;Non +ZB;Martinique;01;1ère circonscription;10;44;M;RANGOLY;Edryan;26/08/1998;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;NANDOR;Logan;29/04/2000;Non +ZB;Martinique;01;1ère circonscription;11;43;M;MIEVILLY;Yann;18/07/1983;ECO;Employé administratif d'entreprise;Non;M;BIROTA;Antony;04/03/1987;Non +ZB;Martinique;01;1ère circonscription;12;22;F;DELANNAY;Marie-Noelle;18/12/1972;FI;Profession libérale;Non;M;MARS;Michel;09/08/1964;Non +ZB;Martinique;01;1ère circonscription;13;38;M;LAGIER;Alain-Claude;12/06/1973;DVG;Cadre de la fonction publique;Non;F;LAGIN;Cindy;23/01/1990;Non +ZB;Martinique;01;1ère circonscription;14;21;F;MARTHE-DITE-SURELLY;Marie-Hellen;28/07/1962;DXG;Ouvrier agricole;Non;M;CIZO;Steve;15/06/1995;Non +ZB;Martinique;01;1ère circonscription;15;56;M;WILLIAM;Jiovanny;03/06/1985;DVG;Profession libérale;Non;M;LANOIX;Jean, Alain;17/06/1955;Non +ZB;Martinique;01;1ère circonscription;16;15;M;BELIMONT;Charles;07/08/1960;RN;Ancien employé;Non;F;ROSET;Viviane;14/01/1958;Non +ZB;Martinique;01;1ère circonscription;17;54;M;CRISPIN;Eric Thomas;28/01/1975;DXG;Chef d'entreprise de 10 salariés ou plus;Non;M;GRAND;Jean-Marc;09/07/1969;Non +ZB;Martinique;02;2ème circonscription;1;35;F;SAINT-OLYMPE;Chantal;20/04/1963;DVG;Employé civil et agent de service de la fonction publique;Non;M;SAINT-OLYMPE;Steeve;15/05/1983;Non +ZB;Martinique;02;2ème circonscription;2;37;M;NADEAU;Marcellin;02/11/1962;REG;Cadre de la fonction publique;Non;F;YERRO;Cynthia;16/02/1992;Non +ZB;Martinique;02;2ème circonscription;3;18;F;VARASSE;Karine;02/03/1972;FI;Profession libérale;Non;M;TROBRILLANT;Emile;03/07/1952;Non +ZB;Martinique;02;2ème circonscription;4;14;M;FERRATY;Max;22/07/1959;RN;Artisan;Non;F;JEAN-FRANCOIS;Magali;16/03/1966;Non +ZB;Martinique;02;2ème circonscription;5;19;F;RODAP;Astrid;22/07/1970;UDI;Profession libérale;Non;M;TUTTLE;Jean-Christophe;25/11/1995;Non +ZB;Martinique;02;2ème circonscription;6;48;M;SELLAYE;Marcel;17/06/1954;DXG;Ancienne profession intermédiaire;Non;F;TALLY;Jacqueline;25/04/1951;Non +ZB;Martinique;02;2ème circonscription;7;32;M;ROTSEN;Jean-Baptiste Joseph;24/06/1961;DVG;Cadre de la fonction publique;Non;F;LARGEN-MARINE;Yolène;30/09/1958;Non +ZB;Martinique;02;2ème circonscription;8;33;M;PAMPHILE;Justin;06/05/1969;REG;Cadre de la fonction publique;Non;F;BABO;Eliane;02/04/1974;Non +ZB;Martinique;02;2ème circonscription;9;7;F;JEAN-ELIE;Barbara;22/07/1967;DVG;Profession libérale;Non;M;CLAVER;Jacques Olivier;27/12/2001;Non +ZB;Martinique;02;2ème circonscription;10;8;M;DUFEAL;Gaétan;07/08/1948;DXG;Ancienne profession intermédiaire;Non;M;BREDAS;Jean Etienne;25/12/1961;Non +ZB;Martinique;02;2ème circonscription;11;55;F;BELLAME;Cynthia;11/05/1983;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;CORANSON;Edmond Ida;13/04/1953;Non +ZB;Martinique;03;3ème circonscription;1;10;M;JEAN-MARIE;Gabriel;27/02/1959;DXG;Ancien cadre;Non;F;ZAMOR;Magalie;09/02/1969;Non +ZB;Martinique;03;3ème circonscription;2;13;F;JOS;Nathalie;24/11/1966;REG;Profession de l'information, des arts et des spectacles;Non;M;BARCLAY;Jean-René;24/10/1964;Non +ZB;Martinique;03;3ème circonscription;3;6;F;MOLE;Isabelle;29/04/1961;UDI;Artisan;Non;F;CHARLES;Corine;02/04/1981;Non +ZB;Martinique;03;3ème circonscription;4;12;M;CRAMPON;Cédric;19/08/1975;RN;Profession de l'information, des arts et des spectacles;Non;F;MORAND;Chantal;19/06/1955;Non +ZB;Martinique;03;3ème circonscription;5;34;M;ROBIN;Daniel;11/12/1961;DVG;Chef d'entreprise de 10 salariés ou plus;Non;F;FIMBOU;Camélia;23/07/1986;Non +ZB;Martinique;03;3ème circonscription;6;23;M;CAROLE;Francis;19/10/1958;REG;Professeur, profession scientifique;Non;F;SAMOT;Christelle;31/08/1974;Non +ZB;Martinique;03;3ème circonscription;7;45;F;JEANVILLE;Marie-Jeanne Françoise;02/04/1959;REC;Personnel des services directs aux particuliers;Non;M;MIREDIN;Jean-Victor;19/11/1966;Non +ZB;Martinique;03;3ème circonscription;8;52;F;GIRAUD;Audrey Arielle;17/09/1987;ENS;Ingénieur et cadre technique d'entreprise;Non;M;PALCY;Patrice Valentin;15/02/1972;Non +ZB;Martinique;03;3ème circonscription;9;36;M;JEAN-BAPTISTE;Jean-Michel;11/11/1959;DVG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;CELIMENE;Déborah;17/03/1988;Non +ZB;Martinique;03;3ème circonscription;10;20;M;RENARD;Thierry;04/10/1965;NUPES;Professeur, profession scientifique;Non;F;MARINE;Daniella;03/05/1972;Non +ZB;Martinique;03;3ème circonscription;11;17;M;BARDET;Joël;24/12/1970;REG;Chef d'entreprise de 10 salariés ou plus;Non;F;JEAN-JOSEPH;Huguette;20/02/1956;Non +ZB;Martinique;03;3ème circonscription;12;9;M;HAJJAR;Johnny;17/01/1973;DVG;Professeur des écoles, instituteur et assimilé;Non;F;DI GERONIMO;Bénédicte;11/12/1977;Non +ZB;Martinique;03;3ème circonscription;13;16;M;NEMOUTHE;Noël;22/12/1964;REG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;WILLIAM;Martine;04/05/1981;Non +ZB;Martinique;04;4ème circonscription;1;26;M;DINAL;David;10/08/1952;DVG;Profession libérale;Non;F;LAMON;Maryse;06/04/1969;Non +ZB;Martinique;04;4ème circonscription;2;27;M;MIRANDE;Richard Darius;25/05/1975;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;ARMEDE;Sylvie;09/12/1973;Non +ZB;Martinique;04;4ème circonscription;3;40;F;THERESE;Karine;14/06/1984;ECO;Profession libérale;Non;M;SAINTE-ROSE;Serge;28/06/1964;Non +ZB;Martinique;04;4ème circonscription;4;47;M;LIMERY;David Thérèse;15/10/1983;DVG;Cadre administratif et commercial d'entreprise;Non;F;LENTILUS;Enise;07/04/1985;Non +ZB;Martinique;04;4ème circonscription;5;53;F;TIBERINUS;Laurence;08/01/1959;ENS;Profession libérale;Non;M;SAMATHAY;François;02/04/1960;Non +ZB;Martinique;04;4ème circonscription;6;42;M;TINAUGUS;Edouard;12/05/1971;DVG;Ouvrier qualifié de la manutention, du magasinage et du transport;Non;F;GUILLOIS POMPIERE;Nathalia;29/07/1986;Non +ZB;Martinique;04;4ème circonscription;7;30;M;DUVILLE;Ruddy;02/02/1975;DVG;Ingénieur et cadre technique d'entreprise;Non;F;TRITZ;Yvonne Dominique;04/08/1969;Non +ZB;Martinique;04;4ème circonscription;8;3;M;PETIT;Philippe;16/05/1957;UDI;Profession libérale;Non;M;INIMOD;Maurice;16/12/1956;Non +ZB;Martinique;04;4ème circonscription;9;51;M;OCCOLIER;Nicolas;04/10/1977;RN;Commerçant et assimilé;Non;F;CLERC;Marie-Hélène;01/05/1963;Non +ZB;Martinique;04;4ème circonscription;10;46;F;SAINTE-ROSE;Célia;14/07/1991;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;EUSTACHE;Henri Léandre;27/02/1955;Non +ZB;Martinique;04;4ème circonscription;11;49;M;NILOR;Jean-Philippe;15/05/1965;NUPES;Ancien cadre;Oui;F;BERISSON;Anne;02/03/1961;Non +ZB;Martinique;04;4ème circonscription;12;24;F;SULIO;Mélanie;01/12/1996;DXG;Professeur, profession scientifique;Non;M;LOUIS-ALEXANDRE;Eric;12/12/1969;Non +ZB;Martinique;04;4ème circonscription;13;50;M;LUSBEC;Jean-Marc;14/09/1964;LR;Profession libérale;Non;F;THERESE--LOUISY-LOUIS;Gaëlle;04/07/1996;Non +ZB;Martinique;04;4ème circonscription;14;41;M;MARIE-JEANNE;Alfred;15/11/1936;REG;Ancien cadre;Non;F;CARIUS;Francine;05/03/1955;Non +ZC;Guyane;01;1ère circonscription;1;3;F;DELAR-RENÉ;Jessika;08/10/1982;DVG;Professeur, profession scientifique;Non;F;DETOURNELLE;Naomi;26/11/1980;Non +ZC;Guyane;01;1ère circonscription;2;18;M;LECHAT-VEGA;Thibault;12/01/1988;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;CHAMBAUD;Aïssatou;03/12/1977;Non +ZC;Guyane;01;1ère circonscription;3;11;F;GOUA;Yvane;28/03/1980;REG;Profession intermédiaire administrative et commerciale des entreprises;Non;M;GOUDET;Olivier;14/11/1977;Non +ZC;Guyane;01;1ère circonscription;4;23;M;CONTOUT;Yari;18/02/1980;DVG;Employé civil et agent de service de la fonction publique;Non;F;RIGHETTI;Mélody;13/06/1990;Non +ZC;Guyane;01;1ère circonscription;5;16;F;LETARD;Line;02/01/1973;NUPES;Professeur, profession scientifique;Non;M;CATAYEE;Patrice;02/07/1963;Non +ZC;Guyane;01;1ère circonscription;6;5;M;FELISSAINT;Emmanuel;19/10/1986;DVG;Cadre de la fonction publique;Non;F;LIEGARD;Eva;10/07/1990;Non +ZC;Guyane;01;1ère circonscription;7;19;F;CHALCO-LEFAY;Rolande;22/09/1963;DVG;Ancien cadre;Non;M;CLET;Anccy Samuel;24/10/1988;Non +ZC;Guyane;01;1ère circonscription;8;8;F;PREVOT-MADERE;Joëlle;21/09/1959;DVD;Chef d'entreprise de 10 salariés ou plus;Non;M;ABRAHAM;Gleny;02/05/1994;Non +ZC;Guyane;01;1ère circonscription;9;10;M;STEPHENSON;Rudy;01/10/1972;DVG;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;MACHICHI-PROST;Violaine;05/06/1985;Non +ZC;Guyane;01;1ère circonscription;10;28;M;HARBOURG;Jérôme;15/12/1996;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;ZEPHIRIN-HENRI-LEO;Jaïrre;02/12/1988;Non +ZC;Guyane;01;1ère circonscription;11;7;M;MADÈRE;Christophe;18/07/1971;DVG;Professeur, profession scientifique;Non;F;BRIQUET;Ruth;06/05/1993;Non +ZC;Guyane;01;1ère circonscription;12;2;M;CASTOR;Jean-Victor;21/04/1962;REG;Ingénieur et cadre technique d'entreprise;Non;F;GRAND-EMILE;Eline;21/12/1985;Non +ZC;Guyane;01;1ère circonscription;13;22;F;MATHIEU;Mylène;10/06/1974;DVG;Profession libérale;Non;M;FERNAND;Christophe;01/03/2004;Non +ZC;Guyane;01;1ère circonscription;14;4;F;CATTIER;Myrtha;01/03/1967;DVG;Cadre de la fonction publique;Non;M;MIRAKOFF;Jean-Yves;25/09/1965;Non +ZC;Guyane;01;1ère circonscription;15;9;M;MADELEINE;Alix;24/10/1994;DVC;Commerçant et assimilé;Non;F;COLIN;Nadine;16/11/1976;Non +ZC;Guyane;01;1ère circonscription;16;26;F;SAGNE;Aurore;06/12/1991;DVG;Commerçant et assimilé;Non;F;CLAUDE;Ketsia;08/03/1980;Non +ZC;Guyane;01;1ère circonscription;17;21;M;BOUBA;Philippe;10/05/1980;FI;Professeur, profession scientifique;Non;F;TARADE;Erika;18/10/1979;Non +ZC;Guyane;01;1ère circonscription;18;6;M;CHONG-SIT;Boris;11/04/1972;DVD;Profession libérale;Non;F;CLIFFORD;Liser;04/06/1978;Non +ZC;Guyane;02;2ème circonscription;1;14;M;KARAM;Wender;24/04/1980;SOC;Professeur, profession scientifique;Non;F;CEDER;Cheyenne;17/06/1997;Non +ZC;Guyane;02;2ème circonscription;2;25;M;JOJE;Gillermo;20/01/2000;DVG;Elève, étudiant;Non;F;HORTH;Yvane;01/03/2000;Non +ZC;Guyane;02;2ème circonscription;3;27;F;THOMAS;Virgine;05/03/1971;RN;Chef d'entreprise de 10 salariés ou plus;Non;M;HARBOURG;Jean-Luc;17/02/1954;Non +ZC;Guyane;02;2ème circonscription;4;13;M;RIMANE;Davy;15/12/1979;NUPES;Technicien;Non;F;AUPRAT;Aude;29/06/1978;Non +ZC;Guyane;02;2ème circonscription;5;24;M;PIERRE;Christophe Yanuwana;09/05/1993;REG;Cadre administratif et commercial d'entreprise;Non;F;BARBOSA;Samantha;31/03/1985;Non +ZC;Guyane;02;2ème circonscription;6;15;M;ADAM;Lénaïck;19/02/1992;ENS;Commerçant et assimilé;Oui;F;JACARIA;Véronique;25/06/1964;Non +ZC;Guyane;02;2ème circonscription;7;17;M;JEAN-BAPTISTE;Manuel Victor;12/04/1981;REG;Employé civil et agent de service de la fonction publique;Non;F;JOACHIM;Ingrid;13/09/1987;Non +ZC;Guyane;02;2ème circonscription;8;20;F;BUNCH;Jenny;04/01/1983;DSV;Policier et militaire;Non;F;LUAP;Marie-Anna Joséphé;01/05/1975;Non +ZC;Guyane;02;2ème circonscription;9;12;M;DOLOR;Jean-Philippe;25/05/1986;DVC;Cadre de la fonction publique;Non;F;SELLALI;Cornélie;09/12/1970;Non +ZD;La Réunion;01;1ère circonscription;1;79;M;VAÏTILINGOM;Didier;05/12/1981;REG;Profession intermédiaire de la santé et du travail social;Non;F;PONCY;Sylvie;22/09/1982;Non +ZD;La Réunion;01;1ère circonscription;2;9;F;SISTERON;Murielle;16/02/1987;LR;Profession libérale;Non;M;SERVIABLE;Mario;23/05/1949;Non +ZD;La Réunion;01;1ère circonscription;3;8;M;PAYET;Giovanni;30/04/1985;DVG;Cadre de la fonction publique;Non;F;CORIDON;Audrey;18/03/1984;Non +ZD;La Réunion;01;1ère circonscription;4;2;F;LEBON;Gaëlle;11/02/1983;RN;Cadre administratif et commercial d'entreprise;Non;M;ANGO;Jean-Roland;25/11/1965;Non +ZD;La Réunion;01;1ère circonscription;5;11;M;WELMANT;Sonny;10/02/1976;DSV;Chauffeur;Non;F;CADENET;Josie;09/10/1958;Non +ZD;La Réunion;01;1ère circonscription;6;12;F;DUCHEMANN;Yvette;12/08/1956;ECO;Ancien cadre;Non;M;COTTIN;Jean-François;23/04/1957;Non +ZD;La Réunion;01;1ère circonscription;7;51;M;BEEHARRY;Eric;15/03/1982;DIV;Commerçant et assimilé;Non;F;SEMPERE;Marie-Frédérique;02/04/1973;Non +ZD;La Réunion;01;1ère circonscription;8;23;F;GUERIN;Nelsy;12/06/1983;DXG;Professeur des écoles, instituteur et assimilé;Non;M;DEMATTEÏ;Florent;14/03/1992;Non +ZD;La Réunion;01;1ère circonscription;9;18;M;POLEYA;Jean Alexandre;09/06/1967;DVC;Profession intermédiaire administrative de la fonction publique;Non;F;SAID;Soifia;12/06/2001;Non +ZD;La Réunion;01;1ère circonscription;10;58;M;MANGROLIA;Farid;07/09/1987;DVC;Commerçant et assimilé;Non;F;CATAPOULÉ;Priyamvada;15/06/1976;Non +ZD;La Réunion;01;1ère circonscription;11;62;M;MAGAMOOTOO;Eric;18/07/1956;DVC;Ancien artisan, commerçant, chef d'entreprise;Non;F;YEN PON;Valérie;25/09/1987;Non +ZD;La Réunion;01;1ère circonscription;12;10;M;MOREL;Jean Jacques;21/05/1963;DVD;Profession libérale;Non;F;SAMOURGOMPOULLÉ;Linda;17/11/1976;Non +ZD;La Réunion;01;1ère circonscription;13;57;M;NAILLET;Philippe;14/08/1960;NUPES;Chef d'entreprise de 10 salariés ou plus;Oui;F;PAYET PIGNOLET;Vanessa;08/08/1987;Non +ZD;La Réunion;01;1ère circonscription;14;82;M;SAUTRON;Ludovic;26/04/1980;ECO;Professeur des écoles, instituteur et assimilé;Non;F;ALMA;Murielle;22/01/1988;Non +ZD;La Réunion;01;1ère circonscription;15;24;M;GRONDIN;Hary;28/04/1962;DVC;Artisan;Non;F;AIMÉ;Marie Elodie;25/09/1988;Non +ZD;La Réunion;01;1ère circonscription;16;34;M;MITHRA;Georges;14/02/1969;DVG;Contremaître, agent de maîtrise;Non;F;VIGNOLO;Sandra;02/06/1983;Non +ZD;La Réunion;01;1ère circonscription;17;35;F;GASP;Corinne;30/06/1971;DXG;Technicien;Non;M;TECHER;Paul;01/03/1947;Non +ZD;La Réunion;02;2ème circonscription;1;59;M;SOILIHI;Sullaiman;14/09/1984;DXG;Commerçant et assimilé;Non;F;TELMAR;Ingrid;26/09/1989;Non +ZD;La Réunion;02;2ème circonscription;2;71;F;PERON;Virginie;19/09/1981;REG;Employé civil et agent de service de la fonction publique;Non;M;LAMLAC;Rodolphe;29/03/1986;Non +ZD;La Réunion;02;2ème circonscription;3;36;F;INFANTE;Karine;01/02/1985;REG;Artisan;Non;M;INCANA;Willy;06/12/1982;Non +ZD;La Réunion;02;2ème circonscription;4;42;M;CHEN-TZU-KUONG;Stéphane;03/04/1988;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;PLAIRE;Patricia;31/07/1957;Non +ZD;La Réunion;02;2ème circonscription;5;91;F;LEBON;Karine;09/06/1985;NUPES;Professeur des écoles, instituteur et assimilé;Oui;M;HIPPOLYTE;Henry;06/09/1961;Non +ZD;La Réunion;02;2ème circonscription;6;49;M;LEGENTIL;Nicolas;12/06/1983;DXG;Professeur, profession scientifique;Non;F;M'COUEZOU;Catherine;12/11/1971;Non +ZD;La Réunion;02;2ème circonscription;7;48;F;GRAJA;Michelle;07/11/1964;RN;Profession libérale;Non;M;HOARAU;Jean Pascal;04/11/1973;Non +ZD;La Réunion;02;2ème circonscription;8;21;F;FERRIER;Véronique;23/06/1955;DVD;Ancien employé;Non;M;ATHÈNE;Jean Louis;13/07/1974;Non +ZD;La Réunion;02;2ème circonscription;9;92;M;DEFAUD;Vincent;29/12/1974;ECO;Cadre de la fonction publique;Non;F;CELESTE;Gladys;06/03/1958;Non +ZD;La Réunion;02;2ème circonscription;10;22;M;MERA;Alix;20/03/1972;DSV;Technicien;Non;F;VERDUN;Davilla;28/01/1971;Non +ZD;La Réunion;02;2ème circonscription;11;61;M;FONTAINE;Erick;28/12/1960;REG;Cadre de la fonction publique;Non;F;TÉCHER;Guylène;23/01/1986;Non +ZD;La Réunion;02;2ème circonscription;12;86;M;GEORGETTE;Emmanuel;20/12/1964;DIV;Technicien;Non;F;HASSANI;Zaitouni;18/12/1993;Non +ZD;La Réunion;02;2ème circonscription;13;81;F;FONTAINE;Audrey;18/12/1979;UDI;Cadre de la fonction publique;Non;M;RANDRIANARIVELO;Stéphane;26/08/1984;Non +ZD;La Réunion;02;2ème circonscription;14;78;M;HOARAU;Laurent Philippe;20/04/1977;DIV;Profession libérale;Non;F;THOMAS;Florence;22/11/1994;Non +ZD;La Réunion;03;3ème circonscription;1;69;F;VIGNE;Aurélie;19/12/1981;COM;Profession libérale;Non;F;ROCHEFEUILLE;Sylvaine;22/11/1970;Non +ZD;La Réunion;03;3ème circonscription;2;70;M;BOURGOGNE;Rémy;06/03/1984;FI;Professeur, profession scientifique;Non;F;VITRY;Elodie;21/07/1983;Non +ZD;La Réunion;03;3ème circonscription;3;52;M;DIJOUX;Raphaël;28/05/1965;ECO;Profession intermédiaire de la santé et du travail social;Non;F;CARMALY;Lucie;19/07/1973;Non +ZD;La Réunion;03;3ème circonscription;4;67;M;VALY;Bachil;09/01/1962;ENS;Commerçant et assimilé;Non;F;GRONDIN;Nadine;19/05/1969;Non +ZD;La Réunion;03;3ème circonscription;5;26;F;MOUKINE;Sandrine;09/09/1974;DSV;Profession intermédiaire de la santé et du travail social;Non;M;DIDIER;Noah;20/01/2004;Non +ZD;La Réunion;03;3ème circonscription;6;27;M;HOAREAU;Didier;17/10/1981;RN;Artisan;Non;F;GIGANT;Aurore;31/01/1981;Non +ZD;La Réunion;03;3ème circonscription;7;5;F;BASSIRE;Nathalie;22/01/1968;DVD;Ancienne profession intermédiaire;Oui;M;JONAS;Mheïdy;22/10/1998;Non +ZD;La Réunion;03;3ème circonscription;8;13;M;FONTAINE;Antoine;28/10/1976;DVG;Artisan;Non;F;LALEVEE;Geneviève;27/01/1965;Non +ZD;La Réunion;03;3ème circonscription;9;29;M;THEBAULT;Yves;07/01/1949;DXG;Ancien employé;Non;F;ACTIF;Nelly;04/07/1953;Non +ZD;La Réunion;03;3ème circonscription;10;33;M;TÉCHER;Didier;29/11/1979;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;MOREL;Myriam;26/07/1980;Non +ZD;La Réunion;03;3ème circonscription;11;6;M;CHAUSSALET;Alexis;06/05/1993;NUPES;Commerçant et assimilé;Non;F;MARÉE;Nadine;21/06/1967;Non +ZD;La Réunion;03;3ème circonscription;12;83;M;THIEN-AH-KOON;Patrice;06/04/1965;DVD;Cadre administratif et commercial d'entreprise;Non;F;HOARAU;Annie;14/09/1975;Non +ZD;La Réunion;03;3ème circonscription;13;87;M;VLODY;Jean Jacques;19/08/1967;SOC;Professeur, profession scientifique;Non;F;BENHAMIDA;Samira;20/12/1980;Non +ZD;La Réunion;04;4ème circonscription;1;4;F;DIJOUX;Ruth;15/04/1982;ECO;Profession intermédiaire de la santé et du travail social;Non;F;ETHEVE;Stéphie;29/09/1989;Non +ZD;La Réunion;04;4ème circonscription;2;63;F;PAYET;Isabelle;02/02/1972;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;MOULLAN;Ibrahim;10/01/1985;Non +ZD;La Réunion;04;4ème circonscription;3;7;F;BOUCHER;Annie-Claude Dite Saphia;26/06/1970;RN;Profession intermédiaire administrative de la fonction publique;Non;M;ROMBAU;Olivier;05/05/1970;Non +ZD;La Réunion;04;4ème circonscription;4;20;M;LATCHOUMANIN;Serge;04/06/1968;DXG;Profession intermédiaire administrative de la fonction publique;Non;M;LAPLAGNE;Valency;14/03/1964;Non +ZD;La Réunion;04;4ème circonscription;5;84;M;BEMAT;Sharif;12/02/1984;DVC;Professeur, profession scientifique;Non;F;LABENNE;Jennifer;10/04/1986;Non +ZD;La Réunion;04;4ème circonscription;6;45;M;ALBORA;Stéphane;21/09/1989;ECO;Profession intermédiaire de la santé et du travail social;Non;F;CAMÉLÉ YENG-SENG;Graziella;21/02/1971;Non +ZD;La Réunion;04;4ème circonscription;7;14;M;LORION;David;15/10/1964;LR;Professeur, profession scientifique;Oui;F;HOAREAU;Emma;20/05/1999;Non +ZD;La Réunion;04;4ème circonscription;8;77;M;THAZARD;Rudy;30/05/1979;REG;Profession libérale;Non;F;LEPINAY;Rebecca;23/09/1990;Non +ZD;La Réunion;04;4ème circonscription;9;89;M;RIANI;Richard;16/10/1968;DIV;Profession de l'information, des arts et des spectacles;Non;F;SAMINADIN;Magdala;21/10/1974;Non +ZD;La Réunion;04;4ème circonscription;10;74;F;HOAREAU;Patricia;14/11/1964;DSV;Employé civil et agent de service de la fonction publique;Non;M;SOLER;Yann;23/07/1974;Non +ZD;La Réunion;04;4ème circonscription;11;46;F;K/BIDI;Emeline;13/05/1987;FI;Profession libérale;Non;M;MARATCHIA;Jean Bernard;27/11/1962;Non +ZD;La Réunion;05;5ème circonscription;1;28;M;VIRAPOULLÉ;Laurent;07/11/1974;ENS;Chef d'entreprise de 10 salariés ou plus;Non;F;RAMIN;Sabrina;06/01/1978;Non +ZD;La Réunion;05;5ème circonscription;2;15;F;SETTAMA-VIDON;Léopoldine;21/04/1966;DVC;Profession libérale;Non;M;ALLAMELE;Cyldric;11/01/1985;Non +ZD;La Réunion;05;5ème circonscription;3;39;M;ISSA;Ridwane;07/06/1980;DVG;Profession intermédiaire administrative de la fonction publique;Non;F;MANGAR;Catherine;15/05/1979;Non +ZD;La Réunion;05;5ème circonscription;4;90;M;GAUVIN;David;29/03/1981;COM;Chef d'entreprise de 10 salariés ou plus;Non;F;ARAYE;Alexandrine;23/01/1976;Non +ZD;La Réunion;05;5ème circonscription;5;55;M;PAYET;Jean-Yves;05/03/1967;DXG;Technicien;Non;M;NABA;Jean-Luc;09/12/1955;Non +ZD;La Réunion;05;5ème circonscription;6;75;F;DIJOUX;Martine;29/12/1977;DSV;Professeur des écoles, instituteur et assimilé;Non;M;DIJOUX;Michel;02/07/1959;Non +ZD;La Réunion;05;5ème circonscription;7;60;M;RATENON;Jean-Hugues;25/06/1967;NUPES;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Oui;F;SIDAT;Laetitia;10/10/1986;Non +ZD;La Réunion;05;5ème circonscription;8;40;M;FOUASSIN;Stéphane;17/10/1960;UDI;Profession libérale;Non;F;PATCHE;Préma;09/04/1979;Non +ZD;La Réunion;05;5ème circonscription;9;76;F;BRASIER-CLAIN;Marie-Luce;19/10/1959;RN;Ancienne profession intermédiaire;Non;M;RAMASSAMY;Jean Dominique;24/08/1968;Non +ZD;La Réunion;06;6ème circonscription;1;41;M;ADEKALOM;Johny;09/08/1967;DVC;Cadre de la fonction publique;Non;F;BARET-ABDILLAH;Alda;09/10/1979;Non +ZD;La Réunion;06;6ème circonscription;2;88;F;CLAIN;Ophélie;01/02/1994;DSV;Profession libérale;Non;F;STIPO;Nadine;31/03/1965;Non +ZD;La Réunion;06;6ème circonscription;3;17;F;ORPHÉ;Monique;15/10/1964;NUPES;Professeur des écoles, instituteur et assimilé;Non;M;RAMASSAMY;Jean-François;21/02/1971;Non +ZD;La Réunion;06;6ème circonscription;4;3;F;LEGROS;Valérie;04/12/1972;RN;Employé civil et agent de service de la fonction publique;Non;M;ROBERT;Yannis;03/04/1973;Non +ZD;La Réunion;06;6ème circonscription;5;30;M;DE CHAZOURNES;Philippe;02/07/1958;DXG;Profession libérale;Non;F;LISADOR;Ketty;11/07/1955;Non +ZD;La Réunion;06;6ème circonscription;6;44;M;LEUNG;Eric;20/05/1965;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;CALICHIAMA;Yolande;14/03/1980;Non +ZD;La Réunion;06;6ème circonscription;7;64;M;MAILLOT;Frédéric;15/11/1986;DVG;Personnel des services directs aux particuliers;Non;F;LANGENIER;Leila;04/09/1979;Non +ZD;La Réunion;06;6ème circonscription;8;93;M;FANFAN;Loïc;31/10/1985;REG;Profession libérale;Non;F;PIREMAMODE;Salima;14/03/1997;Non +ZD;La Réunion;06;6ème circonscription;9;38;M;LOMBARD;Didier;07/08/1952;DXG;Ancien employé;Non;F;FASY;Frania;27/09/1968;Non +ZD;La Réunion;06;6ème circonscription;10;65;F;GIRONCEL DAMOUR;Nadine;09/07/1974;COM;Cadre de la fonction publique;Non;M;HIVANHOÉ;Aldo;27/01/1977;Non +ZD;La Réunion;06;6ème circonscription;11;47;M;LAÏ-KANE-CHEONG;Alexandre;01/12/1988;DXG;Professeur des écoles, instituteur et assimilé;Non;F;CHANE-TUNE;Florence;21/11/1988;Non +ZD;La Réunion;06;6ème circonscription;12;53;F;RAMASSAMY;Nadia;17/05/1961;LR;Profession libérale;Oui;M;CAZANOVE;Gérard;19/12/1968;Non +ZD;La Réunion;06;6ème circonscription;13;16;M;HOAREAU;Jean Noël;12/08/1967;DXG;Artisan;Non;F;HOAREAU;Julianne;27/08/1971;Non +ZD;La Réunion;07;7ème circonscription;1;37;M;JUHOOR;Karim;01/01/1991;DVG;Commerçant et assimilé;Non;F;RIVIERE;Corine;15/07/1965;Non +ZD;La Réunion;07;7ème circonscription;2;72;F;CODDEVILLE;Hélène;20/12/1965;ENS;Profession libérale;Non;M;DAVID;Romain;01/06/1996;Non +ZD;La Réunion;07;7ème circonscription;3;56;M;CATHERINE;Richelain;14/12/1968;DIV;Commerçant et assimilé;Non;F;HOARAU;Adjila;22/11/1990;Non +ZD;La Réunion;07;7ème circonscription;4;68;M;ROBERT;Thierry;01/04/1977;DVC;Cadre administratif et commercial d'entreprise;Non;F;BICLAIRE;Windy;30/01/1989;Non +ZD;La Réunion;07;7ème circonscription;5;31;M;MASSAIN;Remy;24/03/1964;RDG;Professeur des écoles, instituteur et assimilé;Non;F;HOARAU;Marie-Josèphe;02/01/1963;Non +ZD;La Réunion;07;7ème circonscription;6;66;M;VELLEYEN;Gaël;22/04/1981;REG;Profession de l'information, des arts et des spectacles;Non;F;SCIERS;Nina;17/02/1998;Non +ZD;La Réunion;07;7ème circonscription;7;73;M;MARCELY;Eric;10/07/1962;DSV;Profession libérale;Non;F;ROMIGNAC;Mélanie;16/09/1962;Non +ZD;La Réunion;07;7ème circonscription;8;19;M;NATIVEL;Jean François;10/02/1972;DVD;Professeur, profession scientifique;Non;F;GALAIS;Mahalia;25/04/1984;Non +ZD;La Réunion;07;7ème circonscription;9;32;M;RIVIERE;Jonathan;14/07/1985;RN;Commerçant et assimilé;Non;F;LEBEAU;Anicha;20/09/1981;Non +ZD;La Réunion;07;7ème circonscription;10;25;M;VALEAMA;François;23/03/1978;COM;Profession intermédiaire administrative de la fonction publique;Non;F;HOAREAU;Chloé;15/10/1996;Non +ZD;La Réunion;07;7ème circonscription;11;54;F;TRONC;Isaline;24/01/1974;DVG;Cadre de la fonction publique;Non;M;AIPAR;David;09/05/1970;Non +ZD;La Réunion;07;7ème circonscription;12;80;M;BACHOU;Jérôme;19/10/1978;DVC;Profession libérale;Non;M;BERTRAND;Pascal;17/09/1978;Non +ZD;La Réunion;07;7ème circonscription;13;85;M;GAILLARD;Perceval;24/04/1983;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;PAYET;Geneviève;01/08/1954;Non +ZD;La Réunion;07;7ème circonscription;14;50;M;PAYET;Jean Luc;23/05/1969;DXG;Professeur, profession scientifique;Non;M;LAPIERRE;Xavier;11/12/1959;Non +ZD;La Réunion;07;7ème circonscription;15;43;M;GUILLOU;Johan;13/07/1984;DVG;Ancien employé;Non;F;BIMA;Kelly;29/03/1995;Non +ZM;Mayotte;01;1ère circonscription;1;14;M;MOINDJIE;Mohamed;11/04/1969;DVC;Cadre de la fonction publique;Non;F;ATTOUMANI;Dharina-Hyati;22/10/1985;Non +ZM;Mayotte;01;1ère circonscription;2;21;F;AOUNY;Yasmina;31/03/1986;NUPES;Professeur, profession scientifique;Non;M;BACAR;Assoumani;04/01/1971;Non +ZM;Mayotte;01;1ère circonscription;3;4;M;NARAYANIN;Théophane;07/05/1955;DIV;Chef d'entreprise de 10 salariés ou plus;Non;F;KORDJEE;Cris;17/11/1963;Non +ZM;Mayotte;01;1ère circonscription;4;16;M;CHAKRINA;Elad;04/03/1981;DVD;Profession libérale;Non;F;HALIDI;Anchia;19/05/1978;Non +ZM;Mayotte;01;1ère circonscription;5;22;M;DJAZA;Ismaila;11/10/1974;DIV;Ingénieur et cadre technique d'entreprise;Non;M;SAID;Mahamoud;14/07/1975;Non +ZM;Mayotte;01;1ère circonscription;6;3;M;BOURA;Ahamadi;22/12/1959;DVG;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;F;ABDALLAH-BOINA;Laini;07/02/1981;Non +ZM;Mayotte;01;1ère circonscription;7;2;M;ABDILLAH;Issihaka;31/12/1963;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;HOUZALI;Halima;17/06/1974;Non +ZM;Mayotte;01;1ère circonscription;8;15;F;ALI;Ramlati;28/05/1961;ENS;Professeur, profession scientifique;Oui;M;BACAR;Abdallah;20/02/1982;Non +ZM;Mayotte;01;1ère circonscription;9;20;M;AUTRAN;Antoine;17/12/1972;DIV;Artisan;Non;F;GARCIA;Nathalie;24/01/1966;Non +ZM;Mayotte;01;1ère circonscription;10;18;F;YOUSSOUFFA;Estelle;31/07/1978;DIV;Profession de l'information, des arts et des spectacles;Non;M;SAID;Kambi;18/03/1975;Non +ZM;Mayotte;02;2ème circonscription;1;8;M;SAID-SOUFFOU;Soula;19/02/1980;DVC;Employé civil et agent de service de la fonction publique;Non;F;MOHAMED;Nouriati;17/07/1975;Non +ZM;Mayotte;02;2ème circonscription;2;11;M;MAURICE;Toumbou;22/08/1943;DVD;Ancien employé;Non;M;ALI HAMADA;Hazali;18/05/1982;Non +ZM;Mayotte;02;2ème circonscription;3;19;M;DJAROUDI;Ali;01/07/1969;NUPES;Cadre administratif et commercial d'entreprise;Non;M;MLANAO;Abdou Ali;05/08/1965;Non +ZM;Mayotte;02;2ème circonscription;4;17;M;HAMISSI;Saidali;27/11/1960;RN;Cadre de la fonction publique;Non;F;MKADARA;Afidati;09/03/1976;Non +ZM;Mayotte;02;2ème circonscription;5;9;M;ISSA ABDOU;Issa;23/12/1973;DVC;Cadre de la fonction publique;Non;F;AHAMADA;Moizari;08/06/1963;Non +ZM;Mayotte;02;2ème circonscription;6;5;M;KAMARDINE;Mansour;23/03/1959;LR;Profession libérale;Oui;F;DJOUMOI TSIMPOU;Fazianti;02/11/1986;Non +ZM;Mayotte;02;2ème circonscription;7;13;M;SALIME;Ahumad;14/04/1966;DVD;Employé civil et agent de service de la fonction publique;Non;M;IMRANE;Nassurdine;31/12/1977;Non +ZM;Mayotte;02;2ème circonscription;8;7;M;MADI NGAZI;Anli;26/08/1988;DVG;Cadre administratif et commercial d'entreprise;Non;M;SAID;Nourdine;30/06/1985;Non +ZM;Mayotte;02;2ème circonscription;9;12;M;ABDOU;Mouhamed;27/07/1980;DIV;Profession intermédiaire de la santé et du travail social;Non;M;AHAMADI;Inoussa;31/05/1982;Non +ZM;Mayotte;02;2ème circonscription;10;10;M;MADI MARI;Madi-Boinamani;16/02/1987;ENS;Cadre de la fonction publique;Non;F;SAID;Toiyfati;22/02/1987;Non +ZM;Mayotte;02;2ème circonscription;11;6;M;MCHAMI;Mouhamadi;17/05/1979;DVC;Professeur des écoles, instituteur et assimilé;Non;F;BOURA;Raza;07/04/1980;Non +ZN;Nouvelle-Calédonie;01;1ère circonscription;1;2;M;GIL;Antoine;26/05/1956;DVD;Policier et militaire;Non;M;QUINET;Stéphane;25/12/1965;Non +ZN;Nouvelle-Calédonie;01;1ère circonscription;2;9;M;KASARHEROU;Joël;26/09/1963;DVC;Chef d'entreprise de 10 salariés ou plus;Non;M;IOPUE;Luen;27/01/1985;Non +ZN;Nouvelle-Calédonie;01;1ère circonscription;3;17;M;DUNOYER;Philippe;11/01/1968;ENS;Cadre de la fonction publique;Oui;F;WATEOU;Naïa;16/04/1984;Non +ZN;Nouvelle-Calédonie;01;1ère circonscription;4;4;M;CUENOT;Guy-Olivier;06/07/1966;RN;Chef d'entreprise de 10 salariés ou plus;Non;F;MANUILA;Nila;03/10/1981;Non +ZN;Nouvelle-Calédonie;01;1ère circonscription;5;18;M;LAFLEUR;Pascal;21/01/1961;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;DALY;Pascale;13/01/1963;Non +ZN;Nouvelle-Calédonie;01;1ère circonscription;6;10;F;WAHETRA;Walisaune;06/04/1970;REG;Professeur des écoles, instituteur et assimilé;Non;M;MALALUA;Jean Fidéli;07/07/1973;Non +ZN;Nouvelle-Calédonie;01;1ère circonscription;7;14;F;RUFFENACH;Virginie;19/09/1973;LR;Professeur, profession scientifique;Non;M;LAUKAU;Warren;24/08/1990;Non +ZN;Nouvelle-Calédonie;01;1ère circonscription;8;3;M;SIMON;Jérémy;19/08/1986;DSV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;TORDJMAN;Mickaël;03/08/1995;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;1;15;M;ITITIATY;Joannes;23/11/1983;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;AZERARI;Loretta;07/11/1987;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;2;16;M;MILLAR;Manuel;10/05/1957;DIV;Cadre administratif et commercial d'entreprise;Non;M;TUAKOIFENUA;Palekuaola;02/12/1979;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;3;5;M;METZDORF;Nicolas;20/05/1988;ENS;Ingénieur et cadre technique d'entreprise;Non;M;GATUHAU;Willy;03/01/1970;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;4;7;M;DESCOMBELS;Alain;06/11/1953;RN;Chef d'entreprise de 10 salariés ou plus;Non;F;HAOA;Ursula;09/04/1990;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;5;6;M;SANTA;Thierry;29/08/1967;LR;Cadre de la fonction publique;Non;F;WACAPO;Vanessa;21/04/1977;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;6;8;F;HOMBOE;Michèle;10/12/1970;DVC;Professeur, profession scientifique;Non;M;KERLEGUER;Lénaïc;18/05/1990;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;7;13;F;PAGAND;Véronique;22/06/1971;DSV;Profession libérale;Non;F;PAGAND;Alysea;11/01/2000;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;8;11;M;REIGNIER;Gérard;02/10/1959;REG;Ancien cadre;Non;F;GOYETCHE;Marie-Pierre;12/02/1956;Non +ZN;Nouvelle-Calédonie;02;2ème circonscription;9;12;F;HAOCAS;Muneiko;19/06/1990;REG;Profession libérale;Non;M;YEIWIE;Simijane;18/11/1979;Non +ZP;Polynésie française;01;1ère circonscription;1;15;F;HAITI;Pascale;03/04/1972;DVD;Profession libérale;Non;F;NOUVEAU;Lydia;27/02/1959;Non +ZP;Polynésie française;01;1ère circonscription;2;3;M;LE GAYIC;Tematai;11/10/2000;REG;Elève, étudiant;Non;F;SAMIN ÉPS HOMAI;Odette;26/09/1981;Non +ZP;Polynésie française;01;1ère circonscription;3;14;M;BRYANT;Jacky;19/06/1957;ECO;Professeur des écoles, instituteur et assimilé;Non;F;BRUNEAU;Raissa;31/01/1976;Non +ZP;Polynésie française;01;1ère circonscription;4;17;M;THERON;Jean-Paul;26/01/1958;DIV;Profession libérale;Non;F;TAPATI;Gérida;21/02/1984;Non +ZP;Polynésie française;01;1ère circonscription;5;18;M;CADOUSTEAU;Willy;19/01/1959;REG;Ancien employé;Non;F;AH LO;Yamila Maramahiti;15/04/1982;Non +ZP;Polynésie française;01;1ère circonscription;6;7;F;BOUTEAU;Nicole;20/01/1969;ENS;Cadre de la fonction publique;Non;M;KAIHA;Joseph;07/12/1960;Non +ZP;Polynésie française;01;1ère circonscription;7;12;M;TOKORAGI;Félix;27/03/1984;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;TEARIKI;Nahiti;26/05/1991;Non +ZP;Polynésie française;01;1ère circonscription;8;13;M;NENA;Tauhiti;13/04/1968;REG;Professeur, profession scientifique;Non;M;TEHAAMOANA;Etienne;21/04/1961;Non +ZP;Polynésie française;01;1ère circonscription;9;10;F;PIERCY;Laurence;08/12/1965;ECO;Profession libérale;Non;M;BEGLIOMINI;Bernard;26/06/1958;Non +ZP;Polynésie française;02;2ème circonscription;1;22;M;ZANNI;Eric;29/11/1962;DSV;Ancien cadre;Non;M;DENARIE;Jean-Louis;20/12/1963;Non +ZP;Polynésie française;02;2ème circonscription;2;21;M;TARIHAA;Jonathan;19/04/1983;DVD;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;TAHUHUATAMA;Juliette;17/05/1955;Non +ZP;Polynésie française;02;2ème circonscription;3;11;M;ATGER;Charles;09/12/1958;RN;Profession libérale;Non;F;WONG-PO;Miri;31/03/1966;Non +ZP;Polynésie française;02;2ème circonscription;4;16;F;SANQUER;Nicole;16/06/1972;DVD;Professeur, profession scientifique;Oui;F;PARAU TOKORAGI;Heia;09/05/1971;Non +ZP;Polynésie française;02;2ème circonscription;5;5;M;CHAILLOUX;Steve;04/11/1985;NUPES;Professeur, profession scientifique;Non;F;OPUU ÉPS ROBSON;Alexandra;03/02/1962;Non +ZP;Polynésie française;02;2ème circonscription;6;2;F;MANUTAHI LEVY-AGAMI;Sandra;18/12/1971;REG;Profession intermédiaire administrative de la fonction publique;Non;M;TAHIMANARII;Andre;24/09/1972;Non +ZP;Polynésie française;02;2ème circonscription;7;20;M;SALMON;Tati;16/08/1961;ECO;Professeur des écoles, instituteur et assimilé;Non;F;URARII-PAMBRUN;Hinatea;07/06/1992;Non +ZP;Polynésie française;02;2ème circonscription;8;19;F;OTCENASEK;Paméla;03/06/1971;REG;Professeur des écoles, instituteur et assimilé;Non;M;TAPUTU;Faana;04/09/1962;Non +ZP;Polynésie française;02;2ème circonscription;9;23;M;BONTOUR;Paul;25/05/1956;DXG;Ancien artisan, commerçant, chef d'entreprise;Non;F;FARIUA;Amelia Taharoa;20/04/1966;Non +ZP;Polynésie française;02;2ème circonscription;10;26;F;TERIITAHI;Tepuaraurii;01/12/1977;ENS;Cadre de la fonction publique;Non;M;FLOHR;Henri;04/01/1952;Non +ZP;Polynésie française;03;3ème circonscription;1;9;M;BROTHERSON;Moetai;22/10/1969;NUPES;Ingénieur et cadre technique d'entreprise;Oui;F;REID ARBELOT;Mereana;12/09/1970;Non +ZP;Polynésie française;03;3ème circonscription;2;24;M;TAUTU;Gilles;28/11/1973;REG;Profession de l'information, des arts et des spectacles;Non;M;HAAPA;Gontran;28/03/1961;Non +ZP;Polynésie française;03;3ème circonscription;3;29;M;TEFAN;John;11/11/1975;REG;Profession libérale;Non;F;ATIU;Vairea;17/01/1975;Non +ZP;Polynésie française;03;3ème circonscription;4;4;M;TERIITAHI;Bernard Heifara;20/03/1971;REG;Employé de commerce;Non;F;KASPAR;Ericka;29/06/1972;Non +ZP;Polynésie française;03;3ème circonscription;5;25;F;TEROOATEA;Sylviane;13/10/1966;DVD;Cadre de la fonction publique;Non;M;TEROROIRIA;Martial;29/06/1973;Non +ZP;Polynésie française;03;3ème circonscription;6;27;M;LAUREY;Nuihau;29/12/1964;DVD;Profession libérale;Non;F;TEMARII;Teha;24/12/1984;Non +ZP;Polynésie française;03;3ème circonscription;7;6;M;TUMAHAI;Tuterai;26/06/1969;ENS;Profession intermédiaire de la santé et du travail social;Non;F;AMARU;Patricia;28/01/1952;Non +ZP;Polynésie française;03;3ème circonscription;8;28;M;HAUATA;Jules;18/05/1969;ECO;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;TINORUA;Monia;22/10/1974;Non +ZS;Saint-Pierre-et-Miquelon;01;Saint-Pierre-et-Miquelon;1;5;F;MICHEL;Dominica;16/01/1966;DIV;Profession intermédiaire de la santé et du travail social;Non;M;DE LIZARAGA;Joshua;25/09/1995;Non +ZS;Saint-Pierre-et-Miquelon;01;Saint-Pierre-et-Miquelon;2;4;M;LEBAILLY;Patrick;08/05/1965;DVG;Employé civil et agent de service de la fonction publique;Non;M;BRIAND;Emmanuel;13/01/1978;Non +ZS;Saint-Pierre-et-Miquelon;01;Saint-Pierre-et-Miquelon;3;3;M;GASTON;Olivier;30/06/1981;NUPES;Cadre administratif et commercial d'entreprise;Non;F;HELENE;Catherine;27/03/1970;Non +ZS;Saint-Pierre-et-Miquelon;01;Saint-Pierre-et-Miquelon;4;2;M;LENORMAND;Stéphane;13/08/1964;DVD;Ancien cadre;Non;F;SKINNER;Sandy;02/11/1988;Non +ZW;Wallis et Futuna;01;1ère circonscription;1;6;M;MULUKIHAAMEA;Etuato;05/08/1967;DVC;Professeur des écoles, instituteur et assimilé;Non;F;NAU-GAVEAU;Olga Sesuina;11/06/1981;Non +ZW;Wallis et Futuna;01;1ère circonscription;2;4;M;TUKUMULI;Soane Tamaseno;01/04/1976;DVG;Profession de l'information, des arts et des spectacles;Non;F;KELETOLONA;Reine-Marie;10/03/1997;Non +ZW;Wallis et Futuna;01;1ère circonscription;3;7;F;UGATAI;Sandrine Aimée;23/06/1976;DVC;Cadre administratif et commercial d'entreprise;Non;F;TAUVALE ÉPOUSE HANISI;Akata;27/03/1976;Non +ZW;Wallis et Futuna;01;1ère circonscription;4;5;M;MAILAGI;Soane Paulo;17/10/1978;DVC;Cadre de la fonction publique;Non;F;LIE ÉPOUSE FAKAILO;Malia;08/09/1983;Non +ZW;Wallis et Futuna;01;1ère circonscription;5;2;F;KULIKOVI;Malia Nive;07/06/1972;ECO;Profession de l'information, des arts et des spectacles;Non;M;NAU;Siliako;12/03/1965;Non +ZW;Wallis et Futuna;01;1ère circonscription;6;8;F;TIALETAGI-VERGÉ;Lauriane;04/07/1980;DVC;Commerçant et assimilé;Non;F;FINEAU;Malia Ana;25/02/1988;Non +ZW;Wallis et Futuna;01;1ère circonscription;7;9;M;ILALIO;Atonio Falemana;10/02/1961;DVC;Cadre de la fonction publique;Non;M;KANIMOA;Soane Patita;19/05/1980;Non +ZW;Wallis et Futuna;01;1ère circonscription;8;3;M;SEO;Mikaele;27/12/1971;DVC;Profession intermédiaire administrative de la fonction publique;Non;M;LELEIVAI;Petlo;05/04/1968;Non +ZX;Saint-Martin/Saint-Barthélemy;01;1ère circonscription;1;5;F;JAVOIS;Claire;06/09/1957;LR;Cadre administratif et commercial d'entreprise;Oui;F;JUDITH;Sylviane;20/12/1970;Non +ZX;Saint-Martin/Saint-Barthélemy;01;1ère circonscription;2;3;M;GIBBS;Daniel;08/01/1968;DVD;Profession libérale;Non;M;GREAUX;Thomas;27/08/1991;Non +ZX;Saint-Martin/Saint-Barthélemy;01;1ère circonscription;3;2;F;CAZE;Béatrice;22/08/1972;REC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;BERTIN;Charly;09/06/1989;Non +ZX;Saint-Martin/Saint-Barthélemy;01;1ère circonscription;4;7;M;PAINES STEPHEN;Victor;22/01/1963;REG;Chef d'entreprise de 10 salariés ou plus;Non;F;BROOKS;Claudine;18/11/1967;Non +ZX;Saint-Martin/Saint-Barthélemy;01;1ère circonscription;5;4;F;RIVERE BONZOM;Sabrina;08/05/1978;DIV;Cadre administratif et commercial d'entreprise;Non;F;ROSEY;Daniella;24/09/1966;Non +ZX;Saint-Martin/Saint-Barthélemy;01;1ère circonscription;6;6;M;GUMBS;Frantz;21/01/1954;DVC;Ancien cadre;Non;F;LAKE;Melissa;04/10/1978;Non +ZZ;Français établis hors de France;01;1ère circonscription;1;25;M;CARACO;Patrick;16/11/1949;LR;Profession libérale;Non;F;PICQUET;Séverine;10/09/1979;Non +ZZ;Français établis hors de France;01;1ère circonscription;2;74;F;AMAGLIO-TERISSE;Isabelle;10/05/1969;DVG;Cadre de la fonction publique;Non;F;DURIEZ GUY;Catherine;28/07/1950;Non +ZZ;Français établis hors de France;01;1ère circonscription;3;148;M;MICHON;Gérard;29/03/1956;DVD;Ingénieur et cadre technique d'entreprise;Non;F;DUCELLIER;Amandine;12/02/2003;Non +ZZ;Français établis hors de France;01;1ère circonscription;4;77;F;ADAM;Jennifer;18/07/1980;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;M;MASSON;Francis;21/05/1985;Non +ZZ;Français établis hors de France;01;1ère circonscription;5;117;M;RÉMINIAC;Yann;11/03/1976;REG;Elève, étudiant;Non;F;JULIENNE;Magalie;27/06/1971;Non +ZZ;Français établis hors de France;01;1ère circonscription;6;152;M;ITIER;Emmanuel;17/04/1967;DVD;Profession de l'information, des arts et des spectacles;Non;F;KATIC;Natacha;16/01/1981;Non +ZZ;Français établis hors de France;01;1ère circonscription;7;140;M;REGIS;James;25/07/1978;DSV;Ingénieur et cadre technique d'entreprise;Non;F;EUGENE;Marleen;02/09/2000;Non +ZZ;Français établis hors de France;01;1ère circonscription;8;46;F;ROGER;Florence;28/09/1989;NUPES;Profession libérale;Non;M;LARAICHI;Oussama;13/01/1988;Non +ZZ;Français établis hors de France;01;1ère circonscription;9;17;M;LESCURE;Roland;26/11/1966;ENS;Cadre administratif et commercial d'entreprise;Oui;M;WEISSBERG;Christopher;26/11/1985;Non +ZZ;Français établis hors de France;01;1ère circonscription;10;139;M;OUELHADJ;Alain;04/03/1956;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;BERSON DIETSCH;Charles;22/05/1974;Non +ZZ;Français établis hors de France;01;1ère circonscription;11;76;M;BONDRILLE;Franck;18/09/1967;DVD;Chef d'entreprise de 10 salariés ou plus;Non;F;DELLAPINA;Cindy;12/02/1979;Non +ZZ;Français établis hors de France;01;1ère circonscription;12;107;F;PARAT-EDOM;Laisely;12/11/1968;RDG;Cadre de la fonction publique;Non;F;BORDELAIS;Jacinthe;12/04/1983;Non +ZZ;Français établis hors de France;02;2ème circonscription;1;116;M;RIBEIRO;Salvador;26/02/1980;DIV;Commerçant et assimilé;Non;F;RASOLONJATOVO;Iholiseheno;29/09/1973;Non +ZZ;Français établis hors de France;02;2ème circonscription;2;102;F;SAUSSAY;Vanessa;23/03/1988;REG;Ingénieur et cadre technique d'entreprise;Non;M;ROIRANT;Julien;09/08/1976;Non +ZZ;Français établis hors de France;02;2ème circonscription;3;56;M;COLLARD;Jeoffrey;09/07/1991;DIV;Profession libérale;Non;F;ANNEQUIN;Mathilde;27/04/1992;Non +ZZ;Français établis hors de France;02;2ème circonscription;4;24;M;DUPONT;Bertrand;28/09/1970;LR;Profession libérale;Non;F;MARTIQUET;Frédérique;02/09/1974;Non +ZZ;Français établis hors de France;02;2ème circonscription;5;130;M;VANIER;Pierre;04/05/1992;DIV;Ingénieur et cadre technique d'entreprise;Non;M;GOUTTENOIRE;Thomas;08/05/1977;Non +ZZ;Français établis hors de France;02;2ème circonscription;6;108;F;MARIANNE PEPIN;Thérèse;04/02/1954;RDG;Ancien cadre;Non;F;CHOPARD;Francine;04/04/1957;Non +ZZ;Français établis hors de France;02;2ème circonscription;7;6;M;RODRIGUEZ;Christian;25/04/1963;NUPES;Profession intermédiaire de la santé et du travail social;Non;F;POZNANSKI;Florence;23/01/1985;Non +ZZ;Français établis hors de France;02;2ème circonscription;8;105;F;CAROIT;Eléonore;08/07/1985;ENS;Profession libérale;Non;F;LARROUQUIS;Benoît;18/11/1969;Non +ZZ;Français établis hors de France;02;2ème circonscription;9;37;M;LAURENCE;Tim;08/10/1997;ECO;Cadre de la fonction publique;Non;F;REITH ILDARRAZ;Oriana;29/07/1994;Non +ZZ;Français établis hors de France;02;2ème circonscription;10;71;M;BIURRUN;Martin;28/10/1991;DVC;Profession libérale;Non;M;DU PARC;Yves;08/04/1984;Non +ZZ;Français établis hors de France;02;2ème circonscription;11;72;F;LEFEBVRE;Léa;23/01/1991;RN;Contremaître, agent de maîtrise;Non;M;GILOIS;Louis;01/11/1950;Non +ZZ;Français établis hors de France;02;2ème circonscription;12;100;M;TRIGALLEAU;Michel;18/01/1959;DIV;Professeur, profession scientifique;Non;F;TAUSSIG;Sylvie;31/10/1969;Non +ZZ;Français établis hors de France;02;2ème circonscription;13;99;F;PIAT-GUIBERT;Isabelle;25/10/1959;DVG;Cadre administratif et commercial d'entreprise;Non;M;ABRIAL;David;13/03/1984;Non +ZZ;Français établis hors de France;02;2ème circonscription;14;68;M;THORAILLER;Yves;28/03/1949;REC;Ancien cadre;Non;F;DE LESQUEN DU PLESSIS CASSO;Alexandra;05/07/1973;Non +ZZ;Français établis hors de France;03;3ème circonscription;1;149;F;LAMARRE;Assamahou;14/08/1961;DIV;Ingénieur et cadre technique d'entreprise;Non;F;KIFOULA;Vénus Félicia;06/06/2001;Non +ZZ;Français établis hors de France;03;3ème circonscription;2;113;F;HELAILI-CHAPUIS;Laurence;07/08/1985;DVC;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;HATTON;Nicolas;02/03/1970;Non +ZZ;Français établis hors de France;03;3ème circonscription;3;109;F;BAILLY;Coralie;23/05/2003;RDG;Elève, étudiant;Non;M;PIOT;Vincent;10/08/1976;Non +ZZ;Français établis hors de France;03;3ème circonscription;4;4;M;HOLROYD;Alexandre;17/05/1987;ENS;Profession libérale;Oui;F;REVOY;Véronique;26/03/1966;Non +ZZ;Français établis hors de France;03;3ème circonscription;5;40;F;MINVIELLE;Charlotte;04/10/1985;NUPES;Profession intermédiaire de la santé et du travail social;Non;M;LAVIS;Losang;13/07/1997;Non +ZZ;Français établis hors de France;03;3ème circonscription;6;66;F;DARRIEUS;Margaux;01/06/1999;REC;Elève, étudiant;Non;M;PELAUD;Franc;24/01/1968;Non +ZZ;Français établis hors de France;03;3ème circonscription;7;118;F;CAZEIN;Aude;08/03/1990;DIV;Profession intermédiaire administrative et commerciale des entreprises;Non;M;POULETTY;Mathieu;23/10/1972;Non +ZZ;Français établis hors de France;03;3ème circonscription;8;26;M;GALIAY;Artus;03/03/1988;LR;Cadre administratif et commercial d'entreprise;Non;F;DIALLO;Khadiatou;12/05/1974;Non +ZZ;Français établis hors de France;03;3ème circonscription;9;5;M;LEPELTIER;Thomas;04/01/1967;ECO;Profession libérale;Non;F;ABELA;Pauline;28/04/1996;Non +ZZ;Français établis hors de France;03;3ème circonscription;10;67;M;BEGON;Willy;21/12/1986;RN;Cadre administratif et commercial d'entreprise;Non;F;PIRON;Chantal;21/04/1993;Non +ZZ;Français établis hors de France;03;3ème circonscription;11;45;F;ROMBONI;Valérie;05/12/1967;DIV;Commerçant et assimilé;Non;M;DUPLAND;Jean-François;06/09/1957;Non +ZZ;Français établis hors de France;04;4ème circonscription;1;61;F;CUIGNET;Emmanuelle;26/01/1953;RN;Cadre administratif et commercial d'entreprise;Non;M;BEAUFRERE;Franck;22/03/1967;Non +ZZ;Français établis hors de France;04;4ème circonscription;2;23;F;MACHICOTE;Genevieve;13/02/1970;LR;Profession libérale;Non;M;BOUBAL;François;24/05/1973;Non +ZZ;Français établis hors de France;04;4ème circonscription;3;53;M;THEVENOT;Valentin;23/09/1988;DIV;Profession libérale;Non;M;LE SELLIN;Quentin;11/06/1995;Non +ZZ;Français établis hors de France;04;4ème circonscription;4;133;F;CRONEL;Gaëlle;20/06/1986;DIV;Cadre de la fonction publique;Non;M;DOITÉ;Rodolphe;09/10/1992;Non +ZZ;Français établis hors de France;04;4ème circonscription;5;64;F;GONDARD;Cécilia;04/06/1980;NUPES;Cadre administratif et commercial d'entreprise;Non;F;LIBEAUT;Catherine;26/09/1963;Non +ZZ;Français établis hors de France;04;4ème circonscription;6;62;M;DEVERCHERE;Cédric;31/10/1984;DIV;Ingénieur et cadre technique d'entreprise;Non;F;NGOMSIK;Audrey-Flore;19/05/1976;Non +ZZ;Français établis hors de France;04;4ème circonscription;7;63;F;COUTARD;Catherine;21/02/1961;DVG;Profession intermédiaire de la santé et du travail social;Non;M;VINCENT;Théophile;08/03/1997;Non +ZZ;Français établis hors de France;04;4ème circonscription;8;136;F;MABASI;Marie-Josée;08/09/1988;DVC;Employé administratif d'entreprise;Non;F;UHALDE;Teresita;27/11/1938;Non +ZZ;Français établis hors de France;04;4ème circonscription;9;97;F;GIRARD;Anne-Catherine;26/05/1974;REC;Artisan;Non;M;DE CREMIERS;Jacques-Antoine;24/07/1976;Non +ZZ;Français établis hors de France;04;4ème circonscription;10;34;M;ANGLADE;Pieyre-Alexandre;02/11/1986;ENS;Cadre de la fonction publique;Oui;F;COFFINEAU;Louise;26/07/1990;Non +ZZ;Français établis hors de France;05;5ème circonscription;1;19;F;BEHAR;Claire;15/06/1990;DIV;Ingénieur et cadre technique d'entreprise;Non;F;RINCON;Lara;21/12/1990;Non +ZZ;Français établis hors de France;05;5ème circonscription;2;22;M;GOATER;Laurent;20/03/1969;LR;Cadre administratif et commercial d'entreprise;Non;F;GASCON;Yusil;03/04/1971;Non +ZZ;Français établis hors de France;05;5ème circonscription;3;141;M;RIDELLE;Marc;11/05/1967;DSV;Profession libérale;Non;M;GEOLLE;Jean-Philippe;06/01/1966;Non +ZZ;Français établis hors de France;05;5ème circonscription;4;94;F;DE SOUSA TEIXEIRA;Maria Isabel;16/01/1947;RDG;Ancienne profession intermédiaire;Non;M;BLET;Philippe;20/01/1963;Non +ZZ;Français établis hors de France;05;5ème circonscription;5;85;M;FONTAINE;Robin;07/08/1996;DIV;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;F;GADEYNE;Zoé;27/03/2002;Non +ZZ;Français établis hors de France;05;5ème circonscription;6;48;M;VALLS;Manuel;13/08/1962;ENS;Profession libérale;Non;M;BURTIN;Thierry;10/07/1961;Non +ZZ;Français établis hors de France;05;5ème circonscription;7;65;M;BIES;Serge;15/05/1946;RN;Cadre administratif et commercial d'entreprise;Non;F;COMBETTES;Evangeline;24/11/1948;Non +ZZ;Français établis hors de France;05;5ème circonscription;8;106;F;ERASO;Garbiñe;02/02/1975;REG;Cadre administratif et commercial d'entreprise;Non;M;BALAGUER;Enric;25/05/1960;Non +ZZ;Français établis hors de France;05;5ème circonscription;9;41;M;LE BERRE;Renaud;27/09/1967;NUPES;Professeur, profession scientifique;Non;F;DANTAS;Isabelle;21/08/1976;Non +ZZ;Français établis hors de France;05;5ème circonscription;10;69;M;SANCHEZ PEREZ;José;01/08/1962;ECO;Professeur, profession scientifique;Non;F;ROMAN GONZALEZ;Maria;27/12/1960;Non +ZZ;Français établis hors de France;05;5ème circonscription;11;39;M;CHAMOUX;Nicolas;11/01/1991;REC;Cadre administratif et commercial d'entreprise;Non;F;ILLARET;Jennifer;23/11/1982;Non +ZZ;Français établis hors de France;05;5ème circonscription;12;67;M;VOJETTA;Stéphane;19/07/1974;DVC;Cadre administratif et commercial d'entreprise;Oui;F;COGGIA;Nathalie;16/07/1977;Non +ZZ;Français établis hors de France;06;6ème circonscription;1;73;F;RUSAIL;Chantal;03/12/1946;RN;Employé de commerce;Non;M;RODIER;Louis;02/02/1968;Non +ZZ;Français établis hors de France;06;6ème circonscription;2;138;M;BERNARD;Olivier;11/04/1966;DIV;Profession libérale;Non;M;DE MELO;Paul-David;12/06/1983;Non +ZZ;Français établis hors de France;06;6ème circonscription;3;70;M;PRIAROLLO;Ernest;26/07/1968;DVD;Ingénieur et cadre technique d'entreprise;Non;F;PRIAROLLO;Chiara;03/09/1999;Non +ZZ;Français établis hors de France;06;6ème circonscription;4;127;F;SELLÈS LEFRANC;Michèle;02/05/1953;DVG;Professeur, profession scientifique;Non;M;FRANÇOIS;Christophe;07/09/1966;Non +ZZ;Français établis hors de France;06;6ème circonscription;5;38;M;GROSSO;Guillaume;18/12/1974;DVG;Cadre administratif et commercial d'entreprise;Non;F;NAPOLI;Julia;03/08/1985;Non +ZZ;Français établis hors de France;06;6ème circonscription;6;10;F;MANGIN;Magali;23/05/1990;NUPES;Ingénieur et cadre technique d'entreprise;Non;M;ROUSSEAU;Fabian;27/07/1990;Non +ZZ;Français établis hors de France;06;6ème circonscription;7;142;M;TISSOT;Philippe;04/01/1962;REC;Profession libérale;Non;F;AHLIN;Laetitia;16/06/1971;Non +ZZ;Français établis hors de France;06;6ème circonscription;8;7;F;MAZLOUM-MARTIN;Régine;25/10/1954;LR;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;PACHOVSKI;Alexis;08/09/1982;Non +ZZ;Français établis hors de France;06;6ème circonscription;9;125;F;CORBRAN;Roxane;20/09/1963;DVC;Profession libérale;Non;F;RAMAZZI;Frédérique;12/02/1977;Non +ZZ;Français établis hors de France;06;6ème circonscription;10;86;F;MENGUE;Danielle;16/04/1982;DVD;Ingénieur et cadre technique d'entreprise;Non;M;BAUFRETON;Fabian;18/07/1975;Non +ZZ;Français établis hors de France;06;6ème circonscription;11;3;M;DUMARTY;Jérôme;04/07/1973;ECO;Ingénieur et cadre technique d'entreprise;Non;F;CARILLO;Aurélia;06/04/1979;Non +ZZ;Français établis hors de France;06;6ème circonscription;12;101;M;CLAVEL;Jean-Philippe;22/09/1969;DIV;Profession libérale;Non;F;CLAVEL;Natacha;05/02/1998;Non +ZZ;Français établis hors de France;06;6ème circonscription;13;95;M;FERRACCI;Marc;19/12/1977;ENS;Professeur, profession scientifique;Non;F;ROUSSELOT;Marie-Ange;09/09/1987;Non +ZZ;Français établis hors de France;06;6ème circonscription;14;55;M;SON-FORGET;Joachim;15/04/1983;DVD;Profession libérale;Oui;F;FOTI;Laura;03/01/1987;Non +ZZ;Français établis hors de France;06;6ème circonscription;15;131;M;DORTHE;Arnaud;24/04/1979;REG;Profession libérale;Non;M;BELLEGO;Antoine;18/02/2001;Non +ZZ;Français établis hors de France;07;7ème circonscription;1;132;M;DROUET;Félix;06/04/1988;DIV;Ingénieur et cadre technique d'entreprise;Non;F;GUILLARD;Alix;26/05/1972;Non +ZZ;Français établis hors de France;07;7ème circonscription;2;8;M;PETIT;Frédéric;10/02/1961;ENS;Ingénieur et cadre technique d'entreprise;Oui;F;STAUDENMAYER;Claire;12/08/1969;Non +ZZ;Français établis hors de France;07;7ème circonscription;3;79;F;DUMAS;Mathilde;12/04/1999;RN;Profession intermédiaire administrative et commerciale des entreprises;Non;F;MAUPETIT;Jeanne;20/11/2002;Non +ZZ;Français établis hors de France;07;7ème circonscription;4;126;M;DESWEL;Philippe;16/01/1988;LR;Cadre de la fonction publique;Non;F;MIER-GARRIGOU;Dominique;06/11/1949;Non +ZZ;Français établis hors de France;07;7ème circonscription;5;78;F;LOOBUYCK;Sophie;06/10/1972;REC;Chef d'entreprise de 10 salariés ou plus;Non;M;FOURNIER;Arnaud;09/03/1995;Non +ZZ;Français établis hors de France;07;7ème circonscription;6;120;F;CHARTRAIN;Valérie;25/02/1978;DIV;Ingénieur et cadre technique d'entreprise;Non;M;ROMARY;Laurent;04/04/1964;Non +ZZ;Français établis hors de France;07;7ème circonscription;7;42;F;CHEDIAC;Sophie;28/06/1982;DVG;Professeur des écoles, instituteur et assimilé;Non;M;JADAS;Joël;11/09/1965;Non +ZZ;Français établis hors de France;07;7ème circonscription;8;49;M;SEGAL;Jérôme;25/12/1970;ECO;Professeur, profession scientifique;Non;F;HUROT;Laura;17/12/1987;Non +ZZ;Français établis hors de France;07;7ème circonscription;9;145;M;GEITER;Bernard;09/02/1960;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;RUPP;Julia;15/01/1992;Non +ZZ;Français établis hors de France;07;7ème circonscription;10;119;M;PATTON;Guy;08/04/1966;REG;Cadre de la fonction publique;Non;M;LE LANN;Olivier;20/07/1970;Non +ZZ;Français établis hors de France;07;7ème circonscription;11;80;F;BOTEVA-MALO;Tatiana;10/06/1950;ECO;Profession de l'information, des arts et des spectacles;Non;M;TANASIJEVIC-RABOLT;Stanislas;12/02/1991;Non +ZZ;Français établis hors de France;07;7ème circonscription;12;52;F;RHARMAOUI-CLAQUIN;Asma;15/02/1997;NUPES;Profession intermédiaire administrative et commerciale des entreprises;Non;F;OLLIVIER;Mathilde;09/06/1994;Non +ZZ;Français établis hors de France;07;7ème circonscription;13;93;M;FONCK;Lucas;18/05/2000;DVD;Elève, étudiant;Non;F;ENCARNACAO;Lucie;12/10/2000;Non +ZZ;Français établis hors de France;07;7ème circonscription;14;75;M;LA ROQUE;Alexandre;09/01/1986;DIV;Artisan;Non;F;SLOZINSKI;Oriane;06/01/1985;Non +ZZ;Français établis hors de France;07;7ème circonscription;15;115;M;DENEUVE;Thierry;06/11/1961;ECO;Profession libérale;Non;F;QUEROMAIN;Aurore;15/12/1999;Non +ZZ;Français établis hors de France;07;7ème circonscription;16;47;M;LE MOIGNE;Vassili;15/11/1966;DVD;Cadre administratif et commercial d'entreprise;Non;F;ZIMMERMANN-GANDRÉ;Caroline;08/03/1982;Non +ZZ;Français établis hors de France;08;8ème circonscription;1;121;F;HETZ;Léa Agathe;19/05/1999;DIV;Elève, étudiant;Non;M;GIBERT;Thierry;09/07/1963;Non +ZZ;Français établis hors de France;08;8ème circonscription;2;143;M;SIKSIK;Serge;04/10/1957;REC;Cadre administratif et commercial d'entreprise;Non;M;HALFON;Elie;14/09/1974;Non +ZZ;Français établis hors de France;08;8ème circonscription;3;137;M;EZABADI;Milad Nathanaël;21/03/1983;DIV;Profession libérale;Non;F;BAROUCH-NOVELLI;Annie;21/12/1946;Non +ZZ;Français établis hors de France;08;8ème circonscription;4;84;F;COLLET;Florence;09/12/1958;DIV;Personne diverse sans activité professionnelle de 60 ans et plus (sauf retraité);Non;M;BEINERT;Henry;06/02/1954;Non +ZZ;Français établis hors de France;08;8ème circonscription;5;44;F;ABISROR - DE LIEME;Deborah;02/01/1986;ENS;Cadre de la fonction publique;Non;M;AREL;Antoine;30/04/1987;Non +ZZ;Français établis hors de France;08;8ème circonscription;6;83;M;PICOD;Florian;13/11/2002;DVG;Elève, étudiant;Non;F;DEIBER;Lalie;26/06/2001;Non +ZZ;Français établis hors de France;08;8ème circonscription;7;82;F;LEHMANN;Hélène;02/11/1981;DIV;Profession intermédiaire de la santé et du travail social;Non;M;STEINFELD;Jean-Alain;08/05/1950;Non +ZZ;Français établis hors de France;08;8ème circonscription;8;110;M;HABIB;Meyer;28/04/1961;UDI;Chef d'entreprise de 10 salariés ou plus;Oui;M;BEZARDIN;Alexandre;30/12/1972;Non +ZZ;Français établis hors de France;08;8ème circonscription;9;111;F;SERBAT;Margaux;27/12/1998;RDG;Elève, étudiant;Non;F;FLAHAUT-PREVOT;Noëlle;09/02/1975;Non +ZZ;Français établis hors de France;08;8ème circonscription;10;81;M;GARSON;José;05/05/1948;DVC;Professeur, profession scientifique;Non;F;LOIZILLON;Clémentine;04/04/1990;Non +ZZ;Français établis hors de France;08;8ème circonscription;11;92;F;CARBONNE;Marie-Françoise;05/05/1945;RN;Ancien employé;Non;F;LETTERON;Rachel;02/11/1976;Non +ZZ;Français établis hors de France;08;8ème circonscription;12;50;F;TOUITOU;Rachel;01/12/1985;ECO;Cadre administratif et commercial d'entreprise;Non;F;TOUITOU;Dora;09/04/1956;Non +ZZ;Français établis hors de France;08;8ème circonscription;13;35;F;RIVOLET;Isabelle;20/01/1965;NUPES;Ingénieur et cadre technique d'entreprise;Non;F;HUILLE;Séverine;08/07/1998;Non +ZZ;Français établis hors de France;09;9ème circonscription;1;13;M;OULKHOUIR;Mohamed;26/08/1977;DVD;Profession libérale;Non;F;CHAPMAN;Jacqueline;01/05/1949;Non +ZZ;Français établis hors de France;09;9ème circonscription;2;150;F;MORENO;Elisabeth;20/09/1970;ENS;Ancien cadre;Non;M;VILLAUME;Sophie;26/06/1968;Non +ZZ;Français établis hors de France;09;9ème circonscription;3;112;M;BEN CHEÏKH;Karim;19/03/1977;NUPES;Cadre de la fonction publique;Non;F;DIENG;Maïmouna;09/12/1964;Non +ZZ;Français établis hors de France;09;9ème circonscription;4;104;F;BRUNI;Thiaba;06/02/1964;DVG;Professeur, profession scientifique;Non;M;MASSY;Youssef;23/03/1954;Non +ZZ;Français établis hors de France;09;9ème circonscription;5;123;M;ZOUON;Camille;10/04/1977;DIV;Commerçant et assimilé;Non;F;SERGENT;Aline;27/08/1991;Non +ZZ;Français établis hors de France;09;9ème circonscription;6;146;F;SAGNA SOW;Fatou;10/02/1972;DVC;Profession libérale;Non;M;BOUILLIN;Emmanuel;01/11/1969;Non +ZZ;Français établis hors de France;09;9ème circonscription;7;114;M;EL GUERRAB;M'Jid;25/04/1983;DVC;Cadre de la fonction publique;Oui;F;JEMMALI;Aida;21/04/1977;Non +ZZ;Français établis hors de France;09;9ème circonscription;8;91;F;SORDET;Ludivine;02/10/1998;RN;Employé de commerce;Non;M;DANQUOINS;Julien;04/08/2001;Non +ZZ;Français établis hors de France;09;9ème circonscription;9;98;F;AMIOT;Nathalie;18/04/1966;REC;Professeur, profession scientifique;Non;F;GILLET;Diane;31/07/1960;Non +ZZ;Français établis hors de France;09;9ème circonscription;10;128;M;EDDARRAZ;Ahmed;14/10/1985;DVC;Commerçant et assimilé;Non;M;HOURÈS;Daniel;11/10/1948;Non +ZZ;Français établis hors de France;09;9ème circonscription;11;16;M;FONTANIVE;Jean-Claude;20/03/1957;DIV;Profession de l'information, des arts et des spectacles;Non;F;BENKACEM;Linda;08/06/1973;Non +ZZ;Français établis hors de France;09;9ème circonscription;12;2;M;AZOULAY;David;22/03/1946;DVC;Chef d'entreprise de 10 salariés ou plus;Non;M;CHIKAOUI;Mourad;18/08/1972;Non +ZZ;Français établis hors de France;09;9ème circonscription;13;124;M;BENDEDDOUCHE;Nacim;16/03/1972;DVG;Cadre de la fonction publique;Non;F;LANZI ESCALONA;Melina;28/10/1982;Non +ZZ;Français établis hors de France;09;9ème circonscription;14;87;M;BA;Oumar;14/03/1973;DVC;Commerçant et assimilé;Non;F;MANGIN;Isabelle;12/04/1984;Non +ZZ;Français établis hors de France;09;9ème circonscription;15;135;F;HERBAL;Samira;18/09/1968;DVC;Cadre de la fonction publique;Non;M;SASSI;Tarik;04/12/1987;Non +ZZ;Français établis hors de France;09;9ème circonscription;16;32;M;PERIMONY;Sébastien;04/01/1978;DVG;Ancien artisan, commerçant, chef d'entreprise;Non;F;CLERC;Johanna;18/02/1986;Non +ZZ;Français établis hors de France;09;9ème circonscription;17;14;F;M'FADDEL;Naïma;02/08/1960;LR;Cadre de la fonction publique;Non;M;BADREDDINE;Jihad;09/02/1962;Non +ZZ;Français établis hors de France;09;9ème circonscription;18;27;F;KAAOUT;Rachida;24/03/1977;DVC;Profession libérale;Non;M;GUARNIERI;Bruno;11/09/1968;Non +ZZ;Français établis hors de France;09;9ème circonscription;19;147;M;BEN M'BAREK;Hassan;27/05/1965;DIV;Profession libérale;Non;M;KICHOU;Samir;08/05/1972;Non +ZZ;Français établis hors de France;09;9ème circonscription;20;96;F;MARCHES-OUZITANE;Emilie;20/08/1974;RDG;Cadre de la fonction publique;Non;M;HAFSI;Mehdi;03/12/1967;Non +ZZ;Français établis hors de France;09;9ème circonscription;21;33;M;MARTINEZ;Jean-Claude;30/07/1945;DXD;Professeur, profession scientifique;Non;F;DANEN;Marie-Claire;20/12/1951;Non +ZZ;Français établis hors de France;09;9ème circonscription;22;12;M;REDDAD;Mehdi;02/10/1981;DVC;Chef d'entreprise de 10 salariés ou plus;Non;F;PASCAL;Catherine;29/03/1961;Non +ZZ;Français établis hors de France;10;10ème circonscription;1;29;F;PIRILLO;Aurélie;25/06/1989;LR;Cadre de la fonction publique;Non;M;LAMAH;Lucas;15/03/1975;Non +ZZ;Français établis hors de France;10;10ème circonscription;2;144;M;AZAR;Georges;20/03/1978;REC;Profession libérale;Non;M;FERTÉ;Grégoire;20/06/1967;Non +ZZ;Français établis hors de France;10;10ème circonscription;3;134;M;DOUDY;Justin;11/08/1966;DIV;Cadre de la fonction publique;Non;F;AMEGNINOU;Cécile;22/04/1967;Non +ZZ;Français établis hors de France;10;10ème circonscription;4;28;F;LAKRAFI;Amélia;20/03/1978;ENS;Ancien artisan, commerçant, chef d'entreprise;Oui;M;MOUKARZEL;Joseph;18/08/1958;Non +ZZ;Français établis hors de France;10;10ème circonscription;5;18;F;MAARAOUI;Caline;19/05/1975;DIV;Chef d'entreprise de 10 salariés ou plus;Non;M;HAKKI;Mazen;17/05/1952;Non +ZZ;Français établis hors de France;10;10ème circonscription;6;15;M;TAIEB;Alain;20/02/1954;DVC;Chef d'entreprise de 10 salariés ou plus;Non;M;ORENGO DE LAMAZIERE;Fabrice;10/03/1966;Non +ZZ;Français établis hors de France;10;10ème circonscription;7;151;F;DARVISH;Elisabeth;21/07/1979;DVC;Profession libérale;Non;M;MANIANGA;Brice;03/02/1974;Non +ZZ;Français établis hors de France;10;10ème circonscription;8;122;F;DUGUÉ;Caroline;02/02/1988;DVG;Profession intermédiaire de la santé et du travail social;Non;M;FARAVEL;Frédéric;11/02/1974;Non +ZZ;Français établis hors de France;10;10ème circonscription;9;103;F;MOUSSA;Chantal;19/11/1988;NUPES;Professeur, profession scientifique;Non;M;JEUNEUX;Stéphane;24/04/1993;Non +ZZ;Français établis hors de France;10;10ème circonscription;10;30;M;LOOKY;Serilo;07/02/1974;DIV;Cadre administratif et commercial d'entreprise;Non;F;KALONJI;Laetitia;26/01/1984;Non +ZZ;Français établis hors de France;10;10ème circonscription;11;129;F;MALONGA DUCELLIER;Regina;15/09/1975;DIV;Employé administratif d'entreprise;Non;F;AKHTAR;Saba;19/08/1996;Non +ZZ;Français établis hors de France;10;10ème circonscription;12;90;F;RAUMAIN;Deborah;12/10/1979;RN;Employé administratif d'entreprise;Non;M;HUET;Henri;20/04/1951;Non +ZZ;Français établis hors de France;10;10ème circonscription;13;11;M;HOJEIJ;Ali Camille;31/08/1985;DVC;Profession libérale;Non;F;GORAYEB;Sandra;31/08/1972;Non +ZZ;Français établis hors de France;10;10ème circonscription;14;89;F;ZINZINDOHOUE;Viviane;28/08/1963;ECO;Profession intermédiaire administrative de la fonction publique;Non;M;TOURE;Inza;16/10/1952;Non +ZZ;Français établis hors de France;10;10ème circonscription;15;20;F;MOJON-CHEMINADE;Odile;12/07/1958;DVD;Employé administratif d'entreprise;Non;M;LAVERNHE;Christophe;26/01/1957;Non +ZZ;Français établis hors de France;10;10ème circonscription;16;88;F;ASKAR-WABERI;Ubah;19/02/1971;DSV;Technicien;Non;M;LORMEAU;Dominique;03/04/1966;Non +ZZ;Français établis hors de France;11;11ème circonscription;1;9;F;GENETET;Anne;20/04/1963;ENS;Profession libérale;Oui;M;MALLET;Guillaume;17/08/1985;Non +ZZ;Français établis hors de France;11;11ème circonscription;2;57;M;GENTIL;Pascal;15/05/1973;DVC;Profession intermédiaire administrative de la fonction publique;Non;M;SARRAZIN-BOESPFLUG;Thibaud;25/09/1965;Non +ZZ;Français établis hors de France;11;11ème circonscription;3;36;M;GUYON;Marc;21/03/1984;REC;Commerçant et assimilé;Non;F;LARQUEMIN;Anne-France;01/12/1964;Non +ZZ;Français établis hors de France;11;11ème circonscription;4;58;F;TAPAYEVA;Tamila;13/07/1993;DSV;Cadre administratif et commercial d'entreprise;Non;F;EVENO;Dominique;12/04/1952;Non +ZZ;Français établis hors de France;11;11ème circonscription;5;21;F;MARTIN;Catya;28/05/1969;LR;Personne diverse sans activité professionnelle de moins de 60 ans (sauf retraité);Non;M;FERRARI;Franck;03/01/1972;Non +ZZ;Français établis hors de France;11;11ème circonscription;6;54;F;VIDAL;Dominique;05/11/1948;NUPES;Profession de l'information, des arts et des spectacles;Non;M;PAJOT;Franck;30/09/1965;Non +ZZ;Français établis hors de France;11;11ème circonscription;7;59;M;BURLOTTE;Olivier;09/01/1964;RN;Profession libérale;Non;M;D'ORSANNE;Philippe;19/02/1970;Non +ZZ;Français établis hors de France;11;11ème circonscription;8;60;F;VIAL KAYSER;Christine;24/10/1955;ECO;Cadre de la fonction publique;Non;M;CHAZAL;Sylvain;02/06/1955;Non diff --git a/circos b/circos new file mode 100644 index 0000000..af149a8 --- /dev/null +++ b/circos @@ -0,0 +1,577 @@ +001-01 +001-02 +001-03 +001-04 +001-05 +002-01 +002-02 +002-03 +002-04 +002-05 +003-01 +003-02 +003-03 +004-01 +004-02 +005-01 +005-02 +006-01 +006-02 +006-03 +006-04 +006-05 +006-06 +006-07 +006-08 +006-09 +007-01 +007-02 +007-03 +008-01 +008-02 +008-03 +009-01 +009-02 +010-01 +010-02 +010-03 +011-01 +011-02 +011-03 +012-01 +012-02 +012-03 +013-01 +013-02 +013-03 +013-04 +013-05 +013-06 +013-07 +013-08 +013-09 +013-10 +013-11 +013-12 +013-13 +013-14 +013-15 +013-16 +014-01 +014-02 +014-03 +014-04 +014-05 +014-06 +015-01 +015-02 +016-01 +016-02 +016-03 +017-01 +017-02 +017-03 +017-04 +017-05 +018-01 +018-02 +018-03 +019-01 +019-02 +021-01 +021-02 +021-03 +021-04 +021-05 +022-01 +022-02 +022-03 +022-04 +022-05 +023-01 +024-01 +024-02 +024-03 +024-04 +025-01 +025-02 +025-03 +025-04 +025-05 +026-01 +026-02 +026-03 +026-04 +027-01 +027-02 +027-03 +027-04 +027-05 +028-01 +028-02 +028-03 +028-04 +029-01 +029-02 +029-03 +029-04 +029-05 +029-06 +029-07 +029-08 +030-01 +030-02 +030-03 +030-04 +030-05 +030-06 +031-01 +031-02 +031-03 +031-04 +031-05 +031-06 +031-07 +031-08 +031-09 +031-10 +032-01 +032-02 +033-01 +033-02 +033-03 +033-04 +033-05 +033-06 +033-07 +033-08 +033-09 +033-10 +033-11 +033-12 +034-01 +034-02 +034-03 +034-04 +034-05 +034-06 +034-07 +034-08 +034-09 +035-01 +035-02 +035-03 +035-04 +035-05 +035-06 +035-07 +035-08 +036-01 +036-02 +037-01 +037-02 +037-03 +037-04 +037-05 +038-01 +038-02 +038-03 +038-04 +038-05 +038-06 +038-07 +038-08 +038-09 +038-10 +039-01 +039-02 +039-03 +040-01 +040-02 +040-03 +041-01 +041-02 +041-03 +042-01 +042-02 +042-03 +042-04 +042-05 +042-06 +043-01 +043-02 +044-01 +044-02 +044-03 +044-04 +044-05 +044-06 +044-07 +044-08 +044-09 +044-10 +045-01 +045-02 +045-03 +045-04 +045-05 +045-06 +046-01 +046-02 +047-01 +047-02 +047-03 +048-01 +049-01 +049-02 +049-03 +049-04 +049-05 +049-06 +049-07 +050-01 +050-02 +050-03 +050-04 +051-01 +051-02 +051-03 +051-04 +051-05 +052-01 +052-02 +053-01 +053-02 +053-03 +054-01 +054-02 +054-03 +054-04 +054-05 +054-06 +055-01 +055-02 +056-01 +056-02 +056-03 +056-04 +056-05 +056-06 +057-01 +057-02 +057-03 +057-04 +057-05 +057-06 +057-07 +057-08 +057-09 +058-01 +058-02 +059-01 +059-02 +059-03 +059-04 +059-05 +059-06 +059-07 +059-08 +059-09 +059-10 +059-11 +059-12 +059-13 +059-14 +059-15 +059-16 +059-17 +059-18 +059-19 +059-20 +059-21 +060-01 +060-02 +060-03 +060-04 +060-05 +060-06 +060-07 +061-01 +061-02 +061-03 +062-01 +062-02 +062-03 +062-04 +062-05 +062-06 +062-07 +062-08 +062-09 +062-10 +062-11 +062-12 +063-01 +063-02 +063-03 +063-04 +063-05 +064-01 +064-02 +064-03 +064-04 +064-05 +064-06 +065-01 +065-02 +066-01 +066-02 +066-03 +066-04 +067-01 +067-02 +067-03 +067-04 +067-05 +067-06 +067-07 +067-08 +067-09 +068-01 +068-02 +068-03 +068-04 +068-05 +068-06 +069-01 +069-02 +069-03 +069-04 +069-05 +069-06 +069-07 +069-08 +069-09 +069-10 +069-11 +069-12 +069-13 +069-14 +070-01 +070-02 +071-01 +071-02 +071-03 +071-04 +071-05 +072-01 +072-02 +072-03 +072-04 +072-05 +073-01 +073-02 +073-03 +073-04 +074-01 +074-02 +074-03 +074-04 +074-05 +074-06 +075-01 +075-02 +075-03 +075-04 +075-05 +075-06 +075-07 +075-08 +075-09 +075-10 +075-11 +075-12 +075-13 +075-14 +075-15 +075-16 +075-17 +075-18 +076-01 +076-02 +076-03 +076-04 +076-05 +076-06 +076-07 +076-08 +076-09 +076-10 +077-01 +077-02 +077-03 +077-04 +077-05 +077-06 +077-07 +077-08 +077-09 +077-10 +077-11 +078-01 +078-02 +078-03 +078-04 +078-05 +078-06 +078-07 +078-08 +078-09 +078-10 +078-11 +078-12 +079-01 +079-02 +079-03 +080-01 +080-02 +080-03 +080-04 +080-05 +081-01 +081-02 +081-03 +082-01 +082-02 +083-01 +083-02 +083-03 +083-04 +083-05 +083-06 +083-07 +083-08 +084-01 +084-02 +084-03 +084-04 +084-05 +085-01 +085-02 +085-03 +085-04 +085-05 +086-01 +086-02 +086-03 +086-04 +087-01 +087-02 +087-03 +088-01 +088-02 +088-03 +088-04 +089-01 +089-02 +089-03 +090-01 +090-02 +091-01 +091-02 +091-03 +091-04 +091-05 +091-06 +091-07 +091-08 +091-09 +091-10 +092-01 +092-02 +092-03 +092-04 +092-05 +092-06 +092-07 +092-08 +092-09 +092-10 +092-11 +092-12 +092-13 +093-01 +093-02 +093-03 +093-04 +093-05 +093-06 +093-07 +093-08 +093-09 +093-10 +093-11 +093-12 +094-01 +094-02 +094-03 +094-04 +094-05 +094-06 +094-07 +094-08 +094-09 +094-10 +094-11 +095-01 +095-02 +095-03 +095-04 +095-05 +095-06 +095-07 +095-08 +095-09 +095-10 +097-01 +097-02 +097-03 +097-04 +097-05 +097-06 +097-07 +097-08 +097-09 +097-10 +097-11 +201-01 +201-02 +202-01 +202-02 +971-01 +971-02 +971-03 +971-04 +972-01 +972-02 +972-03 +972-04 +973-01 +973-02 +974-01 +974-02 +974-03 +974-04 +974-05 +974-06 +974-07 +975-01 +976-01 +976-02 +977-01 +986-01 +987-01 +987-02 +987-03 +988-01 +988-02 diff --git a/elections-france-presidentielles-2022-1er-tour-par-bureau-de-vote.json b/elections-france-presidentielles-2022-1er-tour-par-bureau-de-vote.json new file mode 100644 index 0000000..4974055 Binary files /dev/null and b/elections-france-presidentielles-2022-1er-tour-par-bureau-de-vote.json differ diff --git a/elections-presidentielles2022-1ertour.geojson b/elections-presidentielles2022-1ertour.geojson new file mode 100644 index 0000000..5f605e6 --- /dev/null +++ b/elections-presidentielles2022-1ertour.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type": "Feature", "geometry": {"coordinates": [[[2.37404377939473, 48.89072647103451], [2.374063560020248, 48.89072626416924], [2.374249304288556, 48.890699938761486], [2.374422411405633, 48.890674845666545], [2.374595518355759, 48.89064975232074], [2.374781262082173, 48.89062342608602], [2.3749543686884103, 48.890598332220335], [2.375140112060849, 48.89057200452851], [2.375313218312398, 48.89054691104213], [2.375498961319855, 48.890520582792405], [2.375672067238393, 48.89049548788684], [2.3758578112339332, 48.89046915998565], [2.3758647979462673, 48.89045415075532], [2.375715783305801, 48.89035145475545], [2.375573213519125, 48.89025510450413], [2.375424200023388, 48.89015240812279], [2.375281629946735, 48.89005605839898], [2.37513261759572, 48.88995336163615], [2.374990048603713, 48.88985701154772], [2.374841037397408, 48.88975431440341], [2.374698469489838, 48.88965796395035], [2.374549459428235, 48.88955526642456], [2.374406892616099, 48.88945891470763], [2.374368838392058, 48.88943409423744], [2.37436862428008, 48.889434094018085], [2.374226058123421, 48.88933774297443], [2.3740991603420323, 48.88925233746824], [2.373956595181731, 48.88915598608783], [2.373829698285157, 48.88907058028195], [2.373702801804956, 48.88898517433492], [2.373560238109546, 48.88888882245918], [2.373557613670016, 48.88887877858053], [2.373636072013949, 48.88876650206111], [2.373703256956428, 48.88866523718256], [2.373781716028272, 48.88855296055299], [2.37384890041199, 48.88845169557308], [2.37385457892358, 48.88844762885028], [2.373977013594169, 48.88840427863483], [2.374197770621882, 48.88832204105479], [2.374320204711364, 48.888278690483475], [2.374323724381571, 48.888264632666164], [2.374204756972491, 48.88818055464701], [2.374090615119031, 48.88809861423701], [2.373971648454831, 48.88801453687282], [2.373857507342918, 48.88793259532894], [2.373738542798086, 48.88784851772756], [2.373624402406089, 48.887766576848335], [2.373622160723759, 48.88776439685179], [2.373594171636118, 48.88771901893717], [2.373554068184883, 48.887664143726084], [2.373556669247537, 48.88765390773985], [2.373691548911587, 48.88756420519626], [2.37382216432264, 48.887476832827126], [2.373957041706997, 48.887387129962875], [2.374087656217707, 48.88729975818927], [2.3742225340497223, 48.88721005501868], [2.37435314768151, 48.887122682042104], [2.3744837608749823, 48.88703530891615], [2.374618635976016, 48.88694560527061], [2.374641748393077, 48.88693356442167], [2.374628428994513, 48.88691084806818], [2.374528405095133, 48.88683174802879], [2.374438292683583, 48.886761074192634], [2.374434854926479, 48.88675912987853], [2.374318967637472, 48.88671497546352], [2.374157330100477, 48.88665078137771], [2.37404144465157, 48.88660662669687], [2.373932382855734, 48.88656331247657], [2.373896161070847, 48.88656843448615], [2.373885336406576, 48.886589602846016], [2.373719671931767, 48.88667843418752], [2.3735565683573983, 48.88676530467649], [2.373390904126324, 48.886854135556064], [2.37322779946408, 48.88694100468401], [2.373062132749528, 48.88702983508738], [2.372899026977655, 48.887116704652875], [2.372733360506937, 48.88720553459423], [2.372570253636152, 48.887292403697984], [2.372404584682033, 48.88738123316316], [2.372241478086945, 48.88746810091303], [2.372237169116421, 48.887472136971766], [2.372172851926235, 48.887593780476294], [2.37210142415102, 48.88772252637996], [2.372037106334453, 48.88784416978384], [2.371965677869302, 48.88797291647646], [2.371901359426345, 48.88809455977972], [2.371829930293041, 48.888223305462745], [2.371765611223583, 48.88834494866532], [2.371694182764018, 48.88847369514442], [2.371629863079009, 48.88859533734708], [2.3715584325766272, 48.888724083708695], [2.371494112254451, 48.88884572670996], [2.371422681083692, 48.888974472061996], [2.371378693272517, 48.88905766144079], [2.371400682899334, 48.889081152983195], [2.371423575458811, 48.88908283348529], [2.371553328225216, 48.88919208890487], [2.37167156758517, 48.88928627315923], [2.371801320015142, 48.88939552828269], [2.371919561649249, 48.88948971228185], [2.37203780234748, 48.88958389614907], [2.372167556287539, 48.889693150846036], [2.372171437045883, 48.88972871601049], [2.372173167792339, 48.88972950030098], [2.372216042825402, 48.88972621773751], [2.372370451777965, 48.88981016682379], [2.372518633805849, 48.88989142557431], [2.37267304372534, 48.88997537515706], [2.372821226695701, 48.89005663352084], [2.372975637603797, 48.89014058180154], [2.373123821516431, 48.89022183977864], [2.373278232027828, 48.890305788548595], [2.373426416882845, 48.890387046139054], [2.373580829746489, 48.89047099361401], [2.373729015543994, 48.89055225081776], [2.373877201803905, 48.890633507832085], [2.374031616114401, 48.89071745560618], [2.37404377939473, 48.89072647103451]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 21, "zemmour_eric": 91.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-55", "circ_bv": "17", "num_bureau": 55, "roussel_fabien": 16.0, "nb_emargement": 1031.0, "nb_procuration": 29.0, "nb_vote_blanc": 11.0, "jadot_yannick": 22.0, "le_pen_marine": 82.0, "nb_exprime": 1017.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1566.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "73", "geo_point_2d": [48.88885874201794, 2.3733233674284206], "melenchon_jean_luc": 528.0, "poutou_philippe": 9.0, "macron_emmanuel": 201.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.288899230640108, 48.875914058553086], [2.288887371375206, 48.875916056590675], [2.288854492628905, 48.8759876979859], [2.288798143123639, 48.876110479483], [2.288743920909376, 48.87622862668373], [2.288687570882792, 48.87635140810193], [2.288633348166885, 48.87646955522678], [2.288576998982249, 48.87659233657425], [2.288522774401418, 48.876710483615085], [2.28846642470774, 48.876833263984366], [2.288412199612961, 48.87695141184857], [2.28835584939795, 48.877074192138984], [2.288301625164892, 48.87719233993539], [2.28824527306515, 48.8773151201388], [2.288191048330419, 48.8774332678593], [2.288134695709325, 48.87755604798385], [2.288080470472916, 48.87767419562845], [2.288092516881814, 48.877685769829725], [2.288275291426709, 48.87769466918939], [2.28845853476728, 48.877703590841485], [2.28864131081284, 48.877712488751], [2.288824554278802, 48.877721409842664], [2.28900733043725, 48.87773030809251], [2.289190574028496, 48.877739228623795], [2.289373350324277, 48.877748125415394], [2.289556594041001, 48.877757045386254], [2.289739370449464, 48.87776594251816], [2.289922614291557, 48.87777486192863], [2.289934072876997, 48.87778747928613], [2.289837662150748, 48.877930724448504], [2.289742816571704, 48.8780716423189], [2.289646404793404, 48.878214887290355], [2.28955155817949, 48.878355804972884], [2.28955661537095, 48.878367004783016], [2.289727598586918, 48.8784399593347], [2.289897036866768, 48.8785122542481], [2.290068021036438, 48.87858520830401], [2.290237460261373, 48.87865750272606], [2.290408445384748, 48.87873045628615], [2.290577885567018, 48.87880274931758], [2.290748873007534, 48.878875702389934], [2.290918314122539, 48.87894799582927], [2.291089301153431, 48.879020948397724], [2.291258743225763, 48.87909324044644], [2.291262262944849, 48.87909541160307], [2.291279352503504, 48.87911050835087], [2.291326432375731, 48.87915209818435], [2.291407101460182, 48.87922335904493], [2.291430454957071, 48.87922484178254], [2.291443864311428, 48.87920837781287], [2.291630395369979, 48.879164476972505], [2.291815833721149, 48.879120791514325], [2.292002364152457, 48.879076890090886], [2.292187801867538, 48.87903320495232], [2.292374333034938, 48.8789893029539], [2.292559770138369, 48.87894561633646], [2.2927462993151773, 48.87890171374694], [2.29293173578252, 48.87885802744915], [2.2931182657076112, 48.878814123385375], [2.293303701551077, 48.878770436507956], [2.293490229473364, 48.87872653275236], [2.293675664705146, 48.878682844396], [2.293862192000063, 48.878638940057435], [2.294047626595763, 48.87859525202074], [2.294054561438459, 48.87858197370508], [2.293999411952966, 48.87852449548658], [2.293951426161731, 48.87847448353327], [2.293935315781029, 48.87845138702009], [2.293927453952225, 48.87845127320085], [2.293817656330307, 48.87837028580039], [2.293672221770796, 48.87826632305858], [2.293562426299089, 48.87818533541848], [2.293416992765409, 48.878081372349186], [2.293285051655746, 48.877987054117526], [2.293139617853906, 48.877883091583755], [2.2930076777609703, 48.877788772130195], [2.292862246429883, 48.87768480924879], [2.29273030734156, 48.87759048947255], [2.292584877117805, 48.87748652623555], [2.292452937670793, 48.87739220612859], [2.2924509474767, 48.8773903633092], [2.292342489647715, 48.87725716308016], [2.292221739894711, 48.877108866578595], [2.292197289032986, 48.87710944148492], [2.292112203784404, 48.8772345501404], [2.292028524748128, 48.877357588664815], [2.291943440052068, 48.87748269718025], [2.291859760218422, 48.877605735559015], [2.291774674711684, 48.87773084392633], [2.291690994080656, 48.87785388215945], [2.291605907763028, 48.87797899037864], [2.291522226334608, 48.878102028466074], [2.291503919579605, 48.878106465385315], [2.291320482971798, 48.87804878147125], [2.291149086422334, 48.87799490801841], [2.290977690239696, 48.877941033418224], [2.290794256160792, 48.87788334869733], [2.290622860712324, 48.877829473583716], [2.290439426055823, 48.877771788305175], [2.290433940540137, 48.87775869107891], [2.290547292185651, 48.877646263685016], [2.2906581770534, 48.877533216302645], [2.290771526360856, 48.87742078866538], [2.290882410261758, 48.87730774105216], [2.290995758606714, 48.87719531228033], [2.291106641528742, 48.877082265335574], [2.29121998889886, 48.87696983632842], [2.291330870866406, 48.876856788253605], [2.291326200471651, 48.87684409968748], [2.291154624269906, 48.87677927292524], [2.290983223417941, 48.87671461692474], [2.290811646718606, 48.87664978875598], [2.290640246718527, 48.876585132256835], [2.290468672235923, 48.876520303596934], [2.2902972730877282, 48.87645564659914], [2.290125699458577, 48.876390817440125], [2.289954299798898, 48.876326159935545], [2.2897827270233, 48.87626133027737], [2.289611329578879, 48.87619667228228], [2.289439757656632, 48.876131842124884], [2.289268359700733, 48.87606718362308], [2.289096788631941, 48.87600235296655], [2.288925392891291, 48.87593769397417], [2.288899230640108, 48.875914058553086]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 149, "zemmour_eric": 153.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "17-65", "circ_bv": "04", "num_bureau": 65, "roussel_fabien": 3.0, "nb_emargement": 1163.0, "nb_procuration": 76.0, "nb_vote_blanc": 4.0, "jadot_yannick": 57.0, "le_pen_marine": 61.0, "nb_exprime": 1150.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1399.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1163, "quartier_bv": "65", "geo_point_2d": [48.87773146588842, 2.290802395214124], "melenchon_jean_luc": 91.0, "poutou_philippe": 3.0, "macron_emmanuel": 599.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.34191282416967, 48.885624695117606], [2.341911654963352, 48.88562527595274], [2.34172437016848, 48.885672907287635], [2.341537129100285, 48.885720288556605], [2.341349843632605, 48.88576791840232], [2.3411626032455333, 48.88581529908896], [2.340975315718578, 48.8858629292365], [2.340788074660492, 48.885910308434134], [2.340600787812893, 48.88595793799921], [2.340413544697507, 48.886005317498814], [2.340226257176931, 48.886052945574704], [2.340039014742791, 48.886100324491984], [2.33985172653796, 48.886147951977925], [2.339664482057806, 48.88619533029793], [2.339477193157319, 48.88624295809314], [2.339289949358422, 48.88629033583091], [2.339102658421557, 48.88633796212937], [2.338915413940188, 48.886385339277304], [2.338861363274015, 48.88640992884254], [2.338869997310158, 48.88642805211369], [2.338908487199186, 48.886477107146355], [2.339017822361744, 48.88661446169534], [2.339096143445252, 48.88671427966372], [2.339097818897497, 48.88671593558115], [2.339186074797865, 48.88679578298477], [2.339350941489407, 48.886925034033546], [2.339439198143708, 48.88700488033613], [2.339437758617262, 48.88702977567517], [2.339450412145535, 48.88704045934657], [2.339579782902193, 48.88703719166145], [2.339678281543358, 48.88703274004304], [2.339692840392146, 48.88704136934004], [2.33969998368198, 48.887164824346534], [2.33970584348752, 48.88728238346513], [2.339712986829842, 48.88740583934302], [2.339718845328292, 48.88752339842766], [2.339725990098175, 48.88764685428523], [2.339731848653098, 48.887764413343405], [2.339738992134603, 48.88788786826634], [2.339744852098174, 48.88800542820489], [2.339750712088204, 48.88812298813053], [2.339757855663726, 48.88824644301201], [2.339758094222178, 48.888247849075526], [2.339794055073283, 48.88837091065056], [2.339830233325363, 48.888489100848396], [2.339866194513569, 48.88861216237469], [2.339902373108408, 48.88873035162556], [2.339938553219789, 48.88884854175953], [2.33997451491223, 48.888971603212966], [2.340010693991275, 48.88908979329165], [2.340046656032225, 48.88921285379716], [2.340082835442744, 48.8893310438281], [2.340118797809412, 48.88945410518413], [2.340154977551204, 48.88957229516731], [2.340190940266389, 48.88969535557538], [2.340200001914335, 48.88970349044204], [2.34025041067811, 48.88970155225664], [2.340452064395101, 48.88971127239714], [2.3406627296316342, 48.889718665800984], [2.340864383491766, 48.88972838524695], [2.341075047492345, 48.88973577791783], [2.341276701495708, 48.889745496669306], [2.34148736698778, 48.889752888622176], [2.341699495691032, 48.88975878637531], [2.341910161285522, 48.889766178483534], [2.342122291454426, 48.88977207549513], [2.34233295581033, 48.889779465952664], [2.342545086069889, 48.889785363114456], [2.342755750539555, 48.889792752828114], [2.342761026611462, 48.889792250286476], [2.3427803236732743, 48.889783772145535], [2.342778989412685, 48.889760470505294], [2.3426992584255872, 48.88964890865642], [2.342594756029334, 48.889510541252804], [2.342515027172022, 48.889398980162596], [2.342410525766821, 48.88926061256671], [2.342330796334552, 48.8891490504217], [2.342244039222734, 48.88902348937337], [2.342164310510241, 48.88891192709338], [2.342077552831255, 48.88878636588982], [2.341997826202233, 48.88867480348243], [2.341911069319778, 48.8885492421311], [2.341831343399141, 48.88843768048798], [2.341844270267364, 48.88842486239939], [2.342055453508889, 48.88843090364987], [2.342244230506942, 48.88843637448094], [2.342455413841454, 48.888442415025985], [2.342644190923257, 48.88844788522646], [2.342832966681028, 48.888453355121776], [2.343044150152797, 48.88845939462842], [2.343052623294406, 48.888461659754235], [2.343209945438002, 48.88855393209795], [2.343386354365202, 48.88865689125989], [2.343543677701377, 48.888749162249475], [2.343720089313579, 48.888852120908915], [2.343742066568688, 48.8888482258729], [2.343805503969322, 48.888722479975904], [2.343868470600164, 48.88859781334195], [2.343931907390474, 48.88847206734932], [2.343994873427309, 48.88834739972121], [2.344058309595872, 48.88822165453218], [2.344121275027278, 48.88809698680916], [2.344184710596861, 48.88797124062527], [2.344247675411518, 48.88784657370661], [2.344311109007229, 48.88772082741959], [2.344374074580047, 48.88759616041355], [2.3443925324161112, 48.88759077918417], [2.344580072651079, 48.88764552537722], [2.344760815805338, 48.887697498324606], [2.34494835816422, 48.88775224484225], [2.345129102067798, 48.88780421632937], [2.3451587243353282, 48.887804302793896], [2.3451699434969813, 48.88779739437124], [2.345169918630146, 48.887649937967346], [2.345161589046998, 48.887547989717824], [2.345155630073249, 48.887540461240576], [2.345123656664745, 48.88753529420969], [2.345040211611986, 48.88752990588507], [2.34492612817693, 48.887521419877885], [2.344914019880473, 48.88751239364142], [2.344916000192265, 48.88738175838212], [2.3449179766965242, 48.88725088296619], [2.344919956988444, 48.88712024767574], [2.344921933472832, 48.88698937222861], [2.34492391374488, 48.88685873690699], [2.344925890209399, 48.88672786142863], [2.344927870461474, 48.88659722607588], [2.344929846906121, 48.88646635056628], [2.344920935922425, 48.88645782475204], [2.344722251827542, 48.88640942753239], [2.344526224764498, 48.88636047614966], [2.344327541407893, 48.8863120782708], [2.34413151508226, 48.88626312623751], [2.344122829120724, 48.88625591191456], [2.344099215121273, 48.88613985290603], [2.344074924473412, 48.8860207909143], [2.344051310698676, 48.885904730972214], [2.344027020269919, 48.88578566894532], [2.344023331766989, 48.88578261440389], [2.343972632960235, 48.885791543951036], [2.3437686764409422, 48.8857755855587], [2.3435680836837403, 48.885759890776505], [2.343364127412404, 48.885743931694556], [2.34316353491041, 48.88572823533492], [2.342959578875694, 48.88571227646268], [2.342758986617584, 48.88569657942487], [2.342558394469051, 48.88568088295005], [2.342354438816618, 48.88566492214706], [2.342153846911976, 48.88564922499403], [2.341949891507431, 48.885633263501454], [2.34191282416967, 48.885624695117606]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 87, "zemmour_eric": 117.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-3", "circ_bv": "18", "num_bureau": 3, "roussel_fabien": 26.0, "nb_emargement": 1236.0, "nb_procuration": 85.0, "nb_vote_blanc": 16.0, "jadot_yannick": 105.0, "le_pen_marine": 53.0, "nb_exprime": 1217.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1550.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1236, "quartier_bv": "70", "geo_point_2d": [48.887484596777554, 2.341950673098476], "melenchon_jean_luc": 283.0, "poutou_philippe": 7.0, "macron_emmanuel": 471.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.340847155617261, 48.839015397117414], [2.340815397428186, 48.83902565566242], [2.340630700637929, 48.839064959010386], [2.340441922785326, 48.83910578288406], [2.340257224067118, 48.83914508564507], [2.340068445631799, 48.83918590892643], [2.33988374634815, 48.83922521110792], [2.339694967330021, 48.83926603379698], [2.339510268843243, 48.83930533540653], [2.339321489242412, 48.83934615750326], [2.339136788827694, 48.83938545852582], [2.338948008644166, 48.8394262800302], [2.338763309026334, 48.83946558048081], [2.338574526897702, 48.83950640138534], [2.338566507145921, 48.839518868124905], [2.338654991033766, 48.839639460517084], [2.338741791528154, 48.83975702704918], [2.338830276225851, 48.839877619285964], [2.338917077512227, 48.83999518566578], [2.339005563019786, 48.840115777747194], [2.33909236646049, 48.84023334398229], [2.339180852777923, 48.840353935908325], [2.339267655648306, 48.84047150198363], [2.339356142775622, 48.840592093754296], [2.339442946438023, 48.84070965967731], [2.339531434375231, 48.84083025129261], [2.339618238829658, 48.840947817063366], [2.33970672757677, 48.841068408523256], [2.339793534185591, 48.84118597414927], [2.33979490782738, 48.8411897221885], [2.339799216232984, 48.841322880726274], [2.339802981230803, 48.841456236807176], [2.339807289679062, 48.84158939531292], [2.339811054716791, 48.84172275136176], [2.339815364570082, 48.8418559098429], [2.339819128285347, 48.84198926585211], [2.339823438181303, 48.842122424301145], [2.33982720193647, 48.842255780278265], [2.339831511875093, 48.84238893869521], [2.339835277032555, 48.84252229464776], [2.339839585651454, 48.842655453025124], [2.339843350848828, 48.842788808945556], [2.339847659510385, 48.84292196729084], [2.339851424747672, 48.84305532317918], [2.33985573345179, 48.84318848149232], [2.33985949872909, 48.84332183734854], [2.339863807475869, 48.84345499562959], [2.339867572793083, 48.843588351453704], [2.33988399699267, 48.8436179744602], [2.339932125298104, 48.843606881967354], [2.340087186182096, 48.84357412823523], [2.340278379970484, 48.84353320139993], [2.340484380769017, 48.84348968658149], [2.340675572573209, 48.84344875910081], [2.340881572694977, 48.84340524449443], [2.341072765239905, 48.84336431638335], [2.341263956122136, 48.843323387957746], [2.341469955268475, 48.84327987143399], [2.341496817239573, 48.84327059847222], [2.341493020978678, 48.843246018671366], [2.341427359794597, 48.84311842702923], [2.341362159419675, 48.842996231352814], [2.341361394577124, 48.84299357042301], [2.341355170079265, 48.84288048799362], [2.3413502656004033, 48.84273508700213], [2.3413440411575612, 48.842622004545994], [2.341339138096561, 48.842476603527864], [2.341332912346345, 48.84236352103745], [2.341328009352073, 48.84221811908587], [2.341321785019259, 48.84210503657619], [2.341328321598333, 48.842097025958246], [2.3414954250442053, 48.84202995760677], [2.341656053555192, 48.84196696168144], [2.341823156162331, 48.84189989286434], [2.341983783887705, 48.841836895592316], [2.342150885644758, 48.84176982720894], [2.34231151257316, 48.84170682948951], [2.342472137750793, 48.84164383154336], [2.342639238271792, 48.841576761566934], [2.342799864014924, 48.84151376318092], [2.342966963685851, 48.841446693638204], [2.343127588632011, 48.84138369480477], [2.343294687475545, 48.84131662389721], [2.34333532553803, 48.841300685403574], [2.34334178635821, 48.841295086351465], [2.343317416491042, 48.84126250530721], [2.3432804376543652, 48.84121912202145], [2.343207144664273, 48.841152607351255], [2.343214170763249, 48.841133830322796], [2.343182832867123, 48.841111754238526], [2.343133858342368, 48.84106730764023], [2.343016543291453, 48.8409623640824], [2.342894275519158, 48.84085140252273], [2.342776962787703, 48.840746459616454], [2.342654696031929, 48.840635497790466], [2.342537384280144, 48.84053055372964], [2.342415118529539, 48.840419592536634], [2.34229780638364, 48.840314648213116], [2.342175543023316, 48.84020368586197], [2.342058231834385, 48.840098742182526], [2.341935969490546, 48.83998777956509], [2.341818659281274, 48.83988283473109], [2.341696397953911, 48.83977187184736], [2.341579088701478, 48.83966692765744], [2.34145682839068, 48.83955596450741], [2.341339520117895, 48.839451019163], [2.341217260823452, 48.83934005574664], [2.341099953507678, 48.83923511104633], [2.340977693867376, 48.839124147356195], [2.340860388893542, 48.839019201508854], [2.340847155617261, 48.839015397117414]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 92, "zemmour_eric": 79.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "5-10", "circ_bv": "02", "num_bureau": 10, "roussel_fabien": 23.0, "nb_emargement": 1263.0, "nb_procuration": 75.0, "nb_vote_blanc": 13.0, "jadot_yannick": 109.0, "le_pen_marine": 45.0, "nb_exprime": 1248.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 7, "nb_inscrit": 1545.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1263, "quartier_bv": "19", "geo_point_2d": [48.841060671537896, 2.3408041645098887], "melenchon_jean_luc": 295.0, "poutou_philippe": 10.0, "macron_emmanuel": 518.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.292435597735612, 48.84390662958516], [2.292482649636467, 48.843944693883095], [2.292596386053586, 48.84406610383011], [2.292705666887284, 48.84418362452873], [2.292814948213922, 48.84430114511518], [2.292928686183034, 48.844422554707485], [2.293037968513562, 48.84454007506503], [2.293151707523641, 48.84466148441929], [2.293146615707068, 48.84467411921446], [2.292983912388664, 48.844732381054506], [2.292823274363707, 48.8447900469091], [2.2926605703218232, 48.84484830830338], [2.29249993158178, 48.84490597371782], [2.292337226816623, 48.84496423466631], [2.292176588724046, 48.84502189964865], [2.292013881872961, 48.84508016014322], [2.291853243065201, 48.84513782468541], [2.291690535490738, 48.845196084734226], [2.291529895967999, 48.84525374883624], [2.291522795948731, 48.84526121380013], [2.291514442163659, 48.84537483612474], [2.291508636456742, 48.84547873878891], [2.291502832089341, 48.8455826414512], [2.291494478209222, 48.84569626374168], [2.291508814773688, 48.84570568046585], [2.291667810545203, 48.84570008176039], [2.2919043529515672, 48.84569122207434], [2.292063348636377, 48.84568562284312], [2.292299892272437, 48.845676762383], [2.292458887870737, 48.84567116262609], [2.292473278203299, 48.84567984297131], [2.29247938089863, 48.84580123768287], [2.29248522351648, 48.845921717087194], [2.292491326280269, 48.84604311087254], [2.292497167590271, 48.84616359024205], [2.292503270397996, 48.84628498489974], [2.292509113125308, 48.846405464250594], [2.29251521600139, 48.84652685798202], [2.2925210574208412, 48.846647337298094], [2.292527160340862, 48.84676873190185], [2.292533003177636, 48.84688921119924], [2.292533738625501, 48.84689185068725], [2.292544174544361, 48.846903460243055], [2.292569620588939, 48.846899902629346], [2.292749822619992, 48.846904593384274], [2.292918700100264, 48.84690943278565], [2.293087577624097, 48.84691427104935], [2.293267778388949, 48.84691896101607], [2.293268370829692, 48.84691898520114], [2.293455080564067, 48.84692904746767], [2.293642234492713, 48.846939318918736], [2.293828944359933, 48.84694938150093], [2.294016098435286, 48.84695965236693], [2.294202808459718, 48.84696971346621], [2.294389962681766, 48.84697998374722], [2.294576672839039, 48.84699004516215], [2.294763825845174, 48.84700031485012], [2.294950536159732, 48.84701037478212], [2.295137690675046, 48.84702064389313], [2.295324401122441, 48.847030704140785], [2.295511555784429, 48.847040972666704], [2.2956982663889782, 48.847051031431484], [2.295885421197628, 48.84706129937241], [2.295901088678873, 48.84706871600352], [2.295918794989676, 48.847063809848905], [2.295933167952685, 48.84705982660904], [2.295935408216175, 48.84704479792369], [2.295979141426479, 48.84690667727298], [2.296023438476115, 48.84676866333523], [2.296067172571732, 48.84663054352541], [2.296111469153531, 48.846492529520866], [2.296155201433779, 48.84635440873736], [2.296199498910333, 48.846216394674045], [2.296243230713316, 48.846078274723396], [2.29628752772204, 48.84594026059329], [2.296286084709479, 48.84593400061751], [2.296244720949217, 48.84588527701838], [2.296186291346123, 48.84581687741952], [2.296189615512568, 48.845812490984706], [2.296164816473196, 48.8457889849745], [2.296121727846815, 48.84573854418186], [2.296036568474309, 48.845640305470944], [2.295935051152722, 48.84552146488571], [2.295849892486813, 48.84542322602276], [2.295748377364156, 48.84530438616331], [2.295663218054431, 48.845206146241026], [2.295644685238939, 48.84520278412247], [2.295501476870538, 48.845256223012484], [2.295357772490778, 48.84530994300834], [2.295214563533726, 48.845363381549774], [2.295070858562749, 48.84541710119583], [2.294927649004882, 48.84547054028797], [2.294783943454752, 48.84552425868496], [2.294765447979545, 48.845520952412286], [2.294663612537969, 48.84540530788602], [2.294562774839378, 48.84529108474371], [2.294460940308862, 48.845175439121796], [2.294360103487048, 48.845061216684435], [2.294258269855511, 48.84494557086616], [2.294157433934815, 48.844831347335116], [2.294055601189862, 48.844715702219816], [2.293954766158099, 48.844601478494404], [2.293852934324184, 48.84448583228347], [2.293752100169156, 48.84437160926299], [2.2936502692341882, 48.844255962855684], [2.293549435980257, 48.84414173874155], [2.293447605931833, 48.84402609303719], [2.293346773566803, 48.843911868728725], [2.293245940281232, 48.84379764431551], [2.293144112941059, 48.843681998325174], [2.293113894319446, 48.843639718582914], [2.293099971028516, 48.84364194588588], [2.292993147263772, 48.84368362445207], [2.292840065655854, 48.84374418331831], [2.292666318397216, 48.843811972128364], [2.292513236020345, 48.84387253146875], [2.292445277105986, 48.843899045809735], [2.292435597735612, 48.84390662958516]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 125, "zemmour_eric": 118.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-7", "circ_bv": "12", "num_bureau": 7, "roussel_fabien": 4.0, "nb_emargement": 1238.0, "nb_procuration": 104.0, "nb_vote_blanc": 12.0, "jadot_yannick": 96.0, "le_pen_marine": 66.0, "nb_exprime": 1224.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1603.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1238, "quartier_bv": "59", "geo_point_2d": [48.845768545917565, 2.2939409108431503], "melenchon_jean_luc": 213.0, "poutou_philippe": 5.0, "macron_emmanuel": 552.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389464996236693, 48.87957798815359], [2.38946597519347, 48.87958194749612], [2.389352948601958, 48.879681233429366], [2.389232218694124, 48.87978670600354], [2.389119191212603, 48.87988599169762], [2.388998460356703, 48.87999146401645], [2.388885431985165, 48.880090749471385], [2.388764700181189, 48.88019622153488], [2.388651670919625, 48.880295506750656], [2.388530938167567, 48.88040097855878], [2.388417908015968, 48.88050026353544], [2.388297174315816, 48.880605735088245], [2.388184143274175, 48.88070501982569], [2.388063408625817, 48.880810491123164], [2.387950376694227, 48.88090977562149], [2.387829641097759, 48.88101524666353], [2.387716608276109, 48.88111453092268], [2.387595871731521, 48.88122000170937], [2.387482838009225, 48.881319286628596], [2.387458005816042, 48.88134097907228], [2.387454228794254, 48.88134607332557], [2.387491846471418, 48.88137429693613], [2.387686182820392, 48.881450750017265], [2.387875288997483, 48.88152546731104], [2.388069627837094, 48.88160191976626], [2.388258735113137, 48.88167663644417], [2.388447842921344, 48.88175135371758], [2.388642183454967, 48.881827804328445], [2.38864580031834, 48.88182879586985], [2.388818560854427, 48.8818579941515], [2.388987651717552, 48.88188641711953], [2.389156741391273, 48.88191484074035], [2.38932950249926, 48.881944038282434], [2.389498593910074, 48.88197246142588], [2.389671355400868, 48.882001658473136], [2.389840447185444, 48.882030081132314], [2.390013209058936, 48.88205927768477], [2.390023424735569, 48.88206734093796], [2.390040087106275, 48.88221944805785], [2.390056665658911, 48.88236719389136], [2.390073328233179, 48.8825193000659], [2.390089906964945, 48.88266704675384], [2.390090641418031, 48.88268083087552], [2.390100727872852, 48.882685385185916], [2.390274219110226, 48.88273564097838], [2.39044401718481, 48.882785851632036], [2.390617507735028, 48.88283610601623], [2.390787306468163, 48.88288631617846], [2.390957104175681, 48.8829365251914], [2.391130597076126, 48.88298677973143], [2.391137779375436, 48.88298746826854], [2.391334311245455, 48.88297119600721], [2.391534114733624, 48.88295430332772], [2.391730647728801, 48.882938029522954], [2.391930450961155, 48.882921136181515], [2.392126982333151, 48.882904862618055], [2.392326785309783, 48.88288796861473], [2.392523317806801, 48.88287169350781], [2.392723120517112, 48.882854799741835], [2.392746506736254, 48.88286144297142], [2.392761286252482, 48.88285460211506], [2.3927683647781492, 48.88285132669784], [2.3927702927900922, 48.88283403074352], [2.392751716065427, 48.88271898195089], [2.392734553405352, 48.8826066293011], [2.39271739081933, 48.88249427663743], [2.392698815685685, 48.88237922870728], [2.392681653251706, 48.88226687601523], [2.392663076925171, 48.88215182714957], [2.392660477392298, 48.88214742884549], [2.392598568536259, 48.88209227383027], [2.392533757233501, 48.88203649071194], [2.392531428347822, 48.882028647557355], [2.392571966621384, 48.88193090844956], [2.392607723548037, 48.88184653694098], [2.392616127074165, 48.881840479439596], [2.392748527802937, 48.88180803605023], [2.3928968673829383, 48.8817721938437], [2.39290194243931, 48.881757473313726], [2.392786195743264, 48.88167913859771], [2.392672981877434, 48.88160264764112], [2.392557237233309, 48.88152431269968], [2.39244402402985, 48.88144782241509], [2.392328280074214, 48.88136948724129], [2.392215067543506, 48.881292996729414], [2.392214455003668, 48.88129255474795], [2.392102449413442, 48.88120614796914], [2.391996504996755, 48.88112431795975], [2.3919957747402423, 48.88112379803709], [2.391889447367034, 48.88105377325354], [2.391782700792767, 48.8809834728443], [2.391676372639551, 48.88091344695634], [2.391569626640535, 48.88084314634817], [2.391566287026963, 48.88083955005094], [2.39154104763525, 48.88078807285311], [2.391514225967763, 48.880735129794616], [2.391510540559168, 48.88073137075818], [2.391459785799869, 48.8806988502889], [2.391328216918258, 48.88061875819113], [2.391154542453841, 48.88051482916334], [2.391022974506552, 48.880434736716694], [2.390849301264942, 48.880330807228724], [2.390717734251967, 48.88025071443328], [2.390715892900985, 48.88024936416342], [2.390625419352327, 48.88016974029405], [2.390534914568237, 48.88008814845919], [2.390444442939715, 48.88000852444828], [2.390353938729943, 48.87992693156538], [2.390340126318469, 48.879901870679824], [2.390329916254446, 48.879901163973734], [2.390183332071743, 48.87981033432873], [2.390051436915058, 48.87972411375049], [2.389904853726986, 48.87963328285062], [2.389772959479616, 48.87954706195174], [2.389763195799823, 48.87954445629027], [2.389669626222259, 48.87954552884427], [2.389507515037042, 48.87954682109557], [2.389464996236693, 48.87957798815359]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 47, "zemmour_eric": 70.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-30", "circ_bv": "16", "num_bureau": 30, "roussel_fabien": 29.0, "nb_emargement": 1292.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 130.0, "le_pen_marine": 41.0, "nb_exprime": 1278.0, "nb_vote_nul": 1.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1624.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "75", "geo_point_2d": [48.881398468050115, 2.390365028845136], "melenchon_jean_luc": 496.0, "poutou_philippe": 7.0, "macron_emmanuel": 402.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.284244804005828, 48.87821885252893], [2.284236255641399, 48.87822504284018], [2.284288852936107, 48.87834708210572], [2.284345751593139, 48.87847910004336], [2.284398349400994, 48.87860113923266], [2.284455248613137, 48.8787331570878], [2.284507846934147, 48.87885519620088], [2.284564746701409, 48.87898721397351], [2.284617345535581, 48.87910925301034], [2.284674245857971, 48.87924127070051], [2.284726845205312, 48.87936330966108], [2.284783746082836, 48.87949532726874], [2.284836345943355, 48.87961736615306], [2.284893247376022, 48.87974938367823], [2.284945847749724, 48.87987142248629], [2.285002748374077, 48.88000343992083], [2.285055350624435, 48.88012547866075], [2.2851122517915963, 48.88025749691209], [2.285164853204131, 48.88037953466833], [2.285221756289828, 48.88051155284528], [2.285274358215565, 48.88063359052524], [2.285326960375387, 48.88075562906784], [2.285383864295389, 48.880887646223414], [2.28537944019408, 48.88089703498476], [2.285219577233971, 48.880984256227165], [2.285057412506923, 48.88107273247245], [2.284897547092316, 48.881159954162044], [2.284735381271081, 48.88124842995703], [2.284734358088012, 48.881261670189716], [2.284881829538546, 48.8813604080943], [2.285026243833545, 48.88145709954158], [2.285173715027474, 48.88155583706096], [2.285318130418568, 48.881652527239744], [2.285465604070466, 48.881751265289445], [2.28561001918201, 48.88184795509082], [2.285754436180886, 48.88194464561694], [2.28590191149955, 48.882043382203726], [2.286046328231215, 48.88214007145315], [2.286193804644274, 48.88223880856215], [2.286194018179136, 48.882238948333175], [2.286218496360391, 48.88224850043663], [2.286232934386753, 48.88223874327336], [2.286411415269892, 48.882221495815884], [2.286561300072103, 48.88220701132626], [2.286574164373365, 48.88221049557206], [2.286685932829906, 48.8823082512401], [2.28680037777879, 48.882408348421045], [2.286912147072379, 48.88250610475957], [2.2870265942544012, 48.88260620171444], [2.287047844505031, 48.88260663133736], [2.287189887147883, 48.882497072774214], [2.287327022936341, 48.88239129801344], [2.287469065767967, 48.88228173910576], [2.287606200422353, 48.882175964004475], [2.287743333156254, 48.88207018872783], [2.287885374236241, 48.88196062929428], [2.288022507199504, 48.88185485368531], [2.288164545741453, 48.88174529389103], [2.288163354340594, 48.881732795915696], [2.288024592177176, 48.88164958791774], [2.287887053110432, 48.88156711368952], [2.287748291817734, 48.88148390625807], [2.287610753626016, 48.88140143170005], [2.2874719932285252, 48.88131822303656], [2.287334455911933, 48.881235748148676], [2.287195696397346, 48.881152539152446], [2.287058159955873, 48.88107006393478], [2.286919399948383, 48.88098685549693], [2.286781865745616, 48.88090437995758], [2.286777526384546, 48.880898937394484], [2.286745117477409, 48.880741688443315], [2.286710056962777, 48.88057157212004], [2.286722776799228, 48.880561382859554], [2.286873957105077, 48.88055559600822], [2.287003754983605, 48.88055062682747], [2.28701482737269, 48.880553698357446], [2.287141578541791, 48.88064967506679], [2.287268143964861, 48.88074550842963], [2.287394897431013, 48.880841484862195], [2.287521462422985, 48.880937317932435], [2.287648216822816, 48.8810332940801], [2.287774782746975, 48.881129126865844], [2.287901538080595, 48.88122510272859], [2.28802810630045, 48.8813209352379], [2.288154861204263, 48.88141691080762], [2.288281430356531, 48.88151274303248], [2.288408187557446, 48.88160871832534], [2.288534756278627, 48.88170455025759], [2.288661514413251, 48.88180052526555], [2.288788085430166, 48.88189635692136], [2.288795766259488, 48.88189927772898], [2.288961799817752, 48.881920555664735], [2.2891207456357883, 48.8819409243234], [2.289279690214539, 48.8819612927626], [2.289445725544121, 48.881982569134834], [2.2896046703770763, 48.88200293714188], [2.289770705959933, 48.8820242139619], [2.289782758013473, 48.882021177350346], [2.289786658523797, 48.882007935274], [2.2897814116154462, 48.88187183630951], [2.289776240998311, 48.88173774420082], [2.2897709927932652, 48.88160164429511], [2.289765823581023, 48.881467553060425], [2.289760653044163, 48.88133346090182], [2.289755406284093, 48.88119736095352], [2.2897502358008808, 48.88106326876156], [2.2897449877195, 48.880927169670585], [2.289740111134677, 48.88092050272934], [2.289580114459081, 48.88083214050005], [2.289420846433246, 48.88074418077802], [2.289260849477552, 48.88065581809978], [2.289101582530166, 48.88056785793896], [2.288941588021334, 48.880479494828045], [2.28878232216467, 48.880391533329124], [2.288622328739213, 48.880303169777406], [2.288463063948706, 48.88021520873898], [2.288303070243146, 48.880126844738356], [2.288143806531173, 48.88003888326114], [2.287983815272344, 48.879950518827805], [2.28782455265099, 48.879862556012554], [2.287665290555422, 48.87977459387766], [2.287505300920389, 48.87968622878365], [2.287346039903236, 48.87959826621], [2.287186049988198, 48.87950990066712], [2.287026790061666, 48.87942193675541], [2.286866802593325, 48.87933357077986], [2.286862712826218, 48.87933201574238], [2.286657057542516, 48.879282638978616], [2.286451307492521, 48.87923324060739], [2.286245652976479, 48.87918386403178], [2.286039905082692, 48.8791344640579], [2.285834251346736, 48.879085086771134], [2.285628502869958, 48.8790356860777], [2.285623989744308, 48.87903388564922], [2.285490676622985, 48.87895385105039], [2.285345190328695, 48.87886626741565], [2.285211879428298, 48.87878623250238], [2.285066392707553, 48.878698648507374], [2.284933082664638, 48.87861861327144], [2.284787598244501, 48.87853102893249], [2.284654287707989, 48.87845099246653], [2.284508804212467, 48.87836340867468], [2.284375495896857, 48.87828337189426], [2.284263706334004, 48.87821607236518], [2.284244804005828, 48.87821885252893]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 163, "zemmour_eric": 177.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-60", "circ_bv": "04", "num_bureau": 60, "roussel_fabien": 10.0, "nb_emargement": 1157.0, "nb_procuration": 64.0, "nb_vote_blanc": 12.0, "jadot_yannick": 49.0, "le_pen_marine": 48.0, "nb_exprime": 1145.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1488.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1161, "quartier_bv": "65", "geo_point_2d": [48.88069059130766, 2.2868889417172764], "melenchon_jean_luc": 127.0, "poutou_philippe": 0.0, "macron_emmanuel": 533.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.399132261258475, 48.84809850675559], [2.39907033660971, 48.84810258728481], [2.398884477747603, 48.84811911367468], [2.398692881478394, 48.84813578451597], [2.398507023740844, 48.84815231032584], [2.398315427218461, 48.84816898146151], [2.398129567890562, 48.848185505778346], [2.397937971125389, 48.84820217630907], [2.39775211292207, 48.84821870004594], [2.397560515914117, 48.84823536997171], [2.397491680275567, 48.84824148969468], [2.397477910342506, 48.848252196407294], [2.397512453287455, 48.84828428303277], [2.397504264586692, 48.8483757636334], [2.397487418989958, 48.848541459360845], [2.3974792302153363, 48.84863293903931], [2.397478186219542, 48.84863589895035], [2.39739888465928, 48.84876019312342], [2.3973205045065242, 48.848880076947836], [2.39731916396898, 48.84888169352793], [2.397188044107978, 48.84900715467571], [2.397056879319432, 48.84913397076764], [2.397054069724754, 48.849135942380535], [2.396934962661613, 48.84919756113162], [2.396824470455147, 48.849253416070546], [2.396822048179448, 48.84925441832913], [2.39668579895719, 48.849300009373636], [2.396544217547607, 48.84934568039136], [2.396542697348485, 48.84934609811786], [2.396368179435802, 48.849386027709684], [2.39617753703118, 48.84942880666246], [2.396168374665699, 48.8494382737776], [2.396188515825962, 48.84956306621386], [2.39620850293433, 48.84968528480652], [2.396228645648749, 48.84981007721518], [2.396248631593699, 48.849932294867855], [2.3962687744997933, 48.85005708724208], [2.396288760623175, 48.85017930576019], [2.396308903720743, 48.85030409810001], [2.396328891395684, 48.850426316591154], [2.396348877812089, 48.850548534159394], [2.396369021196448, 48.850673326447655], [2.39638900779119, 48.85079554488134], [2.396409151367133, 48.85092033713515], [2.396418620170814, 48.850927964638764], [2.396624530998103, 48.85097062700018], [2.396834242205251, 48.851012764953765], [2.396842669938567, 48.851025100676594], [2.396809089316728, 48.85107293158521], [2.396756571310889, 48.85114890664537], [2.396749394611617, 48.851150814859935], [2.396741640609383, 48.85116727526888], [2.3967050000811643, 48.85130270553587], [2.396668410917628, 48.85143615476416], [2.396631821577201, 48.85156960306597], [2.396595180480574, 48.851705033250354], [2.396558590753299, 48.851838482396786], [2.3965219479146382, 48.851973912519156], [2.3964853578110192, 48.85210736161091], [2.3964487159556063, 48.85224279168498], [2.396412125486159, 48.85237623982281], [2.396375483251349, 48.8525116698417], [2.396338892395031, 48.85264511882416], [2.396302249780915, 48.85278054878788], [2.396310252833493, 48.85279038309073], [2.396505689773682, 48.85284619516496], [2.396695589884742, 48.852900365563755], [2.39689102765005, 48.85295617700311], [2.397080928562503, 48.85301034678499], [2.397133069726132, 48.85302372292888], [2.397144435693963, 48.8530067644928], [2.397162546575666, 48.852983539191335], [2.397163743050979, 48.8529830757587], [2.397179617425675, 48.852966690435075], [2.397253121724689, 48.85287243201465], [2.3973430098214132, 48.85275659431503], [2.397434624158734, 48.852639111325956], [2.397524510086737, 48.85252327345884], [2.397616124967403, 48.852405790313], [2.397706010089564, 48.85228995228524], [2.39779762415082, 48.85217246897579], [2.397887508466946, 48.85205663078736], [2.397979120346053, 48.85193914730746], [2.398069005219003, 48.85182330896525], [2.398160616278724, 48.851705825321716], [2.398250500345755, 48.85158998681888], [2.398342110586101, 48.85147250301176], [2.398431993847222, 48.85135666434831], [2.398457127861982, 48.85134862640257], [2.398441013192695, 48.851339629216], [2.398448054159088, 48.85131842823405], [2.398483058539179, 48.85121301677599], [2.398523355685647, 48.85109262262901], [2.398565400632765, 48.85096601013196], [2.398605696035162, 48.850845615923674], [2.398647741945641, 48.850719003376426], [2.398688036966901, 48.850598609113675], [2.398728331801868, 48.850478214824385], [2.398770377117946, 48.850351602192205], [2.398810671571785, 48.85023120784845], [2.398852716488512, 48.85010459515924], [2.398893010571398, 48.84998419986174], [2.398935055078405, 48.84985758801478], [2.3990042218457512, 48.849801894119615], [2.398955160100403, 48.84977236744811], [2.398997204295874, 48.84964575465593], [2.399044198025691, 48.84950210237849], [2.399086241786784, 48.84937548952427], [2.399133235037811, 48.84923183627773], [2.399175278364531, 48.849105223361484], [2.399222271116037, 48.84896157094436], [2.399219249039969, 48.84883671026138], [2.399257129851449, 48.848829747015515], [2.399229137846243, 48.84881689230486], [2.399207017066581, 48.84870221441174], [2.399203993669074, 48.84857735459175], [2.39918187304632, 48.84846267666927], [2.399178849723055, 48.848337816821825], [2.399156729257308, 48.84822313887001], [2.399137831431774, 48.84813223801388], [2.399132261258475, 48.84809850675559]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 90, "zemmour_eric": 78.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "11-48", "circ_bv": "06", "num_bureau": 48, "roussel_fabien": 27.0, "nb_emargement": 1443.0, "nb_procuration": 71.0, "nb_vote_blanc": 18.0, "jadot_yannick": 125.0, "le_pen_marine": 59.0, "nb_exprime": 1421.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1753.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1443, "quartier_bv": "44", "geo_point_2d": [48.850318569865706, 2.397651314348346], "melenchon_jean_luc": 388.0, "poutou_philippe": 8.0, "macron_emmanuel": 564.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339549883987007, 48.87790521391717], [2.33955098652372, 48.877928372480866], [2.339576148808422, 48.87803059570955], [2.339609440219594, 48.87815498110864], [2.33961142949991, 48.87815702907568], [2.339665364032371, 48.878156703349234], [2.339694935753785, 48.87815475212567], [2.3397416892358, 48.878149117553356], [2.3397571416444283, 48.878155256199946], [2.339835165309257, 48.87831819897572], [2.339905421141176, 48.87847730275183], [2.339915136636498, 48.87848350147471], [2.340109662964774, 48.87851628893329], [2.340304304496658, 48.8785515184013], [2.340498831335359, 48.87858430432624], [2.340693473384674, 48.87861953315934], [2.340888000711018, 48.878652319349136], [2.341082643277657, 48.87868754754734], [2.3410913926541372, 48.87869241883368], [2.341172585181473, 48.87880724660889], [2.341279635744141, 48.878940189789475], [2.341308475696304, 48.8789491223772], [2.341314816538148, 48.87895307296558], [2.3414804189756753, 48.87900436469967], [2.341676066910175, 48.879063746356564], [2.341870508837314, 48.87912397002922], [2.342066157665792, 48.8791833510421], [2.342260600490547, 48.87924357407468], [2.342456250213102, 48.879302954443624], [2.34246591486023, 48.879303388843894], [2.342683692070856, 48.879259729608954], [2.342912488038361, 48.8792151672711], [2.342954053860956, 48.87920683375037], [2.342964875661939, 48.87920006360409], [2.342956309178697, 48.87917548726273], [2.342888613399519, 48.8790533378235], [2.342816623960917, 48.87892667078904], [2.342748930184757, 48.87880452214996], [2.3426769414298, 48.878677855002934], [2.342609246952661, 48.87855570535057], [2.342537258869996, 48.878429038990205], [2.342545946673507, 48.87841730092631], [2.342762661590561, 48.87837248814867], [2.3429281658723973, 48.87833620379068], [2.342935745605596, 48.87833609340564], [2.343121458163242, 48.87836844987128], [2.343328267229842, 48.878404686383], [2.3435139789125, 48.87843704223018], [2.343720788536001, 48.87847327716232], [2.343906502070422, 48.87850563240607], [2.344113312228049, 48.87854186755715], [2.3442990248875653, 48.878574222182515], [2.34450583560186, 48.87861045575398], [2.344625644843379, 48.878631328733526], [2.344636547200442, 48.87862853213294], [2.3446476460960612, 48.878607516100914], [2.344726666604446, 48.87850209164552], [2.344804011384719, 48.87838959548736], [2.344805021328614, 48.878384317426686], [2.344803161437023, 48.8783776036107], [2.344771491664677, 48.878259340501316], [2.34474248912112, 48.878154617058634], [2.344711628189768, 48.878043179786985], [2.344679957465302, 48.87792491661002], [2.3446490968038542, 48.877813479299036], [2.344617427724367, 48.87769521608835], [2.344608184150194, 48.877688539184454], [2.344574003960231, 48.877691168769175], [2.344384923422543, 48.87771819624521], [2.344190880778624, 48.87774480502906], [2.344001799847402, 48.87777183189862], [2.343807756819249, 48.87779843916095], [2.34361867548317, 48.87782546632339], [2.343424632059469, 48.877852072963414], [2.34341355026675, 48.87785039967671], [2.343243120605266, 48.87776403969194], [2.34306963341958, 48.87767625791517], [2.342899204898303, 48.87758989742715], [2.342725718883681, 48.877502114238865], [2.342555291502408, 48.87741575324755], [2.342381806647505, 48.877327969547004], [2.34236517749661, 48.8773279861163], [2.342191658495501, 48.87741632596095], [2.342031868610411, 48.87750017508534], [2.3420266837948542, 48.87750186251958], [2.341824585450171, 48.877535145728714], [2.341623914347964, 48.87756832582821], [2.341421815487997, 48.87760160835534], [2.341221143884399, 48.87763478687845], [2.341020472013855, 48.87766796596345], [2.3408183723816363, 48.87770124746886], [2.340617699998338, 48.877734425876696], [2.3404155998508562, 48.877767706700205], [2.340214926966409, 48.87780088353163], [2.340012826303675, 48.87783416367316], [2.339812152895104, 48.877867340726695], [2.339610051717123, 48.877900620186246], [2.339549883987007, 48.87790521391717]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 71, "zemmour_eric": 83.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "9-18", "circ_bv": "01", "num_bureau": 18, "roussel_fabien": 19.0, "nb_emargement": 1287.0, "nb_procuration": 75.0, "nb_vote_blanc": 8.0, "jadot_yannick": 126.0, "le_pen_marine": 53.0, "nb_exprime": 1274.0, "nb_vote_nul": 4.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1562.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1286, "quartier_bv": "36", "geo_point_2d": [48.87823186447229, 2.3421711512191954], "melenchon_jean_luc": 326.0, "poutou_philippe": 6.0, "macron_emmanuel": 527.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.275767169851129, 48.86828932154005], [2.275785271064329, 48.86827814333568], [2.27593897107064, 48.86820787895747], [2.276094348167837, 48.8681368762647], [2.276248047340442, 48.86806661148061], [2.276403424958154, 48.86799560838577], [2.276557121921415, 48.86792534408683], [2.276712498696493, 48.86785434058172], [2.276866196201691, 48.86778407498593], [2.277021570770991, 48.86771307106228], [2.277037642896059, 48.867699249811174], [2.27702512767815, 48.86768093540373], [2.276952825468671, 48.86755879054927], [2.276881612801203, 48.867437726941326], [2.276810400452143, 48.867316664177054], [2.2767380992643123, 48.86719451825337], [2.276666887581338, 48.867073455377096], [2.276594587054967, 48.86695131023916], [2.276523376050459, 48.86683024635159], [2.276451076198228, 48.866708101100116], [2.276379865859589, 48.86658703710055], [2.276307566681389, 48.866464891735546], [2.27623544332683, 48.86634149727695], [2.276163144828026, 48.86621935179756], [2.276091022155497, 48.86609595722463], [2.276018724336082, 48.8659738116309], [2.275946602345571, 48.8658504169435], [2.275874305205535, 48.865728271235476], [2.275863681469425, 48.86570780877022], [2.275816492477198, 48.865716518558315], [2.275636329109028, 48.86575895958495], [2.275455061684402, 48.86580225253722], [2.275274899088274, 48.86584469302477], [2.275093631064972, 48.86588798542632], [2.27491346651491, 48.86593042535822], [2.274732197892937, 48.86597371720902], [2.274723236635559, 48.8659737906125], [2.2746310777539582, 48.86595346705657], [2.274542229375072, 48.86592800931322], [2.274532292347116, 48.86592777010895], [2.274353495053857, 48.86596909149991], [2.274173801811214, 48.86601090543102], [2.27399500394827, 48.866052226283365], [2.2738153101311243, 48.86609403967313], [2.273636511698501, 48.86613535998681], [2.273456817306856, 48.866177172835194], [2.273278018317102, 48.86621849171094], [2.273098321987864, 48.866260304009714], [2.272919523779001, 48.86630162325438], [2.272739826875271, 48.86634343501177], [2.272561028096745, 48.866384753717746], [2.272381330618529, 48.86642656493375], [2.272202531270342, 48.866467883101095], [2.272022833217645, 48.86650969377569], [2.271844033312374, 48.866551010505106], [2.27166433467263, 48.86659282153763], [2.271485534197715, 48.8666341377284], [2.271305834996071, 48.866675947320246], [2.271289171062815, 48.86667156854863], [2.271239442444233, 48.8666075620292], [2.271187002860426, 48.86654479896744], [2.271170165351336, 48.86654074828398], [2.271001732863658, 48.86658354876544], [2.270839467768066, 48.86662582448929], [2.270671034733719, 48.8666686245021], [2.270508770467874, 48.86671089978271], [2.27034033688666, 48.86675369932679], [2.270178072087456, 48.866795974155814], [2.270015807012289, 48.866838249662514], [2.269847372627019, 48.8668810476087], [2.269831586159537, 48.86690335233585], [2.2720528284170323, 48.86948752650252], [2.272152250513213, 48.86960289070903], [2.272251673049768, 48.86971825482096], [2.272440299953279, 48.86964554975308], [2.272621731584914, 48.86957631171713], [2.272810358833774, 48.86950360516581], [2.272991789479147, 48.86943436656004], [2.273180415697396, 48.86936165941619], [2.273361845344063, 48.86929242113991], [2.273550469168625, 48.869219713395275], [2.273731897841479, 48.86915047364987], [2.273736403173682, 48.869147658146034], [2.273851674390484, 48.869032274987795], [2.273970467833834, 48.868913464071944], [2.274085738013946, 48.86879808066383], [2.274204530376947, 48.86867927038977], [2.274220814711237, 48.868675831096766], [2.274424404998563, 48.868727616068846], [2.274630025929808, 48.868777320211215], [2.274833617020681, 48.868829104482565], [2.275039240106052, 48.868878807925626], [2.275056056335221, 48.868874471493015], [2.275158850676629, 48.8687423969257], [2.275260364544299, 48.86861217345849], [2.275363157850106, 48.868480098684365], [2.275464670695988, 48.868349875012974], [2.275472439840227, 48.86834546576755], [2.275589029542486, 48.868317003780454], [2.27573970782821, 48.868283492163584], [2.275767169851129, 48.86828932154005]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 172, "zemmour_eric": 274.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-55", "circ_bv": "04", "num_bureau": 55, "roussel_fabien": 5.0, "nb_emargement": 1325.0, "nb_procuration": 77.0, "nb_vote_blanc": 11.0, "jadot_yannick": 48.0, "le_pen_marine": 74.0, "nb_exprime": 1307.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1658.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1325, "quartier_bv": "63", "geo_point_2d": [48.8675533214795, 2.273555798748213], "melenchon_jean_luc": 85.0, "poutou_philippe": 4.0, "macron_emmanuel": 610.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.365199393664297, 48.868074698922484], [2.3651830369656652, 48.86806904884861], [2.365112529183571, 48.868040878042436], [2.364957688299784, 48.867973329110725], [2.364775105271561, 48.8679003769922], [2.364673066861675, 48.86785586212979], [2.36465411627564, 48.867851424914015], [2.364619161741188, 48.86789502197108], [2.364477500791768, 48.867971679729635], [2.364336495789004, 48.86804783717028], [2.364194834008158, 48.8681244945837], [2.36405382818938, 48.868200650781574], [2.363912165577004, 48.86827730784983], [2.363771157557286, 48.86835346459621], [2.363629494113373, 48.8684301213193], [2.363488486629825, 48.8685062777294], [2.363346822354372, 48.86858293410738], [2.363205814054916, 48.86865908927464], [2.363204619599836, 48.86865966749097], [2.363095389829871, 48.86870669828003], [2.362979373859964, 48.868755938503845], [2.362971932220723, 48.86876516390147], [2.362984937122458, 48.86877757746109], [2.363037489967055, 48.86890146965964], [2.363088842567252, 48.86902364578765], [2.36314139590722, 48.869147537913015], [2.363192748982807, 48.86926971486854], [2.363245304181354, 48.86939360692794], [2.363296657743133, 48.86951578381169], [2.363348011545909, 48.86963796065987], [2.36340056613304, 48.86976185170332], [2.363451920422014, 48.86988402847974], [2.363504475493552, 48.87000792034927], [2.363495610355337, 48.870038132374475], [2.363506377564521, 48.87005196570926], [2.36359921882806, 48.870153696181035], [2.363684214078812, 48.87023773623013], [2.363777056020761, 48.87033946654685], [2.363862051872531, 48.87042350555624], [2.363863473400778, 48.870425658034335], [2.36391512092969, 48.870544058865036], [2.363969248889485, 48.87066566819014], [2.36402089688592, 48.87078406984878], [2.364075025342064, 48.87090567909962], [2.364126673816911, 48.8710240806869], [2.364180802769309, 48.871145689863525], [2.364232451722572, 48.87126409137943], [2.364286581171434, 48.871385700481774], [2.364338230603122, 48.87150410192633], [2.36439236054825, 48.87162571095443], [2.364408195327043, 48.87163198517982], [2.364591831321794, 48.87161138052738], [2.364827985211872, 48.87157924688263], [2.36483566343996, 48.871576228079256], [2.364851827090437, 48.87156347310318], [2.364983720107476, 48.87146004125444], [2.365105428582968, 48.87136399545668], [2.365237321954597, 48.871260563317065], [2.365375192901915, 48.871151761293305], [2.365507085189538, 48.87104832973587], [2.365644955011646, 48.87093952738047], [2.365673260120019, 48.87093022084367], [2.365668303090164, 48.87090279803141], [2.365760479288932, 48.87078429682623], [2.365850441447996, 48.87066710853522], [2.365942618178475, 48.870548607171735], [2.366032579520831, 48.870431418718866], [2.36612475541989, 48.87031291718987], [2.366214714582226, 48.87019572856783], [2.366306889638941, 48.87007722777254], [2.36639684935865, 48.86996003809661], [2.366489023583972, 48.86984153713585], [2.3665789811236912, 48.86972434729077], [2.366671154517631, 48.8696058461645], [2.366761112592857, 48.86948865706405], [2.366853285166356, 48.86937015487298], [2.366943241061626, 48.86925296560344], [2.367035412803763, 48.86913446324683], [2.367125369245482, 48.86901727382267], [2.367217540156263, 48.86889877130055], [2.367307495781142, 48.868781581714565], [2.367326129974688, 48.86875296339196], [2.367307074302928, 48.868744899009435], [2.367236007289261, 48.868722869018015], [2.367026164576518, 48.86866696358502], [2.36685282538973, 48.868613229431], [2.366852074155109, 48.86861301231351], [2.36666726503935, 48.86855501459489], [2.366493926584355, 48.86850128081499], [2.366309116889627, 48.868443283429606], [2.366135779186801, 48.86838954822631], [2.365950971650392, 48.868331550289284], [2.365777634677853, 48.86827781546119], [2.365604298073769, 48.86822407948018], [2.365419490353062, 48.86816608070665], [2.365418285030078, 48.868165651626114], [2.365318245905936, 48.868125460268224], [2.365206171001911, 48.86808068040846], [2.365199393664297, 48.868074698922484]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 34, "zemmour_eric": 72.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-5", "circ_bv": "05", "num_bureau": 5, "roussel_fabien": 26.0, "nb_emargement": 1077.0, "nb_procuration": 85.0, "nb_vote_blanc": 8.0, "jadot_yannick": 98.0, "le_pen_marine": 26.0, "nb_exprime": 1068.0, "nb_vote_nul": 0.0, "arr_bv": "10", "arthaud_nathalie": 1, "nb_inscrit": 1339.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1076, "quartier_bv": "39", "geo_point_2d": [48.86953863170604, 2.364984229998552], "melenchon_jean_luc": 376.0, "poutou_philippe": 1.0, "macron_emmanuel": 393.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.349476474715252, 48.87962788056458], [2.3495070580941793, 48.87964660357634], [2.34955146749508, 48.87977211830696], [2.349594715771275, 48.87989094105992], [2.349639124228411, 48.880016455722796], [2.34968237427098, 48.88013527842513], [2.349726783147622, 48.88026079302761], [2.349770032229718, 48.8803796156645], [2.349814442889458, 48.88050513021405], [2.349857692374361, 48.88062395279292], [2.349858032106663, 48.88062644848506], [2.349846703625504, 48.880774884629105], [2.349836596552154, 48.88092017612759], [2.349825267946007, 48.881068612230024], [2.349815159392342, 48.88121390368051], [2.349813326842508, 48.88123792386212], [2.349811844478201, 48.88123968389705], [2.349811520125628, 48.881257908883825], [2.349802025310996, 48.88138232386875], [2.3497898848650838, 48.88150555623948], [2.349788427532074, 48.88152901007505], [2.349841225787574, 48.88153608676171], [2.350010941655229, 48.881551811286556], [2.350233141754185, 48.88157028819373], [2.350402857851629, 48.88158601216252], [2.350625059610282, 48.88160448744983], [2.350794774573988, 48.881620210855196], [2.35101697660638, 48.88163868631387], [2.351186693163274, 48.88165440917053], [2.351200143219121, 48.88165027948684], [2.351294871109785, 48.88155059474581], [2.351387481954375, 48.8814521467248], [2.351482209126058, 48.88135246181758], [2.35157481927537, 48.881254012734686], [2.351669545716884, 48.88115432856059], [2.351762153796223, 48.88105587930765], [2.351856879518777, 48.88095619496742], [2.351949488255156, 48.88085774555924], [2.351956531229411, 48.880854007390134], [2.352129121893207, 48.88081377909533], [2.352305037497834, 48.88077348310344], [2.352477626262075, 48.880733254295905], [2.352653541325047, 48.880692957789], [2.352826130927893, 48.880652727584234], [2.353002045449202, 48.880612430562316], [2.353174633141413, 48.88057220074411], [2.353350547121058, 48.880531903207164], [2.353523135640585, 48.88049167289098], [2.353699049078561, 48.88045137483902], [2.353716367428838, 48.880442817659414], [2.353718692882304, 48.88042354134793], [2.353679078447763, 48.88032886888406], [2.353607136822553, 48.88017632522541], [2.353567522790008, 48.880081651804105], [2.353549875089571, 48.88007555616928], [2.353348462443543, 48.88012205836874], [2.353153579133072, 48.88016419597613], [2.35295216579039, 48.88021069750511], [2.352757281827592, 48.88025283446401], [2.3527398224667992, 48.880246508600536], [2.352691149970074, 48.880120506246335], [2.352657852751096, 48.88002754481811], [2.352659040244129, 48.8800210850415], [2.352743811109656, 48.8799164735152], [2.3528417522934912, 48.879798455723474], [2.352926521077449, 48.87969384314001], [2.353024461417407, 48.8795758260742], [2.353109230835463, 48.87947121334757], [2.353207170353895, 48.87935319520916], [2.3531936765117543, 48.879339941686965], [2.35301931757778, 48.879352953575406], [2.352887094187005, 48.87936750780024], [2.352712733720792, 48.879380519234516], [2.352580510174358, 48.87939507312039], [2.352570855107758, 48.87939375104845], [2.352447523155923, 48.879341073799516], [2.352237347846396, 48.879251289541614], [2.352114017932804, 48.87919861194969], [2.352108000306709, 48.87919261590724], [2.3520755222470813, 48.879070438438], [2.352045987794289, 48.87894588015525], [2.352013511408633, 48.87882370174987], [2.351983977244168, 48.87869914342394], [2.351951501157739, 48.87857696497442], [2.351921967270305, 48.87845240750455], [2.351889491483301, 48.87833022901086], [2.351859957895173, 48.87820567059851], [2.351845275858615, 48.87819810325603], [2.351659933690633, 48.8782090050113], [2.351504916494097, 48.87822180736878], [2.351319574159316, 48.878232709496146], [2.351164556819767, 48.87824551051333], [2.351154567406582, 48.878247843202985], [2.35113835922946, 48.87827106698184], [2.3511118006973533, 48.87840832501417], [2.351086112301818, 48.878545773003516], [2.351059553492035, 48.87868303099006], [2.351033864823119, 48.878820478933946], [2.351007305735452, 48.878957736874675], [2.350981616793151, 48.87909518477306], [2.350955057427799, 48.87923244266796], [2.350929369564359, 48.879369891427565], [2.350918823854589, 48.87937756491563], [2.350744160671635, 48.87940343859814], [2.350576687476898, 48.879427759210735], [2.350402022603392, 48.879453631486264], [2.350234549087483, 48.879477951619116], [2.35005988386446, 48.87950382429358], [2.34989241002738, 48.87952814394672], [2.349717745840649, 48.879554015228976], [2.349550270319047, 48.87957833439494], [2.349490050115221, 48.87958901412326], [2.349487564156728, 48.87959612872639], [2.349476474715252, 48.87962788056458]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 57, "zemmour_eric": 71.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-29", "circ_bv": "05", "num_bureau": 29, "roussel_fabien": 13.0, "nb_emargement": 1172.0, "nb_procuration": 82.0, "nb_vote_blanc": 6.0, "jadot_yannick": 122.0, "le_pen_marine": 44.0, "nb_exprime": 1162.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 0, "nb_inscrit": 1435.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1172, "quartier_bv": "37", "geo_point_2d": [48.88011351889655, 2.351315389933202], "melenchon_jean_luc": 341.0, "poutou_philippe": 9.0, "macron_emmanuel": 469.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294693431976497, 48.8875686935937], [2.294693935572909, 48.88755215425532], [2.294552782266816, 48.88746385461138], [2.294408775722911, 48.88737581227343], [2.294267624754224, 48.88728751138797], [2.294123617816374, 48.88719946868489], [2.293982467797051, 48.887111168348326], [2.2938384618413092, 48.88702312438893], [2.293697312783533, 48.88693482370204], [2.293553309148946, 48.886846780292856], [2.293412159701265, 48.886758478348376], [2.293268157036576, 48.88667043458211], [2.293127009901869, 48.886582133194594], [2.292983006855438, 48.886494088163985], [2.29284186068226, 48.88640578642616], [2.292697858605723, 48.88631774103846], [2.292556713394067, 48.88622943895031], [2.292412713638623, 48.88614139411287], [2.292428690864565, 48.88611650776118], [2.292418772564132, 48.88610265967479], [2.292373342711703, 48.886083830755105], [2.292216935409201, 48.88598795019199], [2.292062704751122, 48.88589340340312], [2.29190629859254, 48.88579752241762], [2.291752069062462, 48.885702975212226], [2.291595664047791, 48.88560709380435], [2.291441435645604, 48.88551254618247], [2.291287206439952, 48.88541799834575], [2.2911308045007353, 48.885322116313844], [2.291118212226606, 48.885315600731595], [2.291103418294982, 48.885319651874994], [2.291083369668035, 48.885323931811385], [2.291053439638246, 48.88533032152887], [2.291039946879572, 48.885328346738696], [2.291032564202527, 48.8853238135492], [2.2910110640106662, 48.8853101080954], [2.291008312662198, 48.88531016554851], [2.290990575605337, 48.885322549564215], [2.290811807894543, 48.88537141013899], [2.29063561592697, 48.885419565340804], [2.290456847550078, 48.88546842538128], [2.290280656289522, 48.88551658006462], [2.290101885882923, 48.885565439562725], [2.28992569395362, 48.885613594618704], [2.289746924244538, 48.88566245359065], [2.2895707303074992, 48.88571060721271], [2.289568861681738, 48.88571123285332], [2.289399863725129, 48.88577906946711], [2.289229644596724, 48.88584742110423], [2.28906064576862, 48.88591525633152], [2.288890425749795, 48.885983607477925], [2.2887214260378252, 48.88605144221806], [2.28855120512858, 48.88611979287372], [2.28838220589627, 48.886187627134774], [2.288211984096604, 48.88625597729974], [2.288042982616903, 48.88632381106544], [2.287872759926816, 48.88639216073969], [2.287703757563146, 48.886459994018225], [2.287533533982635, 48.886528343201725], [2.287364530722892, 48.886596176892255], [2.287194306264265, 48.88666452468579], [2.287025302120647, 48.88673235788913], [2.286855076771601, 48.88680070519189], [2.286686073107651, 48.88686853791616], [2.286515845504541, 48.886936884720086], [2.286467382711613, 48.88693925435352], [2.286463951864753, 48.88694788998735], [2.286564373664617, 48.88699712881065], [2.286769615553336, 48.88710021089731], [2.286927710586106, 48.88717772710941], [2.287079017785014, 48.88725222499872], [2.287237113739788, 48.8873297407916], [2.287388421823054, 48.88740423827959], [2.287546518687732, 48.88748175455252], [2.287700969274103, 48.887557581554965], [2.287859067069515, 48.88763509740437], [2.288013518553548, 48.88771092489237], [2.2881716172798, 48.88778844031829], [2.288326069673804, 48.88786426739251], [2.288435677038206, 48.887918007275516], [2.288545284628843, 48.8879717470556], [2.288646346103662, 48.88802126755647], [2.288688119314693, 48.88804174888945], [2.288694138211329, 48.88804469937959], [2.288730079514433, 48.888062321251226], [2.288925764035588, 48.888158237997864], [2.289047089435263, 48.88821772167028], [2.289047107052303, 48.88821772986882], [2.289047487723034, 48.888217916492096], [2.28918148118445, 48.888283813729245], [2.289337681375961, 48.88836039536843], [2.289471675571156, 48.88842629227234], [2.28962787661696, 48.88850287352303], [2.289747234072881, 48.888560775449534], [2.289903437290956, 48.88863735633951], [2.290022795349295, 48.88869525888346], [2.290022859024874, 48.88869528983832], [2.290179061700393, 48.88877186945198], [2.290327576446021, 48.888844800569174], [2.2904837813696313, 48.88892138068226], [2.290632296980737, 48.888994310512274], [2.290788501437304, 48.88907089020936], [2.290937017901527, 48.88914381965155], [2.291093223254853, 48.889220398940644], [2.29124174056006, 48.88929332889419], [2.291390258293633, 48.88936625775948], [2.291546464980722, 48.88944283644181], [2.291712211723041, 48.88946238275647], [2.291900525473276, 48.889479015364515], [2.292034763266532, 48.88949484502331], [2.2922230786009132, 48.889511477131634], [2.292357315200078, 48.88952730731956], [2.292545630754887, 48.88954393892014], [2.29267183806436, 48.889558821085345], [2.292716196418125, 48.889566502583], [2.292730599932035, 48.88954699575388], [2.292838225297245, 48.88943697243362], [2.292948552275107, 48.88932742272009], [2.293056176725948, 48.88921739918193], [2.293166502792244, 48.889107848346455], [2.293274126328829, 48.888997824590355], [2.293384451459151, 48.88888827443142], [2.293492072717591, 48.888778250449384], [2.293602396936363, 48.88866869916848], [2.293710018644264, 48.888558674976615], [2.293820341927089, 48.88844912437225], [2.293927962720562, 48.888339099962494], [2.294038285091846, 48.88822954823616], [2.294145904970998, 48.88811952360851], [2.294256226406364, 48.88800997255874], [2.294363845371311, 48.88789994771323], [2.294474165895147, 48.887790395541515], [2.294581782582025, 48.88768037047009], [2.294692102169975, 48.88757081897492], [2.294693431976497, 48.8875686935937]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 101, "zemmour_eric": 158.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "17-57", "circ_bv": "04", "num_bureau": 57, "roussel_fabien": 18.0, "nb_emargement": 1142.0, "nb_procuration": 60.0, "nb_vote_blanc": 13.0, "jadot_yannick": 45.0, "le_pen_marine": 105.0, "nb_exprime": 1129.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1524.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1143, "quartier_bv": "65", "geo_point_2d": [48.887399824492086, 2.2909525594983107], "melenchon_jean_luc": 298.0, "poutou_philippe": 5.0, "macron_emmanuel": 347.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.318214639764114, 48.829681332008995], [2.318232040213541, 48.82969555230686], [2.318364599041253, 48.829788904053316], [2.31850019760084, 48.8298828728474], [2.318632757385037, 48.82997622428105], [2.318768356926959, 48.830070191856095], [2.318900917667645, 48.83016354297693], [2.319036518168402, 48.83025751113158], [2.319169079865588, 48.8303508619396], [2.319304681336944, 48.83044482977447], [2.319323804361654, 48.83047521068786], [2.319335259905569, 48.83047570488663], [2.319457956730882, 48.83043343815937], [2.319626621126191, 48.83037405508336], [2.3198258944852252, 48.83030540870353], [2.319994558047203, 48.83024602510184], [2.320193830432353, 48.83017737810113], [2.320362493149272, 48.830117994873106], [2.320362821622787, 48.83011787712275], [2.320523351135992, 48.83005882518592], [2.320707094581246, 48.8299910685202], [2.320867621951843, 48.82993201610688], [2.321051364514516, 48.82986425800528], [2.321211892466826, 48.829805205130945], [2.32139563276123, 48.82973744738433], [2.321556159944797, 48.829678393141926], [2.321739900706857, 48.82961063486651], [2.321900425736119, 48.829551581046914], [2.322084165615578, 48.829483821335636], [2.322244691226544, 48.829424767055], [2.32242842883776, 48.82935700769876], [2.322588953668176, 48.82929795294939], [2.322628636875989, 48.82928020998106], [2.322603485906852, 48.82924920004283], [2.322521250789675, 48.82914651923885], [2.322436403648683, 48.82904129362342], [2.322354169188436, 48.82893861268552], [2.322269322734838, 48.82883338603275], [2.322187088919924, 48.82873070586024], [2.322102241779795, 48.828625479061735], [2.322100691083803, 48.828623946727916], [2.322064191843153, 48.828594851856266], [2.322022683231891, 48.82855742283117], [2.322021220228849, 48.82854118708435], [2.322014132198872, 48.82853494030372], [2.321944797397174, 48.82847242097612], [2.321829551847832, 48.82836335933999], [2.3217187107105532, 48.82826340986379], [2.321648080187948, 48.82819656958423], [2.321636419017082, 48.82819066378495], [2.321583981966997, 48.82821877855539], [2.321424737749791, 48.82828008141323], [2.321264784321559, 48.82834184051378], [2.321105539353026, 48.82840314293989], [2.320945583795364, 48.82846490249833], [2.3207863380756, 48.82852620449271], [2.320626383136076, 48.82858796272587], [2.320467136665085, 48.828649264288494], [2.3203071795959103, 48.82871102297954], [2.320300434925571, 48.82871878404201], [2.320300416556596, 48.8287727465379], [2.320301300274527, 48.828825222991654], [2.320294481684766, 48.828833114941965], [2.320139719912103, 48.82889200783693], [2.319986166039099, 48.828950694246366], [2.319831403557473, 48.82900958763548], [2.319677848991081, 48.829068273642896], [2.319523087185893, 48.82912716573532], [2.319369531926116, 48.829185851340746], [2.3193659672066422, 48.829187817776], [2.319273833619195, 48.82926354702373], [2.319176389530785, 48.82933940245744], [2.319172128137654, 48.829341724671316], [2.319015124349807, 48.829396424834776], [2.31885569417679, 48.82945174503245], [2.31869868972559, 48.82950644477511], [2.318539258868582, 48.829561765444886], [2.318382253754029, 48.8296164647668], [2.318222822236538, 48.82967178410996], [2.318214639764114, 48.829681332008995]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 91, "zemmour_eric": 56.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-46", "circ_bv": "10", "num_bureau": 46, "roussel_fabien": 21.0, "nb_emargement": 1098.0, "nb_procuration": 70.0, "nb_vote_blanc": 13.0, "jadot_yannick": 104.0, "le_pen_marine": 46.0, "nb_exprime": 1084.0, "nb_vote_nul": 1.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1376.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1098, "quartier_bv": "56", "geo_point_2d": [48.829373055753216, 2.320532254563498], "melenchon_jean_luc": 312.0, "poutou_philippe": 8.0, "macron_emmanuel": 395.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.318214639764114, 48.829681332008995], [2.318200412477737, 48.82968373767769], [2.318196178702501, 48.82968602583769], [2.318144267003884, 48.82972818673372], [2.318110781492194, 48.82976008915502], [2.31810539669948, 48.82976310014307], [2.317910682216121, 48.82982375265297], [2.317717334380421, 48.82988372102155], [2.31752261898329, 48.829944373792415], [2.317329270265721, 48.83000434062786], [2.317134553966589, 48.83006499276047], [2.316941204343402, 48.83012495986139], [2.316746487154056, 48.83018561045634], [2.316553136637234, 48.83024557692347], [2.316358418534105, 48.830306227779396], [2.316165067123547, 48.83036619361269], [2.316158850498769, 48.830370087440166], [2.3160651625415563, 48.83048559007097], [2.315978551226547, 48.83059734492235], [2.315891939528501, 48.83070910059915], [2.315798249008483, 48.830824602978154], [2.315711636558155, 48.83093635760245], [2.315617946592419, 48.83105185982454], [2.315531333377901, 48.83116361429555], [2.31543764260426, 48.831279116352995], [2.315351028625744, 48.83139087067083], [2.315257335681986, 48.8315063725558], [2.315264438039824, 48.83154447836292], [2.315304285205311, 48.831549631464384], [2.315422982610555, 48.83152075926554], [2.315602919549584, 48.83147779613392], [2.315784329100853, 48.83143366927062], [2.315964265429778, 48.831390706491334], [2.316145674372117, 48.83134657907653], [2.316325611464738, 48.831303615758074], [2.31650701843605, 48.83125948778398], [2.316686954942051, 48.83121652301924], [2.316946921309078, 48.83119034052708], [2.317126855851662, 48.83114737509011], [2.317130803511115, 48.831146558512785], [2.317303796785748, 48.831090501446475], [2.3174837306896, 48.83104753546879], [2.317656723256127, 48.830991477887075], [2.317836656515547, 48.83094851227397], [2.317997668834648, 48.83089806092296], [2.318176721774654, 48.83084236451862], [2.318337733436802, 48.83079191270503], [2.318516785660766, 48.830736214886954], [2.318677796654102, 48.830685763510154], [2.318856849512235, 48.830630065185446], [2.319017859860469, 48.830579612446726], [2.31909733254982, 48.83055489051325], [2.319117348330079, 48.83054893278282], [2.319124534558453, 48.830542544959194], [2.319224112597499, 48.8305115680229], [2.319300690136524, 48.83048518901355], [2.319323804361654, 48.83047521068786], [2.319304681336944, 48.83044482977447], [2.319169079865588, 48.8303508619396], [2.319036518168402, 48.83025751113158], [2.318900917667645, 48.83016354297693], [2.318768356926959, 48.830070191856095], [2.318632757385037, 48.82997622428105], [2.31850019760084, 48.8298828728474], [2.318364599041253, 48.829788904053316], [2.318232040213541, 48.82969555230686], [2.318214639764114, 48.829681332008995]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 86, "zemmour_eric": 77.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-47", "circ_bv": "10", "num_bureau": 47, "roussel_fabien": 17.0, "nb_emargement": 1037.0, "nb_procuration": 38.0, "nb_vote_blanc": 8.0, "jadot_yannick": 61.0, "le_pen_marine": 75.0, "nb_exprime": 1025.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1412.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1037, "quartier_bv": "56", "geo_point_2d": [48.830596591622445, 2.3172910734344057], "melenchon_jean_luc": 307.0, "poutou_philippe": 12.0, "macron_emmanuel": 340.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.298179766356614, 48.84926933284176], [2.298185494241042, 48.84928135494102], [2.298186122836623, 48.849281833491595], [2.298314006612705, 48.84937235252], [2.298442151914972, 48.84946271105011], [2.298570037942325, 48.84955322979811], [2.298698184133317, 48.84964358803929], [2.29882606968671, 48.849734106490985], [2.29895421676633, 48.84982446444327], [2.299082103208339, 48.84991498260657], [2.299210251176795, 48.85000534026995], [2.299210860670121, 48.850017171344945], [2.299090250501389, 48.85011472819623], [2.298974993654344, 48.85020766658706], [2.298854381240462, 48.85030522317589], [2.298739123551527, 48.8503981613236], [2.298623865451375, 48.85049109935252], [2.298503251724134, 48.85058865556251], [2.298489424828243, 48.850591700673554], [2.298299813594136, 48.85056077407377], [2.298110380973939, 48.85053005956901], [2.2979207701890783, 48.85049913236678], [2.297731339379168, 48.850468417268225], [2.297541729043556, 48.85043748946364], [2.297352298668915, 48.85040677466258], [2.297162688794687, 48.850375845356304], [2.296973257504953, 48.85034512994544], [2.296783648079998, 48.85031420003679], [2.29659421860046, 48.85028348403214], [2.296582991701134, 48.85028492445891], [2.296449984039822, 48.85034827769425], [2.2962600339057833, 48.85043876417019], [2.296127025471227, 48.85050211613845], [2.295937072853045, 48.85059260208119], [2.295804063621051, 48.85065595458093], [2.295801944197434, 48.850669287731705], [2.2959458403283692, 48.85077400541055], [2.296085371067844, 48.85087526255989], [2.296229268337207, 48.850979979878545], [2.29636880016679, 48.85108123757787], [2.29651269858653, 48.85118595363696], [2.296652231518483, 48.85128721098703], [2.296656296700315, 48.851289234163154], [2.2968005516158962, 48.85133621118317], [2.296970681070449, 48.85139136235948], [2.297114936564193, 48.851438338096855], [2.297285066684903, 48.851493488821106], [2.29728519828448, 48.85149353276333], [2.297429454344691, 48.85154050811718], [2.297538195137615, 48.85157672169176], [2.297542024528604, 48.85159088212194], [2.29751641410307, 48.85160901666017], [2.297494082811701, 48.85162602196243], [2.297490419498612, 48.851637551840156], [2.297507007004015, 48.851646897354975], [2.29768091419563, 48.851698233004015], [2.297855419149843, 48.85174993524543], [2.2980293283911912, 48.851801270391356], [2.298203834036145, 48.851852972119836], [2.29837774260197, 48.85190430674662], [2.298552248937559, 48.85195600796215], [2.298726159553119, 48.852007342085734], [2.298900666579545, 48.852059042788355], [2.299074576519571, 48.85211037639283], [2.299249084236626, 48.8521620765825], [2.299294755211049, 48.852195212958115], [2.29930857800083, 48.85219017025388], [2.299359428089428, 48.85215760451852], [2.299492139902485, 48.85207304849961], [2.299635947906479, 48.85198094779576], [2.299768658820931, 48.851896391456776], [2.299912465848567, 48.851804290405966], [2.300045175852338, 48.85171973464612], [2.300188983266554, 48.85162763325633], [2.30032169238371, 48.851543076277025], [2.300465497458954, 48.85145097453232], [2.300598205665553, 48.851366418132216], [2.30074200976446, 48.851274316040566], [2.300874717084549, 48.85118975842106], [2.300893304389505, 48.85118954685594], [2.300927222372468, 48.851209710837786], [2.30098952655104, 48.85121927620501], [2.30104233615836, 48.85120567520833], [2.3011433226711873, 48.85113918360266], [2.301257845788216, 48.851065967300684], [2.301269031993292, 48.851049981738754], [2.301187696147569, 48.85102124071395], [2.301084258185647, 48.850952398440796], [2.300966711350419, 48.85087503673964], [2.300962800225834, 48.85086761484796], [2.300986636607495, 48.85073433842592], [2.301009908708096, 48.850600957958875], [2.301033744847301, 48.850467681495516], [2.301057015357714, 48.85033430008008], [2.301080851242409, 48.8502010244747], [2.301104122875858, 48.850067643026115], [2.301127958530169, 48.84993436648011], [2.301151228549124, 48.84980098588175], [2.301147506200139, 48.84979371798272], [2.301026017874902, 48.84971047747793], [2.300912951539869, 48.849632231642026], [2.30079988689508, 48.849553986601], [2.300678398333392, 48.849470744818085], [2.300659299895027, 48.84947040025129], [2.300504931470139, 48.84956521603208], [2.300350506200894, 48.84966026511055], [2.300196136663816, 48.84975507957747], [2.300041708906137, 48.84985012823323], [2.299887338232708, 48.84994494318483], [2.299732910711734, 48.85003999143379], [2.299713934792115, 48.85003974276684], [2.29956366867087, 48.84993961680938], [2.299432723055073, 48.84985246195634], [2.299301777877178, 48.849765306953145], [2.29917559571473, 48.849681109818064], [2.2990446513975398, 48.84959395452007], [2.298918470077536, 48.8495097562016], [2.298792289153178, 48.849425558642956], [2.298661346119085, 48.8493384029054], [2.298535166025065, 48.84925420506267], [2.298404223851663, 48.84916704903035], [2.2983864206175593, 48.84916616308396], [2.298285366742898, 48.849215717090125], [2.298197053682985, 48.84925955385165], [2.298179766356614, 48.84926933284176]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 183, "zemmour_eric": 174.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-21", "circ_bv": "12", "num_bureau": 21, "roussel_fabien": 14.0, "nb_emargement": 1149.0, "nb_procuration": 73.0, "nb_vote_blanc": 12.0, "jadot_yannick": 48.0, "le_pen_marine": 56.0, "nb_exprime": 1140.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1378.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1152, "quartier_bv": "59", "geo_point_2d": [48.850849844593924, 2.298933253467157], "melenchon_jean_luc": 122.0, "poutou_philippe": 2.0, "macron_emmanuel": 514.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.329579553106811, 48.84783478714267], [2.329572147888798, 48.84784529514392], [2.329571574386545, 48.84784602131147], [2.329540763175892, 48.84786077803368], [2.3294599276152548, 48.84797577949417], [2.329379379079683, 48.84809005131914], [2.329298542807274, 48.84820505264692], [2.329217993551976, 48.848319325239025], [2.329137155205141, 48.84843432642644], [2.3290566066157, 48.8485485979947], [2.328975767557071, 48.8486635990494], [2.328895218259366, 48.84877787048548], [2.328814378488932, 48.84889287140748], [2.328733828471372, 48.84900714361068], [2.328721316072465, 48.84901082733517], [2.328717797478565, 48.84902860052249], [2.328717668447902, 48.8490287787711], [2.328633556127365, 48.849141545166404], [2.328548597020211, 48.849255910298744], [2.328464483967213, 48.84936867655219], [2.328379522756147, 48.84948304153348], [2.328295408970677, 48.849595807645095], [2.32821044701815, 48.84971017248298], [2.328126333851285, 48.84982293935964], [2.328041371168988, 48.84993730315484], [2.328043110286374, 48.84994521109158], [2.328063251175534, 48.84995192460028], [2.328275029077097, 48.84996951897378], [2.328486140972512, 48.84998667124568], [2.328697919146473, 48.850004265769435], [2.32890903132184, 48.85002141729466], [2.329120809791362, 48.85003901017004], [2.329331922246667, 48.850056160948576], [2.329543700988578, 48.85007375397418], [2.329754813723814, 48.850090904005995], [2.329765042876471, 48.85009544101329], [2.329832858756594, 48.85017550045394], [2.329899347825847, 48.850255429206086], [2.329911292461654, 48.850260094523136], [2.330094318965781, 48.850260104960675], [2.330274709880188, 48.85026011475518], [2.330457736384457, 48.85026012463684], [2.330638127299099, 48.85026013388345], [2.330821153803399, 48.850260143209184], [2.331001546080861, 48.85026015191549], [2.331184571222694, 48.85026016067771], [2.331364963500173, 48.85026016883611], [2.331545354415013, 48.85026017671491], [2.331728380919713, 48.85026018465289], [2.33177606926944, 48.85024629150517], [2.331798704241312, 48.85022944073344], [2.331790265737519, 48.85010193025052], [2.33178177491489, 48.84997882181966], [2.331773337855684, 48.84985131131446], [2.331764847125414, 48.849728201955394], [2.331756356435159, 48.849605092582046], [2.331747919498757, 48.849477582032264], [2.331739428877792, 48.84935447352934], [2.331730992023386, 48.84922696294961], [2.331722501494877, 48.84910385351847], [2.331714063359701, 48.84897634290125], [2.331705574274674, 48.84885323344883], [2.331697136209962, 48.84872572370101], [2.331688645843099, 48.84860261421204], [2.331680209234568, 48.84847510354264], [2.331683069182043, 48.84847056606018], [2.331665920747565, 48.84844070416022], [2.331657484209317, 48.84831319436998], [2.331649961800756, 48.84818220105373], [2.331641523992402, 48.84805469032585], [2.331634001661273, 48.84792369697823], [2.331625565296354, 48.847796186227214], [2.331618043042753, 48.847665192848176], [2.331609605396104, 48.84753768205886], [2.331602083219832, 48.84740668864841], [2.331593647016804, 48.847279177836], [2.331586124917956, 48.84714818439416], [2.331578011813548, 48.84714125266115], [2.331510619756614, 48.8471614660886], [2.3313755508626812, 48.84716767955463], [2.331111444199978, 48.847178940901244], [2.330976373850549, 48.84718515390889], [2.330969234667188, 48.847186856947445], [2.3308020867077612, 48.84726713170645], [2.330623652546208, 48.84735259445096], [2.330456503534439, 48.847432867815975], [2.330278069601217, 48.84751833003994], [2.330110918151477, 48.84759860380187], [2.329932483084061, 48.84768406549773], [2.329765330570413, 48.84776433876489], [2.329617704197168, 48.847835043190784], [2.329579553106811, 48.84783478714267]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 125, "zemmour_eric": 96.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "6-12", "circ_bv": "11", "num_bureau": 12, "roussel_fabien": 5.0, "nb_emargement": 964.0, "nb_procuration": 78.0, "nb_vote_blanc": 8.0, "jadot_yannick": 43.0, "le_pen_marine": 29.0, "nb_exprime": 954.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 4, "nb_inscrit": 1158.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 964, "quartier_bv": "23", "geo_point_2d": [48.848939312783784, 2.330327190298868], "melenchon_jean_luc": 98.0, "poutou_philippe": 4.0, "macron_emmanuel": 503.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.34071542818666, 48.838659033741195], [2.340742016059331, 48.83872306679281], [2.340792808289795, 48.838857009682606], [2.340838837098504, 48.83899012854664], [2.340847155617261, 48.839015397117414], [2.340860388893542, 48.839019201508854], [2.340977693867376, 48.839124147356195], [2.341099953507678, 48.83923511104633], [2.341217260823452, 48.83934005574664], [2.341339520117895, 48.839451019163], [2.34145682839068, 48.83955596450741], [2.341579088701478, 48.83966692765744], [2.341696397953911, 48.83977187184736], [2.341818659281274, 48.83988283473109], [2.341935969490546, 48.83998777956509], [2.342058231834385, 48.840098742182526], [2.342175543023316, 48.84020368586197], [2.34229780638364, 48.840314648213116], [2.342415118529539, 48.840419592536634], [2.342537384280144, 48.84053055372964], [2.342654696031929, 48.840635497790466], [2.342776962787703, 48.840746459616454], [2.342894275519158, 48.84085140252273], [2.343016543291453, 48.8409623640824], [2.343133858342368, 48.84106730764023], [2.343182832867123, 48.841111754238526], [2.343214170763249, 48.841133830322796], [2.343254349462836, 48.841123412330106], [2.3434395944473803, 48.84105442175868], [2.343620316908978, 48.84098714725355], [2.343805560936017, 48.8409181552077], [2.343986282452763, 48.84085088014153], [2.344167004865424, 48.840783604805736], [2.344352247445507, 48.84071461190076], [2.344532967550863, 48.840647335996415], [2.344718209162111, 48.840578342516295], [2.344898928322614, 48.84051106605089], [2.345084168965227, 48.84044207199566], [2.345133599040931, 48.84042366999316], [2.345142926964185, 48.840423872151106], [2.345171063126731, 48.84041321670817], [2.345302351205213, 48.84036434164266], [2.34545550120867, 48.84029967449225], [2.3456362184512862, 48.84023239689627], [2.345789366290285, 48.84016772930337], [2.345794571313625, 48.84016662277069], [2.345887295029553, 48.840159893542854], [2.34599943816087, 48.8401530797496], [2.346011709752383, 48.84014301819136], [2.345984307217759, 48.83999696707329], [2.3459599458616323, 48.839849726508085], [2.3459325436262493, 48.8397036753398], [2.345908182553531, 48.839556434725395], [2.345880779266258, 48.83941038260014], [2.3458564184655613, 48.83926314283584], [2.345868217741732, 48.83925324688387], [2.346061487713212, 48.83923676687447], [2.346249503992217, 48.839220383751986], [2.346442773721387, 48.83920390312606], [2.34663078977317, 48.839187518504474], [2.346824059259915, 48.83917103726206], [2.347012073699715, 48.839154652932564], [2.347205344306434, 48.83913817108111], [2.347393358507725, 48.83912178615187], [2.347586627509601, 48.839105303676455], [2.347774642846232, 48.83908891725558], [2.347962658053294, 48.83907253143826], [2.348155926692504, 48.839056048042295], [2.348343941661237, 48.839039661625215], [2.348537210057989, 48.83902317761277], [2.348537353265175, 48.83902316580156], [2.348703894251217, 48.839010145111], [2.348891908882095, 48.83899375783199], [2.349058449696833, 48.83898073574816], [2.349246464110154, 48.83896434791147], [2.349258228278805, 48.83895447841632], [2.3492379767429092, 48.8388290758038], [2.349219270768871, 48.8387009106355], [2.349199019436451, 48.838575507088585], [2.349180313649203, 48.83844734188515], [2.349160062509025, 48.83832193830322], [2.349141356908668, 48.83819377306457], [2.349121105949502, 48.838068370346875], [2.349102400547058, 48.83794020417376], [2.34908214978013, 48.83781480142107], [2.349063444564471, 48.83768663521276], [2.349043193989878, 48.83756123242503], [2.349024488960998, 48.837433066181575], [2.349088036291388, 48.83742056094927], [2.349098148951667, 48.83739824782346], [2.349065818333742, 48.8373292028613], [2.349047113332497, 48.83720103659478], [2.34901553002758, 48.83713358665326], [2.349000486381855, 48.8370909161456], [2.348943511196321, 48.83709103144749], [2.348754900562406, 48.837113144522306], [2.348574440915909, 48.83713582062573], [2.348385829963359, 48.83715793311775], [2.348205368638789, 48.8371806086561], [2.348024908519668, 48.83720328392909], [2.347836297101141, 48.83722539465396], [2.347655835292806, 48.83724807026116], [2.347467224917923, 48.837270180410655], [2.347286762805244, 48.83729285456082], [2.347098152100599, 48.83731496502677], [2.347044777897476, 48.83732625483188], [2.34703612819867, 48.83732600885456], [2.34684739144957, 48.83736609658799], [2.346713801265111, 48.83739435365802], [2.346526837883816, 48.83743389925916], [2.346338100341104, 48.83747398708451], [2.346151136389245, 48.837513532095585], [2.34596239826925, 48.83755361932525], [2.345775433746732, 48.837593163746334], [2.3455866950607502, 48.83763324948101], [2.345399729956187, 48.83767279421137], [2.345210989330675, 48.837712879342966], [2.345024023655456, 48.83775242348323], [2.344835283814951, 48.83779250802665], [2.344648317569185, 48.83783205157688], [2.344459577151428, 48.83787213552459], [2.344272610334918, 48.837911678484815], [2.344083869340015, 48.837951761836884], [2.34389690196419, 48.83799130330772], [2.343708160380625, 48.83803138696343], [2.343521192434274, 48.838070927844214], [2.343332448911091, 48.838111010896725], [2.343145480394122, 48.83815055118746], [2.342956737667415, 48.83819063275254], [2.342769768568396, 48.8382301733525], [2.3425810252645682, 48.83827025432188], [2.342394055594936, 48.83830979433178], [2.342205311713789, 48.83834987470547], [2.342108871753802, 48.83837026899938], [2.342066752321616, 48.8383640457558], [2.342038967572819, 48.83837226333562], [2.341948435901142, 48.83839140840111], [2.341752460899657, 48.83843428668198], [2.341565490013112, 48.83847382539101], [2.341369514375371, 48.838516703940634], [2.341182542914173, 48.83855624114888], [2.340986566651542, 48.83859911906794], [2.340799594604138, 48.83863865567471], [2.34072635025688, 48.838654680745734], [2.34071542818666, 48.838659033741195]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 114, "zemmour_eric": 67.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "5-11", "circ_bv": "02", "num_bureau": 11, "roussel_fabien": 28.0, "nb_emargement": 1293.0, "nb_procuration": 83.0, "nb_vote_blanc": 16.0, "jadot_yannick": 138.0, "le_pen_marine": 43.0, "nb_exprime": 1275.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 0, "nb_inscrit": 1578.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "19", "geo_point_2d": [48.83891936426403, 2.3450381645318674], "melenchon_jean_luc": 335.0, "poutou_philippe": 10.0, "macron_emmanuel": 490.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.34650232061075, 48.82492502158622], [2.346509571292598, 48.824929460962004], [2.346676444450502, 48.82494410173682], [2.346834534990304, 48.82495862235844], [2.346855427079506, 48.82496676700565], [2.346872375169988, 48.824955070534585], [2.347041908938343, 48.824891493906414], [2.347212954766019, 48.82482743872747], [2.347382487715316, 48.824763860709915], [2.347553532705847, 48.82469980503653], [2.347723064824717, 48.82463622652899], [2.34789410760493, 48.824572171253074], [2.34806363889348, 48.8245085922555], [2.348234682209724, 48.824444535593315], [2.34840421266805, 48.82438095610567], [2.348575255135912, 48.82431689984842], [2.3485798786357233, 48.824304099011776], [2.348464434116663, 48.82418938853812], [2.348348861775117, 48.824074701525205], [2.348233416910236, 48.823959990797725], [2.34811784559658, 48.823845302638816], [2.348002401747786, 48.8237305916649], [2.347886831439521, 48.82361590415862], [2.347771389969, 48.82350119294566], [2.347655820677354, 48.82338650519272], [2.347540378860995, 48.823271793725944], [2.347424810597217, 48.82315710482701], [2.34730936979691, 48.82304239311378], [2.347193803900459, 48.82292770487495], [2.347078364116391, 48.822812992915296], [2.346962797874543, 48.82269830442237], [2.346968450309061, 48.82268515039509], [2.347158569040392, 48.822627469833776], [2.347319170850379, 48.822578794337545], [2.347336155593756, 48.822581944030205], [2.347452522056302, 48.82269607712419], [2.34756860978201, 48.822810103342526], [2.347684977251349, 48.82292423708649], [2.3478010659935142, 48.823038263055984], [2.347917434480917, 48.82315239655058], [2.348033525601339, 48.82326642227867], [2.348149893744824, 48.82338055551646], [2.34826598588163, 48.823494580995735], [2.348382355054538, 48.82360871308483], [2.3484984481964988, 48.823722739214574], [2.348614818387392, 48.82383687105427], [2.348730912545764, 48.8239508969352], [2.348847283754859, 48.824065028525474], [2.348963378929652, 48.8241790541576], [2.348976488009316, 48.824182950577914], [2.349174065090246, 48.82416549616263], [2.3493755672811503, 48.82414795485163], [2.349573144095862, 48.82413049977649], [2.34977464600603, 48.82411295869177], [2.349972222554518, 48.82409550295673], [2.350173724206476, 48.824077960299725], [2.350371300488626, 48.82406050390478], [2.35057280049783, 48.824042961466745], [2.350770376513837, 48.8240255044119], [2.350971877626608, 48.82400796040897], [2.350985853809747, 48.824020881172316], [2.350903907726669, 48.82412968288267], [2.350823113503719, 48.824237291011784], [2.350741166752104, 48.82434609169034], [2.350660371857922, 48.824453699688796], [2.35057842577739, 48.82456250114156], [2.350497630211971, 48.82467010900935], [2.35041568210087, 48.82477890942293], [2.3503348858531, 48.824886518059316], [2.350344696351001, 48.824899365891255], [2.350533117428178, 48.82492155978173], [2.350697554284602, 48.824940290061335], [2.350861992609908, 48.82495902102122], [2.35105041277213, 48.82498121318876], [2.351214851353269, 48.8249999436628], [2.35136770077283, 48.825017946411535], [2.351385868015089, 48.82501393749564], [2.35139001134237, 48.824999610413215], [2.351535206454272, 48.82489961367887], [2.351675847417539, 48.82480258160101], [2.351821041432536, 48.82470258450208], [2.3519616826832133, 48.82460555297772], [2.352106875601314, 48.824505555514214], [2.352247514437715, 48.82440852273001], [2.352388152739468, 48.8243114906713], [2.352533344020739, 48.824211492663835], [2.352673981270248, 48.82411445935266], [2.3528191714546463, 48.82401446098063], [2.35282027911868, 48.82401377895157], [2.353004262831312, 48.82391261964031], [2.353173344506634, 48.823819493619915], [2.353178242052341, 48.82381228551828], [2.353171107379731, 48.823669788223135], [2.353164006454203, 48.82353401573893], [2.353161558444529, 48.82351966371846], [2.3531461265831233, 48.82351579296472], [2.352954485624241, 48.82351685801822], [2.352766182456218, 48.82351753431157], [2.352574541483178, 48.823518598756195], [2.352386238303943, 48.82351927445132], [2.352194595954857, 48.82352033827968], [2.352006292764318, 48.82352101337647], [2.35200205391402, 48.823520582988735], [2.351834605861504, 48.823484948719226], [2.351655656951042, 48.823446998917056], [2.351488209371591, 48.82341136416019], [2.351309260965706, 48.82337341383714], [2.351141813859323, 48.8233377785929], [2.350962864596233, 48.82329982774163], [2.350795417962924, 48.823264192010015], [2.350647056535054, 48.823232727567174], [2.350631412079577, 48.823223638039195], [2.3506169975671662, 48.82322603125392], [2.350586411606194, 48.82321954432428], [2.350405068086661, 48.82318120098914], [2.350226121259217, 48.823143249037514], [2.350044776908013, 48.823104905145996], [2.349865830604575, 48.82306695265263], [2.349684488145681, 48.823028608219545], [2.349505541004471, 48.82299065517709], [2.34932419908713, 48.82295230929571], [2.349145253820696, 48.82291435661824], [2.348963911071713, 48.822876010180494], [2.34878496634073, 48.82283805606202], [2.348781944585963, 48.82283713303234], [2.348604631861835, 48.82276440045889], [2.3484242697153173, 48.82268994757584], [2.348246959352736, 48.82261721446998], [2.348066598237342, 48.8225427601384], [2.347889287512158, 48.82247002648523], [2.347708927405399, 48.82239557250374], [2.347531617679785, 48.822322838310704], [2.347351258604162, 48.82224838288074], [2.3473313927963693, 48.8222526697205], [2.34726350427539, 48.82236478272529], [2.347202059826801, 48.82246858372345], [2.347195274946643, 48.82247341502305], [2.347025054292104, 48.82252744489934], [2.34686510306212, 48.822578214613095], [2.346857711707674, 48.82257904843846], [2.346732120472211, 48.82256991722784], [2.346605592317961, 48.82256208036838], [2.346585140283984, 48.82256302718433], [2.3465789179901693, 48.8225698041819], [2.346574850177526, 48.822700282752265], [2.346570762100588, 48.82282976828243], [2.346566694235983, 48.822960247721625], [2.346562604756422, 48.82308973321414], [2.346558536851222, 48.823220212622886], [2.346554448692903, 48.82334969809256], [2.34655038074701, 48.82348017747084], [2.346546292548052, 48.82360966291031], [2.346542223210735, 48.82374014135138], [2.346538134971134, 48.82386962676059], [2.34653406694385, 48.824000106077904], [2.346529978663609, 48.82412959145686], [2.346525909233614, 48.824260070736315], [2.346521820912729, 48.82438955608506], [2.346517752804051, 48.824520035341415], [2.346513664442525, 48.82464952065988], [2.346509594942393, 48.82477999897904], [2.346505506540324, 48.824909484267266], [2.34650232061075, 48.82492502158622]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 60, "zemmour_eric": 86.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-48", "circ_bv": "10", "num_bureau": 48, "roussel_fabien": 31.0, "nb_emargement": 1428.0, "nb_procuration": 57.0, "nb_vote_blanc": 15.0, "jadot_yannick": 138.0, "le_pen_marine": 74.0, "nb_exprime": 1405.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1787.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1428, "quartier_bv": "51", "geo_point_2d": [48.82376618413783, 2.3493058256387185], "melenchon_jean_luc": 486.0, "poutou_philippe": 11.0, "macron_emmanuel": 425.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.269516525299605, 48.85461483446516], [2.269509822967783, 48.854631528857524], [2.269463685153028, 48.8546448338282], [2.269345124449903, 48.85468040273535], [2.2692430849002783, 48.854709827260315], [2.269205101826737, 48.8547236666884], [2.269234528473729, 48.85476455058199], [2.269265860815906, 48.854883934223864], [2.269297084534466, 48.85500533984274], [2.269328417164658, 48.85512472344235], [2.269359639797938, 48.855246129909524], [2.269390972728858, 48.855365512567616], [2.269422195652178, 48.85548691899215], [2.269453528858609, 48.855606302507255], [2.269484753447307, 48.85572770799816], [2.269490062316984, 48.85573342256567], [2.269507699201812, 48.85574416426997], [2.269547799314948, 48.85572966135907], [2.269738456696401, 48.85568047439083], [2.26992611414376, 48.8556320503593], [2.270116769448097, 48.855582862775684], [2.270304426192223, 48.85553443814663], [2.27049208258765, 48.85548601322115], [2.27068273682336, 48.855436824729296], [2.27087039251565, 48.855388399206355], [2.27106104602448, 48.85533921100668], [2.271248701026209, 48.85529078398689], [2.271439353820742, 48.855241595180175], [2.271627008119216, 48.855193167562874], [2.271817661562361, 48.855143978157365], [2.272005315145109, 48.85509555084183], [2.272195966523598, 48.855046359921715], [2.272383619403291, 48.85499793200862], [2.272574270054907, 48.854948741380724], [2.272761922243993, 48.8549003119709], [2.272952572181294, 48.854851120735894], [2.273140223667207, 48.85480269072854], [2.273330872890187, 48.854753498886524], [2.273518523660284, 48.85470506918092], [2.273709173544379, 48.85465587584084], [2.273896822248499, 48.85460744552946], [2.274087471405624, 48.85455825248163], [2.274275120781995, 48.85450982068174], [2.274465767861986, 48.85446062701857], [2.274653416535165, 48.85441219462123], [2.274844062900816, 48.85436300035102], [2.275031710858288, 48.85431456825541], [2.2752223565221072, 48.85426537247893], [2.275240943617229, 48.85427398671968], [2.275237312448017, 48.854364554623935], [2.27523401435915, 48.85443137152722], [2.275237268744569, 48.854455096584196], [2.275259236404703, 48.854460634798166], [2.275462077055128, 48.854413822065], [2.275620284716846, 48.8543787389623], [2.275629279443567, 48.854371506795665], [2.275649744079269, 48.85427585327685], [2.275666995907215, 48.85417415188329], [2.275675418230873, 48.854166818216726], [2.275854695683112, 48.854118845896664], [2.276041032704859, 48.854068602865325], [2.276220309469987, 48.85402063089251], [2.276406647150761, 48.853970387295654], [2.276585923241375, 48.85392241477084], [2.276772258855606, 48.85387217059194], [2.276951534271806, 48.85382419751507], [2.27713787054505, 48.85377395277062], [2.277142079425908, 48.853759093774904], [2.2770126659586962, 48.853678325426586], [2.276859970386814, 48.853584448337564], [2.276730557778142, 48.85350368057075], [2.276577863226278, 48.85340980310704], [2.276448451501102, 48.85332903412312], [2.276295756593898, 48.85323515717566], [2.276166347102493, 48.8531543878822], [2.276013653215397, 48.85306051056007], [2.275884243232232, 48.85297974094053], [2.275824904907113, 48.852953749113794], [2.275804436460868, 48.85296570095956], [2.275778904942814, 48.852971775406374], [2.275746350758798, 48.852988040276884], [2.275556777224628, 48.85303332668483], [2.275374699601687, 48.85307729835386], [2.275185125419798, 48.853122584169355], [2.2750030471838683, 48.85316655437003], [2.274813473716927, 48.85321183960132], [2.274631393480329, 48.85325581012397], [2.274441819365682, 48.8533010947628], [2.274259738516114, 48.85334506381706], [2.2740701637412393, 48.85339034876276], [2.273888082266189, 48.853434317247896], [2.273706001846527, 48.85347828546254], [2.273516424742979, 48.85352356951722], [2.273334343697944, 48.85356753716279], [2.273144765959243, 48.85361281972575], [2.273140484561563, 48.85361335401986], [2.273067901327978, 48.8536146074748], [2.272970804135867, 48.85361801700236], [2.272967895511466, 48.85361832939491], [2.272763217389143, 48.853657801461736], [2.272560437650923, 48.85369481687248], [2.272355758931965, 48.85373428734034], [2.272152978606656, 48.85377130205801], [2.271948299266059, 48.85381077272547], [2.271745518353665, 48.85384778675009], [2.271742714109567, 48.853848527844214], [2.271585120083124, 48.85390349535755], [2.271416245499675, 48.85396321814946], [2.271258650781974, 48.85401818522715], [2.271089775452646, 48.85407790755214], [2.270932180031105, 48.854132875093484], [2.270763303955997, 48.8541925969515], [2.270762333744654, 48.854192975065814], [2.270598483035004, 48.85426081707102], [2.27047289283184, 48.854314495153474], [2.270347302369922, 48.85436817310157], [2.270183450569, 48.85443601452772], [2.270181664648657, 48.85443663678505], [2.270014974956321, 48.85448735122543], [2.269866799940894, 48.854530079663924], [2.269700109643084, 48.8545807936614], [2.269551934103743, 48.854623521706365], [2.269516525299605, 48.85461483446516]]], "type": "Polygon"}, "properties": {"lassalle_jean": 2.0, "pecresse_valerie": 152, "zemmour_eric": 161.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "16-19", "circ_bv": "14", "num_bureau": 19, "roussel_fabien": 7.0, "nb_emargement": 1089.0, "nb_procuration": 66.0, "nb_vote_blanc": 10.0, "jadot_yannick": 37.0, "le_pen_marine": 46.0, "nb_exprime": 1072.0, "nb_vote_nul": 8.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1367.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1090, "quartier_bv": "62", "geo_point_2d": [48.85427705135271, 2.2729458021694566], "melenchon_jean_luc": 88.0, "poutou_philippe": 5.0, "macron_emmanuel": 551.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355556543236465, 48.87652927552366], [2.35558242042497, 48.87653432609415], [2.3557057689880683, 48.87651704201471], [2.355844071265173, 48.876506636345546], [2.3558641615109392, 48.876515142436006], [2.355902539074674, 48.876500219425694], [2.356040842642297, 48.87648981263712], [2.356180598050468, 48.87648978822155], [2.356183850373533, 48.876489527818656], [2.35636976235542, 48.8764575345458], [2.356572752014745, 48.8764246012398], [2.356758663537093, 48.87639260646181], [2.3569616526862562, 48.87635967339367], [2.357147563738045, 48.87632767800988], [2.357350553762726, 48.87629474338841], [2.357536462969274, 48.87626274829072], [2.357739452494981, 48.87622981300785], [2.35792536124205, 48.87619781640506], [2.358071731895052, 48.87617406754264], [2.358112489440598, 48.87614971626976], [2.358069049260167, 48.87610686925478], [2.35799703385162, 48.875977441097895], [2.357937213568587, 48.87586469620237], [2.357877392181169, 48.87575195125819], [2.357805379102975, 48.87562252295167], [2.357745558279178, 48.87550977791685], [2.357673545863415, 48.87538034950262], [2.35761372560303, 48.875267604377115], [2.357577075414548, 48.87520173371774], [2.357567060143579, 48.875187663824235], [2.357556640764891, 48.87518225955716], [2.357521277863649, 48.8751187025794], [2.3574569021612612, 48.87500348940053], [2.357384889799431, 48.87487406074591], [2.357320514701, 48.87475884746814], [2.357248503016419, 48.8746294187028], [2.357184127147608, 48.874514206218116], [2.357112117503496, 48.87438477734934], [2.3570477422498293, 48.87426956386649], [2.356975733282738, 48.874140134887], [2.356911358633214, 48.874024921305256], [2.356839350343237, 48.87389549221501], [2.356774976286638, 48.87378027943366], [2.356761691754098, 48.87376469358949], [2.356703479108431, 48.8737831625128], [2.35649089054878, 48.87382670340103], [2.356276889077696, 48.87387113385185], [2.356064299802398, 48.87391467397899], [2.355850297605997, 48.87395910366363], [2.35563770761506, 48.87400264302974], [2.355423704693349, 48.87404707194818], [2.355415492033483, 48.8740517780211], [2.355355873165306, 48.874134229217226], [2.35529555495966, 48.87421809036911], [2.35528774538122, 48.87422272216006], [2.355110244573213, 48.874263750659125], [2.354917854806673, 48.87430822495836], [2.354740352052597, 48.874349252898405], [2.354547961654505, 48.87439372659974], [2.354370458317688, 48.8744347539881], [2.354178067287846, 48.87447922709152], [2.354000563368293, 48.87452025392817], [2.35380817170691, 48.87456472643367], [2.353630667204627, 48.874605752718686], [2.353438274911504, 48.874650224626244], [2.353260769826496, 48.87469125035959], [2.353114695240174, 48.87472501536654], [2.353089850137819, 48.87471489756868], [2.353062818580231, 48.87472735658058], [2.353016498865917, 48.874738062855755], [2.352845530457473, 48.87477844790114], [2.352653136845021, 48.874822919439126], [2.352482167876202, 48.874863303962435], [2.352289773651249, 48.87490777401376], [2.352118804122267, 48.87494815801504], [2.351926407899109, 48.8749926283708], [2.351755437809762, 48.875033011849986], [2.3515630423374683, 48.87507748072646], [2.3513920716767682, 48.87511786458286], [2.351199675580812, 48.87516233287193], [2.351028704370954, 48.87520271530694], [2.351019820738741, 48.87521253106431], [2.35103552714582, 48.875280825463385], [2.351054256094054, 48.87534213311179], [2.351055376122695, 48.87536582589609], [2.351110704904015, 48.875365190517265], [2.351302588888846, 48.87539868753488], [2.351491604526336, 48.87543163269923], [2.35168348898961, 48.87546513000357], [2.351872505120336, 48.87549807366526], [2.352064388709991, 48.87553157034962], [2.352253406674922, 48.87556451431454], [2.352442424890142, 48.87559745708075], [2.352634309212453, 48.87563095284861], [2.35282332789852, 48.875663895910655], [2.353015212721826, 48.875697390166664], [2.353204230526551, 48.87573033261792], [2.353396117191661, 48.875763827168015], [2.353585135489562, 48.8757967681166], [2.353777022644381, 48.87583026205407], [2.353966041413126, 48.8758632032985], [2.354157927694381, 48.875896696616074], [2.354346948319542, 48.875929636365186], [2.354538835090489, 48.87596312907012], [2.354727856197738, 48.875996068215805], [2.354919743458267, 48.87602956030818], [2.355108765036361, 48.87606249974972], [2.355300652786571, 48.876095991229505], [2.355309782390553, 48.87610127812445], [2.355317802379733, 48.8761146980249], [2.35538058306717, 48.87621585335762], [2.355430315405815, 48.87629908389448], [2.355488066605222, 48.87639573518191], [2.355550849325481, 48.876496890406905], [2.355556543236465, 48.87652927552366]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 27, "zemmour_eric": 57.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-33", "circ_bv": "05", "num_bureau": 33, "roussel_fabien": 19.0, "nb_emargement": 1142.0, "nb_procuration": 93.0, "nb_vote_blanc": 11.0, "jadot_yannick": 126.0, "le_pen_marine": 35.0, "nb_exprime": 1128.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 5, "nb_inscrit": 1471.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1142, "quartier_bv": "38", "geo_point_2d": [48.87523787164149, 2.3552522169908636], "melenchon_jean_luc": 414.0, "poutou_philippe": 1.0, "macron_emmanuel": 394.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.371962130797866, 48.82584983966327], [2.371975237703743, 48.825843688424364], [2.372080706885905, 48.82571601218583], [2.372173384856144, 48.825605223694524], [2.37226606244334, 48.82549443422115], [2.372371528844857, 48.825366757679284], [2.3723953586582702, 48.82533827094269], [2.372411682795473, 48.8253269057763], [2.372410785924913, 48.82532129796641], [2.372479632806994, 48.82523899504243], [2.372581459258866, 48.825117717128975], [2.372674135112355, 48.82500692729122], [2.372775962031314, 48.82488564829487], [2.372868637048174, 48.824774859182845], [2.372970463061563, 48.82465357999586], [2.373063137263439, 48.82454278981085], [2.373164960998232, 48.824421511325326], [2.373257634374319, 48.824310720966764], [2.373359458576406, 48.82418944139841], [2.3734521311159043, 48.82407865176551], [2.373553954412251, 48.82395737200651], [2.373646624774877, 48.823846581293544], [2.3736616306034852, 48.823842169307895], [2.3738722765571962, 48.82387447984912], [2.374077152297, 48.82391036810912], [2.37428780015644, 48.82394267702424], [2.374492675088216, 48.82397856456309], [2.374703323480764, 48.824010872744324], [2.374908200328428, 48.82404675957627], [2.37511884788118, 48.8240790679158], [2.37532372529369, 48.824114953134334], [2.375528602977449, 48.824150838900046], [2.375739251345796, 48.82418314524444], [2.375743787790418, 48.824184450535355], [2.375889587923669, 48.82424939725685], [2.376042608755482, 48.824316057006314], [2.376188409628987, 48.82438100335593], [2.376341429877832, 48.824447661808755], [2.376357800778076, 48.82444698091779], [2.376500533923135, 48.82436611232213], [2.376624488239891, 48.82429339113243], [2.3767672219128633, 48.82421252221453], [2.376891175492506, 48.82413980073843], [2.376914452547419, 48.82412118264585], [2.376894236770282, 48.82409780238358], [2.376723425291951, 48.82403844565127], [2.376538990934744, 48.82397702103344], [2.376538729113803, 48.823976932429005], [2.376366286144679, 48.82392012449331], [2.376181852626764, 48.823858699318194], [2.376009411799629, 48.82380189086901], [2.375824979109619, 48.82374046603635], [2.375652539062256, 48.82368365706662], [2.375468107221682, 48.823622230777765], [2.375295666592295, 48.823565421280314], [2.375111236941517, 48.82350399534105], [2.374938797102791, 48.823447184423706], [2.374754368290681, 48.82338575792762], [2.374581929221057, 48.82332894738898], [2.37439749989651, 48.82326751942965], [2.374225062968665, 48.823210708377545], [2.374040634472002, 48.823149280760646], [2.373868198334939, 48.823092468288706], [2.373683770676953, 48.82303104011499], [2.373511333946888, 48.82297422801466], [2.373326908500371, 48.82291279839189], [2.373154472550197, 48.822855985771014], [2.3731359005172292, 48.82286044825301], [2.373062436675104, 48.82297206515766], [2.373005577561436, 48.823058628807125], [2.373010378553474, 48.82306963536391], [2.373143581514039, 48.8231298130463], [2.373276532375999, 48.823188552950526], [2.3734097359475532, 48.82324873033008], [2.373542687412587, 48.823307469932196], [2.373547298818079, 48.82331896293286], [2.373522249268659, 48.82335081081572], [2.3734800191681202, 48.823406646773655], [2.373462230836767, 48.82341082561074], [2.373322306358406, 48.8233691222376], [2.373181636805174, 48.82332630676122], [2.373041714140059, 48.82328460306375], [2.372901045045271, 48.82324178725409], [2.372882894404273, 48.82324630676788], [2.37285489623493, 48.82328795574171], [2.372828742484708, 48.823327773358294], [2.3728107211072382, 48.82333241405533], [2.3727092514000843, 48.82330267458132], [2.37264951428453, 48.82328297605111], [2.37264277920249, 48.82327083961168], [2.372727433195281, 48.82315529745008], [2.372812672164685, 48.82303989589136], [2.372897325395216, 48.8229243544851], [2.372982563611151, 48.82280895278155], [2.372976402890874, 48.82279696326774], [2.372786986316838, 48.8227345550845], [2.372626837671733, 48.822681774184744], [2.372466689340038, 48.822628993967406], [2.372277275348178, 48.82256658497456], [2.37211712773497, 48.82251380338436], [2.371927713218005, 48.8224513938243], [2.371927144651999, 48.8224512172583], [2.371766997736742, 48.82239843609308], [2.371641054017128, 48.822361631998696], [2.371600821128348, 48.82237167167744], [2.37159693909241, 48.82238107135106], [2.3714127038753983, 48.82241584157685], [2.37123423875013, 48.82244941960578], [2.371050001687872, 48.82248418926352], [2.370871536095089, 48.82251776674912], [2.370687298560217, 48.82255253494658], [2.370508832489069, 48.82258611278816], [2.370324594470942, 48.82262088042472], [2.370146127932284, 48.82265445772294], [2.369961889430705, 48.82268922479857], [2.369783422424543, 48.822722801553425], [2.36959918343972, 48.82275756806815], [2.36942071596606, 48.82279114427969], [2.369236476497796, 48.82282591023348], [2.369058008556745, 48.822859485901645], [2.368873769967132, 48.822894251301676], [2.368695301558493, 48.82292782642649], [2.368687671636271, 48.82293151586103], [2.368664827562653, 48.82295433296117], [2.368653726855981, 48.82298020428432], [2.368649828239653, 48.822983164235396], [2.368651631381248, 48.82300174138754], [2.368652377338301, 48.82301077686675], [2.3686620530774602, 48.823018898057924], [2.3688460077816362, 48.82305545205639], [2.369029939848389, 48.823092547074566], [2.369213895070323, 48.82312910050468], [2.369397826307604, 48.8231661940481], [2.369581783409277, 48.82320274691709], [2.36976571515711, 48.82323984079155], [2.369949671414536, 48.82327639308504], [2.370133605056755, 48.823313485499064], [2.370317561831917, 48.82335003722425], [2.370501494622796, 48.823387129962164], [2.370685453277689, 48.82342368112619], [2.370869386600935, 48.82346077239648], [2.370877952268239, 48.82347287899393], [2.370804245537199, 48.82358789644148], [2.370728280633112, 48.82370648686309], [2.370654574603667, 48.82382150420166], [2.370578607645923, 48.82394009539569], [2.370504900956058, 48.824055112618105], [2.370428933317504, 48.824173703692395], [2.370355225978074, 48.82428871989928], [2.370279259020624, 48.824407310861], [2.370205549647875, 48.82452232784388], [2.370129582009704, 48.82464091868584], [2.370055873338539, 48.824755935559715], [2.369979903657505, 48.824874526274776], [2.369906194336757, 48.824989542133125], [2.369846156071706, 48.82508326442515], [2.369847607240984, 48.82508953172146], [2.369868422120987, 48.82509636063236], [2.370055338140546, 48.825156691546226], [2.370242489979398, 48.82521693076868], [2.37042940686416, 48.8252772610914], [2.370616558216811, 48.82533749881548], [2.370803475955713, 48.82539782944638], [2.370990628173341, 48.82545806657861], [2.371177546788293, 48.825518395719044], [2.371364699860048, 48.825578633158706], [2.371551619339992, 48.82563896170798], [2.371738773287563, 48.82569919765645], [2.371742797737501, 48.82570117044121], [2.371839627575381, 48.82577018263569], [2.371942282793857, 48.82584490488796], [2.371962130797866, 48.82584983966327]]], "type": "Polygon"}, "properties": {"lassalle_jean": 23.0, "pecresse_valerie": 36, "zemmour_eric": 77.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-24", "circ_bv": "09", "num_bureau": 24, "roussel_fabien": 26.0, "nb_emargement": 1124.0, "nb_procuration": 33.0, "nb_vote_blanc": 17.0, "jadot_yannick": 67.0, "le_pen_marine": 82.0, "nb_exprime": 1099.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1485.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1124, "quartier_bv": "50", "geo_point_2d": [48.82389582942021, 2.3721768271948998], "melenchon_jean_luc": 459.0, "poutou_philippe": 8.0, "macron_emmanuel": 280.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.307792068433228, 48.89184755820509], [2.307783068703519, 48.891871841961894], [2.307941614662552, 48.89194429530255], [2.308098175068671, 48.89201584032478], [2.308256723268445, 48.89208829324657], [2.308413284540431, 48.89215983784744], [2.30857183225348, 48.8922322903347], [2.308728394379496, 48.89230383541343], [2.308886944333196, 48.89237628748182], [2.30904350733723, 48.892447831239934], [2.309202056804101, 48.892520282873726], [2.309358620674108, 48.89259182621045], [2.309517172381743, 48.892664277425375], [2.309673737117728, 48.89273582034074], [2.30983228833853, 48.89280827112108], [2.309988853928575, 48.89287981451429], [2.3101454199608, 48.89295135679891], [2.310303973858102, 48.89302380694835], [2.31046054075621, 48.893095348811556], [2.310619094166676, 48.893167798526385], [2.310775661930868, 48.89323933996822], [2.3109342175821252, 48.893311789264175], [2.311090786212306, 48.893383330284585], [2.311249341376721, 48.89345577914595], [2.311249904164871, 48.89345602340197], [2.311300905146641, 48.89345236958851], [2.311329614653129, 48.893441074597895], [2.311479130137217, 48.893358424822765], [2.3116248664214583, 48.89328232899866], [2.3117743809928912, 48.8931996779437], [2.311920116401277, 48.893123581749286], [2.312069630048264, 48.8930409303137], [2.312215364580696, 48.89296483374894], [2.312364877291265, 48.89288218283204], [2.3125106109598272, 48.89280608499775], [2.312660121382061, 48.89272343369238], [2.312805854162805, 48.89264733638701], [2.312955365036184, 48.89256468380971], [2.31310109694119, 48.89248858613401], [2.313246828420109, 48.89241248827565], [2.313396337919107, 48.89232983513006], [2.313396516466056, 48.892329740825254], [2.313397159168866, 48.8923294063639], [2.313530020860639, 48.89225760958203], [2.31368430531692, 48.89218223021141], [2.313817166249037, 48.8921104322021], [2.313971449853501, 48.89203505245139], [2.3140243657407282, 48.892008189654845], [2.314055902131442, 48.89199216085711], [2.3140571362067233, 48.89199145296209], [2.314077292978205, 48.89197839060024], [2.31423157582666, 48.89190300960606], [2.314318923700259, 48.89185800480199], [2.314411668318109, 48.891811438125046], [2.314565950175933, 48.89173605758784], [2.314677621481197, 48.89167988901361], [2.314831902564198, 48.89160450812472], [2.315016172192042, 48.89151186963908], [2.315016339645932, 48.891511788758315], [2.315170982133573, 48.89143861464218], [2.315355249195544, 48.89134597651222], [2.315509889350772, 48.89127280193963], [2.3156627091363973, 48.89119811398699], [2.315817348420492, 48.891124939007454], [2.315970165967358, 48.89105025064462], [2.316124804380222, 48.89097707525818], [2.3162776210520972, 48.890902386492904], [2.316432258593632, 48.89082921069954], [2.316585074390619, 48.890754521531846], [2.3167397110609302, 48.89068134533159], [2.316739923842808, 48.89068123952586], [2.316748264803968, 48.8906769946325], [2.316899691523056, 48.89060561654746], [2.317054328672734, 48.890532439938745], [2.317205754551766, 48.89046106145723], [2.317306567843559, 48.89040087234387], [2.317324676857099, 48.89038306998774], [2.3173065094476533, 48.890362679392254], [2.31727730954329, 48.890331931294874], [2.3172426674700652, 48.89029311397354], [2.317209601385573, 48.890264537271534], [2.317208109843098, 48.89025524501282], [2.317243289187177, 48.89020607434583], [2.3172849572472938, 48.89017959741188], [2.317304208745713, 48.89016826863126], [2.317273032112602, 48.89014526865164], [2.31729006740506, 48.89012145806531], [2.31726465109225, 48.890092356613636], [2.317264590633168, 48.89009228702072], [2.317167083065582, 48.88998291421751], [2.3170714615748498, 48.889875657404154], [2.316973954818498, 48.889766284422066], [2.316878335475225, 48.889659028340326], [2.316878085342966, 48.88965875891371], [2.316771814979294, 48.88954860369127], [2.316665631173357, 48.889438537888324], [2.316559446452708, 48.889328471972384], [2.316453177437303, 48.88921831643403], [2.316346994978427, 48.88910825031544], [2.316240725498201, 48.88899809455861], [2.316134543937479, 48.888888028229516], [2.316028275356134, 48.8887778722621], [2.316027821561602, 48.888777430797674], [2.315949207720368, 48.88870571173171], [2.315811428176255, 48.88858001499424], [2.315724941843107, 48.888503835976294], [2.315724487391749, 48.88850344486921], [2.315601821203884, 48.888403555932506], [2.315483134633287, 48.888306907407795], [2.315360468007612, 48.88820701819816], [2.315241782321127, 48.88811037031619], [2.315119116621529, 48.888010480841444], [2.315000431842694, 48.887913831803694], [2.3148777670690652, 48.887813942063794], [2.314759083186151, 48.88771729276956], [2.314636420702151, 48.887617402772335], [2.31451773770331, 48.88752075412082], [2.314395074781589, 48.88742086385073], [2.314276392690591, 48.8873242140434], [2.314268400909109, 48.8873131532829], [2.314250268245409, 48.88731349190496], [2.314185713463294, 48.88732680277386], [2.314002236451651, 48.88736463604618], [2.313889361054779, 48.88738791057191], [2.313840718819363, 48.887382341973705], [2.313834356926935, 48.887390106302526], [2.313650879437067, 48.887427939034275], [2.31349919352276, 48.887463789078474], [2.313347508751397, 48.88749963983641], [2.313164030521773, 48.887537471818355], [2.312958936468429, 48.88757975977678], [2.312775459037862, 48.88761759116841], [2.312774756343826, 48.88761772203475], [2.31262713165466, 48.887642534327384], [2.312479974260694, 48.88766726818178], [2.31233281536326, 48.887692001846936], [2.31218519025303, 48.88771681359302], [2.312184020760942, 48.88771697415031], [2.311946586497913, 48.88774254401769], [2.3117100601835983, 48.88776801611062], [2.311709423902844, 48.88776807450679], [2.31145783671498, 48.88778720558704], [2.311202911601124, 48.88780659033396], [2.311196557016527, 48.88780820135042], [2.311005006953414, 48.887898272419676], [2.310795897724232, 48.888001333650855], [2.310769188790851, 48.88799956021916], [2.310762505173716, 48.888027262466935], [2.310703358604331, 48.88809311534212], [2.310651625470164, 48.88815071455127], [2.310646421144006, 48.88815402649728], [2.31047729045865, 48.88821485367839], [2.310306142300028, 48.88827640644887], [2.31013701218347, 48.888337233150395], [2.309965863232293, 48.8883987845284], [2.309796730956959, 48.888459610734614], [2.309625581189393, 48.88852116251867], [2.309456448119171, 48.88858198823749], [2.309285297547133, 48.888643539528275], [2.309276153859508, 48.888651834356054], [2.309285581991849, 48.888663631284146], [2.309368318047927, 48.88877335542677], [2.30945134928598, 48.888883471510376], [2.309534084677071, 48.8889931955086], [2.309617116628156, 48.889103310555974], [2.309619336090915, 48.889105426882736], [2.309754490758195, 48.889201373032904], [2.309891534757278, 48.889298658216575], [2.310026690439589, 48.889394603143366], [2.310163735443782, 48.889491888897645], [2.310298892129212, 48.889587833500315], [2.310435936798835, 48.8896851180188], [2.310571095851111, 48.8897810623052], [2.310708141525866, 48.88987834739432], [2.310707885755573, 48.88989076564236], [2.310574953200093, 48.889980124701964], [2.31043149844916, 48.89007586220264], [2.310298566298633, 48.89016522184743], [2.310155109165929, 48.89026095899304], [2.31002217608044, 48.89035031741667], [2.30987871792949, 48.89044605421499], [2.309745783885302, 48.890535413216], [2.309602324716194, 48.89063114966701], [2.309469389736939, 48.89072050744683], [2.309325929549773, 48.890816243550596], [2.309192993611693, 48.890905601907775], [2.309049532406254, 48.89100133766426], [2.308916595533204, 48.89109069480025], [2.308773133309692, 48.89118643020945], [2.308640195477795, 48.891275787922744], [2.308496733599763, 48.89137152299254], [2.308363793457281, 48.89146088037607], [2.308220330573007, 48.89155661419928], [2.308087389483495, 48.89164597126091], [2.307943925569082, 48.89174170563606], [2.307810983532732, 48.89183106237572], [2.307792068433228, 48.89184755820509]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 68, "zemmour_eric": 86.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "17-68", "circ_bv": "03", "num_bureau": 68, "roussel_fabien": 13.0, "nb_emargement": 1270.0, "nb_procuration": 56.0, "nb_vote_blanc": 13.0, "jadot_yannick": 108.0, "le_pen_marine": 50.0, "nb_exprime": 1250.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1406.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1269, "quartier_bv": "67", "geo_point_2d": [48.89028586508233, 2.312616958454728], "melenchon_jean_luc": 376.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.361084171041563, 48.82471261499476], [2.361018543372437, 48.82470209779701], [2.360833408000403, 48.8246533731329], [2.3606502732404833, 48.82460536758272], [2.360465138545056, 48.824556643243604], [2.360282003113091, 48.82450863621872], [2.360098869369261, 48.824460629817935], [2.3599137357029782, 48.824411904618934], [2.3597306026381, 48.82436389765007], [2.359545469670504, 48.82431517097744], [2.359362337284485, 48.82426716344045], [2.359177205004541, 48.8242184361935], [2.358994073297385, 48.82417042808847], [2.35880894169404, 48.82412170116653], [2.358625810665747, 48.82407369249339], [2.35844067976112, 48.82402496409782], [2.358257549411698, 48.82397695485664], [2.358072419194736, 48.82392822588678], [2.358031819352098, 48.82389972073486], [2.358020662009121, 48.823903197187725], [2.3579982970278213, 48.82397142257165], [2.35798418954433, 48.824016589087634], [2.357941729419514, 48.82414611241704], [2.35790144589933, 48.82427838420789], [2.35785898535576, 48.82440790747766], [2.35781870142339, 48.8245401792098], [2.357776240461161, 48.82466970242005], [2.357735956105416, 48.824801974992766], [2.357693494724421, 48.824931498143435], [2.357653209967554, 48.82506376975816], [2.357610748167787, 48.82519329284922], [2.3575704629988152, 48.82532556440523], [2.357528000780168, 48.82545508743675], [2.357487715187901, 48.82558735983335], [2.357445252561554, 48.82571688190594], [2.357404967919125, 48.825849154251166], [2.357362503500844, 48.82597867715618], [2.357334147289103, 48.82607178010124], [2.357334484481601, 48.826086968764216], [2.357339951767179, 48.82609340349579], [2.357328021572805, 48.8261325719304], [2.357318788164764, 48.82616059810589], [2.35732067418349, 48.82616484070128], [2.3573732935476572, 48.82616836931541], [2.3575802855601, 48.826167213212216], [2.357788971172762, 48.826165907555676], [2.357995963166312, 48.82616475073304], [2.3582046487586013, 48.82616344435114], [2.358411640733145, 48.826162286809], [2.35862032766722, 48.826160979709066], [2.358827318260678, 48.82615982144015], [2.35903600517456, 48.82615851361485], [2.359242995748987, 48.82615735462649], [2.359451682642463, 48.82615604607583], [2.359658673197849, 48.82615488636799], [2.359867360071008, 48.82615357709198], [2.3599355063921372, 48.8261732064569], [2.359938566720952, 48.826171129990875], [2.359958008584881, 48.826146155874085], [2.360052231303434, 48.82602854160069], [2.360145816623117, 48.82590833363221], [2.360240038488201, 48.825790719185946], [2.36033362158603, 48.825670511037735], [2.360427842597556, 48.825552896418586], [2.360521426186522, 48.82543268900461], [2.3606156463556323, 48.82531507331322], [2.360709229084721, 48.82519486572678], [2.360803447027425, 48.825077250754596], [2.360897028907578, 48.82495704209641], [2.360991247358897, 48.824839426958654], [2.361084828379191, 48.82471921812803], [2.361084171041563, 48.82471261499476]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 55, "zemmour_eric": 74.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-69", "circ_bv": "10", "num_bureau": 69, "roussel_fabien": 21.0, "nb_emargement": 1141.0, "nb_procuration": 66.0, "nb_vote_blanc": 13.0, "jadot_yannick": 87.0, "le_pen_marine": 55.0, "nb_exprime": 1120.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1419.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1141, "quartier_bv": "51", "geo_point_2d": [48.825184083330484, 2.359018456295396], "melenchon_jean_luc": 397.0, "poutou_philippe": 11.0, "macron_emmanuel": 364.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.39719391370393, 48.84303002064479], [2.397228664565792, 48.84301978208008], [2.397321053575299, 48.84290761105041], [2.397415525122433, 48.842797951545435], [2.397507913336549, 48.84268578034918], [2.39760238407804, 48.842576121574105], [2.397694770134278, 48.84246395020438], [2.397789241453429, 48.842354290367545], [2.397802480234461, 48.84234979006841], [2.397986822473523, 48.842362310622235], [2.398170780888718, 48.842374448531785], [2.398355124665865, 48.84238696852464], [2.398539083243585, 48.842399106766855], [2.398723427196416, 48.84241162619191], [2.39890738459471, 48.84242376296139], [2.399091728723315, 48.842436281818635], [2.399275687646528, 48.84244841892761], [2.3994600319507002, 48.842460937217055], [2.399643989694661, 48.84247307285328], [2.399828334174491, 48.8424855905749], [2.400012293443369, 48.84249772655066], [2.400196638098851, 48.842510243704474], [2.400380597540399, 48.842522379113646], [2.400385897723913, 48.84252203784237], [2.400583644715633, 48.84248254064053], [2.400777425375467, 48.84244087827499], [2.400975171752211, 48.842401381322404], [2.401168951797421, 48.84235971831968], [2.401270940354694, 48.84233918472409], [2.401254351947212, 48.8423029528919], [2.401207940814775, 48.842175930848626], [2.40116057734749, 48.842045719376], [2.401114168035135, 48.841918697273925], [2.401066803673296, 48.841788485727314], [2.401020394818527, 48.8416614635596], [2.400973030914384, 48.84153125284517], [2.400926622527527, 48.841404229712495], [2.40087926045388, 48.84127401893777], [2.400860549003727, 48.84122280744585], [2.40086298663433, 48.84121592606624], [2.400849866321106, 48.84118504201032], [2.400822167152851, 48.841109230285184], [2.400774605367745, 48.84098126683018], [2.400728196581373, 48.84085424445043], [2.400680633897303, 48.84072628092203], [2.400634226929436, 48.840599258483635], [2.400607449691107, 48.84052721600526], [2.400596202113709, 48.84049831717798], [2.400495148697113, 48.84050666228104], [2.40032648784298, 48.84049629268128], [2.40015195316651, 48.84048984157917], [2.399983292435189, 48.84047947149542], [2.399808757857527, 48.84047301989247], [2.399640097248925, 48.84046264932468], [2.399465562770076, 48.8404561972209], [2.399453244882229, 48.84046041093913], [2.399349809901816, 48.84056970526273], [2.399243677347672, 48.84068095463965], [2.399140240138053, 48.840790247854315], [2.399034106687511, 48.84090149702331], [2.398930669952851, 48.84101079094137], [2.398824535616274, 48.84112203900318], [2.398808893867725, 48.84112582044538], [2.398608223416556, 48.84108388642727], [2.398416384241611, 48.84104191104232], [2.398215714439785, 48.84099997546336], [2.398023875889797, 48.840957999445756], [2.397823206716354, 48.84091606410453], [2.397631370153783, 48.84087408746123], [2.397439532537753, 48.84083211050187], [2.397238864329545, 48.8407901732764], [2.397047027338487, 48.840748195684434], [2.396846359758865, 48.8407062586967], [2.396654523392782, 48.840664280472176], [2.39645385646236, 48.84062234192358], [2.396262020721263, 48.84058036306642], [2.396061354419325, 48.84053842475559], [2.396058587039222, 48.840537613051524], [2.395897001722956, 48.84047687007992], [2.395732069199148, 48.84041318165955], [2.395570484649168, 48.84035243824012], [2.395405552918088, 48.84028874936252], [2.395366775010904, 48.84027417079393], [2.395355679482551, 48.84027188249851], [2.39532015796157, 48.84029805690587], [2.395244138387218, 48.8403707699284], [2.395162878605486, 48.84044663654176], [2.395086857232567, 48.840519349447774], [2.395005596979921, 48.84059521684351], [2.394987405775333, 48.84059771409859], [2.394852324013813, 48.8405436241183], [2.394706796186077, 48.84048214504257], [2.39468868773038, 48.84048420648128], [2.394571455045556, 48.84058391796644], [2.394473627298895, 48.84066951047173], [2.394375797868375, 48.840755102883506], [2.394258565338118, 48.84085481404475], [2.394160735196266, 48.84094040716578], [2.394078019209328, 48.841010758859916], [2.39406569060765, 48.84102650985889], [2.394096907050065, 48.84104832816024], [2.394251139767416, 48.841124323621614], [2.394407547019905, 48.84120470077369], [2.394561780652919, 48.8412806958239], [2.394718187501684, 48.84136107165236], [2.39487242205036, 48.84143706629141], [2.395028829836979, 48.84151744260177], [2.395034042408931, 48.84152382203801], [2.395035967853288, 48.84153906602531], [2.395050384862675, 48.841658092706005], [2.3950636309516042, 48.841762963831286], [2.395078802552993, 48.841883079826474], [2.395093221117949, 48.842002106472215], [2.395107638386169, 48.84212113309667], [2.395122810193239, 48.842241249047746], [2.395137228957681, 48.84236027564996], [2.39515240090256, 48.84248039157155], [2.395166819800737, 48.8425994181447], [2.395181991893863, 48.84271953313748], [2.39519640956337, 48.84283855967469], [2.395211581783769, 48.84295867553728], [2.395226708023487, 48.842995162527565], [2.395242532700523, 48.842996471949164], [2.395431974272263, 48.8429975778687], [2.395627157367205, 48.84300059395215], [2.395816600334923, 48.84300169837021], [2.396011783467552, 48.84300471382611], [2.396201226458391, 48.84300581763509], [2.396396409628696, 48.84300883246346], [2.3965858526322372, 48.843009936562666], [2.396781035850621, 48.8430129498642], [2.396970478877273, 48.84301405335429], [2.397165662133308, 48.843017066028295], [2.39719391370393, 48.84303002064479]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 88, "zemmour_eric": 80.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-5", "circ_bv": "08", "num_bureau": 5, "roussel_fabien": 19.0, "nb_emargement": 1191.0, "nb_procuration": 74.0, "nb_vote_blanc": 15.0, "jadot_yannick": 97.0, "le_pen_marine": 81.0, "nb_exprime": 1172.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1480.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1191, "quartier_bv": "46", "geo_point_2d": [48.841650357500185, 2.397660542858255], "melenchon_jean_luc": 280.0, "poutou_philippe": 8.0, "macron_emmanuel": 461.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.416326245505095, 48.84842394088184], [2.416299611369545, 48.84842625178648], [2.416082852042548, 48.848448025039254], [2.415859518232165, 48.84847045830205], [2.415642757164683, 48.84849223164931], [2.415419422975406, 48.84851466408972], [2.4154038693334092, 48.84850698047355], [2.415373979926798, 48.848361312950495], [2.4153442651581, 48.848216491644706], [2.415314376074612, 48.84807082496809], [2.415284660274541, 48.84792600360306], [2.415254771534354, 48.84778033597422], [2.415225057418103, 48.84763551546258], [2.415213897031743, 48.84762786228083], [2.4150294898645, 48.84760662102009], [2.414848644411113, 48.847585788112546], [2.414664237541627, 48.84756454628802], [2.41448339237026, 48.84754371372688], [2.414298987171176, 48.847522470445995], [2.414118142291729, 48.84750163733196], [2.413937297556973, 48.84748080394424], [2.4137528914404722, 48.84745955981374], [2.413572046997749, 48.84743872587314], [2.413387642541668, 48.84741748118554], [2.413374623452118, 48.847420751252564], [2.413265509279278, 48.84751153110865], [2.413156969736495, 48.847601830725694], [2.413047854815505, 48.84769260946923], [2.412939315881085, 48.8477829088808], [2.412830200191787, 48.84787368831039], [2.41272166050309, 48.84796398750986], [2.412713094243035, 48.847967282958884], [2.412463746041056, 48.84799307077884], [2.412204028996815, 48.848019929530665], [2.412193137192627, 48.84803150554953], [2.412248154510649, 48.84814727970745], [2.412302895177413, 48.8482624732848], [2.412357912983111, 48.84837824736824], [2.412412654135103, 48.84849344087149], [2.412467672428483, 48.848609214880454], [2.412522415418238, 48.84872440921557], [2.412514048030358, 48.84873555696963], [2.412311876161629, 48.848783812596466], [2.412126838562868, 48.84882797817938], [2.412096217556038, 48.848835286944464], [2.412092244394048, 48.84884091715108], [2.412101593097507, 48.848854769042646], [2.412222233017007, 48.84896148351754], [2.41233853241399, 48.84906922967977], [2.412340951802028, 48.8490755855914], [2.412315420884894, 48.84920768109729], [2.412289924509667, 48.84933960227815], [2.412264393333739, 48.84947169774181], [2.412238896700163, 48.84960361888055], [2.412213366628228, 48.84973571430868], [2.412187868383752, 48.849867634499205], [2.412162338042978, 48.84999973078444], [2.412136840902841, 48.850131650939474], [2.412111308950811, 48.85026374627648], [2.412085811542167, 48.850395667288694], [2.412060279331429, 48.85052776258348], [2.412034781664421, 48.8506596835535], [2.412009249194969, 48.850791778806055], [2.411983751269592, 48.850923699733876], [2.411958219904149, 48.851055794950895], [2.411932720367823, 48.85118771493056], [2.411907188743665, 48.851319810105345], [2.411881690301543, 48.85145173094882], [2.411856157055932, 48.85158382607467], [2.41183065835543, 48.85171574687597], [2.411805124851089, 48.851847841959554], [2.411779625892202, 48.85197976271866], [2.411754092129129, 48.85211185776], [2.411728592922006, 48.85224377757763], [2.411703060252805, 48.85237587348273], [2.41167755942453, 48.85250779325144], [2.411652026506748, 48.852639888214995], [2.411626526772687, 48.852771808847514], [2.411626533351208, 48.85277412290474], [2.411647927097991, 48.852881169683066], [2.411669354465494, 48.8529883847904], [2.411690748378061, 48.85309543243974], [2.41171217728456, 48.85320264752541], [2.411712019738048, 48.85320561729926], [2.4116790533420263, 48.8533125118681], [2.411646475766589, 48.853418151041005], [2.411613896706528, 48.85352378928894], [2.411580929907921, 48.85363068380017], [2.4115665923870733, 48.853666319217545], [2.411578889743212, 48.85367062911258], [2.411717814585164, 48.853696068572425], [2.411907257220466, 48.85372830432374], [2.412104839488368, 48.85376448473477], [2.412294283984668, 48.85379671897876], [2.412491866780713, 48.85383289874847], [2.412681310392221, 48.85386513327032], [2.412878895079202, 48.85390131240547], [2.41306833918909, 48.85393354541326], [2.413265923041398, 48.85396972390039], [2.413455367629188, 48.85400195719279], [2.413652953372421, 48.854038135045315], [2.413842398458459, 48.85407036682367], [2.414039983367101, 48.85410654402818], [2.41422943029395, 48.85413877609777], [2.414427015730599, 48.854174952660976], [2.4146164617928623, 48.854207183209866], [2.414805908079487, 48.854239414357146], [2.415003495660682, 48.85427558997186], [2.415192942445508, 48.85430781960509], [2.415390529192079, 48.854343994571856], [2.415411366734103, 48.854339557370096], [2.415424628538278, 48.854305320151575], [2.41543908928421, 48.8542224008148], [2.415463284675175, 48.854087503568216], [2.415485339703026, 48.85396103892139], [2.4155095348629843, 48.85382614073442], [2.4155315896680642, 48.85369967604936], [2.415555784576843, 48.85356477872058], [2.415577837796163, 48.85343831399062], [2.415602032473946, 48.85330341572148], [2.415624086833293, 48.853176950959934], [2.415648281259906, 48.85304205354902], [2.415670335406374, 48.8529155878499], [2.415670412563622, 48.85291514844528], [2.415694606748752, 48.852780250993234], [2.415713108365963, 48.852674153446486], [2.415731609907833, 48.85256805588674], [2.415755803773382, 48.85243315838023], [2.415774305142654, 48.852327060790884], [2.415798498785784, 48.852192163246514], [2.415804551555633, 48.85215807868915], [2.415810112701839, 48.852126758128094], [2.415811568754379, 48.85211856227368], [2.415813910725179, 48.85210537396068], [2.415838104162855, 48.851970476381396], [2.415864419929505, 48.851822276073975], [2.41588861310499, 48.851687378450144], [2.415914929947867, 48.85153917810053], [2.41593912287114, 48.85140427953288], [2.4159654380646662, 48.851256079127765], [2.415989630715779, 48.85112118141488], [2.415999238277011, 48.851067073052334], [2.415999562679934, 48.85106524355918], [2.416015426363686, 48.85097590311291], [2.41604405927743, 48.8508027659741], [2.416066225456926, 48.850677928327485], [2.416066263214822, 48.850677720761844], [2.416079280667993, 48.8506129950955], [2.416101446692467, 48.850488156521784], [2.416123773294694, 48.850360653039104], [2.416145939105246, 48.85023581442886], [2.416168264137974, 48.85010831000304], [2.41619043108723, 48.84998347226215], [2.416212755902992, 48.84985596779915], [2.416234921275633, 48.849731130015094], [2.416257247237022, 48.84960362552148], [2.416279412395751, 48.849478787700896], [2.416301738140274, 48.84935128317005], [2.416315080119811, 48.849276142699374], [2.416317098948526, 48.84926477215554], [2.416317922197631, 48.84926013461912], [2.416340246391582, 48.849132630049425], [2.416359913764073, 48.84902186292485], [2.41638223774314, 48.848894359219365], [2.4164019049364542, 48.84878359206419], [2.416376552539175, 48.848657569032554], [2.416341732994582, 48.84848900721318], [2.416331808986382, 48.84843967700576], [2.416326245505095, 48.84842394088184]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 32, "zemmour_eric": 52.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-55", "circ_bv": "08", "num_bureau": 55, "roussel_fabien": 14.0, "nb_emargement": 964.0, "nb_procuration": 23.0, "nb_vote_blanc": 10.0, "jadot_yannick": 40.0, "le_pen_marine": 93.0, "nb_exprime": 949.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1443.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 964, "quartier_bv": "80", "geo_point_2d": [48.85090947849475, 2.41398537458514], "melenchon_jean_luc": 452.0, "poutou_philippe": 9.0, "macron_emmanuel": 206.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.331578011813548, 48.84714125266115], [2.3315732743079423, 48.84712952281082], [2.331567188150243, 48.84699462964937], [2.331559666170507, 48.84686363527311], [2.331553580078981, 48.84672874207879], [2.331546058160291, 48.84659774856971], [2.33153997213514, 48.84646285534249], [2.3315324502890302, 48.84633186180129], [2.331524928480733, 48.84620086824423], [2.3315188439306382, 48.84606597407625], [2.331511320832437, 48.84593498047946], [2.331505236337071, 48.84580008717787], [2.331507351002175, 48.845795001411055], [2.331618589759493, 48.845679293168196], [2.3317276789608252, 48.84556625470302], [2.331838916740726, 48.8454505462316], [2.331948006336405, 48.84533750844926], [2.332059241776336, 48.8452217997416], [2.332168330426858, 48.84510876083588], [2.332279566251959, 48.844993051907245], [2.332388652571729, 48.844880013669105], [2.332499887419447, 48.8447643045119], [2.332608974156527, 48.84465126515797], [2.332718059046443, 48.844538226584824], [2.332829292433342, 48.844422517085846], [2.3329383777406703, 48.84430947739696], [2.333049610150211, 48.84419376766944], [2.333076383465221, 48.84416602318427], [2.333076565762341, 48.84416327754586], [2.3330124351259602, 48.84414375098909], [2.332882124056967, 48.84408143060886], [2.332688657430875, 48.84398977673294], [2.332558347134027, 48.84392745599141], [2.332364881648895, 48.84383580157921], [2.332234570761769, 48.843773480468826], [2.3322205999264902, 48.84376678946513], [2.3322050722699, 48.84377089652041], [2.332036650830914, 48.84379536146967], [2.331868524601331, 48.8438200634641], [2.331700102845482, 48.843844527938515], [2.33153197628625, 48.84386923035821], [2.331363555576067, 48.84389369436538], [2.331195427336191, 48.8439183963034], [2.331027006320696, 48.843942858936366], [2.330858877762607, 48.843967560400294], [2.330851698048833, 48.84397033165136], [2.330811494977291, 48.84399989548618], [2.3307749623520913, 48.844029381809094], [2.330757151437222, 48.84404022832394], [2.330757256192514, 48.84404491009622], [2.330665448711727, 48.84411900765312], [2.330543520919961, 48.84421757464343], [2.330415179809519, 48.844321157330896], [2.330293251071507, 48.84441972404827], [2.330164908965854, 48.84452330644845], [2.330042977919041, 48.84462187288526], [2.329914636180612, 48.84472545500583], [2.32979270418753, 48.84482402116969], [2.32966436145398, 48.84492760300298], [2.32954242852619, 48.845026167994625], [2.329414084797307, 48.84512974954061], [2.329292150911665, 48.84522831515859], [2.329163806187642, 48.84533189641732], [2.329041871355705, 48.84543046176236], [2.328913524273861, 48.84553404272617], [2.328791589858191, 48.84563260780589], [2.328775845315838, 48.8456487286767], [2.328794221488201, 48.84565924189434], [2.328850511147913, 48.845688444305544], [2.328989162667232, 48.84576099835009], [2.329153738830456, 48.845846377705506], [2.329292391180416, 48.84591893228767], [2.32945696835082, 48.8460043103146], [2.329595621543107, 48.84607686453503], [2.329760199697345, 48.846162243032026], [2.329898855106217, 48.84623479599911], [2.329904010757224, 48.8462416303462], [2.32990896957152, 48.84637960580127], [2.329913370592437, 48.84651412186869], [2.329917772987211, 48.84664863882668], [2.329922730514066, 48.84678661422312], [2.329927132955916, 48.84692113114784], [2.3299320905334753, 48.847059106510166], [2.329924922074566, 48.84707707426628], [2.329926779047052, 48.847079222447896], [2.330051398327956, 48.84710050222681], [2.3301665343580362, 48.84712192034442], [2.330174632630537, 48.847135080165614], [2.330075733805373, 48.847247903447034], [2.329973929575935, 48.84736377808582], [2.329875031233212, 48.847476602085074], [2.329773226110857, 48.847592476529336], [2.329674326911181, 48.847705299440214], [2.329572519533169, 48.84782117368227], [2.329579553106811, 48.84783478714267], [2.329617704197168, 48.847835043190784], [2.329765330570413, 48.84776433876489], [2.329932483084061, 48.84768406549773], [2.330110918151477, 48.84759860380187], [2.330278069601217, 48.84751833003994], [2.330456503534439, 48.847432867815975], [2.330623652546208, 48.84735259445096], [2.3308020867077612, 48.84726713170645], [2.330969234667188, 48.847186856947445], [2.330976373850549, 48.84718515390889], [2.331111444199978, 48.847178940901244], [2.3313755508626812, 48.84716767955463], [2.331510619756614, 48.8471614660886], [2.331578011813548, 48.84714125266115]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 84, "zemmour_eric": 77.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "6-19", "circ_bv": "11", "num_bureau": 19, "roussel_fabien": 13.0, "nb_emargement": 856.0, "nb_procuration": 83.0, "nb_vote_blanc": 6.0, "jadot_yannick": 52.0, "le_pen_marine": 28.0, "nb_exprime": 849.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1031.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 856, "quartier_bv": "23", "geo_point_2d": [48.84546957174817, 2.3308867977578043], "melenchon_jean_luc": 108.0, "poutou_philippe": 6.0, "macron_emmanuel": 442.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.279839567179537, 48.87863185882896], [2.279877955092198, 48.87865004598163], [2.279978221691333, 48.878695002744664], [2.280065072262377, 48.87903620322952], [2.280095424821879, 48.87915631904048], [2.280120804837455, 48.87926695556513], [2.280151159023426, 48.87938707134504], [2.280153940707965, 48.879399200378785], [2.280168780487309, 48.87946388738105], [2.280170325090075, 48.879470616534526], [2.280200679508957, 48.87959073227963], [2.280219437993952, 48.87967250419481], [2.280219467637763, 48.879672628481906], [2.280250246151918, 48.879805880693404], [2.280275306047154, 48.87991239711696], [2.280285016805944, 48.879953673115104], [2.280315795654007, 48.880086925275755], [2.280341457243652, 48.88019600029599], [2.280367118953213, 48.88030507440068], [2.280397898206595, 48.88043832739698], [2.280409158576585, 48.880486185946], [2.280412539201669, 48.88050145725338], [2.280443318687329, 48.880634710214224], [2.280452936852029, 48.88067816740916], [2.280476655133124, 48.88078532585945], [2.280507434950605, 48.88091857876945], [2.2805311534533272, 48.88102573718557], [2.280543155240983, 48.88107995757318], [2.280573934039256, 48.881213210422246], [2.280584819284207, 48.88126238599394], [2.280615598309322, 48.881395637910956], [2.280652592573502, 48.88156276293841], [2.280683371949555, 48.88169601480165], [2.280700130721034, 48.881771725515634], [2.2807185067946, 48.88185474046634], [2.280749287862868, 48.8819879931847], [2.280751951129893, 48.882000027931696], [2.280778841017363, 48.882121502906706], [2.28080962103426, 48.88225475556906], [2.280836511187776, 48.88237623050301], [2.280867291502791, 48.882509483119726], [2.280894181922357, 48.882630958012584], [2.280924963899031, 48.8827642105918], [2.280937858487134, 48.882822467039354], [2.280947320966205, 48.8828652099941], [2.280990821896324, 48.88289900212176], [2.281018625379168, 48.88292060118796], [2.281143740220125, 48.88302192799698], [2.281174950501166, 48.88304617174316], [2.281326899450673, 48.88316420724599], [2.281452015464303, 48.88326553460972], [2.2815771319772242, 48.883366860934046], [2.281729082761609, 48.8834848967913], [2.281797103561905, 48.88353773614948], [2.281922221400254, 48.88363906208813], [2.281972628802601, 48.88367821842016], [2.282002859098429, 48.88369031861514], [2.282015258750453, 48.883683397039945], [2.282179325718488, 48.883607566726475], [2.282339789692672, 48.883532510501304], [2.282500253191921, 48.88345745495517], [2.282664320105459, 48.883381623969655], [2.28282478267205, 48.88330656797835], [2.282988847274109, 48.88323073652957], [2.283149310283972, 48.8831556792019], [2.283313373938003, 48.88307984729806], [2.283473834639286, 48.88300479041626], [2.283637898709041, 48.88292895806544], [2.283798358477672, 48.882853900738425], [2.283962420235969, 48.88277806792435], [2.284122879084317, 48.88270300925284], [2.284286941258129, 48.882627175991885], [2.284304429346331, 48.882628195160336], [2.284447258840513, 48.88272280203745], [2.284584863602932, 48.882814716375876], [2.284727694118134, 48.8829093229024], [2.284865299868261, 48.88300123690298], [2.285008131404489, 48.8830958430789], [2.285145738154878, 48.8831877558423], [2.285145911093691, 48.88318787288922], [2.285283518317989, 48.88327978638589], [2.285416856895472, 48.88337137026084], [2.285550197305399, 48.8834629539878], [2.285687805982564, 48.88355486609751], [2.285821145975372, 48.883646449499345], [2.285958755603191, 48.88373836218158], [2.286092096542342, 48.88382994526635], [2.286229707145692, 48.88392185672258], [2.286363049031087, 48.88401343949031], [2.286500660585219, 48.88410535151906], [2.286520282970664, 48.88410520315048], [2.286671367355287, 48.883999558249904], [2.286819130188514, 48.88389623523595], [2.286970211984733, 48.88379059082934], [2.287117973632099, 48.883687267426936], [2.287125756287725, 48.88368455550462], [2.287318930826272, 48.88366433463779], [2.287506409274478, 48.88364470999657], [2.287693887581382, 48.883625085061425], [2.287887063042176, 48.88360486328497], [2.287898771549504, 48.883607339546565], [2.288043442727257, 48.88370136388361], [2.288188137435528, 48.88379540076531], [2.288332809658185, 48.88388942473663], [2.288477504035659, 48.88398346214369], [2.288622178679082, 48.88407748485814], [2.288766874101625, 48.88417152189944], [2.288911549777584, 48.88426554514738], [2.289056246257584, 48.88435958092365], [2.289200922978472, 48.88445360380585], [2.28934562050355, 48.884547639216294], [2.289490298269377, 48.88464166173278], [2.289634996827169, 48.88473569767668], [2.289646980190335, 48.88473814301746], [2.289806776377223, 48.88471920669967], [2.289992872510519, 48.884697154355294], [2.290013011776844, 48.88468341503892], [2.289995656580432, 48.88466829053952], [2.289946581735053, 48.88463700754669], [2.289800843772297, 48.88454367178473], [2.289659799707088, 48.88445376226859], [2.289514062771164, 48.88436042614204], [2.289373019709673, 48.88427051537383], [2.289227283800579, 48.88417717888266], [2.289086241730533, 48.88408726776163], [2.288940505484691, 48.88399393089776], [2.288799465769552, 48.88390401943202], [2.288653730550631, 48.88381068220354], [2.288512691826921, 48.883720770385], [2.288366957634813, 48.883627432791855], [2.288225919890231, 48.88353752151987], [2.288080186724927, 48.88344418356211], [2.287939149984048, 48.88335427103801], [2.28779341784544, 48.8832609327157], [2.287652382096071, 48.88317101983882], [2.287506650984255, 48.883077681151896], [2.287365616226287, 48.882987767922245], [2.28722458059168, 48.882897854511036], [2.287078851011142, 48.882804515280206], [2.286937817731469, 48.8827146015243], [2.286792089165389, 48.88262126282818], [2.286651056877098, 48.88253134871949], [2.286505329349998, 48.882438008759536], [2.286364298053186, 48.882348094298095], [2.286218571552845, 48.88225475397355], [2.286218496360391, 48.88224850043663], [2.286194018179136, 48.882238948333175], [2.286193804644274, 48.88223880856215], [2.286046328231215, 48.88214007145315], [2.28590191149955, 48.882043382203726], [2.285754436180886, 48.88194464561694], [2.28561001918201, 48.88184795509082], [2.285465604070466, 48.881751265289445], [2.285318130418568, 48.881652527239744], [2.285173715027474, 48.88155583706096], [2.285026243833545, 48.88145709954158], [2.284881829538546, 48.8813604080943], [2.284734358088012, 48.881261670189716], [2.284735381271081, 48.88124842995703], [2.284897547092316, 48.881159954162044], [2.285057412506923, 48.88107273247245], [2.285219577233971, 48.880984256227165], [2.28537944019408, 48.88089703498476], [2.285383864295389, 48.880887646223414], [2.285326960375387, 48.88075562906784], [2.285274358215565, 48.88063359052524], [2.285221756289828, 48.88051155284528], [2.285164853204131, 48.88037953466833], [2.2851122517915963, 48.88025749691209], [2.285055350624435, 48.88012547866075], [2.285002748374077, 48.88000343992083], [2.284945847749724, 48.87987142248629], [2.284893247376022, 48.87974938367823], [2.284836345943355, 48.87961736615306], [2.284783746082836, 48.87949532726874], [2.284726845205312, 48.87936330966108], [2.284674245857971, 48.87924127070051], [2.284617345535581, 48.87910925301034], [2.284564746701409, 48.87898721397351], [2.284507846934147, 48.87885519620088], [2.284455248613137, 48.8787331570878], [2.284398349400994, 48.87860113923266], [2.284345751593139, 48.87847910004336], [2.284288852936107, 48.87834708210572], [2.284236255641399, 48.87822504284018], [2.284244804005828, 48.87821885252893], [2.284225453980679, 48.87819309394563], [2.284191759651412, 48.87817280931139], [2.28403551439733, 48.878078367845845], [2.283890031632193, 48.87799078236501], [2.283733787471315, 48.87789634049006], [2.283588305722045, 48.877808754628134], [2.283442825825488, 48.87772116859057], [2.2832865819209562, 48.8776267261007], [2.283225333341435, 48.877546813587536], [2.283202661768681, 48.87755380871329], [2.283089422808275, 48.87759143174991], [2.282904567652873, 48.877647967830974], [2.282730472522482, 48.87770581008636], [2.28254561657158, 48.877762345607266], [2.282371520660214, 48.87782018733464], [2.2821866639261073, 48.877876721396156], [2.282012568597183, 48.87793456260371], [2.281827709691676, 48.87799109699617], [2.281653613581784, 48.878048937675715], [2.281468755243993, 48.878105471516214], [2.28129465698972, 48.87816331165956], [2.28110979786885, 48.87821984404067], [2.280935698833615, 48.878277683655966], [2.280750838904745, 48.8783342163762], [2.280576739088546, 48.87839205546347], [2.280391878364088, 48.87844858762356], [2.280217777766925, 48.8785064261828], [2.280173235823884, 48.87852122321712], [2.279988374202973, 48.87857775474752], [2.279858814881195, 48.878620794914696], [2.279839567179537, 48.87863185882896]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 124, "zemmour_eric": 230.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-59", "circ_bv": "04", "num_bureau": 59, "roussel_fabien": 6.0, "nb_emargement": 1179.0, "nb_procuration": 50.0, "nb_vote_blanc": 11.0, "jadot_yannick": 52.0, "le_pen_marine": 80.0, "nb_exprime": 1161.0, "nb_vote_nul": 7.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1531.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1179, "quartier_bv": "65", "geo_point_2d": [48.88094585688242, 2.2832701451574797], "melenchon_jean_luc": 158.0, "poutou_philippe": 5.0, "macron_emmanuel": 468.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.322817622301627, 48.89361136193106], [2.322812987075473, 48.89360910719469], [2.322611998796536, 48.89367771390194], [2.322431531112763, 48.89373931643484], [2.322230540453104, 48.89380792338528], [2.322050071878283, 48.89386952443672], [2.32186960286481, 48.89393112611208], [2.321668612087986, 48.89399973211508], [2.3216628968890642, 48.89401201058191], [2.321742846937362, 48.89410905797778], [2.321821732502006, 48.894204815047765], [2.321901683142433, 48.8943018623205], [2.321980570655076, 48.894397619276745], [2.321978883093133, 48.894407808047525], [2.321837221291775, 48.89451537883817], [2.321701775836051, 48.89461822814464], [2.321566329856923, 48.894721076389004], [2.321424664975142, 48.8948286475524], [2.321289219265064, 48.89493149547134], [2.3211475532382, 48.89503906628627], [2.321125489949163, 48.89503771903394], [2.321027678394782, 48.894927736703416], [2.32093102867043, 48.894819059490246], [2.320833219289743, 48.894709077885935], [2.320736570389034, 48.89460039959491], [2.320638760466045, 48.89449041780209], [2.320542112365306, 48.89438174023169], [2.320524883705839, 48.8943780487813], [2.32035361356006, 48.89442742189565], [2.320188336935007, 48.894475066115], [2.320017066162582, 48.89452443784438], [2.319851790285439, 48.89457208160282], [2.319832354343187, 48.8945782367984], [2.319835335051711, 48.894591142829576], [2.31990362222933, 48.89468579682611], [2.3199877010320122, 48.894800207744076], [2.320068036542648, 48.894911563019704], [2.320152116071218, 48.895025973798646], [2.320232452293706, 48.8951373280418], [2.320300744356817, 48.89523025508465], [2.320299157050518, 48.89524621444957], [2.320317513642016, 48.895253273997966], [2.3203333018472723, 48.89527475759238], [2.320430035046408, 48.895400311506826], [2.320514116159768, 48.89551472198057], [2.320521181654668, 48.8955189906839], [2.320689330853963, 48.895563246102604], [2.320881006640484, 48.89561413410327], [2.32104915645302, 48.895658389012915], [2.321240832941514, 48.89570927643326], [2.321408983367086, 48.895753530833844], [2.321600660557547, 48.89580441767385], [2.321726750703265, 48.89583760191347], [2.321752525188858, 48.895850399554995], [2.321800698983891, 48.89585574096042], [2.321842759907357, 48.89586681058615], [2.321866761130611, 48.89587312753876], [2.321873686355429, 48.89587718222638], [2.321967225076112, 48.895990543492196], [2.322060428517923, 48.896103497178736], [2.322153968040213, 48.89621685917451], [2.322247172292326, 48.89632981269235], [2.322340712639449, 48.89644317361957], [2.322433917690268, 48.896556127868024], [2.322527458850626, 48.89666948862597], [2.322620663347858, 48.89678244269799], [2.322714206685373, 48.896895803294335], [2.322807412004628, 48.89700875629845], [2.322900954779787, 48.89712211761704], [2.322994162273294, 48.897235070460184], [2.32308770586172, 48.89734843160945], [2.323180914165576, 48.897461384283886], [2.323188165548008, 48.897470172056785], [2.323205430584377, 48.897491093395445], [2.323228219964621, 48.897492280682236], [2.3232420632815423, 48.89748042222891], [2.323243795775214, 48.8974789373483], [2.323254149732898, 48.897470768872715], [2.323248783625108, 48.89746112391301], [2.323209770990386, 48.897329291469106], [2.323172131824976, 48.89720209646143], [2.323134491467873, 48.89707490231865], [2.323095479411974, 48.896943069791014], [2.323095238941016, 48.896941737436705], [2.323100059605346, 48.89692776045679], [2.3230926180248, 48.8969221731816], [2.323084996934115, 48.89680650079297], [2.323077487673092, 48.89669251075434], [2.323069866649643, 48.896576838340486], [2.323062356090869, 48.89646284826922], [2.323054735146351, 48.896347174930916], [2.323047226006142, 48.89623318574177], [2.323039605128856, 48.89611751237822], [2.323032094702702, 48.89600352225727], [2.323019945172848, 48.89599497297208], [2.322983952321493, 48.89599238899506], [2.322870907285281, 48.895984273804274], [2.322795081539941, 48.895978830425975], [2.322783077594851, 48.895971255905174], [2.322781390398361, 48.89596401851425], [2.322776029204271, 48.895941012321195], [2.322787517701008, 48.895930750374966], [2.322996162906651, 48.89591044256813], [2.32320614905233, 48.895890004380355], [2.323414793919702, 48.89586969674271], [2.3236247797368, 48.89584925782012], [2.323833424277586, 48.89582894945238], [2.32404340976589, 48.89580850979501], [2.32425205399175, 48.89578819979791], [2.32446203913978, 48.895767760305], [2.324472148927256, 48.895754716911725], [2.324379809831435, 48.89563755214841], [2.32428742819656, 48.89552033399904], [2.324195089932231, 48.89540316906821], [2.324102710492894, 48.895285950758975], [2.324010371696075, 48.89516878565295], [2.32391799308859, 48.89505156717613], [2.323825656486908, 48.89493440191035], [2.323733277347304, 48.89481718325824], [2.323640941576981, 48.89470001782498], [2.323548564621283, 48.89458279991227], [2.323456228330243, 48.89446563340456], [2.323363852206162, 48.894348415324295], [2.323271518098625, 48.894231249556086], [2.3231791414541982, 48.89411403040131], [2.323086808177889, 48.8939968644656], [2.322994433729003, 48.89387964515096], [2.322902099920281, 48.8937624790401], [2.322809726302984, 48.893645259557914], [2.322817622301627, 48.89361136193106]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 75, "zemmour_eric": 63.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "17-21", "circ_bv": "03", "num_bureau": 21, "roussel_fabien": 17.0, "nb_emargement": 1203.0, "nb_procuration": 82.0, "nb_vote_blanc": 11.0, "jadot_yannick": 109.0, "le_pen_marine": 70.0, "nb_exprime": 1189.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1545.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1203, "quartier_bv": "68", "geo_point_2d": [48.89519888730339, 2.3223422977297012], "melenchon_jean_luc": 371.0, "poutou_philippe": 7.0, "macron_emmanuel": 417.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4046513722177663, 48.8408806895196], [2.404675137688597, 48.84090223502532], [2.404705679145075, 48.84099295427477], [2.4047445799558282, 48.84109952313794], [2.404785313667896, 48.841220515122174], [2.404824216173789, 48.841327083944506], [2.40483774918072, 48.84133396841442], [2.405013755517016, 48.84133150913113], [2.405188643128874, 48.841330250066434], [2.405364648073684, 48.84132779026012], [2.405539535664585, 48.84132653068246], [2.405715540580272, 48.84132407035986], [2.40589042952293, 48.84132280937668], [2.405891603726977, 48.84132283499414], [2.406070453878539, 48.84133302067207], [2.406252718887279, 48.841342103329914], [2.406431570527655, 48.84135228937387], [2.406613834304333, 48.84136137147463], [2.406792686091634, 48.84137155607922], [2.40697495136098, 48.84138063763636], [2.407153801922585, 48.841390821694105], [2.407336067311994, 48.84139990360024], [2.407514919372638, 48.84141008712464], [2.407697183540188, 48.841419167574365], [2.407709242091887, 48.84142562531536], [2.407727953140697, 48.84146811731033], [2.407717141192955, 48.841487206623434], [2.407746144620399, 48.84151197015561], [2.407780555745128, 48.84159011308644], [2.407840839663329, 48.84172022308496], [2.407893962375379, 48.84184085882816], [2.407954246866603, 48.84197096874024], [2.408007370107031, 48.842091603506695], [2.408067655171388, 48.842221713332385], [2.408120778929779, 48.842342348021376], [2.408181064557166, 48.84247245866004], [2.408234190196136, 48.842593093278246], [2.408294476406786, 48.842723202931225], [2.408347601201336, 48.842843837465225], [2.408407887985244, 48.84297394703183], [2.408461013297881, 48.84309458148837], [2.40851413884624, 48.84321521680758], [2.40857442647548, 48.84334532624693], [2.408627553914672, 48.84346596059608], [2.40868784211699, 48.843596069949044], [2.408740968711764, 48.84371670421398], [2.408801257477168, 48.84384681437985], [2.408823840482686, 48.84385323046746], [2.408846696547788, 48.84384614496295], [2.408863510225706, 48.843835633627116], [2.408965129345987, 48.84373147041003], [2.409081834567878, 48.84361024437819], [2.409183454174988, 48.843506080961355], [2.409300157031928, 48.84338485378597], [2.409401775763239, 48.84328069016265], [2.409518477607778, 48.843159462749796], [2.409620095463299, 48.84305529892001], [2.40973679628506, 48.842934072169015], [2.409838413264804, 48.842829908132735], [2.409840218161527, 48.842822973100176], [2.409797170937146, 48.84270263089008], [2.409755579810754, 48.84257922003271], [2.409712532983125, 48.8424588777659], [2.409670942241571, 48.842335467751454], [2.409627897173182, 48.84221512543457], [2.409586306836626, 48.842091714464495], [2.409543260802481, 48.84197137208419], [2.409501670850649, 48.84184796195701], [2.409458625213237, 48.841727619519936], [2.409417035656311, 48.841604209336396], [2.409373991778105, 48.84148386684932], [2.409332402626266, 48.84136045571013], [2.409289357782305, 48.84124011315957], [2.409247769015271, 48.84111670286331], [2.409204724568028, 48.84099636025607], [2.409163136205974, 48.84087294900414], [2.409171468868057, 48.84086746090183], [2.409150528622469, 48.84083943868037], [2.409108940503754, 48.84071602829154], [2.409070852925863, 48.84058468033549], [2.409029265199073, 48.840461269890774], [2.408991179360479, 48.840329922785436], [2.408972458996475, 48.840318957041134], [2.408939968744971, 48.84032990179862], [2.408706126492038, 48.84034126073566], [2.4084793747879703, 48.84034971966871], [2.408245532355963, 48.84036107680588], [2.4080187791284953, 48.840369534859015], [2.408014049432611, 48.8403692155638], [2.407814399506111, 48.84033169720223], [2.407619099346376, 48.84029450402862], [2.407419449990353, 48.84025698500542], [2.407224150392294, 48.84021979118453], [2.407024501606757, 48.84018227149965], [2.406829202570587, 48.84014507703151], [2.406826607921828, 48.840144758383204], [2.406629881684005, 48.84013254071973], [2.406419252862464, 48.84012042462509], [2.406222526801731, 48.84010820719075], [2.40601189818347, 48.840096089479324], [2.4058151723100742, 48.840083871374816], [2.405604543884865, 48.84007175294586], [2.405603707669938, 48.84007172180996], [2.405406933317359, 48.84007069622347], [2.40522511233462, 48.840067639262635], [2.405028338015171, 48.840066612154104], [2.404846517068887, 48.840063554617814], [2.404664697516543, 48.8400604959126], [2.404467921862401, 48.840059468774726], [2.404412169883321, 48.84005853107431], [2.404399990271298, 48.84006487657287], [2.404399717825176, 48.84009408372548], [2.404440435354529, 48.84022219609428], [2.4044811676749323, 48.84034318827714], [2.404521898822096, 48.840464180426274], [2.404562618292963, 48.840592293617085], [2.404603351196599, 48.840713284818975], [2.404644069699931, 48.8408413979467], [2.404654261574816, 48.84087167073593], [2.4046513722177663, 48.8408806895196]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 80, "zemmour_eric": 74.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "12-38", "circ_bv": "08", "num_bureau": 38, "roussel_fabien": 23.0, "nb_emargement": 1225.0, "nb_procuration": 53.0, "nb_vote_blanc": 17.0, "jadot_yannick": 108.0, "le_pen_marine": 91.0, "nb_exprime": 1202.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1571.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1225, "quartier_bv": "45", "geo_point_2d": [48.841356982291614, 2.4075385924750328], "melenchon_jean_luc": 356.0, "poutou_philippe": 6.0, "macron_emmanuel": 402.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339053792798781, 48.87594358301681], [2.339069962090019, 48.87592809038387], [2.339043776849104, 48.87585022872451], [2.3390291428906282, 48.875787501022025], [2.339041547667379, 48.8757771677851], [2.3392467886462622, 48.87576649703718], [2.339450185007457, 48.87575613322501], [2.339655425831131, 48.87574546087698], [2.339858822028861, 48.87573509637032], [2.340064062685904, 48.875724423321486], [2.34026745872016, 48.87571405812034], [2.340472699199173, 48.87570338526999], [2.340676095069948, 48.87569301937428], [2.340881335393698, 48.8756823449239], [2.341084729737617, 48.87567197832621], [2.341289971258063, 48.875661303182504], [2.341493365438476, 48.87565093589032], [2.341698606780778, 48.8756402609451], [2.34190200079778, 48.87562989295844], [2.342107241984765, 48.875619216413156], [2.342310635838241, 48.875608847732], [2.342515876858529, 48.87559817048588], [2.342719270548466, 48.875587801110235], [2.342721931539968, 48.87558783460708], [2.342918545114586, 48.875603054262044], [2.343106832826063, 48.87561845094098], [2.34330344662862, 48.875633669963364], [2.343491735927911, 48.875649066043955], [2.343688349958499, 48.87566428443376], [2.343876638107548, 48.87567968080032], [2.344064926379238, 48.87569507597125], [2.344261540750982, 48.87571029341898], [2.3442697652167412, 48.875712981620566], [2.344339571869868, 48.875760723036706], [2.344413821505052, 48.87580894380583], [2.344427157773658, 48.87581117794687], [2.344581201302589, 48.87578193146368], [2.344749533535869, 48.8757486674185], [2.344903576698898, 48.87571942051883], [2.345071908513055, 48.875686156917745], [2.345225952684747, 48.87565690870974], [2.345394282727626, 48.875623644646005], [2.345450870665176, 48.875626779791496], [2.345478336642737, 48.8756233335236], [2.345494179714651, 48.875598594866766], [2.345479923133273, 48.87546236997487], [2.345466140601464, 48.87532260426991], [2.345451884168964, 48.87518637934062], [2.345438101785324, 48.875046613597476], [2.345423846865039, 48.87491038863821], [2.345410063266328, 48.87477062284943], [2.345424079430043, 48.87476104960726], [2.3454999313488623, 48.87476255975084], [2.345579384674288, 48.874766297407405], [2.345593876666494, 48.874756179050515], [2.34556846845773, 48.87462594743856], [2.34553430583549, 48.87448650459486], [2.345508896555298, 48.874356272031726], [2.345474734269417, 48.87421682913692], [2.345464616556069, 48.8741649674771], [2.345460678701642, 48.874144601131285], [2.345408228836968, 48.87413789125596], [2.34521300931448, 48.87413818784906], [2.345019963292803, 48.87413846364036], [2.344824743754549, 48.87413876049949], [2.344631699092018, 48.874139035672094], [2.344436479549513, 48.87413933189807], [2.344243434882816, 48.87413960644452], [2.344048215335865, 48.874139902037314], [2.3438551693016922, 48.874140175950174], [2.34366212462881, 48.87414044955919], [2.343466905075509, 48.87414074420401], [2.343273860398484, 48.87414101718687], [2.343078640840761, 48.874141311198464], [2.342885594796283, 48.87414158354773], [2.342690375234351, 48.87414187692613], [2.342683373823935, 48.87414061178352], [2.342614860789609, 48.87411305665746], [2.342500779949696, 48.874068272608845], [2.342492731636047, 48.874056518122714], [2.342456517741126, 48.87405497019513], [2.342260237604212, 48.8740589479273], [2.342064948031453, 48.874063943436816], [2.341868667830825, 48.87406792052689], [2.341673378175508, 48.87407291629681], [2.34147709791107, 48.87407689274484], [2.341281808184558, 48.874081887875946], [2.341085527856524, 48.874085863681834], [2.340890238070209, 48.874090857274815], [2.340694948235069, 48.87409585144842], [2.340498667809625, 48.874099826292074], [2.340303377903314, 48.87410481982682], [2.340107097414095, 48.87410879402834], [2.339911807448122, 48.874113786025006], [2.339715526895242, 48.87411775958442], [2.339520236846624, 48.874122751841526], [2.339323956230191, 48.8741267247589], [2.339128666110433, 48.874131716377086], [2.338932385430252, 48.874135688652416], [2.338737095250881, 48.874140678732445], [2.338540814507068, 48.874144650365686], [2.338345524245061, 48.874149640706186], [2.338149243437723, 48.8741536116973], [2.338097118118049, 48.87415844701167], [2.338087907348609, 48.87417741168783], [2.338136641818207, 48.874308416148686], [2.33818283712956, 48.87443132508317], [2.338231572075498, 48.8745623294752], [2.3382777678360602, 48.87468523834477], [2.338326503258346, 48.874816242668054], [2.338372698093359, 48.87493915236444], [2.338418894521057, 48.87506206113757], [2.338467630650994, 48.87519306535862], [2.3385138275279163, 48.8753159740668], [2.338562564134217, 48.87544697821909], [2.338608760097117, 48.87556988685483], [2.338657497179682, 48.87570089093828], [2.338703694955073, 48.875823799516624], [2.338752432514117, 48.875954803531286], [2.33876755717499, 48.875961567349364], [2.338901043854648, 48.87594928491775], [2.339000989697032, 48.87594195774662], [2.339053792798781, 48.87594358301681]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 64, "zemmour_eric": 102.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "9-3", "circ_bv": "01", "num_bureau": 3, "roussel_fabien": 13.0, "nb_emargement": 1227.0, "nb_procuration": 73.0, "nb_vote_blanc": 15.0, "jadot_yannick": 102.0, "le_pen_marine": 71.0, "nb_exprime": 1208.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1500.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1226, "quartier_bv": "35", "geo_point_2d": [48.87489616547562, 2.3418742189729933], "melenchon_jean_luc": 304.0, "poutou_philippe": 6.0, "macron_emmanuel": 502.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332531995975023, 48.876752538534376], [2.332522626355515, 48.876742318391514], [2.332464557337024, 48.87672098069652], [2.332360502421016, 48.8766794751967], [2.332254561681371, 48.876640547376006], [2.332228334026457, 48.876638327203814], [2.332200935091965, 48.87667003426679], [2.332157417138282, 48.876794261493735], [2.332112323876899, 48.87691968141676], [2.332068805491739, 48.877043909482666], [2.332023711800828, 48.87716932934393], [2.33198019437065, 48.8772935564578], [2.331935100238676, 48.877418977156566], [2.331891581025142, 48.87754320420249], [2.3318464864636272, 48.87766862483942], [2.331802966830232, 48.877792851825], [2.331757873214024, 48.87791827150851], [2.331745584217674, 48.87792516646715], [2.331510383094988, 48.87793632619864], [2.331276784914203, 48.87794773094789], [2.331041583600723, 48.87795888885889], [2.33080798521599, 48.87797029269317], [2.330797233231639, 48.877974708583864], [2.330694574138672, 48.87809005995191], [2.330595053002102, 48.878205651804265], [2.330492393006129, 48.878321002974744], [2.3303928696161, 48.87843659462716], [2.33029020871711, 48.87855194560009], [2.330190685800472, 48.87866753706785], [2.330088023998455, 48.8787828878432], [2.329988498828325, 48.878898479111015], [2.32988583613484, 48.879013828789574], [2.329786310063072, 48.87912942076433], [2.329772214215801, 48.87913385021595], [2.329634092261345, 48.879118677609476], [2.32950013936763, 48.8790956140447], [2.32948373651666, 48.87910151894104], [2.329424953695416, 48.879220015224405], [2.329361925038169, 48.87934355813287], [2.329303141666688, 48.879462054330375], [2.32924011243915, 48.87958559624827], [2.329181328517325, 48.87970409235992], [2.3291182986963213, 48.87982763508584], [2.329059514224042, 48.87994613111163], [2.3290074047176033, 48.88005579167704], [2.328948619735483, 48.88017428762384], [2.328896509755666, 48.88028394901752], [2.328837725627179, 48.88040244489297], [2.328785613833674, 48.88051210530875], [2.328726829195336, 48.8806306011052], [2.328674716939923, 48.880740261449965], [2.328669006883791, 48.88075248824939], [2.328689436084456, 48.880772461892725], [2.3288653794370813, 48.88081206932597], [2.329062276873106, 48.880857297852835], [2.329238222170968, 48.88089690384352], [2.329435118888131, 48.88094213174607], [2.329611064744463, 48.88098173808502], [2.329807963469649, 48.88102696537855], [2.329983909907805, 48.88106657026725], [2.33018080791391, 48.881111796936466], [2.33035675491064, 48.881151402173415], [2.330553654924866, 48.8811966282336], [2.330729602503194, 48.881236232020306], [2.330926501798422, 48.88128145745623], [2.331102449935429, 48.8813210615912], [2.331110423367312, 48.88132122934819], [2.3312474590072902, 48.8812967146444], [2.331388894712787, 48.881269550640035], [2.331525930085596, 48.881245035616374], [2.331667365517034, 48.8812178703825], [2.331705168465485, 48.881215602846595], [2.331714403382311, 48.88119864800774], [2.33170723047943, 48.88116223893684], [2.331681424028002, 48.88103117984695], [2.331657249116209, 48.8809084693615], [2.331631442916309, 48.88077741023068], [2.33160726823998, 48.88065469970678], [2.331583095029516, 48.8805319900713], [2.331557287850938, 48.880400929972765], [2.331533114876025, 48.88027822029887], [2.331507307937329, 48.88014716105865], [2.33151621542215, 48.88013754025832], [2.331709078116289, 48.880091786891676], [2.331903401074226, 48.88004665201123], [2.332096264455107, 48.880000898024676], [2.332290586738259, 48.87995576251206], [2.332483449442399, 48.87991000789802], [2.332677771050964, 48.879864871753256], [2.332870633078359, 48.87981911651167], [2.33306495401223, 48.87977397973471], [2.333257815362873, 48.87972822386566], [2.333452135621942, 48.87968308645653], [2.333644994932468, 48.87963732995235], [2.333839314516831, 48.8795921919111], [2.333850644139364, 48.879581105008256], [2.333844984270233, 48.8795623304899], [2.333706806722331, 48.87945338150976], [2.333584518094376, 48.87935291789043], [2.333462229926698, 48.879252455036244], [2.3333240540016282, 48.87914350558372], [2.333309024386096, 48.879140803023134], [2.333104668319085, 48.87918877117023], [2.332895517210599, 48.87924039772187], [2.332691161735399, 48.87928836516637], [2.332482009817057, 48.87933999099097], [2.332464028990968, 48.87933381842472], [2.332411926158581, 48.879200828368944], [2.332361882255247, 48.87907285725138], [2.332309779956191, 48.87893986622036], [2.332259736554598, 48.87881189502976], [2.33220763476601, 48.878678904822124], [2.332157593229584, 48.8785509335661], [2.332105490610982, 48.87841794237556], [2.332055449576276, 48.87828997104659], [2.332005407424058, 48.878161999674205], [2.331953306934932, 48.878029009277405], [2.331953405922787, 48.87802426853215], [2.332008154983225, 48.877898988103325], [2.332062150285317, 48.87777706964527], [2.332116898824323, 48.877651789138646], [2.332170893615584, 48.87752987060417], [2.33222488951746, 48.87740795203948], [2.332279635913705, 48.8772826714089], [2.332333631304754, 48.877160752767814], [2.33238837717949, 48.87703547205938], [2.332442372059718, 48.876913553341915], [2.332497117413056, 48.87678827255566], [2.332531995975023, 48.876752538534376]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 94, "zemmour_eric": 74.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "9-8", "circ_bv": "01", "num_bureau": 8, "roussel_fabien": 13.0, "nb_emargement": 1198.0, "nb_procuration": 94.0, "nb_vote_blanc": 9.0, "jadot_yannick": 107.0, "le_pen_marine": 38.0, "nb_exprime": 1187.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1441.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1198, "quartier_bv": "33", "geo_point_2d": [48.87958356630781, 2.3309735096899833], "melenchon_jean_luc": 209.0, "poutou_philippe": 1.0, "macron_emmanuel": 613.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.349519317696331, 48.88944900195543], [2.349541187009066, 48.889421308241694], [2.34954163759926, 48.88937945252069], [2.349524377639228, 48.88936655777138], [2.34948839357904, 48.88936998027059], [2.349314248811727, 48.889316268890084], [2.349149317907865, 48.88926377645649], [2.348975173856747, 48.889210063678384], [2.348810242256149, 48.889157571664484], [2.348636098910095, 48.889103858388076], [2.348471169362683, 48.88905136501025], [2.348306240136554, 48.888998872301975], [2.348132097841051, 48.88894515828483], [2.348124382649485, 48.88893831918283], [2.348096326567481, 48.88881232295577], [2.3480676106469582, 48.88868087320234], [2.348039553477339, 48.88855487692501], [2.34801083784211, 48.888423427127144], [2.34798278094858, 48.888297430806965], [2.347954065598642, 48.888165980964686], [2.347926010344882, 48.88803998460908], [2.347897295280226, 48.88790853472238], [2.34786923893886, 48.88778253831651], [2.347840524159484, 48.887651088385354], [2.347812468094195, 48.88752509193667], [2.347783753600199, 48.887393641961054], [2.347755699174547, 48.88726764547699], [2.347726984965819, 48.88713619545697], [2.347698929452669, 48.88701019892264], [2.34768549268632, 48.88694868910538], [2.347687835557719, 48.88692637338134], [2.34765146789876, 48.886919066066476], [2.347474123881014, 48.88688323910496], [2.347273200171342, 48.88684521938164], [2.347095856653973, 48.886809392756696], [2.346894934869075, 48.88677137240355], [2.346717591863559, 48.88673554521594], [2.346516670639684, 48.88669752422549], [2.346339328145925, 48.88666169647524], [2.346138406119635, 48.88662367484004], [2.345961064137537, 48.88658784652718], [2.345760144036036, 48.88654982426209], [2.34558280257711, 48.886513994487295], [2.345381883036656, 48.88647597158497], [2.345204542078206, 48.88644014214675], [2.345191871179961, 48.886442687197], [2.34517672084614, 48.88648168551716], [2.345176905881988, 48.88648323786906], [2.345212899791741, 48.88662606354874], [2.3452484398722913, 48.88676768881232], [2.345284435538521, 48.886910514441], [2.345319974655519, 48.88705213873995], [2.345355970703281, 48.887194965209375], [2.345391510208872, 48.88733658945045], [2.345388508917619, 48.8873438342064], [2.345276285362162, 48.887432143343226], [2.345172563497718, 48.887518460091684], [2.345155630073249, 48.887540461240576], [2.345161589046998, 48.887547989717824], [2.345169918630146, 48.887649937967346], [2.3451699434969813, 48.88779739437124], [2.3451587243353282, 48.887804302793896], [2.345169705760367, 48.887832890383706], [2.345227461812717, 48.88794644850581], [2.345285215286797, 48.888056760904604], [2.345342969016883, 48.88816707236513], [2.345400727181442, 48.88828063037658], [2.345458481393231, 48.88839094265819], [2.345516238694327, 48.88850450058331], [2.345573994774132, 48.888614811894904], [2.345631752564158, 48.88872837064038], [2.3456400108836792, 48.88873396011383], [2.345832603475642, 48.88878026921542], [2.346025372919339, 48.88882794324612], [2.346217966190341, 48.888874252623204], [2.346410736334892, 48.888921926029454], [2.346429467996499, 48.888933755476216], [2.3464579583804372, 48.88892747810658], [2.346656239419629, 48.888941719094554], [2.3468425528252093, 48.888956223625904], [2.347040834090318, 48.888970463077364], [2.347227147694601, 48.88898496790921], [2.347413461413951, 48.88899947155164], [2.347611742999862, 48.88901371005721], [2.347798056929176, 48.88902821310088], [2.347996338718434, 48.88904245186851], [2.3480084711704903, 48.88905081780277], [2.348021657984683, 48.88918682169018], [2.348035286781518, 48.88932554482593], [2.348048473735224, 48.889461548676344], [2.348062102675509, 48.889600271774334], [2.348075288405103, 48.889736275580354], [2.3480889174886332, 48.889874998640565], [2.348091375094615, 48.88987662990516], [2.34813205683172, 48.889877323526484], [2.348283005734836, 48.88987881068865], [2.348449496643266, 48.889873859430146], [2.348456018508196, 48.88987253873615], [2.348623867838326, 48.88980456637375], [2.348800712054967, 48.8897307287343], [2.348968560478001, 48.88966275587999], [2.349145402360496, 48.88958891771456], [2.349313251240161, 48.889520944375704], [2.349490092152242, 48.889447105691666], [2.349519317696331, 48.88944900195543]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 31, "zemmour_eric": 60.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "18-19", "circ_bv": "18", "num_bureau": 19, "roussel_fabien": 29.0, "nb_emargement": 1462.0, "nb_procuration": 113.0, "nb_vote_blanc": 14.0, "jadot_yannick": 150.0, "le_pen_marine": 58.0, "nb_exprime": 1443.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1841.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1461, "quartier_bv": "70", "geo_point_2d": [48.88802136622981, 2.346849528021502], "melenchon_jean_luc": 595.0, "poutou_philippe": 19.0, "macron_emmanuel": 428.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.319832354343187, 48.8945782367984], [2.319823518486563, 48.89457492027032], [2.319811469497139, 48.894558218848836], [2.319726655228319, 48.89444065506819], [2.319646321162673, 48.89432930041497], [2.319565987440556, 48.894217945696504], [2.319481174280339, 48.894100381705535], [2.319400839912555, 48.89398902594604], [2.319316027498246, 48.89387146181356], [2.319235695188954, 48.89376010682701], [2.319150883520337, 48.89364254255301], [2.319064065508171, 48.89352219507825], [2.31897925461463, 48.89340463065718], [2.318892436020401, 48.89328428392331], [2.31880762590193, 48.89316671935515], [2.318720808112776, 48.893046371571536], [2.318636000133176, 48.89292880686412], [2.318549183137527, 48.892808458929906], [2.318464374569166, 48.89269089406765], [2.318377558366913, 48.89257054598291], [2.318292750561818, 48.89245298187289], [2.318205936516641, 48.89233263364538], [2.318121129498348, 48.892215068489016], [2.318034314882852, 48.892094720103216], [2.31794950863958, 48.89197715479982], [2.317934038810202, 48.8919556726287], [2.317926021103395, 48.891955535229044], [2.317776794955435, 48.89203801755882], [2.317631257505073, 48.89211759251498], [2.317482031801282, 48.89220007357381], [2.317336492083664, 48.892279648152204], [2.317187265448372, 48.89236212883145], [2.317041724827279, 48.892441703039864], [2.316892497248886, 48.89252418423887], [2.316746957088111, 48.89260375808506], [2.316597727226304, 48.89268623799752], [2.316452186161947, 48.89276581147366], [2.316306643289026, 48.89284538475936], [2.316157413400984, 48.89292786411272], [2.31615290386988, 48.89293268032625], [2.31609971095501, 48.893080533139475], [2.316046666370425, 48.89322797306868], [2.316042972005989, 48.89323230110282], [2.315863748519706, 48.89334882266571], [2.315687433735364, 48.893463453106854], [2.315558593648189, 48.89354721732073], [2.315415601916282, 48.893635702884275], [2.31528675960171, 48.89371946678474], [2.31514376829849, 48.8938079520176], [2.3150149251203382, 48.89389171561244], [2.31490038672422, 48.89396259174775], [2.31488703497722, 48.89397433338196], [2.314907806707649, 48.893992007027656], [2.315101242126218, 48.89403735576104], [2.315291651135259, 48.89408199439436], [2.315485087210551, 48.89412734340327], [2.31567549687778, 48.89417198142264], [2.315868933633543, 48.89421732890853], [2.316059343947132, 48.894261967213176], [2.316252781371638, 48.89430731407534], [2.3164431923434092, 48.894351951765984], [2.316636631800296, 48.89439729801217], [2.316827043442043, 48.89444193418962], [2.31701745539848, 48.89448657096172], [2.317210894491825, 48.894531916266956], [2.317401307106429, 48.89457655242507], [2.317594746868395, 48.89462189710656], [2.317785160152944, 48.894666531751454], [2.317978600571844, 48.894711876708406], [2.318169014514542, 48.89475651073928], [2.318362455613733, 48.894801854173245], [2.318552870202799, 48.89484648848937], [2.318746311970594, 48.89489183129957], [2.318936727217907, 48.894936465001706], [2.319130169654299, 48.894981807188124], [2.319320586935271, 48.89502643938474], [2.319514030028501, 48.89507178184667], [2.319704446603737, 48.89511641342152], [2.319897890377308, 48.89516175436044], [2.320088307598918, 48.895206386220515], [2.320281752041171, 48.89525172653562], [2.320299157050518, 48.89524621444957], [2.320300744356817, 48.89523025508465], [2.320232452293706, 48.8951373280418], [2.320152116071218, 48.895025973798646], [2.320068036542648, 48.894911563019704], [2.3199877010320122, 48.894800207744076], [2.31990362222933, 48.89468579682611], [2.319835335051711, 48.894591142829576], [2.319832354343187, 48.8945782367984]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 40, "zemmour_eric": 56.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "17-27", "circ_bv": "03", "num_bureau": 27, "roussel_fabien": 16.0, "nb_emargement": 1005.0, "nb_procuration": 48.0, "nb_vote_blanc": 19.0, "jadot_yannick": 76.0, "le_pen_marine": 82.0, "nb_exprime": 979.0, "nb_vote_nul": 8.0, "arr_bv": "17", "arthaud_nathalie": 7, "nb_inscrit": 1431.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1006, "quartier_bv": "68", "geo_point_2d": [48.89370711299679, 2.3176874520034634], "melenchon_jean_luc": 400.0, "poutou_philippe": 5.0, "macron_emmanuel": 251.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37713618415453, 48.89353047294869], [2.377107776009706, 48.89351972221676], [2.377021636636855, 48.89351139339545], [2.37691831605017, 48.89350251736342], [2.376875946886758, 48.89347378309982], [2.376868163637128, 48.89347442608168], [2.376826496708955, 48.89349573445402], [2.37680705884397, 48.89350926517419], [2.376822482090742, 48.89354023164219], [2.3769250986179973, 48.89363552502711], [2.377056036628384, 48.893755577297256], [2.377158653996772, 48.89385087136259], [2.377289593098114, 48.89397092245453], [2.377392211318405, 48.894066216301006], [2.37752315149985, 48.89418626711397], [2.3776257705720543, 48.89428156074159], [2.377617071260382, 48.89429561683753], [2.3774151361179072, 48.894319634756464], [2.377217691714442, 48.89434357586544], [2.377015757565478, 48.894367593116954], [2.376818312807365, 48.8943915326672], [2.376616376924318, 48.894415549237124], [2.376418931800608, 48.89443948812783], [2.3762169969113, 48.89446350403036], [2.376019551422105, 48.89448744226154], [2.375817614798628, 48.89451145748247], [2.375620168933272, 48.894535395953405], [2.37541823330345, 48.89455941050694], [2.37522078708341, 48.89458334741908], [2.375018849719536, 48.894607361290994], [2.374821403133936, 48.89463129754362], [2.374619466763741, 48.89465531074814], [2.374422019801989, 48.894679247240475], [2.3744022678610612, 48.89468976860096], [2.374406934146257, 48.894707791929456], [2.374407852904667, 48.89470863039689], [2.374534690149398, 48.89481123601749], [2.374657829148331, 48.89491098303327], [2.374784666014793, 48.89501358836305], [2.374907805960331, 48.895113336002666], [2.375034645176376, 48.895215941055866], [2.375157786079436, 48.895315688420006], [2.375284624917223, 48.895418293182374], [2.375407766788598, 48.8955180393718], [2.3755309091210313, 48.89561778632476], [2.3756577507939163, 48.895720390670746], [2.375780894083994, 48.89582013734825], [2.375907735378629, 48.89592274140339], [2.375914130564837, 48.89592562016947], [2.376123888314292, 48.89597010783022], [2.37633138409677, 48.89601113895678], [2.376538881580868, 48.89605216883007], [2.376748638999448, 48.89609665628366], [2.3769561371532, 48.8961376854308], [2.37716589528351, 48.89618217125083], [2.377373394096252, 48.89622320057108], [2.377583154291525, 48.896267685663915], [2.377594017380454, 48.89626696241486], [2.377781636088395, 48.896197369796226], [2.377955074459904, 48.896132349995625], [2.378142692200223, 48.896062756802785], [2.378316131047021, 48.89599773557913], [2.378489568085976, 48.895932714992604], [2.378677184392318, 48.895863120949734], [2.378850620542655, 48.89579809893312], [2.379038235881372, 48.89572850431605], [2.379104461322921, 48.895703675813486], [2.379169641448073, 48.89570622335428], [2.379185401118415, 48.89567517700018], [2.379292610806674, 48.89563498288173], [2.379356693697776, 48.89559936122369], [2.379385042976216, 48.895580056817515], [2.379365482877967, 48.89555989618545], [2.37925358069168, 48.89545830042217], [2.379130289231359, 48.89534727820877], [2.379018387961002, 48.89524568220598], [2.378895097494974, 48.895134660628166], [2.378783197151268, 48.89503306348666], [2.378659909054117, 48.89492204165221], [2.378548009615589, 48.89482044517053], [2.378424721170195, 48.89470942216605], [2.378312822647571, 48.89460782544488], [2.37818953519653, 48.89449680307604], [2.37807763760054, 48.89439520521614], [2.377954351154476, 48.89428418258361], [2.377842454463628, 48.89418258538348], [2.377719170397123, 48.89407156159514], [2.3776072732583042, 48.893969964148475], [2.377483990186003, 48.89385894099572], [2.3773720953375452, 48.89375734241744], [2.377248811906345, 48.893646318993966], [2.377136917963091, 48.89354472107551], [2.37713618415453, 48.89353047294869]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 24, "zemmour_eric": 65.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-41", "circ_bv": "16", "num_bureau": 41, "roussel_fabien": 12.0, "nb_emargement": 1028.0, "nb_procuration": 22.0, "nb_vote_blanc": 18.0, "jadot_yannick": 30.0, "le_pen_marine": 88.0, "nb_exprime": 1008.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1495.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1028, "quartier_bv": "74", "geo_point_2d": [48.89517662969311, 2.3770356511061848], "melenchon_jean_luc": 524.0, "poutou_philippe": 8.0, "macron_emmanuel": 225.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408246181469436, 48.85650286300952], [2.408233997238226, 48.856491677842335], [2.40809707110796, 48.856475146945535], [2.407898739307536, 48.856450887061555], [2.407721524908563, 48.856429491465974], [2.407602685521609, 48.8564149552367], [2.407599348172605, 48.85641144025745], [2.407569366332692, 48.85640871429816], [2.407489874283501, 48.85639898999784], [2.40732132467699, 48.856378998321105], [2.407122993603743, 48.85635473714933], [2.406954445654148, 48.85633474406251], [2.40675611492018, 48.85631048228167], [2.406587565881412, 48.85629048956987], [2.406389235486727, 48.856266227179994], [2.406220688104999, 48.85624623305807], [2.406215434112527, 48.85624479411326], [2.406020360915457, 48.85615601644979], [2.405827845191303, 48.85606496861481], [2.405817213961627, 48.856063461581556], [2.405661194031901, 48.85608420362697], [2.405508017765084, 48.85610404316251], [2.4054905037467282, 48.85610433567363], [2.405481893986539, 48.856116660714676], [2.405449803789261, 48.856157787587286], [2.40537783591583, 48.85625278771799], [2.405267770238146, 48.85640055647846], [2.405195800334537, 48.85649555647219], [2.405194676709577, 48.8564968009786], [2.405089858624301, 48.85659407664619], [2.404986497401473, 48.8566897757106], [2.404881678539334, 48.856787051178905], [2.40477831791411, 48.85688275005362], [2.404674955546327, 48.856978448824044], [2.404570135521829, 48.85707572399418], [2.404565326841632, 48.85707848803956], [2.404470955546108, 48.85711093988153], [2.404377224952106, 48.85714372849518], [2.404371988217113, 48.85714697604895], [2.404258957930717, 48.85726871904555], [2.404145665868711, 48.85739137705466], [2.404032635875819, 48.8575131207168], [2.403919342749605, 48.857635778484614], [2.403901487748579, 48.85764819764271], [2.403901847531082, 48.8576516556204], [2.403968766986632, 48.85769253145642], [2.404070401859241, 48.85775513745402], [2.404187907335504, 48.85782691206635], [2.404289542743736, 48.85788951697095], [2.404289768730458, 48.85788965929318], [2.40442215012065, 48.8579750293748], [2.404559838278808, 48.858063829729], [2.40469222055403, 48.85814919949848], [2.4048299082801012, 48.85823799862191], [2.404962291440356, 48.858323368079205], [2.405099980086971, 48.85841216687801], [2.405156415493012, 48.8584485597194], [2.405177604119349, 48.858459794436065], [2.405196333400382, 48.858447199573405], [2.405317131226825, 48.85836525446207], [2.405443764637328, 48.85827998815838], [2.405564561686952, 48.85819804278495], [2.405691194286137, 48.85811277620662], [2.405710716967456, 48.85811281200698], [2.405836132075372, 48.85819820974997], [2.405961911515337, 48.858283845689265], [2.406087327446655, 48.85836924315583], [2.406213109085538, 48.858454877925325], [2.406232449246831, 48.858455034145855], [2.406329639861697, 48.85839201541036], [2.406428175240813, 48.85832854010124], [2.406525365382992, 48.858265521199584], [2.406623901647249, 48.85820204572881], [2.4066435211301522, 48.85820244069553], [2.406682885734107, 48.85823109654711], [2.40671777085092, 48.85825491688227], [2.406738053597103, 48.858263616974845], [2.406755477949099, 48.85825210990156], [2.40688708661106, 48.85816860877087], [2.407022219566898, 48.85808258430538], [2.407153828736072, 48.85799908287532], [2.407288959438696, 48.85791305898803], [2.40742056775218, 48.857829557251875], [2.40755569758497, 48.85774353215096], [2.407556831802199, 48.857731404698924], [2.407434344371355, 48.857631473619655], [2.407311044297563, 48.85753041419693], [2.40718855782085, 48.857430481948725], [2.407065258699414, 48.857329422254395], [2.406942773156361, 48.857229490635795], [2.40681947498727, 48.857128430669974], [2.406822732872649, 48.857115221039315], [2.406959957730571, 48.857057003928496], [2.4071360164768922, 48.85698248685941], [2.407273240645326, 48.856924268483084], [2.407449299858073, 48.856849750950886], [2.407586521964007, 48.856791532201605], [2.407663298536096, 48.856759036678866], [2.407686987558173, 48.856750406898534], [2.407687856867167, 48.85674826985846], [2.407787138560624, 48.856706248257716], [2.407927383656367, 48.85664688122], [2.40810343963333, 48.85657236270008], [2.4082436853711853, 48.85651299529126], [2.408246181469436, 48.85650286300952]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 20, "zemmour_eric": 55.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "20-38", "circ_bv": "15", "num_bureau": 38, "roussel_fabien": 21.0, "nb_emargement": 1081.0, "nb_procuration": 45.0, "nb_vote_blanc": 2.0, "jadot_yannick": 77.0, "le_pen_marine": 70.0, "nb_exprime": 1073.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1476.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1081, "quartier_bv": "80", "geo_point_2d": [48.857284830696585, 2.405927194091825], "melenchon_jean_luc": 559.0, "poutou_philippe": 15.0, "macron_emmanuel": 203.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.371175999146482, 48.86592565010167], [2.371194981822986, 48.86591058873047], [2.371380466686619, 48.86587607147112], [2.3715805070898393, 48.86583659403687], [2.371765991434568, 48.865802076177786], [2.371966029909235, 48.86576259719007], [2.372151513724312, 48.86572807963051], [2.372351552985782, 48.865688600003004], [2.372537036292678, 48.86565408094433], [2.372737074967008, 48.86561460156912], [2.372922557754979, 48.86558008191073], [2.37312259586382, 48.86554060098923], [2.373308078132957, 48.86550608073108], [2.373508114291558, 48.865466600054745], [2.373693596041657, 48.865432079196815], [2.3738936329870333, 48.86539259788064], [2.374079114218186, 48.865358076422964], [2.374279150598033, 48.86531859356053], [2.374464631310333, 48.86528407150311], [2.374513939244619, 48.86530043012716], [2.374531676381835, 48.865283306718354], [2.374591600114928, 48.865184909876504], [2.3746779666623032, 48.86506987842712], [2.374678075128464, 48.865069245856915], [2.37461549030587, 48.865047435356864], [2.374412504642864, 48.865010130115685], [2.374206464043842, 48.864972178114805], [2.374003477603989, 48.86493487217024], [2.373797437611405, 48.86489691856339], [2.373594451757599, 48.864859611922554], [2.3733884123606632, 48.86482165760894], [2.373185427093116, 48.86478435027188], [2.372979388281012, 48.864746396150885], [2.37297131417109, 48.86473316409034], [2.373039317664019, 48.8646571238879], [2.373106716822309, 48.86458144561027], [2.373174719919659, 48.86450540532047], [2.373242117321901, 48.86442972694909], [2.373237567999491, 48.864417535914676], [2.373086869997604, 48.86435565335702], [2.372935638325562, 48.86429329115632], [2.372784941030996, 48.86423140911082], [2.372633710080946, 48.86416904652164], [2.372483013515248, 48.86410716318978], [2.372331783287397, 48.86404480021201], [2.372181087428803, 48.86398291739234], [2.372029859286102, 48.86392055403323], [2.372026111558399, 48.863907591917474], [2.372150345074333, 48.86379639687382], [2.3722725411637873, 48.86368693213554], [2.3723967736274503, 48.86357573681396], [2.372518968670722, 48.863466272701565], [2.372643200082228, 48.86335507710205], [2.372765395453206, 48.86324561272335], [2.372889625812565, 48.863134416845895], [2.373011818796001, 48.86302495128738], [2.373136048103225, 48.86291375513196], [2.373258240040523, 48.86280429019935], [2.373380432838079, 48.86269482423902], [2.373504660571457, 48.86258362766784], [2.3736268509598712, 48.862474162326286], [2.373751077641144, 48.86236296547718], [2.373873266994373, 48.86225349986219], [2.373997492623447, 48.86214230273519], [2.374016993531499, 48.862133162174544], [2.374017299242821, 48.86212677752703], [2.37413089674018, 48.862021906409495], [2.374243148064824, 48.86191774671426], [2.374356744641097, 48.86181287626191], [2.374468995063843, 48.86170871633521], [2.374582590729641, 48.861603845648666], [2.374694838898399, 48.861499684584096], [2.374808435016825, 48.86139481367055], [2.374920682272813, 48.86129065327376], [2.375034276117893, 48.86118578211896], [2.375146523835102, 48.86108162149785], [2.375144904080401, 48.861069953926346], [2.375038848575754, 48.86100209310948], [2.37493945179676, 48.86093979974631], [2.374924908817715, 48.860928837207936], [2.374906965670246, 48.860932819319764], [2.374752479002321, 48.86102137125323], [2.374597745958081, 48.861109964863964], [2.374443258239316, 48.86119851638409], [2.374288524143149, 48.86128710958083], [2.374134035373538, 48.86137566068763], [2.373979300225538, 48.86146425347043], [2.373824810404975, 48.86155280416388], [2.373670074205036, 48.8616413965327], [2.373515583333614, 48.86172994681283], [2.37336084608173, 48.861818538767686], [2.373206354159547, 48.86190708863449], [2.37305161585561, 48.86199568017534], [2.373037644659418, 48.861997243790476], [2.372923727650576, 48.861968579284195], [2.372783250733758, 48.86193170384946], [2.372778343143363, 48.86192665438769], [2.372756101251971, 48.861924449535756], [2.372711529410611, 48.86191275016691], [2.372521667655744, 48.861861717976474], [2.3723366196396842, 48.86181314255666], [2.372297719706154, 48.861802686895025], [2.37227731594133, 48.86180042864038], [2.372265270583563, 48.86181490517113], [2.372193506510968, 48.86192236828838], [2.372105065396368, 48.862055808670625], [2.372033299298475, 48.86216327166134], [2.3719448573537463, 48.86229671279545], [2.371873091967407, 48.8624041747746], [2.371784649203275, 48.86253761576135], [2.3717128817807662, 48.86264507851318], [2.371624438197422, 48.862778519352474], [2.371552671486467, 48.86288598109274], [2.3715510671007882, 48.86288779114195], [2.3714256645649052, 48.86299754775409], [2.371308119138107, 48.86309978831333], [2.37129255266552, 48.86310960561921], [2.3712943765587, 48.8631185232043], [2.371213377993048, 48.8632383894329], [2.371132963226162, 48.863354691865226], [2.371051963921945, 48.86347455795903], [2.37097154843018, 48.86359086025806], [2.370890548387388, 48.86371072621706], [2.370810132170733, 48.863827028382886], [2.370729131389359, 48.86394689420708], [2.370648714447805, 48.86406319623963], [2.370635650571101, 48.8640806602407], [2.370639157771894, 48.86408619885386], [2.370760904002153, 48.86413370020408], [2.370868431143181, 48.86417740789702], [2.3708735253613042, 48.86418901641903], [2.3707800242692, 48.86431508854892], [2.370687842990452, 48.86443917998546], [2.370594342373849, 48.86456525104967], [2.370502160210266, 48.86468934231516], [2.370408658695332, 48.86481541320581], [2.3703164756468, 48.86493950430023], [2.370222973233521, 48.86506557501737], [2.3701307892999273, 48.865189665940726], [2.370037285988392, 48.86531573648435], [2.369945101169826, 48.86543982723664], [2.369851595596824, 48.86556589759949], [2.369759409893271, 48.86568998818071], [2.369748844703977, 48.86570570340949], [2.369757765705138, 48.8657128785728], [2.369789119939374, 48.86572132751718], [2.369953577735347, 48.8657636080821], [2.37012155351625, 48.865808871164056], [2.370286013221396, 48.86585115127599], [2.37045398958428, 48.865896412988526], [2.370618448472584, 48.86593869263317], [2.370786425406568, 48.86598395387552], [2.370794650982769, 48.86598439013168], [2.370956609597815, 48.86595967588021], [2.371142094794267, 48.865925158991864], [2.371175999146482, 48.86592565010167]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 43, "zemmour_eric": 51.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "11-24", "circ_bv": "07", "num_bureau": 24, "roussel_fabien": 18.0, "nb_emargement": 1341.0, "nb_procuration": 107.0, "nb_vote_blanc": 12.0, "jadot_yannick": 154.0, "le_pen_marine": 44.0, "nb_exprime": 1327.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1828.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1341, "quartier_bv": "42", "geo_point_2d": [48.86400771384241, 2.37221574176859], "melenchon_jean_luc": 436.0, "poutou_philippe": 6.0, "macron_emmanuel": 526.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.275767169851129, 48.86828932154005], [2.27573970782821, 48.868283492163584], [2.275589029542486, 48.868317003780454], [2.275472439840227, 48.86834546576755], [2.275464670695988, 48.868349875012974], [2.275363157850106, 48.868480098684365], [2.275260364544299, 48.86861217345849], [2.275158850676629, 48.8687423969257], [2.275056056335221, 48.868874471493015], [2.275039240106052, 48.868878807925626], [2.274833617020681, 48.868829104482565], [2.274630025929808, 48.868777320211215], [2.274424404998563, 48.868727616068846], [2.274220814711237, 48.868675831096766], [2.274204530376947, 48.86867927038977], [2.274085738013946, 48.86879808066383], [2.273970467833834, 48.868913464071944], [2.273851674390484, 48.869032274987795], [2.273736403173682, 48.869147658146034], [2.273731897841479, 48.86915047364987], [2.273550469168625, 48.869219713395275], [2.273361845344063, 48.86929242113991], [2.273180415697396, 48.86936165941619], [2.272991789479147, 48.86943436656004], [2.272810358833774, 48.86950360516581], [2.272621731584914, 48.86957631171713], [2.272440299953279, 48.86964554975308], [2.272251673049768, 48.86971825482096], [2.272209903890029, 48.869748558912605], [2.272687764169539, 48.87032543745933], [2.273938437998657, 48.87166384320998], [2.277075670721282, 48.87597752256493], [2.277100542914968, 48.87596444703146], [2.277249514482622, 48.87587269715489], [2.277397556378483, 48.87578148467974], [2.277546528262974, 48.8756897344266], [2.277694569131022, 48.87559852066976], [2.277843538605651, 48.87550677002356], [2.277991578421154, 48.87541555678355], [2.278140548225088, 48.87532380486149], [2.278288587000419, 48.875232591239055], [2.278436623906368, 48.87514137651855], [2.278585592129576, 48.875049624919086], [2.2787336293462452, 48.87495841072364], [2.278882595159736, 48.87486665873116], [2.279030631348702, 48.87477544325404], [2.279179597479039, 48.87468369088498], [2.279179984026643, 48.87468344319505], [2.279315214378995, 48.87459338234494], [2.279451543582807, 48.87450250325367], [2.27958677437159, 48.87441244119095], [2.279723102627994, 48.8743215617755], [2.279858331101702, 48.87423150028229], [2.27999465842324, 48.87414061964344], [2.280129887320843, 48.87405055783689], [2.280266212331676, 48.873959676865645], [2.280401440290069, 48.87386961473759], [2.280537765716717, 48.873778733450415], [2.280672992735804, 48.8736886710008], [2.280809315851868, 48.87359778938127], [2.2809445419315573, 48.87350772661015], [2.281080865451129, 48.87341684557395], [2.281080939853807, 48.87340424440534], [2.280935080019567, 48.87330547463531], [2.280790261144726, 48.87320807613508], [2.280644403774295, 48.873109306001474], [2.280499586000722, 48.87301190623303], [2.280353728367524, 48.8729131357195], [2.280208913033749, 48.87281573648957], [2.280205606094478, 48.87280681488617], [2.280269883960966, 48.87266784965873], [2.280333184306612, 48.87253142455082], [2.280397461492999, 48.87239245922021], [2.280460761157412, 48.872256034910095], [2.280467257466804, 48.87223699164728], [2.280453648975437, 48.872230739433455], [2.280309519434989, 48.872153393489505], [2.280169849677851, 48.872076847621216], [2.280030181694365, 48.87200030159284], [2.279886053407914, 48.87192295602212], [2.279746386254218, 48.87184640965194], [2.279602258827425, 48.87176906282946], [2.279462592503415, 48.8716925161175], [2.279318465923844, 48.87161516894257], [2.279313446634129, 48.871607840527815], [2.279322039420209, 48.87146340959374], [2.279329645673513, 48.87131696715826], [2.279338238366693, 48.87117253618499], [2.27934584453188, 48.87102609370991], [2.279354437132162, 48.87088166269746], [2.279362044572557, 48.87073522019101], [2.279345137590842, 48.87071643896461], [2.279339357826216, 48.87071510910639], [2.279143311234665, 48.87076709977547], [2.278949669995774, 48.870819225125835], [2.278753622610973, 48.87087121605106], [2.278559980595183, 48.87092334076608], [2.278363931078808, 48.87097533014066], [2.278170288285922, 48.87102745422037], [2.277974239351986, 48.871079442959996], [2.277780595782213, 48.871131566404344], [2.277763096102895, 48.871127048618916], [2.277682311885846, 48.87101304559526], [2.277600097155414, 48.87089663890876], [2.277519313652439, 48.87078263575137], [2.277437099650025, 48.870666228928634], [2.277356318224329, 48.87055222564565], [2.277274103586511, 48.87043581867844], [2.277193322874862, 48.87032181526172], [2.277111108977531, 48.87020540725901], [2.277030328967444, 48.87009140460777], [2.276948117161113, 48.86997499647712], [2.276867336501955, 48.86986099368384], [2.27678512542351, 48.869744585416946], [2.276704346853954, 48.86963058159893], [2.276622135127807, 48.86951417408684], [2.276622064291189, 48.86951407203238], [2.276551544341494, 48.869411214549565], [2.2764693346662073, 48.8692948069177], [2.276398815314921, 48.86919194932452], [2.276316606326973, 48.86907554156464], [2.276246087586585, 48.86897268296177], [2.276163879285969, 48.86885627507392], [2.276093361131481, 48.868753417259974], [2.2760111521550233, 48.86863700923587], [2.2759325166699442, 48.86852971967433], [2.275850309781504, 48.86841331062521], [2.275771674965379, 48.86830602093628], [2.275767169851129, 48.86828932154005]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 150, "zemmour_eric": 259.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-53", "circ_bv": "04", "num_bureau": 53, "roussel_fabien": 4.0, "nb_emargement": 1157.0, "nb_procuration": 61.0, "nb_vote_blanc": 6.0, "jadot_yannick": 26.0, "le_pen_marine": 56.0, "nb_exprime": 1147.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1488.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1157, "quartier_bv": "63", "geo_point_2d": [48.872059242247566, 2.276693459840336], "melenchon_jean_luc": 92.0, "poutou_philippe": 2.0, "macron_emmanuel": 527.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294458479574836, 48.884378342392495], [2.2944473150460762, 48.88439295013759], [2.294443025552731, 48.88441303487125], [2.294446038517778, 48.88442003415769], [2.294481255417309, 48.884448002330764], [2.294519192543918, 48.884457876629995], [2.294533099032483, 48.884453563525135], [2.294613420934094, 48.884501348941505], [2.294635843071948, 48.884514688660786], [2.294637455861916, 48.88452690212551], [2.294506369466816, 48.884637583344144], [2.294360059113721, 48.884755862194055], [2.294228970176903, 48.88486654397716], [2.294082658550455, 48.88498482246346], [2.2939515698234683, 48.885095503028595], [2.293830202896893, 48.88518833864762], [2.293699113121014, 48.88529901891588], [2.293577745270051, 48.88539185426182], [2.293577005222203, 48.88540298004624], [2.293675901321252, 48.88549358857449], [2.293750229983498, 48.885555194293], [2.293763670829762, 48.885558796263474], [2.29394287801546, 48.88553790855589], [2.294121224570908, 48.88551712072864], [2.294300431469866, 48.88549623248512], [2.29447877772766, 48.885475445023765], [2.294657984339669, 48.88545455624429], [2.294836330324275, 48.885433767350285], [2.295015536649426, 48.88541287803486], [2.295193883712055, 48.88539208861554], [2.295373088386736, 48.88537119875616], [2.295551435163872, 48.88535040880347], [2.29573064090323, 48.88532951931543], [2.2959089860312663, 48.88530872882129], [2.295914612332492, 48.885308850941406], [2.296089063699909, 48.88533710940147], [2.296284951939788, 48.885368840021236], [2.296459403721284, 48.88539709704091], [2.296655293776083, 48.88542882706104], [2.296829745947352, 48.885457084438876], [2.29698493867915, 48.88548222200757], [2.296990634090703, 48.88548702461185], [2.297012819835487, 48.88548673758465], [2.297053516253145, 48.88549332941098], [2.2972881685642372, 48.88553133666981], [2.297484059628983, 48.88556306533019], [2.297503948519504, 48.88556371892738], [2.297511705747962, 48.88555316760121], [2.297636465861502, 48.88547575469329], [2.29776062190899, 48.885398714929686], [2.29788537991885, 48.88532130174354], [2.298009535217722, 48.885244262610264], [2.2981342938511258, 48.88516684916185], [2.298258448425631, 48.88508980886041], [2.298262360215484, 48.88508115232249], [2.298221697368732, 48.88496988230319], [2.298180769071304, 48.884857882241754], [2.298140106585351, 48.88474661127287], [2.298099178638882, 48.8846346111608], [2.298105620380007, 48.884624714885675], [2.298266884783128, 48.88456334893856], [2.298427793789937, 48.884502118288594], [2.29858905607017, 48.884440751892775], [2.298749964331562, 48.88437951990377], [2.298911227216074, 48.88431815307513], [2.299072134719728, 48.88425692064635], [2.2992333968449348, 48.88419555337695], [2.299394303578852, 48.88413432140759], [2.299555563581181, 48.884072953689476], [2.299716470933238, 48.88401172038906], [2.299877730176163, 48.883950352230194], [2.3000386354070113, 48.883889118482], [2.300045455689904, 48.88388146095533], [2.300047123383064, 48.88380618745047], [2.300048611210506, 48.883739121111766], [2.300042578670279, 48.88371384153399], [2.300030225298614, 48.88371222425572], [2.299871552229367, 48.88363708882019], [2.299713906924926, 48.88356374255796], [2.299555233401018, 48.88348860668511], [2.29939758897948, 48.88341526089577], [2.299238916364266, 48.88334012459355], [2.299081272849818, 48.88326677747857], [2.298922601131295, 48.883191641646256], [2.298764958511839, 48.88311829410487], [2.298606289077759, 48.88304315695199], [2.298448645989849, 48.882969808976235], [2.29828997745244, 48.88289467229324], [2.298132335259417, 48.88282132389113], [2.297973667642909, 48.88274618587954], [2.297816026344876, 48.882672837051075], [2.29765735962502, 48.88259769950944], [2.297499719222073, 48.882524350254585], [2.297342080626516, 48.88245100079527], [2.297183413915058, 48.88237586170314], [2.2971464713416783, 48.88235440882127], [2.297130559181344, 48.882363715260944], [2.297072834091519, 48.88240709845321], [2.296939733051683, 48.882508200830316], [2.296810434484607, 48.88260537550567], [2.296677332440734, 48.88270647667362], [2.2965480315282, 48.8828036510401], [2.296414928468139, 48.8829047518981], [2.296285627937219, 48.883001925971676], [2.29615252384881, 48.883103027419], [2.296023220972405, 48.88320020118369], [2.295979160830817, 48.88323366716709], [2.2959616239997658, 48.883241669750205], [2.295956198642404, 48.88325090819144], [2.2958671536201702, 48.88331854332723], [2.295744223130824, 48.88341048864948], [2.295611116959237, 48.883511588558086], [2.295488185549971, 48.883603534500544], [2.295355078387895, 48.88370463410676], [2.295232147434428, 48.88379657977824], [2.295099039281857, 48.88389767908205], [2.294976106057053, 48.88398962446649], [2.294842996913977, 48.884090723467885], [2.294720062781389, 48.884182668573295], [2.294597129590354, 48.884274612653535], [2.294464018983086, 48.884375711207454], [2.294458479574836, 48.884378342392495]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 146, "zemmour_eric": 261.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 26.0, "date_tour": "2022-04-10", "id_bvote": "17-41", "circ_bv": "04", "num_bureau": 41, "roussel_fabien": 6.0, "nb_emargement": 1305.0, "nb_procuration": 99.0, "nb_vote_blanc": 8.0, "jadot_yannick": 51.0, "le_pen_marine": 58.0, "nb_exprime": 1290.0, "nb_vote_nul": 5.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1599.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1303, "quartier_bv": "66", "geo_point_2d": [48.88416257582846, 2.296878361201877], "melenchon_jean_luc": 106.0, "poutou_philippe": 1.0, "macron_emmanuel": 608.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.362614196105643, 48.87426986784615], [2.362578217124672, 48.87427680979668], [2.362433269118466, 48.87430880157016], [2.362252927166756, 48.87434848098901], [2.362062641931803, 48.874390478694814], [2.361882300778181, 48.87443015755964], [2.361692014945999, 48.87447215467314], [2.361511671864013, 48.87451183296945], [2.361321385434608, 48.874553829490715], [2.36114104178749, 48.8745935072257], [2.36113912239905, 48.874594040180774], [2.360974751367042, 48.87464977870849], [2.360786850523814, 48.87471372460963], [2.360622478737132, 48.87476946264758], [2.360434577029754, 48.874833407988824], [2.360270204499445, 48.87488914463774], [2.360082300553428, 48.874953090311095], [2.359917927268453, 48.875008826470236], [2.359730023832478, 48.8750727706917], [2.359565649781783, 48.87512850726038], [2.359377745481663, 48.87519245092194], [2.359213370676299, 48.87524818700086], [2.359206599197314, 48.87525888611932], [2.35925719123242, 48.875364864801], [2.359308180079812, 48.87546620050762], [2.359358772522981, 48.87557217912646], [2.35940976177086, 48.87567351477078], [2.359460355985462, 48.87577949333404], [2.359511345622979, 48.87588082981535], [2.359512847247879, 48.87593012859127], [2.359521771040681, 48.87593499856983], [2.359708246792278, 48.87590350496304], [2.359863876053234, 48.87587943740431], [2.360050351399046, 48.875847943263], [2.360205980335898, 48.875823875258334], [2.360218187808973, 48.87582593072987], [2.360378653430559, 48.87592070755914], [2.360513085151783, 48.876001795715595], [2.360516696934905, 48.876005235179356], [2.360589197649797, 48.8761281846705], [2.36066251461234, 48.876253531590464], [2.360735016028115, 48.876376480066384], [2.36080833231679, 48.876501827760784], [2.360880834422415, 48.876624776120686], [2.360954152785867, 48.87675012280558], [2.36102665557032, 48.876873071948765], [2.361099973270947, 48.87699841850885], [2.361172478119703, 48.87712136664401], [2.361245796509673, 48.87724671398583], [2.361318300684908, 48.87736966199773], [2.361391621149799, 48.87749500832997], [2.361464126003999, 48.87761795712513], [2.361537445805972, 48.877743303332586], [2.36160995134997, 48.87786625201172], [2.361683273215867, 48.87799159810891], [2.361704342455673, 48.87800133960642], [2.361754373220765, 48.87798007002849], [2.361925308223232, 48.877917429877805], [2.362099822728064, 48.87785194417988], [2.362270756894642, 48.877789303528644], [2.3624452719102322, 48.8777238164275], [2.362616205240816, 48.87766117527573], [2.362790718018307, 48.877595688555395], [2.3629616505128, 48.87753304690316], [2.363136162437619, 48.87746755877234], [2.363142418673732, 48.877457027588086], [2.363116545723171, 48.87740314399144], [2.363084538067805, 48.87735041576659], [2.363090224165428, 48.877339343749235], [2.363274148534752, 48.877267175776026], [2.363449190836029, 48.87719600531469], [2.363633114201774, 48.877123836780584], [2.363808156905179, 48.87705266489307], [2.363813435588781, 48.87704869990535], [2.36385647776684, 48.876985602970244], [2.363888660225885, 48.87692348164569], [2.363894646348399, 48.87691863816693], [2.364058909281366, 48.87685488298584], [2.364213824017449, 48.87679078654556], [2.364378084793097, 48.87672703091187], [2.36453299875611, 48.876662934051076], [2.364697258737835, 48.876599177972054], [2.364852171927879, 48.87653508069084], [2.364876063880095, 48.87652712603912], [2.364877347410719, 48.87652372887051], [2.364817562814375, 48.876453072969426], [2.364746551801198, 48.876370340559255], [2.364652425316546, 48.876259095241736], [2.364581414830047, 48.87617636271904], [2.364581071000956, 48.87617593550896], [2.364488137044785, 48.87605260751835], [2.36439573378955, 48.875930070973496], [2.364303329605732, 48.87580753433649], [2.364210396953565, 48.875684206988346], [2.364117995016309, 48.8755616692889], [2.364025063241666, 48.87543834176938], [2.363932662165633, 48.8753158047988], [2.363839731279485, 48.87519247620869], [2.363747331075643, 48.87506993906776], [2.36365439969277, 48.87494661119832], [2.363562000372098, 48.87482407298776], [2.36346907122996, 48.8747007449542], [2.363376672770468, 48.87457820747256], [2.363283744516802, 48.874454878368354], [2.363191346929466, 48.87433234071637], [2.363098419542275, 48.874209012340096], [2.363086560382039, 48.87416009821611], [2.363083470638375, 48.87415967707521], [2.363034437292676, 48.8741721975324], [2.362844153331884, 48.87421419648721], [2.362662736809342, 48.874260520493095], [2.362617400190825, 48.87427052703258], [2.362614196105643, 48.87426986784615]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 38, "zemmour_eric": 70.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "10-19", "circ_bv": "05", "num_bureau": 19, "roussel_fabien": 21.0, "nb_emargement": 941.0, "nb_procuration": 52.0, "nb_vote_blanc": 5.0, "jadot_yannick": 67.0, "le_pen_marine": 56.0, "nb_exprime": 931.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1235.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 941, "quartier_bv": "40", "geo_point_2d": [48.87593919901745, 2.362188108837981], "melenchon_jean_luc": 371.0, "poutou_philippe": 7.0, "macron_emmanuel": 263.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3993479559070803, 48.870691334309], [2.399377088593287, 48.870707727892075], [2.399555247889106, 48.870761897475894], [2.399718932320088, 48.87081107663336], [2.399882615697006, 48.87086025555794], [2.400060776040214, 48.87091442438191], [2.400095637670555, 48.87092489829611], [2.400112628115851, 48.870937832251116], [2.400130251928209, 48.870934834956486], [2.400259075746173, 48.87097353856476], [2.400466885230884, 48.87103523257391], [2.40063057001833, 48.87108441046578], [2.400838380395797, 48.8711461029245], [2.40100206724552, 48.87119528031019], [2.401007487336615, 48.87120871292003], [2.400974884638088, 48.871238637013654], [2.400943291568769, 48.87127050511669], [2.400949140455425, 48.871283637697815], [2.401121031564983, 48.871334296705946], [2.401280505721018, 48.87138094437634], [2.401439978799424, 48.87142759182546], [2.4016118708717142, 48.871478249222875], [2.401771344544771, 48.8715248962264], [2.40194323862358, 48.871575553150315], [2.401958901747922, 48.87157341724645], [2.401966163410373, 48.8715572124447], [2.402002082069803, 48.871431391520964], [2.402037917523932, 48.87130591550185], [2.402073835826433, 48.871180095427235], [2.402109670934937, 48.871054619358084], [2.402145588901162, 48.87092879833402], [2.402181423663944, 48.87080332221486], [2.4022173412835732, 48.87067750114064], [2.402253174337404, 48.870552024964674], [2.402289091610446, 48.87042620384029], [2.402324925681803, 48.87030072762109], [2.402360842608261, 48.870174906446586], [2.402396676323594, 48.870049431076644], [2.402398926500565, 48.8700459178144], [2.402542335423448, 48.86991156968187], [2.4026843768610022, 48.8697789511583], [2.402693749407677, 48.86976669951133], [2.402685844823637, 48.86975817033365], [2.402589181878187, 48.86963826688276], [2.40249199550028, 48.869519823046254], [2.402394810927538, 48.86940137912496], [2.402298147950967, 48.869281475393585], [2.402200964263664, 48.86916303128937], [2.402104302175472, 48.8690431273756], [2.402103770493857, 48.86904253475488], [2.401994069779432, 48.868930316087855], [2.401886525006229, 48.868820693673314], [2.401778980685763, 48.868711071151274], [2.401669281358715, 48.86859885305219], [2.401561737953306, 48.868489230312974], [2.40145203957185, 48.86837701109303], [2.401411010951338, 48.86835382604623], [2.401397326768789, 48.868360118620956], [2.401365266462144, 48.86839153760099], [2.40136477933644, 48.86839205138416], [2.401271246870886, 48.86849912447956], [2.401169032154626, 48.86861551345558], [2.401075497522303, 48.868722586369515], [2.40097328329329, 48.86883897516167], [2.40087974785747, 48.86894604790102], [2.400777531389419, 48.86906243649567], [2.400683995149989, 48.869169509060384], [2.400669493734132, 48.86918602111521], [2.400669461956857, 48.86918605782888], [2.400669401180437, 48.86918612677348], [2.400568480242503, 48.86930227703654], [2.400461232014721, 48.86942256843248], [2.400360310144189, 48.869538719394434], [2.400253059596029, 48.869659009672006], [2.400152136803233, 48.86977516043359], [2.400044886640396, 48.86989545140503], [2.3999439629356862, 48.87001160106695], [2.399836710442083, 48.87013189181928], [2.399735785804727, 48.87024804218011], [2.399628533717154, 48.87036833182774], [2.399527608157503, 48.87048448198821], [2.399420353728764, 48.87060477231598], [2.399349754011362, 48.870686021064735], [2.3993479559070803, 48.870691334309]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 49, "zemmour_eric": 93.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "20-22", "circ_bv": "15", "num_bureau": 22, "roussel_fabien": 16.0, "nb_emargement": 1219.0, "nb_procuration": 61.0, "nb_vote_blanc": 10.0, "jadot_yannick": 96.0, "le_pen_marine": 71.0, "nb_exprime": 1207.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1607.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1221, "quartier_bv": "78", "geo_point_2d": [48.870091448451454, 2.401216068626212], "melenchon_jean_luc": 500.0, "poutou_philippe": 5.0, "macron_emmanuel": 315.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.272031383195794, 48.86394755543648], [2.272071527639071, 48.8639699857587], [2.272150230066941, 48.863989762747785], [2.272364986983118, 48.86403796000977], [2.272524419000087, 48.86407802410829], [2.272683849911882, 48.86411808708544], [2.272898609213766, 48.864166283392585], [2.272901377819648, 48.86416676697713], [2.273117941211245, 48.86418886023754], [2.273299745170684, 48.86420495561225], [2.273516308877527, 48.86422704905036], [2.273698113093308, 48.86424314381943], [2.273879916045937, 48.8642592392031], [2.2740964815999503, 48.86428133069927], [2.274278284808916, 48.86429742547723], [2.274494850690594, 48.86431951625181], [2.274498551040905, 48.864319558469234], [2.274687114795665, 48.86430791260523], [2.274888660290391, 48.86429201201783], [2.275077223858237, 48.864280365538924], [2.275278769114811, 48.864264465193486], [2.275467332495839, 48.86425281809965], [2.275668877539173, 48.864236916197605], [2.275761824161512, 48.86423117513637], [2.275788866506544, 48.86423164186134], [2.275807234445597, 48.86422637578014], [2.275902851003395, 48.864220469096345], [2.276098614448198, 48.8641949713737], [2.27626504252652, 48.864167244512636], [2.276460805581662, 48.86414174709562], [2.276627233297186, 48.86411401972957], [2.27682299598744, 48.864088520819614], [2.276989421977111, 48.864060792940364], [2.276999060417965, 48.86405953811338], [2.277165487584386, 48.864031809996796], [2.277351611267612, 48.86400756596], [2.277377603675678, 48.86399537119709], [2.2773584093286052, 48.86394948185071], [2.277248908066249, 48.863848621934785], [2.2771490397071252, 48.86375705104649], [2.277039539254572, 48.863656190921475], [2.276939670256822, 48.86356462073362], [2.276830170614065, 48.86346376039951], [2.27673030372861, 48.86337218913001], [2.276620804895742, 48.86327132858683], [2.27652093737165, 48.86317975801773], [2.276519085249757, 48.86317737702518], [2.276471249910388, 48.863083711575385], [2.276425962296952, 48.862993390008526], [2.276380673490022, 48.862903067509656], [2.276332840014276, 48.86280940198961], [2.276330318538863, 48.86280280797065], [2.276304061807933, 48.86279647333432], [2.276156452768875, 48.86273053127986], [2.2759928481165232, 48.86265634951971], [2.275987623129514, 48.86265175548791], [2.275930927992421, 48.862538357406244], [2.275872488782898, 48.86242178930103], [2.27581579413406, 48.862308392040575], [2.275757355440095, 48.86219182385494], [2.275700659941715, 48.86207842560884], [2.275642221763204, 48.861961857342834], [2.275585528116162, 48.861848459926215], [2.275527090453298, 48.86173189157976], [2.275470397319495, 48.861618493185816], [2.275411960172171, 48.861501924758954], [2.275393957254495, 48.86149639894073], [2.27519907497523, 48.86154783284636], [2.275007118956953, 48.861600530667936], [2.274812237269162, 48.86165196394702], [2.27462027912558, 48.8617046602356], [2.274425396666391, 48.86175609287993], [2.27423343773525, 48.86180878944237], [2.274038554504663, 48.861860221451956], [2.273846594798686, 48.861912917388935], [2.2738456893183923, 48.861913141230126], [2.27369059538085, 48.86194763642556], [2.273518030083136, 48.861985784663716], [2.273362937075388, 48.862020279440564], [2.273190371297143, 48.86205842720374], [2.27303527649321, 48.862092921545425], [2.272862710234335, 48.86213106883366], [2.272849161114399, 48.86212482053411], [2.272790760065486, 48.86214832284892], [2.272736959326859, 48.8621699743396], [2.272736747676963, 48.86217273497117], [2.272665390600432, 48.86230703540607], [2.272597410506254, 48.86244009541543], [2.272526051341437, 48.862574395726604], [2.272458070555078, 48.86270745472546], [2.272386710652302, 48.86284175582041], [2.272318729161196, 48.862974814708004], [2.272318238692057, 48.86297606542509], [2.272286518555294, 48.86309359707275], [2.272254978876249, 48.86320708000781], [2.272223439047238, 48.86332056382225], [2.272191717136389, 48.863438094500616], [2.272160177029718, 48.86355157827471], [2.272128456198522, 48.8636691089201], [2.272096915814191, 48.86378259265384], [2.272065194699719, 48.86390012325797], [2.272031383195794, 48.86394755543648]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 215, "zemmour_eric": 248.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-1", "circ_bv": "14", "num_bureau": 1, "roussel_fabien": 3.0, "nb_emargement": 1247.0, "nb_procuration": 113.0, "nb_vote_blanc": 12.0, "jadot_yannick": 40.0, "le_pen_marine": 58.0, "nb_exprime": 1233.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1524.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1247, "quartier_bv": "62", "geo_point_2d": [48.863143648265314, 2.274485995734181], "melenchon_jean_luc": 70.0, "poutou_philippe": 0.0, "macron_emmanuel": 565.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346606441213742, 48.88209903325102], [2.346598222733896, 48.88208762715012], [2.346576362551041, 48.881955067862116], [2.346554653136139, 48.88182343388886], [2.346532793175184, 48.88169087456107], [2.346511083980539, 48.88155924054833], [2.346489224230095, 48.88142668208], [2.346467515255704, 48.88129504802775], [2.346445655738233, 48.881162488620426], [2.346423946984195, 48.88103085452872], [2.346402087677226, 48.88089829598087], [2.346380380506827, 48.88076666185709], [2.346358520069537, 48.88063410236277], [2.346336813119377, 48.880502468199495], [2.346336433169264, 48.880501126119896], [2.346301200499775, 48.880413872081775], [2.346234138150268, 48.88024779039459], [2.346198905823547, 48.880160536306306], [2.346209164057531, 48.880149437006466], [2.346425034134406, 48.88011826040579], [2.346640540597287, 48.88008713539191], [2.3468564087943102, 48.88005595800425], [2.347071916105049, 48.88002483221957], [2.347287783785484, 48.8799936540523], [2.347503290580593, 48.87996252748933], [2.347513790494226, 48.87995213806878], [2.347466521624659, 48.87978021760962], [2.347421295285922, 48.87961572503559], [2.347413153587642, 48.87957002511994], [2.347402427079671, 48.8795692309941], [2.347263734788022, 48.879579282162986], [2.347069668292501, 48.8795944199794], [2.346842481164784, 48.87961088406737], [2.346648414440347, 48.87962602030127], [2.346623906520651, 48.87961980525822], [2.346588361604943, 48.879629066847585], [2.346454443393625, 48.87963754322334], [2.346260377809252, 48.87965267973454], [2.346126460847202, 48.87966115575072], [2.346123044183099, 48.87966167039395], [2.345928978423804, 48.87967680546834], [2.3457327576532, 48.879724541862515], [2.345581073641178, 48.879770987135174], [2.345579604385804, 48.8797713703135], [2.345383384302253, 48.87981910613842], [2.345209060063521, 48.879857044458], [2.345012837953977, 48.879904779664415], [2.344838513169964, 48.879942716542246], [2.344642290398003, 48.879990451137644], [2.344467965057209, 48.880028387472954], [2.344418190199044, 48.880039218976506], [2.344412781621514, 48.88003765419766], [2.344371857351806, 48.880046766059905], [2.344247305209575, 48.880073870580645], [2.344090082797, 48.880109166973014], [2.34391575664537, 48.88014710339942], [2.343758535150392, 48.880182399361516], [2.343754590411022, 48.88018434637768], [2.343765283983349, 48.88021589513161], [2.343825881223249, 48.88033204064589], [2.343886562592281, 48.88044834845674], [2.343947160373123, 48.88056449388511], [2.344007842283852, 48.88068080160992], [2.344068440594317, 48.88079694785167], [2.344129123058077, 48.8809132545912], [2.344189721909498, 48.88102940074704], [2.344250404903645, 48.88114570829979], [2.344311004307356, 48.881261853470455], [2.3443716878432213, 48.881378160937174], [2.34437187679905, 48.88138362271431], [2.34431080721511, 48.881520643193845], [2.344250013765317, 48.88165704190265], [2.344188942176705, 48.88179406227854], [2.344128148088556, 48.88193046089158], [2.344067077222096, 48.88206748117876], [2.344006282495586, 48.88220387969602], [2.343945210987853, 48.88234089988699], [2.343884415622972, 48.88247729830848], [2.343823619939628, 48.8826136966822], [2.343762546107252, 48.88275071672148], [2.343741171785771, 48.882795268417055], [2.343741285573832, 48.882795328396604], [2.343769496619788, 48.882800806167246], [2.34394904649014, 48.88283959263656], [2.344132702314256, 48.882875252770575], [2.344312252711691, 48.88291403869263], [2.344495909047055, 48.88294969826703], [2.344526543195473, 48.882953459711835], [2.344542316713739, 48.882918209575564], [2.3447144344561712, 48.88285025313541], [2.344884067169112, 48.88278327750796], [2.345056185371862, 48.882715321474905], [2.345225817205764, 48.8826483453551], [2.345397933153064, 48.88258038881494], [2.34556756547147, 48.882513412210166], [2.345739680526863, 48.88244545517039], [2.345909310602692, 48.88237847806574], [2.346081426129715, 48.88231052053381], [2.346251055326508, 48.882243542936784], [2.346423168598091, 48.882175584897766], [2.346592798279278, 48.88210860681578], [2.346606441213742, 48.88209903325102]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 78, "zemmour_eric": 83.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "9-26", "circ_bv": "18", "num_bureau": 26, "roussel_fabien": 12.0, "nb_emargement": 1236.0, "nb_procuration": 96.0, "nb_vote_blanc": 8.0, "jadot_yannick": 125.0, "le_pen_marine": 46.0, "nb_exprime": 1225.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1536.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1236, "quartier_bv": "36", "geo_point_2d": [48.88117436951622, 2.3453261864375197], "melenchon_jean_luc": 316.0, "poutou_philippe": 6.0, "macron_emmanuel": 500.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.284745328173253, 48.85858649593771], [2.2847529181762862, 48.85856181080687], [2.284796757505678, 48.85843362316997], [2.284839077502861, 48.8583091641487], [2.284882916407701, 48.85818097645107], [2.284925235981524, 48.85805651827028], [2.284969074474161, 48.85792832961261], [2.285011394999858, 48.85780387138115], [2.285055233067948, 48.85767568266275], [2.285097551819754, 48.85755122436435], [2.285139870369491, 48.857426766037044], [2.285183707804118, 48.857298577228036], [2.285183349915675, 48.8572937671266], [2.285115507282227, 48.857158767634466], [2.285040337699566, 48.85702754747679], [2.285041009622187, 48.85702019834509], [2.285120656587909, 48.85691975999143], [2.285202291705485, 48.85681883071281], [2.285281936677312, 48.8567183931247], [2.285363571167089, 48.85661746371773], [2.28544321688308, 48.85651702601224], [2.28552484938201, 48.856416096468834], [2.285604494479318, 48.85631565863777], [2.285686126350468, 48.856214728966016], [2.285684655523191, 48.85620480386435], [2.285555787407186, 48.85610075582906], [2.285429580962048, 48.856000133003796], [2.285300713861595, 48.85589608467465], [2.28517450840468, 48.85579546156186], [2.2850456423197683, 48.85569141293877], [2.284919437851272, 48.855590789538425], [2.284790572769547, 48.8554867415208], [2.284664369301701, 48.85538611693359], [2.284535505235495, 48.85528206862211], [2.284409302755951, 48.855181443747384], [2.284283102114197, 48.85508081963786], [2.284154238213902, 48.85497676997975], [2.28402803856053, 48.854876145582686], [2.28389917567574, 48.85477209563073], [2.283772977010535, 48.85467147094614], [2.283644115141342, 48.85456742070038], [2.283643927730668, 48.85456727298278], [2.283591398317235, 48.85454157136718], [2.283558473984517, 48.854554930284344], [2.283416258580142, 48.8546420954082], [2.283278323309481, 48.85472541335446], [2.28313610697116, 48.85481257813198], [2.282998170813513, 48.85489589484321], [2.282860235577563, 48.854979211397406], [2.282718016484441, 48.85506637564991], [2.282580078974039, 48.855149692759504], [2.282437860309666, 48.855236856673834], [2.282299921912479, 48.85532017254838], [2.282157702314142, 48.8554073361164], [2.282019763017583, 48.8554906516552], [2.281877542472885, 48.85557781577616], [2.2818748317212583, 48.85558868714684], [2.281960456629058, 48.855693043661496], [2.282092585353838, 48.85579557461682], [2.282094067330887, 48.8557970233814], [2.282231607319861, 48.855906781504586], [2.282363738483035, 48.85600931214893], [2.2825012796004343, 48.85611906994114], [2.282633410469753, 48.85622160025997], [2.282631745388918, 48.85623433958129], [2.282490376226127, 48.856311962794344], [2.282374645387143, 48.85637509804581], [2.282233275459436, 48.856452720945306], [2.282117542621145, 48.8565158568312], [2.282092578048089, 48.85653135858822], [2.282109861338466, 48.85656727741633], [2.282256988469494, 48.85665194149207], [2.282392865578284, 48.85673181088674], [2.28253999362137, 48.856816475501276], [2.282675871593042, 48.85689634456278], [2.282823000560482, 48.856981008816796], [2.28295887939514, 48.85706087754511], [2.2830947600091323, 48.85714074612153], [2.283241888996961, 48.85722540893447], [2.283242835988741, 48.857226022572405], [2.283356342711741, 48.85730710945096], [2.2835243577683633, 48.857437724628895], [2.283637865390672, 48.857518811224935], [2.283631697156637, 48.85753354174345], [2.283445091802716, 48.85756973880901], [2.283255004710177, 48.857605770832485], [2.283068398835883, 48.85764196730834], [2.28287830984408, 48.857677999622176], [2.282691703461895, 48.85771419460895], [2.282501613946082, 48.857750226322096], [2.282315007031054, 48.85778642161837], [2.282124916991235, 48.85782245273081], [2.281938309568342, 48.857858646538034], [2.281748220367414, 48.8578946770579], [2.281561612411676, 48.857930871174666], [2.281371521336272, 48.85796690018634], [2.2813589971069588, 48.857999003068294], [2.281450349022, 48.858015137500665], [2.281630442919899, 48.85804869095678], [2.281833428191056, 48.85808343916761], [2.282013522571835, 48.85811699204512], [2.282216508364458, 48.85815173960399], [2.282396603228008, 48.85818529190296], [2.282550932581654, 48.85821170954731], [2.282586663344684, 48.85822555711321], [2.282597077656385, 48.85822438742971], [2.282645733273346, 48.85823271666532], [2.282846852856731, 48.85826586369496], [2.283049839797552, 48.8583006089364], [2.283250959900189, 48.85833375528487], [2.283453947362619, 48.858368500738], [2.2836550679843, 48.8584016464053], [2.28385805599307, 48.858436390271564], [2.284059177133987, 48.858469535257626], [2.284262165676718, 48.85850427843631], [2.284463285973856, 48.85853742273304], [2.284666276400994, 48.85857216613154], [2.284695640292305, 48.858589272937856], [2.2847207592153618, 48.85858716480035], [2.284745328173253, 48.85858649593771]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 150, "zemmour_eric": 195.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-15", "circ_bv": "14", "num_bureau": 15, "roussel_fabien": 4.0, "nb_emargement": 1044.0, "nb_procuration": 68.0, "nb_vote_blanc": 5.0, "jadot_yannick": 30.0, "le_pen_marine": 61.0, "nb_exprime": 1032.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1290.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1042, "quartier_bv": "62", "geo_point_2d": [48.85662358830444, 2.283761695987928], "melenchon_jean_luc": 74.0, "poutou_philippe": 3.0, "macron_emmanuel": 489.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.391982229045942, 48.84280618886307], [2.392001393985901, 48.84282109960509], [2.392173686692795, 48.842869785042176], [2.3923655133457222, 48.84292514465858], [2.3925378067366943, 48.842973829566716], [2.392729634159322, 48.843029188594095], [2.392901929596782, 48.843077872980196], [2.393093756426693, 48.84313323141164], [2.393266052548227, 48.843181915268794], [2.39345788014783, 48.843237273111214], [2.393630176953435, 48.8432859564394], [2.393822005322726, 48.8433413136928], [2.393994302812399, 48.84338999649203], [2.394186133313796, 48.843445353163276], [2.39435843012511, 48.84349403542665], [2.394550261406639, 48.84354939060959], [2.394722558891564, 48.84359807324331], [2.394772631322506, 48.84360850370944], [2.394790104116914, 48.84358934674704], [2.3948268672481072, 48.843535787100045], [2.394899409120095, 48.843435389983995], [2.394978686814384, 48.84331989338488], [2.3950512280830862, 48.84321949705665], [2.395130505112444, 48.843104000334606], [2.395203044425696, 48.84300360388798], [2.395226708023487, 48.842995162527565], [2.395211581783769, 48.84295867553728], [2.39519640956337, 48.84283855967469], [2.395181991893863, 48.84271953313748], [2.395166819800737, 48.8425994181447], [2.39515240090256, 48.84248039157155], [2.395137228957681, 48.84236027564996], [2.395122810193239, 48.842241249047746], [2.395107638386169, 48.84212113309667], [2.395093221117949, 48.842002106472215], [2.395078802552993, 48.841883079826474], [2.3950636309516042, 48.841762963831286], [2.395050384862675, 48.841658092706005], [2.395035967853288, 48.84153906602531], [2.395034042408931, 48.84152382203801], [2.395028829836979, 48.84151744260177], [2.39487242205036, 48.84143706629141], [2.394718187501684, 48.84136107165236], [2.394561780652919, 48.8412806958239], [2.394407547019905, 48.84120470077369], [2.394251139767416, 48.841124323621614], [2.394096907050065, 48.84104832816024], [2.39406569060765, 48.84102650985889], [2.394045741578093, 48.841030880427255], [2.394011222823139, 48.841060238751], [2.393885390016883, 48.84116803527308], [2.393768154257284, 48.84126774590993], [2.393742675612691, 48.84129826966713], [2.393743395129285, 48.841299666421904], [2.393617561191165, 48.84140746263917], [2.393493340541, 48.84151380453695], [2.393367506931196, 48.841621600477396], [2.393243285260477, 48.84172794209516], [2.393117449254027, 48.84183573774501], [2.3929932265732132, 48.841942078183386], [2.392867389522009, 48.842049874448854], [2.392743165820721, 48.84215621460717], [2.392617327735322, 48.84226401058884], [2.392493103013451, 48.842370350467135], [2.392367263904331, 48.842478145265794], [2.392243038151279, 48.842584485763275], [2.392117198008048, 48.84269228027824], [2.392001870789693, 48.84277812527291], [2.391982229045942, 48.84280618886307]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 71, "zemmour_eric": 75.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "12-8", "circ_bv": "08", "num_bureau": 8, "roussel_fabien": 27.0, "nb_emargement": 1121.0, "nb_procuration": 26.0, "nb_vote_blanc": 11.0, "jadot_yannick": 100.0, "le_pen_marine": 77.0, "nb_exprime": 1103.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1435.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1120, "quartier_bv": "46", "geo_point_2d": [48.842404306249165, 2.393944464493375], "melenchon_jean_luc": 353.0, "poutou_philippe": 4.0, "macron_emmanuel": 321.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3511861827964893, 48.84724500447288], [2.3512389219691032, 48.84726379387832], [2.351385935940661, 48.84737565100463], [2.351536508471071, 48.847487622555576], [2.351683523712786, 48.847599479293706], [2.351834097518211, 48.84771145134694], [2.351850002901667, 48.84771364561114], [2.352042553052596, 48.84765494691327], [2.352244301455294, 48.847592809994154], [2.35243685071564, 48.847534110655324], [2.352638599543036, 48.84747197307201], [2.352657859778317, 48.84747888902727], [2.352685242257242, 48.84760939559317], [2.3527107141105112, 48.84773674134772], [2.352738096857282, 48.847867247871335], [2.352763568965638, 48.84799459358516], [2.35279095198036, 48.848125100066454], [2.352816424343909, 48.848252445739504], [2.352843807626383, 48.84838295217851], [2.352869280245228, 48.84851029781084], [2.352896663795561, 48.84864080420753], [2.352922136669505, 48.848768149799106], [2.352928058608626, 48.84877444315369], [2.353085519411906, 48.84884410988376], [2.353243461996636, 48.848914080289035], [2.353400923643484, 48.84898374659528], [2.353558865712142, 48.84905371656806], [2.353716328202656, 48.849123382450486], [2.353874272480675, 48.84919335200547], [2.354031734440839, 48.84926301835597], [2.354189679576805, 48.84933298658655], [2.354193225677353, 48.84933527570418], [2.35430334879292, 48.849441075027485], [2.354416106888732, 48.849546736463644], [2.3545262295409772, 48.84965253555436], [2.354638988546253, 48.84975819676039], [2.354749113460547, 48.84986399563322], [2.354861873375298, 48.84996965660914], [2.354971997826277, 48.850075455249396], [2.355084760013104, 48.85018111600251], [2.3551948853635682, 48.8502869144175], [2.355307647097295, 48.85039257493315], [2.35541777470975, 48.85049837313023], [2.355530537352879, 48.85060403341575], [2.355563500841131, 48.85065323304556], [2.355602361834103, 48.85065080094177], [2.355780162249546, 48.85059255742058], [2.355998088401363, 48.85052896620346], [2.356175889321514, 48.85047072209513], [2.356343747227365, 48.85041500358483], [2.356521545998634, 48.85035675984889], [2.356689403178911, 48.850301039948654], [2.356867202537708, 48.8502427957004], [2.357035058981297, 48.85018707530955], [2.357212856202225, 48.85012883053439], [2.357380711898037, 48.85007311055219], [2.357558509717472, 48.850014864365455], [2.357726364676699, 48.849959143892605], [2.357904161720949, 48.8499008971863], [2.35807201594349, 48.849845176222864], [2.35824981084987, 48.8497869289896], [2.358417664335724, 48.849731207535534], [2.358585517462515, 48.84967548584321], [2.358763312578664, 48.84961723784535], [2.3589311649688662, 48.849561515662415], [2.359108957947146, 48.84950326713762], [2.359110435263862, 48.84950270485916], [2.359169024172383, 48.84947175256142], [2.359291381664525, 48.84941815239232], [2.3594422658696113, 48.849338441823456], [2.359564622756749, 48.84928484226782], [2.359565910230818, 48.84928420252219], [2.359716793628254, 48.84920449159754], [2.359857318223634, 48.84912568377013], [2.360008199353702, 48.84904597245931], [2.360148724443709, 48.84896716428573], [2.36029960466898, 48.848887452596095], [2.360440128879809, 48.848808644968315], [2.360580651313999, 48.84872983626335], [2.360731530191468, 48.84865012401205], [2.360872053120183, 48.84857131496084], [2.361022931093069, 48.848491602330746], [2.361163453142528, 48.84841279382539], [2.3613143302107362, 48.84833308081647], [2.361425789089392, 48.848302737884964], [2.36142229080235, 48.848270949425945], [2.361498505986614, 48.84822945964485], [2.361655105305846, 48.848132398459065], [2.361818647380485, 48.84803074600452], [2.361975244143692, 48.84793368437516], [2.362138784970272, 48.847832031464876], [2.362295380540106, 48.847734969399134], [2.362458920107633, 48.84763331693243], [2.362470801226242, 48.84761172551481], [2.362409603892512, 48.84758032299683], [2.36225504658726, 48.8475019773017], [2.362094366294398, 48.8474205868032], [2.361939811299418, 48.84734224069687], [2.3617791319913852, 48.847260849763366], [2.361624576592441, 48.84718250233202], [2.36146389826924, 48.84710111096345], [2.361309343807025, 48.847022764012955], [2.3611486664685453, 48.8469413722094], [2.360994114316473, 48.84686302484772], [2.360833437973944, 48.846781631709824], [2.360678885406999, 48.84670328392242], [2.360518210038157, 48.84662189124879], [2.360363659781441, 48.846543543050224], [2.360202984034811, 48.846462149934325], [2.360048434725717, 48.846383801317344], [2.359887761337539, 48.8463024068744], [2.359733211613471, 48.8462240578317], [2.359572539199054, 48.84614266385309], [2.359417991785191, 48.846064314399214], [2.359257318992987, 48.84598291997826], [2.359102772537793, 48.84590456920672], [2.358942102092975, 48.845823174358095], [2.358787555211748, 48.845744824060084], [2.358626885751721, 48.8456634287765], [2.358472341180677, 48.845585078067394], [2.35831167271651, 48.8455036814495], [2.358157127730494, 48.84542533031467], [2.357996460240042, 48.84534393416111], [2.357841916201623, 48.84526558260789], [2.3576812496959523, 48.84518418601931], [2.357526707967692, 48.84510583405498], [2.357366042457885, 48.84502443613215], [2.357211500314653, 48.84494608374213], [2.357050835778532, 48.84486468628365], [2.356896294582889, 48.84478633347523], [2.3568930914533333, 48.84478663283121], [2.356856144545554, 48.84481761323389], [2.356669122725394, 48.84481445459936], [2.356488057620579, 48.84481124137521], [2.3563010358344902, 48.844808083064535], [2.356119969411953, 48.84480486927596], [2.355932949033594, 48.844801710397164], [2.355751882667016, 48.8447984951522], [2.355564860971289, 48.84479533569067], [2.355383796001, 48.844792120795205], [2.355196774350465, 48.84478896075822], [2.355015709425032, 48.844785745305664], [2.355001862855714, 48.84479342044234], [2.3549708196389663, 48.84493202617814], [2.35493948614932, 48.84506985057906], [2.35490844396459, 48.84520845627164], [2.3548771087812232, 48.845346280614706], [2.354846066254813, 48.845484887156054], [2.354814730751412, 48.84562271054928], [2.35478368789445, 48.84576131704005], [2.354752352048742, 48.84589914128206], [2.354721308872355, 48.84603774682298], [2.35468997405806, 48.84617557102183], [2.3546589291885223, 48.84631417650487], [2.354627594043051, 48.8464520006532], [2.354615792016365, 48.84645959143341], [2.354410871389692, 48.84647632999873], [2.3542082835381493, 48.846492626629235], [2.35400336263955, 48.846509365395384], [2.353800773169461, 48.846525661328], [2.353595853372684, 48.84654239940303], [2.353393263646863, 48.846558694645104], [2.353188343600479, 48.84657543112235], [2.352985753618734, 48.8465917256739], [2.352780831937836, 48.84660846234459], [2.352578243062979, 48.846624756213025], [2.352373321121333, 48.84664149218523], [2.35217073062797, 48.8466577853557], [2.352168258424231, 48.84665813980682], [2.352005074084421, 48.84669849887729], [2.35176103798321, 48.84674959420851], [2.351759262094181, 48.8467500585484], [2.351596077149818, 48.84679041705766], [2.3514940124248, 48.84682275161894], [2.351487774516534, 48.846826769418776], [2.351483410267904, 48.846833197764255], [2.351421413946367, 48.84692451537425], [2.351333086718121, 48.84703868229827], [2.351266726961891, 48.847136427257496], [2.351202627762456, 48.847219277558786], [2.3511861827964893, 48.84724500447288]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 72, "zemmour_eric": 77.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "5-21", "circ_bv": "02", "num_bureau": 21, "roussel_fabien": 26.0, "nb_emargement": 1278.0, "nb_procuration": 97.0, "nb_vote_blanc": 18.0, "jadot_yannick": 116.0, "le_pen_marine": 51.0, "nb_exprime": 1256.0, "nb_vote_nul": 4.0, "arr_bv": "05", "arthaud_nathalie": 4, "nb_inscrit": 1549.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "17", "geo_point_2d": [48.84764692522292, 2.3567984940953304], "melenchon_jean_luc": 356.0, "poutou_philippe": 1.0, "macron_emmanuel": 507.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.367541910115169, 48.832237357745825], [2.367526088537681, 48.832219610465714], [2.367325279881472, 48.83216540016406], [2.367133617156655, 48.8321175469927], [2.366932809301734, 48.83206333602716], [2.366741148674662, 48.83201548222974], [2.366716404819873, 48.83200835861736], [2.366694137342682, 48.832025701973315], [2.366561918191752, 48.832132069044995], [2.366428637524349, 48.83223886383625], [2.366296418642337, 48.83234523150073], [2.36616313688593, 48.83245202597578], [2.366030916932467, 48.83255839242722], [2.365897634087251, 48.83266518658613], [2.365765411678111, 48.83277155361587], [2.365632127754913, 48.83287834655927], [2.365499905625707, 48.832984713282485], [2.365366620602634, 48.83309150680897], [2.365234397401858, 48.83319787231913], [2.365101111289844, 48.83330466552942], [2.364968885633532, 48.833411031617906], [2.364835598443418, 48.83351782361266], [2.364703373066924, 48.83362418939462], [2.364570084776992, 48.83373098197249], [2.364537313156331, 48.83377250258553], [2.36453872756449, 48.833773930202916], [2.364580977035971, 48.83378794557849], [2.364745221190393, 48.83384306432493], [2.364925096192239, 48.833902732999206], [2.3650893397098143, 48.83395785126029], [2.36526921550164, 48.834017519410935], [2.36543346110701, 48.83407263720103], [2.36561333632654, 48.83413230482083], [2.365777582657533, 48.83418742213277], [2.365957460040153, 48.834247088336824], [2.366121705734385, 48.83430220516332], [2.366238200164946, 48.834340846855305], [2.366260010367139, 48.83434339250953], [2.366288287874616, 48.83430860189289], [2.366430268987229, 48.83422777959168], [2.366572398190852, 48.834145272487106], [2.366714378418105, 48.83406444983683], [2.366856506726621, 48.83398194238267], [2.36699848743079, 48.833901119390575], [2.367140613493054, 48.833818610680254], [2.367282593311866, 48.833737787339125], [2.367424719830382, 48.833655279185656], [2.367424468604336, 48.833641629044024], [2.367285370613828, 48.83356475637767], [2.367156453377072, 48.833493071004426], [2.367017357540462, 48.83341619802342], [2.366888441039761, 48.8333445123518], [2.366759524882594, 48.83327282743592], [2.366620430229926, 48.83319595307886], [2.366609527192033, 48.833193968892864], [2.36642117190818, 48.8332139148795], [2.366196381349857, 48.83323329426314], [2.366181967181823, 48.83322103862879], [2.366249098730303, 48.833110166721205], [2.36629622179879, 48.833026070893446], [2.366299430146508, 48.83302292481184], [2.366441292985202, 48.83293394631915], [2.366593187544407, 48.83283755421898], [2.3667350480149922, 48.83274857535598], [2.366886941501708, 48.83265218196749], [2.367028802328676, 48.83256320274855], [2.367180693358926, 48.83246680986315], [2.367322553180145, 48.83237783028109], [2.367474443138017, 48.83228143610739], [2.367520815665809, 48.832252350206964], [2.367541910115169, 48.832237357745825]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 61, "zemmour_eric": 64.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-31", "circ_bv": "09", "num_bureau": 31, "roussel_fabien": 33.0, "nb_emargement": 1051.0, "nb_procuration": 57.0, "nb_vote_blanc": 10.0, "jadot_yannick": 89.0, "le_pen_marine": 68.0, "nb_exprime": 1042.0, "nb_vote_nul": 0.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1310.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1052, "quartier_bv": "50", "geo_point_2d": [48.83332308065926, 2.3661369365538913], "melenchon_jean_luc": 312.0, "poutou_philippe": 7.0, "macron_emmanuel": 344.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4018245067268422, 48.8776181818931], [2.4018426018846952, 48.87761434043966], [2.401994711512034, 48.87757428519897], [2.402145308042578, 48.877535603578494], [2.402146090051184, 48.87753542042334], [2.402311231297219, 48.87750047150232], [2.402474868750516, 48.877465730686694], [2.402638505995825, 48.87743098874704], [2.402803646569994, 48.877396040042676], [2.402967283377031, 48.877361297651426], [2.40313242350951, 48.877326348491344], [2.403135907876055, 48.87732592968892], [2.4033527482151342, 48.877318783553186], [2.403572298426977, 48.877311692794514], [2.403789137283591, 48.877304545861435], [2.404008687376, 48.87729745430236], [2.404009871692209, 48.877297381956836], [2.404194369645416, 48.87728076431401], [2.404376300954165, 48.87726430808696], [2.404560798673296, 48.87724768987893], [2.404742729750833, 48.877231233094456], [2.404924660713298, 48.87721477603328], [2.405109158081995, 48.877198156979446], [2.405291088813238, 48.877181699360875], [2.40547558594784, 48.87716507974177], [2.405657516447651, 48.87714862156589], [2.40584201333789, 48.87713200228086], [2.405848298340209, 48.877132409394484], [2.406060198435928, 48.877180548907795], [2.406280529409002, 48.877229149842734], [2.406294244207842, 48.8772271413095], [2.40635358603799, 48.877189956937634], [2.406399303596459, 48.87716035107948], [2.406429793482207, 48.87712875412829], [2.406420124470872, 48.87712175796498], [2.406255853526104, 48.87707629340959], [2.406029876222659, 48.8770156979224], [2.405865605953064, 48.87697023282713], [2.405865263448225, 48.87697013759695], [2.405676797417973, 48.87691560561816], [2.405512527772284, 48.87687014003427], [2.405324061099531, 48.87681560838768], [2.405159793450716, 48.87677014142312], [2.405121565887955, 48.876759080363634], [2.405112671369277, 48.87675496579602], [2.405093362622315, 48.87675432934473], [2.404943124280735, 48.87671085816183], [2.404762210935398, 48.87665775622526], [2.404573747190331, 48.87660322249445], [2.40439283459547, 48.876550119994505], [2.404204371616451, 48.876495586576155], [2.404023459772064, 48.876442483512804], [2.403834997579565, 48.87638794860836], [2.403654086485559, 48.876334844981656], [2.403465623695617, 48.876280310382846], [2.403284714715578, 48.876227206199516], [2.403096252712178, 48.87617267011462], [2.402915344482625, 48.87611956536794], [2.402726883245164, 48.87606502959549], [2.402545974402616, 48.876011924278615], [2.402528052454314, 48.87599192454445], [2.402510497009578, 48.875999284282265], [2.402454041714141, 48.875991768272314], [2.402312605406179, 48.87597293887023], [2.402116018130583, 48.87594629567004], [2.401918126928151, 48.8759199496046], [2.4017215414073982, 48.87589330666142], [2.401523649242465, 48.875866959935806], [2.401327064123404, 48.875840316343506], [2.401129173722725, 48.875813968971364], [2.400932587642196, 48.8757873247232], [2.400734697642407, 48.87576097669767], [2.400538113326959, 48.87573433180727], [2.400340223728067, 48.875707983128386], [2.40014363846153, 48.87568133668279], [2.399945749263548, 48.875654987350565], [2.399749164388487, 48.87562834115515], [2.399551275591318, 48.87560199116958], [2.399354692481462, 48.875575344331914], [2.399337869541231, 48.87557649919888], [2.399327838046659, 48.875621729303994], [2.399408225922009, 48.87573318478931], [2.399484747393375, 48.87583790550533], [2.399565134574872, 48.87594936085656], [2.399641656689687, 48.87605408055247], [2.399642620652673, 48.876055853471826], [2.399684205114382, 48.87616825356313], [2.399726152335775, 48.87628172654982], [2.399767737158192, 48.87639412658908], [2.399809683380098, 48.876507599516394], [2.399851268563124, 48.87661999950362], [2.3998932165123232, 48.876733472385276], [2.399934802055963, 48.87684587232046], [2.39997674900567, 48.87695934514275], [2.3999896010193402, 48.8769662040002], [2.40017501373069, 48.87696973853262], [2.400361405321688, 48.87697328217774], [2.400546818093815, 48.876976815235025], [2.400733209735432, 48.87698035830117], [2.400918622557967, 48.87698389078259], [2.4011050128867932, 48.87698743326299], [2.401290425749289, 48.87699096606783], [2.401476817492124, 48.87699450797615], [2.401662230415455, 48.87699803930583], [2.401848622208883, 48.87700158063525], [2.401861756093003, 48.87701169897153], [2.401835597050931, 48.87714808027275], [2.401809442778085, 48.87728023562464], [2.401783283464154, 48.877416616881156], [2.401757128923818, 48.87754877218946], [2.401759072106163, 48.87755468689886], [2.401781212814936, 48.87757813514567], [2.40181140741207, 48.87761014567981], [2.4018245067268422, 48.8776181818931]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 22, "zemmour_eric": 71.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "19-39", "circ_bv": "16", "num_bureau": 39, "roussel_fabien": 23.0, "nb_emargement": 1088.0, "nb_procuration": 50.0, "nb_vote_blanc": 5.0, "jadot_yannick": 79.0, "le_pen_marine": 63.0, "nb_exprime": 1078.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1456.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1089, "quartier_bv": "75", "geo_point_2d": [48.87662038356811, 2.4022738907506196], "melenchon_jean_luc": 485.0, "poutou_philippe": 9.0, "macron_emmanuel": 278.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.38705292203713, 48.8680307919529], [2.387046193910984, 48.86803200218183], [2.386955287185139, 48.86800964848998], [2.386763522770064, 48.86796294374346], [2.386580563993324, 48.86791795478763], [2.386516542579465, 48.86790236127657], [2.386492913395768, 48.867901010763426], [2.386482987334741, 48.86792674392903], [2.386399072622223, 48.86805695531326], [2.386318532840343, 48.86818207568612], [2.386237992671668, 48.868307195990575], [2.386154076733889, 48.868437407158275], [2.386141000213383, 48.86844287462215], [2.385907446576437, 48.86843685161295], [2.38567817171706, 48.86843144637042], [2.38566733794313, 48.86843457891971], [2.385567445734616, 48.868511411072944], [2.385466471789916, 48.86858943190643], [2.385366580361882, 48.86866626298901], [2.385265605816175, 48.8687442836421], [2.385248419581621, 48.86874623147428], [2.385072766505199, 48.86867928535562], [2.384898356707822, 48.86861203059365], [2.384722704544429, 48.86854508305387], [2.384548295648333, 48.86847782777366], [2.38437264437683, 48.86841088061128], [2.384198236381909, 48.868343624812844], [2.384181440232065, 48.86834521746155], [2.38404703447934, 48.86843921272965], [2.3839149406188, 48.86853156675705], [2.383780533914927, 48.86862556081076], [2.383648439098729, 48.86871791542775], [2.38351403143317, 48.86881190916635], [2.383381935682586, 48.86890426257435], [2.383247527044687, 48.86899825689714], [2.383115428985875, 48.86909060998846], [2.382981019396921, 48.86918460309686], [2.382848921745607, 48.86927695678479], [2.382847168278809, 48.86927847931639], [2.382772539844239, 48.86936001340235], [2.382700909840515, 48.8694403254119], [2.382629280979122, 48.8695206373798], [2.382554651846023, 48.86960217221134], [2.382545850428633, 48.8696156420574], [2.382554046976213, 48.869623758595104], [2.382703561230501, 48.86967375053779], [2.38285092484124, 48.869724176373296], [2.383000438294704, 48.86977416883285], [2.38314780247691, 48.86982459429827], [2.38315423491925, 48.8698358322954], [2.383123831451893, 48.86988749813585], [2.383093484026993, 48.86994156368788], [2.383096356770929, 48.8699508605565], [2.383126924824149, 48.869972215485156], [2.383145931289606, 48.8699718988435], [2.383158393664595, 48.86996539610635], [2.383351077446117, 48.87001010933416], [2.383499905288999, 48.87004568753498], [2.383501293908058, 48.87004596538781], [2.383722683844197, 48.87008189184441], [2.383938798828126, 48.87011695705341], [2.3841549140924823, 48.87015202277034], [2.384376304930164, 48.870187948014596], [2.384388017646582, 48.87018626893765], [2.3844626814061, 48.87014731591397], [2.384535164788854, 48.870109087289414], [2.384542598516426, 48.8701071460718], [2.384732365860815, 48.87009721092653], [2.384922579064014, 48.870087148267174], [2.385112344899854, 48.870077212512264], [2.385302557946111, 48.87006715014821], [2.385492323647124, 48.8700572128914], [2.385682536546946, 48.87004714992335], [2.385872303465825, 48.87003721207092], [2.386062516219204, 48.87002714849887], [2.386252281629606, 48.87001721003687], [2.386442494236431, 48.870007145860775], [2.386632259501464, 48.86999720679617], [2.386822471961828, 48.86998714201608], [2.3870122384341173, 48.86997720325514], [2.387202450758595, 48.869967136971745], [2.387392215722286, 48.869957197601245], [2.387582427889709, 48.86994713161313], [2.387772192718583, 48.86993719074078], [2.38796240473962, 48.86992712414863], [2.388152170786206, 48.86991718268065], [2.3883423826607473, 48.86990711548451], [2.388353091757101, 48.86990265463788], [2.388441955031432, 48.869801318131344], [2.388531400646297, 48.86969935229223], [2.388620261863824, 48.869598015627744], [2.388709706780471, 48.86949604963662], [2.3887985686569673, 48.86939471372736], [2.388888011522952, 48.869292746678], [2.388901048783409, 48.86928829496954], [2.389119134918137, 48.86930140718563], [2.389328447530269, 48.8693140281701], [2.389537758891267, 48.869326647882176], [2.38975584669949, 48.86933975984392], [2.389965158267317, 48.86935237880829], [2.39018324630137, 48.869365489091756], [2.390392558065693, 48.86937810820771], [2.390610646315029, 48.86939121771211], [2.390623689252818, 48.86939967133618], [2.390651162842072, 48.86939106515041], [2.390801830936495, 48.86933646619455], [2.390949630713267, 48.86928230841671], [2.391097431535501, 48.86922815135997], [2.391248097327765, 48.86917355182737], [2.391253887012033, 48.86916947399937], [2.3912771964180832, 48.86913653560079], [2.391297435341273, 48.86910911520519], [2.391318870687714, 48.86907578684655], [2.391295286866338, 48.86906793260876], [2.391140949858403, 48.86903287026422], [2.390989338144517, 48.86899559662412], [2.390964745369719, 48.86898776236798], [2.390961554667608, 48.86898793859072], [2.390930198712141, 48.86898022999565], [2.3907472327641432, 48.868935247450366], [2.390536615038031, 48.86888467023992], [2.390353649765547, 48.86883968708913], [2.390143031444762, 48.868789109174806], [2.389960066847799, 48.86874412541851], [2.389749450648286, 48.86869354771349], [2.389566486726744, 48.86864856335166], [2.389380733952493, 48.868602879183435], [2.389197770667817, 48.86855789425431], [2.3890120199138662, 48.8685122086178], [2.388829057266165, 48.86846722312134], [2.388643305785169, 48.86842153780121], [2.388460343774344, 48.86837655173747], [2.388274594303207, 48.868330865848336], [2.388091632929262, 48.86828587921728], [2.387905882752205, 48.868240191846006], [2.387722922015149, 48.86819520464764], [2.387537173837392, 48.868149517606646], [2.387354213737224, 48.868104529840984], [2.387168466206163, 48.86805884222405], [2.387076413499519, 48.86803620666063], [2.38705292203713, 48.8680307919529]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 21, "zemmour_eric": 53.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "20-71", "circ_bv": "06", "num_bureau": 71, "roussel_fabien": 21.0, "nb_emargement": 1343.0, "nb_procuration": 79.0, "nb_vote_blanc": 11.0, "jadot_yannick": 124.0, "le_pen_marine": 49.0, "nb_exprime": 1326.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1700.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1344, "quartier_bv": "77", "geo_point_2d": [48.86916745020104, 2.386470515453093], "melenchon_jean_luc": 757.0, "poutou_philippe": 12.0, "macron_emmanuel": 225.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3937893453381083, 48.851315094074195], [2.393778714636508, 48.85132091657657], [2.39371842287727, 48.851424517676456], [2.393651256226367, 48.8515402440298], [2.393577530719665, 48.85166692806658], [2.393510363453877, 48.85178265341635], [2.393436637261683, 48.851909337338725], [2.39336946937054, 48.85202506258414], [2.393302299818412, 48.85214078777288], [2.39322857397634, 48.852267471533175], [2.393235898944381, 48.852278953819194], [2.393346591912386, 48.85231045277326], [2.393457126023529, 48.852341209752936], [2.3934644889700722, 48.852352829817114], [2.393397822056873, 48.852463055346284], [2.393333407579565, 48.852569068898354], [2.393266740112439, 48.85267929433306], [2.393202325101144, 48.85278530779391], [2.393135657080183, 48.85289553313418], [2.393071241534893, 48.85300154650383], [2.393070965382409, 48.8530019713952], [2.392977578487666, 48.853135940646425], [2.392880738246107, 48.853275007792796], [2.392787351725164, 48.853408977768886], [2.392690509105806, 48.85354804472028], [2.392690292688675, 48.853548371884585], [2.392690814110742, 48.853559527370024], [2.392711944548015, 48.85356635186073], [2.392827756843513, 48.85359135154513], [2.392954925980328, 48.85361891432225], [2.392963818088983, 48.85362983437305], [2.392945673596225, 48.853673545155914], [2.392931502631896, 48.85370969637392], [2.392928659206662, 48.85372564990379], [2.392952911867781, 48.85373061684534], [2.393123209604676, 48.853768996172164], [2.393331876083483, 48.85381579434757], [2.393502174367408, 48.85385417403141], [2.393710841527559, 48.85390097154234], [2.3938811403795492, 48.85393934978462], [2.394089806847879, 48.85398614752351], [2.394260107620056, 48.85402452523036], [2.394468774769928, 48.85407132230482], [2.394639076099592, 48.85410969946934], [2.394656380101965, 48.85410408873453], [2.394675146590212, 48.85406772944608], [2.394694823532912, 48.854030541062485], [2.394712433829843, 48.85402507486532], [2.394879600448637, 48.85406604754237], [2.395040189129597, 48.85410523119654], [2.395207354900557, 48.85414620340587], [2.395367944064474, 48.854185387516665], [2.395535111723538, 48.85422635837277], [2.39569570001825, 48.854265542033936], [2.395856289917289, 48.85430472548509], [2.3960234583430813, 48.854345695654565], [2.396078257105748, 48.854373273781135], [2.396091521877762, 48.854365631509516], [2.396153566606143, 48.85428458502243], [2.396239144713879, 48.854176280157766], [2.3963324047838173, 48.85405445718856], [2.39641798214189, 48.85394615217354], [2.396511241392261, 48.85382432814047], [2.396596817990162, 48.85371602387441], [2.39669007777335, 48.85359419968363], [2.396775653621708, 48.85348589526724], [2.396861229124745, 48.85337758987978], [2.39695448632127, 48.85325576543894], [2.397040061064166, 48.85314746080047], [2.397133317430843, 48.853025636195056], [2.397133069726132, 48.85302372292888], [2.397080928562503, 48.85301034678499], [2.39689102765005, 48.85295617700311], [2.396695589884742, 48.852900365563755], [2.396505689773682, 48.85284619516496], [2.396310252833493, 48.85279038309073], [2.396302249780915, 48.85278054878788], [2.396338892395031, 48.85264511882416], [2.396375483251349, 48.8525116698417], [2.396412125486159, 48.85237623982281], [2.3964487159556063, 48.85224279168498], [2.3964853578110192, 48.85210736161091], [2.3965219479146382, 48.851973912519156], [2.396558590753299, 48.851838482396786], [2.396595180480574, 48.851705033250354], [2.396631821577201, 48.85156960306597], [2.396668410917628, 48.85143615476416], [2.3967050000811643, 48.85130270553587], [2.396741640609383, 48.85116727526888], [2.396749394611617, 48.851150814859935], [2.396726685607771, 48.851142775276806], [2.396535295384997, 48.851111447120594], [2.396347254453692, 48.851080763301546], [2.396155864686687, 48.85104943453664], [2.395967824212997, 48.85101874922029], [2.395779783960766, 48.85098806360754], [2.395588394875496, 48.85095673393235], [2.395400355070478, 48.8509260477216], [2.395208966441099, 48.85089471743771], [2.395020927083303, 48.85086403062895], [2.394829537547103, 48.85083269972952], [2.394641499988703, 48.85080201322897], [2.394450110908407, 48.85077068172086], [2.394434207990749, 48.85077602072928], [2.394370098060226, 48.85087999499134], [2.394305786023495, 48.850985155332005], [2.394241675579443, 48.85108912950573], [2.394177363014991, 48.85119429065689], [2.394113252057404, 48.851298264742255], [2.3940489389756783, 48.8514034258046], [2.394029120615819, 48.85140770257953], [2.393914971538242, 48.85136099127171], [2.393812285630549, 48.8513211433233], [2.3937893453381083, 48.851315094074195]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 66, "zemmour_eric": 74.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-47", "circ_bv": "06", "num_bureau": 47, "roussel_fabien": 39.0, "nb_emargement": 1360.0, "nb_procuration": 69.0, "nb_vote_blanc": 18.0, "jadot_yannick": 117.0, "le_pen_marine": 73.0, "nb_exprime": 1340.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 6, "nb_inscrit": 1781.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1360, "quartier_bv": "44", "geo_point_2d": [48.85261679111657, 2.39499201290079], "melenchon_jean_luc": 502.0, "poutou_philippe": 15.0, "macron_emmanuel": 376.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.307967429472824, 48.87628327895563], [2.30799027047902, 48.876269392093256], [2.3080632765608, 48.87619375336603], [2.308166847406444, 48.87608676668772], [2.308280729817338, 48.87596877582], [2.308384299780879, 48.87586178803251], [2.308498181207249, 48.87574379693382], [2.308601750276852, 48.87563680893636], [2.308715630718707, 48.87551881760681], [2.308819198882246, 48.875411830298624], [2.308933078351532, 48.87529383783886], [2.309036645621055, 48.87518685032077], [2.30903727420762, 48.875186127282184], [2.309099885085967, 48.87510104414614], [2.309178667542494, 48.87499980231946], [2.309241277965895, 48.874914719095116], [2.30932005986576, 48.87481347715826], [2.309321285753195, 48.87481212712659], [2.309434970323432, 48.87470864927124], [2.309513751535218, 48.87460740718803], [2.3096274352643382, 48.87450393002997], [2.309754736249034, 48.874421643303265], [2.309763987954069, 48.874407575201516], [2.309707975283062, 48.87437208168826], [2.309587424894896, 48.87429131813786], [2.309462499450921, 48.874205845451776], [2.309341949828127, 48.874125081642006], [2.309217025197605, 48.87403960778764], [2.309096476340181, 48.873958843718505], [2.308971553862464, 48.87387337050219], [2.308851004407197, 48.873792606165836], [2.308726082742928, 48.8737071317812], [2.308709353589551, 48.87370562230492], [2.308526625120361, 48.8737765411932], [2.308345771957821, 48.87384285611593], [2.308163041160791, 48.87391377353323], [2.307982187046906, 48.87398008879764], [2.307799455273401, 48.87405100565114], [2.307618600220212, 48.87411732035801], [2.307602623732026, 48.87411600304403], [2.307443627876101, 48.87401710722364], [2.30728768700304, 48.8739205401662], [2.3071286923417382, 48.873821643910034], [2.306972751274448, 48.87372507641733], [2.30696489172663, 48.873722691726044], [2.306763651344259, 48.87370828813825], [2.306547554753049, 48.87368995616057], [2.306536654723278, 48.873684408829064], [2.30646816619087, 48.87357271759821], [2.306396300326428, 48.873461373677074], [2.306327812376173, 48.87334968324264], [2.30625594713146, 48.873238338315446], [2.3062516491591722, 48.87323469984937], [2.306089290264687, 48.87315335937344], [2.305925843737079, 48.87307131537151], [2.305763485872642, 48.87298997354233], [2.305600041734191, 48.872907929091376], [2.305437684875827, 48.87282658770751], [2.305274240399857, 48.87274454279163], [2.305111884559546, 48.87266320095386], [2.30494844110954, 48.872581155581], [2.304786086299281, 48.872499812390046], [2.3046226438751383, 48.87241776656018], [2.304460290070924, 48.87233642381458], [2.304296850035901, 48.87225437753565], [2.304134497249726, 48.87217303433614], [2.303971056877186, 48.87209098759232], [2.303808705121067, 48.87200964303962], [2.30364526577448, 48.871927595838805], [2.303482915024376, 48.8718462517315], [2.303319478066883, 48.87176420408164], [2.303157128334806, 48.871682859520426], [2.302993691051932, 48.871600810506415], [2.302831342337883, 48.87151946549128], [2.302667906068711, 48.87143741691961], [2.302624232958129, 48.87138632166776], [2.302602069522621, 48.87139068925745], [2.302513168506698, 48.87141898713488], [2.302330886805453, 48.87147656204755], [2.302152072281868, 48.87153347879079], [2.301969788405647, 48.87159105403894], [2.301790973094462, 48.871647970236786], [2.301608689781597, 48.87170554493705], [2.301429873682916, 48.87176246058961], [2.301247588207014, 48.871820034726014], [2.301068771320635, 48.871876949833236], [2.300886486408202, 48.871934523421764], [2.300707667371074, 48.8719914379757], [2.30052538165886, 48.872049011008336], [2.300346563197398, 48.87210592502487], [2.300164276697387, 48.87216349660233], [2.299985456072991, 48.87222041096485], [2.299803168773311, 48.872277981986464], [2.299624348724584, 48.87233489581161], [2.299442060625138, 48.87239246627735], [2.299263238425452, 48.87244937954912], [2.299080949526239, 48.87250694945898], [2.298902127914438, 48.87256386129412], [2.298719836840085, 48.87262143153939], [2.298541014440705, 48.87267834282915], [2.298358723929858, 48.87273591252651], [2.2981799007428, 48.87279282327093], [2.29799760806891, 48.87285039240439], [2.297818784094376, 48.87290730260343], [2.297636491984004, 48.872964871189026], [2.297457665858615, 48.8730217808347], [2.297275372948481, 48.87307934886431], [2.297096547398703, 48.87313625797265], [2.296914253688814, 48.8731938254464], [2.29673542598828, 48.87325073400131], [2.29655313149078, 48.873308300019886], [2.296374304353722, 48.873365208936704], [2.296192009056478, 48.87342277439936], [2.2960131797686563, 48.87347968276275], [2.295830883671666, 48.8735372476695], [2.295652054971733, 48.87359415459628], [2.295469758062842, 48.8736517198464], [2.295290927211946, 48.87370862621974], [2.295214084704143, 48.873743031438124], [2.295246510413607, 48.87378513172365], [2.295447610718614, 48.873804354556114], [2.295642930109612, 48.87382410242464], [2.2958440307114802, 48.87384332459045], [2.296039350398803, 48.873863071811435], [2.296240449934114, 48.87388229330256], [2.296435771281264, 48.87390203988406], [2.296636871113312, 48.873921260708556], [2.296832192756769, 48.87394100664252], [2.297033292885548, 48.873960226800364], [2.297228614825508, 48.87397997208681], [2.297429715250904, 48.87399919157799], [2.297625036123946, 48.8740189362089], [2.297826138209464, 48.87403815504144], [2.298021459378886, 48.874057899024834], [2.298222561761005, 48.874077117190744], [2.298417883226799, 48.874096860526606], [2.298618985905712, 48.874116078025786], [2.298814307667767, 48.874135820714116], [2.29882321196418, 48.87413936951452], [2.298947246673602, 48.87425021683429], [2.299076356584559, 48.874363083972725], [2.299200392365453, 48.874473931007735], [2.299329503379605, 48.874586797850284], [2.299453540231986, 48.874697644600495], [2.299582650985911, 48.874810511139124], [2.29970669027312, 48.87492135761258], [2.299835802130156, 48.87503422385533], [2.299848597309381, 48.87503771169435], [2.300037443196948, 48.87502007741877], [2.300224300845088, 48.87500256252674], [2.300413147841347, 48.87498492766591], [2.30060000522507, 48.87496741308614], [2.300788850603344, 48.87494977762409], [2.300975707734525, 48.87493226245733], [2.301164554233542, 48.87491462551075], [2.301351411112373, 48.87489710975696], [2.301540255981322, 48.8748794731084], [2.301727112607593, 48.874861956767624], [2.30174083768155, 48.874866362660136], [2.301841049713186, 48.87498082444662], [2.301938979916692, 48.87509578725141], [2.302039194188518, 48.87521024885618], [2.30213712390944, 48.87532521056777], [2.30215347111668, 48.87532930343725], [2.302332596898995, 48.875288394194456], [2.302511603185203, 48.87524885278428], [2.302690729784932, 48.87520794211132], [2.302869734159415, 48.87516840015475], [2.303048860189125, 48.87512748984221], [2.303227864015227, 48.87508794734723], [2.303406989486957, 48.875047036495815], [2.303585994127907, 48.87500749347036], [2.303765117690336, 48.87496658117287], [2.30394412178299, 48.874927037609076], [2.303952828421842, 48.87492704866455], [2.303968767287441, 48.87493058132177], [2.304146681316016, 48.87497036198056], [2.304298646632439, 48.875004046024536], [2.304466551054527, 48.87504126426367], [2.304644465853364, 48.875081043279394], [2.304812370782876, 48.875118260131615], [2.30499028610883, 48.87515803863061], [2.304991339427038, 48.8751591059681], [2.305026996308623, 48.87516437267574], [2.305205926522981, 48.8751578380029], [2.305386002634859, 48.87515094637841], [2.305564931394708, 48.87514441116091], [2.3057450087759, 48.875137519004234], [2.305923937444573, 48.875130983250074], [2.306104013368492, 48.87512409054538], [2.306282941945983, 48.87511755425451], [2.306463019139403, 48.87511066101758], [2.306470048135183, 48.87511164335061], [2.306676162457878, 48.87518300836207], [2.306887209168623, 48.87525465698269], [2.307093325980116, 48.87532602217384], [2.3073043738442, 48.875397670049665], [2.307310550514209, 48.87540195067734], [2.307383108269246, 48.87550744312599], [2.307457681477552, 48.875613755685556], [2.307530239825649, 48.87571924802477], [2.30760481227417, 48.875825560464406], [2.307677371215331, 48.87593105269415], [2.307751945630791, 48.876037365029575], [2.307824505165025, 48.876142857149915], [2.307899080184074, 48.876249169373295], [2.307967429472824, 48.87628327895563]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 104, "zemmour_eric": 220.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "8-14", "circ_bv": "01", "num_bureau": 14, "roussel_fabien": 10.0, "nb_emargement": 1143.0, "nb_procuration": 56.0, "nb_vote_blanc": 6.0, "jadot_yannick": 40.0, "le_pen_marine": 76.0, "nb_exprime": 1125.0, "nb_vote_nul": 6.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1509.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "30", "geo_point_2d": [48.8737499440143, 2.3029834077615843], "melenchon_jean_luc": 151.0, "poutou_philippe": 0.0, "macron_emmanuel": 495.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295468004116497, 48.88166060999953], [2.295497243238251, 48.881675662479374], [2.295532769530049, 48.88180444873196], [2.295568215402009, 48.88193294309983], [2.2956037406813072, 48.88206172929323], [2.2956391869034922, 48.882190223610024], [2.295674713897334, 48.88231900976026], [2.295710160481913, 48.88244750312674], [2.295745686463252, 48.882576289217816], [2.295781133385905, 48.88270478343251], [2.29581666108181, 48.88283356948041], [2.295852108354706, 48.88296206364405], [2.295887635038107, 48.88309084963274], [2.295923082661246, 48.88321934374534], [2.2959616239997658, 48.883241669750205], [2.295979160830817, 48.88323366716709], [2.296023220972405, 48.88320020118369], [2.29615252384881, 48.883103027419], [2.296285627937219, 48.883001925971676], [2.296414928468139, 48.8829047518981], [2.2965480315282, 48.8828036510401], [2.296677332440734, 48.88270647667362], [2.296810434484607, 48.88260537550567], [2.296939733051683, 48.882508200830316], [2.297072834091519, 48.88240709845321], [2.297130559181344, 48.882363715260944], [2.2971464713416783, 48.88235440882127], [2.297148753731379, 48.88235008652356], [2.297220327552723, 48.88229629473598], [2.29734668241254, 48.882202721249826], [2.297475978991426, 48.88210554506051], [2.2976023315655603, 48.88201197128034], [2.297731628557345, 48.881914794806065], [2.297857980209328, 48.88182122073987], [2.297987276250493, 48.88172404397268], [2.298113626980333, 48.88163046962051], [2.29824292207089, 48.88153329256041], [2.298369271878593, 48.881439717922206], [2.298498564655147, 48.88134254056115], [2.298624914904122, 48.88124896564493], [2.298754206730086, 48.88115178799098], [2.298880556056937, 48.88105821278878], [2.299009846932317, 48.88096103484193], [2.299136195337049, 48.88086745935369], [2.299265485261855, 48.88077028111393], [2.299391832744476, 48.880676705339724], [2.299521121718716, 48.88057952680707], [2.299647466915855, 48.88048595073889], [2.299650467617809, 48.8804776737091], [2.299649490873129, 48.88046746501848], [2.299586299500716, 48.88044990630886], [2.299404727625164, 48.880352181352734], [2.299220536749246, 48.880257517410236], [2.299104743914999, 48.88019800581786], [2.298923173833395, 48.880100279209785], [2.298854776712221, 48.88006512646129], [2.298829100837141, 48.88007222833972], [2.298700664376947, 48.88015419347902], [2.298572322414214, 48.88023609787557], [2.298443883782394, 48.880318062719184], [2.298315541012001, 48.880399966828286], [2.298187101571915, 48.88048193138428], [2.298058757993856, 48.8805638352059], [2.297930317745503, 48.88064579947419], [2.297801973359773, 48.88072770300833], [2.29767353366653, 48.88080966699695], [2.297545188473128, 48.88089157024362], [2.297528654843609, 48.88089280424991], [2.297359630910705, 48.88082544040737], [2.297188113233679, 48.88075708140286], [2.297019090181649, 48.88068971707126], [2.296847573398605, 48.88062135757045], [2.296678552591035, 48.88055399275776], [2.296507035338593, 48.88048563275264], [2.296338015411995, 48.8804182674509], [2.296166500416911, 48.880349906957534], [2.295997480007808, 48.88028254115873], [2.295825965906807, 48.88021418016903], [2.29565694637868, 48.88014681388117], [2.295485433171557, 48.88007845239522], [2.295316414524503, 48.88001108561828], [2.295144902199191, 48.87994272453533], [2.294975885808642, 48.879875356378115], [2.294804373013839, 48.87980699479086], [2.294785583707838, 48.879811498613435], [2.294780577714262, 48.87981626169633], [2.29484751200726, 48.87993878334798], [2.29491249601815, 48.88005773208318], [2.294979430931736, 48.88018025363419], [2.295044414169577, 48.88029920316298], [2.295111349716132, 48.8804217237141], [2.295176334920056, 48.880540673153206], [2.295243271087317, 48.880663193603716], [2.295308256893757, 48.88078214294514], [2.29537519368173, 48.880904663295006], [2.295440178727405, 48.881023612530704], [2.29550711612393, 48.88114613367922], [2.295572103147895, 48.88126508192596], [2.29557278303428, 48.88126935597667], [2.29555261520408, 48.88136605808713], [2.295525907117478, 48.88145694346469], [2.2954991975742542, 48.88154782882076], [2.29547902951174, 48.88164452999511], [2.295468004116497, 48.88166060999953]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 155, "zemmour_eric": 189.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "17-67", "circ_bv": "04", "num_bureau": 67, "roussel_fabien": 7.0, "nb_emargement": 1328.0, "nb_procuration": 72.0, "nb_vote_blanc": 7.0, "jadot_yannick": 59.0, "le_pen_marine": 63.0, "nb_exprime": 1318.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1612.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1328, "quartier_bv": "65", "geo_point_2d": [48.88132184441891, 2.2969036764056954], "melenchon_jean_luc": 125.0, "poutou_philippe": 2.0, "macron_emmanuel": 679.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408246181469436, 48.85650286300952], [2.408278551341216, 48.85649645875276], [2.408318839927163, 48.8565013228795], [2.408520323998397, 48.85652563092146], [2.408697540415117, 48.85654702533896], [2.408700373058649, 48.85654758254133], [2.408830832610964, 48.85658380345864], [2.40896462758382, 48.85662049037904], [2.409095088875348, 48.856656710113334], [2.409228884221477, 48.85669339673585], [2.40924323651116, 48.856691774123405], [2.409363338732691, 48.85662037164412], [2.409481968684401, 48.85654920819675], [2.409602070250164, 48.85647780546869], [2.40972069817828, 48.856406642668034], [2.409840799088283, 48.856335239691234], [2.409959427738816, 48.85626407575224], [2.409960630290801, 48.856263433253254], [2.410041540336929, 48.85622498042585], [2.410131317381654, 48.856183517072935], [2.410144346862939, 48.85617448441267], [2.41014065822755, 48.85616358144114], [2.410084917113168, 48.85607468686272], [2.410022612205025, 48.85597160867096], [2.409966870124369, 48.85588271491478], [2.409904565679304, 48.85577963664373], [2.409828980095334, 48.85565742037967], [2.4097666761924432, 48.85555434201592], [2.409776719444843, 48.855542183820305], [2.410017110670431, 48.85551116639824], [2.410251627217166, 48.85548077876163], [2.410262533657177, 48.855473022585635], [2.41028768899949, 48.855334262209034], [2.410312789548853, 48.85519599618134], [2.410337945986324, 48.855057235766274], [2.410363044906154, 48.854918969686864], [2.410388201076047, 48.854780209226654], [2.410413301091803, 48.854641943108945], [2.410438455621232, 48.85450318349613], [2.410463555380368, 48.85436491643412], [2.410488709642136, 48.85422615677619], [2.4105138091244083, 48.85408789056844], [2.410538964491595, 48.85394912997273], [2.41056406234428, 48.853810863713264], [2.410589217443908, 48.853672103072455], [2.410614316392507, 48.853533836774695], [2.410629981470563, 48.85350089345768], [2.410618705037968, 48.85349585732231], [2.410485597054347, 48.85347193455624], [2.41026445293053, 48.85343206940824], [2.410069593913093, 48.853397046930205], [2.409848449062681, 48.853357181003915], [2.409704187864009, 48.85333125256451], [2.409687291204269, 48.85333066826916], [2.409673174746775, 48.85336316404036], [2.409606935319089, 48.853493069197505], [2.409540692347402, 48.853622536304236], [2.409474450897027, 48.85375244135101], [2.409408207266333, 48.853881908354175], [2.409341963316753, 48.854011374406284], [2.409275720866432, 48.854141280196856], [2.409209476257934, 48.854270746145446], [2.409143233157677, 48.854400650933094], [2.409076987880053, 48.8545301176774], [2.409010744119858, 48.85466002236133], [2.408944498183294, 48.854789489002066], [2.4088782551257752, 48.854919393589114], [2.408876467939657, 48.854921715868855], [2.408752835414724, 48.85503716223605], [2.408627169293998, 48.85515437642544], [2.408503535664682, 48.85526982251086], [2.408377868422032, 48.85538703641391], [2.40825423368832, 48.85550248221759], [2.408128565323833, 48.85561969583428], [2.408128862709087, 48.855630350069944], [2.408180489945619, 48.85567492973485], [2.408242089249506, 48.855727581764114], [2.408233985063892, 48.85574189526193], [2.408032512033829, 48.855768596814755], [2.407836110008497, 48.8557947115679], [2.407634636560098, 48.85582141334889], [2.407438234136276, 48.855847527447814], [2.407427622729354, 48.855858298538486], [2.407472809496908, 48.855992197606454], [2.407517441157516, 48.85612567299727], [2.407562628387862, 48.856259571999075], [2.40760726050748, 48.856393047324275], [2.407599348172605, 48.85641144025745], [2.407602685521609, 48.8564149552367], [2.407721524908563, 48.856429491465974], [2.407898739307536, 48.856450887061555], [2.40809707110796, 48.856475146945535], [2.408233997238226, 48.856491677842335], [2.408246181469436, 48.85650286300952]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 28, "zemmour_eric": 57.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-36", "circ_bv": "15", "num_bureau": 36, "roussel_fabien": 9.0, "nb_emargement": 895.0, "nb_procuration": 21.0, "nb_vote_blanc": 10.0, "jadot_yannick": 40.0, "le_pen_marine": 65.0, "nb_exprime": 882.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1265.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 895, "quartier_bv": "80", "geo_point_2d": [48.85522090980033, 2.409319494496626], "melenchon_jean_luc": 464.0, "poutou_philippe": 7.0, "macron_emmanuel": 175.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352948138053721, 48.85132692070365], [2.35297023619564, 48.851327433224654], [2.353046463340402, 48.85131695152437], [2.353190960495993, 48.85129354818118], [2.353351662643922, 48.85127144907323], [2.353496159547423, 48.851248044461244], [2.353656861414438, 48.85122594584177], [2.353659717286128, 48.85122532992166], [2.353851296485578, 48.85116943098142], [2.354030691436771, 48.85111566217915], [2.354222271197706, 48.85105976264676], [2.354401664026058, 48.85100599327563], [2.354593242985753, 48.85095009314375], [2.35477263505378, 48.85089632321109], [2.354964213212335, 48.850840422479756], [2.355143605882643, 48.85078665199293], [2.355335181877442, 48.85073075065478], [2.3555145737874152, 48.85067697960647], [2.355515208409026, 48.850676794160215], [2.355547372646207, 48.85068979671758], [2.355539877952233, 48.85066903429558], [2.355563500841131, 48.85065323304556], [2.355530537352879, 48.85060403341575], [2.35541777470975, 48.85049837313023], [2.355307647097295, 48.85039257493315], [2.3551948853635682, 48.8502869144175], [2.355084760013104, 48.85018111600251], [2.354971997826277, 48.850075455249396], [2.354861873375298, 48.84996965660914], [2.354749113460547, 48.84986399563322], [2.354638988546253, 48.84975819676039], [2.3545262295409772, 48.84965253555436], [2.354416106888732, 48.849546736463644], [2.35430334879292, 48.849441075027485], [2.354193225677353, 48.84933527570418], [2.354189679576805, 48.84933298658655], [2.354031734440839, 48.84926301835597], [2.353874272480675, 48.84919335200547], [2.353716328202656, 48.849123382450486], [2.353558865712142, 48.84905371656806], [2.353400923643484, 48.84898374659528], [2.353243461996636, 48.848914080289035], [2.353085519411906, 48.84884410988376], [2.352928058608626, 48.84877444315369], [2.352922136669505, 48.848768149799106], [2.352896663795561, 48.84864080420753], [2.352869280245228, 48.84851029781084], [2.352843807626383, 48.84838295217851], [2.352816424343909, 48.848252445739504], [2.35279095198036, 48.848125100066454], [2.352763568965638, 48.84799459358516], [2.352738096857282, 48.847867247871335], [2.3527107141105112, 48.84773674134772], [2.352685242257242, 48.84760939559317], [2.352657859778317, 48.84747888902727], [2.352638599543036, 48.84747197307201], [2.35243685071564, 48.847534110655324], [2.352244301455294, 48.847592809994154], [2.352042553052596, 48.84765494691327], [2.351850002901667, 48.84771364561114], [2.351834097518211, 48.84771145134694], [2.351683523712786, 48.847599479293706], [2.351536508471071, 48.847487622555576], [2.351385935940661, 48.84737565100463], [2.3512389219691032, 48.84726379387832], [2.3511861827964893, 48.84724500447288], [2.351179703184789, 48.847247305867455], [2.351155473057319, 48.84727862324081], [2.351059419757125, 48.847395947050664], [2.350971090925635, 48.847510114558446], [2.350882761718339, 48.847624281090035], [2.350786707155893, 48.84774160554385], [2.350698377152304, 48.847855771915555], [2.350602321759276, 48.84797309529766], [2.350582759626143, 48.847987131524235], [2.350591512895954, 48.84800567254126], [2.350506348228161, 48.848109837979315], [2.35042411994166, 48.84821038948214], [2.350338954593512, 48.84831455568117], [2.35025672703497, 48.84841510615859], [2.350171561017572, 48.84851927221933], [2.350089331439164, 48.84861982345508], [2.350004164752707, 48.8487239893775], [2.349921935902059, 48.848824539587866], [2.349921644598126, 48.84883270687078], [2.350008356681705, 48.848951768180946], [2.350093104316735, 48.84906829874289], [2.350179815821392, 48.84918735989625], [2.35026456422286, 48.849303890312065], [2.3503512765225762, 48.84942295041666], [2.350436025690591, 48.849539480686424], [2.35052077387505, 48.8496560108765], [2.350607488697422, 48.84977507166443], [2.350612033383621, 48.849778578640965], [2.350780877647486, 48.84985543303138], [2.3509509924056102, 48.849932185245464], [2.351119837667067, 48.85000903914694], [2.351289953414771, 48.85008579176784], [2.351458801036416, 48.85016264518774], [2.351628917795993, 48.850239396416825], [2.351797765052543, 48.8503162493404], [2.351967882812799, 48.850393000076906], [2.352136731067049, 48.850469852511544], [2.352306849827984, 48.85054660275554], [2.352475699079734, 48.850623454701214], [2.352645818841353, 48.85070020445264], [2.35265110020696, 48.85070487280447], [2.352722279724638, 48.85085076377754], [2.352791040703701, 48.85099358199656], [2.352859802059771, 48.85113640015779], [2.352930982751185, 48.85128229095008], [2.352948138053721, 48.85132692070365]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 78, "zemmour_eric": 107.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-22", "circ_bv": "02", "num_bureau": 22, "roussel_fabien": 21.0, "nb_emargement": 1148.0, "nb_procuration": 74.0, "nb_vote_blanc": 10.0, "jadot_yannick": 92.0, "le_pen_marine": 58.0, "nb_exprime": 1134.0, "nb_vote_nul": 4.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1395.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1148, "quartier_bv": "17", "geo_point_2d": [48.84942169616762, 2.3524887347928893], "melenchon_jean_luc": 247.0, "poutou_philippe": 1.0, "macron_emmanuel": 485.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.320568806865964, 48.8484405218138], [2.320526236559624, 48.84847032500072], [2.3204698587851382, 48.848594414274594], [2.320412011438456, 48.84871894304379], [2.3203556331112862, 48.84884303313544], [2.32029778521557, 48.84896756182159], [2.320241406359166, 48.849091650932436], [2.32018355790288, 48.84921618043482], [2.320127178505504, 48.849340269464115], [2.320069329500268, 48.84946479888349], [2.320012949561914, 48.84958888783126], [2.319955100019355, 48.849713416268294], [2.319898719528279, 48.849837506033786], [2.319840869436859, 48.84996203438777], [2.319784488416526, 48.85008612317241], [2.3197266377643952, 48.85021065234268], [2.31967025620296, 48.85033474104576], [2.319612405013591, 48.85045926923367], [2.319556022899507, 48.850583358754506], [2.319498171161152, 48.850707886859354], [2.319441788517795, 48.850831975399366], [2.3193839362186, 48.850956504320436], [2.319327553034219, 48.85108059277888], [2.31926970019787, 48.85120512071761], [2.31921331646071, 48.851329209993764], [2.319155463075351, 48.85145373784945], [2.3190990787970502, 48.85157782704403], [2.319041224862676, 48.85170235481664], [2.319009239400495, 48.85171479167096], [2.319009303092924, 48.85174203629416], [2.31901995564735, 48.85187076001025], [2.319033478006128, 48.85202787478988], [2.319044130678706, 48.85215659847074], [2.319057654535441, 48.85231371411428], [2.319063897122823, 48.852389153596185], [2.319070834846115, 48.85239992781263], [2.319133402958367, 48.85239715770012], [2.3193248824390222, 48.852426602094816], [2.319514595454655, 48.85245587245167], [2.319706073991962, 48.85248531712636], [2.319895788809966, 48.852514585985745], [2.320087267778416, 48.85254403004886], [2.320276983012455, 48.85257329920163], [2.32046846242377, 48.85260274175387], [2.320658176723021, 48.85263201029294], [2.320849657916491, 48.852661453140655], [2.321039372655321, 48.852690720174515], [2.321230854279912, 48.85272016241062], [2.321420569446584, 48.85274942883857], [2.321612051502188, 48.8527788704631], [2.321801767084993, 48.85280813718439], [2.321991482892604, 48.85283740270482], [2.322182965594147, 48.85286684341341], [2.322372681817889, 48.85289610922717], [2.322564164962121, 48.8529255484249], [2.322753881613687, 48.852954813632714], [2.322945365177416, 48.852984253118166], [2.323135082268483, 48.85301351682071], [2.323326564900528, 48.85304295568688], [2.323516283770488, 48.8530722196905], [2.323707766845279, 48.85310165704578], [2.323718223751117, 48.853109442522396], [2.323741888032036, 48.8532528968477], [2.323762949034391, 48.85339700915508], [2.323786614931914, 48.85354046344215], [2.3238076761742, 48.85368457570437], [2.323831342325363, 48.85382802994548], [2.323852403807581, 48.85397214216256], [2.323854423204608, 48.85397605677877], [2.323965562799905, 48.854093034430456], [2.324088967983433, 48.8542250950956], [2.324200108636449, 48.8543420725032], [2.324323515004213, 48.854474132896826], [2.324355873806408, 48.85450819074171], [2.324389832628049, 48.85452312202379], [2.324414843306151, 48.85451141962488], [2.32461161934204, 48.854497914141945], [2.324807140300397, 48.85448354866469], [2.325003916129352, 48.854470042536256], [2.325199436874969, 48.85445567641769], [2.325396212485337, 48.85444217054309], [2.325591733018209, 48.854427803783146], [2.32578850843327, 48.85441429636382], [2.325984028753383, 48.85439992896251], [2.325995925916134, 48.85439261226959], [2.326033180429903, 48.85425846019883], [2.326070507463355, 48.854124060287624], [2.326107761593108, 48.853989908161196], [2.326145088241818, 48.85385550819426], [2.326182343350244, 48.85372135601985], [2.326219669614315, 48.853586955997166], [2.326256922975949, 48.853452803759524], [2.326294248855187, 48.8533184036811], [2.326331501832925, 48.85318425138778], [2.326368827327439, 48.85304985125364], [2.326406081283946, 48.85291569891234], [2.326443405030978, 48.852781298714795], [2.326480658603492, 48.852647146317956], [2.326517983328571, 48.852512746072314], [2.326555235154242, 48.85237859361217], [2.326592559494715, 48.85224419331084], [2.3266298122991538, 48.85211004080272], [2.326667134892082, 48.851975640438035], [2.326704387312646, 48.85184148787431], [2.326741710883617, 48.85170708746151], [2.326778961557481, 48.85157293483454], [2.326816284743761, 48.85143853436606], [2.326860545032668, 48.85140483172484], [2.326845078301032, 48.85138871635425], [2.326724864561009, 48.851313822254895], [2.32663000674016, 48.85125120666681], [2.326627831007331, 48.851250101702114], [2.326461884506188, 48.85118222664235], [2.326284212788078, 48.8511102553006], [2.326118267168221, 48.85104238065505], [2.3259405964015, 48.850970408794005], [2.325774650323579, 48.8509025327564], [2.3255969805082533, 48.85083056037606], [2.325431036674214, 48.8507626847603], [2.325253367810277, 48.85069071186069], [2.32508742488079, 48.85062283486057], [2.324909756968244, 48.85055086144169], [2.324743814920017, 48.85048298485578], [2.324566147958858, 48.85041101091764], [2.324400205452599, 48.850343132939656], [2.324222540805422, 48.85027115848992], [2.324221382440196, 48.850270633916594], [2.324067826801743, 48.85019909578424], [2.32390791234311, 48.85011825362014], [2.323754356209645, 48.85004671596731], [2.323594444067604, 48.84996587338086], [2.323440888825154, 48.849894334416625], [2.323358987651231, 48.84985292972572], [2.323353438390207, 48.84984643104906], [2.323335461030223, 48.84983823334467], [2.323257449693128, 48.84979879499556], [2.323102465000635, 48.84971976932117], [2.322942553522081, 48.849638924932755], [2.322787569782583, 48.849559898839125], [2.322627659271436, 48.84947905491752], [2.322472675122254, 48.84940002839697], [2.322312766964559, 48.84931918315131], [2.322157783768367, 48.84924015621151], [2.3219978765781573, 48.849159311432686], [2.321842894334849, 48.84908028407362], [2.321682986772757, 48.84899943795536], [2.321528006845092, 48.84892041018477], [2.321368100250369, 48.84883956453332], [2.321213121275676, 48.84876053634355], [2.321053215671739, 48.84867968936034], [2.320898236287368, 48.84860066074361], [2.320738333013432, 48.84851981423499], [2.32058335458203, 48.84844078519902], [2.320568806865964, 48.8484405218138]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 174, "zemmour_eric": 158.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "7-8", "circ_bv": "02", "num_bureau": 8, "roussel_fabien": 10.0, "nb_emargement": 1239.0, "nb_procuration": 92.0, "nb_vote_blanc": 7.0, "jadot_yannick": 47.0, "le_pen_marine": 48.0, "nb_exprime": 1229.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 5, "nb_inscrit": 1526.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1239, "quartier_bv": "25", "geo_point_2d": [48.85158746645908, 2.322947541766066], "melenchon_jean_luc": 118.0, "poutou_philippe": 3.0, "macron_emmanuel": 630.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.354002438082366, 48.88513261226353], [2.35397170004497, 48.88512541726868], [2.3537781872477, 48.88512366970321], [2.353590434121541, 48.885122952074056], [2.3533969227098392, 48.88512120389975], [2.353209169597827, 48.885120485672715], [2.353015658208093, 48.885118736882205], [2.352827905110237, 48.88511801805732], [2.352640152017568, 48.88511729893798], [2.352446639295181, 48.88511554922045], [2.352444932644162, 48.88511560474176], [2.3522409503933313, 48.88512968829296], [2.352036370017502, 48.88514481597712], [2.351832386178145, 48.88515889882454], [2.351627805568775, 48.88517402581024], [2.351423821504513, 48.88518810796122], [2.351219240661815, 48.88520323424841], [2.351015257747477, 48.885217314811065], [2.35081067530765, 48.88523244039239], [2.350606692157225, 48.8852465211579], [2.3504021108477042, 48.88526164604813], [2.350198126108793, 48.885275726109796], [2.349993544565771, 48.885290850301544], [2.3497895596021, 48.885304929666795], [2.349584977825691, 48.88532005316], [2.349535530290437, 48.88533110977356], [2.349534246599063, 48.88534282823841], [2.349536151711954, 48.88534719133593], [2.349645435822591, 48.88546862229655], [2.349744998697582, 48.88558055200829], [2.34974956021165, 48.88559016451523], [2.349758864437089, 48.88559608046106], [2.349858426435955, 48.88570801005811], [2.349954161396329, 48.8858159725316], [2.350053725599023, 48.885927901951256], [2.35014946136846, 48.886035864247], [2.350245197546191, 48.886143825556296], [2.350344762990084, 48.8862557555998], [2.350440499976888, 48.88636371673138], [2.350540064897472, 48.88647564658269], [2.350635802693458, 48.88658360753651], [2.350735369817926, 48.88669553721041], [2.350736381931858, 48.88669694025249], [2.350790422743362, 48.88680145175924], [2.350855868843989, 48.886916992353065], [2.350909910123675, 48.88702150378496], [2.35095717200125, 48.88710494048952], [2.35097398503259, 48.88713549810737], [2.350975261536089, 48.88713604102521], [2.350993447686505, 48.887168144829786], [2.351058894698481, 48.88728368527405], [2.351116027202542, 48.88740350097342], [2.351116310789694, 48.88740405379716], [2.351173443557933, 48.887523869456], [2.35123791503159, 48.887665018177145], [2.351295048377064, 48.887784832850166], [2.351359520503558, 48.887925981472314], [2.35141665440397, 48.88804579695814], [2.3514811271943072, 48.888186944582024], [2.351516903817853, 48.88826197122121], [2.351536947790044, 48.888279538379365], [2.351590902492141, 48.88826933364229], [2.351641161144296, 48.888218623933675], [2.351682051538238, 48.88817638908401], [2.351695793854645, 48.88817235806982], [2.351874575945592, 48.888192057078975], [2.352055319261628, 48.88821076908111], [2.352234102984155, 48.888230467560135], [2.352414846573792, 48.888249178119665], [2.3525936305642, 48.8882688760612], [2.352774374416442, 48.888287586077396], [2.352953158674722, 48.88830728348142], [2.35313390278946, 48.88832599295426], [2.353312685951913, 48.88834568981344], [2.353493430329141, 48.88836439874292], [2.353509182469826, 48.88835544647422], [2.353507617701519, 48.888219176762284], [2.353500560343358, 48.888087251696156], [2.353498995605674, 48.88795098195088], [2.353491938305706, 48.88781905685201], [2.353510439422695, 48.887777276049924], [2.353504816667987, 48.88777321401419], [2.353497759377364, 48.887641288894315], [2.353488344349676, 48.887519897422], [2.353481285771551, 48.887387972263376], [2.353471870827967, 48.88726658076176], [2.353464813689576, 48.88713465557906], [2.353455398830293, 48.88701326404819], [2.353445984014805, 48.88689187250314], [2.353438926992779, 48.88675994727398], [2.35344403113007, 48.88675261025133], [2.3536120821546502, 48.88666386193578], [2.353781834515711, 48.88657599311077], [2.353949884394695, 48.88648724430686], [2.354119635609893, 48.88639937498883], [2.354287684343184, 48.886310625696545], [2.354457434412627, 48.886222755885484], [2.354464334026801, 48.88621280516074], [2.35444889747171, 48.886192846810694], [2.3543926479183153, 48.88606125078554], [2.354335817945873, 48.88593425524209], [2.354278988250518, 48.88580725965697], [2.354222738190634, 48.8856756625992], [2.354165910416879, 48.885548666937886], [2.354109660910927, 48.88541707069528], [2.35405283233152, 48.88529007494307], [2.353996583390647, 48.88515847861638], [2.354002438082366, 48.88513261226353]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 12, "zemmour_eric": 43.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-57", "circ_bv": "17", "num_bureau": 57, "roussel_fabien": 16.0, "nb_emargement": 1342.0, "nb_procuration": 105.0, "nb_vote_blanc": 12.0, "jadot_yannick": 100.0, "le_pen_marine": 52.0, "nb_exprime": 1326.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1864.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1342, "quartier_bv": "71", "geo_point_2d": [48.88647097977663, 2.3522217498001043], "melenchon_jean_luc": 798.0, "poutou_philippe": 11.0, "macron_emmanuel": 246.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339735967554379, 48.866092515006045], [2.339766699384699, 48.866084211814595], [2.339899748345097, 48.866052710487985], [2.340071869028705, 48.86601202810444], [2.3402539618867753, 48.86596891465552], [2.340426082016906, 48.86592823175947], [2.340608174289026, 48.8658851177684], [2.340780293876952, 48.86584443346063], [2.340962385551638, 48.865801319826666], [2.3411345045861722, 48.86576063500642], [2.341174447450702, 48.86574496256572], [2.341153574028326, 48.865710190510164], [2.341066463500872, 48.865585054548966], [2.340976489736781, 48.86546247666734], [2.340889381411992, 48.86533734055679], [2.340799407129302, 48.865214762507094], [2.340709434633003, 48.865092184383684], [2.340622326205871, 48.86496704802938], [2.340532354554048, 48.86484446974542], [2.340445248340923, 48.864719332342496], [2.340355276170492, 48.864596753890496], [2.340268170785514, 48.86447161722995], [2.340267616078091, 48.86447074900142], [2.340203537675913, 48.86435353923819], [2.340138427564324, 48.864236230206345], [2.3400743483783, 48.864119020341654], [2.340009238850711, 48.86400171121467], [2.339945161618245, 48.86388450036421], [2.339880051300206, 48.86376719203387], [2.339815974646739, 48.86364998108944], [2.339750866287128, 48.86353267177222], [2.339750608426226, 48.8635321523259], [2.339689975611404, 48.86339579520423], [2.339639395048054, 48.86328048515722], [2.339588813345475, 48.863165175069355], [2.339528181392623, 48.86302881692118], [2.339477600180642, 48.86291350676012], [2.339416968811764, 48.86277714852468], [2.339366388090272, 48.86266183829041], [2.33930575730536, 48.86252547996765], [2.339255177074249, 48.86241016966018], [2.339233891739859, 48.86236229767569], [2.339231234832674, 48.86235243065175], [2.339223083197134, 48.862344079267906], [2.3392033601586713, 48.86230393320414], [2.339164015376633, 48.86221544766312], [2.339171060583933, 48.86220485267694], [2.339296385991746, 48.86216402804479], [2.339432926715455, 48.86212631217707], [2.339440560285462, 48.86211510526818], [2.339386155567598, 48.86201020629977], [2.339317394375379, 48.86187731856966], [2.339262991528213, 48.861772418630984], [2.339194230963979, 48.86163953080165], [2.339139827238701, 48.86153463167623], [2.339106613320092, 48.86149467457424], [2.339059986924497, 48.86149823300763], [2.3389651762277612, 48.861528869068984], [2.338786926101779, 48.86158695354888], [2.338609468773008, 48.86164429478546], [2.338431217855544, 48.861702378729504], [2.338253759742125, 48.86175971943261], [2.338075508033282, 48.861817802840825], [2.337898049135214, 48.861875143010565], [2.337719796634793, 48.86193322588289], [2.337542335589077, 48.861990565511626], [2.337364082297281, 48.86204864784809], [2.33718662182992, 48.862105986950965], [2.33700836774655, 48.86216406875157], [2.336830906494546, 48.86222140732102], [2.336652651619704, 48.86227948858574], [2.336475189583061, 48.86233682662173], [2.336296932553839, 48.862394907343024], [2.336119469732556, 48.862452244845564], [2.335941213274776, 48.86251032503855], [2.335763749668856, 48.86256766200768], [2.335585492419712, 48.86262574166477], [2.335408028029057, 48.86268307810041], [2.335229769988449, 48.86274115722163], [2.335118607922728, 48.86277707210146], [2.335097130579169, 48.86278180386074], [2.335119575916313, 48.86284220824329], [2.335168184518456, 48.8629496184731], [2.33521881000083, 48.86305975500521], [2.335267419010543, 48.86316716517363], [2.335318043551066, 48.863277301634554], [2.335313487636502, 48.86328694881198], [2.335183124248915, 48.863355399805265], [2.3350511048020453, 48.86342413464018], [2.334920740726434, 48.86349258533922], [2.334788720585645, 48.86356131987615], [2.334658355822006, 48.86362977028088], [2.3345263349875, 48.86369850451988], [2.33452347348319, 48.86371058752474], [2.334671376400001, 48.863855505925585], [2.334802925350994, 48.863986758482426], [2.334810579166972, 48.86399039930993], [2.334953469597592, 48.864016617057416], [2.3351020592898513, 48.86404433942607], [2.335244951389636, 48.86407055593257], [2.3353935413909452, 48.864098277938], [2.335402799888673, 48.86410970159067], [2.335340080706047, 48.86423749938781], [2.335279813701729, 48.864359832839405], [2.33521709391627, 48.8644876305432], [2.33515682633379, 48.864609963905274], [2.335156414351228, 48.86461447453631], [2.335192842152745, 48.86473705992663], [2.335229825473525, 48.86485960251034], [2.3352662536077142, 48.864982188750474], [2.33530323728667, 48.8651047303851], [2.335339665765011, 48.865227316575755], [2.335376649790673, 48.865349858160556], [2.335413078613172, 48.865472444301695], [2.335450064348638, 48.865594985844226], [2.335486493515202, 48.86571757193592], [2.335523478234393, 48.865840113421086], [2.335559907745123, 48.86596269946326], [2.335596892810932, 48.866085240898585], [2.3355971437206122, 48.86608737194051], [2.335595047729558, 48.866138843310765], [2.335591942939597, 48.86618796628485], [2.335592594479831, 48.866190963821104], [2.335650471695426, 48.866309574138185], [2.335705900492059, 48.86642372536242], [2.33576132815702, 48.86653787744092], [2.335819206142221, 48.8666564876392], [2.335874634303125, 48.86677063964119], [2.335932514179508, 48.866889248868006], [2.335950200165661, 48.86689493282331], [2.336154979195224, 48.86684518660706], [2.33635874354656, 48.866795552228325], [2.336563521783873, 48.86674580620796], [2.336767285357332, 48.8666961711292], [2.336972062813853, 48.86664642440533], [2.3371758256093242, 48.8665967886266], [2.337192746560636, 48.86660121177859], [2.337211556857025, 48.86662610277924], [2.337225433667806, 48.86664489408301], [2.337253120630074, 48.8666726105074], [2.337260542310632, 48.86667171898369], [2.337385832857737, 48.866643066184835], [2.337529201779903, 48.86660949677834], [2.337727410010924, 48.866564167755165], [2.337870778495841, 48.86653059793706], [2.338052874988213, 48.86648748785711], [2.338251080936124, 48.86644215795416], [2.338433176804636, 48.866399047292205], [2.338631383448244, 48.866353716763385], [2.33863162682091, 48.866353659650876], [2.338813722065051, 48.86631054840643], [2.338980477959959, 48.86627005289853], [2.339162571260146, 48.8662269411126], [2.339329326604841, 48.86618644601488], [2.339511420687199, 48.86614333370249], [2.339678174129878, 48.86610283810816], [2.339727218640601, 48.86609122564499], [2.339735967554379, 48.866092515006045]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 84, "zemmour_eric": 81.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "1-7", "circ_bv": "01", "num_bureau": 7, "roussel_fabien": 12.0, "nb_emargement": 895.0, "nb_procuration": 51.0, "nb_vote_blanc": 9.0, "jadot_yannick": 53.0, "le_pen_marine": 47.0, "nb_exprime": 884.0, "nb_vote_nul": 2.0, "arr_bv": "01", "arthaud_nathalie": 1, "nb_inscrit": 1115.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 895, "quartier_bv": "03", "geo_point_2d": [48.86435679260745, 2.337710069290181], "melenchon_jean_luc": 158.0, "poutou_philippe": 3.0, "macron_emmanuel": 399.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332426233576045, 48.82752977856897], [2.332367292864996, 48.82755419948229], [2.332244143858844, 48.827572722609304], [2.332063747358772, 48.82760149985784], [2.332062855357628, 48.82760095075315], [2.332016944203157, 48.8276068271724], [2.331949426310863, 48.827639695481146], [2.331889965348759, 48.82767481673121], [2.331881337989237, 48.82767710241533], [2.331686171278379, 48.82768140369109], [2.331497724104291, 48.82768740875437], [2.331309278260328, 48.82769341262907], [2.331114110067582, 48.82769771386289], [2.330925664142299, 48.82770371713304], [2.330730497241436, 48.82770801774844], [2.330542049860985, 48.82771402130579], [2.330346882901459, 48.827718320395796], [2.33034343254348, 48.827718105011485], [2.3301571400729593, 48.82769039250929], [2.329985088208042, 48.827664783995644], [2.329980502433564, 48.82766462519606], [2.329814492742229, 48.82767752921603], [2.329644081252856, 48.82768951974825], [2.329478072772655, 48.82770242240929], [2.329307661112872, 48.8277144133612], [2.329305498842305, 48.827714451599945], [2.329078570246392, 48.82770675628007], [2.328854046280175, 48.82769893012358], [2.328851999817915, 48.827698754952365], [2.328674819729572, 48.82767464381199], [2.328461056692823, 48.82764538671451], [2.328283878340346, 48.827621274102164], [2.328070115741714, 48.8275920163045], [2.327892936389328, 48.82756790310416], [2.327679174229025, 48.82753864460638], [2.32750199523884, 48.827514530825724], [2.327288234878873, 48.82748527163541], [2.327111056250796, 48.82746115727443], [2.327084538232389, 48.82746827413342], [2.32709268090544, 48.827490678462965], [2.327118309256083, 48.82754109423982], [2.327161660984375, 48.82762908046404], [2.327226795020061, 48.827757213271106], [2.327270147111252, 48.82784519943906], [2.327270921442129, 48.827846418852744], [2.32736165448537, 48.82796407931283], [2.327453169009606, 48.828080958928496], [2.327544685294689, 48.828197839368954], [2.327635418205264, 48.82831549957681], [2.327726935310648, 48.82843237985333], [2.327817669040728, 48.82855003989836], [2.327909186966423, 48.828666920010974], [2.327999921527612, 48.82878457899379], [2.328000353495874, 48.828785095864006], [2.328018032419751, 48.828803997552214], [2.328048271643148, 48.828793568312484], [2.32825162833643, 48.82880407231646], [2.328451108165027, 48.82881458388427], [2.328654463659312, 48.82882508719545], [2.328853943649638, 48.82883559809113], [2.329057299307047, 48.82884610071716], [2.329256779458992, 48.828856610940726], [2.329460136641648, 48.82886711288925], [2.3296596169551, 48.82887762244076], [2.329862972938725, 48.82888812369648], [2.330062453413877, 48.82889863257583], [2.330063053851108, 48.8288986557256], [2.330258645168651, 48.82890323629179], [2.3304579095249203, 48.82890799089437], [2.330653500912175, 48.82891257081477], [2.330852766690621, 48.82891732566635], [2.331048356785547, 48.828921904933374], [2.331247622647217, 48.8289266582277], [2.331443212811734, 48.82893123684896], [2.33164247873364, 48.82893599038469], [2.33183807032998, 48.82894056836774], [2.332037334961417, 48.82894532123797], [2.332232926638952, 48.828949897675905], [2.332432191342041, 48.82895464988819], [2.332627783077721, 48.82895922657968], [2.332827047852458, 48.828963978134055], [2.332840171309955, 48.82897324565716], [2.332834776812292, 48.82908757652012], [2.332833211418164, 48.82920159326516], [2.332827816881508, 48.829315924104506], [2.332826251465302, 48.829429940826245], [2.332820855527703, 48.829544271634404], [2.332819290089415, 48.82965828833282], [2.332832463915461, 48.829667359167985], [2.333061312220837, 48.82967232480649], [2.333270976591194, 48.829675987792896], [2.333480640991114, 48.82967965041174], [2.333709489400578, 48.82968461570926], [2.333753664347491, 48.82966474729208], [2.333745477234268, 48.82964951394391], [2.333714216704967, 48.829604969143645], [2.333672057549097, 48.82954226729352], [2.333673751450219, 48.82953102555303], [2.333652978306199, 48.829512844973486], [2.333618397663334, 48.82946141491675], [2.333531967868426, 48.829334566640625], [2.333455228828369, 48.829220434596216], [2.333368799829989, 48.829093586174885], [2.33329206150186, 48.828979454001214], [2.333205631949361, 48.82885260452782], [2.333124206416314, 48.82873287265504], [2.333037779031546, 48.82860602393934], [2.332956354280622, 48.828486291026664], [2.332874929892092, 48.82836655894504], [2.332788503721215, 48.828239710007765], [2.332788031644867, 48.82823891772204], [2.332729215417757, 48.82812457478772], [2.332678386832106, 48.82802303942772], [2.332627558444337, 48.82792150403696], [2.332568741565166, 48.82780716098375], [2.332512744691742, 48.82768951672811], [2.332453928337718, 48.82757517269543], [2.33243464646378, 48.827534664175666], [2.332426233576045, 48.82752977856897]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 79, "zemmour_eric": 77.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-6", "circ_bv": "11", "num_bureau": 6, "roussel_fabien": 18.0, "nb_emargement": 1226.0, "nb_procuration": 80.0, "nb_vote_blanc": 7.0, "jadot_yannick": 119.0, "le_pen_marine": 26.0, "nb_exprime": 1219.0, "nb_vote_nul": 0.0, "arr_bv": "14", "arthaud_nathalie": 0, "nb_inscrit": 1455.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1226, "quartier_bv": "55", "geo_point_2d": [48.8283458720343, 2.330445948529856], "melenchon_jean_luc": 331.0, "poutou_philippe": 3.0, "macron_emmanuel": 505.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.282268143191398, 48.838974659773406], [2.282250516099346, 48.83896244036137], [2.282129188313297, 48.83888055023768], [2.282004773117225, 48.83879691015888], [2.281883446114956, 48.8387150188745], [2.281759031708329, 48.83863137852771], [2.281637705465057, 48.838549487881224], [2.281513291847868, 48.8384658472665], [2.281391966388374, 48.83838395545932], [2.28126755356062, 48.838300314576635], [2.281262818078173, 48.83828911770973], [2.28124519287783, 48.83828519306737], [2.281089831468256, 48.8381973593148], [2.280944635037585, 48.83811758637971], [2.28079944042612, 48.83803781237158], [2.280655470506278, 48.83795897009957], [2.280510275404427, 48.83787919662019], [2.280366306360178, 48.83780035398899], [2.280222337751461, 48.837721511178934], [2.280077143973951, 48.83764173715692], [2.279933176240618, 48.83756289398765], [2.279787984709841, 48.8374831196115], [2.279644016489739, 48.83740427607483], [2.27949882585566, 48.83732450043712], [2.279354859860955, 48.83724565744875], [2.279209668749003, 48.83716588144055], [2.279065703642207, 48.837087037193676], [2.2789205147644243, 48.837007261730676], [2.278908123116783, 48.83700551419239], [2.2787006390225573, 48.83704388602836], [2.278490209686185, 48.8370826048853], [2.278282724964904, 48.83712097689304], [2.2780722950068872, 48.83715969501213], [2.277864809683662, 48.83719806539303], [2.277654379091553, 48.83723678367356], [2.277637642265447, 48.8372306379059], [2.277582832784531, 48.83710658447907], [2.277528416729318, 48.83698335901372], [2.277473607768363, 48.8368593055094], [2.277419190867173, 48.8367360799589], [2.277364382426174, 48.83661202637707], [2.277309967403669, 48.83648880075789], [2.277255159495084, 48.8363647461993], [2.277200743614234, 48.83624152139423], [2.277145936225491, 48.83611746675816], [2.277091522223296, 48.835994241884414], [2.277036713992278, 48.83587018716263], [2.276982300518784, 48.83574696131262], [2.27692749415753, 48.83562290742093], [2.276873081200357, 48.835499681494], [2.276818273996723, 48.83537562751661], [2.276763861555866, 48.83525240151276], [2.276709056234442, 48.835128347466124], [2.276654644309891, 48.835005121385365], [2.276599838158566, 48.834881066353745], [2.276545426737937, 48.83475784109538], [2.276539551628328, 48.83474845834189], [2.276520530527471, 48.834746471688014], [2.276324014072338, 48.83474322328138], [2.276126117575858, 48.83473997339469], [2.275929602532085, 48.834736724348254], [2.275731704722693, 48.83473347380076], [2.275535189715511, 48.83473022500562], [2.275337293317569, 48.8347269738138], [2.275140777009702, 48.83472372346311], [2.274942880661148, 48.83472047161871], [2.274746364402391, 48.83471722061997], [2.2745484681030312, 48.834713968123005], [2.274351951880873, 48.83471071737557], [2.274154055630916, 48.83470746422605], [2.273957539470404, 48.8347042119313], [2.273759643269661, 48.8347009581292], [2.273563127158288, 48.83469770518641], [2.273365231006971, 48.83469445073174], [2.273168714932207, 48.83469119804025], [2.27297081883012, 48.834687942932995], [2.272774304179328, 48.83468468870249], [2.27257640676441, 48.8346814329344], [2.272379892162787, 48.83467817805585], [2.272181994797122, 48.83467492163519], [2.271985480232116, 48.83467166700793], [2.271787584278191, 48.834668409942985], [2.271591068412652, 48.834665153760156], [2.271393172508, 48.83466189604264], [2.271196656691659, 48.83465863921179], [2.270998760823915, 48.83465538174098], [2.270802245056778, 48.834652124262114], [2.270604349250901, 48.83464886523948], [2.270407833532981, 48.83464560711253], [2.270209937776609, 48.834642347437324], [2.2700134221079162, 48.83463908866243], [2.269815526388259, 48.83463582923394], [2.269619010768901, 48.83463256981101], [2.269421115111262, 48.83462930883066], [2.269224600903325, 48.83462604876802], [2.269026703932843, 48.8346227871268], [2.268830189774162, 48.83461952641617], [2.268632294202882, 48.83461626503], [2.268435778731188, 48.83461300366303], [2.2682378832218753, 48.834609740724986], [2.268041367799458, 48.834606478709965], [2.267843472339709, 48.834603215119365], [2.267835557264834, 48.8345969870471], [2.267821508534208, 48.834594173237626], [2.267804115358898, 48.83459706978533], [2.26767074777481, 48.83461771512654], [2.267482161862657, 48.83464912227294], [2.267452761216732, 48.83465401919576], [2.267319393360426, 48.83467466324482], [2.267287466397351, 48.834679979950295], [2.267280774176295, 48.83467990118023], [2.267136723120146, 48.83465476153281], [2.266946782400578, 48.83462059402644], [2.266719012566392, 48.834580843007316], [2.266529072377205, 48.83454667573465], [2.266339133811941, 48.8345125072684], [2.266111364913419, 48.83447275508832], [2.26610088546091, 48.834470926209335], [2.265910946090055, 48.83443675705246], [2.26575690346981, 48.83440987167065], [2.265602861008361, 48.83438298608984], [2.26541292228439, 48.83434881613944], [2.265258880180881, 48.834321930114164], [2.265068943267129, 48.83428775962398], [2.2650617146645198, 48.834286497449845], [2.265058473398683, 48.834285932510554], [2.264885193318087, 48.83425569722328], [2.264695255528462, 48.834221526129326], [2.264643349337883, 48.8342124695596], [2.264570181419586, 48.834199701813226], [2.2645657877378502, 48.834198934609624], [2.264481365857157, 48.83418420441952], [2.264291428592649, 48.834150032682125], [2.264116844770204, 48.83411956790551], [2.263926907967468, 48.83408539648661], [2.263752324574535, 48.83405493117618], [2.263562388258973, 48.83402075827718], [2.263387803920696, 48.83399029332385], [2.263197869441771, 48.83395611985239], [2.263023285533011, 48.83392565436525], [2.2629970988685653, 48.83395028887002], [2.262998566895714, 48.83395929169926], [2.26310655198951, 48.83406629413383], [2.263216254809385, 48.834175366615085], [2.263324240797632, 48.83428236883242], [2.263433944527626, 48.83439144109301], [2.2635419327599, 48.834498444000836], [2.26365163740023, 48.83460751604069], [2.263759625177415, 48.834714517823635], [2.2638693307279842, 48.83482358964277], [2.26397731939965, 48.834930591208526], [2.264087025860367, 48.83503966280692], [2.264200905860565, 48.835156255375644], [2.26431061325136, 48.835265327646276], [2.26442449424456, 48.83538191997859], [2.264534202590931, 48.835490991122846], [2.264648084577244, 48.83560758321878], [2.264757793866405, 48.83571665413596], [2.264871675483534, 48.835833245987104], [2.264981387065124, 48.83594231758489], [2.265095269675383, 48.83605890919963], [2.265204980850156, 48.83616797966266], [2.265205154177182, 48.836168151608945], [2.265314865799133, 48.8362772228598], [2.265426001146624, 48.836385456427166], [2.265535713700736, 48.836494526555015], [2.265646849970101, 48.836602759896145], [2.265756563431036, 48.83671183069948], [2.265867701984621, 48.836820063822756], [2.26597741637773, 48.83692913350307], [2.266088554490881, 48.83703736639173], [2.266198269790839, 48.83714643674759], [2.266309408825896, 48.83725466941003], [2.266419125058038, 48.83736373864279], [2.266530265002355, 48.83747197197828], [2.266639983516382, 48.83758104099562], [2.266751124395282, 48.837689273205584], [2.2668608424665, 48.8377983419908], [2.266971984254686, 48.837906574873834], [2.2670831265171802, 48.83801480674381], [2.267192845968338, 48.838123875192736], [2.267303989140037, 48.83823210773571], [2.267413710873032, 48.83834117596921], [2.267440942091898, 48.83836815398993], [2.267480746375974, 48.83840772199451], [2.267486393782077, 48.83842158715597], [2.267503276907842, 48.83843132374159], [2.267573193629244, 48.838500823808616], [2.267674138118282, 48.838610567418584], [2.267674413408635, 48.83861085330619], [2.267774471324277, 48.83871895003274], [2.2678754166722648, 48.83882869255215], [2.267975475423036, 48.838936789089516], [2.268076421603383, 48.83904653231718], [2.268176481189194, 48.83915462866533], [2.268277428214745, 48.83926437170198], [2.268377488635504, 48.83937246786092], [2.268478436506166, 48.83948221070655], [2.268578497762085, 48.839590306676286], [2.268679446490486, 48.83970004843158], [2.268779508581369, 48.83980814421207], [2.268880456779867, 48.83991788666735], [2.268980521068241, 48.84002598226692], [2.269081470111873, 48.84013572453116], [2.269181533873017, 48.84024381993321], [2.269282485124215, 48.840353562014684], [2.269340525578126, 48.840416260146135], [2.26935166957181, 48.840428705377754], [2.269374012625503, 48.84043596397675], [2.269416038187818, 48.840481360154556], [2.269524654808574, 48.84059818370801], [2.269636377276845, 48.84071382904626], [2.269725346613524, 48.84080959054884], [2.269837069980241, 48.840925235677716], [2.269837233801489, 48.84092540755831], [2.269935170370176, 48.841025668312476], [2.270046893315769, 48.84114131231542], [2.270144830680862, 48.841241573777815], [2.270256555916899, 48.841357217570874], [2.2703544927412462, 48.841457477934625], [2.270466218892702, 48.84157312240882], [2.2705641578884173, 48.84167338258983], [2.2705804494630533, 48.8416822759823], [2.270630488519066, 48.84165185226659], [2.270810330466986, 48.84159186154921], [2.270989362022849, 48.841532207383224], [2.271169203144867, 48.841472216119904], [2.271348233879007, 48.841412561410486], [2.2715280741751203, 48.84135256960124], [2.271707104087633, 48.841292914348344], [2.271886943557841, 48.84123292199317], [2.272065972648525, 48.841173266196805], [2.272245811292825, 48.84111327329566], [2.272424839561881, 48.84105361695587], [2.272604677380271, 48.84099362350883], [2.272783704827494, 48.84093396662554], [2.272963541819973, 48.840873972632615], [2.273142568445461, 48.8408143152059], [2.273322403249693, 48.840754320658746], [2.273501430415883, 48.8406946626969], [2.273681264394101, 48.84063466760384], [2.273860290738551, 48.84057500909851], [2.274039315323267, 48.84051534941448], [2.274219149413564, 48.84045535441079], [2.274398173176635, 48.840395694183336], [2.274578005078594, 48.84033569862547], [2.274757029382242, 48.84027603786286], [2.27493686045829, 48.84021604175907], [2.275115883940287, 48.84015638045305], [2.275295714190421, 48.84009638380339], [2.275474736850563, 48.84003672195392], [2.275654566274783, 48.83997672475837], [2.27583358673836, 48.83991706325653], [2.276013416711572, 48.83985706462406], [2.2761924363532993, 48.839797402578796], [2.276372265500584, 48.83973740340045], [2.276391697815419, 48.83973414201015], [2.276395300298923, 48.83972079283441], [2.276424587522866, 48.83959043868933], [2.27645437529084, 48.83945915400182], [2.276483662232512, 48.839328798912476], [2.276513449689682, 48.83919751507878], [2.276542736336605, 48.83906715994445], [2.276572522133072, 48.838935876057064], [2.276601808485251, 48.83880552087777], [2.276631595358282, 48.838674236053855], [2.276637895856228, 48.83866792278186], [2.276799171058439, 48.83860199358001], [2.276955587228872, 48.83853842532233], [2.277112004380262, 48.83847485686473], [2.277273277023048, 48.83840892700406], [2.277429693398382, 48.83834535812369], [2.277590965238657, 48.83827942782708], [2.27760406070717, 48.838278974485405], [2.277818404312047, 48.838347253187095], [2.2780265616400213, 48.838413752073066], [2.278234720873956, 48.838480249701796], [2.27844906613264, 48.83854852726115], [2.278452292043645, 48.838549246432464], [2.278642642784973, 48.83857474232328], [2.278831133459935, 48.83859987863798], [2.279021485921415, 48.83862537483232], [2.279209976974605, 48.83865050964957], [2.279400328443913, 48.83867600523172], [2.279588819850446, 48.83870114035023], [2.27977917306477, 48.83872663443725], [2.279967664837077, 48.83875176895767], [2.280156156803589, 48.83877690228117], [2.280346509197275, 48.838802396354765], [2.280351054223571, 48.83880359468184], [2.280517985420966, 48.838872744317776], [2.2806865133424292, 48.8389429205058], [2.280853445431174, 48.83901206966498], [2.281021974242356, 48.839082246270955], [2.281188907222252, 48.83915139495338], [2.281357438298068, 48.83922157108616], [2.281524370806822, 48.839290719283646], [2.281692902797171, 48.839360894035735], [2.281694931495844, 48.839361589740655], [2.281714488680845, 48.83936198598338], [2.2817253468036522, 48.8393472232363], [2.281858750801997, 48.83925665609876], [2.282014171549168, 48.839151095319046], [2.282147574556074, 48.839060526944166], [2.282267027518881, 48.83897939456991], [2.282268143191398, 48.838974659773406]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 103, "zemmour_eric": 104.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "15-77", "circ_bv": "13", "num_bureau": 77, "roussel_fabien": 28.0, "nb_emargement": 1188.0, "nb_procuration": 56.0, "nb_vote_blanc": 14.0, "jadot_yannick": 77.0, "le_pen_marine": 87.0, "nb_exprime": 1167.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1522.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1188, "quartier_bv": "60", "geo_point_2d": [48.83740233631675, 2.2720475188800497], "melenchon_jean_luc": 279.0, "poutou_philippe": 8.0, "macron_emmanuel": 409.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.359717757023316, 48.89271427793569], [2.359737836415816, 48.89266455661456], [2.359750264243098, 48.89259200378242], [2.359768451436009, 48.89248131454493], [2.359790237469925, 48.892354124901246], [2.359808424494767, 48.89224343563369], [2.359830210331504, 48.892116245955144], [2.359848398552068, 48.892005556664785], [2.359848478910072, 48.89200478907371], [2.359853676586577, 48.89187710778879], [2.359854282035033, 48.8917491033648], [2.359859478308003, 48.891621422042554], [2.359860083750381, 48.89149341668945], [2.359865281336223, 48.891365736243706], [2.35986588676126, 48.89123773086071], [2.359871082943684, 48.891110050377726], [2.359871689715248, 48.89098204497214], [2.359876885868982, 48.890854363559846], [2.3598774912485903, 48.8907263590164], [2.359882688726233, 48.890598677581416], [2.359883294088604, 48.89047067300808], [2.3598884901627493, 48.89034299153579], [2.359889095507885, 48.89021498693263], [2.35989632354429, 48.890197804433924], [2.359890010792776, 48.890180804957936], [2.359888304968676, 48.89004754672535], [2.359883168922712, 48.88991253534466], [2.359881463124911, 48.88977927707942], [2.359876327123047, 48.88964426566541], [2.359874621340488, 48.88951100826675], [2.359869484030158, 48.889375995912935], [2.359867778273901, 48.889242738481634], [2.359862642360441, 48.88910772700103], [2.359860936641637, 48.88897446863783], [2.359855800772379, 48.888839457123964], [2.359854095079768, 48.88870619872809], [2.359848959254708, 48.888571187180936], [2.35984725357734, 48.88843792965166], [2.359842117807533, 48.88830291717197], [2.3598404121564602, 48.88816965961003], [2.359835276419796, 48.88803464799633], [2.359833570806074, 48.88790138950249], [2.359828433750029, 48.88776637784824], [2.359819946980962, 48.887758405822275], [2.359755940326425, 48.88776111769787], [2.35955223056664, 48.887765904459975], [2.359350091903495, 48.88777079371097], [2.35914795456597, 48.887775682627996], [2.3589442446822533, 48.88778046925495], [2.358742107269069, 48.887785357486806], [2.358538395957599, 48.88779014251669], [2.358336258468769, 48.88779503006335], [2.358132548445951, 48.88779981441005], [2.357930410881486, 48.887804701271534], [2.357726699419765, 48.88780948492042], [2.357524561779676, 48.88781437109677], [2.357320851606527, 48.88781915406246], [2.357118713890825, 48.88782403955362], [2.356915003642678, 48.887828821828805], [2.356712864487693, 48.88783370662745], [2.356509154153244, 48.88783848911141], [2.356471145061974, 48.887834411442675], [2.356458184763845, 48.887841522000045], [2.356429920936726, 48.8879717344828], [2.356404079803448, 48.888092723897316], [2.3563758157046832, 48.888222936337506], [2.356349974321028, 48.88834392571263], [2.3563217099505103, 48.888474138110276], [2.356295868316474, 48.88859512744608], [2.356291127055679, 48.88861317388769], [2.356305598837296, 48.888623917677215], [2.356367455216724, 48.88874859621109], [2.356425850161011, 48.88887364370167], [2.356487705761317, 48.88899832213775], [2.35654610126333, 48.88912337044049], [2.356607958823153, 48.88924804789416], [2.356666354894018, 48.889373096109836], [2.356728213027233, 48.88949777437226], [2.356786609666959, 48.88962282250087], [2.356848468395895, 48.889747499773534], [2.356906865604489, 48.88987254781503], [2.356968724906937, 48.88999722589648], [2.357027122695615, 48.8901222729516], [2.357044070368381, 48.89015643032317], [2.357042540141442, 48.890162286594354], [2.357056079816573, 48.89018339986422], [2.357087504432883, 48.89025289742576], [2.357132416805806, 48.89034341802088], [2.35713264970617, 48.89034388512072], [2.357202291957348, 48.890471884637485], [2.357264152679214, 48.89059656249824], [2.357333795580519, 48.89072456280841], [2.357395655564804, 48.890849239665904], [2.357465299127343, 48.890977239870054], [2.357527161079374, 48.89110191753751], [2.357529702070976, 48.891104777526664], [2.357665707633677, 48.89120803442502], [2.357796349385181, 48.89130546086138], [2.357932357364645, 48.89140871744533], [2.3580630001186123, 48.8915061435729], [2.358193643372563, 48.89160356865007], [2.358329651543735, 48.89170682564666], [2.358460297152859, 48.89180425132164], [2.35859630638813, 48.891907507097216], [2.358726951635953, 48.89200493245618], [2.358862961924244, 48.892108187910004], [2.3589936095383512, 48.89220561296746], [2.359129620879674, 48.892308868099555], [2.359260268132486, 48.892406292840974], [2.3593962805268482, 48.892509547651265], [2.359526930145973, 48.892606972091265], [2.359662943593384, 48.892710226579766], [2.359717757023316, 48.89271427793569]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 40, "zemmour_eric": 57.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-52", "circ_bv": "17", "num_bureau": 52, "roussel_fabien": 27.0, "nb_emargement": 1371.0, "nb_procuration": 94.0, "nb_vote_blanc": 7.0, "jadot_yannick": 143.0, "le_pen_marine": 59.0, "nb_exprime": 1364.0, "nb_vote_nul": 0.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1829.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1371, "quartier_bv": "71", "geo_point_2d": [48.8897198230404, 2.358427329209735], "melenchon_jean_luc": 670.0, "poutou_philippe": 14.0, "macron_emmanuel": 289.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.335620871081666, 48.830375879159895], [2.335599973799708, 48.83036126696387], [2.3354379728930352, 48.83029680634437], [2.335288869281724, 48.83023497500134], [2.335139764673299, 48.830173142562145], [2.334977764908794, 48.83010868220779], [2.334828662392841, 48.83004684938132], [2.334666663405458, 48.82998238859831], [2.334517560246061, 48.82992055626877], [2.334355562047282, 48.82985609415782], [2.334335304194075, 48.829861646566236], [2.334287196597546, 48.829990638678375], [2.334233289064707, 48.83011146722897], [2.334218930889595, 48.83011787898351], [2.334176113252024, 48.83011518622541], [2.334131440106556, 48.83010781177153], [2.334084891974033, 48.83011978319344], [2.334087929233689, 48.83014168727578], [2.334118304633327, 48.83018796281751], [2.334200258619547, 48.83031147144754], [2.33427379911248, 48.83042350842621], [2.33435575383738, 48.83054701692375], [2.3344292950082473, 48.83065905288396], [2.334511250471937, 48.83078256124898], [2.334569414522247, 48.83088311646891], [2.334569642757288, 48.83088348558256], [2.334652502228952, 48.83100965110429], [2.33473445741044, 48.83113315927014], [2.334817317666348, 48.8312593255489], [2.334899274992928, 48.83138283358185], [2.334982136056046, 48.83150899881901], [2.3350640941541663, 48.831632507610834], [2.335146956013028, 48.83175867270566], [2.335228913543529, 48.83188218045015], [2.335311776186676, 48.83200834630197], [2.335393735862319, 48.83213185391351], [2.335476599312701, 48.832258018723756], [2.335558559760025, 48.832381527094164], [2.335640519244846, 48.8325050344879], [2.3357233838856892, 48.83263119908511], [2.335805345515897, 48.83275470634592], [2.335888210941075, 48.83288087170012], [2.335970173354252, 48.83300437882043], [2.33605303958669, 48.833130543133], [2.336099845112892, 48.83317598018271], [2.33614368250801, 48.83316801494081], [2.336231871896602, 48.83314355042958], [2.336411456284162, 48.83309523797855], [2.336593085669339, 48.83304485275646], [2.336772668019977, 48.83299653975128], [2.3369542967120402, 48.832946153976216], [2.337133878376461, 48.832897841323785], [2.337315506387043, 48.832847454096445], [2.337495088738824, 48.832799140904974], [2.337676714694139, 48.832748753117166], [2.337856296371238, 48.83270043937907], [2.338037921622104, 48.832650051937634], [2.338217502635835, 48.83260173675366], [2.338399128555806, 48.832551348766835], [2.338578707532507, 48.83250303302874], [2.338760332759547, 48.83245264448892], [2.338939911050046, 48.832404329103575], [2.339121535595352, 48.83235393911154], [2.339301114573279, 48.83230562318717], [2.339405409602678, 48.83227668728403], [2.339427378556021, 48.832264388294064], [2.339395318456684, 48.832218363033924], [2.339244470194408, 48.832146132205544], [2.339096644572591, 48.83207438645546], [2.338945797140774, 48.832002155241085], [2.33879797232678, 48.83193041001197], [2.338647125725419, 48.83185817841165], [2.338499303092958, 48.8317864328117], [2.338348457322046, 48.8317142008254], [2.338200634146792, 48.83164245483956], [2.338049789206331, 48.831570222467306], [2.337901966850292, 48.83149847610308], [2.337900797581482, 48.83149797407579], [2.337724705774121, 48.831430618214725], [2.337545037986128, 48.831362226888984], [2.337368947096861, 48.831294870495974], [2.337189280243444, 48.83122647862749], [2.337013190272373, 48.83115912170257], [2.336833522991336, 48.831090729283865], [2.336657433938464, 48.83102337182697], [2.336477768954198, 48.83095497887316], [2.3363016808195223, 48.830887620884326], [2.33612201676983, 48.83081922738779], [2.335945928191269, 48.83075186885951], [2.335766265076154, 48.8306834748203], [2.3355901787778732, 48.83061611576767], [2.335410516597332, 48.83054772118575], [2.335407558611423, 48.83053365832927], [2.335515069668207, 48.8304607121087], [2.335615464689684, 48.830391348936196], [2.335620871081666, 48.830375879159895]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 85, "zemmour_eric": 63.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "14-34", "circ_bv": "11", "num_bureau": 34, "roussel_fabien": 23.0, "nb_emargement": 1137.0, "nb_procuration": 39.0, "nb_vote_blanc": 10.0, "jadot_yannick": 127.0, "le_pen_marine": 39.0, "nb_exprime": 1124.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1379.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "54", "geo_point_2d": [48.83171654775319, 2.33647127343494], "melenchon_jean_luc": 307.0, "poutou_philippe": 6.0, "macron_emmanuel": 423.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.372672374048178, 48.855115785584175], [2.37269284623258, 48.85510625816922], [2.3727504345671, 48.855075396667075], [2.3728144195324, 48.85504017713602], [2.372830154253177, 48.85503936925109], [2.372862838815206, 48.85505229514677], [2.372893303180498, 48.85506420752123], [2.372911865447746, 48.85506660803778], [2.372924539038085, 48.85505482281406], [2.372973573932291, 48.85500842596533], [2.37302300787241, 48.85496102571199], [2.373037568712343, 48.854945980325354], [2.373018407367606, 48.85493481251725], [2.372844040280255, 48.854862198913914], [2.372655532900104, 48.854783319784325], [2.372653238534462, 48.85476933634124], [2.372769399445602, 48.85469337727095], [2.37293688888739, 48.8545827464014], [2.373053048969074, 48.85450678704299], [2.373220538571671, 48.85439615576495], [2.373336697823902, 48.85432019611849], [2.373336836557333, 48.8543201060106], [2.373482619074367, 48.85422745651153], [2.373626250543262, 48.85413650163875], [2.373769881521639, 48.85404554568685], [2.373915661137752, 48.85395289563017], [2.374059291094047, 48.85386194021517], [2.374205071044697, 48.85376928979768], [2.374348700000522, 48.85367833312095], [2.374494477560129, 48.853585682328486], [2.374638105504586, 48.85349472528932], [2.374783883398731, 48.85340207413613], [2.374927510321241, 48.853311117633865], [2.375073285824369, 48.85321846610564], [2.37508981250686, 48.85321725555452], [2.375177261457053, 48.85325229231381], [2.375247735251095, 48.853279462782034], [2.375250426884969, 48.85328025657386], [2.37534774304038, 48.85330096768819], [2.375436333297719, 48.85331858347439], [2.375440978173748, 48.85331901242762], [2.375635680958859, 48.85331466212852], [2.3758363594212852, 48.85331011334975], [2.376031062140232, 48.853305762407274], [2.376231740533864, 48.85330121296539], [2.376426443186538, 48.85329686137948], [2.3766271201485862, 48.85329231126738], [2.376821822734876, 48.8532879590381], [2.377022500990891, 48.85328340826991], [2.377025171339645, 48.85328518670084], [2.377055457723167, 48.85328370756219], [2.377068870302674, 48.85326642170342], [2.377074434917446, 48.85324760026382], [2.376987646472263, 48.853107632882], [2.376903422066179, 48.852969025998554], [2.376816634533569, 48.85282905935691], [2.376732411032635, 48.85269045231836], [2.376724416433184, 48.85268534732217], [2.376676091649337, 48.852673756555276], [2.376624232147791, 48.852661332540244], [2.376615268516284, 48.85265247488773], [2.376620303110855, 48.852578515912725], [2.376624918036577, 48.852512295470966], [2.376623937146562, 48.852508507685116], [2.376554217635089, 48.852394857521546], [2.37648492694257, 48.852282296855876], [2.376415209410451, 48.85216864569599], [2.376345919318898, 48.85205608492692], [2.376276201029962, 48.85194243365583], [2.376206912891449, 48.851829873689766], [2.376137623700397, 48.85171731276578], [2.376067907681635, 48.85160366134583], [2.375998619091532, 48.85149110031844], [2.37592890231595, 48.85137744878726], [2.375894696142989, 48.85133649549177], [2.375868519692849, 48.85134548198884], [2.375731662338259, 48.85137964853279], [2.375554573026195, 48.8514236606265], [2.375375772429621, 48.851468297568296], [2.375198682504827, 48.85151231003105], [2.375019879947279, 48.85155694553102], [2.374842789420738, 48.85160095746357], [2.37466398761691, 48.85164559243528], [2.374486896488526, 48.85168960383755], [2.374308094064891, 48.8517342391732], [2.3741310023454663, 48.851778249145916], [2.373952199312718, 48.85182288394614], [2.373775105628723, 48.8518668933815], [2.373774337208648, 48.85186710340577], [2.373588859989686, 48.85192216040789], [2.373403382430597, 48.85197573948307], [2.37321790443292, 48.852030795904774], [2.373032426105841, 48.85208437439971], [2.372846947318731, 48.852139431140316], [2.372661466871639, 48.85219300814853], [2.372475988668667, 48.852248064315845], [2.372290507442659, 48.85230164164311], [2.3722731924142852, 48.852302018468244], [2.372251722643194, 48.852315251325884], [2.372066242310104, 48.852368828309395], [2.371851855339407, 48.852433216364275], [2.371850097827887, 48.85243385107422], [2.371693307113595, 48.852504804291264], [2.371573625217959, 48.852555904735794], [2.371453944461098, 48.852607004166096], [2.37129715267564, 48.852677957752256], [2.371295595163564, 48.85267873200521], [2.371181763169916, 48.852744281211606], [2.3710283916679202, 48.85283834958628], [2.37091455898946, 48.85290389852907], [2.370914097719647, 48.852904176701905], [2.370760725263727, 48.85299824471998], [2.370630303496339, 48.85308060227802], [2.370499882679463, 48.85316295969499], [2.370346508714094, 48.85325702716026], [2.3703192202402033, 48.85325660116072], [2.3702840214039362, 48.85325677476261], [2.370273175747622, 48.85329253618334], [2.370388536527568, 48.853399437687386], [2.370498753651763, 48.85350188809444], [2.370614115347009, 48.853608790260196], [2.37072433335754, 48.853711240440106], [2.370839695989924, 48.85381814146897], [2.370949916238736, 48.85392059232827], [2.37106527979741, 48.85402749311951], [2.371175499580639, 48.85412994284529], [2.37128571978633, 48.85423239335942], [2.371401084724346, 48.85433929379688], [2.371402966232674, 48.85434070037355], [2.371559572857682, 48.85443646928191], [2.371715594810177, 48.85453104236458], [2.371872202581848, 48.85462681084735], [2.372028225671699, 48.85472138350619], [2.372184250690728, 48.85481595596067], [2.372340860180077, 48.854911723805515], [2.372496884973658, 48.85500629582906], [2.372653495609689, 48.85510206324831], [2.372672374048178, 48.855115785584175]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 51, "zemmour_eric": 57.0, "hidalgo_anne": 51.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "11-11", "circ_bv": "07", "num_bureau": 11, "roussel_fabien": 33.0, "nb_emargement": 1528.0, "nb_procuration": 112.0, "nb_vote_blanc": 11.0, "jadot_yannick": 146.0, "le_pen_marine": 54.0, "nb_exprime": 1512.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1908.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1528, "quartier_bv": "43", "geo_point_2d": [48.85305020428999, 2.373600583636431], "melenchon_jean_luc": 539.0, "poutou_philippe": 22.0, "macron_emmanuel": 535.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.366889524575493, 48.87449361248934], [2.366894717334117, 48.874506882665116], [2.366918073779292, 48.87452863700367], [2.367033527366117, 48.87463277721333], [2.367146447913359, 48.87473795163317], [2.367261902420767, 48.8748420916028], [2.367374823883052, 48.87494726578726], [2.3674902806742972, 48.87505140552412], [2.367603201688186, 48.875156579465994], [2.367718659400138, 48.875260718962785], [2.367831581318065, 48.87536589356857], [2.367947039950534, 48.87547003282533], [2.368059964157703, 48.87557520630363], [2.3681754223474343, 48.875679345313195], [2.36828834746958, 48.8757845185561], [2.368403806580043, 48.875888657325596], [2.368516732617074, 48.8759938303331], [2.368528211760433, 48.875997623122686], [2.36872458872128, 48.87599426202118], [2.368925675413861, 48.87599153877202], [2.369122050962743, 48.875988177011344], [2.369323137611046, 48.875985453094536], [2.369519514474697, 48.875982090688986], [2.36972059971534, 48.87597936609733], [2.369733363217341, 48.875984742964725], [2.369784367753824, 48.87606138471478], [2.369847895258257, 48.876137494302114], [2.369859466391082, 48.87614214631071], [2.370059935663432, 48.87614575820606], [2.370263313827365, 48.876149429135275], [2.370463783155749, 48.8761530403543], [2.370667160023964, 48.87615670969096], [2.370867630771744, 48.876160320240835], [2.371071007696833, 48.87616398889138], [2.371271478500621, 48.87616759876491], [2.371474855482675, 48.876171266729386], [2.371675324968235, 48.87617487681875], [2.371878702007042, 48.87617854409705], [2.372079172922821, 48.87618215261798], [2.37228255001847, 48.87618581921019], [2.3723269854799423, 48.876205428345614], [2.372363739654346, 48.87617647365857], [2.372476458681464, 48.87607774130923], [2.372600164549191, 48.875970348290956], [2.372712881318781, 48.875871615693384], [2.37283658619863, 48.87576422331], [2.372949302073975, 48.87566549047141], [2.373073007350977, 48.87555809693149], [2.373185722321161, 48.87545936475109], [2.373277023239385, 48.87538010154593], [2.3732862383793982, 48.87536788197643], [2.373238123371344, 48.8753445369676], [2.373112678202267, 48.87522523365177], [2.372987429252698, 48.87510644023949], [2.372861986594536, 48.874987136642346], [2.372736738789277, 48.87486834294214], [2.372611295915422, 48.87474903904941], [2.372486049265299, 48.87463024416202], [2.372478058203757, 48.874626637308786], [2.372274676369603, 48.87459422914955], [2.372071460210046, 48.87456200947249], [2.37186807888124, 48.87452960062051], [2.371664863214507, 48.87449738115063], [2.371461482391052, 48.87446497160599], [2.371258265875615, 48.8744327505375], [2.371250849500227, 48.87442966013987], [2.371124813014187, 48.87432680303633], [2.370994059886125, 48.87421986590159], [2.370868024403971, 48.8741170094074], [2.370737273693085, 48.87401007197898], [2.370611237873311, 48.87390721428844], [2.370480488205397, 48.87380027745849], [2.370454595382708, 48.873779145398316], [2.370446725056209, 48.87376523355436], [2.3704349301653203, 48.87376300322313], [2.370334788244654, 48.87368127728517], [2.370251044678558, 48.87361110405759], [2.370243044122336, 48.87360334656603], [2.370223974977718, 48.873603542123185], [2.370038990178008, 48.873652651850776], [2.369855790700064, 48.87370145232572], [2.36967080520549, 48.87375056147995], [2.36948760640164, 48.87379936139426], [2.3693026202122063, 48.87384846997522], [2.369119419355724, 48.87389726931451], [2.3689344324823303, 48.87394637642285], [2.368751232288857, 48.87399517610082], [2.368566244720618, 48.87404428263584], [2.368383042485518, 48.87409308083953], [2.368198054211532, 48.87414218770048], [2.368014851287126, 48.87419098533633], [2.367831649382774, 48.874239782696854], [2.367646660067914, 48.87428888869917], [2.367463456110939, 48.87433768548469], [2.367278466101241, 48.874386790913675], [2.3670952628182, 48.874435587138564], [2.36691027211367, 48.87448469199421], [2.366889524575493, 48.87449361248934]]], "type": "Polygon"}, "properties": {"lassalle_jean": 1.0, "pecresse_valerie": 22, "zemmour_eric": 55.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-15", "circ_bv": "05", "num_bureau": 15, "roussel_fabien": 23.0, "nb_emargement": 1095.0, "nb_procuration": 89.0, "nb_vote_blanc": 8.0, "jadot_yannick": 110.0, "le_pen_marine": 67.0, "nb_exprime": 1084.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 6, "nb_inscrit": 1407.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1095, "quartier_bv": "40", "geo_point_2d": [48.87505458313479, 2.370143927391234], "melenchon_jean_luc": 444.0, "poutou_philippe": 10.0, "macron_emmanuel": 314.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.38709950997941, 48.8551142019836], [2.38716058193405, 48.85511643759196], [2.387370172252091, 48.85515121125124], [2.3875666065696413, 48.85518125677996], [2.387763039740329, 48.8552113028777], [2.387972630842005, 48.85524607547874], [2.388169064491175, 48.855276120908215], [2.3883786574979182, 48.85531089190374], [2.388427571121023, 48.855318373573986], [2.388444262763692, 48.85531718720376], [2.388456194450584, 48.85528877479687], [2.388599993411369, 48.855188983098046], [2.388741707239374, 48.855090647406975], [2.388885506469404, 48.854990855354195], [2.3890272192197353, 48.85489251930742], [2.389171015993467, 48.85479272688677], [2.389312727666137, 48.854694390484376], [2.389456523356742, 48.854594596803516], [2.389598235304033, 48.85449626095172], [2.389742029901077, 48.854396466909975], [2.389883739407913, 48.854298130695575], [2.389885952226377, 48.854296890983186], [2.390006558910486, 48.85424276786532], [2.390123600881794, 48.85419020751237], [2.390127222819833, 48.854187809420395], [2.390232902771166, 48.854084670975844], [2.390340466456526, 48.853978678498564], [2.390446145572256, 48.85387553894701], [2.390553707029359, 48.85376954625116], [2.390659385288253, 48.85366640739116], [2.3907669472427, 48.853560414490595], [2.390791066833479, 48.85353687359431], [2.390790112621133, 48.85351987371616], [2.390766429936475, 48.85351327421726], [2.390593162792387, 48.853475208251254], [2.390390745406792, 48.85343078980412], [2.390217478821847, 48.85339272239201], [2.3900150620769223, 48.85334830330609], [2.389841796030285, 48.85331023624643], [2.389639379925931, 48.85326581652167], [2.389466114428026, 48.853227748915224], [2.389263698964455, 48.85318332855164], [2.389090434015186, 48.85314526039834], [2.388888019192298, 48.85310083939601], [2.388714754791773, 48.853062770695885], [2.388706859827256, 48.853050230286236], [2.388771663249185, 48.85296431270345], [2.388823090647998, 48.852892540098125], [2.388821791333934, 48.85288340684897], [2.388744293126902, 48.85281308374022], [2.388679994835956, 48.85275431362762], [2.388664152683765, 48.85274124426049], [2.388645294195193, 48.852745749885294], [2.38850544435695, 48.85282513414866], [2.38835059215499, 48.85291345035384], [2.388210741417606, 48.85299283426074], [2.38805588957002, 48.85308115097751], [2.387916037933591, 48.85316053452801], [2.38779609507937, 48.85322894067479], [2.387782729133772, 48.85322922303459], [2.38776847964742, 48.85324589603458], [2.3877335696342, 48.85326580620145], [2.387586347087847, 48.85335478638441], [2.387443496774436, 48.8534410376516], [2.387296273227088, 48.853530018362896], [2.3871534219637223, 48.85361626837089], [2.38700619606315, 48.853705248704316], [2.386863345191465, 48.85379149925867], [2.386716118311033, 48.85388047832185], [2.386573265116013, 48.85396672850932], [2.386426038607834, 48.854055707208545], [2.386283184452369, 48.85414195703613], [2.386135956943151, 48.85423093626368], [2.385993101837728, 48.854317184832034], [2.3858502462486912, 48.85440343412247], [2.385703017261477, 48.854492412796375], [2.38556016072248, 48.85457866082763], [2.385412929381984, 48.85466763912359], [2.385382124479758, 48.854711644364855], [2.385399829938984, 48.85471924307825], [2.385415670873289, 48.85472604258335], [2.385434910488927, 48.85472720892821], [2.385575159986404, 48.85476073924507], [2.385774769843163, 48.85480675850591], [2.385915019773453, 48.854840288422025], [2.386114630235103, 48.85488630711263], [2.386308163350926, 48.85493017812859], [2.386507774514827, 48.85497619526031], [2.386701308284831, 48.85502006653615], [2.386900920140281, 48.855066083008396], [2.387094454585837, 48.85510995274553], [2.38709950997941, 48.8551142019836]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 67, "zemmour_eric": 87.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-54", "circ_bv": "06", "num_bureau": 54, "roussel_fabien": 25.0, "nb_emargement": 1296.0, "nb_procuration": 88.0, "nb_vote_blanc": 10.0, "jadot_yannick": 121.0, "le_pen_marine": 47.0, "nb_exprime": 1282.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1671.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1296, "quartier_bv": "44", "geo_point_2d": [48.8541453251965, 2.388189217793608], "melenchon_jean_luc": 455.0, "poutou_philippe": 7.0, "macron_emmanuel": 406.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.260221150948106, 48.83679617056114], [2.26022883833694, 48.836794018230904], [2.260440855616335, 48.83678793822814], [2.2606441241087962, 48.83677988270424], [2.260856139919921, 48.836773801956866], [2.261059408293072, 48.83676574572715], [2.2612626752283163, 48.83675769004281], [2.261474692252079, 48.836751607308145], [2.261484495539593, 48.83675396664162], [2.261601670700959, 48.83682496370594], [2.261715915828021, 48.83689757942868], [2.261833091627429, 48.836968576257156], [2.261947337391546, 48.837041191749535], [2.261956985972731, 48.83704370568067], [2.2621864661453293, 48.837041488820645], [2.262416510400189, 48.83704138583417], [2.262645989180688, 48.83703916808417], [2.262876034786728, 48.837039064222324], [2.262886951400754, 48.83704266874101], [2.263014425100122, 48.83715509464009], [2.263139350278113, 48.837269155043366], [2.263145687107992, 48.83727232660535], [2.263300355882242, 48.837309880292416], [2.263458789934174, 48.837350378133884], [2.263613459165602, 48.83738793141346], [2.263771893710735, 48.837428427938136], [2.2637773064499322, 48.83743095342277], [2.263914613212253, 48.83753642190055], [2.264050742494601, 48.83764050511986], [2.2641868723078042, 48.83774458907387], [2.264324180725026, 48.837850057051924], [2.264460311644208, 48.83795413977593], [2.264597621166821, 48.83805960742035], [2.26473375316661, 48.83816369071298], [2.264871063794422, 48.838269158023735], [2.265007196900302, 48.83837324008633], [2.265144508633423, 48.838478707063445], [2.265280642819838, 48.83858278969464], [2.265417955658382, 48.838688256338095], [2.265554090950796, 48.83879233773931], [2.265691404894568, 48.83889780404908], [2.265704929974102, 48.838921227631396], [2.265711023005539, 48.838922774183835], [2.265887517506596, 48.83887373356511], [2.266055421731545, 48.838826980150095], [2.266231914221817, 48.83877793901069], [2.266399819178992, 48.83873118601591], [2.266576311020864, 48.83868214436419], [2.266744215373191, 48.838635389982684], [2.26692070656666, 48.8385863478186], [2.2670886089391002, 48.83853959294139], [2.267256512360056, 48.838492838734176], [2.267433002588827, 48.83844379580796], [2.267486393782077, 48.83842158715597], [2.267480746375974, 48.83840772199451], [2.267440942091898, 48.83836815398993], [2.267413710873032, 48.83834117596921], [2.267303989140037, 48.83823210773571], [2.267192845968338, 48.838123875192736], [2.2670831265171802, 48.83801480674381], [2.266971984254686, 48.837906574873834], [2.2668608424665, 48.8377983419908], [2.266751124395282, 48.837689273205584], [2.266639983516382, 48.83758104099562], [2.266530265002355, 48.83747197197828], [2.266419125058038, 48.83736373864279], [2.266309408825896, 48.83725466941003], [2.266198269790839, 48.83714643674759], [2.266088554490881, 48.83703736639173], [2.26597741637773, 48.83692913350307], [2.265867701984621, 48.836820063822756], [2.265756563431036, 48.83671183069948], [2.265646849970101, 48.836602759896145], [2.265535713700736, 48.836494526555015], [2.265426001146624, 48.836385456427166], [2.265314865799133, 48.8362772228598], [2.265205154177182, 48.836168151608945], [2.265204980850156, 48.83616797966266], [2.265095269675383, 48.83605890919963], [2.264981387065124, 48.83594231758489], [2.264871675483534, 48.835833245987104], [2.264757793866405, 48.83571665413596], [2.264648084577244, 48.83560758321878], [2.264534202590931, 48.835490991122846], [2.26442449424456, 48.83538191997859], [2.26431061325136, 48.835265327646276], [2.264200905860565, 48.835156255375644], [2.264087025860367, 48.83503966280692], [2.26397731939965, 48.834930591208526], [2.2638693307279842, 48.83482358964277], [2.263759625177415, 48.834714517823635], [2.26365163740023, 48.83460751604069], [2.2635419327599, 48.834498444000836], [2.263433944527626, 48.83439144109301], [2.263324240797632, 48.83428236883242], [2.263216254809385, 48.834175366615085], [2.26310655198951, 48.83406629413383], [2.262998566895714, 48.83395929169926], [2.2629970988685653, 48.83395028887002], [2.262938905214698, 48.83393165130708], [2.262936362516159, 48.83393120843321], [2.262935234558212, 48.83393101081409], [2.262847790914951, 48.83394120240185], [2.262654780410101, 48.83396330029971], [2.262433630087808, 48.83398907370249], [2.2622406178678878, 48.83401117092266], [2.262019467137739, 48.834036943558594], [2.261826455927171, 48.8340590401179], [2.261605303427022, 48.83408481197856], [2.261412291863761, 48.834106907868595], [2.26138203027865, 48.8341104336298], [2.261359111647373, 48.8341131044527], [2.261267525797065, 48.83412377745558], [2.261074512584094, 48.83414587279135], [2.260884361983927, 48.83416803137418], [2.260691348444589, 48.834190126090824], [2.2605011975201252, 48.834212284063646], [2.260308183654633, 48.834234378161085], [2.260118032418643, 48.8342565346246], [2.259925018226804, 48.834278628102865], [2.259734866653772, 48.834300784855664], [2.259541852135795, 48.83432287771473], [2.2593516988762232, 48.83434503384909], [2.259158685394179, 48.83436712609747], [2.258968531810341, 48.83438928162178], [2.258775518002177, 48.83441137325092], [2.258585364106873, 48.83443352726593], [2.258392349972396, 48.834455618275896], [2.258202195740053, 48.8344777725802], [2.258009181279473, 48.834499862970965], [2.257819026722888, 48.834522016665225], [2.257626011936008, 48.834544106436816], [2.257435857068002, 48.83456625862175], [2.257242841955037, 48.834588347774165], [2.257052686749998, 48.834610500248374], [2.257051786088343, 48.834610605277454], [2.256858770648325, 48.8346326938092], [2.256737166381613, 48.83464685979233], [2.256544150674039, 48.83466894781566], [2.256309826909551, 48.83469624421659], [2.256306261108802, 48.83469665914333], [2.256113243671974, 48.834718746461895], [2.255928640250698, 48.83474024995195], [2.255735622492562, 48.834762336660276], [2.255551018761043, 48.83478383956671], [2.255358000681505, 48.83480592566478], [2.255173396639952, 48.834827427987605], [2.255077807743179, 48.83493928468366], [2.254979756559439, 48.83505734066182], [2.254884166825639, 48.83516919718012], [2.2547861147580193, 48.835287253874604], [2.25469052418708, 48.83539911021518], [2.254592469898989, 48.83551716581886], [2.254563127437843, 48.83555150108077], [2.2545567913957782, 48.83557156988539], [2.254586264758891, 48.83558162334093], [2.254779417631457, 48.83563333507917], [2.25497201848495, 48.83568442339101], [2.25516517348332, 48.835736134510086], [2.255357775094816, 48.835787222196075], [2.255550929494484, 48.83583893267895], [2.255743531863776, 48.83589001973917], [2.255936688389447, 48.83594172960282], [2.25612929151663, 48.835992816037184], [2.256321895021336, 48.83604390215903], [2.256515052690967, 48.83609561108167], [2.256707656953557, 48.83614669657769], [2.256900814024359, 48.836198404864135], [2.257093419044829, 48.836249489734335], [2.257286578241628, 48.83630119740157], [2.257291297753422, 48.836303293475055], [2.257441742382396, 48.8364061044677], [2.257590225358528, 48.836511427633305], [2.257740672552946, 48.83661423733999], [2.257889155363741, 48.83671956010648], [2.257902036023182, 48.83672221943294], [2.25811256515057, 48.836691855651196], [2.258323194434631, 48.83666257407076], [2.258533723075784, 48.83663220954613], [2.258744351882337, 48.83660292722253], [2.258954880024459, 48.836572562854386], [2.259165508366179, 48.8365432788883], [2.259376036021949, 48.836512913777234], [2.259586662523709, 48.836483629059614], [2.259597867168484, 48.83648534787368], [2.259744558827332, 48.83656113700332], [2.259893858943521, 48.83663642134615], [2.260040550095556, 48.83671221009413], [2.260189852434283, 48.836787494065774], [2.260221150948106, 48.83679617056114]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 61, "zemmour_eric": 122.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "16-46", "circ_bv": "14", "num_bureau": 46, "roussel_fabien": 10.0, "nb_emargement": 903.0, "nb_procuration": 52.0, "nb_vote_blanc": 11.0, "jadot_yannick": 30.0, "le_pen_marine": 76.0, "nb_exprime": 887.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1196.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 903, "quartier_bv": "61", "geo_point_2d": [48.83595919760764, 2.2613961903575466], "melenchon_jean_luc": 260.0, "poutou_philippe": 5.0, "macron_emmanuel": 275.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.330722891963308, 48.868164905690875], [2.330738052039055, 48.86816748973819], [2.33092072662368, 48.86812677520318], [2.331098783923895, 48.86808678193992], [2.331281457943556, 48.86804606685142], [2.331459514679311, 48.86800607394787], [2.331642188145546, 48.86796535740655], [2.331820244328486, 48.86792536396346], [2.332002917229842, 48.86788464686864], [2.332180972859962, 48.86784465288598], [2.332363645184705, 48.8678039361369], [2.3325417002735263, 48.86776394071544], [2.332724372033286, 48.86772322341287], [2.332902426557755, 48.86768322835118], [2.333080480808917, 48.86764323302312], [2.333263151735777, 48.86760251399454], [2.333441205434001, 48.86756251812696], [2.333623875795858, 48.86752179854487], [2.333660255123128, 48.86750790926318], [2.3336468853303423, 48.86748334658858], [2.333584038465558, 48.86738539985072], [2.333502908680949, 48.86726271372363], [2.333440062352945, 48.86716476689065], [2.333358931887894, 48.86704208063394], [2.333296086096769, 48.86694413370584], [2.333214957677535, 48.866821447334615], [2.333196083712784, 48.86678612474551], [2.33319545159268, 48.86678513464266], [2.333136449076325, 48.86670626433373], [2.3330553214150083, 48.866583576928676], [2.332977235936557, 48.86646393630068], [2.332896107664471, 48.86634124875323], [2.332818022926317, 48.86622160709588], [2.3327368967582682, 48.866098920320525], [2.332658812748987, 48.865979278533125], [2.332577685981681, 48.8658565907161], [2.332499602689743, 48.86573694969789], [2.332418478037757, 48.86561426175373], [2.332340395474771, 48.86549462060547], [2.332259270212001, 48.86537193251887], [2.332181188389388, 48.865252290341274], [2.332100065230478, 48.86512960302685], [2.332021982773619, 48.86500996071157], [2.331940860378529, 48.864887272363106], [2.331862780001943, 48.864767630824666], [2.33178165699616, 48.86464494233379], [2.33170357734839, 48.864525300665335], [2.331622456457846, 48.86440261204733], [2.331544377550518, 48.86428296934954], [2.331463256037634, 48.86416028148841], [2.331385177859107, 48.8640406386606], [2.331349871743551, 48.863993674460204], [2.331301394649994, 48.864003989823686], [2.331189753575639, 48.86404005395409], [2.330995913733023, 48.864104075191186], [2.330818439255746, 48.864161404744614], [2.330624598505309, 48.86422542537329], [2.330447123206025, 48.86428275436982], [2.33025328291083, 48.86434677439771], [2.330114948316673, 48.864391459469985], [2.330081351003498, 48.86440566725811], [2.330129207154298, 48.864457789670666], [2.33011221656157, 48.86454739812401], [2.330078843401758, 48.86471059024953], [2.330063190649299, 48.864793143595996], [2.330061852628388, 48.86480019957453], [2.330063613326803, 48.864805961651335], [2.330160621658512, 48.86491474638706], [2.330257469977175, 48.86502190681547], [2.330354479127466, 48.8651306904736], [2.330451329597871, 48.86523785163115], [2.330548338191901, 48.865346635103315], [2.33064518946254, 48.86545379608308], [2.330742200226696, 48.865562579384466], [2.330839050934485, 48.86566974017883], [2.330840967242668, 48.865674646032474], [2.330834022266628, 48.86581161893454], [2.33082734945458, 48.865948201226495], [2.330820404406267, 48.86608517409392], [2.33081373014881, 48.866221757243025], [2.330806785039872, 48.866358729176504], [2.330800112074678, 48.8664953122987], [2.33079316688191, 48.866632285096834], [2.330786492494499, 48.86676886727758], [2.330779548592478, 48.86690584004868], [2.330772874134313, 48.867042422194906], [2.3307659287968843, 48.86717939492371], [2.3307592556311, 48.867315977043035], [2.330752310221391, 48.86745294973718], [2.330745635621711, 48.867589531814346], [2.330738690139718, 48.86772650447383], [2.330732016820877, 48.86786308742337], [2.330725071266602, 48.86800006004819], [2.330718396525403, 48.86813664205628], [2.330722891963308, 48.868164905690875]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 90, "zemmour_eric": 96.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "1-9", "circ_bv": "01", "num_bureau": 9, "roussel_fabien": 5.0, "nb_emargement": 762.0, "nb_procuration": 42.0, "nb_vote_blanc": 7.0, "jadot_yannick": 47.0, "le_pen_marine": 29.0, "nb_exprime": 756.0, "nb_vote_nul": 2.0, "arr_bv": "01", "arthaud_nathalie": 2, "nb_inscrit": 957.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 765, "quartier_bv": "04", "geo_point_2d": [48.86624630702395, 2.331667647580904], "melenchon_jean_luc": 100.0, "poutou_philippe": 4.0, "macron_emmanuel": 357.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.362462423908621, 48.827607135411554], [2.362469014376133, 48.827598312614285], [2.362590080285237, 48.827498917914795], [2.362711345810466, 48.827396638959236], [2.362832410778262, 48.82729724489587], [2.362953675359002, 48.82719496567623], [2.363074740769575, 48.82709557045762], [2.363196004405828, 48.82699329097387], [2.363317067513024, 48.82689389638415], [2.363438330204804, 48.826791616636314], [2.363559392392694, 48.826692220884134], [2.363680654140008, 48.826589940872175], [2.363682058961071, 48.82658030615531], [2.363594833260291, 48.826467552424795], [2.3635091752433, 48.82635350196863], [2.363421950306842, 48.826240747189935], [2.363336294402737, 48.82612669659421], [2.363249068846565, 48.82601394255869], [2.363163413704248, 48.82589989091672], [2.363076190263465, 48.82578713673959], [2.362990535860956, 48.825673085850106], [2.362903311822421, 48.82556033061751], [2.362817658170698, 48.8254462795812], [2.362730436236531, 48.82533352510631], [2.362644781984532, 48.825219473016524], [2.362557560803664, 48.825106718392796], [2.362471908664479, 48.8249926661634], [2.362475565545675, 48.82498166830662], [2.362625430377048, 48.82490193975484], [2.362777567572932, 48.824820804804915], [2.362927431469112, 48.82474107676257], [2.363079566374596, 48.8246599405103], [2.363229430708611, 48.82458021208533], [2.363381564663758, 48.82449907633656], [2.363531426722539, 48.82441934661515], [2.363683559738342, 48.82433821047055], [2.363833422223979, 48.82425848126584], [2.363985554311414, 48.824177343826136], [2.363982775106729, 48.82416220423532], [2.36380449796521, 48.82410703882314], [2.36363069732733, 48.82405329639202], [2.363452419568805, 48.823998130442405], [2.363278621018884, 48.82394438750162], [2.36310034400527, 48.82388922102177], [2.362926546181295, 48.823835477564096], [2.362919789838066, 48.823823810832124], [2.362984840047305, 48.82372289296073], [2.363074027151216, 48.823586523364746], [2.363139076765874, 48.823485605388164], [2.36322826306049, 48.82334923564832], [2.363293312080577, 48.823248317566566], [2.363294279210145, 48.823247977355244], [2.3633040041875972, 48.82322802159407], [2.363310343442876, 48.82321807495968], [2.363302428662628, 48.82320612956382], [2.36309248582825, 48.82315591277266], [2.362891813695399, 48.823108915305944], [2.362681871647935, 48.823058697789605], [2.362481198908473, 48.823011698723185], [2.362423096844923, 48.82299685681383], [2.3624128307867123, 48.82300612412277], [2.362357897902967, 48.823076398154605], [2.362264322777341, 48.8231966072579], [2.362177103305374, 48.82330818467938], [2.362083527335928, 48.82342839451571], [2.361996305727322, 48.82353997177504], [2.361902728925039, 48.82366018144511], [2.361815506541777, 48.82377175854948], [2.361721928917657, 48.82389196715399], [2.361634707121742, 48.8240035441108], [2.361541128653761, 48.82412375344831], [2.361453904721162, 48.82423533024295], [2.3613603254203133, 48.824355539414164], [2.36127310071303, 48.824467116053896], [2.361179521952248, 48.82458732416676], [2.361092296470376, 48.82469890065162], [2.361084171041563, 48.82471261499476], [2.361084828379191, 48.82471921812803], [2.360991247358897, 48.824839426958654], [2.360897028907578, 48.82495704209641], [2.360803447027425, 48.825077250754596], [2.360709229084721, 48.82519486572678], [2.3606156463556323, 48.82531507331322], [2.360521426186522, 48.82543268900461], [2.360427842597556, 48.825552896418586], [2.36033362158603, 48.825670511037735], [2.360240038488201, 48.825790719185946], [2.360145816623117, 48.82590833363221], [2.360052231303434, 48.82602854160069], [2.359958008584881, 48.826146155874085], [2.359938566720952, 48.826171129990875], [2.3599355063921372, 48.8261732064569], [2.359925493875003, 48.82619091462336], [2.359851350869393, 48.82628614830014], [2.359757168258904, 48.8264047474233], [2.359663581152059, 48.826524955034465], [2.359569397694079, 48.82664355308521], [2.359475809725629, 48.82676376052385], [2.359403574208034, 48.82685472037908], [2.359388070714937, 48.82687374454262], [2.359456060864426, 48.82690004938386], [2.359637144866946, 48.82694324748415], [2.359821259370306, 48.826987159444], [2.360002343977979, 48.827030356987954], [2.360186460458748, 48.827074268389445], [2.360367545671468, 48.827117465377114], [2.360551662767452, 48.82716137621296], [2.360732748585316, 48.82720457264423], [2.360916866296509, 48.82724848291444], [2.361097952719614, 48.82729167878942], [2.36128207104591, 48.82733558849397], [2.361463156712051, 48.8273787838053], [2.361647275653647, 48.82742269294421], [2.3618283632869153, 48.827465887706516], [2.3620124828437072, 48.827509796279756], [2.362193571082101, 48.82755299048569], [2.362377691254082, 48.82759689849328], [2.362421776450487, 48.827608381097455], [2.362462423908621, 48.827607135411554]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 57, "zemmour_eric": 93.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-16", "circ_bv": "09", "num_bureau": 16, "roussel_fabien": 31.0, "nb_emargement": 1472.0, "nb_procuration": 58.0, "nb_vote_blanc": 20.0, "jadot_yannick": 98.0, "le_pen_marine": 114.0, "nb_exprime": 1444.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1940.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1472, "quartier_bv": "50", "geo_point_2d": [48.82564775633025, 2.361872674953794], "melenchon_jean_luc": 546.0, "poutou_philippe": 12.0, "macron_emmanuel": 415.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.349000486381855, 48.8370909161456], [2.34901553002758, 48.83713358665326], [2.349047113332497, 48.83720103659478], [2.349065818333742, 48.8373292028613], [2.349098148951667, 48.83739824782346], [2.349088036291388, 48.83742056094927], [2.349141469578388, 48.83743036970517], [2.349205385452917, 48.83756686452566], [2.349263872206633, 48.83768590992455], [2.349287101287632, 48.83773200202517], [2.349362723348564, 48.83771912883981], [2.349505944107467, 48.837799266096454], [2.349673064551907, 48.837894092957036], [2.349816284917527, 48.83797422892288], [2.349983407850002, 48.8380690553424], [2.350126629173486, 48.838149190924106], [2.350293751869145, 48.838244016887835], [2.350436975512783, 48.838324152092845], [2.350604099334011, 48.838418977608086], [2.35074732392443, 48.83849911332828], [2.350752846883688, 48.83850100859002], [2.350959640432714, 48.838535721231985], [2.35116254180731, 48.83857031616972], [2.351369334541754, 48.838605028093895], [2.351572237820552, 48.83863962234198], [2.351779031113979, 48.8386743326564], [2.351981934934372, 48.838708926207396], [2.352184837661798, 48.838743519405824], [2.352391633126588, 48.83877822956465], [2.3525945363956993, 48.838812822066], [2.352801331045869, 48.83884753150703], [2.353004236218955, 48.838882123318626], [2.353211031416892, 48.838916832049286], [2.353211658334516, 48.83891692717435], [2.353242034829243, 48.838916247813174], [2.353251273000462, 48.83889182063421], [2.353345026253336, 48.83878778526154], [2.353437188340885, 48.838684692735946], [2.353530940850025, 48.83858065719832], [2.353623100841343, 48.838477564503016], [2.353716852606962, 48.83837352880041], [2.3538090132266323, 48.838270435950086], [2.353902764248635, 48.838166400082514], [2.353994922771999, 48.83806330706248], [2.354088673050394, 48.8379592710299], [2.354180832202219, 48.83785617785496], [2.354274581748154, 48.83775214075808], [2.354366738792557, 48.83764904831273], [2.354402235353492, 48.83760969566561], [2.354380263371579, 48.83759836647455], [2.354244346452749, 48.837554967756056], [2.354060318351869, 48.83749715485548], [2.353876980891819, 48.8374386142123], [2.353692953609186, 48.83738080074057], [2.35350961833323, 48.837322259535604], [2.3533255905176462, 48.837264444586005], [2.353142256063628, 48.83720590281189], [2.352958229055147, 48.837148088190446], [2.352774895422865, 48.83708954584718], [2.352590869232643, 48.83703173065456], [2.352407536433474, 48.836973186842876], [2.352223511061517, 48.836915371079044], [2.35204017907292, 48.83685682759754], [2.351920248226039, 48.836819147320426], [2.351872406428179, 48.83680473475904], [2.351863473678786, 48.836806220677175], [2.3517993800098003, 48.836786084588596], [2.351735756567389, 48.83677831551397], [2.351731036146932, 48.83677828813223], [2.351540225200289, 48.83679938817502], [2.3513497616399093, 48.83682036838309], [2.351158950373697, 48.83684146871617], [2.350968487868445, 48.83686244832376], [2.350777676293858, 48.8368835480479], [2.350587213481396, 48.83690452704759], [2.350396401598442, 48.836925626162675], [2.35020593847878, 48.8369466045545], [2.350015126298679, 48.83696770216132], [2.349824662860509, 48.83698868084456], [2.349633850372165, 48.83700977784232], [2.3494433852757792, 48.83703075501098], [2.349252573830123, 48.83705185230651], [2.349062108426458, 48.83707282886726], [2.349022493440884, 48.83706103662299], [2.34901528094075, 48.83708000549672], [2.349000486381855, 48.8370909161456]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 77, "zemmour_eric": 93.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-17", "circ_bv": "02", "num_bureau": 17, "roussel_fabien": 19.0, "nb_emargement": 1197.0, "nb_procuration": 89.0, "nb_vote_blanc": 13.0, "jadot_yannick": 120.0, "le_pen_marine": 64.0, "nb_exprime": 1179.0, "nb_vote_nul": 5.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1484.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1197, "quartier_bv": "18", "geo_point_2d": [48.83776431597357, 2.351746263471429], "melenchon_jean_luc": 324.0, "poutou_philippe": 7.0, "macron_emmanuel": 419.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.391768095308219, 48.840496872181205], [2.3917992241523223, 48.840485221848894], [2.391861085931176, 48.84047214397786], [2.39199497721026, 48.8404440495343], [2.392182481186157, 48.84040441156448], [2.392316372118009, 48.840376316759475], [2.392324670973004, 48.84036405836174], [2.392257372477289, 48.84026524457057], [2.392203836896043, 48.840194698320225], [2.392198672437185, 48.84019077694819], [2.39202759895168, 48.84011962255407], [2.391869215405937, 48.84005390700258], [2.39171083362201, 48.83998819124443], [2.39153976010497, 48.839917036132825], [2.391381379152328, 48.83985131993046], [2.391210306544787, 48.8397801634397], [2.3910519264234322, 48.83971444679307], [2.390880854704484, 48.839643290721725], [2.390722475414311, 48.839577573630876], [2.39055140460487, 48.83950641618037], [2.390393026135464, 48.839440699544575], [2.39022195622502, 48.839369541614225], [2.390155384609402, 48.839341918306154], [2.3901323861011172, 48.83933422752939], [2.390121990199188, 48.839335993036336], [2.390030184222146, 48.83929789833921], [2.38984131101981, 48.83921901348485], [2.389682932967212, 48.83915329498575], [2.389494062166284, 48.839074410479135], [2.389335684990893, 48.8390086915118], [2.389289675742523, 48.83899149285755], [2.389282539520216, 48.83899460059347], [2.389259935685418, 48.8390199937924], [2.3891601817017882, 48.839133894972704], [2.389062252249824, 48.839243907544635], [2.388962497416216, 48.83935780763796], [2.388864565763999, 48.839467820019074], [2.388764811421636, 48.83958172083096], [2.3886668789420122, 48.839691732128905], [2.388568947400766, 48.839801744242074], [2.388469190410984, 48.83991564476646], [2.388371258031877, 48.840025656695744], [2.388271500192095, 48.840139556133074], [2.388173565612477, 48.840249567871524], [2.388073806901574, 48.84036346802051], [2.387964623964816, 48.84048102522665], [2.387864864364977, 48.84059492427844], [2.387755679099091, 48.84071248216188], [2.387655918599541, 48.84082638101584], [2.387663930169626, 48.840855491161626], [2.387700743314033, 48.840882916733335], [2.387833124983308, 48.840973775842144], [2.387968294441619, 48.84106513201435], [2.388100678402572, 48.841155990819225], [2.388235848802299, 48.84124734667421], [2.388250173246795, 48.84124953342534], [2.38841671420849, 48.84121032477552], [2.388587386047615, 48.84117239701082], [2.388753926509263, 48.84113318788882], [2.3889245978504112, 48.841095259640426], [2.389091137811805, 48.84105605004626], [2.389261808655076, 48.841018121314164], [2.389285745992529, 48.84102272053874], [2.389301543457328, 48.84101628891918], [2.389301734693761, 48.84101624762556], [2.38948924278687, 48.840976612998205], [2.389689242083102, 48.840933259995786], [2.389876748220525, 48.840893624751146], [2.39007674686557, 48.84085027199697], [2.3902642537721173, 48.84081063614896], [2.390464251776401, 48.84076728274373], [2.390651756727358, 48.84072764627843], [2.390851754101284, 48.84068429132282], [2.391039258458996, 48.84064465424721], [2.391239256544186, 48.840601299546755], [2.391426760308548, 48.840561661860804], [2.391626756401004, 48.84051830560308], [2.391752397773864, 48.840491745153564], [2.391768095308219, 48.840496872181205]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 52, "zemmour_eric": 51.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-1", "circ_bv": "08", "num_bureau": 1, "roussel_fabien": 19.0, "nb_emargement": 1014.0, "nb_procuration": 61.0, "nb_vote_blanc": 7.0, "jadot_yannick": 91.0, "le_pen_marine": 49.0, "nb_exprime": 1004.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1234.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1014, "quartier_bv": "46", "geo_point_2d": [48.840215333098215, 2.389735646273067], "melenchon_jean_luc": 321.0, "poutou_philippe": 6.0, "macron_emmanuel": 340.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358112489440598, 48.87614971626976], [2.358071731895052, 48.87617406754264], [2.35792536124205, 48.87619781640506], [2.357739452494981, 48.87622981300785], [2.357536462969274, 48.87626274829072], [2.357350553762726, 48.87629474338841], [2.357147563738045, 48.87632767800988], [2.3569616526862562, 48.87635967339367], [2.356758663537093, 48.87639260646181], [2.356572752014745, 48.8764246012398], [2.35636976235542, 48.8764575345458], [2.356183850373533, 48.876489527818656], [2.356180598050468, 48.87648978822155], [2.356040842642297, 48.87648981263712], [2.355902539074674, 48.876500219425694], [2.3558641615109392, 48.876515142436006], [2.355869071892092, 48.87653460797579], [2.355772081983386, 48.876640044758126], [2.355663885487381, 48.87675715834951], [2.355566894748864, 48.87686259494431], [2.355458698692455, 48.87697970833398], [2.355361705760722, 48.877085144733904], [2.3552914001037912, 48.87716124370234], [2.355291535599481, 48.87716858209947], [2.355332528704245, 48.8771804456418], [2.355485759669003, 48.87723199406357], [2.35563679676267, 48.8772824683629], [2.3557878341379572, 48.87733294336861], [2.35594106737653, 48.87738449030853], [2.355947857748885, 48.877389760964476], [2.35601018459261, 48.877518249544266], [2.356069897440928, 48.87764192696842], [2.356129610572939, 48.87776560434893], [2.356191938325941, 48.87789409189098], [2.356251652025653, 48.87801777008162], [2.356313980381608, 48.87814625753073], [2.35637369467136, 48.87826993473289], [2.356431307121681, 48.8783878421611], [2.35648891846942, 48.87850574954164], [2.356548633586875, 48.8786294266162], [2.356606246830909, 48.87874733392172], [2.356665962492766, 48.87887101180992], [2.35672357490622, 48.878988919025815], [2.356783291134804, 48.87911259592909], [2.356846743865507, 48.879236148967685], [2.356906460670058, 48.87935982578176], [2.356925302074508, 48.879365220461935], [2.357111868102176, 48.87930677392438], [2.357273623064425, 48.87924920923964], [2.357279046505897, 48.879248157359186], [2.357489105328285, 48.879237445208055], [2.357689574137933, 48.87922631250987], [2.357890041498525, 48.87921517946854], [2.358100100062121, 48.87920446624503], [2.358300568614214, 48.8791933325234], [2.358510627005345, 48.87918261857938], [2.358525162228621, 48.87919024995553], [2.358547353142528, 48.87928781329801], [2.358566435888277, 48.87938167541061], [2.358588628335605, 48.87947923783651], [2.358607711225881, 48.87957309992623], [2.358609734790051, 48.87957674676641], [2.358682860210314, 48.8796545413111], [2.358769542785383, 48.87974402059143], [2.358800047468939, 48.87975600928944], [2.35881008771157, 48.87975386239919], [2.358833635752267, 48.87969728565025], [2.358884968216759, 48.87957393840763], [2.358935143835773, 48.879453387254166], [2.358986475819459, 48.879330039940726], [2.35903665096864, 48.87920948871802], [2.35908798247153, 48.87908614133376], [2.35913815715068, 48.878965590041815], [2.359189488172779, 48.878842242586714], [2.35923966238211, 48.87872169122556], [2.3592909942757, 48.87859834460619], [2.359341166662739, 48.878477792269216], [2.359392498075546, 48.87835444557904], [2.359442669992681, 48.87823389317284], [2.359494000924814, 48.878110546411826], [2.3595441723720523, 48.87798999393645], [2.359595502823315, 48.8778666471046], [2.35964567380066, 48.87774609455997], [2.359645207832862, 48.877740410979115], [2.359575929804952, 48.87762471437301], [2.359507032905835, 48.877509538667624], [2.359437755491961, 48.877393841957335], [2.359368859203705, 48.87727866614825], [2.359299583767262, 48.87716296934108], [2.359230686726661, 48.87704779342111], [2.359161411893168, 48.87693209740903], [2.3590925154634173, 48.876816921385405], [2.359023241254995, 48.87670122436987], [2.358954345436291, 48.87658604824255], [2.3588850718418692, 48.876470351122855], [2.358816177997382, 48.87635517489927], [2.358747283094316, 48.87623999861668], [2.358678010420109, 48.87612430134085], [2.358641659355484, 48.87606852680472], [2.35863898466507, 48.87606871752297], [2.3586049366466533, 48.876073937403525], [2.3584019482757412, 48.8761068741586], [2.358184147033661, 48.87614026805478], [2.35812753005981, 48.876149455170484], [2.358112489440598, 48.87614971626976]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 27, "zemmour_eric": 40.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-32", "circ_bv": "05", "num_bureau": 32, "roussel_fabien": 24.0, "nb_emargement": 1021.0, "nb_procuration": 101.0, "nb_vote_blanc": 14.0, "jadot_yannick": 83.0, "le_pen_marine": 41.0, "nb_exprime": 1005.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1300.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1021, "quartier_bv": "37", "geo_point_2d": [48.87770910715442, 2.3577244119863003], "melenchon_jean_luc": 436.0, "poutou_philippe": 5.0, "macron_emmanuel": 307.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.400596202113709, 48.84049831717798], [2.400600177756229, 48.84048885155084], [2.400579394159323, 48.840432930437856], [2.400534138816945, 48.840301423191015], [2.400486577113669, 48.840173459522106], [2.400441323603546, 48.84004195131714], [2.400393762364907, 48.839913987581596], [2.400348509303793, 48.83978248021026], [2.400300948529887, 48.83965451640811], [2.400300701413888, 48.83965148162619], [2.400305759407198, 48.83962290282146], [2.40027266444612, 48.83959699720368], [2.400216225682972, 48.83958060488513], [2.40001439233599, 48.839580341885515], [2.399821664510872, 48.839580782563], [2.39962893804492, 48.83958122293679], [2.399427104698618, 48.83958095894626], [2.399234376866259, 48.83958139867754], [2.399032543521177, 48.83958113402128], [2.39883981704727, 48.8395815731237], [2.398637983703621, 48.83958130780177], [2.398445255863327, 48.839581746261686], [2.398243422520918, 48.83958148027399], [2.398050696039096, 48.839581918105075], [2.397848862698141, 48.83958165145167], [2.397656134849951, 48.839582088640206], [2.397454301510255, 48.839581821321154], [2.397261575020555, 48.83958225788085], [2.397059741682332, 48.839581989896026], [2.396867013826284, 48.83958242581317], [2.396716417133776, 48.83958222490986], [2.396700021932774, 48.83957708691555], [2.396678317561709, 48.83958274235272], [2.396627082279138, 48.83958267459608], [2.396405284139718, 48.83958279135664], [2.396203450803746, 48.83958252192705], [2.395981652664032, 48.83958263790211], [2.395779819330849, 48.83958236775777], [2.395738619310015, 48.83958612672611], [2.3957324216552323, 48.8395990309276], [2.395624847182587, 48.83968760963854], [2.395514821740537, 48.839781196094314], [2.395407247884555, 48.83986977460202], [2.395297220315366, 48.83996335993623], [2.39518964570318, 48.840051939133076], [2.395079618721078, 48.840145524258766], [2.395083345731242, 48.84015873942357], [2.39521638119826, 48.84021169192121], [2.395339187001464, 48.84025785814816], [2.395355679482551, 48.84027188249851], [2.395366775010904, 48.84027417079393], [2.395405552918088, 48.84028874936252], [2.395570484649168, 48.84035243824012], [2.395732069199148, 48.84041318165955], [2.395897001722956, 48.84047687007992], [2.396058587039222, 48.840537613051524], [2.396061354419325, 48.84053842475559], [2.396262020721263, 48.84058036306642], [2.39645385646236, 48.84062234192358], [2.396654523392782, 48.840664280472176], [2.396846359758865, 48.8407062586967], [2.397047027338487, 48.840748195684434], [2.397238864329545, 48.8407901732764], [2.397439532537753, 48.84083211050187], [2.397631370153783, 48.84087408746123], [2.397823206716354, 48.84091606410453], [2.398023875889797, 48.840957999445756], [2.398215714439785, 48.84099997546336], [2.398416384241611, 48.84104191104232], [2.398608223416556, 48.84108388642727], [2.398808893867725, 48.84112582044538], [2.398824535616274, 48.84112203900318], [2.398930669952851, 48.84101079094137], [2.399034106687511, 48.84090149702331], [2.399140240138053, 48.840790247854315], [2.399243677347672, 48.84068095463965], [2.399349809901816, 48.84056970526273], [2.399453244882229, 48.84046041093913], [2.399465562770076, 48.8404561972209], [2.399640097248925, 48.84046264932468], [2.399808757857527, 48.84047301989247], [2.399983292435189, 48.84047947149542], [2.40015195316651, 48.84048984157917], [2.40032648784298, 48.84049629268128], [2.400495148697113, 48.84050666228104], [2.400596202113709, 48.84049831717798]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 75, "zemmour_eric": 97.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "12-3", "circ_bv": "08", "num_bureau": 3, "roussel_fabien": 23.0, "nb_emargement": 1104.0, "nb_procuration": 43.0, "nb_vote_blanc": 11.0, "jadot_yannick": 93.0, "le_pen_marine": 62.0, "nb_exprime": 1085.0, "nb_vote_nul": 8.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1394.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1104, "quartier_bv": "46", "geo_point_2d": [48.84017397864413, 2.3979536537947794], "melenchon_jean_luc": 295.0, "poutou_philippe": 5.0, "macron_emmanuel": 373.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.388259050152627, 48.8380332576334], [2.388297055559565, 48.83803823930102], [2.388462567999968, 48.838103235340185], [2.3886257578481302, 48.83816614354433], [2.388791271104552, 48.83823113912128], [2.388954460387579, 48.838294046862835], [2.389119974449476, 48.838359042876796], [2.389283165902584, 48.83842194927042], [2.389448680780506, 48.83848694482212], [2.3896118716682633, 48.83854985075312], [2.389678295387445, 48.838575333152946], [2.389695299482649, 48.838558753827186], [2.389826961393965, 48.838450652123555], [2.389950979399803, 48.83834779054167], [2.390074996916166, 48.83824492882176], [2.390206658620212, 48.83813682577749], [2.39033067512997, 48.838033963773086], [2.390462334398075, 48.83792586131938], [2.390586349901445, 48.83782299903049], [2.390718009468701, 48.83771489628189], [2.390842023965488, 48.83761203370851], [2.390973681107354, 48.8375039306512], [2.391097694597774, 48.837401067793344], [2.391189639457199, 48.837325571091625], [2.391209390212452, 48.837307397454886], [2.3912099164762, 48.83729990034354], [2.391249629036063, 48.837267292786265], [2.391330460397157, 48.837171010884724], [2.391424522148438, 48.837047983515234], [2.391505352846395, 48.83695170147662], [2.391560340080561, 48.83687978028939], [2.391570357180359, 48.8368736544139], [2.391577567946992, 48.83686307320599], [2.391616641636652, 48.83681196595641], [2.391711099226524, 48.83668514232935], [2.3918051591920593, 48.8365621155064], [2.391899615870503, 48.83643529170216], [2.391993673588508, 48.836312263797254], [2.392088129355437, 48.83618543981581], [2.392156516848117, 48.836095990358736], [2.392168686083068, 48.83608462577831], [2.392170594349353, 48.83607753679458], [2.392196265002109, 48.83604395997295], [2.392289138360445, 48.83592120008764], [2.392383194231464, 48.835798171819896], [2.392476066701073, 48.83567541266173], [2.392570123049734, 48.83555238422688], [2.392662993289373, 48.83542962399045], [2.392757048742884, 48.835306596280866], [2.392758334351391, 48.83530523307523], [2.392875392625356, 48.83520199654362], [2.392985001892261, 48.83510605640746], [2.3931020592700403, 48.835002819635655], [2.393211667700952, 48.83490687927464], [2.39332127710116, 48.83481093791263], [2.3934383331397733, 48.83470770168381], [2.393547940341695, 48.83461176009005], [2.393664995484045, 48.83450852362106], [2.393774601839529, 48.83441258270184], [2.393891656096286, 48.834309345093324], [2.393897812487401, 48.834281931255994], [2.3938635362973493, 48.834262688315675], [2.393666384816972, 48.83425544655872], [2.393473739585187, 48.834247773147965], [2.393276588204909, 48.834240531647765], [2.393083943085627, 48.834232857609074], [2.392886790453629, 48.83422561545937], [2.392694145446961, 48.83421794079277], [2.39249699428772, 48.834210698007375], [2.392304349393573, 48.834203022712884], [2.392107198355402, 48.83419577838563], [2.391914553563299, 48.83418810336249], [2.3917174012734472, 48.834180858385714], [2.391524756593876, 48.8341731827347], [2.3913276057769153, 48.83416593712228], [2.391134961220391, 48.834158259944], [2.3909378105035453, 48.83415101458831], [2.39074516605958, 48.83414333678214], [2.390548014091075, 48.83413609077694], [2.390355369759678, 48.834128412342835], [2.390158219264085, 48.834121165701994], [2.389965575045265, 48.83411348664], [2.389772930883202, 48.83410580726774], [2.389575780554078, 48.83409855966667], [2.389383136504607, 48.834090879666505], [2.3891859849238593, 48.834083631415915], [2.3889933409869872, 48.834075950787835], [2.388796190879184, 48.83406870190159], [2.38878506044049, 48.83407185126375], [2.388642129320438, 48.834182679934536], [2.388504861470973, 48.83429148142968], [2.388361929152881, 48.83440230974386], [2.388224660150885, 48.834511109996804], [2.388081726624287, 48.83462193885371], [2.3879444564591, 48.834730738763724], [2.387801521734534, 48.834841567264036], [2.387664250406042, 48.8349503668311], [2.387663745537512, 48.834950782451386], [2.3875573652804443, 48.83504392289044], [2.387448591809197, 48.83513699161483], [2.38734221078768, 48.835230131847034], [2.387233436554297, 48.83532319946098], [2.387127054768326, 48.835416339486315], [2.387018278389346, 48.83550940778141], [2.386911895839011, 48.835602547599905], [2.386803120060104, 48.83569561479154], [2.3866967367453, 48.83578875440317], [2.386587960183192, 48.83588182228294], [2.386580335569537, 48.83590248925577], [2.3865918661897743, 48.83592349549284], [2.386753361380614, 48.83600716046222], [2.386919405214331, 48.83609136475424], [2.3870809014404, 48.836175030168164], [2.387246946337861, 48.8362592339929], [2.387408443620315, 48.83634289805273], [2.387574488219283, 48.836427101403146], [2.387735987899325, 48.83651076591443], [2.387902033562245, 48.836594968797584], [2.388063534298572, 48.836678631954804], [2.388229581025343, 48.83676283437057], [2.38823490423708, 48.83676989102438], [2.388236499620082, 48.836894910758886], [2.388238650996818, 48.83701933974289], [2.3882402463858883, 48.837144360348766], [2.388242397792419, 48.83726878840564], [2.388243993198111, 48.83739380898357], [2.388246143250957, 48.83751823790494], [2.388247738683821, 48.837643257555605], [2.3882498901182743, 48.837767686456125], [2.388251485567761, 48.83789270607885], [2.388253637021455, 48.83801713495152], [2.388259050152627, 48.8380332576334]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 55, "zemmour_eric": 87.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "12-48", "circ_bv": "08", "num_bureau": 48, "roussel_fabien": 24.0, "nb_emargement": 1200.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 106.0, "le_pen_marine": 75.0, "nb_exprime": 1184.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1573.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1200, "quartier_bv": "47", "geo_point_2d": [48.8358887135074, 2.3899977393032295], "melenchon_jean_luc": 476.0, "poutou_philippe": 18.0, "macron_emmanuel": 279.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358339994179588, 48.82295192099876], [2.358293641748282, 48.82294509871567], [2.358113817297822, 48.822941867158626], [2.357900412374249, 48.82293801252894], [2.357720587972705, 48.82293478038056], [2.357507183096029, 48.82293092594842], [2.357327357381322, 48.822927693201414], [2.357113952573815, 48.82292383716816], [2.356934128269924, 48.822920603837076], [2.356720723509425, 48.82291674800141], [2.356540897892388, 48.82291351407172], [2.3565403805142893, 48.822913497797], [2.35636435835674, 48.822906353786415], [2.356131159381738, 48.82289629167369], [2.355955135976469, 48.82288914705327], [2.355721937168516, 48.82287908324306], [2.355545913877419, 48.822871938020164], [2.3555322678509603, 48.8228778606304], [2.355466321898435, 48.82299847783587], [2.3554025542352433, 48.82311661725778], [2.355396459662873, 48.82312141406403], [2.355343439173973, 48.8231413327682], [2.355286576543045, 48.82316387400557], [2.355275506287378, 48.82317231164219], [2.355282886322404, 48.823184174651885], [2.355304379307385, 48.8232711083616], [2.35534533912904, 48.82343943635148], [2.355366832334494, 48.823526369130924], [2.355366987864432, 48.82352833151165], [2.355355670602606, 48.82365908225531], [2.355344138717977, 48.82379055222719], [2.355332819979924, 48.82392130293081], [2.355321287979576, 48.8240527728698], [2.355321469403687, 48.82405484421387], [2.355341922104383, 48.824131979822035], [2.355363302367977, 48.824212646878294], [2.35536246277937, 48.824217648284495], [2.355313257775745, 48.824295834776436], [2.355263211812071, 48.824373503165326], [2.355262156862787, 48.82437763461105], [2.355271530923201, 48.82446860315096], [2.355280473855569, 48.82456194461211], [2.355289849343207, 48.82465291314306], [2.355298792351003, 48.824746253688176], [2.355292658172341, 48.82475434738415], [2.355103616892506, 48.82483603474136], [2.354914840372235, 48.82491785273538], [2.354725799269649, 48.824999539490854], [2.354537020202437, 48.82508135686923], [2.354347977915066, 48.825163043015486], [2.354159199013846, 48.82524486069218], [2.354153072252593, 48.825251896701], [2.354141330170823, 48.825396322565325], [2.354130492598489, 48.82553249162737], [2.35411965632046, 48.82566866157856], [2.354107914052158, 48.82581308738598], [2.35412025107001, 48.8258225237143], [2.354323061407121, 48.82583501218844], [2.354526646561572, 48.82584719691355], [2.3547294584540612, 48.825859684705556], [2.354933043799829, 48.82587186873855], [2.355135854523569, 48.82588435583372], [2.355339440049518, 48.82589654007394], [2.355542250977677, 48.82590902558035], [2.355745836694929, 48.82592120912849], [2.355948649178428, 48.82593369395274], [2.356152235086973, 48.82594587680876], [2.3563550464016823, 48.82595836093621], [2.356558632501506, 48.82597054310013], [2.356761445360441, 48.825983027444764], [2.356965031662631, 48.82599520801726], [2.356977355966141, 48.826005057690594], [2.356972884034125, 48.82603465996873], [2.356970636118394, 48.82606451074029], [2.3569828883932082, 48.82607390673989], [2.357142398100902, 48.826084409203986], [2.3572740398121113, 48.826094042182014], [2.357334484481601, 48.826086968764216], [2.357334147289103, 48.82607178010124], [2.357362503500844, 48.82597867715618], [2.357404967919125, 48.825849154251166], [2.357445252561554, 48.82571688190594], [2.357487715187901, 48.82558735983335], [2.357528000780168, 48.82545508743675], [2.3575704629988152, 48.82532556440523], [2.357610748167787, 48.82519329284922], [2.357653209967554, 48.82506376975816], [2.357693494724421, 48.824931498143435], [2.357735956105416, 48.824801974992766], [2.357776240461161, 48.82466970242005], [2.35781870142339, 48.8245401792098], [2.35785898535576, 48.82440790747766], [2.35790144589933, 48.82427838420789], [2.357941729419514, 48.82414611241704], [2.35798418954433, 48.824016589087634], [2.3579982970278213, 48.82397142257165], [2.358020662009121, 48.823903197187725], [2.358031819352098, 48.82389972073486], [2.358044117860039, 48.823888631784804], [2.3580642126875793, 48.82382733379439], [2.358101614485032, 48.82370779959861], [2.35814407385572, 48.82357827616192], [2.358181475291322, 48.82345874191466], [2.358223935622798, 48.82332921842821], [2.358261336707721, 48.82320968323019], [2.358303795264928, 48.823080160578684], [2.358341195988213, 48.82296062532914], [2.358339994179588, 48.82295192099876]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 61, "zemmour_eric": 58.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-41", "circ_bv": "10", "num_bureau": 41, "roussel_fabien": 28.0, "nb_emargement": 1398.0, "nb_procuration": 61.0, "nb_vote_blanc": 21.0, "jadot_yannick": 120.0, "le_pen_marine": 76.0, "nb_exprime": 1376.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1814.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1400, "quartier_bv": "51", "geo_point_2d": [48.82447565269504, 2.3563984076212723], "melenchon_jean_luc": 607.0, "poutou_philippe": 10.0, "macron_emmanuel": 348.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345263086613731, 48.8830996029625], [2.345275395913546, 48.88309972333759], [2.345328793039155, 48.88310989807044], [2.345529221474885, 48.88314722608066], [2.345730531785214, 48.88318558470741], [2.3459309608003, 48.88322291204251], [2.346132271699012, 48.88326126999113], [2.346332701293344, 48.88329859665114], [2.346534012780533, 48.88333695392166], [2.346734444306284, 48.88337428081331], [2.346935756382048, 48.883412637405684], [2.346941628254585, 48.883418069010865], [2.346985558523258, 48.8834222458906], [2.347191546607609, 48.883446590813826], [2.34739514320861, 48.883471794695446], [2.347598740006786, 48.88349699823027], [2.347804728673362, 48.883521342096884], [2.34800832586347, 48.88354654493408], [2.348214314917491, 48.88357088809493], [2.348417912499523, 48.883596090234505], [2.348623901941083, 48.88362043268956], [2.348827499914926, 48.883645634131504], [2.34903348974391, 48.883669975880814], [2.349237088109658, 48.88369517662513], [2.349443078326057, 48.88371951766867], [2.349492552366671, 48.88373099842288], [2.34950899780758, 48.88372434550186], [2.34951931133085, 48.88372017288942], [2.349528501603935, 48.88368463725657], [2.349554945334908, 48.88358899964086], [2.34958990717115, 48.88348804648347], [2.349590100153859, 48.88348700700757], [2.34960349493129, 48.88334890857434], [2.349615636247901, 48.88322567642889], [2.349627776143595, 48.883102444261006], [2.349641170722203, 48.88296434577529], [2.349653310496452, 48.88284111357559], [2.349666704951362, 48.88270301415493], [2.349678844604373, 48.88257978192332], [2.349692238913024, 48.8824416833663], [2.34970437980823, 48.88231845111025], [2.349717772618525, 48.882180352510154], [2.349729913392285, 48.88205712022224], [2.349743307442418, 48.881919020694646], [2.349755446720184, 48.881795789266725], [2.349768840635295, 48.881657689703495], [2.349780979802955, 48.88153445734446], [2.349788427532074, 48.88152901007505], [2.3497898848650838, 48.88150555623948], [2.349802025310996, 48.88138232386875], [2.349811520125628, 48.881257908883825], [2.349811844478201, 48.88123968389705], [2.34975572540035, 48.8812374779227], [2.349581659939382, 48.88128536608221], [2.349407191866567, 48.88133336601552], [2.34923312576462, 48.8813812536641], [2.349058658424091, 48.88142925219342], [2.34888459166993, 48.881477140230395], [2.348710122323432, 48.88152513824025], [2.348536054928394, 48.881573025766315], [2.348361584939441, 48.88162102326404], [2.348187518266845, 48.88166891028663], [2.3480130476354413, 48.881716907272285], [2.347838978958357, 48.881764793776505], [2.347664507684505, 48.88181279025006], [2.347490438366452, 48.881860676243406], [2.347315967813679, 48.881908672212305], [2.347141897865936, 48.88195655679544], [2.346967425295924, 48.88200455314406], [2.346793354707327, 48.88205243721627], [2.346618881506154, 48.882100432153536], [2.346606441213742, 48.88209903325102], [2.346592798279278, 48.88210860681578], [2.346423168598091, 48.882175584897766], [2.346251055326508, 48.882243542936784], [2.346081426129715, 48.88231052053381], [2.345909310602692, 48.88237847806574], [2.345739680526863, 48.88244545517039], [2.34556756547147, 48.882513412210166], [2.345397933153064, 48.88258038881494], [2.345225817205764, 48.8826483453551], [2.345056185371862, 48.882715321474905], [2.344884067169112, 48.88278327750796], [2.3447144344561712, 48.88285025313541], [2.344542316713739, 48.882918209575564], [2.344526543195473, 48.882953459711835], [2.34453147245659, 48.882956619965796], [2.34471512909213, 48.88299227920257], [2.34491643820374, 48.88303063920353], [2.345100096727473, 48.883066297854846], [2.345248009293993, 48.88309448246084], [2.345263086613731, 48.8830996029625]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 45, "zemmour_eric": 72.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "9-27", "circ_bv": "18", "num_bureau": 27, "roussel_fabien": 22.0, "nb_emargement": 1350.0, "nb_procuration": 84.0, "nb_vote_blanc": 10.0, "jadot_yannick": 166.0, "le_pen_marine": 49.0, "nb_exprime": 1340.0, "nb_vote_nul": 1.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1630.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1351, "quartier_bv": "36", "geo_point_2d": [48.88262485665523, 2.3478625329229423], "melenchon_jean_luc": 427.0, "poutou_philippe": 8.0, "macron_emmanuel": 484.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.30270241480184, 48.88173609562233], [2.3027101173567193, 48.881723599250286], [2.30284471618921, 48.88161402564509], [2.302980207802265, 48.88150372412022], [2.303114805498207, 48.881394150189536], [2.303250297330679, 48.88128384834487], [2.303384893890083, 48.88117427408865], [2.303520383215075, 48.88106397190839], [2.303654978637956, 48.880954397326605], [2.3037904681702512, 48.88084409572586], [2.303788205046254, 48.88083131558913], [2.303639440196235, 48.88075558153818], [2.303490872182012, 48.88067994556815], [2.303342109560248, 48.88060421114526], [2.303193541034148, 48.88052857568722], [2.303044779277145, 48.88045284088445], [2.302896211626713, 48.880377204147734], [2.302893500407715, 48.88036481079084], [2.303011686179436, 48.88025718100848], [2.303129348302062, 48.880150027400155], [2.303247534462432, 48.88004239737193], [2.303365195626584, 48.87993524261166], [2.3034833808121338, 48.87982761232958], [2.303601040993762, 48.87972045821587], [2.30360051178228, 48.87970945714425], [2.303493469037995, 48.87962395588452], [2.303379694507388, 48.87953307778235], [2.303272652500171, 48.87944757541221], [2.303158878740093, 48.879356697085626], [2.3030518374580122, 48.879271194504355], [2.3029380658320058, 48.87918031596129], [2.302969887332706, 48.87911423804735], [2.302924291495479, 48.87910401149841], [2.3027951180630613, 48.87907556957425], [2.302606531097941, 48.87903445599105], [2.302422407755141, 48.87899391491435], [2.302233821379816, 48.87895280074097], [2.30204969861592, 48.87891225908806], [2.301861112830501, 48.87887114432454], [2.301676990645416, 48.87883060209542], [2.301488405449906, 48.87878948674173], [2.301304283843535, 48.87874894393638], [2.301115699238042, 48.87870782799256], [2.3010264779992, 48.878688181767124], [2.30101524815268, 48.878686652076674], [2.300978467164198, 48.87875289660669], [2.300892690851427, 48.878863823712514], [2.300806694926274, 48.87897503455536], [2.300720917893866, 48.87908596061647], [2.30063491987168, 48.87919717130554], [2.300549142107654, 48.87930809722124], [2.300463144715215, 48.87941930777242], [2.300377366207384, 48.87953023444192], [2.300291368081341, 48.87964144484732], [2.300205588853855, 48.87975237047208], [2.3001195899942, 48.879863580731644], [2.300033810022886, 48.87997450711027], [2.29994780906624, 48.88008571721603], [2.299862028375156, 48.8801966425499], [2.299776028048348, 48.88030785251781], [2.299775843784351, 48.880315776397524], [2.299864764963823, 48.88044007039888], [2.299951700341665, 48.88056158904406], [2.300038636125308, 48.88068310761269], [2.300127558559155, 48.880807401377425], [2.300214495163369, 48.88092891979121], [2.300303418436742, 48.88105321339759], [2.300390357225137, 48.881174731664515], [2.300479281337847, 48.8812990251125], [2.30056621959562, 48.881420542317336], [2.300655144535699, 48.88154483650623], [2.300742083614072, 48.88166635355625], [2.300831009393713, 48.88179064758674], [2.3009284003503723, 48.88182314901488], [2.300932652835319, 48.88181994163336], [2.30088646763194, 48.88175534876058], [2.300961160037457, 48.88164350283663], [2.301025733365993, 48.88154676058085], [2.301090306454521, 48.88145001828174], [2.301164997984356, 48.88133817219962], [2.301182611849906, 48.88133346626438], [2.301370499515952, 48.881383843740316], [2.301557659288227, 48.8814340251119], [2.301745547691917, 48.8814844010953], [2.301932708186959, 48.881534581876025], [2.302120597304171, 48.88158495816556], [2.302307758521977, 48.88163513835539], [2.302495648376814, 48.88168551315245], [2.302682810305336, 48.88173569365066], [2.30270241480184, 48.88173609562233]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 159, "zemmour_eric": 225.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "17-43", "circ_bv": "04", "num_bureau": 43, "roussel_fabien": 6.0, "nb_emargement": 1267.0, "nb_procuration": 62.0, "nb_vote_blanc": 11.0, "jadot_yannick": 56.0, "le_pen_marine": 42.0, "nb_exprime": 1255.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1542.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1267, "quartier_bv": "66", "geo_point_2d": [48.88026621604021, 2.3017551464692554], "melenchon_jean_luc": 71.0, "poutou_philippe": 0.0, "macron_emmanuel": 666.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328891937821672, 48.89737249864748], [2.328892107209017, 48.89737195011205], [2.328885634331721, 48.897352534389704], [2.328841612594854, 48.89722302749928], [2.328797382375383, 48.89709034750474], [2.3287533597159262, 48.89696084054318], [2.32870913130792, 48.89682816049191], [2.3286651090896893, 48.896698653466906], [2.328620879765413, 48.89656597334363], [2.328576857988403, 48.896436466255196], [2.328532630475667, 48.896303786075194], [2.328488609139869, 48.89617427892331], [2.328444380699367, 48.89604159957057], [2.328400359816275, 48.89591209145599], [2.328356133187285, 48.8957794120465], [2.328312112745495, 48.895649903868474], [2.328275321467979, 48.89553953060567], [2.328269088865289, 48.89552319903747], [2.32820537238366, 48.89553245357273], [2.327997680670528, 48.8955452187923], [2.327792396775382, 48.89555783618902], [2.327587114144617, 48.895570453241355], [2.32737942075272, 48.89558321827986], [2.327174137933422, 48.89559583372476], [2.3269664457030093, 48.89560859805443], [2.326761161308068, 48.895621213682766], [2.326553468886798, 48.89563397639665], [2.326348184291625, 48.895646591316755], [2.326140491656248, 48.8956593542134], [2.3259352082249363, 48.89567196843297], [2.325727515398737, 48.895684729713885], [2.325713202213083, 48.89567839613941], [2.325659102337189, 48.89556128579255], [2.325605035868969, 48.89544424754122], [2.325550936479685, 48.89532713712045], [2.325496870486122, 48.89521009969453], [2.325442771583439, 48.895092989199846], [2.325388706087825, 48.89497595080084], [2.325334607671738, 48.89485884023226], [2.325280542650763, 48.89474180265867], [2.325226444721163, 48.89462469201621], [2.325172381562082, 48.894507653477206], [2.325118284119062, 48.894390542760874], [2.325064220070752, 48.89427350503958], [2.325055227052096, 48.89426587755705], [2.325038547944784, 48.894266907703305], [2.32487200045539, 48.89430438615535], [2.324704930170974, 48.894341982836316], [2.324538382189509, 48.89437946172109], [2.324371312798796, 48.894417057042496], [2.324358190699793, 48.89441546315274], [2.324219926671158, 48.89433971632087], [2.324082471548914, 48.89426441275728], [2.323944209686279, 48.89418866560432], [2.323806755361595, 48.894113361713856], [2.323668492937371, 48.89403761422447], [2.323531039410245, 48.89396231000717], [2.323392777788372, 48.89388656218901], [2.323255325058803, 48.893811257644856], [2.323117064239077, 48.89373550949793], [2.322979612307059, 48.893660204626954], [2.322940644231892, 48.893637649605935], [2.32288019988891, 48.893624448413284], [2.322863239369851, 48.893613150533135], [2.322846392824119, 48.893612490496864], [2.322817622301627, 48.89361136193106], [2.322809726302984, 48.893645259557914], [2.322902099920281, 48.8937624790401], [2.322994433729003, 48.89387964515096], [2.323086808177889, 48.8939968644656], [2.3231791414541982, 48.89411403040131], [2.323271518098625, 48.894231249556086], [2.323363852206162, 48.894348415324295], [2.323456228330243, 48.89446563340456], [2.323548564621283, 48.89458279991227], [2.323640941576981, 48.89470001782498], [2.323733277347304, 48.89481718325824], [2.323825656486908, 48.89493440191035], [2.32391799308859, 48.89505156717613], [2.324010371696075, 48.89516878565295], [2.324102710492894, 48.895285950758975], [2.324195089932231, 48.89540316906821], [2.32428742819656, 48.89552033399904], [2.324379809831435, 48.89563755214841], [2.324472148927256, 48.895754716911725], [2.32446203913978, 48.895767760305], [2.32425205399175, 48.89578819979791], [2.32404340976589, 48.89580850979501], [2.323833424277586, 48.89582894945238], [2.3236247797368, 48.89584925782012], [2.323414793919702, 48.89586969674271], [2.32320614905233, 48.895890004380355], [2.322996162906651, 48.89591044256813], [2.322787517701008, 48.895930750374966], [2.322776029204271, 48.895941012321195], [2.322781390398361, 48.89596401851425], [2.322783077594851, 48.895971255905174], [2.322795081539941, 48.895978830425975], [2.322870907285281, 48.895984273804274], [2.322983952321493, 48.89599238899506], [2.323019945172848, 48.89599497297208], [2.323032094702702, 48.89600352225727], [2.323039605128856, 48.89611751237822], [2.323047226006142, 48.89623318574177], [2.323054735146351, 48.896347174930916], [2.323062356090869, 48.89646284826922], [2.323069866649643, 48.896576838340486], [2.323077487673092, 48.89669251075434], [2.323084996934115, 48.89680650079297], [2.3230926180248, 48.8969221731816], [2.323100059605346, 48.89692776045679], [2.323121540986927, 48.896926510407354], [2.323302598130312, 48.8968610602932], [2.323482987403453, 48.89679585254515], [2.323664043638058, 48.89673040187676], [2.323844432005676, 48.89666519357649], [2.324025488695407, 48.89659974236156], [2.3242058747937993, 48.89653453350143], [2.324386930574746, 48.89646908173225], [2.324567317131519, 48.89640387232759], [2.3247483706281162, 48.89633842089575], [2.324928756291232, 48.89627321003968], [2.324942747539855, 48.896273556006065], [2.325096127969291, 48.89633929933823], [2.32530402012613, 48.89642840818856], [2.325457401468073, 48.8964941510488], [2.325655773931278, 48.89657917848855], [2.325809156161481, 48.896644920889194], [2.326007529773634, 48.89672994773457], [2.326160912880665, 48.89679569057494], [2.326173453878069, 48.89680218588637], [2.326188271272211, 48.89679815036676], [2.326384524150339, 48.89673429376448], [2.326582654482214, 48.89666982506673], [2.326778906392887, 48.89660596781069], [2.326977037111946, 48.896541498460586], [2.327173288055058, 48.89647764055077], [2.327371417797389, 48.89641317054066], [2.327567667773139, 48.896349311977104], [2.3277657965387393, 48.896284841306944], [2.327781861902242, 48.89628681106695], [2.32789755766104, 48.896369583734845], [2.328010191303739, 48.89645016454231], [2.328125889164068, 48.896532936085706], [2.32823852351367, 48.8966135166664], [2.328351158211834, 48.89669409713523], [2.328466855780825, 48.896776869222386], [2.328469998978453, 48.89678063161871], [2.328512075472437, 48.89688393238932], [2.328573805563975, 48.89703548574614], [2.328615881094283, 48.89713878734787], [2.328677611790183, 48.89729034061592], [2.328719689108059, 48.897393641265516], [2.328736768599377, 48.897399925220355], [2.3287908003476, 48.89738927793861], [2.328833394508401, 48.89738088408166], [2.328891937821672, 48.89737249864748]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 48, "zemmour_eric": 61.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-22", "circ_bv": "03", "num_bureau": 22, "roussel_fabien": 14.0, "nb_emargement": 938.0, "nb_procuration": 34.0, "nb_vote_blanc": 12.0, "jadot_yannick": 86.0, "le_pen_marine": 60.0, "nb_exprime": 926.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1189.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 938, "quartier_bv": "68", "geo_point_2d": [48.89573425150083, 2.325439767422811], "melenchon_jean_luc": 292.0, "poutou_philippe": 4.0, "macron_emmanuel": 304.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.270577155335245, 48.85697412474313], [2.270599156320698, 48.856973137351766], [2.270818118212993, 48.85698788847234], [2.27103250412079, 48.857001031141465], [2.2712514648902262, 48.857015781460454], [2.271465851022092, 48.8570289233529], [2.271680237262102, 48.857042064861055], [2.271899199750098, 48.85705681400264], [2.271902230287534, 48.8570572524428], [2.272137320163779, 48.85710824000534], [2.272384428173197, 48.85716407307474], [2.27238890231957, 48.857165764093494], [2.272552601836262, 48.85725869269354], [2.272732226395704, 48.85735897297054], [2.272747123483786, 48.8573601517324], [2.272878349887816, 48.85731686353921], [2.273097461288512, 48.85724171690537], [2.273228687103194, 48.857198428323414], [2.273233660571808, 48.85718513723133], [2.273122671408617, 48.85708319441601], [2.273011319920938, 48.85698087605065], [2.272900331627967, 48.85687893301032], [2.272788979650568, 48.85677661441093], [2.272677992227607, 48.856674671145676], [2.272566642486196, 48.85657235232885], [2.272572766971945, 48.856558726496836], [2.272782015021108, 48.8565049467774], [2.272982713396853, 48.85645357449482], [2.27298624842965, 48.856452237940104], [2.273122620958345, 48.85638280757396], [2.273249500965318, 48.8563164545646], [2.273376382011879, 48.85625010142505], [2.273512752141473, 48.856180669694055], [2.273545320503547, 48.85616895810457], [2.273546294807693, 48.8561587077259], [2.273474622156373, 48.85609987807792], [2.273385493841822, 48.85602449130468], [2.273271996503452, 48.855931331711865], [2.273182868770368, 48.85585594477625], [2.273186442200745, 48.85584276568108], [2.273336291728478, 48.855781574994985], [2.27347579742286, 48.85572509601716], [2.273625646272379, 48.85566390496221], [2.273765151338072, 48.855607425641075], [2.273768453935788, 48.855605549834884], [2.273889013358447, 48.85551098621016], [2.274009641634366, 48.855415166470564], [2.274130200166284, 48.85532060348594], [2.274250828920641, 48.85522478349506], [2.2743713865869832, 48.85513021935193], [2.274492014457062, 48.855034399101505], [2.274612571245101, 48.85493983469919], [2.274733198218496, 48.8548440150885], [2.274853754128343, 48.85474945042698], [2.274974380229894, 48.85465362965746], [2.275094935261656, 48.85455906473677], [2.2752155604664432, 48.85446324460698], [2.275237268744569, 48.854455096584196], [2.27523401435915, 48.85443137152722], [2.275237312448017, 48.854364554623935], [2.275240943617229, 48.85427398671968], [2.2752223565221072, 48.85426537247893], [2.275031710858288, 48.85431456825541], [2.274844062900816, 48.85436300035102], [2.274653416535165, 48.85441219462123], [2.274465767861986, 48.85446062701857], [2.274275120781995, 48.85450982068174], [2.274087471405624, 48.85455825248163], [2.273896822248499, 48.85460744552946], [2.273709173544379, 48.85465587584084], [2.273518523660284, 48.85470506918092], [2.273330872890187, 48.854753498886524], [2.273140223667207, 48.85480269072854], [2.272952572181294, 48.854851120735894], [2.272761922243993, 48.8549003119709], [2.272574270054907, 48.854948741380724], [2.272383619403291, 48.85499793200862], [2.272195966523598, 48.855046359921715], [2.272005315145109, 48.85509555084183], [2.271817661562361, 48.855143978157365], [2.271627008119216, 48.855193167562874], [2.271439353820742, 48.855241595180175], [2.271248701026209, 48.85529078398689], [2.27106104602448, 48.85533921100668], [2.27087039251565, 48.855388399206355], [2.27068273682336, 48.855436824729296], [2.27049208258765, 48.85548601322115], [2.270304426192223, 48.85553443814663], [2.270116769448097, 48.855582862775684], [2.26992611414376, 48.8556320503593], [2.269738456696401, 48.85568047439083], [2.269547799314948, 48.85572966135907], [2.269507699201812, 48.85574416426997], [2.269509613224478, 48.855756962156846], [2.26965145364074, 48.855826497710524], [2.269789995272422, 48.855892789653], [2.269931836420006, 48.85596232576514], [2.270070378769459, 48.85602861737486], [2.270212220661077, 48.85609815314614], [2.270350763740998, 48.85616444352384], [2.2704926063765463, 48.85623397895429], [2.27063115016175, 48.856300269898576], [2.270635833793988, 48.856310840738864], [2.27057700072799, 48.856409600527286], [2.270520475080777, 48.856500754074084], [2.270461641581588, 48.85659951378885], [2.270405115526533, 48.856690667265546], [2.270405008965004, 48.85669730388684], [2.270488641157371, 48.85684065899032], [2.270561802573491, 48.85696228013201], [2.270577155335245, 48.85697412474313]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 219, "zemmour_eric": 154.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-17", "circ_bv": "14", "num_bureau": 17, "roussel_fabien": 5.0, "nb_emargement": 1181.0, "nb_procuration": 93.0, "nb_vote_blanc": 6.0, "jadot_yannick": 37.0, "le_pen_marine": 50.0, "nb_exprime": 1174.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1433.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1183, "quartier_bv": "62", "geo_point_2d": [48.8558487021951, 2.272266516287356], "melenchon_jean_luc": 74.0, "poutou_philippe": 2.0, "macron_emmanuel": 615.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345944253365866, 48.86295127213732], [2.345944348254672, 48.86295533140712], [2.346044330893998, 48.86306950932437], [2.346131494496258, 48.86316909266229], [2.346134274340052, 48.86317133553121], [2.346251711460682, 48.863239748243465], [2.346363933553349, 48.86330892827363], [2.346476154580914, 48.86337810818678], [2.346593592616694, 48.86344652055079], [2.346598071814988, 48.863448258260135], [2.346776273567539, 48.863489825732124], [2.346956984909092, 48.86353184281238], [2.34713518859696, 48.86357340975423], [2.347315900518011, 48.86361542628939], [2.347494104778051, 48.86365699269366], [2.3476748172784943, 48.863699008683724], [2.3476838953419232, 48.86370697960264], [2.347693137310082, 48.86381420861047], [2.347703884467835, 48.86392250524003], [2.34771312651537, 48.86402973422547], [2.347723872407337, 48.864138029925456], [2.34775943218866, 48.86417876262276], [2.3477680182100302, 48.86417748288063], [2.347815090937378, 48.8641660695019], [2.348009277805461, 48.86411938489543], [2.34819639231463, 48.86407401587061], [2.348390579860955, 48.864027330649016], [2.348577692344276, 48.86398196101688], [2.348771879205777, 48.86393527517273], [2.348958991026506, 48.86388990494072], [2.349153177203179, 48.86384321847403], [2.349340288361108, 48.863797847642125], [2.3495344738529482, 48.863751160552916], [2.349721584359399, 48.863705788221765], [2.349908695891859, 48.863660416502995], [2.350102878999011, 48.86361372847834], [2.350289989868655, 48.863568356159654], [2.350484172290961, 48.86352166751246], [2.350671282497989, 48.86347629459388], [2.350865465598486, 48.86342960533154], [2.350963291802715, 48.863423049955564], [2.35097122906466, 48.86340938337383], [2.350904743235751, 48.86329036580612], [2.350837202294262, 48.86316831526531], [2.350770717079184, 48.863049297597215], [2.350703176775415, 48.86292724605491], [2.350636693537182, 48.86280822829388], [2.350569153848706, 48.86268617754868], [2.350502669861258, 48.86256715967993], [2.35043513081049, 48.86244510793323], [2.350368647436846, 48.86232608996414], [2.350301109001352, 48.86220403901453], [2.350234627604411, 48.86208502095247], [2.35019795198853, 48.86201874320298], [2.350192229143977, 48.861993989081085], [2.350159846514866, 48.861979245623544], [2.350128984385917, 48.86192347230948], [2.350056358970672, 48.86179495332252], [2.3499888219553, 48.861672902138174], [2.349916197223775, 48.86154438393641], [2.349848660861669, 48.861422332645404], [2.349776036825174, 48.861293814329485], [2.349708501127347, 48.86117176203256], [2.349635877785974, 48.86104324360253], [2.349568342730072, 48.86092119209815], [2.349500807990589, 48.86079914054228], [2.349428187055144, 48.86067062105116], [2.349397752655324, 48.86066793112625], [2.349354499143681, 48.86067908171532], [2.349264016135755, 48.86070006886313], [2.349164313719823, 48.860723653483916], [2.349156109793659, 48.860735202362925], [2.349216574552539, 48.860844515086015], [2.349275221042388, 48.86095078977502], [2.349335686301381, 48.86106010241665], [2.349394334628524, 48.86116637793332], [2.349454800398969, 48.86127568959424], [2.349513447848786, 48.86138196502445], [2.349514270909046, 48.861385039870704], [2.349514301591862, 48.86151074723212], [2.349513821134679, 48.86163241463082], [2.349513339301026, 48.861754082907986], [2.349513371356041, 48.86187978933568], [2.349512889519051, 48.8620014575857], [2.349512920210125, 48.862127163977945], [2.349503782431188, 48.86213565630691], [2.349385812900814, 48.86216278235979], [2.349239939338013, 48.86219637395998], [2.349222641326466, 48.86219096205877], [2.349174062803172, 48.86210300076546], [2.349125318264308, 48.86201546663085], [2.3490767400802, 48.86192750438483], [2.349027995857915, 48.86183997109601], [2.3490110667205713, 48.86183450271064], [2.348855619090363, 48.86186715591157], [2.348716959637853, 48.861896801124644], [2.348578300027644, 48.861926446176305], [2.348422851863117, 48.8619590979131], [2.348414113548785, 48.861970623135804], [2.348462130124074, 48.86206166196018], [2.348510135522539, 48.8621520819453], [2.34855815243296, 48.8622431207162], [2.348606158165279, 48.86233354064799], [2.348597699781177, 48.86234502423535], [2.348409271861632, 48.862387491774214], [2.348221306069855, 48.862429822134516], [2.34803287617379, 48.862472289070034], [2.347844911133269, 48.86251461884339], [2.3476564806237032, 48.86255708518307], [2.347468514971429, 48.862599414362], [2.347280083837101, 48.86264188100508], [2.347092116221325, 48.862684208682886], [2.34690368583642, 48.862726674737544], [2.346715717608908, 48.86276900182095], [2.346527285247693, 48.862811467272245], [2.346339317771371, 48.8628537937687], [2.34615088479657, 48.86289625862413], [2.345962916708627, 48.862938584526155], [2.345944253365866, 48.86295127213732]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 53, "zemmour_eric": 76.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "1-4", "circ_bv": "01", "num_bureau": 4, "roussel_fabien": 16.0, "nb_emargement": 974.0, "nb_procuration": 85.0, "nb_vote_blanc": 8.0, "jadot_yannick": 79.0, "le_pen_marine": 63.0, "nb_exprime": 966.0, "nb_vote_nul": 0.0, "arr_bv": "01", "arthaud_nathalie": 2, "nb_inscrit": 1308.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 974, "quartier_bv": "02", "geo_point_2d": [48.86290924173637, 2.348783130756082], "melenchon_jean_luc": 310.0, "poutou_philippe": 3.0, "macron_emmanuel": 309.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.329146125861017, 48.834129910818284], [2.329178698496561, 48.834118561765614], [2.329303876122769, 48.834072945229366], [2.329465962927059, 48.834012759709545], [2.329643250016033, 48.83394815241119], [2.329805336040566, 48.83388796642473], [2.329982622284505, 48.8338233586162], [2.330144707529179, 48.83376317216317], [2.33030679239957, 48.83370298548727], [2.330484077392895, 48.83363837692475], [2.330646161483326, 48.83357818978224], [2.330823445631716, 48.83351358070954], [2.330985527580134, 48.83345339309282], [2.331162810883387, 48.833388783509896], [2.331324893414099, 48.833328595434224], [2.331502175872416, 48.83326398534107], [2.33152039279355, 48.83326717829887], [2.331604051939534, 48.83335779258769], [2.331692941995991, 48.83346599627129], [2.331776603123245, 48.833556610430946], [2.331776917297706, 48.83355697013611], [2.331865808052719, 48.83366517367198], [2.331946148168457, 48.83376197300665], [2.332035039612697, 48.83387017729624], [2.33211538035874, 48.833966976499525], [2.332204272503842, 48.83407518064354], [2.332284613880097, 48.83417197971539], [2.332298052661816, 48.834221602891475], [2.332364379181493, 48.83422719668322], [2.332546016422277, 48.83417681765776], [2.332726652565342, 48.83412671247562], [2.332908289105875, 48.83407633289553], [2.333088924552522, 48.83402622716178], [2.3332705603928, 48.833975847027], [2.333451195131525, 48.83392574164098], [2.333632830283046, 48.83387536005224], [2.333813465687616, 48.833825254122196], [2.333995098776603, 48.83377487197126], [2.334175733484645, 48.83372476548964], [2.334357365873466, 48.83367438278402], [2.334537999885079, 48.83362427575079], [2.334719632935783, 48.83357389249811], [2.334900264888807, 48.833523784905715], [2.335081897239232, 48.833473401098395], [2.335262528495822, 48.83342329295442], [2.335444160145965, 48.83337290859248], [2.335624790706117, 48.83332279989696], [2.335806421644515, 48.83327241587965], [2.335987051519686, 48.833222305733216], [2.336080492291658, 48.83319638562536], [2.336099845112892, 48.83317598018271], [2.33605303958669, 48.833130543133], [2.335970173354252, 48.83300437882043], [2.335888210941075, 48.83288087170012], [2.335805345515897, 48.83275470634592], [2.3357233838856892, 48.83263119908511], [2.335640519244846, 48.8325050344879], [2.335558559760025, 48.832381527094164], [2.335476599312701, 48.832258018723756], [2.335393735862319, 48.83213185391351], [2.335311776186676, 48.83200834630197], [2.335228913543529, 48.83188218045015], [2.335146956013028, 48.83175867270566], [2.3350640941541663, 48.831632507610834], [2.334982136056046, 48.83150899881901], [2.334899274992928, 48.83138283358185], [2.334817317666348, 48.8312593255489], [2.33473445741044, 48.83113315927014], [2.334652502228952, 48.83100965110429], [2.334569642757288, 48.83088348558256], [2.334569414522247, 48.83088311646891], [2.334511250471937, 48.83078256124898], [2.3344292950082473, 48.83065905288396], [2.33435575383738, 48.83054701692375], [2.33427379911248, 48.83042350842621], [2.334200258619547, 48.83031147144754], [2.334118304633327, 48.83018796281751], [2.334087929233689, 48.83014168727578], [2.334084891974033, 48.83011978319344], [2.334070130044353, 48.830111518492146], [2.334026965653445, 48.8300457578272], [2.333933831674381, 48.82991304733835], [2.333860292620651, 48.829801010998956], [2.333830831336917, 48.82975903048147], [2.333792155344134, 48.82973841813017], [2.333762430911805, 48.82974794690695], [2.3337687090982753, 48.82985168785692], [2.333773078959661, 48.82991757698813], [2.333772775494759, 48.82991989748243], [2.333737319388872, 48.83002657712098], [2.333700586500301, 48.83013711064024], [2.333665130087466, 48.830243791136056], [2.333628396904277, 48.8303543237124], [2.333628186908533, 48.83035487295932], [2.333616614900865, 48.83036380222343], [2.333620049879958, 48.83037429367424], [2.333569165991324, 48.83049160330289], [2.333520089320634, 48.83060403217457], [2.333469204994323, 48.83072134083733], [2.333420129253965, 48.83083376965254], [2.333418998437112, 48.83083559177676], [2.33332820602256, 48.830945773435324], [2.333228422545178, 48.83106637090149], [2.3331376293258073, 48.83117655239264], [2.333037844965823, 48.83129714967496], [2.332947049568117, 48.831407331890496], [2.332847264336925, 48.83152792808965], [2.332756469496677, 48.83163811014539], [2.332656683371454, 48.83175870706005], [2.332565887737867, 48.8318688880491], [2.332466100730011, 48.83198948477991], [2.332375302929549, 48.83209966559397], [2.332275515038945, 48.83222026214091], [2.332184717795934, 48.83233044279519], [2.332084929022777, 48.83245103915828], [2.331994130963364, 48.8325612205445], [2.331894341319067, 48.83268181582439], [2.33180354109273, 48.83279199703564], [2.331703750565656, 48.832912592131706], [2.331612950896754, 48.83302277318311], [2.331594419676525, 48.83302635525093], [2.331479621760121, 48.8329846735037], [2.331385874717404, 48.83295529761642], [2.331381117671324, 48.83295241731546], [2.331259053300559, 48.83283195648487], [2.331135576087328, 48.83270804571424], [2.331013512867709, 48.83258758370749], [2.330890035443281, 48.832463673548], [2.330767974725486, 48.832343211272004], [2.330644498474964, 48.83221929993271], [2.330627429487828, 48.83221607099021], [2.330460178362867, 48.832266815496325], [2.330266898622987, 48.83232584564082], [2.330099646794884, 48.83237658963776], [2.329906366239648, 48.83243561919387], [2.329739113719968, 48.83248636178238], [2.329545832337915, 48.83254539164943], [2.329378579115104, 48.83259613372881], [2.329185296917797, 48.83265516300742], [2.329018042991859, 48.83270590457771], [2.328824759979298, 48.83276493326789], [2.328657505350234, 48.83281567432904], [2.328464221522422, 48.83287470243085], [2.328296966190235, 48.83292544298284], [2.328290694373584, 48.83292626666078], [2.32818037813335, 48.83292330689812], [2.328048974972416, 48.832920002824594], [2.328031552315338, 48.832926661027834], [2.328029674976619, 48.83294325829407], [2.328114464584092, 48.833052198057544], [2.328192119932142, 48.83315459431475], [2.3282769102228382, 48.83326353394251], [2.3283545662048, 48.83336593007489], [2.328356544394118, 48.83336782626747], [2.328418922584313, 48.833413722538914], [2.328484294895579, 48.833460389259386], [2.328487468976416, 48.833464207826296], [2.328540900929078, 48.83359831277381], [2.328597209772964, 48.83373627504631], [2.328599272009029, 48.83373915741745], [2.328703196007206, 48.83383694484441], [2.328806665496141, 48.833932712329116], [2.328910135365356, 48.83402847971608], [2.329014060534956, 48.83412626594835], [2.329046366380772, 48.83416115392197], [2.329050515274945, 48.83416079406335], [2.329084625752974, 48.834148197241085], [2.329136736075128, 48.83412920790698], [2.329146125861017, 48.834129910818284]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 74, "zemmour_eric": 77.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "14-4", "circ_bv": "11", "num_bureau": 4, "roussel_fabien": 37.0, "nb_emargement": 1217.0, "nb_procuration": 86.0, "nb_vote_blanc": 9.0, "jadot_yannick": 121.0, "le_pen_marine": 46.0, "nb_exprime": 1203.0, "nb_vote_nul": 6.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1503.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1218, "quartier_bv": "55", "geo_point_2d": [48.83265405047681, 2.3326525049710662], "melenchon_jean_luc": 350.0, "poutou_philippe": 4.0, "macron_emmanuel": 431.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.275788866506544, 48.86423164186134], [2.27580447899759, 48.864295937513845], [2.275809626546598, 48.864410741322246], [2.275814364493888, 48.864525299814744], [2.275819513450405, 48.864640103607194], [2.275824251440297, 48.86475466207557], [2.2758293990782033, 48.864869465835575], [2.275834138473661, 48.864984024288106], [2.275839286156121, 48.865098828023875], [2.275844024231111, 48.86521338644401], [2.275844362389379, 48.86521514492406], [2.275893275670994, 48.86535635938634], [2.275945516244178, 48.865498687549916], [2.27594556850576, 48.86550277361993], [2.275908995792868, 48.86561026588159], [2.275864702869829, 48.865705624130314], [2.275863681469425, 48.86570780877022], [2.275874305205535, 48.865728271235476], [2.275946602345571, 48.8658504169435], [2.276018724336082, 48.8659738116309], [2.276091022155497, 48.86609595722463], [2.276163144828026, 48.86621935179756], [2.27623544332683, 48.86634149727695], [2.276307566681389, 48.866464891735546], [2.276379865859589, 48.86658703710055], [2.276451076198228, 48.866708101100116], [2.276523376050459, 48.86683024635159], [2.276594587054967, 48.86695131023916], [2.276666887581338, 48.867073455377096], [2.2767380992643123, 48.86719451825337], [2.276810400452143, 48.867316664177054], [2.276881612801203, 48.867437726941326], [2.276952825468671, 48.86755879054927], [2.27702512767815, 48.86768093540373], [2.277037642896059, 48.867699249811174], [2.277063804925142, 48.86770051044], [2.277251789131601, 48.86763636196381], [2.277436601077402, 48.86757316443857], [2.277624583014581, 48.86750901446193], [2.27780939405643, 48.86744581635379], [2.277997376425557, 48.867381666691806], [2.278182186563349, 48.867318468000796], [2.27837016665083, 48.867254317737704], [2.27855497589692, 48.86719111756449], [2.278742956428912, 48.867126966716775], [2.27892776475859, 48.867063766859935], [2.2789282454232023, 48.8670636096715], [2.279129550396267, 48.86700103860528], [2.279330992759371, 48.866938650595195], [2.279532296765808, 48.866876078844534], [2.279733736812784, 48.86681368924206], [2.279935041215603, 48.86675111681517], [2.280136480284598, 48.86668872742712], [2.2802119593070582, 48.866674840345084], [2.280208540961495, 48.86665536324697], [2.280151275281188, 48.86657418614373], [2.2800857532234238, 48.866478779288066], [2.280001793347175, 48.866359759646556], [2.279936273195975, 48.866264352698735], [2.279935294057273, 48.866263195639306], [2.27983802835168, 48.86616589875748], [2.27974348997112, 48.86607092593261], [2.279646224982643, 48.865973628877995], [2.279551685937681, 48.86587865587692], [2.279454423029506, 48.86578135865772], [2.279359884683033, 48.865686385488665], [2.2792626224920562, 48.86558908809672], [2.279155906290078, 48.86548632857365], [2.279155192789793, 48.86548567944148], [2.279066020918886, 48.86540942505072], [2.2789478983574822, 48.865311498975586], [2.278858727100695, 48.86523524351914], [2.278740605323891, 48.86513731722401], [2.278638029152158, 48.865050343271754], [2.278519908209552, 48.864952416742476], [2.27841733275788, 48.86486544348583], [2.278417321978104, 48.86486543442732], [2.278299201881982, 48.864767506764565], [2.278186784527055, 48.86467192380334], [2.278068665290578, 48.86457399679522], [2.277956250151616, 48.86447841270971], [2.277838130424279, 48.86438048544871], [2.277725716113387, 48.86428490202922], [2.27760759862119, 48.86418697453184], [2.277495183800244, 48.86409138997163], [2.277473318197191, 48.86405125386842], [2.277422790483237, 48.86402906486682], [2.277377603675678, 48.86399537119709], [2.277351611267612, 48.86400756596], [2.277165487584386, 48.864031809996796], [2.276999060417965, 48.86405953811338], [2.276989421977111, 48.864060792940364], [2.27682299598744, 48.864088520819614], [2.276627233297186, 48.86411401972957], [2.276460805581662, 48.86414174709562], [2.27626504252652, 48.864167244512636], [2.276098614448198, 48.8641949713737], [2.275902851003395, 48.864220469096345], [2.275807234445597, 48.86422637578014], [2.275788866506544, 48.86423164186134]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 166, "zemmour_eric": 276.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "16-60", "circ_bv": "04", "num_bureau": 60, "roussel_fabien": 5.0, "nb_emargement": 1201.0, "nb_procuration": 72.0, "nb_vote_blanc": 6.0, "jadot_yannick": 41.0, "le_pen_marine": 67.0, "nb_exprime": 1195.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1547.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1201, "quartier_bv": "63", "geo_point_2d": [48.86583945829646, 2.277637618580361], "melenchon_jean_luc": 63.0, "poutou_philippe": 1.0, "macron_emmanuel": 561.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303481595359494, 48.82701156477349], [2.303517458908848, 48.82698002284177], [2.30367207896029, 48.82694508295161], [2.303824317438304, 48.8269113899282], [2.30397893708055, 48.82687644963921], [2.304131176521919, 48.82684275623097], [2.304140437169415, 48.82683484700765], [2.304145587496136, 48.82678545245687], [2.304156560126096, 48.826724899898124], [2.304176648861948, 48.82671808886131], [2.304279077066689, 48.826755285951585], [2.304358148533456, 48.82678737441954], [2.304369551715425, 48.826788251990784], [2.3045412800328, 48.82675080768656], [2.304704347766142, 48.826713956739454], [2.304876075598243, 48.82667651195204], [2.305039142874552, 48.82663965964669], [2.305040940622776, 48.82663917093796], [2.305211009298719, 48.826583294929215], [2.305385505210795, 48.826526350746946], [2.305555574523479, 48.8264704733512], [2.305730068319642, 48.82641352865253], [2.305900136894908, 48.82635765076118], [2.306074631299189, 48.82630070556198], [2.306244699125165, 48.8262448280743], [2.3064191914254, 48.826187881459425], [2.306437855730397, 48.82619257474566], [2.306512350473431, 48.82631429445388], [2.306587243945168, 48.82643555682933], [2.306661739372098, 48.82655727731745], [2.306736633540445, 48.82667853957306], [2.3068111296753, 48.82680025904248], [2.306886024540061, 48.82692152117827], [2.306900719078887, 48.82692852347062], [2.306919689187211, 48.826923454785764], [2.307057284636787, 48.82690864160695], [2.307243154081842, 48.826889079489106], [2.307380749348788, 48.826874265937654], [2.307566617187942, 48.82685470330856], [2.307782138540486, 48.826831899791465], [2.307968006065948, 48.82681233743713], [2.308183525705716, 48.826789533187934], [2.308369394303634, 48.82676996931763], [2.3085849135926892, 48.82674716434423], [2.3087707805149362, 48.82672760074077], [2.308773068513179, 48.82672722183597], [2.308955942914531, 48.8266857479542], [2.3091529960858033, 48.82664085171962], [2.309335868531807, 48.82659937634654], [2.309532921049458, 48.82655447948249], [2.309715794240526, 48.826513004432464], [2.309912846104451, 48.82646810693895], [2.31009571870222, 48.82642663040545], [2.310292768550545, 48.82638173227465], [2.310475640531105, 48.82634025605628], [2.310626445875113, 48.82630589407807], [2.3106314758468383, 48.82630077592408], [2.310622936455709, 48.826285228589335], [2.310565586825652, 48.826177119020684], [2.310506798309853, 48.82606659077894], [2.310449449161116, 48.82595848113353], [2.31039066112606, 48.82584795371248], [2.310333312458739, 48.82573984399033], [2.310274524916414, 48.825629316490634], [2.310217176730299, 48.82552120669175], [2.310158389692701, 48.82541067821415], [2.310165721739835, 48.82539947645612], [2.310343245070447, 48.825347523266345], [2.310527477712786, 48.825294961840775], [2.310705000327054, 48.82524300810918], [2.310889233609198, 48.825190445229985], [2.310892208351755, 48.825175099154876], [2.310744543106127, 48.82509903385815], [2.310579694989837, 48.82501464447634], [2.310432032004721, 48.82493857969006], [2.310267184901578, 48.82485418986539], [2.310119521476699, 48.82477812377519], [2.309954675386704, 48.824693733507736], [2.3098070128602908, 48.824617667920045], [2.309642169145352, 48.824533277217625], [2.3094945075413102, 48.82445721033392], [2.309329663477492, 48.824372819180795], [2.3091820027718972, 48.82429675279969], [2.3090171597212112, 48.824212361203685], [2.30886949993789, 48.824136293526514], [2.30870465926234, 48.82405190149565], [2.308557000389272, 48.823975833421756], [2.3084093419351293, 48.82389976605971], [2.308244501390295, 48.82381537336885], [2.308239745233566, 48.823805808810775], [2.308282104995606, 48.823707320604505], [2.308324405819537, 48.82359724619596], [2.308317437471057, 48.82358903050789], [2.308296409234796, 48.82358547683363], [2.30824372690257, 48.82359707810838], [2.308066337154712, 48.82363607251638], [2.307870139527259, 48.823679277536506], [2.307692749220236, 48.823718271387456], [2.307496550974002, 48.82376147579149], [2.3073191601079213, 48.823800469085434], [2.307122961230858, 48.82384367377265], [2.306945569805722, 48.82388266650956], [2.306829344921868, 48.8239082593082], [2.306651953057411, 48.82394725160737], [2.30651429535527, 48.82397756390024], [2.306376637492966, 48.82400787603392], [2.30619098467966, 48.82404977690061], [2.306012749539052, 48.82409024194331], [2.305827097489959, 48.82413214314924], [2.305648861785472, 48.82417260764663], [2.30546320915066, 48.824214508284555], [2.305284972882096, 48.824254972236645], [2.305099319661569, 48.82429687230654], [2.304921082829136, 48.82433733571328], [2.304735427660887, 48.82437923520732], [2.304557191626399, 48.82441969807667], [2.304371535884544, 48.824461596103376], [2.304140203143123, 48.824514112373706], [2.303954546717979, 48.82455601064886], [2.303760657786387, 48.82460002551687], [2.30357500212425, 48.82464192230815], [2.303381111178727, 48.82468593744888], [2.303195454905679, 48.82472783364775], [2.303001564682279, 48.82477184817762], [2.302815906436302, 48.82481374377608], [2.302622015573009, 48.82485775768727], [2.302436358078156, 48.82489965270124], [2.302355348441113, 48.824918041059114], [2.302334931040402, 48.824922676075694], [2.302149271721772, 48.82496457063361], [2.30202376948437, 48.824993059093906], [2.302009776211505, 48.82499623497929], [2.301906705173808, 48.82501963153168], [2.301721046515716, 48.82506152632841], [2.301672389609898, 48.82507257081233], [2.301500177932484, 48.82511005227905], [2.301314517275871, 48.82515194553401], [2.301300721010592, 48.825154948906906], [2.301268744671375, 48.825161908560744], [2.301250750487838, 48.82519051347458], [2.301252258632406, 48.82519272846939], [2.30137948917955, 48.82529677565956], [2.301500303884422, 48.82539630361057], [2.30162753542336, 48.82550035051798], [2.301748351061535, 48.82559987909967], [2.301869165810975, 48.82569940664329], [2.301996398825602, 48.82580345313015], [2.302117215882345, 48.82590298041301], [2.302244449888891, 48.82600702661715], [2.302365267890901, 48.826106553631384], [2.302492502889172, 48.826210599552695], [2.302613320474395, 48.82631012629036], [2.302740556464598, 48.8264141719289], [2.302861376357065, 48.82651369840583], [2.302988613339114, 48.826617743761595], [2.303109434176975, 48.8267172699699], [2.303236672150775, 48.82682131504284], [2.30335749257186, 48.82692084097451], [2.303457734143313, 48.82700280974066], [2.303481595359494, 48.82701156477349]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 35, "zemmour_eric": 54.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "14-57", "circ_bv": "10", "num_bureau": 57, "roussel_fabien": 17.0, "nb_emargement": 1017.0, "nb_procuration": 15.0, "nb_vote_blanc": 13.0, "jadot_yannick": 29.0, "le_pen_marine": 146.0, "nb_exprime": 1001.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1559.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1017, "quartier_bv": "56", "geo_point_2d": [48.825441052935645, 2.306375610602297], "melenchon_jean_luc": 432.0, "poutou_philippe": 10.0, "macron_emmanuel": 227.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.315366195202698, 48.8862419497477], [2.315352267516051, 48.88625191383203], [2.315251217878489, 48.886342543380074], [2.315119262865535, 48.8864608914923], [2.315018212428647, 48.88655151992716], [2.314886256356583, 48.88666986776011], [2.314785205096907, 48.8867604968804], [2.314653247977555, 48.886878843534774], [2.314552195906811, 48.886969472441145], [2.314552989483401, 48.88698077346896], [2.314612451063847, 48.88702489953601], [2.314697813495614, 48.887088245008485], [2.3146979228846902, 48.88708832657429], [2.314717187853936, 48.887102976302835], [2.314731010971828, 48.88711455964481], [2.314739230636309, 48.88711442322411], [2.31488081217344, 48.88704094428307], [2.3150392028870233, 48.886958739804605], [2.315214520670261, 48.88686775103948], [2.31537291169388, 48.88678554611444], [2.31554822695909, 48.886694555939286], [2.315706616929096, 48.886612350559794], [2.315708498066174, 48.88661116610086], [2.315813899374441, 48.88653078734199], [2.315922067800191, 48.88644829737962], [2.316027467085501, 48.88636791841305], [2.316135636198255, 48.88628542825327], [2.3162438036047748, 48.886202937981814], [2.316366240187217, 48.886109566241835], [2.316390267716633, 48.88610351513503], [2.316390195661978, 48.88609040967828], [2.316484062838907, 48.886016303830665], [2.316564263116545, 48.88595349193225], [2.316565119768831, 48.885952745880886], [2.316675562032576, 48.885845298268684], [2.316789852234075, 48.88573410610617], [2.316900293558512, 48.88562665916452], [2.317014582800292, 48.88551546676537], [2.317125023197437, 48.88540801959513], [2.317239311479407, 48.88529682695935], [2.317349750949169, 48.88518937956044], [2.317464039635143, 48.88507818669582], [2.317574478177427, 48.88497073906821], [2.317688764540107, 48.88485954595921], [2.317799202155129, 48.88475209810298], [2.31791348755803, 48.88464090475736], [2.317990887080605, 48.88456559946248], [2.31810517166502, 48.88445440591505], [2.318182571996694, 48.884379100491266], [2.318296855762529, 48.88426790674203], [2.318442273720015, 48.884126419845366], [2.318556556364934, 48.88401522672191], [2.318655961254687, 48.883918508103804], [2.318770244350741, 48.88380731476313], [2.31886964844665, 48.88371059594928], [2.318983929266606, 48.883599402375886], [2.319083332568884, 48.88350268336634], [2.31909763344225, 48.88349472826379], [2.319096101330153, 48.88348602480421], [2.3191316185299042, 48.88342971723503], [2.319166145557331, 48.883374981451446], [2.319165541537588, 48.88336517169454], [2.319148531818049, 48.883359517989845], [2.319147181414137, 48.883359131691414], [2.319146893367595, 48.883359051811446], [2.318969653720788, 48.88331137289504], [2.31878972725884, 48.88326302371088], [2.318612488277631, 48.883215343362295], [2.318432562479071, 48.88316699363713], [2.318255324139934, 48.883119313654944], [2.318075399004762, 48.88307096338886], [2.317898159955915, 48.883023282866034], [2.317718235484134, 48.88297493205896], [2.317717468871489, 48.882974743326955], [2.317698946939416, 48.882975039775566], [2.317691783189196, 48.88298799251318], [2.317584398876587, 48.883092785008564], [2.317477900903785, 48.88319671369736], [2.317370515718606, 48.883301506880265], [2.317264016903907, 48.883405434459846], [2.317156629494374, 48.88351022742327], [2.317050129825983, 48.88361415479283], [2.316942742919204, 48.88371894755234], [2.316836242397116, 48.883822874711925], [2.316729741449945, 48.883926801767004], [2.316622351890257, 48.88403159420155], [2.316515850089372, 48.88413552104665], [2.316408461032332, 48.88424031327722], [2.316301958377727, 48.8843442399123], [2.316194568459854, 48.88444903193119], [2.316088063587931, 48.884552958348486], [2.315980672809213, 48.884657750155625], [2.315874168435326, 48.884761677270006], [2.315766776807571, 48.88486646796614], [2.315755164948952, 48.88487042341702], [2.315620566917842, 48.88486838156992], [2.3154850567844623, 48.88486632536348], [2.315470413346151, 48.884869043961004], [2.31546585009327, 48.884879136252195], [2.315459382113132, 48.88497260727977], [2.3154535336493263, 48.885057124499234], [2.315458455582284, 48.885064458809225], [2.315598313963511, 48.8851408849337], [2.315739981657607, 48.88521829880059], [2.315879840876996, 48.885294723686215], [2.316021509408224, 48.88537213720913], [2.3161613694539582, 48.885448561755275], [2.316303038822222, 48.88552597493425], [2.316304708122018, 48.88553873967882], [2.31618865515957, 48.88562835088028], [2.316077212856378, 48.885714401769285], [2.315961159110965, 48.885804012735925], [2.315849716055811, 48.88589006339942], [2.315738271268819, 48.885976113944665], [2.315622216356877, 48.88606572456144], [2.31551077218164, 48.886151774888944], [2.315394716486717, 48.8862413852709], [2.315377936833792, 48.88624329303599], [2.315366195202698, 48.8862419497477]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 100, "zemmour_eric": 125.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "17-11", "circ_bv": "03", "num_bureau": 11, "roussel_fabien": 18.0, "nb_emargement": 1219.0, "nb_procuration": 83.0, "nb_vote_blanc": 10.0, "jadot_yannick": 106.0, "le_pen_marine": 49.0, "nb_exprime": 1206.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1445.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1219, "quartier_bv": "67", "geo_point_2d": [48.88468895276391, 2.3169954893528697], "melenchon_jean_luc": 189.0, "poutou_philippe": 3.0, "macron_emmanuel": 572.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.377109588606968, 48.84773087708227], [2.377092376178796, 48.84773465739637], [2.376961292250961, 48.847808807555786], [2.376787980363857, 48.84790394442345], [2.376656894203801, 48.84797809513033], [2.376483581198107, 48.84807323154257], [2.376352495552413, 48.84814738101243], [2.376179181427929, 48.848242516969286], [2.3760480949234, 48.84831666609439], [2.376014106759669, 48.84832959154896], [2.376023994872653, 48.84835278533924], [2.376056359414711, 48.848399324903646], [2.376124543242951, 48.84850992617075], [2.376210865882425, 48.84864995173782], [2.376279049003836, 48.8487605528849], [2.376365372473517, 48.84890057830899], [2.376433556250862, 48.84901117934308], [2.376434531280896, 48.849013969727494], [2.376447934300306, 48.849146484897986], [2.37646134238191, 48.84928165767084], [2.376474745538345, 48.84941417280644], [2.376488152395686, 48.84954934553671], [2.376501555678386, 48.84968186153672], [2.376514964047588, 48.84981703333928], [2.376528367467317, 48.849949549304434], [2.376541774601488, 48.850084721963654], [2.376542871271997, 48.850087712634824], [2.376612778258159, 48.850194089158315], [2.376685776005683, 48.85030732401642], [2.3767556835781702, 48.85041370043541], [2.376828681943855, 48.850526935183936], [2.376898590102675, 48.85063331149845], [2.376971589086529, 48.85074654613743], [2.377041497820836, 48.85085292324678], [2.377114497433617, 48.85096615687693], [2.377073718639918, 48.85098237126769], [2.377083146633887, 48.85099694041333], [2.377094696480285, 48.851022568261946], [2.377166073295209, 48.85102771990032], [2.377366366083348, 48.85097919449971], [2.377532455079928, 48.85093857241417], [2.377698543817563, 48.85089795009657], [2.377898835611074, 48.85084942379898], [2.378064923768228, 48.850808801868844], [2.37826521487801, 48.85076027495402], [2.378355253114356, 48.85073825265868], [2.378369694835437, 48.850737647780164], [2.378387247732863, 48.85073053425385], [2.378463297071868, 48.85071193318751], [2.378681958521319, 48.85065692852636], [2.378848045465192, 48.850616304602866], [2.378850281178681, 48.850615897110806], [2.379060400186553, 48.85058763555501], [2.379301193818077, 48.850557977783936], [2.379364985046201, 48.85054939700393], [2.379382101442356, 48.850540470668534], [2.379366816739623, 48.85050430392244], [2.379289399536161, 48.85040920757447], [2.3792078258067493, 48.850309681867735], [2.37913040918256, 48.85021458540027], [2.379048836061353, 48.85011505956776], [2.379047986812408, 48.8501077613996], [2.379082466141212, 48.85004392701998], [2.37913465376145, 48.84997797120968], [2.379137075683373, 48.84996433428078], [2.3790929987218, 48.849943637150595], [2.379006101161774, 48.84983593368297], [2.37892346164161, 48.84973425183583], [2.378836564781133, 48.849626548224805], [2.378753924571959, 48.84952486533504], [2.378671286047964, 48.849423182385955], [2.37858439022738, 48.84931547856174], [2.378501752366125, 48.84921379547643], [2.378414857245074, 48.8491060915088], [2.3784133516870263, 48.849100814367034], [2.378432726366837, 48.848992102076366], [2.378450270633497, 48.84887917847675], [2.378469645153893, 48.84877046615848], [2.378487189266039, 48.84865754253094], [2.37850656362702, 48.84854883018503], [2.378524108957828, 48.84843590563744], [2.378518731659338, 48.84842779519856], [2.378345560357517, 48.84834203505735], [2.378174513633668, 48.84825768329669], [2.37800134347432, 48.84817192174484], [2.377830299228516, 48.848087569486296], [2.377657130190169, 48.84800180832245], [2.377486087059956, 48.84791745555891], [2.377312919163982, 48.8478316929845], [2.377141875786621, 48.84774733970888], [2.377109588606968, 48.84773087708227]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 55, "zemmour_eric": 54.0, "hidalgo_anne": 42.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-56", "circ_bv": "07", "num_bureau": 56, "roussel_fabien": 29.0, "nb_emargement": 1234.0, "nb_procuration": 92.0, "nb_vote_blanc": 7.0, "jadot_yannick": 122.0, "le_pen_marine": 31.0, "nb_exprime": 1225.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1488.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1234, "quartier_bv": "48", "geo_point_2d": [48.849435466687005, 2.3775814524096512], "melenchon_jean_luc": 408.0, "poutou_philippe": 9.0, "macron_emmanuel": 448.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295047376129512, 48.84288468586583], [2.294989556361845, 48.84290604057833], [2.294815814693217, 48.84297383256108], [2.29463031072958, 48.843046356660636], [2.29445656812582, 48.843114148113116], [2.29427106316297, 48.843186671646514], [2.294097319624179, 48.843254462568716], [2.293911813662012, 48.843326985535946], [2.293738069188191, 48.84339477592787], [2.293552562226708, 48.8434672983289], [2.293378816817856, 48.84353508819055], [2.293193307482345, 48.84360761091666], [2.293126384865119, 48.843633721657966], [2.293113894319446, 48.843639718582914], [2.293144112941059, 48.843681998325174], [2.293245940281232, 48.84379764431551], [2.293346773566803, 48.843911868728725], [2.293447605931833, 48.84402609303719], [2.293549435980257, 48.84414173874155], [2.2936502692341882, 48.844255962855684], [2.293752100169156, 48.84437160926299], [2.293852934324184, 48.84448583228347], [2.293954766158099, 48.844601478494404], [2.294055601189862, 48.844715702219816], [2.294157433934815, 48.844831347335116], [2.294258269855511, 48.84494557086616], [2.294360103487048, 48.845061216684435], [2.294460940308862, 48.845175439121796], [2.294562774839378, 48.84529108474371], [2.294663612537969, 48.84540530788602], [2.294765447979545, 48.845520952412286], [2.294783943454752, 48.84552425868496], [2.294927649004882, 48.84547054028797], [2.295070858562749, 48.84541710119583], [2.295214563533726, 48.845363381549774], [2.295357772490778, 48.84530994300834], [2.295501476870538, 48.845256223012484], [2.295644685238939, 48.84520278412247], [2.295663218054431, 48.845206146241026], [2.295748377364156, 48.84530438616331], [2.295849892486813, 48.84542322602276], [2.295935051152722, 48.84552146488571], [2.296036568474309, 48.845640305470944], [2.296121727846815, 48.84573854418186], [2.296164816473196, 48.8457889849745], [2.296189615512568, 48.845812490984706], [2.296212641059234, 48.84580476868583], [2.296352203038276, 48.84575299562849], [2.296526019100081, 48.845684266638074], [2.296665580445112, 48.845632493209614], [2.296839395691748, 48.845563763756466], [2.29697878569501, 48.84551100774591], [2.297152600123323, 48.84544227783025], [2.29729199084717, 48.84538952145706], [2.297465804469487, 48.84532079017959], [2.297605193176572, 48.84526803432699], [2.297656846318698, 48.84523845076142], [2.297655531476105, 48.84523611728267], [2.297625996973503, 48.84521563711102], [2.297486964214531, 48.845103309306374], [2.297348892973526, 48.84499116414772], [2.297209861410629, 48.8448788359984], [2.297071791360481, 48.84476669049742], [2.296932762356187, 48.84465436201147], [2.296794692146678, 48.844542215260795], [2.296655664338432, 48.844429886430206], [2.29651759530763, 48.84431774023645], [2.296517102310084, 48.84431731643391], [2.296409822498763, 48.84421927604365], [2.296305109303113, 48.84411959041258], [2.296197830297582, 48.84402154981484], [2.296093119255048, 48.843921864887875], [2.295985839692875, 48.8438238240746], [2.295881129465214, 48.84372413804514], [2.295880746111358, 48.843723768847056], [2.295836594099089, 48.843678860789794], [2.295838995291498, 48.843652820258235], [2.295771944939938, 48.843631303034556], [2.295715783341643, 48.84357418007512], [2.295604989262313, 48.843462057482355], [2.295504677923562, 48.84336002715059], [2.29539388475353, 48.84324790434078], [2.2952935728898822, 48.843145872905126], [2.295182780629346, 48.84303374987828], [2.295082470941481, 48.84293171915335], [2.295050939579329, 48.84288526807018], [2.295049395107086, 48.84288501524023], [2.295047376129512, 48.84288468586583]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 123, "zemmour_eric": 139.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-4", "circ_bv": "12", "num_bureau": 4, "roussel_fabien": 19.0, "nb_emargement": 1369.0, "nb_procuration": 126.0, "nb_vote_blanc": 16.0, "jadot_yannick": 89.0, "le_pen_marine": 77.0, "nb_exprime": 1348.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1686.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1369, "quartier_bv": "59", "geo_point_2d": [48.84439866990758, 2.2952783839854702], "melenchon_jean_luc": 250.0, "poutou_philippe": 7.0, "macron_emmanuel": 590.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3511861827964893, 48.84724500447288], [2.351202627762456, 48.847219277558786], [2.351266726961891, 48.847136427257496], [2.351333086718121, 48.84703868229827], [2.351421413946367, 48.84692451537425], [2.351483410267904, 48.846833197764255], [2.351487774516534, 48.846826769418776], [2.3514940124248, 48.84682275161894], [2.351596077149818, 48.84679041705766], [2.351759262094181, 48.8467500585484], [2.35176103798321, 48.84674959420851], [2.352005074084421, 48.84669849887729], [2.352168258424231, 48.84665813980682], [2.35217073062797, 48.8466577853557], [2.352373321121333, 48.84664149218523], [2.352578243062979, 48.846624756213025], [2.352780831937836, 48.84660846234459], [2.352985753618734, 48.8465917256739], [2.353188343600479, 48.84657543112235], [2.353393263646863, 48.846558694645104], [2.353595853372684, 48.84654239940303], [2.353800773169461, 48.846525661328], [2.35400336263955, 48.846509365395384], [2.3542082835381493, 48.846492626629235], [2.354410871389692, 48.84647632999873], [2.354615792016365, 48.84645959143341], [2.354627594043051, 48.8464520006532], [2.3546589291885223, 48.84631417650487], [2.35468997405806, 48.84617557102183], [2.354721308872355, 48.84603774682298], [2.354752352048742, 48.84589914128206], [2.35478368789445, 48.84576131704005], [2.354814730751412, 48.84562271054928], [2.354846066254813, 48.845484887156054], [2.3548771087812232, 48.845346280614706], [2.35490844396459, 48.84520845627164], [2.35493948614932, 48.84506985057906], [2.3549708196389663, 48.84493202617814], [2.355001862855714, 48.84479342044234], [2.355015709425032, 48.844785745305664], [2.355196774350465, 48.84478896075822], [2.355383796001, 48.844792120795205], [2.355564860971289, 48.84479533569067], [2.355751882667016, 48.8447984951522], [2.355932949033594, 48.844801710397164], [2.356119969411953, 48.84480486927596], [2.3563010358344902, 48.844808083064535], [2.356488057620579, 48.84481124137521], [2.356669122725394, 48.84481445459936], [2.356856144545554, 48.84481761323389], [2.3568930914533333, 48.84478663283121], [2.356843530166103, 48.84475891971961], [2.35668898959575, 48.844680566635965], [2.35652812349402, 48.84459863044524], [2.356373585235695, 48.84452027695023], [2.356212718762138, 48.8444383403163], [2.356058181453186, 48.844359986402615], [2.355897317332687, 48.844278049340126], [2.355742779610767, 48.844199695000405], [2.355581916469861, 48.84411775840134], [2.355427379697307, 48.84403940364298], [2.355266517558125, 48.843957465708755], [2.355111983097567, 48.84387911053903], [2.354951121948885, 48.843797172168955], [2.354947769836397, 48.843785512762196], [2.3549291086329482, 48.84377233902379], [2.354923811915555, 48.84376542855033], [2.354921877637732, 48.843710446459106], [2.354919012267753, 48.84365506002792], [2.354905033267037, 48.84364637686081], [2.354753455571568, 48.84364903633049], [2.3546872329452873, 48.843651179355], [2.354674384387975, 48.84365717623916], [2.354677306203817, 48.843689385540365], [2.354654283923054, 48.84381691489647], [2.354633453539061, 48.84394007616979], [2.35461262305662, 48.84406323742586], [2.354589600441197, 48.844190767626074], [2.354568769754927, 48.84431392884681], [2.354545746921454, 48.84444145900992], [2.354524916031353, 48.844564620195364], [2.354501892979928, 48.84469215032137], [2.354481063248546, 48.84481531147887], [2.354458039978967, 48.84494284156776], [2.354437208681197, 48.84506600268253], [2.354414185193558, 48.84519353273432], [2.354398544757654, 48.84520135370845], [2.354199053455187, 48.84518072040935], [2.354031047441533, 48.84516260231769], [2.3540264955150922, 48.845161562361646], [2.353863679914536, 48.84510134782265], [2.353694782256865, 48.84503923762422], [2.353531967432871, 48.84497902172788], [2.3533630705668482, 48.84491691105431], [2.353200255134551, 48.84485669559189], [2.353031360422933, 48.84479458445057], [2.352868545767211, 48.84473436763082], [2.352699650473619, 48.84467225690634], [2.352536837945761, 48.844612039635926], [2.352367943455086, 48.844549927537024], [2.35234804949974, 48.84455571964696], [2.352303291974434, 48.84468101282088], [2.35225865027214, 48.844804095963624], [2.352213890967128, 48.84492938816952], [2.352169248829867, 48.84505247215078], [2.352124490459178, 48.84517776430269], [2.352079847909102, 48.8453008473239], [2.352035089098995, 48.8454261403137], [2.351990446125124, 48.84554922327412], [2.351945685535378, 48.845674515295904], [2.351901042126316, 48.845797599094844], [2.351856282470996, 48.84592289106265], [2.351811638638023, 48.8460459748008], [2.351766878554345, 48.846171266707216], [2.351722234308744, 48.84629434948526], [2.3517119666588018, 48.84630103094978], [2.3516515431919363, 48.84630970879959], [2.351558066678353, 48.84632355686408], [2.351544380512179, 48.84632034751592], [2.351426446515838, 48.846221556624414], [2.351304692440904, 48.8461193426144], [2.351186760716364, 48.84602055147621], [2.351065006229629, 48.84591833629716], [2.350947075403194, 48.8458195458042], [2.350825323218729, 48.845717330370164], [2.350707391950109, 48.845618538716394], [2.350585640694114, 48.84551632391935], [2.350467711697153, 48.8454175320189], [2.350345960029563, 48.84531531605279], [2.350327178921055, 48.84530076943545], [2.350311195224426, 48.84529803491808], [2.350227534240819, 48.845324202528346], [2.350088889545992, 48.845362595889426], [2.350082230800679, 48.84537523350326], [2.350173717948539, 48.84548465380852], [2.350265273741484, 48.845593626522394], [2.350356763019608, 48.845703046673655], [2.3504483182275893, 48.84581201831937], [2.350440112288314, 48.845825033372996], [2.350274263566522, 48.84585601510054], [2.350070796824883, 48.845893917871926], [2.349904946301848, 48.8459248990782], [2.3497014790226842, 48.84596280121912], [2.349535629423376, 48.845993781918935], [2.349332161606694, 48.84603168342943], [2.349166310206152, 48.84606266360797], [2.349112442269484, 48.84605847092429], [2.349103212613865, 48.846069302965304], [2.349092016907687, 48.84614088236816], [2.349074968073977, 48.84627130291389], [2.3490561972715343, 48.8463913174749], [2.349055981813375, 48.8463923118938], [2.349022089990764, 48.84650387921915], [2.348982218976694, 48.84664312505431], [2.3489483268217253, 48.84675469323294], [2.348908455418677, 48.84689393901212], [2.348874562953916, 48.847005506245445], [2.348871018659549, 48.84700997475842], [2.348765961992134, 48.84708200731566], [2.348654554833894, 48.84715960731217], [2.348651547219886, 48.847162891585945], [2.34860861906887, 48.84724603205161], [2.348564963641643, 48.847341229839984], [2.348549251650612, 48.84737165773905], [2.348550332078651, 48.84737799510924], [2.348604219159466, 48.84739166378402], [2.348798825745516, 48.84745005911914], [2.348994204652299, 48.84750993328326], [2.349188812116982, 48.84756832797783], [2.349384191915218, 48.847628201498715], [2.349578801621058, 48.84768659556016], [2.349774180948115, 48.84774646843044], [2.349968791532686, 48.84780486185132], [2.350164171739971, 48.84786473497766], [2.350358783214383, 48.84792312685872], [2.3505541656757503, 48.84798299934921], [2.350582759626143, 48.847987131524235], [2.350602321759276, 48.84797309529766], [2.350698377152304, 48.847855771915555], [2.350786707155893, 48.84774160554385], [2.350882761718339, 48.847624281090035], [2.350971090925635, 48.847510114558446], [2.351059419757125, 48.847395947050664], [2.351155473057319, 48.84727862324081], [2.351179703184789, 48.847247305867455], [2.3511861827964893, 48.84724500447288]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 51, "zemmour_eric": 85.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "5-24", "circ_bv": "02", "num_bureau": 24, "roussel_fabien": 20.0, "nb_emargement": 1228.0, "nb_procuration": 91.0, "nb_vote_blanc": 15.0, "jadot_yannick": 118.0, "le_pen_marine": 58.0, "nb_exprime": 1211.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1501.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1228, "quartier_bv": "17", "geo_point_2d": [48.846005328401624, 2.3522339257893967], "melenchon_jean_luc": 310.0, "poutou_philippe": 9.0, "macron_emmanuel": 487.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.397301825358641, 48.85687542299192], [2.3973173465999, 48.856876351048555], [2.397416301551877, 48.8568964497603], [2.397546633926048, 48.856921154535215], [2.397713251170427, 48.85695499389905], [2.397843585194712, 48.85697969835615], [2.397845904428474, 48.85698032967665], [2.397979112255366, 48.857026095857016], [2.398159386919407, 48.857088473919084], [2.398292593924859, 48.85713424063847], [2.398472869338261, 48.85719661822225], [2.398606775938089, 48.857243105779865], [2.398787050741399, 48.85730548287733], [2.398920957901324, 48.85735197007881], [2.398923305287964, 48.857352999030574], [2.39908062620064, 48.85744207528401], [2.399278155078706, 48.85754967375441], [2.399314869076555, 48.85757046117581], [2.399322853104481, 48.85757271904093], [2.399362569500129, 48.85754280469142], [2.399463457601426, 48.857433909174325], [2.399563785926193, 48.85732529764628], [2.3996646731859, 48.8572164019382], [2.399765000672413, 48.85710779022018], [2.399865887079978, 48.85699889522042], [2.399966213728246, 48.85689028331243], [2.399966376626707, 48.8568901033606], [2.400060989660425, 48.856782420518506], [2.400154813921854, 48.85667585602394], [2.400249426177201, 48.85656817301209], [2.400343248304583, 48.8564616083424], [2.400437071411057, 48.85635504359577], [2.400531682500541, 48.856247360329625], [2.400625504825502, 48.856140796313966], [2.400720115136534, 48.85603311287806], [2.400726460523042, 48.8560225944138], [2.400715029454691, 48.85601385576605], [2.400604872450384, 48.855951407347746], [2.400492200988017, 48.85588755133778], [2.400487452068411, 48.85588072937822], [2.400487447235442, 48.855790533798995], [2.400489133948595, 48.855698545294146], [2.4004808865865632, 48.85569017421651], [2.400298072210714, 48.855638335282855], [2.400115235074691, 48.85558672888265], [2.39993242141531, 48.85553489028482], [2.399749585014783, 48.85548328242181], [2.39956677208202, 48.85543144326057], [2.399383936396374, 48.85537983573334], [2.399201122837968, 48.85532799510251], [2.3990182878773663, 48.8552763870118], [2.398835476398054, 48.855224546723626], [2.398652642162698, 48.85517293806943], [2.398634541858228, 48.8551614658539], [2.398612626691254, 48.85517149766252], [2.398569546391168, 48.8551970699473], [2.398402499175929, 48.855294399457485], [2.398285465525562, 48.8553638684161], [2.398285412012268, 48.85536389962419], [2.398154855509564, 48.855442209391995], [2.398035804264572, 48.85551343427203], [2.398032539914869, 48.8555164018866], [2.397944888323436, 48.85564505420111], [2.397857924950742, 48.85577272961289], [2.397770961141477, 48.85590040584604], [2.397683306895357, 48.856029057917596], [2.397596342240798, 48.85615673309511], [2.39750868712192, 48.85628538590838], [2.397421721611762, 48.856413060929476], [2.3973340669933743, 48.85654171359202], [2.397247100627408, 48.85666938845676], [2.397159443794171, 48.8567980400555], [2.397145805468825, 48.85683981256399], [2.397157429705159, 48.85684359981797], [2.397220783425895, 48.85685662673924], [2.397288443939055, 48.85687036961477], [2.397301825358641, 48.85687542299192]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 31, "zemmour_eric": 58.0, "hidalgo_anne": 47.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "20-47", "circ_bv": "15", "num_bureau": 47, "roussel_fabien": 25.0, "nb_emargement": 1260.0, "nb_procuration": 53.0, "nb_vote_blanc": 18.0, "jadot_yannick": 98.0, "le_pen_marine": 68.0, "nb_exprime": 1238.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1624.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1260, "quartier_bv": "80", "geo_point_2d": [48.85631049924915, 2.3989594555688556], "melenchon_jean_luc": 565.0, "poutou_philippe": 17.0, "macron_emmanuel": 295.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4018245067268422, 48.8776181818931], [2.401820948047982, 48.877629698013514], [2.401792095355899, 48.87774082608841], [2.401764056995636, 48.877854407089245], [2.401735204057578, 48.87796553512777], [2.401707165462708, 48.878079115192826], [2.401707083316594, 48.87807950059454], [2.401688489582152, 48.87818737573672], [2.401665884557552, 48.878312918821734], [2.401647292017884, 48.8784207939415], [2.4016246867926663, 48.8785463369921], [2.401617424789884, 48.87858846662716], [2.401609018217895, 48.878607980513216], [2.4016136029168402, 48.87861184356364], [2.401602272191052, 48.87867758991662], [2.401596111526616, 48.87871820608435], [2.401590301862775, 48.87872459465417], [2.40143211203812, 48.87879650915325], [2.401273281911158, 48.87886881234577], [2.401115092574071, 48.8789407264233], [2.40095626155684, 48.87901303008504], [2.400798071344068, 48.87908494373433], [2.400639239457251, 48.879157246066676], [2.400481047005132, 48.87922915928081], [2.400322215601848, 48.87930146118996], [2.40016402227404, 48.87937337397577], [2.400005189990828, 48.87944567545483], [2.399846995787126, 48.879517587812295], [2.399688161250148, 48.879589889753774], [2.39968697068751, 48.87959049892431], [2.399573991534024, 48.87965590886083], [2.399418922088961, 48.87974466094689], [2.399418893259463, 48.87974467788953], [2.39926871478969, 48.87983113944229], [2.399113642939164, 48.87991989111204], [2.398963463446901, 48.880006353167396], [2.398808391918059, 48.88009510443447], [2.398658210060673, 48.880181565187044], [2.398503137479546, 48.880270316943864], [2.398352954610131, 48.88035677729977], [2.398197880997381, 48.88044552774781], [2.398047698479532, 48.8805319877139], [2.397892622450978, 48.880620738644815], [2.397742438921092, 48.88070719821421], [2.397587363224514, 48.88079594784324], [2.397437177308683, 48.88088240790835], [2.397437114172309, 48.8808824435637], [2.397260991092819, 48.880984484104715], [2.397110804091453, 48.88107094374563], [2.396934679735131, 48.88117298378914], [2.396784491658847, 48.88125944210662], [2.396779737060859, 48.88125954495566], [2.396760861431938, 48.881271999058846], [2.3967601493008193, 48.881272382181315], [2.396665469091933, 48.8813198724873], [2.396568245238843, 48.88137328185752], [2.396566828973238, 48.881374181240766], [2.396556459673781, 48.88138683196996], [2.396576913335149, 48.88139836011259], [2.396658344676585, 48.88144837649181], [2.396750051029856, 48.88150295740859], [2.396754030430372, 48.88151209753368], [2.396699771956209, 48.881637721791265], [2.396645146826364, 48.88176484064305], [2.3965908891897563, 48.88189046482931], [2.396536263539451, 48.882017582702964], [2.39654293397557, 48.88202795947889], [2.396754708045318, 48.88210292167842], [2.396951305676987, 48.88217260534898], [2.396954499388671, 48.882173414641485], [2.397141903750509, 48.88220379339579], [2.397330412457162, 48.882234440916484], [2.397517818621427, 48.88226481908753], [2.3977063277702, 48.88229546601467], [2.397893734373346, 48.882325843595616], [2.398082243964231, 48.882356489929144], [2.398269651006252, 48.88238686692004], [2.398458161039243, 48.88241751265997], [2.398645567156688, 48.882447889053914], [2.39883407899522, 48.88247853420712], [2.399021485551525, 48.88250891001094], [2.399209996468604, 48.88253955456371], [2.399397404816936, 48.88256993068352], [2.399585916186572, 48.88260057374346], [2.399773324973657, 48.88263094927317], [2.399961836775003, 48.882661592638776], [2.400149246011295, 48.8826919666791], [2.400337758254712, 48.88272260945111], [2.400525166566283, 48.8827529828945], [2.400713679251762, 48.8827836250729], [2.400901089365714, 48.88281399793299], [2.401089602493249, 48.88284463951786], [2.401128953725513, 48.88286526004069], [2.401144926161553, 48.88285692044996], [2.401185202536034, 48.882822110264186], [2.401272521777028, 48.88274664119985], [2.401434090772661, 48.88262523793015], [2.4014620084020972, 48.8826011074022], [2.401464626280186, 48.88259958624023], [2.401464851056177, 48.88259948663947], [2.40146507720595, 48.88259938614626], [2.401530299344991, 48.88257047331711], [2.401687462417555, 48.88250049089455], [2.4018211941904832, 48.882441203788595], [2.401978356482123, 48.882371220975934], [2.402112088945045, 48.88231193444417], [2.402269250455661, 48.88224195124145], [2.402402980891927, 48.882182664370994], [2.402440841409629, 48.88216587946841], [2.402493604052398, 48.88214248783497], [2.402650764538864, 48.88207250412063], [2.402686852767233, 48.882056504401454], [2.402866180652043, 48.88197700191198], [2.403023340138428, 48.881907017698104], [2.403180499202524, 48.8818370332735], [2.403359824224771, 48.88175752912268], [2.40338616470418, 48.881745851336774], [2.403407660305179, 48.88173632127509], [2.403564818337692, 48.88166633633514], [2.403681563504771, 48.88161457709716], [2.403838720801712, 48.881544591789904], [2.403989210611219, 48.88147787091101], [2.4041463670822942, 48.88140788519126], [2.404296854739103, 48.881341163910626], [2.404454010384112, 48.881271177778295], [2.404604498615264, 48.88120445610948], [2.404608144278343, 48.88120330871285], [2.404803931771569, 48.88116385391061], [2.405018713684261, 48.88111996148056], [2.405214501916609, 48.881080506010704], [2.4054292831291573, 48.881036613740065], [2.405625069383967, 48.88099715668974], [2.40583984990674, 48.880953263679224], [2.405840735557968, 48.88095308281331], [2.406036521176759, 48.88091362598643], [2.406220110558591, 48.88087610575457], [2.406415895610715, 48.88083664740521], [2.406621728132357, 48.880794581024965], [2.406817513926967, 48.880755122922], [2.406943184022792, 48.8807294384152], [2.407052838582189, 48.88070702804529], [2.407248623721121, 48.88066756923417], [2.407377707491675, 48.88064118620817], [2.40748268610702, 48.88061972986646], [2.407678469228584, 48.88058027034251], [2.407823585628437, 48.880550610769134], [2.408019369595364, 48.88051115069199], [2.408164485618692, 48.880481489804346], [2.408228344373765, 48.88046843788098], [2.408424127725092, 48.88042897713897], [2.408501663119122, 48.88041312919363], [2.40871317646869, 48.88036989657657], [2.4089089590821082, 48.88033043503817], [2.409104740035442, 48.88029097317146], [2.409316253761846, 48.8802477385916], [2.40934489392706, 48.88021248419025], [2.409435634208812, 48.880101197666605], [2.409527061966978, 48.8799886518005], [2.409617802832961, 48.879877365122915], [2.409709229814712, 48.87976481819554], [2.4097999698912522, 48.87965353225653], [2.409891394722929, 48.87954098516044], [2.409982134030423, 48.87942969816149], [2.410073710162699, 48.87931696549206], [2.410164448680232, 48.87920567923157], [2.410256024034056, 48.87909294550047], [2.410346760408268, 48.878981659072444], [2.410438334963488, 48.87886892607825], [2.410529071931381, 48.878757638596845], [2.410620645698084, 48.878644905440304], [2.410711381886127, 48.878533617798105], [2.410756694840083, 48.878477833381126], [2.410788914398195, 48.87843816881254], [2.410801364258189, 48.87842468890295], [2.410782849554016, 48.878425033952134], [2.410591433313845, 48.878368591435375], [2.410401171507483, 48.878313790171504], [2.410209756089903, 48.87825734703876], [2.410019495091438, 48.878202545162765], [2.409828080506544, 48.87814610051481], [2.409637820305991, 48.87809129892596], [2.4094464065435, 48.87803485366206], [2.409256148514274, 48.87798005146781], [2.409064734210963, 48.87792360558123], [2.408874477000046, 48.87786880187564], [2.408683064872367, 48.87781235627912], [2.408492807106034, 48.877757551954666], [2.408301395800865, 48.87770110574222], [2.408111138842549, 48.87764630080569], [2.408110001827901, 48.87764593005638], [2.4079095131953983, 48.87757630362471], [2.407715177181389, 48.87750546891448], [2.407520843059407, 48.87743463389095], [2.407320356027889, 48.877365006459236], [2.407126022977221, 48.8772941698865], [2.406925537014223, 48.87722454178471], [2.406923144693696, 48.87722389410673], [2.406687001000554, 48.87717661714296], [2.406445655829435, 48.877132476861696], [2.406429793482207, 48.87712875412829], [2.406399303596459, 48.87716035107948], [2.40635358603799, 48.877189956937634], [2.406294244207842, 48.8772271413095], [2.406280529409002, 48.877229149842734], [2.406060198435928, 48.877180548907795], [2.405848298340209, 48.877132409394484], [2.40584201333789, 48.87713200228086], [2.405657516447651, 48.87714862156589], [2.40547558594784, 48.87716507974177], [2.405291088813238, 48.877181699360875], [2.405109158081995, 48.877198156979446], [2.404924660713298, 48.87721477603328], [2.404742729750833, 48.877231233094456], [2.404560798673296, 48.87724768987893], [2.404376300954165, 48.87726430808696], [2.404194369645416, 48.87728076431401], [2.404009871692209, 48.877297381956836], [2.404008687376, 48.87729745430236], [2.403789137283591, 48.877304545861435], [2.403572298426977, 48.877311692794514], [2.4033527482151342, 48.877318783553186], [2.403135907876055, 48.87732592968892], [2.40313242350951, 48.877326348491344], [2.402967283377031, 48.877361297651426], [2.402803646569994, 48.877396040042676], [2.402638505995825, 48.87743098874704], [2.402474868750516, 48.877465730686694], [2.402311231297219, 48.87750047150232], [2.402146090051184, 48.87753542042334], [2.402145308042578, 48.877535603578494], [2.401994711512034, 48.87757428519897], [2.4018426018846952, 48.87761434043966], [2.4018245067268422, 48.8776181818931]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 35, "zemmour_eric": 53.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "19-40", "circ_bv": "16", "num_bureau": 40, "roussel_fabien": 16.0, "nb_emargement": 1075.0, "nb_procuration": 40.0, "nb_vote_blanc": 9.0, "jadot_yannick": 67.0, "le_pen_marine": 94.0, "nb_exprime": 1060.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1508.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1075, "quartier_bv": "75", "geo_point_2d": [48.879844696064836, 2.4036614840638246], "melenchon_jean_luc": 503.0, "poutou_philippe": 14.0, "macron_emmanuel": 243.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.363902290395071, 48.82885133873582], [2.363930204387325, 48.82885393079513], [2.364110932491756, 48.828893656614284], [2.364283780603229, 48.82893125192862], [2.364456628974856, 48.82896884609259], [2.364637357867828, 48.829008572011524], [2.364810206750776, 48.82904616566186], [2.36499093619217, 48.82908589014443], [2.365000246486705, 48.82909408789001], [2.365007461242886, 48.82922165266402], [2.365010662302613, 48.82933450756978], [2.365009798196502, 48.82933801233127], [2.364943961727526, 48.82945345959067], [2.364878914157237, 48.82956953965384], [2.364813078468195, 48.82968498682464], [2.364748030317594, 48.82980106679266], [2.364682192684159, 48.8299165138603], [2.364617143953337, 48.830032593733144], [2.364551307099832, 48.83014804071214], [2.364486256426407, 48.830264120482596], [2.364420418990658, 48.83037956736571], [2.364355369099071, 48.83049564704822], [2.36428952971889, 48.830611093828175], [2.364224479246959, 48.830727173415525], [2.364158640646703, 48.830842620106814], [2.364093589594423, 48.830958699599], [2.36409279556487, 48.83096103104301], [2.36407537269895, 48.83106619085891], [2.36405854694001, 48.83119219135434], [2.364080541767979, 48.831209525852934], [2.3641144191788213, 48.831198421572516], [2.364166233525704, 48.83116765976638], [2.3643638489872, 48.83105125238648], [2.364515745220054, 48.830961072035535], [2.364516966796624, 48.83096043187872], [2.3647225030147903, 48.830863520268], [2.364930235518173, 48.83076685379838], [2.364932188674177, 48.830766097006205], [2.365124365613432, 48.83070449051138], [2.365329951631668, 48.8306393411923], [2.365522128995782, 48.83057773405858], [2.365727714028098, 48.83051258314912], [2.36574406650959, 48.830514929090164], [2.365831346271773, 48.83058397434633], [2.365920508191, 48.830645797671195], [2.36594518091909, 48.83066531531299], [2.365945624925106, 48.83067573867637], [2.365973287503371, 48.83068564979425], [2.366035893679185, 48.83073517724899], [2.366036775129748, 48.83073595538015], [2.366168285382284, 48.830854407008204], [2.366299251522027, 48.83098427310179], [2.366381088625749, 48.83106524621206], [2.366383924042053, 48.83106520097567], [2.366412346749885, 48.83104352922452], [2.366414869084053, 48.83101443446133], [2.366415468717989, 48.83099782626496], [2.366417118980384, 48.83099374467018], [2.366521107865291, 48.83086745188227], [2.366625269922346, 48.83074065536249], [2.366729257798148, 48.83061436236504], [2.366833417481068, 48.830487565628125], [2.366937404358702, 48.830361271521845], [2.367041564391866, 48.83023447458228], [2.367058043922427, 48.83021446085354], [2.367062534311531, 48.83021330194462], [2.367074566740464, 48.83019559315009], [2.367162074364249, 48.83008931345572], [2.36724938286185, 48.829977412464764], [2.367250776728346, 48.82997211264957], [2.367231867067876, 48.829877881707326], [2.367215359466623, 48.82977834458062], [2.367219156983715, 48.82977108066403], [2.367341441692671, 48.82968844490651], [2.367501404766309, 48.82958214706493], [2.367623688595614, 48.82949951010561], [2.367783650503231, 48.82939321276793], [2.367905933441979, 48.82931057550608], [2.368065894194296, 48.829204277773016], [2.368188176242491, 48.82912164020866], [2.368204158419266, 48.829115848144035], [2.3682023990757193, 48.82909702489006], [2.368111457779307, 48.82897273959352], [2.368025260246398, 48.82885540984034], [2.367939063090569, 48.82873808091211], [2.367848123048077, 48.82861379537552], [2.367761926701287, 48.82849646539503], [2.367670986140415, 48.82837217968976], [2.367663924776552, 48.828367780397485], [2.367620266677454, 48.828355866705], [2.367552650124764, 48.828339146864444], [2.367522561796413, 48.82831738661544], [2.36749757119749, 48.82832276490468], [2.367487376359746, 48.82833041681028], [2.367471423035397, 48.82841849702203], [2.367466734523814, 48.82848247876273], [2.367458955667706, 48.828490173122354], [2.36729327160771, 48.82854194685611], [2.367133136527878, 48.82859138707256], [2.366967450471337, 48.828643159443736], [2.3668073161337713, 48.82869259922667], [2.366641629421184, 48.82874437204113], [2.3664814931015092, 48.828793811376116], [2.366321357840357, 48.82884325050171], [2.36615567016639, 48.828895022635955], [2.365995532934167, 48.82894446041431], [2.365829845977019, 48.82899623209974], [2.365816524308184, 48.828995612842256], [2.36564362138748, 48.828922226246], [2.36544917713299, 48.82883764213487], [2.365276275253304, 48.82876425499724], [2.365112059984323, 48.82869282038639], [2.365087425528196, 48.82867842735935], [2.365080923205606, 48.828679366859625], [2.365050695410089, 48.828666217641526], [2.364957642429898, 48.828625831003784], [2.364867575406083, 48.828588696990906], [2.36486304942827, 48.8285856285785], [2.36477447433371, 48.82848620916977], [2.364683632283362, 48.828378344223864], [2.364595057894081, 48.82827892376456], [2.364504216576129, 48.82817105866245], [2.364484826763571, 48.82816662604605], [2.364458138492919, 48.8281806196673], [2.36436427968763, 48.82829290670657], [2.364272419737782, 48.82839696333573], [2.364180559410272, 48.82850102078397], [2.364086698079134, 48.828613306666796], [2.36399483699973, 48.82871736395228], [2.363900974868207, 48.82882965056699], [2.363902290395071, 48.82885133873582]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 57, "zemmour_eric": 66.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-12", "circ_bv": "09", "num_bureau": 12, "roussel_fabien": 42.0, "nb_emargement": 1098.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 40.0, "le_pen_marine": 103.0, "nb_exprime": 1078.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1448.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1098, "quartier_bv": "50", "geo_point_2d": [48.82962176030828, 2.3659868280279546], "melenchon_jean_luc": 429.0, "poutou_philippe": 4.0, "macron_emmanuel": 273.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.411636122114187, 48.86721187819719], [2.411634392935107, 48.86722702173086], [2.41162161924454, 48.86736899935311], [2.411607267633579, 48.8675168247823], [2.411594492424803, 48.86765880325705], [2.411580140656921, 48.86780662864427], [2.411564812435967, 48.867814974675795], [2.411427809957861, 48.86780344245186], [2.411164498091801, 48.86778304451176], [2.411027495776024, 48.86777151272851], [2.411019178514009, 48.8677726229514], [2.410871438919652, 48.86782865029563], [2.410713342336528, 48.86788783709675], [2.410706461462178, 48.86789513011561], [2.4106954064632, 48.86801906454275], [2.410684279753847, 48.86814379001837], [2.410673224649324, 48.86826772441558], [2.410662099196927, 48.868392449867784], [2.410651042633855, 48.86851638332913], [2.410639917065065, 48.868641109650525], [2.410628861759629, 48.86876504308858], [2.410617734721431, 48.868889769373155], [2.410606679310447, 48.86901370278136], [2.41059555216602, 48.86913842903582], [2.410581457221647, 48.86914688802808], [2.410375725226438, 48.86914203547155], [2.4101738877241132, 48.8691367322994], [2.409968155806983, 48.86913187904228], [2.409766318385508, 48.86912657518285], [2.40956058654637, 48.86912172122511], [2.409358749205855, 48.86911641667838], [2.409153017455019, 48.869111561120796], [2.408951180185176, 48.869106256785976], [2.408919902824959, 48.869105682342315], [2.408919548666764, 48.86910589733332], [2.408909510257887, 48.869230790697614], [2.4088995906639132, 48.869349293954116], [2.408889552160279, 48.86947418728925], [2.408879631121549, 48.86959268961202], [2.408869592512949, 48.869717583817256], [2.4088596727456713, 48.869836086118966], [2.408849751559834, 48.86995458929973], [2.408839712820057, 48.87007948256225], [2.408829792915886, 48.87019798482273], [2.408819754071142, 48.87032287895539], [2.408824676626126, 48.870329628494865], [2.408848214660174, 48.870331225951595], [2.409038067878396, 48.870339781715394], [2.409230729827571, 48.87034819005955], [2.409420583160251, 48.87035674611577], [2.409613246597143, 48.87036515385083], [2.409803098691246, 48.870373709293496], [2.409995762252719, 48.870382116412756], [2.410185614471367, 48.87039067124855], [2.410378278157308, 48.87039907775198], [2.410568131874, 48.870407631088405], [2.410760794310995, 48.87041603786859], [2.410773499810805, 48.87042558659741], [2.410760756739653, 48.87055674668651], [2.4107477586115422, 48.8706867066905], [2.410735015411797, 48.870817866745874], [2.410722017154304, 48.8709478267163], [2.41070927518901, 48.87107898674465], [2.410696276812311, 48.87120894578234], [2.410683533344999, 48.871340106669514], [2.410670534838916, 48.87147006567366], [2.410657792606065, 48.87160122653381], [2.4106447939707, 48.871731185504444], [2.410632050245885, 48.87186234632413], [2.410619051481031, 48.87199230526126], [2.410606308990787, 48.87212346605391], [2.410593310096647, 48.87225342495749], [2.410593077312089, 48.87225459923981], [2.410551042304517, 48.872394411233465], [2.410509191817353, 48.87253572778929], [2.410467156357748, 48.872675539717925], [2.410425304043749, 48.87281685710103], [2.410383269505475, 48.87295666807202], [2.410341416737997, 48.87309798538985], [2.410299380374298, 48.87323779718832], [2.41025752852682, 48.87337911354824], [2.4102662166284983, 48.87338928193478], [2.410449250176503, 48.87343354214748], [2.410625888401587, 48.87347672556484], [2.4108089225624942, 48.87352098522411], [2.410985561382307, 48.87356416810734], [2.41116219913159, 48.873607350721485], [2.411345235570648, 48.87365160956219], [2.411345328020476, 48.87365163250009], [2.411523327267905, 48.873696119006404], [2.411700173448267, 48.87374048086602], [2.411878173312544, 48.87378496594183], [2.412055021460102, 48.87382932728034], [2.412233020557591, 48.873873812717484], [2.412409869309127, 48.87391817352817], [2.412587870386662, 48.87396265754152], [2.412764718378742, 48.8740070178177], [2.412942720052815, 48.87405150219908], [2.413119570012088, 48.87409586195418], [2.41314252643746, 48.874100355145394], [2.413146343342596, 48.87409895291408], [2.413153956553013, 48.874073170429455], [2.413187055427672, 48.87395360107896], [2.413229464479613, 48.87380996176393], [2.413262563013679, 48.873690392364026], [2.413304971653219, 48.87354675208875], [2.413338069836568, 48.87342718353871], [2.413380478053582, 48.87328354320237], [2.413413577269781, 48.87316397371042], [2.413415055633006, 48.87315896717756], [2.413420589282185, 48.87314022163247], [2.413420967729888, 48.873138940139825], [2.413421373052165, 48.87313757244297], [2.413427959819277, 48.87311526170861], [2.413461057456143, 48.872995692178584], [2.413499911589102, 48.87286408358895], [2.413533010264591, 48.87274451401851], [2.41357186401826, 48.87261290627489], [2.413575680812205, 48.87259224931478], [2.413608779141028, 48.87247267969398], [2.413617333192152, 48.87242637717914], [2.413631802769618, 48.87228682123207], [2.413645386679679, 48.87215084746782], [2.413655901121926, 48.872049438909464], [2.413669483544004, 48.87191346510655], [2.413679999264711, 48.871812055631715], [2.413693581551862, 48.871676082696155], [2.413703479389441, 48.87158062645735], [2.413713375817259, 48.87148517110205], [2.413726959305428, 48.87134919722984], [2.413739282629348, 48.871230337785505], [2.413752865983334, 48.871094363878974], [2.41376518918785, 48.870975504404555], [2.413778698079347, 48.87083983587333], [2.413783744723009, 48.870791163444224], [2.413791553302095, 48.87071584827321], [2.4138050620574862, 48.87058017970712], [2.413812898016422, 48.870504606545765], [2.413826222594353, 48.87037608765852], [2.413839731161216, 48.870240419946064], [2.413853055605467, 48.87011190102512], [2.413866564044053, 48.86997623237794], [2.413879888344304, 48.86984771432255], [2.413893396644495, 48.86971204563991], [2.413906720821189, 48.8695835266515], [2.413920228972869, 48.869447858832714], [2.413931136874319, 48.86934264414819], [2.413944644910063, 48.86920697539776], [2.413955554064939, 48.86910176159405], [2.413969061974626, 48.868966092811306], [2.4139772661815693, 48.86888694737415], [2.413973397604653, 48.868762350646655], [2.413969728367685, 48.868636516495364], [2.413965859837513, 48.86851191884011], [2.413962190636291, 48.86838608466012], [2.413958323495906, 48.868261487882386], [2.413954654330529, 48.86813565367366], [2.413950785873607, 48.86801105596149], [2.413947116744178, 48.867885221724045], [2.413943248313765, 48.86776062488269], [2.413939579220183, 48.8676347906165], [2.413938766749856, 48.86760861773804], [2.413935612822367, 48.867507030299244], [2.41393194376509, 48.86738119600396], [2.413931176273287, 48.86735647846687], [2.413925986926249, 48.86734505575924], [2.413901691947857, 48.86734371908993], [2.413715679039718, 48.86733254303047], [2.413517563935347, 48.86732061848808], [2.413331551192108, 48.86730944183142], [2.413133436253497, 48.86729751755222], [2.412947423685297, 48.867286339399044], [2.412749308922375, 48.86727441448382], [2.41256329650896, 48.8672632366327], [2.41236518329523, 48.8672513101888], [2.412179169683591, 48.86724013173379], [2.411981056635425, 48.8672282055531], [2.41179504456202, 48.86721702560831], [2.41164430614688, 48.867207950552164], [2.411636122114187, 48.86721187819719]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 23, "zemmour_eric": 61.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-30", "circ_bv": "15", "num_bureau": 30, "roussel_fabien": 17.0, "nb_emargement": 1174.0, "nb_procuration": 22.0, "nb_vote_blanc": 10.0, "jadot_yannick": 17.0, "le_pen_marine": 96.0, "nb_exprime": 1155.0, "nb_vote_nul": 9.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1835.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1174, "quartier_bv": "78", "geo_point_2d": [48.87045455829985, 2.411987339553695], "melenchon_jean_luc": 697.0, "poutou_philippe": 12.0, "macron_emmanuel": 194.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.348468766917066, 48.85259385136217], [2.348488981032004, 48.852589656219365], [2.348664731748052, 48.8525187429224], [2.34883264289543, 48.852459508892224], [2.349008392704845, 48.85238859508218], [2.3491763016795453, 48.85232936055539], [2.349344211635155, 48.852270125797226], [2.3495199601096513, 48.85219921122371], [2.349687869255332, 48.85213997597637], [2.349863616823192, 48.852069060889825], [2.34987324567205, 48.852060931775874], [2.349839776656665, 48.85201678044645], [2.349750131633897, 48.8519079488828], [2.349652052995102, 48.851786417470464], [2.349562408760592, 48.85167758574363], [2.349464330993186, 48.85155605415221], [2.349374687547127, 48.85144722226218], [2.3492766106510983, 48.8513256904918], [2.3492756801681463, 48.851324247361454], [2.349210451374522, 48.8511982175144], [2.349152837238628, 48.85108142585085], [2.349087607683437, 48.850955395901885], [2.349029995454042, 48.85083860416107], [2.348964766499794, 48.85071257411763], [2.348907154814169, 48.850595782292224], [2.34884192646106, 48.8504697521543], [2.348784315330437, 48.85035295934493], [2.348756421699648, 48.85026554565084], [2.348698810975178, 48.850148753678184], [2.348699635572444, 48.85014187449062], [2.348776180063274, 48.85004312086943], [2.348848578197933, 48.84993252437902], [2.348925122099005, 48.84983377064396], [2.348997519615484, 48.84972317494189], [2.348998107584423, 48.849717125468246], [2.348946796010206, 48.84959920586189], [2.348898285774721, 48.84948526852934], [2.348849777102796, 48.849371332072174], [2.34879846485337, 48.849253411458896], [2.348749956615513, 48.849139474937516], [2.348698646182822, 48.84902155426425], [2.348650137027604, 48.84890761677196], [2.348598827037832, 48.84878969693065], [2.3485503196793323, 48.848675759381635], [2.34849901014381, 48.84855783947289], [2.34847716708255, 48.84853974595716], [2.348441489771945, 48.84854246378939], [2.348424908322237, 48.84854365147539], [2.348420272178868, 48.84856513527337], [2.34823928600438, 48.84862073438373], [2.348056934007047, 48.84867437147229], [2.347875948416946, 48.848729970934244], [2.347693595663312, 48.84878360746378], [2.347512609317453, 48.848839205471386], [2.347330255807726, 48.848892841441874], [2.347149268683594, 48.848948439793716], [2.346966914417571, 48.84900207520517], [2.346785925175036, 48.849057672095235], [2.34660357151559, 48.84911130695509], [2.346422581494772, 48.84916690418931], [2.3462402270791403, 48.849220538490144], [2.3460592363025983, 48.84927613426999], [2.345876879768014, 48.8493297680043], [2.345866373193013, 48.84933507433094], [2.345881474687944, 48.84936908785912], [2.3459510088413, 48.84948568297869], [2.346024944629232, 48.84960806158803], [2.346094479422457, 48.84972465659923], [2.346168415875185, 48.84984703599292], [2.346237951308289, 48.84996363089567], [2.34631188844819, 48.85008600927517], [2.346381424509899, 48.850202604968814], [2.3464553609631, 48.850324983225896], [2.346524897676082, 48.85044157791184], [2.346598836156707, 48.85056395696073], [2.346590976912907, 48.850575704605305], [2.346543650939336, 48.850588708954106], [2.346338414263419, 48.85063966601473], [2.346236729049653, 48.85066760655364], [2.34608771753076, 48.85070855117255], [2.345882479937012, 48.85075950744556], [2.345733469239697, 48.85080045162732], [2.345731257622082, 48.85081628439573], [2.345909125447125, 48.85089290266237], [2.346077006184804, 48.85096450612365], [2.34625487638674, 48.85104112387356], [2.34642275806574, 48.85111272773945], [2.34660062793062, 48.85118934405842], [2.346768510562123, 48.851260947429665], [2.346946381441278, 48.851337563224455], [2.347114265025491, 48.85140916610103], [2.347292136907658, 48.85148578227089], [2.347460021455642, 48.85155738375351], [2.347637894352093, 48.85163399939917], [2.347805779852683, 48.851705600387135], [2.347810644632812, 48.8517092279238], [2.347886549803107, 48.85181248564234], [2.347984999485734, 48.85194510060081], [2.348060905356359, 48.85204835728753], [2.348159355928443, 48.85218097207443], [2.348235262488148, 48.85228422862868], [2.348333713949498, 48.852416843243965], [2.348409621198294, 48.852520099665725], [2.348468766917066, 48.85259385136217]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 99, "zemmour_eric": 111.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "5-4", "circ_bv": "02", "num_bureau": 4, "roussel_fabien": 16.0, "nb_emargement": 1155.0, "nb_procuration": 83.0, "nb_vote_blanc": 11.0, "jadot_yannick": 81.0, "le_pen_marine": 55.0, "nb_exprime": 1138.0, "nb_vote_nul": 6.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1473.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1155, "quartier_bv": "20", "geo_point_2d": [48.85048709628357, 2.347842901261561], "melenchon_jean_luc": 257.0, "poutou_philippe": 8.0, "macron_emmanuel": 466.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.353354576214497, 48.89029098387023], [2.353388150141031, 48.89029101768512], [2.353498321300822, 48.89024063170158], [2.353629629612358, 48.89018225231274], [2.353789921088413, 48.89010894393836], [2.353921227388344, 48.89005056331617], [2.353936623934373, 48.890050630200555], [2.354071143522124, 48.890112152000036], [2.354199066856014, 48.89016882129084], [2.354333588422834, 48.89023034279621], [2.354461512332724, 48.89028701180056], [2.354470046113521, 48.89028851920691], [2.354681136200789, 48.89027901350671], [2.354888175279742, 48.890269540468886], [2.355099265213834, 48.89026003403143], [2.355306304141144, 48.890250560270495], [2.3555173939219483, 48.8902410530958], [2.355724432697706, 48.89023157861172], [2.35593552368895, 48.890222070707146], [2.356142560949502, 48.89021259549264], [2.356349599487227, 48.89020312082668], [2.356560688885195, 48.89019361181248], [2.35676772728256, 48.89018413552413], [2.356978816527098, 48.89017462577268], [2.357042540141442, 48.890162286594354], [2.357044070368381, 48.89015643032317], [2.357027122695615, 48.8901222729516], [2.356968724906937, 48.88999722589648], [2.356906865604489, 48.88987254781503], [2.356848468395895, 48.889747499773534], [2.356786609666959, 48.88962282250087], [2.356728213027233, 48.88949777437226], [2.356666354894018, 48.889373096109836], [2.356607958823153, 48.88924804789416], [2.35654610126333, 48.88912337044049], [2.356487705761317, 48.88899832213775], [2.356425850161011, 48.88887364370167], [2.356367455216724, 48.88874859621109], [2.356305598837296, 48.888623917677215], [2.356291127055679, 48.88861317388769], [2.356256323174275, 48.888618289197616], [2.356073924027641, 48.88860123930488], [2.355863809993651, 48.888581364552856], [2.355681412468586, 48.88856431406896], [2.355471298722383, 48.888544439526804], [2.35528890145519, 48.88852738844445], [2.355078786644006, 48.888507513205546], [2.354896389634693, 48.88849046152472], [2.3546862764861363, 48.888470585603734], [2.354503879734712, 48.88845353332442], [2.35429376688489, 48.888433656714014], [2.354111369027771, 48.888416603828894], [2.353901256476796, 48.88839672652902], [2.353718860241178, 48.88837967305284], [2.35368425806284, 48.88837633055246], [2.353674644151187, 48.88838243364002], [2.353688449519829, 48.88851175286472], [2.353705443641754, 48.88860721531032], [2.3537055127031072, 48.88860879309907], [2.3536930307824, 48.88874838818583], [2.353680660702985, 48.88888391171521], [2.353668178649704, 48.889023506764396], [2.353655807087796, 48.88915902935063], [2.353643436813946, 48.88929455282545], [2.353630954573598, 48.88943414691929], [2.353618584169805, 48.88956967035759], [2.353606101785714, 48.88970926531312], [2.353600936482613, 48.88971579530048], [2.353513460493081, 48.8897613207752], [2.353425694472735, 48.889802294039384], [2.353420031682827, 48.8898085776155], [2.353397009259459, 48.88993696848808], [2.3533787011915033, 48.890043302803335], [2.353360393048771, 48.89014963710544], [2.353337368974973, 48.89027802702005], [2.353354576214497, 48.89029098387023]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 10, "zemmour_eric": 29.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-54", "circ_bv": "17", "num_bureau": 54, "roussel_fabien": 20.0, "nb_emargement": 985.0, "nb_procuration": 37.0, "nb_vote_blanc": 8.0, "jadot_yannick": 81.0, "le_pen_marine": 65.0, "nb_exprime": 966.0, "nb_vote_nul": 11.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1338.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 985, "quartier_bv": "71", "geo_point_2d": [48.889411115536824, 2.355105710704763], "melenchon_jean_luc": 526.0, "poutou_philippe": 7.0, "macron_emmanuel": 174.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3025345268709883, 48.83889565117897], [2.302529429204756, 48.838909953820455], [2.302526281657536, 48.839028587582526], [2.302523864139417, 48.839147341607365], [2.3025207165773303, 48.83926597444477], [2.302518299035521, 48.83938472844428], [2.302515151434298, 48.83950336215566], [2.302512733868799, 48.83962211612981], [2.302509586252607, 48.83974074891651], [2.302507168663419, 48.83985950286531], [2.302487375088198, 48.839914723856204], [2.3025144291972452, 48.83992030390429], [2.302633742360547, 48.83995379234189], [2.302801916257805, 48.84000206328114], [2.302979282154836, 48.84005184541875], [2.303147458038875, 48.84010011677529], [2.303324823237176, 48.84014989838824], [2.303492999769623, 48.84019816835545], [2.303670365631609, 48.840247949451715], [2.303838542800433, 48.840296218928884], [2.304015909326103, 48.84034599950846], [2.304184087131303, 48.840394268495565], [2.304239583298501, 48.840414100401034], [2.304255412025213, 48.84041049875659], [2.3042812925753138, 48.84040461001733], [2.304300720435715, 48.840363593068496], [2.30436957641712, 48.84023976276648], [2.3044376678007152, 48.840116129425816], [2.304506524492373, 48.83999229902549], [2.304574615227844, 48.839868665579495], [2.304643469904715, 48.83974483506497], [2.304711561354489, 48.839621201521545], [2.304780415379206, 48.839497370900744], [2.304848506168772, 48.83937373815129], [2.304917359553237, 48.83924990652496], [2.304985448332406, 48.83912627366226], [2.3050543024270302, 48.83900244193758], [2.305122390558012, 48.83887880896951], [2.305191242638009, 48.8387549771307], [2.305259331483406, 48.83863134406525], [2.305259489050405, 48.83863107337057], [2.305336676056328, 48.838504991042804], [2.305409264646106, 48.8383771506633], [2.305486450901735, 48.83825106910951], [2.305559038770657, 48.83812322861011], [2.3056362229376, 48.83799714602382], [2.3057088100734973, 48.83786930630376], [2.305785994864522, 48.83774322360012], [2.305858581291462, 48.83761538286082], [2.305935765332231, 48.837489300931196], [2.306008349675991, 48.837361460064095], [2.306078943620091, 48.83723051375635], [2.306151528614678, 48.83710267278071], [2.306224113241154, 48.83697483264565], [2.30629470611971, 48.83684388616533], [2.306367290046642, 48.83671604501451], [2.306437882203081, 48.83658509931866], [2.306426709249403, 48.8365595886081], [2.306393270230617, 48.83653767308113], [2.306334745769418, 48.83647250697728], [2.306283287127877, 48.83641623074004], [2.306269304945828, 48.83641201613373], [2.306159125499013, 48.83642276131416], [2.306010004085755, 48.83643975863564], [2.306009199531094, 48.83644042759719], [2.306013190527141, 48.836460651544996], [2.306031591441544, 48.83652408307737], [2.306050146358943, 48.83659631495003], [2.306039859845715, 48.83660656926678], [2.305893954141633, 48.836629427419595], [2.3057542705824092, 48.83665115142594], [2.305608364616319, 48.83667401012875], [2.305468680818603, 48.83669573380081], [2.305467818231508, 48.83669584930803], [2.305278394611331, 48.83671710226221], [2.305086864451503, 48.83673856572291], [2.304897440520671, 48.836759818073], [2.304705910047129, 48.83678128092286], [2.30451648581775, 48.83680253176958], [2.304324955030404, 48.83682399400864], [2.304135530478492, 48.83684524515058], [2.303943999377244, 48.83686670677879], [2.303754573152564, 48.83688795730872], [2.303563043111879, 48.83690941743481], [2.30337361657668, 48.8369306673606], [2.3031820862102013, 48.83695212777519], [2.302992659364488, 48.836973377096875], [2.302801128684234, 48.83699483690067], [2.302790003355924, 48.83700530999282], [2.302825744209271, 48.837135259880036], [2.302861279834512, 48.837264167072064], [2.302897021031021, 48.83739411780721], [2.3029325570091093, 48.837523024948204], [2.302968298572739, 48.83765297473266], [2.303003834891554, 48.837781882721934], [2.303039576810485, 48.837911832455], [2.303075113494081, 48.83804073949396], [2.303110855756094, 48.83817069007494], [2.303146392792453, 48.83829959706286], [2.3031821354218, 48.83842954669311], [2.303217672810825, 48.83855845363003], [2.303253415783367, 48.8386884041082], [2.303288953525265, 48.83881731099404], [2.30328678625072, 48.83882400677369], [2.303218031090908, 48.83888785640372], [2.303139275833583, 48.838963682206995], [2.303125398075777, 48.8389674200847], [2.302982437450954, 48.83894877241685], [2.302839121569426, 48.838930207946994], [2.3026961611490853, 48.838911559936456], [2.302552845459806, 48.83889299602223], [2.3025345268709883, 48.83889565117897]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 135, "zemmour_eric": 87.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "15-61", "circ_bv": "13", "num_bureau": 61, "roussel_fabien": 21.0, "nb_emargement": 1202.0, "nb_procuration": 65.0, "nb_vote_blanc": 16.0, "jadot_yannick": 83.0, "le_pen_marine": 73.0, "nb_exprime": 1177.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1523.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1202, "quartier_bv": "57", "geo_point_2d": [48.83831012970245, 2.3042269479050224], "melenchon_jean_luc": 233.0, "poutou_philippe": 6.0, "macron_emmanuel": 482.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.365222162321841, 48.881157264457855], [2.3651823441663042, 48.88118437497451], [2.365059492679839, 48.88128573448984], [2.364936270628099, 48.881386804121156], [2.36481341819605, 48.8814881624661], [2.364690195187788, 48.88158923182551], [2.364567341799387, 48.881690589899314], [2.364444116471069, 48.881791658979665], [2.36432126348973, 48.88189301678956], [2.364198037204868, 48.881994085598045], [2.364193681827134, 48.88199643579857], [2.364052317522469, 48.88204471461928], [2.363893955177105, 48.88209471241128], [2.3637525903278123, 48.882142990873795], [2.363594227395846, 48.88219298826491], [2.363592065076587, 48.88220835799959], [2.363758182957847, 48.88228848979991], [2.363916009265674, 48.88236304013962], [2.364082128127812, 48.882443172378515], [2.364239954004713, 48.88251772227347], [2.36440607523314, 48.882597853159595], [2.364563902042554, 48.88267240261704], [2.3647300228994013, 48.88275253303515], [2.36488785200488, 48.882827082062335], [2.365053973853496, 48.88290721201977], [2.3652118025279423, 48.88298176060216], [2.365369633017811, 48.88305630897868], [2.365535756338953, 48.88313643825091], [2.365693586397788, 48.88321098618268], [2.365859710710906, 48.88329111499414], [2.366017543065831, 48.8833656624956], [2.366183668370728, 48.883445790846295], [2.366341501658185, 48.88352033791024], [2.366507627955067, 48.8836004658002], [2.366665460811487, 48.88367501241939], [2.366831588100152, 48.88375513984853], [2.366989423252683, 48.88382968603737], [2.367155551533339, 48.883909813005765], [2.367313386254728, 48.883984358749835], [2.367479516890859, 48.88406448526471], [2.36747970667516, 48.8840645779987], [2.367609091793928, 48.88412795267865], [2.367608553717039, 48.88415485591165], [2.367662590549136, 48.8841755632405], [2.367756572857933, 48.884168528598465], [2.367970121312169, 48.88415868968631], [2.368146937346182, 48.88414545404334], [2.368148576032671, 48.88414526394001], [2.368267321901862, 48.88411194184277], [2.3684127624081412, 48.88408896241845], [2.368417279839941, 48.88408764085501], [2.368512720453001, 48.88403544459859], [2.368642328924699, 48.88397701714112], [2.368645321246917, 48.88397517760805], [2.368658869677618, 48.88396151722182], [2.368627494795779, 48.883917102167466], [2.368497397626462, 48.88381163269958], [2.368368831532477, 48.883706567758246], [2.3682387354129872, 48.88360109798915], [2.368110170360624, 48.883496032749974], [2.36798007529095, 48.88339056267961], [2.367851509916638, 48.88328549713538], [2.367721417249414, 48.88318002767024], [2.367592852927629, 48.883074960928845], [2.367462761310191, 48.882969491162484], [2.367334198019084, 48.88286442502256], [2.367204107462348, 48.88275895405569], [2.367075545212831, 48.88265388761788], [2.366945455705864, 48.88254841634982], [2.366816894497926, 48.8824433496142], [2.366686806040721, 48.88233787804488], [2.3665582458743533, 48.882232811011384], [2.3664281570924253, 48.88212734003292], [2.366299599342089, 48.88202227180959], [2.366169511609904, 48.88191680052994], [2.36604095489017, 48.881811732908005], [2.365910868218663, 48.881706260427876], [2.3657823125404622, 48.88160119250816], [2.365750154844014, 48.88157289112162], [2.365743909358724, 48.881572241994064], [2.365615352995726, 48.88146717297575], [2.365483261073673, 48.881359556153086], [2.365354707113998, 48.88125448774112], [2.365253830719225, 48.88117230188587], [2.365222162321841, 48.881157264457855]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 41, "zemmour_eric": 43.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "10-23", "circ_bv": "05", "num_bureau": 23, "roussel_fabien": 19.0, "nb_emargement": 998.0, "nb_procuration": 58.0, "nb_vote_blanc": 6.0, "jadot_yannick": 112.0, "le_pen_marine": 29.0, "nb_exprime": 991.0, "nb_vote_nul": 1.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1260.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 998, "quartier_bv": "37", "geo_point_2d": [48.88272891981298, 2.3661027645073385], "melenchon_jean_luc": 369.0, "poutou_philippe": 11.0, "macron_emmanuel": 303.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376856073470287, 48.87635314588284], [2.376877585435294, 48.87634782858831], [2.377064210873697, 48.876347610963705], [2.3772507081439382, 48.87634739328081], [2.377437333579219, 48.8763471750745], [2.377623830846338, 48.8763469568103], [2.377810454915105, 48.87634673801524], [2.377996952179092, 48.87634651916978], [2.378010049965454, 48.87633996633653], [2.378067133912017, 48.87620643770252], [2.378123677525876, 48.876073718317365], [2.3781807609000643, 48.87594018869762], [2.378237303924605, 48.87580747012601], [2.378294386715686, 48.875673940419894], [2.37835092917239, 48.87554122086329], [2.378408010006383, 48.87540769196292], [2.378464551884525, 48.875274972320625], [2.378521633498693, 48.87514144334096], [2.378578174798279, 48.87500872361298], [2.378635255840098, 48.874875193647604], [2.378691796550408, 48.87474247473319], [2.378748877009258, 48.87460894468145], [2.378805417151654, 48.87447622478201], [2.378814935641056, 48.8744593675928], [2.378812899205145, 48.87445692702402], [2.378686060266257, 48.87441997611577], [2.3785249450577473, 48.8743725758255], [2.3783340494325023, 48.874316963522276], [2.378172934862981, 48.87426956275378], [2.377982040001862, 48.874213948984746], [2.377820927434661, 48.87416654774519], [2.377818711084322, 48.87416604788672], [2.377599231395827, 48.87413001362375], [2.377371461458681, 48.874092594027736], [2.3771519810258, 48.874056558935294], [2.376924211731184, 48.87401913848579], [2.376914662652091, 48.87400739473131], [2.376974571738035, 48.873896437257606], [2.377032702700617, 48.87378935741585], [2.377029683301329, 48.87378008394832], [2.376887465313046, 48.8736827596399], [2.376745264712436, 48.87358459616203], [2.376603046426042, 48.87348727149135], [2.376460848258449, 48.87338910766536], [2.376457637554061, 48.87338546122321], [2.376398514528182, 48.87325444292899], [2.376335762385136, 48.87311876870624], [2.37627663996853, 48.87298775032018], [2.37621388845346, 48.872852076900095], [2.376168133825924, 48.8728171717585], [2.376155423290847, 48.872821383656216], [2.376094511362238, 48.8728760227974], [2.375966587005281, 48.872990687674886], [2.375854042832546, 48.873091642190616], [2.375726116053369, 48.8732063067816], [2.375613570948773, 48.87330726105153], [2.3754856444738612, 48.87342192537024], [2.375373097073986, 48.87352287938725], [2.375260550601046, 48.87362383329637], [2.375156086351849, 48.8737174664248], [2.375132622571581, 48.87373849720492], [2.375108339691617, 48.873737001654334], [2.375112890980746, 48.873758678705585], [2.375118970063018, 48.87378551602246], [2.375148569539102, 48.87381126831001], [2.375192623829569, 48.873897464802326], [2.375273584652951, 48.87405439592008], [2.375317639355938, 48.874140592347345], [2.375329169223184, 48.8741466420857], [2.375482882223753, 48.87415693571024], [2.3756338446383882, 48.87416501231942], [2.375643930138144, 48.87416883583458], [2.375747700359434, 48.87426711583165], [2.37584817995529, 48.87436150963306], [2.375948659915239, 48.874455903342046], [2.376052432646775, 48.87455418305651], [2.3760543278523922, 48.87455679381008], [2.376109366269711, 48.87468068069123], [2.376172791840003, 48.874822048430595], [2.376227830819384, 48.87494593522753], [2.376291255660198, 48.87508730376235], [2.376346295201651, 48.875211190474985], [2.3764097220502602, 48.87535255892015], [2.376464762153796, 48.875476445548536], [2.376512493402178, 48.87558698932919], [2.376567533997894, 48.87571087588403], [2.376615267031739, 48.875821420506554], [2.376615308154541, 48.87582151605005], [2.376668311653331, 48.875945909937315], [2.376716043753093, 48.87605645448902], [2.376769049094836, 48.876180848312295], [2.376816781623814, 48.87629139280029], [2.376817038403503, 48.876291924743455], [2.376827608769605, 48.87631292613268], [2.37684233757852, 48.87634042886105], [2.376856073470287, 48.87635314588284]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 52, "zemmour_eric": 56.0, "hidalgo_anne": 47.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-11", "circ_bv": "16", "num_bureau": 11, "roussel_fabien": 34.0, "nb_emargement": 1293.0, "nb_procuration": 74.0, "nb_vote_blanc": 13.0, "jadot_yannick": 131.0, "le_pen_marine": 46.0, "nb_exprime": 1277.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1657.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "76", "geo_point_2d": [48.87474974030677, 2.3770367502903214], "melenchon_jean_luc": 552.0, "poutou_philippe": 4.0, "macron_emmanuel": 340.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.39719391370393, 48.84303002064479], [2.397165662133308, 48.843017066028295], [2.396970478877273, 48.84301405335429], [2.396781035850621, 48.8430129498642], [2.3965858526322372, 48.843009936562666], [2.396396409628696, 48.84300883246346], [2.396201226458391, 48.84300581763509], [2.396011783467552, 48.84300471382611], [2.395816600334923, 48.84300169837021], [2.395627157367205, 48.84300059395215], [2.395431974272263, 48.8429975778687], [2.395242532700523, 48.842996471949164], [2.395226708023487, 48.842995162527565], [2.395203044425696, 48.84300360388798], [2.395130505112444, 48.843104000334606], [2.3950512280830862, 48.84321949705665], [2.394978686814384, 48.84331989338488], [2.394899409120095, 48.843435389983995], [2.3948268672481072, 48.843535787100045], [2.394790104116914, 48.84358934674704], [2.394772631322506, 48.84360850370944], [2.394775812359232, 48.84361923295293], [2.394733298452464, 48.843681169782236], [2.394649147926031, 48.8438073825584], [2.394569868759932, 48.843922878888655], [2.394485717447454, 48.84404909152254], [2.394406437551607, 48.84416458771946], [2.3943222854530752, 48.84429080021106], [2.394243003464715, 48.84440629626772], [2.394158850580115, 48.84453250861701], [2.394079569224535, 48.84464800454724], [2.394000287517464, 48.844763500412945], [2.393916133468299, 48.844889712551065], [2.393836851031343, 48.845005208283446], [2.39375269619609, 48.84513142027924], [2.393673413029343, 48.84524691587828], [2.393589257397524, 48.845373128631024], [2.393509973511237, 48.84548862319743], [2.393444984696413, 48.84558608883328], [2.3934472468027073, 48.845597785639036], [2.393475031068237, 48.84560550627705], [2.393658295170515, 48.845690752590954], [2.393839556123082, 48.84577523570414], [2.394022821418461, 48.845860481446636], [2.394204084914761, 48.84594496400158], [2.39438735140325, 48.84603020917274], [2.394568614718309, 48.84611469115559], [2.39461052185924, 48.84613285886096], [2.394626646238163, 48.84612428505257], [2.39465801291469, 48.84608981227219], [2.394755672651365, 48.84597283880604], [2.3948634173139, 48.84585441973305], [2.394961076148549, 48.845737446074494], [2.395068821220292, 48.84561902679841], [2.395108570116321, 48.84557141620616], [2.395142489428772, 48.8455536401487], [2.395140666452353, 48.845528143176516], [2.395198574025037, 48.84545878079207], [2.395290971727623, 48.84534661157554], [2.395388628650978, 48.84522963751473], [2.395481024175695, 48.84511746812147], [2.395578680243213, 48.845000493881486], [2.395671076315213, 48.84488832432529], [2.39576873016414, 48.84477134989924], [2.395861125420864, 48.844659180173224], [2.395958779776433, 48.84454220557487], [2.396051172855437, 48.84443003567215], [2.396148826355099, 48.84431306089464], [2.3962412199812952, 48.844200890829], [2.396338872625056, 48.844083915872325], [2.396431264073566, 48.84397174562999], [2.39652891586144, 48.84385477049412], [2.396621307857148, 48.843742600088866], [2.396718957426613, 48.84362562476699], [2.396811348607094, 48.84351345419192], [2.396908998683323, 48.84339647869776], [2.397001387686061, 48.84328430794602], [2.397099036906333, 48.84316733227272], [2.397191426456382, 48.84305516135802], [2.39719391370393, 48.84303002064479]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 117, "zemmour_eric": 93.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "12-7", "circ_bv": "08", "num_bureau": 7, "roussel_fabien": 22.0, "nb_emargement": 1251.0, "nb_procuration": 71.0, "nb_vote_blanc": 12.0, "jadot_yannick": 101.0, "le_pen_marine": 46.0, "nb_exprime": 1238.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1500.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1251, "quartier_bv": "46", "geo_point_2d": [48.8443842138093, 2.395194477585367], "melenchon_jean_luc": 302.0, "poutou_philippe": 4.0, "macron_emmanuel": 506.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.306009199531094, 48.83644042759719], [2.306010004085755, 48.83643975863564], [2.306159125499013, 48.83642276131416], [2.306269304945828, 48.83641201613373], [2.306283287127877, 48.83641623074004], [2.306334745769418, 48.83647250697728], [2.306393270230617, 48.83653767308113], [2.306426709249403, 48.8365595886081], [2.3064489753204382, 48.836555994315894], [2.306499905982375, 48.836546402821355], [2.306533202404716, 48.83654801147569], [2.306540389712205, 48.83654612489134], [2.306585452713666, 48.8365376388465], [2.306660070516814, 48.83650743968971], [2.306663289470884, 48.8365056281268], [2.30672818298709, 48.836457040664286], [2.30679882625648, 48.83640267834382], [2.306802079641582, 48.83639622801657], [2.306790686944992, 48.83628273770289], [2.3067537941591922, 48.83620469313403], [2.306755357940555, 48.83619713218295], [2.306865747509961, 48.83608437549621], [2.306970576752187, 48.83598042371367], [2.307080966759426, 48.83586766681431], [2.307185795136539, 48.835763714823095], [2.307296184219299, 48.83565095770326], [2.307401011731513, 48.835547005503265], [2.307511398527502, 48.83543424815508], [2.307616226536926, 48.83533029575425], [2.307721052777999, 48.83522634234466], [2.307831439552997, 48.835113585575996], [2.307936264929088, 48.83500963195766], [2.3080466494292953, 48.83489687406141], [2.308151475290662, 48.834792921141535], [2.30826185886644, 48.83468016302478], [2.308366683862943, 48.83457620989619], [2.308432289271757, 48.83450919201165], [2.3084432308416423, 48.83448235592069], [2.308442522290393, 48.83447949001831], [2.308487299498446, 48.83443374956065], [2.308506555752849, 48.834417471609534], [2.3084439190671793, 48.834382524969115], [2.308363736411745, 48.83426114508452], [2.308284279795741, 48.83413949232261], [2.308204097885854, 48.83401811230461], [2.3081246433869422, 48.83389645851889], [2.308107301054734, 48.83389161130492], [2.307940250823331, 48.83393344874364], [2.307739272398203, 48.83398524081565], [2.307572221571383, 48.834027077736835], [2.307433551624543, 48.83406281192717], [2.307428109519348, 48.834061750632564], [2.307404622378229, 48.834071407910685], [2.307342310429789, 48.834087465138694], [2.307208313617287, 48.83412079692202], [2.307007333754591, 48.834172586856184], [2.306873336509092, 48.83420591826175], [2.3068726118513982, 48.83420611462264], [2.306703560399127, 48.83425475958626], [2.30653917407024, 48.834302939400786], [2.3063701219929102, 48.834351583888896], [2.306205735050503, 48.83439976324102], [2.306041347792252, 48.8344479432644], [2.305872294780113, 48.83449658704264], [2.305707905558037, 48.83454476569642], [2.305538853282921, 48.83459340900708], [2.305528144442855, 48.8345934592515], [2.305403934042194, 48.83455959608351], [2.305255413433361, 48.83451850541735], [2.305243816613529, 48.834506985434174], [2.305214596959646, 48.83451350794399], [2.30502211976236, 48.83456553100449], [2.304831824920649, 48.83461763838889], [2.304641531048782, 48.83466974637531], [2.304449052714686, 48.83472176760707], [2.30425875671778, 48.83477387497176], [2.304066277617201, 48.834825895582746], [2.303875982219828, 48.83487800234154], [2.303683502352774, 48.8349300223317], [2.303666268609064, 48.83493724380116], [2.30366558980181, 48.834948079996266], [2.30373140246164, 48.83502616627756], [2.303796791093073, 48.835104393947645], [2.303795844029278, 48.83511746622086], [2.303812653550848, 48.835124975796084], [2.303813313103372, 48.83512588170633], [2.303902064196218, 48.835267452329944], [2.303991841071919, 48.83540947402562], [2.304010054401209, 48.83541419648808], [2.304121046044882, 48.83538085946871], [2.304230126796718, 48.83534971739253], [2.304246004694756, 48.83535221737418], [2.30436397313239, 48.83544574938217], [2.30448189808148, 48.83553899860763], [2.304599867365091, 48.8356325303674], [2.304717793146728, 48.835725780244005], [2.304835764638637, 48.83581931176344], [2.30495368991451, 48.83591256048471], [2.305071662252516, 48.83600609175582], [2.305189588360852, 48.83609934112827], [2.3053075615448613, 48.83619287215112], [2.305425488509847, 48.83628612037612], [2.305543462539765, 48.83637965115068], [2.305661390337338, 48.836472900026834], [2.305674019285529, 48.83647601411206], [2.305829305251387, 48.83645946939391], [2.3059784267679833, 48.836442473197344], [2.306009199531094, 48.83644042759719]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 104, "zemmour_eric": 100.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-59", "circ_bv": "13", "num_bureau": 59, "roussel_fabien": 19.0, "nb_emargement": 1142.0, "nb_procuration": 57.0, "nb_vote_blanc": 11.0, "jadot_yannick": 78.0, "le_pen_marine": 94.0, "nb_exprime": 1126.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1548.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1142, "quartier_bv": "57", "geo_point_2d": [48.835176050380674, 2.306220876335173], "melenchon_jean_luc": 212.0, "poutou_philippe": 2.0, "macron_emmanuel": 462.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332253535343118, 48.889206503339764], [2.332258873140644, 48.889220227151114], [2.332284515843369, 48.88925568849621], [2.332375341287047, 48.889378126509975], [2.332462903152142, 48.889499216141395], [2.332553729440167, 48.889621653992656], [2.332641293481829, 48.88974274437362], [2.332678754624298, 48.889794548382945], [2.332769581946558, 48.88991698513832], [2.332819685491589, 48.88998627138683], [2.332830285818105, 48.88999653240128], [2.332847274180668, 48.889982635343735], [2.332948939738993, 48.88985740403935], [2.333040145765609, 48.889745804817416], [2.333141810386246, 48.8896205742215], [2.333233015596174, 48.889508973929345], [2.333234464960412, 48.889506125740105], [2.33325632365008, 48.889414442439495], [2.333278718389378, 48.8893205101994], [2.333300576923206, 48.88922882687521], [2.333322971491229, 48.88913489551021], [2.3333334060789053, 48.88912752516995], [2.333375251351538, 48.88912122093724], [2.333437424845871, 48.88911185433209], [2.333453104747278, 48.88911725124061], [2.333524069829566, 48.889233027134864], [2.3335950191853883, 48.88934877770446], [2.333665984898657, 48.88946455349022], [2.333736934885425, 48.88958030395126], [2.333807901229783, 48.88969607962849], [2.333878851835999, 48.88981183088031], [2.3339498188114582, 48.88992760644899], [2.334020770060141, 48.89004335669307], [2.334091736303069, 48.89015913214562], [2.334162689546358, 48.89027488228875], [2.334233656420393, 48.8903906576328], [2.334304608930919, 48.89050640765983], [2.334320010602067, 48.89051184516664], [2.33450308396756, 48.890486920837574], [2.334680587169183, 48.8904627548876], [2.334863658825728, 48.890437829998525], [2.335041163056294, 48.89041366352058], [2.335218665769932, 48.89038949587211], [2.335401736899847, 48.890364571058015], [2.335579239278769, 48.89034040287399], [2.3357623114272172, 48.89031547751508], [2.335773188277294, 48.89030646455819], [2.335767949357577, 48.890155230132095], [2.3357626637421403, 48.890002633846876], [2.335757426247189, 48.88985139938602], [2.335752140693535, 48.88969880305813], [2.335752140401136, 48.8896983983599], [2.335777464697759, 48.889690495270514], [2.335776316006505, 48.88968143718471], [2.335780648691393, 48.88955294036384], [2.335773757618297, 48.88939683940936], [2.33577464223734, 48.889370577701584], [2.335779859514377, 48.88921581913285], [2.335772968499734, 48.88905971723114], [2.335760179630629, 48.88905100376175], [2.335626449875253, 48.88904554667195], [2.335491967396899, 48.88904724479213], [2.335358237679287, 48.889041787402796], [2.335223755201899, 48.88904348522174], [2.335211582337863, 48.88903887154461], [2.335117281715549, 48.888927301828836], [2.33502915023367, 48.888821682955054], [2.334934849020285, 48.88871011396522], [2.334846719639739, 48.88860449494382], [2.334758589253015, 48.888498875839836], [2.334664290579228, 48.88838730571245], [2.334576160930125, 48.8882816864533], [2.3344818630404323, 48.888170116160204], [2.334393734128942, 48.888064496745855], [2.334299437023436, 48.88795292628703], [2.334300999494606, 48.88793183585522], [2.334268220524898, 48.88791923210089], [2.334084221852576, 48.88791387507771], [2.33394008944345, 48.88790737436281], [2.333929610214116, 48.88791015794424], [2.333797466972917, 48.88800169107856], [2.333652925467889, 48.88810397756987], [2.333640348775179, 48.888105371683864], [2.33362861405485, 48.88813709489806], [2.333484070478591, 48.88823938116534], [2.333345815143554, 48.888338859489394], [2.333201270451606, 48.888441145396506], [2.333063014029073, 48.888540624274995], [2.333060612901225, 48.88854303638568], [2.332984245668862, 48.88865590101009], [2.332907833615152, 48.888768831876526], [2.332905208150744, 48.88877140191467], [2.332752429413925, 48.88887615139802], [2.332595324337321, 48.88898386502831], [2.332442542978596, 48.8890886149877], [2.332285437983635, 48.88919632819811], [2.332253535343118, 48.889206503339764]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 71, "zemmour_eric": 77.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-35", "circ_bv": "18", "num_bureau": 35, "roussel_fabien": 23.0, "nb_emargement": 1286.0, "nb_procuration": 86.0, "nb_vote_blanc": 11.0, "jadot_yannick": 115.0, "le_pen_marine": 70.0, "nb_exprime": 1273.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1561.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1286, "quartier_bv": "69", "geo_point_2d": [48.88927701970847, 2.3342449960349176], "melenchon_jean_luc": 290.0, "poutou_philippe": 2.0, "macron_emmanuel": 557.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.373488102983312, 48.868018144207106], [2.3734851696817483, 48.86801981421582], [2.3734635620032742, 48.86810339098259], [2.373446009691103, 48.868168848385096], [2.373444977394842, 48.86817102927634], [2.373372531481146, 48.86827526571378], [2.3733008906625193, 48.86837759971445], [2.373228444173221, 48.86848183604519], [2.373156801424268, 48.86858416993334], [2.373153868996215, 48.86858689666183], [2.373029953724557, 48.8686656700964], [2.372906225443678, 48.86874360079835], [2.372782309435597, 48.86882237306606], [2.372658580412137, 48.868900303500986], [2.37265638446127, 48.86890209426725], [2.372606189705418, 48.86895573486787], [2.372492876040419, 48.869077177587656], [2.37239693178662, 48.8691797819777], [2.3722836185096, 48.86930122448196], [2.372187673430965, 48.869403828683446], [2.37207435781552, 48.86952527095783], [2.37197841192288, 48.86962787407152], [2.371978041461458, 48.869628297514986], [2.371887845041809, 48.86973681508847], [2.371795095076551, 48.86984949481233], [2.371704899255984, 48.86995801223336], [2.371612148490285, 48.870070692692224], [2.371618575468212, 48.87008319755938], [2.371782389509586, 48.87013139862489], [2.371943766902567, 48.87017909743694], [2.372107581546437, 48.87022729805316], [2.372268959534292, 48.8702749964227], [2.372432774769821, 48.87032319748897], [2.372594153363383, 48.87037089451663], [2.372757969201408, 48.87041909513366], [2.372919348389834, 48.87046679171874], [2.372937509365534, 48.870475690481896], [2.372955691680528, 48.87046515016325], [2.373040163503641, 48.87038034979766], [2.3731373796853212, 48.87028235627112], [2.373237379523224, 48.870181967008634], [2.373334593600437, 48.87008397329718], [2.373434592688243, 48.86998358295264], [2.373531806013407, 48.86988558996269], [2.373631804340201, 48.86978519943535], [2.373729016924143, 48.86968720626763], [2.373829014490137, 48.86958681555756], [2.373926227696067, 48.8694888222192], [2.373943294028383, 48.86948556504691], [2.374113057523485, 48.869536722312525], [2.374307768063095, 48.869595347449206], [2.374477532273914, 48.86964650419279], [2.374672245007973, 48.869705127838635], [2.374842008560501, 48.869756284952395], [2.3750367221152002, 48.86981490799944], [2.375206487757444, 48.869866063699014], [2.375401200758576, 48.869924687039536], [2.375501257170384, 48.869955154385536], [2.375518433097531, 48.86995185709132], [2.375636130888553, 48.86983124660193], [2.375754020311582, 48.86971041215133], [2.375871717011592, 48.869589801403976], [2.375989605341714, 48.86946896669498], [2.376107300950725, 48.869348355689596], [2.37622518819872, 48.8692275198229], [2.376342884069071, 48.869106909465906], [2.376460770224278, 48.8689860733408], [2.376479023798289, 48.868983143056106], [2.376627384289093, 48.869039374461174], [2.376775740350114, 48.86909543298172], [2.376924101491881, 48.86915166311399], [2.377072459555106, 48.8692077212682], [2.377220821326223, 48.869263951926264], [2.377369178665469, 48.86932000969985], [2.377385111843259, 48.86932051706962], [2.377396059382916, 48.86930872253256], [2.377492391436251, 48.86918312642107], [2.377588232212326, 48.86905810414165], [2.377684563338756, 48.86893250784705], [2.377780404555697, 48.86880748539247], [2.377876243938772, 48.86868246373922], [2.377972573676141, 48.86855686717015], [2.378068412147555, 48.86843184443541], [2.378164740958251, 48.868306247683215], [2.378260578507378, 48.868181224766275], [2.378356906391211, 48.86805562783096], [2.378365911250734, 48.868040829203174], [2.378354850161938, 48.86803282159338], [2.378150207927344, 48.86797938550692], [2.3779547309181153, 48.867927673967756], [2.377750089507025, 48.86787423719212], [2.377554613289454, 48.86782252499454], [2.3773591388232402, 48.86777081248247], [2.37715449865008, 48.86771737378164], [2.377138248198139, 48.86772064015549], [2.3770160817633452, 48.86783783853897], [2.376893431936809, 48.86795505855383], [2.376771263038408, 48.86807225665545], [2.376648612109045, 48.86818947639458], [2.376526442110082, 48.86830667422151], [2.3764037914518212, 48.86842389279272], [2.376281620352286, 48.86854109034495], [2.376158967217239, 48.868658309532606], [2.376142436697288, 48.868661482578034], [2.375952019032278, 48.86860832555237], [2.375767388533895, 48.86855609324423], [2.375576970273666, 48.86850293560975], [2.375392340524776, 48.868450702718114], [2.375207711146143, 48.868398469539194], [2.375017295407286, 48.86834531011458], [2.374993917508826, 48.868335179290874], [2.374975333047655, 48.868348996825375], [2.3749418577022112, 48.86838601150006], [2.374903659845859, 48.86842633805014], [2.374887675985652, 48.86843007856313], [2.374727767801433, 48.868393883965595], [2.374576572993439, 48.868359786975674], [2.374425379746446, 48.868325689800876], [2.374265472203884, 48.868289494582285], [2.374114278001472, 48.86825539700517], [2.373954372254022, 48.86821920137579], [2.373945344720116, 48.86820923713704], [2.373955579050007, 48.86816812968639], [2.37396616731892, 48.86812638195603], [2.373956993292668, 48.86811635759459], [2.373725850477422, 48.868066048907316], [2.373514436475425, 48.8680199548186], [2.373488102983312, 48.868018144207106]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 27, "zemmour_eric": 50.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "11-30", "circ_bv": "06", "num_bureau": 30, "roussel_fabien": 23.0, "nb_emargement": 1412.0, "nb_procuration": 114.0, "nb_vote_blanc": 14.0, "jadot_yannick": 142.0, "le_pen_marine": 56.0, "nb_exprime": 1395.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1835.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1412, "quartier_bv": "41", "geo_point_2d": [48.86904003427069, 2.374830017412351], "melenchon_jean_luc": 647.0, "poutou_philippe": 3.0, "macron_emmanuel": 383.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355867051103591, 48.872204098134695], [2.355799805635366, 48.87222097476447], [2.355626759424619, 48.87228932205109], [2.355457418895691, 48.872355309391125], [2.355288079300988, 48.87242129649504], [2.355115030378966, 48.87248964392144], [2.354945689913786, 48.872555630532936], [2.354772641470526, 48.8726239765641], [2.35460329877159, 48.87268996267587], [2.35443024942174, 48.87275830910303], [2.35440909166174, 48.872780628075915], [2.354412363364183, 48.872784726017066], [2.354401830444036, 48.872808676132315], [2.354394860605757, 48.872814205441735], [2.354203072812347, 48.87287780539003], [2.3540141733963162, 48.872940644489105], [2.353822383309338, 48.87300424381284], [2.353633482975499, 48.87306708230395], [2.353441693321335, 48.873130681017834], [2.353252792069692, 48.873193518901004], [2.353061000121958, 48.87325711699029], [2.352872097952411, 48.873319954265455], [2.352680306437602, 48.87338355174487], [2.352491401987054, 48.87344638840476], [2.352451057716208, 48.87345872941031], [2.352452498020965, 48.87346778453659], [2.352501893421862, 48.87356349481865], [2.352565517158731, 48.87368684941358], [2.352632591608903, 48.87381681026571], [2.352696215953549, 48.87394016566214], [2.352763289692718, 48.87407012640386], [2.352826914656326, 48.874193481702534], [2.352893989047911, 48.87432344234116], [2.35295761600489, 48.874446796650076], [2.353024691037632, 48.874576758084935], [2.3530883172503643, 48.87470011228875], [2.353089850137819, 48.87471489756868], [2.353114695240174, 48.87472501536654], [2.353260769826496, 48.87469125035959], [2.353438274911504, 48.874650224626244], [2.353630667204627, 48.874605752718686], [2.35380817170691, 48.87456472643367], [2.354000563368293, 48.87452025392817], [2.354178067287846, 48.87447922709152], [2.354370458317688, 48.8744347539881], [2.354547961654505, 48.87439372659974], [2.354740352052597, 48.874349252898405], [2.354917854806673, 48.87430822495836], [2.355110244573213, 48.874263750659125], [2.35528774538122, 48.87422272216006], [2.35529555495966, 48.87421809036911], [2.355355873165306, 48.874134229217226], [2.355415492033483, 48.8740517780211], [2.355423704693349, 48.87404707194818], [2.35563770761506, 48.87400264302974], [2.355850297605997, 48.87395910366363], [2.356064299802398, 48.87391467397899], [2.356276889077696, 48.87387113385185], [2.35649089054878, 48.87382670340103], [2.356703479108431, 48.8737831625128], [2.356761691754098, 48.87376469358949], [2.356761412719699, 48.87376167571446], [2.356759705559397, 48.873743256217], [2.356749179219065, 48.873734289022664], [2.356675983360157, 48.87360735896676], [2.356606986228617, 48.87348667572922], [2.3565337897119862, 48.87335974465131], [2.356464793226691, 48.873239062204014], [2.356395797072328, 48.87311837880447], [2.356322601587896, 48.87299144755508], [2.356253606079862, 48.87287076494583], [2.356180412653071, 48.87274383358834], [2.356111417813584, 48.87262314997075], [2.3560382237069373, 48.87249621938983], [2.355969229524874, 48.87237553566324], [2.355896036123785, 48.872248604067586], [2.355874148071884, 48.8722103183755], [2.355867051103591, 48.872204098134695]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 35, "zemmour_eric": 53.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "10-36", "circ_bv": "05", "num_bureau": 36, "roussel_fabien": 21.0, "nb_emargement": 1171.0, "nb_procuration": 103.0, "nb_vote_blanc": 5.0, "jadot_yannick": 143.0, "le_pen_marine": 25.0, "nb_exprime": 1163.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 5, "nb_inscrit": 1406.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1171, "quartier_bv": "38", "geo_point_2d": [48.87353608263789, 2.3546141288776656], "melenchon_jean_luc": 383.0, "poutou_philippe": 5.0, "macron_emmanuel": 440.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332253535343118, 48.889206503339764], [2.332246209471286, 48.889202963206436], [2.332184291186158, 48.88911733385572], [2.332101676097844, 48.88900407951834], [2.332014114553227, 48.88888298866132], [2.331947945883873, 48.88879227673392], [2.331920534751669, 48.888776909884996], [2.331893735858597, 48.888790780864724], [2.331743852410114, 48.88887390202673], [2.331588389860976, 48.88895931301626], [2.3314385054514988, 48.88904243288407], [2.331283041898336, 48.88912784346407], [2.331133157868483, 48.889210963843745], [2.33097769331129, 48.88929637401421], [2.330827806956732, 48.889379493092065], [2.330672341395503, 48.88946490285296], [2.330522454056835, 48.88954802243507], [2.330366987491564, 48.88963343178641], [2.330217100555629, 48.8897165500819], [2.330061631611017, 48.889801959915296], [2.329911743702526, 48.88988507781581], [2.329756275129159, 48.88997048634803], [2.329606384872799, 48.89005360474517], [2.329450915295373, 48.890139012867806], [2.329452658008917, 48.890153645667624], [2.3296354488126543, 48.8902255450192], [2.32981318857001, 48.89029585278581], [2.329995980370803, 48.8903677515777], [2.330173721088729, 48.89043805969932], [2.330356513886682, 48.89050995793157], [2.3305342555768602, 48.890580265508916], [2.330717049371771, 48.89065216318142], [2.330894792045755, 48.89072246931531], [2.330901255845041, 48.89073154815033], [2.330872099616366, 48.89085658840229], [2.330847703495616, 48.89097501281832], [2.330849155936596, 48.89100791375296], [2.330851835021289, 48.8910094656708], [2.330906071128152, 48.89100592592078], [2.330954652954514, 48.89100215940081], [2.330969570366682, 48.89101300227367], [2.330930681128503, 48.89113087716462], [2.330885823758535, 48.891268156691936], [2.330846932776526, 48.89138603152063], [2.330802074965931, 48.891523310984695], [2.330763183603643, 48.89164118575874], [2.330718325352418, 48.8917784651595], [2.330679434973728, 48.89189633988658], [2.330634574918082, 48.892033619216384], [2.330595684159211, 48.89215149388883], [2.330556791872121, 48.892269367629076], [2.330511932523956, 48.89240664777313], [2.330519272382751, 48.89244476528872], [2.330540824715524, 48.89244855142518], [2.330660475065847, 48.89242495831614], [2.330774593945179, 48.89240238728288], [2.330793327741577, 48.8924047483815], [2.330821977809542, 48.89239249961518], [2.330899001811785, 48.89237726559231], [2.33108431323679, 48.892340567954435], [2.331275455529309, 48.892302762249514], [2.331460766412271, 48.89226606492587], [2.331651908169484, 48.89222825771822], [2.331837218521952, 48.892191559809525], [2.3320283597323, 48.89215375199839], [2.332213669554266, 48.8921170535047], [2.332404810217743, 48.89207924509016], [2.332590119509201, 48.89204254601138], [2.332781259625801, 48.89200473699337], [2.332966568386745, 48.89196803732955], [2.333157706592677, 48.89193022770051], [2.333343016186887, 48.89189352745929], [2.333534153845929, 48.89185571722681], [2.333651784587246, 48.89183242105708], [2.333661935534969, 48.89182806995526], [2.333644120888358, 48.89179204731657], [2.333622115866651, 48.891653774260114], [2.333600071850676, 48.891515253650276], [2.333578067062822, 48.891376980550845], [2.333556023292728, 48.89123845899868], [2.333534018738826, 48.89110018585629], [2.3335119751915903, 48.89096166516033], [2.333489970871637, 48.890823391974926], [2.333467926195012, 48.89068487122832], [2.333460638098487, 48.89067782491712], [2.333354162304154, 48.89064143724279], [2.333250144432915, 48.8906058887385], [2.333244110354536, 48.89060177580032], [2.33317325169294, 48.8905037900389], [2.333104038911581, 48.890408080591335], [2.333034826373043, 48.890312371994696], [2.332963968499222, 48.89021438608365], [2.33289475785087, 48.89011867649744], [2.332823899128964, 48.89002069137788], [2.332830285818105, 48.88999653240128], [2.332819685491589, 48.88998627138683], [2.332769581946558, 48.88991698513832], [2.332678754624298, 48.889794548382945], [2.332641293481829, 48.88974274437362], [2.332553729440167, 48.889621653992656], [2.332462903152142, 48.889499216141395], [2.332375341287047, 48.889378126509975], [2.332284515843369, 48.88925568849621], [2.332258873140644, 48.889220227151114], [2.332253535343118, 48.889206503339764]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 67, "zemmour_eric": 84.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-34", "circ_bv": "18", "num_bureau": 34, "roussel_fabien": 23.0, "nb_emargement": 1339.0, "nb_procuration": 82.0, "nb_vote_blanc": 10.0, "jadot_yannick": 127.0, "le_pen_marine": 93.0, "nb_exprime": 1326.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 0, "nb_inscrit": 1703.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1339, "quartier_bv": "69", "geo_point_2d": [48.89071228409218, 2.3317843078138907], "melenchon_jean_luc": 401.0, "poutou_philippe": 5.0, "macron_emmanuel": 462.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.276330318538863, 48.86280280797065], [2.276343657500939, 48.86278988217686], [2.276513581808198, 48.862702154138574], [2.276682831214234, 48.86261616382466], [2.276852754383758, 48.862528435291004], [2.277022002653248, 48.86244244538327], [2.277191924697421, 48.86235471545503], [2.277361171842752, 48.86226872505413], [2.277531092736723, 48.86218099552986], [2.277700338770374, 48.86209500373657], [2.27770077406173, 48.862094773431075], [2.277850766388975, 48.862008456563345], [2.278004815728637, 48.8619233475301], [2.278154807058617, 48.861837030268], [2.278308854031731, 48.86175192082203], [2.278331536306712, 48.86173642323023], [2.278312880591444, 48.86171511744472], [2.278190599703153, 48.86160812754724], [2.278067635374893, 48.861499540631755], [2.277945355496202, 48.86139255046287], [2.277822393563322, 48.86128396238323], [2.27770011469422, 48.861176971942974], [2.277577153768699, 48.86106838448953], [2.277454875909174, 48.860961393777885], [2.277331916016141, 48.860852805152035], [2.277209639166185, 48.86074581416903], [2.277086678917625, 48.860637226161145], [2.277084168433821, 48.86063337704395], [2.277049815175713, 48.86050472537886], [2.277016934675983, 48.860379376924925], [2.276984054334568, 48.86025402844776], [2.276949701586278, 48.86012537581065], [2.276916821566812, 48.860000027286304], [2.276882467776596, 48.859871375491444], [2.276849588079282, 48.85974602691993], [2.276815235985491, 48.85961737508457], [2.276782356610116, 48.8594920264659], [2.276748004862289, 48.85936337368249], [2.276731867939451, 48.85935612177245], [2.27654162531641, 48.85938163232239], [2.276353196437402, 48.85940686574442], [2.276162954806595, 48.85943237569946], [2.275974525560679, 48.859457608524075], [2.275784282196263, 48.85948311786773], [2.275595853946271, 48.85950835010321], [2.275405610211283, 48.859533858843726], [2.275217180243981, 48.85955908957426], [2.2752133984679253, 48.85955924204397], [2.275185508149231, 48.85955092854779], [2.27517065164807, 48.85955667898351], [2.275000120855336, 48.85954780986632], [2.274828163450108, 48.859538715115704], [2.274657631399128, 48.85952984640132], [2.274485674112974, 48.859520751158485], [2.274315143541917, 48.85951188196417], [2.274143186374944, 48.85950278622901], [2.273972654570597, 48.85949391563897], [2.273800698873004, 48.85948482031913], [2.27378607568374, 48.859494846641816], [2.273808317067957, 48.859618281596006], [2.273830805024645, 48.85973195461491], [2.273853046603618, 48.85985539043371], [2.273875534760135, 48.859969063419896], [2.27389802301478, 48.86008273639025], [2.273920264915285, 48.86020617125817], [2.273920281335774, 48.86020841615038], [2.27389283512012, 48.86035805713915], [2.273867348390122, 48.86049902401407], [2.273841861522308, 48.86063999086571], [2.273814414854067, 48.8607896317782], [2.273813698893929, 48.86079161321067], [2.273741052039047, 48.86092069933136], [2.273670928345289, 48.861048478656706], [2.273600805670431, 48.86117625793448], [2.27352815775183, 48.86130534388113], [2.273458033018112, 48.861433123037415], [2.273385384387487, 48.86156220886749], [2.273383886439131, 48.86156415856755], [2.273288808897413, 48.861658589104316], [2.273158335284805, 48.86178687304509], [2.273063255564741, 48.86188130337539], [2.27293278085165, 48.8620095861452], [2.27283770167931, 48.862104016285656], [2.272849161114399, 48.86212482053411], [2.272862710234335, 48.86213106883366], [2.27303527649321, 48.862092921545425], [2.273190371297143, 48.86205842720374], [2.273362937075388, 48.862020279440564], [2.273518030083136, 48.861985784663716], [2.27369059538085, 48.86194763642556], [2.2738456893183923, 48.861913141230126], [2.273846594798686, 48.861912917388935], [2.274038554504663, 48.861860221451956], [2.27423343773525, 48.86180878944237], [2.274425396666391, 48.86175609287993], [2.27462027912558, 48.8617046602356], [2.274812237269162, 48.86165196394702], [2.275007118956953, 48.861600530667936], [2.27519907497523, 48.86154783284636], [2.275393957254495, 48.86149639894073], [2.275411960172171, 48.861501924758954], [2.275470397319495, 48.861618493185816], [2.275527090453298, 48.86173189157976], [2.275585528116162, 48.861848459926215], [2.275642221763204, 48.861961857342834], [2.275700659941715, 48.86207842560884], [2.275757355440095, 48.86219182385494], [2.27581579413406, 48.862308392040575], [2.275872488782898, 48.86242178930103], [2.275930927992421, 48.862538357406244], [2.275987623129514, 48.86265175548791], [2.2759928481165232, 48.86265634951971], [2.276156452768875, 48.86273053127986], [2.276304061807933, 48.86279647333432], [2.276330318538863, 48.86280280797065]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 206, "zemmour_eric": 254.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-2", "circ_bv": "14", "num_bureau": 2, "roussel_fabien": 0.0, "nb_emargement": 1291.0, "nb_procuration": 80.0, "nb_vote_blanc": 4.0, "jadot_yannick": 42.0, "le_pen_marine": 51.0, "nb_exprime": 1289.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1567.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1294, "quartier_bv": "62", "geo_point_2d": [48.86097288386615, 2.2756918827800665], "melenchon_jean_luc": 87.0, "poutou_philippe": 1.0, "macron_emmanuel": 617.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.31400478574274, 48.830585730713274], [2.31397006941371, 48.83057687239211], [2.313816912116159, 48.83049647095592], [2.313657347971961, 48.83041270395767], [2.313504191639016, 48.83033230210925], [2.3133446271257743, 48.830248535573], [2.313332772579026, 48.83024907279143], [2.31332127283436, 48.83026435192145], [2.313185949156807, 48.830373692689975], [2.313053908717389, 48.83048070028787], [2.312921867735808, 48.830587707729755], [2.312786541030855, 48.83069704710768], [2.312654498952595, 48.830804054233774], [2.312519171113403, 48.83091339418733], [2.312506186585162, 48.8309165519055], [2.312319787329422, 48.83089417767038], [2.3121343117526862, 48.83087191368279], [2.312122277673471, 48.8308743789103], [2.3119901628579163, 48.83096095465953], [2.311858361510008, 48.831047382765966], [2.311726244455532, 48.83113395820249], [2.311594443583096, 48.83122038691186], [2.311462325651775, 48.83130696204348], [2.311330523916267, 48.83139338954935], [2.311198405108303, 48.83147996437609], [2.311066602485856, 48.831566392477086], [2.310934482813024, 48.83165296609958], [2.31080267795351, 48.83173939388858], [2.310670558754239, 48.83182596811333], [2.310538753031544, 48.831912394698776], [2.310406631593301, 48.83199896861079], [2.310274826346047, 48.83208539579923], [2.3101427040309312, 48.83217196940628], [2.310010897920599, 48.83225839539121], [2.309940776886939, 48.83229261317739], [2.309945139258516, 48.832298766686534], [2.309990233775317, 48.83233656855659], [2.310117098643245, 48.83244884354766], [2.310240954816234, 48.83255266850223], [2.310367819387936, 48.83266494319785], [2.31049167658561, 48.83276876697345], [2.310618543585349, 48.8328810413893], [2.310742401795921, 48.83298486488523], [2.31080211931362, 48.83301668710698], [2.31084382536297, 48.83299649274128], [2.311021138846213, 48.83293243106657], [2.311184427353879, 48.83286771185831], [2.311347714081985, 48.83280299331488], [2.31152502765006, 48.83273893088992], [2.3116883135638, 48.83267421097476], [2.311865626263399, 48.83261014893681], [2.312028911350997, 48.832545428549196], [2.312206223205763, 48.83248136509965], [2.312369507455251, 48.83241664513897], [2.312546818453413, 48.832352581177155], [2.3127101018885208, 48.83228785984472], [2.312887412030076, 48.8322237953706], [2.312908563204978, 48.83222967827488], [2.3129368962096812, 48.83222420825499], [2.313136177518566, 48.83214955807161], [2.313313485303981, 48.83208549295014], [2.313490794003964, 48.83202142846932], [2.313690073756331, 48.83194677645023], [2.313867380171329, 48.831882710496046], [2.314023739754851, 48.831844616801355], [2.314025965998256, 48.83184397572445], [2.314182325349613, 48.83180588182114], [2.314377248088142, 48.83176292102251], [2.314381881089201, 48.83176282796445], [2.314406784360514, 48.83175573435011], [2.314588194529347, 48.831711609304215], [2.314783117943106, 48.831668647848296], [2.314964527490241, 48.831624522228154], [2.315159450268226, 48.83158156015563], [2.315222163079183, 48.831566305186605], [2.315226109111446, 48.83156260976371], [2.315175213597072, 48.83152304714575], [2.315060468890495, 48.831431583778226], [2.314941009399801, 48.83133755524863], [2.314826265512414, 48.83124609164126], [2.314706806881032, 48.83115206196288], [2.314592063812832, 48.83106059811563], [2.314472606017111, 48.830966569087074], [2.314357863768088, 48.830875105000054], [2.314238406819843, 48.830781075721994], [2.314123665389991, 48.83068961139516], [2.314004210663224, 48.830595580976144], [2.31400478574274, 48.830585730713274]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 56, "zemmour_eric": 89.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "14-51", "circ_bv": "10", "num_bureau": 51, "roussel_fabien": 20.0, "nb_emargement": 1097.0, "nb_procuration": 31.0, "nb_vote_blanc": 9.0, "jadot_yannick": 57.0, "le_pen_marine": 97.0, "nb_exprime": 1083.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1433.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1097, "quartier_bv": "56", "geo_point_2d": [48.8316583263911, 2.3125137171547183], "melenchon_jean_luc": 351.0, "poutou_philippe": 3.0, "macron_emmanuel": 350.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.374131231575129, 48.877163830293284], [2.374176741253476, 48.87715147036697], [2.374244622080967, 48.87703044230701], [2.37430140119511, 48.87692985196203], [2.374303087022423, 48.87692775993246], [2.374407527158599, 48.87683293963475], [2.374518460091855, 48.87673059247403], [2.374520409417069, 48.876729151136075], [2.3746321758810742, 48.87666238402534], [2.374748943228015, 48.8765927749552], [2.374764122869593, 48.876591383828966], [2.374897132430211, 48.87663471222448], [2.375022011525668, 48.87667557522001], [2.375146889442898, 48.87671643897592], [2.3752798996413, 48.87675976694123], [2.375292638787398, 48.87676553249199], [2.375310595429954, 48.87676008181128], [2.375513088011116, 48.87673469523591], [2.375718259086224, 48.876709235950784], [2.375920751270897, 48.87668384868475], [2.3761259219464312, 48.876658388699724], [2.376328413734706, 48.87663300074293], [2.376533584010656, 48.876607540058096], [2.376736075402626, 48.876582151410574], [2.376941243904835, 48.87655669091806], [2.376951603974029, 48.876544903325566], [2.376903204187641, 48.87645293656081], [2.376853082906805, 48.87635934380622], [2.376856073470287, 48.87635314588284], [2.37684233757852, 48.87634042886105], [2.376827608769605, 48.87631292613268], [2.376817038403503, 48.876291924743455], [2.376816781623814, 48.87629139280029], [2.376769049094836, 48.876180848312295], [2.376716043753093, 48.87605645448902], [2.376668311653331, 48.875945909937315], [2.376615308154541, 48.87582151605005], [2.376615267031739, 48.875821420506554], [2.376567533997894, 48.87571087588403], [2.376512493402178, 48.87558698932919], [2.376464762153796, 48.875476445548536], [2.3764097220502602, 48.87535255892015], [2.376346295201651, 48.875211190474985], [2.376291255660198, 48.87508730376235], [2.376227830819384, 48.87494593522753], [2.376172791840003, 48.874822048430595], [2.376109366269711, 48.87468068069123], [2.3760543278523922, 48.87455679381008], [2.376052432646775, 48.87455418305651], [2.375948659915239, 48.874455903342046], [2.37584817995529, 48.87436150963306], [2.375747700359434, 48.87426711583165], [2.375643930138144, 48.87416883583458], [2.3756338446383882, 48.87416501231942], [2.375482882223753, 48.87415693571024], [2.375329169223184, 48.8741466420857], [2.375317639355938, 48.874140592347345], [2.375273584652951, 48.87405439592008], [2.375192623829569, 48.873897464802326], [2.375148569539102, 48.87381126831001], [2.375118970063018, 48.87378551602246], [2.375095451071378, 48.873786599253584], [2.375057579668781, 48.87382007804399], [2.374982764121483, 48.87388621483858], [2.374859068116069, 48.87399361052183], [2.374746380266229, 48.87409322586567], [2.3746226832818023, 48.874200621284466], [2.374509994532007, 48.87430023638708], [2.374386296579361, 48.874407630642196], [2.374273606929604, 48.87450724550361], [2.374149907987129, 48.874614640393595], [2.374037217437399, 48.874714255013735], [2.373913517515882, 48.874821649639316], [2.373800826066172, 48.87492126401827], [2.37367712517642, 48.87502865748014], [2.373564432826721, 48.87512827161785], [2.373440730947098, 48.875235665714555], [2.3733280376973003, 48.875335279611065], [2.37329563569935, 48.87536341022281], [2.3732862383793982, 48.87536788197643], [2.373277023239385, 48.87538010154593], [2.373185722321161, 48.87545936475109], [2.373073007350977, 48.87555809693149], [2.372949302073975, 48.87566549047141], [2.37283658619863, 48.87576422331], [2.372712881318781, 48.875871615693384], [2.372600164549191, 48.875970348290956], [2.372476458681464, 48.87607774130923], [2.372363739654346, 48.87617647365857], [2.3723269854799423, 48.876205428345614], [2.372328512467995, 48.87621120377706], [2.372204805478921, 48.876318595591876], [2.372078181617436, 48.8764288102667], [2.372090537755092, 48.8764659698754], [2.372160619086341, 48.87646698047324], [2.37232433784669, 48.8765408594685], [2.372490016261831, 48.87660863483888], [2.372653735945522, 48.8766825124749], [2.3728194152399, 48.87675028738066], [2.372836994405281, 48.87674846479944], [2.372924207110887, 48.87668069288422], [2.373012014898246, 48.876608546965585], [2.373099225778438, 48.87654077490715], [2.373187033087576, 48.87646862885098], [2.373206034066112, 48.876467159004335], [2.373356394500123, 48.87654426988642], [2.373494173223701, 48.87661312450085], [2.373644534505697, 48.876690235010805], [2.373782313996322, 48.8767590892845], [2.373785719057025, 48.87676165490647], [2.373871933189464, 48.87685907012612], [2.373948859620532, 48.87695207224073], [2.374035073010008, 48.87704948731889], [2.37411200001363, 48.8771424893126], [2.374131231575129, 48.877163830293284]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 48, "zemmour_eric": 68.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "19-9", "circ_bv": "16", "num_bureau": 9, "roussel_fabien": 34.0, "nb_emargement": 1334.0, "nb_procuration": 60.0, "nb_vote_blanc": 15.0, "jadot_yannick": 95.0, "le_pen_marine": 53.0, "nb_exprime": 1313.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1745.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1335, "quartier_bv": "76", "geo_point_2d": [48.875668058459084, 2.3747581751946716], "melenchon_jean_luc": 645.0, "poutou_philippe": 9.0, "macron_emmanuel": 308.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3664188731038, 48.82674171554213], [2.366422773937733, 48.82675194500161], [2.366369444010483, 48.826867643907256], [2.366316145935219, 48.82698025449783], [2.366319468247965, 48.82699930464861], [2.3663348659570103, 48.82700334707789], [2.366532896067735, 48.82703070557634], [2.366741754169735, 48.82705929746274], [2.366939786057668, 48.82708665619258], [2.367148643244856, 48.82711524735974], [2.367346675569739, 48.82714260451517], [2.367555533193285, 48.82717119586964], [2.367753565944188, 48.82719855234993], [2.367962425388002, 48.82722714210023], [2.368160457202817, 48.827254497898245], [2.368369317082883, 48.82728308783582], [2.368438105606591, 48.82729258965925], [2.368461751970471, 48.82729287911847], [2.368468983437126, 48.82726726178362], [2.368537838119114, 48.82713915887838], [2.368606143020588, 48.827011996460776], [2.368674998390524, 48.82688389345463], [2.368743302623023, 48.82675673092979], [2.368812155956737, 48.8266286278083], [2.368880459520275, 48.82650146517621], [2.3689487627506223, 48.82637430249072], [2.369017616436525, 48.82624619921448], [2.369085918998023, 48.826119036421694], [2.369154770647744, 48.82599093303022], [2.369223072540202, 48.82586377013019], [2.369291924867005, 48.82573566753708], [2.369360226090533, 48.82560850452979], [2.369429076392067, 48.82548040092211], [2.369497376946676, 48.8253532378076], [2.369566227936175, 48.82522513409898], [2.369573452627366, 48.825219946817924], [2.369685708684805, 48.82518643425323], [2.369796399661278, 48.82515223520655], [2.369803182070461, 48.82514757531244], [2.369817727497688, 48.825124741287226], [2.369833658254481, 48.82509987207954], [2.369847607240984, 48.82508953172146], [2.369846156071706, 48.82508326442515], [2.369906194336757, 48.824989542133125], [2.369979903657505, 48.824874526274776], [2.370055873338539, 48.824755935559715], [2.370129582009704, 48.82464091868584], [2.370205549647875, 48.82452232784388], [2.370279259020624, 48.824407310861], [2.370355225978074, 48.82428871989928], [2.370428933317504, 48.824173703692395], [2.370504900956058, 48.824055112618105], [2.370578607645923, 48.82394009539569], [2.370654574603667, 48.82382150420166], [2.370728280633112, 48.82370648686309], [2.370804245537199, 48.82358789644148], [2.370877952268239, 48.82347287899393], [2.370869386600935, 48.82346077239648], [2.370685453277689, 48.82342368112619], [2.370501494622796, 48.823387129962164], [2.370317561831917, 48.82335003722425], [2.370133605056755, 48.823313485499064], [2.369949671414536, 48.82327639308504], [2.36976571515711, 48.82323984079155], [2.369581783409277, 48.82320274691709], [2.369397826307604, 48.8231661940481], [2.369213895070323, 48.82312910050468], [2.369029939848389, 48.823092547074566], [2.3688460077816362, 48.82305545205639], [2.3686620530774602, 48.823018898057924], [2.368652377338301, 48.82301077686675], [2.368651631381248, 48.82300174138754], [2.368649828239653, 48.822983164235396], [2.368616844068574, 48.82298176513398], [2.368426211237023, 48.82296121229471], [2.368212400781684, 48.8229369319952], [2.368021768273381, 48.822916378510364], [2.367807958190337, 48.82289209748677], [2.36761732600539, 48.82287154335642], [2.3674035162944502, 48.8228472616087], [2.3673976541430273, 48.82285252972603], [2.367440235010933, 48.822893798043694], [2.367533462503228, 48.82293999659556], [2.367670146263183, 48.823008329192795], [2.367822589093219, 48.8230838707022], [2.367959273620159, 48.823152202060896], [2.368111717289841, 48.823227743192035], [2.368248402561965, 48.82329607511085], [2.368247150117698, 48.823310972062096], [2.368061488277463, 48.82338398456626], [2.367886162346783, 48.823453648176034], [2.367700498130992, 48.823526660103234], [2.367525171227314, 48.82359632407424], [2.367349843865933, 48.82366598688453], [2.367164179505003, 48.8237389979725], [2.367132448234432, 48.82375160568527], [2.3671299902678, 48.823758852441955], [2.36714524409199, 48.823772318585284], [2.367141258605667, 48.82388936299443], [2.367135754184412, 48.824031671819135], [2.367131768656961, 48.824148716200966], [2.367126262831317, 48.824291024085845], [2.3671222772518172, 48.824408069339675], [2.367116772734906, 48.82455037719843], [2.367112787114277, 48.8246674224249], [2.367107282544082, 48.82480973025041], [2.367103296882321, 48.82492677544951], [2.367102905459634, 48.82492872412297], [2.3670545817840782, 48.825058234722896], [2.367006923998618, 48.8251862819336], [2.366959265979065, 48.82531432911064], [2.366910941600225, 48.82544383870876], [2.366863283109614, 48.82557188581824], [2.3668149596046613, 48.825701396254395], [2.366767300642886, 48.82582944329619], [2.366718975309749, 48.825958952757304], [2.366671315876698, 48.826086999731494], [2.366622991417545, 48.82621651003063], [2.366575331513317, 48.8263445569372], [2.366527005225854, 48.82647406626131], [2.366479344850438, 48.826602113100215], [2.366431019436957, 48.82673162326237], [2.366430824427496, 48.8267320899037], [2.3664188731038, 48.82674171554213]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 39, "zemmour_eric": 64.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-23", "circ_bv": "09", "num_bureau": 23, "roussel_fabien": 20.0, "nb_emargement": 1151.0, "nb_procuration": 45.0, "nb_vote_blanc": 16.0, "jadot_yannick": 71.0, "le_pen_marine": 88.0, "nb_exprime": 1127.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1485.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "50", "geo_point_2d": [48.82500420826385, 2.3683967649508553], "melenchon_jean_luc": 503.0, "poutou_philippe": 5.0, "macron_emmanuel": 277.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.317633358915719, 48.88091141512228], [2.317643996258733, 48.88092389466425], [2.317720320939831, 48.880946475776355], [2.317756762391089, 48.88095522263166], [2.317768321652331, 48.88095509964306], [2.317948910785342, 48.88089699015496], [2.318129424077295, 48.88083891413645], [2.318310011041119, 48.88078080408979], [2.318490523527573, 48.880722727520705], [2.318671111049087, 48.88066461693101], [2.318851622730141, 48.88060653981134], [2.319032208082467, 48.88054842866306], [2.319212720321603, 48.880490351000574], [2.319393304868025, 48.880432239301506], [2.319573814938272, 48.88037416108073], [2.31975439867889, 48.88031604883084], [2.319934909318952, 48.88025796916798], [2.320115492242019, 48.880199857266575], [2.320296000713291, 48.88014177704535], [2.320305478529759, 48.880141168045654], [2.320485710037821, 48.88017273258421], [2.320669081524088, 48.88020381283794], [2.320849314832789, 48.88023537683502], [2.321032686756614, 48.88026645653009], [2.321212919138996, 48.88029801997025], [2.321396291500372, 48.880329099106596], [2.321410779662849, 48.880325617165425], [2.321442799228034, 48.88029606484642], [2.321469573222304, 48.88026232156562], [2.321485333057238, 48.88025783147375], [2.321671318732321, 48.88029220487508], [2.321851114423575, 48.88032393575036], [2.322037100576146, 48.8803583085814], [2.32221689535499, 48.88039003889776], [2.322226229258699, 48.88038948828737], [2.322381597769461, 48.880341235334164], [2.322582145661622, 48.880277077685435], [2.322737513507164, 48.880228824265444], [2.322938061891473, 48.88016466602166], [2.323093429071996, 48.88011641213484], [2.32329397658497, 48.880052253288305], [2.323449341725218, 48.880003999826286], [2.323470703115328, 48.879994654143054], [2.323472903684122, 48.87997923938778], [2.3234567859855613, 48.87986025532593], [2.323443067171008, 48.87974617808764], [2.323429348416654, 48.87963210083603], [2.3234132309249302, 48.879513116730756], [2.323399512297322, 48.87939903945157], [2.323383396309338, 48.87928005532484], [2.3233696778084703, 48.8791659780181], [2.32335356059732, 48.87904699385446], [2.323331753483813, 48.879022669472924], [2.323323681138584, 48.87902164267009], [2.323146128160798, 48.879076976928296], [2.322971135454702, 48.87913126598433], [2.322793581728626, 48.87918659971421], [2.3226185896384592, 48.8792408891565], [2.322441035164094, 48.879296222358015], [2.322266042349801, 48.8793505103803], [2.322088487115446, 48.879405843952725], [2.321913493565333, 48.87946013145427], [2.321898679127618, 48.879458742607184], [2.32175110336946, 48.87937303182386], [2.321602499530532, 48.879287565938], [2.321454924756667, 48.879201853877014], [2.3213063218804812, 48.87911638850951], [2.321158748079091, 48.87903067607015], [2.321010146189078, 48.87894520942246], [2.32086257336016, 48.87885949660462], [2.320713972432767, 48.878774030475334], [2.320566400576312, 48.878688317279156], [2.320417800635193, 48.87860284986966], [2.320270229739462, 48.878517137194336], [2.320121630772781, 48.87843166940393], [2.319974060861239, 48.87834595545093], [2.319825462868991, 48.87826048727968], [2.319772281584093, 48.87825405972687], [2.319764969737119, 48.87825850137308], [2.319532842367026, 48.87826731138657], [2.319325905003985, 48.87827846485653], [2.319093776107226, 48.87828727401076], [2.318886838570845, 48.87829842672155], [2.318883185452864, 48.87829824045908], [2.318696953772074, 48.87827178347071], [2.318505567910673, 48.87824358001584], [2.318319337980587, 48.878217122446515], [2.318127952524539, 48.87818891838654], [2.31794172160664, 48.87816246111998], [2.317750337919269, 48.87813425646276], [2.317564107400439, 48.8781077977082], [2.317372722755116, 48.87807959243812], [2.317356821777684, 48.87808551113682], [2.317297282486193, 48.87820269157315], [2.31723987700724, 48.878317152852645], [2.3171803371878212, 48.878434333206215], [2.3171229312084263, 48.87854879350628], [2.317063390861072, 48.878665973777025], [2.317005984369238, 48.878780433996944], [2.316946443493944, 48.87889761418493], [2.316889035126425, 48.87901207431692], [2.31687999379844, 48.8790196481984], [2.316895509216474, 48.87904377419251], [2.316971776381733, 48.8791291435697], [2.317044062353909, 48.87921024531176], [2.31711634992646, 48.87929134611269], [2.317192617816259, 48.879376715330004], [2.317201356097231, 48.87938092100053], [2.317365980523544, 48.87940549436741], [2.317532917425667, 48.87942977311635], [2.317697543526395, 48.87945434603399], [2.31786448073967, 48.87947862431951], [2.318029105787696, 48.87950319677237], [2.318196043312116, 48.8795274745945], [2.318206741468043, 48.879536339119475], [2.318204781918789, 48.87967695888464], [2.318203252247259, 48.879811821735196], [2.31820129131475, 48.879952441457334], [2.318199761626089, 48.88008730427411], [2.318197802037157, 48.88022792396879], [2.318196272331368, 48.88036278675179], [2.318194742617658, 48.88049764951821], [2.318192782999835, 48.88063826916042], [2.318187026464436, 48.880645526385024], [2.31805517210941, 48.880707091201415], [2.317912133600702, 48.88077270480914], [2.3177802785987263, 48.880834269315635], [2.317637239394282, 48.880899882587364], [2.317633358915719, 48.88091141512228]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 186, "zemmour_eric": 168.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "8-5", "circ_bv": "01", "num_bureau": 5, "roussel_fabien": 6.0, "nb_emargement": 1391.0, "nb_procuration": 104.0, "nb_vote_blanc": 12.0, "jadot_yannick": 86.0, "le_pen_marine": 47.0, "nb_exprime": 1373.0, "nb_vote_nul": 7.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1655.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1392, "quartier_bv": "32", "geo_point_2d": [48.879414836656586, 2.3198733957822824], "melenchon_jean_luc": 149.0, "poutou_philippe": 5.0, "macron_emmanuel": 681.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.382860348206879, 48.8900724199966], [2.382876826818519, 48.89006634007815], [2.382983703048017, 48.8899740017625], [2.383136540411443, 48.88984193519075], [2.383194902707396, 48.88979151231701], [2.383215754067362, 48.88978803412899], [2.383232438642612, 48.889774111341225], [2.383280951598012, 48.88973219653201], [2.383421958272561, 48.8896092030486], [2.383528832586409, 48.889516865107225], [2.383635706531955, 48.88942452616338], [2.3837767115352753, 48.88930153222775], [2.383778721149593, 48.88929904785157], [2.383837368368967, 48.88919159742467], [2.383898102663588, 48.88907578591165], [2.383956748032077, 48.88896833449813], [2.3840174831644863, 48.88885252290802], [2.384076128024537, 48.88874507231348], [2.384136861267316, 48.88862926063225], [2.384195507003815, 48.88852180906511], [2.384236677329533, 48.888443299516176], [2.38424633185356, 48.888417658224], [2.3841907248182412, 48.88840195337136], [2.384008708208395, 48.88833495560615], [2.383824179858374, 48.88826923965674], [2.383642165558386, 48.88820224043402], [2.383457636777675, 48.88813652390475], [2.383275623402462, 48.88806952501605], [2.383091096918341, 48.88800380792098], [2.382909083125718, 48.8879368075607], [2.382724557574399, 48.88787108989288], [2.382542544706642, 48.887804089866606], [2.382358020088327, 48.88773837162595], [2.382356544435123, 48.88773791884915], [2.382173103468328, 48.887692053068946], [2.381994339902723, 48.88764554384817], [2.381810899580385, 48.88759967750923], [2.381632135302419, 48.88755316683753], [2.38145337269679, 48.88750665680325], [2.381269933340226, 48.88746078962971], [2.3810911700115662, 48.88741427904377], [2.380907731299471, 48.88736841131147], [2.380902109981639, 48.88736577420835], [2.380767469999377, 48.88725970153581], [2.380637090852788, 48.88715454556623], [2.380609872656811, 48.88713731222383], [2.380590533182292, 48.88713998839173], [2.380557834032069, 48.88716667483401], [2.380427514099861, 48.88727333124458], [2.380296600990506, 48.88738016789772], [2.380166279989031, 48.88748682400325], [2.380035365806967, 48.88759366034996], [2.380032598794942, 48.88759755358317], [2.379988888053118, 48.88774210931354], [2.379938450676277, 48.887901471706286], [2.3799310391895983, 48.88790773038622], [2.379731868153845, 48.8879712612058], [2.379520888785581, 48.88803952569351], [2.379321716745312, 48.88810305582327], [2.379110737658329, 48.888171320486414], [2.379093156450539, 48.888194968748365], [2.3791175290166873, 48.888216051154586], [2.379224555613239, 48.88826863190682], [2.379371441912313, 48.88834195790238], [2.37953124577866, 48.888420465996276], [2.379678131574212, 48.888493791598385], [2.379837936358114, 48.888572300171376], [2.37998482438826, 48.888645624494956], [2.380144630100641, 48.88872413264782], [2.380291517616556, 48.88879745747721], [2.380451324267918, 48.88887596431062], [2.380598214007831, 48.88894928876073], [2.380758021576878, 48.889027796073194], [2.3809049108131672, 48.889101120129894], [2.381051800473937, 48.88917444310224], [2.381211609417873, 48.88925294979327], [2.381211641964895, 48.88925296524993], [2.381373758493541, 48.88933437675977], [2.381533569788153, 48.88941288211745], [2.381695687318017, 48.88949429317958], [2.381855499578127, 48.88957279899543], [2.382017618119892, 48.889654208710574], [2.382177431356186, 48.88973271408534], [2.382339550899172, 48.88981412335273], [2.382499363747915, 48.88989262827939], [2.382661485655866, 48.88997403710612], [2.382821299480796, 48.890052541591665], [2.382860348206879, 48.8900724199966]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 57, "zemmour_eric": 115.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "19-65", "circ_bv": "17", "num_bureau": 65, "roussel_fabien": 22.0, "nb_emargement": 1145.0, "nb_procuration": 66.0, "nb_vote_blanc": 11.0, "jadot_yannick": 88.0, "le_pen_marine": 61.0, "nb_exprime": 1133.0, "nb_vote_nul": 1.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1547.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1145, "quartier_bv": "73", "geo_point_2d": [48.88856038469009, 2.3818753499598504], "melenchon_jean_luc": 429.0, "poutou_philippe": 8.0, "macron_emmanuel": 300.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.380717237381531, 48.868965989310055], [2.380783690411908, 48.86900784748272], [2.380959699719155, 48.86906934635406], [2.381131824300523, 48.869129341866156], [2.381307834429385, 48.86919084021883], [2.38147995846064, 48.86925083431736], [2.381652084240894, 48.86931082907147], [2.381828095597086, 48.86937232664901], [2.382000222179744, 48.869432320895896], [2.382176234357551, 48.86949381795472], [2.382348360379408, 48.86955381168731], [2.382524373378621, 48.86961530822744], [2.382524590624659, 48.86961538219458], [2.382545850428633, 48.8696156420574], [2.382554651846023, 48.86960217221134], [2.382629280979122, 48.8695206373798], [2.382700909840515, 48.8694403254119], [2.382772539844239, 48.86936001340235], [2.382847168278809, 48.86927847931639], [2.382848921745607, 48.86927695678479], [2.382981019396921, 48.86918460309686], [2.383115428985875, 48.86909060998846], [2.383247527044687, 48.86899825689714], [2.383381935682586, 48.86890426257435], [2.38351403143317, 48.86881190916635], [2.383648439098729, 48.86871791542775], [2.383780533914927, 48.86862556081076], [2.3839149406188, 48.86853156675705], [2.38404703447934, 48.86843921272965], [2.384181440232065, 48.86834521746155], [2.384198236381909, 48.868343624812844], [2.38437264437683, 48.86841088061128], [2.384548295648333, 48.86847782777366], [2.384722704544429, 48.86854508305387], [2.384898356707822, 48.86861203059365], [2.385072766505199, 48.86867928535562], [2.385248419581621, 48.86874623147428], [2.385265605816175, 48.8687442836421], [2.385366580361882, 48.86866626298901], [2.385466471789916, 48.86858943190643], [2.385567445734616, 48.868511411072944], [2.38566733794313, 48.86843457891971], [2.38567817171706, 48.86843144637042], [2.385907446576437, 48.86843685161295], [2.386141000213383, 48.86844287462215], [2.386154076733889, 48.868437407158275], [2.386237992671668, 48.868307195990575], [2.386318532840343, 48.86818207568612], [2.386399072622223, 48.86805695531326], [2.386482987334741, 48.86792674392903], [2.386492913395768, 48.867901010763426], [2.386486846242523, 48.86789737601319], [2.386359103955373, 48.86786626324237], [2.386177050655863, 48.86782246363339], [2.385985286264446, 48.867775757625076], [2.385803233595439, 48.86773195744395], [2.385611471235513, 48.86768525083989], [2.385429419197216, 48.8676414500866], [2.385237657505626, 48.86759474287989], [2.385055606097843, 48.86755094155438], [2.384863843711441, 48.86750423373793], [2.384681792934379, 48.867460431840286], [2.384490032579476, 48.86741372342811], [2.384307982433037, 48.867369920958346], [2.384116222757118, 48.86732321104414], [2.383934173230573, 48.8672794089015], [2.383742412859872, 48.86723269837756], [2.383560365337843, 48.867188894770514], [2.383378316748181, 48.86714509177707], [2.383186557370336, 48.867098380356936], [2.383143261659377, 48.86709289068887], [2.383125605275758, 48.86710879354775], [2.38310649866626, 48.86714839013013], [2.383087413060359, 48.8671878222373], [2.383084735239525, 48.867190971412754], [2.383003845645865, 48.86724447256515], [2.382918625475151, 48.867309439498875], [2.382904523226774, 48.867316333075394], [2.382897676369409, 48.867324343266304], [2.382853515847188, 48.86735800808383], [2.382714655024516, 48.86746134109211], [2.382585273260929, 48.86755997341887], [2.382446411367801, 48.86766330609711], [2.382317029957766, 48.86776193812291], [2.382178165620448, 48.8678652713633], [2.382048783211572, 48.86796390218184], [2.381909919166835, 48.868067235099204], [2.381780534385381, 48.86816586560274], [2.381641669270155, 48.86826919819], [2.381512283468497, 48.86836782928483], [2.38138289855064, 48.86846645933877], [2.381244031845435, 48.8685697914366], [2.381114644554864, 48.868668421175485], [2.380975776779045, 48.86877175294324], [2.380846389831526, 48.86887038328048], [2.380735902747029, 48.86895259490556], [2.380717237381531, 48.868965989310055]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 26, "zemmour_eric": 53.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-70", "circ_bv": "06", "num_bureau": 70, "roussel_fabien": 41.0, "nb_emargement": 1380.0, "nb_procuration": 84.0, "nb_vote_blanc": 14.0, "jadot_yannick": 110.0, "le_pen_marine": 79.0, "nb_exprime": 1363.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1767.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1380, "quartier_bv": "77", "geo_point_2d": [48.868277015743374, 2.3834583713691995], "melenchon_jean_luc": 694.0, "poutou_philippe": 18.0, "macron_emmanuel": 283.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3122606743899112, 48.84127557518821], [2.31226955809611, 48.84126772981588], [2.312462722198423, 48.841225891783296], [2.312645520572702, 48.84118637360493], [2.312838684071708, 48.84114453496229], [2.313021481875593, 48.8411050162065], [2.313204279390427, 48.841065498069284], [2.313397441992926, 48.84102365851989], [2.313413445389016, 48.841027655426615], [2.313466598103979, 48.84108751390107], [2.313513619282675, 48.84114180605181], [2.3135309458331133, 48.84115883067668], [2.313555170415678, 48.8411499256497], [2.31367911669154, 48.84102756559682], [2.313800947405505, 48.8409080253783], [2.313924892517391, 48.84078566594357], [2.314046723464579, 48.84066612545669], [2.314052240515478, 48.84066300390968], [2.314197885900231, 48.84061784352266], [2.314412278324697, 48.84055144089322], [2.314557921711589, 48.840506280954784], [2.314772313218475, 48.84043987767346], [2.314917957344007, 48.84039471729999], [2.314922807023131, 48.84039219176884], [2.314939342241684, 48.84037479465951], [2.314920578869455, 48.84036289019472], [2.314890539974168, 48.840242620163785], [2.314861337388755, 48.84012735628732], [2.3148313001282332, 48.84000708622392], [2.314802097805889, 48.83989182230871], [2.314772059443553, 48.83977155309661], [2.314742857395898, 48.83965628824331], [2.314742763770375, 48.8396558443183], [2.314717807786677, 48.83951132482672], [2.31469233115354, 48.83936340990889], [2.314667375449689, 48.839218890368954], [2.314641900465005, 48.839070975409456], [2.3146169436785993, 48.838926455813336], [2.3145914689799563, 48.83877854080443], [2.314576929726973, 48.83877058801413], [2.314389884474877, 48.838779691548815], [2.314205434177075, 48.838790592218494], [2.314018388776476, 48.838799696071455], [2.313833938342034, 48.83881059526881], [2.313646892804771, 48.838819698540725], [2.313462442210021, 48.83883059806437], [2.313275396547949, 48.83883969985595], [2.313090945804738, 48.83885059880655], [2.312903900006025, 48.83885970001707], [2.312719449114463, 48.83887059839464], [2.312532403167154, 48.83887969992343], [2.3123479521390102, 48.83889059682865], [2.312336684419216, 48.83888770983264], [2.312203178541566, 48.83879136178289], [2.312069368912032, 48.838694528864636], [2.311935865373721, 48.838598181407015], [2.311802056736717, 48.83850134817303], [2.3116685528250303, 48.83840500039257], [2.311534746542827, 48.838308166850695], [2.31140124363192, 48.83821181785594], [2.311267436968074, 48.83811498488978], [2.311250573615505, 48.838113251838436], [2.311201594001254, 48.838131867369285], [2.311147008610135, 48.8381512501374], [2.3111367084837102, 48.83815186624728], [2.311119385648677, 48.838171806248184], [2.31102484590886, 48.83830139339093], [2.310932675357719, 48.83843384060005], [2.31083813467834, 48.83856342756486], [2.3107459631776113, 48.83869587549838], [2.310651421558759, 48.83882546228526], [2.310559249120111, 48.838957910043796], [2.310555022035578, 48.83896136084383], [2.31038534954271, 48.83904502514031], [2.310209383478282, 48.83913422809145], [2.310039711230295, 48.83921789189261], [2.30986374264035, 48.83930709341437], [2.309694069274847, 48.83939075671231], [2.309518099497762, 48.839479958611115], [2.309516435903789, 48.839493225495126], [2.309639792225756, 48.8395805170409], [2.30976359458872, 48.83967366591577], [2.309886953114075, 48.83976095720041], [2.310010756335429, 48.83985410670375], [2.310134114339348, 48.839941397711556], [2.310257918442908, 48.840034546044734], [2.310390444085637, 48.84013410215461], [2.310514247730695, 48.840227251097886], [2.310646774353108, 48.840326806906596], [2.310770578925886, 48.840419954669215], [2.310903106515897, 48.84051951107612], [2.311026913366944, 48.8406126585652], [2.3111594405861062, 48.84071221376375], [2.311283248352996, 48.84080536097149], [2.31140705518808, 48.84089850893474], [2.311539585222516, 48.840998063694514], [2.311539717421678, 48.84099816428519], [2.311661357132309, 48.84109246597145], [2.31177258977566, 48.841178135777916], [2.311883822784573, 48.841263805474355], [2.31200546374962, 48.84135810588895], [2.312008932269114, 48.84137662042737], [2.312038630095033, 48.841377245403415], [2.312046933537601, 48.8413753775037], [2.312142371188169, 48.84132685683759], [2.312239249207752, 48.84127758710802], [2.312243317417086, 48.84127616611339], [2.3122606743899112, 48.84127557518821]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 111, "zemmour_eric": 133.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "15-37", "circ_bv": "12", "num_bureau": 37, "roussel_fabien": 17.0, "nb_emargement": 1322.0, "nb_procuration": 87.0, "nb_vote_blanc": 12.0, "jadot_yannick": 92.0, "le_pen_marine": 78.0, "nb_exprime": 1310.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 9, "nb_inscrit": 1600.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1322, "quartier_bv": "58", "geo_point_2d": [48.83979760766579, 2.3124102289942683], "melenchon_jean_luc": 234.0, "poutou_philippe": 6.0, "macron_emmanuel": 579.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.326273151041003, 48.83416277456605], [2.326265515088514, 48.83414896577003], [2.326203363648021, 48.83406410439365], [2.3261156978149238, 48.83394651768206], [2.3260291381801, 48.833828330948144], [2.32594147313651, 48.83371074408406], [2.32585491563882, 48.83359255810616], [2.325767251384723, 48.83347497108962], [2.325680694673515, 48.83335678496076], [2.325593031208903, 48.83323919779177], [2.325506475284167, 48.833121011511935], [2.325418812609028, 48.83300342419052], [2.325332257470757, 48.832885237759726], [2.325244595585081, 48.832767650285824], [2.325244393534614, 48.83276736764222], [2.325157839183622, 48.832649181060276], [2.325073384413976, 48.83252521698395], [2.32498682949052, 48.83240703024503], [2.324926543768533, 48.83231854061416], [2.324921778167149, 48.832302046189504], [2.32490389467855, 48.83229335982994], [2.324879727807412, 48.83225788613852], [2.32485746188244, 48.83222573916131], [2.324847135495301, 48.83221986192372], [2.324803124681994, 48.83223777452465], [2.324629757904671, 48.832274210523074], [2.324422866908192, 48.8323175169953], [2.32424950096212, 48.832353952447654], [2.3240426093332722, 48.83239725825903], [2.32386924149401, 48.8324336931499], [2.3236623492328, 48.83247699830042], [2.323488982224704, 48.83251343264525], [2.323488960371095, 48.83251343701852], [2.323288204442743, 48.832555709574144], [2.323114836911383, 48.83259214337409], [2.3229140817387792, 48.832634415306515], [2.322740712322063, 48.832670848553924], [2.3227248766271122, 48.83266687988611], [2.322622929603154, 48.83255385930021], [2.322521822716376, 48.83243859763685], [2.322502877155888, 48.83243545313642], [2.322351589752145, 48.832497138501516], [2.322165975787035, 48.83257287431458], [2.322014687597516, 48.83263455834669], [2.321829072653645, 48.83271029362761], [2.321677785017198, 48.832771978133025], [2.321492169094562, 48.8328477128818], [2.3213408792984103, 48.83290939694577], [2.32115526239711, 48.83298513116244], [2.321003971815097, 48.83304681389338], [2.3209814268952202, 48.8330549628351], [2.320980166375553, 48.833059802400776], [2.321060653311922, 48.833151139165786], [2.32116023079998, 48.83326433915332], [2.321268572391388, 48.83338728401775], [2.321368150781939, 48.833500483808294], [2.321476493342911, 48.833623429357786], [2.321576072636069, 48.833736628951364], [2.321684414827663, 48.83385957337954], [2.321783995023433, 48.83397277277613], [2.321785834939311, 48.833977112787494], [2.321788626072932, 48.834076296100555], [2.321791717991443, 48.834180633613336], [2.3217945091471552, 48.834279816908264], [2.321797602451791, 48.83438415440967], [2.321792085300823, 48.83439155913386], [2.321777175848844, 48.83439866687048], [2.321646484921218, 48.834460970809346], [2.321469985006358, 48.83454719345601], [2.321324383774853, 48.83461660383048], [2.32114788143797, 48.83470282598212], [2.321002279342861, 48.83477223595481], [2.320825777308519, 48.834858457626886], [2.3206801743498042, 48.83492786719786], [2.320503671255718, 48.83501408838264], [2.320358067433395, 48.83508349755187], [2.320352164391192, 48.83509111586307], [2.320365194539461, 48.83511198247346], [2.320429173687833, 48.83514578642427], [2.3205275425975, 48.83520285188336], [2.32054195460175, 48.83520435925692], [2.32056444792092, 48.835193347415526], [2.320733807215595, 48.83510472293351], [2.320906660499571, 48.83501651017141], [2.321076018637892, 48.834927885190844], [2.321248870767974, 48.83483967102097], [2.321418227738238, 48.83475104644115], [2.3215910787028182, 48.8346628317628], [2.321760434528446, 48.834574205785174], [2.321933284315829, 48.83448599149769], [2.321940196184137, 48.834484162685776], [2.322126693705685, 48.83447114642293], [2.322321098510604, 48.834457690809074], [2.322507595830642, 48.834444674851326], [2.3227020004503, 48.834431217718766], [2.322888497580513, 48.8344182011668], [2.3230829020030033, 48.83440474341481], [2.323269398943385, 48.83439172626865], [2.3234638031688, 48.834378267897286], [2.323650299919338, 48.834365250156935], [2.323844703936107, 48.83435179206546], [2.324031200508462, 48.834338772831565], [2.324225604328043, 48.83432531412071], [2.324225675235137, 48.83432530912512], [2.324432131677811, 48.83431016889647], [2.3246265352873, 48.83429670953358], [2.324832991500171, 48.834281568612646], [2.32502739353722, 48.83426810859026], [2.325233849520479, 48.834252966977004], [2.325428252721165, 48.83423950541114], [2.325634708463065, 48.8342243640049], [2.325829110091385, 48.83421090177949], [2.32602351296984, 48.83419744014498], [2.326229968383852, 48.83418229681138], [2.326273151041003, 48.83416277456605]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 61, "zemmour_eric": 73.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "14-18", "circ_bv": "11", "num_bureau": 18, "roussel_fabien": 27.0, "nb_emargement": 1285.0, "nb_procuration": 69.0, "nb_vote_blanc": 17.0, "jadot_yannick": 110.0, "le_pen_marine": 79.0, "nb_exprime": 1263.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1638.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1285, "quartier_bv": "56", "geo_point_2d": [48.83349116119612, 2.323518624815653], "melenchon_jean_luc": 427.0, "poutou_philippe": 7.0, "macron_emmanuel": 388.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.364810706512178, 48.84404715735081], [2.364778289899585, 48.84402348404894], [2.364734472810781, 48.84396434418698], [2.364647244921457, 48.843845510757134], [2.364558843312198, 48.84372619435344], [2.364471616221904, 48.843607360770115], [2.364383215407798, 48.84348804511049], [2.364383167169458, 48.843487978301525], [2.364295939526854, 48.84336914365819], [2.364209626874164, 48.84325017259971], [2.364122400014273, 48.84313133870384], [2.364036088151544, 48.843012367494794], [2.363948862096401, 48.84289353254777], [2.363862551012646, 48.84277456208745], [2.363775325751066, 48.84265572698856], [2.363689015468228, 48.842536755478406], [2.363601790989322, 48.84241792112696], [2.363515481496413, 48.842298949466276], [2.363428257822132, 48.84218011406367], [2.363341949119145, 48.84206114225239], [2.363254726227513, 48.8419423075973], [2.363168418314436, 48.84182333563549], [2.363081197589889, 48.84170449993647], [2.362994889104239, 48.84158552781687], [2.362907669162307, 48.84146669286531], [2.362821361466554, 48.841347720595174], [2.362734142329214, 48.841228884592475], [2.362647835423348, 48.841109912171795], [2.362560617068598, 48.84099107691658], [2.36247431095271, 48.84087210434538], [2.362387093391535, 48.84075326893836], [2.362300788065411, 48.84063429621664], [2.362213571308806, 48.840515459758485], [2.36212726677254, 48.84039648688621], [2.362088037696288, 48.84034303538536], [2.362076095698697, 48.840333210011565], [2.361986365925612, 48.840358643025965], [2.361786951106835, 48.840357412890164], [2.361590429665717, 48.84035645328263], [2.361391014864666, 48.840355222486785], [2.361194493450224, 48.840354261329466], [2.360995078666913, 48.84035302987357], [2.360798557256913, 48.84035206896517], [2.360599142491347, 48.84035083684923], [2.360402621108057, 48.840349874391066], [2.360398786887763, 48.84035021813251], [2.360214178612376, 48.84038482683295], [2.360015062814475, 48.84042226347767], [2.359830452677726, 48.840456870677166], [2.359631337691433, 48.84049430668803], [2.3594467270448343, 48.840528913293106], [2.3592476115077172, 48.84056634866286], [2.359063000340012, 48.8406009555728], [2.358863884252074, 48.84063839030145], [2.358679272585487, 48.84067299571767], [2.358480154584292, 48.84071042979789], [2.358295543770221, 48.84074503462702], [2.35809642521822, 48.840782468066095], [2.357911812520697, 48.840817073192774], [2.357712694780346, 48.84085450599807], [2.35752808158398, 48.840889109631014], [2.357328963292839, 48.84092654179512], [2.3571443495865623, 48.84096114483368], [2.35694523074464, 48.840998576356675], [2.356760616517461, 48.84103317970011], [2.35656149712476, 48.841070610581944], [2.356376882398676, 48.84110521243163], [2.356177761092749, 48.84114264266501], [2.355993147219233, 48.84117724392759], [2.355959546206798, 48.84117038525757], [2.35594024635702, 48.8411841396375], [2.355928154828907, 48.84121901839611], [2.355918113305315, 48.84124754969221], [2.355908661083356, 48.841274811560794], [2.355913233089534, 48.841284786731904], [2.355944981398192, 48.841291844091295], [2.356053136694605, 48.84131133455601], [2.356189223061529, 48.84133376597144], [2.356199065220865, 48.841344858622904], [2.356145942885178, 48.84147334891707], [2.356094245328107, 48.84159865500435], [2.3560411224864453, 48.84172714432346], [2.355989424425528, 48.84185245033694], [2.355936301055765, 48.841980940479566], [2.355884602502208, 48.84210624551995], [2.355831478615244, 48.842234735586835], [2.355779779558031, 48.84236004055346], [2.35572665515396, 48.84248853054454], [2.355674955581763, 48.842613836336646], [2.355621830660678, 48.842742326251994], [2.355570130595825, 48.842867631071], [2.355518430271257, 48.84299293675292], [2.355465304588988, 48.843121425655795], [2.355413603760634, 48.84324673126388], [2.355360477550112, 48.84337522099025], [2.355308776229089, 48.84350052562521], [2.355255649501326, 48.84362901527585], [2.355250949130681, 48.84363370529491], [2.355123070686031, 48.843700374593624], [2.3550072192155582, 48.84376255603088], [2.354947769836397, 48.843785512762196], [2.354951121948885, 48.843797172168955], [2.355111983097567, 48.84387911053903], [2.355266517558125, 48.843957465708755], [2.355427379697307, 48.84403940364298], [2.355581916469861, 48.84411775840134], [2.355742779610767, 48.844199695000405], [2.355897317332687, 48.844278049340126], [2.356058181453186, 48.844359986402615], [2.356212718762138, 48.8444383403163], [2.356373585235695, 48.84452027695023], [2.35652812349402, 48.84459863044524], [2.35668898959575, 48.844680566635965], [2.356843530166103, 48.84475891971961], [2.3568930914533333, 48.84478663283121], [2.356896294582889, 48.84478633347523], [2.357050835778532, 48.84486468628365], [2.357211500314653, 48.84494608374213], [2.357366042457885, 48.84502443613215], [2.357526707967692, 48.84510583405498], [2.3576812496959523, 48.84518418601931], [2.357841916201623, 48.84526558260789], [2.357996460240042, 48.84534393416111], [2.358157127730494, 48.84542533031467], [2.35831167271651, 48.8455036814495], [2.358472341180677, 48.845585078067394], [2.358626885751721, 48.8456634287765], [2.358787555211748, 48.845744824060084], [2.358942102092975, 48.845823174358095], [2.359102772537793, 48.84590456920672], [2.359257318992987, 48.84598291997826], [2.359417991785191, 48.846064314399214], [2.359572539199054, 48.84614266385309], [2.359733211613471, 48.8462240578317], [2.359887761337539, 48.8463024068744], [2.360048434725717, 48.846383801317344], [2.360202984034811, 48.846462149934325], [2.360363659781441, 48.846543543050224], [2.360518210038157, 48.84662189124879], [2.360678885406999, 48.84670328392242], [2.360833437973944, 48.846781631709824], [2.360994114316473, 48.84686302484772], [2.3611486664685453, 48.8469413722094], [2.361309343807025, 48.847022764012955], [2.36146389826924, 48.84710111096345], [2.361624576592441, 48.84718250233202], [2.3617791319913852, 48.847260849763366], [2.361939811299418, 48.84734224069687], [2.362094366294398, 48.8474205868032], [2.36225504658726, 48.8475019773017], [2.362409603892512, 48.84758032299683], [2.362470801226242, 48.84761172551481], [2.362496744763913, 48.84760120906965], [2.36249772188248, 48.8476005352613], [2.362633410809971, 48.84749669439975], [2.362765669715088, 48.847397054894294], [2.362901357578879, 48.847293213709925], [2.363033615455294, 48.84719357389008], [2.363169302266484, 48.84708973148354], [2.3633015591141, 48.84699009134932], [2.3634372448506182, 48.846886249519244], [2.363569500669651, 48.84678660907064], [2.36370175462035, 48.84668696845965], [2.36383744014373, 48.846583125255414], [2.363969693065759, 48.84648348433002], [2.364105376152, 48.846379641695], [2.364237629407869, 48.84628000046253], [2.36437331143046, 48.84617615750469], [2.364433675824015, 48.846130677473504], [2.364459463410004, 48.846128386198444], [2.364492530632786, 48.84610193095058], [2.364564417014104, 48.84604776849162], [2.364697941277165, 48.84594600200064], [2.364830190937171, 48.845846360067135], [2.364963714176194, 48.845744592361804], [2.365095964179543, 48.84564495012375], [2.365229485010039, 48.84554318299551], [2.365361733994159, 48.84544354044564], [2.36549525378968, 48.845341773002424], [2.36562750175458, 48.84524213014073], [2.36576102052608, 48.84514036148326], [2.365893267471665, 48.8450407183098], [2.366026786559822, 48.84493895024383], [2.366023035887259, 48.844926576768316], [2.365954493992795, 48.84489425299093], [2.365800668949445, 48.84480813429644], [2.365631984493551, 48.844708740299865], [2.365478160530666, 48.84462262117639], [2.365309477290173, 48.844523226708546], [2.365155654407847, 48.84443710715608], [2.364986972382852, 48.844337712216976], [2.3649835454248462, 48.84433480438318], [2.364895143567318, 48.84421548918689], [2.364858916936097, 48.84412529250543], [2.364814331532489, 48.844065116134615], [2.364810706512178, 48.84404715735081]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 88, "zemmour_eric": 111.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "5-20", "circ_bv": "02", "num_bureau": 20, "roussel_fabien": 20.0, "nb_emargement": 1192.0, "nb_procuration": 71.0, "nb_vote_blanc": 17.0, "jadot_yannick": 107.0, "le_pen_marine": 64.0, "nb_exprime": 1170.0, "nb_vote_nul": 5.0, "arr_bv": "05", "arthaud_nathalie": 1, "nb_inscrit": 1491.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1192, "quartier_bv": "18", "geo_point_2d": [48.843668694063595, 2.3604887578804368], "melenchon_jean_luc": 333.0, "poutou_philippe": 7.0, "macron_emmanuel": 383.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37404377939473, 48.89072647103451], [2.374031616114401, 48.89071745560618], [2.373877201803905, 48.890633507832085], [2.373729015543994, 48.89055225081776], [2.373580829746489, 48.89047099361401], [2.373426416882845, 48.890387046139054], [2.373278232027828, 48.890305788548595], [2.373123821516431, 48.89022183977864], [2.372975637603797, 48.89014058180154], [2.372821226695701, 48.89005663352084], [2.37267304372534, 48.88997537515706], [2.372518633805849, 48.88989142557431], [2.372370451777965, 48.88981016682379], [2.372216042825402, 48.88972621773751], [2.372173167792339, 48.88972950030098], [2.372177511350487, 48.88976321708521], [2.372188204149276, 48.88986123002833], [2.372202096464251, 48.8899891046408], [2.372216668799824, 48.89012268360392], [2.372230562618207, 48.89025055818975], [2.372245135110821, 48.89038413621829], [2.372259029068777, 48.890512010770415], [2.372273601696851, 48.890645589662896], [2.372287495794481, 48.89077346418122], [2.3723020672048962, 48.89090704303128], [2.372315961453145, 48.89103491661654], [2.372330534373523, 48.89116849543845], [2.372344428750509, 48.89129636988922], [2.372345780035269, 48.89129967388302], [2.3724417303252, 48.891429098933145], [2.37252678645659, 48.89154439872791], [2.372527747478141, 48.89154613675494], [2.372586574360967, 48.891700155998166], [2.372651964596953, 48.89186887749249], [2.372684011503543, 48.89188060974316], [2.372708106605009, 48.89187155930064], [2.372920900995678, 48.891898217231486], [2.373128838568541, 48.89192513084466], [2.373341633393556, 48.891951788026574], [2.373549572761622, 48.89197870091495], [2.373762366657181, 48.89200535734082], [2.373970306456651, 48.892032269497264], [2.374183102150325, 48.89205892518136], [2.374391041017394, 48.892085836598795], [2.374603837145383, 48.89211249153391], [2.374811776433035, 48.892139403118705], [2.374825301961299, 48.89213598347175], [2.374909554559706, 48.89206212147494], [2.375042386381878, 48.891941872412055], [2.375126638358135, 48.89186801024941], [2.375125276067151, 48.89185617527962], [2.374992036561161, 48.89177023604142], [2.374860148378202, 48.89168401321999], [2.374726909750367, 48.89159807367331], [2.3745950238063163, 48.89151185055348], [2.374461786056628, 48.89142591069829], [2.374329900987693, 48.89133968727294], [2.374196662752373, 48.89125374710216], [2.374064778558551, 48.89116752337129], [2.373931542565143, 48.89108158289915], [2.373799659246425, 48.890995358862746], [2.373797988493185, 48.89098391076043], [2.373923175290777, 48.890862692044465], [2.374032267373838, 48.890744622112784], [2.37404377939473, 48.89072647103451]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 36, "zemmour_eric": 97.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-68", "circ_bv": "17", "num_bureau": 68, "roussel_fabien": 26.0, "nb_emargement": 1142.0, "nb_procuration": 36.0, "nb_vote_blanc": 19.0, "jadot_yannick": 64.0, "le_pen_marine": 58.0, "nb_exprime": 1124.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1641.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "73", "geo_point_2d": [48.89115150962272, 2.3733422891661746], "melenchon_jean_luc": 504.0, "poutou_philippe": 6.0, "macron_emmanuel": 288.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328891937821672, 48.89737249864748], [2.328833394508401, 48.89738088408166], [2.3287908003476, 48.89738927793861], [2.328736768599377, 48.897399925220355], [2.328719689108059, 48.897393641265516], [2.328677611790183, 48.89729034061592], [2.328615881094283, 48.89713878734787], [2.328573805563975, 48.89703548574614], [2.328512075472437, 48.89688393238932], [2.328469998978453, 48.89678063161871], [2.328466855780825, 48.896776869222386], [2.328351158211834, 48.89669409713523], [2.32823852351367, 48.8966135166664], [2.328125889164068, 48.896532936085706], [2.328010191303739, 48.89645016454231], [2.32789755766104, 48.896369583734845], [2.327781861902242, 48.89628681106695], [2.3277657965387393, 48.896284841306944], [2.327567667773139, 48.896349311977104], [2.327371417797389, 48.89641317054066], [2.327173288055058, 48.89647764055077], [2.326977037111946, 48.896541498460586], [2.326778906392887, 48.89660596781069], [2.326582654482214, 48.89666982506673], [2.326384524150339, 48.89673429376448], [2.326188271272211, 48.89679815036676], [2.326173453878069, 48.89680218588637], [2.326171351352102, 48.89681235077117], [2.326132528416845, 48.89689789875275], [2.326092276111327, 48.89698659079149], [2.326053452916204, 48.897072138733826], [2.326013200329618, 48.8971608316311], [2.326022910354617, 48.897172125985776], [2.326185241142068, 48.897199305890496], [2.326351761407315, 48.8972271872271], [2.326514091162572, 48.89725436757627], [2.326680611780043, 48.897282248454275], [2.326842943254217, 48.89730942746473], [2.327009462859982, 48.897337307876384], [2.327014695428241, 48.89735300973612], [2.326885161283314, 48.89742224257828], [2.32676380600034, 48.897487101996354], [2.326634271199774, 48.897556333659416], [2.326512916643972, 48.89762119372221], [2.326507878782487, 48.8976277753942], [2.326498241527082, 48.89776909971099], [2.326488525177338, 48.89791157829105], [2.3264788864529162, 48.898052902562], [2.326469169985703, 48.8981953820028], [2.326459531156195, 48.89833670623554], [2.32644981458294, 48.89847918563782], [2.326440175659979, 48.898620508933085], [2.326430458980782, 48.89876298829684], [2.326416723835754, 48.89877157688708], [2.326207703192046, 48.89877047665338], [2.326001526382965, 48.89876939115998], [2.325792505745267, 48.898768291100914], [2.32558632758954, 48.89876720488507], [2.325377306981052, 48.89876610320216], [2.325171130206619, 48.89876501627924], [2.324962109615707, 48.898763913871676], [2.324755932858618, 48.89876282623398], [2.324546912285296, 48.8987617231018], [2.324340734181599, 48.898760634741656], [2.324134557450486, 48.898759546034285], [2.323925536903511, 48.89875844181764], [2.32390556737661, 48.89875644591104], [2.32389641627429, 48.89876598549243], [2.323874971665599, 48.89884941839818], [2.323855512449068, 48.89892512475945], [2.32385538705596, 48.898925747279854], [2.323835199416528, 48.89906110226578], [2.323815041485709, 48.89919626224767], [2.323794853636478, 48.89933161719334], [2.323774694132185, 48.899466777127316], [2.323754535875517, 48.89960193794812], [2.323734347711656, 48.89973729283342], [2.323714189257172, 48.899872452714774], [2.323694000883506, 48.90000780755975], [2.3236738422078362, 48.900142968300145], [2.323653653636045, 48.90027832220563], [2.323633493386864, 48.90041348289805], [2.323613305957481, 48.9005488376702], [2.32359314551057, 48.90068399742316], [2.323572956507362, 48.9008193521473], [2.3235716703466, 48.900840754042875], [2.323582818688701, 48.90084424880282], [2.323671964389986, 48.900847335979975], [2.323873603364072, 48.90085227228035], [2.323939010895748, 48.90085453726919], [2.324175274904275, 48.9008627162937], [2.324376913973983, 48.90086765264587], [2.324388278595283, 48.900868045904474], [2.324575944147755, 48.90087454165279], [2.324777583301255, 48.900879477330406], [2.32496525030753, 48.900885972476345], [2.325166888178193, 48.900890907490805], [2.325354555262485, 48.900897402925935], [2.325556194578343, 48.90090233729261], [2.32574386040014, 48.900908831210735], [2.32594549979716, 48.90091376492198], [2.326101654213621, 48.90091916812171], [2.326102308687114, 48.90091919068988], [2.326303948158228, 48.90092412379764], [2.326407187151292, 48.9009276956017], [2.326505472055945, 48.90092955773485], [2.326521756720087, 48.900929866942306], [2.326723396272298, 48.900934799343794], [2.326941846332098, 48.90093893735066], [2.32714348595924, 48.90094386904492], [2.327361936078766, 48.90094800718481], [2.327563575780832, 48.900952938171756], [2.327777127353317, 48.90095698150159], [2.327978765765445, 48.900961911781884], [2.32819231739538, 48.90096595527064], [2.328393957245605, 48.90097088485955], [2.328607508944492, 48.900974927608], [2.328809148868781, 48.90097985649785], [2.329022699284382, 48.90098389759911], [2.329224339282721, 48.90098882578996], [2.329437891119779, 48.90099286705779], [2.329639531192162, 48.900997794549596], [2.329647821514777, 48.90099795156736], [2.329651075459445, 48.90099801294706], [2.329852715571936, 48.901002940079955], [2.330099784775171, 48.90100761376504], [2.330128724278723, 48.90101014353028], [2.330119660231582, 48.90099654552268], [2.330075856232923, 48.90086797965665], [2.330031770929214, 48.900738394157564], [2.329987967376403, 48.90060982732977], [2.329943882510083, 48.900480241767724], [2.329900078027537, 48.90035167486984], [2.329855993598603, 48.90022208924485], [2.32981219090275, 48.90009352319134], [2.329768106922769, 48.89996393660416], [2.329724304661172, 48.899835370488155], [2.329680221118561, 48.899705783838066], [2.329636417927228, 48.89957721765193], [2.3295923348220873, 48.89944763093885], [2.329548533428884, 48.89931906469788], [2.3295044507611, 48.89918947792192], [2.329460649802132, 48.89906091161848], [2.329416567571598, 48.89893132477957], [2.329372765682999, 48.898802758406], [2.329328683889914, 48.89867317150418], [2.329284883799404, 48.89854460507576], [2.329240802443659, 48.89841501811104], [2.329197002787365, 48.898286451620145], [2.329152921868954, 48.89815686459247], [2.329109121282926, 48.89802829803147], [2.329065040801843, 48.89789871094092], [2.329021242013969, 48.89777014432511], [2.328988268380803, 48.89767320715605], [2.328987482641769, 48.89764527437474], [2.328980465662645, 48.8976405523], [2.328969359252419, 48.897607903213135], [2.328969323817756, 48.897607795096185], [2.328931565853073, 48.89749453091349], [2.328897915693826, 48.89738957696017], [2.328891937821672, 48.89737249864748]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 32, "zemmour_eric": 47.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-23", "circ_bv": "03", "num_bureau": 23, "roussel_fabien": 19.0, "nb_emargement": 961.0, "nb_procuration": 29.0, "nb_vote_blanc": 19.0, "jadot_yannick": 23.0, "le_pen_marine": 101.0, "nb_exprime": 938.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1433.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 961, "quartier_bv": "68", "geo_point_2d": [48.89922849828981, 2.3270446428770777], "melenchon_jean_luc": 500.0, "poutou_philippe": 1.0, "macron_emmanuel": 175.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376398457101918, 48.86281064218306], [2.37641451697262, 48.862796867874856], [2.376480203593617, 48.86271469621377], [2.3765747699448, 48.86259081408837], [2.376672596045411, 48.862468437269634], [2.376767161492119, 48.86234455496467], [2.376864986678411, 48.86222217796146], [2.376959551220656, 48.862098295477], [2.376960159506278, 48.86209758186625], [2.377057982412487, 48.861975204670934], [2.377160092063539, 48.8618671627643], [2.37725791543048, 48.8617447853872], [2.377342037462166, 48.86165577427136], [2.377358855522124, 48.86164363248344], [2.377360033687836, 48.861641311108926], [2.377378020440165, 48.86162227922283], [2.377477313941754, 48.86151424395095], [2.377579421819776, 48.86140620164162], [2.377678714491925, 48.8612981661816], [2.37778082152881, 48.86119012367937], [2.377880114745147, 48.861082087138996], [2.377982220930265, 48.86097404534314], [2.37808151195419, 48.8608660086075], [2.378183617298193, 48.86075796661876], [2.378282907492701, 48.86064992969501], [2.378385011995598, 48.860541887513385], [2.378484301360698, 48.86043385040147], [2.378586405033224, 48.860325807127715], [2.3786347070882172, 48.860306219267635], [2.378633764108034, 48.86029008550477], [2.378565045068763, 48.860268327843734], [2.378399479753498, 48.86021773594539], [2.378231213914924, 48.86016446142378], [2.378065649253786, 48.86011386905883], [2.377897382739795, 48.860060593156454], [2.377731820095847, 48.86001000033203], [2.377563554258773, 48.85995672395528], [2.377397992269059, 48.85990613066428], [2.377229727108701, 48.85985285381314], [2.377187278483515, 48.85983988196894], [2.377173344476279, 48.859828132337746], [2.377141293562373, 48.85983004391229], [2.377018179545685, 48.85979242194424], [2.37693441092214, 48.85976706224386], [2.376921422847988, 48.859756686312366], [2.376896155407082, 48.8597579361468], [2.376876835566207, 48.85975889228137], [2.376865045498239, 48.85977564686741], [2.376726650607792, 48.85985712909884], [2.376588517766518, 48.8599391152661], [2.376450122009284, 48.86002059716572], [2.376311988288702, 48.86010258390104], [2.376173591675645, 48.860184064569516], [2.376035457086413, 48.860266050973564], [2.375897059595893, 48.860347532209566], [2.375758924148981, 48.860429517383004], [2.375620525791658, 48.86051099828718], [2.375482388113221, 48.86059298312225], [2.375343990252265, 48.860674463701756], [2.37520585169448, 48.860756449104834], [2.375067451614525, 48.86083792844609], [2.374929313551145, 48.86091991352498], [2.374924908817715, 48.860928837207936], [2.37493945179676, 48.86093979974631], [2.375038848575754, 48.86100209310948], [2.375144904080401, 48.861069953926346], [2.375146523835102, 48.86108162149785], [2.375034276117893, 48.86118578211896], [2.374920682272813, 48.86129065327376], [2.374808435016825, 48.86139481367055], [2.374694838898399, 48.861499684584096], [2.374582590729641, 48.861603845648666], [2.374468995063843, 48.86170871633521], [2.374356744641097, 48.86181287626191], [2.374243148064824, 48.86191774671426], [2.37413089674018, 48.862021906409495], [2.374017299242821, 48.86212677752703], [2.374016993531499, 48.862133162174544], [2.37403485193538, 48.86214308002595], [2.374199392999198, 48.86222429429319], [2.37436191915329, 48.86230489343256], [2.374524444458136, 48.86238549143895], [2.374688988413676, 48.86246670502243], [2.3748515147185, 48.86254730347216], [2.375016059705738, 48.862628515694766], [2.375178587021342, 48.86270911368857], [2.375343131655674, 48.86279032634183], [2.375505661355872, 48.86287092298749], [2.375670207011114, 48.86295213517922], [2.375683222402317, 48.86295333894819], [2.375840685258241, 48.86291378063606], [2.376008872090015, 48.862871767962574], [2.376166334452126, 48.86283220921905], [2.376334520768619, 48.86279019518554], [2.376398457101918, 48.86281064218306]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 74, "zemmour_eric": 73.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-26", "circ_bv": "07", "num_bureau": 26, "roussel_fabien": 26.0, "nb_emargement": 1416.0, "nb_procuration": 90.0, "nb_vote_blanc": 15.0, "jadot_yannick": 146.0, "le_pen_marine": 58.0, "nb_exprime": 1398.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 6, "nb_inscrit": 1771.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1415, "quartier_bv": "42", "geo_point_2d": [48.86133945415156, 2.376289512608826], "melenchon_jean_luc": 443.0, "poutou_philippe": 5.0, "macron_emmanuel": 502.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291604429701444, 48.86910007338389], [2.291620571241569, 48.8690822961948], [2.291622365507145, 48.869072757547876], [2.291542263910936, 48.86896060433547], [2.291455014389328, 48.868838980885585], [2.291374913512901, 48.86872682753747], [2.291287664773677, 48.8686052039399], [2.2912075646170242, 48.86849305045605], [2.291120316659971, 48.86837142671078], [2.291040217223084, 48.86825927309127], [2.290952970048394, 48.868137649198296], [2.290872871331262, 48.868025495443064], [2.290785624938726, 48.86790387140238], [2.290705526929097, 48.86779171841075], [2.290705496164993, 48.867791675059735], [2.290615716930895, 48.86766479984939], [2.290535621030049, 48.86755264582862], [2.29044584260929, 48.86742577136274], [2.290365746078557, 48.86731361719595], [2.290345844511028, 48.86728549168403], [2.290341761189676, 48.86726821526948], [2.290332173262871, 48.8672651429038], [2.29026229728863, 48.867166393785205], [2.290189850574644, 48.867062040816364], [2.290100075217, 48.866935165143644], [2.290027629149541, 48.866830812054786], [2.29002024836262, 48.86681523651543], [2.290013285137162, 48.866813033174274], [2.28991032993548, 48.86667644801129], [2.289808536843954, 48.86654245346576], [2.289705584064698, 48.866405869000666], [2.2896037920407872, 48.86627187334894], [2.289585739122731, 48.866267785672484], [2.289401754068122, 48.86632566828704], [2.289222759792129, 48.86638211341834], [2.289038773930435, 48.86643999546895], [2.288859778868324, 48.86649644005157], [2.288675792199544, 48.866554321538196], [2.288496796351318, 48.866610765572176], [2.28831779875209, 48.866667209327474], [2.288133812241116, 48.866725089980115], [2.287954813855774, 48.86678153318669], [2.287770826537725, 48.86683941327539], [2.287763234681137, 48.866846104222745], [2.287730835898472, 48.86696938845481], [2.287697797478104, 48.867105044799814], [2.287700212839774, 48.8671117431361], [2.287798226081314, 48.867201127222614], [2.287899014863966, 48.86729312685132], [2.287997028787892, 48.867382510760365], [2.28809781827268, 48.867474510206584], [2.288195832878997, 48.86756389393817], [2.288296623065722, 48.86765589320184], [2.28829277970653, 48.86766879488459], [2.288180417305854, 48.8677149485633], [2.288097062151341, 48.86775068574586], [2.288081223801083, 48.867750010559476], [2.287943774712999, 48.86767579798942], [2.287807122098113, 48.86760258557243], [2.287669673777105, 48.867528373577], [2.287533021934175, 48.86745516083731], [2.287395574405034, 48.867380947617924], [2.287258923333956, 48.86730773455553], [2.28725157941581, 48.86730575992], [2.287052730788795, 48.86729368357646], [2.286855978482097, 48.867281636480314], [2.2866571300512932, 48.867269558580006], [2.286460377914885, 48.86725751173251], [2.286263625869478, 48.86724546456153], [2.286064777713992, 48.86723338567672], [2.285978761296865, 48.86723268998764], [2.285976031650176, 48.86724187494325], [2.285962209554431, 48.867296305624265], [2.285928993437234, 48.867428462841644], [2.285896422222029, 48.867556722507764], [2.285863205771884, 48.867688879675796], [2.285830634231774, 48.86781713929382], [2.285797416085524, 48.86794929640434], [2.285764844220702, 48.86807755597427], [2.28573162710464, 48.868209713043555], [2.285699054914904, 48.86833797256534], [2.285665837465878, 48.86847012958526], [2.285633264951322, 48.86859838905896], [2.285600047169327, 48.8687305460295], [2.285567474330048, 48.86885880545505], [2.285534254851904, 48.868990962368066], [2.2855016817001292, 48.869119220846244], [2.285468463239844, 48.86925137861731], [2.285435889763135, 48.869379637047345], [2.285402670969865, 48.86951179476902], [2.285376608177657, 48.86961441746234], [2.28537009716832, 48.86964005315092], [2.285395908058532, 48.869651987801404], [2.285457008709969, 48.86965399838188], [2.285655051746418, 48.86962991783797], [2.285852738985, 48.86960582225318], [2.286050781655349, 48.86958174105344], [2.28624846716485, 48.869557644805916], [2.286446509469091, 48.86953356295039], [2.286644195975887, 48.869509466056336], [2.286842236550819, 48.86948538353687], [2.2870399226918128, 48.86946128598822], [2.287237964263809, 48.869437202821096], [2.287435650038786, 48.8694131046178], [2.287633689881457, 48.86938902078675], [2.287831375290512, 48.86936492192888], [2.288029416130227, 48.86934083745012], [2.288227099810163, 48.869316737929495], [2.28842514027144, 48.86929265369424], [2.288622824948626, 48.869268553527114], [2.288820865056026, 48.869244467736806], [2.289018548004078, 48.86922036690693], [2.289216587745309, 48.86919628046085], [2.289414271690686, 48.86917217898449], [2.289612309702553, 48.86914809187449], [2.289809993281863, 48.8691239897435], [2.28982399622052, 48.86912802995654], [2.289870315090187, 48.86917639556215], [2.289918193903654, 48.869224140858755], [2.28993128867914, 48.86922810012571], [2.290135122870989, 48.869210945428655], [2.290341386235238, 48.86919369326865], [2.290545218794214, 48.86917653786461], [2.290751481886498, 48.869159284997416], [2.290955315538854, 48.869142128902524], [2.291161578359062, 48.86912487532809], [2.291365410378523, 48.86910771852619], [2.291571672914416, 48.86909046514382], [2.291604429701444, 48.86910007338389]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 153, "zemmour_eric": 241.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "16-62", "circ_bv": "04", "num_bureau": 62, "roussel_fabien": 5.0, "nb_emargement": 1230.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 26.0, "le_pen_marine": 80.0, "nb_exprime": 1221.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1523.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1233, "quartier_bv": "64", "geo_point_2d": [48.86818281843465, 2.2883452606850496], "melenchon_jean_luc": 115.0, "poutou_philippe": 2.0, "macron_emmanuel": 565.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339233678113393, 48.87678668404288], [2.339249466521938, 48.87681638362478], [2.339256388871439, 48.87683970114404], [2.339268318893229, 48.87688292792086], [2.339264988756017, 48.876898663207264], [2.33927721371077, 48.87691176475647], [2.339302258878717, 48.877002502978165], [2.339335548967219, 48.87712688946867], [2.339372523183194, 48.87726085350522], [2.33940581496804, 48.87738523995456], [2.339442789548054, 48.87751920393802], [2.339476081665855, 48.87764359033866], [2.33951305659871, 48.877777555168294], [2.339546349060775, 48.877901940620944], [2.339549883987007, 48.87790521391717], [2.339610051717123, 48.877900620186246], [2.339812152895104, 48.877867340726695], [2.340012826303675, 48.87783416367316], [2.340214926966409, 48.87780088353163], [2.3404155998508562, 48.877767706700205], [2.340617699998338, 48.877734425876696], [2.3408183723816363, 48.87770124746886], [2.341020472013855, 48.87766796596345], [2.341221143884399, 48.87763478687845], [2.341421815487997, 48.87760160835534], [2.341623914347964, 48.87756832582821], [2.341824585450171, 48.877535145728714], [2.3420266837948542, 48.87750186251958], [2.342031868610411, 48.87750017508534], [2.342191658495501, 48.87741632596095], [2.34236517749661, 48.8773279861163], [2.342381806647505, 48.877327969547004], [2.342555291502408, 48.87741575324755], [2.342725718883681, 48.877502114238865], [2.342899204898303, 48.87758989742715], [2.34306963341958, 48.87767625791517], [2.343243120605266, 48.87776403969194], [2.34341355026675, 48.87785039967671], [2.343424632059469, 48.877852072963414], [2.34361867548317, 48.87782546632339], [2.343807756819249, 48.87779843916095], [2.344001799847402, 48.87777183189862], [2.344190880778624, 48.87774480502906], [2.344384923422543, 48.87771819624521], [2.344574003960231, 48.877691168769175], [2.344608184150194, 48.877688539184454], [2.344612600883192, 48.877667920034995], [2.344612501464026, 48.877667585837514], [2.344567945891111, 48.87753147849201], [2.344522734362851, 48.87739529107665], [2.344478177905482, 48.87725918275736], [2.344432966836897, 48.87712299617377], [2.344388412210455, 48.876986887794885], [2.344343201612955, 48.87685070114377], [2.344298647454027, 48.87671459269787], [2.344253437338926, 48.87657840507994], [2.344261940613009, 48.876536217955405], [2.344223141173595, 48.87653023258011], [2.344072625792349, 48.87653366630793], [2.343899246343672, 48.87653571546623], [2.343702751582983, 48.8765401971577], [2.3435293734614, 48.876542245787775], [2.343332878644353, 48.87654672687214], [2.343159499123002, 48.876548774959026], [2.343158482158421, 48.87654876128496], [2.342939783803272, 48.87654056696316], [2.34274002852684, 48.87652941221163], [2.342540273324619, 48.87651825802587], [2.342321575206181, 48.87651006167522], [2.342319481075312, 48.87651005106946], [2.342114303177546, 48.87651943689051], [2.341917715929708, 48.87652712757239], [2.34171253790364, 48.8765365118054], [2.341515950532135, 48.876544201827365], [2.341310772366421, 48.87655358537164], [2.341114184859679, 48.87656127563302], [2.340909006554325, 48.87657065848855], [2.340712418935308, 48.87657834719073], [2.340515831258148, 48.87658603557006], [2.34031065274747, 48.87659541739987], [2.3403100728293, 48.87659545287554], [2.340150890044966, 48.87660884801751], [2.339917387299548, 48.87662616077458], [2.33975820430897, 48.87663955629335], [2.339524702658742, 48.87665686829149], [2.339365519484728, 48.87667026238839], [2.339318957487404, 48.87667218900916], [2.33930710857851, 48.87668404791118], [2.339276753475662, 48.87672836153495], [2.339246855579359, 48.87677403297245], [2.339233678113393, 48.87678668404288]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 81, "zemmour_eric": 90.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "9-20", "circ_bv": "01", "num_bureau": 20, "roussel_fabien": 9.0, "nb_emargement": 1224.0, "nb_procuration": 105.0, "nb_vote_blanc": 15.0, "jadot_yannick": 123.0, "le_pen_marine": 56.0, "nb_exprime": 1206.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1487.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1224, "quartier_bv": "36", "geo_point_2d": [48.87713183160945, 2.3419050777752193], "melenchon_jean_luc": 245.0, "poutou_philippe": 5.0, "macron_emmanuel": 537.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294327533468581, 48.83294358921089], [2.294320131385568, 48.83292783344097], [2.294239114050941, 48.8328096108992], [2.294157752382485, 48.832690787271275], [2.294076735784514, 48.8325725645945], [2.293995376218269, 48.83245374083902], [2.293914358994825, 48.832335518019214], [2.29383300018084, 48.83221669322882], [2.293751985056255, 48.83209847028201], [2.293670625607941, 48.83197964624732], [2.293589611219983, 48.831861423165485], [2.293508252511733, 48.831742598995184], [2.293427238860396, 48.83162437577838], [2.293345882266589, 48.83150555058123], [2.293264867977472, 48.83138732812066], [2.293183512123705, 48.831268502787914], [2.293102499945475, 48.831150279301106], [2.293021143457457, 48.831031454724034], [2.29302002200094, 48.83102876525161], [2.292991921981784, 48.83086537469341], [2.29295867181155, 48.830692614517915], [2.292948245761853, 48.83067629123018], [2.292920974367815, 48.8306818347564], [2.2928496075481872, 48.83070276853596], [2.292848352646517, 48.83070318921999], [2.292672713089962, 48.83076887003535], [2.29251055627753, 48.830830373594345], [2.292334915866982, 48.83089605390621], [2.292172759622498, 48.83095755700829], [2.291997118357858, 48.831023236816584], [2.291834959944842, 48.831084740344984], [2.291659317826105, 48.83115041964979], [2.291497158631168, 48.83121192181387], [2.291321515658338, 48.83127760061514], [2.291159355669369, 48.831339102314274], [2.291136784299235, 48.83134659795708], [2.291125184955413, 48.831356380989334], [2.2911291577499, 48.831364767847376], [2.291378980559435, 48.83167315900054], [2.291378110711916, 48.83167822183741], [2.289847134746422, 48.83284444875595], [2.289843387608178, 48.83284730451176], [2.289840949131663, 48.83284999895492], [2.289840841466025, 48.832855801991755], [2.289839954836574, 48.83285888428657], [2.289840725954959, 48.832861980921265], [2.289843061887865, 48.832864713605986], [2.290534633587472, 48.83341998162225], [2.290545835082527, 48.83342706049958], [2.290566584771668, 48.83342626171663], [2.290585659397284, 48.83341310546311], [2.290702034664613, 48.83333386632407], [2.2908373188906, 48.833241996825414], [2.29097441283736, 48.83314864942978], [2.291109696114884, 48.8330567787085], [2.291246789074572, 48.832963431884544], [2.291382071391404, 48.832871560840054], [2.29151916202625, 48.83277821278107], [2.291654443370178, 48.83268634231259], [2.2917915343924298, 48.832592993934064], [2.291926814787901, 48.832501122243016], [2.291945679034771, 48.832500696094066], [2.292059205603409, 48.83256791837989], [2.292156470992691, 48.83262527439022], [2.292160998535432, 48.832631953872244], [2.29216128916261, 48.832742580678854], [2.292160829596229, 48.83285287386303], [2.292161118862147, 48.83296350063977], [2.292160659293358, 48.833073793802214], [2.29216094992228, 48.83318442056518], [2.292160488989145, 48.83329471369783], [2.292165026853397, 48.83330144000398], [2.292327831471092, 48.83339763019184], [2.292488465256258, 48.833492706469244], [2.292651271068225, 48.833588896200474], [2.2928119060325862, 48.83368397202727], [2.292974713038733, 48.83378016130176], [2.293135349182399, 48.833875236677926], [2.293295985912126, 48.83397031183031], [2.29345879470581, 48.83406650042132], [2.293473576252004, 48.8340742369227], [2.293489917890305, 48.83406879150335], [2.293604592134546, 48.833998339042516], [2.293721975161315, 48.83392582041098], [2.29383664876523, 48.83385536861797], [2.293954032509387, 48.8337828497575], [2.29397402650471, 48.83378383747775], [2.294084262094099, 48.833875870054904], [2.294192013021662, 48.8339662015302], [2.294302249381551, 48.83405823389148], [2.294410001063812, 48.834148565155736], [2.294420973379002, 48.83415199264611], [2.294649025355841, 48.83414900454779], [2.294864245112667, 48.83414653395156], [2.295079463486925, 48.8341440629601], [2.295307515391315, 48.83414107360626], [2.295324695367848, 48.83413356341528], [2.295326756765869, 48.83412700113005], [2.295309342805958, 48.83410878872142], [2.295199181452876, 48.8339943444223], [2.295092778758079, 48.83388306277678], [2.294986376505406, 48.83377178192482], [2.294876215211303, 48.83365733728575], [2.29476981525599, 48.83354605532747], [2.294659654914347, 48.83343161046585], [2.294553254519921, 48.833320328284465], [2.29444309513073, 48.83320588320035], [2.294336695647159, 48.83309460170315], [2.2942265385847183, 48.83298015550524], [2.294234355576718, 48.83296667322018], [2.294278262994268, 48.832958538427], [2.294313830805521, 48.83295167199873], [2.294327533468581, 48.83294358921089]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 103, "zemmour_eric": 114.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-53", "circ_bv": "13", "num_bureau": 53, "roussel_fabien": 20.0, "nb_emargement": 1227.0, "nb_procuration": 66.0, "nb_vote_blanc": 16.0, "jadot_yannick": 103.0, "le_pen_marine": 88.0, "nb_exprime": 1206.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1584.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1226, "quartier_bv": "57", "geo_point_2d": [48.83254212377506, 2.2926021029785333], "melenchon_jean_luc": 282.0, "poutou_philippe": 3.0, "macron_emmanuel": 431.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303524697028979, 48.85882295564071], [2.303492928655909, 48.858815282718446], [2.30341123051846, 48.85879215154604], [2.303307109994738, 48.858757285410434], [2.303292838188608, 48.85875880586831], [2.303275742884224, 48.85877719885716], [2.303100402737253, 48.85884804345194], [2.302929442293411, 48.85891739698934], [2.3027541012156902, 48.85898824016849], [2.302583139850864, 48.85905759320238], [2.302407796467648, 48.859128435857265], [2.302236834181833, 48.859197788387654], [2.302061491218863, 48.85926863053408], [2.301890528012062, 48.859337982560966], [2.301719564350126, 48.85940733433933], [2.301544219978625, 48.859478175714436], [2.301373255395702, 48.85954752698927], [2.301197910069462, 48.8596183687473], [2.301026944577612, 48.859687718619334], [2.30085159694575, 48.85975855985304], [2.300819828017728, 48.85976350865323], [2.30081526794902, 48.859779612816375], [2.300826249153658, 48.85981135130857], [2.300871479091803, 48.85994222417036], [2.30091600379507, 48.86007092004078], [2.3009612328331253, 48.86020179193079], [2.301005759342873, 48.86033048774567], [2.301050988819755, 48.860461360470374], [2.301095515773048, 48.86059005622177], [2.301140745700629, 48.8607209288819], [2.301185271734507, 48.86084962456179], [2.301230503487923, 48.86098049626606], [2.301275029965453, 48.861109191882434], [2.301320262157627, 48.8612400644214], [2.301364789078614, 48.86136875997424], [2.301410021721614, 48.86149963244864], [2.301454549098324, 48.86162832703868], [2.301499782192157, 48.86175919944855], [2.301544310000278, 48.86188789487429], [2.3015895435449503, 48.86201876721957], [2.301634071796649, 48.86214746258179], [2.301678600268439, 48.86227615791249], [2.301723834499605, 48.862407029261874], [2.30176836341488, 48.862535724529046], [2.301813598084849, 48.862666596713126], [2.301813911299642, 48.86266916169118], [2.301801776853571, 48.86279630950599], [2.301790826232015, 48.8629240146147], [2.301778691670143, 48.86305116239796], [2.30176774093843, 48.863178867475156], [2.301755606260959, 48.8633060152268], [2.301744655431142, 48.86343371937327], [2.301730742060196, 48.863471960420064], [2.301743498269755, 48.863490458940426], [2.3017886510750962, 48.863491310549485], [2.301940280210197, 48.86349416824552], [2.302140965860402, 48.86349800071724], [2.302337747869669, 48.86350170846949], [2.302538433566215, 48.863505541173986], [2.302735214269212, 48.86350924826474], [2.302935900036073, 48.86351307940344], [2.303132682158858, 48.86351678584856], [2.303333367971853, 48.863520617220054], [2.303530150151385, 48.863524323011646], [2.3037308360347613, 48.863528152817324], [2.303927616907987, 48.863531857947414], [2.304128302837592, 48.86353568798589], [2.304325085130581, 48.86353939247036], [2.304525771130432, 48.86354322094301], [2.304722553480032, 48.863546924773985], [2.304923238163067, 48.86355075347146], [2.305120020569476, 48.86355445664884], [2.30532070668576, 48.863558283788464], [2.305430440312914, 48.86356034886172], [2.305451234853161, 48.863555123807345], [2.305435410843414, 48.863496812544746], [2.305437173811082, 48.86336642060128], [2.305439248616839, 48.86323717622452], [2.305441011566117, 48.86310678425039], [2.3054430863521143, 48.86297753984331], [2.305444849283, 48.86284714783856], [2.305446924049035, 48.86271790340113], [2.30544868696153, 48.862587511365774], [2.305450760344799, 48.86245826689004], [2.305452835080683, 48.86232902240715], [2.305454597977215, 48.86219862942667], [2.30545667269324, 48.862069384913404], [2.305458435559391, 48.86193899280161], [2.30546051025566, 48.86180974825802], [2.30546227310332, 48.86167935611561], [2.305464346416743, 48.861550111533745], [2.305466109246119, 48.86141971936075], [2.30546818390257, 48.861290474756466], [2.305469946713557, 48.86116008255288], [2.305470609600767, 48.861157391042084], [2.305529172790928, 48.86103810179421], [2.305592590845093, 48.86090838570821], [2.305651153488053, 48.86078909547456], [2.3057145695604753, 48.86065938018619], [2.3057731316442602, 48.8605400898661], [2.305836547121889, 48.86041037358464], [2.305895108634525, 48.86029108407733], [2.305958524868331, 48.86016136771001], [2.306017085833784, 48.86004207721698], [2.306080500097877, 48.859912360748005], [2.306139060492201, 48.85979307106778], [2.306202475512475, 48.85966335451294], [2.306242879586777, 48.859581047020605], [2.306257298919176, 48.859574394457724], [2.306260460341782, 48.8595565390394], [2.306278614718708, 48.85951955675363], [2.306298994557129, 48.859472565871236], [2.306289951005462, 48.85946150716112], [2.306083649715205, 48.8594190190576], [2.305892406909809, 48.85938024323266], [2.305686104890608, 48.85933775533209], [2.305494862679466, 48.859298978868985], [2.305303619389962, 48.85926020209102], [2.305097319701143, 48.85921771227946], [2.30508810366671, 48.85921797263658], [2.304916724318664, 48.859264177187846], [2.304744896204332, 48.859311711728225], [2.3047339039370778, 48.85931157951323], [2.304561216549001, 48.85925885785296], [2.304398001422208, 48.85920886387871], [2.304225314714575, 48.859156141728874], [2.304062100243776, 48.85910614639259], [2.303898886074295, 48.85905615173071], [2.303726201740687, 48.859003428861314], [2.303721145105021, 48.859000769728745], [2.303633221913792, 48.858919499730206], [2.303527893590816, 48.85882966004331], [2.303524697028979, 48.85882295564071]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 177, "zemmour_eric": 166.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "7-21", "circ_bv": "02", "num_bureau": 21, "roussel_fabien": 11.0, "nb_emargement": 1163.0, "nb_procuration": 92.0, "nb_vote_blanc": 6.0, "jadot_yannick": 33.0, "le_pen_marine": 68.0, "nb_exprime": 1154.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1448.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1163, "quartier_bv": "28", "geo_point_2d": [48.86119388226026, 2.303524456773725], "melenchon_jean_luc": 118.0, "poutou_philippe": 1.0, "macron_emmanuel": 553.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.398539669568632, 48.864803380346224], [2.398569366656706, 48.8647911240843], [2.398663891018213, 48.864669826567855], [2.398757806138384, 48.864550137523224], [2.398852329613617, 48.86442884073082], [2.398946243866431, 48.864309151512295], [2.399040767839021, 48.86418785365223], [2.399134679861522, 48.864068164252984], [2.39913477256472, 48.86406804510605], [2.399229294287565, 48.86394674796311], [2.3993237756786883, 48.86382181719413], [2.399418296514738, 48.863700519874975], [2.399512778369132, 48.863575588935845], [2.399607298318294, 48.863454291440505], [2.399684100394498, 48.86335273546491], [2.39970065523062, 48.86333428397665], [2.399654630180606, 48.863315471815476], [2.399582649574684, 48.86329968611039], [2.3995032020451053, 48.86327963509142], [2.399494763742536, 48.86326929079433], [2.39953592451462, 48.863146715612714], [2.399579402483363, 48.86301431233222], [2.399620562844498, 48.8628917379926], [2.3996640403854532, 48.862759334650896], [2.39970520035627, 48.86263675935469], [2.399748678822002, 48.862504356857855], [2.3997898383923433, 48.86238178150434], [2.399833315077429, 48.86224937804021], [2.399882574059265, 48.862096351941474], [2.399926050270584, 48.86196394840954], [2.399975308710167, 48.86181092223321], [2.400018784447524, 48.8616785186335], [2.400018930100249, 48.86167522147388], [2.399991290988391, 48.86155264187772], [2.399961888113777, 48.86142888786909], [2.399934250619341, 48.86130630913868], [2.399904848019339, 48.86118255508853], [2.39987720943715, 48.86105997541155], [2.399847808474639, 48.860936221326774], [2.399839338481029, 48.86092924671118], [2.399642512396499, 48.86087808779163], [2.399454601731994, 48.86082887089887], [2.399266691422512, 48.8607796537089], [2.39907701484531, 48.86072997498095], [2.398889105249212, 48.86068075719375], [2.3986994293920922, 48.8606310778629], [2.398511520509381, 48.860581859478394], [2.398321845372346, 48.86053217954467], [2.398133937203029, 48.86048296056293], [2.397944262786085, 48.86043328002632], [2.397756355330062, 48.860384060447295], [2.397566681643715, 48.86033437840856], [2.397378774890695, 48.86028515913157], [2.397189101924352, 48.860235476489954], [2.39700119589524, 48.86018625571644], [2.3968115236386, 48.86013657337124], [2.396780985147456, 48.8601388170929], [2.396780487373782, 48.86015744090296], [2.396674177154104, 48.860266808443946], [2.396565237684124, 48.86037907739844], [2.396458926560356, 48.860488444726386], [2.396349984800138, 48.860600713455604], [2.396243672772269, 48.86071008057045], [2.396134730084767, 48.86082234908128], [2.396028417142362, 48.860931716882334], [2.39591947489055, 48.86104398518168], [2.395813161054448, 48.861153351870335], [2.395704216512351, 48.86126561994436], [2.395597901772118, 48.86137498641995], [2.395488956302707, 48.861487254275566], [2.395382640658332, 48.86159662053808], [2.395273695624598, 48.8617088881822], [2.395167379076074, 48.861818254231586], [2.395058431752008, 48.8619305216504], [2.395005471040535, 48.86198500143159], [2.394999506414698, 48.861985223094436], [2.39498021746589, 48.86200448933296], [2.394926862041025, 48.8620593753827], [2.394824988766816, 48.86216442153849], [2.394718670346769, 48.86227378714431], [2.394616796233525, 48.86237883310257], [2.394510476938884, 48.86248819850228], [2.3944086033496212, 48.86259324426984], [2.394302283180279, 48.86270260946348], [2.39420040738894, 48.862807655026586], [2.394094086334629, 48.862917020913365], [2.393992209714687, 48.86302206537966], [2.393885887785749, 48.8631314310603], [2.393784011679317, 48.86323647623526], [2.39367768888611, 48.86334584081047], [2.39357581057756, 48.863450885780914], [2.393469486909814, 48.86356025015002], [2.393367609125228, 48.863665294929824], [2.393261284582835, 48.86377465909281], [2.3931594045961, 48.86387970366812], [2.393053079178947, 48.86398906762497], [2.392951198353207, 48.86409411200271], [2.392957099894723, 48.86410716350077], [2.393137898301379, 48.86416069547782], [2.393315785194153, 48.86421319526334], [2.393496585710889, 48.86426672580106], [2.3936744733272732, 48.864319225048405], [2.393855273217472, 48.86437275503224], [2.39403316155736, 48.86442525374144], [2.394213963536704, 48.86447878408448], [2.394391852610553, 48.864531281356214], [2.394572653963354, 48.86458481114539], [2.394750543750145, 48.86463730877826], [2.394931347213105, 48.86469083712804], [2.395109237723392, 48.864743334222716], [2.395287127229216, 48.86479583104366], [2.395467931793571, 48.86484935857515], [2.395473459730169, 48.86485014644025], [2.39565250031862, 48.8648506009891], [2.395829815758329, 48.8648512399195], [2.39600885636407, 48.864851693035966], [2.396186171811763, 48.86485233143843], [2.396365212413933, 48.86485278492112], [2.396542527880225, 48.86485342189633], [2.396719841977353, 48.8648540595013], [2.396898883963597, 48.86485451129321], [2.397076198068793, 48.864855148370204], [2.397255238688377, 48.864855600521416], [2.397257410076705, 48.864855490945374], [2.397464116876905, 48.86483403298478], [2.397678978915415, 48.864812479010894], [2.3976809484745543, 48.864812376505476], [2.397881773149765, 48.86481142465949], [2.398086211002094, 48.86481063364343], [2.398287035663076, 48.864809681117436], [2.398491472139422, 48.864808889402276], [2.398539669568632, 48.864803380346224]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 48, "zemmour_eric": 64.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-60", "circ_bv": "06", "num_bureau": 60, "roussel_fabien": 25.0, "nb_emargement": 1112.0, "nb_procuration": 70.0, "nb_vote_blanc": 13.0, "jadot_yannick": 107.0, "le_pen_marine": 58.0, "nb_exprime": 1093.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1352.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1112, "quartier_bv": "79", "geo_point_2d": [48.8627805641203, 2.396970941251026], "melenchon_jean_luc": 419.0, "poutou_philippe": 10.0, "macron_emmanuel": 299.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.266766355811822, 48.84905702843451], [2.266750823611015, 48.84904043977498], [2.26667271955647, 48.84901165084017], [2.266655003104463, 48.84900511987795], [2.26659660401541, 48.84900812104062], [2.26658421765942, 48.849018700798716], [2.266447369932416, 48.84900200871611], [2.266265556274516, 48.848987218086414], [2.266051268981339, 48.84897065228531], [2.265869455545262, 48.848955861053255], [2.265655169869491, 48.8489392945506], [2.265473356655245, 48.84892450271628], [2.265259069859014, 48.84890793639465], [2.265077258229254, 48.848893143966365], [2.265061967450481, 48.84890228383101], [2.265066834842501, 48.84903681122177], [2.265072186634537, 48.84916810745176], [2.265077054077766, 48.84930263480999], [2.265082405910166, 48.84943393190745], [2.265087273417389, 48.849568458333856], [2.265092625302837, 48.84969975539952], [2.265097492848486, 48.84983428269265], [2.265102844799666, 48.84996557882724], [2.265100989464849, 48.84997035655095], [2.2649931229221902, 48.850092225261875], [2.26488527861033, 48.85021509049832], [2.264777409694038, 48.850336958979554], [2.264669564367099, 48.85045982399458], [2.264561695802326, 48.85058169226293], [2.264453849460402, 48.850704557056474], [2.264345979884553, 48.85082642510354], [2.264238131164828, 48.85094928966726], [2.264130260577787, 48.85107115749307], [2.264022412205647, 48.8511940218437], [2.264020653364334, 48.85119948365672], [2.264038334516396, 48.85130889485622], [2.264056097022006, 48.85141901614061], [2.264073778310172, 48.85152842821257], [2.264091542328134, 48.85163854947834], [2.2641092237780143, 48.85174796062417], [2.264126987945719, 48.85185808186294], [2.2641221986655182, 48.85186592184085], [2.264076935491045, 48.851890997415914], [2.264032019666858, 48.85191859063054], [2.26401426659787, 48.851942683308266], [2.264036260187579, 48.851955201931595], [2.264130631718302, 48.852085279946614], [2.26424083543555, 48.85223246129009], [2.26426770139065, 48.852269491400406], [2.264273805347118, 48.85229305448228], [2.264289524780833, 48.85229755352325], [2.264357030094536, 48.852390600311836], [2.264442311456647, 48.85251036669266], [2.264536684993621, 48.852640445221766], [2.264621965814799, 48.85276021143922], [2.264716340265529, 48.85289028889811], [2.264801621908522, 48.85301005496066], [2.264822891656124, 48.8530152895335], [2.264856422270267, 48.85298956602138], [2.264969896846877, 48.852892497918525], [2.26509832638421, 48.852784254337564], [2.265211800075782, 48.8526871850881], [2.265340228604594, 48.85257894122755], [2.2654537000230333, 48.85248187262163], [2.265582127556016, 48.852373627582146], [2.265695599439497, 48.852276558737366], [2.265824025963974, 48.85216831341824], [2.265937496949761, 48.8520712443261], [2.266065921090349, 48.85196299961828], [2.2661793911911188, 48.85186592937954], [2.266217751514322, 48.851867599125065], [2.266228923807177, 48.851809829569234], [2.266228903917844, 48.85180891929128], [2.266212952162537, 48.851648750017915], [2.266193262815269, 48.85148660977403], [2.266194479049344, 48.851482115017646], [2.266276972143606, 48.85136407486176], [2.2663653116433, 48.85123807244217], [2.266447805339627, 48.851120031251725], [2.266536144012435, 48.85099402867838], [2.266545347450711, 48.85098905765087], [2.2667053334329452, 48.85096385148967], [2.266871050635713, 48.850935099863484], [2.267031037657445, 48.8509098932739], [2.267196754496164, 48.85088114209452], [2.267206909602893, 48.850872742172704], [2.267213157242727, 48.85074846220712], [2.267218962303934, 48.8506236722754], [2.267225209885059, 48.850499392281364], [2.267231014902305, 48.85037460142179], [2.267237261062244, 48.85025032139099], [2.267243067372919, 48.850125531410576], [2.26724931347426, 48.850001251351316], [2.267255118378192, 48.84987646043472], [2.267269587350131, 48.84985811026394], [2.267256022243441, 48.849841836817326], [2.267171346516936, 48.8497195567552], [2.267080457256883, 48.84958592184073], [2.266995780982857, 48.849463642517215], [2.266904892619464, 48.84933000743864], [2.266820217185875, 48.84920772706345], [2.266729329718926, 48.8490740918208], [2.266766355811822, 48.84905702843451]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 170, "zemmour_eric": 192.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-26", "circ_bv": "14", "num_bureau": 26, "roussel_fabien": 4.0, "nb_emargement": 1196.0, "nb_procuration": 72.0, "nb_vote_blanc": 5.0, "jadot_yannick": 45.0, "le_pen_marine": 62.0, "nb_exprime": 1187.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1502.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1197, "quartier_bv": "61", "geo_point_2d": [48.85076641333272, 2.2656103918934827], "melenchon_jean_luc": 94.0, "poutou_philippe": 2.0, "macron_emmanuel": 600.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.32420249910148, 48.84317461911384], [2.324269903985266, 48.84314388814867], [2.324305729541796, 48.84301909679187], [2.32434194438479, 48.842899789239034], [2.324377769600941, 48.84277499783336], [2.324413985483566, 48.84265568934103], [2.324449808997048, 48.84253089787879], [2.324486024533494, 48.842411590237894], [2.324521849069097, 48.842286798734456], [2.324558062920195, 48.84216749013865], [2.324593887115534, 48.84204269858634], [2.324630101982944, 48.841923390849615], [2.324666316684657, 48.84180408308919], [2.324702139020204, 48.84167929055687], [2.32473835338731, 48.84155998274852], [2.324774176733419, 48.84143519107433], [2.324773523973426, 48.841416163099915], [2.3247769974814823, 48.841412661688054], [2.3247705718648772, 48.841396561841336], [2.32476735724508, 48.8413027802831], [2.324761563720108, 48.84114944521524], [2.324757696382299, 48.841036635655], [2.324751901564535, 48.840883299643124], [2.324748034267387, 48.84077049005571], [2.324754140078863, 48.8407627854723], [2.324904564064635, 48.840697122727946], [2.325056705530196, 48.840630639367774], [2.325207128753313, 48.840564976235186], [2.325359269447205, 48.84049849248233], [2.325364642730813, 48.84049389734297], [2.325368017459073, 48.84048738787219], [2.325432174082056, 48.84036327461542], [2.325490156228285, 48.840251424439785], [2.325551511457272, 48.8401330638399], [2.325615667195546, 48.84000895134464], [2.325677023216515, 48.83989059066229], [2.325741178357469, 48.83976647807277], [2.32580253244558, 48.83964811729271], [2.325866688351637, 48.83952400461663], [2.32592804185769, 48.83940564464581], [2.325992195804032, 48.839281531867776], [2.326053550113702, 48.83916317091528], [2.326117703462646, 48.83903905804302], [2.326179055839601, 48.83892069699278], [2.326243208591261, 48.83879658402628], [2.326304561760204, 48.83867822289365], [2.326368713914585, 48.8385541098329], [2.326430065150738, 48.838435748602556], [2.32647888590474, 48.83834129753431], [2.326468449655675, 48.83832673375835], [2.326445620913481, 48.83832384145534], [2.3262570152803193, 48.83827931011493], [2.326069405446297, 48.838234920788], [2.325880800456406, 48.838190388850876], [2.32569319126283, 48.83814599893037], [2.325504586916014, 48.83810146639652], [2.325316977000516, 48.83805707587476], [2.325128374659355, 48.83801254275188], [2.324940765384317, 48.837968151636495], [2.324752163697887, 48.837923617017644], [2.324564555063318, 48.837879225308725], [2.324375952646163, 48.83783469098475], [2.324188346014432, 48.83779029868995], [2.32399974424037, 48.83774576376928], [2.323812138249112, 48.837701370880914], [2.32362453121515, 48.83765697768882], [2.323435930405211, 48.83761244187391], [2.323248325373993, 48.83756804809597], [2.323059725207365, 48.83752351168435], [2.322981006320095, 48.83750263968826], [2.322965544490756, 48.83751697446126], [2.322936580730002, 48.83758817098082], [2.322906217586405, 48.83766031739623], [2.32289451568672, 48.837670692833385], [2.322890543427269, 48.83767966493956], [2.322869223943291, 48.8377303208423], [2.322820026084741, 48.83785155429829], [2.322768344283462, 48.83797435834716], [2.322719144609354, 48.8380955908282], [2.322667462328532, 48.83821839480665], [2.322618263540033, 48.838339628126725], [2.32256658079115, 48.83846243113551], [2.3225173801753822, 48.83858366437991], [2.322465696946946, 48.83870646731824], [2.322416497228473, 48.83882770050239], [2.322364813520275, 48.83895050337036], [2.322315611974508, 48.83907173647881], [2.322263927786744, 48.83919453927637], [2.322214727138271, 48.83931577232453], [2.322163042470733, 48.839438575051666], [2.322113839994941, 48.83955980802419], [2.322062154847723, 48.83968261068091], [2.3220129532693248, 48.839803843593145], [2.321961267630722, 48.83992664707874], [2.321912064236578, 48.84004787901598], [2.321880113693971, 48.84012379157421], [2.321846134667822, 48.84014951511715], [2.32184832217711, 48.84016621707829], [2.321828586568455, 48.84021310702895], [2.32178516730587, 48.84032327888255], [2.321733480627192, 48.84044608131331], [2.321690060981204, 48.84055625221011], [2.321638373835815, 48.84067905547346], [2.321594952432269, 48.84078922630504], [2.3215432648433643, 48.840912028602354], [2.321521892105984, 48.840966258814106], [2.321498887053822, 48.84099536674488], [2.321536454130945, 48.841024296595904], [2.321668445009129, 48.84113024044296], [2.321798586725913, 48.8412360315477], [2.321928728982602, 48.84134182160157], [2.322060721462257, 48.84144776498567], [2.32219086614216, 48.84155355474202], [2.322322859690859, 48.841659497816764], [2.322453004057471, 48.84176528815947], [2.3225849986751212, 48.84187123092487], [2.322715144114195, 48.841977020063005], [2.322847139801008, 48.84208296251913], [2.322977286300762, 48.84218875135199], [2.323109283044966, 48.842294694398056], [2.323239431967999, 48.84240048293338], [2.323371429792969, 48.842506424770804], [2.323501578414317, 48.84261221299312], [2.323633577308379, 48.84271815452121], [2.32376372697897, 48.8428239433376], [2.323895726942034, 48.8429298845563], [2.324025877685116, 48.84303567216809], [2.324157878717393, 48.84314161307746], [2.324196558126205, 48.8431730512364], [2.32420249910148, 48.84317461911384]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 98, "zemmour_eric": 95.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "14-33", "circ_bv": "11", "num_bureau": 33, "roussel_fabien": 23.0, "nb_emargement": 1249.0, "nb_procuration": 94.0, "nb_vote_blanc": 12.0, "jadot_yannick": 141.0, "le_pen_marine": 40.0, "nb_exprime": 1227.0, "nb_vote_nul": 9.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1572.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1248, "quartier_bv": "53", "geo_point_2d": [48.839985121428455, 2.3238367226072794], "melenchon_jean_luc": 281.0, "poutou_philippe": 6.0, "macron_emmanuel": 478.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.395357761111863, 48.87526701909679], [2.395306076001185, 48.87526427137008], [2.395190082643845, 48.875255663337015], [2.395002053767295, 48.87526732812093], [2.394815452235896, 48.875277707485466], [2.394627423195868, 48.875289371680665], [2.394440822884657, 48.87529974956866], [2.394252793670704, 48.875311414074474], [2.394066191842524, 48.875321791371455], [2.393878162465103, 48.87533345528854], [2.393691560483318, 48.87534383200132], [2.393503530942438, 48.87535549532979], [2.3933169288070593, 48.87536587145835], [2.393128899113206, 48.87537753329889], [2.392942296813761, 48.875387909742535], [2.392754266956471, 48.87539957099439], [2.3925676645034413, 48.87540994685392], [2.392433171017569, 48.87541828731714], [2.392406264069194, 48.87542505672191], [2.392410817484746, 48.875457114946286], [2.392267163707583, 48.875573949127876], [2.392137225779367, 48.87567929725881], [2.392134787257279, 48.87568765316091], [2.3921882291779433, 48.87580053527585], [2.392241229653592, 48.87591095723905], [2.392294672034073, 48.8760238392836], [2.392347672952028, 48.876134262076576], [2.392401115792332, 48.876247144050744], [2.392454117173684, 48.876357565874976], [2.392507117405995, 48.876467988557025], [2.3925605609343013, 48.87658087042585], [2.39256115891605, 48.876582906848164], [2.392572121638525, 48.87667860185505], [2.392583547287828, 48.876773069815684], [2.392594511454761, 48.87686876481094], [2.392605937176004, 48.876963233652454], [2.392612746620752, 48.87698132676768], [2.392635553213834, 48.87698144248096], [2.392806214468215, 48.87691842155106], [2.3929690799283803, 48.87685825129551], [2.393139740375533, 48.8767952298831], [2.393302605065164, 48.87673505916705], [2.393465469388961, 48.8766748873269], [2.393636128634655, 48.87661186519634], [2.393798992177441, 48.87655169379503], [2.393969650615905, 48.87648867118197], [2.394132513388157, 48.87642849932015], [2.39430317101939, 48.87636547622461], [2.394466033021108, 48.87630530390235], [2.394636689845111, 48.876242280324306], [2.394675890718272, 48.87622779696975], [2.394697059445565, 48.87622451442998], [2.394701619514695, 48.87621882043801], [2.394825279828833, 48.87617313098292], [2.394954370340407, 48.87612487247538], [2.39511723083745, 48.876064699254094], [2.395246320809769, 48.876016440427], [2.395259581839951, 48.87601641658678], [2.395423114988373, 48.87607606607722], [2.3955879338665182, 48.8761363342755], [2.395751466404119, 48.87619598330405], [2.395916287415497, 48.87625625015132], [2.396079820705653, 48.87631589872481], [2.3962446424661232, 48.87637616601269], [2.396408176508836, 48.87643581413116], [2.396572997675658, 48.876496080054274], [2.396736533834314, 48.87655572772456], [2.396901355750135, 48.87661599408827], [2.397064892661349, 48.87667564130355], [2.397229715346997, 48.87673590630938], [2.397393253010767, 48.87679555306954], [2.397558076445426, 48.87685581851598], [2.397721614861752, 48.876915464821145], [2.397886439066226, 48.87697572890965], [2.397912346647039, 48.87697497697145], [2.397917044260168, 48.8769719851429], [2.397918095844849, 48.87688691646241], [2.397920359435051, 48.876765765531175], [2.397921980840958, 48.87663458831547], [2.397924244411056, 48.876513437356415], [2.39792586580982, 48.87638225921138], [2.397928129359915, 48.87626110822451], [2.397929750730542, 48.87612993094867], [2.397932014271131, 48.87600877903477], [2.397933635624119, 48.87587760172887], [2.3979358991342092, 48.87575645068643], [2.3979375204800553, 48.875625272451195], [2.397939783970143, 48.87550412138097], [2.397965541550699, 48.8754652091363], [2.397944228342628, 48.87545744593491], [2.397795657861389, 48.87545333062669], [2.397647217257659, 48.875448361422336], [2.397463349700904, 48.87544326768057], [2.397314909157559, 48.875438298064076], [2.39731407526261, 48.87543825339583], [2.397126579523888, 48.875424341807246], [2.396938504993633, 48.87540578915415], [2.396751008108731, 48.87539187697007], [2.396562933819065, 48.875373324625656], [2.396375438514709, 48.8753594118598], [2.396187363112591, 48.87534085891793], [2.395999868035961, 48.87532694466414], [2.395811792884861, 48.87530839113164], [2.395624298015008, 48.87529447718848], [2.395436224478292, 48.87527592307228], [2.395364720479995, 48.8752706165029], [2.395357761111863, 48.87526701909679]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 36, "zemmour_eric": 72.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-37", "circ_bv": "16", "num_bureau": 37, "roussel_fabien": 17.0, "nb_emargement": 1005.0, "nb_procuration": 31.0, "nb_vote_blanc": 11.0, "jadot_yannick": 36.0, "le_pen_marine": 89.0, "nb_exprime": 990.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1379.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1005, "quartier_bv": "75", "geo_point_2d": [48.87595724207849, 2.395097910861788], "melenchon_jean_luc": 481.0, "poutou_philippe": 6.0, "macron_emmanuel": 208.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.279679494323125, 48.859912634764996], [2.279706056522634, 48.8599233189066], [2.279836732684501, 48.85995251782287], [2.280048271159392, 48.85999993659651], [2.280220180260021, 48.86003834792248], [2.280431719432381, 48.860085766014656], [2.280603627723643, 48.86012417767793], [2.280815167605881, 48.86017159418935], [2.280987077825877, 48.860210005306996], [2.281025671776726, 48.86021685104352], [2.281026645965569, 48.86021648366397], [2.281094349686772, 48.86020490200142], [2.281173159425829, 48.86021337248446], [2.281232075014115, 48.86019521493212], [2.281331178049612, 48.86017826101056], [2.281510354637112, 48.86014652483233], [2.281677160968247, 48.860117988686376], [2.2818563371501153, 48.86008625108912], [2.282023143098779, 48.86005771445934], [2.282028315618807, 48.86005594768143], [2.2821767826632158, 48.85997461837473], [2.282322473539821, 48.85989649731987], [2.282470938320234, 48.85981516672908], [2.282616628297522, 48.85973704620417], [2.282765092164392, 48.85965571523675], [2.282910781254758, 48.859577594342504], [2.283059244208093, 48.85949626299848], [2.283204933786837, 48.859418140843786], [2.283350621553487, 48.859340019397365], [2.283499083143159, 48.85925868749025], [2.283644770022899, 48.8591805656745], [2.283793230699045, 48.859099233390786], [2.283938916704234, 48.8590211103064], [2.2840873764545, 48.85893977854538], [2.284233062935589, 48.85886165509985], [2.284381521772442, 48.85878032296223], [2.28452720600371, 48.85870219913924], [2.284675663939403, 48.85862086572572], [2.284695640292305, 48.858589272937856], [2.284666276400994, 48.85857216613154], [2.284463285973856, 48.85853742273304], [2.284262165676718, 48.85850427843631], [2.284059177133987, 48.858469535257626], [2.28385805599307, 48.858436390271564], [2.2836550679843, 48.8584016464053], [2.283453947362619, 48.858368500738], [2.283250959900189, 48.85833375528487], [2.283049839797552, 48.8583006089364], [2.282846852856731, 48.85826586369496], [2.282645733273346, 48.85823271666532], [2.282597077656385, 48.85822438742971], [2.282586663344684, 48.85822555711321], [2.282563834050946, 48.858261734469984], [2.2824850564023302, 48.85838424916359], [2.282397950122393, 48.858511442666384], [2.28231917171865, 48.85863395632397], [2.2822320632409863, 48.85876115056846], [2.282219358128365, 48.8587664381226], [2.282027447744941, 48.85876378313203], [2.28183226214011, 48.85875983918585], [2.281640353163629, 48.85875718358266], [2.281445167612927, 48.85875323900509], [2.281253257317582, 48.85875058277289], [2.2810580731837238, 48.85874663757212], [2.280866162932432, 48.8587439807192], [2.2806709788403072, 48.858740035786276], [2.28065696052013, 48.858749603413436], [2.280670096579003, 48.858883902329424], [2.280681550076753, 48.85901568370821], [2.280694686266195, 48.85914998258934], [2.280706141247554, 48.859281763942356], [2.280719277567368, 48.85941606278853], [2.280730732669425, 48.85954784410761], [2.2807173528769003, 48.85955735082034], [2.280536425439747, 48.859559343488286], [2.280354594941485, 48.85956198068638], [2.280173667474382, 48.85956397280591], [2.279991838304534, 48.85956660946098], [2.279980362714764, 48.859571071370226], [2.279907034178602, 48.85965406608617], [2.279834437765842, 48.85973121305033], [2.279761842488599, 48.859808360872535], [2.279688513270377, 48.85989135543682], [2.279679494323125, 48.859912634764996]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 143, "zemmour_eric": 229.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-14", "circ_bv": "14", "num_bureau": 14, "roussel_fabien": 6.0, "nb_emargement": 1091.0, "nb_procuration": 52.0, "nb_vote_blanc": 4.0, "jadot_yannick": 53.0, "le_pen_marine": 54.0, "nb_exprime": 1084.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1358.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1091, "quartier_bv": "62", "geo_point_2d": [48.85924014767389, 2.2820943692908315], "melenchon_jean_luc": 66.0, "poutou_philippe": 4.0, "macron_emmanuel": 508.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.314361275443546, 48.83596307563906], [2.314396548873383, 48.83593524262062], [2.314546805829038, 48.83587311000665], [2.31469439300004, 48.83581236222775], [2.314844649246467, 48.83575022923281], [2.314992235722346, 48.835689481079704], [2.315142491259545, 48.835627347703806], [2.31529007569001, 48.83556659826944], [2.315290540150497, 48.83556639946897], [2.315487204433841, 48.835477928797765], [2.31568407411071, 48.83538922423907], [2.315880737045889, 48.83530075380614], [2.316077605383936, 48.83521204858568], [2.316082547135526, 48.835210667526425], [2.316284632147696, 48.835183283986794], [2.316497023688809, 48.83515483298909], [2.316699108266784, 48.83512744874784], [2.316911497991977, 48.83509899700497], [2.31711358349794, 48.83507161206989], [2.317325972769297, 48.835043159589624], [2.317332384027745, 48.835027664928226], [2.317152176129545, 48.83492045101067], [2.316985132841209, 48.8348204628906], [2.316985053411075, 48.834807185905724], [2.317146409903867, 48.83470907643819], [2.317303697597454, 48.834613477055846], [2.317465052890916, 48.83451536714144], [2.31762233941564, 48.83441976732359], [2.31778369350978, 48.83432165696236], [2.317940980227922, 48.8342260567167], [2.318098265006881, 48.83413045624825], [2.3182596173097663, 48.834032345219704], [2.318277435231984, 48.834023610441264], [2.318271024757243, 48.83401053389955], [2.3182505820121992, 48.83396496668272], [2.318231939223014, 48.833917712603885], [2.318227405274542, 48.83391303070736], [2.318084130670301, 48.83383532026732], [2.317925458978995, 48.8337497242817], [2.317782186635983, 48.83367201347635], [2.317623515925785, 48.83358641797702], [2.3174802444936082, 48.83350870589935], [2.317357289346269, 48.833442376945236], [2.317354163952143, 48.83343625506135], [2.317332084131751, 48.833430677938644], [2.317296368216839, 48.83341141096486], [2.317261424385672, 48.833392069242315], [2.31724818958864, 48.83338851491846], [2.317231979911649, 48.83339615969483], [2.317104615150273, 48.833479707435025], [2.316975587956457, 48.83356418898462], [2.316848221011357, 48.8336477364315], [2.316719192998008, 48.83373221679254], [2.316591826593593, 48.833815763961624], [2.316462797748826, 48.83390024403337], [2.316335430522935, 48.83398379091689], [2.316206399484476, 48.834068270691596], [2.316079031437205, 48.83415181728957], [2.31595000091768, 48.834236297682075], [2.315931571805708, 48.83423675708863], [2.315793192374851, 48.83415890642448], [2.315642043427844, 48.834074048365125], [2.315503664861308, 48.83399619735469], [2.315352515483323, 48.8339113398087], [2.315214137781105, 48.83383348845203], [2.315094304692817, 48.833766210026106], [2.31508132401293, 48.833765611359354], [2.315066872788732, 48.833778120728084], [2.314903408319764, 48.8338608406206], [2.314744619449316, 48.83394144566697], [2.314585831461793, 48.834022049605245], [2.314422365452741, 48.834104769721606], [2.314263575107256, 48.834185373212485], [2.314100108086501, 48.83426809197709], [2.313941318095555, 48.834348695935496], [2.313777850051268, 48.834431414247604], [2.313759554969249, 48.83443037843193], [2.313713118677765, 48.834397188660276], [2.313666506790264, 48.83436481988839], [2.313648036715211, 48.8343640393726], [2.3134695001491288, 48.83445991945614], [2.313298116973578, 48.83455350196926], [2.313119579114971, 48.83464938151426], [2.312948196038747, 48.83474296441729], [2.312900916110049, 48.83475250318109], [2.31288767640905, 48.834764923006844], [2.312890283600748, 48.83477880091292], [2.312928223059684, 48.83479645409124], [2.3130453092690972, 48.83489350067133], [2.313175155284398, 48.83499824437568], [2.313292241044592, 48.83509529068872], [2.313422089420921, 48.83520003411391], [2.313539176094093, 48.835297080167734], [2.313669025469271, 48.83540182330596], [2.313786113055428, 48.835498869100526], [2.313915963441301, 48.83560361105254], [2.314033051940453, 48.8357006565879], [2.31416290195104, 48.83580539914438], [2.314279992725506, 48.835902444428314], [2.314352458054106, 48.83596089718286], [2.314361275443546, 48.83596307563906]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 46, "zemmour_eric": 67.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-20", "circ_bv": "11", "num_bureau": 20, "roussel_fabien": 20.0, "nb_emargement": 1104.0, "nb_procuration": 36.0, "nb_vote_blanc": 13.0, "jadot_yannick": 77.0, "le_pen_marine": 81.0, "nb_exprime": 1088.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 12, "nb_inscrit": 1409.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1104, "quartier_bv": "56", "geo_point_2d": [48.834654582283555, 2.3155122250097686], "melenchon_jean_luc": 419.0, "poutou_philippe": 3.0, "macron_emmanuel": 310.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.279584075658858, 48.86380229645341], [2.279664296855276, 48.863799761997925], [2.279767976659503, 48.863787922767116], [2.279959504697383, 48.86376552929363], [2.280162505973361, 48.86374235013871], [2.280354033674213, 48.86371995603292], [2.280557033246455, 48.86369677530037], [2.280748560610165, 48.863674380562315], [2.280951561192305, 48.86365119916784], [2.281143088218764, 48.86362880379749], [2.28134608844786, 48.863605621732844], [2.281537615137159, 48.863583225730224], [2.28154400520542, 48.86358146538658], [2.281548574302675, 48.86350902119295], [2.281580217703346, 48.863397927062756], [2.281623859210267, 48.86325292019408], [2.281655503657769, 48.86314182602647], [2.281699143365191, 48.86299681998792], [2.281730787496704, 48.86288572577471], [2.281774428142977, 48.86274071968336], [2.281806070595388, 48.86262962541642], [2.281803653401112, 48.86262263552684], [2.281679273890648, 48.86251107971993], [2.281562550686513, 48.86240392530077], [2.281445826599521, 48.862296770749225], [2.281321448620707, 48.862185215436895], [2.281204725519608, 48.86207806062905], [2.281080348591693, 48.861966504144846], [2.280963627839469, 48.8618593490889], [2.280839250586946, 48.86174779232396], [2.280722530820591, 48.86164063701171], [2.280598155956907, 48.861529080881674], [2.280481435813428, 48.86142192530495], [2.280357062000623, 48.86131036800305], [2.280240342842999, 48.861203212170054], [2.280115970068544, 48.86109165459559], [2.280057594772273, 48.861038061629955], [2.280059703190456, 48.8610315683823], [2.280039358053057, 48.86101224566164], [2.279981016588071, 48.860958682536044], [2.279901158914207, 48.86089213903036], [2.279881737293967, 48.86089081792701], [2.279728939389993, 48.86097498093659], [2.279574897034054, 48.86106009227012], [2.279422098125523, 48.86114425577439], [2.279268053404757, 48.86122936669172], [2.279115253516534, 48.86131352889206], [2.27896120914464, 48.86139864030897], [2.278808408264284, 48.86148280210469], [2.27865436153999, 48.86156791220613], [2.278501559655044, 48.86165207449648], [2.278347513291961, 48.86173718419817], [2.278331536306712, 48.86173642323023], [2.278308854031731, 48.86175192082203], [2.278154807058617, 48.861837030268], [2.278004815728637, 48.8619233475301], [2.277850766388975, 48.862008456563345], [2.27770077406173, 48.862094773431075], [2.277700338770374, 48.86209500373657], [2.277531092736723, 48.86218099552986], [2.277361171842752, 48.86226872505413], [2.277191924697421, 48.86235471545503], [2.277022002653248, 48.86244244538327], [2.276852754383758, 48.862528435291004], [2.276682831214234, 48.86261616382466], [2.276513581808198, 48.862702154138574], [2.276343657500939, 48.86278988217686], [2.276330318538863, 48.86280280797065], [2.276332840014276, 48.86280940198961], [2.276380673490022, 48.862903067509656], [2.276425962296952, 48.862993390008526], [2.276471249910388, 48.863083711575385], [2.276519085249757, 48.86317737702518], [2.27652093737165, 48.86317975801773], [2.276620804895742, 48.86327132858683], [2.27673030372861, 48.86337218913001], [2.276830170614065, 48.86346376039951], [2.276939670256822, 48.86356462073362], [2.277039539254572, 48.863656190921475], [2.2771490397071252, 48.86375705104649], [2.277248908066249, 48.863848621934785], [2.2773584093286052, 48.86394948185071], [2.277377603675678, 48.86399537119709], [2.277422790483237, 48.86402906486682], [2.277473318197191, 48.86405125386842], [2.277501981712102, 48.86403330585859], [2.277607227090032, 48.86402129088232], [2.277800320712056, 48.864000355567626], [2.277898078678766, 48.86398919450576], [2.278101081755856, 48.86396601795281], [2.278294173611612, 48.86394508183208], [2.2784971763405952, 48.863921904606315], [2.278690269236709, 48.863900967853915], [2.278893271617576, 48.86387778995541], [2.279086362827955, 48.86385685255493], [2.279289364860695, 48.86383367398362], [2.279482457111313, 48.86381273595147], [2.279581778982223, 48.86380139496744], [2.279584075658858, 48.86380229645341]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 149, "zemmour_eric": 207.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-8", "circ_bv": "14", "num_bureau": 8, "roussel_fabien": 6.0, "nb_emargement": 1077.0, "nb_procuration": 71.0, "nb_vote_blanc": 3.0, "jadot_yannick": 33.0, "le_pen_marine": 40.0, "nb_exprime": 1072.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1322.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1077, "quartier_bv": "62", "geo_point_2d": [48.8627105903608, 2.2792200123967428], "melenchon_jean_luc": 54.0, "poutou_philippe": 2.0, "macron_emmanuel": 547.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.310189682802023, 48.86002706936881], [2.310194012469311, 48.860047709282675], [2.310202979227007, 48.860141025610154], [2.310215081261202, 48.86027797228978], [2.310227111279203, 48.860403170298945], [2.310239213437721, 48.8605401169437], [2.310251243574241, 48.86066531492082], [2.3102633458570843, 48.8608022615308], [2.310275376112126, 48.86092745947592], [2.310287478531201, 48.86106440515179], [2.310299507541789, 48.86118960305698], [2.310311611436263, 48.861326549605195], [2.310323640565369, 48.861451747478355], [2.3103357445841812, 48.86158869399172], [2.310347773831808, 48.861713891832835], [2.310359876611964, 48.861850838303546], [2.310371907341106, 48.86197603612051], [2.310384010257501, 48.86211298165704], [2.3103960410932682, 48.86223818034125], [2.310408071998661, 48.862363378110814], [2.310420175100202, 48.86250032359589], [2.310432206124128, 48.862625521333406], [2.310444309338105, 48.86276246768291], [2.310444324064168, 48.862763414783494], [2.310435510540777, 48.862901802767155], [2.310426933151336, 48.86303285159923], [2.310418119536167, 48.863171239547974], [2.310409540683785, 48.86330228923831], [2.310400726976834, 48.863440677152134], [2.310392149411175, 48.86357172591799], [2.310406032157752, 48.863633663172074], [2.31041766972724, 48.863637530878826], [2.310614452851488, 48.863641225021865], [2.310808850347104, 48.86364410917885], [2.311005633523934, 48.86364780267867], [2.311200031065748, 48.863650686200195], [2.311396814295149, 48.86365437905684], [2.3115912132580743, 48.863657261051564], [2.311787995165114, 48.86366095415641], [2.311982394174211, 48.86366383551568], [2.312179177496852, 48.86366752798514], [2.312373575189069, 48.86367040870121], [2.312570358576126, 48.86367409962819], [2.312764756302629, 48.863676980608105], [2.312961539742221, 48.86368067089186], [2.313155938877915, 48.86368355124422], [2.313352721006989, 48.86368724087694], [2.3135471201888222, 48.86369012059387], [2.313743903733351, 48.8636938095912], [2.313938301598375, 48.86369668866489], [2.3141350851954092, 48.86370037701903], [2.314329483118388, 48.86370325455803], [2.314526266756083, 48.863706943168246], [2.314720666088108, 48.86370982007959], [2.314917448415353, 48.863713508038785], [2.315111847793473, 48.86371638431475], [2.315308631548064, 48.86372007073926], [2.315503029597406, 48.86372294727129], [2.315699813404463, 48.863726633052565], [2.315894211499888, 48.86372950894922], [2.316090995359402, 48.863733194087246], [2.316285394863944, 48.86373606935629], [2.316482177412861, 48.86373975384335], [2.316676576975263, 48.86374262757766], [2.316873360927866, 48.86374631232857], [2.31706775917327, 48.86374918541969], [2.317264543178308, 48.86375286952738], [2.31745894146975, 48.863755741983084], [2.317655725527214, 48.86375942544755], [2.317850125227728, 48.863762297275606], [2.318046907986333, 48.863765979189864], [2.3182413077210953, 48.863768851281755], [2.318438091895043, 48.86377253256052], [2.318632490312877, 48.86377540400928], [2.318638858447503, 48.863774495049455], [2.318824860598867, 48.86371456453807], [2.31900807760245, 48.86365889878827], [2.319194078916262, 48.863598967696774], [2.319377295118902, 48.86354330137595], [2.319563295595264, 48.863483369704376], [2.319746510996854, 48.8634277028125], [2.319932510635762, 48.86336777056093], [2.3201157252363043, 48.86331210309801], [2.320301724037755, 48.86325217026633], [2.320484937837243, 48.863196502232405], [2.320670935801236, 48.86313656882067], [2.320854148799568, 48.863080900215735], [2.320897579145885, 48.863075951128465], [2.320921016617536, 48.863051462645686], [2.321104229049353, 48.86299579365364], [2.321289848872285, 48.8629409195676], [2.321473060521241, 48.862885250005384], [2.321658678198808, 48.86283037533415], [2.3218418890649, 48.86277470520175], [2.322027505948423, 48.86271983085226], [2.322210716031651, 48.86266416014967], [2.3223963335074522, 48.86260928433112], [2.32257954280791, 48.862553613058346], [2.322765158138345, 48.86249873665457], [2.32294836665583, 48.86244306481168], [2.323133982555342, 48.862388188737384], [2.323317190289954, 48.86233251632434], [2.323502804055787, 48.86227763876552], [2.32368601100752, 48.8622219657823], [2.3238716239909962, 48.86216708764604], [2.324054830159848, 48.86211141409265], [2.324240443712199, 48.862056536285856], [2.324423649098271, 48.86200086216233], [2.324609260516924, 48.86194598287106], [2.324792465120107, 48.861890308177394], [2.324978077119389, 48.86183542831636], [2.325161280939579, 48.86177975305254], [2.325346890793596, 48.86172487260631], [2.325530093830893, 48.861669196772354], [2.325715702890899, 48.86161431664795], [2.325898905145302, 48.86155864024387], [2.326084514797459, 48.861503758650386], [2.326088552978284, 48.86149927205115], [2.326038524468126, 48.86143394484909], [2.325931982514449, 48.861331620235354], [2.32582907176036, 48.86123132781702], [2.325722530632495, 48.861129002998084], [2.325619619330489, 48.861028709474354], [2.325516709776025, 48.86092841675998], [2.3254101698809713, 48.86082609163504], [2.325307261129911, 48.86072579872224], [2.325200722060649, 48.86062347339215], [2.325097814112884, 48.86052318028091], [2.324991275869304, 48.860420854745676], [2.32488836872503, 48.86032056143601], [2.324781831307023, 48.860218235695626], [2.324678924977786, 48.86011794128825], [2.324572388373889, 48.860015616241974], [2.324572166370877, 48.86001539284924], [2.324461269209865, 48.85990008433019], [2.324355021804879, 48.85979349867243], [2.324244125596743, 48.85967818992905], [2.324137877725638, 48.85957160404948], [2.3240316316520753, 48.859465018073045], [2.323920736847136, 48.85934970989514], [2.323908624578301, 48.8593224459703], [2.323903295016533, 48.859320046067964], [2.323792400815853, 48.85920473685683], [2.323697930229724, 48.859107042419815], [2.323603461360892, 48.85900934790733], [2.323492568484974, 48.85889403838604], [2.323398099024498, 48.858796343684936], [2.3232872070565262, 48.858681033951214], [2.32319273836722, 48.858583339069305], [2.323118933322234, 48.85850659268596], [2.323113624581028, 48.858489065756295], [2.3230965100309042, 48.858479169603356], [2.323059425414775, 48.85844060604034], [2.322949991105312, 48.858330292903126], [2.322839101109177, 48.85821498360499], [2.322797436955055, 48.858172983689315], [2.322775359485213, 48.85816050344031], [2.32272598741976, 48.85818008082625], [2.322552849861403, 48.858244860558365], [2.322375743916459, 48.85831018865613], [2.3222026068532, 48.85837496788164], [2.32202549866405, 48.85844029544563], [2.321852360732886, 48.85850507415684], [2.32167525303695, 48.85857040030327], [2.3215021128751783, 48.85863517849243], [2.321325004286032, 48.858700505012095], [2.321151863256455, 48.85876528268688], [2.32097475378601, 48.85883060868057], [2.320801611888526, 48.85889538584099], [2.320624501548406, 48.85896071040934], [2.320451358783222, 48.85902548705545], [2.320274247549977, 48.85909081199703], [2.320101103916887, 48.85915558812879], [2.319923991802242, 48.859220912544345], [2.31975084730145, 48.859285688161705], [2.319573734305302, 48.85935101205127], [2.319554846150696, 48.85934711927994], [2.319470240933307, 48.8592332145845], [2.319385276079559, 48.85911880143466], [2.319300671603632, 48.8590048965959], [2.319215707494575, 48.858890483302126], [2.319131103760101, 48.85877657832003], [2.319046140395724, 48.858662164882304], [2.318961537402696, 48.858548259756915], [2.318876574782991, 48.85843384617526], [2.3187919738942, 48.85831994091431], [2.318707010656356, 48.85820552718097], [2.318622410508984, 48.8580916217767], [2.318537449378593, 48.8579772079072], [2.318452848609841, 48.85786330235188], [2.318367888224095, 48.85774888833846], [2.318283288196751, 48.85763498263985], [2.318198328555641, 48.85752056848248], [2.318179804054814, 48.85751654535033], [2.31801789911033, 48.85757206617562], [2.317869982830241, 48.85762251952172], [2.317708075875307, 48.85767803901547], [2.317560158994364, 48.85772849197373], [2.31755580752463, 48.857730848645694], [2.317430271957968, 48.85783423192514], [2.317310430288644, 48.857935854239265], [2.317184893741069, 48.85803923724222], [2.317065051121626, 48.85814085929186], [2.316939512230431, 48.8582442420105], [2.316819668660858, 48.85834586379563], [2.31669982463559, 48.85844748455213], [2.316574285643816, 48.85855086686685], [2.316454440656615, 48.85865248825816], [2.316328899320984, 48.85875587028855], [2.316300777260487, 48.85877971604617], [2.31629025791878, 48.85878260582229], [2.316276662045509, 48.85880815700005], [2.316184938094489, 48.85888593144941], [2.316054587470896, 48.85899789519813], [2.315934740453616, 48.85909951512874], [2.315804390120936, 48.85921147859117], [2.315684542112563, 48.8593130991509], [2.315554189356853, 48.85942506141216], [2.315434340369181, 48.85952668170177], [2.315303986541342, 48.85963864366895], [2.315184136574361, 48.859740263688415], [2.315053783037426, 48.85985222536928], [2.31493393209113, 48.859953845118596], [2.314912416774217, 48.859953843361616], [2.314798123776738, 48.85985688907617], [2.314687117257542, 48.85976191767676], [2.3145728251003392, 48.85966496315939], [2.314461819412671, 48.859569990635215], [2.314347529458569, 48.85947303589372], [2.314236523215722, 48.85937806403568], [2.314122234101979, 48.8592811090622], [2.314011228690557, 48.859186136079444], [2.313896940417064, 48.85908918087407], [2.313785935813379, 48.85899420856515], [2.313774340347243, 48.8589907227323], [2.313590954134957, 48.85899786857502], [2.313415959927184, 48.85900542292638], [2.313232574976927, 48.85901256822765], [2.313057580667721, 48.85902012205487], [2.312882587682555, 48.85902767473469], [2.312699201217916, 48.859034819210656], [2.312524208119573, 48.85904237226562], [2.312340821554165, 48.85904951619225], [2.312330730431464, 48.85905308979148], [2.312205257077639, 48.85916322114292], [2.312080536943621, 48.859273145336985], [2.311955061179944, 48.85938327549715], [2.31183033997932, 48.859493200307924], [2.311704864519764, 48.85960333019177], [2.3115801422764832, 48.85971325382067], [2.311454664383286, 48.85982338431176], [2.311329941085355, 48.85993330765812], [2.311319190991591, 48.859936910654376], [2.311139750809796, 48.859938306118806], [2.310969394629201, 48.8599381968392], [2.310789954433711, 48.85993959177914], [2.310619598249547, 48.85993948200161], [2.3104492420543012, 48.85993937288083], [2.310269801840738, 48.85994076704082], [2.310194036892395, 48.85993385859532], [2.310181118939865, 48.859951916877534], [2.310188444916069, 48.85999167541216], [2.310191508066813, 48.86002355622729], [2.310189682802023, 48.86002706936881]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 122, "zemmour_eric": 145.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "7-2", "circ_bv": "02", "num_bureau": 2, "roussel_fabien": 6.0, "nb_emargement": 1045.0, "nb_procuration": 86.0, "nb_vote_blanc": 10.0, "jadot_yannick": 38.0, "le_pen_marine": 51.0, "nb_exprime": 1031.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 2, "nb_inscrit": 1307.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "26", "geo_point_2d": [48.86113374969025, 2.3174710844754345], "melenchon_jean_luc": 96.0, "poutou_philippe": 2.0, "macron_emmanuel": 538.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347335547485745, 48.867385471857126], [2.34732263776545, 48.867372748603984], [2.347317854647182, 48.86732974022544], [2.347297161966329, 48.86719845910863], [2.347276249958758, 48.867060864286444], [2.347255557489555, 48.86692958313051], [2.347234647063037, 48.86679198827505], [2.347213953442353, 48.866660707072604], [2.347193372293642, 48.86653753764362], [2.347172680241169, 48.86640625641121], [2.3471520992906703, 48.8662830869468], [2.347152044430563, 48.866282787166064], [2.347120971200153, 48.86613427179795], [2.347090268411588, 48.86598384012088], [2.347082312366531, 48.86594581651969], [2.34707446392451, 48.865937601363996], [2.347016265747227, 48.865945112645605], [2.34685867919802, 48.86596701606547], [2.346626297268593, 48.86599906028893], [2.346468709029125, 48.86602096318678], [2.3462363279710052, 48.86605300755826], [2.346078739415675, 48.86607490904236], [2.346078122058866, 48.86607500459714], [2.345889167542456, 48.866109314477896], [2.345703258922013, 48.86614117291199], [2.345514303918716, 48.86617548219886], [2.345328394821494, 48.86620734094813], [2.345142486871303, 48.86623919851586], [2.344953529780122, 48.866273506906936], [2.344946951065447, 48.86627361389656], [2.344739296214976, 48.86624311810612], [2.3445116921804052, 48.866204652430106], [2.34449519945176, 48.86621090157837], [2.344443211803048, 48.86633135107549], [2.3443858328378733, 48.86646347146992], [2.344333844684336, 48.866583920892026], [2.344276465152272, 48.866716042103135], [2.344224476493701, 48.866836491450265], [2.3441670977805122, 48.866968611687014], [2.344115108617004, 48.867089060959096], [2.3440577279851, 48.86722118110578], [2.3440057383166453, 48.867341630302874], [2.343982740645499, 48.867394584388144], [2.343970831087213, 48.86741410950272], [2.343974942371112, 48.86742061810019], [2.343940560188876, 48.86749978408237], [2.343888499967091, 48.86761908075607], [2.343831118165308, 48.86775120163009], [2.343779056078577, 48.8678704982216], [2.343721675096659, 48.86800261812134], [2.343669612496694, 48.868121915537394], [2.343687078624117, 48.86813292213817], [2.343859752554618, 48.86809440301311], [2.344068223244348, 48.86804690562667], [2.344240896607893, 48.86800838594877], [2.344449365231389, 48.86796088878659], [2.34462203803939, 48.86792236765659], [2.344830507334185, 48.867874869834324], [2.345003179575212, 48.867836348151464], [2.345175850186302, 48.867797827109946], [2.345384318489137, 48.86775032741849], [2.345402178824549, 48.867757211541544], [2.345440046459433, 48.86789390828332], [2.345475186380197, 48.86802290879404], [2.345513054399805, 48.86815960547988], [2.345548194691893, 48.86828860503891], [2.345586063096229, 48.86842530166878], [2.345621205100124, 48.86855430208212], [2.345621436316079, 48.86855499583964], [2.345662147880561, 48.868657257760695], [2.345718471327827, 48.86880251709796], [2.345759183276247, 48.86890477896313], [2.345815507261729, 48.869050038222184], [2.345856219594092, 48.86915230003144], [2.345873393712251, 48.86915861553566], [2.346057297452794, 48.86912148746192], [2.346237951857569, 48.86908569666563], [2.346421855080737, 48.86904856802932], [2.346602508993425, 48.86901277578117], [2.346786411688136, 48.86897564748157], [2.346967065097446, 48.86893985468084], [2.347150967274778, 48.868902725818714], [2.347331620180805, 48.86886693246536], [2.347515521840853, 48.86882980304067], [2.347696174243389, 48.86879400913478], [2.347739095070011, 48.86879007099488], [2.347741962961127, 48.86878607376091], [2.347739102977224, 48.868761132920035], [2.347717630053693, 48.86863324281805], [2.347702690949001, 48.868502982565886], [2.347701933791372, 48.86850063205639], [2.347646616197578, 48.86839862668331], [2.3475905909973562, 48.86828869960911], [2.34753527519844, 48.868186695071735], [2.347479250461207, 48.868076767924364], [2.347423935105355, 48.86797476331597], [2.3473679094678452, 48.867864836088], [2.3473640554743183, 48.86783775475692], [2.347363381086998, 48.86783554589181], [2.347359372276749, 48.867799495471985], [2.347368349436485, 48.867789023913474], [2.347357415373713, 48.86776668937603], [2.347346515027771, 48.86766865555485], [2.347338559314483, 48.86750011312116], [2.347328432070976, 48.8674090372089], [2.347335547485745, 48.867385471857126]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 64, "zemmour_eric": 71.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "2-5", "circ_bv": "01", "num_bureau": 5, "roussel_fabien": 16.0, "nb_emargement": 1166.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 110.0, "le_pen_marine": 54.0, "nb_exprime": 1158.0, "nb_vote_nul": 1.0, "arr_bv": "02", "arthaud_nathalie": 1, "nb_inscrit": 1472.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1171, "quartier_bv": "07", "geo_point_2d": [48.867452993111606, 2.3459453147650438], "melenchon_jean_luc": 284.0, "poutou_philippe": 2.0, "macron_emmanuel": 503.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.372672374048178, 48.855115785584175], [2.372653495609689, 48.85510206324831], [2.372496884973658, 48.85500629582906], [2.372340860180077, 48.854911723805515], [2.372184250690728, 48.85481595596067], [2.372028225671699, 48.85472138350619], [2.371872202581848, 48.85462681084735], [2.371715594810177, 48.85453104236458], [2.371559572857682, 48.85443646928191], [2.371402966232674, 48.85434070037355], [2.371401084724346, 48.85433929379688], [2.37128571978633, 48.85423239335942], [2.371175499580639, 48.85412994284529], [2.37106527979741, 48.85402749311951], [2.370949916238736, 48.85392059232827], [2.370839695989924, 48.85381814146897], [2.37072433335754, 48.853711240440106], [2.370614115347009, 48.853608790260196], [2.370498753651763, 48.85350188809444], [2.370388536527568, 48.853399437687386], [2.370273175747622, 48.85329253618334], [2.3702840214039362, 48.85325677476261], [2.37027269759386, 48.85325045657496], [2.370087937582222, 48.85323362937715], [2.369913513759749, 48.85322072263851], [2.3697287525958792, 48.85320389577775], [2.369554328961803, 48.85319098851512], [2.369369568019454, 48.85317416109932], [2.369195144573883, 48.85316125331279], [2.369141721365925, 48.85317081506975], [2.369107491835849, 48.85319944354876], [2.369075971928249, 48.85333272054888], [2.369049238633066, 48.85347282546561], [2.369017718411103, 48.85360610241758], [2.368990984819136, 48.85374620728683], [2.368959464282804, 48.8538794841907], [2.368929325390892, 48.85400230709874], [2.368899186346107, 48.85412513088488], [2.368867663982855, 48.854258407711946], [2.368837524644595, 48.85438123145426], [2.368806003331608, 48.85451450824153], [2.368775862336955, 48.85463733193287], [2.3687443407113262, 48.854770608673164], [2.368714200786003, 48.85489343232784], [2.368682678847728, 48.855026709021146], [2.3686525372770912, 48.85514953172549], [2.368621015015166, 48.85528280927117], [2.368590874513865, 48.85540563193885], [2.368559351950182, 48.85553890853828], [2.368529209781649, 48.85566173205419], [2.368509772283407, 48.85574391554048], [2.368492498835251, 48.85576089315106], [2.368499256274113, 48.8557824718513], [2.368487172239701, 48.85583356492181], [2.368477642698406, 48.85584931441444], [2.368473189612423, 48.85585486238755], [2.368470917186934, 48.855868955803956], [2.368439394036221, 48.85600223231619], [2.368406998224946, 48.856132829531845], [2.368374602240476, 48.85626342762266], [2.368343078604649, 48.85639670406216], [2.368310682306806, 48.85652730120536], [2.368279156985071, 48.85666057758916], [2.368246761714811, 48.85679117559052], [2.368215236069919, 48.856924451925785], [2.368207303253601, 48.85695798995097], [2.36819289315969, 48.857016078389734], [2.368196154660804, 48.85703125324396], [2.368276385727313, 48.857037417372645], [2.36845366082033, 48.85709868595701], [2.368630519900937, 48.85715900236551], [2.368807794461167, 48.85722027041137], [2.368984655727307, 48.85728058629707], [2.369161931117625, 48.85734185381158], [2.369338791843532, 48.857402169160075], [2.369516069426723, 48.857463436150425], [2.36969293097538, 48.85752375096894], [2.369693669099889, 48.857524025560835], [2.369849504056643, 48.85758631407788], [2.370006465547471, 48.85764845992484], [2.370162301261205, 48.85771074712831], [2.370319263489102, 48.85777289345732], [2.370475099948938, 48.85783518024642], [2.370632062924785, 48.857897326158216], [2.370669577838406, 48.85790008660167], [2.370679841763086, 48.857886365260484], [2.370729967898732, 48.85783565649252], [2.3708024802579, 48.85777244395373], [2.370830988129945, 48.85776260657957], [2.37082203602146, 48.85773903345325], [2.370800418784612, 48.85760331870945], [2.370776970000576, 48.85746962324464], [2.370755354355668, 48.857333908466934], [2.370731904456491, 48.85720021205438], [2.370708454677655, 48.85706651562111], [2.370686839367678, 48.85693080168105], [2.370663391188596, 48.85679710521372], [2.370641776118518, 48.85666139033328], [2.370644056454382, 48.856655397370524], [2.370756513186774, 48.85654615302684], [2.370870596880087, 48.85643419119447], [2.370983054012086, 48.85632494752257], [2.371097136734284, 48.856212985451954], [2.371209591561896, 48.856103740638964], [2.371323674675842, 48.855991778337206], [2.371436128540125, 48.85588253418883], [2.371542527846633, 48.855779396192105], [2.37165498079371, 48.85567015181718], [2.371761380585233, 48.85556701451259], [2.371867778603651, 48.855463876197334], [2.371980230187867, 48.855354631485746], [2.371992979233183, 48.855350743953814], [2.37210222022497, 48.85535859387779], [2.372205585021156, 48.85536628246653], [2.372215703560673, 48.85536432640467], [2.372322161816637, 48.855306763469535], [2.372472440930738, 48.85522622881432], [2.372578898620826, 48.85516866564355], [2.372671588567817, 48.855118993046744], [2.372672374048178, 48.855115785584175]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 63, "zemmour_eric": 85.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "11-15", "circ_bv": "07", "num_bureau": 15, "roussel_fabien": 35.0, "nb_emargement": 1398.0, "nb_procuration": 106.0, "nb_vote_blanc": 12.0, "jadot_yannick": 143.0, "le_pen_marine": 62.0, "nb_exprime": 1384.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1700.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1398, "quartier_bv": "43", "geo_point_2d": [48.85545157525134, 2.3700393336788075], "melenchon_jean_luc": 377.0, "poutou_philippe": 6.0, "macron_emmanuel": 557.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.369281320050499, 48.88670453578762], [2.369255901423086, 48.88668925005944], [2.36913353635284, 48.88658615697162], [2.369011795680013, 48.88648188082697], [2.368889431580226, 48.88637878747025], [2.368767693233755, 48.88627451196419], [2.368645330115419, 48.88617141743925], [2.368523592742544, 48.88606714166538], [2.368401230583946, 48.885964047770806], [2.368279494195563, 48.88585977082977], [2.368157133007394, 48.8857566766663], [2.368035397581679, 48.8856524003567], [2.367913037374945, 48.88554930502504], [2.367791301559177, 48.8854450284404], [2.367668942312142, 48.88534193373913], [2.367547208844476, 48.88523765599454], [2.367424850567843, 48.885134561024365], [2.367303118073728, 48.885030283011965], [2.367301836939104, 48.88502898930557], [2.367199279707584, 48.88490281227272], [2.367101614728512, 48.88478379265768], [2.36699905710152, 48.88465761541795], [2.366901393028986, 48.88453859651227], [2.366803728039282, 48.884419577506854], [2.366701173225769, 48.88429339907813], [2.366685987889804, 48.88423876735892], [2.366685192326091, 48.8842385886812], [2.366485717779176, 48.88425132186264], [2.366301820672238, 48.88426266676109], [2.366102345939356, 48.88427539930354], [2.365918448663978, 48.88428674361286], [2.365718973755991, 48.88429947461704], [2.365535076301127, 48.88431081923658], [2.365351180140589, 48.884322162681535], [2.365151704947392, 48.884334893639476], [2.364967807254743, 48.88434623648811], [2.364768331886582, 48.884358965907836], [2.364724099405753, 48.88437569793107], [2.3647362973639883, 48.884421636442795], [2.364843295358622, 48.88453377645495], [2.364944247153343, 48.884641681732376], [2.365051246047905, 48.884753821536265], [2.365152197325633, 48.88486172750878], [2.365259198494701, 48.884973866212384], [2.365360150629806, 48.88508177198794], [2.365461104557855, 48.885189676775774], [2.365568105691418, 48.88530181606192], [2.365669060476963, 48.885409720652795], [2.365776062510489, 48.88552185973063], [2.365806390220326, 48.885554274713826], [2.365805974736978, 48.88556084478996], [2.365829258836091, 48.885582526769426], [2.365899886840875, 48.88565801616478], [2.36599385081089, 48.88576170874407], [2.366094806006591, 48.88586961292359], [2.366188770735608, 48.88597330622925], [2.36628972810907, 48.88608121023088], [2.3663836922553543, 48.886184902457096], [2.366484650442952, 48.88629280627362], [2.366578616722839, 48.8863964983341], [2.366679574350001, 48.886504402857554], [2.36677354139976, 48.8866080947451], [2.366775130334831, 48.88661054481673], [2.366828346273704, 48.88674492733956], [2.366877872313597, 48.88687078089514], [2.366931087419901, 48.88700516333326], [2.366980615319381, 48.88713101682372], [2.367033830956778, 48.88726539918433], [2.367083357999358, 48.887391251696], [2.367132886634086, 48.88751710507922], [2.3671861030590162, 48.887651487324945], [2.3672356308258102, 48.887777340628666], [2.367288849145533, 48.88791172280408], [2.367338377408281, 48.8880375760355], [2.367391596259131, 48.88817195813339], [2.367408615579368, 48.888215204811566], [2.367419587654645, 48.88822705021772], [2.367483679935609, 48.88822021849212], [2.367683910460348, 48.88825708082786], [2.367877722347732, 48.88829526692006], [2.368077953439899, 48.88833212859433], [2.368271765895579, 48.888370314046114], [2.368471997555271, 48.88840717505897], [2.368665810579239, 48.88844535987029], [2.368710433559291, 48.88845149110749], [2.368728216501839, 48.88842329933258], [2.368766778511219, 48.888301217978245], [2.368806234758921, 48.88817971598083], [2.368844796405, 48.888057634574274], [2.368884253649774, 48.88793613253137], [2.368922814932557, 48.88781405107262], [2.368962271810711, 48.88769254897707], [2.369000831366626, 48.887570467458936], [2.36904028787807, 48.88744896531074], [2.369078848434375, 48.887326883747605], [2.369118304568315, 48.887205382446005], [2.369156864761338, 48.88708330083066], [2.3691963191760133, 48.886961798569985], [2.369234879005659, 48.88683971690245], [2.3692743344174, 48.886718214596286], [2.369281320050499, 48.88670453578762]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 20, "zemmour_eric": 38.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-67", "circ_bv": "17", "num_bureau": 67, "roussel_fabien": 16.0, "nb_emargement": 1227.0, "nb_procuration": 43.0, "nb_vote_blanc": 16.0, "jadot_yannick": 69.0, "le_pen_marine": 57.0, "nb_exprime": 1202.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1752.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "73", "geo_point_2d": [48.886247790487175, 2.367324098734796], "melenchon_jean_luc": 783.0, "poutou_philippe": 6.0, "macron_emmanuel": 169.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3832776231006942, 48.8448640911662], [2.383340676020848, 48.84486993015535], [2.383375269106144, 48.84487313390191], [2.383416786589765, 48.84482823250126], [2.383533228231652, 48.84473212642341], [2.383662582907397, 48.844620928974045], [2.383779022270211, 48.844524822632074], [2.383908375907004, 48.84441362489628], [2.384024815726587, 48.844317517404924], [2.384154168313806, 48.84420632028201], [2.384270605854543, 48.844110212526566], [2.384399957413454, 48.843999014217935], [2.384516395389611, 48.84390290711169], [2.384645745909599, 48.843791708516626], [2.38476218160694, 48.84369560114633], [2.384891531088015, 48.843584402264845], [2.385007967231409, 48.843488294644466], [2.385095023022655, 48.84342116972206], [2.385211458426132, 48.8433250618896], [2.385264495468792, 48.84328416808427], [2.385277546851168, 48.8432699074629], [2.385247900388071, 48.843247915986915], [2.38522435965303, 48.8432334331508], [2.38518097601237, 48.84320483452032], [2.385178733635143, 48.84319405676948], [2.385267858058019, 48.84308965311346], [2.385359558012604, 48.84298300072763], [2.385448683074855, 48.84287859692413], [2.385540382287974, 48.84277194437953], [2.385629506627089, 48.84266754042161], [2.385721205098951, 48.84256088771822], [2.3857181608155402, 48.84254958602418], [2.385547678039619, 48.8424543002215], [2.385384634989355, 48.84235847409973], [2.385214154821419, 48.8422631869131], [2.385051111619826, 48.84216736031338], [2.385048838038744, 48.84215565335059], [2.385164511672782, 48.842041188315065], [2.38528040507393, 48.84192629978994], [2.385396077690384, 48.841811834507006], [2.385511970081708, 48.841696944834624], [2.3856276416805873, 48.84158247930426], [2.38574353441396, 48.84146758939099], [2.385859204995274, 48.841353123613146], [2.385975095335166, 48.84123823434423], [2.386090764898931, 48.84112376831903], [2.386206654229019, 48.84100887790288], [2.386322322775244, 48.84089441163023], [2.386438212447398, 48.84077952097314], [2.386553878613641, 48.84066505444617], [2.386669767254829, 48.840550164440444], [2.386785433766008, 48.84043569767299], [2.386901320034966, 48.8403208065131], [2.38701698552874, 48.84020633949827], [2.387132870777343, 48.84009144809045], [2.387129961823845, 48.84007939973226], [2.387090242784287, 48.8400587420552], [2.387045312303565, 48.84003460321357], [2.38704253818686, 48.84002267695723], [2.387165499211264, 48.839899603393086], [2.387290855517235, 48.83977427556962], [2.38741381537987, 48.839651200823546], [2.387539170480782, 48.8395258736113], [2.387535659487704, 48.83951357305153], [2.387363971454761, 48.83943352755647], [2.387200680442375, 48.83935908198083], [2.387028993432847, 48.83927903599389], [2.386865704745208, 48.83920458995768], [2.3868315320967453, 48.83918448043473], [2.386795447422124, 48.83920714735167], [2.386651026062454, 48.83929832891884], [2.386506567774082, 48.83938982669281], [2.386362145402888, 48.839481007896296], [2.386217686101006, 48.83957250530644], [2.386073262728975, 48.83966368524695], [2.385928802413678, 48.83975518229329], [2.385784379381847, 48.83984636277639], [2.385639916690801, 48.8399378594519], [2.385495492647428, 48.84002903957136], [2.385351030305384, 48.84012053589002], [2.385206603898636, 48.84021171473946], [2.385062140543056, 48.84030321069429], [2.3849177131141452, 48.84039439007932], [2.384773248745224, 48.84048588567032], [2.384628821667194, 48.84057706469867], [2.384484354922376, 48.840668559918804], [2.384339926843403, 48.84075973768415], [2.384195460447478, 48.84085123254742], [2.384051029983958, 48.84094241084135], [2.38390656257457, 48.84103390534082], [2.383762131099362, 48.841125083270995], [2.383617662676604, 48.84121657740658], [2.383473231562909, 48.84130775408077], [2.383328760764211, 48.8413992478455], [2.383184328628285, 48.84149042505529], [2.383039858178471, 48.84158191846312], [2.382895423668573, 48.84167309530217], [2.3827509522159183, 48.84176458744683], [2.382606516694307, 48.841855763922126], [2.382462044217609, 48.841947256602225], [2.382317609046865, 48.8420384327208], [2.382173134194176, 48.84212992503001], [2.382028698011811, 48.84222110078487], [2.381884223518663, 48.84231259183789], [2.381739784962179, 48.84240376722198], [2.381595309444953, 48.8424952588104], [2.381450869876829, 48.84258643383071], [2.381306393346077, 48.842677925055284], [2.381161954128812, 48.842769099718886], [2.381017475232705, 48.84286058967319], [2.380873035003794, 48.84295176397301], [2.380728556445876, 48.84304325446977], [2.3805841138427972, 48.8431344283988], [2.380439634271435, 48.843225918531665], [2.380295190667384, 48.84331709119762], [2.380150710082474, 48.8434085809665], [2.380006266818582, 48.843499754175056], [2.379861783857589, 48.84359124357303], [2.379813384725685, 48.84363693373674], [2.379818591051261, 48.843642096967024], [2.3798761024858432, 48.84366357050956], [2.37993252232595, 48.84368483241267], [2.379938742829772, 48.84369087866849], [2.379975178866406, 48.84370161250002], [2.380092409776991, 48.84374579127452], [2.380259443750112, 48.84380772137355], [2.380433095388526, 48.84387316152875], [2.380600130174682, 48.843935091145035], [2.380773784027788, 48.844000530805275], [2.380940819626983, 48.84406245993882], [2.3811144729698093, 48.844127899090026], [2.381281509381939, 48.84418982774081], [2.381455164950136, 48.84425526549775], [2.38162220216463, 48.8443171945651], [2.381795857222433, 48.84438263181299], [2.381962895250069, 48.84444456039757], [2.382136552522469, 48.84450999715049], [2.3823035900112552, 48.844571924346], [2.382477248125148, 48.84463736149619], [2.38264428778952, 48.84469928821596], [2.382817946755571, 48.844764724864184], [2.382984985870422, 48.84482665109413], [2.38298997794378, 48.844827734485655], [2.383082401795289, 48.84483532144832], [2.3832483424209983, 48.844844230791516], [2.383254382317696, 48.84485107456463], [2.383277064044487, 48.8448637780058], [2.3832776231006942, 48.8448640911662]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 78.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-50", "circ_bv": "08", "num_bureau": 50, "roussel_fabien": 32.0, "nb_emargement": 1310.0, "nb_procuration": 69.0, "nb_vote_blanc": 15.0, "jadot_yannick": 96.0, "le_pen_marine": 82.0, "nb_exprime": 1285.0, "nb_vote_nul": 11.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1711.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1311, "quartier_bv": "47", "geo_point_2d": [48.84243558043304, 2.3837613257291874], "melenchon_jean_luc": 495.0, "poutou_philippe": 8.0, "macron_emmanuel": 388.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.304694563378126, 48.88961553822607], [2.304709036179225, 48.88960888988921], [2.304757266497923, 48.88957287571926], [2.304891855265166, 48.889470972619414], [2.305022758985598, 48.88937322445787], [2.305157348092928, 48.88927132014974], [2.305288249449441, 48.88917357167227], [2.305422837509146, 48.88907166794645], [2.305553737877359, 48.88897391826173], [2.305688324901348, 48.88887201421898], [2.30581922425728, 48.88877426512546], [2.305953810245766, 48.8886723607658], [2.306084708613405, 48.88857461046506], [2.306219293566295, 48.888472705788466], [2.30635019092168, 48.88837495607901], [2.306484774850961, 48.888273050186235], [2.306615671205983, 48.888175300168754], [2.306750254087707, 48.88807339485833], [2.306881149454549, 48.887975643633624], [2.307012045681653, 48.887877893164294], [2.307146627019002, 48.88777598738076], [2.3072775208940532, 48.88767823569627], [2.307412101195843, 48.88757632959584], [2.3074419955564798, 48.887554004863624], [2.307443241708042, 48.88755208030993], [2.307378869243328, 48.88751472120237], [2.307193695240245, 48.887490762847726], [2.307009045523658, 48.88746687379001], [2.306823871848913, 48.887442915761596], [2.3066392238471938, 48.88741902524117], [2.3064540491491963, 48.887395066631946], [2.306269401486825, 48.88737117554019], [2.306084228492705, 48.887347216365846], [2.30589957980613, 48.887323324694854], [2.305714407152332, 48.88729936494758], [2.305529760168677, 48.88727547271317], [2.305344586491552, 48.88725151238498], [2.3051599398353693, 48.8872276204785], [2.304974766498579, 48.887203659577374], [2.304790120193668, 48.88717976620026], [2.30478664220217, 48.88717898337359], [2.304773618618211, 48.88717468449675], [2.304767302294113, 48.88717035621475], [2.30476360127625, 48.887160742461894], [2.304741827826741, 48.887154614798234], [2.304664015992858, 48.88704143541154], [2.304587218502248, 48.88692973135886], [2.304509407328536, 48.88681655274778], [2.304432610501241, 48.886704848573096], [2.304354800011509, 48.8865916689391], [2.304278003847522, 48.886479964642405], [2.304200192666322, 48.88636678487685], [2.304123397153621, 48.886255081357376], [2.304045588008011, 48.886141901476144], [2.303968793170619, 48.886030196935394], [2.303890984697056, 48.88591701693052], [2.30381419052305, 48.88580531226773], [2.303736382709503, 48.885692133038475], [2.30365958919867, 48.88558042825373], [2.303581782069177, 48.8854672480016], [2.303504989221613, 48.8853555430948], [2.303497858320387, 48.885350967178454], [2.303277995411062, 48.88528995161533], [2.303067223679581, 48.88523145902761], [2.303052046417568, 48.88522907198777], [2.303040931618401, 48.885236871052705], [2.302908960491657, 48.88533417228799], [2.302777570096926, 48.88543104417488], [2.302646179213252, 48.88552791590902], [2.3025142065993762, 48.885625217582735], [2.302382814735849, 48.885722089010756], [2.30225084114972, 48.88581938947771], [2.302119448306434, 48.885916260599664], [2.301987472360424, 48.88601356165043], [2.301856079900792, 48.88611043247419], [2.3017241029827202, 48.8862077323182], [2.301592709543217, 48.88630460283586], [2.3014607316288602, 48.88640190327166], [2.301329335845838, 48.886498773475175], [2.301197358322845, 48.88659607271217], [2.301065961560033, 48.88669294260959], [2.300933983040734, 48.88679024243833], [2.3009246422709, 48.88680146012378], [2.300931052578886, 48.886809122083555], [2.301066828256492, 48.88686398254521], [2.301264788718184, 48.88694396974708], [2.3014005650988922, 48.8869988298236], [2.301598526597923, 48.88707881556463], [2.30173430366988, 48.887133676155194], [2.301737510247702, 48.88713547463162], [2.301860449592664, 48.88722958076337], [2.301983423123268, 48.88732371303806], [2.30210636198135, 48.88741781979246], [2.30222933640104, 48.88751195179853], [2.302352276160116, 48.88760605738507], [2.302475251468896, 48.88770018912243], [2.302598193468339, 48.88779429534757], [2.302721169666222, 48.8878884268162], [2.302844111202894, 48.88798253186552], [2.302967088277945, 48.888076663964725], [2.303090030703475, 48.88817076874542], [2.303213008679578, 48.88826489967663], [2.303335953345628, 48.888359005095914], [2.303458932210956, 48.888453135758425], [2.303581876414229, 48.888547240001856], [2.303704856168581, 48.8886413703957], [2.30382780124871, 48.88873547526974], [2.303950781892301, 48.888829605394854], [2.303954781143066, 48.888831699798686], [2.304105438801371, 48.88888379409682], [2.304255551025465, 48.888935700669364], [2.304258731513266, 48.88893722102975], [2.304386533642144, 48.88901925933486], [2.304518964724247, 48.889104269684935], [2.304522905163823, 48.88910923888323], [2.304552212104484, 48.88922550531368], [2.304583002197676, 48.88934765115802], [2.304612309418724, 48.88946391664923], [2.30464309979387, 48.889586062451556], [2.304694563378126, 48.88961553822607]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 161, "zemmour_eric": 180.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-52", "circ_bv": "04", "num_bureau": 52, "roussel_fabien": 6.0, "nb_emargement": 1223.0, "nb_procuration": 91.0, "nb_vote_blanc": 6.0, "jadot_yannick": 48.0, "le_pen_marine": 62.0, "nb_exprime": 1218.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1483.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1225, "quartier_bv": "66", "geo_point_2d": [48.887392143403524, 2.304001078142795], "melenchon_jean_luc": 138.0, "poutou_philippe": 3.0, "macron_emmanuel": 585.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.277057042221043, 48.848106680496954], [2.277052217987355, 48.84809117506484], [2.277041376959102, 48.848082573677914], [2.277041068415719, 48.84808231999115], [2.276922635148877, 48.84798209396961], [2.27678606545465, 48.84786540861865], [2.276667633171185, 48.847765182325205], [2.2765310646164583, 48.847648496660504], [2.276412633316257, 48.84754827009508], [2.27628998748448, 48.84744520828697], [2.276171557110001, 48.847344981464616], [2.276048913583511, 48.84724192029811], [2.275930484147136, 48.84714169231955], [2.275807840213197, 48.847038630878885], [2.275689411702329, 48.846938402643396], [2.275688558916205, 48.84693759974233], [2.275603527061012, 48.84684740996853], [2.275532934730887, 48.84676151750051], [2.2755012292449, 48.846727888846985], [2.275494527156276, 48.84671870439867], [2.275472441350473, 48.84670905714687], [2.27541911422581, 48.84665249587973], [2.275372922687704, 48.846605210704965], [2.275353226559568, 48.84659217200143], [2.275302112779963, 48.84661311443119], [2.2751288650537003, 48.846669284381285], [2.2749563306151, 48.846725481786265], [2.274783082142503, 48.84678165122995], [2.274610548321622, 48.84683784813884], [2.2744372977403, 48.84689401706794], [2.274264763174547, 48.846950213472496], [2.274091513209491, 48.84700638190342], [2.273918976536369, 48.84706257779539], [2.273745725812554, 48.847118746619245], [2.273573188406992, 48.84717494110761], [2.273399936937047, 48.84723110942507], [2.273227398786621, 48.847287303409054], [2.273194657378409, 48.847298234170246], [2.273194863660835, 48.84731138775933], [2.27330574525457, 48.84741233167957], [2.273417608960421, 48.84751225976957], [2.273528491412998, 48.84761320346515], [2.273640355977139, 48.84771313132888], [2.27375124066372, 48.84781407390883], [2.273863106073629, 48.847914002445535], [2.273860240805547, 48.84792658067535], [2.273700670179502, 48.84800435875975], [2.273548995664584, 48.848078253445614], [2.273389422734427, 48.848156031995295], [2.273237747336632, 48.84822992627651], [2.273232230324475, 48.84823671894931], [2.273224424878635, 48.84834135050905], [2.273226818156018, 48.8484447057561], [2.273222999356519, 48.84845108784013], [2.273097276360115, 48.84853707685707], [2.272950957042889, 48.84863836739426], [2.272825233145685, 48.84872435611085], [2.272678911398664, 48.84882564718928], [2.2725531866008533, 48.84891163560557], [2.272406865174422, 48.84901292544326], [2.272281139475797, 48.84909891355922], [2.272134815632096, 48.84920020303887], [2.27200908902029, 48.84928619175377], [2.271862765484622, 48.849387480891956], [2.27173703798455, 48.84947346840723], [2.271700759673226, 48.84948890012566], [2.271708130948447, 48.849507417951074], [2.271713810016236, 48.8495119682314], [2.271860893546782, 48.8495711890633], [2.2720243347087052, 48.849638110669154], [2.2721714175855983, 48.849697331104316], [2.272334859554478, 48.84976425137915], [2.272481944502853, 48.84982347143412], [2.272597216182649, 48.84987066855167], [2.272602831242891, 48.849882058065496], [2.272632655960209, 48.849888071763736], [2.272680827060632, 48.84990779537397], [2.272852837772659, 48.8499786432699], [2.273016281486353, 48.85004556349628], [2.273188293096548, 48.850116411800464], [2.273351739048349, 48.850183330669296], [2.273523751569466, 48.85025417848244], [2.273687197021462, 48.85032109687649], [2.273859210453399, 48.85039194419862], [2.274022656755745, 48.85045886302535], [2.27418610485309, 48.85052578073379], [2.274358119638853, 48.85059662732567], [2.274521567236489, 48.850663544559296], [2.274693582933076, 48.850734390660094], [2.274857031380974, 48.850801308326474], [2.275029049363702, 48.850872153045145], [2.275192498674489, 48.85093907024499], [2.275364516205337, 48.851009914464385], [2.275396724850359, 48.85100724595603], [2.275407754284465, 48.85097909522764], [2.275392330816825, 48.85086448228668], [2.2753752381824173, 48.85075465822612], [2.275359813489925, 48.85064004524958], [2.275342722347849, 48.85053022206977], [2.275340759823042, 48.85052631054246], [2.275240118950589, 48.85041818381506], [2.275146181526701, 48.85031567545657], [2.275045541452265, 48.85020754944431], [2.274951604790826, 48.85010504091369], [2.274949638244487, 48.85010044223965], [2.274948042921877, 48.84992900657125], [2.274950891802194, 48.84976010163876], [2.274948064099399, 48.849754516538084], [2.274818638674262, 48.849643542016565], [2.274680180967127, 48.849523104331745], [2.274550756687294, 48.849412129497395], [2.274412300201589, 48.84929169237691], [2.2744186742185573, 48.84927776389725], [2.2745910058092083, 48.8492381584933], [2.27476144534474, 48.84919818252571], [2.274933776411713, 48.84915857662517], [2.275104214048854, 48.84911860105748], [2.2752765445922503, 48.84907899466044], [2.275446981706172, 48.8490390186016], [2.275619311725785, 48.84899941170803], [2.275789749691634, 48.84895943426704], [2.275796927203696, 48.84894639645036], [2.275721781346073, 48.84886218370671], [2.275643584392144, 48.848777590890855], [2.275568439038234, 48.84869337713877], [2.275490243949058, 48.848608784218136], [2.275496058406138, 48.84859596749921], [2.275687145432518, 48.84853642183719], [2.27586969783505, 48.84847908881582], [2.276060784018424, 48.848419541651516], [2.276243334225333, 48.84836220894503], [2.276434420915834, 48.84830266118598], [2.276616970302358, 48.84824532790342], [2.276808056137344, 48.84818577954142], [2.276990604715753, 48.848128444783455], [2.277057042221043, 48.848106680496954]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 143, "zemmour_eric": 161.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-30", "circ_bv": "14", "num_bureau": 30, "roussel_fabien": 13.0, "nb_emargement": 1129.0, "nb_procuration": 51.0, "nb_vote_blanc": 12.0, "jadot_yannick": 55.0, "le_pen_marine": 82.0, "nb_exprime": 1116.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1430.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1129, "quartier_bv": "61", "geo_point_2d": [48.848641515897995, 2.2744173438317112], "melenchon_jean_luc": 129.0, "poutou_philippe": 2.0, "macron_emmanuel": 496.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.341110405583818, 48.83181941345034], [2.341145676917128, 48.83179394327007], [2.341197556149274, 48.83175648149526], [2.341175157037639, 48.831728922761904], [2.341190789092176, 48.83162394329788], [2.341200425891237, 48.8314832688828], [2.341216057821227, 48.8313782893925], [2.341225695868787, 48.831237614952], [2.341232009613047, 48.83111302815027], [2.341241647568621, 48.830972353675214], [2.341247962616183, 48.83084776595132], [2.341254277622197, 48.83072317911258], [2.341263914083327, 48.83058250457926], [2.341270229030553, 48.830457916810886], [2.341279865399606, 48.830317242243], [2.341282002997945, 48.83027507070568], [2.3412863345711212, 48.830266367043095], [2.341282135230092, 48.83025005176456], [2.341286312495048, 48.8301676364006], [2.34129721695373, 48.83007893098859], [2.341290927570785, 48.83006361599163], [2.341213970268876, 48.8300640734957], [2.341010196440672, 48.830067567351776], [2.340805640891328, 48.830071258011856], [2.340601865645513, 48.830074751164695], [2.3403973100390782, 48.83007844112638], [2.340193534737829, 48.83008193358351], [2.339988979074314, 48.8300856228468], [2.33978520507981, 48.83008911461566], [2.339580649359125, 48.830092803180555], [2.339376873947143, 48.83009629424621], [2.339172318169399, 48.830099982112664], [2.338968544064082, 48.83010347249013], [2.338763988229393, 48.8301071596582], [2.338560212706518, 48.830110649332376], [2.338355656814793, 48.830114335802065], [2.338151882598706, 48.83011782478803], [2.337947325287788, 48.83012151055175], [2.337743551016334, 48.83012499884202], [2.337538995010568, 48.83012868391489], [2.337335219321587, 48.830132171501845], [2.337130663258818, 48.83013585587632], [2.337099626691223, 48.83013269073651], [2.3370834723120533, 48.830145296758374], [2.336901402750728, 48.83017425187371], [2.336725406345172, 48.83020124198433], [2.3365433363895862, 48.8302301965531], [2.336367339609785, 48.83025718613549], [2.336185269259946, 48.83028614015771], [2.336009272105906, 48.83031312921187], [2.335827201361822, 48.83034208268754], [2.335651203833549, 48.83036907121345], [2.335620871081666, 48.830375879159895], [2.335615464689684, 48.830391348936196], [2.335515069668207, 48.8304607121087], [2.335407558611423, 48.83053365832927], [2.335410516597332, 48.83054772118575], [2.3355901787778732, 48.83061611576767], [2.335766265076154, 48.8306834748203], [2.335945928191269, 48.83075186885951], [2.33612201676983, 48.83081922738779], [2.3363016808195223, 48.830887620884326], [2.336477768954198, 48.83095497887316], [2.336657433938464, 48.83102337182697], [2.336833522991336, 48.831090729283865], [2.337013190272373, 48.83115912170257], [2.337189280243444, 48.83122647862749], [2.337368947096861, 48.831294870495974], [2.337545037986128, 48.831362226888984], [2.337724705774121, 48.831430618214725], [2.337900797581482, 48.83149797407579], [2.337901966850292, 48.83149847610308], [2.338049789206331, 48.831570222467306], [2.338200634146792, 48.83164245483956], [2.338348457322046, 48.8317142008254], [2.338499303092958, 48.8317864328117], [2.338647125725419, 48.83185817841165], [2.33879797232678, 48.83193041001197], [2.338945797140774, 48.832002155241085], [2.339096644572591, 48.83207438645546], [2.339244470194408, 48.832146132205544], [2.339395318456684, 48.832218363033924], [2.339427378556021, 48.832264388294064], [2.339452044716424, 48.83226252791769], [2.33952937212557, 48.832241074137194], [2.339694048436954, 48.83219661007858], [2.339875671529682, 48.83214621893203], [2.340040345883828, 48.832101754385356], [2.340221968299848, 48.83205136360797], [2.340386643432577, 48.832006897688935], [2.340568265183472, 48.83195650638148], [2.340732938358955, 48.83191203997438], [2.340914559444624, 48.83186164813679], [2.341079233375822, 48.83181718215592], [2.341110405583818, 48.83181941345034]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 70, "zemmour_eric": 77.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "14-35", "circ_bv": "11", "num_bureau": 35, "roussel_fabien": 28.0, "nb_emargement": 1209.0, "nb_procuration": 48.0, "nb_vote_blanc": 13.0, "jadot_yannick": 105.0, "le_pen_marine": 53.0, "nb_exprime": 1191.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1477.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "54", "geo_point_2d": [48.83094108486823, 2.338985728639074], "melenchon_jean_luc": 326.0, "poutou_philippe": 6.0, "macron_emmanuel": 464.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.290090817275724, 48.84804698731359], [2.29011682918343, 48.84805906452759], [2.290152159595302, 48.84807592678032], [2.290193658498371, 48.84809503085967], [2.290197922597834, 48.848098221019995], [2.290279971312197, 48.848201621998115], [2.290374370165105, 48.8483200741679], [2.29045641957886, 48.84842347500443], [2.290550819234701, 48.84854192701143], [2.290632869347858, 48.84864532770636], [2.290727269806643, 48.8487637795505], [2.29080932061921, 48.848867180103795], [2.2908684138186572, 48.84894132763173], [2.2908674012637302, 48.84894453505554], [2.290882649574477, 48.84895921130733], [2.290917957660986, 48.849003515455905], [2.290958026722404, 48.84905306501328], [2.2909730136752913, 48.84905760837585], [2.291169933018154, 48.84902863663152], [2.291366580768679, 48.848999878802154], [2.29156349831194, 48.84897090640046], [2.291760145627328, 48.84894214792281], [2.291957064084066, 48.848913175779224], [2.292153710964516, 48.84888441665319], [2.292350627633859, 48.848855442953024], [2.292547274079156, 48.84882668317866], [2.292744191674176, 48.8487977088373], [2.292940837684514, 48.848768948414616], [2.293137753467704, 48.848739974315265], [2.293334399042875, 48.848711213244194], [2.293531315763925, 48.84868223760435], [2.2937279609041212, 48.84865347588497], [2.293742763961153, 48.8486578217547], [2.293767584218005, 48.84868672091228], [2.293796320819244, 48.84871724224839], [2.293813176141099, 48.848720786299], [2.293826952024895, 48.84871696437362], [2.293852837405086, 48.848707693627766], [2.293853066641705, 48.84870716885325], [2.293912757837664, 48.84868609381523], [2.293961658051096, 48.848668800744896], [2.293967046633056, 48.848656404243016], [2.293853943811757, 48.84852608182938], [2.293740883139209, 48.84839580810463], [2.293627780074244, 48.8482654863379], [2.293514721894959, 48.848135212377], [2.2935199722218123, 48.848122865437006], [2.293701459132272, 48.84805690110325], [2.293881217274623, 48.84799156843559], [2.294062703270581, 48.84792560354606], [2.29424246050706, 48.847860270327956], [2.294423945588616, 48.847794304882704], [2.2946037019071532, 48.84772897201343], [2.294785186074207, 48.84766300601246], [2.294964941499151, 48.847597671693464], [2.295146424751699, 48.84753170513673], [2.295326179258712, 48.84746637116659], [2.295507661596655, 48.84740040405416], [2.295687415210162, 48.847335068634294], [2.295692790040038, 48.84733151361137], [2.295791472329997, 48.847211421414436], [2.2958987513433993, 48.84708225476923], [2.295901088678873, 48.84706871600352], [2.295885421197628, 48.84706129937241], [2.2956982663889782, 48.847051031431484], [2.295511555784429, 48.847040972666704], [2.295324401122441, 48.847030704140785], [2.295137690675046, 48.84702064389313], [2.294950536159732, 48.84701037478212], [2.294763825845174, 48.84700031485012], [2.294576672839039, 48.84699004516215], [2.294389962681766, 48.84697998374722], [2.294202808459718, 48.84696971346621], [2.294016098435286, 48.84695965236693], [2.293828944359933, 48.84694938150093], [2.293642234492713, 48.846939318918736], [2.293455080564067, 48.84692904746767], [2.293268370829692, 48.84691898520114], [2.293267778388949, 48.84691896101607], [2.293087577624097, 48.84691427104935], [2.292918700100264, 48.84690943278565], [2.292749822619992, 48.846904593384274], [2.292569620588939, 48.846899902629346], [2.292544174544361, 48.846903460243055], [2.292540040215452, 48.8469114860101], [2.292580590622098, 48.84698921506239], [2.292618528101039, 48.8470622825274], [2.292612457857774, 48.84707298415108], [2.292558333471327, 48.84709363820087], [2.292518649948914, 48.84710923955247], [2.292495177733082, 48.84711605373572], [2.292493094924954, 48.84712041502899], [2.2923682125302, 48.84716807125865], [2.292197613462636, 48.847233040376295], [2.29201860707443, 48.84730135010252], [2.29184800714685, 48.84736631781456], [2.291668998467763, 48.84743462790082], [2.291498397668153, 48.84749959510658], [2.291319388073007, 48.84756790466153], [2.291148786401166, 48.84763287136101], [2.290969777252585, 48.84770118039279], [2.290799174708715, 48.847766146586004], [2.290620163281456, 48.84783445507841], [2.290449559865355, 48.8478994207653], [2.290270547522038, 48.84796772872645], [2.290099943233908, 48.84803269390706], [2.290093703379334, 48.848037893879685], [2.290090817275724, 48.84804698731359]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 153, "zemmour_eric": 132.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "15-12", "circ_bv": "12", "num_bureau": 12, "roussel_fabien": 15.0, "nb_emargement": 1468.0, "nb_procuration": 92.0, "nb_vote_blanc": 7.0, "jadot_yannick": 113.0, "le_pen_marine": 65.0, "nb_exprime": 1459.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1767.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1468, "quartier_bv": "59", "geo_point_2d": [48.84789692815892, 2.292719728171992], "melenchon_jean_luc": 223.0, "poutou_philippe": 1.0, "macron_emmanuel": 692.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.337099626691223, 48.83013269073651], [2.337130663258818, 48.83013585587632], [2.337335219321587, 48.830132171501845], [2.337538995010568, 48.83012868391489], [2.337743551016334, 48.83012499884202], [2.337947325287788, 48.83012151055175], [2.338151882598706, 48.83011782478803], [2.338355656814793, 48.830114335802065], [2.338560212706518, 48.830110649332376], [2.338763988229393, 48.8301071596582], [2.338968544064082, 48.83010347249013], [2.339172318169399, 48.830099982112664], [2.339376873947143, 48.83009629424621], [2.339580649359125, 48.830092803180555], [2.33978520507981, 48.83008911461566], [2.339988979074314, 48.8300856228468], [2.340193534737829, 48.83008193358351], [2.3403973100390782, 48.83007844112638], [2.340601865645513, 48.830074751164695], [2.340805640891328, 48.830071258011856], [2.341010196440672, 48.830067567351776], [2.341213970268876, 48.8300640734957], [2.341290927570785, 48.83006361599163], [2.341296811477464, 48.83004924582954], [2.341303595140826, 48.82999406884604], [2.341320523003011, 48.82984522938933], [2.341338210913422, 48.829701347848165], [2.341355138592991, 48.82955250744838], [2.341372824946502, 48.829408625857006], [2.341372930950116, 48.829407998677645], [2.341399727472925, 48.829286996050115], [2.341429960936515, 48.82915314588147], [2.341456757195962, 48.82903214321366], [2.34148698901466, 48.828898292093356], [2.341513786372784, 48.82877728939276], [2.341544017885917, 48.828643439126964], [2.341570814980682, 48.82852243638606], [2.34157091781299, 48.82852184426422], [2.341589941989649, 48.828368492266264], [2.341607189636767, 48.82827857237826], [2.341624437224388, 48.828188652480634], [2.341643461122038, 48.828035300428596], [2.341642808005482, 48.827906556664864], [2.341642854071734, 48.82790582122944], [2.341642842676452, 48.827779547970216], [2.341642189564626, 48.82765080417708], [2.341642178182366, 48.8275245299898], [2.341641526437475, 48.827395786174925], [2.341641515056775, 48.82726951195894], [2.341641087313451, 48.82718526956714], [2.341652886701497, 48.82715946307684], [2.341647183065525, 48.82714880465277], [2.341646957690391, 48.827104304090824], [2.341650739960886, 48.826960982367915], [2.341650088201795, 48.82683223848842], [2.341650095150557, 48.826831903958734], [2.34165588333248, 48.826719149551714], [2.341659666901217, 48.826575828686195], [2.341665455034008, 48.82646307425294], [2.341667314572818, 48.826392617443965], [2.34166923719578, 48.82631975334684], [2.34165717176254, 48.826301274889715], [2.341607272925867, 48.82631763325408], [2.34149907552117, 48.826212362681694], [2.34139202901847, 48.82610659558587], [2.341283832497802, 48.826001323899625], [2.341176786865058, 48.82589555659129], [2.341068592567541, 48.825790285597336], [2.340961547804739, 48.82568451807646], [2.340853353029182, 48.82557924596116], [2.340746309136316, 48.825473478227714], [2.340638115221828, 48.82536820679722], [2.340531072198891, 48.82526243885122], [2.340422880530449, 48.825157166314426], [2.340315838377427, 48.825051398155914], [2.340207646207988, 48.82494612629643], [2.340100604924876, 48.824840357925375], [2.340064072591172, 48.824804259455725], [2.339955881443016, 48.82469898734529], [2.339885373226222, 48.824629316368465], [2.339875152541124, 48.82461851957626], [2.339852557992181, 48.82464176249044], [2.33967065325943, 48.82461966236669], [2.339481795405112, 48.82459679146627], [2.339299890986422, 48.82457469077764], [2.339111034808165, 48.82455182019763], [2.338929130714941, 48.82452971804487], [2.338740273500303, 48.8245068468709], [2.338740227260812, 48.82450684121891], [2.3385590748030882, 48.82448735894842], [2.338376386890594, 48.82446566263156], [2.338195233338466, 48.82444618070096], [2.338012545721768, 48.82442448382745], [2.337831392460091, 48.824405000445715], [2.3376487065011142, 48.82438330302314], [2.337467553518483, 48.82436381908952], [2.337284866493097, 48.824342121102774], [2.337276628720122, 48.82434371681603], [2.337261886828731, 48.82439172129], [2.337236242711711, 48.82451408890508], [2.337206753345326, 48.824650701128924], [2.337181108971528, 48.82477306870399], [2.337151617963704, 48.82490967997592], [2.337125974695157, 48.82503204751845], [2.33709648339628, 48.82516865874523], [2.337070839859519, 48.82529102714706], [2.3370413482696852, 48.825427638328726], [2.337015703125529, 48.825550005783676], [2.336986212606884, 48.82568661692777], [2.336960567194498, 48.825808985241956], [2.336931076384794, 48.825945596340965], [2.336905430727048, 48.8260679637158], [2.336875938264315, 48.82620457476212], [2.336850293700396, 48.82632694300376], [2.33682080094669, 48.82646355400497], [2.336795156137411, 48.826585921307256], [2.33679768791949, 48.826609407283264], [2.336813519112534, 48.82661484546893], [2.336944813202309, 48.826709800291034], [2.337068818265483, 48.826802018221784], [2.337200111918179, 48.82689697363952], [2.337324119251637, 48.8269891903984], [2.33744812701225, 48.827081407920396], [2.33757942205938, 48.82717636289811], [2.337703430728305, 48.82726857924068], [2.3378347267116872, 48.82736353392224], [2.337838068719797, 48.827371207915725], [2.3378036663203883, 48.8274959947224], [2.337770145679348, 48.82762052017361], [2.337735742964272, 48.82774530603369], [2.337702222000595, 48.827869831438164], [2.337667820309214, 48.827994618157824], [2.337634297660885, 48.828119143508054], [2.337599895653837, 48.82824392928112], [2.337566372682957, 48.828368454584684], [2.337531970337384, 48.82849324120978], [2.337498447043948, 48.82861776646657], [2.337464044382701, 48.82874255214507], [2.337430520766706, 48.828867077355135], [2.337396117766821, 48.828991863885705], [2.337362593828361, 48.82911638904905], [2.337328190512795, 48.829241174633005], [2.337294666240335, 48.82936570064894], [2.337260262597653, 48.829490486185605], [2.337226738013949, 48.82961501125548], [2.337192334044249, 48.829739796744875], [2.337158809126533, 48.829864322667284], [2.337124404829708, 48.82998910810938], [2.337090879600842, 48.83011363308579], [2.337099626691223, 48.83013269073651]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 75, "zemmour_eric": 78.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-39", "circ_bv": "11", "num_bureau": 39, "roussel_fabien": 31.0, "nb_emargement": 1143.0, "nb_procuration": 35.0, "nb_vote_blanc": 13.0, "jadot_yannick": 91.0, "le_pen_marine": 59.0, "nb_exprime": 1127.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1444.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1142, "quartier_bv": "54", "geo_point_2d": [48.82737894560255, 2.3392799330121528], "melenchon_jean_luc": 387.0, "poutou_philippe": 8.0, "macron_emmanuel": 342.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.35283882049259, 48.8281197308478], [2.352901448154419, 48.82808759423314], [2.35292247708799, 48.8280820365622], [2.352938489115958, 48.82808503716864], [2.353056038060889, 48.82818993754191], [2.353173502717846, 48.828295081961144], [2.353291052620404, 48.82839998118447], [2.353408518224597, 48.82850512535318], [2.353526069062479, 48.828610025225174], [2.353643535613917, 48.828715169143365], [2.3537610874094392, 48.82882006786542], [2.353878553546092, 48.8289252115257], [2.353996107639003, 48.82903011090379], [2.354113574722914, 48.82913525431357], [2.354231129773581, 48.829240152541686], [2.354348597804659, 48.82934529570091], [2.354466153790709, 48.82945019457769], [2.354583622769164, 48.82955533748639], [2.354701179712778, 48.82966023521313], [2.35481864962739, 48.82976537877065], [2.354936207517544, 48.82987027624675], [2.35505367839058, 48.82997541865439], [2.355171235865214, 48.83008031587245], [2.355288709036501, 48.830185458936214], [2.355406267457687, 48.83029035590364], [2.355523741587417, 48.83039549781746], [2.355641300955162, 48.83050039453424], [2.355758776021207, 48.830605537096865], [2.355825191927975, 48.83062157448593], [2.355839849804455, 48.83059764740221], [2.355894908036983, 48.830473159687344], [2.355952553083332, 48.83035108359054], [2.356007609424156, 48.83022659578907], [2.356065253934061, 48.83010451961109], [2.356122898173897, 48.82998244339209], [2.356177955080803, 48.82985795547856], [2.356178227003566, 48.829857225752676], [2.356218688547235, 48.82972580332038], [2.356258817522662, 48.82959415872369], [2.3562992786590993, 48.829462736233275], [2.356339405877482, 48.82933109067204], [2.356379866606493, 48.82919966812353], [2.356419994770037, 48.82906802341102], [2.356460455091727, 48.82893660080441], [2.35650058149815, 48.82880495512731], [2.356541041412628, 48.828673532462616], [2.356581168764111, 48.82854188763424], [2.35662162827118, 48.828410464911464], [2.356661753865766, 48.82827881911853], [2.356702212965535, 48.82814739633766], [2.356742339505082, 48.828015751393444], [2.356782798197553, 48.82788432855446], [2.356822922980227, 48.82775268264573], [2.356863381265411, 48.827621259748675], [2.356903506993046, 48.82748961468869], [2.356914217809396, 48.82745482333331], [2.356912703157349, 48.82745271874722], [2.3568459064301, 48.82744808661217], [2.3567160007957693, 48.82741891912829], [2.356568800475023, 48.827379990179814], [2.356545897165969, 48.827368940453916], [2.356533489265103, 48.82737147288525], [2.356498313079466, 48.82736217025352], [2.356312022839719, 48.827313437016166], [2.356129647064011, 48.82726520482583], [2.355943357504244, 48.82721647190933], [2.355760982408697, 48.82716823915262], [2.355578607650699, 48.82712000611574], [2.355392319124835, 48.82707127233459], [2.355209945058228, 48.827023037832035], [2.355023657223458, 48.8269743034724], [2.354841283825904, 48.82692606930279], [2.354654996682329, 48.826877334364724], [2.354472623965052, 48.826829099628725], [2.354286337523614, 48.82678036321286], [2.354270631453968, 48.82678315011309], [2.354130655336856, 48.82690014579422], [2.35399684746793, 48.82701332080128], [2.3538630403914063, 48.82712649475522], [2.353723061064453, 48.827243490815476], [2.353589252802862, 48.82735666443991], [2.353449272254668, 48.82747365925638], [2.353436877541282, 48.82749828907014], [2.3534408779697022, 48.82750204490101], [2.353446563746733, 48.827510935378434], [2.353444973408597, 48.827519777524905], [2.353342364790427, 48.82761150665728], [2.353254819052886, 48.82769310925681], [2.353167271679177, 48.82777471177896], [2.353064662059494, 48.82786644155158], [2.352962052089792, 48.827958170329296], [2.352809838912564, 48.828092164690695], [2.352818505672242, 48.82810627690255], [2.35283882049259, 48.8281197308478]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 76, "zemmour_eric": 109.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-59", "circ_bv": "10", "num_bureau": 59, "roussel_fabien": 30.0, "nb_emargement": 1403.0, "nb_procuration": 76.0, "nb_vote_blanc": 18.0, "jadot_yannick": 124.0, "le_pen_marine": 63.0, "nb_exprime": 1379.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1807.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1403, "quartier_bv": "51", "geo_point_2d": [48.828397015438796, 2.355084776618446], "melenchon_jean_luc": 432.0, "poutou_philippe": 8.0, "macron_emmanuel": 455.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.299455007152114, 48.840532892989756], [2.299441102868162, 48.84054382433821], [2.29942689800325, 48.84060549993455], [2.299414561875172, 48.84064765756807], [2.29940910322597, 48.840658532248824], [2.299412509734132, 48.84066956587439], [2.299387310446605, 48.84075568038024], [2.299344818593775, 48.84089921003748], [2.299307282778634, 48.84102748211949], [2.299264790483937, 48.841171011713364], [2.299227254275997, 48.84129928373903], [2.2991847615393253, 48.84144281326951], [2.299147224938679, 48.8415710852389], [2.29914713673073, 48.84157136262696], [2.299088605887151, 48.84173569585003], [2.299037866434013, 48.84188387075995], [2.29903778403758, 48.841884121200884], [2.298997499638234, 48.842013725128304], [2.298946761029991, 48.842161899071385], [2.298935555445504, 48.842197951121776], [2.298936156191644, 48.84220697710199], [2.298989954456434, 48.84221557285154], [2.299189946318143, 48.84227665152885], [2.299394512700157, 48.84233945916013], [2.299594504148753, 48.84240053714636], [2.299799071516612, 48.84246334317962], [2.299999065277256, 48.8425244204907], [2.300203633618866, 48.842587225825184], [2.300222417533237, 48.842581682281185], [2.300276387287078, 48.84246428694355], [2.300330538613428, 48.842347253279044], [2.300384507880983, 48.842229857867956], [2.300438658709014, 48.84211282502924], [2.300457423196138, 48.84210729302537], [2.300625318876577, 48.84215869507578], [2.30081869216672, 48.842218215994976], [2.300986588560773, 48.84226961753327], [2.301179961312547, 48.842329137854634], [2.301347859782696, 48.84238053888875], [2.301541233358678, 48.842440058620234], [2.301709132542438, 48.842491459142174], [2.3019025069424233, 48.84255097828376], [2.302070406839793, 48.84260237829356], [2.302263782063881, 48.84266189684523], [2.302431682674858, 48.84271329634293], [2.302463673981149, 48.84274989016816], [2.3024823946580852, 48.842747021519855], [2.302543774923883, 48.84273702138323], [2.302650231648316, 48.842710848053215], [2.30265793289078, 48.84270606424346], [2.302746972256734, 48.84257341753313], [2.302839359419062, 48.84244135055951], [2.302928397871048, 48.842308703682654], [2.303020784116454, 48.84217663563827], [2.303035468043946, 48.8421547586334], [2.303035594831824, 48.84215322505092], [2.302974794253818, 48.842131655618616], [2.302854074562481, 48.84205318923693], [2.30271886259759, 48.841963862028834], [2.302715112559734, 48.84195583759577], [2.3027545038432082, 48.841818049306106], [2.302791326464542, 48.84167710722252], [2.302784055600535, 48.84166755582777], [2.302596313446712, 48.84160478459538], [2.302411151326631, 48.84154270443239], [2.302223410071643, 48.84147993260774], [2.302038248839273, 48.84141785186065], [2.301850508483123, 48.84135507944374], [2.301665348138464, 48.84129299811253], [2.301477607318803, 48.841230225095444], [2.301292449224211, 48.84116814318805], [2.301104709303393, 48.84110536957874], [2.300919552108577, 48.84104328618793], [2.300734393980449, 48.84098120339843], [2.30054665676745, 48.84091842891076], [2.300376470554788, 48.84085820395424], [2.300191313731041, 48.84079612031388], [2.300191046554156, 48.840796027914614], [2.300020861152063, 48.84073580244555], [2.299854397190955, 48.8406768954005], [2.29968421257893, 48.840616668546794], [2.299517749378787, 48.84055776102698], [2.299455007152114, 48.840532892989756]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 94, "zemmour_eric": 100.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-1", "circ_bv": "12", "num_bureau": 1, "roussel_fabien": 16.0, "nb_emargement": 1000.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 63.0, "le_pen_marine": 57.0, "nb_exprime": 982.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1215.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1000, "quartier_bv": "57", "geo_point_2d": [48.84175101464979, 2.3008188202964166], "melenchon_jean_luc": 182.0, "poutou_philippe": 2.0, "macron_emmanuel": 430.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408363433216961, 48.838174626567266], [2.40835578920306, 48.83816892818108], [2.408316584153233, 48.83804429596474], [2.408274527114436, 48.83792367695213], [2.408235322443275, 48.83779904468185], [2.408193265800617, 48.837678424714866], [2.408154061498109, 48.837553793289885], [2.408112005241374, 48.837433173267875], [2.408103470293351, 48.83742675905752], [2.407892413741072, 48.8373750336709], [2.407681848930811, 48.83732287325268], [2.4076730285021912, 48.83731401223228], [2.407677139306688, 48.83725870834772], [2.407677060277759, 48.837203199343584], [2.407668528156955, 48.83719486587617], [2.407515318997284, 48.83715411336855], [2.407365498752747, 48.83711536684108], [2.407212290063661, 48.83707461394243], [2.4070624689105222, 48.83703586702594], [2.406909262054281, 48.836995113743015], [2.406759441355001, 48.83695636644423], [2.406753431042474, 48.83695331747672], [2.406640276815643, 48.836851641827906], [2.406529670945252, 48.83675078453302], [2.406416516221957, 48.83664910954664], [2.406305911214376, 48.83654825202661], [2.406192757377445, 48.836446575910834], [2.406082153232565, 48.83634571816562], [2.40596900162384, 48.83624404272585], [2.405858396979214, 48.8361431847487], [2.405745246256838, 48.83604150817956], [2.405634643837335, 48.835940649984], [2.405632116207831, 48.83593650395138], [2.405605054069764, 48.83580135708314], [2.405579815264018, 48.8356753801673], [2.405552752045053, 48.8355402323496], [2.405527513481883, 48.83541425629265], [2.405502275040601, 48.83528828021612], [2.405475213585955, 48.835153132340906], [2.405479386114727, 48.83514540236401], [2.405597962029914, 48.83507635394952], [2.405737784502579, 48.83498954241632], [2.405756137420098, 48.834978855622126], [2.40576587610961, 48.83497641726424], [2.405912234131892, 48.83497930006884], [2.406049012426067, 48.83498537912964], [2.406195369137209, 48.83498826068174], [2.406332147487915, 48.83499433941874], [2.406359605423699, 48.83497942214835], [2.406368762703619, 48.83495518117739], [2.406293226894241, 48.83483005550769], [2.406217170015561, 48.834703942384216], [2.406141634923875, 48.83457881749005], [2.40606558015115, 48.834452703349285], [2.406067237036507, 48.8344440704854], [2.406146233629651, 48.83437270784975], [2.406224604700092, 48.834299191673054], [2.406303599496064, 48.834227828917506], [2.406381970126756, 48.83415431262819], [2.406380816758264, 48.8341430207798], [2.406343200950006, 48.834116852346085], [2.4062698587547082, 48.83406465702639], [2.406250031155901, 48.83406455320512], [2.406137937858709, 48.83414183760271], [2.406033295576626, 48.83421499393648], [2.405921201634706, 48.834292278120564], [2.405816560108748, 48.83436543426165], [2.405804388199232, 48.83436812854719], [2.4056123006874452, 48.83434673518225], [2.405440565069874, 48.83432799417273], [2.405268829586152, 48.83430925201699], [2.405076741138571, 48.834287858683396], [2.405070368167188, 48.8342859437155], [2.4049260416943072, 48.834207786874195], [2.404772944166149, 48.83412623696886], [2.40462861994366, 48.83404807976432], [2.404475521987564, 48.833966529459886], [2.40433119865318, 48.83388837188529], [2.404178102993699, 48.833806821195296], [2.4040337791851423, 48.83372866324394], [2.4038806844599963, 48.83364711216162], [2.403860501036926, 48.83364942726066], [2.403742730831584, 48.833776865726335], [2.403646833859964, 48.83388177790937], [2.403621882804179, 48.83392095215009], [2.403626818282508, 48.833925498765325], [2.4036713054443393, 48.83394167440614], [2.403875295018282, 48.83401915435741], [2.404057991547354, 48.83408558169518], [2.404240688531668, 48.8341520096493], [2.404444679785268, 48.83422948771559], [2.404450077322299, 48.834241297165576], [2.404363855812349, 48.83435543067017], [2.404273408343343, 48.834471911980806], [2.404187187427321, 48.834586045341354], [2.404096739163398, 48.834702526494354], [2.404010517479213, 48.83481665970403], [2.403920068410081, 48.83493314159877], [2.4038338445953142, 48.83504727465079], [2.403743396103833, 48.83516375549537], [2.403657171520778, 48.8352778883965], [2.403566722234256, 48.83539436908351], [2.403480496882904, 48.835508501833715], [2.403390045428919, 48.83562498325566], [2.403303820671578, 48.8357391158618], [2.40321336843292, 48.83585559622679], [2.403127142907268, 48.83596972868206], [2.403068546367015, 48.836045185135305], [2.403061919049621, 48.83606820363894], [2.403110756039523, 48.836086927468244], [2.403278441218499, 48.836082427307915], [2.403440912015395, 48.83607630363751], [2.403608595779645, 48.83607180210818], [2.403771066504635, 48.83606567798931], [2.403938750195805, 48.83606117689641], [2.404101220859168, 48.83605505142974], [2.404114007237176, 48.83605978552197], [2.404203099582475, 48.836169645834815], [2.404292717510049, 48.8362808766171], [2.40438180925782, 48.83639073586904], [2.404471427946854, 48.83650196649548], [2.404560520449153, 48.836611825592605], [2.404650139899657, 48.83672305606313], [2.404739233146224, 48.83683291590473], [2.404828853358207, 48.836944146219416], [2.404917947369593, 48.83705400500684], [2.405007568343064, 48.837165235165614], [2.405096664461106, 48.83727509470432], [2.405186284843972, 48.837386323801105], [2.405275381716586, 48.837496183184975], [2.405365002850688, 48.83760741302517], [2.405454100488144, 48.83771727135488], [2.405543722383754, 48.837828501039176], [2.405632820765543, 48.837938360113355], [2.40572244342267, 48.838049589641734], [2.405811542569313, 48.83815944766174], [2.405901167350355, 48.83827067704102], [2.405918284060719, 48.838273996154804], [2.405947049112426, 48.83826660596345], [2.406134124664717, 48.83831817520617], [2.406317760622767, 48.838368887977126], [2.406504835546424, 48.838420456628576], [2.40668847221526, 48.838471169725146], [2.406875549235273, 48.83852273779889], [2.407059185262737, 48.83857345031492], [2.407246263016507, 48.838625017804176], [2.407429901127391, 48.83867572975321], [2.407616978252714, 48.83872729665124], [2.407800617084515, 48.83877800802652], [2.40798769630609, 48.838829574346825], [2.408171335869119, 48.838880284249036], [2.408358414462129, 48.8389318499781], [2.408542054736055, 48.83898256020588], [2.408578346308419, 48.83898211099033], [2.40859191951009, 48.838969112190526], [2.408553835863784, 48.83883776477048], [2.4085146298271303, 48.83871313359298], [2.40847654520032, 48.83858178611148], [2.408437339551119, 48.838457153980805], [2.408399255306108, 48.83832580644464], [2.408360050024045, 48.83820117515937], [2.408363433216961, 48.838174626567266]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 67, "zemmour_eric": 86.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "12-42", "circ_bv": "08", "num_bureau": 42, "roussel_fabien": 24.0, "nb_emargement": 1106.0, "nb_procuration": 48.0, "nb_vote_blanc": 10.0, "jadot_yannick": 82.0, "le_pen_marine": 58.0, "nb_exprime": 1095.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1357.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1106, "quartier_bv": "45", "geo_point_2d": [48.836498441188525, 2.40576521934116], "melenchon_jean_luc": 369.0, "poutou_philippe": 9.0, "macron_emmanuel": 329.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352043078785564, 48.84218421463849], [2.352085439925037, 48.842180980632584], [2.352276470779055, 48.842191115777446], [2.352471958883357, 48.84220112005303], [2.352662988523965, 48.84221125457312], [2.352858478140376, 48.84222125822428], [2.3530495079299483, 48.842231392127], [2.353244997696074, 48.842241395146345], [2.353436027634502, 48.84225152843168], [2.353631517550435, 48.84226153081921], [2.353646018483107, 48.84225401045473], [2.353678755783857, 48.84212134876704], [2.353712952154638, 48.84198869134074], [2.353745689129521, 48.8418560287039], [2.353779886507086, 48.84172337213361], [2.353812623144953, 48.8415907094469], [2.353846820189327, 48.84145805192663], [2.353863006303929, 48.84145075288399], [2.354050588521816, 48.84147631315106], [2.354238743952886, 48.84150181146256], [2.354426326549934, 48.841527370239966], [2.354614482349136, 48.84155286795935], [2.35480206531419, 48.841578426146434], [2.354990221481517, 48.84160392327367], [2.355177804814569, 48.84162948087039], [2.355365961350013, 48.841654977405504], [2.35555354640241, 48.84168053531849], [2.35574170195461, 48.841706030354786], [2.355757729361501, 48.84169920956411], [2.355792175104257, 48.841598948819644], [2.355831024361733, 48.841486897736615], [2.355865469823284, 48.84138663695197], [2.355894867882207, 48.8413018485973], [2.355913233089534, 48.841284786731904], [2.355908661083356, 48.841274811560794], [2.355918113305315, 48.84124754969221], [2.355928154828907, 48.84121901839611], [2.35594024635702, 48.8411841396375], [2.355959546206798, 48.84117038525757], [2.355954537374604, 48.841153640026576], [2.355981293129167, 48.84107646760727], [2.356012675487317, 48.84099657432758], [2.356009055994515, 48.840987142104765], [2.355964659465506, 48.84098009311039], [2.355800080795102, 48.84093629740548], [2.355595644936797, 48.84088156455828], [2.355431066898705, 48.8408377674425], [2.35522663180335, 48.84078303485918], [2.355062054386355, 48.840739237231865], [2.354857620076102, 48.84068450311376], [2.354693043269179, 48.840640705874236], [2.354488609732904, 48.84058597112074], [2.354324033558423, 48.84054217247034], [2.354311905651187, 48.84054240829533], [2.354145634850396, 48.84059514517062], [2.353955202270628, 48.84065447587102], [2.353943395547547, 48.840651881296495], [2.353918628879568, 48.84065992545114], [2.353908991078054, 48.840660424707465], [2.353722734110173, 48.84062448638806], [2.353539955049678, 48.84058960443721], [2.353353698589332, 48.84055366554089], [2.353170921375451, 48.840518783930584], [2.352984665422642, 48.84048284445747], [2.352801887341748, 48.84044796227377], [2.352793109399139, 48.8404482349557], [2.352623457685323, 48.840492356211314], [2.352450820200028, 48.84053803045386], [2.352281167893008, 48.840582152119794], [2.35210852981034, 48.84062782586472], [2.351938876932572, 48.84067194614239], [2.351766238241252, 48.84071762028894], [2.351753980322858, 48.84071691171742], [2.3515794493922613, 48.84064535132865], [2.351404028113325, 48.84057442709724], [2.351229496777975, 48.84050286618135], [2.35105407645479, 48.840431941427745], [2.351040978327124, 48.840431530410875], [2.35088610939644, 48.84048147814388], [2.350742672948456, 48.840527054759754], [2.350599236249722, 48.840572631201816], [2.3504443664763652, 48.8406225783566], [2.350438667679462, 48.84062602885092], [2.350348760765858, 48.840724852910036], [2.350255267276613, 48.84082696257704], [2.350165359668772, 48.84092578648055], [2.350071864097343, 48.84102789597845], [2.349981957157507, 48.84112671973372], [2.349888460866336, 48.84122882906991], [2.349798553232253, 48.84132765266954], [2.349705056221332, 48.84142976184401], [2.349665047624097, 48.84142925475163], [2.349653421661166, 48.84144307862147], [2.349668202400693, 48.84146448468708], [2.349709787060308, 48.841482607187416], [2.349895155287558, 48.841498178109596], [2.350083065862857, 48.84151431566473], [2.3502684343143923, 48.841529886008075], [2.350456346470943, 48.841546023883105], [2.350641715146759, 48.84156159364758], [2.350829626181833, 48.84157773002911], [2.3510149950819192, 48.841593299214736], [2.351202906335772, 48.841609435908765], [2.351388275460125, 48.84162500451553], [2.3515761869550422, 48.84164113972344], [2.351761556292463, 48.84165670865068], [2.351949468017139, 48.8416728432718], [2.3519612560601, 48.84168078645205], [2.3519812809561103, 48.84180201936527], [2.352001407304824, 48.841932086354774], [2.35202143375316, 48.842053319241295], [2.3520415603104, 48.84218338529544], [2.352043078785564, 48.84218421463849]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 59, "zemmour_eric": 95.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "5-15", "circ_bv": "02", "num_bureau": 15, "roussel_fabien": 23.0, "nb_emargement": 1177.0, "nb_procuration": 85.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 41.0, "nb_exprime": 1163.0, "nb_vote_nul": 0.0, "arr_bv": "05", "arthaud_nathalie": 6, "nb_inscrit": 1476.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "18", "geo_point_2d": [48.84123384696714, 2.3528640987264975], "melenchon_jean_luc": 356.0, "poutou_philippe": 13.0, "macron_emmanuel": 406.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.39711317200064, 48.86667107446772], [2.397112794613329, 48.866668464483816], [2.397129912179618, 48.866646436862034], [2.397218014767104, 48.866533480256976], [2.397304046255801, 48.86642276599264], [2.39739214809784, 48.86630980833728], [2.397478178846972, 48.86619909392542], [2.397564209240933, 48.866088378541356], [2.397652309942949, 48.86597542155961], [2.397738340960569, 48.865864706034884], [2.39782644090675, 48.86575174890216], [2.397912469821712, 48.86564103322303], [2.398000569012074, 48.865528075939274], [2.398005267567087, 48.86551382435188], [2.397961262250579, 48.865502369348526], [2.397751620011395, 48.86549607325885], [2.397544529933117, 48.865489988402715], [2.397334887783618, 48.8654836924823], [2.397127797803237, 48.86547760690504], [2.3969181571170353, 48.86547131026147], [2.39671106723456, 48.86546522396307], [2.396501425285563, 48.86545892658266], [2.396294335501007, 48.865452839563126], [2.396087245754321, 48.86544675308453], [2.395877603965501, 48.865440453712004], [2.395670514316844, 48.86543436651232], [2.395460872628163, 48.865428066409756], [2.395253783077448, 48.86542197848891], [2.395044142852119, 48.86541567766328], [2.3950336359335402, 48.865418470066366], [2.394881841764763, 48.86552396422377], [2.394734339262533, 48.865630775834575], [2.394582543879407, 48.86573626869289], [2.394435041525509, 48.86584307992122], [2.394433317219464, 48.86584424393595], [2.394408299706754, 48.86586235956173], [2.394373290310603, 48.86588597264897], [2.394357812391328, 48.86590524542151], [2.394371600237439, 48.86591784389444], [2.394479274890016, 48.866015948178116], [2.394603521741095, 48.86613319948329], [2.394711198638565, 48.866231303546144], [2.394835446525274, 48.86634855458773], [2.394943122941611, 48.866446658415974], [2.395067371863957, 48.866563909194], [2.395175049162085, 48.86666201279445], [2.39529929912008, 48.866779263308885], [2.395406978663245, 48.86687736668849], [2.395531229656903, 48.86699461693936], [2.3956389087189462, 48.86709272008433], [2.395639649966757, 48.86709333627691], [2.395781580806909, 48.86719042060781], [2.3959154911224543, 48.867292320706675], [2.396057423029248, 48.86738940379371], [2.396191334395874, 48.86749130356562], [2.396198477205199, 48.86749416172349], [2.396292834618566, 48.86750897495054], [2.396383092190219, 48.86753585003651], [2.396419385654951, 48.86754908516415], [2.396435411086378, 48.867540185185966], [2.396519504109669, 48.86743234597239], [2.396605538567373, 48.86732163230014], [2.396689632248825, 48.86721379295261], [2.396775665994321, 48.86710307823687], [2.396859757597232, 48.86699523964093], [2.396945790620318, 48.866884524781035], [2.397029881528669, 48.86677668514498], [2.397098797603249, 48.86668799866644], [2.39711317200064, 48.86667107446772]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 32, "zemmour_eric": 59.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-65", "circ_bv": "06", "num_bureau": 65, "roussel_fabien": 25.0, "nb_emargement": 1038.0, "nb_procuration": 61.0, "nb_vote_blanc": 11.0, "jadot_yannick": 102.0, "le_pen_marine": 48.0, "nb_exprime": 1026.0, "nb_vote_nul": 1.0, "arr_bv": "20", "arthaud_nathalie": 1, "nb_inscrit": 1272.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1038, "quartier_bv": "79", "geo_point_2d": [48.86622444898695, 2.396153945025663], "melenchon_jean_luc": 419.0, "poutou_philippe": 7.0, "macron_emmanuel": 287.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.39719391370393, 48.84303002064479], [2.397191426456382, 48.84305516135802], [2.397099036906333, 48.84316733227272], [2.397001387686061, 48.84328430794602], [2.396908998683323, 48.84339647869776], [2.396811348607094, 48.84351345419192], [2.396718957426613, 48.84362562476699], [2.396621307857148, 48.843742600088866], [2.39652891586144, 48.84385477049412], [2.396431264073566, 48.84397174562999], [2.396338872625056, 48.844083915872325], [2.3962412199812952, 48.844200890829], [2.396148826355099, 48.84431306089464], [2.396051172855437, 48.84443003567215], [2.395958779776433, 48.84454220557487], [2.395861125420864, 48.844659180173224], [2.39576873016414, 48.84477134989924], [2.395671076315213, 48.84488832432529], [2.395578680243213, 48.845000493881486], [2.395481024175695, 48.84511746812147], [2.395388628650978, 48.84522963751473], [2.395290971727623, 48.84534661157554], [2.395198574025037, 48.84545878079207], [2.395140666452353, 48.845528143176516], [2.395142489428772, 48.8455536401487], [2.395189683155886, 48.845568888998024], [2.395377569175605, 48.84555372043448], [2.395570057439353, 48.845537196114975], [2.395757944596682, 48.845522026960545], [2.395950432622866, 48.84550550202859], [2.3961383181926372, 48.84549033226946], [2.396330805970629, 48.845473807624366], [2.396518692688408, 48.84545863637501], [2.396711180228724, 48.84544211111744], [2.396899065348518, 48.84542694016275], [2.397091552661557, 48.84541041339342], [2.39727943755645, 48.84539524184095], [2.397471925994363, 48.84537871446598], [2.397659810664144, 48.84536354231572], [2.397852297491384, 48.84534701522077], [2.398040181946535, 48.8453318415734], [2.398173443057533, 48.845320399491605], [2.398208572176943, 48.84532342266635], [2.398221371333313, 48.84531894080301], [2.398280596805613, 48.84531385515367], [2.398477661286853, 48.84529606309893], [2.398670148978447, 48.84527953379465], [2.398867213197018, 48.8452617410977], [2.39905969926535, 48.84524521205863], [2.399256763221045, 48.84522741871945], [2.399449249049524, 48.845210888153844], [2.399646312742432, 48.84519309417245], [2.399838799683045, 48.84517656298642], [2.400035863113256, 48.84515876836281], [2.400228348430604, 48.84514223744196], [2.400425411597911, 48.845124442176164], [2.40061789667536, 48.84510790972877], [2.400814959579852, 48.84509011382078], [2.401007445759067, 48.845073581652244], [2.401199930463929, 48.84505704826763], [2.401396992977457, 48.84503925140011], [2.401589477421617, 48.84502271828756], [2.401786539682632, 48.84500491987856], [2.40197902523898, 48.844988386145566], [2.4021760872267253, 48.84497058799366], [2.402237766441933, 48.844953937936474], [2.402241248846854, 48.844942216041495], [2.402243872347027, 48.84493338488207], [2.402227595851916, 48.84490867558709], [2.402179316635602, 48.84478195248645], [2.40213194837308, 48.84465174170258], [2.402083669627348, 48.84452501853413], [2.40203630183721, 48.84439480768239], [2.40198802356205, 48.84426808444616], [2.401940656244496, 48.84413787352654], [2.401892378439902, 48.84401115022251], [2.401845011594718, 48.84388093923503], [2.401796734260684, 48.84375421586323], [2.401749367888069, 48.84362400480788], [2.401701091024587, 48.843497281368265], [2.40165372512433, 48.843367070245094], [2.401605448731496, 48.843240346737716], [2.401558081941176, 48.843110135539824], [2.401509807381295, 48.84298341197146], [2.401462441063428, 48.84285320070574], [2.401414166974174, 48.84272647706961], [2.401366801128753, 48.84259626573605], [2.401318527509916, 48.84246954203217], [2.401271162136933, 48.84233933063073], [2.401270940354694, 48.84233918472409], [2.401168951797421, 48.84235971831968], [2.400975171752211, 48.842401381322404], [2.400777425375467, 48.84244087827499], [2.400583644715633, 48.84248254064053], [2.400385897723913, 48.84252203784237], [2.400380597540399, 48.842522379113646], [2.400196638098851, 48.842510243704474], [2.400012293443369, 48.84249772655066], [2.399828334174491, 48.8424855905749], [2.399643989694661, 48.84247307285328], [2.3994600319507002, 48.842460937217055], [2.399275687646528, 48.84244841892761], [2.399091728723315, 48.842436281818635], [2.39890738459471, 48.84242376296139], [2.398723427196416, 48.84241162619191], [2.398539083243585, 48.842399106766855], [2.398355124665865, 48.84238696852464], [2.398170780888718, 48.842374448531785], [2.397986822473523, 48.842362310622235], [2.397802480234461, 48.84234979006841], [2.397789241453429, 48.842354290367545], [2.397694770134278, 48.84246395020438], [2.39760238407804, 48.842576121574105], [2.397507913336549, 48.84268578034918], [2.397415525122433, 48.842797951545435], [2.397321053575299, 48.84290761105041], [2.397228664565792, 48.84301978208008], [2.39719391370393, 48.84303002064479]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 76, "zemmour_eric": 108.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "12-6", "circ_bv": "08", "num_bureau": 6, "roussel_fabien": 24.0, "nb_emargement": 1224.0, "nb_procuration": 52.0, "nb_vote_blanc": 13.0, "jadot_yannick": 97.0, "le_pen_marine": 81.0, "nb_exprime": 1205.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1601.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1222, "quartier_bv": "46", "geo_point_2d": [48.844009108019016, 2.3989751076902306], "melenchon_jean_luc": 366.0, "poutou_philippe": 4.0, "macron_emmanuel": 381.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.341499927717849, 48.89424043721247], [2.341488129020518, 48.89426853818196], [2.341498834359446, 48.89434348984059], [2.341516372460878, 48.89441977678511], [2.341512935534266, 48.89442720516644], [2.34136503514091, 48.89453345691266], [2.341225856291096, 48.89463519509054], [2.341086678261108, 48.89473693310472], [2.340938776129398, 48.89484318339522], [2.3409258049982142, 48.894845886413705], [2.340868549630116, 48.89483760240684], [2.340810230960756, 48.89482593556878], [2.34075614569528, 48.8948400341735], [2.34076466870004, 48.89486698068434], [2.340845713070263, 48.89499199714514], [2.340920651995965, 48.895108567685995], [2.340995591245858, 48.89522513906676], [2.341076636739371, 48.89535015443115], [2.341151576686247, 48.89546672568861], [2.341232622930379, 48.89559174091987], [2.341307563585625, 48.89570831115476], [2.341388610569112, 48.89583332715213], [2.341463551921357, 48.89594989726374], [2.341544599655383, 48.89607491312791], [2.341619541704635, 48.89619148311618], [2.341700590189312, 48.89631649884725], [2.341775532935582, 48.89643306871217], [2.341856582171022, 48.896558084310115], [2.341931525614318, 48.89667465405167], [2.342012575600326, 48.89679966951647], [2.342087519740658, 48.896916239134725], [2.342168570488711, 48.897041253567046], [2.342243515314826, 48.89715782396124], [2.342324566813566, 48.89728283826041], [2.342399512336635, 48.89739940853124], [2.342480564586074, 48.8975244226973], [2.342555510806208, 48.897640992844735], [2.342636562442516, 48.897766006870135], [2.342711510723665, 48.89788257690172], [2.342705876352739, 48.8979083681067], [2.342745326585485, 48.89792423275713], [2.342972526982161, 48.897929155840416], [2.3431985273763543, 48.89793308266118], [2.343425727854504, 48.89793800488465], [2.343651728321288, 48.89794193085021], [2.343878928880895, 48.8979468522139], [2.344104929420257, 48.897950777324176], [2.344146651247215, 48.89794141008918], [2.34418205868308, 48.89791756161422], [2.344199502787879, 48.897809518613954], [2.344218019066588, 48.89770319737133], [2.344236533905734, 48.89759687610808], [2.34425397779003, 48.89748883306823], [2.344255910956805, 48.89746573746129], [2.344224421543194, 48.89745805392866], [2.344160859542101, 48.89745455015364], [2.344089645694794, 48.89744810773169], [2.344078607080912, 48.89744213335496], [2.344007097479754, 48.89730555875022], [2.343937809252771, 48.897171765255536], [2.343866300380996, 48.89703519143231], [2.343797012875666, 48.89690139782309], [2.343725504744593, 48.89676482388205], [2.343656217960906, 48.8966310301584], [2.3436554057838093, 48.896629780149944], [2.343573599429206, 48.8965262751711], [2.343489821917204, 48.896423786341906], [2.34340801484023, 48.89632028212228], [2.343324237985563, 48.89621779315795], [2.343322713047839, 48.89621465876083], [2.343297582973819, 48.89608405844222], [2.343273218481869, 48.89596024856847], [2.343248855469587, 48.89583643868324], [2.343223724399612, 48.89570583829656], [2.343199360260196, 48.89558202836501], [2.343174230801059, 48.89545142794508], [2.343149866898396, 48.8953276179747], [2.34312473767486, 48.89519701841331], [2.343100374020293, 48.895073207504865], [2.343075245043698, 48.89494260790275], [2.3430898891466843, 48.89492805268767], [2.343085136893457, 48.89491261855618], [2.343085567370536, 48.89490898496364], [2.343107200174716, 48.89485973631284], [2.343117039662612, 48.89482913783412], [2.343133833594984, 48.89480461194318], [2.343123774683907, 48.89479346994046], [2.343161302255103, 48.89470803614947], [2.343198155512098, 48.894637230595194], [2.343189879530875, 48.89462585196091], [2.343018444555015, 48.894585114814845], [2.342817080966309, 48.89453921115733], [2.342645646567425, 48.89449847347434], [2.342444284994988, 48.894452570093115], [2.342272849809229, 48.89441183186574], [2.342071488900559, 48.89436592785402], [2.341900054303151, 48.89432518819053], [2.341698694058259, 48.89427928354837], [2.341527261390321, 48.89423854425472], [2.341499927717849, 48.89424043721247]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 24, "zemmour_eric": 56.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-12", "circ_bv": "18", "num_bureau": 12, "roussel_fabien": 21.0, "nb_emargement": 1136.0, "nb_procuration": 34.0, "nb_vote_blanc": 17.0, "jadot_yannick": 64.0, "le_pen_marine": 91.0, "nb_exprime": 1113.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1662.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "70", "geo_point_2d": [48.89609165112589, 2.34254674151687], "melenchon_jean_luc": 545.0, "poutou_philippe": 7.0, "macron_emmanuel": 248.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.336693413753543, 48.839680198857884], [2.336707825535255, 48.839663547859985], [2.336811482424082, 48.8396364589788], [2.336994168272866, 48.839587257345165], [2.3371721079524272, 48.83954075601229], [2.337354793125359, 48.83949155382372], [2.337532730782724, 48.839445052842166], [2.337715415279805, 48.83939585009862], [2.337893353662456, 48.839349347684944], [2.338076037483677, 48.83930014438648], [2.33825397385556, 48.839253641424804], [2.338431911272243, 48.83920713820411], [2.338614594086641, 48.839157934076916], [2.33879253084355, 48.839111431215095], [2.338975212982081, 48.83906222653297], [2.339153147739426, 48.83901572222391], [2.339335829202086, 48.83896651698685], [2.339513764673458, 48.83892001214494], [2.339696445460241, 48.838870806352915], [2.33969717523513, 48.83887063140735], [2.339893153567888, 48.8388277565104], [2.340051240207065, 48.83879573355748], [2.340209328014288, 48.8387637104022], [2.3404053055351293, 48.83872083376279], [2.340563392897755, 48.83868881013744], [2.340686125475771, 48.838661957961385], [2.34071542818666, 48.838659033741195], [2.34072635025688, 48.838654680745734], [2.340799594604138, 48.83863865567471], [2.340986566651542, 48.83859911906794], [2.341182542914173, 48.83855624114888], [2.341369514375371, 48.838516703940634], [2.341565490013112, 48.83847382539101], [2.341752460899657, 48.83843428668198], [2.341948435901142, 48.83839140840111], [2.342038967572819, 48.83837226333562], [2.342066752321616, 48.8383640457558], [2.342062706425465, 48.83830225948236], [2.342060523881398, 48.83824051223416], [2.342050902895166, 48.838164475396624], [2.342055363961157, 48.838152246958174], [2.342041973008171, 48.838132234334815], [2.3420343242007, 48.83807179436792], [2.342016400100226, 48.83793535261446], [2.341999130508173, 48.83779887576871], [2.341981206582318, 48.83766243487595], [2.341963937172732, 48.8375259579918], [2.341946013432846, 48.83738951706044], [2.341928744205824, 48.8372530401379], [2.341910820652005, 48.837116599168006], [2.341893551607547, 48.83698012220707], [2.341875628239589, 48.83684368119854], [2.34185835937769, 48.836707204199236], [2.341840436195692, 48.836570763152125], [2.341819566727314, 48.83643687177119], [2.341801643739811, 48.83630043068531], [2.341780774479204, 48.83616653926524], [2.341762851686191, 48.836030098140576], [2.341741981259881, 48.835896207573164], [2.341724058672716, 48.83575976551043], [2.341703189816496, 48.835625874911386], [2.341703138039911, 48.835625551752926], [2.34167880738254, 48.835495228764735], [2.341657938748557, 48.83536133812614], [2.341633608316154, 48.8352310159973], [2.3416127399153, 48.83509712441994], [2.341588409719219, 48.83496680225112], [2.3415675415402353, 48.834832910634184], [2.341562970705896, 48.83479614082196], [2.341562897385538, 48.83479568983407], [2.341557420671894, 48.834768512208605], [2.341555528070129, 48.834766269554116], [2.341488969104543, 48.83477301714604], [2.341294191904879, 48.834766571802874], [2.341099375522341, 48.83475999641712], [2.340904597068688, 48.83475354953264], [2.340709780783964, 48.83474697351226], [2.340515002415782, 48.834740526892595], [2.340320186240261, 48.83473394933828], [2.340125407968929, 48.834727502084135], [2.339930591879861, 48.83472092479448], [2.339735813716778, 48.8347144760065], [2.339540997725552, 48.834707898082286], [2.339346219647846, 48.834701449559105], [2.339151403754574, 48.834694871000224], [2.338956625785147, 48.834688420943266], [2.338761809989735, 48.834681841749784], [2.33856703346808, 48.83467539196515], [2.338372217781851, 48.834668811237755], [2.338177439994907, 48.834662360811095], [2.337982624395145, 48.834655780348356], [2.337787846716529, 48.83464932838791], [2.337593031214657, 48.834642747290545], [2.337398253621534, 48.83463629559495], [2.337203438217559, 48.83462971386298], [2.3371961983667893, 48.83463080695066], [2.337027681714637, 48.83469172900086], [2.3368580253482643, 48.83475310946805], [2.336689507905609, 48.834814031035094], [2.336519850742986, 48.83487541101591], [2.336351332509628, 48.83493633209987], [2.336181674550755, 48.83499771159431], [2.336013155526896, 48.835058632195185], [2.335843496771772, 48.83512001120322], [2.335674976957211, 48.83518093132096], [2.335505317405838, 48.835242309842656], [2.3353367968122463, 48.835303228577985], [2.335167136464626, 48.8353646066133], [2.334998615068869, 48.83542552576482], [2.334828953925001, 48.835486903313715], [2.33481395520229, 48.83548606982856], [2.334659949560011, 48.83540564331289], [2.3345056227522463, 48.835325652796705], [2.334351618059534, 48.83524522587249], [2.334197292211331, 48.83516523404775], [2.334043288468287, 48.83508480671499], [2.333888963568165, 48.835004814480975], [2.333734960774783, 48.83492438673971], [2.333580638173531, 48.83484439500334], [2.333426634967514, 48.834763966845976], [2.333272313325824, 48.83468397380106], [2.3331183124317523, 48.834603545242786], [2.3329639903758412, 48.83452355178095], [2.33295018990278, 48.83452236499383], [2.33277666059568, 48.83457168092725], [2.332603363587558, 48.83462144848956], [2.332583432313573, 48.834623573110576], [2.332578033630232, 48.834628972487074], [2.33258178751583, 48.83475767359533], [2.3325857206008243, 48.83488557434928], [2.332589474535393, 48.83501427452845], [2.332593407647094, 48.83514217615213], [2.3325971616191232, 48.83527087630153], [2.332601096142866, 48.835398777003945], [2.332604850140843, 48.83552747802289], [2.332608783340508, 48.83565537868808], [2.332612537375944, 48.835784079677275], [2.332616470613833, 48.835911980312915], [2.33262022468683, 48.83604068127234], [2.332624157962944, 48.83616858187834], [2.332627912084814, 48.836297281908685], [2.332631846761384, 48.836425182492725], [2.332635600909306, 48.83655388339264], [2.332639534261873, 48.83668178393944], [2.332643288447156, 48.83681048480955], [2.33264722183795, 48.83693838532675], [2.332650976060695, 48.83706708616713], [2.332654909489715, 48.837194986654715], [2.332658663749923, 48.83732368746528], [2.33266259857953, 48.83745158793091], [2.332659883478646, 48.83746018963264], [2.332673969696005, 48.83746965942485], [2.332817597174863, 48.83755419542124], [2.332961506030852, 48.83763881824525], [2.333105133068381, 48.83772335477529], [2.333249042858205, 48.83780797724063], [2.333392672201953, 48.83789251252094], [2.333536582925619, 48.83797713462751], [2.33368021320182, 48.838061669549745], [2.333824124859333, 48.83814629129756], [2.33396775469422, 48.83823082675351], [2.334111667285586, 48.83831544814257], [2.334255299426708, 48.8383999823487], [2.334399212951931, 48.838484603379065], [2.3345428460140383, 48.83856913812645], [2.334686760484707, 48.83865375789872], [2.334830393116901, 48.838738292280475], [2.334974308509854, 48.83882291259329], [2.335117943448396, 48.83890744572526], [2.335261859775325, 48.838992065679335], [2.335405495634884, 48.8390765993525], [2.335549412895592, 48.839161218947815], [2.335693048336704, 48.83924575135604], [2.335836966531293, 48.83933037059257], [2.335980604267405, 48.83941490265032], [2.336124523395883, 48.83949952152807], [2.336268162052943, 48.83958405412701], [2.336412082115317, 48.83966867264603], [2.336480124877803, 48.839727218402835], [2.336484579465971, 48.83972588686731], [2.33653070769151, 48.83970996312339], [2.336604989845162, 48.839690551268845], [2.336693413753543, 48.839680198857884]]], "type": "Polygon"}, "properties": {"lassalle_jean": 23.0, "pecresse_valerie": 71, "zemmour_eric": 69.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-27", "circ_bv": "11", "num_bureau": 27, "roussel_fabien": 7.0, "nb_emargement": 898.0, "nb_procuration": 56.0, "nb_vote_blanc": 8.0, "jadot_yannick": 82.0, "le_pen_marine": 40.0, "nb_exprime": 887.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 0, "nb_inscrit": 1111.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 898, "quartier_bv": "53", "geo_point_2d": [48.83689355576169, 2.3374170834297856], "melenchon_jean_luc": 174.0, "poutou_philippe": 4.0, "macron_emmanuel": 397.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.260498110109778, 48.84528557828538], [2.260502458392488, 48.84531879999166], [2.260577443568366, 48.845433478894705], [2.260650416197827, 48.845545868995686], [2.260725402038745, 48.84566054688336], [2.260798375305325, 48.84577293687118], [2.260873361798531, 48.84588761464272], [2.260946334339466, 48.84600000450897], [2.261021321484963, 48.84611468216447], [2.2610942960255, 48.846227071925995], [2.261167269518304, 48.84633946162325], [2.261242257625649, 48.846454140004624], [2.261315233117977, 48.84656652959714], [2.261390221890387, 48.84668120696308], [2.261463198019767, 48.846793596442474], [2.261538187444602, 48.84690827369233], [2.26154437299629, 48.84691267650558], [2.2616828159824838, 48.84696055261394], [2.2618464683782102, 48.84701117068273], [2.261858294891296, 48.84702523871506], [2.261904550562075, 48.84702415435665], [2.262068203385628, 48.847074771219965], [2.262220007269722, 48.84712196554042], [2.262383662069417, 48.8471725819762], [2.262535466524099, 48.847219775892285], [2.2625375293765773, 48.84722056566159], [2.262705087607193, 48.84729843676383], [2.262874277443204, 48.84737640761238], [2.263041836678066, 48.8474542782321], [2.263211027536562, 48.84753224769418], [2.263378587775771, 48.84761011783138], [2.263547780993837, 48.84768808771411], [2.26371534087468, 48.84776595736042], [2.263884535115229, 48.847843925856665], [2.263896115284987, 48.84784519326423], [2.264063200414724, 48.84781336099098], [2.26424509886647, 48.84777915351929], [2.26441218355861, 48.84774732165605], [2.264594081550778, 48.84771311365178], [2.264761165830707, 48.847681280400025], [2.264943063350603, 48.847647072762406], [2.265110147205521, 48.8476152390214], [2.265246192927464, 48.84758965300293], [2.265268890106423, 48.84759632899355], [2.265290844327671, 48.84758688375854], [2.265336694306384, 48.847578260682035], [2.265544314357943, 48.84753713026402], [2.2657262095106923, 48.84750292052371], [2.2657311604841572, 48.84750261184831], [2.265874190805352, 48.84751146427976], [2.266051734405249, 48.847521964561906], [2.266194764834012, 48.84753081660997], [2.266372307189156, 48.847541317307154], [2.266373567141501, 48.847541356511016], [2.266475360501071, 48.84754141855875], [2.266488651988805, 48.84753040725692], [2.266443475894098, 48.84740094878013], [2.266399362670982, 48.847276058377986], [2.266354187031227, 48.847146598938636], [2.266310072874787, 48.8470217084667], [2.266264897664659, 48.84689224986339], [2.26622078530009, 48.846767359338365], [2.2661756105322413, 48.8466379006718], [2.266131497234349, 48.846513010076954], [2.266087385510467, 48.846388119460215], [2.266042211402727, 48.84625866069924], [2.266039126058856, 48.846254711532225], [2.265919447366403, 48.84616565120245], [2.2657999542644642, 48.84607679424019], [2.2656802750268312, 48.84598773364859], [2.265560782727841, 48.845898877332516], [2.265441105670063, 48.84580981649586], [2.265321612836996, 48.84572095901907], [2.265201936596399, 48.84563189792893], [2.265082444566366, 48.84554304109838], [2.264962769155825, 48.84545397885548], [2.264843277941499, 48.8453651217719], [2.264839854986918, 48.84535951745507], [2.264833627963948, 48.845258553798004], [2.264827447232918, 48.84516368004412], [2.264821267887041, 48.845068806290236], [2.264815039584952, 48.84496784169819], [2.2648185187986822, 48.84494975068088], [2.264795705219666, 48.844940400041224], [2.264699743348456, 48.84483469647511], [2.264604007576412, 48.84472854452473], [2.264508046484086, 48.84462284078475], [2.264412311504346, 48.84451668776153], [2.264316351190897, 48.8444109838477], [2.264220615615643, 48.844304831541784], [2.264124656081064, 48.844199127454154], [2.264028922660533, 48.84409297408378], [2.263932963904815, 48.84398726982229], [2.263837231251171, 48.843881117177666], [2.263741273274304, 48.84377541274234], [2.263645541412943, 48.84366925902486], [2.263629837997148, 48.84366526089604], [2.2634982439886953, 48.84369189420029], [2.263274443896273, 48.84373257522609], [2.26314284954896, 48.84375920723853], [2.263133780345716, 48.84377036382802], [2.263187287445373, 48.84388938240405], [2.2632419248025952, 48.844009818115175], [2.263295432407867, 48.844128835717974], [2.2633500689035, 48.844249271345504], [2.263403577001576, 48.844368288874385], [2.263458215360675, 48.84448872443503], [2.263511723938854, 48.844607742789286], [2.263566362798905, 48.84472817827467], [2.263619870520073, 48.84484719564732], [2.263674509881078, 48.8449676310575], [2.263662546303737, 48.844979175476645], [2.263469116417803, 48.8449894175503], [2.263279204893054, 48.84499897767137], [2.263085774845476, 48.84500922002433], [2.262895863178354, 48.84501877953672], [2.26270243299467, 48.84502902037044], [2.262512519809812, 48.84503858016502], [2.262319089477316, 48.845048820378764], [2.262129177525273, 48.84505837867379], [2.262102448924176, 48.8450665842468], [2.26209799858352, 48.845075434473266], [2.262151138313946, 48.845152090814906], [2.262206466258588, 48.845225307043314], [2.262194969584533, 48.84523830217953], [2.2619846028919532, 48.845245406529706], [2.261784754895003, 48.84524949507759], [2.2615743881013293, 48.84525659870639], [2.261374541404682, 48.845260685678106], [2.261164173147275, 48.84526778857714], [2.260964326362802, 48.845271875762855], [2.260753958004423, 48.845278977940474], [2.260554111157536, 48.84528306354167], [2.2605000160128492, 48.84528416906269], [2.260498110109778, 48.84528557828538]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 165, "zemmour_eric": 172.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "16-37", "circ_bv": "14", "num_bureau": 37, "roussel_fabien": 2.0, "nb_emargement": 1178.0, "nb_procuration": 87.0, "nb_vote_blanc": 10.0, "jadot_yannick": 56.0, "le_pen_marine": 73.0, "nb_exprime": 1168.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1437.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1179, "quartier_bv": "61", "geo_point_2d": [48.84616050253608, 2.2636459278537115], "melenchon_jean_luc": 90.0, "poutou_philippe": 4.0, "macron_emmanuel": 577.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3862948844937533, 48.85286993782607], [2.386285384370615, 48.85288195839073], [2.386282293093665, 48.85290802551476], [2.386278087194377, 48.85294009458597], [2.3862600464087, 48.852947815612104], [2.386082074302101, 48.85290709912505], [2.385909743130341, 48.85286708403585], [2.385731772935965, 48.85282636703177], [2.385559442300205, 48.85278635143513], [2.385381471292618, 48.8527456339001], [2.385209141192862, 48.852705617796055], [2.385031170734637, 48.852664899737064], [2.384858841170888, 48.8526248831256], [2.384855483353479, 48.852624406294204], [2.38465960099667, 48.85261330656308], [2.384463058710022, 48.852601779521294], [2.3842671765218633, 48.8525906791475], [2.384070633033981, 48.85257915235315], [2.38387475101448, 48.852568051336725], [2.383678209072052, 48.85255652300525], [2.383482327221219, 48.852545421346186], [2.383285785451071, 48.85253389236992], [2.383219885516924, 48.852524974673145], [2.383212026593937, 48.8525388669174], [2.383157384865134, 48.85262631338659], [2.383081939363523, 48.85274415406994], [2.383003714939965, 48.85286934155643], [2.382928268738966, 48.85298718211717], [2.382850042218615, 48.853112369468796], [2.382774595318217, 48.8532302099069], [2.38277452313404, 48.853230321054056], [2.382696297242094, 48.85335550828488], [2.382617468238271, 48.85347416934829], [2.382539240240145, 48.85359935644191], [2.38246041050977, 48.85371801737579], [2.382382183131027, 48.85384320434634], [2.382303351311399, 48.853961865143724], [2.382288726573597, 48.8539868041819], [2.38231922530563, 48.85400284235634], [2.382475001548404, 48.85403756449907], [2.382619993039202, 48.85407015509122], [2.382639557131637, 48.85407669268408], [2.382648687130565, 48.8540761012508], [2.382688624366127, 48.854085077761056], [2.382881736026166, 48.854131479380776], [2.383066664038086, 48.85417304585368], [2.383259776360782, 48.85421944685962], [2.383444706349271, 48.854261012752005], [2.383629635269988, 48.854302578350044], [2.383822748574059, 48.85434897844202], [2.384007678108529, 48.854390543452496], [2.384200792075243, 48.85443694293067], [2.384200836930366, 48.85443695305436], [2.384397705011833, 48.854481701438246], [2.384590819663692, 48.85452810028319], [2.384787688424537, 48.854572848021746], [2.384980805124274, 48.85461924624053], [2.385177673201575, 48.85466399332677], [2.385370790586371, 48.854710390912345], [2.385382124479758, 48.854711644364855], [2.385412929381984, 48.85466763912359], [2.38556016072248, 48.85457866082763], [2.385703017261477, 48.854492412796375], [2.3858502462486912, 48.85440343412247], [2.385993101837728, 48.854317184832034], [2.386135956943151, 48.85423093626368], [2.386283184452369, 48.85414195703613], [2.386426038607834, 48.854055707208545], [2.386573265116013, 48.85396672850932], [2.386716118311033, 48.85388047832185], [2.386863345191465, 48.85379149925867], [2.38700619606315, 48.853705248704316], [2.3871534219637223, 48.85361626837089], [2.387296273227088, 48.853530018362896], [2.387443496774436, 48.8534410376516], [2.387586347087847, 48.85335478638441], [2.3877335696342, 48.85326580620145], [2.38776847964742, 48.85324589603458], [2.387782729133772, 48.85322922303459], [2.387767136018932, 48.853218163078104], [2.387582964721041, 48.853173877280064], [2.3874054866793992, 48.85313120921973], [2.387221317358974, 48.853086922868606], [2.387043839909627, 48.85304425426853], [2.386866362751033, 48.8530015854036], [2.386682194346844, 48.85295729821746], [2.386504717780552, 48.85291462881276], [2.3863205499911633, 48.85287034106659], [2.3862948844937533, 48.85286993782607]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 59, "zemmour_eric": 64.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-53", "circ_bv": "06", "num_bureau": 53, "roussel_fabien": 25.0, "nb_emargement": 1421.0, "nb_procuration": 110.0, "nb_vote_blanc": 18.0, "jadot_yannick": 143.0, "le_pen_marine": 59.0, "nb_exprime": 1403.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1762.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1424, "quartier_bv": "44", "geo_point_2d": [48.85354403425363, 2.3847966729174925], "melenchon_jean_luc": 461.0, "poutou_philippe": 7.0, "macron_emmanuel": 517.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.383696277362706, 48.8585219333621], [2.383700110263813, 48.85851488693481], [2.383801951028917, 48.85841273925937], [2.383904238443213, 48.85831128358858], [2.384006078410158, 48.85820913572074], [2.384108363664458, 48.858107679849844], [2.384210202833256, 48.85800553178953], [2.384312488642555, 48.85790407663188], [2.384414325650314, 48.85780192837209], [2.384516610673173, 48.85770047212204], [2.384618448245699, 48.85759832367683], [2.38472073247129, 48.85749686723369], [2.384822567882801, 48.85739471858905], [2.384924851311339, 48.85729326195282], [2.3850266872876222, 48.85719111312274], [2.385128969908296, 48.857089657192724], [2.385129012666268, 48.85708961424376], [2.385229293909874, 48.85699025331027], [2.385347825228572, 48.856874305823524], [2.385448105651028, 48.8567749437881], [2.385566635993003, 48.85665899606213], [2.385666915573307, 48.85655963472337], [2.385785444938575, 48.85644368675815], [2.385885725050001, 48.85634432522378], [2.385885777463253, 48.85634427243122], [2.38600430585158, 48.85622832422676], [2.386120012357535, 48.856115394021835], [2.386238541066827, 48.85599944556846], [2.386354246556858, 48.8558865151138], [2.386354372067413, 48.8558863889493], [2.38645172086453, 48.85578762882249], [2.386567425422269, 48.855674698140156], [2.386664773420066, 48.855575937821214], [2.386780477045974, 48.85546300691137], [2.38687782424446, 48.85536424640029], [2.386993526938545, 48.85525131526295], [2.387090873337729, 48.85515255455973], [2.38709950997941, 48.8551142019836], [2.387094454585837, 48.85510995274553], [2.386900920140281, 48.855066083008396], [2.386701308284831, 48.85502006653615], [2.386507774514827, 48.85497619526031], [2.386308163350926, 48.85493017812859], [2.386114630235103, 48.85488630711263], [2.385915019773453, 48.854840288422025], [2.385774769843163, 48.85480675850591], [2.385575159986404, 48.85476073924507], [2.385434910488927, 48.85472720892821], [2.385415670873289, 48.85472604258335], [2.385392770300355, 48.85476996071544], [2.385426325355724, 48.854832851904526], [2.385454830919514, 48.85488916448629], [2.385450911172707, 48.854898763797486], [2.385299516202072, 48.85498672676881], [2.385150028902836, 48.8550736381143], [2.384998631564054, 48.8551615997848], [2.384849143261258, 48.85524851074068], [2.384697746258654, 48.855336472922964], [2.384548256952293, 48.85542338348931], [2.384398767147245, 48.85551029386212], [2.38424736862371, 48.85559825545384], [2.38409787781509, 48.85568516543705], [2.38394647692329, 48.85577312572791], [2.383796986473936, 48.8558600353286], [2.383645584555341, 48.85594799612417], [2.383496091739655, 48.85603490532826], [2.383344690167844, 48.85612286573634], [2.383195196348566, 48.85620977455083], [2.383043793771333, 48.856297733665045], [2.382894298948361, 48.856384642089914], [2.382742893981643, 48.85647260170186], [2.382593398155064, 48.85655950973713], [2.382441993535125, 48.85664746896154], [2.382424269456665, 48.856647631105254], [2.382388369211433, 48.85662791467012], [2.382343560410761, 48.85660329575962], [2.382302169147561, 48.85660207573339], [2.38229470466842, 48.856609640292895], [2.382353591555781, 48.85669492998042], [2.3823971477177173, 48.85675877379112], [2.382396817725583, 48.85676660631083], [2.382303215857521, 48.85688569512078], [2.382208540459977, 48.85700677755541], [2.382114936356591, 48.85712586708455], [2.382020261447991, 48.857246949351065], [2.381926656493472, 48.85736603780789], [2.381831980710932, 48.85748711989924], [2.381738374894608, 48.857606208183014], [2.381643698238117, 48.85772729009922], [2.3815500915493, 48.85784637910924], [2.381455414029523, 48.85796745995096], [2.381462698829336, 48.85797999403741], [2.381643400164003, 48.85802515513071], [2.381822346282052, 48.858069859005596], [2.382003048240112, 48.85811501955219], [2.382181994975269, 48.8581597228856], [2.38236269619391, 48.85820488287842], [2.382541643546269, 48.858249585670414], [2.382722346751202, 48.858294745123516], [2.38290129471011, 48.858339448273384], [2.383081998548974, 48.85838460628044], [2.383260947125084, 48.85842930888887], [2.383441651587419, 48.858474466349236], [2.383620600780727, 48.85851916841621], [2.383664456729465, 48.85853857287062], [2.383677208580201, 48.85853190423919], [2.383696277362706, 48.8585219333621]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 36, "zemmour_eric": 61.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-3", "circ_bv": "07", "num_bureau": 3, "roussel_fabien": 27.0, "nb_emargement": 1227.0, "nb_procuration": 58.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 86.0, "nb_exprime": 1210.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1566.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "43", "geo_point_2d": [48.856680042562324, 2.3841943476846814], "melenchon_jean_luc": 493.0, "poutou_philippe": 13.0, "macron_emmanuel": 322.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.401434135087281, 48.86832123279652], [2.401417653866528, 48.868344463892385], [2.401411010951338, 48.86835382604623], [2.40145203957185, 48.86837701109303], [2.401561737953306, 48.868489230312974], [2.401669281358715, 48.86859885305219], [2.401778980685763, 48.868711071151274], [2.401886525006229, 48.868820693673314], [2.401994069779432, 48.868930316087855], [2.402103770493857, 48.86904253475488], [2.402104302175472, 48.8690431273756], [2.402200964263664, 48.86916303128937], [2.402298147950967, 48.869281475393585], [2.402394810927538, 48.86940137912496], [2.40249199550028, 48.869519823046254], [2.402589181878187, 48.86963826688276], [2.402685844823637, 48.86975817033365], [2.402693749407677, 48.86976669951133], [2.402713268626075, 48.869767299644934], [2.402930052212183, 48.86978210868784], [2.403152874745165, 48.86979767141573], [2.403369658582642, 48.86981247966207], [2.403592481366573, 48.86982804247045], [2.403604422828674, 48.869835255288464], [2.403639828699027, 48.869954418316375], [2.403675787452211, 48.87007662562771], [2.403711193649878, 48.87019578860854], [2.403747152737111, 48.87031799587175], [2.403782559262097, 48.87043715880539], [2.403818518683384, 48.870559366020466], [2.403853925545985, 48.870678528007716], [2.403889885291039, 48.87080073607393], [2.403925292480968, 48.870919898014066], [2.403961252560084, 48.871042106032114], [2.403996660077345, 48.87116126792508], [2.40403262049053, 48.871283475895], [2.404033201874896, 48.87128366045528], [2.404064141230003, 48.871278736853306], [2.404145203177379, 48.871206785340085], [2.404288023498449, 48.87108194639584], [2.40436908346708, 48.8710099947114], [2.404371769226588, 48.87100438633437], [2.404366766955477, 48.870882808244275], [2.404362224255904, 48.87076121983673], [2.404357220667288, 48.8706396417127], [2.404352678011102, 48.87051805327804], [2.404347674468125, 48.870396475126846], [2.404343131845245, 48.87027488756435], [2.404343674452949, 48.87027214369432], [2.40440156405004, 48.870141420175344], [2.404460082318069, 48.87000969968111], [2.4045179713417513, 48.86987897517551], [2.404576487647204, 48.869747255485585], [2.404634376087005, 48.86961653089267], [2.40469289317668, 48.86948481022204], [2.4047507810225293, 48.86935408644105], [2.404809296159939, 48.869222365675526], [2.404867183421927, 48.86909164180717], [2.404925697970191, 48.86895992095343], [2.404921690618726, 48.86895068013372], [2.404761765072199, 48.86885657695988], [2.404590247403784, 48.86875612503707], [2.404430324416487, 48.8686620214106], [2.404285795231106, 48.86857737425963], [2.4042655107954483, 48.86856135413983], [2.404257678607092, 48.868561745939004], [2.404230691420516, 48.86854594066795], [2.404230102601542, 48.86854557440498], [2.404101904812788, 48.868461592878475], [2.403973743888651, 48.868377046606206], [2.403845546927933, 48.86829306479232], [2.403717386824094, 48.868208519131954], [2.403589190691403, 48.868124537030695], [2.403461030065478, 48.86803999017688], [2.403457194005444, 48.868034986031155], [2.403423425587348, 48.86788881390064], [2.403390190220601, 48.86774158407841], [2.403384155474023, 48.867735376447584], [2.403200123675198, 48.86765616622678], [2.403020441440374, 48.867578708634326], [2.402840759750097, 48.867501249867445], [2.402656729604645, 48.867422038794416], [2.40247704898536, 48.86734458036982], [2.402293019946419, 48.86726536872632], [2.402250386452694, 48.86725616063326], [2.402240953962413, 48.86726546933822], [2.402153140969424, 48.86738373256114], [2.402063290038571, 48.8675065874396], [2.401975476235894, 48.86762485050643], [2.401885624470156, 48.86774770522477], [2.401797808494415, 48.867865968128584], [2.401707955893776, 48.86798882268679], [2.401620140471388, 48.86810708544129], [2.401530287035945, 48.86822993983932], [2.401529444118161, 48.86823092759365], [2.401485740319282, 48.868273051657354], [2.401440358679704, 48.86831917745785], [2.401434135087281, 48.86832123279652]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 52, "zemmour_eric": 66.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "20-24", "circ_bv": "15", "num_bureau": 24, "roussel_fabien": 20.0, "nb_emargement": 1188.0, "nb_procuration": 63.0, "nb_vote_blanc": 14.0, "jadot_yannick": 117.0, "le_pen_marine": 51.0, "nb_exprime": 1174.0, "nb_vote_nul": 0.0, "arr_bv": "20", "arthaud_nathalie": 1, "nb_inscrit": 1449.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1188, "quartier_bv": "78", "geo_point_2d": [48.86894181608867, 2.4032493846567418], "melenchon_jean_luc": 416.0, "poutou_philippe": 3.0, "macron_emmanuel": 395.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.349000486381855, 48.8370909161456], [2.34901528094075, 48.83708000549672], [2.349022493440884, 48.83706103662299], [2.348990091003469, 48.8370302736946], [2.348923828278958, 48.83689731931321], [2.348862393312346, 48.83676760549759], [2.348800957300492, 48.83663789072867], [2.348734696919535, 48.83650493620326], [2.348673261523699, 48.836375222237564], [2.34860700181358, 48.836242266710904], [2.348545568407417, 48.8361125526566], [2.348479309345648, 48.83597959792726], [2.348465290968431, 48.83597344273978], [2.348258920998663, 48.83598424677272], [2.348054651515211, 48.83599463379942], [2.34784828137654, 48.83600543712367], [2.347644011728124, 48.83601582344891], [2.347437641431719, 48.83602662516522], [2.3472333716184552, 48.836037010788985], [2.347027001141813, 48.83604781269592], [2.346822731163809, 48.83605819761824], [2.346815236107176, 48.83605715209479], [2.346727366750187, 48.836025980379986], [2.346635754123361, 48.83599183552597], [2.346626372777686, 48.8359908498377], [2.346458386856408, 48.836013134911816], [2.346285929879833, 48.836035273900215], [2.346117943669847, 48.83605755849529], [2.345945486401809, 48.836079696991945], [2.345777499903016, 48.83610198110808], [2.3456050437056453, 48.83612411912045], [2.345437056918256, 48.83614640275756], [2.345264599067108, 48.83616854027074], [2.34524852561618, 48.83616104688819], [2.345220328937586, 48.8360370126398], [2.345195062552067, 48.83591528330481], [2.345166866133628, 48.835791249016594], [2.345141599980887, 48.83566952054285], [2.345113402471588, 48.835545485307975], [2.345088137925127, 48.83542375680371], [2.345059940664685, 48.835299722428296], [2.345034675011182, 48.83517799297925], [2.345025005390149, 48.83515941302548], [2.344990945607632, 48.8351586931864], [2.344860238945743, 48.83519506372575], [2.344723523011938, 48.835233032656454], [2.344551251633656, 48.83528096856854], [2.344414535260791, 48.83531893624385], [2.344406559016045, 48.83532518181375], [2.344360721840995, 48.83545494425327], [2.34431666055402, 48.835584416007336], [2.344270821564906, 48.835714178374865], [2.344226761197727, 48.83584365007325], [2.344180921745539, 48.835973413275596], [2.344136860947259, 48.83610288401156], [2.344091021043403, 48.83623264714936], [2.344046958440368, 48.83636211781475], [2.344001119446967, 48.836491880895494], [2.3439570564015, 48.836621351497705], [2.343911216956323, 48.83675111451394], [2.343867153457195, 48.836880585952365], [2.343821313571557, 48.83701034800473], [2.343777249629878, 48.83713981938], [2.34373140928113, 48.83726958226719], [2.343687344908318, 48.83739905267998], [2.343681976387558, 48.837404397843585], [2.343522110936445, 48.837479841793304], [2.343369447457607, 48.83755242550176], [2.343209582462511, 48.83762786903127], [2.343056918114829, 48.83770045233124], [2.342904251979708, 48.837773035424185], [2.342744385623352, 48.83784847921642], [2.34259171999319, 48.837921061009055], [2.342431852730379, 48.83799650437361], [2.342279184857749, 48.838069086649575], [2.34211931670003, 48.83814452868714], [2.342055363961157, 48.838152246958174], [2.342050902895166, 48.838164475396624], [2.342060523881398, 48.83824051223416], [2.342062706425465, 48.83830225948236], [2.342066752321616, 48.8383640457558], [2.342108871753802, 48.83837026899938], [2.342205311713789, 48.83834987470547], [2.342394055594936, 48.83830979433178], [2.3425810252645682, 48.83827025432188], [2.342769768568396, 48.8382301733525], [2.342956737667415, 48.83819063275254], [2.343145480394122, 48.83815055118746], [2.343332448911091, 48.838111010896725], [2.343521192434274, 48.838070927844214], [2.343708160380625, 48.83803138696343], [2.34389690196419, 48.83799130330772], [2.344083869340015, 48.837951761836884], [2.344272610334918, 48.837911678484815], [2.344459577151428, 48.83787213552459], [2.344648317569185, 48.83783205157688], [2.344835283814951, 48.83779250802665], [2.345024023655456, 48.83775242348323], [2.345210989330675, 48.837712879342966], [2.345399729956187, 48.83767279421137], [2.3455866950607502, 48.83763324948101], [2.345775433746732, 48.837593163746334], [2.34596239826925, 48.83755361932525], [2.346151136389245, 48.837513532095585], [2.346338100341104, 48.83747398708451], [2.346526837883816, 48.83743389925916], [2.346713801265111, 48.83739435365802], [2.34684739144957, 48.83736609658799], [2.34703612819867, 48.83732600885456], [2.347044777897476, 48.83732625483188], [2.347098152100599, 48.83731496502677], [2.347286762805244, 48.83729285456082], [2.347467224917923, 48.837270180410655], [2.347655835292806, 48.83724807026116], [2.347836297101141, 48.83722539465396], [2.348024908519668, 48.83720328392909], [2.348205368638789, 48.8371806086561], [2.348385829963359, 48.83715793311775], [2.348574440915909, 48.83713582062573], [2.348754900562406, 48.837113144522306], [2.348943511196321, 48.83709103144749], [2.349000486381855, 48.8370909161456]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 91, "zemmour_eric": 97.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "13-66", "circ_bv": "09", "num_bureau": 66, "roussel_fabien": 30.0, "nb_emargement": 1462.0, "nb_procuration": 86.0, "nb_vote_blanc": 20.0, "jadot_yannick": 136.0, "le_pen_marine": 62.0, "nb_exprime": 1439.0, "nb_vote_nul": 2.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1758.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1461, "quartier_bv": "52", "geo_point_2d": [48.83682753939881, 2.3457155017607736], "melenchon_jean_luc": 447.0, "poutou_philippe": 15.0, "macron_emmanuel": 496.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.304824654034126, 48.883804149586815], [2.304795779685412, 48.883800401681796], [2.304617216776229, 48.88376300734615], [2.304439732469801, 48.88372583934442], [2.304261170071952, 48.883688444475226], [2.304083686285683, 48.88365127504391], [2.303905124387156, 48.88361388054046], [2.303727641109243, 48.88357671057882], [2.303550158084692, 48.88353954035284], [2.303371598315859, 48.883502145057804], [2.303194115799569, 48.88346497430155], [2.303015555190659, 48.88342757756581], [2.302838073170499, 48.88339040717846], [2.302659513072947, 48.88335300990918], [2.302482031573199, 48.88331583809233], [2.302303473338517, 48.883278441196715], [2.302125992346943, 48.883241268849524], [2.301947433272122, 48.88320387051321], [2.301939227664323, 48.883199135339716], [2.301854887668873, 48.88308118688667], [2.301768632617708, 48.88296055976438], [2.301684293395115, 48.88284261116563], [2.3015980404976872, 48.88272198390222], [2.301513702047838, 48.882604035157726], [2.3014274485772592, 48.88248340773734], [2.301343110900147, 48.882365458847076], [2.301256859583275, 48.882244831285576], [2.301172522678884, 48.88212688224959], [2.301086270776684, 48.88200625543034], [2.300996003153951, 48.88198622634388], [2.300993042449004, 48.88198868852557], [2.30103348770785, 48.88204521856392], [2.300967342782576, 48.88215355033558], [2.300913834700236, 48.88224457349898], [2.300908615403261, 48.88226575834154], [2.300927875985473, 48.882270665163354], [2.300999905442894, 48.8823708741636], [2.301085397711814, 48.8824898112143], [2.301157426411812, 48.882590020091826], [2.30124291938818, 48.88270895790563], [2.301314950058035, 48.88280916667638], [2.301400442402453, 48.88292810344679], [2.3014802659531792, 48.88303915317844], [2.301565760416165, 48.88315808981386], [2.301645584659886, 48.88326914031132], [2.301731079878112, 48.88338807680387], [2.301810904838956, 48.883499126268646], [2.301896399448767, 48.88361806261027], [2.301976226478243, 48.88372911194958], [2.302061721843205, 48.883848048148316], [2.302141548202143, 48.8839590982455], [2.302227045685736, 48.884078034309205], [2.302306872761815, 48.88418908337364], [2.302399223872645, 48.884317553486405], [2.3024919877671888, 48.8844465969917], [2.30258433977923, 48.88457506783086], [2.302677104591217, 48.88470411116248], [2.302769457528674, 48.884832580929476], [2.302862223258115, 48.8849616240875], [2.3029545771090563, 48.885090093681576], [2.303047343755863, 48.88521913666593], [2.303052046417568, 48.88522907198777], [2.303067223679581, 48.88523145902761], [2.303277995411062, 48.88528995161533], [2.303497858320387, 48.885350967178454], [2.303504989221613, 48.8853555430948], [2.303581782069177, 48.8854672480016], [2.30365958919867, 48.88558042825373], [2.303736382709503, 48.885692133038475], [2.30381419052305, 48.88580531226773], [2.303890984697056, 48.88591701693052], [2.303968793170619, 48.886030196935394], [2.304045588008011, 48.886141901476144], [2.304123397153621, 48.886255081357376], [2.304200192666322, 48.88636678487685], [2.304278003847522, 48.886479964642405], [2.304354800011509, 48.8865916689391], [2.304432610501241, 48.886704848573096], [2.304509407328536, 48.88681655274778], [2.304587218502248, 48.88692973135886], [2.304664015992858, 48.88704143541154], [2.304741827826741, 48.887154614798234], [2.30476360127625, 48.887160742461894], [2.304781822928655, 48.88714791858376], [2.304797413899934, 48.88701762950544], [2.304812817408977, 48.88688891405047], [2.304828408225159, 48.88675862493742], [2.304843811580974, 48.88662990944811], [2.304859403593696, 48.886499621207456], [2.304874805444754, 48.88637090477663], [2.304890397302376, 48.88624061650127], [2.304905800351741, 48.886111900943305], [2.304921390702642, 48.885981611726], [2.3049367935987872, 48.885852896133684], [2.304952383794702, 48.88572260688168], [2.304967786537628, 48.88559389125506], [2.304974915355172, 48.88558668132215], [2.305142082764251, 48.88552730550558], [2.305306101090614, 48.885469048838495], [2.305473269108059, 48.88540967256108], [2.305637285329801, 48.88535141542624], [2.305801301184562, 48.88529315806358], [2.305968468060745, 48.88523378198455], [2.305974680331063, 48.885232708218496], [2.306179025582422, 48.885230192692724], [2.306384120963898, 48.88522766767393], [2.3065884661756932, 48.88522515144941], [2.306793562868989, 48.88522262663647], [2.306997908041215, 48.88522010971311], [2.307203004706762, 48.88521758329952], [2.307222232187715, 48.885214751039825], [2.307226316033292, 48.88520504299553], [2.307194801869762, 48.88509860184002], [2.307149467503745, 48.88494548358015], [2.30711795365437, 48.88483904237932], [2.307072621103865, 48.88468592406207], [2.307041107568637, 48.88457948281589], [2.3070339921067182, 48.88457321914984], [2.306863111050037, 48.8845148930393], [2.306693586528225, 48.884457028697945], [2.306522706246054, 48.88439870119618], [2.306353182480633, 48.88434083636671], [2.30618230432459, 48.88428250838085], [2.306012781315763, 48.88422464306333], [2.305841902558582, 48.88416631457761], [2.305672380306251, 48.884108448772004], [2.305502858430661, 48.88405058272331], [2.305331980815784, 48.88399225350062], [2.3053300692954313, 48.883991718098414], [2.305279952242394, 48.883980576846], [2.305229449090667, 48.883969348794565], [2.305226878042867, 48.883968573038814], [2.305098207421208, 48.8839185212401], [2.304910861935697, 48.8838449645354], [2.304910701865569, 48.88384490155206], [2.304856450495538, 48.88382313297416], [2.304827661998816, 48.883811829374466], [2.304824654034126, 48.883804149586815]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 137, "zemmour_eric": 205.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-51", "circ_bv": "04", "num_bureau": 51, "roussel_fabien": 4.0, "nb_emargement": 1209.0, "nb_procuration": 73.0, "nb_vote_blanc": 5.0, "jadot_yannick": 53.0, "le_pen_marine": 39.0, "nb_exprime": 1201.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1470.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "66", "geo_point_2d": [48.88462986818319, 2.3042227901811145], "melenchon_jean_luc": 94.0, "poutou_philippe": 2.0, "macron_emmanuel": 633.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.268915618631627, 48.85325364741423], [2.268945170159148, 48.85324747667591], [2.269084906228803, 48.85313537765602], [2.269221967575935, 48.8530237792628], [2.269361702462859, 48.852911678997806], [2.269498762628691, 48.85280008026509], [2.26963849767042, 48.85268798056191], [2.269775556655167, 48.852576381489655], [2.269812285635519, 48.85256409280639], [2.269813059173651, 48.85254730732609], [2.269880479988756, 48.852434490788916], [2.269944657479547, 48.85231930348043], [2.270012077702142, 48.85220648774526], [2.270076253258499, 48.85209130033426], [2.27014367427642, 48.85197848361085], [2.270207849261189, 48.85186329610565], [2.2702028514091213, 48.851852815021786], [2.270044666053886, 48.851780058406085], [2.269887350001436, 48.851708707187015], [2.269729165524168, 48.85163595014476], [2.269571851688883, 48.851564599409265], [2.269413668089473, 48.851491841940486], [2.269256353758612, 48.85142049077262], [2.269098171049776, 48.851347731978045], [2.2689408589485662, 48.85127638039443], [2.2687826771051762, 48.851203622072646], [2.268625364508291, 48.85113227005667], [2.268467183542857, 48.85105951130836], [2.268309873188337, 48.850988157977405], [2.26830412383063, 48.850982120462064], [2.268276805064236, 48.85086547584774], [2.268250030706244, 48.85075306335451], [2.268222710805793, 48.85063641959481], [2.268195936682181, 48.85052400706629], [2.2681686183981142, 48.85040736237928], [2.268141844508874, 48.85029494981554], [2.268115069372465, 48.85018253722611], [2.2680877514358873, 48.85006589338416], [2.268091317609502, 48.85005833984969], [2.268255874167997, 48.84994350548952], [2.268424815187319, 48.849825578707], [2.268423540141617, 48.84981243838309], [2.268327304440814, 48.849760503356364], [2.268265886677993, 48.849730562919746], [2.26825450626134, 48.84972871707172], [2.268095984750674, 48.84975030622446], [2.267937862552305, 48.849771981251756], [2.267779340766317, 48.84979357088344], [2.267621216942297, 48.84981524548307], [2.267462694906059, 48.849836833795095], [2.267304572181839, 48.849858507983775], [2.267269587350131, 48.84985811026394], [2.267255118378192, 48.84987646043472], [2.26724931347426, 48.850001251351316], [2.267243067372919, 48.850125531410576], [2.267237261062244, 48.85025032139099], [2.267231014902305, 48.85037460142179], [2.267225209885059, 48.850499392281364], [2.267218962303934, 48.8506236722754], [2.267213157242727, 48.85074846220712], [2.267206909602893, 48.850872742172704], [2.267196754496164, 48.85088114209452], [2.267031037657445, 48.8509098932739], [2.266871050635713, 48.850935099863484], [2.2667053334329452, 48.85096385148967], [2.266545347450711, 48.85098905765087], [2.266536144012435, 48.85099402867838], [2.266447805339627, 48.851120031251725], [2.2663653116433, 48.85123807244217], [2.266276972143606, 48.85136407486176], [2.266194479049344, 48.851482115017646], [2.266193262815269, 48.85148660977403], [2.266212952162537, 48.851648750017915], [2.266228903917844, 48.85180891929128], [2.266228923807177, 48.851809829569234], [2.266217751514322, 48.851867599125065], [2.266222951146851, 48.85186959792116], [2.266214603592304, 48.8520243649595], [2.266209113252506, 48.85215459238321], [2.266200765611205, 48.85230935938094], [2.2661952765821, 48.852439585879736], [2.2661977272277, 48.85244498629547], [2.266309622076115, 48.8525527677296], [2.266440728087908, 48.85267661253112], [2.266453124070928, 48.85268041818556], [2.266662990816844, 48.85266792369182], [2.2668743596618413, 48.85265579148374], [2.267084224844921, 48.85264329624256], [2.267295593491942, 48.85263116329012], [2.267505459850106, 48.852618666418905], [2.2677168282865, 48.852606533621355], [2.2679266930818, 48.85259403600274], [2.268138061332833, 48.85258190156151], [2.268151405528171, 48.85258680466597], [2.268213118505851, 48.85266738189074], [2.268331110558964, 48.85282286758988], [2.268392825456854, 48.852903444713206], [2.268401996234107, 48.852908188264394], [2.268540905665278, 48.85292897459479], [2.268677511086723, 48.852948271726234], [2.268686901271922, 48.85295311552614], [2.268792180947835, 48.85309522594823], [2.268905703565616, 48.8532506567105], [2.268915618631627, 48.85325364741423]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 201, "zemmour_eric": 178.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "16-27", "circ_bv": "14", "num_bureau": 27, "roussel_fabien": 5.0, "nb_emargement": 1138.0, "nb_procuration": 91.0, "nb_vote_blanc": 8.0, "jadot_yannick": 42.0, "le_pen_marine": 64.0, "nb_exprime": 1128.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1365.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1138, "quartier_bv": "61", "geo_point_2d": [48.8516954422737, 2.2679940123422013], "melenchon_jean_luc": 61.0, "poutou_philippe": 1.0, "macron_emmanuel": 533.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303133881011982, 48.83208742668051], [2.303132970510524, 48.832098265148126], [2.303228943754893, 48.83220726561749], [2.303325041144479, 48.83231658869647], [2.303421015192295, 48.83242558899045], [2.303517113387143, 48.83253491189376], [2.303613088238619, 48.83264391201243], [2.303709187238636, 48.83275323474009], [2.3038051629056913, 48.832862233784056], [2.3039012626990782, 48.8329715572354], [2.303997239169707, 48.833080556103965], [2.30409333978029, 48.83318987848039], [2.304189317042496, 48.83329887807289], [2.304285417096228, 48.83340820026573], [2.304381396524277, 48.833517199690746], [2.304477497383209, 48.83362652170792], [2.304573477614868, 48.83373552095755], [2.30466957927921, 48.83384484279913], [2.304765558964219, 48.8339538409661], [2.304861662784048, 48.83406316353926], [2.3049576432726733, 48.83417216153085], [2.305053747909931, 48.83428148302903], [2.305149729190093, 48.83439048174455], [2.305245834632693, 48.834499803067025], [2.305243816613529, 48.834506985434174], [2.305255413433361, 48.83451850541735], [2.305403934042194, 48.83455959608351], [2.305528144442855, 48.8345934592515], [2.305538853282921, 48.83459340900708], [2.305707905558037, 48.83454476569642], [2.305872294780113, 48.83449658704264], [2.306041347792252, 48.8344479432644], [2.306205735050503, 48.83439976324102], [2.3063701219929102, 48.834351583888896], [2.30653917407024, 48.834302939400786], [2.306703560399127, 48.83425475958626], [2.3068726118513982, 48.83420611462264], [2.306873336509092, 48.83420591826175], [2.307007333754591, 48.834172586856184], [2.307208313617287, 48.83412079692202], [2.307342310429789, 48.834087465138694], [2.307404622378229, 48.834071407910685], [2.307428109519348, 48.834061750632564], [2.30741653709882, 48.834044777196716], [2.307358804373402, 48.83390230135727], [2.307302387352292, 48.83376428139336], [2.307245970617876, 48.8336262622851], [2.307188238822148, 48.83348378631007], [2.307187905880445, 48.83348269883688], [2.307164603020529, 48.833368628430065], [2.30714143688616, 48.833258525938746], [2.307118270849651, 48.83314842343218], [2.30709496829154, 48.833034352977705], [2.307093019873916, 48.83303078826117], [2.306980596749304, 48.832912042726534], [2.30686808162387, 48.83279226315591], [2.306755658163819, 48.832673517376655], [2.306643144058094, 48.83255373846824], [2.306530722987052, 48.83243499246018], [2.306418209924943, 48.83231521241533], [2.306305788506481, 48.83219646706196], [2.306193277838232, 48.83207668678793], [2.306192915456561, 48.8320762781681], [2.3061077248680872, 48.83197306808119], [2.3060280047998702, 48.83187728433005], [2.3059482850366813, 48.83178149961829], [2.305863095414256, 48.83167828933], [2.3058453824482052, 48.83167444062711], [2.305684834646521, 48.831723814400185], [2.305531713678681, 48.831770533853714], [2.305371166646082, 48.83181990720941], [2.305218045114886, 48.8318666262574], [2.305213950757538, 48.831867392124536], [2.305039345692848, 48.83188119940095], [2.304831812492348, 48.83189777038627], [2.304657208575015, 48.83191157801172], [2.304449675132108, 48.831928148333496], [2.304275069661505, 48.831941954493466], [2.304067535976204, 48.831958524151695], [2.30393919361524, 48.83196867233114], [2.303929884897299, 48.831964807501066], [2.303907762856833, 48.83196999136382], [2.303861499540977, 48.83197364877392], [2.303806181299151, 48.83197861331468], [2.303804890458713, 48.83197877128591], [2.303641469023716, 48.83200430922426], [2.303481191396946, 48.83202925097445], [2.303317768270897, 48.83205478936073], [2.303157491696263, 48.83207973068396], [2.303133881011982, 48.83208742668051]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 110, "zemmour_eric": 90.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-46", "circ_bv": "13", "num_bureau": 46, "roussel_fabien": 15.0, "nb_emargement": 1146.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 108.0, "le_pen_marine": 67.0, "nb_exprime": 1128.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1474.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "57", "geo_point_2d": [48.83308302982724, 2.305465675568877], "melenchon_jean_luc": 197.0, "poutou_philippe": 9.0, "macron_emmanuel": 483.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355495726112641, 48.83138338298704], [2.355539635587149, 48.83140139476936], [2.355597012349995, 48.83142493018507], [2.355629739024484, 48.83140833413676], [2.355750070592703, 48.83129705563563], [2.355877653130352, 48.83118576569144], [2.355997983655738, 48.831074486918844], [2.356125563768358, 48.83096319578145], [2.356147610322429, 48.83095505553995], [2.356158690663821, 48.83093919541444], [2.356250179639403, 48.8308270371098], [2.356344378217454, 48.830708441216295], [2.356435866388679, 48.83059628274654], [2.356530064127351, 48.830477686682364], [2.356621551505226, 48.83036552714816], [2.356715749755604, 48.83024693181994], [2.356807236328931, 48.83013477212067], [2.356901432388973, 48.830016175715116], [2.356992918146774, 48.82990401674997], [2.357087113367467, 48.829785420173835], [2.357178598320848, 48.82967326104358], [2.357272794064257, 48.82955466430409], [2.357364278213326, 48.829442505008714], [2.357458471755248, 48.82932390809123], [2.357549955099916, 48.82921174863077], [2.35764414780252, 48.829093151542665], [2.357735630342797, 48.82898099191707], [2.357829823568231, 48.82886239466565], [2.357921305304021, 48.82875023487493], [2.35797427588998, 48.82868353753924], [2.357984679924485, 48.82867218124552], [2.357987598504449, 48.82866316091125], [2.358028818924289, 48.82861125991268], [2.358096341117851, 48.82853364758781], [2.358190531352456, 48.8284150499977], [2.358258053051153, 48.82833743756797], [2.35825845697312, 48.828336936985664], [2.358352646483441, 48.82821833924706], [2.358442654649445, 48.82809788966751], [2.358536844670982, 48.82797929176586], [2.35862685200978, 48.82785884112273], [2.358721039818413, 48.827740243043436], [2.35881104630779, 48.827619793135305], [2.358905233265544, 48.82750119488568], [2.358995238927836, 48.82738074391393], [2.359089425034622, 48.827262145494], [2.359179431209715, 48.827141695264594], [2.3592736164656403, 48.82702309667431], [2.359363620451465, 48.826902645374], [2.359385569279532, 48.826875006456106], [2.359388070714937, 48.82687374454262], [2.359403574208034, 48.82685472037908], [2.359475809725629, 48.82676376052385], [2.359569397694079, 48.82664355308521], [2.359663581152059, 48.826524955034465], [2.359757168258904, 48.8264047474233], [2.359851350869393, 48.82628614830014], [2.359925493875003, 48.82619091462336], [2.3599355063921372, 48.8261732064569], [2.359867360071008, 48.82615357709198], [2.359658673197849, 48.82615488636799], [2.359451682642463, 48.82615604607583], [2.359242995748987, 48.82615735462649], [2.35903600517456, 48.82615851361485], [2.358827318260678, 48.82615982144015], [2.35862032766722, 48.826160979709066], [2.358411640733145, 48.826162286809], [2.3582046487586013, 48.82616344435114], [2.357995963166312, 48.82616475073304], [2.357788971172762, 48.826165907555676], [2.3575802855601, 48.826167213212216], [2.3573732935476572, 48.82616836931541], [2.35732067418349, 48.82616484070128], [2.357315882793068, 48.82617948825832], [2.35728219525646, 48.826281739747955], [2.357241739066492, 48.82641316294359], [2.357198817693249, 48.82654344054771], [2.357158362452112, 48.82667486369183], [2.3571154392929943, 48.82680514122834], [2.357074983638609, 48.82693656431358], [2.357032061428866, 48.827066840897785], [2.356991603988042, 48.827198264816175], [2.356948681354495, 48.82732854134006], [2.356918934318606, 48.827425172943556], [2.356912703157349, 48.82745271874722], [2.356914217809396, 48.82745482333331], [2.356903506993046, 48.82748961468869], [2.356863381265411, 48.827621259748675], [2.356822922980227, 48.82775268264573], [2.356782798197553, 48.82788432855446], [2.356742339505082, 48.828015751393444], [2.356702212965535, 48.82814739633766], [2.356661753865766, 48.82827881911853], [2.35662162827118, 48.828410464911464], [2.356581168764111, 48.82854188763424], [2.356541041412628, 48.828673532462616], [2.35650058149815, 48.82880495512731], [2.356460455091727, 48.82893660080441], [2.356419994770037, 48.82906802341102], [2.356379866606493, 48.82919966812353], [2.356339405877482, 48.82933109067204], [2.3562992786590993, 48.829462736233275], [2.356258817522662, 48.82959415872369], [2.356218688547235, 48.82972580332038], [2.356178227003566, 48.829857225752676], [2.356177955080803, 48.82985795547856], [2.356122898173897, 48.82998244339209], [2.356065253934061, 48.83010451961109], [2.356007609424156, 48.83022659578907], [2.355952553083332, 48.83035108359054], [2.355894908036983, 48.830473159687344], [2.355839849804455, 48.83059764740221], [2.355825191927975, 48.83062157448593], [2.355825594641131, 48.83062337989539], [2.355770536084433, 48.83074786756166], [2.355720972252234, 48.83086533011942], [2.355665913190167, 48.8309898177107], [2.355616347530101, 48.83110728019236], [2.355561287962654, 48.831231767708566], [2.3555117231989042, 48.83134923012888], [2.355495726112641, 48.83138338298704]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 75, "zemmour_eric": 93.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "13-36", "circ_bv": "10", "num_bureau": 36, "roussel_fabien": 23.0, "nb_emargement": 1172.0, "nb_procuration": 55.0, "nb_vote_blanc": 11.0, "jadot_yannick": 114.0, "le_pen_marine": 56.0, "nb_exprime": 1157.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1443.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1172, "quartier_bv": "51", "geo_point_2d": [48.82802323791411, 2.357608942888355], "melenchon_jean_luc": 334.0, "poutou_philippe": 7.0, "macron_emmanuel": 395.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.31400478574274, 48.830585730713274], [2.314004210663224, 48.830595580976144], [2.314123665389991, 48.83068961139516], [2.314238406819843, 48.830781075721994], [2.314357863768088, 48.830875105000054], [2.314472606017111, 48.830966569087074], [2.314592063812832, 48.83106059811563], [2.314706806881032, 48.83115206196288], [2.314826265512414, 48.83124609164126], [2.314941009399801, 48.83133755524863], [2.315060468890495, 48.831431583778226], [2.315175213597072, 48.83152304714575], [2.315226109111446, 48.83156260976371], [2.315243024783565, 48.83155460774158], [2.315264438039824, 48.83154447836292], [2.315257335681986, 48.8315063725558], [2.315351028625744, 48.83139087067083], [2.31543764260426, 48.831279116352995], [2.315531333377901, 48.83116361429555], [2.315617946592419, 48.83105185982454], [2.315711636558155, 48.83093635760245], [2.315798249008483, 48.830824602978154], [2.315891939528501, 48.83070910059915], [2.315978551226547, 48.83059734492235], [2.3160651625415563, 48.83048559007097], [2.316158850498769, 48.830370087440166], [2.316165067123547, 48.83036619361269], [2.316358418534105, 48.830306227779396], [2.316553136637234, 48.83024557692347], [2.316746487154056, 48.83018561045634], [2.316941204343402, 48.83012495986139], [2.317134553966589, 48.83006499276047], [2.317329270265721, 48.83000434062786], [2.31752261898329, 48.829944373792415], [2.317717334380421, 48.82988372102155], [2.317910682216121, 48.82982375265297], [2.31810539669948, 48.82976310014307], [2.318110781492194, 48.82976008915502], [2.318144267003884, 48.82972818673372], [2.318196178702501, 48.82968602583769], [2.318200412477737, 48.82968373767769], [2.318214639764114, 48.829681332008995], [2.318222822236538, 48.82967178410996], [2.318382253754029, 48.8296164647668], [2.318539258868582, 48.829561765444886], [2.31869868972559, 48.82950644477511], [2.31885569417679, 48.82945174503245], [2.319015124349807, 48.829396424834776], [2.319172128137654, 48.829341724671316], [2.319176389530785, 48.82933940245744], [2.319273833619195, 48.82926354702373], [2.3193659672066422, 48.829187817776], [2.319369531926116, 48.829185851340746], [2.319523087185893, 48.82912716573532], [2.319677848991081, 48.829068273642896], [2.319831403557473, 48.82900958763548], [2.319986166039099, 48.828950694246366], [2.320139719912103, 48.82889200783693], [2.320294481684766, 48.828833114941965], [2.320301300274527, 48.828825222991654], [2.320300416556596, 48.8287727465379], [2.320300434925571, 48.82871878404201], [2.3203071795959103, 48.82871102297954], [2.320467136665085, 48.828649264288494], [2.320626383136076, 48.82858796272587], [2.3207863380756, 48.82852620449271], [2.320945583795364, 48.82846490249833], [2.321105539353026, 48.82840314293989], [2.321264784321559, 48.82834184051378], [2.321424737749791, 48.82828008141323], [2.321583981966997, 48.82821877855539], [2.321636419017082, 48.82819066378495], [2.321628386885376, 48.82818055869273], [2.32158377282338, 48.82813833709002], [2.321485228539945, 48.8280438740763], [2.321369983537302, 48.82793481194792], [2.321271440025934, 48.827840348740885], [2.32115619728242, 48.827731286394446], [2.321057653169396, 48.82763682388572], [2.3210174528308922, 48.82759737200354], [2.321003804424643, 48.82759052669807], [2.320951510059606, 48.82761837400038], [2.320791401269175, 48.827688615441446], [2.320630385805272, 48.82775930480191], [2.320470277523213, 48.82782954491268], [2.320309261176921, 48.82790023473123], [2.320149150667405, 48.827970474395535], [2.319988133450436, 48.828041163772845], [2.319828022075363, 48.82811140299842], [2.319667003987719, 48.8281820919345], [2.3195068931093052, 48.82825233072907], [2.319345874162825, 48.82832301832462], [2.319185761045097, 48.828393257572], [2.31902474122784, 48.82846394472631], [2.318864628618519, 48.82853418264338], [2.318703607918938, 48.82860487025575], [2.318543493082033, 48.82867510772632], [2.318382471511668, 48.828745794897415], [2.31822235717143, 48.828816031936995], [2.318061333380111, 48.828886717759794], [2.318061105905166, 48.82888682079043], [2.317870550677875, 48.828973610383905], [2.317691922196155, 48.829055522042616], [2.317513293153218, 48.82913743342854], [2.317322736097824, 48.82922422212978], [2.317307093408082, 48.82922414183081], [2.317258240278694, 48.82920114020097], [2.31722996217787, 48.829182089158024], [2.317218906145881, 48.82917451624391], [2.317188478340823, 48.82918251785885], [2.317028642195708, 48.829252297095415], [2.31687108878542, 48.829322070268496], [2.316711251787628, 48.8293918490722], [2.316553696168764, 48.8294616218107], [2.316393859680443, 48.8295314001893], [2.316236303214943, 48.82960117250099], [2.316078746327811, 48.82967094460077], [2.31591890856191, 48.82974072233165], [2.31576135082824, 48.82981049400463], [2.315601510847605, 48.82988027129481], [2.315443952267394, 48.82995004254097], [2.315284112796134, 48.830019819406104], [2.315126553369383, 48.830089590225434], [2.314966711683376, 48.83015936664989], [2.314809152772148, 48.830229137050196], [2.314649310233455, 48.830298913041744], [2.314491749113615, 48.830368683007435], [2.314331905722233, 48.83043845856609], [2.31417434511792, 48.83050822811278], [2.314014500873847, 48.830578003238536], [2.31400478574274, 48.830585730713274]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 49, "zemmour_eric": 77.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "14-48", "circ_bv": "10", "num_bureau": 48, "roussel_fabien": 15.0, "nb_emargement": 1149.0, "nb_procuration": 43.0, "nb_vote_blanc": 12.0, "jadot_yannick": 87.0, "le_pen_marine": 90.0, "nb_exprime": 1132.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 8, "nb_inscrit": 1548.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "56", "geo_point_2d": [48.82948265375696, 2.3176920579565805], "melenchon_jean_luc": 398.0, "poutou_philippe": 9.0, "macron_emmanuel": 348.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.362764268569242, 48.86388972575837], [2.36278069908804, 48.86387851388036], [2.362827051592377, 48.86385469601547], [2.362935637066064, 48.8637989013752], [2.363098398928118, 48.863715268863956], [2.363206983820592, 48.86365947397047], [2.363209092775683, 48.86364663176129], [2.363104199978856, 48.86356332671192], [2.363001362209856, 48.86348165401893], [2.362896470077362, 48.86339834877505], [2.362793632959777, 48.8633166758914], [2.362688741491609, 48.8632333704531], [2.362585903662195, 48.863151697371514], [2.362582827743088, 48.863146857802185], [2.362577175862297, 48.86309041269199], [2.36256739111036, 48.86302672382564], [2.362570523315342, 48.863011811381526], [2.36256105699479, 48.86300609778576], [2.362538361678571, 48.86285836109869], [2.362517730673796, 48.86272406530553], [2.362514989454202, 48.8627195018156], [2.362383646929544, 48.862606399242765], [2.362250767266386, 48.86249197257747], [2.362119425888949, 48.862378869691454], [2.36198654739745, 48.86226444181004], [2.361855208530232, 48.8621513386181], [2.361722331188352, 48.86203691131909], [2.361590992105319, 48.861923807806704], [2.36145811593508, 48.86180937929158], [2.361446797454276, 48.86176830871719], [2.361426896861782, 48.86176851820127], [2.361343221654405, 48.8617796966355], [2.361250840998093, 48.861785721160565], [2.36124470213129, 48.861787691238696], [2.361232995800469, 48.86179427672276], [2.36109112846268, 48.861874035174104], [2.3609512808437962, 48.861953897770896], [2.360809412629043, 48.8620336567761], [2.360669562786839, 48.86211351902491], [2.36052769371718, 48.86219327678537], [2.360387844366629, 48.86227313960008], [2.360245974430926, 48.86235289701507], [2.360106124231096, 48.86243275858979], [2.359964253418501, 48.86251251655866], [2.359824402358348, 48.86259237779263], [2.359824027707402, 48.86259258353737], [2.359784038339644, 48.86260360424364], [2.359780544358232, 48.862610956588796], [2.359604077776785, 48.862704651468135], [2.359441571842803, 48.862791876269576], [2.359265104027765, 48.862885571533134], [2.35910259833602, 48.86297279496809], [2.358940090725934, 48.863060019067525], [2.358763621111917, 48.86315371266964], [2.358762801016591, 48.86315411567893], [2.358691976532753, 48.86318626369628], [2.358565382161833, 48.86324175386279], [2.35841734438983, 48.86331197443028], [2.358290749432001, 48.86336746340069], [2.358283739798079, 48.863374367860054], [2.358292603811606, 48.863399842572655], [2.358374600531167, 48.8634979879504], [2.358478208619735, 48.863608509877594], [2.35847875603937, 48.863609108178274], [2.358582190974935, 48.863712915464845], [2.358685801294387, 48.86382343719813], [2.358789237067939, 48.86392724428568], [2.358892846889832, 48.86403776581105], [2.358893230894924, 48.86403813030396], [2.359024622503817, 48.86415678490082], [2.3591286942806162, 48.86424778300375], [2.359232767795111, 48.86433878011665], [2.359364160935595, 48.8644574343086], [2.359468233906077, 48.86454843209152], [2.359547683684313, 48.864621339010746], [2.359548464930417, 48.86462199071912], [2.359586796115155, 48.86465106837376], [2.359657488232442, 48.86468525476276], [2.359657706245982, 48.864685705601175], [2.359675797116321, 48.86470029442088], [2.359678922727964, 48.864702407514216], [2.359795422541862, 48.864816416431], [2.359922877929078, 48.86493712726437], [2.360039378801752, 48.86505113591952], [2.360166833954465, 48.865171847359505], [2.360171727464953, 48.865183185462676], [2.360252809918133, 48.865177360374595], [2.360409138389205, 48.865097041848195], [2.360571908373806, 48.865013411971695], [2.360728235871969, 48.86493309211735], [2.36089100618422, 48.86484946270107], [2.361047331335358, 48.864769142410765], [2.361210100623016, 48.86468551254816], [2.361366424790217, 48.86460519182916], [2.361529193053489, 48.86452156152019], [2.361685517599827, 48.86444124037981], [2.361848283475446, 48.86435760961717], [2.36200460703785, 48.864277288048115], [2.362167371889098, 48.864193656839205], [2.362323694467574, 48.86411333484149], [2.362486458294351, 48.86402970318625], [2.362642779888801, 48.86394938075985], [2.36275919017811, 48.86388956561529], [2.362764268569242, 48.86388972575837]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 62, "zemmour_eric": 63.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "3-1", "circ_bv": "05", "num_bureau": 1, "roussel_fabien": 15.0, "nb_emargement": 1143.0, "nb_procuration": 73.0, "nb_vote_blanc": 10.0, "jadot_yannick": 115.0, "le_pen_marine": 41.0, "nb_exprime": 1132.0, "nb_vote_nul": 1.0, "arr_bv": "03", "arthaud_nathalie": 1, "nb_inscrit": 1428.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1143, "quartier_bv": "10", "geo_point_2d": [48.86348076148894, 2.360768406133836], "melenchon_jean_luc": 273.0, "poutou_philippe": 4.0, "macron_emmanuel": 517.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.32946307121139, 48.83086493055073], [2.329435457585104, 48.83087800192676], [2.329256121699719, 48.83092582152301], [2.329075668695033, 48.83097393767245], [2.328896332149594, 48.83102175672514], [2.328715879842944, 48.83106987233526], [2.328536542637456, 48.83111769084436], [2.328356089678242, 48.83116580500824], [2.328176751801123, 48.831213623873076], [2.327996296815575, 48.83126173748231], [2.327816958278407, 48.83130955580358], [2.3276365039909193, 48.8313576688735], [2.327457164793707, 48.83140548665114], [2.327276709842089, 48.83145359917415], [2.327097369984836, 48.83150141640822], [2.326916913006887, 48.83154952837658], [2.326737572489596, 48.83159734506705], [2.326557116209726, 48.83164545649611], [2.326377775032403, 48.83169327264299], [2.326197318088415, 48.83174138352508], [2.326017976251063, 48.83178919912837], [2.325837517280747, 48.831837309455786], [2.325658176145582, 48.831885124523176], [2.325477716511152, 48.83193323430359], [2.325298373353752, 48.83198104881967], [2.325117914417427, 48.83202915806081], [2.325110192422142, 48.8320344594647], [2.325045979743365, 48.832152587772775], [2.324962877594591, 48.83228593474775], [2.324921778167149, 48.832302046189504], [2.324926543768533, 48.83231854061416], [2.32498682949052, 48.83240703024503], [2.325073384413976, 48.83252521698395], [2.325157839183622, 48.832649181060276], [2.325244393534614, 48.83276736764222], [2.325244595585081, 48.832767650285824], [2.325332257470757, 48.832885237759726], [2.325418812609028, 48.83300342419052], [2.325506475284167, 48.833121011511935], [2.325593031208903, 48.83323919779177], [2.325680694673515, 48.83335678496076], [2.325767251384723, 48.83347497108962], [2.32585491563882, 48.83359255810616], [2.32594147313651, 48.83371074408406], [2.3260291381801, 48.833828330948144], [2.3261156978149238, 48.83394651768206], [2.326203363648021, 48.83406410439365], [2.326265515088514, 48.83414896577003], [2.326273151041003, 48.83416277456605], [2.326286068881383, 48.83416877868563], [2.326310475171826, 48.83420210297278], [2.326402664374089, 48.834328479360465], [2.32648922433574, 48.834446664864245], [2.326581415766154, 48.834573041094245], [2.326667976539181, 48.834691226442864], [2.3267545377046153, 48.83480941171634], [2.3268467290576043, 48.83493578769321], [2.326876641892137, 48.83495862918078], [2.3269076301180363, 48.83495284343635], [2.326965936849255, 48.83493131322422], [2.327140679709503, 48.8348668230477], [2.327314491792638, 48.83480263766297], [2.327489233778711, 48.83473814786912], [2.327663046365901, 48.834673961978154], [2.327837787501006, 48.83460947076839], [2.3280115978560803, 48.83454528525522], [2.328186338128618, 48.834480793528826], [2.328360148999331, 48.83441660661013], [2.328534888397709, 48.83435211526644], [2.32870869704791, 48.83428792782622], [2.328883435595304, 48.83422343506662], [2.329023134246089, 48.8341718448338], [2.329046366380772, 48.83416115392197], [2.329014060534956, 48.83412626594835], [2.328910135365356, 48.83402847971608], [2.328806665496141, 48.833932712329116], [2.328703196007206, 48.83383694484441], [2.328599272009029, 48.83373915741745], [2.328597209772964, 48.83373627504631], [2.328540900929078, 48.83359831277381], [2.328487468976416, 48.833464207826296], [2.328484294895579, 48.833460389259386], [2.328418922584313, 48.833413722538914], [2.328356544394118, 48.83336782626747], [2.3283545662048, 48.83336593007489], [2.3282769102228382, 48.83326353394251], [2.328192119932142, 48.83315459431475], [2.328114464584092, 48.833052198057544], [2.328029674976619, 48.83294325829407], [2.328031552315338, 48.832926661027834], [2.328007491571086, 48.83291795842323], [2.327920380214648, 48.83281204000546], [2.327838150773735, 48.83271221791549], [2.32775104010517, 48.83260629935493], [2.327668811301562, 48.832506478029494], [2.327586582824365, 48.83240665573935], [2.3274994745397652, 48.83230073697431], [2.327417246699753, 48.832200915448695], [2.327330137752385, 48.832094995633945], [2.327336866495749, 48.83208240357827], [2.327519461484616, 48.832032141818125], [2.3277041497919813, 48.83198220992385], [2.32788674408738, 48.83193194669924], [2.328071431687977, 48.83188201423337], [2.328254025266708, 48.83183175134282], [2.328438712172123, 48.83178181740606], [2.328621305045778, 48.83173155395031], [2.328805991232731, 48.831681620341264], [2.328988583401411, 48.831631356320315], [2.32917326889316, 48.831581421240344], [2.329355858994552, 48.8315311566466], [2.32954054513015, 48.83148122190197], [2.329723134538025, 48.831430955843715], [2.329907818604631, 48.83138102051989], [2.329914397791757, 48.831368137878954], [2.329806407239831, 48.8312469411723], [2.329705109754706, 48.831129896498695], [2.329597120194425, 48.83100869867798], [2.329495825004206, 48.83089165380986], [2.3294752682405813, 48.830868582938514], [2.32946307121139, 48.83086493055073]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 65, "zemmour_eric": 63.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-1", "circ_bv": "11", "num_bureau": 1, "roussel_fabien": 24.0, "nb_emargement": 1108.0, "nb_procuration": 69.0, "nb_vote_blanc": 18.0, "jadot_yannick": 104.0, "le_pen_marine": 56.0, "nb_exprime": 1090.0, "nb_vote_nul": 0.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1332.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1108, "quartier_bv": "55", "geo_point_2d": [48.83290372972864, 2.3271798162078254], "melenchon_jean_luc": 314.0, "poutou_philippe": 7.0, "macron_emmanuel": 392.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291604429701444, 48.86910007338389], [2.291605938546789, 48.86910400436604], [2.291481204877838, 48.86920424293722], [2.291360403348827, 48.86930060418551], [2.291235668736633, 48.869400842482975], [2.2911148662851533, 48.86949720436561], [2.290990130729806, 48.86959744238938], [2.290869327380426, 48.86969380310773], [2.29074459088182, 48.86979404085781], [2.290623786610047, 48.86989040221052], [2.290622985752258, 48.8699011581438], [2.290739128487753, 48.87001488886037], [2.290855192595536, 48.87012812344391], [2.290971334968718, 48.87024185480297], [2.291087401450199, 48.87035508914619], [2.291203544848562, 48.87046881935732], [2.291319612340547, 48.870582053452075], [2.29143575673973, 48.870695784313796], [2.291551823879107, 48.87080901815208], [2.291667970666814, 48.87092274787392], [2.291784038816608, 48.87103598146377], [2.29178407917485, 48.871036021273746], [2.291789265192737, 48.87104895936263], [2.291802739425198, 48.871052828926686], [2.291915459764537, 48.87116406220637], [2.292023152431821, 48.871269894739314], [2.292135872348428, 48.87138112778151], [2.292243567275457, 48.87148696010339], [2.292351262640006, 48.87159279231825], [2.292463983956125, 48.87170402501896], [2.2924647521411172, 48.871704882138516], [2.292550431017398, 48.87181378747196], [2.292635186177666, 48.87192156848781], [2.292720865754496, 48.872030474577116], [2.29280562162011, 48.872138255451176], [2.292891303272976, 48.872247161405184], [2.292976059843844, 48.87235494213737], [2.293060816753162, 48.87246272369835], [2.293146498122257, 48.87257162853038], [2.293231257100218, 48.87267940995754], [2.293316939182106, 48.87278831464619], [2.293321834005834, 48.872791806017524], [2.293502799442403, 48.87286613209329], [2.293682236344912, 48.87293940473009], [2.293863204183925, 48.87301372935982], [2.294042640738699, 48.87308700143855], [2.294223609604779, 48.873161325513486], [2.294403048538185, 48.8732345970502], [2.294582487964249, 48.873307869212304], [2.294763457004822, 48.87338219244819], [2.294942897458418, 48.87345546316101], [2.295123868889353, 48.873529785850124], [2.295216810770912, 48.87355738714551], [2.295228777812901, 48.873543133769324], [2.295288752751952, 48.873475236629766], [2.2953885461517682, 48.87335998960849], [2.295486650573209, 48.87324892529186], [2.295586441726126, 48.87313367897324], [2.295684546662738, 48.87302261447969], [2.295784336956382, 48.872907367073196], [2.295882441044782, 48.87279630239469], [2.295982230467, 48.87268105479957], [2.296080333707093, 48.872569989936125], [2.296180122245745, 48.872454743051705], [2.296278224637746, 48.872343678003304], [2.2963780123171462, 48.87222843003103], [2.2964761138608623, 48.872117364797674], [2.296575900668867, 48.87200211663683], [2.296674001364508, 48.87189105121853], [2.296773787288987, 48.87177580376839], [2.296871887148503, 48.87166473726585], [2.29697167220161, 48.871549489627135], [2.297069771200933, 48.871438423838974], [2.297169555394817, 48.87132317511238], [2.297267653545891, 48.87121210913931], [2.297367436868419, 48.871096860224156], [2.29746553417146, 48.87098579406615], [2.297466471777958, 48.87098450631138], [2.297566114341426, 48.87085304209653], [2.29763662693444, 48.870732572225286], [2.297707137838078, 48.87061210229139], [2.297806779093809, 48.87048063693261], [2.297877290626122, 48.87036016687899], [2.29794038352152, 48.870247227546], [2.298003477518657, 48.870134287276926], [2.2980739867639253, 48.870013817061704], [2.298137080188676, 48.869900876698345], [2.298207590172323, 48.86978040638698], [2.298270681661495, 48.86966746592136], [2.298327160350966, 48.86957096715994], [2.298339810747454, 48.86955169818825], [2.298249066616893, 48.86952550785555], [2.29812291866366, 48.8694355485723], [2.298003805537358, 48.86935085650596], [2.297884694173579, 48.869266163423354], [2.297758547477647, 48.86917620373497], [2.297639435536673, 48.869091511286165], [2.297513291050515, 48.869001551333106], [2.297512824091898, 48.869001200545355], [2.2973776485625, 48.86889404948699], [2.297245764642495, 48.8687896156287], [2.297110590223614, 48.86868246334893], [2.296978707362451, 48.868578030075646], [2.296843534041946, 48.86847087747378], [2.296711652251949, 48.86836644388628], [2.296579769627581, 48.86826201013557], [2.296444599310767, 48.86815485706058], [2.296312717769601, 48.86805042209638], [2.296177547175935, 48.86794326959054], [2.296164752959124, 48.867940159955964], [2.295946416717425, 48.867964996465915], [2.2957263602001943, 48.8679903117008], [2.295508023539385, 48.86801514740996], [2.295287965221942, 48.868040462728956], [2.2952733005295, 48.868035448859686], [2.295202221161751, 48.86793631164827], [2.295130034050493, 48.86783705184459], [2.295058953850783, 48.86773791542157], [2.294986767287334, 48.867638655513645], [2.29491568899412, 48.86753951899579], [2.2948435029908483, 48.86744025808442], [2.29482577872978, 48.86743590064137], [2.2946468398343622, 48.86748720807283], [2.294469189353291, 48.86753847696465], [2.294290249754316, 48.867589783858236], [2.294112597209347, 48.86764105220798], [2.293933658269963, 48.867692358571745], [2.29375600503643, 48.867743625488195], [2.293577064030354, 48.86779493130602], [2.29339941008388, 48.86784619858773], [2.293220469737406, 48.86789750387571], [2.293042815090183, 48.86794877062338], [2.292863874040167, 48.86800007537351], [2.2926862186921992, 48.868051341587154], [2.292673563706344, 48.86805074158145], [2.292484121321234, 48.86797314045039], [2.292304547102244, 48.86790021820896], [2.292124972010742, 48.86782729658456], [2.291935531267668, 48.867749693670255], [2.291929479091182, 48.867739923322986], [2.291960931128955, 48.86765480532593], [2.291992166358921, 48.86756767778769], [2.292023618202493, 48.86748255886158], [2.2920548545873682, 48.86739543130147], [2.292046229389301, 48.86738490557392], [2.291887550135233, 48.867347010854374], [2.2917352339570582, 48.867310668978405], [2.291576555143121, 48.86727277474326], [2.291424239398964, 48.8672364324691], [2.291271923867331, 48.867200089999876], [2.29111324572725, 48.86716219514677], [2.291105917895899, 48.86716183427485], [2.29091742895714, 48.86718684919496], [2.290734544974229, 48.86721189433582], [2.290551660803119, 48.867236940096014], [2.290363171326461, 48.867261954141554], [2.290341761189676, 48.86726821526948], [2.290345844511028, 48.86728549168403], [2.290365746078557, 48.86731361719595], [2.29044584260929, 48.86742577136274], [2.290535621030049, 48.86755264582862], [2.290615716930895, 48.86766479984939], [2.290705496164993, 48.867791675059735], [2.290705526929097, 48.86779171841075], [2.290785624938726, 48.86790387140238], [2.290872871331262, 48.868025495443064], [2.290952970048394, 48.868137649198296], [2.291040217223084, 48.86825927309127], [2.291120316659971, 48.86837142671078], [2.2912075646170242, 48.86849305045605], [2.291287664773677, 48.8686052039399], [2.291374913512901, 48.86872682753747], [2.291455014389328, 48.868838980885585], [2.291542263910936, 48.86896060433547], [2.291622365507145, 48.869072757547876], [2.291620571241569, 48.8690822961948], [2.291604429701444, 48.86910007338389]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 142, "zemmour_eric": 217.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-61", "circ_bv": "04", "num_bureau": 61, "roussel_fabien": 5.0, "nb_emargement": 1107.0, "nb_procuration": 62.0, "nb_vote_blanc": 5.0, "jadot_yannick": 32.0, "le_pen_marine": 79.0, "nb_exprime": 1099.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1425.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1107, "quartier_bv": "64", "geo_point_2d": [48.87011112710949, 2.2943477893967215], "melenchon_jean_luc": 81.0, "poutou_philippe": 2.0, "macron_emmanuel": 512.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.304805011224089, 48.844786399657586], [2.304814734593913, 48.844772635613516], [2.304896359449793, 48.84464375778402], [2.304978742169229, 48.844512992024185], [2.305060366200906, 48.84438411495207], [2.30514274673599, 48.84425334904088], [2.305224369955475, 48.84412447182688], [2.305306749668554, 48.843993705772355], [2.305388373450367, 48.84386482752503], [2.305470752341654, 48.84373406132717], [2.305552373936683, 48.84360518382935], [2.305634752006092, 48.84347441748808], [2.305653106020129, 48.84346972320127], [2.305829421721084, 48.843524144501984], [2.306010207589712, 48.84357996210419], [2.306186524048456, 48.84363438197391], [2.30636731068192, 48.843690199030924], [2.30640521206823, 48.84368216350127], [2.306406257166062, 48.84368062894655], [2.306425990321979, 48.84365165425851], [2.306375573170047, 48.84363637041412], [2.306297924039064, 48.84354659692958], [2.30618981037606, 48.84342580384014], [2.306108014509038, 48.843346851620716], [2.305999901700527, 48.843226058338], [2.305918106422697, 48.8431471068739], [2.30591377760417, 48.843144130936686], [2.3057384010304762, 48.84306921682172], [2.305566604242904, 48.84299237609322], [2.305391228678873, 48.84291746145908], [2.305219431540979, 48.842840620213664], [2.305044056986612, 48.84276570506045], [2.304872262223185, 48.84268886331388], [2.304696888678477, 48.84261394764153], [2.30452509356473, 48.8425371053781], [2.304349721029681, 48.84246218918659], [2.30417792829039, 48.8423853464221], [2.304002556764996, 48.842310429711496], [2.303830763675389, 48.842233586430076], [2.303829522579051, 48.8422329595433], [2.303692673380164, 48.84215526175078], [2.303551148243186, 48.84207511997058], [2.303414299873722, 48.84199742184864], [2.303272774230805, 48.84191727971983], [2.303212890780797, 48.841901421333766], [2.303208823708636, 48.841904365557916], [2.303126367744612, 48.842023668437925], [2.303052015572732, 48.84213443759732], [2.303035594831824, 48.84215322505092], [2.303035468043946, 48.8421547586334], [2.303020784116454, 48.84217663563827], [2.302928397871048, 48.842308703682654], [2.302839359419062, 48.84244135055951], [2.302746972256734, 48.84257341753313], [2.30265793289078, 48.84270606424346], [2.302650231648316, 48.842710848053215], [2.302543774923883, 48.84273702138323], [2.3024823946580852, 48.842747021519855], [2.302463673981149, 48.84274989016816], [2.30244813517711, 48.84276006943622], [2.302377826491876, 48.84277735449467], [2.30218399689389, 48.84282490045272], [2.302007229409065, 48.842868358196476], [2.301813399134662, 48.84291590355017], [2.301636631032078, 48.842959360742825], [2.301459863997315, 48.843002817680514], [2.301266032735483, 48.84305036124234], [2.301089263720574, 48.84309381762093], [2.300895431770183, 48.84314136147771], [2.300883406387012, 48.8431487163757], [2.3009118957711863, 48.84318657533642], [2.301084778196721, 48.84325323029402], [2.301255672668459, 48.843319099928344], [2.30142855597325, 48.84338575438123], [2.301599452676521, 48.843451623524565], [2.3017723368605703, 48.84351827747272], [2.301943233070253, 48.843584146109194], [2.30211611813366, 48.843650799552655], [2.302287015212365, 48.843716667690195], [2.302301613335885, 48.843727922959914], [2.302322690943706, 48.84372256424677], [2.302432921114654, 48.84365956518498], [2.302532859232691, 48.843602681065676], [2.302535945515289, 48.84360013586475], [2.302636135723055, 48.84347694103249], [2.302736146423229, 48.84335480451312], [2.30273926685172, 48.84335225141126], [2.302896812017774, 48.84326314834984], [2.303049047017716, 48.843177073786244], [2.30320128015242, 48.84309099901432], [2.303358823726871, 48.84300189622293], [2.3033723105730353, 48.84300026506446], [2.303555886462151, 48.843044782344265], [2.30375675776655, 48.843092577462535], [2.303765750446831, 48.84310066384322], [2.303773702160732, 48.843226861593024], [2.303781389908416, 48.843350178019826], [2.303789341698254, 48.843476375740316], [2.303797029519646, 48.84359969213855], [2.303804981385423, 48.843725889829834], [2.303812669280726, 48.8438492061994], [2.303820357200296, 48.843972523454234], [2.303828309191456, 48.84409872020247], [2.303826994814179, 48.844102963856585], [2.3037630418838653, 48.844191506590015], [2.303695011730337, 48.84428484705267], [2.3036310597151433, 48.84437338970904], [2.303563029087925, 48.84446673008142], [2.303570129952623, 48.84447894793076], [2.303717615935434, 48.84451893332043], [2.303857677071274, 48.84455760271816], [2.304005162134739, 48.844597587742534], [2.304145225069855, 48.84463625590955], [2.304145844337584, 48.84463641240372], [2.304303298815317, 48.84467292683208], [2.304484389776423, 48.844715353294916], [2.304641846092388, 48.844751867283016], [2.304791021010089, 48.844786815707714], [2.304805011224089, 48.844786399657586]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 134, "zemmour_eric": 126.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "15-28", "circ_bv": "12", "num_bureau": 28, "roussel_fabien": 18.0, "nb_emargement": 1249.0, "nb_procuration": 60.0, "nb_vote_blanc": 11.0, "jadot_yannick": 106.0, "le_pen_marine": 70.0, "nb_exprime": 1229.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1514.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1244, "quartier_bv": "58", "geo_point_2d": [48.84331262285078, 2.3039124987695496], "melenchon_jean_luc": 189.0, "poutou_philippe": 3.0, "macron_emmanuel": 535.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3984712624924622, 48.86491594152737], [2.398423776452043, 48.86490268669909], [2.398222197278766, 48.86491098507122], [2.39802407214612, 48.86491917367028], [2.397822492845384, 48.8649274713691], [2.397624367597512, 48.864935658407056], [2.39742278816933, 48.86494395543252], [2.397224662785652, 48.86495214270802], [2.3970230818669442, 48.86496043905329], [2.396824956368076, 48.8649686247677], [2.396626830796633, 48.864976811053324], [2.396425251050361, 48.86498510639837], [2.396227125353329, 48.86499329202221], [2.396025545490071, 48.865001585794666], [2.396024901893857, 48.865001602332256], [2.395764598053955, 48.86500422124587], [2.395513232288747, 48.86500649082675], [2.395512916005339, 48.86500649372594], [2.395512056929905, 48.86500651906519], [2.395510834041072, 48.86500653177481], [2.395322936086941, 48.86501610038303], [2.395136700398473, 48.865025729259145], [2.3949488009329523, 48.86503529817218], [2.394762565106706, 48.86504492646599], [2.394576329201069, 48.86505455536922], [2.3943884295391102, 48.865064122502936], [2.394386285320147, 48.865064121545586], [2.394222006384551, 48.86505550276427], [2.394061587779984, 48.86504689700621], [2.394059914091578, 48.86504687504241], [2.393846784589001, 48.86505274860155], [2.393633466278136, 48.865058794397505], [2.393420336689292, 48.86506466629792], [2.393207019643131, 48.86507071134066], [2.392993889946993, 48.86507658338089], [2.392780571439567, 48.86508262765657], [2.392567441646514, 48.86508849893732], [2.392354123040823, 48.86509454245291], [2.392354031683827, 48.86509454468708], [2.392187309065786, 48.86509969220125], [2.39199291154924, 48.865105910305346], [2.3918261888696453, 48.86511105641712], [2.391631791267593, 48.86511727393461], [2.39146506851596, 48.86512241954328], [2.391325742180515, 48.86512687506177], [2.391320524990081, 48.86513006097341], [2.391321390428026, 48.865146408193986], [2.391305854438481, 48.86525107088916], [2.391290420900773, 48.865355709811624], [2.391274884786488, 48.86546037248301], [2.391259449761465, 48.86556501137475], [2.391243913522639, 48.86566967402235], [2.391228479736399, 48.865774312897244], [2.391229628528161, 48.86577889278473], [2.391284605083783, 48.86585949877265], [2.391390891853555, 48.86601440292446], [2.391445868896732, 48.86609500972046], [2.391440080964152, 48.866106552996705], [2.391284371756766, 48.86616388370234], [2.391138639037223, 48.86621785466018], [2.390992904663111, 48.86627182453171], [2.390837194459196, 48.86632915554634], [2.390827453498478, 48.86633006016692], [2.390651964248391, 48.86630304101613], [2.390472029042892, 48.86627562483901], [2.390296540160425, 48.866248605165794], [2.390116603966882, 48.86622118844607], [2.3901014653616413, 48.86622577348103], [2.390006000159354, 48.86634583987992], [2.389913607188059, 48.86646194407257], [2.389818139756975, 48.86658201028903], [2.389725745937485, 48.8666981152112], [2.389633351706248, 48.866814220049804], [2.389537884346784, 48.86693428601146], [2.389445487914729, 48.86705039067336], [2.3893500197000073, 48.86717045556024], [2.389349571800979, 48.86718098723523], [2.389366413477385, 48.86718837309726], [2.389535409690284, 48.86720489807015], [2.389759256629854, 48.86722659578294], [2.389928254454614, 48.86724312020755], [2.390152101722046, 48.867264817184896], [2.390321098432263, 48.86728134104729], [2.390544947390595, 48.86730303729611], [2.390713944349409, 48.867319560603256], [2.390725028558226, 48.86733098467288], [2.390677545675058, 48.867437943251296], [2.390628401357683, 48.867547421384046], [2.390580918078735, 48.86765437990318], [2.390531773354103, 48.86776385797484], [2.390546544514228, 48.86777533410588], [2.390710078076673, 48.86776176919116], [2.390839435508636, 48.867750550963834], [2.390845903682306, 48.86774882747531], [2.390998580518083, 48.867673919681046], [2.391155048419387, 48.86759664412918], [2.391307724364599, 48.86752173593031], [2.391464191350213, 48.867444459963664], [2.391616865041815, 48.86736955135322], [2.391773332474792, 48.867292274978745], [2.39192600527584, 48.86721736596366], [2.39208247179313, 48.867140089174434], [2.392235143703626, 48.8670651797547], [2.392391609305232, 48.86698790255075], [2.392420938681542, 48.86697351092716], [2.39244008684082, 48.86696982820699], [2.3924446941587503, 48.86696132046395], [2.392568035756415, 48.866900801338694], [2.392680273911826, 48.86684565595348], [2.392792510455993, 48.8667905113527], [2.392945181683995, 48.86671560101054], [2.392966479279402, 48.866725152992565], [2.392956048576356, 48.866750734855096], [2.392945499156713, 48.866779484486116], [2.392967662968452, 48.866788403229265], [2.3931473106624033, 48.866685945986724], [2.39328756586684, 48.86660640990208], [2.393288286692953, 48.86660596748376], [2.393412813022993, 48.86652385674761], [2.393555222601616, 48.86642780769697], [2.393570588057305, 48.86642678296218], [2.393581319981274, 48.86641054130773], [2.393701471901956, 48.86633010425157], [2.393843879045224, 48.866234055733024], [2.393964030153449, 48.86615361840047], [2.394106437693198, 48.86605756956114], [2.394226586625957, 48.86597713194527], [2.3943339837830813, 48.8659046949543], [2.394357812391328, 48.86590524542151], [2.394373290310603, 48.86588597264897], [2.394408299706754, 48.86586235956173], [2.394433317219464, 48.86584424393595], [2.394435041525509, 48.86584307992122], [2.394582543879407, 48.86573626869289], [2.394734339262533, 48.865630775834575], [2.394881841764763, 48.86552396422377], [2.3950336359335402, 48.865418470066366], [2.395044142852119, 48.86541567766328], [2.395253783077448, 48.86542197848891], [2.395460872628163, 48.865428066409756], [2.395670514316844, 48.86543436651232], [2.395877603965501, 48.865440453712004], [2.396087245754321, 48.86544675308453], [2.396294335501007, 48.865452839563126], [2.396501425285563, 48.86545892658266], [2.39671106723456, 48.86546522396307], [2.3969181571170353, 48.86547131026147], [2.397127797803237, 48.86547760690504], [2.397334887783618, 48.8654836924823], [2.397544529933117, 48.865489988402715], [2.397751620011395, 48.86549607325885], [2.397961262250579, 48.865502369348526], [2.398005267567087, 48.86551382435188], [2.39801162103385, 48.86550959613622], [2.398084760228158, 48.8654160126564], [2.398176402250356, 48.86530369808304], [2.398194642295544, 48.86528036019633], [2.398200059579208, 48.865277282015114], [2.398207733463245, 48.86526058298477], [2.398262633362272, 48.865190336373836], [2.398356548979579, 48.86507064769351], [2.398429686927626, 48.86497706486507], [2.3984658793790232, 48.86493093974898], [2.3984712624924622, 48.86491594152737]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 22, "zemmour_eric": 50.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "20-64", "circ_bv": "06", "num_bureau": 64, "roussel_fabien": 17.0, "nb_emargement": 970.0, "nb_procuration": 64.0, "nb_vote_blanc": 13.0, "jadot_yannick": 78.0, "le_pen_marine": 47.0, "nb_exprime": 955.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1239.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 970, "quartier_bv": "79", "geo_point_2d": [48.866012199432234, 2.392997052819295], "melenchon_jean_luc": 451.0, "poutou_philippe": 6.0, "macron_emmanuel": 236.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3862948844937533, 48.85286993782607], [2.386286229967778, 48.85285853013534], [2.386299396802083, 48.85274751431291], [2.386314994853974, 48.85261613254704], [2.386331251433092, 48.852479049555576], [2.386346849324206, 48.852347667753804], [2.38636310572518, 48.85221058562423], [2.386378703466313, 48.8520792028873], [2.386394959699738, 48.85194212072029], [2.386410557280098, 48.85181073794752], [2.386426813345977, 48.85167365574307], [2.386442410765769, 48.851542272934445], [2.386458668026835, 48.85140519069954], [2.386474265285857, 48.85127380785508], [2.386490521016646, 48.851136725575806], [2.386506118115105, 48.85100534269545], [2.386521715134815, 48.85087395979756], [2.386537970616052, 48.85073687746258], [2.386553567475204, 48.85060549452882], [2.386569822788905, 48.850468412156474], [2.386583081956576, 48.85046012334717], [2.386798593182733, 48.85045670520592], [2.38702336554799, 48.85045457702944], [2.387238876711851, 48.85045115899445], [2.387463650397905, 48.85044902999783], [2.387464150555641, 48.850449028061625], [2.387648360561464, 48.850450574450925], [2.387850761464339, 48.850452409686575], [2.388034971483127, 48.850453956379894], [2.388186117438481, 48.850455326527], [2.388196434906515, 48.85045126654399], [2.3881968362230213, 48.85043101337053], [2.388195885581274, 48.850401946819915], [2.388195914162448, 48.85035853879758], [2.388182652415912, 48.850349544906095], [2.388000294187744, 48.85034630633428], [2.387817455411369, 48.85034233025424], [2.387635097231148, 48.85033909112581], [2.3874522585185263, 48.8503351135884], [2.387439087299774, 48.85032584937186], [2.387446308830303, 48.85017048082591], [2.38745094429053, 48.85001912902036], [2.387458165743204, 48.84986376043085], [2.38746280114171, 48.84971240858314], [2.387447490984741, 48.84966624282742], [2.387429658462935, 48.84966679186814], [2.387298617525453, 48.84968667380971], [2.38711078816295, 48.84971593816732], [2.386913921921483, 48.84974580615673], [2.386726092129817, 48.849775069908866], [2.386529225433891, 48.849804938163004], [2.386341395213064, 48.84983420130966], [2.386144528073366, 48.849864068929236], [2.385956697423387, 48.84989333147041], [2.38575982983972, 48.84992319845544], [2.385571998760596, 48.849952460391165], [2.385375130743676, 48.84998232584231], [2.385187300598113, 48.850011587179544], [2.385139206333206, 48.85000857901805], [2.385126224282179, 48.85001416114206], [2.384938392519411, 48.850043422080724], [2.384774681611848, 48.850073235748994], [2.384610970527584, 48.850103048293214], [2.384423138155114, 48.85013230842063], [2.384364269612659, 48.85013462714513], [2.384358242859247, 48.850180936220404], [2.384413107596928, 48.85031543981009], [2.384468442865373, 48.85044232106105], [2.384468002060547, 48.850448143004726], [2.384378383660372, 48.850596272153], [2.384313620596201, 48.850734002193875], [2.384241029173457, 48.8508421121801], [2.384164889745057, 48.85096824396985], [2.384092297698075, 48.851076352943736], [2.384038439328312, 48.851165573873175], [2.384033373439181, 48.85117690751697], [2.384036392177805, 48.85118611624051], [2.384014110406578, 48.851223026978566], [2.383935890495232, 48.851348216144984], [2.383859749588663, 48.85147434768317], [2.383781528939867, 48.85159953582112], [2.383705387292548, 48.85172566723254], [2.383627165885025, 48.85185085614061], [2.383551023496741, 48.851976987425346], [2.383472799989003, 48.85210217529786], [2.383396658211955, 48.85222830736213], [2.3833184339561, 48.85235349510546], [2.383242290086057, 48.85247962613673], [2.383218708139877, 48.85251736728401], [2.383219885516924, 48.852524974673145], [2.383285785451071, 48.85253389236992], [2.383482327221219, 48.852545421346186], [2.383678209072052, 48.85255652300525], [2.38387475101448, 48.852568051336725], [2.384070633033981, 48.85257915235315], [2.3842671765218633, 48.8525906791475], [2.384463058710022, 48.852601779521294], [2.38465960099667, 48.85261330656308], [2.384855483353479, 48.852624406294204], [2.384858841170888, 48.8526248831256], [2.385031170734637, 48.852664899737064], [2.385209141192862, 48.852705617796055], [2.385381471292618, 48.8527456339001], [2.385559442300205, 48.85278635143513], [2.385731772935965, 48.85282636703177], [2.385909743130341, 48.85286708403585], [2.386082074302101, 48.85290709912505], [2.3862600464087, 48.852947815612104], [2.386278087194377, 48.85294009458597], [2.386282293093665, 48.85290802551476], [2.386285384370615, 48.85288195839073], [2.3862948844937533, 48.85286993782607]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 47, "zemmour_eric": 55.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "11-52", "circ_bv": "06", "num_bureau": 52, "roussel_fabien": 31.0, "nb_emargement": 1448.0, "nb_procuration": 112.0, "nb_vote_blanc": 8.0, "jadot_yannick": 154.0, "le_pen_marine": 63.0, "nb_exprime": 1456.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1804.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1469, "quartier_bv": "44", "geo_point_2d": [48.851300879532715, 2.3853992336017824], "melenchon_jean_luc": 516.0, "poutou_philippe": 18.0, "macron_emmanuel": 492.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.375382081203287, 48.845339031857364], [2.375396361217535, 48.84536498634251], [2.375574494262065, 48.84546700227408], [2.375735600049217, 48.845556880381324], [2.375896706381377, 48.845646759163714], [2.376074840016604, 48.845748773418116], [2.376091929476477, 48.84574918361252], [2.3762339670113333, 48.845679087247014], [2.376371659835729, 48.84561037645708], [2.376513696605282, 48.84554028065005], [2.376651388694146, 48.84547156952965], [2.376793423357447, 48.84540147247536], [2.376931114699926, 48.845332761923785], [2.376943915779156, 48.8453314660648], [2.377125411395757, 48.84537424478841], [2.377296849094408, 48.84541331049558], [2.377468287039231, 48.845452376855], [2.377649783507423, 48.8454951547785], [2.377657207214438, 48.845499371813226], [2.377752483285917, 48.84561653928369], [2.377845967865243, 48.8457330255272], [2.377941246150734, 48.84585019282993], [2.37803473020861, 48.84596667889443], [2.378068504198473, 48.84598877001441], [2.378095760136119, 48.845978361340144], [2.378261731324473, 48.84589802910454], [2.378431458099813, 48.845817756618885], [2.378597428259245, 48.845737423906016], [2.378767154005196, 48.84565715003323], [2.378933121773231, 48.845576816836044], [2.379102846468255, 48.84549654337476], [2.379268814569954, 48.84541620970736], [2.3794385382355863, 48.84533593485898], [2.379604505308373, 48.84525560071433], [2.379774226560726, 48.8451753262704], [2.379789851829873, 48.845175211215974], [2.379982389618664, 48.845262052021475], [2.380170752081977, 48.845346215071444], [2.380363292499885, 48.84543305525766], [2.380551656185683, 48.845517218594274], [2.380566534148798, 48.84551739006104], [2.380683534757894, 48.845468961922535], [2.380797705444998, 48.845419919150196], [2.380914705609778, 48.84537149168069], [2.381028875865716, 48.84532244868347], [2.381043587617205, 48.84532238359952], [2.381182104168693, 48.845380146417035], [2.381326614971066, 48.84543873689872], [2.381339305494678, 48.845439285479955], [2.381524232751941, 48.8453847512777], [2.381705559826132, 48.8453323755273], [2.381890486310127, 48.84527784165298], [2.382071812644273, 48.845225465342466], [2.382253138603298, 48.845173089653976], [2.382438063959769, 48.84511855402614], [2.382619389189405, 48.845066176878206], [2.382804313772514, 48.84501164157833], [2.382985638262095, 48.8449592638703], [2.383170562093347, 48.84490472709977], [2.383254382317696, 48.84485107456463], [2.3832483424209983, 48.844844230791516], [2.383082401795289, 48.84483532144832], [2.38298997794378, 48.844827734485655], [2.382984985870422, 48.84482665109413], [2.382817946755571, 48.844764724864184], [2.38264428778952, 48.84469928821596], [2.382477248125148, 48.84463736149619], [2.3823035900112552, 48.844571924346], [2.382136552522469, 48.84450999715049], [2.381962895250069, 48.84444456039757], [2.381795857222433, 48.84438263181299], [2.38162220216463, 48.8443171945651], [2.381455164950136, 48.84425526549775], [2.381281509381939, 48.84418982774081], [2.3811144729698093, 48.844127899090026], [2.380940819626983, 48.84406245993882], [2.380773784027788, 48.844000530805275], [2.380600130174682, 48.843935091145035], [2.380433095388526, 48.84387316152875], [2.380259443750112, 48.84380772137355], [2.380092409776991, 48.84374579127452], [2.379975178866406, 48.84370161250002], [2.379938742829772, 48.84369087866849], [2.379897686600898, 48.84373634610711], [2.379751905156772, 48.843810126544014], [2.379586169669329, 48.843895907791556], [2.379440388700324, 48.843969687845345], [2.379274652192847, 48.84405546864907], [2.379128868973989, 48.84412924830562], [2.378963131446371, 48.844215028665516], [2.378817348702736, 48.844288807939], [2.378651608792429, 48.84437458784792], [2.378505825161473, 48.84444836673126], [2.3783400855935612, 48.84453414620343], [2.37819429971273, 48.8446079246895], [2.3781752478941662, 48.844606304849016], [2.378049652612259, 48.84449958252239], [2.377924501539682, 48.84439530052217], [2.377907204527871, 48.844393022438894], [2.377722350584035, 48.84446078914129], [2.377547141154919, 48.84452726479376], [2.377362286277404, 48.84459503003233], [2.377187074564428, 48.84466150604171], [2.377002218742697, 48.84472927071576], [2.376827007481709, 48.84479574619687], [2.376651794421951, 48.84486222051099], [2.376466937181445, 48.84492998524506], [2.376291724573683, 48.84499645903098], [2.376106866388856, 48.84506422320051], [2.375931652870535, 48.845130696451086], [2.375746793752262, 48.84519845915682], [2.375571577950039, 48.845264932764195], [2.375386717887349, 48.8453326949054], [2.375382081203287, 48.845339031857364]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 46, "zemmour_eric": 77.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-63", "circ_bv": "07", "num_bureau": 63, "roussel_fabien": 27.0, "nb_emargement": 1033.0, "nb_procuration": 48.0, "nb_vote_blanc": 15.0, "jadot_yannick": 84.0, "le_pen_marine": 75.0, "nb_exprime": 1016.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1359.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1033, "quartier_bv": "48", "geo_point_2d": [48.84488121028322, 2.37939083006451], "melenchon_jean_luc": 362.0, "poutou_philippe": 10.0, "macron_emmanuel": 278.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.395732594956854, 48.87164593763228], [2.395722106949341, 48.8716325403526], [2.395685902098766, 48.87154081425589], [2.395641654293513, 48.87142848513125], [2.395592326465035, 48.87130351175296], [2.395548077710239, 48.8711911816634], [2.395498751694241, 48.87106620822657], [2.395454503332484, 48.87095387897757], [2.395410255161466, 48.870841549700835], [2.39536092981765, 48.870716575268375], [2.39536127042686, 48.87071130867978], [2.395407235725706, 48.87062564439669], [2.3954549164818832, 48.87053534818084], [2.395500880097888, 48.87044968474056], [2.395548560530672, 48.87035938847304], [2.395549350063259, 48.87035819724243], [2.39565951003639, 48.87022027281358], [2.395757379407438, 48.870102920595926], [2.395772435449023, 48.87007941600362], [2.395738105807134, 48.870059988809146], [2.395489659060851, 48.870022661920274], [2.395270756149163, 48.86999532162093], [2.395268550058272, 48.86999511352045], [2.395098948239593, 48.86998837036486], [2.394919582642749, 48.869981630671916], [2.394749980902696, 48.869974887921046], [2.394570614034212, 48.869968147698216], [2.394535606849802, 48.86995861662335], [2.394524109236797, 48.86996117553222], [2.394482782351715, 48.86997037173332], [2.394476079716223, 48.869998584185566], [2.394343285775696, 48.870098593032836], [2.39421504866223, 48.87019415688598], [2.394082253732432, 48.870294164526705], [2.393954015658517, 48.87038972808328], [2.393821219729089, 48.87048973541671], [2.393692980694817, 48.87058529867671], [2.393560183755078, 48.87068530660212], [2.393431943760541, 48.87078086956553], [2.393299147194764, 48.87088087629127], [2.393170904876612, 48.87097643895118], [2.393042662087816, 48.87107200146543], [2.392909864032444, 48.871172007732945], [2.39278162028336, 48.87126756995062], [2.392648821217739, 48.871367576810066], [2.392520576518744, 48.87146313783188], [2.392387776453345, 48.87156314438403], [2.3923877063093, 48.87156319708873], [2.3923584722248012, 48.87158532522409], [2.39235560117633, 48.871589173294716], [2.392402196525504, 48.87161945482072], [2.392535618872726, 48.871702587564236], [2.392671080166351, 48.871786742247934], [2.392804502018421, 48.87186987377296], [2.392939965544769, 48.87195402814653], [2.393073388243987, 48.872037160258515], [2.393208852650277, 48.872121313415796], [2.393209525649946, 48.872121706239405], [2.393376777243449, 48.87221294700804], [2.3935449505988142, 48.87230492785833], [2.393712203357712, 48.87239616904243], [2.3938803792706, 48.87248814851382], [2.394047633205376, 48.872579389214096], [2.3942158089284993, 48.87267136909135], [2.394218937555646, 48.87268276150374], [2.3941708973077622, 48.87273808823805], [2.394114339472205, 48.87280202613119], [2.394116980208429, 48.872810002202804], [2.394135245657401, 48.872817212884634], [2.3943323985587073, 48.87280933597744], [2.394525481941597, 48.872801564068105], [2.394722634724656, 48.87279368651809], [2.394915716628012, 48.87278591397228], [2.395112870656105, 48.87277803578636], [2.395305952443212, 48.87277026261101], [2.395503104989746, 48.87276238377531], [2.395696188013452, 48.87275461087659], [2.395893340452143, 48.87274673049876], [2.396086421996398, 48.8727389569636], [2.39614572298008, 48.87273723982626], [2.396146150417474, 48.87271918605182], [2.396101060661816, 48.87260110713327], [2.396051730631041, 48.872476133177706], [2.395998960352948, 48.87233794139649], [2.395949632169218, 48.87221296827521], [2.395900302869346, 48.8720879942133], [2.395847533375884, 48.87194980321602], [2.395798204570197, 48.871824829082286], [2.395745436987799, 48.87168663711469], [2.395732313559328, 48.87165338900096], [2.395732594956854, 48.87164593763228]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 40, "zemmour_eric": 48.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-9", "circ_bv": "15", "num_bureau": 9, "roussel_fabien": 33.0, "nb_emargement": 1263.0, "nb_procuration": 75.0, "nb_vote_blanc": 11.0, "jadot_yannick": 107.0, "le_pen_marine": 69.0, "nb_exprime": 1245.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1648.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1263, "quartier_bv": "77", "geo_point_2d": [48.8714953601981, 2.394476442605772], "melenchon_jean_luc": 621.0, "poutou_philippe": 12.0, "macron_emmanuel": 253.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.273026632472476, 48.84421373175207], [2.273040130957492, 48.844220738020745], [2.2730408060175, 48.844221088379946], [2.2731025947020242, 48.84419778614453], [2.273274333537404, 48.84413643220699], [2.2734463774356533, 48.844074962956725], [2.273618115461596, 48.84401360851892], [2.273790158548927, 48.84395213876752], [2.273961895765331, 48.84389078382948], [2.274133938029323, 48.84382931447619], [2.274305674436289, 48.84376795903787], [2.274477715901891, 48.8437064882842], [2.274649451499418, 48.84364513234561], [2.274821492154101, 48.843583661090776], [2.274993226942188, 48.84352230465197], [2.275165266785951, 48.84346083289597], [2.275337000764598, 48.84339947595687], [2.275509039797441, 48.843338003699785], [2.275680772966645, 48.84327664626047], [2.27585281117607, 48.843215174401536], [2.276024543535835, 48.84315381646194], [2.276196580946837, 48.84309234320257], [2.276368312497158, 48.84303098476279], [2.276540349097238, 48.84296951100228], [2.276712079838115, 48.842908152062286], [2.27688411562727, 48.842846677800644], [2.277055845558702, 48.842785318360356], [2.277227880536933, 48.84272384359763], [2.277231429476333, 48.84272201863353], [2.277278679069288, 48.84268806239093], [2.277325626542582, 48.84265436961796], [2.277328305508678, 48.842652885652754], [2.277438448644538, 48.842604886075456], [2.2775823559033173, 48.84254402964918], [2.277588554388263, 48.842545396349735], [2.277615074661725, 48.84253100919054], [2.277645052591213, 48.8425178408648], [2.277705356565783, 48.84249233820958], [2.277724696182922, 48.84249563694904], [2.2778105318116753, 48.84260053513709], [2.277898585385515, 48.842705875639005], [2.277984423072983, 48.84281077369076], [2.278072477365934, 48.84291611314552], [2.278089473285929, 48.84292011717563], [2.278149427962184, 48.842901159606754], [2.278266255777254, 48.84287027414668], [2.278273305313665, 48.84285781184283], [2.278192424712291, 48.84275404564464], [2.278110030669649, 48.84264889780911], [2.278029150717545, 48.842545131481145], [2.277946758709405, 48.8424399826224], [2.277953524062934, 48.84242757707627], [2.278147715946582, 48.84237301147037], [2.278332482774372, 48.842318428263546], [2.278526673842149, 48.84226386293643], [2.278711439886229, 48.84220927913899], [2.278905630150488, 48.84215471319141], [2.279090395410754, 48.842100128803345], [2.279284584871591, 48.84204556223527], [2.279469349348041, 48.84199097725657], [2.279473700986075, 48.84198893491589], [2.279573864153905, 48.841918749645814], [2.279680894722855, 48.84183739589018], [2.279781057320454, 48.84176721043708], [2.2798880872547063, 48.84168585648501], [2.279890201677001, 48.841685776578075], [2.279915570792681, 48.84165857494069], [2.279919932759328, 48.84165637345704], [2.28011428301279, 48.84159442087385], [2.280309280228513, 48.841531564401755], [2.280503629553778, 48.841469611179086], [2.2806986258331072, 48.841406754065304], [2.280704530321517, 48.841394272130245], [2.280610796844379, 48.841284005058604], [2.280519700992706, 48.84117743668729], [2.280425969658994, 48.84106716945756], [2.280334874576522, 48.84096060002554], [2.280241144023774, 48.840850332629614], [2.280150049685864, 48.8407437639354], [2.280058955720361, 48.84063719516168], [2.279965224970597, 48.84052692750945], [2.279874131761961, 48.84042035857429], [2.2797804031554723, 48.84031009076399], [2.279779999186334, 48.840309645841025], [2.279762913963445, 48.840301507988414], [2.279742792841116, 48.84030955582971], [2.279539053489077, 48.84032973306157], [2.27934221407491, 48.84034919784225], [2.279138474412847, 48.84036937439111], [2.278941634699382, 48.84038883851194], [2.278744794839005, 48.84040830230856], [2.278541054714648, 48.84042847783887], [2.278540005879397, 48.84042855425537], [2.278342372812014, 48.84043807275304], [2.278143350187731, 48.84044747191661], [2.277945716976079, 48.8404569897588], [2.277746694208139, 48.840466388262286], [2.2775490608523308, 48.840475905449], [2.27735003794054, 48.84048530329242], [2.277152404440689, 48.84049481982367], [2.276953382735112, 48.840504217914535], [2.276940070246561, 48.84049905959561], [2.276850665683099, 48.84037296776871], [2.276761076279705, 48.84024638278422], [2.276671672582678, 48.84012029079504], [2.276582084048303, 48.83999370564788], [2.276492681217701, 48.83986761349639], [2.27640309353985, 48.839741029085836], [2.276391697815419, 48.83973414201015], [2.276372265500584, 48.83973740340045], [2.2761924363532993, 48.839797402578796], [2.276013416711572, 48.83985706462406], [2.27583358673836, 48.83991706325653], [2.275654566274783, 48.83997672475837], [2.275474736850563, 48.84003672195392], [2.275295714190421, 48.84009638380339], [2.275115883940287, 48.84015638045305], [2.27493686045829, 48.84021604175907], [2.274757029382242, 48.84027603786286], [2.274578005078594, 48.84033569862547], [2.274398173176635, 48.840395694183336], [2.274219149413564, 48.84045535441079], [2.274039315323267, 48.84051534941448], [2.273860290738551, 48.84057500909851], [2.273681264394101, 48.84063466760384], [2.273501430415883, 48.8406946626969], [2.273322403249693, 48.840754320658746], [2.273142568445461, 48.8408143152059], [2.272963541819973, 48.840873972632615], [2.272783704827494, 48.84093396662554], [2.272604677380271, 48.84099362350883], [2.272424839561881, 48.84105361695587], [2.272245811292825, 48.84111327329566], [2.272065972648525, 48.841173266196805], [2.271886943557841, 48.84123292199317], [2.271707104087633, 48.841292914348344], [2.2715280741751203, 48.84135256960124], [2.271348233879007, 48.841412561410486], [2.271169203144867, 48.841472216119904], [2.270989362022849, 48.841532207383224], [2.270810330466986, 48.84159186154921], [2.270630488519066, 48.84165185226659], [2.2705804494630533, 48.8416822759823], [2.27058489507456, 48.84168824343711], [2.270682834514889, 48.841788503510635], [2.270788039065012, 48.84189814325172], [2.270885979277963, 48.84199840403937], [2.270991184679109, 48.84210804358121], [2.27099135345056, 48.842108154333], [2.27109387610043, 48.84221752290028], [2.271205858266943, 48.842332826384045], [2.271308381808879, 48.84244219474549], [2.271420366295251, 48.842557498013605], [2.271522890729266, 48.84266686616917], [2.27163487617283, 48.842782169213265], [2.271635111236142, 48.84278241167569], [2.271742055852751, 48.84288872618545], [2.271854042257876, 48.84300402900146], [2.271960987763153, 48.8431103441937], [2.2720729737789718, 48.843225645874234], [2.272179920185593, 48.84333196084961], [2.272291908511891, 48.84344726320993], [2.272389371902433, 48.84354802963432], [2.272501361156381, 48.84366333177622], [2.272598825355944, 48.84376409801044], [2.272710815537553, 48.84387939993391], [2.272808280546144, 48.843980165977975], [2.27290574593162, 48.84408093193355], [2.273017737473052, 48.84419623353697], [2.273026632472476, 48.84421373175207]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 82, "zemmour_eric": 112.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-80", "circ_bv": "13", "num_bureau": 80, "roussel_fabien": 17.0, "nb_emargement": 1206.0, "nb_procuration": 44.0, "nb_vote_blanc": 9.0, "jadot_yannick": 65.0, "le_pen_marine": 110.0, "nb_exprime": 1190.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1552.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1206, "quartier_bv": "60", "geo_point_2d": [48.841827760806034, 2.275387754556343], "melenchon_jean_luc": 313.0, "poutou_philippe": 10.0, "macron_emmanuel": 425.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291789265192737, 48.87104895936263], [2.291769117966052, 48.871058693382544], [2.2916315167484482, 48.871166268225906], [2.291492128988597, 48.871274445682545], [2.291354526629012, 48.87138202018653], [2.291215136353331, 48.8714901972914], [2.291077532851752, 48.87159777145595], [2.290938142786712, 48.871705948225184], [2.290800538130887, 48.87181352294958], [2.290661145562227, 48.87192169846779], [2.290643307529922, 48.87192340583617], [2.2904675957959713, 48.871847758355], [2.290291305234322, 48.87177200465043], [2.290115593146899, 48.87169635753338], [2.289939303609578, 48.87162060330001], [2.289763593907226, 48.87154495566393], [2.289587304031091, 48.87146920089371], [2.289411595350659, 48.87139355273059], [2.289235307862092, 48.87131779743963], [2.289059598852615, 48.87124214784208], [2.288883312388376, 48.87116639202234], [2.288865209738211, 48.87116832328936], [2.288747159853447, 48.87126605704364], [2.288616443091067, 48.87137405516837], [2.288498392285478, 48.871471787759845], [2.28836767449104, 48.87157978559276], [2.288249621377007, 48.87167751881184], [2.288118903913643, 48.87178551636111], [2.288000849878872, 48.87188324841738], [2.287870131383436, 48.87199124567483], [2.287752076403335, 48.87208897836681], [2.287621356888113, 48.87219697443323], [2.287503300974967, 48.87229470686166], [2.28737257905219, 48.872402703527406], [2.287254523581456, 48.87250043480114], [2.287123800626571, 48.8726084311751], [2.287005744210577, 48.87270616308454], [2.286875020223472, 48.872814159166644], [2.286756962886722, 48.87291188991326], [2.286752292230287, 48.87292820047132], [2.286757773336997, 48.87293255448038], [2.286928828564262, 48.87295295357042], [2.287098065042873, 48.872972566348146], [2.287269120534905, 48.87299296495118], [2.287438355920666, 48.873012576339704], [2.287609411677253, 48.8730329744557], [2.287778648684411, 48.87305258537052], [2.287949704705751, 48.87307298299951], [2.288118940595445, 48.87309259432371], [2.288129835390829, 48.87310356096491], [2.288084635837508, 48.873227124625345], [2.288040547223752, 48.87334819468786], [2.287995347234038, 48.87347175918643], [2.287951258205772, 48.873592829189235], [2.287906057804243, 48.873716392727474], [2.287861968348965, 48.8738374635698], [2.287816767523324, 48.87396102704693], [2.287772677665718, 48.874082096930294], [2.287727476415958, 48.87420566034631], [2.287683386131427, 48.87432673106918], [2.287639294291006, 48.874447800855194], [2.2875940937707773, 48.87457136418801], [2.287548240007078, 48.87469582114736], [2.287503039055605, 48.874819384418025], [2.287457184855986, 48.87494384131454], [2.287411982109925, 48.87506740451494], [2.287366780512731, 48.875190967692525], [2.287320925660393, 48.875315424494914], [2.287275722268594, 48.87543898760223], [2.2872298683436663, 48.87556344434988], [2.287184664520595, 48.87568700739502], [2.287138810159733, 48.875811464079796], [2.2870936059053832, 48.87593502706278], [2.28704775112089, 48.87605948278543], [2.287049312502285, 48.8760662389464], [2.287119386864245, 48.87614315247733], [2.287183522579116, 48.87621376398623], [2.287239677917422, 48.876260980133225], [2.287253129787413, 48.87625609676059], [2.287346715484226, 48.87622594142043], [2.287530164703475, 48.87616789539254], [2.287709047224489, 48.876110254493476], [2.287892496983427, 48.876052208811615], [2.288071378706127, 48.87599456736508], [2.28825482630272, 48.87593652021456], [2.28843370859046, 48.87587887822861], [2.288617155375769, 48.87582083051676], [2.288796035501829, 48.87576318797528], [2.2889086227479742, 48.87572756208683], [2.288953471148676, 48.87572491192364], [2.288970164242481, 48.875714489677385], [2.2890410229260842, 48.87569206725597], [2.289219495951583, 48.87563411588633], [2.289402940999159, 48.87557606695745], [2.2895814132367542, 48.87551811414284], [2.289764858823388, 48.87546006556061], [2.289943330260904, 48.87540211220037], [2.290126773684527, 48.87534406215004], [2.290305244309503, 48.8752861091434], [2.290488686921201, 48.8752280585324], [2.290667156758348, 48.87517010408085], [2.290850598545869, 48.87511205380841], [2.291029067582831, 48.87505409881117], [2.291212509933898, 48.87499604708683], [2.291390978158434, 48.87493809244324], [2.291574418334332, 48.87488004015014], [2.291752885770912, 48.87482208406165], [2.291936325122647, 48.874764032107116], [2.292114791758933, 48.87470607547299], [2.292298230311056, 48.87464802205853], [2.29247669613493, 48.87459006577798], [2.292660135238333, 48.8745320118109], [2.292838600274226, 48.874474054085475], [2.292947539654188, 48.87443957738081], [2.292959591176914, 48.87443754140507], [2.292972099987721, 48.8744317488776], [2.293046597501473, 48.87440817193026], [2.293213041436553, 48.87435617633865], [2.293396477532192, 48.87429812122285], [2.293562919403011, 48.87424612513153], [2.2937463560844122, 48.87418806948183], [2.293912797254283, 48.87413607289882], [2.29409623178273, 48.874078017598436], [2.294262673614966, 48.87402602053184], [2.294446107377944, 48.87396796379024], [2.29461254714592, 48.873915966223976], [2.294795980131339, 48.87385790894041], [2.294962420561667, 48.873805910890496], [2.295026595615515, 48.87380921352094], [2.295033474633914, 48.873789517956645], [2.295089913863394, 48.87372874538448], [2.295119487663505, 48.87371913378719], [2.295134330843662, 48.87365223993472], [2.295177002161947, 48.87360629195204], [2.295215133881909, 48.873563124973096], [2.295216810770912, 48.87355738714551], [2.295123868889353, 48.873529785850124], [2.294942897458418, 48.87345546316101], [2.294763457004822, 48.87338219244819], [2.294582487964249, 48.873307869212304], [2.294403048538185, 48.8732345970502], [2.294223609604779, 48.873161325513486], [2.294042640738699, 48.87308700143855], [2.293863204183925, 48.87301372935982], [2.293682236344912, 48.87293940473009], [2.293502799442403, 48.87286613209329], [2.293321834005834, 48.872791806017524], [2.293316939182106, 48.87278831464619], [2.293231257100218, 48.87267940995754], [2.293146498122257, 48.87257162853038], [2.293060816753162, 48.87246272369835], [2.292976059843844, 48.87235494213737], [2.292891303272976, 48.872247161405184], [2.29280562162011, 48.872138255451176], [2.292720865754496, 48.872030474577116], [2.292635186177666, 48.87192156848781], [2.292550431017398, 48.87181378747196], [2.2924647521411172, 48.871704882138516], [2.292463983956125, 48.87170402501896], [2.292351262640006, 48.87159279231825], [2.292243567275457, 48.87148696010339], [2.292135872348428, 48.87138112778151], [2.292023152431821, 48.871269894739314], [2.291915459764537, 48.87116406220637], [2.291802739425198, 48.871052828926686], [2.291789265192737, 48.87104895936263]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 102, "zemmour_eric": 210.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "16-68", "circ_bv": "04", "num_bureau": 68, "roussel_fabien": 8.0, "nb_emargement": 1013.0, "nb_procuration": 62.0, "nb_vote_blanc": 10.0, "jadot_yannick": 32.0, "le_pen_marine": 63.0, "nb_exprime": 1009.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1430.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1022, "quartier_bv": "64", "geo_point_2d": [48.873504654099186, 2.2903833103815248], "melenchon_jean_luc": 113.0, "poutou_philippe": 1.0, "macron_emmanuel": 459.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.357984679924485, 48.82867218124552], [2.35797427588998, 48.82868353753924], [2.357921305304021, 48.82875023487493], [2.357829823568231, 48.82886239466565], [2.357735630342797, 48.82898099191707], [2.35764414780252, 48.829093151542665], [2.357549955099916, 48.82921174863077], [2.357458471755248, 48.82932390809123], [2.357364278213326, 48.829442505008714], [2.357272794064257, 48.82955466430409], [2.357178598320848, 48.82967326104358], [2.357087113367467, 48.829785420173835], [2.356992918146774, 48.82990401674997], [2.356901432388973, 48.830016175715116], [2.356807236328931, 48.83013477212067], [2.356715749755604, 48.83024693181994], [2.356621551505226, 48.83036552714816], [2.356530064127351, 48.830477686682364], [2.356435866388679, 48.83059628274654], [2.356344378217454, 48.830708441216295], [2.356250179639403, 48.8308270371098], [2.356158690663821, 48.83093919541444], [2.356147610322429, 48.83095505553995], [2.356197609774762, 48.830985135261514], [2.356374320626866, 48.831044518516805], [2.356547569981593, 48.83110338103371], [2.356724281621959, 48.83116276466498], [2.356897531764805, 48.83122162666873], [2.357074244215834, 48.83128100887739], [2.357247495146794, 48.83133987036796], [2.357424208386198, 48.83139925295258], [2.357597460105273, 48.83145811393001], [2.357770712226662, 48.8315169737541], [2.357947426662305, 48.83157635555629], [2.358120679560726, 48.8316352157665], [2.358297394807006, 48.83169459614604], [2.358336337433609, 48.83168005629929], [2.35836198811936, 48.831659221486966], [2.358451545767481, 48.831553611238505], [2.358556761446186, 48.83142693079059], [2.358646318300764, 48.83132132037445], [2.3587515330483972, 48.83119463882963], [2.358841090471435, 48.83108902825301], [2.358946302914743, 48.830962346503306], [2.359035859533091, 48.83085673665826], [2.35914107239658, 48.83073005471826], [2.359230626870176, 48.8306244437989], [2.359231489208721, 48.83062355444374], [2.3593515761518002, 48.83051433414], [2.359475328113919, 48.830401699535344], [2.359595414024046, 48.83029247986444], [2.3597191649325993, 48.83017984498517], [2.359839249831881, 48.830070624148505], [2.359963001049144, 48.829957989002], [2.360083084915602, 48.829848768798186], [2.3602068337172533, 48.82973613336975], [2.360203820601559, 48.82972358000403], [2.36005004506685, 48.829649713862416], [2.359899522308747, 48.82957700982611], [2.359745746275374, 48.829503143276334], [2.359595224375883, 48.82943043794825], [2.359441450568156, 48.82935657100483], [2.35929092950518, 48.82928386618359], [2.359137155198793, 48.82920999883196], [2.358986634983272, 48.829137293618274], [2.358832861540475, 48.82906342586571], [2.3586823435346522, 48.828990720266845], [2.358531824597681, 48.82891801356722], [2.358378052445992, 48.82884414521549], [2.358227534345509, 48.828771439022695], [2.358073763057303, 48.82869757027003], [2.357984679924485, 48.82867218124552]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 48, "zemmour_eric": 80.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-8", "circ_bv": "09", "num_bureau": 8, "roussel_fabien": 27.0, "nb_emargement": 1168.0, "nb_procuration": 47.0, "nb_vote_blanc": 14.0, "jadot_yannick": 83.0, "le_pen_marine": 84.0, "nb_exprime": 1148.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1488.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1169, "quartier_bv": "50", "geo_point_2d": [48.83022777005464, 2.358143168056982], "melenchon_jean_luc": 451.0, "poutou_philippe": 12.0, "macron_emmanuel": 294.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.322263719093833, 48.891902436302416], [2.322248552201005, 48.89190155275901], [2.322202641209596, 48.89191198227939], [2.322157400467331, 48.89192225999296], [2.322148956945161, 48.89192235429027], [2.322119002657058, 48.8919154271939], [2.322113741636482, 48.891917778824606], [2.321938324771169, 48.89188226955508], [2.321753912884002, 48.89184324757511], [2.321578496515186, 48.89180773777607], [2.321394083797788, 48.891768715231606], [2.321218669289251, 48.89173320491081], [2.321034257105509, 48.89169418180955], [2.321033997320519, 48.89169412727632], [2.320826336729786, 48.891649073353285], [2.320641926501835, 48.89161004965256], [2.320434266597422, 48.891564994146925], [2.320249856949467, 48.89152597073873], [2.320042197719649, 48.89148091454968], [2.319857788674971, 48.89144188963547], [2.319673378531202, 48.8914028653274], [2.319497557602145, 48.891364927366645], [2.3193217355536753, 48.891326990037946], [2.319137327594141, 48.891287964008775], [2.319124424431638, 48.89128962004554], [2.319111208702037, 48.89129723953339], [2.319096386551567, 48.89131318753712], [2.319088300715057, 48.89133349330696], [2.319182414620271, 48.89145080321416], [2.3192768402604163, 48.891568503313344], [2.319370955003341, 48.89168581394656], [2.319465382871515, 48.891803512980324], [2.319559497100244, 48.89192082343242], [2.319653925820722, 48.89203852229234], [2.319748042262928, 48.89215583257887], [2.319842470472034, 48.892273531257146], [2.319936587763742, 48.89239084137036], [2.32003101682537, 48.8925085398747], [2.320125134966691, 48.892625849814586], [2.32021956488075, 48.89274354814502], [2.320313683871697, 48.89286085791156], [2.320408114638096, 48.892978556068115], [2.320502234478778, 48.893095865661316], [2.320596666097629, 48.89321356364395], [2.3206907867878552, 48.89333087306382], [2.320785219259271, 48.893448570872515], [2.320879340799152, 48.89356588011907], [2.320973774111311, 48.8936835786531], [2.321067896512587, 48.89380088682698], [2.321162330677133, 48.89391858518712], [2.321179978060292, 48.89392258199365], [2.321363518257439, 48.89386818345458], [2.32154628447221, 48.893814014072866], [2.321729822540082, 48.893759614959286], [2.32191258800425, 48.89370544411393], [2.3220961253067802, 48.89365104443355], [2.322278889997014, 48.89359687392303], [2.322462427897824, 48.89354247368357], [2.322645191825938, 48.893488302608624], [2.322648585787781, 48.89348762932672], [2.322785215208441, 48.893472271800604], [2.322920716140269, 48.893457683854805], [2.32305734541377, 48.89344232511854], [2.323192846191415, 48.893427736864446], [2.323198724509095, 48.8934279535496], [2.323280626407578, 48.893443084385545], [2.323408490546635, 48.89346670727209], [2.3234128230200772, 48.89347683205684], [2.323460186460876, 48.89347531449222], [2.323494347356696, 48.89347327086385], [2.323550316243148, 48.89346992229116], [2.323561062783862, 48.89345666670785], [2.323458725436596, 48.893332693250905], [2.323357617222876, 48.89321020602299], [2.323255280844451, 48.893086232364304], [2.323154172212441, 48.89296374582863], [2.323051836814536, 48.89283977106896], [2.322950730503535, 48.89271728434169], [2.322848396062754, 48.892593310279544], [2.322747289356834, 48.89247082244603], [2.322644955884859, 48.89234684818217], [2.322543850124421, 48.89222436104861], [2.322441518996627, 48.8921003856915], [2.322340414193456, 48.89197789835869], [2.322328309909536, 48.891952540833955], [2.322310060437244, 48.891953561711446], [2.322286275786125, 48.89193744699322], [2.322283385764664, 48.891934513225856], [2.322276071586474, 48.89192244785199], [2.322271144708091, 48.891914322442965], [2.322263719093833, 48.891902436302416]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 59, "zemmour_eric": 85.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-29", "circ_bv": "03", "num_bureau": 29, "roussel_fabien": 21.0, "nb_emargement": 1380.0, "nb_procuration": 80.0, "nb_vote_blanc": 12.0, "jadot_yannick": 137.0, "le_pen_marine": 57.0, "nb_exprime": 1359.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 4, "nb_inscrit": 1706.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1380, "quartier_bv": "68", "geo_point_2d": [48.892618511704825, 2.3213560560010973], "melenchon_jean_luc": 437.0, "poutou_philippe": 6.0, "macron_emmanuel": 497.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376979976833088, 48.87206026672861], [2.376938042343983, 48.872041440288804], [2.376763667734424, 48.87197891806524], [2.376595904215065, 48.871919366347015], [2.376428142431907, 48.87185981529684], [2.376253769042402, 48.87179729232023], [2.37608600669107, 48.87173773987761], [2.375911635484162, 48.871675216402764], [2.37574387390638, 48.87161566437331], [2.375569503518798, 48.87155314039318], [2.375401742736018, 48.87149358697837], [2.375227371804617, 48.87143106248582], [2.37505961315863, 48.87137150949132], [2.37488524304656, 48.8713089844935], [2.374717483832439, 48.8712494301065], [2.374543115902853, 48.87118690461052], [2.374375357462362, 48.871127350636755], [2.374212365707602, 48.871064944363155], [2.374211109361093, 48.87106443866258], [2.374098219092402, 48.87101329485004], [2.373941012282581, 48.87094750546077], [2.373758734533771, 48.87087957916981], [2.373601527193038, 48.870813789319605], [2.373600789021726, 48.87081350126587], [2.373418512185498, 48.87074557444858], [2.3732596771074093, 48.87068800815439], [2.373077401144214, 48.870620081709184], [2.372918566836583, 48.87056251405653], [2.372909581831252, 48.870538921417534], [2.372892709578863, 48.87055320084476], [2.372838036396119, 48.87055362576561], [2.372817325252856, 48.87059970724056], [2.372703125033484, 48.870609195772495], [2.3726541017629073, 48.87061286355369], [2.372629320025755, 48.8706187295516], [2.372631022194467, 48.87063519096083], [2.372553107009943, 48.87074634001852], [2.372475390397849, 48.87085716089944], [2.372397473186076, 48.870968309826324], [2.372319755911694, 48.87107913058394], [2.372241839398941, 48.87119027939432], [2.372164121462266, 48.871301100028624], [2.372086202911296, 48.871412249607474], [2.372008485686413, 48.871523069226384], [2.371930566471301, 48.87163421868159], [2.371852847220958, 48.87174503816997], [2.371858258532133, 48.87175654660456], [2.371895492256228, 48.87177113498024], [2.371933593897767, 48.871784524585166], [2.371938956799347, 48.87179699685084], [2.371837723553813, 48.87191135683236], [2.371730050545425, 48.87203184517432], [2.371628817748084, 48.872146204962036], [2.371521143771004, 48.872266693090424], [2.37153633487977, 48.872279960722615], [2.371705372337409, 48.872250816558], [2.371920314622639, 48.87221363733654], [2.372089350286925, 48.87218449262083], [2.372304293387767, 48.8721473127148], [2.372473328621869, 48.872118167455085], [2.372688269822497, 48.872080985950895], [2.372857305989776, 48.87205184015438], [2.372868910484685, 48.8720533282009], [2.373031851613387, 48.872133430423496], [2.373187274902087, 48.872209982038626], [2.373342697295166, 48.87228653254025], [2.373505639881969, 48.87236663410103], [2.373661064573633, 48.87244318418553], [2.373824008140164, 48.87252328530155], [2.373979432403858, 48.872599834954705], [2.374142378313206, 48.87267993563312], [2.374297803512211, 48.87275648486202], [2.374460749037908, 48.872836585088585], [2.374461078346877, 48.87284174540039], [2.374492545440557, 48.87285449874257], [2.374496834489817, 48.872858023169314], [2.37456935082353, 48.87296444817226], [2.374642500462284, 48.873071974516954], [2.374715017391487, 48.87317839941106], [2.374788166257319, 48.87328592653808], [2.374860683782017, 48.873392351323275], [2.374933834623125, 48.873499877448296], [2.375006352743328, 48.87360630212461], [2.375079504174833, 48.87371382903904], [2.375108339691617, 48.873737001654334], [2.375132622571581, 48.87373849720492], [2.375156086351849, 48.8737174664248], [2.375260550601046, 48.87362383329637], [2.375373097073986, 48.87352287938725], [2.3754856444738612, 48.87342192537024], [2.375613570948773, 48.87330726105153], [2.375726116053369, 48.8732063067816], [2.375854042832546, 48.873091642190616], [2.375966587005281, 48.872990687674886], [2.376094511362238, 48.8728760227974], [2.376155423290847, 48.872821383656216], [2.376168133825924, 48.8728171717585], [2.37617988671829, 48.87280742934957], [2.376231519358169, 48.872761113725154], [2.376362162068235, 48.87263953422539], [2.376474704279198, 48.872538579190575], [2.376605345874262, 48.87241699850159], [2.376717887133186, 48.87231604321781], [2.376848527602489, 48.872194462238895], [2.3769610679091793, 48.8720935067061], [2.376979976833088, 48.87206026672861]]], "type": "Polygon"}, "properties": {"lassalle_jean": 1.0, "pecresse_valerie": 15, "zemmour_eric": 44.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-12", "circ_bv": "05", "num_bureau": 12, "roussel_fabien": 16.0, "nb_emargement": 1216.0, "nb_procuration": 98.0, "nb_vote_blanc": 12.0, "jadot_yannick": 157.0, "le_pen_marine": 41.0, "nb_exprime": 1199.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1579.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "40", "geo_point_2d": [48.87198520594471, 2.3743171344434733], "melenchon_jean_luc": 582.0, "poutou_philippe": 6.0, "macron_emmanuel": 300.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.275767169851129, 48.86828932154005], [2.275771674965379, 48.86830602093628], [2.275850309781504, 48.86841331062521], [2.2759325166699442, 48.86852971967433], [2.2760111521550233, 48.86863700923587], [2.276093361131481, 48.868753417259974], [2.276163879285969, 48.86885627507392], [2.276246087586585, 48.86897268296177], [2.276316606326973, 48.86907554156464], [2.276398815314921, 48.86919194932452], [2.2764693346662073, 48.8692948069177], [2.276551544341494, 48.869411214549565], [2.276622064291189, 48.86951407203238], [2.276622135127807, 48.86951417408684], [2.276704346853954, 48.86963058159893], [2.27678512542351, 48.869744585416946], [2.276867336501955, 48.86986099368384], [2.276948117161113, 48.86997499647712], [2.277030328967444, 48.87009140460777], [2.277111108977531, 48.87020540725901], [2.277193322874862, 48.87032181526172], [2.277274103586511, 48.87043581867844], [2.277356318224329, 48.87055222564565], [2.277437099650025, 48.870666228928634], [2.277519313652439, 48.87078263575137], [2.277600097155414, 48.87089663890876], [2.277682311885846, 48.87101304559526], [2.277763096102895, 48.871127048618916], [2.277780595782213, 48.871131566404344], [2.277974239351986, 48.871079442959996], [2.278170288285922, 48.87102745422037], [2.278363931078808, 48.87097533014066], [2.278559980595183, 48.87092334076608], [2.278753622610973, 48.87087121605106], [2.278949669995774, 48.870819225125835], [2.279143311234665, 48.87076709977547], [2.279339357826216, 48.87071510910639], [2.279345137590842, 48.87071643896461], [2.279381383339366, 48.87069864686481], [2.27948557556699, 48.870580981201606], [2.279586293219731, 48.87046600605684], [2.279690485869928, 48.870348341097994], [2.279791201257462, 48.87023336574839], [2.2798953929918993, 48.870115699687105], [2.279996108840455, 48.870000724149094], [2.280096822881207, 48.86988574850618], [2.280201013217557, 48.86976808304116], [2.280301726356245, 48.869653107201614], [2.280405915776956, 48.86953544063418], [2.280506629376779, 48.86942046460624], [2.280610817856805, 48.86930279873497], [2.280711529191397, 48.869187822502234], [2.280815716755696, 48.869070155528554], [2.280916427175842, 48.8689551799985], [2.281020613812006, 48.86883751282172], [2.281018044214966, 48.86882634097107], [2.2808859133942843, 48.868746605990744], [2.280755774100224, 48.86866681537279], [2.280623644097941, 48.86858707919217], [2.280493505591823, 48.86850728917685], [2.280491092056186, 48.86849607957692], [2.280583832032549, 48.86839397190123], [2.2806728632247832, 48.86829742051704], [2.280765601128024, 48.868195312674], [2.280854631631514, 48.868098762036546], [2.280947368824806, 48.86799665403432], [2.281036398651776, 48.867900103244324], [2.281077840372629, 48.867858865205555], [2.281051469124352, 48.867844502481645], [2.28096778333898, 48.86772278818946], [2.280904657514628, 48.86763143886918], [2.28084153054853, 48.86754008949984], [2.280757845730385, 48.86741837592665], [2.280757801629211, 48.86741831180785], [2.280673838703251, 48.86729929273885], [2.280587414166819, 48.86718560543321], [2.280503451992795, 48.86706658711894], [2.28041702821427, 48.86695289966635], [2.2803330668045882, 48.866833881207505], [2.280246643783964, 48.866720193607996], [2.280219948866264, 48.86668235210042], [2.2802119593070582, 48.866674840345084], [2.280136480284598, 48.86668872742712], [2.279935041215603, 48.86675111681517], [2.279733736812784, 48.86681368924206], [2.279532296765808, 48.866876078844534], [2.279330992759371, 48.866938650595195], [2.279129550396267, 48.86700103860528], [2.2789282454232023, 48.8670636096715], [2.27892776475859, 48.867063766859935], [2.278742956428912, 48.867126966716775], [2.27855497589692, 48.86719111756449], [2.27837016665083, 48.867254317737704], [2.278182186563349, 48.867318468000796], [2.277997376425557, 48.867381666691806], [2.27780939405643, 48.86744581635379], [2.277624583014581, 48.86750901446193], [2.277436601077402, 48.86757316443857], [2.277251789131601, 48.86763636196381], [2.277063804925142, 48.86770051044], [2.277037642896059, 48.867699249811174], [2.277021570770991, 48.86771307106228], [2.276866196201691, 48.86778407498593], [2.276712498696493, 48.86785434058172], [2.276557121921415, 48.86792534408683], [2.276403424958154, 48.86799560838577], [2.276248047340442, 48.86806661148061], [2.276094348167837, 48.8681368762647], [2.27593897107064, 48.86820787895747], [2.275785271064329, 48.86827814333568], [2.275767169851129, 48.86828932154005]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 148, "zemmour_eric": 271.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "16-59", "circ_bv": "04", "num_bureau": 59, "roussel_fabien": 5.0, "nb_emargement": 1257.0, "nb_procuration": 51.0, "nb_vote_blanc": 10.0, "jadot_yannick": 48.0, "le_pen_marine": 71.0, "nb_exprime": 1245.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1536.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1258, "quartier_bv": "63", "geo_point_2d": [48.86883128158596, 2.2786239507681785], "melenchon_jean_luc": 53.0, "poutou_philippe": 1.0, "macron_emmanuel": 616.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.372450360997428, 48.84015615094252], [2.372458051720241, 48.84014307228635], [2.372511216614016, 48.84010344376185], [2.372662336228529, 48.839988804079425], [2.372796352886692, 48.83988890861405], [2.372930367679546, 48.83978901208314], [2.373081485460519, 48.839674371838946], [2.3730822313557463, 48.839673754288285], [2.373203941120949, 48.83956383250272], [2.373324322481785, 48.83945443335072], [2.37344603122431, 48.83934451129725], [2.37356641157049, 48.83923511188016], [2.37368811929035, 48.839125189558814], [2.373808498621884, 48.83901578987661], [2.373930205319088, 48.838905867287366], [2.374050583635986, 48.83879646734008], [2.374172289310545, 48.838686544482975], [2.374292666612821, 48.83857714427061], [2.374413043409885, 48.83846774392636], [2.374534748914794, 48.83835782067527], [2.374655124697146, 48.838248420065966], [2.374776827817147, 48.83813849653989], [2.374776852630893, 48.8381384723868], [2.3748270804248612, 48.838095317212215], [2.374758483164997, 48.83805336938176], [2.3745974157504373, 48.83797599058681], [2.374433047815517, 48.837894281854815], [2.374271981375661, 48.837816902610626], [2.37410761444165, 48.83773519431918], [2.373946547625024, 48.837657813719346], [2.373782183065184, 48.837576104976186], [2.373621117212457, 48.83749872482647], [2.373456752312852, 48.83741701471808], [2.373295688797087, 48.8373396341263], [2.373131324898566, 48.83725792445842], [2.372970262357488, 48.83718054341747], [2.372805899481474, 48.83709883239151], [2.372644837915184, 48.83702145090137], [2.372488605418334, 48.8369466559124], [2.372327544793188, 48.836869273984426], [2.37217131321857, 48.83679447767158], [2.372010253534667, 48.83671709530592], [2.371854022860617, 48.83664229946771], [2.371692964117951, 48.8365649166643], [2.371536734355296, 48.83649012040155], [2.371375676553966, 48.836412737160394], [2.371219449075783, 48.83633793958089], [2.371058390853353, 48.83626055589485], [2.370902164275709, 48.83618575879009], [2.370741106994511, 48.83610837466629], [2.37058488132835, 48.83603357713693], [2.370423824988281, 48.835956192575395], [2.370267600244362, 48.83588139372217], [2.370111374575606, 48.83580659555207], [2.369950321002117, 48.835729210344454], [2.369794097607055, 48.835654411756956], [2.369633043612468, 48.835577026104446], [2.369476821139656, 48.83550222619306], [2.36931576808629, 48.83542484010284], [2.36915954651397, 48.83535004066623], [2.368998494401922, 48.835272654138265], [2.3689595704629482, 48.83526440845074], [2.368922794077662, 48.83529292310931], [2.368886559609413, 48.83542228031436], [2.368850000876562, 48.83554836118955], [2.368813767412325, 48.83567771835024], [2.368777206962037, 48.8358037991672], [2.368740973139595, 48.83593315627627], [2.368704413696301, 48.83605923704939], [2.368668179504762, 48.836188595006185], [2.368631618354901, 48.83631467482175], [2.368595383805146, 48.83644403272695], [2.3685588236513873, 48.83657011339797], [2.368522588754411, 48.83669947035227], [2.368486026883067, 48.83682555096505], [2.368449791627866, 48.836954907867764], [2.368413230763624, 48.83708098843668], [2.368380257986154, 48.837193718862125], [2.368343696786217, 48.837319799382854], [2.368310723696402, 48.83743253066437], [2.368274162171666, 48.83755861023762], [2.368241190142665, 48.837671341483066], [2.3682143510468032, 48.837763890976426], [2.368195621921522, 48.83779511423317], [2.368199142464581, 48.837799385025406], [2.368189418321229, 48.837832915047635], [2.368188891774984, 48.83783420465372], [2.368123516238422, 48.83795718022609], [2.368057447514393, 48.83808134194814], [2.367992071357747, 48.8382043174215], [2.367926002007253, 48.83832847904349], [2.367860625230617, 48.838451454417815], [2.367794555253749, 48.83857561593978], [2.367729177867921, 48.83869859031577], [2.367663107264673, 48.83882275173762], [2.367597729247829, 48.83894572691387], [2.367531658018191, 48.839069888235684], [2.367466279381229, 48.83919286331289], [2.367400207525192, 48.83931702453462], [2.367334828268104, 48.839439999512784], [2.367268755796578, 48.83956415973517], [2.367203375919356, 48.83968713461428], [2.367137304172923, 48.83981129564307], [2.367071922313134, 48.839934270415945], [2.367005849940284, 48.840058431344644], [2.366940467460336, 48.84018140601844], [2.36687439446106, 48.8403055668471], [2.366809011371871, 48.84042854052253], [2.366742937746161, 48.840552701251084], [2.366677554025874, 48.84067567572676], [2.366611479773721, 48.84079983635524], [2.3665460967956022, 48.84092281073903], [2.366480020554644, 48.84104697126025], [2.366414636956342, 48.841169945544955], [2.36634856009985, 48.841294105066744], [2.366283175881354, 48.841417079252416], [2.366217098387455, 48.841541239573395], [2.366151713548757, 48.84166421365999], [2.366085635428374, 48.84178837388088], [2.3660202499694662, 48.841911347868354], [2.36595417122259, 48.842035507989166], [2.365888785154404, 48.84215848097829], [2.365822705781028, 48.84228264099893], [2.365757319081676, 48.84240561478829], [2.365691239081789, 48.84252977470887], [2.3656258517622, 48.8426527483991], [2.365559771135796, 48.842776908219555], [2.365494383195963, 48.842899881810695], [2.365428301943032, 48.84302404153103], [2.365362913393897, 48.84314701412378], [2.36529683151433, 48.843271173744], [2.365231442334085, 48.84339414713694], [2.365165359827975, 48.84351830665704], [2.36509997002746, 48.84364127995087], [2.365033886894798, 48.843765439370834], [2.364968496484963, 48.843888411666285], [2.364902412725741, 48.84401257098609], [2.364810706512178, 48.84404715735081], [2.364814331532489, 48.844065116134615], [2.364858916936097, 48.84412529250543], [2.364895143567318, 48.84421548918689], [2.3649835454248462, 48.84433480438318], [2.364986972382852, 48.844337712216976], [2.365155654407847, 48.84443710715608], [2.365309477290173, 48.844523226708546], [2.365478160530666, 48.84462262117639], [2.365631984493551, 48.844708740299865], [2.365800668949445, 48.84480813429644], [2.365954493992795, 48.84489425299093], [2.366023035887259, 48.844926576768316], [2.366095300602782, 48.844875661142254], [2.366228817511015, 48.84477389282851], [2.366362858815685, 48.84467400409997], [2.366496376058325, 48.844572234577136], [2.366630414958061, 48.844472346422855], [2.366764453354927, 48.844372457210156], [2.36689796902983, 48.844270688110896], [2.367032006395263, 48.84417079858038], [2.36716552104213, 48.84406902826485], [2.367299557365218, 48.84396913931579], [2.367433070973032, 48.84386736868326], [2.367567107627241, 48.843767479423605], [2.367700618833482, 48.84366570846687], [2.367834654467194, 48.84356581799006], [2.367968165986018, 48.84346404762288], [2.3681021992258042, 48.8433641568211], [2.368235709705607, 48.8432623861369], [2.368369741914007, 48.84316249501732], [2.368503251354697, 48.84306072401614], [2.368637282531716, 48.84296083257877], [2.368770790933505, 48.842859061260604], [2.368904821079154, 48.84275916950545], [2.369033690275191, 48.84266448825088], [2.3691677194057172, 48.84256459708301], [2.369296586280575, 48.842469915521576], [2.369425452676448, 48.84237523471258], [2.369559480323172, 48.84227534218059], [2.369688347133648, 48.842180660179785], [2.369822373776154, 48.8420807673359], [2.369951238254609, 48.84198608592749], [2.37008526389291, 48.84188619277166], [2.3702141287752, 48.841791511070745], [2.370348153409302, 48.84169161760293], [2.370477015981337, 48.841596934695865], [2.37061103961125, 48.841497040916174], [2.370739901213792, 48.841402358608704], [2.37087392520199, 48.84130246452423], [2.37100278584591, 48.841207781917106], [2.371136807467468, 48.84110788751351], [2.371265667163624, 48.841013203707405], [2.371399689143472, 48.8409133089991], [2.371528547870169, 48.84081862579261], [2.371662567483405, 48.84071873076524], [2.371791425251506, 48.84062404725907], [2.37192544522304, 48.84052415192688], [2.372054302043385, 48.840429467221796], [2.37218831964833, 48.840329571570585], [2.372317175499257, 48.84023488746511], [2.372398028480192, 48.84017462090516], [2.372450360997428, 48.84015615094252]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 17, "zemmour_eric": 26.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-33", "circ_bv": "09", "num_bureau": 33, "roussel_fabien": 6.0, "nb_emargement": 444.0, "nb_procuration": 12.0, "nb_vote_blanc": 9.0, "jadot_yannick": 19.0, "le_pen_marine": 35.0, "nb_exprime": 431.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 694.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 444, "quartier_bv": "49", "geo_point_2d": [48.8398370420721, 2.369500615610428], "melenchon_jean_luc": 192.0, "poutou_philippe": 3.0, "macron_emmanuel": 108.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.35489554894409, 48.83591008132773], [2.354922422749195, 48.83590320220225], [2.355120561036322, 48.83594236422688], [2.355317663776487, 48.83598211122338], [2.355515802660598, 48.83602127259053], [2.355712904638185, 48.83606101892564], [2.355911045481394, 48.836100179642614], [2.356108148058822, 48.836139925323636], [2.3563062894989, 48.83617908538318], [2.356503392664857, 48.83621883130939], [2.35670153335067, 48.83625798980482], [2.356898638478688, 48.83629773508425], [2.357096779750154, 48.83633689382153], [2.35729388548899, 48.83637663754758], [2.357492027357403, 48.83641579562732], [2.357689133695952, 48.836455538699276], [2.357887276161101, 48.836494696121584], [2.358084383099355, 48.83653443853939], [2.358100555509508, 48.83652984952069], [2.358190827738342, 48.836410301728364], [2.358256347064051, 48.83631137035235], [2.358251169840933, 48.83629964900609], [2.358069560781263, 48.83622761730757], [2.357891778271001, 48.836157319162275], [2.357710170214829, 48.83608528600964], [2.357532387312363, 48.83601498731392], [2.3573507802488223, 48.83594295360651], [2.357172999678703, 48.83587265437498], [2.356991393596596, 48.83580062101204], [2.356813612634375, 48.83573032123012], [2.356632007555786, 48.835658286413086], [2.356454228926006, 48.83558798609538], [2.356272624828938, 48.83551595162287], [2.35609484580686, 48.83544565075474], [2.356093490996317, 48.83544503818676], [2.355944289261711, 48.835368152861136], [2.355789318620193, 48.83528870724829], [2.355640117781591, 48.83521182153254], [2.355485146706118, 48.835132375507115], [2.355335946763621, 48.8350554894012], [2.355180977978793, 48.83497604297799], [2.355177959585148, 48.834963989559846], [2.355281173945232, 48.83486065271211], [2.355397470970793, 48.83474561084249], [2.355500683089914, 48.834642274677165], [2.355616979143832, 48.834527232571645], [2.355720190406438, 48.83442389529743], [2.355836485488822, 48.834308852956056], [2.35593969587279, 48.83420551637156], [2.356055989994662, 48.83409047289502], [2.356159199511116, 48.833987136100966], [2.356275492650265, 48.83387209328789], [2.3563787012992172, 48.833768756284265], [2.356494993477866, 48.83365371233597], [2.3565982026215853, 48.83355037513014], [2.356617542080424, 48.8335466343578], [2.356628820411381, 48.83352988761064], [2.356610269434217, 48.83350120316531], [2.356532802416928, 48.83338032938091], [2.356448834972283, 48.83325050060757], [2.356445508302512, 48.83324740146775], [2.356303922699511, 48.83316176425071], [2.356138783405247, 48.833059339239526], [2.356124390457592, 48.83305063320452], [2.356120095638085, 48.833044080659256], [2.356120064800991, 48.832964630162074], [2.356123223444448, 48.83287820602699], [2.356121403027501, 48.832873493421616], [2.356029308061879, 48.83275847992305], [2.355930225685651, 48.832645165396286], [2.355928832926444, 48.832642448094006], [2.355894676970294, 48.832507849684895], [2.355867459043611, 48.83239102779521], [2.35584024125003, 48.83227420498778], [2.355806085752782, 48.832139607408436], [2.355778866865785, 48.83202278455352], [2.355744711702845, 48.83188818602707], [2.355717494435759, 48.831771364038616], [2.355683339595905, 48.83163676546448], [2.355656122597717, 48.83151994343581], [2.35565310367796, 48.83151940193887], [2.355597029554355, 48.831570218281534], [2.355574404273118, 48.83172465507717], [2.355554182330923, 48.8318710149574], [2.355531556792202, 48.83202545170347], [2.355511334613026, 48.83217181153719], [2.35550948293178, 48.83217558431183], [2.355424950520136, 48.83226962833212], [2.355303724186092, 48.83240455054705], [2.355219191031966, 48.83249859440271], [2.355097963621795, 48.832633517280776], [2.355013429725179, 48.83272756097174], [2.355012689155968, 48.832728509411126], [2.354930622550697, 48.832850918984256], [2.354850470387151, 48.8329719447928], [2.354768403006589, 48.83309435512735], [2.354688250092126, 48.833215380800894], [2.35460618194739, 48.83333779099749], [2.354526028282, 48.833458816536016], [2.354443958010819, 48.83358122658735], [2.354363804967789, 48.83370225109887], [2.354283650179275, 48.83382327643559], [2.354201578765132, 48.83394568628075], [2.354121424587937, 48.83406671148977], [2.354039352409578, 48.834189121197014], [2.353959196119147, 48.83431014626362], [2.353877124538843, 48.83443255584028], [2.3537969674973382, 48.83455358077183], [2.353714895163955, 48.834675989311236], [2.353634737371573, 48.834797014107814], [2.353552664262802, 48.83491942340854], [2.353554964357737, 48.83492905638486], [2.35368893301306, 48.83502801118266], [2.353820366793263, 48.83512388977538], [2.353954337815442, 48.83522284426602], [2.354085772575067, 48.83531872255037], [2.354219743239609, 48.83541767671915], [2.354351178989698, 48.835513553795906], [2.354482615212257, 48.83560943161929], [2.354616587377295, 48.83570838531789], [2.354748024590425, 48.83580426193363], [2.354881999111133, 48.83590321622437], [2.35489554894409, 48.83591008132773]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 53, "zemmour_eric": 54.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "13-2", "circ_bv": "09", "num_bureau": 2, "roussel_fabien": 31.0, "nb_emargement": 1136.0, "nb_procuration": 51.0, "nb_vote_blanc": 16.0, "jadot_yannick": 99.0, "le_pen_marine": 74.0, "nb_exprime": 1118.0, "nb_vote_nul": 2.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1448.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "49", "geo_point_2d": [48.83446795228585, 2.355427482099909], "melenchon_jean_luc": 398.0, "poutou_philippe": 8.0, "macron_emmanuel": 342.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328669006883791, 48.88075248824939], [2.328629644811415, 48.880760314757744], [2.328440572226513, 48.88076066267449], [2.328252170905264, 48.88076076854102], [2.328063098304594, 48.88076111676092], [2.327874696980836, 48.88076122203341], [2.327685624387608, 48.880761568757926], [2.327497223049944, 48.880761674335666], [2.327308150452463, 48.880762020464026], [2.32711974776053, 48.88076212454082], [2.327067573536651, 48.88077035966964], [2.327062995373592, 48.88077853676068], [2.327064461663372, 48.8808111089831], [2.327069301306119, 48.88093159385734], [2.327075112554157, 48.88106067641304], [2.327079953608241, 48.881181161267214], [2.327085764910427, 48.881310243793195], [2.327090604648948, 48.8814307286119], [2.327096417368895, 48.88155981111574], [2.327101257155152, 48.88168029590671], [2.327105166909924, 48.88176712241347], [2.327110089853369, 48.881784717654924], [2.327165123299927, 48.88178903258323], [2.327327523836311, 48.88179817225735], [2.327562322523027, 48.8818098920554], [2.327724724569394, 48.881819030298956], [2.327959523439533, 48.881830749317814], [2.3281219242570153, 48.88183988701478], [2.328130622635025, 48.881842634727576], [2.328259306440148, 48.881931437480176], [2.328388910606832, 48.882020279422456], [2.32851759391622, 48.88210908277469], [2.328647198965626, 48.882197924423025], [2.328775883165998, 48.882286726584084], [2.328905490461564, 48.8823755679461], [2.329034175529845, 48.88246437071449], [2.329163782344617, 48.882553211774926], [2.329292468292303, 48.8826420142513], [2.329422077353358, 48.88273085502544], [2.329550764191936, 48.882819656310616], [2.3296803727722972, 48.88290849678315], [2.329692218428633, 48.88291115587826], [2.329865852400556, 48.882894008143424], [2.330088045239534, 48.88287322517699], [2.330261680329864, 48.8828560759759], [2.330483872849027, 48.88283529227417], [2.330657506307325, 48.882818143390075], [2.330879698506671, 48.88279735895304], [2.331053333071791, 48.88278020950197], [2.331061526587503, 48.88277727399678], [2.331196479435577, 48.882676654352494], [2.33133507266092, 48.88257220753919], [2.331470023085529, 48.88247158756022], [2.331608615216511, 48.88236714041082], [2.331743565944739, 48.88226652011236], [2.331882156981266, 48.882162072626826], [2.33190304457878, 48.88214794196641], [2.331908030955918, 48.882126708676715], [2.331883856365048, 48.88200399836675], [2.331850598179189, 48.88185658663905], [2.331826423849037, 48.88173387628739], [2.331793164646275, 48.881586463600705], [2.3317689905653, 48.88146375410656], [2.331735733061021, 48.88131634137537], [2.331718732151085, 48.88123004090912], [2.331705168465485, 48.881215602846595], [2.331667365517034, 48.8812178703825], [2.331525930085596, 48.881245035616374], [2.331388894712787, 48.881269550640035], [2.3312474590072902, 48.8812967146444], [2.331110423367312, 48.88132122934819], [2.331102449935429, 48.8813210615912], [2.330926501798422, 48.88128145745623], [2.330729602503194, 48.881236232020306], [2.330553654924866, 48.8811966282336], [2.33035675491064, 48.881151402173415], [2.33018080791391, 48.881111796936466], [2.329983909907805, 48.88106657026725], [2.329807963469649, 48.88102696537855], [2.329611064744463, 48.88098173808502], [2.329435118888131, 48.88094213174607], [2.329238222170968, 48.88089690384352], [2.329062276873106, 48.880857297852835], [2.3288653794370813, 48.88081206932597], [2.328689436084456, 48.880772461892725], [2.328669006883791, 48.88075248824939]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 86, "zemmour_eric": 74.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "9-16", "circ_bv": "01", "num_bureau": 16, "roussel_fabien": 13.0, "nb_emargement": 1198.0, "nb_procuration": 90.0, "nb_vote_blanc": 9.0, "jadot_yannick": 110.0, "le_pen_marine": 55.0, "nb_exprime": 1186.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1435.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1198, "quartier_bv": "33", "geo_point_2d": [48.881741469786846, 2.329562055143736], "melenchon_jean_luc": 256.0, "poutou_philippe": 4.0, "macron_emmanuel": 547.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37048459660303, 48.818361244369875], [2.370439796262135, 48.81833989824226], [2.370269469375441, 48.81828396373827], [2.370040601861919, 48.8182087499463], [2.3698702744699602, 48.818152814859985], [2.369704134207811, 48.81809821379452], [2.3695338075378363, 48.81804227822344], [2.369367666607455, 48.817987677577264], [2.369197342021317, 48.8179317415286], [2.369031201795534, 48.81787714040952], [2.369005068409506, 48.81786855101894], [2.368834744601439, 48.817812614447824], [2.368697954725819, 48.81776765805071], [2.368527630214999, 48.81771172102992], [2.368364480456148, 48.817660069440045], [2.368194156654473, 48.81760413193887], [2.368031007562559, 48.81755247988903], [2.367860684470031, 48.81749654190753], [2.3676975360341492, 48.81744489029704], [2.367527213661573, 48.817388950935865], [2.367339082422236, 48.81732938882463], [2.36733482783124, 48.817328042423135], [2.367164507580341, 48.817272103445994], [2.366984146907098, 48.817215001229044], [2.366942305240288, 48.81721219847784], [2.366933038272629, 48.81722570938747], [2.366847098709123, 48.81733839832082], [2.366755963570951, 48.81745643167152], [2.366670023255453, 48.81756911955518], [2.366578885951381, 48.81768715273947], [2.366492944862136, 48.81779984137209], [2.366401808126671, 48.817917873505124], [2.366315866274495, 48.81803056198738], [2.366224727362271, 48.81814859485334], [2.366138786119844, 48.818261282293136], [2.366047646403533, 48.81837931499993], [2.365961703025463, 48.818492003181454], [2.365870562515884, 48.81861003482977], [2.365784619736726, 48.8187227228681], [2.3656934784122052, 48.81884075525658], [2.365607533519042, 48.818953442238005], [2.365516392752285, 48.8190714744745], [2.365430447085203, 48.81918416220486], [2.365339304152434, 48.81930219427494], [2.36525335773341, 48.8194148809556], [2.365162215358295, 48.81953291287377], [2.365076268165327, 48.81964560030331], [2.364985123635222, 48.81976363115574], [2.364899177041049, 48.81987631844215], [2.364808031695835, 48.819994350034655], [2.364750924507155, 48.82006922398867], [2.364736249581307, 48.82008629898969], [2.364735278392521, 48.82009200848668], [2.364706436838158, 48.82012982165695], [2.364682855510298, 48.82016157307026], [2.364671547778451, 48.82019537911841], [2.364744800224012, 48.82021674542679], [2.364798587214104, 48.82035014468707], [2.364852460083171, 48.820480094343914], [2.364906248982275, 48.820613493531724], [2.364960122391647, 48.82074344310962], [2.365013910475929, 48.82087684221058], [2.365067784425711, 48.821006791709564], [2.3651215730572, 48.82114019073084], [2.365175448909242, 48.82127014015809], [2.365229238087848, 48.821403539099684], [2.365283113118482, 48.82153348844078], [2.365336902844108, 48.8216668873027], [2.365390778415176, 48.82179683656482], [2.365444570049992, 48.8219302353543], [2.365498446161507, 48.822060184537484], [2.365552236981404, 48.82219358324007], [2.365606113633371, 48.82232353234431], [2.365613857396247, 48.82232941578266], [2.36577118376588, 48.82237538647536], [2.365977421242766, 48.822434115845866], [2.366134748237825, 48.82248008695532], [2.36634098790043, 48.82253881570051], [2.366498315531957, 48.82258478632737], [2.366704554656124, 48.82264351443284], [2.366861882935136, 48.82268948367778], [2.36688094645037, 48.822709419473775], [2.36690113947945, 48.822706778787], [2.366939185661328, 48.82268735310357], [2.366975749171383, 48.82266911033428], [2.367001781636821, 48.82266497969596], [2.367009017241141, 48.822649012682035], [2.367109859255594, 48.8225986992539], [2.367297178247505, 48.82250899281904], [2.367434581540278, 48.82244043622115], [2.3676219007669053, 48.8223507292722], [2.36775930321555, 48.822282172291544], [2.3677646516900612, 48.82227309257535], [2.367720768553148, 48.82213122299571], [2.367686641412763, 48.82201510738213], [2.367652514435385, 48.821898990847465], [2.367608631918438, 48.82175712117948], [2.367574505272731, 48.821641005495245], [2.367530624547105, 48.82149913577329], [2.367496496892934, 48.82138301913361], [2.36745261659657, 48.82124114935048], [2.367418490636001, 48.821125033568414], [2.367437175966159, 48.82111503959209], [2.367609963881482, 48.82116341371039], [2.367801452437102, 48.82121695444244], [2.367974239666165, 48.821265328022804], [2.368165730332053, 48.82131886817386], [2.368338518247687, 48.82136724032415], [2.368530009661796, 48.82142077988703], [2.368702798242202, 48.82146915240587], [2.368894289042788, 48.821522691373374], [2.36906707966081, 48.82157106336864], [2.3692585712205902, 48.82162460084862], [2.369431361152325, 48.82167297230597], [2.369622854811487, 48.82172651010421], [2.369795645418883, 48.8217748810308], [2.369987139826254, 48.82182841824085], [2.370159931109307, 48.821876788636644], [2.370332722713053, 48.82192515878068], [2.370524218234652, 48.82197869422421], [2.370541772673827, 48.8219743509023], [2.370619013138847, 48.82186963194363], [2.370697830873719, 48.82176194878497], [2.370716327323263, 48.82175786581774], [2.370893450394445, 48.821818077568835], [2.37107244052008, 48.821878910448675], [2.371249564424429, 48.82193912076646], [2.37142855538106, 48.821999953106676], [2.371447168266257, 48.821995704254405], [2.371513618198491, 48.82190941740846], [2.371592440588028, 48.82179588774476], [2.371586172967079, 48.82178410264249], [2.371416118335701, 48.821727711857605], [2.371255803395313, 48.82167395594968], [2.371095487423636, 48.82162019981709], [2.370925435208493, 48.82156380923266], [2.370765119916079, 48.821510052651895], [2.370595068417459, 48.821453661592166], [2.370577289977054, 48.821457056699096], [2.370476902758761, 48.82156706716577], [2.37037920436883, 48.82167702514341], [2.370361264348541, 48.82168048412241], [2.370192150488237, 48.82162347146915], [2.370035538237461, 48.82156944561284], [2.369866426455403, 48.82151243250047], [2.369709814886414, 48.82145840531292], [2.3695532036312033, 48.82140437881697], [2.369384092911914, 48.82134736501412], [2.369377075240562, 48.821337167731876], [2.369425013770472, 48.82121092302149], [2.36947733658458, 48.821054136029936], [2.369525275973459, 48.82092789125472], [2.369568099202392, 48.820815750506874], [2.369616038152246, 48.82068950566855], [2.369658860990199, 48.8205773648644], [2.36965254054777, 48.82056740600435], [2.36952390612225, 48.82051763705114], [2.369398596406306, 48.820468217360244], [2.369269962467869, 48.820418448129466], [2.369144651869064, 48.82036902816096], [2.369138682181165, 48.820364085158374], [2.369070966028194, 48.82022640981893], [2.369009444085319, 48.82009765926935], [2.369010464479943, 48.82009054606921], [2.369100206262616, 48.81998283059807], [2.369205150379666, 48.81986213446591], [2.369294891367054, 48.81975441882681], [2.369399833211862, 48.819633722492085], [2.369489573393099, 48.81952600758433], [2.369594515689581, 48.81940531106139], [2.369684255086427, 48.81929759508638], [2.369789196472487, 48.81917689836814], [2.369878935074074, 48.81906918222511], [2.369983874187942, 48.81894848530431], [2.370073611994282, 48.81884076899331], [2.370178551559735, 48.818720071884364], [2.370268288559975, 48.81861235630471], [2.37037322721514, 48.81849165900039], [2.370462963431012, 48.81838394235347], [2.37048459660303, 48.818361244369875]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 45, "zemmour_eric": 97.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 28.0, "date_tour": "2022-04-10", "id_bvote": "13-20", "circ_bv": "09", "num_bureau": 20, "roussel_fabien": 28.0, "nb_emargement": 1306.0, "nb_procuration": 16.0, "nb_vote_blanc": 9.0, "jadot_yannick": 48.0, "le_pen_marine": 127.0, "nb_exprime": 1292.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1870.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1307, "quartier_bv": "50", "geo_point_2d": [48.81995031634519, 2.367461601048723], "melenchon_jean_luc": 432.0, "poutou_philippe": 11.0, "macron_emmanuel": 434.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355771192225159, 48.868973609020735], [2.355799799798088, 48.86901783878668], [2.355872697634584, 48.869135543811076], [2.355945756496646, 48.86925359319129], [2.356018653629668, 48.86937129809436], [2.356091713153249, 48.869489347360314], [2.35616461229798, 48.86960705305598], [2.356237672494104, 48.869725101308404], [2.356310570935369, 48.86984280688273], [2.356383631792925, 48.86996085502087], [2.356456532257147, 48.87007856048855], [2.356529593776146, 48.870196608512394], [2.356602493537007, 48.87031431385875], [2.356675555706348, 48.870432362667636], [2.356748457501202, 48.87055006700797], [2.356821520332005, 48.87066811570256], [2.356894421423398, 48.87078581992161], [2.356967484915669, 48.870903868501905], [2.357040388030077, 48.87102157261423], [2.357113452183826, 48.871139621080275], [2.357186354594881, 48.871257325071284], [2.357259419410013, 48.87137537342298], [2.35733232384411, 48.87149307730728], [2.357405389320739, 48.87161112554473], [2.357420282481658, 48.87162547440163], [2.357444089980739, 48.87161764575852], [2.357494321598304, 48.87159267006776], [2.357680911340759, 48.871498923473794], [2.357818406605392, 48.8714305587408], [2.35782612374895, 48.871428727720335], [2.358030499634623, 48.871423351476864], [2.3582330445073882, 48.871417867039646], [2.3584374216716952, 48.87141249010862], [2.358639966459378, 48.8714070049828], [2.358844342175806, 48.87140162734968], [2.359046886878397, 48.871396141535214], [2.359249431538323, 48.871390655378036], [2.359453807127673, 48.871385276704224], [2.359656351702491, 48.87137978985841], [2.359860728570438, 48.87137441049709], [2.359865868707558, 48.871374929924436], [2.360075074366522, 48.871425370976866], [2.360302773582744, 48.87147916430135], [2.360326921160137, 48.87149644463131], [2.360338312719935, 48.87149491817597], [2.360352734608763, 48.87149119823896], [2.360355100638718, 48.87147360273755], [2.3604320119090803, 48.871388361628206], [2.360520198106995, 48.87129241382067], [2.360597108839654, 48.871207172591255], [2.360667009550692, 48.871131120179484], [2.360677891121223, 48.87111426713759], [2.360656275768275, 48.87110405480965], [2.360596312043212, 48.87101842054478], [2.360549941550464, 48.870952925807096], [2.36055653763231, 48.87094100973237], [2.360634767501717, 48.87091685229669], [2.360716463285929, 48.870892878799125], [2.360722118508741, 48.87087952953989], [2.360622181752051, 48.870784662303876], [2.360528831197327, 48.87069625683724], [2.360428895155213, 48.87060138852484], [2.360335545256974, 48.8705129828928], [2.36024219431227, 48.8704245771736], [2.360142260676735, 48.87032970860582], [2.360126341233332, 48.870326404768285], [2.359929827626923, 48.87037429611423], [2.359732359222394, 48.87042197608142], [2.359535844882056, 48.870469867675695], [2.359338377117826, 48.87051754699608], [2.359141860691587, 48.87056543793209], [2.358944392204442, 48.870613116598356], [2.358927640634947, 48.87060885664481], [2.358833490469261, 48.87049075295726], [2.358740155703987, 48.870373557385236], [2.358646006388572, 48.87025545352504], [2.358552672466716, 48.87013825778192], [2.358458524001663, 48.8700201537491], [2.358365190923212, 48.869902957834825], [2.358271043308511, 48.869784853629405], [2.35817771243656, 48.869667657551304], [2.358083565672298, 48.869549553173265], [2.357990234280525, 48.869432356916725], [2.357988600410454, 48.86943075272339], [2.357872008931459, 48.8693392552517], [2.357740245648335, 48.869235634079054], [2.357745073481083, 48.86922165995274], [2.357910924071314, 48.86917219210637], [2.358074970354772, 48.86912342033516], [2.358240820318839, 48.869073952027314], [2.358404867347235, 48.86902517980698], [2.35857071532205, 48.868975711030295], [2.358734761743261, 48.868926937454184], [2.358900609081043, 48.86887746911528], [2.359064654883992, 48.86882869508273], [2.359230502958795, 48.86877922628965], [2.359394546780295, 48.86873045179331], [2.359402370485528, 48.86872069445096], [2.359368558550588, 48.86859393936995], [2.359332475041798, 48.86846279771096], [2.359379874403786, 48.86839145218922], [2.359376786673979, 48.868389788969424], [2.359276412548231, 48.8684039936872], [2.359070031206364, 48.86843450954003], [2.358871828077912, 48.868462557884975], [2.358848069092037, 48.86846536156837], [2.358845183551177, 48.8684664334144], [2.358638800346251, 48.86849694851466], [2.358433056862821, 48.8685277463836], [2.3582266745255582, 48.86855826167818], [2.358020930556413, 48.86858905883699], [2.357814547745907, 48.868619572519954], [2.357608803290858, 48.86865036896865], [2.357402418632963, 48.86868088193199], [2.35719667369212, 48.868711677670554], [2.356990289902003, 48.86874219082818], [2.356784544475372, 48.86877298585662], [2.356578158848776, 48.868803497395334], [2.356372412936472, 48.86883429171364], [2.35637092349171, 48.86883457509073], [2.356225317685882, 48.86886709281304], [2.356020728065027, 48.868914369569985], [2.355875121817454, 48.8689468868639], [2.355786990529972, 48.86896725207449], [2.355771192225159, 48.868973609020735]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 37, "zemmour_eric": 64.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "10-3", "circ_bv": "05", "num_bureau": 3, "roussel_fabien": 27.0, "nb_emargement": 1276.0, "nb_procuration": 105.0, "nb_vote_blanc": 12.0, "jadot_yannick": 151.0, "le_pen_marine": 51.0, "nb_exprime": 1262.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1583.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1277, "quartier_bv": "39", "geo_point_2d": [48.870139384298085, 2.3580445689393477], "melenchon_jean_luc": 468.0, "poutou_philippe": 12.0, "macron_emmanuel": 394.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.304991850477375, 48.840601838543314], [2.305035177429998, 48.840627677302535], [2.305185065048304, 48.84066870210935], [2.305378180026864, 48.84072579763607], [2.305528068197316, 48.84076682200951], [2.305721183915058, 48.84082391697749], [2.305871072637654, 48.840864940917555], [2.306064189094675, 48.84092203532681], [2.306260749232314, 48.840976661737486], [2.306453866530136, 48.84103375551195], [2.3066504274975053, 48.84108838127691], [2.306843545636124, 48.84114547441656], [2.307022563362277, 48.84119959229029], [2.307215682320591, 48.841256684823506], [2.307394700815111, 48.84131080213498], [2.30758782059322, 48.841367894061754], [2.307766841206618, 48.84142201171809], [2.307798311226255, 48.841431289127065], [2.30782353739137, 48.84140953279183], [2.307894871521778, 48.84130920734291], [2.307979629109207, 48.84119697542173], [2.308065521893051, 48.84108223716349], [2.308150278743926, 48.840970005098605], [2.308236170777969, 48.84085526669448], [2.3083209268924, 48.84074303448587], [2.308406818176752, 48.84062829593593], [2.308491573554647, 48.84051606358358], [2.308577465451751, 48.84040132489568], [2.308662218730685, 48.84028909239174], [2.30874810987811, 48.84017435355802], [2.308832862420533, 48.84006212091036], [2.308918752818286, 48.83994738193079], [2.309003504624104, 48.83983514913944], [2.309089394272297, 48.83972041001401], [2.30917414534162, 48.83960817707897], [2.3091978287004222, 48.83958305597097], [2.309190414142491, 48.83957554209325], [2.309055526596234, 48.83952236309847], [2.308887706211851, 48.83945564884086], [2.308695256793199, 48.839379774932205], [2.308527437329039, 48.83931306016065], [2.308334988961195, 48.83923718566272], [2.308167169054957, 48.839170470369346], [2.308160663307472, 48.83916173763813], [2.308180781730792, 48.83904646128428], [2.308210216285751, 48.83889836503258], [2.308230334497823, 48.8387830886432], [2.308259768763158, 48.83863499234438], [2.308279886764086, 48.83851971591951], [2.308309320739906, 48.83837161957363], [2.308328123244967, 48.838263876727005], [2.308329437167216, 48.83825634310538], [2.308327575845706, 48.83825050622225], [2.308215728584747, 48.8381288887282], [2.3080965278325642, 48.83800518071196], [2.307984681637109, 48.83788356297514], [2.307865481994301, 48.83775985470156], [2.307864935850447, 48.83774609117021], [2.307842612445556, 48.837733657707915], [2.30779564622692, 48.837707499342294], [2.307773597256765, 48.83771461887457], [2.307728434482097, 48.837750456446926], [2.307684109254331, 48.83778764970376], [2.307658504506676, 48.83779587824395], [2.307647132941533, 48.8378210523623], [2.307589032291316, 48.83786980460275], [2.307478527936795, 48.83795719437945], [2.30737610266274, 48.838043140573475], [2.307265597583647, 48.83813053013994], [2.30716317025561, 48.838216476130434], [2.307162356928532, 48.838217189117074], [2.307046260735414, 48.83833011248638], [2.30692878891517, 48.83844193862675], [2.306812691715548, 48.83855486174663], [2.306695218887679, 48.838666687635126], [2.30657912068144, 48.838779610505625], [2.306461648208329, 48.83889143615012], [2.30634554763307, 48.83900435876329], [2.306228074152318, 48.83911618415596], [2.306227366321524, 48.839116953508636], [2.306115605348863, 48.839253229799716], [2.306018141183497, 48.83937164019972], [2.30590637911771, 48.83950791626427], [2.305808915363202, 48.8396263264747], [2.305728810600839, 48.83972224429155], [2.305631346054139, 48.839840653435346], [2.3055512406356122, 48.83993657111485], [2.305453775284738, 48.84005498009121], [2.305374259475046, 48.8401471947614], [2.305276791953837, 48.840265604462594], [2.305197276884118, 48.84035781810637], [2.305099808566973, 48.840476227641076], [2.305020292862811, 48.84056844114979], [2.304991850477375, 48.840601838543314]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 140, "zemmour_eric": 122.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-41", "circ_bv": "12", "num_bureau": 41, "roussel_fabien": 17.0, "nb_emargement": 1316.0, "nb_procuration": 89.0, "nb_vote_blanc": 14.0, "jadot_yannick": 126.0, "le_pen_marine": 84.0, "nb_exprime": 1298.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1625.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1316, "quartier_bv": "58", "geo_point_2d": [48.83979812581645, 2.3072264302771943], "melenchon_jean_luc": 268.0, "poutou_philippe": 5.0, "macron_emmanuel": 463.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3555863607667, 48.83148520800616], [2.3555339645260602, 48.83149758613042], [2.355449711024573, 48.83161874505999], [2.355367643182365, 48.831737293133926], [2.355283388906908, 48.83185845192042], [2.355201320309106, 48.83197699985486], [2.35511706662179, 48.832098158505595], [2.355034997268388, 48.83221670630057], [2.354950741444965, 48.83233786480088], [2.354868671347079, 48.83245641155701], [2.35478441610066, 48.832577570820874], [2.35470234388492, 48.83269611743015], [2.3546180878757292, 48.832817275651585], [2.354536016255464, 48.83293582302803], [2.354451758110016, 48.83305698109901], [2.354369685734008, 48.83317552833595], [2.354285428176783, 48.83329668627119], [2.354203353682972, 48.83341523336127], [2.354119095351713, 48.833536391153395], [2.354037021464496, 48.83365493811131], [2.353952760996933, 48.83377609575295], [2.353870686365091, 48.83389464167199], [2.353786426474593, 48.83401580007722], [2.353704351087178, 48.83413434585674], [2.353620089060338, 48.83425550411146], [2.353538012917133, 48.83437404975147], [2.353453750127366, 48.83449520696374], [2.353371673217412, 48.83461375336353], [2.353287411015846, 48.834734910440055], [2.353205333350186, 48.83485345670029], [2.353121069012232, 48.834974613626336], [2.353038990590751, 48.83509315974706], [2.352956911807211, 48.835211704899564], [2.352872646301579, 48.83533286251108], [2.352790566762309, 48.83545140752406], [2.352706301855929, 48.83557256410048], [2.3526242215497533, 48.83569110987323], [2.352539954507032, 48.83581226629913], [2.3524578734451023, 48.83593081193232], [2.352373606990562, 48.83605196822248], [2.352291523810544, 48.83617051370871], [2.352207256581755, 48.83629166985573], [2.352125174008293, 48.83641021520981], [2.352040904643114, 48.836531371206235], [2.3520191460162723, 48.836562795048515], [2.352011488359354, 48.83656823970548], [2.352005849739367, 48.83658815442859], [2.351945523634231, 48.83667527488545], [2.351896868964983, 48.83675791494269], [2.351872406428179, 48.83680473475904], [2.351920248226039, 48.836819147320426], [2.35204017907292, 48.83685682759754], [2.352223511061517, 48.836915371079044], [2.352407536433474, 48.836973186842876], [2.352590869232643, 48.83703173065456], [2.352774895422865, 48.83708954584718], [2.352958229055147, 48.837148088190446], [2.353142256063628, 48.83720590281189], [2.3533255905176462, 48.837264444586005], [2.35350961833323, 48.837322259535604], [2.353692953609186, 48.83738080074057], [2.353876980891819, 48.8374386142123], [2.354060318351869, 48.83749715485548], [2.354244346452749, 48.837554967756056], [2.354380263371579, 48.83759836647455], [2.354402235353492, 48.83760969566561], [2.354411962752887, 48.83761082650654], [2.354459382774218, 48.837625967841994], [2.354631255554059, 48.83768118461866], [2.354814593352148, 48.83773972408572], [2.354986466894496, 48.83779493944712], [2.355169805491624, 48.83785347836382], [2.3552629315512, 48.83788339591539], [2.355284993199261, 48.8378818833761], [2.355295524500348, 48.83782815984888], [2.355365548776683, 48.83776457073077], [2.35542651866521, 48.83769983645089], [2.355428314219591, 48.83769334730691], [2.355390677002573, 48.837567419390155], [2.355352205137911, 48.837440913152435], [2.35531456692468, 48.83731498517595], [2.35527609543115, 48.83718847888523], [2.355238458946419, 48.837062550863706], [2.3551999878239123, 48.836936044519945], [2.355162350354095, 48.836810115539386], [2.355123879591384, 48.83668361004191], [2.355086243850045, 48.83655768101632], [2.355047773469574, 48.836431174566485], [2.355010136720899, 48.83630524638047], [2.35497166671144, 48.83617873987762], [2.3549340303288933, 48.83605281163926], [2.354895560690439, 48.835926305083376], [2.35489554894409, 48.83591008132773], [2.354881999111133, 48.83590321622437], [2.354748024590425, 48.83580426193363], [2.354616587377295, 48.83570838531789], [2.354482615212257, 48.83560943161929], [2.354351178989698, 48.835513553795906], [2.354219743239609, 48.83541767671915], [2.354085772575067, 48.83531872255037], [2.353954337815442, 48.83522284426602], [2.353820366793263, 48.83512388977538], [2.35368893301306, 48.83502801118266], [2.353554964357737, 48.83492905638486], [2.353552664262802, 48.83491942340854], [2.353634737371573, 48.834797014107814], [2.353714895163955, 48.834675989311236], [2.3537969674973382, 48.83455358077183], [2.353877124538843, 48.83443255584028], [2.353959196119147, 48.83431014626362], [2.354039352409578, 48.834189121197014], [2.354121424587937, 48.83406671148977], [2.354201578765132, 48.83394568628075], [2.354283650179275, 48.83382327643559], [2.354363804967789, 48.83370225109887], [2.354443958010819, 48.83358122658735], [2.354526028282, 48.833458816536016], [2.35460618194739, 48.83333779099749], [2.354688250092126, 48.833215380800894], [2.354768403006589, 48.83309435512735], [2.354850470387151, 48.8329719447928], [2.354930622550697, 48.832850918984256], [2.355012689155968, 48.832728509411126], [2.355013429725179, 48.83272756097174], [2.355097963621795, 48.832633517280776], [2.355219191031966, 48.83249859440271], [2.355303724186092, 48.83240455054705], [2.355424950520136, 48.83226962833212], [2.35550948293178, 48.83217558431183], [2.355511334613026, 48.83217181153719], [2.355531556792202, 48.83202545170347], [2.355554182330923, 48.8318710149574], [2.355574404273118, 48.83172465507717], [2.355597029554355, 48.831570218281534], [2.35565310367796, 48.83151940193887], [2.355624066766794, 48.83150452549416], [2.3555863607667, 48.83148520800616]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 83, "zemmour_eric": 79.0, "hidalgo_anne": 42.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "13-1", "circ_bv": "09", "num_bureau": 1, "roussel_fabien": 32.0, "nb_emargement": 1366.0, "nb_procuration": 73.0, "nb_vote_blanc": 11.0, "jadot_yannick": 132.0, "le_pen_marine": 58.0, "nb_exprime": 1348.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1686.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1365, "quartier_bv": "49", "geo_point_2d": [48.835903434754314, 2.353883776582259], "melenchon_jean_luc": 400.0, "poutou_philippe": 6.0, "macron_emmanuel": 479.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.38444273502644, 48.87059886399937], [2.384469871308765, 48.87059598537509], [2.384679086423589, 48.87058755328262], [2.384886805230846, 48.870578488096164], [2.3850960202078992, 48.87057005527485], [2.385303738872916, 48.87056098936474], [2.385511457465526, 48.87055192309412], [2.38572067223475, 48.87054348918078], [2.385928390685003, 48.870534422186445], [2.386137605305827, 48.87052598844355], [2.386142790006715, 48.870526442218285], [2.386328270784766, 48.8705676719047], [2.3865127171008362, 48.87060867116445], [2.386698198464484, 48.870649900274564], [2.386882646715533, 48.87069089986752], [2.387067093904381, 48.87073189826847], [2.3872525761455, 48.87077312651493], [2.387437023916669, 48.870814124342786], [2.387622506732901, 48.87085535291223], [2.387806956449526, 48.870896350173965], [2.387992439861913, 48.87093757726781], [2.388176888797605, 48.870978573949465], [2.388362372795567, 48.871019800467025], [2.3883694063225662, 48.871023378892545], [2.388437251443425, 48.87107699772692], [2.388548573975687, 48.87118856340742], [2.3886366599591913, 48.87128184100686], [2.388747983356433, 48.87139340648124], [2.388836071406584, 48.87148668392358], [2.388947395668616, 48.87159824919183], [2.389035483059113, 48.87169152646315], [2.389040037346827, 48.871694480643676], [2.389174475786842, 48.87174772752934], [2.389316739109578, 48.87180407192209], [2.389327669177189, 48.871804976657685], [2.389550065189746, 48.87176103007102], [2.389775389204195, 48.87171650443698], [2.389997784461274, 48.871672557015025], [2.390223109083981, 48.87162802964227], [2.390239539261965, 48.871633083968476], [2.39027543211678, 48.87168799227005], [2.390311604996339, 48.8717433264704], [2.390328478025088, 48.87174828770976], [2.390512133240536, 48.87170744886686], [2.390684272412848, 48.871666358663326], [2.390856409960933, 48.871625267304545], [2.391040065681365, 48.87158442855333], [2.39121220267802, 48.87154333667982], [2.391395856467472, 48.871502497372745], [2.39140631245105, 48.871495551906705], [2.391401517783687, 48.87147757319411], [2.391399796823617, 48.87147632875693], [2.391231609725357, 48.8713755752994], [2.391066332373453, 48.87127635537385], [2.39089814521314, 48.871175600523344], [2.3907328691310332, 48.871076380119376], [2.39056468325089, 48.87097562568138], [2.39039940844889, 48.870876403899686], [2.390395042088778, 48.870870787791624], [2.39036964591403, 48.87072616839986], [2.390344371667386, 48.87058372330004], [2.390319097548446, 48.870441279075834], [2.390293701804577, 48.87029665871243], [2.390268427963479, 48.87015421444052], [2.3902430311263902, 48.87000959492115], [2.390217757573662, 48.86986714970223], [2.39019236238052, 48.86972253014151], [2.390195923915909, 48.86971536887871], [2.39029975047353, 48.869641760946024], [2.39040984949442, 48.86956241291931], [2.390513675444883, 48.86948880479089], [2.390623773806105, 48.86940945745572], [2.390623689252818, 48.86939967133618], [2.390610646315029, 48.86939121771211], [2.390392558065693, 48.86937810820771], [2.39018324630137, 48.869365489091756], [2.389965158267317, 48.86935237880829], [2.38975584669949, 48.86933975984392], [2.389537758891267, 48.869326647882176], [2.389328447530269, 48.8693140281701], [2.389119134918137, 48.86930140718563], [2.388901048783409, 48.86928829496954], [2.388888011522952, 48.869292746678], [2.3887985686569673, 48.86939471372736], [2.388709706780471, 48.86949604963662], [2.388620261863824, 48.869598015627744], [2.388531400646297, 48.86969935229223], [2.388441955031432, 48.869801318131344], [2.388353091757101, 48.86990265463788], [2.3883423826607473, 48.86990711548451], [2.388152170786206, 48.86991718268065], [2.38796240473962, 48.86992712414863], [2.387772192718583, 48.86993719074078], [2.387582427889709, 48.86994713161313], [2.387392215722286, 48.869957197601245], [2.387202450758595, 48.869967136971745], [2.3870122384341173, 48.86997720325514], [2.386822471961828, 48.86998714201608], [2.386632259501464, 48.86999720679617], [2.386442494236431, 48.870007145860775], [2.386252281629606, 48.87001721003687], [2.386062516219204, 48.87002714849887], [2.385872303465825, 48.87003721207092], [2.385682536546946, 48.87004714992335], [2.385492323647124, 48.8700572128914], [2.385302557946111, 48.87006715014821], [2.385112344899854, 48.870077212512264], [2.384922579064014, 48.870087148267174], [2.384732365860815, 48.87009721092653], [2.384542598516426, 48.8701071460718], [2.384535164788854, 48.870109087289414], [2.3844626814061, 48.87014731591397], [2.384388017646582, 48.87018626893765], [2.384376304930164, 48.870187948014596], [2.3841549140924823, 48.87015202277034], [2.383938798828126, 48.87011695705341], [2.383722683844197, 48.87008189184441], [2.383501293908058, 48.87004596538781], [2.383499905288999, 48.87004568753498], [2.383351077446117, 48.87001010933416], [2.383158393664595, 48.86996539610635], [2.383145931289606, 48.8699718988435], [2.383159698757779, 48.86999955067619], [2.383247756547541, 48.870061068558805], [2.383390297439131, 48.8701609890656], [2.38350892414337, 48.87024386159542], [2.383651464683549, 48.8703437808684], [2.383770092219569, 48.87042665312566], [2.38391263511351, 48.87052657297742], [2.384031262118086, 48.87060944495512], [2.384041906252401, 48.870612250802175], [2.384230134748341, 48.87060556772553], [2.38443934992973, 48.87059713695146], [2.38444273502644, 48.87059886399937]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 27, "zemmour_eric": 39.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-72", "circ_bv": "06", "num_bureau": 72, "roussel_fabien": 27.0, "nb_emargement": 1287.0, "nb_procuration": 85.0, "nb_vote_blanc": 15.0, "jadot_yannick": 91.0, "le_pen_marine": 56.0, "nb_exprime": 1269.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 1, "nb_inscrit": 1716.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1288, "quartier_bv": "77", "geo_point_2d": [48.87049893702301, 2.3883122349631485], "melenchon_jean_luc": 749.0, "poutou_philippe": 15.0, "macron_emmanuel": 206.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.336693413753543, 48.839680198857884], [2.336604989845162, 48.839690551268845], [2.33653070769151, 48.83970996312339], [2.336484579465971, 48.83972588686731], [2.336480124877803, 48.839727218402835], [2.336459903701895, 48.83973838249176], [2.336328187571037, 48.83978384953527], [2.336150624057885, 48.83984198320243], [2.33597277885656, 48.83990337344521], [2.335795213188866, 48.839961505671724], [2.335617367149647, 48.84002289627888], [2.335439802040704, 48.84008102797913], [2.33526195382409, 48.84014241714444], [2.3350843879002072, 48.84020054921025], [2.334906540219594, 48.84026193784814], [2.334728972129703, 48.840320069372616], [2.334551123622661, 48.84038145747552], [2.334423196891541, 48.840423337036256], [2.334397694893718, 48.84043303690255], [2.334462144843922, 48.84051068070358], [2.334487510220407, 48.8405569260145], [2.334518195005112, 48.84061607533144], [2.334511616790946, 48.84062695883462], [2.334360300733326, 48.84067916512589], [2.334162760280596, 48.84074741944402], [2.334011443535327, 48.84079962438913], [2.333813903531665, 48.84086787813135], [2.333662586075768, 48.84092008352885], [2.333465045170227, 48.84098833578839], [2.333313727015196, 48.841040540738916], [2.333310770388981, 48.84104192097581], [2.3331797073350202, 48.84112063861429], [2.333039622926496, 48.84120656818392], [2.333035463236293, 48.84121465097221], [2.333064339651362, 48.84132770930261], [2.333094742546162, 48.84144116914654], [2.333091261937295, 48.84144888967934], [2.33293573694014, 48.84155828829869], [2.332782183247823, 48.84166680733238], [2.332626656951663, 48.84177620552853], [2.332473101973794, 48.8418847241443], [2.332469455721321, 48.841890367998076], [2.332457867578766, 48.842029169766526], [2.332447149578638, 48.84216524230386], [2.332435561315665, 48.842304044035984], [2.332424841838284, 48.84244011653025], [2.33241412367884, 48.842576188115245], [2.3324025352250253, 48.84271499069232], [2.332391816950919, 48.8428510622418], [2.332380228376477, 48.842989864782545], [2.332369509987604, 48.84312593629649], [2.3323579212927372, 48.843264738800876], [2.332357718592423, 48.84326588345912], [2.332323310715738, 48.84339052761602], [2.332290392932043, 48.84351020568663], [2.332255983382046, 48.84363484888995], [2.332223065278014, 48.843754527815136], [2.3322205999264902, 48.84376678946513], [2.332234570761769, 48.843773480468826], [2.332364881648895, 48.84383580157921], [2.332558347134027, 48.84392745599141], [2.332688657430875, 48.84398977673294], [2.332882124056967, 48.84408143060886], [2.3330124351259602, 48.84414375098909], [2.333076565762341, 48.84416327754586], [2.333090377509283, 48.84414600043364], [2.333172687127905, 48.84406070498705], [2.33327964189938, 48.84395080445157], [2.333388725231114, 48.84383776520352], [2.3334956791009223, 48.84372786355363], [2.333604761497477, 48.84361482408599], [2.333711714454325, 48.84350492222104], [2.333820794553197, 48.8433918825262], [2.333927746585402, 48.843281981345434], [2.334036827123124, 48.84316894053938], [2.334143778242395, 48.843059039143526], [2.334252856482464, 48.84294599811029], [2.334359806688709, 48.842836096499326], [2.3344688853560402, 48.84272305525411], [2.334575834649268, 48.84261315342806], [2.334684911007599, 48.84250011285503], [2.334791859399303, 48.84239020991462], [2.334898807328494, 48.842280307767076], [2.335007883663614, 48.84216726597411], [2.335114830679813, 48.84205736361148], [2.33522390470598, 48.84194432249071], [2.335330850820672, 48.841834419013686], [2.335439925274127, 48.84172137768095], [2.335546870475842, 48.84161147398889], [2.335655942631852, 48.841498432429006], [2.335762886920605, 48.84138852852192], [2.335871959503913, 48.841275486750106], [2.335978902868254, 48.8411655835272], [2.3360879745280583, 48.841052540636554], [2.336194916979458, 48.84094263719861], [2.336294907745327, 48.84085870653312], [2.3362990079796813, 48.84085599970829], [2.336413482374326, 48.84080136158546], [2.336632667075794, 48.840708429891315], [2.336653818341145, 48.84070214999632], [2.336709211037169, 48.84069512012815], [2.336798628994606, 48.840677022419484], [2.3367922196362843, 48.84062895087441], [2.336783137887378, 48.84051485377439], [2.336773670797145, 48.84036958161001], [2.336764589133936, 48.84025548448207], [2.3367551221425122, 48.84011021228255], [2.336746041927525, 48.83999611513425], [2.336736573672481, 48.83985084289197], [2.336727493543385, 48.83973674571574], [2.336693413753543, 48.839680198857884]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 109, "zemmour_eric": 118.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "6-22", "circ_bv": "11", "num_bureau": 22, "roussel_fabien": 14.0, "nb_emargement": 1126.0, "nb_procuration": 97.0, "nb_vote_blanc": 5.0, "jadot_yannick": 86.0, "le_pen_marine": 34.0, "nb_exprime": 1120.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 1336.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "23", "geo_point_2d": [48.841803028477756, 2.3342427901981333], "melenchon_jean_luc": 185.0, "poutou_philippe": 4.0, "macron_emmanuel": 541.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.372450360997428, 48.84015615094252], [2.372398028480192, 48.84017462090516], [2.372317175499257, 48.84023488746511], [2.37218831964833, 48.840329571570585], [2.372054302043385, 48.840429467221796], [2.37192544522304, 48.84052415192688], [2.371791425251506, 48.84062404725907], [2.371662567483405, 48.84071873076524], [2.371528547870169, 48.84081862579261], [2.371399689143472, 48.8409133089991], [2.371265667163624, 48.841013203707405], [2.371136807467468, 48.84110788751351], [2.37100278584591, 48.841207781917106], [2.37087392520199, 48.84130246452423], [2.370739901213792, 48.841402358608704], [2.37061103961125, 48.841497040916174], [2.370477015981337, 48.841596934695865], [2.370348153409302, 48.84169161760293], [2.3702141287752, 48.841791511070745], [2.37008526389291, 48.84188619277166], [2.369951238254609, 48.84198608592749], [2.369822373776154, 48.8420807673359], [2.369688347133648, 48.842180660179785], [2.369559480323172, 48.84227534218059], [2.369425452676448, 48.84237523471258], [2.369296586280575, 48.842469915521576], [2.3691677194057172, 48.84256459708301], [2.369033690275191, 48.84266448825088], [2.368904821079154, 48.84275916950545], [2.368770790933505, 48.842859061260604], [2.368637282531716, 48.84296083257877], [2.368503251354697, 48.84306072401614], [2.368369741914007, 48.84316249501732], [2.368235709705607, 48.8432623861369], [2.3681021992258042, 48.8433641568211], [2.367968165986018, 48.84346404762288], [2.367834654467194, 48.84356581799006], [2.367700618833482, 48.84366570846687], [2.367567107627241, 48.843767479423605], [2.367433070973032, 48.84386736868326], [2.367299557365218, 48.84396913931579], [2.36716552104213, 48.84406902826485], [2.367032006395263, 48.84417079858038], [2.36689796902983, 48.844270688110896], [2.366764453354927, 48.844372457210156], [2.366630414958061, 48.844472346422855], [2.366496376058325, 48.844572234577136], [2.366362858815685, 48.84467400409997], [2.366228817511015, 48.84477389282851], [2.366095300602782, 48.844875661142254], [2.366023035887259, 48.844926576768316], [2.366026786559822, 48.84493895024383], [2.365893267471665, 48.8450407183098], [2.36576102052608, 48.84514036148326], [2.36562750175458, 48.84524213014073], [2.36549525378968, 48.845341773002424], [2.365361733994159, 48.84544354044564], [2.365229485010039, 48.84554318299551], [2.365095964179543, 48.84564495012375], [2.364963714176194, 48.845744592361804], [2.364830190937171, 48.845846360067135], [2.364697941277165, 48.84594600200064], [2.364564417014104, 48.84604776849162], [2.364492530632786, 48.84610193095058], [2.364459463410004, 48.846128386198444], [2.36450648016751, 48.8461703167227], [2.364649446292286, 48.846255911632156], [2.364799199975114, 48.8463448871132], [2.3649421656969523, 48.84643048165223], [2.365091921743764, 48.846519456760134], [2.365234888425261, 48.846605050936], [2.365384644110966, 48.84669402565633], [2.365527613114736, 48.846779619476195], [2.365677369790791, 48.84686859471547], [2.365820338402571, 48.846954187265595], [2.365970096080033, 48.84704316212453], [2.365970451815795, 48.8470433798556], [2.366113421377489, 48.847128972941384], [2.366240762394423, 48.84721022819984], [2.366383732868739, 48.84729582005045], [2.366511074714928, 48.84737707500907], [2.366514660334797, 48.8473809666273], [2.366573680669043, 48.84751138553647], [2.36662950238438, 48.84763546858354], [2.366685324365538, 48.847759551590784], [2.366744345555643, 48.84788997037144], [2.366800169445497, 48.848014053303935], [2.366859191222074, 48.84814447109887], [2.366874901426411, 48.84817939171452], [2.366884943737877, 48.84818742574707], [2.366941183361826, 48.84818266356005], [2.367091847418281, 48.84813305173371], [2.367303998845033, 48.84806674726748], [2.367454662221066, 48.84801713497909], [2.367666814087864, 48.8479508289705], [2.367817476783268, 48.847901216220066], [2.367824887931678, 48.84789441217467], [2.367855472760549, 48.847749803412164], [2.367885278584227, 48.847604131964914], [2.367915863085968, 48.847459522249935], [2.3679456685748193, 48.84731385074968], [2.367976252727723, 48.84716924188093], [2.368006057892662, 48.84702356942835], [2.368016799428745, 48.847015966342724], [2.368206555960309, 48.846990044502306], [2.3683937069553043, 48.84696422732114], [2.368583461748492, 48.8469383048745], [2.368770612370963, 48.84691248710261], [2.3689603681507903, 48.846886564064164], [2.369147518400832, 48.846860745701484], [2.369337272442168, 48.84683482205687], [2.369524422319572, 48.846809003103374], [2.369531435564856, 48.846806448113604], [2.369603651905782, 48.84675709598514], [2.3697029617851992, 48.84668433327806], [2.369739275253223, 48.84668323220825], [2.369752477071936, 48.84664839229158], [2.369795250034707, 48.84661705285602], [2.369916751176476, 48.846528671696106], [2.370058834192249, 48.84642456918619], [2.370180334427388, 48.84633618864259], [2.370322416391873, 48.846232085801674], [2.370443914368775, 48.846143704967965], [2.370585995281983, 48.846039601796015], [2.370707493736496, 48.84595121978728], [2.370849573598431, 48.84584711628435], [2.37097107114635, 48.84575873489193], [2.371113149957023, 48.845654631058025], [2.371234646609215, 48.84556624938267], [2.371247154426547, 48.84556341378907], [2.371444596875958, 48.84558657371503], [2.371641692078348, 48.84560950305288], [2.371839133515115, 48.8456326623196], [2.372036229065383, 48.84565559100652], [2.372233672214655, 48.845678749628284], [2.372430768112796, 48.84570167766432], [2.372628211611984, 48.84572483563401], [2.372825306495506, 48.845747763011936], [2.373022750344501, 48.84577092032957], [2.373219846938458, 48.84579384706374], [2.373417291137352, 48.84581700372927], [2.37361438671657, 48.845839929805386], [2.373811831265455, 48.84586308581879], [2.3740089285549892, 48.845886011251146], [2.374062998575882, 48.845892352232035], [2.374081099688326, 48.84590508471161], [2.374108850815545, 48.84590331696402], [2.374252225738379, 48.84592013128938], [2.374399843347833, 48.8459245169193], [2.374409772068965, 48.84592209470479], [2.374562243663564, 48.84582779380453], [2.374717053624445, 48.84573026094267], [2.374869524101701, 48.845635959634656], [2.375024331544423, 48.84553842725052], [2.375176800915231, 48.84544412463536], [2.375331608575541, 48.84534659184399], [2.375334400525028, 48.84534523490081], [2.375382081203287, 48.845339031857364], [2.375386717887349, 48.8453326949054], [2.375571577950039, 48.845264932764195], [2.375746793752262, 48.84519845915682], [2.375931652870535, 48.845130696451086], [2.376106866388856, 48.84506422320051], [2.376291724573683, 48.84499645903098], [2.376466937181445, 48.84492998524506], [2.376651794421951, 48.84486222051099], [2.376827007481709, 48.84479574619687], [2.377002218742697, 48.84472927071576], [2.377187074564428, 48.84466150604171], [2.377362286277404, 48.84459503003233], [2.377547141154919, 48.84452726479376], [2.377722350584035, 48.84446078914129], [2.377907204527871, 48.844393022438894], [2.377924501539682, 48.84439530052217], [2.378049652612259, 48.84449958252239], [2.3781752478941662, 48.844606304849016], [2.37819429971273, 48.8446079246895], [2.3783400855935612, 48.84453414620343], [2.378505825161473, 48.84444836673126], [2.378651608792429, 48.84437458784792], [2.378817348702736, 48.844288807939], [2.378963131446371, 48.844215028665516], [2.379128868973989, 48.84412924830562], [2.379274652192847, 48.84405546864907], [2.379440388700324, 48.843969687845345], [2.379586169669329, 48.843895907791556], [2.379751905156772, 48.843810126544014], [2.379897686600898, 48.84373634610711], [2.379938742829772, 48.84369087866849], [2.37993252232595, 48.84368483241267], [2.3798761024858432, 48.84366357050956], [2.379818591051261, 48.843642096967024], [2.379813384725685, 48.84363693373674], [2.379783202776344, 48.84362576461216], [2.379667789426432, 48.843582671484874], [2.379489572152148, 48.8435158718613], [2.379316649644365, 48.84345130376671], [2.379138431896211, 48.84338450450444], [2.378965510259309, 48.843319935894705], [2.37878729478365, 48.843253135209224], [2.378614374017528, 48.84318856608436], [2.378444511639508, 48.84311311415362], [2.378443356492609, 48.843112630591854], [2.378285214403582, 48.84303886626333], [2.378115351638199, 48.84296341294875], [2.377957210466064, 48.842889648176744], [2.377787350013629, 48.84281419529271], [2.377629208406819, 48.8427404291709], [2.377459348915448, 48.84266497581106], [2.377301209577392, 48.842591210152165], [2.377131349695532, 48.84251575541012], [2.376973211274462, 48.84244198930779], [2.376803353716166, 48.84236653409706], [2.376645214849587, 48.842292767544215], [2.376475358252457, 48.842217311857695], [2.376317220302862, 48.8421435448614], [2.376316773261495, 48.84214332758351], [2.376157892657049, 48.84206220422367], [2.375999200062327, 48.8419815789716], [2.375840320445247, 48.84190045517823], [2.375681628834268, 48.84181982949316], [2.375522748842071, 48.84173870525917], [2.375364058204159, 48.841658080040446], [2.375205180572475, 48.84157695448074], [2.375046490918292, 48.841496328829145], [2.374887612900812, 48.84141520372807], [2.374728924241044, 48.8413345767442], [2.374570048573382, 48.841253451216765], [2.374411360897344, 48.84117282379995], [2.374252484854566, 48.841091697831885], [2.374093798151453, 48.84101107088145], [2.373934924458475, 48.840929944487016], [2.373776238749879, 48.84084931620435], [2.373617366044238, 48.840768189376405], [2.373458681319359, 48.840687560660776], [2.373299808238602, 48.84060643339226], [2.373141124486723, 48.840525805143045], [2.372982253755639, 48.84044467744814], [2.372823570998281, 48.84036404786667], [2.372664699892184, 48.840282919731166], [2.37250601811843, 48.840202289716814], [2.372450360997428, 48.84015615094252]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 61, "zemmour_eric": 67.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "12-51", "circ_bv": "07", "num_bureau": 51, "roussel_fabien": 19.0, "nb_emargement": 1172.0, "nb_procuration": 59.0, "nb_vote_blanc": 14.0, "jadot_yannick": 69.0, "le_pen_marine": 62.0, "nb_exprime": 1155.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1533.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1175, "quartier_bv": "48", "geo_point_2d": [48.84407178349361, 2.3717826965723687], "melenchon_jean_luc": 426.0, "poutou_philippe": 3.0, "macron_emmanuel": 382.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.368461751970471, 48.82729287911847], [2.368468168675353, 48.82729628925085], [2.3685974137741272, 48.827314142524976], [2.368795855987361, 48.82734152011755], [2.368993890025143, 48.82736887543918], [2.3691923326548032, 48.82739625237256], [2.369390365746511, 48.827423607029175], [2.36958881015479, 48.82745098331051], [2.369786843662315, 48.82747833730928], [2.369985288487206, 48.82750571293139], [2.370183322421502, 48.82753306537296], [2.370381766289926, 48.82756044122804], [2.37057980200222, 48.82758779301893], [2.370712738236183, 48.827606131095166], [2.370720949438279, 48.82761143203525], [2.370751893249731, 48.82761024219677], [2.37081740267475, 48.82761927930205], [2.370996779787348, 48.82763872927508], [2.371195224485096, 48.82766610377779], [2.371273968129024, 48.827674641811555], [2.371299582513622, 48.8276764412086], [2.371305588903471, 48.82765832074452], [2.371320696278731, 48.82752868272711], [2.371333924331046, 48.8274015980269], [2.371347152329614, 48.82727451241154], [2.371362259490307, 48.827144874344555], [2.37136283855622, 48.82714282861641], [2.371422748329056, 48.82701522027597], [2.371482946560877, 48.826887161923096], [2.371542855745946, 48.8267595534934], [2.371603054749635, 48.82663149505806], [2.371662963346941, 48.82650388653911], [2.371723161760311, 48.82637582801419], [2.371783069769864, 48.826248219406025], [2.371843266231057, 48.82612016078427], [2.371903175014934, 48.825992552094], [2.371963370885934, 48.82586449338264], [2.371962130797866, 48.82584983966327], [2.371942282793857, 48.82584490488796], [2.371839627575381, 48.82577018263569], [2.371742797737501, 48.82570117044121], [2.371738773287563, 48.82569919765645], [2.371551619339992, 48.82563896170798], [2.371364699860048, 48.825578633158706], [2.371177546788293, 48.825518395719044], [2.370990628173341, 48.82545806657861], [2.370803475955713, 48.82539782944638], [2.370616558216811, 48.82533749881548], [2.37042940686416, 48.8252772610914], [2.370242489979398, 48.82521693076868], [2.370055338140546, 48.825156691546226], [2.369868422120987, 48.82509636063236], [2.369847607240984, 48.82508953172146], [2.369833658254481, 48.82509987207954], [2.369817727497688, 48.825124741287226], [2.369803182070461, 48.82514757531244], [2.369796399661278, 48.82515223520655], [2.369685708684805, 48.82518643425323], [2.369573452627366, 48.825219946817924], [2.369566227936175, 48.82522513409898], [2.369497376946676, 48.8253532378076], [2.369429076392067, 48.82548040092211], [2.369360226090533, 48.82560850452979], [2.369291924867005, 48.82573566753708], [2.369223072540202, 48.82586377013019], [2.369154770647744, 48.82599093303022], [2.369085918998023, 48.826119036421694], [2.369017616436525, 48.82624619921448], [2.3689487627506223, 48.82637430249072], [2.368880459520275, 48.82650146517621], [2.368812155956737, 48.8266286278083], [2.368743302623023, 48.82675673092979], [2.368674998390524, 48.82688389345463], [2.368606143020588, 48.827011996460776], [2.368537838119114, 48.82713915887838], [2.368468983437126, 48.82726726178362], [2.368461751970471, 48.82729287911847]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 42, "zemmour_eric": 70.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-68", "circ_bv": "09", "num_bureau": 68, "roussel_fabien": 21.0, "nb_emargement": 1272.0, "nb_procuration": 68.0, "nb_vote_blanc": 12.0, "jadot_yannick": 119.0, "le_pen_marine": 62.0, "nb_exprime": 1255.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1591.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1273, "quartier_bv": "50", "geo_point_2d": [48.826458196499544, 2.370272880139566], "melenchon_jean_luc": 498.0, "poutou_philippe": 14.0, "macron_emmanuel": 356.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3855371860379613, 48.84304200642837], [2.3855190400468063, 48.84305176660037], [2.385431103764056, 48.84313507488742], [2.385329396373332, 48.84323957859032], [2.385328567751311, 48.84324028662506], [2.385294548212197, 48.8432665170027], [2.385277546851168, 48.8432699074629], [2.385264495468792, 48.84328416808427], [2.385211458426132, 48.8433250618896], [2.385095023022655, 48.84342116972206], [2.385007967231409, 48.843488294644466], [2.384891531088015, 48.843584402264845], [2.38476218160694, 48.84369560114633], [2.384645745909599, 48.843791708516626], [2.384516395389611, 48.84390290711169], [2.384399957413454, 48.843999014217935], [2.384270605854543, 48.844110212526566], [2.384154168313806, 48.84420632028201], [2.384024815726587, 48.844317517404924], [2.383908375907004, 48.84441362489628], [2.383779022270211, 48.844524822632074], [2.383662582907397, 48.844620928974045], [2.383533228231652, 48.84473212642341], [2.383416786589765, 48.84482823250126], [2.383375269106144, 48.84487313390191], [2.383402619847566, 48.84489488194271], [2.383406699303316, 48.84489812626655], [2.383475949627302, 48.84489992123573], [2.383648277863918, 48.84499195459954], [2.383824614594745, 48.84508072659433], [2.383996944044919, 48.84517275944096], [2.384173280618928, 48.845261530900395], [2.384345611271939, 48.84535356412921], [2.384521949062219, 48.84544233416103], [2.3845499163270523, 48.84543928801861], [2.3845628840747, 48.845424325570036], [2.384592475704535, 48.84530472207428], [2.384630607870482, 48.84516690913087], [2.384660199209355, 48.84504730469139], [2.38469833235972, 48.84490949260092], [2.384727923397114, 48.84478988811709], [2.384766054817495, 48.84465207596617], [2.384795645553317, 48.84453247143797], [2.384833776606285, 48.84439465923369], [2.38486336840298, 48.84427505466814], [2.384901499088639, 48.844137242410426], [2.384931089221223, 48.844017637793506], [2.384969219539378, 48.84387982548244], [2.384998810733035, 48.84376022082817], [2.385000977335971, 48.84375674964991], [2.385108861783702, 48.843652927352636], [2.385219484853825, 48.8435458489561], [2.385327368429615, 48.84344202644211], [2.385437989240748, 48.84333494781631], [2.385545873307227, 48.84323112509266], [2.385656493221702, 48.84312404624456], [2.385654548316573, 48.84311241473952], [2.385611097617236, 48.843085563372874], [2.38557849094932, 48.84306582405662], [2.3855371860379613, 48.84304200642837]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 60, "zemmour_eric": 91.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-11", "circ_bv": "08", "num_bureau": 11, "roussel_fabien": 27.0, "nb_emargement": 1042.0, "nb_procuration": 71.0, "nb_vote_blanc": 13.0, "jadot_yannick": 96.0, "le_pen_marine": 77.0, "nb_exprime": 1026.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 7, "nb_inscrit": 1318.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1042, "quartier_bv": "46", "geo_point_2d": [48.844478048250785, 2.3844207734210774], "melenchon_jean_luc": 316.0, "poutou_philippe": 7.0, "macron_emmanuel": 298.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.300364069315359, 48.88836044878199], [2.300355202595591, 48.888348332456275], [2.300196983535855, 48.888258016212085], [2.300039793583916, 48.88816828763103], [2.299881574254632, 48.88807797094729], [2.299724385377511, 48.8879882428367], [2.299566167142458, 48.887897925721425], [2.299408979364434, 48.887808196282805], [2.299250762223405, 48.887717878735934], [2.299093575532483, 48.88762814886861], [2.298935359485573, 48.887537830890174], [2.298778175233096, 48.88744810150132], [2.298619960280293, 48.88735778309134], [2.298462775763348, 48.887268052366494], [2.298458844812347, 48.887264253941396], [2.298394883096112, 48.887145089168136], [2.298331334109302, 48.88702669029732], [2.298267371625138, 48.88690752452296], [2.298203823206054, 48.886789126458126], [2.298194469691643, 48.88677170014004], [2.298195186991492, 48.88677068989802], [2.298185094898884, 48.88675423412557], [2.298130486549368, 48.886652494569525], [2.298068155973341, 48.886536365360584], [2.298004196045123, 48.88641720029969], [2.29794186603248, 48.88630107100016], [2.297877906682266, 48.88618190584631], [2.297815577232795, 48.886065776456185], [2.297751618472809, 48.88594661031008], [2.297689289586605, 48.885830480829355], [2.297625331392482, 48.885711315489516], [2.297563003069538, 48.88559518591822], [2.297557294731523, 48.885590528058756], [2.297538435765742, 48.88558287381053], [2.29751032432952, 48.88557146361896], [2.297503948519504, 48.88556371892738], [2.297484059628983, 48.88556306533019], [2.2972881685642372, 48.88553133666981], [2.297053516253145, 48.88549332941098], [2.297012819835487, 48.88548673758465], [2.296990634090703, 48.88548702461185], [2.296985492019997, 48.88550083155761], [2.2968753521364302, 48.885617048631744], [2.296764619666402, 48.88573388984895], [2.296654478809215, 48.88585010579599], [2.296543746711538, 48.8859669467922], [2.296433604856328, 48.88608316341069], [2.296322871779629, 48.88620000327857], [2.296212728938532, 48.88631621966922], [2.296101993507119, 48.88643305930008], [2.296106155427506, 48.886445378539904], [2.296263040945713, 48.88651225237862], [2.29641995396914, 48.886579138757675], [2.296576840281077, 48.88664601307638], [2.296733754110633, 48.88671289903603], [2.296890641240702, 48.88677977203615], [2.297047555876383, 48.88684665757646], [2.297204443800398, 48.88691353105658], [2.297361359242109, 48.88698041617745], [2.297518247972115, 48.88704728923825], [2.297675165595741, 48.8871141730485], [2.297832055131738, 48.88718104568999], [2.297988972185716, 48.88724792997207], [2.297993026763032, 48.887260359122614], [2.297866416993099, 48.88738971222984], [2.297750664346026, 48.887507972664366], [2.2977408534743082, 48.8875120223693], [2.297573048161609, 48.88752548042234], [2.297407102213384, 48.88753878817077], [2.297239296728176, 48.887552245755735], [2.2970733506093612, 48.88756555304131], [2.297068405040275, 48.887566608601105], [2.296925628917362, 48.88761860154029], [2.29677504753302, 48.88767343801877], [2.296632270812033, 48.88772543150238], [2.296481687458409, 48.887780266699345], [2.296338911515263, 48.887832259836095], [2.2961883275316293, 48.88788709555808], [2.2961814583735762, 48.88789980140128], [2.296184958504341, 48.8879053978282], [2.296378484247091, 48.88795090102232], [2.29656381290298, 48.88799447524225], [2.29675733930785, 48.88803997782038], [2.296942668597799, 48.888083551450386], [2.296951184317214, 48.88809453281874], [2.296904151419944, 48.88820124464764], [2.296857398320219, 48.88830731956709], [2.296810365026408, 48.88841403223769], [2.296763611544574, 48.88852010709996], [2.296716576502665, 48.88862681970508], [2.296669824002412, 48.88873289451814], [2.296675165752103, 48.88874280234129], [2.29683221901619, 48.888814382430326], [2.296986606557318, 48.88888474694861], [2.29714366067766, 48.88895632661992], [2.297298047708937, 48.88902668982035], [2.297455104049234, 48.88909826908192], [2.2976094919100882, 48.889168632770925], [2.297763881551905, 48.88923899626436], [2.297920937821344, 48.88931057399384], [2.29807532830488, 48.88938093707661], [2.298232385418452, 48.88945251528758], [2.298386776743714, 48.889522877959685], [2.298543834725662, 48.88959445485365], [2.298698226892647, 48.889664817115104], [2.298855285718744, 48.88973639449055], [2.298875259517741, 48.88973298877246], [2.298885634452278, 48.88971918006328], [2.298904969379017, 48.889702854430936], [2.298925794789138, 48.88969990965068], [2.298928882759531, 48.88968732632707], [2.299048016296629, 48.88957672097366], [2.2991652710921002, 48.88946785908933], [2.299284403624945, 48.889357253478614], [2.299401656068393, 48.8892483913331], [2.299520787596997, 48.88913778546513], [2.299638040415648, 48.88902892307434], [2.299757170940122, 48.88891831694903], [2.299874421406682, 48.88880945429707], [2.299991671370991, 48.88870059241876], [2.300110800405119, 48.888589985009325], [2.300228050744649, 48.888481122885715], [2.300347178774567, 48.88837051521903], [2.300364069315359, 48.88836044878199]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 109, "zemmour_eric": 123.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "17-38", "circ_bv": "04", "num_bureau": 38, "roussel_fabien": 17.0, "nb_emargement": 1147.0, "nb_procuration": 47.0, "nb_vote_blanc": 13.0, "jadot_yannick": 33.0, "le_pen_marine": 102.0, "nb_exprime": 1129.0, "nb_vote_nul": 10.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1470.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1152, "quartier_bv": "66", "geo_point_2d": [48.887856742892986, 2.298065903256059], "melenchon_jean_luc": 327.0, "poutou_philippe": 7.0, "macron_emmanuel": 361.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.306409003172263, 48.87016285412039], [2.306433807784023, 48.870161560700424], [2.306505608663342, 48.87013839321541], [2.306690300451652, 48.87007859281699], [2.306866571412237, 48.87002171570311], [2.30705126100926, 48.86996191473353], [2.307227531180986, 48.86990503708204], [2.307412221313133, 48.86984523555708], [2.307588490695793, 48.86978835736807], [2.307773179999855, 48.86972855527982], [2.30794944859365, 48.869671676553196], [2.308134137069522, 48.86961187390172], [2.308310404874349, 48.86955499463757], [2.308486672294233, 48.86949811511087], [2.308671359537987, 48.86943831162109], [2.3088476261689, 48.86938143155684], [2.3090323125846632, 48.869321627503794], [2.309208578414576, 48.8692647478013], [2.309393264014168, 48.869204942285684], [2.309569529055213, 48.869148062045646], [2.3097542138266, 48.869088255966815], [2.309930478078673, 48.86903137518922], [2.310115162022056, 48.868971568547096], [2.310129592498877, 48.868972570852456], [2.310283128082511, 48.86905218346868], [2.310433925292143, 48.869129121639375], [2.310587461802418, 48.86920873385397], [2.310738261277926, 48.86928567163817], [2.310891798726541, 48.8693652825518], [2.311042597741651, 48.86944221993389], [2.311196136104915, 48.86952183134514], [2.311346937385815, 48.86959876834071], [2.31150047532442, 48.869678378443204], [2.311651277508019, 48.86975531504447], [2.311804817724388, 48.8698349256524], [2.311955619447592, 48.86991186185146], [2.311994758805409, 48.86992542590683], [2.312037645686316, 48.86990122374253], [2.312204582698057, 48.869847533577946], [2.312374658671825, 48.8697932487595], [2.312541593615104, 48.86973955901113], [2.312711668885231, 48.86968527370853], [2.312878603146991, 48.869631582585605], [2.313048677713269, 48.86957729679887], [2.313215612632975, 48.869523606107805], [2.313385685132312, 48.869469319829065], [2.31355261937048, 48.86941562776345], [2.313722692529362, 48.8693613410084], [2.31388962471094, 48.869307648459724], [2.314059697165968, 48.86925336122052], [2.314226630005496, 48.86919966910366], [2.314396700393687, 48.8691453813725], [2.314563632551655, 48.869091687881124], [2.314733703599173, 48.869037399673665], [2.3147402245411772, 48.86902565469305], [2.314675464716527, 48.86892945333424], [2.3146146067739872, 48.868854388192915], [2.314614305563427, 48.86884630135801], [2.314675806907171, 48.868765216040536], [2.314768326842989, 48.86863619961203], [2.31477030271522, 48.86863419099508], [2.314844800652209, 48.86855415217515], [2.314972870158722, 48.868455640699416], [2.315052536290728, 48.8684093468708], [2.315057708129514, 48.86840688258337], [2.315169524677196, 48.8683760534307], [2.315368697266738, 48.86832213136399], [2.315373526504309, 48.86832146109553], [2.315506876554321, 48.868316249435026], [2.31564556932361, 48.86831392809215], [2.315778919327121, 48.86830871612853], [2.31591761205252, 48.868306395369686], [2.315919944697959, 48.868306488743535], [2.316070530744927, 48.86831836179664], [2.316308204793589, 48.86834146314124], [2.316458791018349, 48.86835333660473], [2.316466284561084, 48.86835252142452], [2.316645156420774, 48.86829615020151], [2.316822879432729, 48.86823961746562], [2.317001750518949, 48.868183245703925], [2.317179474121777, 48.868126712440606], [2.317358344446208, 48.86807033924098], [2.317536067276839, 48.86801380544239], [2.317714935452752, 48.86795743259562], [2.317892657511292, 48.86790089826176], [2.318071526276682, 48.86784452488412], [2.318249247563025, 48.86778799001502], [2.318428114191684, 48.867731616090964], [2.318605834717594, 48.86767507978737], [2.318784701935817, 48.86761870533244], [2.318962421677759, 48.86756216939284], [2.319140141033947, 48.8675056331865], [2.319319007092135, 48.86744925792447], [2.319496724312978, 48.86739272117514], [2.319675589597581, 48.86733634537447], [2.319853307421099, 48.86727980719837], [2.320032171932108, 48.867223430859084], [2.320209888971673, 48.867166893047035], [2.320388751345955, 48.86711051616136], [2.320566467613311, 48.86705397781411], [2.320745330577133, 48.866997600397546], [2.320923046072275, 48.86694106151506], [2.32110190691109, 48.86688468265286], [2.321279621634015, 48.86682814323518], [2.321458483050638, 48.86677176474142], [2.321636197001345, 48.866715224788486], [2.321815057644364, 48.86665884575607], [2.321992769459732, 48.86660230526024], [2.32217162932925, 48.866545925689245], [2.322349341735414, 48.866489384665904], [2.322528200843021, 48.86643300365699], [2.322705912476958, 48.8663764620985], [2.322884769436145, 48.86632008144257], [2.323062480297958, 48.866263539348815], [2.323241337846547, 48.86620715816203], [2.323298353092091, 48.86618323506923], [2.323301952661925, 48.866172997479005], [2.323209372703416, 48.866053634385686], [2.323120089471796, 48.86593782787898], [2.323027508973127, 48.865818465511204], [2.322938226548935, 48.86570265884422], [2.322845648247877, 48.865583296318114], [2.322756366630997, 48.86546748949088], [2.322663789176233, 48.86534812589943], [2.322574508366656, 48.86523231891194], [2.32248193037181, 48.86511295604605], [2.322392650369428, 48.8649971488983], [2.322300074583946, 48.86487778497481], [2.322210795388846, 48.86476197766679], [2.322118220426236, 48.86464261447659], [2.322028942038512, 48.864526807008325], [2.321936366559, 48.86440744274509], [2.321847088978542, 48.86429163511656], [2.321754515685044, 48.86417227159434], [2.321665238911738, 48.86405646380559], [2.321572666452778, 48.86393710011732], [2.321483390486713, 48.86382129216832], [2.321390817510951, 48.86370192740711], [2.321301543715164, 48.86358611930558], [2.321208971562213, 48.863466755277585], [2.32111969721071, 48.863350947008115], [2.321030423256002, 48.86323513865995], [2.320937853722636, 48.86311577349289], [2.320897579145885, 48.863075951128465], [2.320854148799568, 48.863080900215735], [2.320670935801236, 48.86313656882067], [2.320484937837243, 48.863196502232405], [2.320301724037755, 48.86325217026633], [2.3201157252363043, 48.86331210309801], [2.319932510635762, 48.86336777056093], [2.319746510996854, 48.8634277028125], [2.319563295595264, 48.863483369704376], [2.319377295118902, 48.86354330137595], [2.319194078916262, 48.863598967696774], [2.31900807760245, 48.86365889878827], [2.318824860598867, 48.86371456453807], [2.318638858447503, 48.863774495049455], [2.318632490312877, 48.86377540400928], [2.318438091895043, 48.86377253256052], [2.3182413077210953, 48.863768851281755], [2.318046907986333, 48.863765979189864], [2.317850125227728, 48.863762297275606], [2.317655725527214, 48.86375942544755], [2.31745894146975, 48.863755741983084], [2.317264543178308, 48.86375286952738], [2.31706775917327, 48.86374918541969], [2.316873360927866, 48.86374631232857], [2.316676576975263, 48.86374262757766], [2.316482177412861, 48.86373975384335], [2.316285394863944, 48.86373606935629], [2.316090995359402, 48.863733194087246], [2.315894211499888, 48.86372950894922], [2.315699813404463, 48.863726633052565], [2.315503029597406, 48.86372294727129], [2.315308631548064, 48.86372007073926], [2.315111847793473, 48.86371638431475], [2.314917448415353, 48.863713508038785], [2.314720666088108, 48.86370982007959], [2.314526266756083, 48.863706943168246], [2.314329483118388, 48.86370325455803], [2.3141350851954092, 48.86370037701903], [2.313938301598375, 48.86369668866489], [2.313743903733351, 48.8636938095912], [2.3135471201888222, 48.86369012059387], [2.313352721006989, 48.86368724087694], [2.313155938877915, 48.86368355124422], [2.312961539742221, 48.86368067089186], [2.312764756302629, 48.863676980608105], [2.312570358576126, 48.86367409962819], [2.312373575189069, 48.86367040870121], [2.312179177496852, 48.86366752798514], [2.311982394174211, 48.86366383551568], [2.311787995165114, 48.86366095415641], [2.3115912132580743, 48.863657261051564], [2.311396814295149, 48.86365437905684], [2.311200031065748, 48.863650686200195], [2.311005633523934, 48.86364780267867], [2.310808850347104, 48.86364410917885], [2.310614452851488, 48.863641225021865], [2.31041766972724, 48.863637530878826], [2.310406032157752, 48.863633663172074], [2.310335820340431, 48.863645516720446], [2.310139037231642, 48.86364182121999], [2.309937541127487, 48.86363817916237], [2.309740758062754, 48.86363448390634], [2.309539262026743, 48.86363084027882], [2.309342479017984, 48.86362714436792], [2.309140983026294, 48.86362350096915], [2.308944200085445, 48.863619803504065], [2.308742704150005, 48.863616159434756], [2.308545922628197, 48.86361246132265], [2.308344425385874, 48.863608816574875], [2.308147643908134, 48.8636051187072], [2.307946148097167, 48.86360147239743], [2.307749365312401, 48.86359777386698], [2.30754786955772, 48.86359412688668], [2.3073510868289793, 48.86359042770131], [2.307149591118635, 48.863586780949746], [2.306952808457888, 48.86358308021024], [2.3067513128038453, 48.863579432788065], [2.306554530187179, 48.86357573229298], [2.306353034601417, 48.863572083300944], [2.306156253403842, 48.86356838215887], [2.305954756511371, 48.86356473248841], [2.305757975369861, 48.86356103069146], [2.305556479884677, 48.863557381257586], [2.30546943106729, 48.86355574293604], [2.305451234853161, 48.863555123807345], [2.305430440312914, 48.86356034886172], [2.30532070668576, 48.863558283788464], [2.305120020569476, 48.86355445664884], [2.304923238163067, 48.86355075347146], [2.304722553480032, 48.863546924773985], [2.304525771130432, 48.86354322094301], [2.304325085130581, 48.86353939247036], [2.304128302837592, 48.86353568798589], [2.303927616907987, 48.863531857947414], [2.3037308360347613, 48.863528152817324], [2.303530150151385, 48.863524323011646], [2.303333367971853, 48.863520617220054], [2.303132682158858, 48.86351678584856], [2.302935900036073, 48.86351307940344], [2.302735214269212, 48.86350924826474], [2.302538433566215, 48.863505541173986], [2.302337747869669, 48.86350170846949], [2.302140965860402, 48.86349800071724], [2.301940280210197, 48.86349416824552], [2.3017886510750962, 48.863491310549485], [2.301743498269755, 48.863490458940426], [2.301730742060196, 48.863471960420064], [2.301704073851147, 48.863491701150394], [2.3016141732220072, 48.86349090316266], [2.301602811254177, 48.86353790706394], [2.301594110201049, 48.86367844633903], [2.301584507904985, 48.863812084118976], [2.301574906922705, 48.86394572188996], [2.301566205738245, 48.86408626021201], [2.301556603295435, 48.864219897940494], [2.301547902015804, 48.864360436226434], [2.301573456972186, 48.864466982034614], [2.301581895793492, 48.86446894419811], [2.301572293320393, 48.86460258188168], [2.301562326245087, 48.86473931388112], [2.301552725035023, 48.864872951538445], [2.301542757856732, 48.86500968350288], [2.301533156558598, 48.86514332022671], [2.301523189277218, 48.865280052156116], [2.3015135878671, 48.86541368974504], [2.301503620482528, 48.86555042163943], [2.30149401897238, 48.86568405919414], [2.301484416049876, 48.86581769672395], [2.301474449886597, 48.865954427674666], [2.301464846864053, 48.8660880651703], [2.3014548792226233, 48.866224796977306], [2.301459688865042, 48.86623209358178], [2.301617024116873, 48.86631995625737], [2.301775504620306, 48.86640703217226], [2.301932842284105, 48.86649489532606], [2.302091323859675, 48.86658196990974], [2.302248661221482, 48.866669832626485], [2.302407143857136, 48.86675690677826], [2.302564483643089, 48.86684476907391], [2.302722965975712, 48.866931842785725], [2.302723057992647, 48.86693189368529], [2.302880398839841, 48.86701975555175], [2.303039178038826, 48.867108561797785], [2.303196519952893, 48.86719642323467], [2.303355301592398, 48.86728522905509], [2.303512643222132, 48.86737308915517], [2.303671425939027, 48.867461894542075], [2.303828768623513, 48.867549755111796], [2.303987552417706, 48.86763856006511], [2.304144896168979, 48.867726420205265], [2.304303681052689, 48.86781522382576], [2.3044610272339, 48.86790308354417], [2.304619811819858, 48.86799188762244], [2.304620563079033, 48.868005154650376], [2.304462955241903, 48.86810755578724], [2.304306969529815, 48.86821032857583], [2.304149360467487, 48.86831272838145], [2.303993373522236, 48.8684155007423], [2.303835763210675, 48.86851790101522], [2.303679775032454, 48.86862067294834], [2.303680677346604, 48.868633942653474], [2.303831188819415, 48.86871676030244], [2.303980455628564, 48.86879900212861], [2.304130968054888, 48.86888181938828], [2.304280234447218, 48.868964060820424], [2.30443074919024, 48.86904687769864], [2.304580016528726, 48.86912911874468], [2.304730532225275, 48.869211935233565], [2.304879800510024, 48.86929417589343], [2.305030317160105, 48.86937699199301], [2.305179586391223, 48.86945923226674], [2.305330103994842, 48.86954204797696], [2.30547937417213, 48.86962428786456], [2.305629892729291, 48.86970710318544], [2.305779163852857, 48.869789342686914], [2.305929682000361, 48.86987215761051], [2.306078955433513, 48.86995439673371], [2.306229474534562, 48.870037211267935], [2.306378748913903, 48.87011945000503], [2.306409003172263, 48.87016285412039]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 53, "zemmour_eric": 112.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "8-17", "circ_bv": "01", "num_bureau": 17, "roussel_fabien": 0.0, "nb_emargement": 649.0, "nb_procuration": 31.0, "nb_vote_blanc": 6.0, "jadot_yannick": 24.0, "le_pen_marine": 55.0, "nb_exprime": 642.0, "nb_vote_nul": 1.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 913.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 649, "quartier_bv": "29", "geo_point_2d": [48.86620020357731, 2.3114893618906938], "melenchon_jean_luc": 72.0, "poutou_philippe": 3.0, "macron_emmanuel": 308.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.301488231655742, 48.84786220089448], [2.301429119798029, 48.84790226954194], [2.301226881378428, 48.8479135357035], [2.301027699954985, 48.84792466109549], [2.300825461349647, 48.847935927477614], [2.300626278404469, 48.847947051293836], [2.300424039625462, 48.847958316997165], [2.300224856496852, 48.8479694410442], [2.300022617556262, 48.84798070516945], [2.299823435619029, 48.847991828555934], [2.2996211964928133, 48.84800309290175], [2.299422013021705, 48.84801421561175], [2.299219773733839, 48.8480254783795], [2.299020591454129, 48.84803660042895], [2.299003179984042, 48.848040353084265], [2.299000232279701, 48.84805181168832], [2.2989243918537188, 48.84818267163055], [2.298852563751057, 48.84830810038845], [2.298780736653175, 48.84843352999647], [2.298704893757962, 48.848564389746734], [2.298697879933326, 48.848569340997486], [2.298535617598592, 48.84861880534351], [2.298330764379563, 48.848681408507076], [2.29816850133532, 48.8487308732495], [2.297963645884106, 48.84879347487095], [2.297801382142462, 48.84884293911048], [2.297801101591845, 48.84884302740019], [2.297700752903678, 48.848875550236194], [2.29769917671274, 48.84887824356897], [2.297710599521177, 48.848894093536295], [2.297828516489628, 48.848990326730586], [2.297938121213912, 48.84908008237879], [2.298047726315751, 48.849169837919334], [2.298165643168033, 48.84926607074951], [2.298179766356614, 48.84926933284176], [2.298197053682985, 48.84925955385165], [2.298285366742898, 48.849215717090125], [2.2983864206175593, 48.84916616308396], [2.298404223851663, 48.84916704903035], [2.298535166025065, 48.84925420506267], [2.298661346119085, 48.8493384029054], [2.298792289153178, 48.849425558642956], [2.298918470077536, 48.8495097562016], [2.2990446513975398, 48.84959395452007], [2.29917559571473, 48.849681109818064], [2.299301777877178, 48.849765306953145], [2.299432723055073, 48.84985246195634], [2.29956366867087, 48.84993961680938], [2.299713934792115, 48.85003974276684], [2.299732910711734, 48.85003999143379], [2.299887338232708, 48.84994494318483], [2.300041708906137, 48.84985012823323], [2.300196136663816, 48.84975507957747], [2.300350506200894, 48.84966026511055], [2.300504931470139, 48.84956521603208], [2.300659299895027, 48.84947040025129], [2.300678398333392, 48.849470744818085], [2.30079988689508, 48.849553986601], [2.300912951539869, 48.849632231642026], [2.301026017874902, 48.84971047747793], [2.301147506200139, 48.84979371798272], [2.301151228549124, 48.84980098588175], [2.301127958530169, 48.84993436648011], [2.301104122875858, 48.850067643026115], [2.301080851242409, 48.8502010244747], [2.301057015357714, 48.85033430008008], [2.301033744847301, 48.850467681495516], [2.301009908708096, 48.850600957958875], [2.300986636607495, 48.85073433842592], [2.300962800225834, 48.85086761484796], [2.300966711350419, 48.85087503673964], [2.301084258185647, 48.850952398440796], [2.301187696147569, 48.85102124071395], [2.301269031993292, 48.851049981738754], [2.301273033008735, 48.85104724856389], [2.3013040791961368, 48.85102740020489], [2.30143939732523, 48.85093980116781], [2.3015849641980592, 48.85084673612623], [2.30172028137379, 48.85075913765659], [2.301865848603018, 48.85066607226612], [2.302001164849494, 48.85057847256525], [2.302146729709824, 48.85048540681005], [2.302282046377693, 48.85039780678526], [2.302427610231629, 48.85030474067318], [2.302562924583472, 48.85021714120787], [2.302708488793916, 48.850124074746915], [2.302843802216508, 48.850036474050476], [2.302989364057884, 48.84994340722477], [2.303124676539197, 48.849855806196445], [2.303270238736979, 48.849762739021855], [2.303405550265095, 48.84967513856093], [2.303551110093937, 48.849582071021615], [2.303686420692709, 48.849494469329564], [2.303750855612954, 48.849453271323334], [2.303758500733415, 48.849439699477216], [2.303694069328341, 48.84939262156355], [2.303557696148765, 48.84929851184306], [2.303418780367481, 48.84920064580752], [2.303282406824875, 48.849106535749065], [2.303143492084352, 48.849008668477715], [2.303007119541174, 48.848914558089284], [2.302868205817457, 48.84881669138075], [2.302731834273798, 48.84872258066228], [2.302592921578701, 48.84862471361725], [2.302456552397196, 48.84853060257676], [2.302317639380308, 48.848432734288], [2.302181271198305, 48.84833862291753], [2.302042360560724, 48.84824075519955], [2.301905992015576, 48.8481466434911], [2.301767082406589, 48.84804877543664], [2.301725201003935, 48.848019871905095], [2.301721469541685, 48.848015626717924], [2.301705004525965, 48.84800601805676], [2.301610518445502, 48.84794080863385], [2.30151106133171, 48.84787398003516], [2.301488231655742, 48.84786220089448]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 130, "zemmour_eric": 127.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "15-22", "circ_bv": "12", "num_bureau": 22, "roussel_fabien": 15.0, "nb_emargement": 1174.0, "nb_procuration": 76.0, "nb_vote_blanc": 4.0, "jadot_yannick": 69.0, "le_pen_marine": 49.0, "nb_exprime": 1168.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1462.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1174, "quartier_bv": "59", "geo_point_2d": [48.84916036552661, 2.3009131131939435], "melenchon_jean_luc": 165.0, "poutou_philippe": 2.0, "macron_emmanuel": 579.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.340137807950283, 48.895269928659], [2.340140911658806, 48.89526976319862], [2.3401756717390683, 48.89524200203611], [2.340296553871495, 48.89514546222247], [2.34042835913698, 48.895042694390824], [2.340549240338117, 48.89494615430459], [2.3406810432364082, 48.89484338616865], [2.340734989423991, 48.894829824626086], [2.34072660555379, 48.89480234018477], [2.340687274660138, 48.894674213204], [2.340646596028948, 48.89453642276072], [2.34060726553307, 48.89440829572265], [2.340566587321386, 48.894270505218756], [2.340527257223176, 48.89414237812327], [2.340486579430992, 48.89400458755874], [2.340447249730646, 48.89387646040594], [2.340406572357955, 48.893738669780824], [2.340367243055367, 48.89361054257061], [2.340326566102164, 48.89347275188488], [2.340287237197326, 48.89334462461735], [2.340246560674898, 48.893206832971735], [2.340221938747015, 48.893126618044604], [2.340206481863266, 48.89311617268613], [2.340159100737354, 48.893126044284344], [2.339963145555715, 48.893152708477785], [2.339758387201911, 48.89317886785843], [2.339562432979973, 48.89320553140242], [2.339357672841882, 48.893231690988365], [2.339161718215936, 48.893258353875346], [2.338956959044022, 48.89328451188315], [2.338761002650259, 48.89331117410562], [2.338556243069304, 48.89333733142702], [2.338360286271655, 48.893363992992484], [2.338155526281568, 48.89339014962746], [2.338084687096186, 48.89339978733189], [2.3380516308034203, 48.89339588860925], [2.338030004082699, 48.893406998900524], [2.337904887394965, 48.89342402205486], [2.337692195150916, 48.89345463065384], [2.337496237469355, 48.89348129080258], [2.337283544739579, 48.89351189957345], [2.337087587996961, 48.893538559059664], [2.336874894804561, 48.893569166203825], [2.3366789376371733, 48.89359582501994], [2.33661420681966, 48.893605140458575], [2.336588136242574, 48.89361666833841], [2.336598746532369, 48.893645102540376], [2.336686619180984, 48.893788841470936], [2.336772381327448, 48.893929126920746], [2.336858142583683, 48.894069411384365], [2.336946016664546, 48.894213150068936], [2.336953395387761, 48.89421808233589], [2.337121467654057, 48.89426451759289], [2.33727900092435, 48.89430915319998], [2.337447072411182, 48.89435558798859], [2.337604607600015, 48.89440022317122], [2.337762143058857, 48.89444485814477], [2.337930215414651, 48.89449129224957], [2.338087751428287, 48.894535926791086], [2.338255824368456, 48.89458236043504], [2.338264333752212, 48.89458280225889], [2.338282402242624, 48.89457996941354], [2.338483809804043, 48.89454751228492], [2.338675122713339, 48.8945175234672], [2.338876529788267, 48.894485065676264], [2.339085910644364, 48.8944522432625], [2.339287318574521, 48.89441978478629], [2.339496697533759, 48.89438696254407], [2.339512236265284, 48.894391942355774], [2.339586913603549, 48.894498618038895], [2.33965923127159, 48.89460478602494], [2.339733910568673, 48.894711462502414], [2.339806228832003, 48.89481763037907], [2.339880907383207, 48.894924305837385], [2.339953226242033, 48.89503047360467], [2.340027906763483, 48.89513714895809], [2.34010022621761, 48.895243316615996], [2.340137807950283, 48.895269928659]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 37, "zemmour_eric": 37.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-47", "circ_bv": "03", "num_bureau": 47, "roussel_fabien": 23.0, "nb_emargement": 1092.0, "nb_procuration": 86.0, "nb_vote_blanc": 9.0, "jadot_yannick": 138.0, "le_pen_marine": 47.0, "nb_exprime": 1072.0, "nb_vote_nul": 11.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1321.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1092, "quartier_bv": "69", "geo_point_2d": [48.893998804281445, 2.338949396540412], "melenchon_jean_luc": 353.0, "poutou_philippe": 5.0, "macron_emmanuel": 390.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323997144386479, 48.83099929774732], [2.323939642423708, 48.83100996217826], [2.323772021924389, 48.83107405642049], [2.323600388650469, 48.83113986712245], [2.323432765965832, 48.83120395997477], [2.323261131824273, 48.8312697710816], [2.323093508304944, 48.831333863451036], [2.322921873318993, 48.831399673164036], [2.322754248964873, 48.831463765050586], [2.322582613111272, 48.83152957516843], [2.32241498792236, 48.831593666572026], [2.322243351224579, 48.8316594752961], [2.322075726562982, 48.83172356622455], [2.32190408899744, 48.83178937535344], [2.321736462138945, 48.83185346579124], [2.321564823729236, 48.83191927352634], [2.321397196035848, 48.831983363481214], [2.321225556758466, 48.832049171621115], [2.3210579282302852, 48.83211326109309], [2.320886288108646, 48.83217906783921], [2.320718658733954, 48.83224315772754], [2.32058122850502, 48.83229584848916], [2.320568632884913, 48.83229645956242], [2.320556882476364, 48.832306955056964], [2.320522673076503, 48.83232007054759], [2.320482652479535, 48.83233482764658], [2.320476909080851, 48.83234642301918], [2.320551370696611, 48.83245379687176], [2.320623091247098, 48.832559216046704], [2.320697552105675, 48.83266658978016], [2.320769273232823, 48.83277200974672], [2.320843736058688, 48.8328793833765], [2.320915457774229, 48.83298480323537], [2.320916068846664, 48.83298558196456], [2.320943922475804, 48.83301719028789], [2.320965806952315, 48.83304248529171], [2.3209814268952202, 48.8330549628351], [2.321003971815097, 48.83304681389338], [2.32115526239711, 48.83298513116244], [2.3213408792984103, 48.83290939694577], [2.321492169094562, 48.8328477128818], [2.321677785017198, 48.832771978133025], [2.321829072653645, 48.83271029362761], [2.322014687597516, 48.83263455834669], [2.322165975787035, 48.83257287431458], [2.322351589752145, 48.832497138501516], [2.322502877155888, 48.83243545313642], [2.322521822716376, 48.83243859763685], [2.322622929603154, 48.83255385930021], [2.3227248766271122, 48.83266687988611], [2.322740712322063, 48.832670848553924], [2.3229140817387792, 48.832634415306515], [2.323114836911383, 48.83259214337409], [2.323288204442743, 48.832555709574144], [2.323488960371095, 48.83251343701852], [2.323488982224704, 48.83251343264525], [2.3236623492328, 48.83247699830042], [2.32386924149401, 48.8324336931499], [2.3240426093332722, 48.83239725825903], [2.32424950096212, 48.832353952447654], [2.324422866908192, 48.8323175169953], [2.324629757904671, 48.832274210523074], [2.324803124681994, 48.83223777452465], [2.324847135495301, 48.83221986192372], [2.324841360791146, 48.83220849632089], [2.324787022768644, 48.83213004120958], [2.324703144736964, 48.832011009527406], [2.324626541473057, 48.83190040820928], [2.3245426641771862, 48.83178137639019], [2.3244660629535, 48.831670774954276], [2.324382186405186, 48.83155174209892], [2.324305584497194, 48.831441140529876], [2.324221708673121, 48.831322108436886], [2.3241451088051193, 48.831211506750115], [2.324061233716928, 48.83109247452015], [2.324006486157966, 48.831013424859925], [2.323997144386479, 48.83099929774732]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 57, "zemmour_eric": 69.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-23", "circ_bv": "11", "num_bureau": 23, "roussel_fabien": 32.0, "nb_emargement": 1254.0, "nb_procuration": 55.0, "nb_vote_blanc": 11.0, "jadot_yannick": 137.0, "le_pen_marine": 70.0, "nb_exprime": 1236.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1560.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1254, "quartier_bv": "56", "geo_point_2d": [48.832065509172224, 2.322774434219275], "melenchon_jean_luc": 418.0, "poutou_philippe": 8.0, "macron_emmanuel": 387.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347030400002883, 48.86567729401474], [2.347020949209386, 48.86566728401336], [2.346996859506008, 48.86555329828423], [2.346963314693378, 48.865422156314665], [2.3469279285974283, 48.8652834974424], [2.346894384143321, 48.86515235452222], [2.346894320273281, 48.86515212124341], [2.346858934544493, 48.865013462316924], [2.346827196845827, 48.8649066537868], [2.346795459266024, 48.86479984613718], [2.34676061577852, 48.864697885174046], [2.346725772427303, 48.86459592419135], [2.346694035256017, 48.864489115585634], [2.346673932271626, 48.86444537410953], [2.346612958926629, 48.86445625967942], [2.346429221936912, 48.86450002135427], [2.346232930262086, 48.86454703005264], [2.346049193996078, 48.86459079114794], [2.345852901625038, 48.864637800118444], [2.345669164730968, 48.864681559727444], [2.345472870311932, 48.86472856806339], [2.345289132767217, 48.86477232798465], [2.345092839037637, 48.86481933480164], [2.344909100853578, 48.86486309413591], [2.344714379597745, 48.864910527134626], [2.344530640774162, 48.86495428588427], [2.344335918832895, 48.865001718263365], [2.344152179369694, 48.86504547642837], [2.343957456743097, 48.865092908187854], [2.343773716640383, 48.86513666576825], [2.343578993328362, 48.865184096908045], [2.343395252586141, 48.865227853903846], [2.343200529951689, 48.86527528443141], [2.3430167872069783, 48.86531904083514], [2.34301655477125, 48.86531909621793], [2.34283264586575, 48.86536141157553], [2.342648902508273, 48.86540516741101], [2.34246499162585, 48.86544748309215], [2.342281249019089, 48.86549123836734], [2.342097337545536, 48.86553355258098], [2.34191359432641, 48.86557730728828], [2.341831147473735, 48.86559627707143], [2.341806451900686, 48.865599439159304], [2.341793693798264, 48.86560722387384], [2.341692229888543, 48.86563056861092], [2.341558127922366, 48.86566207782858], [2.341374215247085, 48.8657043918238], [2.341240112898529, 48.86573590068304], [2.341203584597329, 48.865749757277676], [2.341221044893861, 48.86578634519944], [2.341346360287512, 48.86591775196258], [2.34148237100267, 48.86604663540472], [2.341482961748429, 48.86605630211182], [2.341372694348231, 48.866181137722485], [2.341282251448198, 48.866279976163995], [2.341277183645212, 48.86628327674534], [2.341177421209887, 48.86632049379757], [2.341047672581298, 48.8663681642327], [2.341041143426298, 48.866378361024196], [2.341040248359989, 48.866384675788446], [2.341100883651003, 48.86640477810352], [2.341277200398917, 48.866467266486126], [2.341454609473843, 48.86653029482385], [2.341630927070981, 48.8665927826783], [2.341808336989966, 48.866655811383836], [2.341984655436228, 48.866718298710104], [2.342162067585126, 48.866781325992406], [2.342338386880512, 48.866843812790464], [2.342515798521601, 48.86690683953378], [2.342692118666106, 48.866969325803694], [2.34286953252585, 48.867032352023024], [2.343045853519475, 48.8670948377647], [2.343223266871504, 48.86715786344508], [2.343399588714246, 48.86722034865858], [2.343577002921591, 48.867283373807474], [2.343753326965265, 48.867345859399535], [2.343930742028129, 48.8674088840169], [2.343970831087213, 48.86741410950272], [2.343982740645499, 48.867394584388144], [2.3440057383166453, 48.867341630302874], [2.3440577279851, 48.86722118110578], [2.344115108617004, 48.867089060959096], [2.3441670977805122, 48.866968611687014], [2.344224476493701, 48.866836491450265], [2.344276465152272, 48.866716042103135], [2.344333844684336, 48.866583920892026], [2.3443858328378733, 48.86646347146992], [2.344443211803048, 48.86633135107549], [2.34449519945176, 48.86621090157837], [2.3445116921804052, 48.866204652430106], [2.344739296214976, 48.86624311810612], [2.344946951065447, 48.86627361389656], [2.344953529780122, 48.866273506906936], [2.345142486871303, 48.86623919851586], [2.345328394821494, 48.86620734094813], [2.345514303918716, 48.86617548219886], [2.345703258922013, 48.86614117291199], [2.345889167542456, 48.866109314477896], [2.346078122058866, 48.86607500459714], [2.346078739415675, 48.86607490904236], [2.3462363279710052, 48.86605300755826], [2.346468709029125, 48.86602096318678], [2.346626297268593, 48.86599906028893], [2.34685867919802, 48.86596701606547], [2.347016265747227, 48.865945112645605], [2.34707446392451, 48.865937601363996], [2.347074877020607, 48.86592073911743], [2.347051758842205, 48.86581024818223], [2.347027669005305, 48.865696262474], [2.347030400002883, 48.86567729401474]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 68, "zemmour_eric": 99.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "2-6", "circ_bv": "01", "num_bureau": 6, "roussel_fabien": 19.0, "nb_emargement": 1184.0, "nb_procuration": 70.0, "nb_vote_blanc": 13.0, "jadot_yannick": 94.0, "le_pen_marine": 45.0, "nb_exprime": 1167.0, "nb_vote_nul": 4.0, "arr_bv": "02", "arthaud_nathalie": 3, "nb_inscrit": 1455.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1184, "quartier_bv": "07", "geo_point_2d": [48.865851739646274, 2.3441828535635736], "melenchon_jean_luc": 236.0, "poutou_philippe": 3.0, "macron_emmanuel": 556.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.363863178922768, 48.86750003402926], [2.363893051866114, 48.86746256885744], [2.364072881642818, 48.86735703705953], [2.364242338233378, 48.86725338796599], [2.364245721817435, 48.86725014043025], [2.36431065292954, 48.8671433341752], [2.3643864685195, 48.8670141066372], [2.3644513990488383, 48.866907300283025], [2.364527213946241, 48.86677807262826], [2.364592145255846, 48.86667126618216], [2.364667958097471, 48.86654203840346], [2.364732888835283, 48.866435230959006], [2.364732943103841, 48.86643514041349], [2.364808755252565, 48.866305912518015], [2.364879260021274, 48.866186200217044], [2.364955072807872, 48.86605697220707], [2.365025576903435, 48.86593725979295], [2.365101388964797, 48.865808031661246], [2.365171892387221, 48.86568831913404], [2.365247703723357, 48.86555909088058], [2.365318206472753, 48.865439378240225], [2.365297658844149, 48.86541717152226], [2.365244671806072, 48.86539342485743], [2.365125591171978, 48.865275458669565], [2.365009163087242, 48.86516012081149], [2.364890082167603, 48.865042153457935], [2.364773656488664, 48.86492681535365], [2.364654576624737, 48.864808848640216], [2.364538150625514, 48.864693510275316], [2.364530375349823, 48.864689815858185], [2.364354303993463, 48.86465830046958], [2.3641783919869273, 48.8646268135461], [2.364002322419607, 48.86459529764509], [2.3638264108385503, 48.8645638102025], [2.363650341696995, 48.86453229378189], [2.363474430541425, 48.86450080582016], [2.363467160820915, 48.864497579881615], [2.363352024933311, 48.86439796860363], [2.363237767582475, 48.864299118226064], [2.363122631209028, 48.86419950670229], [2.36300837473961, 48.86410065518874], [2.362893239243386, 48.86400104342645], [2.36277898363359, 48.863902192575466], [2.362764268569242, 48.86388972575837], [2.36275919017811, 48.86388956561529], [2.362642779888801, 48.86394938075985], [2.362486458294351, 48.86402970318625], [2.362323694467574, 48.86411333484149], [2.362167371889098, 48.864193656839205], [2.36200460703785, 48.864277288048115], [2.361848283475446, 48.86435760961717], [2.361685517599827, 48.86444124037981], [2.361529193053489, 48.86452156152019], [2.361366424790217, 48.86460519182916], [2.361210100623016, 48.86468551254816], [2.361047331335358, 48.864769142410765], [2.36089100618422, 48.86484946270107], [2.360728235871969, 48.86493309211735], [2.360571908373806, 48.865013411971695], [2.360409138389205, 48.865097041848195], [2.360252809918133, 48.865177360374595], [2.360171727464953, 48.865183185462676], [2.360170302714883, 48.865192861976276], [2.360286804700934, 48.865306870364236], [2.360377202368259, 48.86538970547974], [2.360391920898774, 48.86540465388082], [2.360393346866594, 48.86540531172664], [2.360413219004848, 48.865423521704784], [2.360526647691432, 48.8655306783983], [2.360636918424355, 48.86563172325348], [2.360747189585147, 48.865732767997855], [2.360860619631925, 48.86583992434494], [2.36097089166722, 48.86594096886419], [2.361084322616548, 48.86604812587839], [2.361194595537485, 48.86614916927324], [2.361308028763316, 48.86625632606252], [2.361418301184833, 48.866357370124256], [2.36153173532417, 48.866464526681376], [2.361642009994458, 48.866565569626005], [2.361755443684184, 48.86667272594369], [2.361759851054434, 48.866675382720246], [2.361927485646021, 48.866743830612705], [2.362094926065048, 48.86680701967579], [2.362262561520499, 48.866875467090814], [2.362430001406042, 48.86693865567032], [2.362597639088492, 48.867007102615176], [2.362765079803477, 48.86707029071843], [2.362932520924664, 48.867133478583796], [2.363100159905319, 48.867201923913456], [2.363267601856149, 48.86726511130261], [2.36343524032653, 48.86733355704681], [2.363602683106802, 48.86739674395962], [2.363770323804195, 48.867465189233656], [2.36379812373917, 48.86750136102104], [2.363832727741581, 48.86750402713534], [2.363863178922768, 48.86750003402926]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 56, "zemmour_eric": 56.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "3-2", "circ_bv": "05", "num_bureau": 2, "roussel_fabien": 21.0, "nb_emargement": 1216.0, "nb_procuration": 79.0, "nb_vote_blanc": 11.0, "jadot_yannick": 110.0, "le_pen_marine": 52.0, "nb_exprime": 1204.0, "nb_vote_nul": 1.0, "arr_bv": "03", "arthaud_nathalie": 9, "nb_inscrit": 1551.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "10", "geo_point_2d": [48.8656663530734, 2.3629401690277674], "melenchon_jean_luc": 362.0, "poutou_philippe": 4.0, "macron_emmanuel": 485.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323313424692168, 48.88267735664509], [2.32334315785773, 48.88262450453346], [2.323331196755073, 48.88250556222243], [2.32331969563855, 48.88238669444348], [2.3233077346441, 48.88226775210442], [2.323296233633648, 48.882148884297564], [2.323284272747402, 48.88202994193043], [2.323272771843019, 48.881911074095655], [2.323260812428495, 48.88179213170817], [2.323249311630177, 48.88167326384546], [2.32323735097202, 48.881554320522945], [2.323225850268085, 48.88143545353155], [2.323230671916858, 48.88142800282783], [2.323424467421225, 48.8813203120623], [2.323608691892992, 48.8812199135621], [2.323647882068012, 48.881203465816576], [2.323629445760274, 48.88118042325059], [2.323663608257213, 48.88106697011658], [2.323694239796957, 48.880960171873], [2.32372840201984, 48.88084671779854], [2.323759033285489, 48.88073992041627], [2.323755902905631, 48.880732331239095], [2.323638575323559, 48.88064378280314], [2.323516150491503, 48.880552240334815], [2.323514935934789, 48.88054139918999], [2.32360984883571, 48.880444854110344], [2.323701726306794, 48.880348713589555], [2.323702839867652, 48.880340559318185], [2.323648712547466, 48.880251912797334], [2.323555157138656, 48.88009585506844], [2.323501031687639, 48.88000720846882], [2.323470703115328, 48.879994654143054], [2.323449341725218, 48.880003999826286], [2.32329397658497, 48.880052253288305], [2.323093429071996, 48.88011641213484], [2.322938061891473, 48.88016466602166], [2.322737513507164, 48.880228824265444], [2.322582145661622, 48.880277077685435], [2.322381597769461, 48.880341235334164], [2.322226229258699, 48.88038948828737], [2.32221689535499, 48.88039003889776], [2.322037100576146, 48.8803583085814], [2.321851114423575, 48.88032393575036], [2.321671318732321, 48.88029220487508], [2.321485333057238, 48.88025783147375], [2.321469573222304, 48.88026232156562], [2.321442799228034, 48.88029606484642], [2.321410779662849, 48.880325617165425], [2.321396291500372, 48.880329099106596], [2.321212919138996, 48.88029801997025], [2.321032686756614, 48.88026645653009], [2.320849314832789, 48.88023537683502], [2.320669081524088, 48.88020381283794], [2.320485710037821, 48.88017273258421], [2.320305478529759, 48.880141168045654], [2.320296000713291, 48.88014177704535], [2.320115492242019, 48.880199857266575], [2.319934909318952, 48.88025796916798], [2.31975439867889, 48.88031604883084], [2.319573814938272, 48.88037416108073], [2.319393304868025, 48.880432239301506], [2.319212720321603, 48.880490351000574], [2.319032208082467, 48.88054842866306], [2.318851622730141, 48.88060653981134], [2.318671111049087, 48.88066461693101], [2.318490523527573, 48.880722727520705], [2.318310011041119, 48.88078080408979], [2.318129424077295, 48.88083891413645], [2.317948910785342, 48.88089699015496], [2.317768321652331, 48.88095509964306], [2.317756762391089, 48.88095522263166], [2.317720320939831, 48.880946475776355], [2.317643996258733, 48.88092389466425], [2.317633358915719, 48.88091141512228], [2.317592716540386, 48.88091638971522], [2.317439924372387, 48.88095653015972], [2.317297321492236, 48.88099681035324], [2.317154717039789, 48.881037089468386], [2.317001924168391, 48.88107723024878], [2.316994055509729, 48.88108269917892], [2.316931338431133, 48.881204802852615], [2.316870432902515, 48.881316850567806], [2.316842473543886, 48.88136792251348], [2.3168461793976682, 48.881370133539235], [2.31689766994038, 48.881380615903446], [2.317085781012917, 48.88141853570398], [2.317273240110207, 48.88145669790568], [2.317461350367406, 48.88149461710573], [2.317648810013865, 48.881532778716775], [2.317836922182838, 48.88157069733187], [2.318024382378257, 48.8816088583522], [2.31821249509549, 48.88164677637458], [2.318399955828194, 48.88168493770347], [2.3185880691055543, 48.88172285423388], [2.318775529023796, 48.88176101496434], [2.318963642837536, 48.88179893180124], [2.319151104680203, 48.881837091049505], [2.319339219042186, 48.88187500729365], [2.319526681433789, 48.881913165951225], [2.319714796344007, 48.88195108160265], [2.319902259284642, 48.88198923966952], [2.320090373379668, 48.882027154720454], [2.320277836869326, 48.882065312196595], [2.320290622039939, 48.88206948844205], [2.320344551116603, 48.882080357276436], [2.320348225824229, 48.882082148925015], [2.320370095001681, 48.882087290453114], [2.320504281998945, 48.8821143351364], [2.320694977398154, 48.882152526483715], [2.320883094023551, 48.882190440291275], [2.321073788615708, 48.882228631024866], [2.321261905791791, 48.88226654423457], [2.321452602303947, 48.882304734369924], [2.321640720030712, 48.8823426469818], [2.321831417099332, 48.8823808365111], [2.32201953401324, 48.88241874851748], [2.322210231638316, 48.882456937440786], [2.3223983504781263, 48.88249484795778], [2.322589048647954, 48.88253303717434], [2.32277716803842, 48.882570947093456], [2.32296786677639, 48.88260913480475], [2.323155985342277, 48.88264704501764], [2.323281759906328, 48.88267223134034], [2.323313424692168, 48.88267735664509]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 141, "zemmour_eric": 127.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "8-6", "circ_bv": "01", "num_bureau": 6, "roussel_fabien": 9.0, "nb_emargement": 1205.0, "nb_procuration": 102.0, "nb_vote_blanc": 17.0, "jadot_yannick": 76.0, "le_pen_marine": 58.0, "nb_exprime": 1185.0, "nb_vote_nul": 3.0, "arr_bv": "08", "arthaud_nathalie": 3, "nb_inscrit": 1418.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1205, "quartier_bv": "32", "geo_point_2d": [48.88124292359146, 2.3209569655862112], "melenchon_jean_luc": 181.0, "poutou_philippe": 6.0, "macron_emmanuel": 534.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.341110405583818, 48.83181941345034], [2.341079233375822, 48.83181718215592], [2.340914559444624, 48.83186164813679], [2.340732938358955, 48.83191203997438], [2.340568265183472, 48.83195650638148], [2.340386643432577, 48.832006897688935], [2.340221968299848, 48.83205136360797], [2.340040345883828, 48.832101754385356], [2.339875671529682, 48.83214621893203], [2.339694048436954, 48.83219661007858], [2.33952937212557, 48.832241074137194], [2.339452044716424, 48.83226252791769], [2.339427378556021, 48.832264388294064], [2.339405409602678, 48.83227668728403], [2.339301114573279, 48.83230562318717], [2.339121535595352, 48.83235393911154], [2.338939911050046, 48.832404329103575], [2.338760332759547, 48.83245264448892], [2.338578707532507, 48.83250303302874], [2.338399128555806, 48.832551348766835], [2.338217502635835, 48.83260173675366], [2.338037921622104, 48.832650051937634], [2.337856296371238, 48.83270043937907], [2.337676714694139, 48.832748753117166], [2.337495088738824, 48.832799140904974], [2.337315506387043, 48.832847454096445], [2.337133878376461, 48.832897841323785], [2.3369542967120402, 48.832946153976216], [2.336772668019977, 48.83299653975128], [2.336593085669339, 48.83304485275646], [2.336411456284162, 48.83309523797855], [2.336231871896602, 48.83314355042958], [2.33614368250801, 48.83316801494081], [2.336099845112892, 48.83317598018271], [2.336080492291658, 48.83319638562536], [2.335987051519686, 48.833222305733216], [2.335806421644515, 48.83327241587965], [2.335624790706117, 48.83332279989696], [2.335444160145965, 48.83337290859248], [2.335262528495822, 48.83342329295442], [2.335081897239232, 48.833473401098395], [2.334900264888807, 48.833523784905715], [2.334719632935783, 48.83357389249811], [2.334537999885079, 48.83362427575079], [2.334357365873466, 48.83367438278402], [2.334175733484645, 48.83372476548964], [2.333995098776603, 48.83377487197126], [2.333813465687616, 48.833825254122196], [2.333632830283046, 48.83387536005224], [2.333451195131525, 48.83392574164098], [2.3332705603928, 48.833975847027], [2.333088924552522, 48.83402622716178], [2.332908289105875, 48.83407633289553], [2.332726652565342, 48.83412671247562], [2.332546016422277, 48.83417681765776], [2.332364379181493, 48.83422719668322], [2.332298052661816, 48.834221602891475], [2.332271813382877, 48.83423812175639], [2.332360706315069, 48.83434632575794], [2.332484058565115, 48.834499992730784], [2.332572952395957, 48.834608195649956], [2.332583432313573, 48.834623573110576], [2.332603363587558, 48.83462144848956], [2.33277666059568, 48.83457168092725], [2.33295018990278, 48.83452236499383], [2.3329639903758412, 48.83452355178095], [2.3331183124317523, 48.834603545242786], [2.333272313325824, 48.83468397380106], [2.333426634967514, 48.834763966845976], [2.333580638173531, 48.83484439500334], [2.333734960774783, 48.83492438673971], [2.333888963568165, 48.835004814480975], [2.334043288468287, 48.83508480671499], [2.334197292211331, 48.83516523404775], [2.334351618059534, 48.83524522587249], [2.3345056227522463, 48.835325652796705], [2.334659949560011, 48.83540564331289], [2.33481395520229, 48.83548606982856], [2.334828953925001, 48.835486903313715], [2.334998615068869, 48.83542552576482], [2.335167136464626, 48.8353646066133], [2.3353367968122463, 48.835303228577985], [2.335505317405838, 48.835242309842656], [2.335674976957211, 48.83518093132096], [2.335843496771772, 48.83512001120322], [2.336013155526896, 48.835058632195185], [2.336181674550755, 48.83499771159431], [2.336351332509628, 48.83493633209987], [2.336519850742986, 48.83487541101591], [2.336689507905609, 48.834814031035094], [2.3368580253482643, 48.83475310946805], [2.337027681714637, 48.83469172900086], [2.3371961983667893, 48.83463080695066], [2.337203438217559, 48.83462971386298], [2.337398253621534, 48.83463629559495], [2.337593031214657, 48.834642747290545], [2.337787846716529, 48.83464932838791], [2.337982624395145, 48.834655780348356], [2.338177439994907, 48.834662360811095], [2.338372217781851, 48.834668811237755], [2.33856703346808, 48.83467539196515], [2.338761809989735, 48.834681841749784], [2.338956625785147, 48.834688420943266], [2.339151403754574, 48.834694871000224], [2.339346219647846, 48.834701449559105], [2.339540997725552, 48.834707898082286], [2.339735813716778, 48.8347144760065], [2.339930591879861, 48.83472092479448], [2.340125407968929, 48.834727502084135], [2.340320186240261, 48.83473394933828], [2.340515002415782, 48.834740526892595], [2.340709780783964, 48.83474697351226], [2.340904597068688, 48.83475354953264], [2.341099375522341, 48.83475999641712], [2.341294191904879, 48.834766571802874], [2.341488969104543, 48.83477301714604], [2.341555528070129, 48.834766269554116], [2.341552991012434, 48.8347494715486], [2.341530552930468, 48.8346250137406], [2.341504713131934, 48.83449678321569], [2.341482275273901, 48.834372325370516], [2.341458491885067, 48.83424492725217], [2.341436054245796, 48.83412046937034], [2.341412271084832, 48.83399307121415], [2.341389833664322, 48.83386861329563], [2.341366050742588, 48.833741214202256], [2.341343613540835, 48.83361675624707], [2.341319830835602, 48.833489358015186], [2.341297393852601, 48.8333649000233], [2.341273611386593, 48.83323750085423], [2.341266797906052, 48.833199701436314], [2.341271258498326, 48.83319115679555], [2.3412657758971163, 48.8331752509015], [2.341250153973316, 48.8330885931957], [2.341230703808657, 48.83298006686921], [2.34120826725765, 48.832855608804], [2.341188817267224, 48.83274708244813], [2.341166379554262, 48.83262262434167], [2.341146929726601, 48.83251409885572], [2.341146835636396, 48.83251313600973], [2.341145049627134, 48.83240696973459], [2.3411476584103372, 48.83229584423959], [2.341147019575435, 48.83225789712254], [2.341148983354215, 48.83225611639161], [2.341149236112166, 48.83222383033437], [2.341148088918791, 48.83215561295226], [2.341143042861307, 48.8320566758242], [2.341141258226358, 48.83195051041253], [2.341136212201691, 48.83185157326608], [2.341110405583818, 48.83181941345034]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 83, "zemmour_eric": 71.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-26", "circ_bv": "11", "num_bureau": 26, "roussel_fabien": 22.0, "nb_emargement": 1012.0, "nb_procuration": 41.0, "nb_vote_blanc": 7.0, "jadot_yannick": 87.0, "le_pen_marine": 55.0, "nb_exprime": 1003.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1278.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1012, "quartier_bv": "53", "geo_point_2d": [48.83381975832292, 2.3377049053294945], "melenchon_jean_luc": 225.0, "poutou_philippe": 4.0, "macron_emmanuel": 404.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.33042225389913, 48.82240469177225], [2.330457955137191, 48.82241078171832], [2.330489218614768, 48.82250100455904], [2.330530497613378, 48.8226264222559], [2.330559095161294, 48.82270895212302], [2.33056415699187, 48.82272355582077], [2.33060543634693, 48.82284897346689], [2.330608778874077, 48.822858623642446], [2.330608788095974, 48.822858647977355], [2.330657171373316, 48.82299653928784], [2.330698451168238, 48.823121956871425], [2.330746834938592, 48.823259847214025], [2.330788115157658, 48.82338526473728], [2.330836498035948, 48.823523155903004], [2.330877778679164, 48.823648573365894], [2.330926163412469, 48.823786463571295], [2.3309674444797412, 48.82391188097385], [2.330993737581507, 48.82393739507181], [2.331025658393933, 48.82394776271812], [2.331180789575611, 48.82391550540962], [2.331339581354595, 48.823884772131194], [2.331494712154532, 48.82385251441366], [2.331653504918634, 48.82382178072428], [2.331808633974926, 48.82378952259006], [2.3319674263621373, 48.82375878848212], [2.331973659032307, 48.8237584842338], [2.332165252183586, 48.823778620325164], [2.332365824394735, 48.82380098183795], [2.332557417865245, 48.82382111640088], [2.332757991769963, 48.823843477262635], [2.332949585548069, 48.82386361119655], [2.3331501584225443, 48.823885971392116], [2.333341752508138, 48.8239061046969], [2.333542327076267, 48.82392846424148], [2.33373392146944, 48.82394859691724], [2.333934495007204, 48.8239709557956], [2.3341260897080502, 48.82399108784227], [2.334326663577445, 48.82401344606202], [2.33451825994776, 48.82403357748721], [2.3347188341487772, 48.82405593504836], [2.334910429464638, 48.82407606583688], [2.335111003997267, 48.82409842273944], [2.335302600982684, 48.82411855290641], [2.335503175846917, 48.82414090915037], [2.33569477177796, 48.824161038680735], [2.335895346973789, 48.82418339426607], [2.336086943212257, 48.82420352316736], [2.336087215243919, 48.82420355345774], [2.336287790771566, 48.824225908384015], [2.3364704769746982, 48.82424760789618], [2.336671052836146, 48.82426996217874], [2.336853739353145, 48.82429166110459], [2.337054315559819, 48.8243140138441], [2.337237002390774, 48.8243357121836], [2.337276628720122, 48.82434371681603], [2.337284866493097, 48.824342121102774], [2.337467553518483, 48.82436381908952], [2.3376487065011142, 48.82438330302314], [2.337831392460091, 48.824405000445715], [2.338012545721768, 48.82442448382745], [2.338195233338466, 48.82444618070096], [2.338376386890594, 48.82446566263156], [2.3385590748030882, 48.82448735894842], [2.338740227260812, 48.82450684121891], [2.338740273500303, 48.8245068468709], [2.338929130714941, 48.82452971804487], [2.339111034808165, 48.82455182019763], [2.339299890986422, 48.82457469077764], [2.339481795405112, 48.82459679146627], [2.33967065325943, 48.82461966236669], [2.339852557992181, 48.82464176249044], [2.339875152541124, 48.82461851957626], [2.339887525038397, 48.824584478959046], [2.339892445517699, 48.82457152269767], [2.339939519711388, 48.8244475667208], [2.339986344736265, 48.82432466161037], [2.340033418472347, 48.824200706468595], [2.340080243054177, 48.82407780129438], [2.340127316355629, 48.82395384518908], [2.340174140494416, 48.82383093995108], [2.340221213338377, 48.82370698468093], [2.340268037034129, 48.823584079379145], [2.340314861882505, 48.82346117315377], [2.34036193269609, 48.823337217779944], [2.340408757089953, 48.823214312390114], [2.340455827457452, 48.82309035695208], [2.340502651419765, 48.822967450599165], [2.340549721341186, 48.822843495096905], [2.340596544849102, 48.822720589579596], [2.340643614324449, 48.822596634013124], [2.340690437400724, 48.82247372753271], [2.340737506429902, 48.822349771902076], [2.340784329051796, 48.82222686625723], [2.3408313976350152, 48.822102910562435], [2.340878219825277, 48.82198000395452], [2.340925287962439, 48.821856048195535], [2.340972109698336, 48.82173314242316], [2.341019177400817, 48.821609185700666], [2.341065998693623, 48.82148627986456], [2.341113065938694, 48.82136232397722], [2.341159886788618, 48.82123941807736], [2.341206953599015, 48.821115461226555], [2.341223198281845, 48.8211088818153], [2.341274444105243, 48.82111661370122], [2.341328133519489, 48.82112336431019], [2.341344071301978, 48.82111617251261], [2.34137459860388, 48.82100764779362], [2.341405905424391, 48.820899076985135], [2.341436432470597, 48.82079055222939], [2.341467739032009, 48.82068198138375], [2.341498265822318, 48.82057345659131], [2.34152957211338, 48.82046488660781], [2.341542882541417, 48.820457575084944], [2.341759613939587, 48.820456850871416], [2.341966129497063, 48.82045673918632], [2.342172643691838, 48.82045662713709], [2.342389376439228, 48.82045590178966], [2.342595890629773, 48.82045578900941], [2.3428126220058703, 48.82045506288739], [2.342826306695475, 48.82046429289865], [2.342823837242873, 48.82052644185068], [2.342815301144586, 48.82059131855694], [2.34281503084401, 48.82059288109497], [2.342771450030029, 48.82073387585891], [2.342737099992112, 48.82083753496739], [2.342702751179547, 48.82094119406397], [2.342659168408998, 48.82108218873582], [2.342624819291673, 48.82118584688813], [2.342632264303796, 48.82118992963328], [2.342696435069202, 48.82117654795144], [2.342845771462912, 48.82107373492082], [2.342991518558532, 48.820973610911], [2.343140853777849, 48.820870798392676], [2.343286601101425, 48.820770674012586], [2.343435933795873, 48.820667861099736], [2.343581679985582, 48.820567736341935], [2.343731011516899, 48.820464923042], [2.343876756572853, 48.820364797906485], [2.343878418074754, 48.82036340039129], [2.343951370742694, 48.820287683345924], [2.344041530211677, 48.82018600377308], [2.344114482383252, 48.820110287515526], [2.344170038339151, 48.820047631947666], [2.344181723604957, 48.82004290683194], [2.344190290498037, 48.820033589459285], [2.344224891988627, 48.81999456620076], [2.344343140367316, 48.819862401195806], [2.34443329832559, 48.81976072218845], [2.344523455943655, 48.819659042204606], [2.3446417027934, 48.819526877764304], [2.344643367589711, 48.8195206631673], [2.344608499418383, 48.81939653095287], [2.344571638639985, 48.81926678284314], [2.344536769447298, 48.81914265057227], [2.344499909026851, 48.81901290241116], [2.344465041536569, 48.81888877009885], [2.344428181474068, 48.81875902188638], [2.344393312951123, 48.818634890416995], [2.344356453246563, 48.81850514215312], [2.344321586437307, 48.81838100974296], [2.344284727090681, 48.81825126142772], [2.344249859260073, 48.81812712896117], [2.34421300027148, 48.81799738059459], [2.344178134143131, 48.817873248086606], [2.344141275512461, 48.81774349966859], [2.344106408351553, 48.81761936800357], [2.344069550078703, 48.81748961953422], [2.344069325836557, 48.81748828271974], [2.344060358824836, 48.81736368421043], [2.344053167826734, 48.81723107022986], [2.34404420225968, 48.81710647169832], [2.344037011338238, 48.81697385768648], [2.344028044492087, 48.8168492591178], [2.344020855009024, 48.81671664508216], [2.344011888245706, 48.816592046483855], [2.344004697477381, 48.8164594324095], [2.343995732158707, 48.816334833788986], [2.343988541466934, 48.81620221968334], [2.343979574869282, 48.81607762102572], [2.343972385615866, 48.815945006896314], [2.343963419101145, 48.815820408209], [2.343967120859901, 48.8158023140121], [2.34393260555334, 48.81581185327039], [2.343784316651025, 48.815865588075006], [2.343586726306974, 48.81593880522311], [2.343438438049044, 48.81599253960021], [2.34324084673823, 48.816065756168534], [2.343092557762887, 48.81611949011059], [2.34308961411058, 48.81612029777393], [2.342917990394802, 48.81615177123568], [2.342750269803322, 48.81618322903217], [2.342578645675617, 48.81621470200508], [2.342410924677022, 48.816246159323846], [2.342243202114369, 48.81627761639899], [2.342071577381331, 48.816309087742084], [2.341903855773279, 48.81634054434696], [2.341732230616983, 48.81637201610053], [2.341729580510368, 48.81637233068502], [2.3417142777231312, 48.81637314042216], [2.341513189017539, 48.81638361090259], [2.34127736602652, 48.816396082387406], [2.341076277144635, 48.816406552132825], [2.340875588124674, 48.81641716494807], [2.340674499080929, 48.81642763401755], [2.340473809898068, 48.81643824615826], [2.340272720692269, 48.816448714551846], [2.340072031346518, 48.81645932601795], [2.339870941978777, 48.81646979373565], [2.339670252470146, 48.816480404527184], [2.339469162940575, 48.81649087156895], [2.339268473269075, 48.81650148168596], [2.339067383577483, 48.816511948051826], [2.338866693754524, 48.816522556594926], [2.338665603889619, 48.816533023184206], [2.338464913903819, 48.81654363105274], [2.338263822515292, 48.81655409695857], [2.33806313236666, 48.81656470415254], [2.337862042177948, 48.816575169390006], [2.337635671210699, 48.81658713382129], [2.337434580861138, 48.816597597440314], [2.337208208336642, 48.81660956105453], [2.337007117814824, 48.816620023954435], [2.336820379552798, 48.816629891584626], [2.336619288863328, 48.81664035473141], [2.336432551816928, 48.81665022176327], [2.336231459620876, 48.81666068335074], [2.336044722416846, 48.81667055067607], [2.335843631426416, 48.816681011618634], [2.335656892714389, 48.816690878330526], [2.335455801567873, 48.81670133862065], [2.335269062721141, 48.81671120382734], [2.335067971406882, 48.81672166436438], [2.334881232413994, 48.816731528965164], [2.334680140955034, 48.81674198795042], [2.334493403166344, 48.816751852852214], [2.334292311551227, 48.81676231118505], [2.334105572254574, 48.816772175473396], [2.333918832898762, 48.816782038570686], [2.333717741052011, 48.816792495936916], [2.333716145204866, 48.8167925796807], [2.333518639183645, 48.81682029520557], [2.333336419890227, 48.81684654510002], [2.333154200413354, 48.8168727947162], [2.332956693801154, 48.81690050841152], [2.332774473944567, 48.81692675744776], [2.332576966926173, 48.816954470514524], [2.332394746689878, 48.81698071897077], [2.332197240615605, 48.81700843231589], [2.332015019999607, 48.81703468019221], [2.3318175121688443, 48.81706239200183], [2.33182629772941, 48.81707908331655], [2.3318378620188582, 48.817101054258075], [2.331841245659636, 48.817107484881205], [2.3318430046209953, 48.81711082783085], [2.331843392876229, 48.81711156299915], [2.3319063929541572, 48.817227862826165], [2.331956531348617, 48.81732312249239], [2.332014357362285, 48.817432989711094], [2.332077359583105, 48.81754928852314], [2.332135186090739, 48.81765915656069], [2.332198188854298, 48.81777545528571], [2.332256017240586, 48.817885322351], [2.332319019173628, 48.81800162188072], [2.332376848065317, 48.81811148886552], [2.332439850541006, 48.81822778830814], [2.332441601626245, 48.818231114113004], [2.332442661309996, 48.818233127454114], [2.332434111448052, 48.818244696162374], [2.332239171444105, 48.818287230455745], [2.332094212997534, 48.81831847306099], [2.3319492543888822, 48.818349714590276], [2.331754313596735, 48.81839224808924], [2.331746884152876, 48.81839384884264], [2.331654416145266, 48.81841377771392], [2.331459476234992, 48.81845631073739], [2.331285606084609, 48.81849378262902], [2.331090665574514, 48.81853631504818], [2.330916794903874, 48.81857378550149], [2.330742923971809, 48.81861125660008], [2.3305479825797972, 48.81865378813008], [2.330374111127492, 48.81869125779038], [2.330179169135574, 48.81873378871611], [2.329978196404439, 48.81877894770648], [2.3297832523999, 48.818821477975746], [2.329582278987918, 48.8188666362972], [2.329387335694503, 48.81890916592534], [2.3293211292968152, 48.81892404274006], [2.329288645107042, 48.818951491395104], [2.329294352016007, 48.81896597110538], [2.329333363448371, 48.81909062413817], [2.329377180502509, 48.819223925585376], [2.329416190963983, 48.81934857855493], [2.329460009808618, 48.819481879948846], [2.329499020660986, 48.819606532862814], [2.329542839934145, 48.81973983419581], [2.329581851177617, 48.81986448705416], [2.329625670890766, 48.81999778742694], [2.329664682513684, 48.820122441128994], [2.329708501293457, 48.82025574143321], [2.329747514669297, 48.82038039508729], [2.329791333877606, 48.82051369533059], [2.329830346282554, 48.82063834892142], [2.329874167281423, 48.820771649111414], [2.329913180088855, 48.82089630174735], [2.32991327194333, 48.820896572976054], [2.329957092009183, 48.82102987309743], [2.329999855471045, 48.82114800908448], [2.3300436773315942, 48.82128130915194], [2.330086439833907, 48.82139944507396], [2.3301302621270272, 48.82153274507988], [2.33017302639377, 48.82165088095216], [2.330216847757623, 48.82178418088892], [2.330259612426662, 48.82190231670378], [2.330302377301138, 48.82202045159164], [2.330346199306285, 48.82215375143717], [2.330367567976446, 48.82221867689543], [2.330410333354992, 48.82233681171144], [2.330430243159131, 48.8223973040247], [2.33042225389913, 48.82240469177225]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 104, "zemmour_eric": 90.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-41", "circ_bv": "10", "num_bureau": 41, "roussel_fabien": 23.0, "nb_emargement": 1420.0, "nb_procuration": 97.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 54.0, "nb_exprime": 1402.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1756.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1420, "quartier_bv": "54", "geo_point_2d": [48.82013372520821, 2.336901404665788], "melenchon_jean_luc": 421.0, "poutou_philippe": 4.0, "macron_emmanuel": 534.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.312352222732879, 48.82591468416059], [2.312361922304944, 48.82592977666371], [2.312522120869176, 48.826033652396276], [2.3126685372973492, 48.82612869053141], [2.312814952897257, 48.82622372847141], [2.312975154629386, 48.82632760357773], [2.313012979356864, 48.82635215537703], [2.313016810758298, 48.82637915966505], [2.313034896403892, 48.826384296483866], [2.313143488490435, 48.82645478221043], [2.31328231505347, 48.8265462692736], [2.313428734307096, 48.82664130643462], [2.313567561855506, 48.82673279405081], [2.31371398216468, 48.82682782994748], [2.313819312855264, 48.82689724223396], [2.313849651028741, 48.826917620847865], [2.313891030788552, 48.826892052382355], [2.314089900008809, 48.82686311703784], [2.314287993251594, 48.82683413014615], [2.314486862018766, 48.826805195039384], [2.314684954820763, 48.826776207488656], [2.314883823146679, 48.826747271720286], [2.315081915507879, 48.826718283510516], [2.31528078339263, 48.82668934708056], [2.315478875312923, 48.826660358211825], [2.315677742756399, 48.82663142112026], [2.315875834235879, 48.826602431592484], [2.316074701238073, 48.826573493839355], [2.316272792288625, 48.826544502753244], [2.316471658849422, 48.82651556433853], [2.316669749447346, 48.826486573492716], [2.316868614204773, 48.82645763440865], [2.317066705723928, 48.82642864291161], [2.317265570040046, 48.82639970316596], [2.317463661118352, 48.826370711009915], [2.317662524993256, 48.82634177060269], [2.317860615630603, 48.82631277778763], [2.318059479064182, 48.82628383671885], [2.318257569272422, 48.82625484234546], [2.3184564322646652, 48.82622590061512], [2.318654522020368, 48.82619690648204], [2.318853384571168, 48.826167964090104], [2.319051473885987, 48.826138969298064], [2.319250335995435, 48.826110026244564], [2.319448424869363, 48.82608103079349], [2.3194741539010533, 48.82607041704017], [2.319475167643268, 48.826062984046075], [2.319406417168346, 48.825987698814515], [2.319307955876793, 48.82588394366681], [2.319209176669756, 48.825775774262226], [2.319110717521147, 48.8256720198396], [2.319011937774534, 48.825563849344626], [2.3189134794187503, 48.82546009474002], [2.318814701833158, 48.82535192496881], [2.3187162429198, 48.82524816927514], [2.318617466144819, 48.82513999932062], [2.318519008024175, 48.825036243444984], [2.3184202320600003, 48.82492807330712], [2.318321774732064, 48.82482431724952], [2.318328706571454, 48.82481108011553], [2.318482583259656, 48.824774530359704], [2.318651046055564, 48.82473707599348], [2.318804920925614, 48.824700526712036], [2.318973383262596, 48.824663070989985], [2.319127259050293, 48.82462652129912], [2.31929571955457, 48.82458906511277], [2.319299018609285, 48.82457309920909], [2.319139787583903, 48.82450178025367], [2.318965387630388, 48.82442397380345], [2.318806157516806, 48.82435265439432], [2.31863175857174, 48.824274846547986], [2.318472529369958, 48.82420352668517], [2.318298131421597, 48.824125718341946], [2.318138901769605, 48.82405439801764], [2.317964506179953, 48.82397658918533], [2.31780527743976, 48.82390526840733], [2.317708984765206, 48.82386230603916], [2.317709348973257, 48.8238486303333], [2.317704263642849, 48.823838170299226], [2.317546317983901, 48.823768885487404], [2.3174682163024842, 48.82373403931655], [2.317464432069777, 48.82373323615545], [2.317411800515451, 48.82377596032746], [2.317243275921268, 48.82382381395485], [2.317074428533376, 48.823871954202325], [2.3169059033192783, 48.82391980735016], [2.316737055309022, 48.823967947117175], [2.316568529463221, 48.824015800684826], [2.316399680830601, 48.82406393997133], [2.316231154376676, 48.82411179216014], [2.316062305121796, 48.8241599309662], [2.316055057889419, 48.824171526604324], [2.31613723577021, 48.82430722566523], [2.316219707936818, 48.82444378254382], [2.316301886675258, 48.82457948145872], [2.316384359703868, 48.82471603819063], [2.316466537937942, 48.82485173695169], [2.316549011840149, 48.82498829263764], [2.316540566229248, 48.825000178243165], [2.316343204288115, 48.825042480274135], [2.316148016314299, 48.825084754838755], [2.31595065237248, 48.82512705621093], [2.315755465125886, 48.82516933013944], [2.31555810054532, 48.825211630860586], [2.315362912663817, 48.82525390414521], [2.315165547444714, 48.825296204215284], [2.31497035892821, 48.82533847685604], [2.314772993070474, 48.82538077627508], [2.314577803919076, 48.82542304827193], [2.314380437422713, 48.82546534703992], [2.314185247624699, 48.82550761929221], [2.314177896298267, 48.82551144626526], [2.314140915022945, 48.82555107310451], [2.314098696033637, 48.82559393104124], [2.314086111098852, 48.82559798791133], [2.313968192777776, 48.82559129016255], [2.313857607953859, 48.825584919477556], [2.313852233165458, 48.82558532124078], [2.313665150501302, 48.825625268394965], [2.313482653405223, 48.825664627304974], [2.313300157395757, 48.825703985942866], [2.31311307389455, 48.8257439313299], [2.312930575966448, 48.825783289393215], [2.312743491885663, 48.8258232350986], [2.312560994763026, 48.82586259260297], [2.312373908764322, 48.82590253682022], [2.3123735945483093, 48.825902606963865], [2.312352222732879, 48.82591468416059]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 92, "zemmour_eric": 95.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 22.0, "date_tour": "2022-04-10", "id_bvote": "14-55", "circ_bv": "10", "num_bureau": 55, "roussel_fabien": 28.0, "nb_emargement": 1313.0, "nb_procuration": 36.0, "nb_vote_blanc": 20.0, "jadot_yannick": 77.0, "le_pen_marine": 98.0, "nb_exprime": 1288.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 6, "nb_inscrit": 1751.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1313, "quartier_bv": "56", "geo_point_2d": [48.82555024775716, 2.3163602791998708], "melenchon_jean_luc": 425.0, "poutou_philippe": 4.0, "macron_emmanuel": 390.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.304239583298501, 48.840414100401034], [2.304184087131303, 48.840394268495565], [2.304015909326103, 48.84034599950846], [2.303838542800433, 48.840296218928884], [2.303670365631609, 48.840247949451715], [2.303492999769623, 48.84019816835545], [2.303324823237176, 48.84014989838824], [2.303147458038875, 48.84010011677529], [2.302979282154836, 48.84005184541875], [2.302801916257805, 48.84000206328114], [2.302633742360547, 48.83995379234189], [2.3025144291972452, 48.83992030390429], [2.302487375088198, 48.839914723856204], [2.302480867341755, 48.839915061845716], [2.302422816638534, 48.83989876851987], [2.302245451793897, 48.839848985550354], [2.302029815404108, 48.839786939150265], [2.302029256278193, 48.83978677310198], [2.301832306746698, 48.83972444414729], [2.301616670001552, 48.83966239698761], [2.301419721433406, 48.83960006734675], [2.301218903991414, 48.839538642025175], [2.301021955004143, 48.83947631171453], [2.30082113851968, 48.839414884819135], [2.300624191838104, 48.83935255385467], [2.300423376299221, 48.839291126284735], [2.300405426594263, 48.83929531130318], [2.300351757700749, 48.839367215033775], [2.300313116141646, 48.83941816767176], [2.300298867471119, 48.83942911060414], [2.300296319648924, 48.83943631404521], [2.300244405361626, 48.83950476630841], [2.300160621905739, 48.83961920845101], [2.300070065211823, 48.83973861408827], [2.29998628099725, 48.83985305608482], [2.299895722135334, 48.83997246155712], [2.299810805461899, 48.84007601081371], [2.299720247172941, 48.84019541613727], [2.299635329787653, 48.84029896524866], [2.299544770709327, 48.84041837041554], [2.299459852612182, 48.840521919381715], [2.299458363517019, 48.84052484890061], [2.299455007152114, 48.840532892989756], [2.299517749378787, 48.84055776102698], [2.29968421257893, 48.840616668546794], [2.299854397190955, 48.8406768954005], [2.300020861152063, 48.84073580244555], [2.300191046554156, 48.840796027914614], [2.300191313731041, 48.84079612031388], [2.300376470554788, 48.84085820395424], [2.30054665676745, 48.84091842891076], [2.300734393980449, 48.84098120339843], [2.300919552108577, 48.84104328618793], [2.301104709303393, 48.84110536957874], [2.301292449224211, 48.84116814318805], [2.301477607318803, 48.841230225095444], [2.301665348138464, 48.84129299811253], [2.301850508483123, 48.84135507944374], [2.302038248839273, 48.84141785186065], [2.302223410071643, 48.84147993260774], [2.302411151326631, 48.84154270443239], [2.302596313446712, 48.84160478459538], [2.302784055600535, 48.84166755582777], [2.302791326464542, 48.84167710722252], [2.3027545038432082, 48.841818049306106], [2.302715112559734, 48.84195583759577], [2.30271886259759, 48.841963862028834], [2.302854074562481, 48.84205318923693], [2.302974794253818, 48.842131655618616], [2.303035594831824, 48.84215322505092], [2.303052015572732, 48.84213443759732], [2.303126367744612, 48.842023668437925], [2.303208823708636, 48.841904365557916], [2.303212890780797, 48.841901421333766], [2.303220203340752, 48.8418856440475], [2.303302658871627, 48.84176634108809], [2.30338634247527, 48.84164759022965], [2.303468795886785, 48.84152828712233], [2.303552478717672, 48.841409537021654], [2.303634932734767, 48.84129023378228], [2.303718614804824, 48.8411714835401], [2.303801066702592, 48.84105218015291], [2.303884749386491, 48.840933428877754], [2.303967200527397, 48.8408141253506], [2.304050881076128, 48.84069537482535], [2.304133332822522, 48.84057607116615], [2.304217012622558, 48.84045731960006], [2.304239583298501, 48.840414100401034]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 140, "zemmour_eric": 133.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "15-2", "circ_bv": "12", "num_bureau": 2, "roussel_fabien": 10.0, "nb_emargement": 1134.0, "nb_procuration": 103.0, "nb_vote_blanc": 11.0, "jadot_yannick": 74.0, "le_pen_marine": 52.0, "nb_exprime": 1119.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1366.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1134, "quartier_bv": "57", "geo_point_2d": [48.84056883266287, 2.3018979353743636], "melenchon_jean_luc": 173.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347097710621428, 48.89467927683702], [2.347068822910928, 48.894688062180144], [2.347005450444734, 48.894758004835786], [2.346909498919769, 48.89486034856906], [2.346806131301344, 48.89497443286449], [2.346710178997095, 48.895076775518554], [2.346606810512225, 48.89519085961937], [2.346510856042141, 48.89529320298534], [2.346407486690811, 48.8954072868916], [2.346311532805103, 48.895509629185845], [2.34620816258741, 48.895623712897496], [2.346112207899718, 48.89572605591107], [2.346087772638705, 48.89573604523188], [2.3460841145299662, 48.89574961757699], [2.346148189494207, 48.89587122541585], [2.346234794531521, 48.896031297792945], [2.346264048678796, 48.896086816904216], [2.34627487246916, 48.89610924476351], [2.346317140852941, 48.89610725506956], [2.346360024429815, 48.89610037282312], [2.346408064775815, 48.89609058692375], [2.34642330709993, 48.896094063242685], [2.346512406270886, 48.896178973085036], [2.346606423239959, 48.89627537150942], [2.346643495145639, 48.89628543570307], [2.346649873069846, 48.896288913992464], [2.34679619796515, 48.89632863743254], [2.346979818185913, 48.896377387283835], [2.347163215688589, 48.89642717434907], [2.347346836600541, 48.896475923633254], [2.347530234801297, 48.89652571013194], [2.347713856404434, 48.896574458848995], [2.347897255303265, 48.89662424478118], [2.3480808775863222, 48.89667299383038], [2.348264277194484, 48.8967227782968], [2.348447900168827, 48.89677152677884], [2.348631300463798, 48.89682131157794], [2.34881492414047, 48.896870058593684], [2.348998325133505, 48.89691984282625], [2.349181949501346, 48.89696858927482], [2.34936535119244, 48.89701837294085], [2.349548976251445, 48.89706711882231], [2.349732378640594, 48.8971169019218], [2.349916004390761, 48.89716564723614], [2.350099407477961, 48.89721542976907], [2.3502830339080623, 48.89726417541547], [2.350466437693413, 48.897313957381925], [2.350650064825894, 48.897362701561924], [2.350833469309188, 48.897412482961784], [2.351017097132817, 48.89746122657467], [2.35120050231415, 48.897511007407964], [2.351384130828924, 48.897559750453716], [2.351567538072228, 48.89760953072788], [2.351751165914207, 48.89765827319906], [2.3519345738555453, 48.89770805290663], [2.352118202377467, 48.897756795709945], [2.352301611016839, 48.89780657485095], [2.352485240241187, 48.89785531618784], [2.352552385821931, 48.897857557880535], [2.352552959956132, 48.89785701869595], [2.352578388180046, 48.89772482518508], [2.352603855731823, 48.89759472367911], [2.352629285073505, 48.89746252923388], [2.352654752358499, 48.89733242858515], [2.352680180079008, 48.89720023409005], [2.352705647119691, 48.89707013250009], [2.352731074571579, 48.89693793886178], [2.352756541356877, 48.89680783722982], [2.352781968562613, 48.89667564264977], [2.352807435081145, 48.89654554187507], [2.352832863393557, 48.896413347259966], [2.352858329667785, 48.896283245544026], [2.352883756358862, 48.89615105087903], [2.352909222366537, 48.89602095002036], [2.352917556440277, 48.89592819882234], [2.352942982807574, 48.89579600410196], [2.35294307121895, 48.89579437771135], [2.3529514051961202, 48.89570162649178], [2.352942013130747, 48.895589128462944], [2.352940462385223, 48.895496828335965], [2.352931070391514, 48.89538432938597], [2.352929519671591, 48.895292029241574], [2.352920127727293, 48.895179531168964], [2.35291171739295, 48.89508133667224], [2.3529221763994332, 48.895060788872286], [2.352911624031342, 48.89504802536473], [2.352908406861658, 48.89501046587723], [2.352895944632822, 48.89489128722262], [2.352884317254097, 48.894755533201504], [2.352871855141526, 48.894636354516656], [2.352860229246399, 48.894500600468966], [2.352847767249885, 48.894381421753884], [2.35283614012182, 48.89424566676563], [2.352827201157295, 48.89416017941733], [2.35281600723839, 48.89414747357645], [2.3527688862673, 48.894155520536025], [2.352575299008953, 48.89419106474145], [2.352380752752133, 48.89422649103285], [2.352187164953745, 48.894262035507815], [2.351992618167645, 48.89429746116643], [2.3517990298516, 48.89433300411238], [2.351604482536229, 48.894368429138176], [2.351410893680145, 48.89440397235364], [2.351216345835508, 48.894439396746606], [2.351022756461795, 48.89447493843307], [2.35082820807669, 48.89451036309244], [2.35063461817415, 48.89454590414919], [2.350440069271007, 48.89458132727642], [2.35024647882843, 48.894616868602704], [2.350051929396042, 48.89465229109711], [2.349858339799737, 48.89468783090175], [2.349663788474255, 48.894723252755924], [2.349470198337915, 48.894758792830096], [2.349275646483202, 48.89479421405141], [2.3492673469767062, 48.89479399448466], [2.349060401550411, 48.894744265113005], [2.348849769382435, 48.8946932616803], [2.348642824755381, 48.894643531582474], [2.348432192051396, 48.894592526503985], [2.3482252495873492, 48.894542795687414], [2.34801461769998, 48.89449178986979], [2.348005302364453, 48.89449176883041], [2.347991625736046, 48.894494972391115], [2.347852330008406, 48.89452760297746], [2.347647525861834, 48.89457614707312], [2.3474945530116322, 48.89461198076037], [2.347289748199568, 48.89466052424041], [2.347136774855216, 48.89469635746791], [2.347097710621428, 48.89467927683702]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 33, "zemmour_eric": 50.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-14", "circ_bv": "18", "num_bureau": 14, "roussel_fabien": 27.0, "nb_emargement": 1385.0, "nb_procuration": 74.0, "nb_vote_blanc": 8.0, "jadot_yannick": 113.0, "le_pen_marine": 68.0, "nb_exprime": 1372.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1892.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1385, "quartier_bv": "70", "geo_point_2d": [48.895846975583545, 2.3500898353991713], "melenchon_jean_luc": 689.0, "poutou_philippe": 8.0, "macron_emmanuel": 324.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.411531165921626, 48.85885140348506], [2.411527875104838, 48.85886629752732], [2.411504810825615, 48.858997575564274], [2.411481324597793, 48.8591302400936], [2.411458261437218, 48.859261518996355], [2.411434773608846, 48.85939418347831], [2.411411710224301, 48.85952546144157], [2.41138822215851, 48.85965812588278], [2.411365158529674, 48.859789404705126], [2.411341670226358, 48.85992206910566], [2.4113186063735452, 48.86005334698847], [2.411295117832602, 48.860186011348276], [2.411272053735487, 48.8603172900902], [2.411248564957114, 48.860449954409304], [2.411225500636019, 48.86058123221171], [2.411202011620111, 48.86071389649009], [2.411187518868764, 48.860721824835714], [2.411005385225688, 48.860713383076835], [2.410825626448573, 48.86070538711494], [2.4106434929216, 48.86069694480518], [2.410463732893769, 48.860688948292875], [2.410281599482906, 48.860680505432235], [2.410101839567342, 48.86067250837623], [2.409919706272599, 48.86066406496465], [2.409739946469411, 48.86065606736494], [2.409557813290691, 48.86064762340248], [2.40937805496266, 48.860639625265776], [2.409350249727626, 48.86064173998864], [2.409345875068653, 48.86064997706188], [2.40934201150057, 48.8606716834161], [2.409337945099395, 48.86069769482174], [2.409331032412055, 48.86070617747855], [2.40933424202241, 48.8607158243816], [2.409317417952661, 48.86082343852787], [2.409297480226262, 48.860954771841925], [2.409276590904107, 48.86108839736101], [2.409256651610301, 48.86121973063013], [2.409235762077296, 48.861353356110115], [2.409215822579164, 48.86148468934106], [2.4091949328352023, 48.86161831478199], [2.409174994495748, 48.86174964798148], [2.40915410316752, 48.86188327427586], [2.409134164634041, 48.86201460653791], [2.40911327445786, 48.86214823279997], [2.409093334356936, 48.86227956501701], [2.40907244396989, 48.86241319124], [2.409052505027654, 48.8625445234256], [2.409031613066614, 48.862678149602786], [2.409011673920045, 48.86280948175016], [2.408990781747922, 48.86294310788829], [2.408970842397118, 48.86307443999746], [2.408949951377056, 48.863208066103184], [2.408930010458767, 48.86333939816745], [2.408941619237955, 48.86334919535953], [2.409116999153018, 48.863365956328735], [2.409294325131673, 48.8633831268521], [2.409469703911486, 48.863399887297255], [2.409647031484824, 48.86341705730421], [2.409822410492327, 48.863433817232014], [2.409999736944631, 48.86345098580981], [2.410175117532582, 48.863467746126254], [2.410352444216602, 48.863484914180965], [2.410527823679462, 48.86350167307404], [2.410705151947967, 48.86351884151161], [2.410713791811943, 48.86353337782245], [2.410586010729228, 48.86363815665242], [2.410460237745143, 48.863741303035304], [2.410332454279425, 48.863846081568184], [2.410206681654313, 48.86394922767195], [2.410078897158455, 48.86405400681371], [2.4099531235294522, 48.86415715263166], [2.409825338023807, 48.864261930583766], [2.409699563390805, 48.86436507611587], [2.409571776865185, 48.86446985377757], [2.4094459998549, 48.86457299991642], [2.409424585869497, 48.864618139124204], [2.409435788488985, 48.86462267401396], [2.409628878018554, 48.86466642891671], [2.409818034427629, 48.86470965238531], [2.410011124600618, 48.864753406667944], [2.410200281642644, 48.86479662952902], [2.410393372448867, 48.86484038409082], [2.410582530123842, 48.864883606344364], [2.410775621583653, 48.86492735938674], [2.410964779891568, 48.86497058103276], [2.411153938513355, 48.865013802378115], [2.411347030935629, 48.86505755449346], [2.411536190180189, 48.86510077613059], [2.411729283245859, 48.86514452762576], [2.411733537582671, 48.86514501439441], [2.411943502276261, 48.86514677559492], [2.412151580750781, 48.86514826275681], [2.412361544108599, 48.86515002321723], [2.412569623960974, 48.86515151055834], [2.412779587345904, 48.86515327028537], [2.412987665870217, 48.865154755993686], [2.413197630645438, 48.86515651499407], [2.41340570919473, 48.865157999975565], [2.4136156739971373, 48.86515975824254], [2.413823752561074, 48.86516124339657], [2.413825171154466, 48.86516128272067], [2.413861209995438, 48.86514408220066], [2.41386066734351, 48.865126646760615], [2.413856491378196, 48.86499210410781], [2.413850912583845, 48.86486072743597], [2.413846735312073, 48.864726183844546], [2.4138411565707, 48.8645948071407], [2.41383711456606, 48.86446460079304], [2.413831535866842, 48.864333224956965], [2.413827493906543, 48.86420301857824], [2.413821915269817, 48.864071641811364], [2.413821959427096, 48.86407062487452], [2.413834665951038, 48.863973990108164], [2.413851968503737, 48.86384031335109], [2.413864674905825, 48.86374367946072], [2.413866140129818, 48.86373254381547], [2.413883441148395, 48.8635988679173], [2.4138949891593082, 48.86351104635956], [2.413906537131287, 48.86342322479379], [2.413923837953606, 48.863289547953144], [2.413926966790254, 48.8632657523426], [2.413927241067333, 48.86326366631696], [2.4139429462800113, 48.86314422719253], [2.413960246916258, 48.86301055031295], [2.413976017594257, 48.86289060964615], [2.413993319424357, 48.86275693273786], [2.413993346062556, 48.86275674580546], [2.414009116587523, 48.8626368051068], [2.4140303848206273, 48.86250494446771], [2.414046155184002, 48.86238500373699], [2.414067423220568, 48.86225314306133], [2.41408992602533, 48.862117409553434], [2.414111193841875, 48.86198554883821], [2.414133613164759, 48.8618503095195], [2.4141548807617, 48.86171844876471], [2.414177299866254, 48.86158320850597], [2.4141985672435933, 48.86145134771165], [2.414220987482905, 48.861316107418794], [2.414242254640641, 48.86118424658497], [2.41426467327851, 48.86104900714394], [2.414285940216652, 48.860917146270545], [2.4143083586362, 48.86078190588949], [2.414329625354851, 48.860650044976566], [2.414352044909044, 48.86051480456143], [2.414373311408001, 48.86038294360897], [2.414395729360887, 48.86024770404571], [2.41441699564026, 48.86011584305372], [2.414439413374831, 48.8599806025504], [2.414460679434724, 48.8598487415189], [2.41448309830393, 48.85971350098149], [2.41450436414414, 48.85958163991047], [2.414526781412072, 48.85944640022496], [2.414548047032707, 48.85931453911443], [2.4145704640823342, 48.85917929848885], [2.414591729483498, 48.8590474373388], [2.414595373691653, 48.85902636735623], [2.414593777755645, 48.85901883564], [2.414564806723511, 48.85901016993346], [2.414374387996889, 48.858999867961735], [2.414187485892677, 48.858989804140094], [2.4139970673150972, 48.85897950156778], [2.413810165356828, 48.858969437156645], [2.413619746928297, 48.85895913398378], [2.413432845115981, 48.85894906898315], [2.413245943365748, 48.85893900458985], [2.413055525170151, 48.85892869961961], [2.412868623565876, 48.8589186346368], [2.412678205519358, 48.85890832906596], [2.412491304061049, 48.858898263493685], [2.4123008861635142, 48.858887957322274], [2.412113984851282, 48.858877891160525], [2.411923567102841, 48.85886758438852], [2.411736665936492, 48.8588575176373], [2.411546248337255, 48.85884721026471], [2.411531165921626, 48.85885140348506]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 13, "zemmour_eric": 44.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-33", "circ_bv": "15", "num_bureau": 33, "roussel_fabien": 22.0, "nb_emargement": 923.0, "nb_procuration": 15.0, "nb_vote_blanc": 9.0, "jadot_yannick": 27.0, "le_pen_marine": 98.0, "nb_exprime": 906.0, "nb_vote_nul": 8.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1445.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 923, "quartier_bv": "80", "geo_point_2d": [48.86211678629697, 2.411987606384063], "melenchon_jean_luc": 484.0, "poutou_philippe": 6.0, "macron_emmanuel": 173.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291020235957023, 48.840758877655155], [2.291063063906882, 48.84073325840423], [2.29114381282714, 48.840606412217525], [2.291223663218991, 48.840480284633344], [2.2913044099940603, 48.840353438301385], [2.291384260972158, 48.84022731058955], [2.291465006964482, 48.840100464120454], [2.291544857166298, 48.83997433627279], [2.291625602363666, 48.839847490565944], [2.291705451789418, 48.83972136258251], [2.291786196216287, 48.83959451583924], [2.291866043503476, 48.83946838771196], [2.291946788510038, 48.83934154083961], [2.292026635021087, 48.839215412576614], [2.292031479028835, 48.839211473220736], [2.292187670196518, 48.83914004403082], [2.292359600390606, 48.839061886014164], [2.292515792022671, 48.838990456394306], [2.292687721243624, 48.838912296996284], [2.292843910615487, 48.83884086693039], [2.293015838838699, 48.838762707949634], [2.2931720273126572, 48.83869127744576], [2.293343954550437, 48.83861311798292], [2.293500143500963, 48.838541686149796], [2.293672069753412, 48.83846352620494], [2.293774130959552, 48.83841684885866], [2.293774959285662, 48.838409512179105], [2.293752575838581, 48.83839660625026], [2.293588459794074, 48.83831913211498], [2.293418237864311, 48.83823842890916], [2.293254122814881, 48.838160954304215], [2.293083901919337, 48.838080250611206], [2.292919787864781, 48.838002775536594], [2.292749568003551, 48.83792207135641], [2.292747886902787, 48.837908403552504], [2.292801412775892, 48.8378731120821], [2.292857881231593, 48.83783723540358], [2.292856354456363, 48.83782343810369], [2.292700830251615, 48.83775009123864], [2.292558301482041, 48.83768116139396], [2.29240277813342, 48.83760781323277], [2.292260250147037, 48.83753888302419], [2.292117721175265, 48.837469952633434], [2.29196219906458, 48.837396604784864], [2.29194405177704, 48.83739798042963], [2.291794568911204, 48.83751010523577], [2.291658366872479, 48.837611676114314], [2.291522162940581, 48.83771324682042], [2.29137267827532, 48.83782537016844], [2.291347421262226, 48.837844204488626], [2.291326795864887, 48.83785056406993], [2.291324826176741, 48.83785935185853], [2.291213878062504, 48.83794208877698], [2.291089606224026, 48.838035038141314], [2.290953400065312, 48.838136609060676], [2.290829127286234, 48.83822955903748], [2.290692921486244, 48.838331128751356], [2.290568646416618, 48.83842407843332], [2.290444372266042, 48.83851702798653], [2.29030816496511, 48.83861859723617], [2.290290631088188, 48.838620216402965], [2.290095198900355, 48.8385378479425], [2.289896801460142, 48.83845406302665], [2.289701370517638, 48.83837169391053], [2.289502972980531, 48.83828790832094], [2.289482575483551, 48.838292911785274], [2.2894251615986843, 48.838419916423014], [2.289376484053818, 48.83853129686913], [2.289367965619123, 48.838569891373666], [2.289375803847603, 48.83857269361458], [2.28945663516755, 48.83869181891912], [2.289535521823201, 48.83880770296034], [2.289616352510231, 48.838926828123846], [2.289695239876658, 48.839042712035344], [2.289776072643309, 48.839161837973265], [2.289854959370376, 48.83927772084769], [2.289935792866521, 48.8393968466526], [2.290014681666781, 48.8395127294054], [2.2900955145300212, 48.83963185506926], [2.290174404041081, 48.83974773769235], [2.29025523763393, 48.8398668632232], [2.290334127843452, 48.83998274661587], [2.290334648546235, 48.83998343052856], [2.290346964109875, 48.83999805001191], [2.290429544071928, 48.84009594262186], [2.290488067742705, 48.84016541717381], [2.290492286988714, 48.84018246548366], [2.290497461841021, 48.84018626633791], [2.290515327653106, 48.8402074445522], [2.290630619803129, 48.840342055343136], [2.290731068179757, 48.84046112681182], [2.290831515653001, 48.84058019817537], [2.290946809444157, 48.840714808616625], [2.290977598676787, 48.84073452093166], [2.290980232605871, 48.840736712119266], [2.291012675984076, 48.84075642343658], [2.291020235957023, 48.840758877655155]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 88, "zemmour_eric": 124.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "15-67", "circ_bv": "13", "num_bureau": 67, "roussel_fabien": 19.0, "nb_emargement": 1285.0, "nb_procuration": 76.0, "nb_vote_blanc": 23.0, "jadot_yannick": 94.0, "le_pen_marine": 73.0, "nb_exprime": 1254.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1645.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1284, "quartier_bv": "57", "geo_point_2d": [48.83887562775003, 2.291395270586177], "melenchon_jean_luc": 280.0, "poutou_philippe": 6.0, "macron_emmanuel": 524.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.310769188790851, 48.88799956021916], [2.310766928067725, 48.88799829443984], [2.31058751147771, 48.887929418813506], [2.310410222473478, 48.88785881855877], [2.310230805460369, 48.8877899432806], [2.310053518778208, 48.887719342496645], [2.309874102729401, 48.88765046577595], [2.309696817005841, 48.88757986445488], [2.3095174018974, 48.88751098809025], [2.309340117132337, 48.8874403862321], [2.309160702988311, 48.88737150842502], [2.308983419181644, 48.88730090602978], [2.308804005978073, 48.887232028578694], [2.308626723130003, 48.88716142564635], [2.308447310890656, 48.887092546752854], [2.308270029001084, 48.88702194328344], [2.308211270074663, 48.88698784293448], [2.30819376606958, 48.887000197530355], [2.308089071495136, 48.88707620205799], [2.307958180656871, 48.8871739546832], [2.307826462598023, 48.887269575460834], [2.307695570792564, 48.88736732688248], [2.307563853114153, 48.887462948261536], [2.307462854672361, 48.88753837464116], [2.307443241708042, 48.88755208030993], [2.3074419955564798, 48.887554004863624], [2.307412101195843, 48.88757632959584], [2.3072775208940532, 48.88767823569627], [2.307146627019002, 48.88777598738076], [2.307012045681653, 48.887877893164294], [2.306881149454549, 48.887975643633624], [2.306750254087707, 48.88807339485833], [2.306615671205983, 48.888175300168754], [2.306484774850961, 48.888273050186235], [2.30635019092168, 48.88837495607901], [2.306219293566295, 48.888472705788466], [2.306084708613405, 48.88857461046506], [2.305953810245766, 48.8886723607658], [2.30581922425728, 48.88877426512546], [2.305688324901348, 48.88887201421898], [2.305553737877359, 48.88897391826173], [2.305422837509146, 48.88907166794645], [2.305288249449441, 48.88917357167227], [2.305157348092928, 48.88927132014974], [2.305022758985598, 48.88937322445787], [2.304891855265166, 48.889470972619414], [2.304757266497923, 48.88957287571926], [2.304709036179225, 48.88960888988921], [2.304694563378126, 48.88961553822607], [2.304685829003985, 48.88962650968204], [2.304603154534333, 48.889688244247886], [2.304452524734573, 48.88980404468965], [2.304321620212195, 48.88990179309661], [2.304170989168552, 48.89001759316169], [2.30404008358079, 48.89011534124189], [2.30402350418232, 48.89011734391143], [2.3039565748204662, 48.89009409124973], [2.303918041629505, 48.890056648542476], [2.30385826285365, 48.89008062606206], [2.3037289611998473, 48.89017892362203], [2.303591819951682, 48.89028098409842], [2.303462518649154, 48.89037928225988], [2.303325374987283, 48.89048134240459], [2.303196072696138, 48.89057963936115], [2.303058929348039, 48.890681699189976], [2.302929624680659, 48.890779996732206], [2.302792480282577, 48.89088205623724], [2.302663175990323, 48.890980352582474], [2.302526029178598, 48.891082411755775], [2.302472473986093, 48.89112312444116], [2.302457994213878, 48.89114052212786], [2.302496443698615, 48.89116281560469], [2.302614802177577, 48.89115120217129], [2.302698586756594, 48.891142981907166], [2.302703559991615, 48.89114181206345], [2.302808661050704, 48.89110051536511], [2.302910725054746, 48.89106041228846], [2.302912139721123, 48.89105977390718], [2.303013543515041, 48.891007543059565], [2.30316710193669, 48.89092879318644], [2.303373615175076, 48.890823109652594], [2.303527172520251, 48.89074435840525], [2.303527520032941, 48.890744174265606], [2.303641470261064, 48.89068181567313], [2.303755718356688, 48.89061929322589], [2.303869668038221, 48.89055693440913], [2.303983914210061, 48.890494412628364], [2.303985521367386, 48.890493655742446], [2.304157806864581, 48.89042434486063], [2.304357739131754, 48.89034391946677], [2.304392172486504, 48.890330066597464], [2.304420622363052, 48.890324307089955], [2.304421808095475, 48.89031425948719], [2.304559657797946, 48.8902588017861], [2.304702609447101, 48.89020322695987], [2.304874893028796, 48.890133915028], [2.305017842634897, 48.89007833981123], [2.30501875268672, 48.890078004247684], [2.305195004765682, 48.89001876218323], [2.305372296235002, 48.889959170653285], [2.305548546145851, 48.88989992805415], [2.305725836817931, 48.88984033509505], [2.305902087288017, 48.889781091977056], [2.306079377138868, 48.88972149938733], [2.306255626804462, 48.88966225574253], [2.306432914482358, 48.889602662615054], [2.306609163343361, 48.88954341844343], [2.306786451587814, 48.88948382389467], [2.30696269964432, 48.889424579196344], [2.307139987067457, 48.88936498501694], [2.307316234319568, 48.889305739791816], [2.307493519581716, 48.88924614417541], [2.307669766029328, 48.88918689842348], [2.307847051833982, 48.88912730318436], [2.308023297477096, 48.8890680569057], [2.308200581108802, 48.889008461128796], [2.308376825959361, 48.88894921342411], [2.308554110145526, 48.88888961712523], [2.308730354179534, 48.88883036979304], [2.308907637556451, 48.8887707729643], [2.309083880786058, 48.88871152510536], [2.309261162001961, 48.88865192683962], [2.309276153859508, 48.888651834356054], [2.309285297547133, 48.888643539528275], [2.309456448119171, 48.88858198823749], [2.309625581189393, 48.88852116251867], [2.309796730956959, 48.888459610734614], [2.309965863232293, 48.8883987845284], [2.31013701218347, 48.888337233150395], [2.310306142300028, 48.88827640644887], [2.31047729045865, 48.88821485367839], [2.310646421144006, 48.88815402649728], [2.310651625470164, 48.88815071455127], [2.310703358604331, 48.88809311534212], [2.310762505173716, 48.888027262466935], [2.310769188790851, 48.88799956021916]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 141, "zemmour_eric": 133.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "17-15", "circ_bv": "03", "num_bureau": 15, "roussel_fabien": 11.0, "nb_emargement": 1177.0, "nb_procuration": 67.0, "nb_vote_blanc": 13.0, "jadot_yannick": 64.0, "le_pen_marine": 78.0, "nb_exprime": 1164.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1452.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1178, "quartier_bv": "67", "geo_point_2d": [48.88868588237849, 2.3072578950610647], "melenchon_jean_luc": 204.0, "poutou_philippe": 3.0, "macron_emmanuel": 499.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.33416542691612, 48.87096059173772], [2.334137696711494, 48.870949858528775], [2.334031568909159, 48.87093170216631], [2.333836873564461, 48.870899283907995], [2.333650943540435, 48.870867475316665], [2.333456248672683, 48.87083505643739], [2.333270319110445, 48.87080324725297], [2.333075624719548, 48.8707708277527], [2.33288969563052, 48.87073901707597], [2.332695003068398, 48.87070659786157], [2.332509074440975, 48.870674786591735], [2.332314381004112, 48.870642365849534], [2.332128452826979, 48.8706105548859], [2.331933759866992, 48.87057813352267], [2.331737882430308, 48.870544756421936], [2.33154318995935, 48.87051233442149], [2.331347313031904, 48.870478955780364], [2.331152621049985, 48.87044653314278], [2.330956744620248, 48.870413153860476], [2.330762053127376, 48.87038073058567], [2.330566177195256, 48.870347350662264], [2.3303714861799802, 48.87031492764952], [2.330175609382467, 48.87028154707737], [2.329980920230927, 48.87024912253576], [2.329785043931149, 48.8702157413225], [2.329590355268677, 48.87018331614372], [2.32939447946654, 48.87014993428932], [2.329199789918453, 48.87011750936502], [2.329003915977276, 48.870084126877146], [2.328809226929851, 48.87005170041635], [2.328613353486431, 48.87001831728736], [2.328418664928099, 48.869985890189376], [2.328222791982444, 48.86995250641928], [2.328133629800614, 48.86993765605531], [2.328088167837108, 48.869917934587434], [2.328025719375111, 48.86994365685338], [2.327920193500364, 48.8699260802864], [2.327725155833976, 48.86989224172243], [2.32753046829978, 48.8698598131761], [2.327335432497886, 48.86982597398273], [2.327140745453883, 48.869793544800544], [2.326945708790181, 48.86975970496245], [2.326751023588062, 48.86972727605142], [2.326555987425558, 48.86969343557626], [2.326361301362267, 48.86966100512242], [2.326166267064274, 48.86962716401791], [2.3259715814912, 48.86959473292825], [2.325895962744216, 48.86958161194355], [2.325858813652172, 48.86958792115501], [2.325842425475586, 48.869619962381265], [2.325877725255418, 48.86975391869185], [2.325911829989011, 48.86988584472308], [2.325947130127503, 48.870019800981], [2.325981236574062, 48.8701517269684], [2.326016535708107, 48.87028568316597], [2.326050642504536, 48.870417609101814], [2.326085941997142, 48.87055156524667], [2.326120049143546, 48.87068349113102], [2.326155350358051, 48.870817447230834], [2.326189456491103, 48.87094937305601], [2.326224758064289, 48.87108332910313], [2.326258865910358, 48.87121525488442], [2.32629416647899, 48.871349210871166], [2.326328274663419, 48.871481137500204], [2.326363575602366, 48.87161509253497], [2.326397684136691, 48.87174701911248], [2.326432986785957, 48.87188097500146], [2.326467094318553, 48.87201290062048], [2.326502397326522, 48.87214685645673], [2.326536506572186, 48.87227878203187], [2.326541268305974, 48.872315088233165], [2.326542416691566, 48.87231579168341], [2.326576526137689, 48.872447718126274], [2.326608758098352, 48.87257829845974], [2.326642867896028, 48.87271022395305], [2.326675098810535, 48.872840805129236], [2.326709208948142, 48.872972730572236], [2.3267414401914, 48.87310331169954], [2.326742347352811, 48.8731053807876], [2.326799884684336, 48.8732063945133], [2.3268529090825822, 48.87328876648396], [2.326910446842717, 48.8733897792405], [2.32696142282836, 48.87350050390871], [2.327018959669632, 48.87360151658599], [2.327069936093171, 48.873712241186794], [2.327070617606027, 48.87371689820144], [2.327066645473578, 48.87373245693075], [2.327067691489037, 48.87373412209282], [2.327037934900936, 48.87385067649575], [2.3270037810860362, 48.873975790352866], [2.326970052027026, 48.87410790343526], [2.326935899255238, 48.874233016352214], [2.326902169857479, 48.8743651293847], [2.326868015379123, 48.87449024314472], [2.326834285642505, 48.87462235612731], [2.326800132207371, 48.87474746894717], [2.326766402131994, 48.87487958187982], [2.326732246990165, 48.875004695542785], [2.326698516576121, 48.875136808425495], [2.326664362477418, 48.8752619211483], [2.326630631724606, 48.875394033981074], [2.326596475919284, 48.875519147546946], [2.326580807580767, 48.875563737628106], [2.326614372629533, 48.875582290031744], [2.326721668352579, 48.87559765258957], [2.326807633915939, 48.875591654530915], [2.326814621228703, 48.87559346911846], [2.326886060570802, 48.875572611388485], [2.326890162899287, 48.87557273518169], [2.327078005064657, 48.87559746724015], [2.327281522755682, 48.87562241300226], [2.327469365286047, 48.87564714444549], [2.32767288337033, 48.875672088641885], [2.32786072625407, 48.87569682036919], [2.328064244719784, 48.875721763899094], [2.328252087980107, 48.87574649411193], [2.328455606815848, 48.875771437874604], [2.328643450441139, 48.8757961674722], [2.328846969658297, 48.875821110568445], [2.329034813648549, 48.8758458395508], [2.329238331883959, 48.87587078197292], [2.329426176239162, 48.87589551034006], [2.329629696231013, 48.87592045120409], [2.329817540951157, 48.875945178956], [2.330021061312822, 48.87597012005279], [2.330208906397902, 48.875994847189524], [2.330210511662647, 48.875995126871864], [2.33036235078669, 48.87602772835142], [2.33057789022642, 48.87607464718591], [2.330729729812241, 48.87610724819714], [2.330945269900437, 48.87615416726604], [2.331097109948032, 48.87618676780894], [2.331099705594915, 48.87618753865538], [2.331253225495493, 48.87624658799908], [2.331431126162588, 48.87631876333392], [2.331584645462422, 48.876377812238], [2.331712227578203, 48.87642957271259], [2.331736831994473, 48.87643300883442], [2.331762358248057, 48.87640752921788], [2.331819606562731, 48.87627874714101], [2.331876036997572, 48.87615035346886], [2.331933284748493, 48.87602157130765], [2.331989714636004, 48.87589317665269], [2.3320469618230772, 48.87576439440705], [2.332103389776939, 48.8756360005603], [2.332160636400279, 48.87550721823024], [2.332217065158654, 48.875378824307546], [2.332274311218265, 48.87525004189311], [2.332330739429226, 48.87512164698763], [2.332387984925217, 48.87499286448884], [2.332444412565817, 48.87486447039911], [2.332501657498095, 48.87473568781592], [2.332558084579871, 48.87460729364268], [2.332615328959966, 48.87447851007585], [2.332671755482925, 48.87435011581913], [2.3327289992877, 48.87422133306718], [2.332785425251851, 48.874092938726946], [2.332842667129724, 48.87396415588306], [2.332899092546697, 48.873835760560034], [2.332956335224104, 48.87370697763937], [2.333012760070666, 48.87357858313211], [2.333070002184503, 48.87344980012708], [2.333126426472281, 48.87332140553639], [2.333183668033966, 48.8731926215477], [2.333240091762967, 48.87306422687351], [2.333297332749483, 48.87293544369975], [2.333353755919716, 48.872807048942036], [2.333410996342482, 48.87267826568393], [2.333467418965462, 48.87254986994349], [2.333524658824689, 48.872421086601044], [2.333581079514241, 48.87229269166876], [2.3336383188097383, 48.87216390824204], [2.3336947403037183, 48.87203551323387], [2.3337511615310502, 48.87190711728492], [2.333808399982439, 48.87177833373184], [2.333864820639536, 48.8716499385987], [2.333922058527314, 48.8715211549613], [2.333978478625687, 48.871392759744694], [2.3340357159498613, 48.87126397602295], [2.334092135501016, 48.87113557982362], [2.334149372261594, 48.87100679601756], [2.33416542691612, 48.87096059173772]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 93, "zemmour_eric": 134.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "9-7", "circ_bv": "01", "num_bureau": 7, "roussel_fabien": 13.0, "nb_emargement": 1121.0, "nb_procuration": 66.0, "nb_vote_blanc": 18.0, "jadot_yannick": 82.0, "le_pen_marine": 58.0, "nb_exprime": 1100.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1419.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1121, "quartier_bv": "34", "geo_point_2d": [48.872849888260085, 2.329778325443047], "melenchon_jean_luc": 199.0, "poutou_philippe": 4.0, "macron_emmanuel": 464.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.402237766441933, 48.844953937936474], [2.402266044683617, 48.8449822317708], [2.402289584293044, 48.845046953721656], [2.402308492569278, 48.845086234927685], [2.402333739833379, 48.84510412603814], [2.4023812600466092, 48.84511160594196], [2.402472110875893, 48.84511155340328], [2.40259040734901, 48.84511473883106], [2.402601631863601, 48.845119205322945], [2.402695531964154, 48.84522582335307], [2.402786737447922, 48.845329800827905], [2.402880636944121, 48.8454364186858], [2.402971843165743, 48.84554039599992], [2.403063049751298, 48.84564437323476], [2.403156950379549, 48.84575099084571], [2.403158724301806, 48.84575458092855], [2.403180129046722, 48.845890549718995], [2.403201504661172, 48.84602657320382], [2.403222909629514, 48.84616254195346], [2.403244285467185, 48.846298565397454], [2.403265690658755, 48.84643453410624], [2.40328706671975, 48.8465705575094], [2.403308472134651, 48.84670652617736], [2.403329848418771, 48.84684254953968], [2.4033512540571103, 48.846978518166765], [2.4033726305747543, 48.84711454058894], [2.403394036426036, 48.8472505100745], [2.403415413167015, 48.84738653245578], [2.403436820604272, 48.84752250190729], [2.403458196205753, 48.84765852424098], [2.403477098791983, 48.847698342946316], [2.4034941023344603, 48.847699782150634], [2.403552735369352, 48.84769461808989], [2.403751230316229, 48.84767664461133], [2.403951289553973, 48.84765902304963], [2.404149784227915, 48.84764104890929], [2.404349843194244, 48.8476234266806], [2.404548337595037, 48.847605451878444], [2.404748396289939, 48.847587828982775], [2.404946889055145, 48.84756985351205], [2.405146947478611, 48.84755222994936], [2.405345441333284, 48.84753425382362], [2.405545499485305, 48.847516629593954], [2.405743993067005, 48.84749865280643], [2.405944050947571, 48.84748102790973], [2.406142544256084, 48.84746305046044], [2.406342601865186, 48.847445424896776], [2.406354083845668, 48.84743920438104], [2.406331287485421, 48.84738800887146], [2.40630227896292, 48.84725425781905], [2.406272463101751, 48.847119259829086], [2.406243454879713, 48.84698550873014], [2.406213640697539, 48.846850509800404], [2.406184631413549, 48.84671675864819], [2.40615481752715, 48.84658176057053], [2.406125809906327, 48.84644800937855], [2.40609599497369, 48.84631301034761], [2.406066987653419, 48.846179259109114], [2.406037173016755, 48.846044260930306], [2.406008165996928, 48.84591050964528], [2.405978353039218, 48.84577551052667], [2.405949344957448, 48.84564175918842], [2.405919532295488, 48.84550676092192], [2.405890525887092, 48.84537300864456], [2.405860712168656, 48.84523801032414], [2.40583170605054, 48.8451042588996], [2.405801892638308, 48.84496926053192], [2.40579431688688, 48.84493432700084], [2.4058047385753882, 48.84491887656746], [2.4057931563119412, 48.84490393829917], [2.405771724908169, 48.84480511945025], [2.405736530385556, 48.84468952218842], [2.4057156095194943, 48.84468014140789], [2.405679040539975, 48.844692975224646], [2.405491734881316, 48.84470583799623], [2.405305543550098, 48.844718240147756], [2.405118237698196, 48.84473110323359], [2.404932046187839, 48.84474350480354], [2.404744740163229, 48.84475636640503], [2.404558548473846, 48.844768767393404], [2.404371242266171, 48.844781628409834], [2.404185050397669, 48.844794028816665], [2.403997744007142, 48.84480688924805], [2.403811551959427, 48.84481928907329], [2.403624245375661, 48.84483214981894], [2.403438053159237, 48.844844548163316], [2.403250746392426, 48.844857408323925], [2.403064553986611, 48.84486980698604], [2.402877247047165, 48.84488266566227], [2.402691053099699, 48.844895063736026], [2.402503747339995, 48.844907921834], [2.402317553213451, 48.84492031932618], [2.402243872347027, 48.84493338488207], [2.402241248846854, 48.844942216041495], [2.402237766441933, 48.844953937936474]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 67, "zemmour_eric": 81.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "12-31", "circ_bv": "08", "num_bureau": 31, "roussel_fabien": 19.0, "nb_emargement": 1115.0, "nb_procuration": 58.0, "nb_vote_blanc": 14.0, "jadot_yannick": 110.0, "le_pen_marine": 49.0, "nb_exprime": 1098.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 6, "nb_inscrit": 1405.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1117, "quartier_bv": "45", "geo_point_2d": [48.846152613831876, 2.4045709966632893], "melenchon_jean_luc": 334.0, "poutou_philippe": 7.0, "macron_emmanuel": 363.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.349665047624097, 48.84142925475163], [2.349705056221332, 48.84142976184401], [2.349798553232253, 48.84132765266954], [2.349888460866336, 48.84122882906991], [2.349981957157507, 48.84112671973372], [2.350071864097343, 48.84102789597845], [2.350165359668772, 48.84092578648055], [2.350255267276613, 48.84082696257704], [2.350348760765858, 48.840724852910036], [2.350438667679462, 48.84062602885092], [2.3504443664763652, 48.8406225783566], [2.350599236249722, 48.840572631201816], [2.350742672948456, 48.840527054759754], [2.35088610939644, 48.84048147814388], [2.351040978327124, 48.840431530410875], [2.35105407645479, 48.840431941427745], [2.351229496777975, 48.84050286618135], [2.351404028113325, 48.84057442709724], [2.3515794493922613, 48.84064535132865], [2.351753980322858, 48.84071691171742], [2.351766238241252, 48.84071762028894], [2.351938876932572, 48.84067194614239], [2.35210852981034, 48.84062782586472], [2.352281167893008, 48.840582152119794], [2.352450820200028, 48.84053803045386], [2.352623457685323, 48.840492356211314], [2.352793109399139, 48.8404482349557], [2.352801887341748, 48.84044796227377], [2.352984665422642, 48.84048284445747], [2.353170921375451, 48.840518783930584], [2.353353698589332, 48.84055366554089], [2.353539955049678, 48.84058960443721], [2.353722734110173, 48.84062448638806], [2.353908991078054, 48.840660424707465], [2.353918628879568, 48.84065992545114], [2.353943395547547, 48.840651881296495], [2.353935030490649, 48.840627416590074], [2.35395120310673, 48.84049697384715], [2.353967193287258, 48.84036541399111], [2.353983365741552, 48.84023497121323], [2.353999355760622, 48.84010341132203], [2.35401552805313, 48.839972968509166], [2.3540315178993962, 48.83984140948213], [2.3540476900412672, 48.83971096573502], [2.354063679725978, 48.8395794066728], [2.354079851706067, 48.83944896289075], [2.354095841229329, 48.839317403793416], [2.354112013036496, 48.83918696087573], [2.354128002409251, 48.839055400843904], [2.354117400140439, 48.839045905659795], [2.353904963210515, 48.839014494785694], [2.353685154521997, 48.83898481635094], [2.353472718101542, 48.8389534047075], [2.353252909927826, 48.838923724577526], [2.353242034829243, 48.838916247813174], [2.353211658334516, 48.83891692717435], [2.353211031416892, 48.838916832049286], [2.353004236218955, 48.838882123318626], [2.352801331045869, 48.83884753150703], [2.3525945363956993, 48.838812822066], [2.352391633126588, 48.83877822956465], [2.352184837661798, 48.838743519405824], [2.351981934934372, 48.838708926207396], [2.351779031113979, 48.8386743326564], [2.351572237820552, 48.83863962234198], [2.351369334541754, 48.838605028093895], [2.35116254180731, 48.83857031616972], [2.350959640432714, 48.838535721231985], [2.350752846883688, 48.83850100859002], [2.35074732392443, 48.83849911332828], [2.350604099334011, 48.838418977608086], [2.350436975512783, 48.838324152092845], [2.350293751869145, 48.838244016887835], [2.350126629173486, 48.838149190924106], [2.349983407850002, 48.8380690553424], [2.349816284917527, 48.83797422892288], [2.349673064551907, 48.837894092957036], [2.349505944107467, 48.837799266096454], [2.349362723348564, 48.83771912883981], [2.349287101287632, 48.83773200202517], [2.349283634976099, 48.837736497989084], [2.349342122109992, 48.837855542432315], [2.349405488355769, 48.837990747105245], [2.349463977415726, 48.838109791469215], [2.349527344286571, 48.83824499604683], [2.349585832547745, 48.83836404031674], [2.349649200043864, 48.83849924479904], [2.349707690231032, 48.83861828898969], [2.349771058352237, 48.83875349337665], [2.349829547729406, 48.83887253837255], [2.349888038747363, 48.838991582435256], [2.349951407790214, 48.83912678668152], [2.349951754723928, 48.839131196357094], [2.349918689954768, 48.839241109791644], [2.349890966420153, 48.839353717954246], [2.349857900019232, 48.83946363134267], [2.349830176235027, 48.83957623946878], [2.349797110927066, 48.839686152825934], [2.349769385530747, 48.839798760908074], [2.3497692282533063, 48.83980066490817], [2.349781107824374, 48.8398980857345], [2.349790398138546, 48.84001739470775], [2.349790391788104, 48.84001888671945], [2.349776012206787, 48.84012928562318], [2.349756192322231, 48.84027024503036], [2.349741812599131, 48.84038064390513], [2.349741802052487, 48.840380724790606], [2.349721981979696, 48.8405216841604], [2.349705268544561, 48.840637728221324], [2.34969719054534, 48.840644470910505], [2.349700712799196, 48.84066542545998], [2.349693467413398, 48.84071572978498], [2.34967710430527, 48.84080914682561], [2.349665134720023, 48.840912763147124], [2.349648771499256, 48.84100618016738], [2.349648697098248, 48.84100679222975], [2.34963672603756, 48.84111040942195], [2.349627332567805, 48.84124287422163], [2.349621072185037, 48.841315667966384], [2.349621136604501, 48.841317056934294], [2.349627107557608, 48.841356665898346], [2.349636666368592, 48.84141492288665], [2.349665047624097, 48.84142925475163]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 69, "zemmour_eric": 78.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "5-16", "circ_bv": "02", "num_bureau": 16, "roussel_fabien": 17.0, "nb_emargement": 1244.0, "nb_procuration": 88.0, "nb_vote_blanc": 11.0, "jadot_yannick": 96.0, "le_pen_marine": 50.0, "nb_exprime": 1230.0, "nb_vote_nul": 3.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1502.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1244, "quartier_bv": "18", "geo_point_2d": [48.839609420411264, 2.351621687304778], "melenchon_jean_luc": 386.0, "poutou_philippe": 7.0, "macron_emmanuel": 467.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.359619368839235, 48.8189556379889], [2.359615087880348, 48.81894125105127], [2.359630609838141, 48.81889102551711], [2.359668994778405, 48.81875295757038], [2.359708307213621, 48.81862574109728], [2.359746691752876, 48.81848767309307], [2.359786005160399, 48.81836045657177], [2.3598243892986472, 48.81822238851007], [2.359863702305567, 48.81809517283256], [2.359902086042713, 48.817957104713344], [2.359944875414595, 48.81781559393271], [2.359983258731019, 48.817677525753176], [2.360026049014942, 48.81753601491563], [2.360031835957429, 48.817516469044264], [2.360031915287668, 48.817516219440705], [2.360074893815634, 48.8173940831616], [2.360100875966142, 48.817317862884394], [2.360142998207027, 48.817192897019126], [2.360185976197199, 48.81707076156433], [2.360228099396371, 48.8169457956489], [2.360271076983563, 48.816823660136734], [2.360313198417268, 48.816698694156635], [2.3603561756015923, 48.81657655858706], [2.360398297993581, 48.81645159255686], [2.360441274774837, 48.816329456929914], [2.360483395401587, 48.81620449083505], [2.360526371779884, 48.81608235515068], [2.360527122456578, 48.816065451664855], [2.360465454624009, 48.81605276070788], [2.360346772006044, 48.81605140452636], [2.3601418718991622, 48.816048622720324], [2.359962943153282, 48.81604657858139], [2.359758043096883, 48.816043795218256], [2.359575462363272, 48.81604170845912], [2.359370562335648, 48.81603892533125], [2.359187981634596, 48.81603683798042], [2.358983081657847, 48.81603405328919], [2.358800500989369, 48.816031965346625], [2.358630111445791, 48.81603001627112], [2.35842521151458, 48.81602723152317], [2.358254820638801, 48.81602528190552], [2.358049920746236, 48.8160224965145], [2.357898767684696, 48.81602076659677], [2.357693867839972, 48.81601797969623], [2.357528874706062, 48.816016091317756], [2.357323974888397, 48.8160133046826], [2.35715898043196, 48.816011414887036], [2.356993987338094, 48.81600952577047], [2.356789087574817, 48.816006738218675], [2.356683549424571, 48.81600552915655], [2.356478649693595, 48.816002741072815], [2.356388716380947, 48.8160017101732], [2.3563851528716, 48.81600166940568], [2.356292197997133, 48.816000604180715], [2.356272858104196, 48.81600038223827], [2.356067958415406, 48.815997593450646], [2.355960339657682, 48.81599635995316], [2.355929627827792, 48.81599693650968], [2.355795663998269, 48.81609456327602], [2.355669965326814, 48.816185981914366], [2.3555442648640392, 48.81627739950654], [2.355410300954368, 48.81637502582414], [2.355284599569568, 48.81646644402731], [2.3551506346881093, 48.81656407003758], [2.355024933754105, 48.81665548795973], [2.354890966539034, 48.816753113655345], [2.354765264705335, 48.816844530389865], [2.3546312978691573, 48.81694215668482], [2.354505593762706, 48.817033573123645], [2.3543716259657472, 48.81713119821196], [2.354245920937222, 48.81722261526176], [2.354111952168548, 48.81732024004275], [2.353986246229073, 48.81741165680421], [2.353852276488575, 48.817509281277836], [2.353726571011132, 48.81760069685899], [2.353632033888669, 48.817669586683685], [2.353578117554481, 48.8177097584195], [2.353571190929565, 48.8177148060796], [2.353527338790526, 48.817746760582594], [2.353497603747897, 48.81776842781824], [2.353420427302874, 48.81782593072143], [2.353370363689546, 48.81786323257924], [2.353238817351591, 48.81795908866799], [2.353229830059039, 48.817965784521206], [2.353087560195703, 48.81807178682088], [2.35295601281176, 48.81816764258075], [2.352934956352286, 48.81818298451285], [2.3529242088906273, 48.81819081662947], [2.352781937803305, 48.81829681764503], [2.352674381581515, 48.81837519034567], [2.352532109483292, 48.81848119104658], [2.3524245525057133, 48.818559563509666], [2.352409340481652, 48.818565748914146], [2.352409317609737, 48.818584478415], [2.35249743552537, 48.81870661318718], [2.352582677064227, 48.81882855782484], [2.35267079579838, 48.818950692442826], [2.352756038141564, 48.819072636930436], [2.35284415769425, 48.81919477139412], [2.352929400841974, 48.819316715731745], [2.352927991180923, 48.81932582782758], [2.3528112671564863, 48.81943019975041], [2.352691148174031, 48.81953779184435], [2.352574423212201, 48.819642162617015], [2.352454303252758, 48.81974975445276], [2.352337577331194, 48.8198541258739], [2.352217456394752, 48.81996171745144], [2.352224505625946, 48.81997566815911], [2.352426006907579, 48.82001558855454], [2.352620899644735, 48.820054345904715], [2.352629941084084, 48.820065702766556], [2.352565825943631, 48.82019777591728], [2.352501755917455, 48.82033090603601], [2.352437640126221, 48.82046297908683], [2.35237357080881, 48.820596109112884], [2.352309453004863, 48.82072818205645], [2.352245383034295, 48.82086131198244], [2.352250200595289, 48.820870178084824], [2.352276093049729, 48.8208720802281], [2.352461188518326, 48.820872516107784], [2.352645193773708, 48.82087278211164], [2.352830289247779, 48.82087321741996], [2.353014295869446, 48.82087348286323], [2.353199391338028, 48.82087391849954], [2.353383396613268, 48.82087418246811], [2.353567401879118, 48.820874447052894], [2.353752497355739, 48.82087488183307], [2.353936502626029, 48.82087514584988], [2.354121598119244, 48.82087557915938], [2.35430560339386, 48.82087584260823], [2.354490698892713, 48.8208762753464], [2.354494411716225, 48.820875943731885], [2.354662498222596, 48.82084493380586], [2.354829001341217, 48.82081429823638], [2.35499550562611, 48.820783662441585], [2.355163590186182, 48.820752650901966], [2.355330094077629, 48.82072201463959], [2.355498179590785, 48.82069100353461], [2.355504602447033, 48.82068838318404], [2.355644299298382, 48.820586653520316], [2.355786408410343, 48.82048310104887], [2.355926104150802, 48.820381371936705], [2.356068212143639, 48.82027781911143], [2.356207905433526, 48.820176088744844], [2.356350012307248, 48.820072535565785], [2.356368531504149, 48.82007150922651], [2.356495857082741, 48.82013773144514], [2.356618037579961, 48.820201512802356], [2.356745363792882, 48.82026773474764], [2.356867544899924, 48.820331515842575], [2.356875367488978, 48.82033344481518], [2.3570597002977, 48.82033901933447], [2.3572432907071, 48.82034438541945], [2.357427623593832, 48.82034995937157], [2.35761121409069, 48.820355323992324], [2.357795547044342, 48.82036089827651], [2.357979137617566, 48.82036626233234], [2.358163470649217, 48.82037183604929], [2.358347061298799, 48.820377199540204], [2.358531394408441, 48.820382772689946], [2.358714985134474, 48.82038813561588], [2.358899318333156, 48.820393707299075], [2.359082909124372, 48.820399070559375], [2.359147364788384, 48.82040662454988], [2.3591534768857763, 48.82039746654636], [2.359167732997421, 48.82035400757692], [2.359207047862797, 48.820226791449656], [2.359250748302279, 48.82009357385083], [2.35929006413056, 48.81996635767417], [2.35933376276683, 48.819833140906205], [2.359373078196211, 48.81970592467276], [2.359416776413087, 48.819572706944314], [2.359456091432527, 48.81944549155344], [2.359499789219167, 48.819312273763785], [2.359539103850765, 48.81918505741689], [2.359582801206974, 48.81905183956604], [2.359606593463713, 48.81897484869396], [2.359619368839235, 48.8189556379889]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 45, "zemmour_eric": 66.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-42", "circ_bv": "10", "num_bureau": 42, "roussel_fabien": 13.0, "nb_emargement": 1109.0, "nb_procuration": 13.0, "nb_vote_blanc": 15.0, "jadot_yannick": 44.0, "le_pen_marine": 108.0, "nb_exprime": 1088.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1551.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1109, "quartier_bv": "51", "geo_point_2d": [48.818431507510375, 2.3564466696850856], "melenchon_jean_luc": 495.0, "poutou_philippe": 8.0, "macron_emmanuel": 239.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303481595359494, 48.82701156477349], [2.303486344923119, 48.82701699141236], [2.303513343698968, 48.82703906743763], [2.303643273123221, 48.82714344969153], [2.303770513202592, 48.827247494157], [2.303900443661168, 48.82735187611219], [2.304027684762346, 48.827455920284734], [2.304157616267256, 48.82756030104178], [2.304284858390452, 48.827664344921374], [2.304414792279802, 48.827768726286884], [2.30454203406272, 48.827872769865614], [2.304617866332633, 48.82793368775956], [2.304612879459895, 48.82794859025089], [2.30461414253854, 48.82795816518756], [2.304736826419062, 48.82805440870328], [2.304790927947292, 48.828097870910234], [2.304920863930241, 48.828202251685575], [2.305043547601255, 48.828298493958485], [2.305173484590112, 48.828402874440656], [2.305296169187605, 48.828499117336534], [2.305418855600089, 48.82859536010619], [2.305548794092253, 48.82869973925368], [2.3056714800811973, 48.82879598173905], [2.305801419567208, 48.82890036149271], [2.3059241064945413, 48.82899660370175], [2.30605404698639, 48.82910098316225], [2.306176734864292, 48.82919722419557], [2.306306676361986, 48.82930160336296], [2.306429365166323, 48.829397845019194], [2.306559307669872, 48.82950222389341], [2.306681997424786, 48.829598464373994], [2.306811940934199, 48.82970284295502], [2.306811996195502, 48.82970288734481], [2.306934686877184, 48.829799128448265], [2.307054101605994, 48.82989630827068], [2.307176794551888, 48.82999254911706], [2.307257327168186, 48.83005808643257], [2.307267353505037, 48.83007006394957], [2.307276306660282, 48.83007464057279], [2.30731518834091, 48.83010628190739], [2.307439033380077, 48.830210109081115], [2.307558448628269, 48.83030728835649], [2.307682294617589, 48.83041111615902], [2.307801712141852, 48.83050829518197], [2.30792555910512, 48.830612121814696], [2.3080449761811153, 48.83070930056944], [2.308063612956157, 48.83072492443309], [2.308064699152362, 48.830725504519314], [2.308134611497737, 48.830696989528214], [2.308271575965771, 48.830629944513], [2.308449741011874, 48.83054312015756], [2.308586704658548, 48.83047607567157], [2.308764868653951, 48.83038925083477], [2.308901831491002, 48.83032220597871], [2.309079993073645, 48.830235380652745], [2.309216955101176, 48.83016833542658], [2.309221749194262, 48.830158234337006], [2.309160949104649, 48.8300393237176], [2.309100510268581, 48.829920003225475], [2.309039710721424, 48.82980109341853], [2.30897927243903, 48.829681772839756], [2.308981364650826, 48.82967346209322], [2.3090517375795923, 48.82961262110251], [2.309120197805002, 48.82955547805017], [2.309123119099453, 48.82954946550145], [2.3091131808401633, 48.82941343305219], [2.309092878871696, 48.82928901283364], [2.3090918559987292, 48.829285609076855], [2.309063761413229, 48.82927646828633], [2.30889310319434, 48.82919829046345], [2.308727016034856, 48.82912224695079], [2.308560929359993, 48.829046203202346], [2.30839027264891, 48.82896802464592], [2.308224186956453, 48.8288919804194], [2.308053529893156, 48.828813801363836], [2.307887445183205, 48.828737756659194], [2.307716790479807, 48.82865957801961], [2.307714918798847, 48.828645832783856], [2.307842105717263, 48.828561774693256], [2.307967810018046, 48.82848131798803], [2.307969553070561, 48.82846976476988], [2.307852573514277, 48.82835744889707], [2.307736501152939, 48.82824732723377], [2.30761952259784, 48.828135011110724], [2.307503449861894, 48.82802488919155], [2.307386472320019, 48.827912571918965], [2.307270400571473, 48.82780244975173], [2.307153425380918, 48.82769013313618], [2.3070373546198573, 48.82758001072092], [2.307035045605858, 48.827576125515286], [2.307012178431539, 48.82746875016349], [2.30697839502847, 48.827312997791395], [2.306955528086339, 48.827205622403575], [2.306921745023015, 48.82704986997895], [2.306898878312864, 48.82694249455511], [2.306900719078887, 48.82692852347062], [2.306886024540061, 48.82692152117827], [2.3068111296753, 48.82680025904248], [2.306736633540445, 48.82667853957306], [2.306661739372098, 48.82655727731745], [2.306587243945168, 48.82643555682933], [2.306512350473431, 48.82631429445388], [2.306437855730397, 48.82619257474566], [2.3064191914254, 48.826187881459425], [2.306244699125165, 48.8262448280743], [2.306074631299189, 48.82630070556198], [2.305900136894908, 48.82635765076118], [2.305730068319642, 48.82641352865253], [2.305555574523479, 48.8264704733512], [2.305385505210795, 48.826526350746946], [2.305211009298719, 48.826583294929215], [2.305040940622776, 48.82663917093796], [2.305039142874552, 48.82663965964669], [2.304876075598243, 48.82667651195204], [2.304704347766142, 48.826713956739454], [2.3045412800328, 48.82675080768656], [2.304369551715425, 48.826788251990784], [2.304358148533456, 48.82678737441954], [2.304279077066689, 48.826755285951585], [2.304176648861948, 48.82671808886131], [2.304156560126096, 48.826724899898124], [2.304145587496136, 48.82678545245687], [2.304140437169415, 48.82683484700765], [2.304131176521919, 48.82684275623097], [2.30397893708055, 48.82687644963921], [2.303824317438304, 48.8269113899282], [2.30367207896029, 48.82694508295161], [2.303517458908848, 48.82698002284177], [2.303481595359494, 48.82701156477349]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 36, "zemmour_eric": 63.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-53", "circ_bv": "10", "num_bureau": 53, "roussel_fabien": 24.0, "nb_emargement": 1051.0, "nb_procuration": 19.0, "nb_vote_blanc": 16.0, "jadot_yannick": 52.0, "le_pen_marine": 102.0, "nb_exprime": 1028.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1471.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1051, "quartier_bv": "56", "geo_point_2d": [48.82833901399143, 2.306570444461804], "melenchon_jean_luc": 379.0, "poutou_philippe": 11.0, "macron_emmanuel": 301.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.391768095308219, 48.840496872181205], [2.391774791486288, 48.84051781726095], [2.391800210352951, 48.84064508999612], [2.3918291347897, 48.840778343292364], [2.39185455255366, 48.84090561597937], [2.3918834772845132, 48.84103886833211], [2.391908895297628, 48.84116614187716], [2.391937821674463, 48.84129939419259], [2.391954613736113, 48.84130684350542], [2.392134558856136, 48.84127713391087], [2.3923119245507403, 48.84124730391883], [2.392491867899063, 48.84121759377834], [2.392669233196931, 48.84118776235562], [2.392849177488103, 48.84115805258232], [2.393026541016382, 48.84112822062135], [2.393206484898213, 48.84109851030895], [2.393383848019464, 48.84106867781662], [2.39339706936385, 48.84107118302612], [2.393549000700137, 48.841176262018635], [2.393698585943675, 48.841283369561815], [2.393742675612691, 48.84129826966713], [2.393768154257284, 48.84126774590993], [2.393885390016883, 48.84116803527308], [2.394011222823139, 48.841060238751], [2.394045741578093, 48.841030880427255], [2.39406569060765, 48.84102650985889], [2.394078019209328, 48.841010758859916], [2.394160735196266, 48.84094040716578], [2.394258565338118, 48.84085481404475], [2.394375797868375, 48.840755102883506], [2.394473627298895, 48.84066951047173], [2.394571455045556, 48.84058391796644], [2.39468868773038, 48.84048420648128], [2.394706796186077, 48.84048214504257], [2.394852324013813, 48.8405436241183], [2.394987405775333, 48.84059771409859], [2.395005596979921, 48.84059521684351], [2.395086857232567, 48.840519349447774], [2.395162878605486, 48.84044663654176], [2.395244138387218, 48.8403707699284], [2.39532015796157, 48.84029805690587], [2.395355679482551, 48.84027188249851], [2.395339187001464, 48.84025785814816], [2.39521638119826, 48.84021169192121], [2.395083345731242, 48.84015873942357], [2.395079618721078, 48.840145524258766], [2.39518964570318, 48.840051939133076], [2.395297220315366, 48.83996335993623], [2.395407247884555, 48.83986977460202], [2.395514821740537, 48.839781196094314], [2.395624847182587, 48.83968760963854], [2.3957324216552323, 48.8395990309276], [2.395738619310015, 48.83958612672611], [2.395726601881687, 48.83957123196], [2.395541162365662, 48.83954049742897], [2.395364426416171, 48.83951059893891], [2.395178987329425, 48.83947986384477], [2.395002251793181, 48.83944996481801], [2.394816813146268, 48.83941922826143], [2.39464007802338, 48.83938932869796], [2.39445463979522, 48.839358592477616], [2.394277905085793, 48.83932869237742], [2.394271402710042, 48.8393261691198], [2.394132148160671, 48.839229252009034], [2.393994450056081, 48.839133742016756], [2.393855196535771, 48.83903682456695], [2.393717500809324, 48.83894131424633], [2.3935798042251, 48.83884580375208], [2.393440552245044, 48.83874888579461], [2.393302858039044, 48.83865337497208], [2.393163607088029, 48.83855645667552], [2.393149621824548, 48.83854343940976], [2.393135864976559, 48.838544037843675], [2.392985613938437, 48.83862531708018], [2.392837754151734, 48.83870514050327], [2.392687502184353, 48.83878641935361], [2.392539641484209, 48.838866242396705], [2.392389387235642, 48.83894751995466], [2.392241526984258, 48.8390273426247], [2.3920912717959393, 48.83910862069578], [2.391943410631007, 48.8391884429858], [2.391933322957943, 48.8391904233654], [2.391736781072011, 48.83917641845242], [2.391536933876607, 48.839161251515584], [2.391340392196682, 48.839147246850295], [2.391140545228473, 48.83913207925082], [2.390944005137875, 48.8391180730415], [2.390744158386463, 48.8391029056787], [2.390547617149979, 48.83908889881083], [2.390347770625774, 48.83907373078543], [2.390334168255286, 48.839078463152134], [2.390236056682922, 48.839201003858584], [2.390142608122375, 48.83930912899508], [2.3901323861011172, 48.83933422752939], [2.390155384609402, 48.839341918306154], [2.39022195622502, 48.839369541614225], [2.390393026135464, 48.839440699544575], [2.39055140460487, 48.83950641618037], [2.390722475414311, 48.839577573630876], [2.390880854704484, 48.839643290721725], [2.3910519264234322, 48.83971444679307], [2.391210306544787, 48.8397801634397], [2.391381379152328, 48.83985131993046], [2.39153976010497, 48.839917036132825], [2.39171083362201, 48.83998819124443], [2.391869215405937, 48.84005390700258], [2.39202759895168, 48.84011962255407], [2.392198672437185, 48.84019077694819], [2.392203836896043, 48.840194698320225], [2.392257372477289, 48.84026524457057], [2.392324670973004, 48.84036405836174], [2.392316372118009, 48.840376316759475], [2.392182481186157, 48.84040441156448], [2.39199497721026, 48.8404440495343], [2.391861085931176, 48.84047214397786], [2.3917992241523223, 48.840485221848894], [2.391768095308219, 48.840496872181205]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 50, "zemmour_eric": 75.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-2", "circ_bv": "08", "num_bureau": 2, "roussel_fabien": 25.0, "nb_emargement": 1054.0, "nb_procuration": 67.0, "nb_vote_blanc": 17.0, "jadot_yannick": 97.0, "le_pen_marine": 64.0, "nb_exprime": 1034.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1320.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1054, "quartier_bv": "46", "geo_point_2d": [48.83994082880645, 2.3931106318798787], "melenchon_jean_luc": 317.0, "poutou_philippe": 4.0, "macron_emmanuel": 342.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.34165717176254, 48.826301274889715], [2.341695006491482, 48.82626643805787], [2.341697560205179, 48.82623388299029], [2.34169578680955, 48.82623236407427], [2.3416948111626033, 48.826132283263696], [2.341697030646132, 48.826034394725625], [2.341696998234035, 48.82603361748568], [2.34167884576634, 48.82589969208512], [2.341664854368187, 48.825770754133316], [2.341646703436632, 48.82563682870407], [2.341632712177153, 48.82550789161762], [2.341632687605461, 48.825507680128695], [2.341619464611485, 48.8253749707697], [2.3416054735009952, 48.82524603275067], [2.341592250642647, 48.82511332335775], [2.341578259658415, 48.8249843862048], [2.341565036935692, 48.82485167677794], [2.341551046100228, 48.824722738692465], [2.34153782351313, 48.82459002923167], [2.341523834165838, 48.8244610920198], [2.341510611714358, 48.82432838252509], [2.341496621154009, 48.82419944437317], [2.341482630662756, 48.824070506204805], [2.341469408415206, 48.823937796659365], [2.341455419412101, 48.8238088593646], [2.341442197300163, 48.8236761497853], [2.341442435591812, 48.82367378303347], [2.34147743220532, 48.82355907742757], [2.341514628566742, 48.82343325050248], [2.341549624848621, 48.823318545750155], [2.341586819513596, 48.82319271786889], [2.341621816837196, 48.82307801307839], [2.341659011144908, 48.82295218604702], [2.34169400679772, 48.82283748030404], [2.341731202121609, 48.8227116532308], [2.341766197454061, 48.822596947442136], [2.341767055149507, 48.82259514441055], [2.341842887559166, 48.82245201902956], [2.34192731331781, 48.82232351622406], [2.342003146254472, 48.822180390714394], [2.342087569827827, 48.82205188685788], [2.342158005099263, 48.821957162236984], [2.342242429291475, 48.82182865825311], [2.342312862629421, 48.821733932615395], [2.342397286067095, 48.821605429395994], [2.342467720184115, 48.821510703655754], [2.342483792721902, 48.82149120263124], [2.342476487079033, 48.8214732575957], [2.3425609097027262, 48.82134475333168], [2.342641330115797, 48.821220371339614], [2.342632264303796, 48.82118992963328], [2.342624819291673, 48.82118584688813], [2.342659168408998, 48.82108218873582], [2.342702751179547, 48.82094119406397], [2.342737099992112, 48.82083753496739], [2.342771450030029, 48.82073387585891], [2.34281503084401, 48.82059288109497], [2.342815301144586, 48.82059131855694], [2.342823837242873, 48.82052644185068], [2.342826306695475, 48.82046429289865], [2.3428126220058703, 48.82045506288739], [2.342595890629773, 48.82045578900941], [2.342389376439228, 48.82045590178966], [2.342172643691838, 48.82045662713709], [2.341966129497063, 48.82045673918632], [2.341759613939587, 48.820456850871416], [2.341542882541417, 48.820457575084944], [2.34152957211338, 48.82046488660781], [2.341498265822318, 48.82057345659131], [2.341467739032009, 48.82068198138375], [2.341436432470597, 48.82079055222939], [2.341405905424391, 48.820899076985135], [2.34137459860388, 48.82100764779362], [2.341344071301978, 48.82111617251261], [2.341328133519489, 48.82112336431019], [2.341274444105243, 48.82111661370122], [2.341223198281845, 48.8211088818153], [2.341206953599015, 48.821115461226555], [2.341159886788618, 48.82123941807736], [2.341113065938694, 48.82136232397722], [2.341065998693623, 48.82148627986456], [2.341019177400817, 48.821609185700666], [2.340972109698336, 48.82173314242316], [2.340925287962439, 48.821856048195535], [2.340878219825277, 48.82198000395452], [2.3408313976350152, 48.822102910562435], [2.340784329051796, 48.82222686625723], [2.340737506429902, 48.822349771902076], [2.340690437400724, 48.82247372753271], [2.340643614324449, 48.822596634013124], [2.340596544849102, 48.822720589579596], [2.340549721341186, 48.822843495096905], [2.340502651419765, 48.822967450599165], [2.340455827457452, 48.82309035695208], [2.340408757089953, 48.823214312390114], [2.34036193269609, 48.823337217779944], [2.340314861882505, 48.82346117315377], [2.340268037034129, 48.823584079379145], [2.340221213338377, 48.82370698468093], [2.340174140494416, 48.82383093995108], [2.340127316355629, 48.82395384518908], [2.340080243054177, 48.82407780129438], [2.340033418472347, 48.824200706468595], [2.339986344736265, 48.82432466161037], [2.339939519711388, 48.8244475667208], [2.339892445517699, 48.82457152269767], [2.339887525038397, 48.824584478959046], [2.339875152541124, 48.82461851957626], [2.339885373226222, 48.824629316368465], [2.339955881443016, 48.82469898734529], [2.340064072591172, 48.824804259455725], [2.340100604924876, 48.824840357925375], [2.340207646207988, 48.82494612629643], [2.340315838377427, 48.825051398155914], [2.340422880530449, 48.825157166314426], [2.340531072198891, 48.82526243885122], [2.340638115221828, 48.82536820679722], [2.340746309136316, 48.825473478227714], [2.340853353029182, 48.82557924596116], [2.340961547804739, 48.82568451807646], [2.341068592567541, 48.825790285597336], [2.341176786865058, 48.82589555659129], [2.341283832497802, 48.826001323899625], [2.34139202901847, 48.82610659558587], [2.34149907552117, 48.826212362681694], [2.341607272925867, 48.82631763325408], [2.34165717176254, 48.826301274889715]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 78, "zemmour_eric": 76.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "14-40", "circ_bv": "10", "num_bureau": 40, "roussel_fabien": 23.0, "nb_emargement": 1272.0, "nb_procuration": 54.0, "nb_vote_blanc": 6.0, "jadot_yannick": 118.0, "le_pen_marine": 63.0, "nb_exprime": 1263.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1590.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1272, "quartier_bv": "54", "geo_point_2d": [48.82313368557708, 2.3412704687284807], "melenchon_jean_luc": 392.0, "poutou_philippe": 5.0, "macron_emmanuel": 435.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.38705292203713, 48.8680307919529], [2.387076413499519, 48.86803620666063], [2.387168466206163, 48.86805884222405], [2.387354213737224, 48.868104529840984], [2.387537173837392, 48.868149517606646], [2.387722922015149, 48.86819520464764], [2.387905882752205, 48.868240191846006], [2.388091632929262, 48.86828587921728], [2.388274594303207, 48.868330865848336], [2.388460343774344, 48.86837655173747], [2.388643305785169, 48.86842153780121], [2.388829057266165, 48.86846722312134], [2.3890120199138662, 48.8685122086178], [2.389197770667817, 48.86855789425431], [2.389380733952493, 48.868602879183435], [2.389566486726744, 48.86864856335166], [2.389749450648286, 48.86869354771349], [2.389960066847799, 48.86874412541851], [2.390143031444762, 48.868789109174806], [2.390353649765547, 48.86883968708913], [2.390536615038031, 48.86888467023992], [2.3907472327641432, 48.868935247450366], [2.390930198712141, 48.86898022999565], [2.390961554667608, 48.86898793859072], [2.390964745369719, 48.86898776236798], [2.390984402303057, 48.868956726420436], [2.391037901526821, 48.868845605760846], [2.391091283707162, 48.86873421556983], [2.391144783848102, 48.86862309394771], [2.391198164208792, 48.868511703679694], [2.391251663882703, 48.86840058288675], [2.391305045149909, 48.868289192555565], [2.391358544377813, 48.8681780707932], [2.391411923825391, 48.86806668038501], [2.391418086216636, 48.86806161067199], [2.391637928410529, 48.86797754656481], [2.39185110173156, 48.86789598969662], [2.39185630449212, 48.86789242597312], [2.39194302882429, 48.86778460782484], [2.39202713899787, 48.86767952020813], [2.392113861248366, 48.86757170280764], [2.392197970733568, 48.86746661505067], [2.392282079879524, 48.86736152722456], [2.392368801072993, 48.8672537096084], [2.39245290953048, 48.86714862164201], [2.392539630015957, 48.867040803881295], [2.392536688694602, 48.86702989256098], [2.392492887296394, 48.86700398242058], [2.392453470554261, 48.866981179253536], [2.39244008684082, 48.86696982820699], [2.392420938681542, 48.86697351092716], [2.392391609305232, 48.86698790255075], [2.392235143703626, 48.8670651797547], [2.39208247179313, 48.867140089174434], [2.39192600527584, 48.86721736596366], [2.391773332474792, 48.867292274978745], [2.391616865041815, 48.86736955135322], [2.391464191350213, 48.867444459963664], [2.391307724364599, 48.86752173593031], [2.391155048419387, 48.86759664412918], [2.390998580518083, 48.867673919681046], [2.390845903682306, 48.86774882747531], [2.390839435508636, 48.867750550963834], [2.390710078076673, 48.86776176919116], [2.390546544514228, 48.86777533410588], [2.390531773354103, 48.86776385797484], [2.390580918078735, 48.86765437990318], [2.390628401357683, 48.867547421384046], [2.390677545675058, 48.867437943251296], [2.390725028558226, 48.86733098467288], [2.390713944349409, 48.867319560603256], [2.390544947390595, 48.86730303729611], [2.390321098432263, 48.86728134104729], [2.390152101722046, 48.867264817184896], [2.389928254454614, 48.86724312020755], [2.389759256629854, 48.86722659578294], [2.389535409690284, 48.86720489807015], [2.389366413477385, 48.86718837309726], [2.389349571800979, 48.86718098723523], [2.389332598390744, 48.8671877464051], [2.389280617720109, 48.867237544693864], [2.389230588319807, 48.86728856882224], [2.389212853541089, 48.86729166287986], [2.389023184986881, 48.867226598016636], [2.388835280126261, 48.86716194655534], [2.388645612505377, 48.867096881985454], [2.388457707218205, 48.86703222991681], [2.388268040551653, 48.86696716384168], [2.388080136200979, 48.8669025111727], [2.387890470478411, 48.866837444491644], [2.387702568427369, 48.8667727912293], [2.387512903638009, 48.86670772484157], [2.387325001160329, 48.86664307097193], [2.387299457725554, 48.86663855053442], [2.387292559254509, 48.86664197408039], [2.387249987549928, 48.866734165099075], [2.3872169794635, 48.866800895290254], [2.387224469534909, 48.86681173021154], [2.387435930359314, 48.866873908408465], [2.387647180413466, 48.86693886770397], [2.387654200486465, 48.86695014986156], [2.387579837725291, 48.867082251982836], [2.387506201373253, 48.86721306181341], [2.387431837861469, 48.86734516381132], [2.38735819941368, 48.8674759726135], [2.38728383515117, 48.86760807448806], [2.3872101973126663, 48.86773888407437], [2.387135832299625, 48.86787098582558], [2.387062192365138, 48.86800179438345], [2.38705292203713, 48.8680307919529]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 17, "zemmour_eric": 37.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-68", "circ_bv": "06", "num_bureau": 68, "roussel_fabien": 21.0, "nb_emargement": 1129.0, "nb_procuration": 54.0, "nb_vote_blanc": 5.0, "jadot_yannick": 91.0, "le_pen_marine": 49.0, "nb_exprime": 1122.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 10, "nb_inscrit": 1504.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1132, "quartier_bv": "79", "geo_point_2d": [48.86784425814443, 2.389537392693086], "melenchon_jean_luc": 639.0, "poutou_philippe": 7.0, "macron_emmanuel": 218.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323962774471304, 48.84390329583252], [2.323985814671428, 48.84394185316106], [2.324090227647832, 48.844053483115076], [2.324195748025467, 48.844166334260656], [2.324300161901253, 48.84427796400897], [2.324405683187861, 48.84439081494669], [2.324510099325582, 48.84450244449702], [2.324615621521277, 48.84461529522683], [2.324720037207514, 48.84472692366445], [2.324825560300753, 48.84483977508568], [2.324929976886399, 48.844951403317594], [2.325035500888645, 48.845064254530925], [2.32513991973627, 48.845175882564824], [2.325245444647742, 48.845288733570264], [2.325349863032137, 48.84540036139076], [2.325455388864377, 48.84551321128901], [2.325559808136673, 48.84562483980308], [2.325665334877948, 48.84573768949342], [2.325665375498855, 48.84574781924191], [2.325678815703179, 48.84575484617039], [2.32578931571844, 48.84586481882632], [2.325900047273509, 48.845974625389964], [2.3260105468591172, 48.846084597812215], [2.326121280698144, 48.846194405056416], [2.326231781228214, 48.84630437635332], [2.326342514637875, 48.8464141833634], [2.326453017451655, 48.84652415534127], [2.326563751794445, 48.84663396212497], [2.326674255552807, 48.84674393297752], [2.326784990828635, 48.84685373953478], [2.32679756608563, 48.846857713525004], [2.326923469176424, 48.8468504625648], [2.327068509201496, 48.84684177311144], [2.327079784072552, 48.846836386398536], [2.327140184154069, 48.846744197103625], [2.327202037600563, 48.84664971627739], [2.327262438612069, 48.846557526912974], [2.327324291615273, 48.846463046007656], [2.327342283216731, 48.846458379649874], [2.327532703851347, 48.84651362318571], [2.327719423432357, 48.84656773850202], [2.327909844866331, 48.846622981432205], [2.328096565230767, 48.84667709615462], [2.328286987464096, 48.846732338479065], [2.328473708611854, 48.84678645260758], [2.328664131644532, 48.84684169432635], [2.328850853575811, 48.8468958078609], [2.3288529187712372, 48.84689627991925], [2.329025601857736, 48.846925590082066], [2.329241439518669, 48.84696244835967], [2.329414123043027, 48.846991757959984], [2.329629962615389, 48.84702861554214], [2.329802646577499, 48.847057924579914], [2.329893866082279, 48.847073501638036], [2.329924922074566, 48.84707707426628], [2.3299320905334753, 48.847059106510166], [2.329927132955916, 48.84692113114784], [2.329922730514066, 48.84678661422312], [2.329917772987211, 48.84664863882668], [2.329913370592437, 48.84651412186869], [2.32990896957152, 48.84637960580127], [2.329904010757224, 48.8462416303462], [2.329898855106217, 48.84623479599911], [2.329760199697345, 48.846162243032026], [2.329595621543107, 48.84607686453503], [2.32945696835082, 48.8460043103146], [2.329292391180416, 48.84591893228767], [2.329153738830456, 48.845846377705506], [2.328989162667232, 48.84576099835009], [2.328850511147913, 48.845688444305544], [2.328794221488201, 48.84565924189434], [2.328775845315838, 48.8456487286767], [2.328770093116251, 48.84564897610502], [2.328661806293006, 48.84559279870152], [2.328575295223453, 48.845547586121945], [2.32857165597349, 48.84554470122835], [2.328482211303552, 48.845432440834074], [2.328393193439494, 48.84532060995272], [2.328303749538564, 48.84520834940248], [2.328214732428715, 48.84509651926513], [2.328125289296682, 48.84498425855889], [2.328036272964115, 48.84487242736698], [2.327946830601174, 48.8447601665048], [2.327857815022589, 48.844648336056935], [2.327768373428629, 48.84453607503875], [2.327679358627415, 48.84442424353631], [2.327589917802325, 48.844311982362136], [2.327500903755172, 48.84420015160377], [2.327411463699146, 48.84408789027366], [2.327322450429148, 48.843976058460704], [2.327233011142078, 48.84386379697462], [2.327143998626217, 48.84375196590574], [2.327054985129828, 48.843640134751766], [2.326965548357761, 48.84352787303958], [2.326876535638622, 48.843416040831094], [2.326787099635583, 48.84330377896291], [2.3266980876703522, 48.84319194749849], [2.326608652436229, 48.84307968547433], [2.32655977385956, 48.84300703486323], [2.326555510826873, 48.843007630527], [2.326497181149885, 48.84302695506417], [2.3264340217490522, 48.84304770395375], [2.326426182438248, 48.84304857716645], [2.326391526530743, 48.843063022786446], [2.32627111075284, 48.84310258135867], [2.326111268243301, 48.84315701445225], [2.325927692216034, 48.843217322257416], [2.32576784899593, 48.84327175488655], [2.325584272178774, 48.843332061259254], [2.325424428248107, 48.84338649342393], [2.32526458398356, 48.84344092537239], [2.325081005976564, 48.84350123186298], [2.324921161001452, 48.84355566334697], [2.324737582192934, 48.843615969304366], [2.324713524963893, 48.84361706743699], [2.324673581380932, 48.84364349641682], [2.324490001988217, 48.843703801090264], [2.324318742392551, 48.84376129889798], [2.324135162162654, 48.84382160391984], [2.323963900425999, 48.84387910120582], [2.323962774471304, 48.84390329583252]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 98, "zemmour_eric": 111.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "6-18", "circ_bv": "11", "num_bureau": 18, "roussel_fabien": 9.0, "nb_emargement": 873.0, "nb_procuration": 62.0, "nb_vote_blanc": 10.0, "jadot_yannick": 56.0, "le_pen_marine": 40.0, "nb_exprime": 860.0, "nb_vote_nul": 3.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1033.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 873, "quartier_bv": "23", "geo_point_2d": [48.845136131017306, 2.3268797656336044], "melenchon_jean_luc": 112.0, "poutou_philippe": 3.0, "macron_emmanuel": 395.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.351055376122695, 48.87536582589609], [2.351054256094054, 48.87534213311179], [2.35103552714582, 48.875280825463385], [2.351019820738741, 48.87521253106431], [2.351028704370954, 48.87520271530694], [2.351199675580812, 48.87516233287193], [2.3513920716767682, 48.87511786458286], [2.3515630423374683, 48.87507748072646], [2.351755437809762, 48.875033011849986], [2.351926407899109, 48.8749926283708], [2.352118804122267, 48.87494815801504], [2.352289773651249, 48.87490777401376], [2.352482167876202, 48.874863303962435], [2.352653136845021, 48.874822919439126], [2.352845530457473, 48.87477844790114], [2.353016498865917, 48.874738062855755], [2.353062818580231, 48.87472735658058], [2.353089850137819, 48.87471489756868], [2.3530883172503643, 48.87470011228875], [2.353024691037632, 48.874576758084935], [2.35295761600489, 48.874446796650076], [2.352893989047911, 48.87432344234116], [2.352826914656326, 48.874193481702534], [2.352763289692718, 48.87407012640386], [2.352696215953549, 48.87394016566214], [2.352632591608903, 48.87381681026571], [2.352565517158731, 48.87368684941358], [2.352501893421862, 48.87356349481865], [2.352452498020965, 48.87346778453659], [2.352451057716208, 48.87345872941031], [2.352439959964908, 48.873449948499484], [2.352422282956722, 48.87341569693205], [2.352397966165273, 48.87337115339398], [2.352380732938059, 48.87336568931536], [2.352189335735806, 48.87340881112731], [2.352000893674964, 48.87345042515299], [2.351809495846884, 48.873493546354304], [2.351621051812713, 48.8735351597715], [2.351429653358811, 48.87357828036216], [2.35124120871462, 48.87361989317818], [2.351049809634902, 48.873663013158236], [2.350861365744006, 48.873704625380434], [2.350669966027268, 48.87374774564912], [2.350481520174265, 48.87378935636353], [2.350474899478793, 48.87378969366392], [2.350267416906599, 48.87376634323068], [2.350058263517264, 48.8737426245287], [2.349850779956038, 48.87371927336488], [2.349641628319977, 48.873695553042104], [2.349434145133043, 48.87367220115512], [2.3492249938645022, 48.87364848100267], [2.34901751105187, 48.87362512839256], [2.348808358810021, 48.87360140660443], [2.348600876360557, 48.87357805417042], [2.348391725860688, 48.87355433166076], [2.3481842437967932, 48.87353097760438], [2.347975093675712, 48.873507254365755], [2.347914368107593, 48.87350982933587], [2.347909518882458, 48.873533218978295], [2.347909375968846, 48.87366181000957], [2.347909402355624, 48.87377992736307], [2.347909428753779, 48.87389804380466], [2.347909285838943, 48.874026634793495], [2.347909403273404, 48.87402781806188], [2.347932596796547, 48.87415363579636], [2.347960294919112, 48.87429210024595], [2.347983488671614, 48.87441791883969], [2.348011187070011, 48.874556383244354], [2.34803438107439, 48.874682200898846], [2.348062081111857, 48.874820665265936], [2.348085273993622, 48.87494648287301], [2.348112974306935, 48.8750849471952], [2.348136167418065, 48.87521076566155], [2.348163868007227, 48.87534922993877], [2.348187061370237, 48.87547504746581], [2.3482147622352523, 48.87561351169811], [2.348237955838888, 48.87573932918515], [2.34824794537053, 48.875789258048336], [2.348264600907194, 48.87581433228072], [2.348307299063864, 48.87581230380744], [2.348520697779183, 48.87586641646166], [2.348729915410953, 48.87590863295224], [2.348738409661194, 48.8759085208816], [2.348935441590148, 48.875863015153], [2.349124494402221, 48.87581816000363], [2.349313545525407, 48.87577330454645], [2.349510576440249, 48.87572779786565], [2.349699628266209, 48.875682941802495], [2.349896658501994, 48.87563743448245], [2.35008570966746, 48.87559257780596], [2.350282739212862, 48.875547070746045], [2.350471788365689, 48.87550221254942], [2.350668818595282, 48.875456704857775], [2.350857867076392, 48.87541184694705], [2.3510548952746673, 48.87536633770958], [2.351055376122695, 48.87536582589609]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 44, "zemmour_eric": 68.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-35", "circ_bv": "05", "num_bureau": 35, "roussel_fabien": 14.0, "nb_emargement": 1132.0, "nb_procuration": 86.0, "nb_vote_blanc": 5.0, "jadot_yannick": 115.0, "le_pen_marine": 48.0, "nb_exprime": 1120.0, "nb_vote_nul": 6.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1404.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1131, "quartier_bv": "38", "geo_point_2d": [48.874543094305636, 2.350183249539021], "melenchon_jean_luc": 328.0, "poutou_philippe": 9.0, "macron_emmanuel": 443.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.371177052195169, 48.84936806480326], [2.371204300505971, 48.84934409449698], [2.371370287214822, 48.84926357687399], [2.371535930254896, 48.84918292500714], [2.371701915937898, 48.849102406912436], [2.371867557963376, 48.8490217536755], [2.372033542620633, 48.84894123510907], [2.372199183620571, 48.848860581401375], [2.3723651672520862, 48.84878006236321], [2.372530807226384, 48.84869940818474], [2.372572452676343, 48.8486792058172], [2.372592042898785, 48.848679679983874], [2.37261512798118, 48.848659370376375], [2.372739463666901, 48.848599054080736], [2.372895712513065, 48.848521867534494], [2.373061693989553, 48.84844134750556], [2.373217943237336, 48.848364161434006], [2.373383922351001, 48.8482836409395], [2.373540170659489, 48.84820645353691], [2.37370615013563, 48.848125932591124], [2.3738623961205603, 48.848048745648946], [2.373870566812814, 48.848037070698986], [2.373846800817817, 48.84801941427204], [2.373717694162452, 48.84792552833927], [2.373584468854845, 48.84782889474347], [2.373455361781445, 48.847735008504415], [2.373322137447323, 48.84763837460003], [2.373193032691967, 48.84754448716967], [2.373059809320505, 48.84744785385592], [2.372930704147112, 48.847353966119265], [2.37279748175994, 48.84725733159762], [2.372668377520312, 48.847163444461145], [2.372535156106604, 48.84706680963088], [2.372406054174064, 48.84697292220238], [2.372272833733808, 48.84687628706348], [2.37214373138332, 48.846782399328795], [2.372010511916514, 48.84668576388126], [2.371987355816971, 48.84668929102376], [2.371937739976611, 48.84680120290833], [2.371888100559592, 48.84691211365383], [2.371838485645725, 48.84702402638134], [2.371788845805231, 48.84713493706351], [2.371739230476925, 48.84724684882815], [2.371689590212953, 48.84735775944693], [2.371639974448521, 48.84746967204735], [2.371590333761062, 48.847580582602795], [2.371568000848826, 48.84758462931869], [2.371410322416613, 48.8474881409023], [2.37125508139726, 48.84739410862868], [2.371097405483478, 48.84729761979059], [2.370942165596168, 48.84720358709486], [2.37078449083828, 48.847107097827845], [2.370629252083109, 48.84701306471002], [2.370471578480905, 48.84691657501415], [2.37031634086883, 48.84682254057495], [2.370158667059802, 48.84672605044298], [2.370003430568987, 48.846632016480996], [2.36998909960556, 48.84663030778196], [2.369899162925082, 48.8466543623232], [2.369755582528949, 48.846693017686135], [2.369739275253223, 48.84668323220825], [2.3697029617851992, 48.84668433327806], [2.369603651905782, 48.84675709598514], [2.369531435564856, 48.846806448113604], [2.369524422319572, 48.846809003103374], [2.369337272442168, 48.84683482205687], [2.369147518400832, 48.846860745701484], [2.3689603681507903, 48.846886564064164], [2.368770612370963, 48.84691248710261], [2.368583461748492, 48.8469383048745], [2.3683937069553043, 48.84696422732114], [2.368206555960309, 48.846990044502306], [2.368016799428745, 48.847015966342724], [2.368006057892662, 48.84702356942835], [2.367976252727723, 48.84716924188093], [2.3679456685748193, 48.84731385074968], [2.367915863085968, 48.847459522249935], [2.367885278584227, 48.847604131964914], [2.367855472760549, 48.847749803412164], [2.367824887931678, 48.84789441217467], [2.367817476783268, 48.847901216220066], [2.367666814087864, 48.8479508289705], [2.367454662221066, 48.84801713497909], [2.367303998845033, 48.84806674726748], [2.367091847418281, 48.84813305173371], [2.366941183361826, 48.84818266356005], [2.366884943737877, 48.84818742574707], [2.366881820843543, 48.84821498259556], [2.36692193375182, 48.84830414481806], [2.36696965983533, 48.84840949794386], [2.367025483455634, 48.848533580706125], [2.367073211332185, 48.84863893287683], [2.367129035444821, 48.84876301556523], [2.367176762378182, 48.84886836766571], [2.367191056222446, 48.8488883262316], [2.367245971384638, 48.84887856456993], [2.367466428596544, 48.8488578525573], [2.367682475138832, 48.84883742350898], [2.367898522874392, 48.84881699407734], [2.368118978192901, 48.84879628175327], [2.368122409946961, 48.84879624771498], [2.368322321813713, 48.84881096456993], [2.368519460041297, 48.84882618088233], [2.368719372124106, 48.84884089797277], [2.368916510580754, 48.84885611363053], [2.36911364915252, 48.84887132896333], [2.369313561576322, 48.848886045060354], [2.369510700377341, 48.84890125973849], [2.369710613038958, 48.84891597427241], [2.369907752058142, 48.848931189195206], [2.370107664946682, 48.848945903065314], [2.370304805568637, 48.84896111644136], [2.370504717310557, 48.848975830539764], [2.370512368741709, 48.84897811109181], [2.370668893907423, 48.84907193508694], [2.370815173276942, 48.84916022521337], [2.370961454504795, 48.849248515161115], [2.371117979917711, 48.84934233943809], [2.371159401203739, 48.849367339785886], [2.371177052195169, 48.84936806480326]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 64, "zemmour_eric": 68.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-53", "circ_bv": "07", "num_bureau": 53, "roussel_fabien": 16.0, "nb_emargement": 1327.0, "nb_procuration": 0.0, "nb_vote_blanc": 11.0, "jadot_yannick": 137.0, "le_pen_marine": 51.0, "nb_exprime": 1311.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1641.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1329, "quartier_bv": "48", "geo_point_2d": [48.84799260648645, 2.3703138394823875], "melenchon_jean_luc": 403.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.36809244888894, 48.850876192765675], [2.368020765178399, 48.850890363909706], [2.367828136823684, 48.85087695049496], [2.367642041655381, 48.85086399219629], [2.367449413484824, 48.8508505790708], [2.36726331986749, 48.85083762019002], [2.367077224969177, 48.85082466191173], [2.36688459710032, 48.85081124697719], [2.366873323807384, 48.85080555916376], [2.366804918729574, 48.85068929555343], [2.36673624021316, 48.850572569074004], [2.366667835747036, 48.85045630536097], [2.366599159196515, 48.85033957968495], [2.366530753979366, 48.85022331586195], [2.366462078053984, 48.85010658918355], [2.366393674811203, 48.84999032526505], [2.366324999499818, 48.84987359848351], [2.366256595495074, 48.84975733535441], [2.366187920797781, 48.84964060846973], [2.36617185227676, 48.84963514879827], [2.366001958391675, 48.84966372772887], [2.365842759267643, 48.8496905068347], [2.365683561342575, 48.849717285735345], [2.365513666921927, 48.84974586397043], [2.365354468658739, 48.84977264243186], [2.365184573877143, 48.84980122019829], [2.365177266957045, 48.849815526148596], [2.365286425989006, 48.8499062737551], [2.365392509444269, 48.84999446516031], [2.365501669225883, 48.85008521255583], [2.365607754783327, 48.85017340286395], [2.365716915314602, 48.8502641500485], [2.365823000237889, 48.85035234014436], [2.365932161518827, 48.85044308711799], [2.366038247170759, 48.85053127700882], [2.366039616301593, 48.8505326584774], [2.366123170584889, 48.85063672751887], [2.366223983618526, 48.85076229165166], [2.366307538638214, 48.850866360542916], [2.366408352560348, 48.85099192449446], [2.366491908316434, 48.85109599323548], [2.3665927231270762, 48.85122155700581], [2.366676279619569, 48.851325625596544], [2.366777095318729, 48.85145118918562], [2.36686065254764, 48.851555257626124], [2.3668455722279242, 48.85156823554526], [2.366657311932235, 48.851539814276556], [2.3664713262559163, 48.851511736615294], [2.366283066368362, 48.85148331475634], [2.366097081106288, 48.851455235612626], [2.365908821626982, 48.85142681316335], [2.365722836757283, 48.851398734335795], [2.3655345776863292, 48.85137031129628], [2.365348591857222, 48.85134223187832], [2.365160333194427, 48.851313808248555], [2.364974349142332, 48.851285727355375], [2.364786090876944, 48.8512573040346], [2.364600107228088, 48.85122922255831], [2.364411849381935, 48.851200797747985], [2.364225866125457, 48.85117271658785], [2.364037608687584, 48.851144291187246], [2.363851624471833, 48.85111620943674], [2.363663367442248, 48.85108778344584], [2.3634773850034563, 48.85105970022015], [2.36328912837118, 48.85103127453834], [2.363103146335755, 48.85100319072948], [2.363091771435805, 48.851004842550886], [2.362978117789775, 48.851062830456996], [2.36286893721441, 48.85111853522809], [2.362759757768343, 48.85117423990404], [2.362646103394492, 48.85123222658667], [2.362634414129394, 48.85124074506064], [2.362638241119477, 48.85124974730053], [2.362651569859221, 48.85126328703434], [2.362652169452773, 48.85126384692871], [2.362803947543067, 48.851397132933684], [2.362951138037277, 48.85152427419463], [2.362958011687034, 48.85152741985941], [2.363152477310425, 48.85156634127686], [2.363348257833871, 48.85160552568775], [2.363542724051201, 48.85164444556895], [2.363738505161638, 48.851683629338574], [2.363747552808066, 48.85168954393741], [2.363803274747726, 48.85180676974467], [2.363858955747752, 48.851923908956714], [2.363914676825893, 48.85204113468017], [2.363970358315696, 48.85215827471496], [2.364026081268788, 48.852275499469805], [2.364081763259559, 48.85239263942806], [2.364137485340157, 48.85250986499835], [2.364193167842773, 48.8526270039808], [2.364201397509324, 48.85263273612063], [2.364368421324969, 48.85267396311091], [2.364535252455274, 48.8527151429748], [2.364702278150992, 48.852756370402496], [2.364869109819827, 48.85279754889857], [2.365036136043825, 48.85283877585722], [2.365202966866697, 48.85287995477682], [2.365369993629926, 48.852921180367105], [2.365536826343123, 48.85296235882536], [2.365544580013804, 48.85296724205496], [2.365619065107057, 48.85308203286549], [2.365691666957772, 48.85319392311318], [2.365764270482957, 48.85330581331276], [2.365838755181359, 48.853420603944365], [2.36584570846116, 48.853437286011754], [2.365847935686113, 48.85343804247961], [2.365874884880621, 48.85343264529252], [2.366011553077135, 48.85341131468662], [2.366150699759777, 48.85338990621957], [2.366287369105107, 48.853368574405735], [2.366426515560298, 48.85334716561715], [2.366427596623847, 48.85334702654567], [2.366599027348343, 48.85332976723404], [2.366799657158401, 48.853309568427555], [2.366971087636426, 48.853292308582276], [2.367171717169055, 48.853272108251964], [2.367305645213191, 48.85325862381709], [2.367506274486427, 48.85323842292525], [2.367640202357407, 48.85322493811553], [2.367641283404268, 48.85322479993232], [2.367811156048731, 48.85319829070482], [2.367981074941259, 48.85317177428585], [2.368150948613573, 48.85314526368256], [2.368320865797498, 48.853118746772594], [2.368490739113268, 48.85309223658493], [2.368660657314037, 48.85306571919837], [2.368830528921294, 48.85303920851986], [2.369000446776227, 48.85301269064956], [2.369074993844418, 48.85300244891157], [2.369074958335598, 48.85299491394888], [2.369045098000452, 48.85293058768825], [2.368984742905408, 48.85280021132486], [2.368927305825765, 48.85267648213203], [2.368866951319756, 48.85254610567943], [2.368809516162543, 48.85242237640899], [2.368749162245556, 48.85229199986716], [2.368691727648102, 48.85216827051188], [2.3686313743201293, 48.8520378938809], [2.368573940282425, 48.85191416444077], [2.368513586180719, 48.85178378771342], [2.368456152702761, 48.851660058188486], [2.368395800552896, 48.85152968137912], [2.368338367634673, 48.8514059517694], [2.368278016084597, 48.8512755739715], [2.368220583715197, 48.85115184517632], [2.368160231391387, 48.85102146728207], [2.368102799581707, 48.850897738402075], [2.36809303155216, 48.850876692286505], [2.36809244888894, 48.850876192765675]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 65, "zemmour_eric": 106.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "4-7", "circ_bv": "07", "num_bureau": 7, "roussel_fabien": 17.0, "nb_emargement": 1082.0, "nb_procuration": 81.0, "nb_vote_blanc": 16.0, "jadot_yannick": 89.0, "le_pen_marine": 61.0, "nb_exprime": 1063.0, "nb_vote_nul": 3.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1329.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1082, "quartier_bv": "15", "geo_point_2d": [48.851924589512045, 2.366291692581843], "melenchon_jean_luc": 192.0, "poutou_philippe": 6.0, "macron_emmanuel": 458.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346941628254585, 48.883418069010865], [2.346927708826154, 48.883449449843866], [2.346952656714841, 48.88356882985647], [2.346977556249532, 48.88368696401507], [2.347002504354998, 48.883806344890786], [2.347027404116435, 48.88392447901348], [2.347052353824715, 48.884043858961185], [2.347077253801527, 48.8841619939473], [2.347102202374394, 48.884281373851394], [2.34712710258913, 48.88439950790234], [2.347152052753555, 48.88451888777768], [2.347176953183674, 48.88463702269203], [2.347201902212678, 48.8847564025238], [2.347226802880626, 48.884874536502934], [2.347224105830207, 48.8848812577698], [2.347079223506403, 48.88500548883451], [2.346931095689711, 48.88512715871032], [2.34692888707099, 48.88513581439087], [2.346985545364607, 48.885240413137716], [2.347035327121142, 48.88534574956581], [2.3470919858457, 48.88545034914156], [2.347141769393232, 48.88555568461347], [2.347198428560014, 48.885660284118906], [2.347248211159833, 48.88576561951895], [2.347236741486965, 48.885777230264296], [2.34702976599314, 48.88579282918064], [2.346823808649689, 48.8858083514552], [2.346616832919761, 48.88582394875805], [2.346410875330144, 48.885839470321905], [2.346203900705189, 48.885855067817204], [2.345997942880711, 48.88587058777103], [2.345790966644766, 48.885886184544674], [2.345585008574154, 48.88590170378776], [2.345378032090859, 48.88591729984715], [2.345172073774121, 48.8859328183795], [2.345159986379739, 48.88594167540363], [2.345158444773214, 48.886059058040864], [2.345156999473999, 48.886169107174474], [2.345155554157367, 48.886279157196306], [2.345154013894502, 48.88639653980491], [2.345153553443617, 48.88643152742378], [2.345191871179961, 48.886442687197], [2.345204542078206, 48.88644014214675], [2.345381883036656, 48.88647597158497], [2.34558280257711, 48.886513994487295], [2.345760144036036, 48.88654982426209], [2.345961064137537, 48.88658784652718], [2.346138406119635, 48.88662367484004], [2.346339328145925, 48.88666169647524], [2.346516670639684, 48.88669752422549], [2.346717591863559, 48.88673554521594], [2.346894934869075, 48.88677137240355], [2.347095856653973, 48.886809392756696], [2.347273200171342, 48.88684521938164], [2.347474123881014, 48.88688323910496], [2.34765146789876, 48.886919066066476], [2.347687835557719, 48.88692637338134], [2.347698193773999, 48.88692119932696], [2.347682916607794, 48.88685125907967], [2.347663826924663, 48.88676386909673], [2.347635113225543, 48.88663241899442], [2.347616025066507, 48.88654502899389], [2.347621883900881, 48.886536296073196], [2.347796311587811, 48.886458531811826], [2.34796932214119, 48.88638139809882], [2.3481437474156213, 48.88630363421222], [2.348316758303361, 48.88622649999374], [2.348491182551252, 48.88614873469074], [2.348664192409811, 48.88607159995936], [2.348838615620007, 48.88599383413931], [2.349011624449186, 48.88591669889507], [2.349186046621688, 48.885838932557924], [2.34935905442169, 48.88576179680078], [2.349532060345526, 48.88568466078083], [2.349706482315999, 48.88560689457577], [2.34974956021165, 48.88559016451523], [2.349744998697582, 48.88558055200829], [2.349645435822591, 48.88546862229655], [2.349536151711954, 48.88534719133593], [2.349534246599063, 48.88534282823841], [2.349535530290437, 48.88533110977356], [2.349520969178908, 48.885317002947545], [2.349516066477209, 48.88518864309201], [2.349513012255575, 48.885065360079224], [2.349508109585948, 48.88493700109325], [2.34950505676151, 48.884813718059476], [2.349500154146417, 48.884685358144516], [2.349497099992073, 48.884562075074925], [2.349492197409049, 48.88443371602958], [2.349489144651787, 48.88431043293892], [2.349486090556628, 48.88418714892771], [2.349481188036037, 48.884058789838136], [2.34947813396334, 48.88393550669776], [2.349473231497285, 48.883807146679224], [2.349473420884013, 48.88380541290205], [2.34947786916821, 48.883788159156985], [2.349486606162556, 48.883766316053354], [2.349492552366671, 48.88373099842288], [2.349443078326057, 48.88371951766867], [2.349237088109658, 48.88369517662513], [2.34903348974391, 48.883669975880814], [2.348827499914926, 48.883645634131504], [2.348623901941083, 48.88362043268956], [2.348417912499523, 48.883596090234505], [2.348214314917491, 48.88357088809493], [2.34800832586347, 48.88354654493408], [2.347804728673362, 48.883521342096884], [2.347598740006786, 48.88349699823027], [2.34739514320861, 48.883471794695446], [2.347191546607609, 48.883446590813826], [2.346985558523258, 48.8834222458906], [2.346941628254585, 48.883418069010865]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 44, "zemmour_eric": 46.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-20", "circ_bv": "18", "num_bureau": 20, "roussel_fabien": 38.0, "nb_emargement": 1394.0, "nb_procuration": 89.0, "nb_vote_blanc": 17.0, "jadot_yannick": 159.0, "le_pen_marine": 46.0, "nb_exprime": 1370.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1768.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1394, "quartier_bv": "70", "geo_point_2d": [48.88518918133008, 2.3478272204130333], "melenchon_jean_luc": 564.0, "poutou_philippe": 10.0, "macron_emmanuel": 381.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295844056095913, 48.8392611750742], [2.295857468451068, 48.83924584241115], [2.295989623926685, 48.839152651324476], [2.296133429577786, 48.83905128230878], [2.296265584066612, 48.83895809090098], [2.296409388656381, 48.83885672063662], [2.296541542158622, 48.83876352890772], [2.2966853456749208, 48.83866215829397], [2.296817496828101, 48.83856896623599], [2.296961299270939, 48.838467595272824], [2.297093450799733, 48.83837440290177], [2.297237252169118, 48.83827303158924], [2.2973694027113503, 48.838179838897084], [2.29751320300729, 48.83807846723515], [2.297605980923968, 48.83801303957185], [2.297612924436276, 48.83801239952002], [2.297627050559336, 48.83799560036523], [2.2976664221858583, 48.83796783410862], [2.297713709068964, 48.83793586118258], [2.297712794641892, 48.83792273218419], [2.297542023481288, 48.837826707230015], [2.297372336502836, 48.83773085387298], [2.297371401136223, 48.837717768815324], [2.297503824262466, 48.83762737818305], [2.297636748927553, 48.837537042508096], [2.297769171134512, 48.83744665156746], [2.297902093516508, 48.83735631557507], [2.298034514804293, 48.83726592432608], [2.298167437627805, 48.83717558803218], [2.29829985799632, 48.83708519647485], [2.298432778536764, 48.836994859863495], [2.298432602730246, 48.83698221096069], [2.298260666056851, 48.83686956600016], [2.29808265538778, 48.83675558374156], [2.298081052580257, 48.8367504685985], [2.298055558935102, 48.83674207444617], [2.2980549325263, 48.83674164716571], [2.297932354055917, 48.83665204097445], [2.297813005750235, 48.836565003332026], [2.297690428099012, 48.836475397778], [2.297571079239511, 48.83638835987246], [2.2974517321408, 48.836301321849], [2.297329155730681, 48.83621171590369], [2.297327849309713, 48.83621059480529], [2.297232630234325, 48.836114028225374], [2.297135351059144, 48.83601487185028], [2.297040132697895, 48.83591830510025], [2.296942854242022, 48.83581914945057], [2.296847636594907, 48.835722582530394], [2.296750358870459, 48.83562342670679], [2.296732961908594, 48.835614887397696], [2.296712468817709, 48.83562458176734], [2.296579465205828, 48.83570536114267], [2.296423378128498, 48.83580027044835], [2.296290373620336, 48.83588104948955], [2.296134286852772, 48.83597595841111], [2.296001281460577, 48.83605673621884], [2.295845192266099, 48.836151645639546], [2.295712185977619, 48.836232423113145], [2.295556097093001, 48.8363273321497], [2.295423089908231, 48.83640810928913], [2.29526699860882, 48.83650301792553], [2.295133990527651, 48.836583794730785], [2.295135005617339, 48.83659759079704], [2.295307547179195, 48.8366835756847], [2.295482894301725, 48.836771089582996], [2.295655437023905, 48.836857073056215], [2.29583078395191, 48.83694458642301], [2.296003327822154, 48.837030569381064], [2.296178677280217, 48.83711808223225], [2.296174611798959, 48.83713382160972], [2.295970825432871, 48.83717685256701], [2.295774270556237, 48.8372182673101], [2.295570483517356, 48.837261298481366], [2.295373928004209, 48.83730271256352], [2.295170140316845, 48.837345742150205], [2.294973584167196, 48.83738715557138], [2.294769795819207, 48.83743018447277], [2.294573239033062, 48.83747159723296], [2.294550564852667, 48.8374766645804], [2.2945472972084078, 48.83748324580173], [2.294587436956841, 48.83757348090202], [2.29462554937055, 48.837658794353445], [2.294665689389636, 48.83774902941333], [2.294703802047715, 48.8378343437257], [2.2947033817569142, 48.83784023213365], [2.294640642750565, 48.83794359843904], [2.2945798140598432, 48.83804290811072], [2.294569917725604, 48.83805907621374], [2.294580918423576, 48.83806731368007], [2.294610061394989, 48.83817936018714], [2.294640533415726, 48.838288146196014], [2.2946696766388612, 48.83840019266644], [2.294700148913121, 48.838508978638615], [2.294702733369776, 48.83851281530629], [2.294767727435203, 48.8385687796597], [2.294837811860973, 48.838628064782014], [2.294839159488571, 48.83862906113547], [2.294963249837209, 48.838708179993674], [2.2951237076728193, 48.838811078345366], [2.29524780026126, 48.838890196004236], [2.2954082592190392, 48.83899309395749], [2.295532352672636, 48.8390722113083], [2.295692811390091, 48.83917510885511], [2.295816905709051, 48.83925422589779], [2.295817655887236, 48.83925467010624], [2.295844056095913, 48.8392611750742]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 103, "zemmour_eric": 104.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-57", "circ_bv": "13", "num_bureau": 57, "roussel_fabien": 18.0, "nb_emargement": 1284.0, "nb_procuration": 65.0, "nb_vote_blanc": 22.0, "jadot_yannick": 102.0, "le_pen_marine": 67.0, "nb_exprime": 1258.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1567.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1283, "quartier_bv": "57", "geo_point_2d": [48.83746975123956, 2.29633622282218], "melenchon_jean_luc": 203.0, "poutou_philippe": 1.0, "macron_emmanuel": 607.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.268915618631627, 48.85325364741423], [2.268905703565616, 48.8532506567105], [2.268792180947835, 48.85309522594823], [2.268686901271922, 48.85295311552614], [2.268677511086723, 48.852948271726234], [2.268540905665278, 48.85292897459479], [2.268401996234107, 48.852908188264394], [2.268392825456854, 48.852903444713206], [2.268331110558964, 48.85282286758988], [2.268213118505851, 48.85266738189074], [2.268151405528171, 48.85258680466597], [2.268138061332833, 48.85258190156151], [2.2679266930818, 48.85259403600274], [2.2677168282865, 48.852606533621355], [2.267505459850106, 48.852618666418905], [2.267295593491942, 48.85263116329012], [2.267084224844921, 48.85264329624256], [2.2668743596618413, 48.85265579148374], [2.266662990816844, 48.85266792369182], [2.266453124070928, 48.85268041818556], [2.266440728087908, 48.85267661253112], [2.266309622076115, 48.8525527677296], [2.2661977272277, 48.85244498629547], [2.2661952765821, 48.852439585879736], [2.266200765611205, 48.85230935938094], [2.266209113252506, 48.85215459238321], [2.266214603592304, 48.8520243649595], [2.266222951146851, 48.85186959792116], [2.266217751514322, 48.851867599125065], [2.2661793911911188, 48.85186592937954], [2.266065921090349, 48.85196299961828], [2.265937496949761, 48.8520712443261], [2.265824025963974, 48.85216831341824], [2.265695599439497, 48.852276558737366], [2.265582127556016, 48.852373627582146], [2.2654537000230333, 48.85248187262163], [2.265340228604594, 48.85257894122755], [2.265211800075782, 48.8526871850881], [2.26509832638421, 48.852784254337564], [2.264969896846877, 48.852892497918525], [2.264856422270267, 48.85298956602138], [2.264822891656124, 48.8530152895335], [2.264834346245792, 48.85302863180956], [2.2648433156813113, 48.85303352189326], [2.26498613362185, 48.853057530905346], [2.265108052249447, 48.853083093194655], [2.26511530333977, 48.85308671449519], [2.265244056920376, 48.853215587036686], [2.265369549184637, 48.85333628757609], [2.265495043380259, 48.85345698887839], [2.265623797452177, 48.85358586095998], [2.265625551353236, 48.85359321771531], [2.265585845931057, 48.85368756983234], [2.265541649944074, 48.85378915671411], [2.265501944207891, 48.853883509685936], [2.265457746528465, 48.853985096510485], [2.265464420926139, 48.85399550982449], [2.265647971001775, 48.85406025551947], [2.265808437155675, 48.85411677402547], [2.265968903670447, 48.85417329141409], [2.266152454986502, 48.854238037224114], [2.266312920872291, 48.854294555036184], [2.266496473042966, 48.85435930031141], [2.26665694105088, 48.85441581676503], [2.266840494076172, 48.85448056150548], [2.267000961455206, 48.854537078382535], [2.267184515335117, 48.85460182258822], [2.267344984836066, 48.854658338106795], [2.267346098058109, 48.85467376806798], [2.267192376163829, 48.85474100370571], [2.267050283444118, 48.85480688489129], [2.266896560775319, 48.85487412014091], [2.266754468694048, 48.85494000007642], [2.266600745238176, 48.855007235837256], [2.266458651057083, 48.85507311540524], [2.266304926839547, 48.85514034987874], [2.266162833284149, 48.85520622909592], [2.2661570924176972, 48.85521437897142], [2.266175484003337, 48.85535175940392], [2.266191794644052, 48.8554727757787], [2.266208527912858, 48.85550746420734], [2.266231024081094, 48.85550892422048], [2.266291865235296, 48.85549542825482], [2.266495687972125, 48.85545040125824], [2.266680187872454, 48.85540947439809], [2.266884009937485, 48.855364446736594], [2.267068510578718, 48.85532352018216], [2.267253009579847, 48.85528259243414], [2.267456830653543, 48.855237563791796], [2.267458042587416, 48.85523725103885], [2.267597265049921, 48.85519623623445], [2.267762676551388, 48.855146614564454], [2.267901897169119, 48.85510559939394], [2.26806730945556, 48.85505597730711], [2.26826385782228, 48.85499940087858], [2.268429268076705, 48.85494977737902], [2.26862581564982, 48.85489320035059], [2.268791226572586, 48.854843577253554], [2.268987773351992, 48.85478699962518], [2.269153182230218, 48.85473737601474], [2.269200029880853, 48.85472332183476], [2.269205101826737, 48.8547236666884], [2.2692430849002783, 48.854709827260315], [2.269345124449903, 48.85468040273535], [2.269463685153028, 48.8546448338282], [2.269509822967783, 48.854631528857524], [2.269516525299605, 48.85461483446516], [2.269487820220334, 48.854589451931304], [2.269489054144369, 48.85450056481929], [2.269490415270584, 48.85441183946239], [2.2694916491859862, 48.85432295233611], [2.269493008927748, 48.85423422785595], [2.269489422487708, 48.85422805612777], [2.269339212933102, 48.85412004483285], [2.269197877677187, 48.854023597564485], [2.269194436912101, 48.8540194808574], [2.26914783375719, 48.85389362285573], [2.2691032721805158, 48.85377380481334], [2.269056670815578, 48.85364794765601], [2.269012109658623, 48.85352812955319], [2.268967550069264, 48.85340831142917], [2.268920947996344, 48.85328245416923], [2.268915618631627, 48.85325364741423]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 209, "zemmour_eric": 219.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-22", "circ_bv": "14", "num_bureau": 22, "roussel_fabien": 4.0, "nb_emargement": 1313.0, "nb_procuration": 103.0, "nb_vote_blanc": 21.0, "jadot_yannick": 40.0, "le_pen_marine": 76.0, "nb_exprime": 1291.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1679.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1313, "quartier_bv": "61", "geo_point_2d": [48.853747002150044, 2.267271110642355], "melenchon_jean_luc": 101.0, "poutou_philippe": 3.0, "macron_emmanuel": 601.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.275788866506544, 48.86423164186134], [2.275761824161512, 48.86423117513637], [2.275668877539173, 48.864236916197605], [2.275467332495839, 48.86425281809965], [2.275278769114811, 48.864264465193486], [2.275077223858237, 48.864280365538924], [2.274888660290391, 48.86429201201783], [2.274687114795665, 48.86430791260523], [2.274498551040905, 48.864319558469234], [2.274494850690594, 48.86431951625181], [2.274278284808916, 48.86429742547723], [2.2740964815999503, 48.86428133069927], [2.273879916045937, 48.8642592392031], [2.273698113093308, 48.86424314381943], [2.273516308877527, 48.86422704905036], [2.273299745170684, 48.86420495561225], [2.273117941211245, 48.86418886023754], [2.272901377819648, 48.86416676697713], [2.272898609213766, 48.864166283392585], [2.272683849911882, 48.86411808708544], [2.272524419000087, 48.86407802410829], [2.272364986983118, 48.86403796000977], [2.272150230066941, 48.863989762747785], [2.272071527639071, 48.8639699857587], [2.272031383195794, 48.86394755543648], [2.272002868397546, 48.86394868065245], [2.271922140776341, 48.86392839390221], [2.271920322022481, 48.863927832433504], [2.271743461406845, 48.863862937345395], [2.271561919849919, 48.86379573004031], [2.271385060141774, 48.863730833515596], [2.271203519494959, 48.8636636265581], [2.271026660681834, 48.86359872949602], [2.270845122333321, 48.8635315210959], [2.270844401164879, 48.86353123430502], [2.270667541872927, 48.86346633759549], [2.270492685624909, 48.8633918882005], [2.270315828607159, 48.863326990971345], [2.270140971966423, 48.863252541044844], [2.269964115872343, 48.86318764238849], [2.269815365222626, 48.86314859060644], [2.2698118391680833, 48.86314769222268], [2.269663090109495, 48.8631086402583], [2.269441290371756, 48.863074470868526], [2.26943924862633, 48.863074262345584], [2.269202768845098, 48.863076699245056], [2.26901383015108, 48.86306700598683], [2.268824890164455, 48.86305731242192], [2.268588411794453, 48.86305974811584], [2.268399471913206, 48.863050053879206], [2.268388091462913, 48.86305314733729], [2.268260659615007, 48.86315067216383], [2.268095625994766, 48.863240800841346], [2.267968193140371, 48.863338325339946], [2.267829198058716, 48.86343476449026], [2.2677017642311332, 48.86353228868811], [2.267562768138789, 48.86362872751214], [2.267435333338011, 48.8637262514092], [2.267296336222322, 48.86382269080616], [2.267168900448336, 48.863920214402484], [2.26702990233459, 48.86401665257386], [2.267036398883616, 48.86407847705518], [2.269813207646927, 48.86687162442718], [2.269847372627019, 48.8668810476087], [2.270015807012289, 48.866838249662514], [2.270178072087456, 48.866795974155814], [2.27034033688666, 48.86675369932679], [2.270508770467874, 48.86671089978271], [2.270671034733719, 48.8666686245021], [2.270839467768066, 48.86662582448929], [2.271001732863658, 48.86658354876544], [2.271170165351336, 48.86654074828398], [2.271187002860426, 48.86654479896744], [2.271239442444233, 48.8666075620292], [2.271289171062815, 48.86667156854863], [2.271305834996071, 48.866675947320246], [2.271485534197715, 48.8666341377284], [2.27166433467263, 48.86659282153763], [2.271844033312374, 48.866551010505106], [2.272022833217645, 48.86650969377569], [2.272202531270342, 48.866467883101095], [2.272381330618529, 48.86642656493375], [2.272561028096745, 48.866384753717746], [2.272739826875271, 48.86634343501177], [2.272919523779001, 48.86630162325438], [2.273098321987864, 48.866260304009714], [2.273278018317102, 48.86621849171094], [2.273456817306856, 48.866177172835194], [2.273636511698501, 48.86613535998681], [2.2738153101311243, 48.86609403967313], [2.27399500394827, 48.866052226283365], [2.274173801811214, 48.86601090543102], [2.274353495053857, 48.86596909149991], [2.274532292347116, 48.86592777010895], [2.274542229375072, 48.86592800931322], [2.2746310777539582, 48.86595346705657], [2.274723236635559, 48.8659737906125], [2.274732197892937, 48.86597371720902], [2.27491346651491, 48.86593042535822], [2.275093631064972, 48.86588798542632], [2.275274899088274, 48.86584469302477], [2.275455061684402, 48.86580225253722], [2.275636329109028, 48.86575895958495], [2.275816492477198, 48.865716518558315], [2.275863681469425, 48.86570780877022], [2.275864702869829, 48.865705624130314], [2.275908995792868, 48.86561026588159], [2.27594556850576, 48.86550277361993], [2.275945516244178, 48.865498687549916], [2.275893275670994, 48.86535635938634], [2.275844362389379, 48.86521514492406], [2.275844024231111, 48.86521338644401], [2.275839286156121, 48.865098828023875], [2.275834138473661, 48.864984024288106], [2.2758293990782033, 48.864869465835575], [2.275824251440297, 48.86475466207557], [2.275819513450405, 48.864640103607194], [2.275814364493888, 48.864525299814744], [2.275809626546598, 48.864410741322246], [2.27580447899759, 48.864295937513845], [2.275788866506544, 48.86423164186134]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 155, "zemmour_eric": 275.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 1.0, "date_tour": "2022-04-10", "id_bvote": "16-56", "circ_bv": "04", "num_bureau": 56, "roussel_fabien": 1.0, "nb_emargement": 1160.0, "nb_procuration": 78.0, "nb_vote_blanc": 7.0, "jadot_yannick": 33.0, "le_pen_marine": 54.0, "nb_exprime": 1147.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1515.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1161, "quartier_bv": "63", "geo_point_2d": [48.864949170446415, 2.2712793966515052], "melenchon_jean_luc": 66.0, "poutou_philippe": 1.0, "macron_emmanuel": 550.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.393897812487401, 48.834281931255994], [2.393941883961651, 48.834270355800186], [2.394058936205458, 48.83416711800795], [2.394173954298329, 48.83406678643334], [2.394175302471735, 48.83406577787824], [2.394292945242579, 48.83398913707503], [2.394437221466862, 48.83389617800303], [2.394554863469871, 48.83381953693065], [2.394699138747239, 48.833726578427914], [2.394816779982423, 48.833649937086314], [2.394875240033221, 48.833612270633964], [2.394902060131402, 48.833601706565716], [2.394908551867776, 48.83358900888376], [2.39499436744642, 48.833533716485256], [2.395136767148517, 48.83344294060592], [2.395281040356343, 48.83334998047072], [2.395423440419484, 48.83325920424207], [2.3955677126075843, 48.833166243745836], [2.395710111669713, 48.833075467161], [2.395854382838093, 48.83298250630374], [2.395996780899117, 48.8328917293627], [2.396141051037365, 48.83279876904374], [2.396283448107605, 48.8327079908472], [2.396427717226152, 48.83261503016719], [2.3965701119227463, 48.83252425250692], [2.396714380032012, 48.832431290566575], [2.396856775089763, 48.832340512557], [2.397001042179336, 48.83224755025563], [2.397143436236009, 48.83215677188991], [2.397287702295396, 48.83206381012684], [2.397430095361395, 48.8319730305056], [2.39757436040121, 48.83188006838153], [2.3977167524557492, 48.83178928930346], [2.397861016486289, 48.831696325919054], [2.398003406177553, 48.83160554647795], [2.39814766918843, 48.831512582732536], [2.39829005924076, 48.83142180294218], [2.39843432123198, 48.83132883883578], [2.398576710283367, 48.831238058689244], [2.398720971244563, 48.83114509512117], [2.398863359305285, 48.83105431371917], [2.399007619246741, 48.8309613497901], [2.399150006296062, 48.83087056893131], [2.399294263866159, 48.83077760373509], [2.399436649914458, 48.830686822520136], [2.399580907827122, 48.83059385696978], [2.399723292874404, 48.83050307539868], [2.399867549757092, 48.83041011038671], [2.400009933813616, 48.8303193275602], [2.400154189676694, 48.83022636218719], [2.400296572721964, 48.83013557990385], [2.400440827575784, 48.83004261327061], [2.400583209620057, 48.82995183063113], [2.400727462092106, 48.82985886363012], [2.400869843135391, 48.82976808063458], [2.401014095949916, 48.82967511327939], [2.4011564759922193, 48.82958432992771], [2.401300727776929, 48.82949136311088], [2.401443106828584, 48.829400578503794], [2.401460178897957, 48.829388999133016], [2.401427007074385, 48.82936935458823], [2.40133180256927, 48.82934238085794], [2.401143327267287, 48.829289225300094], [2.400951629051062, 48.829234911099114], [2.400763154525241, 48.82918175493707], [2.400577005000426, 48.82912901214453], [2.400388532601581, 48.82907585539393], [2.400202382461301, 48.82902311290581], [2.400013910837631, 48.8289699546605], [2.399827761454584, 48.82891721158434], [2.399639290585395, 48.82886405364298], [2.399453143331986, 48.82881130908629], [2.399264671865489, 48.82875815054275], [2.399078525369225, 48.82870540539795], [2.39889005466757, 48.82865224625903], [2.39870472493457, 48.82859973216942], [2.398516256358227, 48.82854657244322], [2.39833092737741, 48.82849405776941], [2.398142459564243, 48.828440897449205], [2.397957131335613, 48.82838838219119], [2.397768662923494, 48.82833522127005], [2.397583336809186, 48.82828270543475], [2.397394869160253, 48.82822954391954], [2.397209543798137, 48.82817702750003], [2.397021076912394, 48.82812386539079], [2.396835750940451, 48.82807134838025], [2.396647286180025, 48.828018185683796], [2.396461960960183, 48.827965668089114], [2.396273496962952, 48.82791250479865], [2.396088172495315, 48.82785998661973], [2.395899707899166, 48.82780682272834], [2.395714385545855, 48.82775430397219], [2.395545047588934, 48.827728309007426], [2.395367622439815, 48.82770021335626], [2.395198284831486, 48.82767421789927], [2.395020860042888, 48.82764612263159], [2.394851522783256, 48.82762012668235], [2.39467409701384, 48.827592029992665], [2.39465387196413, 48.827588827489635], [2.3944845350735893, 48.82756283101943], [2.394351535358984, 48.827541769710784], [2.39434712827938, 48.82754052065031], [2.394177213707589, 48.8274666176283], [2.393982172334309, 48.827381537362], [2.393812260160001, 48.82730763381792], [2.3936172186045033, 48.827222553836755], [2.393447307465768, 48.827148649763714], [2.393397377724994, 48.82712686826791], [2.393321784522761, 48.82709389339917], [2.393151874222021, 48.8270199888979], [2.393015733371807, 48.826960600522895], [2.392879592831752, 48.8269012119898], [2.392709683785891, 48.82682730684759], [2.392573543953006, 48.82676791705974], [2.3924036357752883, 48.82669401147397], [2.392227660399768, 48.82661724448262], [2.392057753203495, 48.82654333839549], [2.391881778856324, 48.82646656998555], [2.391711872641394, 48.82639266339717], [2.391665804047345, 48.82637256643278], [2.391569140491672, 48.82633039688404], [2.391562829166829, 48.826327643274354], [2.3913929238567793, 48.82625373622364], [2.391332854630053, 48.82622753128974], [2.391287766155439, 48.82620786186868], [2.391212381611827, 48.82617497572592], [2.391042477296085, 48.82610106816727], [2.390895336847621, 48.82603687800448], [2.390725432069284, 48.82596296997939], [2.390578292411317, 48.82589877851933], [2.390408389894522, 48.82582487004163], [2.3902612496546842, 48.82576067817663], [2.390164647701979, 48.82576455654777], [2.390161707586004, 48.825770086186544], [2.390027108503753, 48.825866702838255], [2.389892811581983, 48.8259608520969], [2.389758211519462, 48.826057467530205], [2.389623913610299, 48.82615161737021], [2.389489311194804, 48.8262482324775], [2.389355013670736, 48.82634238200645], [2.389220410264431, 48.826438996794685], [2.389086110411837, 48.82653314509941], [2.3889515073662553, 48.82662976047481], [2.388817206536672, 48.82672390846158], [2.388682602510909, 48.826820522618604], [2.388548300693683, 48.82691467118667], [2.388413694314997, 48.82701128501764], [2.388279392893508, 48.827105432375404], [2.388144785513327, 48.82720204678662], [2.388010481752729, 48.82729619381939], [2.387875874754353, 48.82739280701914], [2.387741570006175, 48.827486954633294], [2.387606962017048, 48.82758356751393], [2.387472656291736, 48.82767771481004], [2.387338045949634, 48.82777432736464], [2.387203739257952, 48.82786847344342], [2.387069129276421, 48.82796508658517], [2.386934821607697, 48.828059232345986], [2.386933967929363, 48.82805989260498], [2.386819349793031, 48.82815869897292], [2.3866970714921782, 48.828262961097884], [2.386582452460423, 48.82836176722091], [2.386460173209515, 48.82846602908475], [2.386345553282326, 48.82856483496283], [2.386223273081355, 48.828669096565626], [2.3861086522587263, 48.82876790219876], [2.38598637110758, 48.82887216354042], [2.385871749389604, 48.828970968928644], [2.385749467298973, 48.829075229109904], [2.385634844674943, 48.82917403515252], [2.385512561634225, 48.82927829507266], [2.385397938114727, 48.82937710087031], [2.385275654123914, 48.82948136052936], [2.385161029719441, 48.82958016518275], [2.385038744768019, 48.829684425479975], [2.385038376107479, 48.82968472937012], [2.384905972525631, 48.829789180324646], [2.384783685211673, 48.82989344033467], [2.384651280589462, 48.82999789098778], [2.384528992276569, 48.83010215071799], [2.38445096551672, 48.83016370312729], [2.384387661635174, 48.83018787972224], [2.384380899442515, 48.830198612166825], [2.38432652043509, 48.830241510975355], [2.384199927300437, 48.83034256532383], [2.384067520357414, 48.8304470161882], [2.383940926211045, 48.8305480711433], [2.383808518237766, 48.830652520802445], [2.383681923090398, 48.83075357546486], [2.383549514076129, 48.83085802481812], [2.38342291792765, 48.83095907918788], [2.383290507872483, 48.831063528235205], [2.383163910722886, 48.831164582312304], [2.3830314996162683, 48.83126903195307], [2.383031474862834, 48.83126905161148], [2.382904876722553, 48.83137010449653], [2.382780991539716, 48.83146726168613], [2.382654393784204, 48.831568315194495], [2.3825305076634002, 48.83166547210741], [2.382403907578767, 48.83176652532574], [2.38228002188241, 48.831863681969054], [2.382153420830759, 48.83196473490435], [2.382029532834301, 48.83206189126399], [2.381902930815825, 48.83216294391633], [2.381779043243604, 48.83226010000633], [2.381652440258196, 48.8323611523756], [2.381528550385948, 48.832458308181906], [2.381401947795732, 48.832559360275205], [2.38127805698558, 48.832656515804864], [2.381151452066276, 48.83275756760806], [2.381027561680352, 48.83285472286811], [2.380992355690572, 48.832882822183045], [2.380989544481681, 48.8328863286582], [2.381061864333926, 48.832940908711066], [2.381208238060168, 48.83302235104507], [2.381359866493073, 48.83310403891716], [2.381506241142942, 48.83318548087458], [2.38165787187948, 48.83326716836402], [2.381804246090724, 48.83334860993784], [2.381955877768848, 48.83343029703756], [2.382102254265988, 48.83351173824191], [2.3822538855232382, 48.83359342494492], [2.382400262944019, 48.833674865772636], [2.38255189514286, 48.83375655208596], [2.382698273487287, 48.833837992537156], [2.382849907989794, 48.83391967846777], [2.3829962858957, 48.834001118535355], [2.383147921339711, 48.83408280407625], [2.383294301531444, 48.83416424377429], [2.383445936554685, 48.83424592891849], [2.383592317670077, 48.83432736823991], [2.383743954997213, 48.834409053001416], [2.383890335663354, 48.83449049283853], [2.384041973942535, 48.834572176310985], [2.384188355532447, 48.834653615771565], [2.384339994753143, 48.83473529885433], [2.384486378628924, 48.834816737945275], [2.384579340489042, 48.834866813616614], [2.384612606258869, 48.83487872509257], [2.384623690919496, 48.83487845115551], [2.384682367899289, 48.83491005814812], [2.384843858247883, 48.83499372577837], [2.384995498112219, 48.83507540889755], [2.385156989475667, 48.83515907609263], [2.385308630311691, 48.8352407588028], [2.385460272985367, 48.835322441321736], [2.385621765860026, 48.83540610787087], [2.385773408153686, 48.83548778907442], [2.385934902032611, 48.835571456087735], [2.386086545297965, 48.835653136882236], [2.386248040191866, 48.83573680346041], [2.386399685791141, 48.83581848385283], [2.386520361486408, 48.83588100252919], [2.386561180337598, 48.835902149988875], [2.386580335569537, 48.83590248925577], [2.386587960183192, 48.83588182228294], [2.3866967367453, 48.83578875440317], [2.386803120060104, 48.83569561479154], [2.386911895839011, 48.835602547599905], [2.387018278389346, 48.83550940778141], [2.387127054768326, 48.835416339486315], [2.387233436554297, 48.83532319946098], [2.38734221078768, 48.835230131847034], [2.387448591809197, 48.83513699161483], [2.3875573652804443, 48.83504392289044], [2.387663745537512, 48.834950782451386], [2.387664250406042, 48.8349503668311], [2.387801521734534, 48.834841567264036], [2.3879444564591, 48.834730738763724], [2.388081726624287, 48.83462193885371], [2.388224660150885, 48.834511109996804], [2.388361929152881, 48.83440230974386], [2.388504861470973, 48.83429148142968], [2.388642129320438, 48.834182679934536], [2.38878506044049, 48.83407185126375], [2.388796190879184, 48.83406870190159], [2.3889933409869872, 48.834075950787835], [2.3891859849238593, 48.834083631415915], [2.389383136504607, 48.834090879666505], [2.389575780554078, 48.83409855966667], [2.389772930883202, 48.83410580726774], [2.389965575045265, 48.83411348664], [2.390158219264085, 48.834121165701994], [2.390355369759678, 48.834128412342835], [2.390548014091075, 48.83413609077694], [2.39074516605958, 48.83414333678214], [2.3909378105035453, 48.83415101458831], [2.391134961220391, 48.834158259944], [2.3913276057769153, 48.83416593712228], [2.391524756593876, 48.8341731827347], [2.3917174012734472, 48.834180858385714], [2.391914553563299, 48.83418810336249], [2.392107198355402, 48.83419577838563], [2.392304349393573, 48.834203022712884], [2.39249699428772, 48.834210698007375], [2.392694145446961, 48.83421794079277], [2.392886790453629, 48.83422561545937], [2.393083943085627, 48.834232857609074], [2.393276588204909, 48.834240531647765], [2.393473739585187, 48.834247773147965], [2.393666384816972, 48.83425544655872], [2.3938635362973493, 48.834262688315675], [2.393897812487401, 48.834281931255994]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 58, "zemmour_eric": 111.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "12-46", "circ_bv": "08", "num_bureau": 46, "roussel_fabien": 25.0, "nb_emargement": 1157.0, "nb_procuration": 56.0, "nb_vote_blanc": 14.0, "jadot_yannick": 90.0, "le_pen_marine": 63.0, "nb_exprime": 1136.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1518.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1157, "quartier_bv": "47", "geo_point_2d": [48.83088455083713, 2.3906893897682298], "melenchon_jean_luc": 412.0, "poutou_philippe": 8.0, "macron_emmanuel": 323.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376398457101918, 48.86281064218306], [2.376396361942451, 48.8628215816772], [2.3763642215084833, 48.86286178754391], [2.376270478676233, 48.86298488594466], [2.376172650661402, 48.86310726237767], [2.376078906934904, 48.86323036060109], [2.375981077998253, 48.86335273774965], [2.375887333388165, 48.86347583489642], [2.375789504903599, 48.86359821186841], [2.375695759399043, 48.86372130883784], [2.375610408841322, 48.86383576636267], [2.375516662475344, 48.86395886406471], [2.375431312497915, 48.8640733214444], [2.375337565292167, 48.86419641808046], [2.375252214532072, 48.86431087530784], [2.375166863396941, 48.86442533246255], [2.375073114922003, 48.86454842975166], [2.37498776300419, 48.86466288675403], [2.374894013689464, 48.86478598297713], [2.3748086609889603, 48.864900439827295], [2.374714910812652, 48.86502353678297], [2.374715076166839, 48.86502441090822], [2.374777387183255, 48.865045979801785], [2.374784436734105, 48.86504841967104], [2.374818123415327, 48.865034289807085], [2.375008726198971, 48.86499686540227], [2.375197621706856, 48.86495958287076], [2.375388223933763, 48.86492215875833], [2.37557711889928, 48.86488487562534], [2.37576772195399, 48.86484745001387], [2.375956616377024, 48.864810166279405], [2.376147217522683, 48.864772740053915], [2.37633611140323, 48.864735455718005], [2.376526712002915, 48.86469802888566], [2.376715605340968, 48.86466074394829], [2.376904498408641, 48.8646234587115], [2.377095098179471, 48.86458603186948], [2.377283990715392, 48.86454874513198], [2.377474589940341, 48.864511317683046], [2.377663481922902, 48.86447403124339], [2.377854080612602, 48.86443660228832], [2.377863550788666, 48.86443701754983], [2.377973434236881, 48.864469557631544], [2.378089347019359, 48.86450586121259], [2.378107159699939, 48.86450204253306], [2.378205605231825, 48.86438292800767], [2.378303654547588, 48.86426328072051], [2.378402099189754, 48.86414416510853], [2.378500148967936, 48.864024517641674], [2.378598592709655, 48.86390540184239], [2.378696640224143, 48.863785754181684], [2.378795083054809, 48.86366663909437], [2.3788931296793, 48.8635469903476], [2.378991572972593, 48.863427875080056], [2.379089618685752, 48.86330822704584], [2.379188059726307, 48.86318911068467], [2.37928610453887, 48.86306946246369], [2.379294095579778, 48.86306621141302], [2.379298608495775, 48.86305239302403], [2.379298893240589, 48.863052061743765], [2.379375510652569, 48.86296734792195], [2.379453896984069, 48.862881042386505], [2.379530512529469, 48.86279632844531], [2.379608898357588, 48.86271002189576], [2.379605078335103, 48.86269805790929], [2.379447145777708, 48.862624349081585], [2.379291250954707, 48.862551255865526], [2.379133319286236, 48.86247754661394], [2.378977423979789, 48.86240445297238], [2.37881949456346, 48.862330743303936], [2.378663600136587, 48.86225764924387], [2.378505670246159, 48.86218393914451], [2.378349778061869, 48.862110844673026], [2.378191849060559, 48.86203713414974], [2.378035956392829, 48.86196403925273], [2.377878029643437, 48.86189032831266], [2.377722137855274, 48.86181723299717], [2.377564210631991, 48.86174352162613], [2.377408321086392, 48.861670425899305], [2.377358855522124, 48.86164363248344], [2.377342037462166, 48.86165577427136], [2.37725791543048, 48.8617447853872], [2.377160092063539, 48.8618671627643], [2.377057982412487, 48.861975204670934], [2.376960159506278, 48.86209758186625], [2.376959551220656, 48.862098295477], [2.376864986678411, 48.86222217796146], [2.376767161492119, 48.86234455496467], [2.376672596045411, 48.862468437269634], [2.3765747699448, 48.86259081408837], [2.376480203593617, 48.86271469621377], [2.37641451697262, 48.862796867874856], [2.376398457101918, 48.86281064218306]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 65, "zemmour_eric": 82.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-37", "circ_bv": "06", "num_bureau": 37, "roussel_fabien": 19.0, "nb_emargement": 1289.0, "nb_procuration": 95.0, "nb_vote_blanc": 14.0, "jadot_yannick": 117.0, "le_pen_marine": 40.0, "nb_exprime": 1275.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1595.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "42", "geo_point_2d": [48.86342225795018, 2.377294949801649], "melenchon_jean_luc": 430.0, "poutou_philippe": 7.0, "macron_emmanuel": 445.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.277057042221043, 48.848106680496954], [2.277071955384674, 48.84811741999694], [2.277199565328532, 48.848219253599915], [2.277341366301367, 48.8483291114693], [2.277468977277579, 48.84843094566485], [2.27761077803173, 48.848540803185806], [2.277738390065241, 48.84864263617537], [2.277880191963349, 48.84875249335614], [2.278007805029239, 48.8488543269383], [2.278149609433969, 48.8489641837871], [2.278277223557172, 48.84906601616323], [2.278398732025126, 48.849162412681316], [2.2785263471205672, 48.84926424477358], [2.278647857874212, 48.849360641029755], [2.278775473941901, 48.84946247283816], [2.2788969856185908, 48.84955886882415], [2.279024602658537, 48.8496607003487], [2.279146113895608, 48.84975709605629], [2.279165751540855, 48.849771462992926], [2.279166567615131, 48.84977197155338], [2.279277687248153, 48.849853268043425], [2.279385587081565, 48.84993239105352], [2.279493487242532, 48.85001151396062], [2.279624245806947, 48.85010717608732], [2.279773762780749, 48.8502230004907], [2.27990452102755, 48.85031866228473], [2.279921402745421, 48.85036158887217], [2.279957551666905, 48.85036544614882], [2.279975405022352, 48.85036567320603], [2.280030287344241, 48.85032164687203], [2.280174983793788, 48.850231813998896], [2.280322809935234, 48.85013991594671], [2.280467505363486, 48.85005008360443], [2.280615330473453, 48.84995818517581], [2.280760024892841, 48.84986835246511], [2.280907847621273, 48.84977645275261], [2.281052541031806, 48.849686619673506], [2.281200364079034, 48.84959472049211], [2.28134505648082, 48.84950488704457], [2.281492877134025, 48.84941298747854], [2.28151721178006, 48.84938027535259], [2.281469823377001, 48.849346575797625], [2.281339844374339, 48.84925307608971], [2.281204103913186, 48.84915494946272], [2.281074125865232, 48.84906144945006], [2.280938386403562, 48.848963322504744], [2.280808409310205, 48.848869822187325], [2.280672672210758, 48.848771694931855], [2.280542694709446, 48.848678194301485], [2.280406958609359, 48.84858006672768], [2.280276983425477, 48.84848656580076], [2.280141246962204, 48.848388437900425], [2.280011272732999, 48.84829493666877], [2.279875538631808, 48.84819680845828], [2.279745564006968, 48.8481033060144], [2.279609830892887, 48.8480051783849], [2.279479858585343, 48.847911675644475], [2.279344125120497, 48.84781354678915], [2.279214153755176, 48.847720044643296], [2.279078422652273, 48.847621915477866], [2.278948450879083, 48.847528413019106], [2.278812720775594, 48.84743028353535], [2.278814231566184, 48.84741721946066], [2.278967271039896, 48.84733577886064], [2.279118548688296, 48.84725616485056], [2.279271587225927, 48.84717472295019], [2.279422863929381, 48.84709510944312], [2.27957590151849, 48.84701366714174], [2.279727177289547, 48.846934053238336], [2.279880212567646, 48.84685261052771], [2.280031488768906, 48.84677299623628], [2.280184523098396, 48.846691553124636], [2.280335798367264, 48.8466119384369], [2.280488831748249, 48.84653049492425], [2.280640106084831, 48.84645087984022], [2.280793138517317, 48.84636943592653], [2.280944410558829, 48.84628982043807], [2.281097443405403, 48.84620837613161], [2.28124871451464, 48.84612876024684], [2.281401746412719, 48.846047315539344], [2.281553016589484, 48.84596769925833], [2.28155341065424, 48.8459674830787], [2.281706441590183, 48.84588603886897], [2.281848844018633, 48.84580513593354], [2.282001872653712, 48.845723691325865], [2.282144274179945, 48.84564278802703], [2.282297303239097, 48.8455613430378], [2.282439702500656, 48.84548043936734], [2.28259273062142, 48.84539899398838], [2.282735128980776, 48.8453180899545], [2.282888156163158, 48.84523664418581], [2.283030554982865, 48.8451557397967], [2.28305138062436, 48.845144222294984], [2.283032851044538, 48.845105125476636], [2.282935569167687, 48.84499620283808], [2.282839231505739, 48.84488444466573], [2.282741950457747, 48.844775520948886], [2.282645613618914, 48.84466376259852], [2.282548333375224, 48.84455483960193], [2.282451997371879, 48.844443080174266], [2.282354717944653, 48.844334156998706], [2.282258382752025, 48.8442223982923], [2.282161104153842, 48.844113474038465], [2.282064769784303, 48.84400171515403], [2.282068158952244, 48.843990215485164], [2.282226643806394, 48.84390744428988], [2.282386924467968, 48.84382405049849], [2.282545409673097, 48.84374127887675], [2.282705689325978, 48.84365788374655], [2.282709386987277, 48.84364672856605], [2.282653238844166, 48.84357421757087], [2.282618980225466, 48.84352740236234], [2.282595601450293, 48.84351428427641], [2.282565334438702, 48.8435280132992], [2.282502754830571, 48.84355598608288], [2.282343943205342, 48.84362934920534], [2.282196096749511, 48.84369543636345], [2.282037284267694, 48.8437687990696], [2.281889437027425, 48.84383488584046], [2.281843605572969, 48.843856057056534], [2.281826985348759, 48.843860443331806], [2.281819513927236, 48.8438678767269], [2.281706532005932, 48.84392006687815], [2.281530220455322, 48.84400096936469], [2.28137140474266, 48.84407433115867], [2.281195092149963, 48.84415523314018], [2.281036275507895, 48.84422859357974], [2.280859961873111, 48.84430949505616], [2.280701145639357, 48.844382855948254], [2.280524830962483, 48.84446375691952], [2.2803660124367973, 48.844537116449054], [2.280189696705411, 48.84461801781455], [2.280030877237909, 48.84469137688904], [2.280020321469042, 48.844692818004674], [2.279771781828571, 48.84465908952277], [2.279550210845085, 48.84463182660552], [2.279529079391982, 48.84462510967646], [2.279511408150894, 48.8446297905883], [2.279358358624299, 48.84470934329583], [2.279206113694225, 48.84478802736616], [2.279053061874388, 48.844867579663635], [2.278900816021145, 48.844946263334315], [2.278747764633152, 48.845025815238074], [2.278595517856739, 48.84510449850907], [2.278442464163038, 48.84518405090213], [2.278290216463446, 48.845262733773424], [2.27813716185148, 48.84534228486525], [2.277984913228709, 48.84542096733687], [2.277831859048586, 48.84550051803508], [2.277679609502632, 48.845579200107], [2.277526553029229, 48.84565875039513], [2.277374302547619, 48.84573743296664], [2.277221246506056, 48.8458169828611], [2.277068995113622, 48.845895664133636], [2.276915936778864, 48.84597521361798], [2.276763684463234, 48.84605389449077], [2.276610625197745, 48.846133443573216], [2.276458371946532, 48.84621212494563], [2.276306118247976, 48.84629080521941], [2.276153058950748, 48.84637035370784], [2.276000804329092, 48.846449033581905], [2.275847742738539, 48.846528581660145], [2.275695487193674, 48.8466072611345], [2.275542426034967, 48.846686808819115], [2.275494527156276, 48.84671870439867], [2.2755012292449, 48.846727888846985], [2.275532934730887, 48.84676151750051], [2.275603527061012, 48.84684740996853], [2.275688558916205, 48.84693759974233], [2.275689411702329, 48.846938402643396], [2.275807840213197, 48.847038630878885], [2.275930484147136, 48.84714169231955], [2.276048913583511, 48.84724192029811], [2.276171557110001, 48.847344981464616], [2.27628998748448, 48.84744520828697], [2.276412633316257, 48.84754827009508], [2.2765310646164583, 48.847648496660504], [2.276667633171185, 48.847765182325205], [2.27678606545465, 48.84786540861865], [2.276922635148877, 48.84798209396961], [2.277041068415719, 48.84808231999115], [2.277041376959102, 48.848082573677914], [2.277052217987355, 48.84809117506484], [2.277057042221043, 48.848106680496954]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 150, "zemmour_eric": 104.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-83", "circ_bv": "13", "num_bureau": 83, "roussel_fabien": 10.0, "nb_emargement": 1280.0, "nb_procuration": 73.0, "nb_vote_blanc": 5.0, "jadot_yannick": 75.0, "le_pen_marine": 64.0, "nb_exprime": 1273.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1595.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1280, "quartier_bv": "60", "geo_point_2d": [48.84682627986237, 2.279313125622738], "melenchon_jean_luc": 191.0, "poutou_philippe": 2.0, "macron_emmanuel": 616.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.312352222732879, 48.82591468416059], [2.3123735945483093, 48.825902606963865], [2.312373908764322, 48.82590253682022], [2.312560994763026, 48.82586259260297], [2.312743491885663, 48.8258232350986], [2.312930575966448, 48.825783289393215], [2.31311307389455, 48.8257439313299], [2.313300157395757, 48.825703985942866], [2.313482653405223, 48.825664627304974], [2.313665150501302, 48.825625268394965], [2.313852233165458, 48.82558532124078], [2.313857607953859, 48.825584919477556], [2.313968192777776, 48.82559129016255], [2.314086111098852, 48.82559798791133], [2.314098696033637, 48.82559393104124], [2.314140915022945, 48.82555107310451], [2.314177896298267, 48.82551144626526], [2.314185247624699, 48.82550761929221], [2.314380437422713, 48.82546534703992], [2.314577803919076, 48.82542304827193], [2.314772993070474, 48.82538077627508], [2.31497035892821, 48.82533847685604], [2.315165547444714, 48.825296204215284], [2.315362912663817, 48.82525390414521], [2.31555810054532, 48.825211630860586], [2.315755465125886, 48.82516933013944], [2.31595065237248, 48.82512705621093], [2.316148016314299, 48.825084754838755], [2.316343204288115, 48.825042480274135], [2.316540566229248, 48.825000178243165], [2.316549011840149, 48.82498829263764], [2.316466537937942, 48.82485173695169], [2.316384359703868, 48.82471603819063], [2.316301886675258, 48.82457948145872], [2.316219707936818, 48.82444378254382], [2.31613723577021, 48.82430722566523], [2.316055057889419, 48.824171526604324], [2.316062305121796, 48.8241599309662], [2.316231154376676, 48.82411179216014], [2.316399680830601, 48.82406393997133], [2.316568529463221, 48.824015800684826], [2.316737055309022, 48.823967947117175], [2.3169059033192783, 48.82391980735016], [2.317074428533376, 48.823871954202325], [2.317243275921268, 48.82382381395485], [2.317411800515451, 48.82377596032746], [2.317464432069777, 48.82373323615545], [2.3174396460428452, 48.823718693794746], [2.317281701097465, 48.823649408626046], [2.317118759331686, 48.82357709167397], [2.316960815253455, 48.82350780517337], [2.316797873013181, 48.823435487767156], [2.316639929778638, 48.82336620173337], [2.316476988425962, 48.823293883880815], [2.316319046058476, 48.82322459651514], [2.316156106943687, 48.82315227912335], [2.315998165431568, 48.823082991325165], [2.315835225854185, 48.82301067257994], [2.31567728518563, 48.82294138524852], [2.31551434649574, 48.82286906605696], [2.315356406694454, 48.82279977739373], [2.315193468892156, 48.822727457755825], [2.31503553129629, 48.822658169567156], [2.314872594381681, 48.82258584948298], [2.314714656279201, 48.82251656085394], [2.314551720252179, 48.82244424032346], [2.314393783016877, 48.822374950362615], [2.314336114347697, 48.822349353357154], [2.314230847877341, 48.822302629385796], [2.31420999263569, 48.82228903973136], [2.314146364356806, 48.822288048833954], [2.314108208234204, 48.822296534204256], [2.314098401463315, 48.82229871471752], [2.31390633786676, 48.82234101798949], [2.313713257683273, 48.82238395637847], [2.313521193460246, 48.82242625902867], [2.313328111270228, 48.82246919768403], [2.313136046432578, 48.8225114988131], [2.312942964971596, 48.82255443685116], [2.312750899507494, 48.822596737358374], [2.312557817413694, 48.82263967477133], [2.312365751311284, 48.82268197555608], [2.31217266723456, 48.82272491143677], [2.311980600505701, 48.82276721159971], [2.311787517158149, 48.82281014686306], [2.311595449802848, 48.822852446404205], [2.311402365822604, 48.82289538104243], [2.311210297840867, 48.82293767996177], [2.311017211853871, 48.822980614866296], [2.310825143257588, 48.82302291226451], [2.31064396844042, 48.823062815042874], [2.310451899226656, 48.823105112737814], [2.310270722476233, 48.823145014939946], [2.310078652656875, 48.82318731203231], [2.309891242066386, 48.823228586126135], [2.309703831179187, 48.82326985992476], [2.3095117604400572, 48.82331215610187], [2.309510677151919, 48.82331239537806], [2.309330060419801, 48.82335217167737], [2.309137989074247, 48.82339446725111], [2.309069619318723, 48.82340952452065], [2.308877547562544, 48.82345181877453], [2.30872986421172, 48.82348434211534], [2.308582180676653, 48.82351686527282], [2.308390108129654, 48.82355915873977], [2.3083693562382273, 48.82356372899538], [2.308334413670309, 48.82357142346584], [2.308317437471057, 48.82358903050789], [2.308324405819537, 48.82359724619596], [2.308282104995606, 48.823707320604505], [2.308239745233566, 48.823805808810775], [2.308244501390295, 48.82381537336885], [2.3084093419351293, 48.82389976605971], [2.308557000389272, 48.823975833421756], [2.30870465926234, 48.82405190149565], [2.30886949993789, 48.824136293526514], [2.3090171597212112, 48.824212361203685], [2.3091820027718972, 48.82429675279969], [2.309329663477492, 48.824372819180795], [2.3094945075413102, 48.82445721033392], [2.309642169145352, 48.824533277217625], [2.3098070128602908, 48.824617667920045], [2.309954675386704, 48.824693733507736], [2.310119521476699, 48.82477812377519], [2.310267184901578, 48.82485418986539], [2.310432032004721, 48.82493857969006], [2.310579694989837, 48.82501464447634], [2.310744543106127, 48.82509903385815], [2.310892208351755, 48.825175099154876], [2.310889233609198, 48.825190445229985], [2.310705000327054, 48.82524300810918], [2.310527477712786, 48.825294961840775], [2.310343245070447, 48.825347523266345], [2.310165721739835, 48.82539947645612], [2.310158389692701, 48.82541067821415], [2.310217176730299, 48.82552120669175], [2.310274524916414, 48.825629316490634], [2.310333312458739, 48.82573984399033], [2.31039066112606, 48.82584795371248], [2.310449449161116, 48.82595848113353], [2.310506798309853, 48.82606659077894], [2.310565586825652, 48.826177119020684], [2.310622936455709, 48.826285228589335], [2.3106314758468383, 48.82630077592408], [2.310655136310416, 48.82629902451467], [2.310701381511274, 48.826288487729315], [2.310871307216917, 48.82624916045002], [2.311068355726674, 48.82620426103422], [2.311238280880985, 48.826164933230544], [2.311435330118327, 48.826120033214565], [2.311605254721402, 48.826080704886536], [2.311802301962306, 48.82603580425468], [2.311972226014039, 48.82599647540227], [2.312169273982617, 48.82595157417019], [2.312339197483002, 48.82591224479345], [2.312352222732879, 48.82591468416059]]], "type": "Polygon"}, "properties": {"lassalle_jean": 31.0, "pecresse_valerie": 47, "zemmour_eric": 74.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 27.0, "date_tour": "2022-04-10", "id_bvote": "14-56", "circ_bv": "10", "num_bureau": 56, "roussel_fabien": 13.0, "nb_emargement": 1055.0, "nb_procuration": 32.0, "nb_vote_blanc": 19.0, "jadot_yannick": 60.0, "le_pen_marine": 121.0, "nb_exprime": 1032.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1489.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1055, "quartier_bv": "56", "geo_point_2d": [48.82416768659747, 2.3128825896880736], "melenchon_jean_luc": 377.0, "poutou_philippe": 6.0, "macron_emmanuel": 240.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.326273151041003, 48.83416277456605], [2.326229968383852, 48.83418229681138], [2.32602351296984, 48.83419744014498], [2.325829110091385, 48.83421090177949], [2.325634708463065, 48.8342243640049], [2.325428252721165, 48.83423950541114], [2.325233849520479, 48.834252966977004], [2.32502739353722, 48.83426810859026], [2.324832991500171, 48.834281568612646], [2.3246265352873, 48.83429670953358], [2.324432131677811, 48.83431016889647], [2.324225675235137, 48.83432530912512], [2.324225604328043, 48.83432531412071], [2.324031200508462, 48.834338772831565], [2.323844703936107, 48.83435179206546], [2.323650299919338, 48.834365250156935], [2.3234638031688, 48.834378267897286], [2.323269398943385, 48.83439172626865], [2.3230829020030033, 48.83440474341481], [2.322888497580513, 48.8344182011668], [2.3227020004503, 48.834431217718766], [2.322507595830642, 48.834444674851326], [2.322321098510604, 48.834457690809074], [2.322126693705685, 48.83447114642293], [2.321940196184137, 48.834484162685776], [2.321933284315829, 48.83448599149769], [2.321760434528446, 48.834574205785174], [2.3215910787028182, 48.8346628317628], [2.321418227738238, 48.83475104644115], [2.321248870767974, 48.83483967102097], [2.321076018637892, 48.834927885190844], [2.320906660499571, 48.83501651017141], [2.320733807215595, 48.83510472293351], [2.32056444792092, 48.835193347415526], [2.32054195460175, 48.83520435925692], [2.320556070789801, 48.83522824760564], [2.320597469671389, 48.8352522630441], [2.320739391748182, 48.835333668960146], [2.320879160480709, 48.835414750391344], [2.321021083451625, 48.83549615506201], [2.321160851695683, 48.83557723614459], [2.321302776899402, 48.83565864137623], [2.321442546017304, 48.835739722117815], [2.321584472115048, 48.83582112610412], [2.321724242106797, 48.83590220650481], [2.321866169086859, 48.83598361014503], [2.322005939952459, 48.83606469020476], [2.322023104528803, 48.8360651310565], [2.322196575232612, 48.835979279049276], [2.322372932640809, 48.83589423728537], [2.322546402188148, 48.835808385657], [2.322722758447439, 48.835723343364315], [2.322896226849806, 48.83563749121549], [2.323072580609669, 48.83555244748704], [2.323080807355294, 48.83555071778764], [2.323102317733762, 48.835550742388186], [2.323227446819609, 48.83555088834132], [2.32338500966249, 48.83555233555719], [2.323531650482885, 48.83555250664492], [2.323689211976895, 48.835553953452326], [2.32370219198933, 48.83556525009294], [2.323660475013658, 48.83566915056108], [2.323608597101858, 48.83579667847454], [2.323566879754414, 48.83590057888851], [2.323515001383203, 48.836028106734986], [2.323473283663984, 48.83613200709482], [2.323438655589936, 48.83621712910721], [2.323469218042102, 48.83623268930025], [2.323529218516613, 48.83620296089902], [2.323694769957329, 48.83614243858874], [2.3238685905369, 48.83607825828457], [2.324034141187425, 48.836017735497805], [2.324207962283965, 48.83595355560035], [2.3243735107821832, 48.835893032329444], [2.324547331056694, 48.83582885103234], [2.324712880127036, 48.83576832729272], [2.32488669820554, 48.83570414548759], [2.325052246485891, 48.83564362127152], [2.325226065093013, 48.835579438973795], [2.325391611220962, 48.83551891427363], [2.32556542899429, 48.835454731475586], [2.325730975694454, 48.835394206306624], [2.325904791271884, 48.83533002300062], [2.326070337181953, 48.83526949735527], [2.32624415328789, 48.835205313556614], [2.326409697045566, 48.83514478742714], [2.3265835123179093, 48.83508060312824], [2.326749056647789, 48.83502007653002], [2.32686456429832, 48.83497742282079], [2.326876641892137, 48.83495862918078], [2.3268467290576043, 48.83493578769321], [2.3267545377046153, 48.83480941171634], [2.326667976539181, 48.834691226442864], [2.326581415766154, 48.834573041094245], [2.32648922433574, 48.834446664864245], [2.326402664374089, 48.834328479360465], [2.326310475171826, 48.83420210297278], [2.326286068881383, 48.83416877868563], [2.326273151041003, 48.83416277456605]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 80, "zemmour_eric": 67.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "14-17", "circ_bv": "11", "num_bureau": 17, "roussel_fabien": 28.0, "nb_emargement": 1225.0, "nb_procuration": 48.0, "nb_vote_blanc": 12.0, "jadot_yannick": 114.0, "le_pen_marine": 47.0, "nb_exprime": 1211.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1482.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1225, "quartier_bv": "56", "geo_point_2d": [48.83506092912161, 2.323766602035103], "melenchon_jean_luc": 328.0, "poutou_philippe": 8.0, "macron_emmanuel": 487.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.343030253980965, 48.846091329779675], [2.342995744637534, 48.8460948995977], [2.342973672119568, 48.84609718417005], [2.342955154053835, 48.84611195519507], [2.342843601143352, 48.84617983868854], [2.342673821349989, 48.846313735397274], [2.342613453235005, 48.84638703613036], [2.342606543787364, 48.84639109115272], [2.342449886252191, 48.84643245789922], [2.342279638633479, 48.846476843527505], [2.3421229819550042, 48.84651820895095], [2.341952732415148, 48.84656259410318], [2.341796075208077, 48.84660395999467], [2.341625825109773, 48.846648344678286], [2.341618636003155, 48.84666072078362], [2.341697949522302, 48.84676575011649], [2.341789297742454, 48.84687720766946], [2.341868611934915, 48.84698223686878], [2.341959960888173, 48.84709369516909], [2.341952271626528, 48.84710650832542], [2.341775600809148, 48.847145251285575], [2.341618363683524, 48.84717768399933], [2.341441692376521, 48.84721642646398], [2.341284456202333, 48.847248857845024], [2.3411077830433022, 48.84728759980659], [2.340950546435104, 48.847320031646056], [2.340864290464701, 48.847349045568755], [2.340895396350439, 48.847406816429235], [2.340895527087027, 48.84740703839199], [2.3409667181270812, 48.84752374474675], [2.341040981268394, 48.84764560330838], [2.3411121729714512, 48.84776230865231], [2.341186436792742, 48.84788416709756], [2.341257630498806, 48.848000873236735], [2.341331895000187, 48.8481227315656], [2.3414030879951673, 48.84823943758572], [2.34147735318801, 48.84836129489893], [2.341548546834747, 48.84847800080747], [2.341622812696331, 48.84859985890358], [2.341694006994634, 48.848716564700545], [2.341768273536434, 48.84883842268025], [2.341839469860431, 48.8489551274739], [2.341913737082255, 48.8490769853372], [2.34198493268402, 48.849193690911065], [2.342059200585976, 48.849315548657955], [2.342130396850684, 48.849432253220975], [2.342204665432881, 48.84955411085144], [2.342275862337937, 48.84967081620219], [2.342350131600183, 48.84979267371625], [2.342421330530981, 48.849909378063614], [2.34249560047349, 48.85003123546125], [2.342566798681973, 48.850147940588855], [2.342609271794021, 48.85021762772689], [2.342641007660244, 48.850257399892506], [2.3427374939289862, 48.850230739699974], [2.342890077460927, 48.85018285872124], [2.343048429964031, 48.85013697791676], [2.343201014309765, 48.85008909564565], [2.343359366254188, 48.85004321442578], [2.343511950028347, 48.84999533265339], [2.343670301414088, 48.84994945101817], [2.343681965212882, 48.849949671488794], [2.343837274136107, 48.850001882035336], [2.344001699789556, 48.85005369538136], [2.344157009343147, 48.850105905507995], [2.344321436994102, 48.85015771931655], [2.344476747189374, 48.85020992812397], [2.344641175486463, 48.85026174148828], [2.344660568009317, 48.850252502489774], [2.344633874315004, 48.85011249096395], [2.344610590184585, 48.85001702886419], [2.34458389675648, 48.84987701639828], [2.344535488998399, 48.849710489708436], [2.34454352377513, 48.84970052297796], [2.344712688328782, 48.849652891490024], [2.344920427740277, 48.849594975471554], [2.345089590244124, 48.849547343438836], [2.345297328804682, 48.849489427659776], [2.345466491995477, 48.84944179419776], [2.345674228353723, 48.84938387775135], [2.345843390845989, 48.849336244651255], [2.345866373193013, 48.84933507433094], [2.345876879768014, 48.8493297680043], [2.3460592363025983, 48.84927613426999], [2.3462402270791403, 48.849220538490144], [2.346422581494772, 48.84916690418931], [2.34660357151559, 48.84911130695509], [2.346785925175036, 48.849057672095235], [2.346966914417571, 48.84900207520517], [2.347149268683594, 48.848948439793716], [2.347330255807726, 48.848892841441874], [2.347512609317453, 48.848839205471386], [2.347693595663312, 48.84878360746378], [2.347875948416946, 48.848729970934244], [2.348056934007047, 48.84867437147229], [2.34823928600438, 48.84862073438373], [2.348420272178868, 48.84856513527337], [2.348424908322237, 48.84854365147539], [2.348412964369666, 48.84852335626787], [2.348254562233893, 48.848479187594904], [2.348091248463853, 48.84843420051136], [2.347932846871748, 48.84839003140893], [2.347769535032735, 48.848345042990715], [2.347611133984302, 48.848300873458854], [2.347447821328516, 48.84825588548981], [2.347447662442375, 48.84825584145399], [2.347261006894851, 48.84820562384663], [2.347097696202353, 48.84816063540323], [2.347095549745754, 48.84815988891379], [2.347023360628493, 48.84813233341763], [2.346847544548251, 48.84805735561497], [2.346686600282618, 48.84798758779864], [2.346510783812684, 48.847912609483906], [2.346349840456198, 48.84784284030621], [2.346174026321743, 48.84776786149432], [2.346013082489112, 48.8476980927464], [2.345837269327495, 48.84762311342988], [2.345676327766751, 48.84755334332806], [2.345500514215349, 48.847478363499505], [2.345339573541076, 48.8474085938349], [2.3451786332978353, 48.84733882394944], [2.345002821186204, 48.84726384337508], [2.344997212253352, 48.84725897321448], [2.344935802600768, 48.8471293270898], [2.344876202284892, 48.847000162988344], [2.344814793226908, 48.84687051767075], [2.344755193506929, 48.84674135347904], [2.344693785055041, 48.84661170806925], [2.344634185930953, 48.84648254378721], [2.344625553923643, 48.84647665335901], [2.344431182234262, 48.84643284454446], [2.344233048367709, 48.846388183780256], [2.344038677326918, 48.84634437522382], [2.343840545495566, 48.84629971381354], [2.343646175114679, 48.84625590461597], [2.343448042593551, 48.84621124254465], [2.343253672883908, 48.84616743180667], [2.343055541035506, 48.846122769081774], [2.343030253980965, 48.846091329779675]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 99, "zemmour_eric": 105.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "5-2", "circ_bv": "02", "num_bureau": 2, "roussel_fabien": 20.0, "nb_emargement": 1279.0, "nb_procuration": 80.0, "nb_vote_blanc": 12.0, "jadot_yannick": 90.0, "le_pen_marine": 76.0, "nb_exprime": 1265.0, "nb_vote_nul": 1.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1613.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "20", "geo_point_2d": [48.84822142016084, 2.343964904592303], "melenchon_jean_luc": 287.0, "poutou_philippe": 5.0, "macron_emmanuel": 529.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389289675742523, 48.83899149285755], [2.389335684990893, 48.8390086915118], [2.389494062166284, 48.839074410479135], [2.389682932967212, 48.83915329498575], [2.38984131101981, 48.83921901348485], [2.390030184222146, 48.83929789833921], [2.390121990199188, 48.839335993036336], [2.3901323861011172, 48.83933422752939], [2.390142608122375, 48.83930912899508], [2.390236056682922, 48.839201003858584], [2.390334168255286, 48.839078463152134], [2.390347770625774, 48.83907373078543], [2.390547617149979, 48.83908889881083], [2.390744158386463, 48.8391029056787], [2.390944005137875, 48.8391180730415], [2.391140545228473, 48.83913207925082], [2.391340392196682, 48.839147246850295], [2.391536933876607, 48.839161251515584], [2.391736781072011, 48.83917641845242], [2.391933322957943, 48.8391904233654], [2.391943410631007, 48.8391884429858], [2.3920912717959393, 48.83910862069578], [2.392241526984258, 48.8390273426247], [2.392389387235642, 48.83894751995466], [2.392539641484209, 48.838866242396705], [2.392687502184353, 48.83878641935361], [2.392837754151734, 48.83870514050327], [2.392985613938437, 48.83862531708018], [2.393135864976559, 48.838544037843675], [2.393149621824548, 48.83854343940976], [2.393161182466494, 48.83853218588291], [2.393273823894738, 48.83840560725862], [2.393389996442203, 48.838277957296214], [2.393502636765394, 48.838151378427696], [2.393618808185884, 48.83802372821403], [2.393626538606647, 48.83801975174863], [2.393775245771441, 48.837990032396206], [2.393926395286115, 48.837960341422324], [2.394075102110549, 48.837930621695534], [2.394226251282139, 48.837900930341185], [2.39424269398214, 48.83789406063908], [2.394242601368808, 48.83788221736503], [2.394145288273296, 48.837782328771326], [2.394027809105662, 48.83766237837337], [2.3939304968321933, 48.837562489585224], [2.393813018654318, 48.83744253895277], [2.393715707192421, 48.83734265086959], [2.393598230004293, 48.83722270000258], [2.393500919374879, 48.8371228108257], [2.39338344317649, 48.837002859724166], [2.393286133369091, 48.836902970352874], [2.393270454056152, 48.83689928437574], [2.393072179037407, 48.83694193448536], [2.392870218619356, 48.83698503053125], [2.392671941574133, 48.837027680866576], [2.3924699804929492, 48.83707077623341], [2.392271704156435, 48.83711342590897], [2.392069742412128, 48.837156520596736], [2.391871464059613, 48.837199169598605], [2.391669501652185, 48.83724226360729], [2.3914712240084, 48.83728491194944], [2.391269260937862, 48.837328005279076], [2.391209390212452, 48.837307397454886], [2.391189639457199, 48.837325571091625], [2.391097694597774, 48.837401067793344], [2.390973681107354, 48.8375039306512], [2.390842023965488, 48.83761203370851], [2.390718009468701, 48.83771489628189], [2.390586349901445, 48.83782299903049], [2.390462334398075, 48.83792586131938], [2.39033067512997, 48.838033963773086], [2.390206658620212, 48.83813682577749], [2.390074996916166, 48.83824492882176], [2.389950979399803, 48.83834779054167], [2.389826961393965, 48.838450652123555], [2.389695299482649, 48.838558753827186], [2.389678295387445, 48.838575333152946], [2.389677366811048, 48.83857912012669], [2.389575599865742, 48.838679030832765], [2.389477672155707, 48.838789042890305], [2.38937590441766, 48.838888953407725], [2.389300579708736, 48.838973572078295], [2.389289675742523, 48.83899149285755]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 66, "zemmour_eric": 81.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "12-20", "circ_bv": "08", "num_bureau": 20, "roussel_fabien": 15.0, "nb_emargement": 1115.0, "nb_procuration": 58.0, "nb_vote_blanc": 7.0, "jadot_yannick": 115.0, "le_pen_marine": 57.0, "nb_exprime": 1104.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1351.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1115, "quartier_bv": "46", "geo_point_2d": [48.83815411476451, 2.391819838519277], "melenchon_jean_luc": 321.0, "poutou_philippe": 11.0, "macron_emmanuel": 384.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.330425124109578, 48.854453537962456], [2.330439195256774, 48.85446821862832], [2.330466660227743, 48.85451179226782], [2.330466980130919, 48.85451235165786], [2.330522469524675, 48.854619293244596], [2.330590660167311, 48.854751672150556], [2.330646150081214, 48.85485861275758], [2.330714339976891, 48.854990992456216], [2.330769831762412, 48.85509793299049], [2.330770515665579, 48.855099015141384], [2.330861153523872, 48.85522032690615], [2.330957123232585, 48.8553480259334], [2.331047760595656, 48.85546933752199], [2.331143732571624, 48.85559703727789], [2.331234370813855, 48.85571834779862], [2.331330343705813, 48.855846047376225], [2.331420982804026, 48.85596735862771], [2.331516956623527, 48.8560950571277], [2.3316075965894782, 48.85621636821066], [2.3316652698076172, 48.85629310570376], [2.331669110100596, 48.85629919598916], [2.331735805313551, 48.856294488029974], [2.331937111478129, 48.85622322133367], [2.332120424670322, 48.85615783996818], [2.332303738765217, 48.85609245832566], [2.332505043372467, 48.856021190661004], [2.332505063906995, 48.85602118358074], [2.332688375675623, 48.85595580133331], [2.332863747163858, 48.85589346471375], [2.333047058044588, 48.85582808101001], [2.333222430036578, 48.85576574386522], [2.333405740006382, 48.855700360503825], [2.333581109776652, 48.85563802281859], [2.333756479138705, 48.85557568397354], [2.333939789132562, 48.85551029979045], [2.333940105366821, 48.85551019003081], [2.334105675155474, 48.85545452508891], [2.334283164499309, 48.85539512915972], [2.334448733567444, 48.85533946283803], [2.334626222116698, 48.85528006729314], [2.3347917904527202, 48.855224400491046], [2.334969278218985, 48.85516500443116], [2.335134845822891, 48.85510933714862], [2.335312332806271, 48.85504994057372], [2.335502429192297, 48.854986135875485], [2.335679915337007, 48.85492673874882], [2.335870010812092, 48.854862934358835], [2.336047496129493, 48.854803535781066], [2.336237589342192, 48.85473973079249], [2.336415073809563, 48.85468033256223], [2.336434042221743, 48.8546852708838], [2.336521082712935, 48.854842719616904], [2.336605584443409, 48.85499665300144], [2.336617453594727, 48.855002561907085], [2.336694537398701, 48.85500609380423], [2.336763607800944, 48.85500927365645], [2.336820125503579, 48.85501463228331], [2.3368263556770428, 48.85500110905246], [2.3368337495029152, 48.85494552229153], [2.336852985184955, 48.854813818674586], [2.336869210402615, 48.854691841059456], [2.336888447264184, 48.85456013741429], [2.336904672331281, 48.854438158867204], [2.336923909009461, 48.854306455186276], [2.336940133914556, 48.8541844766065], [2.336959369046759, 48.854052772882284], [2.336975593789854, 48.85393079426986], [2.336975491538395, 48.853928655037606], [2.336964266855664, 48.853893643013485], [2.336954782702759, 48.85385251512614], [2.336954488533304, 48.85385057088962], [2.336956546468474, 48.853702232804046], [2.336963349147895, 48.853553949770095], [2.336965408408801, 48.853405611652335], [2.336972211024179, 48.853257328578295], [2.336974268885467, 48.85310899041324], [2.336981071448453, 48.852960706399855], [2.33694051327118, 48.85293351177794], [2.336885270752354, 48.85292547207865], [2.336688474672682, 48.85297426313366], [2.33647452270207, 48.85302777028182], [2.336277725851457, 48.85307656065678], [2.336063774401818, 48.85313006707314], [2.336054545297788, 48.85313016875249], [2.335877833758847, 48.85309038267314], [2.335712128590326, 48.853051894948614], [2.335662045801379, 48.85304043789932], [2.335631679861826, 48.85309360018519], [2.335445499966998, 48.853117377708166], [2.3352721525845572, 48.85313943381724], [2.335085973724583, 48.8531632107874], [2.334912626037495, 48.85318526637474], [2.334726445475563, 48.85320904367621], [2.33455309748383, 48.85323109874179], [2.334366917968247, 48.853254874591165], [2.334193569671878, 48.85327692913498], [2.33419234471118, 48.85327712377439], [2.334097458303265, 48.85329532482516], [2.334006752589028, 48.85331281519645], [2.334005397924015, 48.85331302799849], [2.333872968790704, 48.85332911326842], [2.33374139677503, 48.853345094342664], [2.333609824678653, 48.85336107527195], [2.333477395289623, 48.85337716100269], [2.333472934249022, 48.85337826034718], [2.333301189207179, 48.853445159001616], [2.333132408751633, 48.85351114129888], [2.332963629219913, 48.85357712426106], [2.332791881517486, 48.853644021265616], [2.332789927286783, 48.85364465160897], [2.332624230425199, 48.85368769793082], [2.332460627523607, 48.85373014324408], [2.332294928766973, 48.8537731881997], [2.33213132667999, 48.85381563396631], [2.331967722963684, 48.85385807950002], [2.331802024755733, 48.853901123775756], [2.331638420502872, 48.85394356885595], [2.331472720388255, 48.85398661266478], [2.331472539902881, 48.85398665842283], [2.33129002871183, 48.85403181327114], [2.331108968173388, 48.85407689950516], [2.330926454976856, 48.85412205468695], [2.330745395173058, 48.85416714037473], [2.330562881356934, 48.85421229409902], [2.33038181955064, 48.85425738012472], [2.330334621038398, 48.854268793210494], [2.330334399419735, 48.85427532668456], [2.330351659035854, 48.85430299031124], [2.330375717417147, 48.85435361024754], [2.330428519466483, 48.854437383861566], [2.330425124109578, 48.854453537962456]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 74, "zemmour_eric": 78.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "6-9", "circ_bv": "02", "num_bureau": 9, "roussel_fabien": 10.0, "nb_emargement": 735.0, "nb_procuration": 56.0, "nb_vote_blanc": 5.0, "jadot_yannick": 42.0, "le_pen_marine": 39.0, "nb_exprime": 730.0, "nb_vote_nul": 0.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 914.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 735, "quartier_bv": "24", "geo_point_2d": [48.85447715238955, 2.333767292469145], "melenchon_jean_luc": 106.0, "poutou_philippe": 2.0, "macron_emmanuel": 348.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.398634541858228, 48.8551614658539], [2.398634982235981, 48.85515613763057], [2.398708934792448, 48.85511224065404], [2.398761705656347, 48.855080829876236], [2.398763166138488, 48.855079812857014], [2.398856048441931, 48.85500099207869], [2.3989683061859832, 48.85490955985562], [2.3989683458302062, 48.85490730448919], [2.398947854746695, 48.85489515029493], [2.398800787292235, 48.854830456111905], [2.398651689753193, 48.85476515077542], [2.398504623033462, 48.854700456220826], [2.398355526227202, 48.85463515140699], [2.398208460252378, 48.85457045558153], [2.398059364189277, 48.85450515039105], [2.397912298949186, 48.85444045419403], [2.3977632036292422, 48.85437514862688], [2.397758034428896, 48.85436440506956], [2.397822479273077, 48.8542547030626], [2.397887097703124, 48.85414446227547], [2.397951542003569, 48.85403476017729], [2.398016158535403, 48.8539245183925], [2.398080603654914, 48.85381481620994], [2.398145219630568, 48.853704575232975], [2.398209664206348, 48.853594872959206], [2.398274279646603, 48.85348463099143], [2.398338722315874, 48.85337492861955], [2.39840333856275, 48.85326468746642], [2.398394752819873, 48.85325287181107], [2.39819665594506, 48.853211359935955], [2.3980011324527393, 48.8531703166472], [2.397803036205351, 48.85312880411735], [2.397607513322443, 48.85308776108169], [2.397409417702484, 48.8530462478971], [2.397213895439385, 48.853005204215194], [2.397163743050979, 48.8529830757587], [2.397162546575666, 48.852983539191335], [2.397144435693963, 48.8530067644928], [2.397133069726132, 48.85302372292888], [2.397133317430843, 48.853025636195056], [2.397040061064166, 48.85314746080047], [2.39695448632127, 48.85325576543894], [2.396861229124745, 48.85337758987978], [2.396775653621708, 48.85348589526724], [2.39669007777335, 48.85359419968363], [2.396596817990162, 48.85371602387441], [2.396511241392261, 48.85382432814047], [2.39641798214189, 48.85394615217354], [2.3963324047838173, 48.85405445718856], [2.396239144713879, 48.854176280157766], [2.396153566606143, 48.85428458502243], [2.396091521877762, 48.854365631509516], [2.396078257105748, 48.854373273781135], [2.396072086010579, 48.85438244837115], [2.396040868440512, 48.85442322557542], [2.395950535780647, 48.854536353767195], [2.395857272592708, 48.854658176379075], [2.395766939126927, 48.854771304408324], [2.395673675089115, 48.854893126851316], [2.395583340817507, 48.85500625471807], [2.395490075929917, 48.85512807699216], [2.395399739489538, 48.85524120468951], [2.395306475114989, 48.85536302680168], [2.395216137868556, 48.85547615433647], [2.395215707154043, 48.85547674483002], [2.395122441917195, 48.855598567672196], [2.39503566325453, 48.85572958128557], [2.394944353610569, 48.85586390219747], [2.394857574068661, 48.855994914751115], [2.394766263500633, 48.856129235495054], [2.394679483058582, 48.85626024878757], [2.394588172929336, 48.85639456937041], [2.394501390234711, 48.856525582495514], [2.394514220855114, 48.85655618835677], [2.394523142721813, 48.85656156932875], [2.394739920908772, 48.856591286835865], [2.394934716100724, 48.85662668998709], [2.395151494793346, 48.85665640674691], [2.395346290508501, 48.856691809226085], [2.395347353598498, 48.85669192611689], [2.395528163069376, 48.85670701601793], [2.395703568188726, 48.85672143891731], [2.39588437922805, 48.85673652828655], [2.396059783192901, 48.85675094975726], [2.3962405944377903, 48.85676603858787], [2.396415998590157, 48.85678046043536], [2.396596810040605, 48.856795548727355], [2.396772215764196, 48.85680996915983], [2.396947620211593, 48.856824390227466], [2.397128431968425, 48.85683947771563], [2.397145805468825, 48.85683981256399], [2.397159443794171, 48.8567980400555], [2.397247100627408, 48.85666938845676], [2.3973340669933743, 48.85654171359202], [2.397421721611762, 48.856413060929476], [2.39750868712192, 48.85628538590838], [2.397596342240798, 48.85615673309511], [2.397683306895357, 48.856029057917596], [2.397770961141477, 48.85590040584604], [2.397857924950742, 48.85577272961289], [2.397944888323436, 48.85564505420111], [2.398032539914869, 48.8555164018866], [2.398035804264572, 48.85551343427203], [2.398154855509564, 48.855442209391995], [2.398285412012268, 48.85536389962419], [2.398285465525562, 48.8553638684161], [2.398402499175929, 48.855294399457485], [2.398569546391168, 48.8551970699473], [2.398612626691254, 48.85517149766252], [2.398634541858228, 48.8551614658539]]], "type": "Polygon"}, "properties": {"lassalle_jean": 23.0, "pecresse_valerie": 43, "zemmour_eric": 78.0, "hidalgo_anne": 56.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-48", "circ_bv": "15", "num_bureau": 48, "roussel_fabien": 34.0, "nb_emargement": 1461.0, "nb_procuration": 80.0, "nb_vote_blanc": 13.0, "jadot_yannick": 145.0, "le_pen_marine": 54.0, "nb_exprime": 1446.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1814.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1463, "quartier_bv": "80", "geo_point_2d": [48.85516042179597, 2.39679136217293], "melenchon_jean_luc": 595.0, "poutou_philippe": 11.0, "macron_emmanuel": 395.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345530093985815, 48.82789024961494], [2.345533385937471, 48.827886595482205], [2.345486554862152, 48.827755251689666], [2.345441214474149, 48.82762605923201], [2.345394383865067, 48.82749471537292], [2.345349043943341, 48.82736552195102], [2.345302212438396, 48.82723417801786], [2.345256872960357, 48.827104985430346], [2.345210043283735, 48.82697364143801], [2.345164704271962, 48.82684444788625], [2.345117875061558, 48.82671310382737], [2.345072536493452, 48.826583911109985], [2.345025707749259, 48.82645256698447], [2.344980369647407, 48.82632337330289], [2.344980433761518, 48.826319137591945], [2.345022876832105, 48.826205390300935], [2.345065931322653, 48.82609305205815], [2.345066250867667, 48.8260899518589], [2.345046460586015, 48.825966763804935], [2.34502717036007, 48.82585224486552], [2.345026792328282, 48.825850892830736], [2.344979994515589, 48.825733627609885], [2.344926234661414, 48.82559948608816], [2.344879437300653, 48.82548222080168], [2.34482567796443, 48.82534807920476], [2.344778881055494, 48.82523081385264], [2.344725122237211, 48.825096672180464], [2.344678325779992, 48.82497940676279], [2.344624567468442, 48.824845265914696], [2.344577771474339, 48.82472799953209], [2.344524013680613, 48.82459385860873], [2.344477218138421, 48.824476592160515], [2.344423460862614, 48.82434245116197], [2.344376665772121, 48.82422518464814], [2.344389761111357, 48.824213899997346], [2.344481826000292, 48.82421356288309], [2.344568844817867, 48.8242124308715], [2.344581832423886, 48.82420136955443], [2.34456389020469, 48.82415127029525], [2.344546101753726, 48.824103244040806], [2.344554619618668, 48.82408682311573], [2.3445479181324558, 48.824080000576735], [2.344497098741023, 48.82407459196625], [2.344339755542347, 48.824046721054366], [2.344342047524063, 48.82405368491445], [2.344378384737698, 48.82407613835198], [2.344247489242639, 48.82418720254163], [2.344118231555036, 48.82429687703026], [2.343987334951529, 48.82440794091335], [2.343858074807419, 48.82451761509177], [2.343727177095653, 48.82462867866824], [2.343597917218969, 48.82473835255139], [2.3434686554365483, 48.8248480262766], [2.343337756054382, 48.8249590902935], [2.343208494539377, 48.82506876372344], [2.343077594060148, 48.82517982653437], [2.3430773408088292, 48.825180034698136], [2.34294779369773, 48.8252836408616], [2.342813426841049, 48.82539092582536], [2.342683878681497, 48.825494531683475], [2.342549512100291, 48.82560181633802], [2.342419961530225, 48.82570542188332], [2.342285593862543, 48.825812706221186], [2.342156043606057, 48.82591631146859], [2.342021673489624, 48.82602359548228], [2.341892122184655, 48.826127200424345], [2.341757752343685, 48.826234484128825], [2.341697560205179, 48.82623388299029], [2.341695006491482, 48.82626643805787], [2.34165717176254, 48.826301274889715], [2.34166923719578, 48.82631975334684], [2.341667314572818, 48.826392617443965], [2.341665455034008, 48.82646307425294], [2.341659666901217, 48.826575828686195], [2.34165588333248, 48.826719149551714], [2.341650095150557, 48.826831903958734], [2.341650088201795, 48.82683223848842], [2.341650739960886, 48.826960982367915], [2.341646957690391, 48.827104304090824], [2.341647183065525, 48.82714880465277], [2.341652886701497, 48.82715946307684], [2.341728180466617, 48.82716494912497], [2.341775464138086, 48.827161044372275], [2.341831895861563, 48.827161041974286], [2.341844838649874, 48.82716723075871], [2.341910658202103, 48.82729965191679], [2.341975473593509, 48.82742790968247], [2.342041293795298, 48.82756033163723], [2.342106108481409, 48.8276885883955], [2.342171930706226, 48.827821010255064], [2.342236746037798, 48.827949266912725], [2.342302568923554, 48.82808168866962], [2.342367384900699, 48.82820994522669], [2.342368340557525, 48.8282113966767], [2.342434904370953, 48.828293552740945], [2.342505401560159, 48.82837912462621], [2.342571965803728, 48.82846128060187], [2.342642463433373, 48.82854685329289], [2.3426548915743632, 48.828551543490704], [2.342730851584336, 48.828549839352576], [2.342782165223813, 48.82854814272791], [2.342794891367094, 48.828541405295525], [2.342842042177017, 48.828420941326094], [2.342883659032399, 48.828303327617455], [2.342892044375023, 48.82829697643769], [2.343063872155015, 48.828253456228715], [2.343232687530457, 48.828210825799616], [2.343404513380028, 48.82816730509046], [2.343573329548753, 48.82812467508403], [2.3437451548413453, 48.82808115298279], [2.343913969090444, 48.82803852248478], [2.344082783063464, 48.82799589174685], [2.344254608868426, 48.82795236891612], [2.344423422283931, 48.82790973769413], [2.344595246147258, 48.82786621526252], [2.344764060378662, 48.82782358266455], [2.344935883673571, 48.82778005974023], [2.344944912957256, 48.82777989064936], [2.345079948460493, 48.82780840921259], [2.345223904524044, 48.82783816093955], [2.34535894033072, 48.8278666791863], [2.34550289671438, 48.82789643057588], [2.345530093985815, 48.82789024961494]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 74, "zemmour_eric": 63.0, "hidalgo_anne": 66.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-54", "circ_bv": "10", "num_bureau": 54, "roussel_fabien": 36.0, "nb_emargement": 1405.0, "nb_procuration": 66.0, "nb_vote_blanc": 21.0, "jadot_yannick": 134.0, "le_pen_marine": 78.0, "nb_exprime": 1380.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1731.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1404, "quartier_bv": "51", "geo_point_2d": [48.82655991778598, 2.3435746292007473], "melenchon_jean_luc": 464.0, "poutou_philippe": 10.0, "macron_emmanuel": 416.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.374081099688326, 48.84590508471161], [2.374068275936786, 48.84592844499022], [2.374081535524144, 48.846058154082], [2.37409387883211, 48.84618156286019], [2.374107137185095, 48.84631127191254], [2.374119480624334, 48.84643467976074], [2.374131824122134, 48.84655808759397], [2.374145082665351, 48.84668779659834], [2.374157426272927, 48.84681120530019], [2.374170686306773, 48.846940914279394], [2.374181340995856, 48.84694909030744], [2.374364833768251, 48.84697585254928], [2.374542499430163, 48.84700061175516], [2.374725993931937, 48.84702737344895], [2.374903659941071, 48.84705213211741], [2.374912953214741, 48.84705680606504], [2.374979306359755, 48.847141658985876], [2.375089626554904, 48.84729152397862], [2.37515598029721, 48.84737637588432], [2.37515814260252, 48.8474018569537], [2.375181532215016, 48.847409434773404], [2.37527493815336, 48.84747907316699], [2.375453839906446, 48.84760496917367], [2.375547246559028, 48.84767460734244], [2.375549431672848, 48.847676822170214], [2.375622561908343, 48.847782152415036], [2.37571048117946, 48.84790858042296], [2.375783612065786, 48.84801391054744], [2.375871532129378, 48.848140337511396], [2.375944663655571, 48.848245668414805], [2.376000218634306, 48.84832555565509], [2.376014106759669, 48.84832959154896], [2.3760480949234, 48.84831666609439], [2.376179181427929, 48.848242516969286], [2.376352495552413, 48.84814738101243], [2.376483581198107, 48.84807323154257], [2.376656894203801, 48.84797809513033], [2.376787980363857, 48.84790394442345], [2.376961292250961, 48.847808807555786], [2.377092376178796, 48.84773465739637], [2.377109588606968, 48.84773087708227], [2.377122502306085, 48.847708920883385], [2.377271361320716, 48.847612483485925], [2.377422043999051, 48.847513572265186], [2.377570901912125, 48.84741713357879], [2.377689705663625, 48.8473391469595], [2.377721583457108, 48.847318221963455], [2.377722712770191, 48.84730923607263], [2.377696704932974, 48.84730087528309], [2.377577377735352, 48.8472197252747], [2.377422703831367, 48.847113524000186], [2.37730337747864, 48.84703237460413], [2.377148704699718, 48.84692617205827], [2.377029379202619, 48.84684502237529], [2.376874707527361, 48.84673882035665], [2.376755382896638, 48.84665766948745], [2.376756904656225, 48.84664425271357], [2.3769176298677, 48.846563450757905], [2.377083604735483, 48.84648312019892], [2.377244328943487, 48.84640231779265], [2.377410302794526, 48.84632198676882], [2.377571025988321, 48.846241184811326], [2.377736998833358, 48.846160852423324], [2.377897721023696, 48.84608005001525], [2.378063692841258, 48.84599971806174], [2.378068504198473, 48.84598877001441], [2.37803473020861, 48.84596667889443], [2.377941246150734, 48.84585019282993], [2.377845967865243, 48.8457330255272], [2.377752483285917, 48.84561653928369], [2.377657207214438, 48.845499371813226], [2.377649783507423, 48.8454951547785], [2.377468287039231, 48.845452376855], [2.377296849094408, 48.84541331049558], [2.377125411395757, 48.84537424478841], [2.376943915779156, 48.8453314660648], [2.376931114699926, 48.845332761923785], [2.376793423357447, 48.84540147247536], [2.376651388694146, 48.84547156952965], [2.376513696605282, 48.84554028065005], [2.376371659835729, 48.84561037645708], [2.3762339670113333, 48.845679087247014], [2.376091929476477, 48.84574918361252], [2.376074840016604, 48.845748773418116], [2.375896706381377, 48.845646759163714], [2.375735600049217, 48.845556880381324], [2.375574494262065, 48.84546700227408], [2.375396361217535, 48.84536498634251], [2.375382081203287, 48.845339031857364], [2.375334400525028, 48.84534523490081], [2.375331608575541, 48.84534659184399], [2.375176800915231, 48.84544412463536], [2.375024331544423, 48.84553842725052], [2.374869524101701, 48.845635959634656], [2.374717053624445, 48.84573026094267], [2.374562243663564, 48.84582779380453], [2.374409772068965, 48.84592209470479], [2.374399843347833, 48.8459245169193], [2.374252225738379, 48.84592013128938], [2.374108850815545, 48.84590331696402], [2.374081099688326, 48.84590508471161]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 49, "zemmour_eric": 73.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-59", "circ_bv": "07", "num_bureau": 59, "roussel_fabien": 22.0, "nb_emargement": 1039.0, "nb_procuration": 59.0, "nb_vote_blanc": 12.0, "jadot_yannick": 84.0, "le_pen_marine": 53.0, "nb_exprime": 1024.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1267.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1039, "quartier_bv": "48", "geo_point_2d": [48.84660687308235, 2.376025166285733], "melenchon_jean_luc": 334.0, "poutou_philippe": 3.0, "macron_emmanuel": 338.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.361944752834472, 48.89322343234297], [2.361932886619072, 48.89322669120614], [2.361883673438917, 48.893228581945316], [2.361652936774793, 48.89325223008931], [2.361455188779358, 48.89325982546266], [2.361429694579939, 48.89326953078039], [2.361418949881959, 48.89328331762206], [2.3614657460012882, 48.89340845397722], [2.361513323344547, 48.89353596776994], [2.361560119917773, 48.89366110405942], [2.361607697712007, 48.89378861868455], [2.36165449473914, 48.89391375490826], [2.361702074359227, 48.89404126947377], [2.3617488718513, 48.89416640473253], [2.361796450569563, 48.89429391922383], [2.361843248504427, 48.894419055316135], [2.361890827684714, 48.894546569740555], [2.361937626073605, 48.89467170576712], [2.361985205726941, 48.894799219225376], [2.362032004569763, 48.89492435518617], [2.362079584674116, 48.895051869476816], [2.362126383970875, 48.8951770053719], [2.36217396453727, 48.89530451959561], [2.362162826431227, 48.89531555336844], [2.362013778912943, 48.895330903990704], [2.361859978686647, 48.89534719676893], [2.361710930988486, 48.89536254701382], [2.361557130573842, 48.89537883940263], [2.361547473614267, 48.89539220485404], [2.361640501881144, 48.895498742136226], [2.361749178049418, 48.8956201655139], [2.361842205772375, 48.895726702610006], [2.361950882886906, 48.89584812577935], [2.362043912793928, 48.89595466270387], [2.362152590854729, 48.89607608566488], [2.362245621581739, 48.89618262241053], [2.3623543005888212, 48.89630404516326], [2.362447330772124, 48.89641058172273], [2.362556012089405, 48.89653200427438], [2.362649043092709, 48.89663854065501], [2.362742075840669, 48.89674507696032], [2.362850757179815, 48.896866499200115], [2.362859284338874, 48.896892059997725], [2.362881854222789, 48.896898075996084], [2.363007666002266, 48.89688097384027], [2.363205161131065, 48.896854341360424], [2.363398580413595, 48.89682804841499], [2.363596075130657, 48.896801416188424], [2.363789492666211, 48.89677512170392], [2.363986988346443, 48.89674848883871], [2.364180405476949, 48.89672219462078], [2.364377900767408, 48.89669556021041], [2.364571317503743, 48.896669265359876], [2.364768811018649, 48.89664263119557], [2.364962227371882, 48.89661633481321], [2.365159721849929, 48.8965897000102], [2.365353137798106, 48.896563403894525], [2.365550631886233, 48.896536767546344], [2.365744047440421, 48.89651047079804], [2.36594153975289, 48.89648383469597], [2.366134956287836, 48.89645753642303], [2.3663324481995103, 48.89643089967504], [2.3665258629654913, 48.89640460166154], [2.366723355851209, 48.89637796337559], [2.366916770223071, 48.8963516647295], [2.367114262697036, 48.89632502669688], [2.367307676685704, 48.89629872651894], [2.367505167394943, 48.896272087833225], [2.367698582353373, 48.89624578702989], [2.367896072661781, 48.89621914769825], [2.368089485851245, 48.89619284715442], [2.36828697712272, 48.89616620718406], [2.3684803899289433, 48.89613990510836], [2.368677880799569, 48.896113264492094], [2.368871293211526, 48.896086961783844], [2.369068782317499, 48.896060320514444], [2.369262195688285, 48.896034018080044], [2.369459684393397, 48.89600737616474], [2.369653096017001, 48.89598107219135], [2.369850585685036, 48.89595442963732], [2.370043996914551, 48.89592812503134], [2.370241484817911, 48.89590148182426], [2.370434897006144, 48.89587517749212], [2.370632384508518, 48.89584853363914], [2.37082579494963, 48.895822227767965], [2.371023283414997, 48.895795583276275], [2.371216693461894, 48.89576927677255], [2.371263052971316, 48.8957763855649], [2.371278281042891, 48.8957651305161], [2.371289958854494, 48.89574968669154], [2.371262027643416, 48.89571694788628], [2.371082452294729, 48.89566998417673], [2.3708922063759132, 48.89561980573597], [2.370712633059766, 48.89557284147484], [2.370522387852349, 48.89552266244213], [2.370342813841075, 48.895475697615154], [2.370152569334182, 48.8954255188898], [2.369972997366229, 48.89537855261202], [2.369782753570737, 48.89532837329476], [2.369603180896687, 48.89528140735039], [2.36941293782349, 48.89523122654191], [2.369233367181985, 48.89518426004603], [2.369043124820305, 48.89513407864563], [2.368863553483598, 48.89508711158387], [2.368673311833239, 48.89503692959151], [2.368493741165212, 48.894989961971106], [2.368303500215367, 48.89493978028611], [2.368123931590801, 48.894892811214945], [2.367933691352377, 48.89484262893805], [2.367754122021818, 48.89479566020027], [2.367563882505745, 48.89474547643219], [2.3673843152076373, 48.89469850714295], [2.367194076402999, 48.89464832278293], [2.3670145084097243, 48.89460135292779], [2.366824270316531, 48.894551167975905], [2.366644704355813, 48.89450419756934], [2.366454466974166, 48.89445401202553], [2.366274900318293, 48.89440704105309], [2.366272422957616, 48.894406184381744], [2.366116148819455, 48.89433776985691], [2.365958586564063, 48.894268988574], [2.365802313250084, 48.89420057363107], [2.365644750449675, 48.89413179281864], [2.365488477959876, 48.8940633774576], [2.365330917353091, 48.89399459623092], [2.365174645687469, 48.893926180451786], [2.365017085910459, 48.89385739880354], [2.36486081506891, 48.893788982606324], [2.364703256121775, 48.89372020053658], [2.364546986104399, 48.89365178392127], [2.364389427986934, 48.89358300142999], [2.36423315879383, 48.89351458439659], [2.364075601506137, 48.893445801483864], [2.3639193331372033, 48.89337738403239], [2.363761776690266, 48.893308599798836], [2.363605509145504, 48.89324018192927], [2.363447953517348, 48.89317139817354], [2.363439686011836, 48.893169917112], [2.363255217410645, 48.89317651045731], [2.363057468572745, 48.89318410846979], [2.3628729998728772, 48.893190701226246], [2.36267525228913, 48.893198298614784], [2.36249078349049, 48.893204890782386], [2.3622930344333612, 48.893212487532374], [2.362108565536061, 48.89321907911113], [2.361960030899349, 48.89322478538606], [2.361944752834472, 48.89322343234297]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 35, "zemmour_eric": 72.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "18-63", "circ_bv": "17", "num_bureau": 63, "roussel_fabien": 19.0, "nb_emargement": 1305.0, "nb_procuration": 52.0, "nb_vote_blanc": 21.0, "jadot_yannick": 60.0, "le_pen_marine": 84.0, "nb_exprime": 1271.0, "nb_vote_nul": 12.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1858.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1304, "quartier_bv": "72", "geo_point_2d": [48.89517588624688, 2.365024156352848], "melenchon_jean_luc": 661.0, "poutou_philippe": 13.0, "macron_emmanuel": 265.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3711232160205, 48.88947551409239], [2.37113487224985, 48.88945801783394], [2.371194653990132, 48.88937286285511], [2.371258653986187, 48.88926419381349], [2.371284511479185, 48.889227360222456], [2.371283459126775, 48.88920393992741], [2.3712532184560082, 48.88919232106885], [2.371132734668498, 48.88904782546684], [2.371019707909341, 48.88891784349777], [2.371011816613123, 48.88891370742724], [2.370823132461357, 48.88887616583669], [2.370629316251935, 48.888837984532174], [2.370440631286728, 48.88880044232915], [2.370246815639635, 48.888762260402856], [2.370058131213723, 48.88872471849377], [2.369864316128963, 48.888686535945794], [2.369675632264107, 48.8886489925321], [2.36948181774169, 48.888610809362326], [2.369293134427021, 48.88857326534337], [2.369099320466954, 48.888535081551815], [2.368910637702479, 48.88849753692755], [2.368716824304768, 48.88845935251429], [2.368710433559291, 48.88845149110749], [2.368665810579239, 48.88844535987029], [2.368471997555271, 48.88840717505897], [2.368271765895579, 48.888370314046114], [2.368077953439899, 48.88833212859433], [2.367877722347732, 48.88829526692006], [2.367683910460348, 48.88825708082786], [2.367483679935609, 48.88822021849212], [2.367419587654645, 48.88822705021772], [2.367416479284974, 48.88824728657243], [2.367448988755849, 48.88832989304876], [2.367484083716694, 48.888421955168376], [2.367533612936628, 48.88854780826055], [2.367568706819334, 48.88863987122915], [2.36756896709941, 48.888640449070294], [2.367628919419789, 48.88875725689243], [2.367692520086414, 48.88888338743756], [2.367752472963665, 48.889000195171974], [2.367816074215388, 48.88912632652282], [2.367876027660436, 48.88924313327025], [2.367939629508185, 48.88936926452758], [2.367999583510118, 48.8894860711873], [2.368063185953903, 48.88961220235106], [2.36808940413386, 48.88966328195492], [2.368093080223761, 48.889682780685604], [2.3681110008038733, 48.88969399268349], [2.368144737218986, 48.88975972054299], [2.36816704053574, 48.88981065086097], [2.368179003285404, 48.88982586397235], [2.368240625399721, 48.88981730200089], [2.368445033791453, 48.88979282693421], [2.368649158342321, 48.8897687996838], [2.368853566351617, 48.88974432391863], [2.369057690523826, 48.88972029597077], [2.369262099514409, 48.88969581951434], [2.369466223307948, 48.88967179086898], [2.369670345549362, 48.889647761867934], [2.369874753967201, 48.88962328436406], [2.370078877193661, 48.88959925467277], [2.370283283865301, 48.88957477646324], [2.370487406713067, 48.88955074607448], [2.370691813002228, 48.8895262671665], [2.370895935471288, 48.88950223608023], [2.371100342741685, 48.889477756481], [2.3711232160205, 48.88947551409239]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 35, "zemmour_eric": 53.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-57", "circ_bv": "17", "num_bureau": 57, "roussel_fabien": 8.0, "nb_emargement": 896.0, "nb_procuration": 13.0, "nb_vote_blanc": 12.0, "jadot_yannick": 28.0, "le_pen_marine": 60.0, "nb_exprime": 880.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 9, "nb_inscrit": 1368.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 896, "quartier_bv": "73", "geo_point_2d": [48.88908245154523, 2.3691821179490513], "melenchon_jean_luc": 504.0, "poutou_philippe": 5.0, "macron_emmanuel": 147.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406122738258313, 48.85268477560632], [2.406061806921723, 48.852695500092416], [2.406015118658011, 48.85268719397009], [2.405975145042133, 48.85268008222521], [2.405952448438288, 48.85268081493273], [2.4059478441197752, 48.8526948632959], [2.405908817798938, 48.852821377978785], [2.405869642206573, 48.852949015181565], [2.405830615515877, 48.85307552891072], [2.405791438167747, 48.85320316695125], [2.405752411096831, 48.85332968062597], [2.405713234739099, 48.853457317719204], [2.405674207277702, 48.85358383223881], [2.405635030537434, 48.85371146927722], [2.405596002695705, 48.85383798374239], [2.40555682557279, 48.85396562072604], [2.40554820737057, 48.853972267265306], [2.405374947448114, 48.85401467493921], [2.405199624328233, 48.8540577592083], [2.405026363837818, 48.854100166374245], [2.404851040142066, 48.85414325012928], [2.404677779083697, 48.8541856567872], [2.4045024561748862, 48.854228740034976], [2.404329193175577, 48.854271147077384], [2.404153869701087, 48.85431422891179], [2.403980606133822, 48.85435663544622], [2.403805282083482, 48.8543997167666], [2.403632017948265, 48.85444212279301], [2.4034566933221813, 48.85448520359926], [2.4032834299817303, 48.85452760912447], [2.4031081034066872, 48.85457069030919], [2.403095792771207, 48.85458625957121], [2.403112789337232, 48.85459909171813], [2.403206811708232, 48.85465794367922], [2.4033200707685722, 48.854731716342656], [2.403443586161742, 48.85480902859697], [2.403556845885709, 48.85488280102626], [2.403680361977936, 48.85496011392494], [2.403793622365637, 48.8550338861201], [2.403796584780656, 48.855043815290685], [2.403721662765838, 48.8551597132407], [2.4036476838719922, 48.855274629249344], [2.403572762556934, 48.85539052708886], [2.40349878164415, 48.85550544297475], [2.40342385966601, 48.855621340697006], [2.4033498794599613, 48.85573625647371], [2.403349523512699, 48.85573687165117], [2.403294179714825, 48.85584520894905], [2.403239507730339, 48.8559510358872], [2.4031848355237733, 48.85605686279025], [2.403129492406456, 48.85616519998759], [2.403074818388869, 48.856271026813204], [2.403019474815328, 48.85637936393875], [2.403009439985314, 48.856385281940796], [2.402833409269811, 48.85641039292], [2.402662306859741, 48.856434538960656], [2.402486274447771, 48.85645964942129], [2.4023151730778523, 48.856483794971325], [2.402298736798641, 48.85648624183774], [2.402293546314729, 48.85649602598601], [2.402265327217317, 48.856525947493054], [2.402234007434465, 48.85655907676211], [2.402235956796587, 48.856570210519415], [2.402336149543876, 48.85663602333665], [2.402433592712682, 48.856698816717895], [2.4025337873196753, 48.8567646293689], [2.402631230956968, 48.85682742348123], [2.40263129994687, 48.856827468792936], [2.40263134729614, 48.8568274996071], [2.402770788222946, 48.856917789417324], [2.402926020325657, 48.85701880700759], [2.403065462274968, 48.857109096458906], [2.403220695518939, 48.8572101136495], [2.403360137128078, 48.85730040273506], [2.4035153728865, 48.85740141863352], [2.403654815507961, 48.857491708259424], [2.403762395982243, 48.857561714301916], [2.4037628459751432, 48.857565506387054], [2.403781133472993, 48.85757567917036], [2.403828788559437, 48.857606688611966], [2.40387937394823, 48.85763758762201], [2.403901487748579, 48.85764819764271], [2.403919342749605, 48.857635778484614], [2.404032635875819, 48.8575131207168], [2.404145665868711, 48.85739137705466], [2.404258957930717, 48.85726871904555], [2.404371988217113, 48.85714697604895], [2.404377224952106, 48.85714372849518], [2.404470955546108, 48.85711093988153], [2.404565326841632, 48.85707848803956], [2.404570135521829, 48.85707572399418], [2.404674955546327, 48.856978448824044], [2.40477831791411, 48.85688275005362], [2.404881678539334, 48.856787051178905], [2.404986497401473, 48.8566897757106], [2.405089858624301, 48.85659407664619], [2.405194676709577, 48.8564968009786], [2.405195800334537, 48.85649555647219], [2.405267770238146, 48.85640055647846], [2.40537783591583, 48.85625278771799], [2.405449803789261, 48.856157787587286], [2.405481893986539, 48.856116660714676], [2.4054905037467282, 48.85610433567363], [2.405481095583387, 48.85609585395723], [2.405450916908299, 48.85597471848013], [2.405423638358732, 48.85586375911357], [2.405423825894696, 48.85586022381305], [2.405469782678786, 48.855732449890816], [2.405515669247734, 48.85560495708421], [2.405561625571203, 48.85547718399661], [2.40560751170089, 48.85534969022617], [2.405653467574005, 48.855221917073926], [2.405699353243921, 48.855094424138294], [2.405745308676946, 48.85496665002216], [2.405791193897355, 48.85483915702197], [2.405837148869783, 48.854711383740515], [2.405883033650947, 48.85458388977655], [2.405928988173041, 48.854456116430455], [2.405974872494457, 48.85432862330128], [2.406020826576477, 48.85420084899127], [2.406066710448405, 48.85407335579757], [2.4061126640801023, 48.853945581422956], [2.40615854750255, 48.85381808816476], [2.406204499310889, 48.853690314618056], [2.406250383646657, 48.85356282130215], [2.4062963350149422, 48.85343504679154], [2.406342217538452, 48.85330755340435], [2.406388169819224, 48.853179778835894], [2.406434051893272, 48.85305228538426], [2.4064800037135052, 48.85292451165047], [2.406525885338098, 48.85279701813434], [2.40653653351374, 48.852767903248825], [2.4065241756156652, 48.85276310058453], [2.406343864160831, 48.8527315526824], [2.406129880434985, 48.85269305898943], [2.406122738258313, 48.85268477560632]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 51, "zemmour_eric": 55.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-43", "circ_bv": "15", "num_bureau": 43, "roussel_fabien": 29.0, "nb_emargement": 1450.0, "nb_procuration": 83.0, "nb_vote_blanc": 13.0, "jadot_yannick": 112.0, "le_pen_marine": 56.0, "nb_exprime": 1434.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1810.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1451, "quartier_bv": "80", "geo_point_2d": [48.855478025524064, 2.4045110618654926], "melenchon_jean_luc": 694.0, "poutou_philippe": 13.0, "macron_emmanuel": 355.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.393290112604787, 48.86957687727724], [2.3933116797848353, 48.869537754821636], [2.393430008553743, 48.86944419935018], [2.3935466185637972, 48.86935151729719], [2.393664946487705, 48.86925796157769], [2.393781555662848, 48.86916527928019], [2.393899882752229, 48.86907172241347], [2.394016491092465, 48.868979039871455], [2.394134817326394, 48.86888548365599], [2.394251424831631, 48.868792800869485], [2.394369748857501, 48.86869924439911], [2.39448635689103, 48.868606561375024], [2.394488134502794, 48.86860539313499], [2.394541767866586, 48.868576120312134], [2.394604052877742, 48.86854269041894], [2.394607429699476, 48.86853142261003], [2.394518410300864, 48.86842328652248], [2.394431964453352, 48.868317312794474], [2.394342945774309, 48.86820917745473], [2.394256500639059, 48.86810320357952], [2.39416748270069, 48.86799506718905], [2.394081038277593, 48.86788909316655], [2.394079745211601, 48.86788681219415], [2.3940386843413233, 48.86776686642104], [2.393997334175966, 48.86764508720282], [2.393956275059489, 48.867525140482876], [2.393914923915506, 48.86740336120261], [2.393873865179406, 48.86728341442822], [2.393832514419953, 48.86716163509289], [2.393791456053659, 48.86704168916326], [2.39375010705223, 48.866919908880476], [2.393709047703063, 48.8667999628895], [2.39366769908625, 48.86667818255163], [2.393626641480478, 48.86655823651304], [2.393585291874574, 48.86643645701249], [2.393570588057305, 48.86642678296218], [2.393555222601616, 48.86642780769697], [2.393412813022993, 48.86652385674761], [2.393288286692953, 48.86660596748376], [2.39328756586684, 48.86660640990208], [2.3931473106624033, 48.866685945986724], [2.392967662968452, 48.866788403229265], [2.392945499156713, 48.866779484486116], [2.392956048576356, 48.866750734855096], [2.392966479279402, 48.866725152992565], [2.392945181683995, 48.86671560101054], [2.392792510455993, 48.8667905113527], [2.392680273911826, 48.86684565595348], [2.392568035756415, 48.866900801338694], [2.3924446941587503, 48.86696132046395], [2.39244008684082, 48.86696982820699], [2.392453470554261, 48.866981179253536], [2.392492887296394, 48.86700398242058], [2.392536688694602, 48.86702989256098], [2.392539630015957, 48.867040803881295], [2.39245290953048, 48.86714862164201], [2.392368801072993, 48.8672537096084], [2.392282079879524, 48.86736152722456], [2.392197970733568, 48.86746661505067], [2.392113861248366, 48.86757170280764], [2.39202713899787, 48.86767952020813], [2.39194302882429, 48.86778460782484], [2.39185630449212, 48.86789242597312], [2.39185110173156, 48.86789598969662], [2.391637928410529, 48.86797754656481], [2.391418086216636, 48.86806161067199], [2.391411923825391, 48.86806668038501], [2.391358544377813, 48.8681780707932], [2.391305045149909, 48.868289192555565], [2.391251663882703, 48.86840058288675], [2.391198164208792, 48.868511703679694], [2.391144783848102, 48.86862309394771], [2.391091283707162, 48.86873421556983], [2.391037901526821, 48.868845605760846], [2.390984402303057, 48.868956726420436], [2.390964745369719, 48.86898776236798], [2.390989338144517, 48.86899559662412], [2.391140949858403, 48.86903287026422], [2.391295286866338, 48.86906793260876], [2.391318870687714, 48.86907578684655], [2.391323009257615, 48.8690756927775], [2.39147734787806, 48.86911075489283], [2.391643790634315, 48.869144800922705], [2.39179812967543, 48.86917986262221], [2.391964572862153, 48.86921390820384], [2.392115411919886, 48.86923666586334], [2.392281855505864, 48.86927071010274], [2.39243269486669, 48.86929346736121], [2.39259913884152, 48.86932751115767], [2.392602618647012, 48.869328380488774], [2.392785254486959, 48.86939398209084], [2.39294290673044, 48.869452760235646], [2.393125543424539, 48.869518362210385], [2.393283195065217, 48.869577139893465], [2.393290112604787, 48.86957687727724]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 22, "zemmour_eric": 36.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-67", "circ_bv": "06", "num_bureau": 67, "roussel_fabien": 29.0, "nb_emargement": 1081.0, "nb_procuration": 67.0, "nb_vote_blanc": 11.0, "jadot_yannick": 82.0, "le_pen_marine": 62.0, "nb_exprime": 1068.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1368.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1081, "quartier_bv": "79", "geo_point_2d": [48.868208527822844, 2.3928848756565624], "melenchon_jean_luc": 521.0, "poutou_philippe": 9.0, "macron_emmanuel": 258.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.334397694893718, 48.84043303690255], [2.334423196891541, 48.840423337036256], [2.334551123622661, 48.84038145747552], [2.334728972129703, 48.840320069372616], [2.334906540219594, 48.84026193784814], [2.3350843879002072, 48.84020054921025], [2.33526195382409, 48.84014241714444], [2.335439802040704, 48.84008102797913], [2.335617367149647, 48.84002289627888], [2.335795213188866, 48.839961505671724], [2.33597277885656, 48.83990337344521], [2.336150624057885, 48.83984198320243], [2.336328187571037, 48.83978384953527], [2.336459903701895, 48.83973838249176], [2.336480124877803, 48.839727218402835], [2.336412082115317, 48.83966867264603], [2.336268162052943, 48.83958405412701], [2.336124523395883, 48.83949952152807], [2.335980604267405, 48.83941490265032], [2.335836966531293, 48.83933037059257], [2.335693048336704, 48.83924575135604], [2.335549412895592, 48.839161218947815], [2.335405495634884, 48.8390765993525], [2.335261859775325, 48.838992065679335], [2.335117943448396, 48.83890744572526], [2.334974308509854, 48.83882291259329], [2.334830393116901, 48.838738292280475], [2.334686760484707, 48.83865375789872], [2.3345428460140383, 48.83856913812645], [2.334399212951931, 48.838484603379065], [2.334255299426708, 48.8383999823487], [2.334111667285586, 48.83831544814257], [2.33396775469422, 48.83823082675351], [2.333824124859333, 48.83814629129756], [2.33368021320182, 48.838061669549745], [2.333536582925619, 48.83797713462751], [2.333392672201953, 48.83789251252094], [2.333249042858205, 48.83780797724063], [2.333105133068381, 48.83772335477529], [2.332961506030852, 48.83763881824525], [2.332817597174863, 48.83755419542124], [2.332673969696005, 48.83746965942485], [2.332659883478646, 48.83746018963264], [2.332641587156128, 48.83746520676075], [2.332459904401477, 48.8375171882672], [2.332263572398742, 48.83757331475275], [2.332081888890401, 48.83762529568003], [2.331885556073432, 48.83768142153972], [2.331703871822834, 48.83773340098854], [2.331507538191639, 48.837789526222345], [2.331325853175731, 48.83784150599127], [2.331165893203759, 48.83788723223867], [2.3311588968413632, 48.83789584863868], [2.331166358435736, 48.83790799315887], [2.331333446362211, 48.83798507052024], [2.33149704843273, 48.83806032942259], [2.331500924348147, 48.83807235315105], [2.331364310617837, 48.838221857797166], [2.33123352673509, 48.83836323939766], [2.33123153359319, 48.83836811362058], [2.331235505381493, 48.83849392860553], [2.331238971558339, 48.8386141277956], [2.33123852864636, 48.8386165787944], [2.3311868533849562, 48.83874673415877], [2.33113483721328, 48.83887253913911], [2.331082819439653, 48.83899834317573], [2.331031144761907, 48.83912849933527], [2.331030740989986, 48.839131827434265], [2.331053136539718, 48.83926947582031], [2.331075316872328, 48.83940511199629], [2.331097712657201, 48.839542760340365], [2.331119894584421, 48.83967839648253], [2.331142289242022, 48.83981604477693], [2.331164471401648, 48.83995168087763], [2.331186867645279, 48.84008933003695], [2.331209048674784, 48.84022496608859], [2.331231229819732, 48.84036060211968], [2.331253626426918, 48.84049825031677], [2.331275807804172, 48.840633886306385], [2.331298204646515, 48.84077153446143], [2.331320386256079, 48.84090717040961], [2.331342783333585, 48.84104481852263], [2.331364966537919, 48.84118045443692], [2.3313873624881323, 48.841318102500345], [2.3314468574794702, 48.8413963938134], [2.331452475022061, 48.84139534686908], [2.331519476178924, 48.841373479992086], [2.331697051425611, 48.84131535418587], [2.331872697557052, 48.84125802946784], [2.332050272028004, 48.84119990223203], [2.332225917381987, 48.84114257698941], [2.332403491054148, 48.84108445012258], [2.332579135642086, 48.841027123456136], [2.33275670852698, 48.84096899605895], [2.332932352325837, 48.84091166976729], [2.333109924434972, 48.84085354094045], [2.333285567456262, 48.84079621412424], [2.333463138766619, 48.84073808566643], [2.333638781021842, 48.84068075742635], [2.333816351544925, 48.84062262843823], [2.333991993011081, 48.84056530057295], [2.334169562758381, 48.840507170155185], [2.334345203446862, 48.84044984176536], [2.334394845616431, 48.84043359124664], [2.334397694893718, 48.84043303690255]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 89, "zemmour_eric": 84.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-31", "circ_bv": "11", "num_bureau": 31, "roussel_fabien": 20.0, "nb_emargement": 1239.0, "nb_procuration": 100.0, "nb_vote_blanc": 11.0, "jadot_yannick": 126.0, "le_pen_marine": 36.0, "nb_exprime": 1228.0, "nb_vote_nul": 1.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1461.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1240, "quartier_bv": "53", "geo_point_2d": [48.8394119103783, 2.333082602036967], "melenchon_jean_luc": 246.0, "poutou_philippe": 5.0, "macron_emmanuel": 569.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.317615840296678, 48.886923574417175], [2.317619655779021, 48.886935455624034], [2.317717474897938, 48.88703931817304], [2.317815163669029, 48.88714337504195], [2.317912982204925, 48.887247237403805], [2.318010671756659, 48.887351294093506], [2.318108492424977, 48.887455157183005], [2.31820618275757, 48.88755921369352], [2.318304004218116, 48.88766307570441], [2.3184016953314712, 48.88776713203572], [2.318499517572577, 48.88787099386716], [2.318597209466704, 48.887975050019264], [2.318695031124797, 48.888078911663605], [2.3187927251632843, 48.8881829676442], [2.318890547601947, 48.88828682910915], [2.318988241057638, 48.88839088490281], [2.318985442177732, 48.88840249190503], [2.318847335825045, 48.88847934446466], [2.318708603993904, 48.88855654494047], [2.318570496812371, 48.888633398069274], [2.318431764160348, 48.888710598213514], [2.318293656173398, 48.88878745011299], [2.318154922700491, 48.88886464992562], [2.318153687790121, 48.88887761660136], [2.3182644537406603, 48.888956910628245], [2.3183723286566282, 48.88903413222378], [2.318483095273062, 48.8891134260371], [2.318590969462054, 48.8891906483162], [2.318701738108099, 48.88926994192369], [2.3188096129456, 48.88934716399479], [2.318844287856841, 48.88937475477278], [2.318863923241996, 48.88936509887128], [2.3189848070377312, 48.88930035676409], [2.319115607645232, 48.88922855094577], [2.319263305164974, 48.88914944767034], [2.319394106384701, 48.88907764064641], [2.319417268754517, 48.88906492450237], [2.319417909850586, 48.88906481123363], [2.319438598254298, 48.88905345519666], [2.319546235331932, 48.8889943641417], [2.319710354156923, 48.88890565976718], [2.319710725099875, 48.88890545143191], [2.319865047497709, 48.88881746550464], [2.32001172774918, 48.888732223892504], [2.320166049125008, 48.88864423756342], [2.320312727020327, 48.88855899646062], [2.320467047374158, 48.888471009729756], [2.320613725652573, 48.888385768252554], [2.32076804498441, 48.88829778111984], [2.320914720918338, 48.888212539252756], [2.321069039228191, 48.888124551718256], [2.321215715545114, 48.888039309476774], [2.321370032832985, 48.88795132154051], [2.321516706817261, 48.88786607800987], [2.321667756617769, 48.88777591277776], [2.321814430984352, 48.8876906688765], [2.32196547977212, 48.887600502355205], [2.322112151781856, 48.8875152589672], [2.322134220924656, 48.887502085534116], [2.322134925109458, 48.88750194293012], [2.322154576563221, 48.88749011289309], [2.322283555112489, 48.88741312029141], [2.32242121947038, 48.8873311611428], [2.322572266164717, 48.88724099382652], [2.322709929613143, 48.88715903433311], [2.32284759262822, 48.887077074675304], [2.322998637835544, 48.88698690769957], [2.3230251131480832, 48.886980835833306], [2.323012063134382, 48.88694227165648], [2.323004430403813, 48.88694069334518], [2.322963179082898, 48.88690523157134], [2.322928826184554, 48.88687569939807], [2.3229115664201982, 48.88686388083773], [2.322892137778457, 48.88687370945704], [2.322716682618779, 48.88693100714467], [2.322542789737748, 48.886987793601435], [2.322367333809274, 48.88704509077118], [2.3221934401663002, 48.8871018767147], [2.32201798346903, 48.887159173366584], [2.321844090427671, 48.88721595880457], [2.321670195631774, 48.8872727448786], [2.321494737794752, 48.88733003985556], [2.321320843600573, 48.8873868254241], [2.321145384994769, 48.88744411988318], [2.320971488674984, 48.88750090493069], [2.320796029300396, 48.88755819887195], [2.320622132218568, 48.887614983406166], [2.320446672075199, 48.887672276829534], [2.320434447958037, 48.8876722362305], [2.320339599147859, 48.8876404785725], [2.320254103078359, 48.8876118514377], [2.320248852289995, 48.8876087450243], [2.320137250911082, 48.8874958706431], [2.320024456132052, 48.887381789661156], [2.319912855725959, 48.887268915047486], [2.319800061941993, 48.887154832931294], [2.319787676330645, 48.88715077404368], [2.319593961045108, 48.88715980613906], [2.319402333487599, 48.88716874007018], [2.319392076704998, 48.88716634980702], [2.3192658822014742, 48.88708882967915], [2.319099650024358, 48.88698671529771], [2.3189734550278462, 48.88690919484121], [2.318807223997625, 48.886807080037094], [2.318681031235424, 48.88672955926749], [2.318514801352089, 48.88662744404072], [2.318388609460539, 48.88654992295026], [2.318375625677554, 48.88654042765498], [2.318359972530104, 48.88654347720486], [2.31817727990138, 48.886637252465185], [2.3179977029187953, 48.88672955499951], [2.317815008984745, 48.8868233296912], [2.317635429354663, 48.88691563165878], [2.317615840296678, 48.886923574417175]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 107, "zemmour_eric": 92.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-8", "circ_bv": "03", "num_bureau": 8, "roussel_fabien": 10.0, "nb_emargement": 1278.0, "nb_procuration": 81.0, "nb_vote_blanc": 7.0, "jadot_yannick": 120.0, "le_pen_marine": 57.0, "nb_exprime": 1265.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 4, "nb_inscrit": 1527.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "67", "geo_point_2d": [48.887854569318556, 2.3196839614031504], "melenchon_jean_luc": 208.0, "poutou_philippe": 1.0, "macron_emmanuel": 619.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.330722891963308, 48.868164905690875], [2.330718396525403, 48.86813664205628], [2.330725071266602, 48.86800006004819], [2.330732016820877, 48.86786308742337], [2.330738690139718, 48.86772650447383], [2.330745635621711, 48.867589531814346], [2.330752310221391, 48.86745294973718], [2.3307592556311, 48.867315977043035], [2.3307659287968843, 48.86717939492371], [2.330772874134313, 48.867042422194906], [2.330779548592478, 48.86690584004868], [2.330786492494499, 48.86676886727758], [2.33079316688191, 48.866632285096834], [2.330800112074678, 48.8664953122987], [2.330806785039872, 48.866358729176504], [2.33081373014881, 48.866221757243025], [2.330820404406267, 48.86608517409392], [2.33082734945458, 48.865948201226495], [2.330834022266628, 48.86581161893454], [2.330840967242668, 48.865674646032474], [2.330839050934485, 48.86566974017883], [2.330742200226696, 48.865562579384466], [2.33064518946254, 48.86545379608308], [2.330548338191901, 48.865346635103315], [2.330451329597871, 48.86523785163115], [2.330354479127466, 48.8651306904736], [2.330257469977175, 48.86502190681547], [2.330160621658512, 48.86491474638706], [2.330063613326803, 48.864805961651335], [2.330061852628388, 48.86480019957453], [2.330063190649299, 48.864793143595996], [2.330078843401758, 48.86471059024953], [2.33011221656157, 48.86454739812401], [2.330129207154298, 48.864457789670666], [2.330081351003498, 48.86440566725811], [2.330078801594294, 48.86440590570409], [2.330039660047538, 48.864418549059465], [2.329860324164304, 48.86447587396253], [2.329682845796154, 48.86453320270444], [2.329503510488784, 48.864590527074554], [2.329326031348969, 48.864647854382135], [2.329146693891231, 48.864705178204034], [2.32896921531967, 48.864762505883455], [2.328789877074529, 48.86481982916474], [2.328612397731323, 48.864877155409864], [2.328433058698989, 48.86493447815053], [2.328255578560961, 48.864991804759846], [2.328076238741229, 48.86504912695993], [2.327898756468591, 48.865106452127215], [2.327719417224649, 48.86516377379434], [2.327541934157078, 48.86522109932589], [2.327364452073603, 48.8652784236996], [2.3271851102867602, 48.86533574454953], [2.327007627420068, 48.865393068388215], [2.326828284834217, 48.8654503895968], [2.326650801184306, 48.86550771290039], [2.32647145782289, 48.865565032669096], [2.326293972026671, 48.865622355429906], [2.326114627877972, 48.865679674657976], [2.325937142649998, 48.86573699779073], [2.3257577977139148, 48.86579431647816], [2.325580311714366, 48.86585163817645], [2.325400965991107, 48.86590895632325], [2.3252234791967012, 48.865966278385784], [2.3250441326860622, 48.86602359599195], [2.324866645120097, 48.86608091662009], [2.324687297822285, 48.86613823368562], [2.324509808098346, 48.86619555467025], [2.32433046001326, 48.86625287119513], [2.324152970880886, 48.866310190753076], [2.3239736220084293, 48.86636750673733], [2.323796132081183, 48.866424826659426], [2.3236167824215572, 48.866482142103], [2.323566356910999, 48.86649030017954], [2.323553237521357, 48.866519380126086], [2.323642890537215, 48.86664181920363], [2.323729618923431, 48.86676506907089], [2.323819271413548, 48.86688750798143], [2.323906002000804, 48.867010756801946], [2.323995655316642, 48.867133196452464], [2.32408238536722, 48.86725644511008], [2.324172040895267, 48.86737888370971], [2.324258771760439, 48.86750213311143], [2.324348428125905, 48.867624571551744], [2.324435159829216, 48.86774781989899], [2.324524815657297, 48.86787025907154], [2.324611548186886, 48.86799350726358], [2.324699578312613, 48.868124899966425], [2.3247863116680962, 48.86824814890276], [2.324874341301779, 48.86837954143913], [2.324961075506278, 48.868502789321106], [2.325049107362605, 48.86863418260564], [2.325135842404579, 48.86875743033265], [2.325223873780524, 48.86888882255142], [2.325310611011616, 48.869012071030305], [2.325311592064544, 48.86901768756548], [2.325279654823631, 48.869119052421816], [2.325235280983522, 48.86923173733551], [2.32520334346288, 48.86933310215188], [2.325158969275355, 48.86944578701545], [2.325168974895086, 48.869456792033425], [2.325337733700482, 48.86948357162286], [2.325532766922583, 48.86951741408178], [2.3257015261230363, 48.86954419225748], [2.325820941104605, 48.86956491308954], [2.325858813652172, 48.86958792115501], [2.325895962744216, 48.86958161194355], [2.3259715814912, 48.86959473292825], [2.326166267064274, 48.86962716401791], [2.326361301362267, 48.86966100512242], [2.326555987425558, 48.86969343557626], [2.326751023588062, 48.86972727605142], [2.326945708790181, 48.86975970496245], [2.327140745453883, 48.869793544800544], [2.327335432497886, 48.86982597398273], [2.32753046829978, 48.8698598131761], [2.327725155833976, 48.86989224172243], [2.327920193500364, 48.8699260802864], [2.328025719375111, 48.86994365685338], [2.328088167837108, 48.869917934587434], [2.328083984881728, 48.86988520291259], [2.328225376900042, 48.869782939072984], [2.328355233627943, 48.869687022645806], [2.328496623212622, 48.869584758459766], [2.328626478958519, 48.869488840821866], [2.328767867472776, 48.869386576297096], [2.328897722213698, 48.86929065924699], [2.329039111020731, 48.86918839439118], [2.32916896341657, 48.869092476122674], [2.329310351153193, 48.868990210928054], [2.329440203907065, 48.86889429325504], [2.329570054831232, 48.86879837452591], [2.329711440982194, 48.868696108830335], [2.329841290901335, 48.86860019068905], [2.329982675981912, 48.86849792465476], [2.33000429838006, 48.868499411796385], [2.330183109515576, 48.86841547319318], [2.330323101897267, 48.86835029418295], [2.330463092565571, 48.86828511499749], [2.330641902226221, 48.868201175692654], [2.3307054321156, 48.86816974815358], [2.330722891963308, 48.868164905690875]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 52, "zemmour_eric": 78.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "1-10", "circ_bv": "01", "num_bureau": 10, "roussel_fabien": 1.0, "nb_emargement": 675.0, "nb_procuration": 48.0, "nb_vote_blanc": 1.0, "jadot_yannick": 37.0, "le_pen_marine": 40.0, "nb_exprime": 673.0, "nb_vote_nul": 1.0, "arr_bv": "01", "arthaud_nathalie": 0, "nb_inscrit": 874.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 675, "quartier_bv": "04", "geo_point_2d": [48.86725534153516, 2.327655007155463], "melenchon_jean_luc": 87.0, "poutou_philippe": 0.0, "macron_emmanuel": 355.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.354054930285193, 48.872254593994036], [2.35403416681363, 48.872260074029896], [2.353824563828918, 48.87223690622424], [2.353617713653215, 48.87221450386291], [2.353408111025947, 48.87219133622637], [2.353201259847053, 48.87216893313714], [2.352991657588395, 48.87214576477044], [2.352784806769591, 48.872123360960565], [2.352575204879553, 48.87210019186369], [2.352368354420852, 48.872077787333296], [2.352158752899443, 48.87205461750619], [2.351951904164122, 48.872032212262624], [2.351742303011354, 48.87200904170537], [2.351535453272889, 48.87198663573383], [2.3515299585766583, 48.87198678223677], [2.3513326087419752, 48.8720191116714], [2.35113450482645, 48.87205165253457], [2.350937154489444, 48.872083982214605], [2.350739051443424, 48.872116522428826], [2.3505417006150973, 48.87214885145495], [2.350343595712156, 48.87218139100542], [2.350146244392617, 48.87221371937768], [2.349948140359098, 48.87224625827915], [2.34975078854846, 48.87227858599751], [2.349552684021202, 48.872311124242586], [2.349355330356094, 48.87234345129967], [2.349157225335107, 48.872375988888344], [2.3489598725419842, 48.872408315298976], [2.348761767027277, 48.87244085223129], [2.348564413743076, 48.87247317798801], [2.348366306371378, 48.87250571425649], [2.348168952596005, 48.872538039359334], [2.347970846093881, 48.87257057497886], [2.347910556201139, 48.872566750824326], [2.347904800238378, 48.87258035523927], [2.347904696282853, 48.87267370871275], [2.347905401635748, 48.87282090008548], [2.347905260077115, 48.87294949120722], [2.347905964072044, 48.87309668253576], [2.347905822514049, 48.87322527362533], [2.347906526514294, 48.873372464917104], [2.3479063849569393, 48.873501055974586], [2.347914368107593, 48.87350982933587], [2.347975093675712, 48.873507254365755], [2.3481842437967932, 48.87353097760438], [2.348391725860688, 48.87355433166076], [2.348600876360557, 48.87357805417042], [2.348808358810021, 48.87360140660443], [2.34901751105187, 48.87362512839256], [2.3492249938645022, 48.87364848100267], [2.349434145133043, 48.87367220115512], [2.349641628319977, 48.873695553042104], [2.349850779956038, 48.87371927336488], [2.350058263517264, 48.8737426245287], [2.350267416906599, 48.87376634323068], [2.350474899478793, 48.87378969366392], [2.350481520174265, 48.87378935636353], [2.350669966027268, 48.87374774564912], [2.350861365744006, 48.873704625380434], [2.351049809634902, 48.873663013158236], [2.35124120871462, 48.87361989317818], [2.351429653358811, 48.87357828036216], [2.351621051812713, 48.8735351597715], [2.351809495846884, 48.873493546354304], [2.352000893674964, 48.87345042515299], [2.352189335735806, 48.87340881112731], [2.352380732938059, 48.87336568931536], [2.352397966165273, 48.87337115339398], [2.352422282956722, 48.87341569693205], [2.352439959964908, 48.873449948499484], [2.352451057716208, 48.87345872941031], [2.352491401987054, 48.87344638840476], [2.352680306437602, 48.87338355174487], [2.352872097952411, 48.873319954265455], [2.353061000121958, 48.87325711699029], [2.353252792069692, 48.873193518901004], [2.353441693321335, 48.873130681017834], [2.353633482975499, 48.87306708230395], [2.353822383309338, 48.87300424381284], [2.3540141733963162, 48.872940644489105], [2.354203072812347, 48.87287780539003], [2.354394860605757, 48.872814205441735], [2.354401830444036, 48.872808676132315], [2.354412363364183, 48.872784726017066], [2.35440909166174, 48.872780628075915], [2.35438576532842, 48.87277375543367], [2.354306006021738, 48.87264478015758], [2.354236747956877, 48.87253095235654], [2.35416749155799, 48.87241712451107], [2.354087731974589, 48.87228814904052], [2.354073069510852, 48.87226405039306], [2.354054930285193, 48.872254593994036]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 36, "zemmour_eric": 53.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-37", "circ_bv": "05", "num_bureau": 37, "roussel_fabien": 25.0, "nb_emargement": 1072.0, "nb_procuration": 74.0, "nb_vote_blanc": 6.0, "jadot_yannick": 110.0, "le_pen_marine": 41.0, "nb_exprime": 1058.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 0, "nb_inscrit": 1331.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1069, "quartier_bv": "38", "geo_point_2d": [48.87286667411503, 2.3509573485217046], "melenchon_jean_luc": 344.0, "poutou_philippe": 6.0, "macron_emmanuel": 390.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376893693204376, 48.88351412494778], [2.37688904917793, 48.88349573472212], [2.376738859738104, 48.88341168428249], [2.376592510920566, 48.88333285984855], [2.37644232379264, 48.88324880903165], [2.376295975881667, 48.88316998422356], [2.37614578970207, 48.88308593302223], [2.375999442697656, 48.88300710783999], [2.375849257466382, 48.88292305625426], [2.375702911368526, 48.882844230697934], [2.375687522644424, 48.882829471627545], [2.375654487838816, 48.88282445738118], [2.375508143687183, 48.88274563068755], [2.375361280376478, 48.88266703672234], [2.3752149371110303, 48.88258820965904], [2.375068074697661, 48.88250961442366], [2.374921730944063, 48.88243078788286], [2.374774869417139, 48.88235219227658], [2.374628527924057, 48.88227336447396], [2.374481667272775, 48.882194769396065], [2.374335325302334, 48.88211594121665], [2.374188465548292, 48.88203734486859], [2.374186459362072, 48.88203601146973], [2.37406894446521, 48.881939497246634], [2.373961908039988, 48.88184761527323], [2.373844393984395, 48.88175110081317], [2.373737358342557, 48.88165921862327], [2.373619843764706, 48.88156270391918], [2.373512810269767, 48.88147082151994], [2.373395296533074, 48.88137430657892], [2.373288263821604, 48.8812824239632], [2.37326826779806, 48.8812645692277], [2.373236710199148, 48.8812625639945], [2.373201763989875, 48.88126034315962], [2.373177900687899, 48.88129586583091], [2.373017741793864, 48.881362368950086], [2.372843798558507, 48.88143471992859], [2.372683640174225, 48.88150122259962], [2.372509696011041, 48.88157357308359], [2.37234953540958, 48.881640075292125], [2.372175590318363, 48.88171242528156], [2.372015428863342, 48.88177892703472], [2.3718414828441903, 48.88185127652965], [2.37168132189893, 48.881917777834644], [2.371507374941095, 48.88199012773429], [2.371347211789495, 48.88205662767751], [2.37117326390372, 48.88212897708257], [2.371013101261993, 48.88219547657761], [2.3708391524481742, 48.88226782548816], [2.370678987589355, 48.88233432452067], [2.3705050378475923, 48.88240667293666], [2.3703448734985493, 48.882473171521], [2.370282631125606, 48.882458560125066], [2.370252437302103, 48.882468668043494], [2.370254032666183, 48.88255132741511], [2.37024507384373, 48.882592816671966], [2.370246197305219, 48.8826150431862], [2.370326767945178, 48.88261771618254], [2.370505424677884, 48.8826654890874], [2.370684689060266, 48.88271367051292], [2.370863346450491, 48.88276144287947], [2.371042611494316, 48.882809623764906], [2.371221268178603, 48.882857395586065], [2.371400533883766, 48.88290557593136], [2.371579192589114, 48.88295334722142], [2.371758458966664, 48.883001526127295], [2.371937116965857, 48.883049296871974], [2.372116383993986, 48.883097476137024], [2.37229504401434, 48.88314524635053], [2.372474311703797, 48.883193425075476], [2.372652972381649, 48.88324119475077], [2.372832239379901, 48.883289372029154], [2.373010900704315, 48.88333714206542], [2.373190169727545, 48.88338531881083], [2.373368831720276, 48.883433087409564], [2.373548100030528, 48.883481264507], [2.373552919324156, 48.883481926446855], [2.373756875447273, 48.88348529121605], [2.373944047497234, 48.88348824501572], [2.374131219568424, 48.88349119852274], [2.374335174401645, 48.883494562299646], [2.374522346506919, 48.883497516094536], [2.374726302753712, 48.88350087921227], [2.374913474914667, 48.88350383149637], [2.375117429847879, 48.88350719394071], [2.3753046020537, 48.88351014561334], [2.375508558400463, 48.883513507398504], [2.375695730651141, 48.88351645845972], [2.375899685684302, 48.88351981957146], [2.376086857979828, 48.883522770021166], [2.37629081306305, 48.88352613046663], [2.376477985403314, 48.88352908030487], [2.376681941899954, 48.883532440091116], [2.37686911428515, 48.883535389317935], [2.376893693204376, 48.88351412494778]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 36, "zemmour_eric": 76.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-60", "circ_bv": "17", "num_bureau": 60, "roussel_fabien": 25.0, "nb_emargement": 1243.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 120.0, "le_pen_marine": 61.0, "nb_exprime": 1229.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1703.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1243, "quartier_bv": "73", "geo_point_2d": [48.88261786518081, 2.3734019004887013], "melenchon_jean_luc": 574.0, "poutou_philippe": 10.0, "macron_emmanuel": 275.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347739095070011, 48.86879007099488], [2.347746981620367, 48.86880987430811], [2.347759059558723, 48.86891519367424], [2.347773908302475, 48.86905094925277], [2.347788847742302, 48.86918120943151], [2.347803696650772, 48.8693169640744], [2.347818634878284, 48.869447224210646], [2.347833485303414, 48.86958297882462], [2.347848423670341, 48.86971323982504], [2.34785050516745, 48.86983924342718], [2.347865443661789, 48.86996950349601], [2.347867523847094, 48.87009550706118], [2.347867562888902, 48.870096090945935], [2.347869781208775, 48.87023578051373], [2.347871862778426, 48.870361784055866], [2.347874081109885, 48.87050147448925], [2.347876162711815, 48.870627477101756], [2.34790656477507, 48.87069854851033], [2.347949401404555, 48.870697648704954], [2.348132854731769, 48.87065782509245], [2.348325547931895, 48.870615844524366], [2.348509000683434, 48.870576020332415], [2.348701693289041, 48.87053403825645], [2.3488851441016703, 48.870494213477635], [2.349077837453487, 48.870452231699716], [2.34926128769043, 48.87041240634147], [2.3494539804477013, 48.87037042305563], [2.349637430097722, 48.87033059801726], [2.349830122249204, 48.87028861412277], [2.350013571334757, 48.87024878760569], [2.350206262869221, 48.87020680400189], [2.350389711379074, 48.87016697690536], [2.350582402319057, 48.87012499179364], [2.350765850253198, 48.87008516411771], [2.350958540576063, 48.87004317929663], [2.351141987934493, 48.87000335104126], [2.351334676299538, 48.86996136470494], [2.351518124434261, 48.8699215367768], [2.35171081219349, 48.86987954983186], [2.351894259763683, 48.86983972042505], [2.3520869469059003, 48.86979773377073], [2.352270392537153, 48.86975790377716], [2.352463080447935, 48.86971591562233], [2.352599380343051, 48.869686321764846], [2.352646525492274, 48.86967608594862], [2.35264955594884, 48.869648340596044], [2.352612789226424, 48.869599907408706], [2.352513202780265, 48.86945904371158], [2.352408530313291, 48.86930010442137], [2.352403667191732, 48.86929322513229], [2.3523968208076402, 48.86928862573353], [2.352217513727847, 48.869234674375555], [2.352040901524711, 48.86918143342313], [2.351861596545609, 48.86912748153411], [2.3516849850696753, 48.869074240051305], [2.351505679465089, 48.86902028761655], [2.351329068716259, 48.86896704560344], [2.351149765212466, 48.86891309263763], [2.350973155190843, 48.868859850094246], [2.350793851061475, 48.86880589658263], [2.350617241767166, 48.86875265350889], [2.350437939738487, 48.86869869946629], [2.350261331171391, 48.86864545586228], [2.35008472296522, 48.868592211995036], [2.34990542067727, 48.86853825713953], [2.34972881456149, 48.86848501274944], [2.349549513011159, 48.868431057355494], [2.349372906259527, 48.868377812427696], [2.349193606809886, 48.868323856502805], [2.349017000785476, 48.86827061104468], [2.348837700710393, 48.86821665457399], [2.348661095413108, 48.868163408585595], [2.348481797438816, 48.868109451583955], [2.348305192868759, 48.86805620506524], [2.348125894268935, 48.868002247517815], [2.34794929042621, 48.867949000468826], [2.347769993927076, 48.86789504239043], [2.347593390811585, 48.86784179481117], [2.347414093687029, 48.86778783618699], [2.347368349436485, 48.867789023913474], [2.347359372276749, 48.867799495471985], [2.347363381086998, 48.86783554589181], [2.3473640554743183, 48.86783775475692], [2.3473679094678452, 48.867864836088], [2.347423935105355, 48.86797476331597], [2.347479250461207, 48.868076767924364], [2.34753527519844, 48.868186695071735], [2.3475905909973562, 48.86828869960911], [2.347646616197578, 48.86839862668331], [2.347701933791372, 48.86850063205639], [2.347702690949001, 48.868502982565886], [2.347717630053693, 48.86863324281805], [2.347739102977224, 48.868761132920035], [2.347741962961127, 48.86878607376091], [2.347739095070011, 48.86879007099488]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 46, "zemmour_eric": 70.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "2-9", "circ_bv": "01", "num_bureau": 9, "roussel_fabien": 19.0, "nb_emargement": 1331.0, "nb_procuration": 110.0, "nb_vote_blanc": 12.0, "jadot_yannick": 132.0, "le_pen_marine": 59.0, "nb_exprime": 1318.0, "nb_vote_nul": 1.0, "arr_bv": "02", "arthaud_nathalie": 2, "nb_inscrit": 1734.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "08", "geo_point_2d": [48.86934995063152, 2.349526531524736], "melenchon_jean_luc": 390.0, "poutou_philippe": 5.0, "macron_emmanuel": 541.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.327793961205971, 48.83618509354181], [2.327783187871335, 48.83616920588388], [2.327676309886412, 48.83603414037134], [2.327560884904469, 48.83588903379176], [2.3275657690480402, 48.83587720844932], [2.327746465925227, 48.83580326434323], [2.327924763559773, 48.83573182202007], [2.328105458061412, 48.83565787735442], [2.328283756068955, 48.83558643449451], [2.32846444955736, 48.83551248927692], [2.32864274521328, 48.83544104586496], [2.328823439050758, 48.835367100103134], [2.329001733717262, 48.83529565614679], [2.32900444551181, 48.83529422876917], [2.329122038171806, 48.835214171676185], [2.3292867566024, 48.83510243488311], [2.329404348396257, 48.835022377498895], [2.329569066977944, 48.83491064030554], [2.329686657905465, 48.83483058263002], [2.329688915137031, 48.83482011041432], [2.329601201332252, 48.83471084260264], [2.32951586659467, 48.83460358555331], [2.329428153517068, 48.834494317593624], [2.329342819501573, 48.83438705950081], [2.329255107150941, 48.834277791393056], [2.32916977384596, 48.83417053315601], [2.329146125861017, 48.834129910818284], [2.329136736075128, 48.83412920790698], [2.329084625752974, 48.834148197241085], [2.329050515274945, 48.83416079406335], [2.329046366380772, 48.83416115392197], [2.329023134246089, 48.8341718448338], [2.328883435595304, 48.83422343506662], [2.32870869704791, 48.83428792782622], [2.328534888397709, 48.83435211526644], [2.328360148999331, 48.83441660661013], [2.328186338128618, 48.834480793528826], [2.3280115978560803, 48.83454528525522], [2.327837787501006, 48.83460947076839], [2.327663046365901, 48.834673961978154], [2.327489233778711, 48.83473814786912], [2.327314491792638, 48.83480263766297], [2.327140679709503, 48.8348668230477], [2.326965936849255, 48.83493131322422], [2.3269076301180363, 48.83495284343635], [2.326876641892137, 48.83495862918078], [2.32686456429832, 48.83497742282079], [2.326749056647789, 48.83502007653002], [2.3265835123179093, 48.83508060312824], [2.326409697045566, 48.83514478742714], [2.32624415328789, 48.835205313556614], [2.326070337181953, 48.83526949735527], [2.325904791271884, 48.83533002300062], [2.325730975694454, 48.835394206306624], [2.32556542899429, 48.835454731475586], [2.325391611220962, 48.83551891427363], [2.325226065093013, 48.835579438973795], [2.325052246485891, 48.83564362127152], [2.32488669820554, 48.83570414548759], [2.324712880127036, 48.83576832729272], [2.324547331056694, 48.83582885103234], [2.3243735107821832, 48.835893032329444], [2.324207962283965, 48.83595355560035], [2.324034141187425, 48.836017735497805], [2.3238685905369, 48.83607825828457], [2.323694769957329, 48.83614243858874], [2.323529218516613, 48.83620296089902], [2.323469218042102, 48.83623268930025], [2.323475157276775, 48.83624923443261], [2.323457906551141, 48.83629163930445], [2.323409093492176, 48.836417550246104], [2.323357214220414, 48.83654507796523], [2.323308399318551, 48.83667098882954], [2.323256519548295, 48.83679851647605], [2.323207705528201, 48.836924427278426], [2.323155825259243, 48.837051954852384], [2.323107010758576, 48.83717786558515], [2.32305512999101, 48.837305393086496], [2.323006313647406, 48.837431303741916], [2.32298339746375, 48.8374876346527], [2.322981006320095, 48.83750263968826], [2.323059725207365, 48.83752351168435], [2.323248325373993, 48.83756804809597], [2.323435930405211, 48.83761244187391], [2.32362453121515, 48.83765697768882], [2.323812138249112, 48.837701370880914], [2.32399974424037, 48.83774576376928], [2.324188346014432, 48.83779029868995], [2.324375952646163, 48.83783469098475], [2.324564555063318, 48.837879225308725], [2.324752163697887, 48.837923617017644], [2.324940765384317, 48.837968151636495], [2.325128374659355, 48.83801254275188], [2.325316977000516, 48.83805707587476], [2.325504586916014, 48.83810146639652], [2.32569319126283, 48.83814599893037], [2.325880800456406, 48.838190388850876], [2.326069405446297, 48.838234920788], [2.3262570152803193, 48.83827931011493], [2.326445620913481, 48.83832384145534], [2.326468449655675, 48.83832673375835], [2.32648778877771, 48.83831067560369], [2.326503120929127, 48.83828101352268], [2.326570253810929, 48.838153897917806], [2.326634404687451, 48.83802978465634], [2.326701538287892, 48.83790266895692], [2.326765688542618, 48.837778555597154], [2.326832821499224, 48.837651439795465], [2.326896971132161, 48.837527326337394], [2.326964103445147, 48.83740021043347], [2.327028252456203, 48.83727609687709], [2.327095384113865, 48.837148981770234], [2.327159532503253, 48.837024868115584], [2.327226663528821, 48.83689775200718], [2.327290811296346, 48.83677363825423], [2.327354958758493, 48.8366495244531], [2.32742208882409, 48.836522408192344], [2.327486235664386, 48.83639829429294], [2.327553365086299, 48.83627117792999], [2.327560043365439, 48.83626612593976], [2.327667284372543, 48.836230045279464], [2.327782647594997, 48.836193140478684], [2.327793961205971, 48.83618509354181]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 69, "zemmour_eric": 67.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-29", "circ_bv": "11", "num_bureau": 29, "roussel_fabien": 18.0, "nb_emargement": 1328.0, "nb_procuration": 96.0, "nb_vote_blanc": 17.0, "jadot_yannick": 168.0, "le_pen_marine": 49.0, "nb_exprime": 1305.0, "nb_vote_nul": 6.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1631.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1328, "quartier_bv": "53", "geo_point_2d": [48.836356390486486, 2.326090722824814], "melenchon_jean_luc": 396.0, "poutou_philippe": 11.0, "macron_emmanuel": 465.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.398363943371222, 48.88412904974182], [2.3983509573749773, 48.88412137799886], [2.398179351147353, 48.88408760205166], [2.397973452130424, 48.88404722955134], [2.397801846391991, 48.884013453060824], [2.397595949324489, 48.88397307991547], [2.397424342711669, 48.88393930287474], [2.397218446240421, 48.88389892817821], [2.397046841480289, 48.883865150600975], [2.396840944220907, 48.88382477614498], [2.396669339950085, 48.88379099802442], [2.396651882624675, 48.883798652341426], [2.396626238104591, 48.88395564866763], [2.396599655406774, 48.88410627571714], [2.39659089299006, 48.88411365818044], [2.396403757591461, 48.88415986200696], [2.396220637122445, 48.884204948141914], [2.396033502430882, 48.884251151392775], [2.395850381320295, 48.884296236957724], [2.395663244619024, 48.88434243871991], [2.395480122866872, 48.88438752371481], [2.395297000797643, 48.88443260842778], [2.3951098644684032, 48.88447881022549], [2.394926741757615, 48.8845238943684], [2.39473960340834, 48.884570095576684], [2.394730288941932, 48.88457015460981], [2.394650622611759, 48.8845516286564], [2.394547887297517, 48.88452865125088], [2.394542851836164, 48.88452989653291], [2.394533967904962, 48.884549106147325], [2.394504354670237, 48.88464234764891], [2.3944738794479132, 48.88474133955344], [2.394444264643132, 48.884834580117676], [2.394413789183623, 48.88493357288893], [2.394401576150872, 48.884941900912075], [2.394408282828449, 48.88495713071668], [2.394403687660421, 48.88508385373316], [2.394396816512948, 48.88522910209048], [2.394392221293018, 48.88535582507515], [2.394385348714153, 48.88550107338897], [2.394380754805944, 48.885627796348786], [2.394376723863961, 48.88574855782721], [2.39437212991293, 48.885875280758135], [2.394368098942349, 48.885996041309824], [2.394363504948395, 48.88612276421186], [2.394359473928196, 48.88624352563534], [2.39434606737421, 48.886252319752046], [2.394247886060827, 48.886253396892066], [2.394151079025971, 48.88625532267195], [2.394147807750501, 48.886255653258075], [2.394132519999664, 48.88626156989033], [2.394137043360991, 48.886279388586914], [2.394121302384715, 48.886396806405926], [2.394105006819526, 48.88651335985287], [2.394089265700184, 48.886630777642694], [2.394072971353727, 48.88674733106732], [2.394057230091525, 48.88686474882793], [2.394040934236486, 48.886981302216505], [2.39404262169639, 48.886986529525736], [2.3941203668464333, 48.88707788044132], [2.394226743693939, 48.88720287411893], [2.394304490843205, 48.88729422580311], [2.394372518142908, 48.88737415633476], [2.394378191850599, 48.88737504388514], [2.394401262184126, 48.88736530310019], [2.394639061850255, 48.88730649112607], [2.39488039234919, 48.887244217045115], [2.3948890594066983, 48.8872358359944], [2.394888951724095, 48.88714394448589], [2.394887997256908, 48.887051693457934], [2.394887889576459, 48.88695980193404], [2.394886935124979, 48.88686754999127], [2.39489503225937, 48.88685927127807], [2.395060815258469, 48.88681067591172], [2.39522530085082, 48.88676233276704], [2.395391081869429, 48.886713736932265], [2.395555566838524, 48.886665394228906], [2.395721348614393, 48.88661679704016], [2.395885832970571, 48.886568453878866], [2.396051612755616, 48.886519857120945], [2.3962160965094093, 48.886471512602405], [2.396222924279147, 48.88646707020341], [2.396307379813432, 48.88634651823517], [2.396394491539142, 48.88622348756248], [2.39640479051927, 48.886218401649046], [2.396627289429502, 48.88619601568914], [2.396848956458799, 48.88617314398791], [2.397071454995119, 48.88615075630244], [2.397293121636562, 48.88612788377797], [2.397301981665423, 48.88612434187642], [2.397381670449642, 48.886053190134625], [2.397534479929995, 48.88591747784741], [2.397614168079973, 48.88584632593749], [2.3976163053169, 48.88584346784893], [2.397669346034009, 48.885721802636006], [2.397722400245461, 48.88560036408477], [2.397775440466975, 48.885478698797975], [2.397828494183335, 48.88535726017289], [2.397881533909465, 48.88523559481217], [2.397934588483857, 48.885114157019345], [2.397987627714504, 48.88499249158469], [2.398040680440598, 48.88487105281187], [2.398093719175773, 48.88474938730335], [2.3981467714068962, 48.88462794845668], [2.398199824743692, 48.88450651047918], [2.398252862735768, 48.88438484485986], [2.398305914224393, 48.884263405902374], [2.398358951720913, 48.884141740209124], [2.398363943371222, 48.88412904974182]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 19, "zemmour_eric": 34.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "19-19", "circ_bv": "16", "num_bureau": 19, "roussel_fabien": 15.0, "nb_emargement": 862.0, "nb_procuration": 17.0, "nb_vote_blanc": 10.0, "jadot_yannick": 25.0, "le_pen_marine": 78.0, "nb_exprime": 843.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1296.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 862, "quartier_bv": "75", "geo_point_2d": [48.88539200436449, 2.3960449675505333], "melenchon_jean_luc": 472.0, "poutou_philippe": 12.0, "macron_emmanuel": 147.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.354808712597005, 48.88021630963243], [2.354798253285149, 48.880214730695734], [2.354654433138037, 48.88024772812109], [2.35447852111605, 48.880288028483584], [2.354291952970004, 48.88033083330983], [2.354116040397968, 48.8803711322374], [2.3539294702817513, 48.88041393738749], [2.353753557148525, 48.88045423577939], [2.353716367428838, 48.880442817659414], [2.353699049078561, 48.88045137483902], [2.353523135640585, 48.88049167289098], [2.353350547121058, 48.880531903207164], [2.353174633141413, 48.88057220074411], [2.353002045449202, 48.880612430562316], [2.352826130927893, 48.880652727584234], [2.352653541325047, 48.880692957789], [2.352477626262075, 48.880733254295905], [2.352305037497834, 48.88077348310344], [2.352129121893207, 48.88081377909533], [2.351956531229411, 48.880854007390134], [2.351949488255156, 48.88085774555924], [2.351856879518777, 48.88095619496742], [2.351762153796223, 48.88105587930765], [2.351669545716884, 48.88115432856059], [2.35157481927537, 48.881254012734686], [2.351482209126058, 48.88135246181758], [2.351387481954375, 48.8814521467248], [2.351294871109785, 48.88155059474581], [2.351200143219121, 48.88165027948684], [2.351186693163274, 48.88165440917053], [2.35101697660638, 48.88163868631387], [2.350794774573988, 48.881620210855196], [2.350625059610282, 48.88160448744983], [2.350402857851629, 48.88158601216252], [2.350233141754185, 48.88157028819373], [2.350010941655229, 48.881551811286556], [2.349841225787574, 48.88153608676171], [2.349788427532074, 48.88152901007505], [2.349780979802955, 48.88153445734446], [2.349768840635295, 48.881657689703495], [2.349755446720184, 48.881795789266725], [2.349743307442418, 48.881919020694646], [2.349729913392285, 48.88205712022224], [2.349717772618525, 48.882180352510154], [2.34970437980823, 48.88231845111025], [2.349692238913024, 48.8824416833663], [2.349678844604373, 48.88257978192332], [2.349666704951362, 48.88270301415493], [2.349653310496452, 48.88284111357559], [2.349641170722203, 48.88296434577529], [2.349627776143595, 48.883102444261006], [2.349615636247901, 48.88322567642889], [2.34960349493129, 48.88334890857434], [2.349590100153859, 48.88348700700757], [2.34958990717115, 48.88348804648347], [2.349554945334908, 48.88358899964086], [2.349528501603935, 48.88368463725657], [2.34951931133085, 48.88372017288942], [2.349572029488045, 48.88373143561171], [2.349760751168921, 48.88374570243495], [2.349955190279891, 48.88375967534441], [2.350143913531649, 48.88377394157073], [2.350338351487289, 48.88378791385019], [2.350527074946346, 48.88380217947217], [2.3507215131102193, 48.88381615112899], [2.350910289067078, 48.883831800497695], [2.351104727444358, 48.883845771531824], [2.351293503623748, 48.883861420295894], [2.351487943578002, 48.88387539071467], [2.351676718616338, 48.88389103886677], [2.351871158783983, 48.883905008662836], [2.352059935408409, 48.88392065621766], [2.352254374425859, 48.88393462538365], [2.352443151272789, 48.88395027233385], [2.3526375905037122, 48.88396424087711], [2.352826367573139, 48.88397988722266], [2.353020808380903, 48.88399385515062], [2.353209584309238, 48.88400950088415], [2.353404025330359, 48.88402346818937], [2.353592801481173, 48.88403911331829], [2.353787242715638, 48.88405308000081], [2.353976020452505, 48.88406872453247], [2.354106773450398, 48.88407811568963], [2.3541424804970292, 48.884084283451514], [2.354152197471186, 48.88408288615041], [2.35421588456734, 48.88408746102146], [2.354417034511424, 48.884100611199536], [2.354611476196558, 48.88411457654271], [2.354812626345271, 48.88412772605584], [2.355007066874146, 48.884141690748876], [2.355208217227478, 48.884154839597095], [2.355402659327253, 48.8841688036547], [2.355603809874065, 48.884181952737265], [2.355798250817565, 48.88419591614473], [2.355999401580108, 48.88420906366309], [2.356193844094491, 48.88422302643513], [2.356388285349554, 48.88423698888392], [2.356589436419705, 48.884250135410504], [2.356783879245639, 48.884264097223806], [2.356985030520365, 48.88427724308547], [2.3571794721899852, 48.88429120424865], [2.3573806236692763, 48.88430434944538], [2.357575066909746, 48.88431830997311], [2.357776217218913, 48.88433145539688], [2.357970660666644, 48.884345415281814], [2.358171812555037, 48.88435855914867], [2.358366254846421, 48.88437251838354], [2.358521812929146, 48.88438268245587], [2.358550752753721, 48.88438631250834], [2.358566709362223, 48.88433867155859], [2.358581948124179, 48.88422409426792], [2.358601550384985, 48.88408948711963], [2.358613461350347, 48.88408388246199], [2.358616959518589, 48.88406934557463], [2.358511120610417, 48.88396235204122], [2.358399771170104, 48.88384986365281], [2.35829393315413, 48.88374286990607], [2.358182584652255, 48.88363038129324], [2.358076747528671, 48.88352338733311], [2.35796539997631, 48.883410897596605], [2.357859563733919, 48.88330390432244], [2.357748217119978, 48.8831914143615], [2.357642381780844, 48.88308441997472], [2.357531036094221, 48.88297193068865], [2.357425201647449, 48.88286493608854], [2.3573138568992222, 48.88275244657802], [2.3572080233447, 48.88264545176462], [2.357096679545961, 48.88253296113043], [2.356990846872477, 48.88242596700299], [2.356879504012117, 48.88231347614435], [2.35677367224207, 48.88220648090433], [2.356662330308972, 48.88209399072059], [2.356556499431146, 48.881986995267255], [2.356445158436404, 48.88187450485911], [2.3563393284506873, 48.881767509192485], [2.356227988394393, 48.88165501855995], [2.356122159300879, 48.88154802267997], [2.356010820193939, 48.88143553092379], [2.355904991981598, 48.8813285357298], [2.355793653812986, 48.881216043749234], [2.355687826503849, 48.88110904744268], [2.355576489262531, 48.88099655613698], [2.3554706628455673, 48.880889559617174], [2.355359326542452, 48.88077706808708], [2.355253501017753, 48.88067007135399], [2.355142165652933, 48.880557579599525], [2.355036341020387, 48.880450582653154], [2.354925006604991, 48.88033808977503], [2.354819182853348, 48.88023109351468], [2.354808712597005, 48.88021630963243]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 62, "zemmour_eric": 72.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-28", "circ_bv": "05", "num_bureau": 28, "roussel_fabien": 30.0, "nb_emargement": 1083.0, "nb_procuration": 72.0, "nb_vote_blanc": 13.0, "jadot_yannick": 119.0, "le_pen_marine": 33.0, "nb_exprime": 1069.0, "nb_vote_nul": 1.0, "arr_bv": "10", "arthaud_nathalie": 6, "nb_inscrit": 1381.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1083, "quartier_bv": "37", "geo_point_2d": [48.88258021136814, 2.3537885552359086], "melenchon_jean_luc": 387.0, "poutou_philippe": 5.0, "macron_emmanuel": 317.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328987482641769, 48.89764527437474], [2.328988268380803, 48.89767320715605], [2.329021242013969, 48.89777014432511], [2.329065040801843, 48.89789871094092], [2.329109121282926, 48.89802829803147], [2.329152921868954, 48.89815686459247], [2.329197002787365, 48.898286451620145], [2.329240802443659, 48.89841501811104], [2.329284883799404, 48.89854460507576], [2.329328683889914, 48.89867317150418], [2.329372765682999, 48.898802758406], [2.329416567571598, 48.89893132477957], [2.329460649802132, 48.89906091161848], [2.3295044507611, 48.89918947792192], [2.329548533428884, 48.89931906469788], [2.3295923348220873, 48.89944763093885], [2.329636417927228, 48.89957721765193], [2.329680221118561, 48.899705783838066], [2.329724304661172, 48.899835370488155], [2.329768106922769, 48.89996393660416], [2.32981219090275, 48.90009352319134], [2.329855993598603, 48.90022208924485], [2.329900078027537, 48.90035167486984], [2.329943882510083, 48.900480241767724], [2.329987967376403, 48.90060982732977], [2.330031770929214, 48.900738394157564], [2.330075856232923, 48.90086797965665], [2.330119660231582, 48.90099654552268], [2.330128724278723, 48.90101014353028], [2.330166729208784, 48.9010262713007], [2.330168293449863, 48.90102630073335], [2.330248949274399, 48.901027826475136], [2.330448024664685, 48.90103235875086], [2.330569810328441, 48.90103466188486], [2.330764301104896, 48.90103833973853], [2.330963376580247, 48.90104287115761], [2.331157867415275, 48.901046548372186], [2.3313569429677212, 48.90105107823783], [2.331444155858344, 48.90105272701457], [2.331643231447885, 48.901057257303606], [2.331837205306168, 48.9010617902763], [2.3320362796005423, 48.90106631990443], [2.332230253526714, 48.90107085224052], [2.332429329253962, 48.90107538122292], [2.332623301884192, 48.901079912914824], [2.33282237768028, 48.90108444124388], [2.333016350366957, 48.90108897319848], [2.333215426243397, 48.90109349997488], [2.333409400361966, 48.901098031300464], [2.333619651280963, 48.90110253596399], [2.333813625479991, 48.90110706573566], [2.334023876458843, 48.901111570588796], [2.334217850726705, 48.90111609970572], [2.334411823652795, 48.90112062940018], [2.334622076113706, 48.901125132311485], [2.334660349510075, 48.901126025716465], [2.334768040309564, 48.90112854035509], [2.334978292833234, 48.901133042641035], [2.335026834839825, 48.90113417640581], [2.33513508616418, 48.90113670281946], [2.335170306585649, 48.901077152242706], [2.335184073822365, 48.90107335440772], [2.335213606638325, 48.90103307697249], [2.335248637250617, 48.900973849967656], [2.335315124561376, 48.90085409455839], [2.335385373517791, 48.900735316847985], [2.335451861573266, 48.900615561344246], [2.335522109895818, 48.9004967835277], [2.335588595968193, 48.900377027914416], [2.3356588450208973, 48.900258249999325], [2.33572533047409, 48.900138494283965], [2.33579557889284, 48.9000197162628], [2.33586206372686, 48.899899960445445], [2.335932310159347, 48.899781181411335], [2.335998795738191, 48.89966142549951], [2.336069041525377, 48.89954264725852], [2.336135525121076, 48.899422891237165], [2.336205771638319, 48.89930411289766], [2.336272254614869, 48.89918435677427], [2.336342500498394, 48.89906557832867], [2.336435803466419, 48.89895849281418], [2.336436664346384, 48.89895730239023], [2.336536216033909, 48.89884226186797], [2.336629519567206, 48.8987351761883], [2.336729070403916, 48.898620135482375], [2.336822371789924, 48.89851304872387], [2.336921921775728, 48.89839800783436], [2.337015223719462, 48.89829092181068], [2.337114772854368, 48.8981758807375], [2.337208072650837, 48.898068793635055], [2.337307620934857, 48.897953752378186], [2.337400921289065, 48.897846666010565], [2.337405078431434, 48.897835442128226], [2.337361179784952, 48.89780462779639], [2.337294289648631, 48.89780315510848], [2.337097438978637, 48.89779934162167], [2.336897213157112, 48.89779493355915], [2.336700362547294, 48.89779111941962], [2.336500136802477, 48.89778670979396], [2.336303286241383, 48.897782895901024], [2.336103060561932, 48.89777848561147], [2.335906208708561, 48.89777467015902], [2.335705984446748, 48.89777026011242], [2.335509132653685, 48.89776644400727], [2.33530890846863, 48.89776203239754], [2.335112056735686, 48.89775821563969], [2.334911832604439, 48.897753804265335], [2.334714980931719, 48.897749986854826], [2.334514756877367, 48.89774557391732], [2.334317905253389, 48.897741756753376], [2.334117681264248, 48.897737343152016], [2.333920829712015, 48.8977335244361], [2.333720605788303, 48.89772911017088], [2.333523754284816, 48.89772529170155], [2.333323530426337, 48.89772087677246], [2.333126678994627, 48.897717056751155], [2.332926455190075, 48.89771264205742], [2.332729603818641, 48.89770882138346], [2.332529380090864, 48.897704405126575], [2.332332528779719, 48.897700583799946], [2.332132305105773, 48.897696167778456], [2.332054603177637, 48.897694658847406], [2.332023233759803, 48.897689868577416], [2.332009659592209, 48.897695254433046], [2.331890510270232, 48.89769294134002], [2.331680138197535, 48.8976891802079], [2.331483287006307, 48.8976853574853], [2.331272913641396, 48.897681594730976], [2.3310760624972, 48.897677772238275], [2.33086569055621, 48.89767400877626], [2.3306688394706, 48.89767018561416], [2.330458466225876, 48.897666421429136], [2.330261616562797, 48.897662597605326], [2.33005124337808, 48.897658832704984], [2.329854392409676, 48.897655008204204], [2.329644020649114, 48.89765124259611], [2.329447169739328, 48.897647417425965], [2.329250318870055, 48.89764359103298], [2.329039947187639, 48.89763982526301], [2.328987482641769, 48.89764527437474]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 11, "zemmour_eric": 42.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "18-44", "circ_bv": "03", "num_bureau": 44, "roussel_fabien": 8.0, "nb_emargement": 804.0, "nb_procuration": 5.0, "nb_vote_blanc": 9.0, "jadot_yannick": 26.0, "le_pen_marine": 109.0, "nb_exprime": 791.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1300.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 804, "quartier_bv": "69", "geo_point_2d": [48.899256428504906, 2.3328925076858846], "melenchon_jean_luc": 393.0, "poutou_philippe": 4.0, "macron_emmanuel": 161.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.281173159425829, 48.86021337248446], [2.281094349686772, 48.86020490200142], [2.281026645965569, 48.86021648366397], [2.281025671776726, 48.86021685104352], [2.281015758632076, 48.86024320644794], [2.28099032265595, 48.8603802187795], [2.280963406504748, 48.860520276405616], [2.280958842794313, 48.86052592301538], [2.28081254525246, 48.86061009409968], [2.280671342231329, 48.86069071709114], [2.280530140148568, 48.860771339019024], [2.280383841224991, 48.860855509560615], [2.280242636875329, 48.86093613202838], [2.28009633702453, 48.86102030220599], [2.280059703190456, 48.8610315683823], [2.280057594772273, 48.861038061629955], [2.280115970068544, 48.86109165459559], [2.280240342842999, 48.861203212170054], [2.280357062000623, 48.86131036800305], [2.280481435813428, 48.86142192530495], [2.280598155956907, 48.861529080881674], [2.280722530820591, 48.86164063701171], [2.280839250586946, 48.86174779232396], [2.280963627839469, 48.8618593490889], [2.281080348591693, 48.861966504144846], [2.281204725519608, 48.86207806062905], [2.281321448620707, 48.862185215436895], [2.281445826599521, 48.862296770749225], [2.281562550686513, 48.86240392530077], [2.281679273890648, 48.86251107971993], [2.281803653401112, 48.86262263552684], [2.281806070595388, 48.86262962541642], [2.281774428142977, 48.86274071968336], [2.281730787496704, 48.86288572577471], [2.281699143365191, 48.86299681998792], [2.281655503657769, 48.86314182602647], [2.281623859210267, 48.86325292019408], [2.281580217703346, 48.863397927062756], [2.281548574302675, 48.86350902119295], [2.28154400520542, 48.86358146538658], [2.281596572476344, 48.86358484504296], [2.28178809898158, 48.863562448639016], [2.281985416792743, 48.86353968826142], [2.282176942952513, 48.863517292133594], [2.282374259059731, 48.86349453110581], [2.28256578489871, 48.86347213345553], [2.2827631020156582, 48.86344937269319], [2.282954627521447, 48.86342697441973], [2.283151944309846, 48.86340421211611], [2.283343468119404, 48.86338181321132], [2.283540784554495, 48.86335905116494], [2.283732309393876, 48.86333665164516], [2.283929625500387, 48.86331388805752], [2.284121150006449, 48.86329148791453], [2.284318464396723, 48.863268724575995], [2.2845099885695612, 48.863246323809896], [2.284707303994151, 48.86322355893823], [2.284898827821511, 48.863201158448184], [2.285096142905129, 48.86317839293454], [2.285287666411593, 48.86315599092203], [2.285484979778868, 48.863133225657556], [2.285676502952084, 48.86311082302188], [2.285873817353727, 48.86308805622423], [2.286065340193681, 48.86306565296541], [2.286262654242002, 48.86304288642506], [2.28645417538567, 48.86302048253494], [2.286651489105305, 48.862997714453314], [2.286843011278616, 48.86297530994817], [2.286958025212416, 48.862962038215], [2.28702849386446, 48.862966314474924], [2.287042366379441, 48.86295962859325], [2.287124664442055, 48.862950131536664], [2.28716939062065, 48.86293758577366], [2.287173529242881, 48.8629357757456], [2.287297456118243, 48.86285675925088], [2.287424586039135, 48.862767867019606], [2.287485315683467, 48.862729144538356], [2.287497166014852, 48.86271402952323], [2.287447663427613, 48.862667304817975], [2.287292677228064, 48.86256978875331], [2.287140817494903, 48.8624718513156], [2.286985832451045, 48.86237433483636], [2.2868339738767363, 48.86227639609271], [2.286678988625768, 48.8621788791908], [2.286527131185685, 48.862080940939826], [2.286524074561943, 48.86207949094662], [2.286344007738487, 48.86201694919299], [2.286163330548245, 48.86195501418247], [2.285983265951157, 48.861892471887174], [2.285802589609017, 48.861830537224364], [2.285622525887529, 48.86176799347997], [2.285441850406015, 48.86170605826564], [2.28526178753537, 48.861643514870764], [2.28508111291438, 48.86158157910484], [2.284901049556367, 48.861519034252765], [2.284720377158888, 48.86145709794344], [2.284540314651811, 48.861394553440846], [2.284359641764233, 48.86133261567254], [2.284179581483514, 48.86127007062833], [2.283998909444013, 48.86120813320777], [2.283818850026568, 48.861145587613784], [2.2836381788600653, 48.86108364874237], [2.283469539960068, 48.86102506967499], [2.283288870989737, 48.860963130277725], [2.283120232872688, 48.860904550711744], [2.282939563372598, 48.86084261077218], [2.282770926038296, 48.86078403070763], [2.282590258721993, 48.86072209114145], [2.282421622183024, 48.86066350967902], [2.282240954336965, 48.860601569570626], [2.282072318580752, 48.86054298760965], [2.281891652930852, 48.86048104697537], [2.281723017957598, 48.86042246451577], [2.281542351777952, 48.86036052333925], [2.281373718950404, 48.8603019403893], [2.281193053603965, 48.8602399986787], [2.281173159425829, 48.86021337248446]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 153, "zemmour_eric": 179.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-9", "circ_bv": "14", "num_bureau": 9, "roussel_fabien": 5.0, "nb_emargement": 1013.0, "nb_procuration": 71.0, "nb_vote_blanc": 7.0, "jadot_yannick": 26.0, "le_pen_marine": 52.0, "nb_exprime": 1003.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1260.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1013, "quartier_bv": "62", "geo_point_2d": [48.86208057255922, 2.2833980889872105], "melenchon_jean_luc": 66.0, "poutou_philippe": 1.0, "macron_emmanuel": 495.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.314911979706466, 48.8420150090722], [2.314940416522766, 48.84201436519165], [2.315050618951622, 48.8420730224594], [2.315217357041538, 48.84216174261185], [2.315355218804486, 48.84223512135411], [2.31552195794319, 48.84232384016984], [2.315659821914426, 48.842397219457524], [2.315826562090212, 48.84248593783578], [2.315964425556586, 48.842559316753984], [2.31596654223601, 48.84256072377384], [2.316079995033245, 48.84265501892357], [2.316197970096618, 48.842753300612024], [2.3163114223693633, 48.84284759551819], [2.316429398305054, 48.842945876961466], [2.316542852778108, 48.84304017163969], [2.316660829586229, 48.84313845283775], [2.316691580236126, 48.843159250036265], [2.316712338535782, 48.84315763912378], [2.316744943727367, 48.84312646627646], [2.316845280539289, 48.84303289462274], [2.316913869874166, 48.84296731782782], [2.317015062543984, 48.842870568053854], [2.317115398378307, 48.84277699615211], [2.317216590304399, 48.84268024619117], [2.317316926761229, 48.84258667501154], [2.317418117955481, 48.84248992396434], [2.317518452321624, 48.84239635259191], [2.317520761129319, 48.84239235099411], [2.317544082069583, 48.842268369729176], [2.31756395511448, 48.842153688908915], [2.31758727585698, 48.842029706709745], [2.317607148715836, 48.84191502585778], [2.317611756112758, 48.84190925572387], [2.317756780758823, 48.84182618821143], [2.317888134155368, 48.84175397436558], [2.318019487199693, 48.84168175947152], [2.318164510562918, 48.841598691447864], [2.3182958628212083, 48.8415264771396], [2.318440885311885, 48.84144340876933], [2.318455200276551, 48.84144194071865], [2.318635636398572, 48.84149318562229], [2.31881964534566, 48.841547253919636], [2.319000082190587, 48.84159849826873], [2.319184090525177, 48.84165256599261], [2.31936452944373, 48.84170381069425], [2.319548538539824, 48.84175787695313], [2.319728976818816, 48.84180912109245], [2.319912988027232, 48.84186318679343], [2.320093427029126, 48.84191443037822], [2.320277437613291, 48.84196849640504], [2.320293674234116, 48.8419658509909], [2.320409375573174, 48.841869077314904], [2.320551730653371, 48.84176237391575], [2.320667429710842, 48.841665599065465], [2.320809785069546, 48.8415588953475], [2.320925483196183, 48.84146212023], [2.32106783747073, 48.84135541618548], [2.321183534654827, 48.84125864170008], [2.321325886482977, 48.84115193732132], [2.321441584110425, 48.841055161677154], [2.321463630534895, 48.84099922021241], [2.321498887053822, 48.84099536674488], [2.321521892105984, 48.840966258814106], [2.3215432648433643, 48.840912028602354], [2.321594952432269, 48.84078922630504], [2.321638373835815, 48.84067905547346], [2.321690060981204, 48.84055625221011], [2.321733480627192, 48.84044608131331], [2.32178516730587, 48.84032327888255], [2.321828586568455, 48.84021310702895], [2.32184832217711, 48.84016621707829], [2.321846134667822, 48.84014951511715], [2.321784127524602, 48.84012926956775], [2.321688412447549, 48.84004879647747], [2.32158517293132, 48.83996159653027], [2.321489458469248, 48.83988112326874], [2.321386219629793, 48.83979392223742], [2.321367168042673, 48.83979233739405], [2.321222908998714, 48.83986572842399], [2.321079907875779, 48.83993874868248], [2.320935648010297, 48.84001214025569], [2.320792647445657, 48.840085160168925], [2.320648386770463, 48.84015855138609], [2.320505384039264, 48.840231570938634], [2.320361122566179, 48.840304960900454], [2.32021812039328, 48.84037798010775], [2.320073858098649, 48.84045137061283], [2.319930853759178, 48.84052438945945], [2.319911979546728, 48.84052297717414], [2.31978995849103, 48.840424706534975], [2.31966505754953, 48.84032111221401], [2.319543037420221, 48.84022284220455], [2.319418137453221, 48.840119247607035], [2.31929611691135, 48.84002097642085], [2.319171219281265, 48.83991738155457], [2.319049199665764, 48.839819110998064], [2.318924301647741, 48.83971551584752], [2.318802284344412, 48.839617244129876], [2.318677387289108, 48.8395136496021], [2.318555370923975, 48.83941537761481], [2.31843047485489, 48.83931178191123], [2.3183084580536812, 48.839213510545925], [2.318183564321455, 48.83910991457354], [2.31806154847009, 48.8390116420393], [2.317936654349912, 48.83890804578269], [2.317814640787249, 48.83880977388589], [2.317689747641407, 48.838706177352776], [2.317595473888141, 48.83863024637227], [2.317582092168624, 48.83861273126584], [2.317578357624232, 48.838610547877245], [2.3175506174202, 48.83858820577994], [2.317426733136191, 48.83848755383976], [2.317304721531003, 48.83838928048661], [2.317295500753363, 48.83837573102647], [2.317207399384866, 48.838392628262085], [2.317083597508907, 48.8385096570434], [2.316963192843852, 48.83862368770287], [2.316839389870788, 48.838740716207234], [2.316718984137729, 48.838854746597356], [2.316595180055858, 48.83897177572405], [2.316474773266576, 48.839085804945455], [2.316350968087469, 48.839202833795255], [2.3162305602301663, 48.83931686274727], [2.316230026747188, 48.83931733546373], [2.316103960830978, 48.83942122483386], [2.315973742652753, 48.839528766938635], [2.315847675702439, 48.83963265691835], [2.315717456467204, 48.83974019872377], [2.3155913898690033, 48.83984408752219], [2.315461168214333, 48.83995162902052], [2.315335100582106, 48.840055518428464], [2.315204879244645, 48.84016305873593], [2.315078809227661, 48.84026694784631], [2.314948586821346, 48.840374488753746], [2.314939342241684, 48.84037479465951], [2.314922807023131, 48.84039219176884], [2.314917957344007, 48.84039471729999], [2.314772313218475, 48.84043987767346], [2.314557921711589, 48.840506280954784], [2.314412278324697, 48.84055144089322], [2.314197885900231, 48.84061784352266], [2.314052240515478, 48.84066300390968], [2.314046723464579, 48.84066612545669], [2.313924892517391, 48.84078566594357], [2.313800947405505, 48.8409080253783], [2.31367911669154, 48.84102756559682], [2.313555170415678, 48.8411499256497], [2.3135309458331133, 48.84115883067668], [2.313529918270993, 48.84116112266359], [2.313606659642937, 48.84124972890023], [2.31367115236023, 48.84132330922769], [2.313672609959279, 48.841324678333], [2.313836599964917, 48.8414517355422], [2.313997580914243, 48.84157589368014], [2.313999840746424, 48.84157728716761], [2.314147837468817, 48.8416496687214], [2.314291126905297, 48.841715222090386], [2.314434416714047, 48.841780774384596], [2.314582414617762, 48.84185315538754], [2.314725705160254, 48.84191870822404], [2.314873703860265, 48.84199108885772], [2.314874494460712, 48.8419914792139], [2.314902152921952, 48.84200620105905], [2.314911979706466, 48.8420150090722]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 137, "zemmour_eric": 121.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 22.0, "date_tour": "2022-04-10", "id_bvote": "15-36", "circ_bv": "12", "num_bureau": 36, "roussel_fabien": 24.0, "nb_emargement": 1354.0, "nb_procuration": 91.0, "nb_vote_blanc": 17.0, "jadot_yannick": 94.0, "le_pen_marine": 68.0, "nb_exprime": 1333.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1610.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1354, "quartier_bv": "58", "geo_point_2d": [48.84081485560384, 2.3174931775609857], "melenchon_jean_luc": 289.0, "poutou_philippe": 2.0, "macron_emmanuel": 526.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323799011839277, 48.83070128693545], [2.323846486837172, 48.83068508959103], [2.323972681381225, 48.830598497055576], [2.324109111086574, 48.83050783679255], [2.324235304776884, 48.830421243066986], [2.324371733561644, 48.83033058249006], [2.324497926386655, 48.8302439884737], [2.324634352888664, 48.8301533275752], [2.324760544848488, 48.830066733268005], [2.324896971792088, 48.8299760720633], [2.325023162886525, 48.82988947746536], [2.325129359679461, 48.829818905599616], [2.325145239128845, 48.82981880993274], [2.325157980240595, 48.82979996346635], [2.325188209437034, 48.82977987470522], [2.325332919855952, 48.82968469629582], [2.325469344804409, 48.82959403440727], [2.325614054194308, 48.82949885564194], [2.325750476805491, 48.82940819341003], [2.32589518516628, 48.829313014288736], [2.326031608164291, 48.82922235172881], [2.32603526606703, 48.829218004973875], [2.326076654778273, 48.82909974185076], [2.326116650774859, 48.82898308613351], [2.326158039114981, 48.828864822957435], [2.326198034749338, 48.828748167188536], [2.326239422718347, 48.828629903959545], [2.326279417990374, 48.828513248139004], [2.326320805588172, 48.828394984857056], [2.326360800486256, 48.828278329884185], [2.326400795216976, 48.82816167398647], [2.326442182260438, 48.828043410625455], [2.326443082230774, 48.828041652016566], [2.326519066520329, 48.827932089772204], [2.3265944771280083, 48.82781650740953], [2.326589836646599, 48.827805608713426], [2.326422270259322, 48.827727295256736], [2.326254447316957, 48.82764852952369], [2.326086880587974, 48.82757021467911], [2.325919060020059, 48.8274914484721], [2.325751494288121, 48.82741313404596], [2.325583673370453, 48.82733436734962], [2.325416110020808, 48.827256051550975], [2.325248290115483, 48.827177284372986], [2.325235104940891, 48.8271615572141], [2.32520724094703, 48.82716930911987], [2.325146157339685, 48.827195722717356], [2.325085450485736, 48.82722217528404], [2.3250538235542, 48.82723123429811], [2.325052696746392, 48.82723504489639], [2.324939085737038, 48.82728454933209], [2.324775564679531, 48.82735571308215], [2.324601247174258, 48.82743166867359], [2.324437725194171, 48.82750283195235], [2.324263405342697, 48.827578787033715], [2.324099882440125, 48.82764994984124], [2.323925562966648, 48.82772590442791], [2.3237620391413882, 48.82779706676419], [2.3235877173216988, 48.827873020840755], [2.32342419257385, 48.82794418270573], [2.32324987113216, 48.82802013628759], [2.323086345473399, 48.828091296782006], [2.322912021673809, 48.82816725075307], [2.322748495092564, 48.82823841077621], [2.3225741716709702, 48.82831436425255], [2.322410644167036, 48.82838552380436], [2.322247116205003, 48.8284566840274], [2.322072789972678, 48.828532635851154], [2.322021220228849, 48.82854118708435], [2.322022683231891, 48.82855742283117], [2.322064191843153, 48.828594851856266], [2.322100691083803, 48.828623946727916], [2.322102241779795, 48.828625479061735], [2.322187088919924, 48.82873070586024], [2.322269322734838, 48.82883338603275], [2.322354169188436, 48.82893861268552], [2.322436403648683, 48.82904129362342], [2.322521250789675, 48.82914651923885], [2.322603485906852, 48.82924920004283], [2.322628636875989, 48.82928020998106], [2.322636317737857, 48.82928120772189], [2.322726945493752, 48.82938486771318], [2.3228138547218, 48.829486745591105], [2.322904483199693, 48.82959040452957], [2.322991394479485, 48.8296922822675], [2.323082023667701, 48.8297959410524], [2.323168934274937, 48.82989781863493], [2.3232595641618072, 48.83000147816564], [2.323346476820712, 48.83010335560821], [2.323437107429596, 48.83020701408602], [2.323501097486493, 48.830283859821115], [2.323501699112594, 48.830284632189894], [2.323568402678732, 48.83038144676606], [2.323649398087068, 48.83049662011583], [2.323716102198642, 48.830593434591314], [2.323776685364393, 48.830679581103766], [2.323799011839277, 48.83070128693545]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 93, "zemmour_eric": 83.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-9", "circ_bv": "11", "num_bureau": 9, "roussel_fabien": 34.0, "nb_emargement": 1296.0, "nb_procuration": 81.0, "nb_vote_blanc": 19.0, "jadot_yannick": 118.0, "le_pen_marine": 50.0, "nb_exprime": 1274.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1579.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1296, "quartier_bv": "55", "geo_point_2d": [48.828780069963955, 2.3244233198239175], "melenchon_jean_luc": 334.0, "poutou_philippe": 4.0, "macron_emmanuel": 494.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339740860663706, 48.85196142190459], [2.339771532672716, 48.8519839644371], [2.339912903840351, 48.852022061415816], [2.340054959212535, 48.85206006127095], [2.340196330805217, 48.852098157012904], [2.340338387942889, 48.85213615743575], [2.340346121012751, 48.85214150447063], [2.340405624978294, 48.85225298929484], [2.340461014293607, 48.85235837984594], [2.340461786216997, 48.85236124225336], [2.34046419669176, 48.852475187713786], [2.34046643509394, 48.852587331704186], [2.340468672143096, 48.85269947567575], [2.340471082637079, 48.8528134220007], [2.340473319705944, 48.85292556594931], [2.340475730231931, 48.85303951135169], [2.340474577535739, 48.85304325890647], [2.340405277804032, 48.8531472074976], [2.340335398475622, 48.853251272459254], [2.340266098189731, 48.8533552209503], [2.3401962183157963, 48.85345928491192], [2.340126917475613, 48.85356323330292], [2.340057037033373, 48.85366729806306], [2.340056489444862, 48.853673624701145], [2.3401222072552192, 48.85381238073133], [2.340187920373872, 48.85395013569876], [2.340253638882851, 48.85408889162226], [2.340319352686397, 48.854226647382525], [2.340321149031117, 48.85423826704946], [2.340340912692989, 48.854242951022165], [2.34049386390564, 48.85427081883177], [2.340653241124384, 48.854301171694544], [2.340658552589187, 48.85430146717123], [2.3408431236525162, 48.8542876825008], [2.3410295787494713, 48.85427384676571], [2.341214149616707, 48.854260061522645], [2.341400604516305, 48.854246225209046], [2.341585175187643, 48.85423243939334], [2.341771628527079, 48.854218602493795], [2.34195619900241, 48.854204816105444], [2.342142653495918, 48.854190979534195], [2.34215572808601, 48.85419514347734], [2.342257224006964, 48.854302114803204], [2.342357389309654, 48.85440807503827], [2.342458886059359, 48.85451504617259], [2.3425590535556102, 48.85462100532674], [2.342660551133977, 48.85472797626948], [2.342760718075485, 48.85483393612632], [2.34284116507217, 48.85489035192852], [2.342860754145458, 48.854879306628035], [2.342975201775532, 48.85482608901046], [2.343139034725837, 48.854746487354525], [2.34331546231365, 48.85466444719431], [2.343479292873007, 48.854584845053466], [2.3436557193777903, 48.85450280437963], [2.343819550272026, 48.854423201768775], [2.343995975693783, 48.85434116058134], [2.344159805559884, 48.85426155749312], [2.344336229898618, 48.854179515792055], [2.344500057373998, 48.85409991221891], [2.344596464246878, 48.85405686572072], [2.3445288866827783, 48.85398177542415], [2.344397816623101, 48.8538644156263], [2.344275734388952, 48.85374116379005], [2.344274114031798, 48.8537388831415], [2.344214134583396, 48.85361002770936], [2.3441567657757982, 48.85348763041458], [2.344096788269567, 48.853358774901956], [2.344039420014223, 48.853236377523224], [2.3439820506656153, 48.853113980096026], [2.343922074021502, 48.85298512445257], [2.343864706587912, 48.85286272694893], [2.343804729171725, 48.85273387031072], [2.343747362290375, 48.85261147272315], [2.343687386804982, 48.85248261690382], [2.343630019113107, 48.852360219224835], [2.3435700442070653, 48.85223136331758], [2.343512678430165, 48.8521089655622], [2.343452702740719, 48.85198010955949], [2.343395337516034, 48.851857711720214], [2.343335363768662, 48.85172885563706], [2.343277997744785, 48.851606456807126], [2.34321802457684, 48.851477600636066], [2.34316066045646, 48.85135520262896], [2.343100686505109, 48.851226346362495], [2.34304332293692, 48.851103948271515], [2.342983350927597, 48.8509750919246], [2.342925986548981, 48.85085269374225], [2.342866015118858, 48.850723837307456], [2.342808652666369, 48.850601438149376], [2.342748680452937, 48.85047258161919], [2.342710640436854, 48.850391410729245], [2.34269012933611, 48.8503638649586], [2.342594895023913, 48.850389241412735], [2.342436229145397, 48.85045014365055], [2.342281293844856, 48.850511503271804], [2.342122628590279, 48.85057240509451], [2.341967692545619, 48.850633765202225], [2.341809026552176, 48.850694666602415], [2.341654088423499, 48.850756025390524], [2.341499151292663, 48.850817383982104], [2.341340484192561, 48.8508782847509], [2.34133635358644, 48.85087936372405], [2.341251757443836, 48.85089143862284], [2.341190337638037, 48.850883718526056], [2.341179318717364, 48.85088550782983], [2.341121480902551, 48.850915788159234], [2.34112054605448, 48.85091632532336], [2.3409682977705, 48.85101056322586], [2.340828432264617, 48.85109857904924], [2.340676184282507, 48.85119281657211], [2.34053631779396, 48.85128083203962], [2.340396449470313, 48.85136884732918], [2.340244199917461, 48.85146308427949], [2.340242428742891, 48.851464446931004], [2.340112276107496, 48.85158755167841], [2.339987966618847, 48.85170312042293], [2.33985781413742, 48.85182622577391], [2.339733503526451, 48.85194179333001], [2.339740860663706, 48.85196142190459]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 73, "zemmour_eric": 87.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "6-6", "circ_bv": "02", "num_bureau": 6, "roussel_fabien": 11.0, "nb_emargement": 947.0, "nb_procuration": 59.0, "nb_vote_blanc": 7.0, "jadot_yannick": 74.0, "le_pen_marine": 57.0, "nb_exprime": 939.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 3, "nb_inscrit": 1191.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 947, "quartier_bv": "21", "geo_point_2d": [48.85274392298177, 2.3421066217122557], "melenchon_jean_luc": 164.0, "poutou_philippe": 5.0, "macron_emmanuel": 427.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.354054930285193, 48.872254593994036], [2.354058393314032, 48.87223985094321], [2.354003800078001, 48.872150121625275], [2.353926894304639, 48.87202250232722], [2.353857637906791, 48.87190867334341], [2.353780732848016, 48.87178105392354], [2.353711477079441, 48.87166722572956], [2.353634572746401, 48.87153960528861], [2.353565317618246, 48.8714257769852], [2.353488413988615, 48.871298157321704], [2.353419159512032, 48.87118432800957], [2.353342256596958, 48.8710567082243], [2.353273004112855, 48.870942879709375], [2.353257527350804, 48.87093743062739], [2.353194199628636, 48.87094627698959], [2.353130889016931, 48.87095550023404], [2.353115329613286, 48.87095011993621], [2.353107827787345, 48.87093800845936], [2.353101414164047, 48.87092532548711], [2.353084344396089, 48.87091960246799], [2.352857600417299, 48.870967252285205], [2.352637703040053, 48.87101365624413], [2.352410959595342, 48.87106130611781], [2.352191061423261, 48.87110770925229], [2.352186509506679, 48.87110813338718], [2.352003986781977, 48.87110462186598], [2.351822682253104, 48.87110105101128], [2.351640159577645, 48.871097538935295], [2.351458855087274, 48.87109396842876], [2.351276332461166, 48.87109045579796], [2.351095028031493, 48.871086883841066], [2.35091372497872, 48.87108331251623], [2.350731201063578, 48.871079799046754], [2.350724332195626, 48.87107841817458], [2.350568362496551, 48.871013591222564], [2.350412133868304, 48.870949115197384], [2.350256164944937, 48.87088428783099], [2.350099937090937, 48.87081981139075], [2.349943968943173, 48.87075498360996], [2.349787741874643, 48.870690505855485], [2.349773019576835, 48.87069061654], [2.349622127109576, 48.870756538562354], [2.349441312849236, 48.87083498295761], [2.349290418169518, 48.87090090544506], [2.349109602908615, 48.870979349328955], [2.348958708754034, 48.871045271397044], [2.348777891140466, 48.87112371386295], [2.348626996147886, 48.87118963550427], [2.348446177522406, 48.87126807835813], [2.348295281691823, 48.87133399957262], [2.34811446206567, 48.87141244191515], [2.347963565397183, 48.871478362702916], [2.34790658774028, 48.87148383776209], [2.347905805834208, 48.871485202297094], [2.34790566429146, 48.871613792675085], [2.347906342716858, 48.87174483910397], [2.347906201163471, 48.871873430351], [2.347906879593602, 48.87200447674911], [2.347906738040834, 48.8721330679659], [2.347907416475697, 48.872264114333156], [2.347907274934809, 48.87239270462045], [2.347907953374301, 48.872523750956944], [2.347907914398134, 48.87255898952982], [2.347910556201139, 48.872566750824326], [2.347970846093881, 48.87257057497886], [2.348168952596005, 48.872538039359334], [2.348366306371378, 48.87250571425649], [2.348564413743076, 48.87247317798801], [2.348761767027277, 48.87244085223129], [2.3489598725419842, 48.872408315298976], [2.349157225335107, 48.872375988888344], [2.349355330356094, 48.87234345129967], [2.349552684021202, 48.872311124242586], [2.34975078854846, 48.87227858599751], [2.349948140359098, 48.87224625827915], [2.350146244392617, 48.87221371937768], [2.350343595712156, 48.87218139100542], [2.3505417006150973, 48.87214885145495], [2.350739051443424, 48.872116522428826], [2.350937154489444, 48.872083982214605], [2.35113450482645, 48.87205165253457], [2.3513326087419752, 48.8720191116714], [2.3515299585766583, 48.87198678223677], [2.351535453272889, 48.87198663573383], [2.351742303011354, 48.87200904170537], [2.351951904164122, 48.872032212262624], [2.352158752899443, 48.87205461750619], [2.352368354420852, 48.872077787333296], [2.352575204879553, 48.87210019186369], [2.352784806769591, 48.872123360960565], [2.352991657588395, 48.87214576477044], [2.353201259847053, 48.87216893313714], [2.353408111025947, 48.87219133622637], [2.353617713653215, 48.87221450386291], [2.353824563828918, 48.87223690622424], [2.35403416681363, 48.872260074029896], [2.354054930285193, 48.872254593994036]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 40, "zemmour_eric": 56.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-38", "circ_bv": "05", "num_bureau": 38, "roussel_fabien": 31.0, "nb_emargement": 1332.0, "nb_procuration": 87.0, "nb_vote_blanc": 7.0, "jadot_yannick": 165.0, "le_pen_marine": 35.0, "nb_exprime": 1317.0, "nb_vote_nul": 8.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1615.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1332, "quartier_bv": "38", "geo_point_2d": [48.87164068446581, 2.350675980972926], "melenchon_jean_luc": 425.0, "poutou_philippe": 4.0, "macron_emmanuel": 507.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.348614986831003, 48.876622508117784], [2.348564976277597, 48.87662471724778], [2.34836407482461, 48.87662114794818], [2.348158828812391, 48.87661751868101], [2.347957927403648, 48.87661394959907], [2.347752681448101, 48.876610319635574], [2.34755178010633, 48.876606748972705], [2.347346534207469, 48.87660311831286], [2.347145632910051, 48.876599547867684], [2.346940387067782, 48.87659591651145], [2.346739485837269, 48.87659234448537], [2.346534240040525, 48.87658871333203], [2.346333338865656, 48.87658514062432], [2.346128094500193, 48.87658150788287], [2.346115444550245, 48.876591484363864], [2.346133283066921, 48.876632284824986], [2.34623975638654, 48.87665740381259], [2.34643877650463, 48.876702897918314], [2.346610664791112, 48.87674344834858], [2.346809686914084, 48.87678894274083], [2.3469815757734143, 48.876829492635316], [2.347153464900392, 48.87687004228156], [2.3473524866291102, 48.876915534859464], [2.347361587102505, 48.8769249438542], [2.347338689183005, 48.877073236279216], [2.347318066056462, 48.877212772568136], [2.347295169238643, 48.87736106585279], [2.34727454588143, 48.8775006020978], [2.347253922413814, 48.87764013832159], [2.347231023873333, 48.877788430629764], [2.347220985233601, 48.8777962063954], [2.34708255763563, 48.8778206472394], [2.346934824968748, 48.877845780012535], [2.346926262666767, 48.87785879613455], [2.347016086177791, 48.87796735822467], [2.347105828313484, 48.87807265250971], [2.347195652567631, 48.87818121444398], [2.347285396787008, 48.87828650948071], [2.34737522178429, 48.87839507125919], [2.347464965371778, 48.87850036613343], [2.347554791112202, 48.87860892775612], [2.3476445354425, 48.87871422157602], [2.347643349602685, 48.878724203113165], [2.347516785855883, 48.87882987575237], [2.347357181006377, 48.87895740719325], [2.347311935134795, 48.87899518343989], [2.347289402034467, 48.8790127765565], [2.347293184519296, 48.879023540615954], [2.347211865439276, 48.879091435769865], [2.347098582068588, 48.8791827460568], [2.346972016102128, 48.87928841807611], [2.346858731882461, 48.87937972811974], [2.346732166314101, 48.87948539987402], [2.346618881234066, 48.8795767105736], [2.346623906520651, 48.87961980525822], [2.346648414440347, 48.87962602030127], [2.346842481164784, 48.87961088406737], [2.347069668292501, 48.8795944199794], [2.347263734788022, 48.879579282162986], [2.347402427079671, 48.8795692309941], [2.347413153587642, 48.87957002511994], [2.347429563195444, 48.87956712788418], [2.347518057753466, 48.87956071414513], [2.347705044963907, 48.87954630326218], [2.347884951361248, 48.87952545836112], [2.348071939718304, 48.87951104601283], [2.348251844483645, 48.879490200552354], [2.348438832601328, 48.87947578852983], [2.348618738461381, 48.879454942524795], [2.348626344085699, 48.87945549922461], [2.348787106722312, 48.879471767700174], [2.348969771272581, 48.87952200505438], [2.349181240086863, 48.87957535482482], [2.349363904017166, 48.879625591565514], [2.349365952518002, 48.87962599031107], [2.349432479313852, 48.87963527143133], [2.349476474715252, 48.87962788056458], [2.349487564156728, 48.87959612872639], [2.349490050115221, 48.87958901412326], [2.349475691615845, 48.87956700317545], [2.349434646761053, 48.87944571645216], [2.34938526559426, 48.87931547200632], [2.34934421978493, 48.879194185216896], [2.349294839082667, 48.879063940704015], [2.349294651187332, 48.87906326428354], [2.34926518687058, 48.87892838670896], [2.34924310505368, 48.87878813885064], [2.34921364101483, 48.878653262129], [2.349191558089948, 48.878513014218775], [2.349191432716426, 48.878512135787545], [2.349182403588875, 48.87837956448685], [2.349172091682111, 48.87825352165442], [2.349163062648525, 48.87812095032116], [2.349152752203192, 48.877994907464945], [2.349143723263666, 48.87786233609909], [2.349133411552918, 48.8777362932042], [2.349124382707556, 48.87760372180579], [2.349114072446882, 48.87747767978638], [2.349094901857978, 48.877442121088414], [2.349098090997859, 48.87743590514102], [2.349069110491839, 48.87740512522274], [2.349013379335212, 48.87730174853528], [2.348946135170046, 48.87717394621962], [2.3488712342184233, 48.87703501070638], [2.348803990757578, 48.876907207380704], [2.348729090568828, 48.8767682717449], [2.348661847789911, 48.876640469207736], [2.348614986831003, 48.876622508117784]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 71, "zemmour_eric": 84.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "9-22", "circ_bv": "01", "num_bureau": 22, "roussel_fabien": 18.0, "nb_emargement": 1158.0, "nb_procuration": 95.0, "nb_vote_blanc": 10.0, "jadot_yannick": 114.0, "le_pen_marine": 35.0, "nb_exprime": 1145.0, "nb_vote_nul": 4.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1414.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1159, "quartier_bv": "36", "geo_point_2d": [48.87813603301632, 2.348129898072157], "melenchon_jean_luc": 254.0, "poutou_philippe": 5.0, "macron_emmanuel": 508.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.337263603064736, 48.891437729256495], [2.337245270642668, 48.89144144902201], [2.337159686750511, 48.89145075905882], [2.33695660122138, 48.89147148650518], [2.336754706813703, 48.89149344778257], [2.336551620956958, 48.89151417454131], [2.336349726212847, 48.891536135135034], [2.336146640039864, 48.89155686030687], [2.335944744959434, 48.89157882021694], [2.335741658447294, 48.89159954560043], [2.335539763030551, 48.891621504826844], [2.335336676190726, 48.8916422295227], [2.335134780437681, 48.89166418806543], [2.335017458214007, 48.89167558484714], [2.334997530569917, 48.891686722029725], [2.335008835854684, 48.89172716896491], [2.3349995580798693, 48.891774006404475], [2.33498577581239, 48.891812061207666], [2.334985399736714, 48.8918245273484], [2.335037923209351, 48.89183936919144], [2.335187914250532, 48.89191438365187], [2.335338119752247, 48.891988444025266], [2.335488113019152, 48.89206345810705], [2.335638319377922, 48.89213751809384], [2.335788313506774, 48.8922125317894], [2.335938519358907, 48.89228659138201], [2.336088514349606, 48.892361604691345], [2.33623872242259, 48.89243566390486], [2.33638871827524, 48.892510676828046], [2.336538927205288, 48.89258473565496], [2.336688922556191, 48.89265974818431], [2.336839132343201, 48.89273380662457], [2.336989129919864, 48.89280881877524], [2.337139340563943, 48.89288287682889], [2.337289337638755, 48.892957888585826], [2.337439549139904, 48.89303194625283], [2.337589548440492, 48.89310695763103], [2.337739760798715, 48.89318101491141], [2.337740398868149, 48.89318135478686], [2.337871700219313, 48.89326729258101], [2.3380418065521322, 48.89336350006095], [2.3380516308034203, 48.89339588860925], [2.338084687096186, 48.89339978733189], [2.338155526281568, 48.89339014962746], [2.338360286271655, 48.893363992992484], [2.338556243069304, 48.89333733142702], [2.338761002650259, 48.89331117410562], [2.338956959044022, 48.89328451188315], [2.339161718215936, 48.893258353875346], [2.339357672841882, 48.893231690988365], [2.339562432979973, 48.89320553140242], [2.339758387201911, 48.89317886785843], [2.339963145555715, 48.893152708477785], [2.340159100737354, 48.893126044284344], [2.340206481863266, 48.89311617268613], [2.340206921210862, 48.8930952793476], [2.340192214642927, 48.89304736784588], [2.340159720507534, 48.89294369385363], [2.340120392412902, 48.89281556646944], [2.340087898565185, 48.89271189243578], [2.340087876292712, 48.8927118203672], [2.340048548550019, 48.892583692932305], [2.340007881546915, 48.892448367099696], [2.339968554200068, 48.89232023960774], [2.339927887622042, 48.892184912816184], [2.339888560659634, 48.892056786166464], [2.339847894495284, 48.89192145931519], [2.339808567928707, 48.891793332608444], [2.339767902178024, 48.89165800569751], [2.339728576018678, 48.89152987803442], [2.339687910670253, 48.891394551963074], [2.339648584906729, 48.89126642424295], [2.339626829787306, 48.89122280576012], [2.339598478053115, 48.89117594300151], [2.339573813325068, 48.891174307797854], [2.339564061826847, 48.891175710021095], [2.339502512612272, 48.89120284759113], [2.33947292418706, 48.891210691064714], [2.339469107242797, 48.89121130133553], [2.339276333118527, 48.89122319707165], [2.339073902248125, 48.89124653436], [2.338872009605693, 48.891268499211556], [2.338696590323447, 48.891286812081695], [2.338521170906383, 48.89130512559377], [2.338319276439936, 48.89132708950476], [2.338143856765901, 48.8913454015642], [2.337941963347897, 48.89136736484575], [2.337766542041706, 48.89138567634425], [2.337564648308382, 48.89140763898887], [2.33738922808614, 48.89142595084076], [2.337272917920037, 48.89143860279181], [2.337263603064736, 48.891437729256495]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 61.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "18-38", "circ_bv": "03", "num_bureau": 38, "roussel_fabien": 22.0, "nb_emargement": 1330.0, "nb_procuration": 79.0, "nb_vote_blanc": 20.0, "jadot_yannick": 139.0, "le_pen_marine": 81.0, "nb_exprime": 1307.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1683.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1330, "quartier_bv": "69", "geo_point_2d": [48.89223502874685, 2.3380556963311263], "melenchon_jean_luc": 414.0, "poutou_philippe": 8.0, "macron_emmanuel": 461.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.263523092752335, 48.839540598515036], [2.2635374830626622, 48.839558562166516], [2.263673715646183, 48.83964031928272], [2.263832649361689, 48.83973712216276], [2.263968881512594, 48.839818878921434], [2.264127816333461, 48.83991568049453], [2.264264050776469, 48.83999743691233], [2.264422986677311, 48.84009423897706], [2.264559220687603, 48.840175995037306], [2.264718157693811, 48.840272795795094], [2.264854393996126, 48.84035455151446], [2.265013332082433, 48.84045135276389], [2.265149567952033, 48.840533108125655], [2.265158699316614, 48.84053544682825], [2.265340047071393, 48.8405357467786], [2.265524868381504, 48.84053610915265], [2.265706216140691, 48.840536408547884], [2.265891037455693, 48.840536770356195], [2.266072385219281, 48.840537069196365], [2.266257206539164, 48.84053743043895], [2.266270581495979, 48.84054485315776], [2.266305561930129, 48.84067501176963], [2.266336908465389, 48.84079173032982], [2.266368253765944, 48.84090844976055], [2.2664032360505733, 48.84103860830984], [2.266434581660791, 48.84115532679807], [2.266469562914207, 48.84128548529084], [2.266479098398464, 48.84132098711523], [2.266494356979502, 48.841342713273555], [2.266515689067219, 48.8413399966626], [2.266662171198841, 48.84140504604164], [2.2667926133043332, 48.84146276777204], [2.266807215087383, 48.84146300746395], [2.266987625137284, 48.84139147530856], [2.267164201333858, 48.84132007678296], [2.267344609036629, 48.84124854407165], [2.267521185622399, 48.841177145018314], [2.267701592340492, 48.841105611759524], [2.267878166590666, 48.841034212161794], [2.268054741719406, 48.840962812307176], [2.268235146963347, 48.84089127823001], [2.268411719769019, 48.840819876931725], [2.268592124015663, 48.84074834320637], [2.268768697210516, 48.84067694138035], [2.268949100485105, 48.84060540620818], [2.2691256713317562, 48.8405340047371], [2.269306073621572, 48.84046246901741], [2.26935166957181, 48.840428705377754], [2.269340525578126, 48.840416260146135], [2.269282485124215, 48.840353562014684], [2.269181533873017, 48.84024381993321], [2.269081470111873, 48.84013572453116], [2.268980521068241, 48.84002598226692], [2.268880456779867, 48.83991788666735], [2.268779508581369, 48.83980814421207], [2.268679446490486, 48.83970004843158], [2.268578497762085, 48.839590306676286], [2.268478436506166, 48.83948221070655], [2.268377488635504, 48.83937246786092], [2.268277428214745, 48.83926437170198], [2.268176481189194, 48.83915462866533], [2.268076421603383, 48.83904653231718], [2.267975475423036, 48.838936789089516], [2.2678754166722648, 48.83882869255215], [2.267774471324277, 48.83871895003274], [2.267674413408635, 48.83861085330619], [2.267674138118282, 48.838610567418584], [2.267573193629244, 48.838500823808616], [2.267503276907842, 48.83843132374159], [2.267486393782077, 48.83842158715597], [2.267433002588827, 48.83844379580796], [2.267256512360056, 48.838492838734176], [2.2670886089391002, 48.83853959294139], [2.26692070656666, 48.8385863478186], [2.266744215373191, 48.838635389982684], [2.266576311020864, 48.83868214436419], [2.266399819178992, 48.83873118601591], [2.266231914221817, 48.83877793901069], [2.266055421731545, 48.838826980150095], [2.265887517506596, 48.83887373356511], [2.265711023005539, 48.838922774183835], [2.265704929974102, 48.838921227631396], [2.265670991717959, 48.83893284606083], [2.265494498175411, 48.83898188636583], [2.265323656701694, 48.83902980542879], [2.265152814913852, 48.83907772424571], [2.26497631901813, 48.83912676467074], [2.264805476593168, 48.83917468298742], [2.264628981417314, 48.83922372200477], [2.264458138355237, 48.83927163982128], [2.264281642524389, 48.8393206783219], [2.264110798825202, 48.839368595638135], [2.263934300976858, 48.839417633613685], [2.263763456640563, 48.83946555042969], [2.263586959499529, 48.83951458789687], [2.263541098645543, 48.839527450803836], [2.263523092752335, 48.839540598515036]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 102, "zemmour_eric": 151.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-40", "circ_bv": "14", "num_bureau": 40, "roussel_fabien": 10.0, "nb_emargement": 1085.0, "nb_procuration": 43.0, "nb_vote_blanc": 9.0, "jadot_yannick": 43.0, "le_pen_marine": 112.0, "nb_exprime": 1067.0, "nb_vote_nul": 9.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1543.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1085, "quartier_bv": "61", "geo_point_2d": [48.83988915625032, 2.266707591194073], "melenchon_jean_luc": 213.0, "poutou_philippe": 4.0, "macron_emmanuel": 390.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291686164198487, 48.87946962248362], [2.291676830673419, 48.87946080770358], [2.291573836669957, 48.879369826444226], [2.2914622999964482, 48.87925472732485], [2.291439975922767, 48.879235006701634], [2.291430454957071, 48.87922484178254], [2.291407101460182, 48.87922335904493], [2.291326432375731, 48.87915209818435], [2.291279352503504, 48.87911050835087], [2.291262262944849, 48.87909541160307], [2.291258743225763, 48.87909324044644], [2.291089301153431, 48.879020948397724], [2.290918314122539, 48.87894799582927], [2.290748873007534, 48.878875702389934], [2.290577885567018, 48.87880274931758], [2.290408445384748, 48.87873045628615], [2.290237460261373, 48.87865750272606], [2.290068021036438, 48.87858520830401], [2.289897036866768, 48.8785122542481], [2.289727598586918, 48.8784399593347], [2.28955661537095, 48.878367004783016], [2.28955155817949, 48.878355804972884], [2.289646404793404, 48.878214887290355], [2.289742816571704, 48.8780716423189], [2.289837662150748, 48.877930724448504], [2.289934072876997, 48.87778747928613], [2.289922614291557, 48.87777486192863], [2.289739370449464, 48.87776594251816], [2.289556594041001, 48.877757045386254], [2.289373350324277, 48.877748125415394], [2.289190574028496, 48.877739228623795], [2.28900733043725, 48.87773030809251], [2.288824554278802, 48.877721409842664], [2.28864131081284, 48.877712488751], [2.28845853476728, 48.877703590841485], [2.288275291426709, 48.87769466918939], [2.288092516881814, 48.877685769829725], [2.288080470472916, 48.87767419562845], [2.288134695709325, 48.87755604798385], [2.288191048330419, 48.8774332678593], [2.28824527306515, 48.8773151201388], [2.288301625164892, 48.87719233993539], [2.28835584939795, 48.877074192138984], [2.288412199612961, 48.87695141184857], [2.28846642470774, 48.876833263984366], [2.288522774401418, 48.876710483615085], [2.288576998982249, 48.87659233657425], [2.288633348166885, 48.87646955522678], [2.288687570882792, 48.87635140810193], [2.288743920909376, 48.87622862668373], [2.288798143123639, 48.876110479483], [2.288854492628905, 48.8759876979859], [2.288887371375206, 48.875916056590675], [2.288899230640108, 48.875914058553086], [2.288912354460852, 48.87590402431407], [2.288933698775473, 48.87585751753653], [2.288978560442498, 48.8757763018468], [2.288953471148676, 48.87572491192364], [2.2889086227479742, 48.87572756208683], [2.288796035501829, 48.87576318797528], [2.288617155375769, 48.87582083051676], [2.28843370859046, 48.87587887822861], [2.28825482630272, 48.87593652021456], [2.288071378706127, 48.87599456736508], [2.287892496983427, 48.876052208811615], [2.287709047224489, 48.876110254493476], [2.287530164703475, 48.87616789539254], [2.287346715484226, 48.87622594142043], [2.287253129787413, 48.87625609676059], [2.287239677917422, 48.876260980133225], [2.287229185659581, 48.87626848651909], [2.287143888004141, 48.87629597151318], [2.2869592446238283, 48.87635423467], [2.28678036043507, 48.87641187443594], [2.28659571487384, 48.87647013701782], [2.286416829884703, 48.87652777623446], [2.286232184869302, 48.87658603825763], [2.286053299092118, 48.87664367602572], [2.285868653259282, 48.8767019374821], [2.28568976530602, 48.87675957559202], [2.285505118655545, 48.87681783648155], [2.285326231265291, 48.876875474050316], [2.285141583797281, 48.876933734373004], [2.284962694243272, 48.87699137138433], [2.284778045957728, 48.877049631140174], [2.284599156966738, 48.87710726761036], [2.284414507863664, 48.87716552679933], [2.28423561807231, 48.87722316272023], [2.284196667687581, 48.87723545135117], [2.284195341468934, 48.87723621235774], [2.284241161150622, 48.87729624394077], [2.284359950097984, 48.877396396057684], [2.284477271674274, 48.877495309875464], [2.284596062905342, 48.877595460848866], [2.284713385366115, 48.87769437531662], [2.28483070964828, 48.87779328876939], [2.2849495008753182, 48.87789343935689], [2.284951875109644, 48.87789500040394], [2.285109779945, 48.877975898433], [2.285266389502377, 48.87805613289252], [2.285422999554719, 48.87813636624207], [2.2855809044903292, 48.87821726362387], [2.285737515499273, 48.878297497449495], [2.285895422787691, 48.87837839351351], [2.286052034765682, 48.878458626915965], [2.286209943018834, 48.878539523452574], [2.286366555965877, 48.87861975643185], [2.286524463844987, 48.87870065163434], [2.286681077761084, 48.87878088419041], [2.286838987968376, 48.87886177987361], [2.286995602853533, 48.87894201200654], [2.287153512686773, 48.87902290635565], [2.287310128540991, 48.87910313806533], [2.2874680407024393, 48.87918403289513], [2.287485548904963, 48.87918360109433], [2.287593181997922, 48.87911940918744], [2.287699052398715, 48.879056268813315], [2.287806684965374, 48.87899207670704], [2.287912553485048, 48.878928936128716], [2.287924083320868, 48.8789267518648], [2.288123333765133, 48.8789501019754], [2.288320384463359, 48.878973193156206], [2.28851963526287, 48.87899654260624], [2.288716686312612, 48.879019633133765], [2.288915937479741, 48.87904298102396], [2.289112988868609, 48.879066071797475], [2.2893100404443762, 48.87908916134693], [2.28950929213123, 48.879112509147376], [2.289706344058489, 48.87913559804356], [2.289905596112921, 48.87915894428415], [2.290102648379302, 48.87918203342633], [2.290301900789034, 48.87920537900636], [2.290498953419046, 48.879228466596004], [2.290698206171818, 48.87925181241476], [2.290709090214898, 48.87925859676015], [2.290740738762596, 48.8793468349238], [2.290771832992341, 48.87943353191849], [2.290803481752748, 48.87952177005152], [2.290834577554837, 48.87960846702419], [2.290838583337139, 48.879612995539524], [2.291023946125355, 48.879726171671635], [2.291204605028535, 48.879836475043895], [2.291220445844594, 48.879844655679086], [2.291233635917217, 48.87984091428002], [2.2913483567475152, 48.87974781851171], [2.291456450815732, 48.87966010012266], [2.291564544519827, 48.87957238162904], [2.291679264154972, 48.879479286420185], [2.291686164198487, 48.87946962248362]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 164, "zemmour_eric": 160.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-62", "circ_bv": "04", "num_bureau": 62, "roussel_fabien": 7.0, "nb_emargement": 1236.0, "nb_procuration": 77.0, "nb_vote_blanc": 11.0, "jadot_yannick": 61.0, "le_pen_marine": 54.0, "nb_exprime": 1222.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1498.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1236, "quartier_bv": "65", "geo_point_2d": [48.877804527398666, 2.287630197336887], "melenchon_jean_luc": 137.0, "poutou_philippe": 1.0, "macron_emmanuel": 593.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.391982229045942, 48.84280618886307], [2.391952017235913, 48.84280604250177], [2.3918366881312503, 48.84289188732153], [2.3917267202888812, 48.84297295131463], [2.391611391816807, 48.84305879501197], [2.391501421909337, 48.84313985877892], [2.391386092686341, 48.84322570314555], [2.391276122076272, 48.84330676669327], [2.391258114855988, 48.843308114037704], [2.391113390128353, 48.843240688289214], [2.3909394130142543, 48.84315935684549], [2.390794690474511, 48.84309193070941], [2.390620714354311, 48.84301059879136], [2.390475991287944, 48.8429431713545], [2.390302016151125, 48.842861839861456], [2.390157295272644, 48.842794412036994], [2.389983319777733, 48.842713079163374], [2.389838599714097, 48.84264565184376], [2.389833545234901, 48.84264117603497], [2.389767781130883, 48.84251235994585], [2.3897071987959873, 48.84239032262866], [2.389646616734264, 48.84226828616674], [2.389580853573392, 48.842139469032546], [2.389520272099084, 48.84201743247919], [2.389454509566895, 48.841888615246596], [2.389462676867886, 48.8418773133066], [2.389599928667476, 48.84184366447368], [2.389738377285913, 48.841809956834716], [2.38987562737818, 48.84177630677725], [2.390014075628965, 48.84174259971649], [2.390022094095425, 48.8417309633162], [2.389962777197577, 48.841628074468794], [2.389912856885446, 48.84153796124545], [2.389862936735404, 48.84144784889337], [2.389803620484474, 48.841344959041635], [2.389788352610041, 48.8413393213169], [2.389627177837017, 48.84135945684094], [2.389475002661369, 48.84138422571487], [2.3894588552569402, 48.841378417077756], [2.38941278261952, 48.84128991872243], [2.389334326838255, 48.84113492002137], [2.38928825461698, 48.841046422498096], [2.389285745992529, 48.84102272053874], [2.389261808655076, 48.841018121314164], [2.389091137811805, 48.84105605004626], [2.3889245978504112, 48.841095259640426], [2.388753926509263, 48.84113318788882], [2.388587386047615, 48.84117239701082], [2.38841671420849, 48.84121032477552], [2.388250173246795, 48.84124953342534], [2.388235848802299, 48.84124734667421], [2.388100678402572, 48.841155990819225], [2.387968294441619, 48.84106513201435], [2.387833124983308, 48.840973775842144], [2.387700743314033, 48.840882916733335], [2.387663930169626, 48.840855491161626], [2.387635127255867, 48.840857175718675], [2.38760320849195, 48.84089154237294], [2.387525940922438, 48.8409747333648], [2.387420297495344, 48.841084104178314], [2.38731111157502, 48.841201660712144], [2.387205465864124, 48.84131103220603], [2.387096278983868, 48.84142858851987], [2.386990632362186, 48.84153795980181], [2.386881444522087, 48.84165551589571], [2.38677579698961, 48.84176488696567], [2.386670150386705, 48.84187425703933], [2.386560961108656, 48.84199181370457], [2.386455312232465, 48.84210118355926], [2.386353608902434, 48.84220568912905], [2.386247960509595, 48.84231505968597], [2.386146256346351, 48.84241956505946], [2.38604455177535, 48.842524070336694], [2.385938902099085, 48.842633439690154], [2.385917363576595, 48.84265557118626], [2.385916576686025, 48.84265863666047], [2.385961723409579, 48.84268469260567], [2.38612655520737, 48.84275920327321], [2.386290765061271, 48.84283345869509], [2.386455599162463, 48.8429079689063], [2.386619809943291, 48.842982224765855], [2.386784643633457, 48.84305673360751], [2.3869488553518, 48.843130989005545], [2.387113689972283, 48.84320549828318], [2.387277902638721, 48.843279752320335], [2.387442738200105, 48.84335426113462], [2.387606953156014, 48.84342851561649], [2.38777178966887, 48.84350302306819], [2.387936004199781, 48.84357727708149], [2.388100841642978, 48.843651784969175], [2.388265057121973, 48.8437260376216], [2.388429273058331, 48.84380029094299], [2.388594111912045, 48.84387479813612], [2.388758330159018, 48.84394905010357], [2.388923169953544, 48.84402355683335], [2.389087387765069, 48.844097809231585], [2.38925222851105, 48.84417231459873], [2.389416447260108, 48.84424656653533], [2.389581288936466, 48.84432107233845], [2.389745508633593, 48.84439532291415], [2.38991035261342, 48.844469828260884], [2.389940400511669, 48.84448091678009], [2.389958551423595, 48.84447280270041], [2.389988064400653, 48.84444833597669], [2.390150781396228, 48.844314210661565], [2.390275840156136, 48.844210530709084], [2.390294491696457, 48.84420887921528], [2.390447903950943, 48.84428254043137], [2.390601473384926, 48.84435584789744], [2.390754885143254, 48.8444295087032], [2.390908456804642, 48.84450281577251], [2.391061869429563, 48.844576476174936], [2.39121544195571, 48.84464978284048], [2.391368855447127, 48.84472344283953], [2.39152242883824, 48.84479674910135], [2.391675843196052, 48.844870408697055], [2.391829417452032, 48.84494371455512], [2.391982832676446, 48.845017373747424], [2.392136407797294, 48.84509067920181], [2.392289823888111, 48.84516433799071], [2.39244339851126, 48.8452376430344], [2.392596816831254, 48.84531130142689], [2.392750392319274, 48.845384606066844], [2.392903811505681, 48.84545826405592], [2.393057387858573, 48.8455315682921], [2.393210806559486, 48.84560522497161], [2.393364385139732, 48.84567852881097], [2.393384707043861, 48.845675060511375], [2.393411022777196, 48.84563802894362], [2.393430190396993, 48.84560928197201], [2.3934472468027073, 48.845597785639036], [2.393444984696413, 48.84558608883328], [2.393509973511237, 48.84548862319743], [2.393589257397524, 48.845373128631024], [2.393673413029343, 48.84524691587828], [2.39375269619609, 48.84513142027924], [2.393836851031343, 48.845005208283446], [2.393916133468299, 48.844889712551065], [2.394000287517464, 48.844763500412945], [2.394079569224535, 48.84464800454724], [2.394158850580115, 48.84453250861701], [2.394243003464715, 48.84440629626772], [2.3943222854530752, 48.84429080021106], [2.394406437551607, 48.84416458771946], [2.394485717447454, 48.84404909152254], [2.394569868759932, 48.843922878888655], [2.394649147926031, 48.8438073825584], [2.394733298452464, 48.843681169782236], [2.394775812359232, 48.84361923295293], [2.394772631322506, 48.84360850370944], [2.394722558891564, 48.84359807324331], [2.394550261406639, 48.84354939060959], [2.39435843012511, 48.84349403542665], [2.394186133313796, 48.843445353163276], [2.393994302812399, 48.84338999649203], [2.393822005322726, 48.8433413136928], [2.393630176953435, 48.8432859564394], [2.39345788014783, 48.843237273111214], [2.393266052548227, 48.843181915268794], [2.393093756426693, 48.84313323141164], [2.392901929596782, 48.843077872980196], [2.392729634159322, 48.843029188594095], [2.3925378067366943, 48.842973829566716], [2.3923655133457222, 48.84292514465858], [2.392173686692795, 48.842869785042176], [2.392001393985901, 48.84282109960509], [2.391982229045942, 48.84280618886307]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 56, "zemmour_eric": 78.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-19", "circ_bv": "08", "num_bureau": 19, "roussel_fabien": 26.0, "nb_emargement": 1177.0, "nb_procuration": 50.0, "nb_vote_blanc": 11.0, "jadot_yannick": 82.0, "le_pen_marine": 86.0, "nb_exprime": 1163.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 6, "nb_inscrit": 1565.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1178, "quartier_bv": "46", "geo_point_2d": [48.843267077388326, 2.3902834097520715], "melenchon_jean_luc": 423.0, "poutou_philippe": 10.0, "macron_emmanuel": 337.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352721686911827, 48.83052008317587], [2.352708137444169, 48.830508387258234], [2.352590148013904, 48.83047084018457], [2.352418062387597, 48.83041576092737], [2.352235464177794, 48.83035765205513], [2.352063379299854, 48.83030257228205], [2.351880783232847, 48.830244463769155], [2.351708699103269, 48.83018938348015], [2.351526102465782, 48.83013127441251], [2.351354019084673, 48.83007619360767], [2.351171423250177, 48.83001808309334], [2.350999340617339, 48.82996300177262], [2.35081674692572, 48.82990489161764], [2.350644665041251, 48.82984980978106], [2.350462070779268, 48.82979169907129], [2.350289989643173, 48.82973661671884], [2.350107396184207, 48.82967850456242], [2.349935315796491, 48.829623421694095], [2.34993307236937, 48.829622862681155], [2.349846340709048, 48.82960877830974], [2.349626652736577, 48.829568193991605], [2.349541429640393, 48.8295617191035], [2.349535430172627, 48.82956151919024], [2.349508247388261, 48.82956661738912], [2.349505769930633, 48.82961167060541], [2.349401557396646, 48.82976444686007], [2.349309418708757, 48.8299059035345], [2.349307640181979, 48.82990782391251], [2.349184078936724, 48.83000994362166], [2.349063346105323, 48.83010959182492], [2.348942614185877, 48.83020923900556], [2.348819050149012, 48.83031135830273], [2.34869831729524, 48.8304110052188], [2.348574752301602, 48.830513124245236], [2.348454018513699, 48.83061277089677], [2.348330452563279, 48.830714889652384], [2.348328944282362, 48.83071643644899], [2.348233979601025, 48.83083992712918], [2.348140222637665, 48.83096364824903], [2.348045258421039, 48.83108713875957], [2.347951500565187, 48.83121085970416], [2.347856534089077, 48.83133435003021], [2.347762775340721, 48.83145807079955], [2.347667807967205, 48.8315815609485], [2.347574049688543, 48.83170528154998], [2.347479081417613, 48.83182877152182], [2.347385320884214, 48.831952491940676], [2.347290351715855, 48.832075981735414], [2.347196591652038, 48.832199701986426], [2.347195702871311, 48.8322011613119], [2.347142518423814, 48.832316828751686], [2.347089190400895, 48.83243306377593], [2.34703600548047, 48.832548731144385], [2.346982676982822, 48.8326649660971], [2.346951953735971, 48.83268512503284], [2.346981292560179, 48.83270892608574], [2.34698640696759, 48.83271129417253], [2.347174648525135, 48.83276095526249], [2.347363440777397, 48.83281029258536], [2.347551683040352, 48.83285995397687], [2.347740476007985, 48.83290929070027], [2.347928720349853, 48.83295895150142], [2.348117514032855, 48.833008287625326], [2.348305757729146, 48.83305794782124], [2.34849455212751, 48.83310728334564], [2.348682796540463, 48.83315694294379], [2.348871593016435, 48.83320627787615], [2.3490598381460472, 48.83325593687646], [2.34924863398635, 48.833305270302596], [2.34943687983261, 48.83335492870515], [2.349625677739288, 48.833404262438435], [2.349813924302198, 48.833453920243194], [2.350002721561965, 48.833503253369585], [2.350021247599103, 48.833515073737836], [2.350057332393901, 48.83350419138904], [2.350214403246721, 48.833455672995846], [2.3503742420561062, 48.833407372687354], [2.350531312322237, 48.83335885387382], [2.350691150541118, 48.83331055313766], [2.350848218847209, 48.83326203479563], [2.351008056475487, 48.833213733631816], [2.351165125568341, 48.83316521397754], [2.3513249626061112, 48.83311691238604], [2.351328495692036, 48.833116207554546], [2.351523366411874, 48.83309676312031], [2.351712956655571, 48.83307687963502], [2.351902546754536, 48.833056995848885], [2.352097418401245, 48.83303755048574], [2.352287008210524, 48.833017666089475], [2.352481878215719, 48.83299821919255], [2.352491767853801, 48.83299367425299], [2.352569280651751, 48.83290100004976], [2.352644741042119, 48.832806720098006], [2.352722253290133, 48.83271404578019], [2.352797711759813, 48.83261976660815], [2.352875223457899, 48.83252709217573], [2.352950682753803, 48.832432811999496], [2.352956719453808, 48.832428942288566], [2.353125559998294, 48.832374168349745], [2.353298237815837, 48.83231554762645], [2.353467077623162, 48.83226077409931], [2.3536397546921, 48.83220215197771], [2.353808593773323, 48.83214737796293], [2.353981270082598, 48.83208875534232], [2.354150108437715, 48.832033980839896], [2.354322783987427, 48.831975357720296], [2.354329575981705, 48.83196471885503], [2.354281120315997, 48.83186060870216], [2.35424278754748, 48.83177126778399], [2.35420445491035, 48.831681926846414], [2.354155998395169, 48.831577816609176], [2.3541408522824, 48.83157157502677], [2.353951479977038, 48.83159132142926], [2.3537587306976873, 48.831612035895844], [2.353569358100505, 48.831631781692565], [2.35337660988193, 48.83165249554994], [2.353187236993139, 48.831672240740964], [2.35299448712199, 48.83169295307509], [2.352805113930334, 48.831712698559684], [2.352612365120088, 48.83173341028463], [2.352596600931797, 48.831725282777306], [2.352579035123647, 48.83158646147663], [2.352561981133814, 48.83145777074775], [2.352544415507995, 48.83131894940878], [2.352527361679968, 48.83119025954356], [2.3525103093094, 48.83106156876914], [2.352492743954676, 48.83092274737357], [2.352493518926773, 48.83091892114451], [2.352545335560449, 48.83082500325299], [2.352594803502218, 48.83073470338312], [2.352644271272616, 48.83064440348557], [2.352696088724028, 48.83055048551307], [2.352721686911827, 48.83052008317587]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 62, "zemmour_eric": 65.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-60", "circ_bv": "09", "num_bureau": 60, "roussel_fabien": 29.0, "nb_emargement": 1257.0, "nb_procuration": 56.0, "nb_vote_blanc": 11.0, "jadot_yannick": 127.0, "le_pen_marine": 62.0, "nb_exprime": 1237.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1593.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "52", "geo_point_2d": [48.831706757766824, 2.350334272778008], "melenchon_jean_luc": 429.0, "poutou_philippe": 9.0, "macron_emmanuel": 382.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.388367632499064, 48.86099808145293], [2.388318157905506, 48.86098626391544], [2.388142672687273, 48.86094974739789], [2.387964299713715, 48.86091285881213], [2.387788814980177, 48.860876342672526], [2.387610442508478, 48.860839453556885], [2.387434958280773, 48.86080293599672], [2.387256586310939, 48.86076604635124], [2.387081102578508, 48.86072952826977], [2.386902732462937, 48.86069263900068], [2.386727247862808, 48.86065612039097], [2.386548878259691, 48.86061922969275], [2.386373394154848, 48.860582710561715], [2.386195025043015, 48.86054582023296], [2.3861782030586722, 48.86055121275948], [2.386106542948389, 48.86067592695581], [2.386034420838673, 48.86080257231784], [2.385962760049083, 48.86092728550054], [2.385890637241901, 48.86105393074721], [2.385872674336483, 48.86105907994762], [2.38581274711443, 48.861042748781976], [2.385765144635744, 48.86102987946767], [2.385743060220355, 48.86102656085084], [2.385731534984692, 48.86104234364717], [2.385686331149576, 48.86113458041274], [2.385637770680194, 48.86123600381284], [2.385619809766869, 48.86124167010819], [2.385421130130115, 48.8611903999899], [2.385222332655474, 48.86113933038519], [2.385023653800134, 48.86108805960229], [2.384824855732011, 48.86103699022492], [2.384626177658092, 48.860985718777414], [2.384427381733067, 48.860934648742074], [2.384228704440572, 48.86088337662998], [2.3840299093063, 48.86083230503038], [2.383831232795237, 48.86078103225369], [2.3836324384304612, 48.860729960888406], [2.38343376133786, 48.86067868744012], [2.383234967763862, 48.86062761451057], [2.383217436690946, 48.860632544301744], [2.383141808735341, 48.8607526235602], [2.383072668582716, 48.860867975972866], [2.382997039940949, 48.86098805601367], [2.382927897803028, 48.86110340741187], [2.382858756721927, 48.86121875876519], [2.382783127078034, 48.86133883863276], [2.382713985353308, 48.861454190777245], [2.3826383550445343, 48.86157426962856], [2.382639240156498, 48.861584810913016], [2.382670995674, 48.86159501770379], [2.382842711618116, 48.86165306928434], [2.383013988268628, 48.86171061021919], [2.383185265308017, 48.86176815000663], [2.383356982385145, 48.86182620173954], [2.383528260183355, 48.86188374103009], [2.383699979386657, 48.861941792271764], [2.383871257943789, 48.86199933106549], [2.384042976547252, 48.86205738180194], [2.384045214507077, 48.86205797519597], [2.384050077362347, 48.86205894633415], [2.384060647303707, 48.86206257652664], [2.384063114896423, 48.862063231358206], [2.384228478903157, 48.86209513577134], [2.384436017446599, 48.86213642300244], [2.384601380550992, 48.86216832689118], [2.384808919681508, 48.862209613472906], [2.384937175380138, 48.862234780714495], [2.385144713689081, 48.862276065805084], [2.385272969713614, 48.862301232685304], [2.385274246094312, 48.862301533326864], [2.38545761629319, 48.862352980416325], [2.385632220565169, 48.862400640951584], [2.385815591466269, 48.862452087487945], [2.3859901977609, 48.86249974750368], [2.386164803011969, 48.86254740725564], [2.386348174955556, 48.862598852969136], [2.3865227822292763, 48.862646512201536], [2.38670615487518, 48.86269795736198], [2.386743428643895, 48.862708131976305], [2.386751016002119, 48.86271388618094], [2.386772808369797, 48.862716373912015], [2.386910141203679, 48.86275385886185], [2.387135964213062, 48.86281721317277], [2.387310572939277, 48.8628648712464], [2.387311049895633, 48.862864997797516], [2.387383845758343, 48.86288331054663], [2.38743790382218, 48.86290180703948], [2.387447077798647, 48.86289760190264], [2.387471160080744, 48.86289732315612], [2.387461882660972, 48.86287693793274], [2.387522289053413, 48.86275081926388], [2.387586832673018, 48.8626185072623], [2.387647238473811, 48.86249238760165], [2.387711781456026, 48.86236007550177], [2.387772188007151, 48.862233956654926], [2.387836728999336, 48.862101643550574], [2.387897134948454, 48.86197552461121], [2.387961676655609, 48.86184321231491], [2.388022080650086, 48.861717092376836], [2.388086621719776, 48.861584779982294], [2.388147026464702, 48.861458660858005], [2.388211565544502, 48.86132634745895], [2.388271969687244, 48.86120022824222], [2.388336509492688, 48.86106791475192], [2.388363139138455, 48.86101231219584], [2.388367632499064, 48.86099808145293]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 56, "zemmour_eric": 46.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-39", "circ_bv": "06", "num_bureau": 39, "roussel_fabien": 30.0, "nb_emargement": 1139.0, "nb_procuration": 68.0, "nb_vote_blanc": 14.0, "jadot_yannick": 127.0, "le_pen_marine": 54.0, "nb_exprime": 1124.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1438.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1142, "quartier_bv": "43", "geo_point_2d": [48.861600977130266, 2.3857710152705933], "melenchon_jean_luc": 462.0, "poutou_philippe": 10.0, "macron_emmanuel": 288.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.371962130797866, 48.82584983966327], [2.371963370885934, 48.82586449338264], [2.371903175014934, 48.825992552094], [2.371843266231057, 48.82612016078427], [2.371783069769864, 48.826248219406025], [2.371723161760311, 48.82637582801419], [2.371662963346941, 48.82650388653911], [2.371603054749635, 48.82663149505806], [2.371542855745946, 48.8267595534934], [2.371482946560877, 48.826887161923096], [2.371422748329056, 48.82701522027597], [2.37136283855622, 48.82714282861641], [2.371362259490307, 48.827144874344555], [2.371347152329614, 48.82727451241154], [2.371333924331046, 48.8274015980269], [2.371320696278731, 48.82752868272711], [2.371305588903471, 48.82765832074452], [2.371299582513622, 48.8276764412086], [2.371302299624631, 48.82767873540232], [2.371402933409189, 48.82768964675021], [2.371663472918262, 48.82771546085187], [2.371842850666582, 48.82773491045352], [2.371849305472882, 48.82773676378787], [2.37199777051002, 48.82781419612138], [2.372160505366244, 48.82789961225894], [2.372308969978148, 48.8279770432884], [2.3724717058524503, 48.82806245899009], [2.372620172752418, 48.82813988962918], [2.372782909645008, 48.82822530489501], [2.372931376097884, 48.828302736028675], [2.373058442716952, 48.82836942780969], [2.373061641202734, 48.828379050769165], [2.373082392469513, 48.82838564941823], [2.37311806379174, 48.82840437156045], [2.373168435432681, 48.82842551270605], [2.373186801372514, 48.828423174366485], [2.373227938576361, 48.82838541308588], [2.373270418024573, 48.828343300467495], [2.373291428292508, 48.82834195268733], [2.373440634941967, 48.82844130474757], [2.37358301861494, 48.82853932217949], [2.373732227747089, 48.82863867386553], [2.373874612507225, 48.828736690933084], [2.3740238213979072, 48.82883604223073], [2.374166207245314, 48.82893405893384], [2.374315418618712, 48.82903340985733], [2.3744578055534022, 48.82913142619607], [2.374459733502167, 48.829132526318084], [2.374502250633643, 48.82915252227034], [2.374511043894019, 48.829151484517155], [2.374534312708021, 48.82913290288662], [2.3745701075751953, 48.829013673359505], [2.374613443547308, 48.82887774234382], [2.374649236696281, 48.82875851275877], [2.374692572249977, 48.828622581683426], [2.37472836640483, 48.82850335205472], [2.374771701540111, 48.82836742091979], [2.374807493976788, 48.82824819123315], [2.374850828693662, 48.82811226003865], [2.374886622136318, 48.82799303030827], [2.374929956434789, 48.8278570990542], [2.374965748159088, 48.82773786926591], [2.375009082039166, 48.827601937952245], [2.375044874769543, 48.82748270812028], [2.375057408421863, 48.8274444972208], [2.375051192489528, 48.8274414599348], [2.374866001744394, 48.827393652719465], [2.3746984081856812, 48.82734512868815], [2.374530816311828, 48.82729660352762], [2.374345626558422, 48.827248795500346], [2.374336918784944, 48.8272485251013], [2.374153157957468, 48.82728323720588], [2.373967936086623, 48.82731765537961], [2.373784174769916, 48.827352366915086], [2.373598952409882, 48.827386784515255], [2.373415190603747, 48.82742149548164], [2.373229967754532, 48.82745591250818], [2.373046204097074, 48.82749062289833], [2.372860980758682, 48.82752503935131], [2.372677217974014, 48.827559749179485], [2.372491994146452, 48.82759416505886], [2.372308230872374, 48.827628874317945], [2.37212300655565, 48.8276632896237], [2.372106857208571, 48.827658266381064], [2.372062557306297, 48.8275920531077], [2.37204939598892, 48.82756231279583], [2.372057715977705, 48.82755011062254], [2.372253457555186, 48.82750888121338], [2.37243737229868, 48.82747004381121], [2.372633113275409, 48.82742881377772], [2.37281702745363, 48.82738997578892], [2.373012767829499, 48.827348745131104], [2.373196682804542, 48.82730990656284], [2.373380596154276, 48.827271066803924], [2.373576335627201, 48.82722983611869], [2.373760248411641, 48.82719099577317], [2.3739559872943943, 48.82714976356426], [2.374139899502837, 48.8271109235315], [2.374335637784707, 48.827069690698266], [2.374519549427852, 48.82703085007889], [2.374715287108834, 48.82698961662136], [2.374899198186572, 48.826950775415355], [2.375094935266761, 48.82690954133354], [2.375278845789964, 48.82687069864163], [2.375474582258476, 48.82682946483482], [2.3756584922163553, 48.82679062155632], [2.375854228094633, 48.82674938622588], [2.376038137476518, 48.82671054326011], [2.376233872753881, 48.82666930730535], [2.376417781570438, 48.82663046375301], [2.376613516246882, 48.82658922717397], [2.376797424498003, 48.82655038303502], [2.376993158573622, 48.82650914583168], [2.377177066259402, 48.82647030110617], [2.377372799734089, 48.826429063278525], [2.377556706865261, 48.82639021706709], [2.377578290021258, 48.82635061937718], [2.377552209609245, 48.8263343830553], [2.377450277617688, 48.82631241680634], [2.37725616098764, 48.82626703015203], [2.377072865987308, 48.826227529286385], [2.376878751363942, 48.82618214202312], [2.376695456947994, 48.82614264057602], [2.376501341607274, 48.82609725268966], [2.3763180491269242, 48.826057751567575], [2.376123934441583, 48.82601236216585], [2.375940641183656, 48.82597286045521], [2.375746528494144, 48.8259274713439], [2.375563235831379, 48.825887968152536], [2.37537994344627, 48.825848464678856], [2.375185830346079, 48.825803074645314], [2.375002539896659, 48.82576357149663], [2.374808427451889, 48.82571817994775], [2.374625136224919, 48.82567867621054], [2.374431025775968, 48.8256332849521], [2.374423387113338, 48.82562078956203], [2.374482637969515, 48.825542447431104], [2.3745888642923862, 48.825389695690085], [2.374648115999339, 48.825311353468166], [2.37464370585228, 48.825300307674645], [2.3745929616564663, 48.82527613423896], [2.3745711535373992, 48.82526654527752], [2.374552543332324, 48.825268224210575], [2.374459394286175, 48.825345183020815], [2.374368937541341, 48.825421033420625], [2.374275786578217, 48.82549799296956], [2.374185329301246, 48.82557384322016], [2.374171774243865, 48.825577072987386], [2.373995876289979, 48.825552194815344], [2.373781209562204, 48.8255229267899], [2.373605311977261, 48.82549804804218], [2.373390645691682, 48.82546877931423], [2.373214748475789, 48.825443899990894], [2.373000082632414, 48.825414630560445], [2.372824185785681, 48.82538975066145], [2.372609520384518, 48.825360480528545], [2.372433623906751, 48.82533560005384], [2.372411682795473, 48.8253269057763], [2.3723953586582702, 48.82533827094269], [2.372371528844857, 48.825366757679284], [2.37226606244334, 48.82549443422115], [2.372173384856144, 48.825605223694524], [2.372080706885905, 48.82571601218583], [2.371975237703743, 48.825843688424364], [2.371962130797866, 48.82584983966327]]], "type": "Polygon"}, "properties": {"lassalle_jean": 23.0, "pecresse_valerie": 51, "zemmour_eric": 88.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-26", "circ_bv": "09", "num_bureau": 26, "roussel_fabien": 25.0, "nb_emargement": 1387.0, "nb_procuration": 87.0, "nb_vote_blanc": 15.0, "jadot_yannick": 99.0, "le_pen_marine": 92.0, "nb_exprime": 1364.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1741.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1387, "quartier_bv": "50", "geo_point_2d": [48.8268877612146, 2.373744342285104], "melenchon_jean_luc": 546.0, "poutou_philippe": 9.0, "macron_emmanuel": 370.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.340427435702178, 48.88039119213905], [2.340408956163783, 48.88041320492403], [2.340350642202997, 48.88052904685893], [2.3402871097561, 48.88065941030259], [2.340228796612099, 48.88077525215976], [2.340165263559851, 48.880905615509604], [2.34010694851704, 48.88102145637474], [2.340043414847929, 48.881151820530064], [2.339985100621906, 48.88126766131742], [2.339921566358925, 48.881398024479644], [2.339863250211272, 48.88151386607353], [2.33979971534291, 48.88164422914192], [2.339741400011939, 48.88176007065804], [2.3396778645381913, 48.88189043363265], [2.33961954729706, 48.882006275056], [2.339627516030271, 48.8820312331959], [2.339678621867769, 48.882039981384885], [2.339754985151782, 48.88202930298436], [2.3398178379111663, 48.88202066526357], [2.339824436930396, 48.88202083565249], [2.340005145067045, 48.882055588388795], [2.340209833619652, 48.882097128960545], [2.340390542278217, 48.88213188111275], [2.34059523007457, 48.88217342101521], [2.340775939255145, 48.8822081725833], [2.340980629022197, 48.88224971183152], [2.341161338713195, 48.88228446371477], [2.341366029098988, 48.882326001401914], [2.341546737948458, 48.88236075269356], [2.34175142893003, 48.882402290618224], [2.341887883568617, 48.88242853051841], [2.341910006096793, 48.88243376212146], [2.341914432131729, 48.88243378105413], [2.341958688248107, 48.882442290959816], [2.341958859641796, 48.88244232427779], [2.342142512702073, 48.88247798747745], [2.342315784299409, 48.882512937752196], [2.34249943785313, 48.882548600402124], [2.3426727085727572, 48.88258354925133], [2.342845980877239, 48.882618498755406], [2.343029635166201, 48.88265416058857], [2.3432029065816122, 48.88268910956638], [2.343386562727548, 48.88272477085728], [2.343559834628761, 48.88275971841701], [2.343715280227841, 48.88278990138131], [2.343741171785771, 48.882795268417055], [2.343762546107252, 48.88275071672148], [2.343823619939628, 48.8826136966822], [2.343884415622972, 48.88247729830848], [2.343945210987853, 48.88234089988699], [2.344006282495586, 48.88220387969602], [2.344067077222096, 48.88206748117876], [2.344128148088556, 48.88193046089158], [2.344188942176705, 48.88179406227854], [2.344250013765317, 48.88165704190265], [2.34431080721511, 48.881520643193845], [2.34437187679905, 48.88138362271431], [2.3443716878432213, 48.881378160937174], [2.344311004307356, 48.881261853470455], [2.344250404903645, 48.88114570829979], [2.344189721909498, 48.88102940074704], [2.344129123058077, 48.8809132545912], [2.344068440594317, 48.88079694785167], [2.344007842283852, 48.88068080160992], [2.343947160373123, 48.88056449388511], [2.343886562592281, 48.88044834845674], [2.343825881223249, 48.88033204064589], [2.343765283983349, 48.88021589513161], [2.343754590411022, 48.88018434637768], [2.343731755727726, 48.8801863481276], [2.34354001443578, 48.88019859532804], [2.343335782766853, 48.88021096347108], [2.343144041291167, 48.88022321003706], [2.3429398094316802, 48.88023557750434], [2.342730386629645, 48.88024911763347], [2.342526154581686, 48.88026148349556], [2.342316731568039, 48.88027502290077], [2.342112499308817, 48.880287388956184], [2.341903076083463, 48.8803009276375], [2.34169884362454, 48.880313292986955], [2.3414894201987613, 48.8803268300451], [2.34128518754005, 48.8803391946886], [2.341075763891219, 48.88035273192213], [2.340871531032728, 48.880365095859695], [2.340667296713783, 48.8803774594412], [2.340457874125353, 48.88039099470162], [2.340427435702178, 48.88039119213905]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 67, "zemmour_eric": 92.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "9-24", "circ_bv": "18", "num_bureau": 24, "roussel_fabien": 26.0, "nb_emargement": 1210.0, "nb_procuration": 87.0, "nb_vote_blanc": 11.0, "jadot_yannick": 113.0, "le_pen_marine": 46.0, "nb_exprime": 1195.0, "nb_vote_nul": 4.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1475.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1210, "quartier_bv": "36", "geo_point_2d": [48.881401346244694, 2.3421958634899673], "melenchon_jean_luc": 259.0, "poutou_philippe": 1.0, "macron_emmanuel": 542.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.326048312823655, 48.88652289205446], [2.326104227136295, 48.88653908083084], [2.32616231117436, 48.88654694321055], [2.326251628553694, 48.886558700044304], [2.326267119915618, 48.88655294067464], [2.326325893777965, 48.886445821311725], [2.326387935827863, 48.88633335579756], [2.3264467078302102, 48.88622623634627], [2.326508749369192, 48.886113769847775], [2.326567522238815, 48.886006650323424], [2.3266295618799973, 48.88589418463148], [2.326652047911447, 48.88589091881846], [2.326806062127671, 48.88599309525265], [2.326957264963411, 48.88609347949666], [2.327111279014082, 48.88619565551174], [2.327262483026259, 48.88629603935182], [2.327416498274911, 48.88639821495553], [2.327567703463639, 48.88649859839161], [2.327721721273925, 48.886600773591525], [2.327872927639213, 48.886701156623694], [2.327893118638123, 48.88670054420566], [2.328014629921499, 48.88660346736608], [2.328132747640938, 48.88650703865692], [2.328254259389689, 48.88640996156475], [2.328372374862821, 48.88631353259458], [2.328393086491543, 48.88631314334898], [2.328525178917677, 48.88640923378743], [2.328654225139471, 48.88650332576708], [2.328786318541401, 48.88659941500156], [2.328915365694866, 48.88669350758276], [2.329047460061106, 48.88678959651247], [2.329176508169231, 48.88688368789671], [2.329308603488304, 48.88697977742102], [2.329437652539605, 48.887073868507464], [2.329569748834587, 48.887169956827734], [2.329698798817494, 48.8872640485157], [2.329830896076707, 48.88736013653127], [2.329959947002912, 48.88745422792152], [2.32999969841667, 48.887473329059574], [2.330027138027797, 48.88745490607681], [2.330124611431734, 48.887347101281826], [2.33022226112675, 48.88723934235172], [2.330319733723116, 48.88713153737674], [2.330417382621672, 48.88702377736716], [2.33051485441068, 48.88691597221219], [2.330612502489556, 48.886808212921565], [2.330709973471114, 48.88670040758662], [2.330807620753642, 48.88659264721646], [2.330905090927757, 48.88648484170154], [2.331002737390631, 48.886377082050394], [2.3311002067573128, 48.88626927635548], [2.331197852412199, 48.88616151652406], [2.331295320971458, 48.88605371064918], [2.331392965830014, 48.88594594973825], [2.3314904335818563, 48.8858381436834], [2.331588077620792, 48.88573038349149], [2.331685544565228, 48.885622577256676], [2.331783187807743, 48.88551481598521], [2.331880653944782, 48.885407009570436], [2.331978296367905, 48.88529924901802], [2.332075761697554, 48.88519144242326], [2.332173403324166, 48.88508368079137], [2.332270867846435, 48.88497587401662], [2.332368508653579, 48.88486811310373], [2.332370041714617, 48.884865643998054], [2.332414438589106, 48.88474589034253], [2.332458768592713, 48.88461974204781], [2.332503165041994, 48.88449998923185], [2.332547493257755, 48.884373840868484], [2.332591889293264, 48.88425408799285], [2.332636218459885, 48.88412793867675], [2.332680614081827, 48.8840081857414], [2.332724942812677, 48.88388203726356], [2.332753359330356, 48.883871969343026], [2.332726375233381, 48.88382388552171], [2.332698043280204, 48.88377340285876], [2.332695387903462, 48.88377321808537], [2.332646848294405, 48.88378763451059], [2.332597385961687, 48.88379924615541], [2.332591836155218, 48.883798802425744], [2.33255428527524, 48.883810092839916], [2.332424034619093, 48.88384067056707], [2.332232598581505, 48.88388653908163], [2.332052884968258, 48.883928727875265], [2.331861448291595, 48.88397459489343], [2.331681734073686, 48.88401678312658], [2.331490295371403, 48.88406265043933], [2.331310580548934, 48.88410483811201], [2.331119142571179, 48.88415070393599], [2.330939427144158, 48.884192891048194], [2.330747988515814, 48.884238756275025], [2.330568272472687, 48.88428094372601], [2.330376831830173, 48.88432680834815], [2.33019711519406, 48.884368994339376], [2.330005675264553, 48.884414858372], [2.32982595801233, 48.88445704470202], [2.329634516068658, 48.884502908129875], [2.3294547995870643, 48.88454509300779], [2.329440677979947, 48.884543040787136], [2.329308386353795, 48.88445746593618], [2.32918160480902, 48.884374184518364], [2.329049314037557, 48.88428860936801], [2.328922533306706, 48.884205328562295], [2.328790243401516, 48.8841197522133], [2.328663463495965, 48.88403647112049], [2.328531174433864, 48.88395089537136], [2.328404396728978, 48.88386761309986], [2.328272107157977, 48.88378203704371], [2.328145330266779, 48.88369875538433], [2.328141332364619, 48.8836969351863], [2.328012538033067, 48.88365209297344], [2.327800954258062, 48.88358888913319], [2.327799178962469, 48.883588453782046], [2.327610187506627, 48.883553628941705], [2.32748041071501, 48.883528432822985], [2.327435317309578, 48.883521403054964], [2.32741082020501, 48.883558831420075], [2.327392281114434, 48.88358715694122], [2.327399940017413, 48.88359660517717], [2.32734406460046, 48.8837189762738], [2.3272833661813372, 48.88384817133945], [2.327227490232049, 48.88397054145442], [2.327166791230498, 48.88409973643141], [2.327110914725732, 48.88422210736329], [2.327050213778159, 48.88435130224396], [2.326994336741246, 48.88447367219414], [2.32693363657481, 48.88460286699382], [2.326877758993922, 48.884725236861605], [2.326817058245033, 48.88485443157263], [2.32676118010864, 48.88497680225728], [2.326700478777289, 48.885105996879645], [2.326644600108633, 48.88522836658262], [2.326583896831201, 48.88535756110863], [2.326528017607119, 48.88547993162845], [2.326467315110816, 48.885609126073476], [2.326411435354358, 48.88573149561161], [2.326350732275571, 48.88586068996795], [2.326294851963568, 48.885983060322964], [2.326234148313921, 48.88611225369136], [2.326178267457998, 48.88623462396393], [2.326117561850678, 48.88636381813524], [2.326061681826102, 48.886486187433775], [2.326047218070718, 48.88651696740622], [2.326048312823655, 48.88652289205446]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 65, "zemmour_eric": 71.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "18-30", "circ_bv": "18", "num_bureau": 30, "roussel_fabien": 26.0, "nb_emargement": 1381.0, "nb_procuration": 88.0, "nb_vote_blanc": 17.0, "jadot_yannick": 137.0, "le_pen_marine": 65.0, "nb_exprime": 1360.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1752.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1382, "quartier_bv": "69", "geo_point_2d": [48.88533568556706, 2.3293555253119016], "melenchon_jean_luc": 414.0, "poutou_philippe": 9.0, "macron_emmanuel": 521.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.395357761111863, 48.87526701909679], [2.395372310323058, 48.87520851098903], [2.395446906497292, 48.875070510196494], [2.395522879851696, 48.87493211069761], [2.395597475231138, 48.874794109776666], [2.395673449145533, 48.87465571015446], [2.395748042366855, 48.87451770909827], [2.395824015478109, 48.87437930934582], [2.395824811805619, 48.87437671429331], [2.395834019327629, 48.87425983490631], [2.395846669689448, 48.87413187781175], [2.395855877119129, 48.87401499839715], [2.395868527367686, 48.873887041271864], [2.395877734715571, 48.873770160930405], [2.3958903848509703, 48.87364220377441], [2.395890609386631, 48.87364106455289], [2.395925515257519, 48.87352731584831], [2.3959672147144673, 48.8733865197722], [2.396002121610786, 48.87327277102592], [2.396043820656879, 48.87313197489066], [2.396078725852023, 48.87301822608895], [2.3961204258608912, 48.87287742900218], [2.396155330718166, 48.87276368015189], [2.396155188719769, 48.87275969988232], [2.396147509019601, 48.87273958710492], [2.39614572298008, 48.87273723982626], [2.396086421996398, 48.8727389569636], [2.395893340452143, 48.87274673049876], [2.395696188013452, 48.87275461087659], [2.395503104989746, 48.87276238377531], [2.395305952443212, 48.87277026261101], [2.395112870656105, 48.87277803578636], [2.394915716628012, 48.87278591397228], [2.394722634724656, 48.87279368651809], [2.394525481941597, 48.872801564068105], [2.3943323985587073, 48.87280933597744], [2.394135245657401, 48.872817212884634], [2.394116980208429, 48.872810002202804], [2.394095345790296, 48.87282296182014], [2.394094838116176, 48.87282359148232], [2.3940105100959013, 48.872939080679345], [2.393926464839535, 48.873055662130646], [2.393842136070222, 48.8731711511848], [2.393758091425849, 48.873287732500295], [2.393673761907492, 48.87340322141153], [2.3935897151484973, 48.87351980257738], [2.393505384881083, 48.873635291345714], [2.3934213373708593, 48.873751872368835], [2.393337007717597, 48.87386736100122], [2.393252959445459, 48.87398394278086], [2.393168627690383, 48.874099430364154], [2.393084578666993, 48.87421601200107], [2.393000246162735, 48.87433149944141], [2.392916197751219, 48.87444808094254], [2.392912780555876, 48.874449647337556], [2.392910612371951, 48.8744688640805], [2.392831313794188, 48.874583675429356], [2.392751437944211, 48.874699322864615], [2.392672138675305, 48.874814133184756], [2.392592260755138, 48.87492978048272], [2.392512960774004, 48.87504459157273], [2.392433083510328, 48.875160238747235], [2.3923537828273442, 48.87527504970784], [2.392273903493549, 48.87539069674503], [2.392278871731363, 48.87542587326801], [2.392288921972566, 48.87542770137035], [2.392336378841783, 48.87542428110066], [2.3923899140188762, 48.87542096091315], [2.392406264069194, 48.87542505672191], [2.392433171017569, 48.87541828731714], [2.3925676645034413, 48.87540994685392], [2.392754266956471, 48.87539957099439], [2.392942296813761, 48.875387909742535], [2.393128899113206, 48.87537753329889], [2.3933169288070593, 48.87536587145835], [2.393503530942438, 48.87535549532979], [2.393691560483318, 48.87534383200132], [2.393878162465103, 48.87533345528854], [2.394066191842524, 48.875321791371455], [2.394252793670704, 48.875311414074474], [2.394440822884657, 48.87529974956866], [2.394627423195868, 48.875289371680665], [2.394815452235896, 48.875277707485466], [2.395002053767295, 48.87526732812093], [2.395190082643845, 48.875255663337015], [2.395306076001185, 48.87526427137008], [2.395357761111863, 48.87526701909679]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 38, "zemmour_eric": 37.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-14", "circ_bv": "15", "num_bureau": 14, "roussel_fabien": 26.0, "nb_emargement": 1269.0, "nb_procuration": 74.0, "nb_vote_blanc": 15.0, "jadot_yannick": 136.0, "le_pen_marine": 48.0, "nb_exprime": 1249.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 12, "nb_inscrit": 1556.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1269, "quartier_bv": "77", "geo_point_2d": [48.87414693382351, 2.394444974914093], "melenchon_jean_luc": 593.0, "poutou_philippe": 15.0, "macron_emmanuel": 283.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291919703001268, 48.850969054619064], [2.291931034073408, 48.85098243402686], [2.292022039702638, 48.85103531989897], [2.292115583175153, 48.85108939977611], [2.292118038664876, 48.85110105653828], [2.292031070844425, 48.851189598544124], [2.2919237640743733, 48.85129821437783], [2.29183679558256, 48.851386757126036], [2.291729488001573, 48.851495372766266], [2.291642517500214, 48.85158391445024], [2.291601155371271, 48.851625781253404], [2.291588479585692, 48.851641440526855], [2.291610820167022, 48.85165166362888], [2.291742111743706, 48.8517218679501], [2.291871607958146, 48.85179043275246], [2.292001104525582, 48.85185899651113], [2.292132397150557, 48.85192920039102], [2.292261894405978, 48.85199776385893], [2.29239318773183, 48.852067967443894], [2.292396008066778, 48.85207002657129], [2.29251828557339, 48.85219320928896], [2.29264661622469, 48.85232229687607], [2.292768894927902, 48.85244547841041], [2.292897228183948, 48.852574565707506], [2.292918109316167, 48.85257608851099], [2.293062700866386, 48.85248355422012], [2.293202775638201, 48.85239422357105], [2.2933473648277323, 48.85230168801372], [2.2934874386226722, 48.85221235701679], [2.293632028164803, 48.85211982110841], [2.293772100982873, 48.85203048976362], [2.293912173308501, 48.85194115914697], [2.29405676134389, 48.85184862270275], [2.294060881198914, 48.85184167696478], [2.294053613506885, 48.8517536424297], [2.294046726323876, 48.85166367740567], [2.294052523399663, 48.85165585479296], [2.294226257644933, 48.851575629663046], [2.294401759065477, 48.85149438673013], [2.294575492234753, 48.85141416108145], [2.2947509939297213, 48.85133291763252], [2.2949247246724562, 48.8512526905578], [2.29510022527913, 48.851171446584814], [2.295112981362483, 48.851154902441316], [2.295109854420044, 48.85115031886227], [2.294907232653566, 48.851098933424744], [2.294726214489963, 48.85105276986693], [2.294721150967669, 48.85105050870421], [2.294600407414566, 48.850964934072216], [2.294477920792871, 48.850878084529015], [2.294357178038713, 48.850792509638275], [2.294234692239857, 48.85070565893329], [2.294113950272456, 48.85062008468321], [2.293991465284157, 48.850533233715794], [2.293870724115684, 48.85044765920693], [2.29374823857545, 48.85036080796905], [2.293736811811899, 48.850345314662405], [2.293709800165065, 48.85035125108681], [2.2936486714799322, 48.850371457727356], [2.293449947630123, 48.85043716181593], [2.29327118778072, 48.85049625087567], [2.293072464341763, 48.850561954337934], [2.292893703624043, 48.850621043726356], [2.292694979233247, 48.85068674655432], [2.292516216296704, 48.850745835364094], [2.292484078933557, 48.85075397431796], [2.292482696468801, 48.85075883618677], [2.2923404218440933, 48.850810890740945], [2.292209372329366, 48.85085852371457], [2.292067097159457, 48.850910577939125], [2.291936047144297, 48.85095821060915], [2.291919703001268, 48.850969054619064]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 133, "zemmour_eric": 270.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-17", "circ_bv": "12", "num_bureau": 17, "roussel_fabien": 9.0, "nb_emargement": 1249.0, "nb_procuration": 95.0, "nb_vote_blanc": 17.0, "jadot_yannick": 67.0, "le_pen_marine": 93.0, "nb_exprime": 1229.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1543.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1249, "quartier_bv": "59", "geo_point_2d": [48.8513789752234, 2.2932184151230017], "melenchon_jean_luc": 194.0, "poutou_philippe": 1.0, "macron_emmanuel": 408.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.315366195202698, 48.8862419497477], [2.315377936833792, 48.88624329303599], [2.315394716486717, 48.8862413852709], [2.31551077218164, 48.886151774888944], [2.315622216356877, 48.88606572456144], [2.315738271268819, 48.885976113944665], [2.315849716055811, 48.88589006339942], [2.315961159110965, 48.885804012735925], [2.316077212856378, 48.885714401769285], [2.31618865515957, 48.88562835088028], [2.316304708122018, 48.88553873967882], [2.316303038822222, 48.88552597493425], [2.3161613694539582, 48.885448561755275], [2.316021509408224, 48.88537213720913], [2.315879840876996, 48.885294723686215], [2.315739981657607, 48.88521829880059], [2.315598313963511, 48.8851408849337], [2.315458455582284, 48.885064458809225], [2.3154535336493263, 48.885057124499234], [2.315459382113132, 48.88497260727977], [2.31546585009327, 48.884879136252195], [2.315470413346151, 48.884869043961004], [2.315458121525576, 48.88486102898816], [2.315310341827987, 48.88477511349311], [2.31516177630948, 48.8846887427461], [2.31501399622624, 48.884602826864025], [2.314865433066078, 48.884516454844274], [2.314717653948844, 48.88443053948224], [2.314569091771702, 48.88434416708129], [2.314421313632293, 48.884258251340036], [2.314272752438166, 48.884171878557844], [2.3141249752765782, 48.88408596243736], [2.313976413701988, 48.883999589266146], [2.313828638881686, 48.88391367277427], [2.313680078290105, 48.883827299221785], [2.313645473463882, 48.883791566414054], [2.31362323560607, 48.88380011389343], [2.313605693267694, 48.8838077970494], [2.313566949907999, 48.88382657692892], [2.313561952845777, 48.8838310746207], [2.313597340815183, 48.88386387741872], [2.313623969369974, 48.883930152613694], [2.313646147117938, 48.88398535038544], [2.313643353574871, 48.883993479626255], [2.313506318061269, 48.884099757711546], [2.313368540770663, 48.88420660964963], [2.313231504147125, 48.88431288650051], [2.313093725728859, 48.8844197381017], [2.3129566879717602, 48.884526015516684], [2.312818908437589, 48.88463286588163], [2.312681869558777, 48.88473914296153], [2.312544090248452, 48.88484599389658], [2.312407048896193, 48.88495226973422], [2.312269268458183, 48.885059120332365], [2.3122702185608253, 48.885071436743324], [2.312395817598213, 48.88515086853692], [2.312518102313571, 48.88522820280474], [2.312643703470679, 48.885307634334836], [2.312765988922393, 48.88538496833847], [2.312891590835725, 48.885464399597154], [2.313013877023597, 48.8855417333366], [2.31301531075716, 48.885542523081945], [2.313171144695554, 48.88561703098022], [2.313329403456026, 48.885692697423295], [2.313485238293226, 48.8857672049026], [2.313643496602866, 48.88584287091235], [2.313799332338977, 48.885917377972646], [2.313957592925031, 48.885993043564724], [2.313962557926791, 48.88600310315012], [2.31388254213671, 48.88616551526741], [2.313802514606718, 48.88632795242402], [2.313807521621832, 48.88633803203877], [2.313951082897348, 48.88640612103728], [2.31408109743879, 48.88646778567718], [2.314093000468196, 48.886469094042496], [2.314246348932028, 48.886438570495926], [2.314399075102186, 48.88640816999546], [2.314552423219031, 48.886377645155974], [2.314705149031812, 48.886347244263426], [2.314715190782464, 48.88634781165762], [2.314799510033892, 48.88637563387204], [2.314888877735214, 48.88640512349324], [2.31490566052522, 48.8864026717196], [2.315056532537226, 48.886277332736995], [2.315209902175134, 48.88614991689513], [2.3152300949382623, 48.886149063803316], [2.315302656335507, 48.88619564950715], [2.315357761065535, 48.886231026815516], [2.315366195202698, 48.8862419497477]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 106, "zemmour_eric": 115.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "17-12", "circ_bv": "03", "num_bureau": 12, "roussel_fabien": 16.0, "nb_emargement": 1232.0, "nb_procuration": 84.0, "nb_vote_blanc": 15.0, "jadot_yannick": 78.0, "le_pen_marine": 57.0, "nb_exprime": 1213.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1475.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1232, "quartier_bv": "67", "geo_point_2d": [48.88524400921598, 2.3142706707849294], "melenchon_jean_luc": 181.0, "poutou_philippe": 1.0, "macron_emmanuel": 617.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346741570126894, 48.891206622365154], [2.346751010916994, 48.891205511042884], [2.346950256283987, 48.89126187114442], [2.347145939979694, 48.8913171233097], [2.347345186201263, 48.891373482748385], [2.347540872099282, 48.89142873427011], [2.347740117811651, 48.89148509303852], [2.347935804548306, 48.89154034390923], [2.348135052478916, 48.89159670202223], [2.348330738690326, 48.891651952234504], [2.348339441187612, 48.89165240608796], [2.348527260258178, 48.891621179233184], [2.348716093658743, 48.891589527724676], [2.3489039122766, 48.89155830027735], [2.349092745220259, 48.891526648173084], [2.349280563385402, 48.89149542013324], [2.349469395871946, 48.89146376743319], [2.349507579101044, 48.891463356127076], [2.349516537673937, 48.89143970853004], [2.349517948127894, 48.89130879813366], [2.349519042782036, 48.891169978256876], [2.3495204532336222, 48.891039066929025], [2.34952154922794, 48.890900247924755], [2.349522958302161, 48.89076933655726], [2.349524054295358, 48.890630516619574], [2.349525464708496, 48.89049960612656], [2.349526559325587, 48.890360786147326], [2.349527969725121, 48.890229875622076], [2.349529065693601, 48.890091055616146], [2.349530474715793, 48.88996014505125], [2.349531570671918, 48.889821325011184], [2.349532981055475, 48.88969041352226], [2.349534075624282, 48.88955159433986], [2.349535035398739, 48.889462538538176], [2.349519317696331, 48.88944900195543], [2.349490092152242, 48.889447105691666], [2.349313251240161, 48.889520944375704], [2.349145402360496, 48.88958891771456], [2.348968560478001, 48.88966275587999], [2.348800712054967, 48.8897307287343], [2.348623867838326, 48.88980456637375], [2.348456018508196, 48.88987253873615], [2.348449496643266, 48.889873859430146], [2.348283005734836, 48.88987881068865], [2.34813205683172, 48.889877323526484], [2.348091375094615, 48.88987662990516], [2.348087685653655, 48.88990639544392], [2.348101316178479, 48.890045118488636], [2.348113280089998, 48.89019180225167], [2.3481075155594953, 48.89020190895053], [2.348126294198524, 48.890217243035494], [2.34825977592481, 48.890313341152506], [2.348427378075774, 48.89042851417862], [2.348419995327776, 48.890443586245496], [2.3482328679750353, 48.89046619219119], [2.348050018509211, 48.890488491084284], [2.347862890823306, 48.890511097350156], [2.347680041041246, 48.89053339567738], [2.347492911680854, 48.89055600045743], [2.347310061582771, 48.8905782982188], [2.347122933264038, 48.89060090242723], [2.34694008283856, 48.890623200521986], [2.346752954197842, 48.890645804151305], [2.34657010346753, 48.89066810078092], [2.346382973141186, 48.89069070382371], [2.346200122094671, 48.890712999887484], [2.346012992810113, 48.89073560235861], [2.345830141436306, 48.89075789875577], [2.345819480001686, 48.89076433542857], [2.345817885782997, 48.89076953830123], [2.345807764205647, 48.890793576791935], [2.3458135265951, 48.89080354580233], [2.345965618959057, 48.89086806313573], [2.346151599620422, 48.89094435310404], [2.346151991673981, 48.89094451982104], [2.346304084869108, 48.89100903671627], [2.346433255154188, 48.89106616176657], [2.346585349053141, 48.891130678297394], [2.346714519948565, 48.891187803037965], [2.346741570126894, 48.891206622365154]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 18, "zemmour_eric": 46.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-7", "circ_bv": "18", "num_bureau": 7, "roussel_fabien": 25.0, "nb_emargement": 1128.0, "nb_procuration": 79.0, "nb_vote_blanc": 18.0, "jadot_yannick": 134.0, "le_pen_marine": 38.0, "nb_exprime": 1109.0, "nb_vote_nul": 1.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1440.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1128, "quartier_bv": "70", "geo_point_2d": [48.890749857822385, 2.3482967148713207], "melenchon_jean_luc": 440.0, "poutou_philippe": 14.0, "macron_emmanuel": 342.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339233678113393, 48.87678668404288], [2.339186712702442, 48.876787943776606], [2.339020874937968, 48.87679932843829], [2.3388460739028822, 48.876809837776754], [2.338680235994239, 48.87682122196638], [2.338505436180334, 48.8768317308148], [2.338339598116104, 48.87684311543156], [2.338164796796602, 48.876853623774814], [2.338160753376643, 48.87685346831842], [2.337978624104684, 48.876829700850536], [2.33781012318109, 48.876806332252514], [2.337641623771987, 48.876782963424404], [2.337459493620191, 48.87675919515767], [2.337290993157521, 48.87673582582746], [2.337108864682513, 48.8767120579331], [2.3371046038838, 48.876711949801354], [2.337041657090346, 48.87671376681818], [2.336969015600657, 48.87671947819307], [2.336942419280763, 48.87672777744878], [2.336950489640751, 48.87676118932213], [2.336989659785881, 48.87689084412782], [2.337028241547004, 48.87702335643365], [2.337067412082856, 48.87715301118306], [2.337105995610754, 48.877285522540596], [2.337145166537337, 48.87741517723376], [2.3371837490825262, 48.87754768942643], [2.337222920399843, 48.877677344063315], [2.337261503348515, 48.877809855300136], [2.33725722983704, 48.87781823952759], [2.337113952978192, 48.877903198766674], [2.336970008716613, 48.87798881514529], [2.336826730920087, 48.878073774027484], [2.336682785726369, 48.87815938914823], [2.336539505617078, 48.8782443485652], [2.336395559479766, 48.878329963327346], [2.336252279807564, 48.87841492149568], [2.336108332726657, 48.87850053589921], [2.335965052105196, 48.878585494609936], [2.335821104080686, 48.878671108654835], [2.33567782253299, 48.878756066109375], [2.335533873553402, 48.87884168069491], [2.335390591067799, 48.878926637792546], [2.335246641156067, 48.879012251120216], [2.335103357721175, 48.87909720876018], [2.334959406865825, 48.879182821729216], [2.334816122504595, 48.879267778113004], [2.334672170705624, 48.87935339072338], [2.334668894797053, 48.879363799399485], [2.334675251320684, 48.879372998043394], [2.334689544003255, 48.879397640991826], [2.334691878945731, 48.87939834285804], [2.334759583554612, 48.87951054321594], [2.334826448173648, 48.87961988796626], [2.33489415200857, 48.87973208731861], [2.33496101718309, 48.87984143287105], [2.3350287229594002, 48.87995363213232], [2.335095587337427, 48.880062977580025], [2.335163293691667, 48.88017517674262], [2.335230158648149, 48.88028452119391], [2.335253500553791, 48.880296225225976], [2.33528151831886, 48.88028462290714], [2.335317542628667, 48.88025658564718], [2.335454060612669, 48.88014990643813], [2.335576731442817, 48.88005443145822], [2.335713248354525, 48.87994775283327], [2.3358359182333652, 48.87985227757027], [2.335958586298975, 48.879756802165744], [2.3360951030118082, 48.87965012308412], [2.336110105950265, 48.87964745342248], [2.336188935492515, 48.87966600762683], [2.336278676783882, 48.879680443969384], [2.336293366317489, 48.87967658092985], [2.336403328790405, 48.879564112753144], [2.336510736034712, 48.87945513680867], [2.336620698934121, 48.87934266841725], [2.336728105266805, 48.87923369225583], [2.336838065877254, 48.8791212227353], [2.336945471287078, 48.879012247256235], [2.336952926407524, 48.87900854641642], [2.337110221173878, 48.87897690655498], [2.337266161734073, 48.87894902000679], [2.337423457493797, 48.87891737973964], [2.337579396333258, 48.87888949367365], [2.337588485226118, 48.87888415785098], [2.337667689583259, 48.87875375190752], [2.337738546014286, 48.878631719288734], [2.337809402124698, 48.8785096857152], [2.337888605347877, 48.87837928048053], [2.337959460763248, 48.878257246790234], [2.338038663238136, 48.87812684052713], [2.338039931838104, 48.87812518826882], [2.338141763373155, 48.878020887941915], [2.338240578693024, 48.87791892980369], [2.338342409422981, 48.87781462928661], [2.338441222583891, 48.877712671855434], [2.338543052508768, 48.87760837114816], [2.338641866248985, 48.87750641353981], [2.338642034865765, 48.877506234604255], [2.33874386398488, 48.87740193370669], [2.338832044809972, 48.877306078540784], [2.33892022529907, 48.87721022420081], [2.339022053282345, 48.877105923038606], [2.339110234457576, 48.877010067649586], [2.339212061669016, 48.87690576630678], [2.339264988756017, 48.876898663207264], [2.339268318893229, 48.87688292792086], [2.339256388871439, 48.87683970114404], [2.339249466521938, 48.87681638362478], [2.339233678113393, 48.87678668404288]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 79, "zemmour_eric": 93.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "9-10", "circ_bv": "01", "num_bureau": 10, "roussel_fabien": 13.0, "nb_emargement": 1186.0, "nb_procuration": 102.0, "nb_vote_blanc": 16.0, "jadot_yannick": 91.0, "le_pen_marine": 34.0, "nb_exprime": 1164.0, "nb_vote_nul": 6.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1430.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "33", "geo_point_2d": [48.87835746614296, 2.3369175596718748], "melenchon_jean_luc": 232.0, "poutou_philippe": 9.0, "macron_emmanuel": 576.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.35097398503259, 48.88713549810737], [2.35095717200125, 48.88710494048952], [2.350909910123675, 48.88702150378496], [2.350855868843989, 48.886916992353065], [2.350790422743362, 48.88680145175924], [2.350736381931858, 48.88669694025249], [2.350735369817926, 48.88669553721041], [2.350635802693458, 48.88658360753651], [2.350540064897472, 48.88647564658269], [2.350440499976888, 48.88636371673138], [2.350344762990084, 48.8862557555998], [2.350245197546191, 48.886143825556296], [2.35014946136846, 48.886035864247], [2.350053725599023, 48.885927901951256], [2.349954161396329, 48.8858159725316], [2.349858426435955, 48.88570801005811], [2.349758864437089, 48.88559608046106], [2.34974956021165, 48.88559016451523], [2.349706482315999, 48.88560689457577], [2.349532060345526, 48.88568466078083], [2.34935905442169, 48.88576179680078], [2.349186046621688, 48.885838932557924], [2.349011624449186, 48.88591669889507], [2.348838615620007, 48.88599383413931], [2.348664192409811, 48.88607159995936], [2.348491182551252, 48.88614873469074], [2.348316758303361, 48.88622649999374], [2.3481437474156213, 48.88630363421222], [2.34796932214119, 48.88638139809882], [2.347796311587811, 48.886458531811826], [2.347621883900881, 48.886536296073196], [2.347616025066507, 48.88654502899389], [2.347635113225543, 48.88663241899442], [2.347663826924663, 48.88676386909673], [2.347682916607794, 48.88685125907967], [2.347698193773999, 48.88692119932696], [2.347687835557719, 48.88692637338134], [2.34768549268632, 48.88694868910538], [2.347698929452669, 48.88701019892264], [2.347726984965819, 48.88713619545697], [2.347755699174547, 48.88726764547699], [2.347783753600199, 48.887393641961054], [2.347812468094195, 48.88752509193667], [2.347840524159484, 48.887651088385354], [2.34786923893886, 48.88778253831651], [2.347897295280226, 48.88790853472238], [2.347926010344882, 48.88803998460908], [2.347954065598642, 48.888165980964686], [2.34798278094858, 48.888297430806965], [2.34801083784211, 48.888423427127144], [2.348039553477339, 48.88855487692501], [2.3480676106469582, 48.88868087320234], [2.348096326567481, 48.88881232295577], [2.348124382649485, 48.88893831918283], [2.348132097841051, 48.88894515828483], [2.348306240136554, 48.888998872301975], [2.348471169362683, 48.88905136501025], [2.348636098910095, 48.889103858388076], [2.348810242256149, 48.889157571664484], [2.348975173856747, 48.889210063678384], [2.349149317907865, 48.88926377645649], [2.349314248811727, 48.889316268890084], [2.34948839357904, 48.88936998027059], [2.349524377639228, 48.88936655777138], [2.349533787354559, 48.88934355739651], [2.349535197708369, 48.88921264674982], [2.3495371576974122, 48.88907998628903], [2.34953856803561, 48.888949075610924], [2.349540529358617, 48.88881641602488], [2.349541939681199, 48.88868550531528], [2.349543900996922, 48.88855284479806], [2.349545311303788, 48.88842193405701], [2.349547272589862, 48.88828927440718], [2.349548681517423, 48.88815836362726], [2.349550642796218, 48.888025703046246], [2.349552053071857, 48.88789479224229], [2.3495540143209013, 48.88776213252865], [2.349555424580925, 48.88763122169322], [2.349557385822585, 48.887498561048425], [2.349570586173517, 48.88748966107725], [2.349822292381807, 48.88748436232252], [2.35005378073296, 48.88748346251665], [2.3500606957907673, 48.8874821888348], [2.350201775803856, 48.88742658298108], [2.350344452392195, 48.887371856170404], [2.350485531814666, 48.88731624907748], [2.350628207802372, 48.8872615219232], [2.350769286611686, 48.88720591538966], [2.350911962010172, 48.88715118699248], [2.35097398503259, 48.88713549810737]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 30, "zemmour_eric": 40.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-18", "circ_bv": "18", "num_bureau": 18, "roussel_fabien": 24.0, "nb_emargement": 1516.0, "nb_procuration": 108.0, "nb_vote_blanc": 15.0, "jadot_yannick": 177.0, "le_pen_marine": 50.0, "nb_exprime": 1497.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1881.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1516, "quartier_bv": "70", "geo_point_2d": [48.88733221667778, 2.349072241791637], "melenchon_jean_luc": 720.0, "poutou_philippe": 8.0, "macron_emmanuel": 382.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37983994096226, 48.87470489708], [2.379842412349696, 48.87470825630506], [2.379826253748266, 48.87479398343402], [2.379809774646942, 48.874918644650286], [2.37979788331294, 48.87500575276124], [2.379781402702653, 48.875130414841905], [2.379769511272954, 48.87521752293331], [2.379770278016294, 48.87522137335543], [2.379844523500838, 48.875355742512504], [2.379920601460979, 48.8754939198811], [2.379994847721841, 48.87562828891174], [2.380070926489586, 48.87576646525136], [2.380145173526771, 48.87590083415557], [2.380221253080826, 48.87603901126481], [2.380238494491142, 48.87604444706255], [2.380393961810195, 48.8760092497627], [2.3806171983435043, 48.875958351631446], [2.380772665149648, 48.875923153837064], [2.380995900933176, 48.87587225589493], [2.38115136722641, 48.875837057605956], [2.381155704424799, 48.8758354405438], [2.381288290398384, 48.87576205502995], [2.38142331271866, 48.87568703887452], [2.381555896574059, 48.87561365304742], [2.381690919476782, 48.87553863748639], [2.381705827229468, 48.87553748150073], [2.381761836381607, 48.87555588064697], [2.381844092350385, 48.87558316671451], [2.381850028092152, 48.87558700873922], [2.381858180161875, 48.87560170007044], [2.381872713167296, 48.875604664671435], [2.3819205204656573, 48.875664507620286], [2.381962820192441, 48.875717868498505], [2.381983398487058, 48.87572073389318], [2.3820372049287473, 48.87569245335077], [2.38208389598433, 48.87566793213964], [2.382084299260988, 48.87566772737475], [2.382246042973911, 48.875589174446155], [2.3824132298657412, 48.87550790191572], [2.382574971222898, 48.87542934852432], [2.382742158441149, 48.87534807642905], [2.382903898816666, 48.87526952168258], [2.383071083645185, 48.8751882491091], [2.383232824391657, 48.87510969391386], [2.383400008193906, 48.875028420869256], [2.38356174658463, 48.87494986521122], [2.383728930723962, 48.874868591702466], [2.383890668111654, 48.874790036487894], [2.384057849872117, 48.87470876160172], [2.384219587630664, 48.8746302059384], [2.384386768364866, 48.87454893058108], [2.384548503767796, 48.87447037445496], [2.384715684828346, 48.87438909953284], [2.384877419249521, 48.87431054205165], [2.385044597920489, 48.874229266651355], [2.385206332712614, 48.87415070872142], [2.385330262468885, 48.87409045844777], [2.38533686448769, 48.874090646134405], [2.385353692800937, 48.87407793232413], [2.385396939306304, 48.874056906710685], [2.385443801287435, 48.87403508754463], [2.385477740216804, 48.874003173544416], [2.385471960569157, 48.873997880970826], [2.385378257120701, 48.87395001217685], [2.385292949170311, 48.873911762529175], [2.385275783236315, 48.873902142334735], [2.385270906808333, 48.87390107046743], [2.385235538419359, 48.87388521163835], [2.385104019169173, 48.87382419529508], [2.384983342028904, 48.87377008653539], [2.384979643861596, 48.87376887501754], [2.384835900605238, 48.87373861395142], [2.384587132268618, 48.873695003588075], [2.384443389444265, 48.873664742048604], [2.384441894100127, 48.87366448794138], [2.384249784323571, 48.87363734994089], [2.384046393201054, 48.87361075793348], [2.383854283828834, 48.87358361929698], [2.383650893128586, 48.873557025717005], [2.383458784160613, 48.87352988644444], [2.383255393861467, 48.87350329309049], [2.383179646364025, 48.87349259192114], [2.383173557130018, 48.873491707075004], [2.383143992590217, 48.87348007022246], [2.383111344949194, 48.87348666677218], [2.38299498391781, 48.87347022796641], [2.38292119397157, 48.87345771467082], [2.382905280381395, 48.873454637849164], [2.382874413420565, 48.87349321216342], [2.382816574884592, 48.873547892987574], [2.382751283298493, 48.87360861844927], [2.382739471257575, 48.8736123967991], [2.382549406829038, 48.87360602415168], [2.382358234672779, 48.87359936669286], [2.382168170349102, 48.87359299254074], [2.381976996915321, 48.873586335365225], [2.381786932685852, 48.87357996060774], [2.381595760722618, 48.87357330193104], [2.38140569657669, 48.873566927467465], [2.381214523346822, 48.87356026817481], [2.3810244593058, 48.87355389220654], [2.380833287525038, 48.87354723321127], [2.380643223578251, 48.87354085663761], [2.380452050541462, 48.87353419612715], [2.380261986678222, 48.87352781984739], [2.380070815101344, 48.873521158735], [2.380056531718634, 48.87352923723249], [2.380042679731034, 48.873619853517084], [2.380027626410139, 48.87371013891105], [2.380013775687356, 48.87380075518452], [2.3799987222639762, 48.873891040560075], [2.37998439477549, 48.873899035180244], [2.379815617123799, 48.87389268571359], [2.37964725105414, 48.87388543700845], [2.379478473487612, 48.873879087066406], [2.379310107508934, 48.87387183788692], [2.379295737801034, 48.873879476969265], [2.379279959347704, 48.873948810294465], [2.379268082763503, 48.87399813116984], [2.379278211514998, 48.87400818339356], [2.379444232180965, 48.874035977444834], [2.379611641249925, 48.87406294477687], [2.379777662257651, 48.87409073926361], [2.379945071675248, 48.874117706127976], [2.379955366639154, 48.874127552306554], [2.379931889565968, 48.87425211710861], [2.37990705978635, 48.874388257410295], [2.379883582480127, 48.87451282217347], [2.379858752439258, 48.87464896333224], [2.379851433480231, 48.87468780092472], [2.37983994096226, 48.87470489708]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 28, "zemmour_eric": 57.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-12", "circ_bv": "16", "num_bureau": 12, "roussel_fabien": 29.0, "nb_emargement": 1301.0, "nb_procuration": 79.0, "nb_vote_blanc": 8.0, "jadot_yannick": 148.0, "le_pen_marine": 49.0, "nb_exprime": 1289.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1665.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1301, "quartier_bv": "76", "geo_point_2d": [48.87452196072711, 2.38199794589192], "melenchon_jean_luc": 608.0, "poutou_philippe": 9.0, "macron_emmanuel": 309.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.318558221008657, 48.891595010160515], [2.318572011820725, 48.891593273800034], [2.318691090173298, 48.891527786166556], [2.31882768882184, 48.891452661975165], [2.318946766531265, 48.89138717407905], [2.319083364430266, 48.89131205048563], [2.319089648878269, 48.8913088288623], [2.319096386551567, 48.89131318753712], [2.319111208702037, 48.89129723953339], [2.319124424431638, 48.89128962004554], [2.319137327594141, 48.891287964008775], [2.3193217355536753, 48.891326990037946], [2.319497557602145, 48.891364927366645], [2.319673378531202, 48.8914028653274], [2.319857788674971, 48.89144188963547], [2.320042197719649, 48.89148091454968], [2.320249856949467, 48.89152597073873], [2.320434266597422, 48.891564994146925], [2.320641926501835, 48.89161004965256], [2.320826336729786, 48.891649073353285], [2.321033997320519, 48.89169412727632], [2.321034257105509, 48.89169418180955], [2.321218669289251, 48.89173320491081], [2.321394083797788, 48.891768715231606], [2.321578496515186, 48.89180773777607], [2.321753912884002, 48.89184324757511], [2.321938324771169, 48.89188226955508], [2.322113741636482, 48.891917778824606], [2.322119002657058, 48.8919154271939], [2.322124146177456, 48.89189821624565], [2.322026893261762, 48.891781968360036], [2.321925031516437, 48.89166190722305], [2.321827779474959, 48.89154566004993], [2.321725918662769, 48.89142559781849], [2.321628667507304, 48.89130935045856], [2.321526807616527, 48.8911892880319], [2.321429557346863, 48.89107304048526], [2.321327697013733, 48.89095297785562], [2.321230448993715, 48.890836730129976], [2.321128589570361, 48.890716668204355], [2.321031342447942, 48.89060041939275], [2.320929483945869, 48.89048035727188], [2.320928656516103, 48.89047948922598], [2.320896230992245, 48.8904494234102], [2.32089552482594, 48.89044845982385], [2.320893079506087, 48.89043559727655], [2.3208825277610012, 48.890431508450035], [2.320829257110217, 48.8903462793039], [2.320777217043291, 48.89026301763905], [2.320756520410294, 48.890259204005595], [2.320701424921041, 48.89028596659308], [2.32064850893229, 48.890311670422015], [2.3206289190871843, 48.8903092632977], [2.320530645085187, 48.890207574596104], [2.320438975776837, 48.890110532335775], [2.320340701157132, 48.89000884345217], [2.320249032552751, 48.88991180102885], [2.320248920867701, 48.88991168528098], [2.320148884572102, 48.88980929463393], [2.320050612451194, 48.88970760549203], [2.319950576925881, 48.889605215559506], [2.319852304213693, 48.88950352622821], [2.31975403324906, 48.88940183681462], [2.319653998894366, 48.88929944660583], [2.319555727338348, 48.88919775700282], [2.319455695141124, 48.889095365717765], [2.319417909850586, 48.88906481123363], [2.319417268754517, 48.88906492450237], [2.319394106384701, 48.88907764064641], [2.319263305164974, 48.88914944767034], [2.319115607645232, 48.88922855094577], [2.3189848070377312, 48.88930035676409], [2.318863923241996, 48.88936509887128], [2.318844287856841, 48.88937475477278], [2.318842893217991, 48.889376591360275], [2.318816078631231, 48.8893909521692], [2.318671493150005, 48.88946964900767], [2.318523793823053, 48.88954875153007], [2.318379207473679, 48.88962744710507], [2.318231505879599, 48.88970655014705], [2.318086918650308, 48.88978524535778], [2.3179392175400872, 48.889864347136324], [2.317794629419095, 48.88994304288212], [2.317646927417133, 48.89002214428876], [2.317502338428101, 48.890100838771026], [2.317354635534496, 48.890179939805805], [2.317304208745713, 48.89016826863126], [2.3172849572472938, 48.89017959741188], [2.317243289187177, 48.89020607434583], [2.317208109843098, 48.89025524501282], [2.317209601385573, 48.890264537271534], [2.3172426674700652, 48.89029311397354], [2.31727730954329, 48.890331931294874], [2.3173065094476533, 48.890362679392254], [2.317324676857099, 48.89038306998774], [2.317352567225985, 48.89038305182503], [2.317381282077906, 48.890415226167654], [2.317382372068173, 48.89041676393517], [2.317401928165732, 48.89044691293671], [2.317416548762596, 48.89047392932344], [2.317417759658538, 48.890475399430926], [2.317530748964033, 48.890586578824355], [2.317643227100118, 48.89069725425927], [2.3177562173566812, 48.89080843431677], [2.317868696451263, 48.890919109517554], [2.317981176012228, 48.891029785500784], [2.318094166360021, 48.891140964298636], [2.318206646891276, 48.89125163914842], [2.318319639553933, 48.891362818618106], [2.318432121043711, 48.89147349323371], [2.318545114681031, 48.89158467156886], [2.318558221008657, 48.891595010160515]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 79, "zemmour_eric": 78.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-28", "circ_bv": "03", "num_bureau": 28, "roussel_fabien": 18.0, "nb_emargement": 1276.0, "nb_procuration": 78.0, "nb_vote_blanc": 9.0, "jadot_yannick": 112.0, "le_pen_marine": 64.0, "nb_exprime": 1262.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1611.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1277, "quartier_bv": "68", "geo_point_2d": [48.89058957388882, 2.3194964547785286], "melenchon_jean_luc": 353.0, "poutou_philippe": 7.0, "macron_emmanuel": 501.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.392166270706374, 48.879243727493034], [2.392166598828379, 48.87922577765001], [2.392150507630289, 48.87911809300999], [2.392134785749587, 48.87900902886234], [2.392118694684342, 48.87890134419687], [2.392102972946189, 48.87879227912432], [2.392086883366535, 48.87868459533958], [2.392071161760428, 48.878575530241385], [2.3920716203546633, 48.87857222033896], [2.392126350100213, 48.87844522060996], [2.392176944410455, 48.87831679239472], [2.392231674983804, 48.87818979349429], [2.392282268786198, 48.878061365204765], [2.392336997481269, 48.87793436532061], [2.392387590775824, 48.877805936956804], [2.392442320309189, 48.877678937001974], [2.392492913095908, 48.87755050856393], [2.392492952392403, 48.87754608765463], [2.392443059159718, 48.87741304559646], [2.392391113974058, 48.87727429312713], [2.39239231879335, 48.87726790679952], [2.392494115991166, 48.87714194785231], [2.392600180085994, 48.87700537047231], [2.392599390387952, 48.87699077841843], [2.392570564046824, 48.876987161635405], [2.392377629316195, 48.87696996486983], [2.39218016342696, 48.87695222767075], [2.391987228965041, 48.87693502937616], [2.391789763341214, 48.87691729153253], [2.391596829137626, 48.87690009260823], [2.3913993637792172, 48.8768823541201], [2.391206429834072, 48.876865154566055], [2.391008963367176, 48.87684741632573], [2.390816031043674, 48.87683021614893], [2.390618564852727, 48.87681247636482], [2.3906031678493003, 48.876822339193815], [2.390623219952649, 48.87694658224921], [2.390643847112711, 48.87707354149566], [2.390663899409914, 48.8771977845159], [2.390684526768625, 48.877324743726376], [2.390704579259482, 48.877448986711535], [2.390725206816947, 48.877575945886086], [2.390745259491042, 48.877700189735336], [2.390765887257581, 48.877827147974735], [2.390785940125541, 48.87795139178885], [2.390806568090735, 48.87807834999224], [2.390806573165674, 48.878078382393966], [2.39083019820233, 48.87821991058764], [2.390850826371245, 48.87834686965177], [2.390836634738119, 48.878356810578914], [2.390592922750675, 48.878349308175174], [2.390358003889788, 48.87834274758529], [2.3903448845371322, 48.87834820535907], [2.390274257913219, 48.87845747579086], [2.390203899139284, 48.87856666929432], [2.390133273297296, 48.87867593872896], [2.390062913932645, 48.87878513212789], [2.389992286124628, 48.87889440235002], [2.3899219261692473, 48.87900359564448], [2.389909659975249, 48.879009069407324], [2.389864212305096, 48.879009688556515], [2.389837088252218, 48.879010477523785], [2.389812893373513, 48.87900658151865], [2.389805099288675, 48.87901102495004], [2.389667811176444, 48.879012897193725], [2.389441997133524, 48.879015920431236], [2.38925925993628, 48.87901841207036], [2.389033445845738, 48.87902143453725], [2.388850708609704, 48.879023925552715], [2.388624894471553, 48.879026947248974], [2.388442157196538, 48.87902943764086], [2.388428818484581, 48.879038913186676], [2.38843609843463, 48.879127960623464], [2.388449398341726, 48.879302354591985], [2.388456678363686, 48.879391402006185], [2.388448883208505, 48.8793999858554], [2.388412413259525, 48.87941134783808], [2.388391389547519, 48.87941734688038], [2.388343132519765, 48.87942320048665], [2.388343597759341, 48.87943803730077], [2.388351897691479, 48.87949224181286], [2.388369471781446, 48.879538135337405], [2.388375754696856, 48.87955707853122], [2.388378463892296, 48.8795591797153], [2.388554446580555, 48.879559491398375], [2.388780434138406, 48.879557691099734], [2.3889564168134862, 48.87955800309119], [2.389182402987511, 48.87955620202683], [2.389358385659964, 48.8795565134274], [2.389422260597705, 48.87955600374018], [2.389464996236693, 48.87957798815359], [2.389507515037042, 48.87954682109557], [2.389669626222259, 48.87954552884427], [2.389763195799823, 48.87954445629027], [2.389772959479616, 48.87954706195174], [2.389904853726986, 48.87963328285062], [2.390051436915058, 48.87972411375049], [2.390183332071743, 48.87981033432873], [2.390329916254446, 48.879901163973734], [2.390340126318469, 48.879901870679824], [2.390359152058853, 48.879894155097176], [2.390517934313695, 48.879830781162106], [2.390675548402826, 48.87976582634438], [2.390834329881515, 48.87970245198231], [2.39099194183471, 48.87963749583427], [2.391150722526528, 48.87957412194446], [2.391308333696845, 48.879509165372326], [2.391309500270286, 48.8795087504177], [2.391454793970813, 48.879465762785685], [2.391661891387961, 48.87940028475985], [2.391807184495025, 48.87935729669593], [2.392014282411781, 48.879291817161686], [2.392159574914881, 48.879248829565164], [2.392166270706374, 48.879243727493034]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 28, "zemmour_eric": 82.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-29", "circ_bv": "16", "num_bureau": 29, "roussel_fabien": 17.0, "nb_emargement": 1135.0, "nb_procuration": 57.0, "nb_vote_blanc": 13.0, "jadot_yannick": 87.0, "le_pen_marine": 72.0, "nb_exprime": 1115.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1497.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1135, "quartier_bv": "75", "geo_point_2d": [48.87845916107695, 2.3909620858024887], "melenchon_jean_luc": 496.0, "poutou_philippe": 9.0, "macron_emmanuel": 275.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.322652224423197, 48.88935056410989], [2.322652521425378, 48.88934891012841], [2.322741903065877, 48.88929899851998], [2.322868341879752, 48.8892283933416], [2.323026647511983, 48.889139991540425], [2.323153085553654, 48.88906938605112], [2.323311391582655, 48.88898098386845], [2.323437828852123, 48.888910378068275], [2.323451647122941, 48.888906880418205], [2.32345462699467, 48.88889575368665], [2.323526556546201, 48.888753541100705], [2.323599683871922, 48.88860895919744], [2.323596998065702, 48.88860018187432], [2.323454081714321, 48.88849278791158], [2.32331222886267, 48.88838619208271], [2.323169313685929, 48.88827879775918], [2.323027462011871, 48.88817220067294], [2.322884548009764, 48.88806480598857], [2.322742696137924, 48.88795820853652], [2.322599784674116, 48.887850813499085], [2.322457933956469, 48.887744216588146], [2.322315023667264, 48.88763682118991], [2.3221731741271983, 48.8875302230216], [2.322134925109458, 48.88750194293012], [2.322134220924656, 48.887502085534116], [2.322112151781856, 48.8875152589672], [2.32196547977212, 48.887600502355205], [2.321814430984352, 48.8876906688765], [2.321667756617769, 48.88777591277776], [2.321516706817261, 48.88786607800987], [2.321370032832985, 48.88795132154051], [2.321215715545114, 48.888039309476774], [2.321069039228191, 48.888124551718256], [2.320914720918338, 48.888212539252756], [2.32076804498441, 48.88829778111984], [2.320613725652573, 48.888385768252554], [2.320467047374158, 48.888471009729756], [2.320312727020327, 48.88855899646062], [2.320166049125008, 48.88864423756342], [2.32001172774918, 48.888732223892504], [2.319865047497709, 48.88881746550464], [2.319710725099875, 48.88890545143191], [2.319710354156923, 48.88890565976718], [2.319546235331932, 48.8889943641417], [2.319438598254298, 48.88905345519666], [2.319417909850586, 48.88906481123363], [2.319455695141124, 48.889095365717765], [2.319555727338348, 48.88919775700282], [2.319653998894366, 48.88929944660583], [2.31975403324906, 48.88940183681462], [2.319852304213693, 48.88950352622821], [2.319950576925881, 48.889605215559506], [2.320050612451194, 48.88970760549203], [2.320148884572102, 48.88980929463393], [2.320248920867701, 48.88991168528098], [2.320249032552751, 48.88991180102885], [2.320340701157132, 48.89000884345217], [2.320438975776837, 48.890110532335775], [2.320530645085187, 48.890207574596104], [2.3206289190871843, 48.8903092632977], [2.32064850893229, 48.890311670422015], [2.320701424921041, 48.89028596659308], [2.320756520410294, 48.890259204005595], [2.320777217043291, 48.89026301763905], [2.320829257110217, 48.8903462793039], [2.3208825277610012, 48.890431508450035], [2.320893079506087, 48.89043559727655], [2.320912863192851, 48.89042900229778], [2.321032209590117, 48.89034869741227], [2.321189325081746, 48.8902429784064], [2.321308670626256, 48.89016267323172], [2.321465783619809, 48.89005695473674], [2.321585128311572, 48.88997664927289], [2.321742241546253, 48.88987093040499], [2.321861585385274, 48.88979062465199], [2.321862511993846, 48.88979005612905], [2.321990397052258, 48.88971864529606], [2.322148705653789, 48.88963024559433], [2.322276589927207, 48.88955883444523], [2.3224348975686953, 48.88947043345305], [2.322562781045418, 48.88939902288719], [2.322631707386777, 48.889360534003096], [2.322652224423197, 48.88935056410989]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 86, "zemmour_eric": 91.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-35", "circ_bv": "03", "num_bureau": 35, "roussel_fabien": 11.0, "nb_emargement": 1330.0, "nb_procuration": 101.0, "nb_vote_blanc": 21.0, "jadot_yannick": 152.0, "le_pen_marine": 44.0, "nb_exprime": 1307.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1577.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "68", "geo_point_2d": [48.88894556579762, 2.3215236001729744], "melenchon_jean_luc": 301.0, "poutou_philippe": 4.0, "macron_emmanuel": 569.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.320342844469031, 48.84509823834866], [2.32032396477212, 48.84510046223917], [2.320244862210604, 48.84512701529776], [2.320170473725115, 48.84515329830211], [2.320154407874964, 48.84515572882084], [2.3201354707523523, 48.84516496379305], [2.320027705840962, 48.84520303835009], [2.319868770282483, 48.84526079407483], [2.319686616003297, 48.845325151087856], [2.319527679682681, 48.84538290725242], [2.31934552320467, 48.84544726283198], [2.31918658749622, 48.845505018544834], [2.319184932155648, 48.84550572771595], [2.319029294989689, 48.84558590962563], [2.318867686474769, 48.84566669677991], [2.318712048340008, 48.84574687826528], [2.318550438822397, 48.84582766587862], [2.318394801093168, 48.845907846048206], [2.318233189222039, 48.84598863321355], [2.318077550524009, 48.846068812958876], [2.317915937661931, 48.846149599684], [2.317760297983325, 48.846229779904306], [2.317598684142068, 48.84631056528989], [2.317443043494649, 48.846390745085884], [2.317281428650658, 48.846471530930586], [2.317125787046203, 48.84655170940298], [2.316964172573748, 48.846632494815196], [2.316808528626192, 48.846712673754794], [2.316646913174566, 48.84679345782751], [2.316634938902151, 48.84680845285433], [2.31664700878013, 48.84684706397533], [2.316841109347889, 48.846915860302765], [2.3170186048817722, 48.846978823584244], [2.317212705068201, 48.84704761929287], [2.3173902014997863, 48.84711058201563], [2.317584304030098, 48.84717937712105], [2.31776180137116, 48.84724233838577], [2.317955903520128, 48.84731113287239], [2.318133401747115, 48.847374094477686], [2.318133834355244, 48.84737425433162], [2.318289117660065, 48.84743424620467], [2.3184678409574992, 48.84750289645021], [2.318623125030128, 48.847562887882845], [2.318801850583001, 48.84763153673001], [2.318957134060911, 48.84769152771444], [2.319135860495041, 48.847760176054706], [2.319227096452244, 48.84779542318054], [2.319242000472739, 48.84781012350863], [2.319263074749956, 48.84781565038103], [2.319327123080203, 48.84784039377949], [2.31932813402811, 48.84784082492903], [2.319498501262858, 48.84790832343674], [2.3196327331490902, 48.84797129028041], [2.319782326065862, 48.84804405380753], [2.319916558644637, 48.84810702032507], [2.320050791547787, 48.84816998668847], [2.320200386981275, 48.84824274968763], [2.320207549064037, 48.84824455312975], [2.320252123551564, 48.84820694329176], [2.320351401842285, 48.84809982051091], [2.320451839327705, 48.8479910305127], [2.320551116796578, 48.84788390754535], [2.320651554799864, 48.84777511826544], [2.320750831458516, 48.847667994212316], [2.3208512686287692, 48.84755920474361], [2.320950544465685, 48.84745208050403], [2.3210509794402983, 48.84734329083888], [2.321150254443574, 48.84723616731209], [2.321250689959504, 48.84712737656666], [2.321349964141064, 48.84702025285342], [2.321450398812175, 48.84691146281852], [2.321470246092167, 48.84690896543586], [2.321633820053903, 48.84699049025103], [2.321798660839439, 48.847072509469065], [2.321962234454038, 48.847154034714826], [2.322127076285438, 48.84723605256904], [2.322290650927112, 48.84731757735382], [2.322455493780983, 48.847399595642806], [2.322619070823947, 48.84748111907503], [2.322783913349471, 48.847563136891765], [2.322799091215022, 48.84756260314449], [2.3228120986090532, 48.84755030065922], [2.322813881600275, 48.8474094203996], [2.322815708486727, 48.84727197773037], [2.322817491470354, 48.84713109653619], [2.32281931833753, 48.846993653832584], [2.322821101301876, 48.84685277260317], [2.322822928149877, 48.84671532986514], [2.322824712445751, 48.84657444950753], [2.32282653791188, 48.84643700672741], [2.322828364730868, 48.846299563938025], [2.322830149009598, 48.84615868262842], [2.322831974446725, 48.84602123979698], [2.322833758694483, 48.84588035935146], [2.322825691789322, 48.845872073730106], [2.32265209822897, 48.845820872399095], [2.322476181557901, 48.845769156710574], [2.322302587321162, 48.84571795485997], [2.322126671344317, 48.84566623865277], [2.321953079156341, 48.845615036298035], [2.321777163873722, 48.84556331957213], [2.321603572371937, 48.84551211670555], [2.321427657783548, 48.84546039946098], [2.32125406559368, 48.84540919697409], [2.321078151699621, 48.84535747921081], [2.320904561570125, 48.84530627532053], [2.320728648370301, 48.84525455703859], [2.320555057564546, 48.84520335262868], [2.3203791450588582, 48.84515163382804], [2.320342844469031, 48.84509823834866]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 140, "zemmour_eric": 130.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "6-16", "circ_bv": "11", "num_bureau": 16, "roussel_fabien": 16.0, "nb_emargement": 1254.0, "nb_procuration": 107.0, "nb_vote_blanc": 12.0, "jadot_yannick": 100.0, "le_pen_marine": 47.0, "nb_exprime": 1238.0, "nb_vote_nul": 4.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1581.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1254, "quartier_bv": "23", "geo_point_2d": [48.84657894739698, 2.3201055372426183], "melenchon_jean_luc": 173.0, "poutou_philippe": 2.0, "macron_emmanuel": 589.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389641997276682, 48.87527228488151], [2.389618462367168, 48.87530820383489], [2.389578475716908, 48.87539699968453], [2.389537903320078, 48.87548887993551], [2.389537499460415, 48.87549006769278], [2.389506004585014, 48.875624520945735], [2.389474814785533, 48.87575642972119], [2.389443320939976, 48.8758908838314], [2.389412129469402, 48.87602279165248], [2.389380635300963, 48.8761572457137], [2.389349443501571, 48.87628915438588], [2.389349484367145, 48.876292064831986], [2.389388117499889, 48.87643894560018], [2.389429060824611, 48.87658894171133], [2.389467694401978, 48.8767358224143], [2.389508639552551, 48.87688581846481], [2.3894979043701072, 48.87689622923619], [2.389371528410493, 48.87691296155633], [2.389247134779498, 48.876928768552325], [2.389236202185312, 48.87693880057384], [2.389263785590621, 48.87707373845944], [2.389291262860112, 48.877207158608456], [2.389318846560741, 48.87734209554922], [2.3893463241022133, 48.877475516552416], [2.389373908087622, 48.87761045344767], [2.389401387285792, 48.8777438735134], [2.389428971545446, 48.877878811262384], [2.389456449662733, 48.87801223127604], [2.389456701052521, 48.87801311839859], [2.389501007572497, 48.87813548240633], [2.389545599271082, 48.878257730024934], [2.389589907571452, 48.878380093979565], [2.389634499677499, 48.87850234243723], [2.389678808405379, 48.87862470543248], [2.389723400929636, 48.878746953829896], [2.389767710074493, 48.87886931676512], [2.389812303016865, 48.87899156510226], [2.389812893373513, 48.87900658151865], [2.389837088252218, 48.879010477523785], [2.389864212305096, 48.879009688556515], [2.389909659975249, 48.879009069407324], [2.3899219261692473, 48.87900359564448], [2.389992286124628, 48.87889440235002], [2.390062913932645, 48.87878513212789], [2.390133273297296, 48.87867593872896], [2.390203899139284, 48.87856666929432], [2.390274257913219, 48.87845747579086], [2.3903448845371322, 48.87834820535907], [2.390358003889788, 48.87834274758529], [2.390592922750675, 48.878349308175174], [2.390836634738119, 48.878356810578914], [2.390850826371245, 48.87834686965177], [2.39083019820233, 48.87821991058764], [2.390806573165674, 48.878078382393966], [2.390806568090735, 48.87807834999224], [2.390785940125541, 48.87795139178885], [2.390765887257581, 48.877827147974735], [2.390745259491042, 48.877700189735336], [2.390725206816947, 48.877575945886086], [2.390704579259482, 48.877448986711535], [2.390684526768625, 48.877324743726376], [2.390663899409914, 48.8771977845159], [2.390643847112711, 48.87707354149566], [2.390623219952649, 48.87694658224921], [2.3906031678493003, 48.876822339193815], [2.390618564852727, 48.87681247636482], [2.390816031043674, 48.87683021614893], [2.391008963367176, 48.87684741632573], [2.391206429834072, 48.876865154566055], [2.3913993637792172, 48.8768823541201], [2.391596829137626, 48.87690009260823], [2.391789763341214, 48.87691729153253], [2.391987228965041, 48.87693502937616], [2.39218016342696, 48.87695222767075], [2.392377629316195, 48.87696996486983], [2.392570564046824, 48.876987161635405], [2.392599390387952, 48.87699077841843], [2.392605667760843, 48.87698633519818], [2.392612746620752, 48.87698132676768], [2.392605937176004, 48.876963233652454], [2.392594511454761, 48.87686876481094], [2.392583547287828, 48.876773069815684], [2.392572121638525, 48.87667860185505], [2.39256115891605, 48.876582906848164], [2.3925605609343013, 48.87658087042585], [2.392507117405995, 48.876467988557025], [2.392454117173684, 48.876357565874976], [2.392401115792332, 48.876247144050744], [2.392347672952028, 48.876134262076576], [2.392294672034073, 48.8760238392836], [2.392241229653592, 48.87591095723905], [2.3921882291779433, 48.87580053527585], [2.392134787257279, 48.87568765316091], [2.392137225779367, 48.87567929725881], [2.392267163707583, 48.875573949127876], [2.392410817484746, 48.875457114946286], [2.392406264069194, 48.87542505672191], [2.3923899140188762, 48.87542096091315], [2.392336378841783, 48.87542428110066], [2.392288921972566, 48.87542770137035], [2.392278871731363, 48.87542587326801], [2.3922576295424562, 48.8754296235608], [2.392162794924686, 48.87543645812543], [2.391940893796665, 48.87544971059831], [2.391798602169847, 48.87545996498707], [2.391796780056682, 48.875460015085324], [2.391623085286955, 48.87545714853366], [2.39139666573668, 48.87545451641078], [2.391222970996803, 48.875451650177794], [2.390996550127395, 48.875449017291224], [2.390822856801756, 48.87544614958533], [2.39059643597649, 48.87544351594195], [2.3904227413278702, 48.87544064764857], [2.390419574882999, 48.875440348234584], [2.390261606765599, 48.87541423200613], [2.39010801448709, 48.875387260113655], [2.389950046686924, 48.875361143472794], [2.38979645336295, 48.875334171172376], [2.389792998786232, 48.87533321286088], [2.389727439965252, 48.87530752377443], [2.389653658167048, 48.87527313305178], [2.389641997276682, 48.87527228488151]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 40, "zemmour_eric": 53.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-32", "circ_bv": "16", "num_bureau": 32, "roussel_fabien": 31.0, "nb_emargement": 1258.0, "nb_procuration": 91.0, "nb_vote_blanc": 11.0, "jadot_yannick": 145.0, "le_pen_marine": 38.0, "nb_exprime": 1244.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1567.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1258, "quartier_bv": "75", "geo_point_2d": [48.87671312764681, 2.3906182162877436], "melenchon_jean_luc": 559.0, "poutou_philippe": 14.0, "macron_emmanuel": 299.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346488859041595, 48.8280878850493], [2.34650591546788, 48.82807274104612], [2.346624243947016, 48.827974203627186], [2.346744999148243, 48.827872532428046], [2.346863326709824, 48.82777399565428], [2.34698408098118, 48.8276723241956], [2.346991055984882, 48.82766922616084], [2.347167842784, 48.82763586579309], [2.347340316862361, 48.82760271096879], [2.347517103212441, 48.82756935008274], [2.347689576848642, 48.82753619475282], [2.347862051627574, 48.82750303918056], [2.348038837305814, 48.827469677520334], [2.348211310280476, 48.82743652143502], [2.348388095509664, 48.82740315925656], [2.348560568042153, 48.82737000266559], [2.34873735283352, 48.82733663906956], [2.348752284550271, 48.8273401568948], [2.348873548408247, 48.82745546411798], [2.3489974446235, 48.82757305375616], [2.349016218941386, 48.82757538550345], [2.349182083496481, 48.82750187487329], [2.349342113757268, 48.82743150166587], [2.349507977395093, 48.8273579905743], [2.349668008136522, 48.82728761692913], [2.349833870857077, 48.82721410537617], [2.349993899354855, 48.827143731278504], [2.350153928782597, 48.82707335696973], [2.350319790136356, 48.82699984472881], [2.350479818682541, 48.82692946997493], [2.350645679119136, 48.826855957272606], [2.350658653122514, 48.826838281245315], [2.35063432673405, 48.82682721095512], [2.350634241316227, 48.82682717901317], [2.350458281779789, 48.82676240016543], [2.350280398471615, 48.826696705829335], [2.350104439826286, 48.826631925554075], [2.349926558771219, 48.82656623069147], [2.349750601005899, 48.82650144988809], [2.349572719479785, 48.82643575448411], [2.349396762583354, 48.826370974051926], [2.349218883310237, 48.82630527812141], [2.349042927305034, 48.8262404962618], [2.348865047560879, 48.82617479978995], [2.348689092424452, 48.8261100183015], [2.348511213571427, 48.82604432129571], [2.348335259326143, 48.82597953837983], [2.348157382726211, 48.82591384084756], [2.34815081312506, 48.82590382196164], [2.348166252501303, 48.82585711246832], [2.348191932636653, 48.82578891422789], [2.348207906184449, 48.825782276652866], [2.3484065239957133, 48.82580935459311], [2.34860252419735, 48.82583608967124], [2.348801143780625, 48.82586316696219], [2.348997143024957, 48.82588990138488], [2.349195763006845, 48.825916978918514], [2.349391762655821, 48.82594371269315], [2.349590383058874, 48.825970788670745], [2.349786383112482, 48.82599752179736], [2.349791932497693, 48.825997516894105], [2.3500003861706222, 48.82597272647165], [2.350235369403263, 48.825940212092064], [2.350243694828018, 48.82592621536838], [2.350126281621263, 48.82581664043932], [2.350015507057588, 48.82571303285072], [2.349898094810499, 48.82560345767682], [2.349787319779859, 48.825499850749054], [2.349669908492428, 48.82539027533031], [2.349559135741544, 48.825286667279606], [2.349448363430819, 48.82518305911672], [2.349330952195999, 48.8250734842262], [2.34931631911245, 48.82506998877334], [2.349108497106243, 48.825106634330794], [2.348899484765688, 48.82514368046431], [2.348691662184105, 48.82518032439571], [2.3484826478899192, 48.825217369790856], [2.348274824710402, 48.82525401389476], [2.348065809824627, 48.82529105855892], [2.347857987431609, 48.82532770104413], [2.347648971954361, 48.82536474497736], [2.3474411476013692, 48.82540138762767], [2.34723213153245, 48.82543843082989], [2.347216489006644, 48.82543385935261], [2.347123010962393, 48.82531388483195], [2.347036586672727, 48.82520323840255], [2.346950162761247, 48.82509259100047], [2.346856685941705, 48.82497261623518], [2.346855427079506, 48.82496676700565], [2.346834534990304, 48.82495862235844], [2.346676444450502, 48.82494410173682], [2.346509571292598, 48.824929460962004], [2.34650232061075, 48.82492502158622], [2.34648103449653, 48.824926909974295], [2.346438416188609, 48.82492317039189], [2.346406883677866, 48.82492098165199], [2.346403517170463, 48.8249203894497], [2.346227973228578, 48.82487292668322], [2.346047802349806, 48.82482406770188], [2.345872259067333, 48.82477660350987], [2.345692088854766, 48.82472774398847], [2.345516546209143, 48.82468028016952], [2.345336376662782, 48.82463142010805], [2.345313570350664, 48.82463299687585], [2.345306662183806, 48.82464533179287], [2.345287634803928, 48.8247895057597], [2.345269347886698, 48.824932736715276], [2.345250320298748, 48.825076910639275], [2.345232031816265, 48.825220141544996], [2.345213004020136, 48.82536431542619], [2.345194716685074, 48.82550754719634], [2.345195686909104, 48.82551174540378], [2.345279494280854, 48.825646441649845], [2.345358996698006, 48.82576983247215], [2.345359946474548, 48.82577208071671], [2.345389299546872, 48.82590763804419], [2.345418502632679, 48.82604376203276], [2.34544785601021, 48.82617931931305], [2.345477059401081, 48.82631544325438], [2.345506411721749, 48.82645100048003], [2.345535615417786, 48.82658712437411], [2.345564969405639, 48.82672268156004], [2.345594173406748, 48.826858805406836], [2.345623526337735, 48.82699436253808], [2.345652730643917, 48.827130486337666], [2.345682085242214, 48.827266043429184], [2.34571128985348, 48.8274021671815], [2.345740644757006, 48.82753772422581], [2.345769848311252, 48.827673847923435], [2.345799203520011, 48.82780940492053], [2.345828408741451, 48.82794552857834], [2.3458379336105812, 48.827952871910774], [2.345995764720016, 48.82798454770923], [2.346149877990746, 48.82801594754861], [2.346307709480564, 48.82804762293359], [2.346461824499017, 48.82807902147733], [2.346488859041595, 48.8280878850493]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 92, "zemmour_eric": 71.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-50", "circ_bv": "10", "num_bureau": 50, "roussel_fabien": 28.0, "nb_emargement": 1407.0, "nb_procuration": 83.0, "nb_vote_blanc": 16.0, "jadot_yannick": 154.0, "le_pen_marine": 67.0, "nb_exprime": 1387.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1693.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1407, "quartier_bv": "51", "geo_point_2d": [48.82635171863679, 2.3474632900923225], "melenchon_jean_luc": 456.0, "poutou_philippe": 11.0, "macron_emmanuel": 441.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.279679494323125, 48.859912634764996], [2.27966583936113, 48.85991589817435], [2.2796246083765173, 48.85990668430584], [2.279456276763666, 48.85986107542626], [2.2792843701739782, 48.85982266300499], [2.279276637062114, 48.85981827703996], [2.279181746246051, 48.85969727187198], [2.279084788094012, 48.85957834066458], [2.27898989952343, 48.85945733532651], [2.278892942255721, 48.85933840393795], [2.278798054567673, 48.8592173984216], [2.278701098184385, 48.85909846685189], [2.278691517083685, 48.859093877244106], [2.278517351828688, 48.859073120616884], [2.278338937803353, 48.85905072106958], [2.2783309422257743, 48.85904758536062], [2.278215871825715, 48.858954902473045], [2.278082560571285, 48.85885161123342], [2.27806271593236, 48.85885097348476], [2.277945814758602, 48.858925470578164], [2.277833258802648, 48.85899778315856], [2.277716356958841, 48.859072280917275], [2.277603801730186, 48.85914459328052], [2.277588969906487, 48.859146429266474], [2.277352247028806, 48.85908016446507], [2.277146246839748, 48.85901999444593], [2.277138152204567, 48.85901329570674], [2.277105110980159, 48.85889113525216], [2.27707275322917, 48.85877120121384], [2.277039712311523, 48.858649040714546], [2.277007356211846, 48.858529107539894], [2.276974315601055, 48.85840694699588], [2.276941958451837, 48.858287012869845], [2.276908918147898, 48.85816485228117], [2.276876562649972, 48.858044919018845], [2.276864281835512, 48.858009297702644], [2.276858801499388, 48.85800800638359], [2.276815665825088, 48.858012727245004], [2.276605594223363, 48.858030961873574], [2.276400742018455, 48.85804708542565], [2.276190670132996, 48.85806531932525], [2.275985817664508, 48.85808144216654], [2.275780965056742, 48.85809756555619], [2.275570894113858, 48.85811579837526], [2.275366041255127, 48.85813192015487], [2.275155968665544, 48.85815015223671], [2.275154626489518, 48.8581502241496], [2.275051057058374, 48.85815240904524], [2.274914337877941, 48.85815924142819], [2.274891999412555, 48.858166330609855], [2.274904595323255, 48.85820693288387], [2.2749331838214832, 48.85834013996409], [2.274961327337388, 48.858471738971765], [2.274989469619941, 48.858603338848205], [2.275018058552773, 48.85873654586059], [2.275046201134162, 48.85886814479303], [2.275074791720252, 48.85900135176828], [2.27510293457546, 48.859132951555274], [2.2751315241015, 48.85926615757764], [2.275159667243039, 48.85939775731984], [2.275188258409849, 48.85953096420441], [2.275185508149231, 48.85955092854779], [2.2752133984679253, 48.85955924204397], [2.275217180243981, 48.85955908957426], [2.275405610211283, 48.859533858843726], [2.275595853946271, 48.85950835010321], [2.275784282196263, 48.85948311786773], [2.275974525560679, 48.859457608524075], [2.276162954806595, 48.85943237569946], [2.276353196437402, 48.85940686574442], [2.27654162531641, 48.85938163232239], [2.276731867939451, 48.85935612177245], [2.276748004862289, 48.85936337368249], [2.276782356610116, 48.8594920264659], [2.276815235985491, 48.85961737508457], [2.276849588079282, 48.85974602691993], [2.276882467776596, 48.859871375491444], [2.276916821566812, 48.860000027286304], [2.276949701586278, 48.86012537581065], [2.276984054334568, 48.86025402844776], [2.277016934675983, 48.860379376924925], [2.277049815175713, 48.86050472537886], [2.277084168433821, 48.86063337704395], [2.277086678917625, 48.860637226161145], [2.277209639166185, 48.86074581416903], [2.277331916016141, 48.860852805152035], [2.277454875909174, 48.860961393777885], [2.277577153768699, 48.86106838448953], [2.27770011469422, 48.861176971942974], [2.277822393563322, 48.86128396238323], [2.277945355496202, 48.86139255046287], [2.278067635374893, 48.861499540631755], [2.278190599703153, 48.86160812754724], [2.278312880591444, 48.86171511744472], [2.278331536306712, 48.86173642323023], [2.278347513291961, 48.86173718419817], [2.278501559655044, 48.86165207449648], [2.27865436153999, 48.86156791220613], [2.278808408264284, 48.86148280210469], [2.27896120914464, 48.86139864030897], [2.279115253516534, 48.86131352889206], [2.279268053404757, 48.86122936669172], [2.279422098125523, 48.86114425577439], [2.279574897034054, 48.86106009227012], [2.279728939389993, 48.86097498093659], [2.279881737293967, 48.86089081792701], [2.279901158914207, 48.86089213903036], [2.279981016588071, 48.860958682536044], [2.280039358053057, 48.86101224566164], [2.280059703190456, 48.8610315683823], [2.28009633702453, 48.86102030220599], [2.280242636875329, 48.86093613202838], [2.280383841224991, 48.860855509560615], [2.280530140148568, 48.860771339019024], [2.280671342231329, 48.86069071709114], [2.28081254525246, 48.86061009409968], [2.280958842794313, 48.86052592301538], [2.280963406504748, 48.860520276405616], [2.28099032265595, 48.8603802187795], [2.281015758632076, 48.86024320644794], [2.281025671776726, 48.86021685104352], [2.280987077825877, 48.860210005306996], [2.280815167605881, 48.86017159418935], [2.280603627723643, 48.86012417767793], [2.280431719432381, 48.860085766014656], [2.280220180260021, 48.86003834792248], [2.280048271159392, 48.85999993659651], [2.279836732684501, 48.85995251782287], [2.279706056522634, 48.8599233189066], [2.279679494323125, 48.859912634764996]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 155, "zemmour_eric": 216.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "16-7", "circ_bv": "14", "num_bureau": 7, "roussel_fabien": 3.0, "nb_emargement": 1126.0, "nb_procuration": 75.0, "nb_vote_blanc": 6.0, "jadot_yannick": 22.0, "le_pen_marine": 46.0, "nb_exprime": 1120.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1424.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1127, "quartier_bv": "62", "geo_point_2d": [48.85982746970532, 2.2778142011823346], "melenchon_jean_luc": 80.0, "poutou_philippe": 6.0, "macron_emmanuel": 555.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.326066219950201, 48.88897670486859], [2.32599233078743, 48.888987512577586], [2.325912908994304, 48.88901167827913], [2.325818330325154, 48.88904045577595], [2.325810673611775, 48.88905038980196], [2.325854632659544, 48.88919489567957], [2.325898585447164, 48.889339377203584], [2.325942546346597, 48.889483883018585], [2.325986498258369, 48.88962836446461], [2.326030459634124, 48.88977287110856], [2.326074413409139, 48.88991735159272], [2.326066883952658, 48.889927246773475], [2.32591930639627, 48.88997338520896], [2.325707385374776, 48.89003963971055], [2.325559807169643, 48.89008577859753], [2.325347883869643, 48.8901520324484], [2.325200305039063, 48.89019816998834], [2.325184245591218, 48.89019600114215], [2.325061213511003, 48.890104229340096], [2.324938631654561, 48.89001279358987], [2.324815599076395, 48.88992102151241], [2.324693018070901, 48.88982958639472], [2.324569987722239, 48.8897378140573], [2.324447407591007, 48.88964637777369], [2.32432437673272, 48.889554606060166], [2.324201798827802, 48.8894631695175], [2.324078768846947, 48.88937139663705], [2.323956190429222, 48.8892799607193], [2.323833161314124, 48.889188187571186], [2.323710585134366, 48.88909675049518], [2.32358755688502, 48.889004977079416], [2.323464980192441, 48.88891354062829], [2.323451647122941, 48.888906880418205], [2.323437828852123, 48.888910378068275], [2.323311391582655, 48.88898098386845], [2.323153085553654, 48.88906938605112], [2.323026647511983, 48.889139991540425], [2.322868341879752, 48.8892283933416], [2.322741903065877, 48.88929899851998], [2.322652521425378, 48.88934891012841], [2.322652224423197, 48.88935056410989], [2.322668737693305, 48.8893634234722], [2.322793857806979, 48.88945976742749], [2.322918952719042, 48.8895560922126], [2.323044072383234, 48.88965243678108], [2.323169168220947, 48.88974876128788], [2.323294288822768, 48.88984510467875], [2.323419386949969, 48.889941428914916], [2.323544508466153, 48.89003777292669], [2.323669606155392, 48.89013409687688], [2.323788005401518, 48.89022526299223], [2.323907683822281, 48.89031741287162], [2.324026085265829, 48.89040857874404], [2.324145763165431, 48.89050072836233], [2.324264165442671, 48.890591893984165], [2.324383844185061, 48.89068404334913], [2.324502247295998, 48.89077520872031], [2.324621926881081, 48.89086735783194], [2.324740330825724, 48.89095852295245], [2.324860011253403, 48.891050671810724], [2.324866449401928, 48.891061861547236], [2.324886171597829, 48.891062301894856], [2.325109076926695, 48.89103496255812], [2.32533130995623, 48.8910077044551], [2.325341093043207, 48.891008944886224], [2.325495295477467, 48.891073243925256], [2.325653205640109, 48.891139088896175], [2.325807410208983, 48.891203387533324], [2.325965321172654, 48.8912692311856], [2.326119525148515, 48.89133352940552], [2.326277436889928, 48.89139937353767], [2.326431643000515, 48.8914636713557], [2.32658955554295, 48.89152951416917], [2.326743761060619, 48.89159381156999], [2.326901674392332, 48.89165965396403], [2.326954827597477, 48.89165175807972], [2.326956770044336, 48.89163907232689], [2.326943566781413, 48.89159928212378], [2.326898823132281, 48.8914678145942], [2.32685861502804, 48.89134664372127], [2.326846137937533, 48.89130998273349], [2.326850767885342, 48.89129808550609], [2.326833116065812, 48.89127790613904], [2.326800849982268, 48.89118309952895], [2.326755844130099, 48.89104570206415], [2.326711101430649, 48.89091423439809], [2.326666097411453, 48.890776836873556], [2.326621355169638, 48.89064536914175], [2.326576350256, 48.89050797154215], [2.326531609835457, 48.890376503752265], [2.326486605391022, 48.89023910608527], [2.326441864064458, 48.89010763822199], [2.326396861452852, 48.88997024049527], [2.326352120583902, 48.88983877256624], [2.326307117089387, 48.889701373865165], [2.326275458614029, 48.889608347454605], [2.3262755520575, 48.88958204806863], [2.326266449181781, 48.88957463316318], [2.326253367260922, 48.8895361915768], [2.326212279135488, 48.88940864087591], [2.326167540578836, 48.88927717281831], [2.326126452856392, 48.8891496229571], [2.326081713375274, 48.889018154828754], [2.326069893775289, 48.88898146230283], [2.326066219950201, 48.88897670486859]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 70, "zemmour_eric": 67.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-34", "circ_bv": "03", "num_bureau": 34, "roussel_fabien": 16.0, "nb_emargement": 1222.0, "nb_procuration": 57.0, "nb_vote_blanc": 22.0, "jadot_yannick": 132.0, "le_pen_marine": 44.0, "nb_exprime": 1196.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1488.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1224, "quartier_bv": "68", "geo_point_2d": [48.89024143127485, 2.3250321797227618], "melenchon_jean_luc": 325.0, "poutou_philippe": 3.0, "macron_emmanuel": 482.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.394535606849802, 48.86995861662335], [2.394570614034212, 48.869968147698216], [2.394749980902696, 48.869974887921046], [2.394919582642749, 48.869981630671916], [2.395098948239593, 48.86998837036486], [2.395268550058272, 48.86999511352045], [2.395270756149163, 48.86999532162093], [2.395489659060851, 48.870022661920274], [2.395738105807134, 48.870059988809146], [2.395772435449023, 48.87007941600362], [2.395793226199165, 48.870075354330105], [2.395804184519731, 48.87007321346693], [2.395811275062916, 48.87003547353623], [2.395907688636342, 48.869952489166], [2.396038328389218, 48.869844210909214], [2.396149134865005, 48.869752975598374], [2.3962797736052153, 48.86964469795784], [2.396390579233619, 48.869553462407], [2.396521216971601, 48.869445184483375], [2.396632021752835, 48.869353948692584], [2.39676265986221, 48.869245669593504], [2.39687346378566, 48.869154434462025], [2.39700409952962, 48.869046155073], [2.397114902605919, 48.86895491970155], [2.397115120036987, 48.86895474362731], [2.397236502447584, 48.86885918614994], [2.397355271179268, 48.86876538707793], [2.3974766527081, 48.86866982934059], [2.397595420565332, 48.86857603091352], [2.397716801212308, 48.8684804729163], [2.397835568215794, 48.8683866733356], [2.39795694798112, 48.86829111507852], [2.398075715473146, 48.868197316149555], [2.398076706022555, 48.868196535109995], [2.3980796570780543, 48.868194204478336], [2.398080204994128, 48.868193741376906], [2.398210263962695, 48.86807466205175], [2.398340763425178, 48.86795669637124], [2.398470821196024, 48.86783761763669], [2.398601319474642, 48.867719651646816], [2.398731817162328, 48.86760168550203], [2.398861873152836, 48.86748260630439], [2.398875752801482, 48.86747048638537], [2.398870190380978, 48.86746025455788], [2.398696556077831, 48.86738157072025], [2.398527332762103, 48.86730508698671], [2.3983536994940162, 48.86722640264067], [2.398184475812195, 48.86714991930407], [2.398010843589659, 48.86707123355037], [2.397841622278416, 48.866994749725144], [2.397667991080442, 48.866916064362286], [2.397498769423889, 48.86683957913547], [2.397329549616976, 48.86676309457027], [2.397155919974988, 48.86668440754878], [2.39711317200064, 48.86667107446772], [2.397098797603249, 48.86668799866644], [2.397029881528669, 48.86677668514498], [2.396945790620318, 48.866884524781035], [2.396859757597232, 48.86699523964093], [2.396775665994321, 48.86710307823687], [2.396689632248825, 48.86721379295261], [2.396605538567373, 48.86732163230014], [2.396519504109669, 48.86743234597239], [2.396435411086378, 48.867540185185966], [2.396419385654951, 48.86754908516415], [2.396416865772922, 48.867562319709464], [2.396416792401658, 48.86756241646802], [2.3963328466289022, 48.867671040564446], [2.39623968370223, 48.867788964020086], [2.396155737205518, 48.86789758707076], [2.396062574835928, 48.86801551037126], [2.395978627604833, 48.86812413327548], [2.395885464429159, 48.86824205641399], [2.3958015164636732, 48.868350679171755], [2.395708351118725, 48.86846860214131], [2.395624402418838, 48.86857722475261], [2.395531237630961, 48.86869514756708], [2.395447288196663, 48.868803770031874], [2.395447138793616, 48.86880395723874], [2.395353973198954, 48.86892187989104], [2.395267261908097, 48.869027847805015], [2.39517409550581, 48.8691457702934], [2.395087383476346, 48.86925173805555], [2.394994214903219, 48.86936966037321], [2.394907502135238, 48.869475627983576], [2.394814334117665, 48.869593550144224], [2.394727620610958, 48.869699517602825], [2.394640906741, 48.86980548588771], [2.394547737529938, 48.86992340780565], [2.394535606849802, 48.86995861662335]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 27, "zemmour_eric": 26.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "20-8", "circ_bv": "15", "num_bureau": 8, "roussel_fabien": 24.0, "nb_emargement": 1133.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 121.0, "le_pen_marine": 47.0, "nb_exprime": 1122.0, "nb_vote_nul": 0.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1336.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1134, "quartier_bv": "79", "geo_point_2d": [48.86837992085987, 2.3967202272658823], "melenchon_jean_luc": 502.0, "poutou_philippe": 7.0, "macron_emmanuel": 310.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.319948405697291, 48.854969219236025], [2.31994162446951, 48.854943386278364], [2.319895831306559, 48.85482194862821], [2.319847915732324, 48.85470118419105], [2.319802124363426, 48.8545797464863], [2.319754209229191, 48.85445898198527], [2.319708416928728, 48.854337544210495], [2.3196605035853413, 48.85421678055264], [2.319614711716212, 48.854095342715496], [2.319566797461658, 48.853974578086806], [2.319521006023661, 48.85385314018733], [2.319473093560129, 48.853732376401815], [2.319427302553352, 48.85361093844003], [2.319379389178556, 48.85349017368362], [2.319333599965772, 48.85336873566727], [2.319285687019198, 48.85324797174637], [2.31923989687485, 48.85312653365996], [2.319191985742552, 48.85300576878361], [2.319146196029409, 48.852884330634886], [2.319098283974305, 48.85276356568704], [2.319097860311964, 48.85276177895093], [2.31908720738294, 48.85263305534488], [2.319071025761944, 48.85246916685204], [2.319066615565198, 48.85241588179039], [2.319070834846115, 48.85239992781263], [2.319063897122823, 48.852389153596185], [2.319057654535441, 48.85231371411428], [2.319044130678706, 48.85215659847074], [2.319033478006128, 48.85202787478988], [2.31901995564735, 48.85187076001025], [2.319009303092924, 48.85174203629416], [2.319009239400495, 48.85171479167096], [2.31897393532483, 48.851702423312865], [2.318766785562289, 48.85170848660506], [2.318569274027082, 48.85171440747148], [2.318362122818855, 48.85172046915597], [2.318164612554985, 48.851726389362106], [2.317957461240287, 48.85173245124527], [2.3177599495223022, 48.851738370775614], [2.317552799475634, 48.851744431965884], [2.317355287666274, 48.851750350828176], [2.317157775812047, 48.85175626936441], [2.316950624261462, 48.85176232950428], [2.316753112327666, 48.851768246473206], [2.316545962045142, 48.85177430592019], [2.316348450008209, 48.85178022312037], [2.316141298268293, 48.85178628185891], [2.315943787502751, 48.85179219839883], [2.315736635668185, 48.85179825643675], [2.3155391234485823, 48.851804172300845], [2.315331972893821, 48.85181022874661], [2.315134460583005, 48.851816143942656], [2.31492730855907, 48.851822200579285], [2.314819471782131, 48.85182542965314], [2.314804036305077, 48.85181840270848], [2.314778067092298, 48.85181794820664], [2.314688391477854, 48.85182063362969], [2.314591634380797, 48.851816296698736], [2.314521026956872, 48.851819105615704], [2.314504352179108, 48.85183967644666], [2.314519177604395, 48.85196735428587], [2.314536167535872, 48.85209780823685], [2.314550991749809, 48.85222548603468], [2.314567981856924, 48.85235593905159], [2.314582807584998, 48.85248361682369], [2.314599797844098, 48.85261407070505], [2.314614622360814, 48.85274174843572], [2.314631612783728, 48.852872202282356], [2.314646438814598, 48.85299987998723], [2.314663429413158, 48.85313033289974], [2.3146782542326623, 48.85325801056326], [2.314695246345884, 48.85338846434803], [2.314710071316887, 48.85351614197795], [2.314727062231162, 48.85364659572013], [2.314714635809828, 48.853656326645755], [2.314515849938545, 48.853667450728295], [2.314321015501553, 48.853679047702606], [2.314122229459461, 48.85369017113097], [2.313927394861858, 48.853701766564875], [2.31372860863723, 48.853712890238384], [2.313533773866988, 48.8537244850311], [2.31333498748362, 48.853735607151215], [2.313140152528999, 48.85374720220203], [2.31294136461217, 48.853758323660145], [2.312746530859669, 48.85376991717841], [2.312547742772175, 48.85378103798236], [2.312352908835302, 48.85379263175869], [2.312154120577149, 48.8538037519085], [2.311959286479645, 48.85381534414443], [2.31176049803897, 48.85382646453937], [2.311565663768976, 48.85383805613412], [2.31136687516954, 48.8538491749756], [2.311172039352398, 48.85386076682065], [2.310973251945115, 48.85387188501585], [2.310778415967391, 48.85388347532044], [2.310579628389493, 48.85389459286145], [2.31038479222741, 48.85390618342418], [2.310186004478902, 48.853917300311046], [2.309991168156269, 48.85392888933331], [2.309792380225253, 48.853940006465315], [2.309597543730177, 48.853951594846414], [2.309561137163643, 48.85396406032071], [2.309561408545262, 48.854007451384405], [2.309575267900573, 48.854134760738546], [2.309589095085395, 48.8542629602541], [2.309602954576209, 48.85439026957575], [2.309616781896952, 48.854518469058625], [2.309630641523373, 48.85464577834781], [2.309644468980038, 48.85477397779802], [2.309658327379256, 48.85490128704685], [2.309672154971842, 48.855029486464375], [2.30968601486948, 48.85515679568857], [2.309699842597993, 48.85528499507342], [2.309713702631243, 48.85541230426515], [2.309727530507598, 48.855540502718], [2.309741390664549, 48.855667812776524], [2.309755218676834, 48.8557960111967], [2.309769077606666, 48.855923321214874], [2.309782905754778, 48.85605151960236], [2.309796766183063, 48.856178829595905], [2.309810594467212, 48.85630702795067], [2.309824455031015, 48.85643433791172], [2.309838283451101, 48.85656253623381], [2.309852144150529, 48.856689846162354], [2.309865972706551, 48.856818044451735], [2.309879832178739, 48.85694535433993], [2.309893660870698, 48.8570735525966], [2.3098850195683758, 48.8571021741938], [2.309894898663411, 48.85711356393812], [2.309908727425173, 48.85724176307294], [2.30992170718797, 48.85737829341291], [2.309935536085955, 48.85750649251403], [2.309948515984948, 48.857643022818515], [2.309962345019057, 48.85777122188596], [2.309975325054249, 48.85790775215498], [2.309989154224686, 48.858035951188775], [2.310002134384169, 48.858172482321606], [2.310015963702744, 48.85830068042241], [2.3100289439983293, 48.858437211519764], [2.310042773453135, 48.8585654095869], [2.3100557552479373, 48.85870194065661], [2.31006958483898, 48.85883013869005], [2.310082565406982, 48.85896666971648], [2.310096395134258, 48.85909486771623], [2.31010937583857, 48.85923139870713], [2.310123205702084, 48.8593595966732], [2.310136186542608, 48.85949612762861], [2.310150016530352, 48.859624326460306], [2.3101629975189972, 48.85976085648091], [2.310172908727814, 48.85985273302012], [2.310176827643084, 48.8598890552789], [2.31015123714295, 48.85990159402919], [2.310188741706864, 48.8599155217517], [2.310194036892395, 48.85993385859532], [2.310269801840738, 48.85994076704082], [2.3104492420543012, 48.85993937288083], [2.310619598249547, 48.85993948200161], [2.310789954433711, 48.85993959177914], [2.310969394629201, 48.8599381968392], [2.311139750809796, 48.859938306118806], [2.311319190991591, 48.859936910654376], [2.311329941085355, 48.85993330765812], [2.311454664383286, 48.85982338431176], [2.3115801422764832, 48.85971325382067], [2.311704864519764, 48.85960333019177], [2.31183033997932, 48.859493200307924], [2.311955061179944, 48.85938327549715], [2.312080536943621, 48.859273145336985], [2.312205257077639, 48.85916322114292], [2.312330730431464, 48.85905308979148], [2.312340821554165, 48.85904951619225], [2.312524208119573, 48.85904237226562], [2.312699201217916, 48.859034819210656], [2.312882587682555, 48.85902767473469], [2.313057580667721, 48.85902012205487], [2.313232574976927, 48.85901256822765], [2.313415959927184, 48.85900542292638], [2.313590954134957, 48.85899786857502], [2.313774340347243, 48.8589907227323], [2.313785935813379, 48.85899420856515], [2.313896940417064, 48.85908918087407], [2.314011228690557, 48.859186136079444], [2.314122234101979, 48.8592811090622], [2.314236523215722, 48.85937806403568], [2.314347529458569, 48.85947303589372], [2.314461819412671, 48.859569990635215], [2.3145728251003392, 48.85966496315939], [2.314687117257542, 48.85976191767676], [2.314798123776738, 48.85985688907617], [2.314912416774217, 48.859953843361616], [2.31493393209113, 48.859953845118596], [2.315053783037426, 48.85985222536928], [2.315184136574361, 48.859740263688415], [2.315303986541342, 48.85963864366895], [2.315434340369181, 48.85952668170177], [2.315554189356853, 48.85942506141216], [2.315684542112563, 48.8593130991509], [2.315804390120936, 48.85921147859117], [2.315934740453616, 48.85909951512874], [2.316054587470896, 48.85899789519813], [2.316184938094489, 48.85888593144941], [2.316276662045509, 48.85880815700005], [2.31629025791878, 48.85878260582229], [2.31625152122424, 48.858768305126965], [2.316113935688815, 48.858684681317506], [2.315979677477908, 48.858604288849264], [2.315842094163001, 48.858520665621974], [2.3157078354313683, 48.85844027282908], [2.315573578465038, 48.858359880786786], [2.315435996459009, 48.85827625617493], [2.3154316817344602, 48.85827061862761], [2.31540495693566, 48.85810927822537], [2.315389444641391, 48.85796127819877], [2.315390523311693, 48.85795667158528], [2.3154735672916162, 48.85783243148715], [2.315555235174187, 48.857710094575644], [2.315638278368253, 48.85758585433562], [2.315719946840482, 48.85746351729236], [2.315802987874116, 48.857339277801884], [2.315884655584936, 48.85721693971974], [2.315967697195819, 48.85709270009518], [2.316049362770558, 48.85697036186569], [2.316131029312865, 48.856848024474004], [2.316214069760025, 48.856723783737905], [2.316295734166279, 48.8566014461989], [2.316378773827734, 48.85647720532094], [2.316460438823663, 48.856354867650175], [2.316543476336671, 48.85623062662249], [2.316625140559429, 48.856108288812145], [2.316708178649498, 48.8559840476504], [2.316789840736253, 48.85586170969271], [2.316872878040646, 48.85573746838907], [2.316880536292654, 48.85573268347088], [2.317070444417328, 48.85568539116039], [2.31725857221477, 48.855638412158385], [2.31744848101557, 48.85559111925171], [2.317636608119921, 48.85554414055065], [2.317826516234009, 48.85549684704002], [2.318014642669023, 48.85544986684137], [2.318204548733566, 48.855402572718994], [2.318392674487256, 48.855355591922], [2.318582581228004, 48.85530829720347], [2.318770706300465, 48.855261315808185], [2.318960610991561, 48.85521402047788], [2.319148735371141, 48.85516703938358], [2.319338640738327, 48.85511974345713], [2.319526764448321, 48.85507276086519], [2.319714887819063, 48.85502577797561], [2.319904790794807, 48.854978481136854], [2.319948405697291, 48.854969219236025]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 131, "zemmour_eric": 171.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-3", "circ_bv": "02", "num_bureau": 3, "roussel_fabien": 14.0, "nb_emargement": 1071.0, "nb_procuration": 72.0, "nb_vote_blanc": 8.0, "jadot_yannick": 58.0, "le_pen_marine": 37.0, "nb_exprime": 1059.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1330.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1070, "quartier_bv": "26", "geo_point_2d": [48.855643095022124, 2.314244289070314], "melenchon_jean_luc": 84.0, "poutou_philippe": 4.0, "macron_emmanuel": 523.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406268890887341, 48.851498326578785], [2.406267101834236, 48.851491842377825], [2.406275552754072, 48.851414912502015], [2.406293022707165, 48.851292996889086], [2.406307967445569, 48.85115695791795], [2.406325437246593, 48.85103504137272], [2.406340380453431, 48.85089900325851], [2.406357851454862, 48.85077708668704], [2.406372794513355, 48.850641047637936], [2.406390265342123, 48.85051913193278], [2.406380948806757, 48.850509740551416], [2.406214797872432, 48.8504737379706], [2.406033889730927, 48.85044192662239], [2.405867739252599, 48.850405923557446], [2.405686831558484, 48.850374111682584], [2.4055206815361583, 48.85033810813345], [2.405519818089383, 48.85033794106074], [2.405338912206273, 48.85030612866464], [2.4051260044263882, 48.85027005854187], [2.404945097656646, 48.850238245541625], [2.404732190436972, 48.85020217381655], [2.404551285506017, 48.85017036022572], [2.4043383788363, 48.850134287797694], [2.404157474381432, 48.85010247360949], [2.403976570147553, 48.85007065914685], [2.403763664282908, 48.85003458569295], [2.403762295448858, 48.85003440259866], [2.403534804190726, 48.85000977225109], [2.403344673112242, 48.84999096132441], [2.403154542160827, 48.849972150994574], [2.402927051461713, 48.84994751949011], [2.402925642054015, 48.84994742881697], [2.402748618205667, 48.84994218432042], [2.4025278766441422, 48.84994746221979], [2.402407266521311, 48.84994388841438], [2.402386818607371, 48.84994613269164], [2.402391714336367, 48.849997878879655], [2.402340777948838, 48.85011570037072], [2.402289468945317, 48.85023438424451], [2.402238532095441, 48.850352205667], [2.40218722126358, 48.85047088946492], [2.402136283951349, 48.85058871081886], [2.4020849740060353, 48.85070739545376], [2.402034036241762, 48.85082521583986], [2.401982724467982, 48.85094390039889], [2.401993442243634, 48.85095522193906], [2.402180148659671, 48.85097715031073], [2.402366596639685, 48.85099904921907], [2.402553303369875, 48.85102097700757], [2.402739753026233, 48.85104287534039], [2.40292646006006, 48.851064803445055], [2.40311291004034, 48.851086700296214], [2.403299617388209, 48.85110862781775], [2.4034860676820893, 48.85113052408656], [2.403672773981369, 48.85115245101814], [2.403859224588841, 48.8511743467046], [2.404045932564775, 48.85119627305982], [2.404232383485833, 48.85121816816395], [2.40424343030805, 48.851228529729426], [2.404212632186607, 48.85134813033103], [2.404181766976532, 48.851467984195324], [2.404150967209299, 48.8515875847485], [2.404120101715561, 48.851707438571104], [2.404089303028009, 48.851827039089464], [2.404058437250608, 48.85194689287033], [2.404027636917248, 48.85206649334026], [2.403996770856175, 48.85218634707948], [2.404009289684323, 48.85219682660909], [2.40419262776981, 48.8522049848487], [2.404361652792132, 48.852212505864834], [2.404363104220454, 48.85221262191155], [2.404560069192721, 48.852235564386156], [2.404762561350255, 48.85225915098576], [2.404959526674264, 48.852282092801815], [2.405162017841021, 48.85230567781836], [2.405162811114002, 48.85230578698593], [2.405319297008447, 48.85233041469639], [2.405549640229093, 48.85236691004412], [2.40570612647966, 48.85239153814658], [2.405936471614428, 48.852428031855084], [2.406092956868608, 48.85245265944356], [2.406151310339723, 48.85245620831637], [2.406155509216923, 48.85244807295346], [2.406160338206943, 48.85240880253247], [2.4061752822489932, 48.85227276370758], [2.406192958032653, 48.85212900491149], [2.406207901909303, 48.85199296604828], [2.406225577518311, 48.85184920631191], [2.406240521219419, 48.85171316830971], [2.406258196643531, 48.85156940853234], [2.406264689262998, 48.85151029946692], [2.406268890887341, 48.851498326578785]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 66, "zemmour_eric": 89.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-51", "circ_bv": "15", "num_bureau": 51, "roussel_fabien": 24.0, "nb_emargement": 1406.0, "nb_procuration": 80.0, "nb_vote_blanc": 13.0, "jadot_yannick": 123.0, "le_pen_marine": 83.0, "nb_exprime": 1387.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1773.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1406, "quartier_bv": "80", "geo_point_2d": [48.85105025378115, 2.4045253395866544], "melenchon_jean_luc": 502.0, "poutou_philippe": 6.0, "macron_emmanuel": 429.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352534088752133, 48.86624257367389], [2.352543651885313, 48.866251315762064], [2.35257040456418, 48.86629901235898], [2.352640119681416, 48.86642282071615], [2.352711312268, 48.86654974603654], [2.352781028044493, 48.86667355518286], [2.352852221316954, 48.86680048039067], [2.352921937763992, 48.86692428942688], [2.35299313172244, 48.86705121452213], [2.353062848839931, 48.86717502344818], [2.353134043484375, 48.86730194843081], [2.353203761283393, 48.86742575634744], [2.353274956602779, 48.86755268211679], [2.353306011763645, 48.867607830299924], [2.353312119007659, 48.86761518574177], [2.353398959173826, 48.8675945086849], [2.353589510719954, 48.86754434651055], [2.353780168591052, 48.86749415492835], [2.353970719403117, 48.867443992142576], [2.354161377902672, 48.867393799955885], [2.354351926628568, 48.86734363565206], [2.354542584382486, 48.86729344375291], [2.3545449826298013, 48.86729297463882], [2.354748402267588, 48.867266342953414], [2.354951353357206, 48.867239772250876], [2.355154771227483, 48.86721313896692], [2.355357721902547, 48.867186567574045], [2.355561140709318, 48.86715993450477], [2.3557640896178063, 48.86713336151493], [2.355967039671264, 48.86710678908695], [2.356170456491848, 48.867080154972896], [2.356373406141845, 48.8670535809553], [2.356576823910027, 48.86702694615664], [2.35677977177119, 48.86700037234069], [2.356983189134928, 48.86697373595084], [2.35698637833208, 48.866973571417624], [2.357170253599414, 48.86697833997539], [2.357351391107665, 48.866983036891824], [2.357532528648579, 48.86698773353408], [2.357716404015889, 48.86699250125281], [2.357897541622617, 48.866997197342606], [2.3580814170567352, 48.86700196450053], [2.358091907684482, 48.867005662201095], [2.358208169296093, 48.86711114897359], [2.35832429253926, 48.867216508071515], [2.358440555080827, 48.867321995497434], [2.358556677900856, 48.86742735434252], [2.358569102169098, 48.86743455540566], [2.35858520010752, 48.867430368903705], [2.358783292097787, 48.86739686772276], [2.358986088528996, 48.86736257031099], [2.359184180014698, 48.86732906756522], [2.359386975918023, 48.867294769472124], [2.359396913386145, 48.86728415466806], [2.359365579231017, 48.86718866750814], [2.35933586529221, 48.867098118297335], [2.359304531360881, 48.86700263110538], [2.3592748176343, 48.866912081864236], [2.359273240430855, 48.86690942036155], [2.359178193435548, 48.8668029761862], [2.359081596412253, 48.86669479688538], [2.358986550200017, 48.8665883525372], [2.358889955335885, 48.86648017306805], [2.358794909906812, 48.866373728546975], [2.358698315838501, 48.866265548902206], [2.358603271192683, 48.86615910420832], [2.358506676557174, 48.866050924380566], [2.358411632683325, 48.86594448041319], [2.358315040206833, 48.865836300417094], [2.358322920943887, 48.865823111533494], [2.358524810320045, 48.86578373682801], [2.358725033700975, 48.86574468561269], [2.358926922469271, 48.86570531022615], [2.359127146599275, 48.865666259241934], [2.359329034759703, 48.86562688317431], [2.359529256923852, 48.86558783150738], [2.359731144476406, 48.865548454758674], [2.359931366048738, 48.86550940151697], [2.360133252993407, 48.865470024087216], [2.360333475314809, 48.865430971076634], [2.360391920898774, 48.86540465388082], [2.360377202368259, 48.86538970547974], [2.360286804700934, 48.865306870364236], [2.360170302714883, 48.865192861976276], [2.360171727464953, 48.865183185462676], [2.360166833954465, 48.865171847359505], [2.360039378801752, 48.86505113591952], [2.359922877929078, 48.86493712726437], [2.359795422541862, 48.864816416431], [2.359678922727964, 48.864702407514216], [2.359675797116321, 48.86470029442088], [2.359657706245982, 48.864685705601175], [2.359600014449952, 48.86471627408787], [2.359397317411115, 48.86475865819809], [2.359202303402952, 48.8647994355038], [2.359007290463647, 48.86484021159829], [2.358804591097289, 48.86488259469263], [2.3586095775354, 48.86492337013603], [2.358406877522023, 48.86496575255357], [2.358211863326478, 48.865006528245196], [2.358009162665883, 48.865048909986], [2.357814147858841, 48.86508968412719], [2.357611446551242, 48.865132065191254], [2.357556070136642, 48.86514364378272], [2.357529049545795, 48.865149293207416], [2.357412842218833, 48.86517358925045], [2.357266473490999, 48.86520419218751], [2.357073864251817, 48.865244461818364], [2.356892655597137, 48.86528234798409], [2.356700045780038, 48.86532261701053], [2.356518836581648, 48.865360502607565], [2.356326226175526, 48.86540077192885], [2.356145017807639, 48.86543865606531], [2.356136914833934, 48.8654386835219], [2.35595838636055, 48.865402677329506], [2.355761977189331, 48.86536306358223], [2.355583450597327, 48.865327056835426], [2.355387040633226, 48.865287442462815], [2.355208514559517, 48.8652514351543], [2.355012106528723, 48.865211820171034], [2.354833579610225, 48.86517581229348], [2.354637172149756, 48.865136196692234], [2.354458645749464, 48.86510018825292], [2.354262238859225, 48.86506057203368], [2.354083714340327, 48.86502456304], [2.353887306657242, 48.86498494619541], [2.353708782656763, 48.86494893664004], [2.3535123769069, 48.864909319184825], [2.353333852061664, 48.864873309060364], [2.353252956988113, 48.86485720446133], [2.353252587174807, 48.86485712691795], [2.35326064475418, 48.86483154184317], [2.353248759661374, 48.8648250491038], [2.353056302911146, 48.86478275509741], [2.352848757909101, 48.864733980356554], [2.352656300457075, 48.86469168569609], [2.352448756192342, 48.86464291025759], [2.352256300753291, 48.86460061585707], [2.352048757237059, 48.86455183882162], [2.351856302459189, 48.8645095437744], [2.351648759669097, 48.86446076694059], [2.351600217822997, 48.864470448018984], [2.351585488954518, 48.86451864954761], [2.351655943241291, 48.864649061199465], [2.351727129643013, 48.86477598730127], [2.351797584632477, 48.86490639883942], [2.351868773093915, 48.86503332483485], [2.351939227422899, 48.86516373625196], [2.351992518576465, 48.86525875092908], [2.352010416581188, 48.865290662133624], [2.351991953570594, 48.865307679386085], [2.352031632457327, 48.86531731934244], [2.352091618151401, 48.86542846756347], [2.352162808042638, 48.86555539332411], [2.352222792938802, 48.86566654054882], [2.352293983463893, 48.86579346710344], [2.352353970277163, 48.865904614245856], [2.352425161458281, 48.8660315397959], [2.352485148814389, 48.86614268774798], [2.352529587978494, 48.86622191749063], [2.352534088752133, 48.86624257367389]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 66, "zemmour_eric": 69.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "3-15", "circ_bv": "05", "num_bureau": 15, "roussel_fabien": 25.0, "nb_emargement": 1215.0, "nb_procuration": 83.0, "nb_vote_blanc": 13.0, "jadot_yannick": 115.0, "le_pen_marine": 57.0, "nb_exprime": 1199.0, "nb_vote_nul": 3.0, "arr_bv": "03", "arthaud_nathalie": 3, "nb_inscrit": 1512.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1215, "quartier_bv": "09", "geo_point_2d": [48.866042552979025, 2.3557167185087615], "melenchon_jean_luc": 297.0, "poutou_philippe": 6.0, "macron_emmanuel": 516.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.379401365660513, 48.854852777389134], [2.379423392718306, 48.85486008732929], [2.379607352183602, 48.854793550420645], [2.379788973885156, 48.854727925642436], [2.379972932417035, 48.85466138816385], [2.380154551834687, 48.85459576281593], [2.380338510795862, 48.854529224774474], [2.380520129292429, 48.85446359886387], [2.380704087320283, 48.85439706025248], [2.380885704895766, 48.854331433779215], [2.381069660616709, 48.85426489549012], [2.381251278644594, 48.85419926756193], [2.381435233432124, 48.854132728702915], [2.381616849176111, 48.85406710020506], [2.381800804393029, 48.85400056078314], [2.381982419215921, 48.853934931722605], [2.381992466189335, 48.85393412833205], [2.382113497778381, 48.8539553638023], [2.382269273752687, 48.85399008531503], [2.382288726573597, 48.8539868041819], [2.382303351311399, 48.853961865143724], [2.382382183131027, 48.85384320434634], [2.38246041050977, 48.85371801737579], [2.382539240240145, 48.85359935644191], [2.382617468238271, 48.85347416934829], [2.382696297242094, 48.85335550828488], [2.38277452313404, 48.853230321054056], [2.382774595318217, 48.8532302099069], [2.382850042218615, 48.853112369468796], [2.382928268738966, 48.85298718211717], [2.383003714939965, 48.85286934155643], [2.383081939363523, 48.85274415406994], [2.383157384865134, 48.85262631338659], [2.383212026593937, 48.8525388669174], [2.383219885516924, 48.852524974673145], [2.383218708139877, 48.85251736728401], [2.383242290086057, 48.85247962613673], [2.3833184339561, 48.85235349510546], [2.383396658211955, 48.85222830736213], [2.383472799989003, 48.85210217529786], [2.383551023496741, 48.851976987425346], [2.383627165885025, 48.85185085614061], [2.383705387292548, 48.85172566723254], [2.383781528939867, 48.85159953582112], [2.383859749588663, 48.85147434768317], [2.383935890495232, 48.851348216144984], [2.384014110406578, 48.851223026978566], [2.384036392177805, 48.85118611624051], [2.384033373439181, 48.85117690751697], [2.383976382381903, 48.851174434975576], [2.383774896003954, 48.85117500997485], [2.383571598305461, 48.85117582981983], [2.383370111917656, 48.85117640413747], [2.383166814207359, 48.851177223294705], [2.382965329172332, 48.85117779693774], [2.382762031450244, 48.8511786154072], [2.382560545042759, 48.851179188361556], [2.382357247308888, 48.851180006143224], [2.382155760880916, 48.85118057931528], [2.38195246313527, 48.85118139640922], [2.381939700122152, 48.85117569603561], [2.381879463998033, 48.85107468162313], [2.381819923522167, 48.85097397834287], [2.381759687863401, 48.85087296385181], [2.381700147849376, 48.85077226049366], [2.381639912666734, 48.8506712450247], [2.381580373114648, 48.850570541588716], [2.381567295724948, 48.85056482155928], [2.381344254067038, 48.85056894770094], [2.38113392637009, 48.85057289816274], [2.380923600014647, 48.85057684736254], [2.3807005582436203, 48.85058097320351], [2.380490231811953, 48.850584922540826], [2.380267189982855, 48.8505890466746], [2.380254651923093, 48.85060089726518], [2.3803205856009573, 48.85073061165296], [2.380386020252543, 48.85085934310831], [2.380451954573723, 48.850989058292825], [2.380517389874368, 48.85111778964642], [2.380583324860258, 48.85124750382916], [2.380648760809969, 48.851376235080956], [2.380714696439198, 48.85150595006048], [2.380780133038088, 48.85163468121054], [2.380846070694679, 48.85176439519526], [2.3809115065799142, 48.85189312623654], [2.380977444879874, 48.852022841018005], [2.381042882776847, 48.85215157196457], [2.381108820368222, 48.85228128663645], [2.381174258924981, 48.852410016581956], [2.381171900639294, 48.852418559919876], [2.381010107678909, 48.852549510458765], [2.38085159821636, 48.852681730555275], [2.38084965176368, 48.85268393828458], [2.380784045640948, 48.85279102993925], [2.380719980888161, 48.85289557536821], [2.38065591724098, 48.85300012076001], [2.380590310322005, 48.85310721227808], [2.380526246154467, 48.85321175758059], [2.380460638702532, 48.853318849007074], [2.380396572662546, 48.85342339331392], [2.38033096604043, 48.85353048465602], [2.380299296537302, 48.85355051017372], [2.380309435847463, 48.853563253428376], [2.380361775908946, 48.85357415031811], [2.380401684230819, 48.853586525198196], [2.380407900073058, 48.85359891266935], [2.380307994396148, 48.853721930150215], [2.380222913921102, 48.85382645543031], [2.380137834467415, 48.85393098064723], [2.380037927516244, 48.85405399786584], [2.379952845957254, 48.85415852292271], [2.37987758559151, 48.85425119230834], [2.379870847369093, 48.85425372952965], [2.37986591774785, 48.85427011622924], [2.379841271636375, 48.85430046388672], [2.379743218460894, 48.85441830208088], [2.379643309643722, 48.854541318916084], [2.379545255577926, 48.85465915602319], [2.379445345820969, 48.85478217356569], [2.379412731383639, 48.854821368975436], [2.379401365660513, 48.854852777389134]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 51, "zemmour_eric": 62.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-6", "circ_bv": "07", "num_bureau": 6, "roussel_fabien": 33.0, "nb_emargement": 1350.0, "nb_procuration": 88.0, "nb_vote_blanc": 14.0, "jadot_yannick": 150.0, "le_pen_marine": 51.0, "nb_exprime": 1332.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1682.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1350, "quartier_bv": "44", "geo_point_2d": [48.85248456338235, 2.3817461460575355], "melenchon_jean_luc": 481.0, "poutou_philippe": 9.0, "macron_emmanuel": 425.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.287869606095156, 48.841100447169616], [2.287859612311145, 48.84109104322116], [2.287851356203035, 48.84108778961563], [2.287836852742003, 48.84108295010183], [2.28780953885173, 48.84109335778538], [2.28761206532134, 48.84109285377822], [2.287415477107818, 48.84109257326574], [2.287218003584215, 48.84109206860808], [2.287021416738126, 48.84109178745613], [2.286824829894158, 48.841091505981076], [2.286627355017979, 48.84109100034035], [2.286430768179112, 48.84109071821774], [2.286233293309743, 48.841090211926485], [2.2860367064759872, 48.841089929156304], [2.285839231613441, 48.84108942221452], [2.285642644784804, 48.84108913879681], [2.285445169916657, 48.84108863210384], [2.285248583105481, 48.841088347139205], [2.285051108244269, 48.84108783979573], [2.285049647004932, 48.8410877842952], [2.284806277178639, 48.84106905620505], [2.284558096176074, 48.84105074223366], [2.284548051675135, 48.841046565741244], [2.284455883457385, 48.84094907492045], [2.284360900594362, 48.84084860735114], [2.284268733076731, 48.840751116368885], [2.2841737509351008, 48.840650648633186], [2.284153587339221, 48.84064843693507], [2.284097187423904, 48.84067876076099], [2.284052481918291, 48.84070323849137], [2.2840307970966, 48.84071247924846], [2.284029982861052, 48.84071749736046], [2.283923353321748, 48.840775881212735], [2.283781055631172, 48.84085357225771], [2.283629719618014, 48.84093643434751], [2.2834874210514178, 48.84101412503202], [2.28333608546771, 48.84109698674663], [2.283193786037461, 48.84117467617138], [2.2830424481583123, 48.841257537494435], [2.282900147839668, 48.84133522745801], [2.282748809027515, 48.84141808839767], [2.282606507832838, 48.8414957780008], [2.282455169450134, 48.84157863856524], [2.282312867379424, 48.84165632780791], [2.282311593390086, 48.841657119704685], [2.28219440194391, 48.8417390219057], [2.282081948411919, 48.84181850073952], [2.281964757604376, 48.84190040271189], [2.281852303361711, 48.84197988221767], [2.281739848788367, 48.84205936071277], [2.281622656901674, 48.84214126233235], [2.281620060798123, 48.84214267674029], [2.281467535730194, 48.84220630217497], [2.281313977077674, 48.8422707459264], [2.281161451249003, 48.84233437186285], [2.281007890478213, 48.84239881520578], [2.280855363900988, 48.842462440744704], [2.280701803736887, 48.842526883695534], [2.2806781407931043, 48.84253264487407], [2.280676092402585, 48.84254353651385], [2.280770888659647, 48.84265259743507], [2.280863585615711, 48.842759186772426], [2.280958382657443, 48.84286824752402], [2.281051079018007, 48.842974836687304], [2.281145878206713, 48.84308389727739], [2.281238575334378, 48.843190486274814], [2.281333373945173, 48.84329954668709], [2.2814260732022458, 48.84340613552679], [2.281520872597738, 48.84351519576941], [2.28161357125932, 48.84362178443506], [2.281706270287772, 48.84372837391799], [2.281801072230535, 48.84383743301592], [2.281826985348759, 48.843860443331806], [2.281843605572969, 48.843856057056534], [2.281889437027425, 48.84383488584046], [2.282037284267694, 48.8437687990696], [2.282196096749511, 48.84369543636345], [2.282343943205342, 48.84362934920534], [2.282502754830571, 48.84355598608288], [2.282565334438702, 48.8435280132992], [2.282595601450293, 48.84351428427641], [2.28259535176615, 48.84350470630224], [2.28268061778171, 48.84346659061913], [2.282842321084463, 48.84339383166775], [2.282990164515159, 48.84332774278568], [2.283151866967252, 48.84325498250754], [2.283299710974059, 48.84318889324292], [2.2834614125509543, 48.84311613343662], [2.283621901263206, 48.843043947138966], [2.283783601952965, 48.84297118598845], [2.28394408977264, 48.842898999249186], [2.2841057882004048, 48.84282623764556], [2.284266275115157, 48.842754051364], [2.2844279740059212, 48.84268128932361], [2.284588460040451, 48.842609101701136], [2.284750158031618, 48.84253633921584], [2.284910643173678, 48.842464151151795], [2.285072340253014, 48.84239138912083], [2.285232824502508, 48.842319200615215], [2.285394520694692, 48.842246437240014], [2.285555004051517, 48.842174248292835], [2.285573317280216, 48.84217243211359], [2.285579860113467, 48.842163401048026], [2.285647702358414, 48.84212372129513], [2.285710541849308, 48.842088664968955], [2.285712048418983, 48.842087900506975], [2.285720602106263, 48.842084157141066], [2.285740559521185, 48.842073023393226], [2.285898085450294, 48.842004090926736], [2.286052620961807, 48.841936789847495], [2.286210146066443, 48.84186785696164], [2.286364682133431, 48.841800555479175], [2.286522206413594, 48.84173162217405], [2.286676741673793, 48.841664320280245], [2.28683426512938, 48.84159538655576], [2.286988799582689, 48.84152808425062], [2.287146322213907, 48.84145915010682], [2.287300854497769, 48.841391847382276], [2.287458376304521, 48.84132291281914], [2.287612909144053, 48.84125560969137], [2.287640753854655, 48.8412439568891], [2.287641081079198, 48.84124224643738], [2.287748445497638, 48.84117970140634], [2.287871080923523, 48.8411088821468], [2.287869606095156, 48.841100447169616]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 102, "zemmour_eric": 125.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 24.0, "date_tour": "2022-04-10", "id_bvote": "15-85", "circ_bv": "13", "num_bureau": 85, "roussel_fabien": 23.0, "nb_emargement": 1455.0, "nb_procuration": 75.0, "nb_vote_blanc": 19.0, "jadot_yannick": 109.0, "le_pen_marine": 103.0, "nb_exprime": 1430.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 6, "nb_inscrit": 1781.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1455, "quartier_bv": "60", "geo_point_2d": [48.84211639651835, 2.283703453025529], "melenchon_jean_luc": 363.0, "poutou_philippe": 6.0, "macron_emmanuel": 518.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.258084587232748, 48.83810057816587], [2.258068957582319, 48.83810417945494], [2.257958588424072, 48.838196450685665], [2.257856790190153, 48.83828144687573], [2.257746420280966, 48.83837371789609], [2.257644621354764, 48.83845871389207], [2.25763968248498, 48.83846129052991], [2.257464572940814, 48.83851508442982], [2.257291843215369, 48.83856601394929], [2.257116734322776, 48.83861980734342], [2.256944003897605, 48.83867073725512], [2.256936514647416, 48.838676355896645], [2.2568753117131, 48.83881055818695], [2.256816248549022, 48.83894182467552], [2.256755043618125, 48.83907602776323], [2.256695979863171, 48.83920729326192], [2.256634775673283, 48.83934149626468], [2.256575709939398, 48.839472762563595], [2.256514505140947, 48.83960696457366], [2.256455438803335, 48.83973823078202], [2.256394233383487, 48.83987243269862], [2.256335167804453, 48.84000369882487], [2.256334679617256, 48.840005255304725], [2.256312469229714, 48.8401316897446], [2.256290681998732, 48.840256820906546], [2.256268471397263, 48.84038325530977], [2.256246683955496, 48.84050838643549], [2.256224897771546, 48.84063351755173], [2.256202686849977, 48.84075995190009], [2.256180899105645, 48.84088508207233], [2.2561586879573072, 48.84101151728335], [2.256136900002285, 48.841136647419354], [2.256114688639907, 48.841263082593706], [2.256114713666695, 48.84129006394503], [2.256149738417271, 48.84129546932649], [2.256306209897797, 48.84130390969451], [2.256506708017467, 48.84131206319224], [2.256521102805587, 48.841303980054875], [2.256538908015015, 48.84118633848414], [2.256558374553093, 48.84106837715376], [2.256576178235471, 48.840950735544205], [2.256595644614133, 48.84083277328359], [2.256613449494343, 48.84071513165212], [2.256632914325402, 48.840597170251364], [2.256650719040908, 48.84047952858952], [2.256670183712458, 48.84036156625853], [2.256687988263465, 48.84024392456633], [2.256707452749857, 48.84012596310366], [2.256727664163123, 48.84011909335841], [2.256889077883888, 48.840178868493474], [2.257080370494625, 48.84025107934626], [2.257241785015812, 48.840310854897616], [2.257433078599705, 48.840383065177875], [2.257594493946948, 48.840442839346906], [2.257785788503791, 48.84051504905461], [2.257947204651468, 48.84057482363998], [2.257953538938049, 48.84058535772324], [2.257894883610623, 48.840708796216646], [2.257841554039949, 48.84083597402884], [2.257782899540621, 48.84095941154882], [2.25772956944017, 48.84108658928255], [2.257730504152631, 48.84109299861941], [2.257819291855784, 48.841210654191556], [2.257911279567629, 48.84133431396181], [2.258000066740293, 48.84145196846661], [2.258092055307042, 48.841575628071105], [2.25818084464842, 48.84169328332402], [2.2582728340699862, 48.84181694276277], [2.258294877427743, 48.841846153453766], [2.258312143853237, 48.84185706377058], [2.258344859437514, 48.84184984588292], [2.258550109168781, 48.84179655508528], [2.258770228696541, 48.84173919557632], [2.25897547755714, 48.84168590404359], [2.259195594799882, 48.841628542838535], [2.259203010960986, 48.841616479612085], [2.259120602278268, 48.84149590390627], [2.259034211426414, 48.841377232617006], [2.258951803512574, 48.84125665676906], [2.258865414804049, 48.84113798534092], [2.258783006283641, 48.84101741024172], [2.258696618356086, 48.84089873866626], [2.25861421061723, 48.84077816252563], [2.258527823470534, 48.84065949080284], [2.258528166730479, 48.84065126096549], [2.258623463067212, 48.84053690898693], [2.258722487978301, 48.84041308893906], [2.258817783466033, 48.84029873588199], [2.258916807462996, 48.8401749156469], [2.259012102076158, 48.84006056330994], [2.259111125159007, 48.83993674288757], [2.259206418923181, 48.83982238947216], [2.259305441091928, 48.839698568862545], [2.259363299978398, 48.83962913657936], [2.259382106807334, 48.839624230916264], [2.259393528493781, 48.83960007878731], [2.259430961100398, 48.83955515745686], [2.259511561403999, 48.839453481216374], [2.259606854755635, 48.83933912834019], [2.259687454382061, 48.83923745196154], [2.259782745590457, 48.83912309891472], [2.25986334453972, 48.839021422397906], [2.259958636329671, 48.83890706919731], [2.260039234601773, 48.83880539254231], [2.260033630624458, 48.83879330715337], [2.259871307946397, 48.83873551637859], [2.259681449044953, 48.83866810252882], [2.259519127147179, 48.83861031126962], [2.259329269144508, 48.838542897752646], [2.259166948040004, 48.838485105109804], [2.258977090948882, 48.83841769102629], [2.258814770624673, 48.83835989789907], [2.258624914445098, 48.83829248324904], [2.258462594901387, 48.83823468963752], [2.258272739633363, 48.838167274420954], [2.25811042087005, 48.838109480325045], [2.258084587232748, 48.83810057816587]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 128, "zemmour_eric": 149.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-43", "circ_bv": "14", "num_bureau": 43, "roussel_fabien": 8.0, "nb_emargement": 1019.0, "nb_procuration": 69.0, "nb_vote_blanc": 9.0, "jadot_yannick": 42.0, "le_pen_marine": 79.0, "nb_exprime": 1005.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1298.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1019, "quartier_bv": "61", "geo_point_2d": [48.83975168084318, 2.258041024629783], "melenchon_jean_luc": 134.0, "poutou_philippe": 3.0, "macron_emmanuel": 424.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3989683458302062, 48.85490730448919], [2.3989683061859832, 48.85490955985562], [2.398856048441931, 48.85500099207869], [2.398763166138488, 48.855079812857014], [2.398761705656347, 48.855080829876236], [2.398708934792448, 48.85511224065404], [2.398634982235981, 48.85515613763057], [2.398634541858228, 48.8551614658539], [2.398652642162698, 48.85517293806943], [2.398835476398054, 48.855224546723626], [2.3990182878773663, 48.8552763870118], [2.399201122837968, 48.85532799510251], [2.399383936396374, 48.85537983573334], [2.39956677208202, 48.85543144326057], [2.399749585014783, 48.85548328242181], [2.39993242141531, 48.85553489028482], [2.400115235074691, 48.85558672888265], [2.400298072210714, 48.855638335282855], [2.4004808865865632, 48.85569017421651], [2.400489133948595, 48.855698545294146], [2.400487447235442, 48.855790533798995], [2.400487452068411, 48.85588072937822], [2.400492200988017, 48.85588755133778], [2.400604872450384, 48.855951407347746], [2.400715029454691, 48.85601385576605], [2.400726460523042, 48.8560225944138], [2.400741649797441, 48.856020847505334], [2.400912719762151, 48.856002211644544], [2.401087087740743, 48.85598322871009], [2.401258157468726, 48.85596459145551], [2.401432526558526, 48.85594560802387], [2.401444140055594, 48.855947966646774], [2.40158605688862, 48.856037086774876], [2.401725142158633, 48.85612441905555], [2.401867059952778, 48.856213538836286], [2.4020061461647852, 48.85630087077646], [2.402145231480268, 48.85638820254133], [2.402287150711398, 48.85647732180264], [2.402298736798641, 48.85648624183774], [2.4023151730778523, 48.856483794971325], [2.402486274447771, 48.85645964942129], [2.402662306859741, 48.856434538960656], [2.402833409269811, 48.85641039292], [2.403009439985314, 48.856385281940796], [2.403019474815328, 48.85637936393875], [2.403074818388869, 48.856271026813204], [2.403129492406456, 48.85616519998759], [2.4031848355237733, 48.85605686279025], [2.403239507730339, 48.8559510358872], [2.403294179714825, 48.85584520894905], [2.403349523512699, 48.85573687165117], [2.4033498794599613, 48.85573625647371], [2.40342385966601, 48.855621340697006], [2.40349878164415, 48.85550544297475], [2.403572762556934, 48.85539052708886], [2.4036476838719922, 48.855274629249344], [2.403721662765838, 48.8551597132407], [2.403796584780656, 48.855043815290685], [2.403793622365637, 48.8550338861201], [2.403680361977936, 48.85496011392494], [2.403556845885709, 48.85488280102626], [2.403443586161742, 48.85480902859697], [2.4033200707685722, 48.854731716342656], [2.403206811708232, 48.85465794367922], [2.403112789337232, 48.85459909171813], [2.403095792771207, 48.85458625957121], [2.403079021096038, 48.8545874646715], [2.403049530154373, 48.85456900502094], [2.403046782860418, 48.85456743634201], [2.403043768719472, 48.8545646540103], [2.4029740635046792, 48.854464128731394], [2.402904139534691, 48.854362260481984], [2.402834433497212, 48.85426173509669], [2.402764510071795, 48.85415986674715], [2.402694804574441, 48.85405934126215], [2.402624881683278, 48.85395747371174], [2.402620895662815, 48.85395411632841], [2.402458837381238, 48.853869959094304], [2.402298270644157, 48.85378615263357], [2.402137704423567, 48.853702345951085], [2.401975647705299, 48.85361818804348], [2.401815083883954, 48.85353438092224], [2.401653028209219, 48.853450222565], [2.401492464061536, 48.853366414991314], [2.40133040943013, 48.85328225618445], [2.401329394045587, 48.853281669225055], [2.401230180477929, 48.85321789275739], [2.401102835540225, 48.85313668450669], [2.401003621163231, 48.85307290783604], [2.400909239255783, 48.85301271939673], [2.4009078982282, 48.85300537039144], [2.400885474529387, 48.85299740139739], [2.400852512236149, 48.852976380428196], [2.400810664140157, 48.852946842178206], [2.400788604057347, 48.85294885417116], [2.400701878606342, 48.85305956776142], [2.400616162015052, 48.85316832215379], [2.400529437195175, 48.853279035604025], [2.40044371850983, 48.853387790743916], [2.400356992958395, 48.85349850404729], [2.400271274925148, 48.85360725814972], [2.400184547279256, 48.85371797129941], [2.400098828514714, 48.853826726156115], [2.400012101499939, 48.8539374391658], [2.399926382014547, 48.854046193877494], [2.399925337475965, 48.85404731012728], [2.399819934099324, 48.854144091035295], [2.399715251001777, 48.854239713498835], [2.399609846835474, 48.854336495104356], [2.399505162976216, 48.85443211646824], [2.399399756667683, 48.8545288978651], [2.399295073399162, 48.854624519035454], [2.399189666311205, 48.85472130023051], [2.399084980897308, 48.85481692209297], [2.39908452387427, 48.85481731641046], [2.399036975276782, 48.854855173112476], [2.398987526103852, 48.8548954493884], [2.3989683458302062, 48.85490730448919]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 35, "zemmour_eric": 57.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-45", "circ_bv": "15", "num_bureau": 45, "roussel_fabien": 34.0, "nb_emargement": 1435.0, "nb_procuration": 75.0, "nb_vote_blanc": 9.0, "jadot_yannick": 106.0, "le_pen_marine": 66.0, "nb_exprime": 1424.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1883.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1436, "quartier_bv": "80", "geo_point_2d": [48.85486323014301, 2.4014264608246805], "melenchon_jean_luc": 677.0, "poutou_philippe": 13.0, "macron_emmanuel": 364.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37983994096226, 48.87470489708], [2.379851433480231, 48.87468780092472], [2.379858752439258, 48.87464896333224], [2.379883582480127, 48.87451282217347], [2.37990705978635, 48.874388257410295], [2.379931889565968, 48.87425211710861], [2.379955366639154, 48.874127552306554], [2.379945071675248, 48.874117706127976], [2.379777662257651, 48.87409073926361], [2.379611641249925, 48.87406294477687], [2.379444232180965, 48.874035977444834], [2.379278211514998, 48.87400818339356], [2.379268082763503, 48.87399813116984], [2.379279959347704, 48.873948810294465], [2.379295737801034, 48.873879476969265], [2.379310107508934, 48.87387183788692], [2.379478473487612, 48.873879087066406], [2.37964725105414, 48.87388543700845], [2.379815617123799, 48.87389268571359], [2.37998439477549, 48.873899035180244], [2.3799987222639762, 48.873891040560075], [2.380013775687356, 48.87380075518452], [2.380027626410139, 48.87371013891105], [2.380042679731034, 48.873619853517084], [2.380056531718634, 48.87352923723249], [2.380070815101344, 48.873521158735], [2.380261986678222, 48.87352781984739], [2.380452050541462, 48.87353419612715], [2.380643223578251, 48.87354085663761], [2.380833287525038, 48.87354723321127], [2.3810244593058, 48.87355389220654], [2.381214523346822, 48.87356026817481], [2.38140569657669, 48.873566927467465], [2.381595760722618, 48.87357330193104], [2.381786932685852, 48.87357996060774], [2.381976996915321, 48.873586335365225], [2.382168170349102, 48.87359299254074], [2.382358234672779, 48.87359936669286], [2.382549406829038, 48.87360602415168], [2.382739471257575, 48.8736123967991], [2.382751283298493, 48.87360861844927], [2.382816574884592, 48.873547892987574], [2.382874413420565, 48.87349321216342], [2.382905280381395, 48.873454637849164], [2.382894335990171, 48.87344836252853], [2.382773473639146, 48.87342786588472], [2.382587426483404, 48.87339571928846], [2.382392776064573, 48.87336270781917], [2.382206729376523, 48.87333056062931], [2.382163435039785, 48.873322917663415], [2.382165991034877, 48.873308806802164], [2.382137237158841, 48.87331793053019], [2.381934157526778, 48.873276425549335], [2.381748111429867, 48.873244277644204], [2.381747342895812, 48.87324412888184], [2.381556956624701, 48.87320320863049], [2.381353876539015, 48.873161702653846], [2.381163490878299, 48.873120781773686], [2.38096041142752, 48.87307927512641], [2.380770026366512, 48.87303835451665], [2.380566948924634, 48.87299684630657], [2.380376564474025, 48.87295592506797], [2.380172010470964, 48.8729085160929], [2.380171961521742, 48.87290850504739], [2.379981576351755, 48.87286758227099], [2.379843708153157, 48.87283601906886], [2.379842675013856, 48.87283576639904], [2.379704806983641, 48.872804203036], [2.379529703231814, 48.87275593470624], [2.37938842361953, 48.87271597777812], [2.379213321820764, 48.87266770898874], [2.379072042690377, 48.872627751684036], [2.379071838854923, 48.87262769576722], [2.378896737646408, 48.87257942651085], [2.378706020634591, 48.87252787430774], [2.37853091873736, 48.87247960450485], [2.378340202442361, 48.87242805261349], [2.378165101219599, 48.87237978227113], [2.377974385662986, 48.87232822889298], [2.3777992864780773, 48.87227995801825], [2.377608571638175, 48.87222840495186], [2.377433471764668, 48.87218013353056], [2.377242757663071, 48.87212857897743], [2.377067659827318, 48.87208030702372], [2.377026212960931, 48.872051369216585], [2.376999173102074, 48.872056573240656], [2.376979976833088, 48.87206026672861], [2.3769610679091793, 48.8720935067061], [2.376848527602489, 48.872194462238895], [2.376717887133186, 48.87231604321781], [2.376605345874262, 48.87241699850159], [2.376474704279198, 48.872538579190575], [2.376362162068235, 48.87263953422539], [2.376231519358169, 48.872761113725154], [2.37617988671829, 48.87280742934957], [2.376168133825924, 48.8728171717585], [2.37621388845346, 48.872852076900095], [2.37627663996853, 48.87298775032018], [2.376335762385136, 48.87311876870624], [2.376398514528182, 48.87325444292899], [2.376457637554061, 48.87338546122321], [2.376460848258449, 48.87338910766536], [2.376603046426042, 48.87348727149135], [2.376745264712436, 48.87358459616203], [2.376887465313046, 48.8736827596399], [2.377029683301329, 48.87378008394832], [2.377032702700617, 48.87378935741585], [2.376974571738035, 48.873896437257606], [2.376914662652091, 48.87400739473131], [2.376924211731184, 48.87401913848579], [2.3771519810258, 48.874056558935294], [2.377371461458681, 48.874092594027736], [2.377599231395827, 48.87413001362375], [2.377818711084322, 48.87416604788672], [2.377820927434661, 48.87416654774519], [2.377982040001862, 48.874213948984746], [2.378172934862981, 48.87426956275378], [2.3783340494325023, 48.874316963522276], [2.3785249450577473, 48.8743725758255], [2.378686060266257, 48.87441997611577], [2.378812899205145, 48.87445692702402], [2.378814935641056, 48.8744593675928], [2.3788401350212802, 48.87446361820731], [2.378904192468283, 48.874482279920315], [2.379029027756093, 48.87451875344541], [2.379219924852209, 48.87457436552947], [2.37934476059243, 48.87461083782302], [2.379349717204078, 48.87461329981816], [2.379401472864441, 48.87465417667916], [2.379453993234635, 48.874698392210426], [2.379464953467735, 48.87470183771745], [2.3796378281438972, 48.87469993322199], [2.379813725399563, 48.87469986618727], [2.37983994096226, 48.87470489708]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 26, "zemmour_eric": 56.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-14", "circ_bv": "16", "num_bureau": 14, "roussel_fabien": 25.0, "nb_emargement": 1276.0, "nb_procuration": 65.0, "nb_vote_blanc": 3.0, "jadot_yannick": 119.0, "le_pen_marine": 60.0, "nb_exprime": 1266.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 1, "nb_inscrit": 1778.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1275, "quartier_bv": "76", "geo_point_2d": [48.873339907270875, 2.378672275042249], "melenchon_jean_luc": 621.0, "poutou_philippe": 13.0, "macron_emmanuel": 300.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.382154149656492, 48.885845916760154], [2.38212296241876, 48.88583278036724], [2.382000159242771, 48.8857854365566], [2.381836607360342, 48.88572182390022], [2.381665352390334, 48.885655800613435], [2.381501801323953, 48.88559218749223], [2.381330547215451, 48.885526162819545], [2.381166995591012, 48.88546255012574], [2.380995743696961, 48.88539652497344], [2.380832192888668, 48.88533291181477], [2.3806609418453393, 48.885266886175856], [2.38049739185319, 48.88520327255237], [2.3803261416607873, 48.8851372464268], [2.380162592495487, 48.88507363143925], [2.379991341779493, 48.88500760571922], [2.379827794793953, 48.884943990273904], [2.37982764003069, 48.88494393191542], [2.379671638658641, 48.8848855786185], [2.379508091072574, 48.88482196362161], [2.379450528214113, 48.88480043221233], [2.379438966701756, 48.884801949706784], [2.3794139394659912, 48.88484015824272], [2.379312630110972, 48.884875839943994], [2.379109796295841, 48.88494496534982], [2.379104235332145, 48.884942556896334], [2.379039651087961, 48.88496184164664], [2.378836815211983, 48.88503096657754], [2.378630662864856, 48.88510827580071], [2.378626049808803, 48.88511111171532], [2.378512172256542, 48.88522399126031], [2.378399606649296, 48.8853347658831], [2.378285726742837, 48.88544764608192], [2.378173160170425, 48.88555842046931], [2.378059279294737, 48.88567129953053], [2.377946711757154, 48.88578207368245], [2.377834143729909, 48.88589284861669], [2.377720262751616, 48.886005727328225], [2.377716931293099, 48.88600800509089], [2.377566134893497, 48.886080002729685], [2.377414349382068, 48.88615120272769], [2.377263553513078, 48.88622319998313], [2.377111765806892, 48.88629439958118], [2.376960969104875, 48.886366396446164], [2.3768091819311152, 48.88643759565847], [2.37665838303242, 48.886509592125876], [2.376506595038409, 48.88658079004606], [2.376355796659564, 48.88665278702936], [2.376204006470681, 48.88672398454957], [2.376162978727478, 48.886759186191064], [2.376198978642075, 48.88677769928453], [2.376322138070506, 48.88683821248478], [2.376478349652249, 48.88691654511773], [2.376638146135091, 48.886995058080885], [2.376794358662615, 48.887073390290396], [2.376954154739569, 48.887151902813535], [2.377110368223738, 48.8872302337003], [2.377270166622134, 48.88730874579757], [2.377426381041536, 48.8873870771602], [2.377586179034043, 48.88746558881741], [2.377742394399235, 48.88754391975653], [2.377902194723947, 48.887622430088626], [2.378058411035036, 48.887700760604275], [2.378218210943111, 48.8877792713956], [2.378374428200201, 48.88785760148779], [2.378534229076799, 48.88793611094688], [2.378690448643376, 48.888014440622676], [2.378850250467033, 48.88809295054806], [2.379006469615832, 48.88817127979327], [2.37905924590904, 48.888197207581214], [2.379093156450539, 48.888194968748365], [2.379110737658329, 48.888171320486414], [2.379321716745312, 48.88810305582327], [2.379520888785581, 48.88803952569351], [2.379731868153845, 48.8879712612058], [2.3799310391895983, 48.88790773038622], [2.379938450676277, 48.887901471706286], [2.379988888053118, 48.88774210931354], [2.380032598794942, 48.88759755358317], [2.380035365806967, 48.88759366034996], [2.380166279989031, 48.88748682400325], [2.380296600990506, 48.88738016789772], [2.380427514099861, 48.88727333124458], [2.380557834032069, 48.88716667483401], [2.380590533182292, 48.88713998839173], [2.380609872656811, 48.88713731222383], [2.380624938783051, 48.887116358575426], [2.380723150208191, 48.887036208021186], [2.380847409772576, 48.886933578582415], [2.380978320629105, 48.8868267412837], [2.381102577827085, 48.88672411155351], [2.381233488997146, 48.88661727396244], [2.38135774519239, 48.88651464394788], [2.381488653948688, 48.88640780605046], [2.381612910504851, 48.88630517575859], [2.381743818211047, 48.8861983375618], [2.381868073764488, 48.8860957069856], [2.38199898042049, 48.885988868489456], [2.382123233607686, 48.88588623762185], [2.382154149656492, 48.885845916760154]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 32, "zemmour_eric": 57.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-58", "circ_bv": "17", "num_bureau": 58, "roussel_fabien": 23.0, "nb_emargement": 1302.0, "nb_procuration": 77.0, "nb_vote_blanc": 14.0, "jadot_yannick": 149.0, "le_pen_marine": 46.0, "nb_exprime": 1283.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1636.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1302, "quartier_bv": "73", "geo_point_2d": [48.88646451363026, 2.3792420270815926], "melenchon_jean_luc": 633.0, "poutou_philippe": 9.0, "macron_emmanuel": 262.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3937893453381083, 48.851315094074195], [2.393812285630549, 48.8513211433233], [2.393914971538242, 48.85136099127171], [2.394029120615819, 48.85140770257953], [2.3940489389756783, 48.8514034258046], [2.394113252057404, 48.851298264742255], [2.394177363014991, 48.85119429065689], [2.394241675579443, 48.85108912950573], [2.394305786023495, 48.850985155332005], [2.394370098060226, 48.85087999499134], [2.394434207990749, 48.85077602072928], [2.394450110908407, 48.85077068172086], [2.394641499988703, 48.85080201322897], [2.394829537547103, 48.85083269972952], [2.395020927083303, 48.85086403062895], [2.395208966441099, 48.85089471743771], [2.395400355070478, 48.8509260477216], [2.395588394875496, 48.85095673393235], [2.395779783960766, 48.85098806360754], [2.395967824212997, 48.85101874922029], [2.396155864686687, 48.85104943453664], [2.396347254453692, 48.851080763301546], [2.396535295384997, 48.851111447120594], [2.396726685607771, 48.851142775276806], [2.396749394611617, 48.851150814859935], [2.396756571310889, 48.85114890664537], [2.396809089316728, 48.85107293158521], [2.396842669938567, 48.851025100676594], [2.396834242205251, 48.851012764953765], [2.396624530998103, 48.85097062700018], [2.396418620170814, 48.850927964638764], [2.396409151367133, 48.85092033713515], [2.39638900779119, 48.85079554488134], [2.396369021196448, 48.850673326447655], [2.396348877812089, 48.850548534159394], [2.396328891395684, 48.850426316591154], [2.396308903720743, 48.85030409810001], [2.396288760623175, 48.85017930576019], [2.3962687744997933, 48.85005708724208], [2.396248631593699, 48.849932294867855], [2.396228645648749, 48.84981007721518], [2.39620850293433, 48.84968528480652], [2.396188515825962, 48.84956306621386], [2.396168374665699, 48.8494382737776], [2.39617753703118, 48.84942880666246], [2.396368179435802, 48.849386027709684], [2.396542697348485, 48.84934609811786], [2.396544217547607, 48.84934568039136], [2.39668579895719, 48.849300009373636], [2.396822048179448, 48.84925441832913], [2.396824470455147, 48.849253416070546], [2.396934962661613, 48.84919756113162], [2.397054069724754, 48.849135942380535], [2.397056879319432, 48.84913397076764], [2.397188044107978, 48.84900715467571], [2.39731916396898, 48.84888169352793], [2.3973205045065242, 48.848880076947836], [2.39739888465928, 48.84876019312342], [2.397478186219542, 48.84863589895035], [2.3974792302153363, 48.84863293903931], [2.397487418989958, 48.848541459360845], [2.397504264586692, 48.8483757636334], [2.397512453287455, 48.84828428303277], [2.397477910342506, 48.848252196407294], [2.39746140441503, 48.84825568551512], [2.397344380211628, 48.8482660889056], [2.39715028628404, 48.84828241643436], [2.396964427544809, 48.84829893894646], [2.396770333386243, 48.848315264959055], [2.396584473036333, 48.848331787772835], [2.396390378636394, 48.848348113168576], [2.396204518059287, 48.84836463449234], [2.396010423407564, 48.84838096017052], [2.396009855844534, 48.848381018461374], [2.395840222314597, 48.84840093705538], [2.395642184265597, 48.848429906025515], [2.395472550435998, 48.84844982409738], [2.3954093400531082, 48.848459070220194], [2.395390404684311, 48.84845864177155], [2.395370607607886, 48.848466710557105], [2.395235780879847, 48.848486432757674], [2.3950450583012612, 48.8485146031178], [2.39484702074096, 48.84854357077568], [2.394656297743114, 48.84857174051469], [2.394458259760039, 48.84860070662832], [2.394267536342945, 48.84862887574612], [2.394069497916206, 48.84865784211405], [2.393878774079769, 48.848686010610756], [2.393680735219821, 48.848714976333696], [2.393490010964249, 48.84874314420924], [2.393291971671101, 48.84877210928724], [2.393138027432695, 48.84879484394465], [2.393107244512517, 48.84880119732447], [2.393123300629202, 48.84884058592351], [2.393081810668385, 48.84897179442114], [2.393041585480041, 48.849099578272465], [2.393000095107282, 48.849230786711246], [2.392959870881327, 48.84935857051229], [2.39291837873394, 48.849489778885314], [2.392878154107697, 48.84961756262914], [2.392837927921495, 48.84974534633787], [2.392796436521811, 48.849876554629944], [2.392756209935305, 48.85000433828145], [2.392714718123658, 48.8501355465146], [2.392705973739471, 48.85014217532802], [2.392508553520565, 48.85018884870055], [2.392310024139475, 48.85023501337554], [2.392301163082659, 48.85024182503447], [2.392279493293555, 48.8503181770325], [2.392251896871307, 48.850414502316916], [2.392256531574369, 48.85042268658379], [2.392279505065385, 48.85042607421966], [2.392481461434916, 48.85042325510733], [2.392687981126554, 48.85042048309958], [2.392701065560507, 48.85042640070091], [2.392732335290055, 48.85048313857719], [2.392763539286476, 48.850545406226324], [2.392773674003311, 48.850550918529414], [2.392796819496554, 48.850546686725274], [2.39296392354112, 48.85057018753728], [2.393175943400794, 48.85060057742779], [2.393343047778674, 48.85062407860849], [2.393555069451884, 48.85065446693337], [2.393722172810836, 48.85067796757655], [2.393934194913926, 48.850708356127406], [2.394101299989829, 48.85073185534754], [2.394111218234499, 48.85074381119659], [2.394030815295674, 48.850885205754814], [2.39395709301153, 48.85101188920769], [2.393883368995752, 48.85113857349312], [2.393802964829591, 48.85127996784806], [2.3937895331500982, 48.85130305000863], [2.3937893453381083, 48.851315094074195]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 76, "zemmour_eric": 88.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-49", "circ_bv": "06", "num_bureau": 49, "roussel_fabien": 24.0, "nb_emargement": 1471.0, "nb_procuration": 114.0, "nb_vote_blanc": 18.0, "jadot_yannick": 150.0, "le_pen_marine": 76.0, "nb_exprime": 1451.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 6, "nb_inscrit": 1796.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1471, "quartier_bv": "44", "geo_point_2d": [48.84965520821719, 2.3949259962487894], "melenchon_jean_luc": 505.0, "poutou_philippe": 11.0, "macron_emmanuel": 444.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323331753483813, 48.879022669472924], [2.323365775025564, 48.87900522489575], [2.323397441035874, 48.87887228059273], [2.323427473180431, 48.87874061218343], [2.323459138872362, 48.87860766783215], [2.323489172071785, 48.87847599938346], [2.32352083744534, 48.87834305498395], [2.32355086898455, 48.87821138558114], [2.323582534039633, 48.8780784411334], [2.323612566622025, 48.8779467725905], [2.32364423135874, 48.8778138280945], [2.323674263632573, 48.87768215950451], [2.323705928050925, 48.87754921496027], [2.3237359586527973, 48.877417546315506], [2.323767622764472, 48.87728460082378], [2.323797654421199, 48.87715293213959], [2.323829318202844, 48.87701998749891], [2.3238593495510242, 48.87688831876765], [2.32389101301432, 48.87675537407874], [2.323921042690576, 48.876623705292744], [2.323952705835532, 48.87649076055559], [2.323982736578309, 48.87635909083092], [2.324014399404926, 48.87622614604553], [2.324044428464129, 48.87609447716539], [2.324076090972414, 48.87596153233181], [2.324106121086462, 48.8758298634123], [2.324137783276418, 48.87569691853048], [2.324167813093612, 48.87556524866459], [2.324199474965244, 48.8754323037346], [2.324229503098901, 48.87530063471322], [2.324246654948643, 48.875248094145576], [2.324239595796119, 48.87524415566263], [2.324176938276406, 48.875235332862815], [2.3239687610690343, 48.875205099747205], [2.3237739950601313, 48.87517767511918], [2.323772309288, 48.87517751001059], [2.323574374946917, 48.875166353284484], [2.323372051158927, 48.87515377924314], [2.323174116993766, 48.875142621854984], [2.322971793406281, 48.875130046237636], [2.322773859417055, 48.87511888818742], [2.322571537370052, 48.87510631280027], [2.322373602193424, 48.87509515408032], [2.322171280347062, 48.875082577117176], [2.32197334670963, 48.87507141774287], [2.321771023677071, 48.875058840994534], [2.321770319520772, 48.87505878484324], [2.3215774957146342, 48.87503980792997], [2.321381518954458, 48.87502079304532], [2.321188696793866, 48.87500181551287], [2.320992720318483, 48.874982799991], [2.3207998984285823, 48.8749638227309], [2.320603922249828, 48.87494480567261], [2.320411100642245, 48.87492582778562], [2.320215124736672, 48.87490681098945], [2.320208214850765, 48.874904729349666], [2.320094913775097, 48.87484331121639], [2.319939939450985, 48.874755329862445], [2.319939674244967, 48.87475475727516], [2.319903644146542, 48.874732562827695], [2.319737270563662, 48.87464764343794], [2.319582297425955, 48.87455966160535], [2.319577401731925, 48.874558073423124], [2.319385546093475, 48.87452499051612], [2.319181732350673, 48.8744902330674], [2.318989875850102, 48.874457149516466], [2.318786064000025, 48.87442239139973], [2.318594208000768, 48.87438930721265], [2.318390396680198, 48.87435454842011], [2.318198541182062, 48.874321463596814], [2.317994729027789, 48.87428670412075], [2.317802875394201, 48.874253618669044], [2.317599063769454, 48.874218858517146], [2.3174888136501552, 48.87419984564685], [2.317465656560742, 48.87420128655666], [2.317446271839698, 48.87424019300085], [2.317357322876968, 48.87436249067416], [2.31726821959216, 48.87448789640839], [2.31717926978835, 48.87461019392196], [2.317090165651098, 48.8747355994955], [2.317001215006198, 48.874857896849285], [2.316912110016493, 48.87498330226215], [2.316912109465941, 48.87499093315561], [2.316954952484083, 48.875056196281264], [2.317012401418785, 48.875137095000355], [2.317027439827446, 48.87514209569185], [2.317203652664732, 48.87511868386212], [2.317384673399781, 48.87509220636173], [2.31756088591949, 48.87506879310582], [2.317741904936204, 48.875042315056234], [2.317918117126538, 48.87501890127343], [2.318099137151592, 48.87499242269023], [2.318275349000775, 48.87496900927977], [2.318456368682487, 48.87494252925593], [2.318472810483909, 48.874952608232505], [2.318449250674133, 48.8750590907873], [2.318412823333768, 48.87521241589616], [2.318389261908719, 48.875318899305604], [2.318352834210056, 48.8754722243601], [2.318329273919958, 48.87557870684112], [2.318340498353728, 48.87558897016139], [2.318547402593886, 48.875611749398225], [2.318741874340679, 48.87563417872781], [2.318753110831635, 48.875642276468916], [2.318771136181499, 48.87578231976952], [2.318787347397443, 48.8759177373195], [2.31880537292293, 48.87605778147924], [2.318821584313728, 48.876193198990734], [2.318839608674994, 48.87633324220334], [2.318855820240543, 48.876468659676384], [2.318872033253672, 48.876604077138374], [2.3188900578927782, 48.876744120291164], [2.318890956821368, 48.87674669571374], [2.31896391860691, 48.87686941178387], [2.319038218878277, 48.876992917831615], [2.319111181367575, 48.87711563288529], [2.319185482339404, 48.877239138814055], [2.319258445508852, 48.877361854649855], [2.319332747181152, 48.87748536045964], [2.319405711042414, 48.87760807617829], [2.319480013415197, 48.87773158186906], [2.3195529779684882, 48.877854297470535], [2.3196272796783433, 48.8779778030346], [2.319700244923565, 48.87810051851886], [2.319774548697335, 48.87822402397169], [2.319772281584093, 48.87825405972687], [2.319825462868991, 48.87826048727968], [2.319974060861239, 48.87834595545093], [2.320121630772781, 48.87843166940393], [2.320270229739462, 48.878517137194336], [2.320417800635193, 48.87860284986966], [2.320566400576312, 48.878688317279156], [2.320713972432767, 48.878774030475334], [2.32086257336016, 48.87885949660462], [2.321010146189078, 48.87894520942246], [2.321158748079091, 48.87903067607015], [2.3213063218804812, 48.87911638850951], [2.321454924756667, 48.879201853877014], [2.321602499530532, 48.879287565938], [2.32175110336946, 48.87937303182386], [2.321898679127618, 48.879458742607184], [2.321913493565333, 48.87946013145427], [2.322088487115446, 48.879405843952725], [2.322266042349801, 48.8793505103803], [2.322441035164094, 48.879296222358015], [2.3226185896384592, 48.8792408891565], [2.322793581728626, 48.87918659971421], [2.322971135454702, 48.87913126598433], [2.323146128160798, 48.879076976928296], [2.323323681138584, 48.87902164267009], [2.323331753483813, 48.879022669472924]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 192, "zemmour_eric": 185.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "8-9", "circ_bv": "01", "num_bureau": 9, "roussel_fabien": 14.0, "nb_emargement": 1359.0, "nb_procuration": 76.0, "nb_vote_blanc": 6.0, "jadot_yannick": 80.0, "le_pen_marine": 55.0, "nb_exprime": 1352.0, "nb_vote_nul": 1.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1660.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1359, "quartier_bv": "32", "geo_point_2d": [48.87667360972727, 2.3212087421623906], "melenchon_jean_luc": 164.0, "poutou_philippe": 6.0, "macron_emmanuel": 609.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.382664689821651, 48.859540007538186], [2.382679554821073, 48.85953160338826], [2.382753627320985, 48.85945727679779], [2.382874074253629, 48.85933704206846], [2.3828740866689992, 48.85933702954165], [2.382979800694581, 48.85923058303927], [2.383100246581228, 48.85911034805775], [2.383205961047652, 48.85900390134085], [2.383326405888368, 48.85888366610715], [2.383432118069986, 48.858777219161674], [2.383552563227604, 48.85865698368279], [2.383658274487253, 48.85855053651587], [2.383664456729465, 48.85853857287062], [2.383620600780727, 48.85851916841621], [2.383441651587419, 48.858474466349236], [2.383260947125084, 48.85842930888887], [2.383081998548974, 48.85838460628044], [2.38290129471011, 48.858339448273384], [2.382722346751202, 48.858294745123516], [2.382541643546269, 48.858249585670414], [2.38236269619391, 48.85820488287842], [2.382181994975269, 48.8581597228856], [2.382003048240112, 48.85811501955219], [2.381822346282052, 48.858069859005596], [2.381643400164003, 48.85802515513071], [2.381462698829336, 48.85797999403741], [2.381455414029523, 48.85796745995096], [2.3815500915493, 48.85784637910924], [2.381643698238117, 48.85772729009922], [2.381738374894608, 48.857606208183014], [2.381831980710932, 48.85748711989924], [2.381926656493472, 48.85736603780789], [2.382020261447991, 48.857246949351065], [2.382114936356591, 48.85712586708455], [2.382208540459977, 48.85700677755541], [2.382303215857521, 48.85688569512078], [2.382396817725583, 48.85676660631083], [2.3823971477177173, 48.85675877379112], [2.382353591555781, 48.85669492998042], [2.38229470466842, 48.856609640292895], [2.382302169147561, 48.85660207573339], [2.382296502423087, 48.856583079223235], [2.382261932095381, 48.856564085495016], [2.382243996695549, 48.856564370631055], [2.382090112991911, 48.85665755801715], [2.381952196684389, 48.8567411066157], [2.381814281297344, 48.856824655056094], [2.381660394693581, 48.856917841860664], [2.381522478370833, 48.85700138995144], [2.381368592086193, 48.85709457637299], [2.381230673464858, 48.85717812410711], [2.381076786136256, 48.85727131013855], [2.380938867942088, 48.85735485753012], [2.380784978206837, 48.857448043164425], [2.380647059076949, 48.857531590206364], [2.380493169660612, 48.85762477545762], [2.380411762329498, 48.85767836790747], [2.380396324911662, 48.857680136135635], [2.380233415286944, 48.85762946054622], [2.380073325481995, 48.857579280490384], [2.379910416486765, 48.85752860445666], [2.379750328665664, 48.85747842397123], [2.379735263968665, 48.85747750859321], [2.379723435604674, 48.85748683917224], [2.379647467311701, 48.857626393791506], [2.379573109778192, 48.85776479114379], [2.379497140677318, 48.8579043456327], [2.379422780985036, 48.85804274284982], [2.379346812439053, 48.858182297215386], [2.379272451950779, 48.85832069430449], [2.37926883108445, 48.85832430888548], [2.37912355636442, 48.858412455707594], [2.378976635225372, 48.858501128016876], [2.378831358155073, 48.858589274463185], [2.378684436030964, 48.858677945500276], [2.3785391593254, 48.85876609248417], [2.378392236205403, 48.8588547631484], [2.3782469571602762, 48.858942908857166], [2.3781000330336513, 48.85903158004777], [2.377954753001251, 48.85911972538775], [2.377807827889357, 48.859208395306226], [2.377662548232517, 48.859296540284454], [2.377515622114077, 48.859385210729336], [2.377370340106812, 48.85947335533174], [2.377223413003202, 48.85956202450442], [2.377078129997897, 48.8596501696373], [2.376931201898266, 48.85973883843709], [2.376921422847988, 48.859756686312366], [2.37693441092214, 48.85976706224386], [2.377018179545685, 48.85979242194424], [2.377141293562373, 48.85983004391229], [2.377173344476279, 48.859828132337746], [2.377182982325233, 48.859808521889185], [2.37736439630812, 48.85974922680092], [2.3775418455312423, 48.859691360560404], [2.37772326006071, 48.859632064928945], [2.377900708496862, 48.85957419725087], [2.378082122199224, 48.859514901968474], [2.378259569837759, 48.85945703375216], [2.378440981360918, 48.859397737912396], [2.378618428201838, 48.8593398691579], [2.378799840271467, 48.85928057277493], [2.378977286314767, 48.859222703482196], [2.379158696205096, 48.85916340654189], [2.379336141450877, 48.85910553671095], [2.379343384122402, 48.8590994955911], [2.3793846488140042, 48.85898140324197], [2.37942716822268, 48.8588605986482], [2.379468431161544, 48.85874250713698], [2.379510950180904, 48.85862170248747], [2.37952875388861, 48.85861525474913], [2.379731696246864, 48.85866241814974], [2.379927570176603, 48.85870755072426], [2.380130513255363, 48.858754713444604], [2.380326387877541, 48.85879984536261], [2.380529333039727, 48.85884700740974], [2.380725208354238, 48.858892138671195], [2.380730477056832, 48.85889436843648], [2.380844903052866, 48.85897243384522], [2.380956955198513, 48.859049913973564], [2.380961465358523, 48.859051977022546], [2.381126689065468, 48.85909851930803], [2.381292830743834, 48.859145029234774], [2.381458055031089, 48.859191571958114], [2.381624197302081, 48.85923808142096], [2.381789422191102, 48.859284622783605], [2.381955565054613, 48.85933113178242], [2.382120790524052, 48.859377673583], [2.38228693397998, 48.85942418211786], [2.382452160051269, 48.85947072255769], [2.382618304099711, 48.859517230628676], [2.382664689821651, 48.859540007538186]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 55, "zemmour_eric": 60.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "11-1", "circ_bv": "07", "num_bureau": 1, "roussel_fabien": 28.0, "nb_emargement": 1443.0, "nb_procuration": 125.0, "nb_vote_blanc": 15.0, "jadot_yannick": 176.0, "le_pen_marine": 52.0, "nb_exprime": 1424.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1817.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1443, "quartier_bv": "43", "geo_point_2d": [48.858442933980164, 2.3808597599704533], "melenchon_jean_luc": 504.0, "poutou_philippe": 6.0, "macron_emmanuel": 476.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.405024907974186, 48.86510827984656], [2.405047705852851, 48.86511550695448], [2.40514578354635, 48.86522169743173], [2.405242317769014, 48.865325807169135], [2.405340396255129, 48.86543199746678], [2.405436931256411, 48.86553610702742], [2.405535010535152, 48.86564229714538], [2.405631546315056, 48.86574640652929], [2.405729626386431, 48.86585259646761], [2.40582616294507, 48.865956705674755], [2.405924243809087, 48.86606289543338], [2.406020779783145, 48.86616700445701], [2.406022014250995, 48.86616813026001], [2.406158129937363, 48.86627395906101], [2.406297344078211, 48.866382113464546], [2.406312514767361, 48.866398273384874], [2.406320910058477, 48.86639855964851], [2.406469580564049, 48.86649732398577], [2.406616486946057, 48.86659519443177], [2.40676515857318, 48.866693958384325], [2.406912067438388, 48.866791827557606], [2.407060738813799, 48.866890592017974], [2.407207648788738, 48.86698846081107], [2.407356322659092, 48.86708722399421], [2.4075032323704972, 48.86718509329965], [2.40765190736243, 48.86728385609805], [2.4077988195468363, 48.86738172503], [2.407818306107718, 48.86738164607453], [2.4079549423407283, 48.86728838263595], [2.4080861869627093, 48.86719760871848], [2.408222822243633, 48.86710434405928], [2.408354065924949, 48.86701357073225], [2.408365169017423, 48.867010822381644], [2.408563281773913, 48.86702275455648], [2.408765046829484, 48.8670349085943], [2.408963158406119, 48.86704684010027], [2.409164923658367, 48.86705899256441], [2.409363036771127, 48.86707092431426], [2.409564800846791, 48.867083076097295], [2.409762914152915, 48.86709500628574], [2.409964679768086, 48.86710715830045], [2.410162791894224, 48.86711908782002], [2.410364557706122, 48.86713123826108], [2.410562671368376, 48.86714316802446], [2.410764437366804, 48.867155317791244], [2.410962549859227, 48.867167245986465], [2.4111643160340073, 48.86717939597813], [2.411362430072706, 48.86719132351796], [2.411564196444163, 48.86720347193597], [2.411611570887943, 48.86720632460886], [2.411636122114187, 48.86721187819719], [2.41164430614688, 48.867207950552164], [2.41179504456202, 48.86721702560831], [2.411981056635425, 48.8672282055531], [2.412179169683591, 48.86724013173379], [2.41236518329523, 48.8672513101888], [2.41256329650896, 48.8672632366327], [2.412749308922375, 48.86727441448382], [2.412947423685297, 48.867286339399044], [2.413133436253497, 48.86729751755222], [2.413331551192108, 48.86730944183142], [2.413517563935347, 48.86732061848808], [2.413715679039718, 48.86733254303047], [2.413901691947857, 48.86734371908993], [2.413925986926249, 48.86734505575924], [2.41393358552271, 48.867337413528574], [2.413932284666378, 48.867295521438365], [2.413927067568896, 48.867163339212006], [2.413923568851816, 48.86705060006091], [2.413922758264937, 48.86702450362135], [2.413917542592027, 48.866892320469596], [2.413914738994105, 48.866802009672526], [2.413912687551996, 48.86673596127984], [2.413907471923308, 48.86660377899246], [2.413903801589801, 48.8664855817621], [2.413898584655822, 48.86635339853844], [2.413894915713125, 48.86623520218703], [2.4138896988266643, 48.86610301893309], [2.413885512628671, 48.86596816068298], [2.413880295792811, 48.86583597739675], [2.413876373767786, 48.86570962904684], [2.413871156981005, 48.86557744572932], [2.413867234997608, 48.86545109734962], [2.413862019623002, 48.86531891400749], [2.41385809768123, 48.865192565597965], [2.413825171154466, 48.86516128272067], [2.413823752561074, 48.86516124339657], [2.4136156739971373, 48.86515975824254], [2.41340570919473, 48.865157999975565], [2.413197630645438, 48.86515651499407], [2.412987665870217, 48.865154755993686], [2.412779587345904, 48.86515327028537], [2.412569623960974, 48.86515151055834], [2.412361544108599, 48.86515002321723], [2.412151580750781, 48.86514826275681], [2.411943502276261, 48.86514677559492], [2.411733537582671, 48.86514501439441], [2.411729283245859, 48.86514452762576], [2.411536190180189, 48.86510077613059], [2.411347030935629, 48.86505755449346], [2.411153938513355, 48.865013802378115], [2.410964779891568, 48.86497058103276], [2.410775621583653, 48.86492735938674], [2.410582530123842, 48.864883606344364], [2.410393372448867, 48.86484038409082], [2.410200281642644, 48.86479662952902], [2.410011124600618, 48.864753406667944], [2.409818034427629, 48.86470965238531], [2.409628878018554, 48.86466642891671], [2.409435788488985, 48.86462267401396], [2.409424585869497, 48.864618139124204], [2.409405601690046, 48.8646164401231], [2.409212512533282, 48.86457268485815], [2.40903718327491, 48.8645330729964], [2.408861854272958, 48.86449346177563], [2.408668766028695, 48.86444970562858], [2.408493437587441, 48.86441009386517], [2.408300349971719, 48.86436633622117], [2.408293160394054, 48.864362535139854], [2.408196917243647, 48.86425906416731], [2.408084875302271, 48.864144728284714], [2.407988632957804, 48.864041258023605], [2.407876591941969, 48.86392692192352], [2.407780350423665, 48.86382345057527], [2.407700602599017, 48.86374206762744], [2.407686407958135, 48.86373168733809], [2.407627432750471, 48.863757961961234], [2.407459673054499, 48.8638372024631], [2.407290477088948, 48.863917076843244], [2.407122716367986, 48.86399631686145], [2.406953519369059, 48.86407619075377], [2.406785757633445, 48.864155429388966], [2.40661655960114, 48.86423530279343], [2.406448796830394, 48.86431454184423], [2.406279597764706, 48.86439441476086], [2.406111833969162, 48.86447365332792], [2.405942635233064, 48.86455352576347], [2.4057748690598, 48.864632762940765], [2.40560566929032, 48.864712634888456], [2.405603973642289, 48.86471358246529], [2.405461955309643, 48.86480543170489], [2.405318427627587, 48.864899894846296], [2.405176408273329, 48.86499174463089], [2.405032879560197, 48.865086207413945], [2.405029613624037, 48.86508965453485], [2.405024907974186, 48.86510827984656]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 41, "zemmour_eric": 64.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-32", "circ_bv": "15", "num_bureau": 32, "roussel_fabien": 23.0, "nb_emargement": 1151.0, "nb_procuration": 70.0, "nb_vote_blanc": 12.0, "jadot_yannick": 77.0, "le_pen_marine": 83.0, "nb_exprime": 1137.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1534.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1152, "quartier_bv": "78", "geo_point_2d": [48.865831022540966, 2.4095774374517167], "melenchon_jean_luc": 504.0, "poutou_philippe": 4.0, "macron_emmanuel": 290.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.361944752834472, 48.89322343234297], [2.361939798706475, 48.89319275530751], [2.361910125686837, 48.89305812090522], [2.361879994189246, 48.89292140210775], [2.361850321478896, 48.89278676765733], [2.361820190295477, 48.89265004881097], [2.361790517883287, 48.89251541521164], [2.361760387013932, 48.89237869631642], [2.361730714922143, 48.89224406176971], [2.361700583003057, 48.8921073428183], [2.361712298229492, 48.892097134115254], [2.361914802800122, 48.8920795389439], [2.362117090152314, 48.892061962058506], [2.362319594460368, 48.89204436530279], [2.362521880175461, 48.8920267877258], [2.362724385562691, 48.892009191191555], [2.362926671004473, 48.89199161293018], [2.363129174765404, 48.89197401480427], [2.3633314612975482, 48.89195643586585], [2.363343275352733, 48.89194681568533], [2.363328332447605, 48.89182138072963], [2.36331352324289, 48.89169706342562], [2.363298580492109, 48.89157162753844], [2.363283770065688, 48.89144731019517], [2.363268827447262, 48.891321875174945], [2.363254018526689, 48.891197557806954], [2.363239076062607, 48.89107212185522], [2.3632242672841, 48.89094780445524], [2.363209324952366, 48.89082236937049], [2.363194516315922, 48.890698051938514], [2.363179574138529, 48.89057261592224], [2.363164765644147, 48.89044829845832], [2.363149823610094, 48.890322862409796], [2.363135013894131, 48.890198544906625], [2.363120071992423, 48.89007310972508], [2.363105263782162, 48.889948792197224], [2.363099555942766, 48.88991235994054], [2.363076513383155, 48.889912786862766], [2.363075447377302, 48.889912858534295], [2.362882760702642, 48.889930962952626], [2.362689623905901, 48.889948615903336], [2.362496936975681, 48.88996671880092], [2.362303801268239, 48.88998437203531], [2.362111112707931, 48.89000247430417], [2.361917976737061, 48.890020126915694], [2.361725287910308, 48.89003822856311], [2.361532151687048, 48.89005587965251], [2.361339463946469, 48.890073981585054], [2.361146326096066, 48.89009163204428], [2.360953638100193, 48.89010973245611], [2.360760499975358, 48.89012738319174], [2.360567811712965, 48.89014548298213], [2.360374673335784, 48.890163132195596], [2.360181984796037, 48.890181232263785], [2.359988847519221, 48.89019888086168], [2.35989632354429, 48.890197804433924], [2.359889095507885, 48.89021498693263], [2.3598884901627493, 48.89034299153579], [2.359883294088604, 48.89047067300808], [2.359882688726233, 48.890598677581416], [2.3598774912485903, 48.8907263590164], [2.359876885868982, 48.890854363559846], [2.359871689715248, 48.89098204497214], [2.359871082943684, 48.891110050377726], [2.35986588676126, 48.89123773086071], [2.359865281336223, 48.891365736243706], [2.359860083750381, 48.89149341668945], [2.359859478308003, 48.891621422042554], [2.359854282035033, 48.8917491033648], [2.359853676586577, 48.89187710778879], [2.359848478910072, 48.89200478907371], [2.359848398552068, 48.892005556664785], [2.359830210331504, 48.892116245955144], [2.359808424494767, 48.89224343563369], [2.359790237469925, 48.892354124901246], [2.359768451436009, 48.89248131454493], [2.359750264243098, 48.89259200378242], [2.359737836415816, 48.89266455661456], [2.359717757023316, 48.89271427793569], [2.359728128386498, 48.89272167184924], [2.359718769962127, 48.89277630862229], [2.35969903863419, 48.892900085477834], [2.359677252149047, 48.89302727504158], [2.359657522002181, 48.89315105096999], [2.359635735310504, 48.89327824049705], [2.359631487840821, 48.8933048799405], [2.359632651744564, 48.89330794385438], [2.359694287031265, 48.893312183680464], [2.359905197291447, 48.89330701059437], [2.360124450470077, 48.893300502159306], [2.360335362003918, 48.89329532832279], [2.360554615079576, 48.89328881910009], [2.360765526523341, 48.893283644505864], [2.360984779484977, 48.893277135394776], [2.361195690838656, 48.893271960042945], [2.361363633224144, 48.89326697245551], [2.361414943708337, 48.89326544924492], [2.361429694579939, 48.89326953078039], [2.361455188779358, 48.89325982546266], [2.361652936774793, 48.89325223008931], [2.361883673438917, 48.893228581945316], [2.361932886619072, 48.89322669120614], [2.361944752834472, 48.89322343234297]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 30, "zemmour_eric": 48.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "18-61", "circ_bv": "17", "num_bureau": 61, "roussel_fabien": 23.0, "nb_emargement": 1338.0, "nb_procuration": 92.0, "nb_vote_blanc": 14.0, "jadot_yannick": 107.0, "le_pen_marine": 77.0, "nb_exprime": 1322.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1763.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1338, "quartier_bv": "72", "geo_point_2d": [48.89151343425908, 2.361356193074261], "melenchon_jean_luc": 648.0, "poutou_philippe": 11.0, "macron_emmanuel": 315.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.341910006096793, 48.88243376212146], [2.341887883568617, 48.88242853051841], [2.34175142893003, 48.882402290618224], [2.341546737948458, 48.88236075269356], [2.341366029098988, 48.882326001401914], [2.341161338713195, 48.88228446371477], [2.340980629022197, 48.88224971183152], [2.340775939255145, 48.8822081725833], [2.34059523007457, 48.88217342101521], [2.340390542278217, 48.88213188111275], [2.340209833619652, 48.882097128960545], [2.340005145067045, 48.882055588388795], [2.339824436930396, 48.88202083565249], [2.3398178379111663, 48.88202066526357], [2.339754985151782, 48.88202930298436], [2.339678621867769, 48.882039981384885], [2.339627516030271, 48.8820312331959], [2.339602101024591, 48.8820506085051], [2.339487609272295, 48.88206661814093], [2.339301276146337, 48.882095420826], [2.339110422045632, 48.882122108218354], [2.33892408716041, 48.882150909408146], [2.338733232663063, 48.88217759619789], [2.338546898722815, 48.88220639770601], [2.3383560424653, 48.88223308388555], [2.338169708129344, 48.88226188390591], [2.337978852838631, 48.88228856949042], [2.337854658386668, 48.88230776510576], [2.337839576141004, 48.88232283902547], [2.337851268236495, 48.88234328074599], [2.337937704625321, 48.882454931428605], [2.338033672855814, 48.8825771092508], [2.338120110023807, 48.88268875977808], [2.338216079101713, 48.88281093832735], [2.338302517060309, 48.88292258779989], [2.33839848699717, 48.883044766177036], [2.338484925734848, 48.88315641549417], [2.338580896530573, 48.8832785936991], [2.3386673360474433, 48.883390242860806], [2.338763307702043, 48.883512420893574], [2.338849747986696, 48.88362407079909], [2.3389457205116, 48.88374624776039], [2.339004172066557, 48.883821745496334], [2.339026877664354, 48.88384197987272], [2.33907735662409, 48.88382805091994], [2.339208709769609, 48.88377647000137], [2.339426905013426, 48.88368424442822], [2.339558257449994, 48.88363266311944], [2.339578826367677, 48.88363967084729], [2.3395954406512818, 48.883776255649416], [2.339612453781432, 48.88391085960878], [2.339629068239755, 48.884047444372555], [2.339646081545423, 48.88418204829394], [2.3396621955403942, 48.88419013850689], [2.339734052021726, 48.88418120874522], [2.339784156378024, 48.88417511059553], [2.33979751776866, 48.884176054824806], [2.339813752678797, 48.884171059534744], [2.339952335116154, 48.88415419404088], [2.340128874879077, 48.88412914054839], [2.340317562693813, 48.88410617632339], [2.340494103481822, 48.884081122298774], [2.340682790950124, 48.884058158396506], [2.340859330036155, 48.88403310382479], [2.341048017180796, 48.88401013844664], [2.341224555928217, 48.8839850833353], [2.341413242726423, 48.88396211827987], [2.341589781146702, 48.883937061729675], [2.341599663452027, 48.883931457490576], [2.341647240606338, 48.88384866059832], [2.341738066549255, 48.88369059551773], [2.3417856432522, 48.88360779945161], [2.341786002523485, 48.88360213924398], [2.341754135698659, 48.88352866773625], [2.341722773854201, 48.88345635552987], [2.341722332346396, 48.8834528789894], [2.341743066310867, 48.88333109325447], [2.341763586631963, 48.88321055909576], [2.341784106846702, 48.88309002581962], [2.341804840533607, 48.88296823913454], [2.341825360557381, 48.88284770582478], [2.341846092687791, 48.88272591909823], [2.341866612520605, 48.88260538575483], [2.34188734581025, 48.88248359990107], [2.341910006096793, 48.88243376212146]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 50, "zemmour_eric": 74.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-24", "circ_bv": "18", "num_bureau": 24, "roussel_fabien": 22.0, "nb_emargement": 1319.0, "nb_procuration": 102.0, "nb_vote_blanc": 14.0, "jadot_yannick": 134.0, "le_pen_marine": 53.0, "nb_exprime": 1305.0, "nb_vote_nul": 0.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1634.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1319, "quartier_bv": "70", "geo_point_2d": [48.88302149805283, 2.3400776748590633], "melenchon_jean_luc": 430.0, "poutou_philippe": 6.0, "macron_emmanuel": 472.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352948138053721, 48.85132692070365], [2.352930982751185, 48.85128229095008], [2.352859802059771, 48.85113640015779], [2.352791040703701, 48.85099358199656], [2.352722279724638, 48.85085076377754], [2.35265110020696, 48.85070487280447], [2.352645818841353, 48.85070020445264], [2.352475699079734, 48.850623454701214], [2.352306849827984, 48.85054660275554], [2.352136731067049, 48.850469852511544], [2.351967882812799, 48.850393000076906], [2.351797765052543, 48.8503162493404], [2.351628917795993, 48.850239396416825], [2.351458801036416, 48.85016264518774], [2.351289953414771, 48.85008579176784], [2.351119837667067, 48.85000903914694], [2.3509509924056102, 48.849932185245464], [2.350780877647486, 48.84985543303138], [2.350612033383621, 48.849778578640965], [2.350607488697422, 48.84977507166443], [2.35052077387505, 48.8496560108765], [2.350436025690591, 48.849539480686424], [2.3503512765225762, 48.84942295041666], [2.35026456422286, 48.849303890312065], [2.350179815821392, 48.84918735989625], [2.350093104316735, 48.84906829874289], [2.350008356681705, 48.848951768180946], [2.349921644598126, 48.84883270687078], [2.349921935902059, 48.848824539587866], [2.350004164752707, 48.8487239893775], [2.350089331439164, 48.84861982345508], [2.350171561017572, 48.84851927221933], [2.35025672703497, 48.84841510615859], [2.350338954593512, 48.84831455568117], [2.35042411994166, 48.84821038948214], [2.350506348228161, 48.848109837979315], [2.350591512895954, 48.84800567254126], [2.350582759626143, 48.847987131524235], [2.3505541656757503, 48.84798299934921], [2.350358783214383, 48.84792312685872], [2.350164171739971, 48.84786473497766], [2.349968791532686, 48.84780486185132], [2.349774180948115, 48.84774646843044], [2.349578801621058, 48.84768659556016], [2.349384191915218, 48.847628201498715], [2.349188812116982, 48.84756832797783], [2.348994204652299, 48.84750993328326], [2.348798825745516, 48.84745005911914], [2.348604219159466, 48.84739166378402], [2.348550332078651, 48.84737799510924], [2.348534590498914, 48.84739683550369], [2.348507372674637, 48.84744954711467], [2.348485348600054, 48.84749436454827], [2.348484718426787, 48.847498337182195], [2.348513951216733, 48.84765909397269], [2.348538214324901, 48.847810374110324], [2.348538278260374, 48.847811691119475], [2.34853024320049, 48.8479265197394], [2.34852275307844, 48.8480464803556], [2.348514717936904, 48.84816130984958], [2.348507227745371, 48.84828127043952], [2.348499192533424, 48.84839609990827], [2.348491702272407, 48.84851606047194], [2.34847716708255, 48.84853974595716], [2.34849901014381, 48.84855783947289], [2.3485503196793323, 48.848675759381635], [2.348598827037832, 48.84878969693065], [2.348650137027604, 48.84890761677196], [2.348698646182822, 48.84902155426425], [2.348749956615513, 48.849139474937516], [2.34879846485337, 48.849253411458896], [2.348849777102796, 48.849371332072174], [2.348898285774721, 48.84948526852934], [2.348946796010206, 48.84959920586189], [2.348998107584423, 48.849717125468246], [2.348997519615484, 48.84972317494189], [2.348925122099005, 48.84983377064396], [2.348848578197933, 48.84993252437902], [2.348776180063274, 48.85004312086943], [2.348699635572444, 48.85014187449062], [2.348698810975178, 48.850148753678184], [2.348756421699648, 48.85026554565084], [2.348784315330437, 48.85035295934493], [2.34884192646106, 48.8504697521543], [2.348907154814169, 48.850595782292224], [2.348964766499794, 48.85071257411763], [2.349029995454042, 48.85083860416107], [2.349087607683437, 48.850955395901885], [2.349152837238628, 48.85108142585085], [2.349210451374522, 48.8511982175144], [2.3492756801681463, 48.851324247361454], [2.3492766106510983, 48.8513256904918], [2.349374687547127, 48.85144722226218], [2.349464330993186, 48.85155605415221], [2.349562408760592, 48.85167758574363], [2.349652052995102, 48.851786417470464], [2.349750131633897, 48.8519079488828], [2.349839776656665, 48.85201678044645], [2.34987324567205, 48.852060931775874], [2.349910885797012, 48.85205345579655], [2.350090189170987, 48.85200771465625], [2.350262736834881, 48.851954318124754], [2.350263541017099, 48.85195408955872], [2.350442845102243, 48.851908347893264], [2.350624793917456, 48.8518611975328], [2.350804096003222, 48.85181545531479], [2.35098604415591, 48.85176830530036], [2.351165345616135, 48.851722561637914], [2.351347293117604, 48.85167541107024], [2.351526593929884, 48.8516296677619], [2.351708540791319, 48.85158251574167], [2.351709211917366, 48.85158235569529], [2.351888513465569, 48.85153661094893], [2.352081219748975, 48.851494217572345], [2.352260519304714, 48.851448472257516], [2.352453224959431, 48.85140607827845], [2.352454818833121, 48.851405797312154], [2.35263159766474, 48.85137455429362], [2.352843728120003, 48.851346086076575], [2.352928203402632, 48.85133447000873], [2.352948138053721, 48.85132692070365]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 104, "zemmour_eric": 108.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-23", "circ_bv": "02", "num_bureau": 23, "roussel_fabien": 20.0, "nb_emargement": 1201.0, "nb_procuration": 59.0, "nb_vote_blanc": 17.0, "jadot_yannick": 83.0, "le_pen_marine": 68.0, "nb_exprime": 1181.0, "nb_vote_nul": 3.0, "arr_bv": "05", "arthaud_nathalie": 4, "nb_inscrit": 1487.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1201, "quartier_bv": "17", "geo_point_2d": [48.85003737346792, 2.3501838201793817], "melenchon_jean_luc": 278.0, "poutou_philippe": 2.0, "macron_emmanuel": 466.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4080067874618543, 48.85302325576382], [2.408019283161785, 48.853027942039226], [2.408073293446138, 48.853037663197604], [2.408268149777766, 48.8530726889379], [2.408461352027164, 48.853107462457544], [2.408656208890849, 48.85314248666439], [2.4088494116578962, 48.853177259555295], [2.4090442690333163, 48.85321228402729], [2.409237472328305, 48.8532470553901], [2.409432328862775, 48.853282079221245], [2.409625532665406, 48.85331685085462], [2.409676129924555, 48.85332594468569], [2.409687291204269, 48.85333066826916], [2.409704187864009, 48.85333125256451], [2.409848449062681, 48.853357181003915], [2.410069593913093, 48.853397046930205], [2.41026445293053, 48.85343206940824], [2.410485597054347, 48.85347193455624], [2.410618705037968, 48.85349585732231], [2.410629981470563, 48.85350089345768], [2.410647207537503, 48.853501759838686], [2.410708960506816, 48.85351285886282], [2.410906541125752, 48.85354904125953], [2.411101401274089, 48.853584062369805], [2.41129898243551, 48.85362024411622], [2.411493843123923, 48.85365526368586], [2.411552500011179, 48.853666005291345], [2.4115665923870733, 48.853666319217545], [2.411580929907921, 48.85363068380017], [2.411613896706528, 48.85352378928894], [2.411646475766589, 48.853418151041005], [2.4116790533420263, 48.8533125118681], [2.411712019738048, 48.85320561729926], [2.41171217728456, 48.85320264752541], [2.411690748378061, 48.85309543243974], [2.411669354465494, 48.8529883847904], [2.411647927097991, 48.852881169683066], [2.411626533351208, 48.85277412290474], [2.411626526772687, 48.852771808847514], [2.411652026506748, 48.852639888214995], [2.41167755942453, 48.85250779325144], [2.411703060252805, 48.85237587348273], [2.411728592922006, 48.85224377757763], [2.411754092129129, 48.85211185776], [2.411779625892202, 48.85197976271866], [2.411805124851089, 48.851847841959554], [2.41183065835543, 48.85171574687597], [2.411856157055932, 48.85158382607467], [2.411881690301543, 48.85145173094882], [2.411907188743665, 48.851319810105345], [2.411932720367823, 48.85118771493056], [2.411958219904149, 48.851055794950895], [2.411983751269592, 48.850923699733876], [2.412009249194969, 48.850791778806055], [2.412034781664421, 48.8506596835535], [2.412060279331429, 48.85052776258348], [2.412085811542167, 48.850395667288694], [2.412111308950811, 48.85026374627648], [2.412136840902841, 48.850131650939474], [2.412162338042978, 48.84999973078444], [2.412187868383752, 48.849867634499205], [2.412213366628228, 48.84973571430868], [2.412238896700163, 48.84960361888055], [2.412264393333739, 48.84947169774181], [2.412289924509667, 48.84933960227815], [2.412315420884894, 48.84920768109729], [2.412340951802028, 48.8490755855914], [2.41233853241399, 48.84906922967977], [2.412222233017007, 48.84896148351754], [2.412101593097507, 48.848854769042646], [2.412092244394048, 48.84884091715108], [2.412066564552273, 48.848844002548454], [2.411912147600009, 48.8488808590398], [2.4117426502150723, 48.848921486815534], [2.411557611645155, 48.84896565151263], [2.411388113708031, 48.84900627878304], [2.411381061181591, 48.84900667847363], [2.411156324879336, 48.84898013264392], [2.410937492294375, 48.84895393292855], [2.4109360096724233, 48.84895381051189], [2.41074514669346, 48.848945008513816], [2.4105598728986, 48.84893639473088], [2.410374599154816, 48.8489277815603], [2.410183736365912, 48.84891897866646], [2.409998462756398, 48.848910364013975], [2.4098076000846422, 48.8489015614193], [2.409793420062385, 48.84890837870915], [2.40977362628861, 48.84896133834882], [2.409755331777999, 48.84901198505071], [2.409747056106153, 48.849020513251105], [2.409751739617758, 48.84902991300229], [2.409705564276427, 48.84915774034215], [2.409659720707269, 48.849284650149926], [2.409613544914506, 48.849412477424984], [2.40956769953447, 48.84953938716177], [2.409521523290263, 48.84966721437209], [2.40947567882461, 48.84979412405125], [2.409429500766365, 48.84992195119011], [2.409383655852502, 48.85004886080497], [2.409337478705395, 48.85017668788574], [2.409291631980717, 48.85030359742958], [2.409245454382149, 48.85043142444558], [2.40919960858215, 48.850558333032524], [2.409153430521922, 48.850686160883065], [2.40910758291098, 48.85081306939895], [2.409061404399275, 48.850940897184735], [2.40901555770282, 48.851067805643034], [2.408969378749836, 48.85119563246469], [2.4089235302321113, 48.85132254175127], [2.408877350827741, 48.85145036850815], [2.4088315032245, 48.85157727773712], [2.4087853233685372, 48.851705104429215], [2.408739473954403, 48.85183201358712], [2.408693293646938, 48.851959840214434], [2.408647445147289, 48.85208674931475], [2.408601595061561, 48.85221365837628], [2.4085554140776493, 48.8523414849065], [2.408554125599116, 48.85234370083031], [2.408465487439231, 48.85245110006062], [2.4083760958052203, 48.852559412827546], [2.408287456911475, 48.85266681190515], [2.40819806453736, 48.852775124518075], [2.408109424909746, 48.852882523442965], [2.408020031795518, 48.85299083590185], [2.4080067874618543, 48.85302325576382]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 24, "zemmour_eric": 61.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "20-54", "circ_bv": "08", "num_bureau": 54, "roussel_fabien": 22.0, "nb_emargement": 1091.0, "nb_procuration": 22.0, "nb_vote_blanc": 14.0, "jadot_yannick": 34.0, "le_pen_marine": 69.0, "nb_exprime": 1069.0, "nb_vote_nul": 8.0, "arr_bv": "20", "arthaud_nathalie": 10, "nb_inscrit": 1588.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1091, "quartier_bv": "80", "geo_point_2d": [48.85127465755602, 2.410465298726831], "melenchon_jean_luc": 615.0, "poutou_philippe": 11.0, "macron_emmanuel": 186.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.344799167345059, 48.86164017532197], [2.34478645417646, 48.86161772994517], [2.344754261595293, 48.86155669392002], [2.344675891330682, 48.86140690828862], [2.344631187394768, 48.861322151751], [2.344621266966182, 48.86131630921903], [2.344417007992169, 48.86128627459945], [2.344229881292964, 48.861260153041385], [2.344223609203429, 48.86126020680825], [2.344042545169462, 48.861290085512344], [2.343864188244996, 48.861319291683266], [2.343685831120562, 48.86134849758759], [2.343504766471349, 48.86137837547565], [2.3433264103060543, 48.86140758085027], [2.343145343871162, 48.86143745908478], [2.342966987313464, 48.86146666302288], [2.342785920467018, 48.86149654071196], [2.342607563494345, 48.86152574501216], [2.342426497610788, 48.86155562126408], [2.342425103717467, 48.86155590409444], [2.342233826419697, 48.86160222968069], [2.3420444898212223, 48.8616481204537], [2.341853211846459, 48.86169444542775], [2.341663875940498, 48.86174033560228], [2.341472595925852, 48.86178665995665], [2.341283259349515, 48.861832549525175], [2.341091980020884, 48.86187887327488], [2.3409026427741813, 48.86192476223743], [2.340713303819661, 48.861970651790315], [2.340522023488505, 48.862016973724025], [2.3403326852265183, 48.86206286267842], [2.340141402855497, 48.86210918399238], [2.340136169927322, 48.862109728023725], [2.340011960928313, 48.862106497041964], [2.33987941824338, 48.86210293127262], [2.339868271118422, 48.86210625672924], [2.3397823982669212, 48.86217619925879], [2.339697142210022, 48.86224327350926], [2.339691103222266, 48.862246004784325], [2.339491569763537, 48.8622909646868], [2.339297232028315, 48.86233538725153], [2.339231234832674, 48.86235243065175], [2.339233891739859, 48.86236229767569], [2.339255177074249, 48.86241016966018], [2.33930575730536, 48.86252547996765], [2.339366388090272, 48.86266183829041], [2.339416968811764, 48.86277714852468], [2.339477600180642, 48.86291350676012], [2.339528181392623, 48.86302881692118], [2.339588813345475, 48.863165175069355], [2.339639395048054, 48.86328048515722], [2.339689975611404, 48.86339579520423], [2.339750608426226, 48.8635321523259], [2.339750866287128, 48.86353267177222], [2.339815974646739, 48.86364998108944], [2.339880051300206, 48.86376719203387], [2.339945161618245, 48.86388450036421], [2.340009238850711, 48.86400171121467], [2.3400743483783, 48.864119020341654], [2.340138427564324, 48.864236230206345], [2.340203537675913, 48.86435353923819], [2.340267616078091, 48.86447074900142], [2.340268170785514, 48.86447161722995], [2.340355276170492, 48.864596753890496], [2.340445248340923, 48.864719332342496], [2.340532354554048, 48.86484446974542], [2.340622326205871, 48.86496704802938], [2.340709434633003, 48.865092184383684], [2.340799407129302, 48.865214762507094], [2.340889381411992, 48.86533734055679], [2.340976489736781, 48.86546247666734], [2.341066463500872, 48.865585054548966], [2.341153574028326, 48.865710190510164], [2.341174447450702, 48.86574496256572], [2.3411867422059602, 48.86574698631921], [2.341203584597329, 48.865749757277676], [2.341240112898529, 48.86573590068304], [2.341374215247085, 48.8657043918238], [2.341558127922366, 48.86566207782858], [2.341692229888543, 48.86563056861092], [2.341793693798264, 48.86560722387384], [2.341806451900686, 48.865599439159304], [2.341779671999218, 48.8655595579259], [2.34166906157092, 48.86546821913917], [2.341533301862923, 48.865356551581144], [2.34142269230888, 48.86526521165067], [2.34128693365801, 48.865153543792715], [2.341176324967055, 48.865062203617796], [2.341040567373202, 48.8649505354599], [2.340929959533848, 48.86485919593984], [2.340794202997202, 48.864747527482066], [2.340683596032195, 48.86465618681825], [2.340686294977397, 48.86464326819572], [2.340831139684104, 48.864574657239885], [2.341011447883738, 48.864488446925364], [2.341156291731765, 48.86441983556644], [2.341336598857484, 48.86433362474998], [2.341481441846832, 48.86426501298798], [2.34166174789864, 48.86417880166965], [2.341806590029313, 48.86411018950454], [2.341807206928392, 48.86410991320059], [2.341973835459382, 48.86404001226992], [2.342134005202986, 48.86397258207985], [2.342300632856351, 48.86390268068553], [2.342460801754752, 48.86383525004979], [2.342620970238633, 48.86376781919554], [2.342787596583593, 48.8636979171103], [2.342789535315442, 48.863697238857505], [2.342982263591384, 48.86364246294399], [2.343175961200946, 48.86358796634021], [2.343368688666348, 48.86353318979905], [2.343562385465308, 48.86347869256448], [2.343755112120168, 48.8634239153956], [2.343948808108724, 48.863369417530265], [2.343956451415963, 48.86336386909155], [2.344016937726739, 48.863238318216986], [2.344078374922864, 48.86311365476992], [2.344138860649213, 48.86298810380536], [2.344200298621551, 48.862863440274985], [2.344260783774897, 48.86273788832122], [2.3443222197974, 48.862613224692645], [2.344382704355219, 48.86248767354816], [2.344444139790824, 48.86236300982882], [2.344504623775655, 48.86223745769509], [2.344566058624471, 48.862112793885046], [2.344626542013693, 48.86198724256065], [2.3446879762757282, 48.86186257865985], [2.344695082338499, 48.8618572385729], [2.344793591871487, 48.86182631156981], [2.3448858788545692, 48.861796362188564], [2.344911476464087, 48.861787104127934], [2.344912444099819, 48.861783321372414], [2.344855903339362, 48.8617181248233], [2.344811603718068, 48.86166663926595], [2.344810583727055, 48.861665155154014], [2.34479807331154, 48.86164143561393], [2.344799167345059, 48.86164017532197]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 60, "zemmour_eric": 98.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "1-6", "circ_bv": "01", "num_bureau": 6, "roussel_fabien": 13.0, "nb_emargement": 965.0, "nb_procuration": 68.0, "nb_vote_blanc": 13.0, "jadot_yannick": 67.0, "le_pen_marine": 59.0, "nb_exprime": 951.0, "nb_vote_nul": 1.0, "arr_bv": "01", "arthaud_nathalie": 2, "nb_inscrit": 1229.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 965, "quartier_bv": "02", "geo_point_2d": [48.862911946721844, 2.341939158207875], "melenchon_jean_luc": 222.0, "poutou_philippe": 0.0, "macron_emmanuel": 384.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347739095070011, 48.86879007099488], [2.347696174243389, 48.86879400913478], [2.347515521840853, 48.86882980304067], [2.347331620180805, 48.86886693246536], [2.347150967274778, 48.868902725818714], [2.346967065097446, 48.86893985468084], [2.346786411688136, 48.86897564748157], [2.346602508993425, 48.86901277578117], [2.346421855080737, 48.86904856802932], [2.346237951857569, 48.86908569666563], [2.346057297452794, 48.86912148746192], [2.345873393712251, 48.86915861553566], [2.345856219594092, 48.86915230003144], [2.345815507261729, 48.869050038222184], [2.345759183276247, 48.86890477896313], [2.345718471327827, 48.86880251709796], [2.345662147880561, 48.868657257760695], [2.345621436316079, 48.86855499583964], [2.345621205100124, 48.86855430208212], [2.345586063096229, 48.86842530166878], [2.345548194691893, 48.86828860503891], [2.345513054399805, 48.86815960547988], [2.345475186380197, 48.86802290879404], [2.345440046459433, 48.86789390828332], [2.345402178824549, 48.867757211541544], [2.345384318489137, 48.86775032741849], [2.345175850186302, 48.867797827109946], [2.345003179575212, 48.867836348151464], [2.344830507334185, 48.867874869834324], [2.34462203803939, 48.86792236765659], [2.344449365231389, 48.86796088878659], [2.344240896607893, 48.86800838594877], [2.344068223244348, 48.86804690562667], [2.343859752554618, 48.86809440301311], [2.343687078624117, 48.86813292213817], [2.343669612496694, 48.868121915537394], [2.343721675096659, 48.86800261812134], [2.343779056078577, 48.8678704982216], [2.343831118165308, 48.86775120163009], [2.343888499967091, 48.86761908075607], [2.343940560188876, 48.86749978408237], [2.343974942371112, 48.86742061810019], [2.343970831087213, 48.86741410950272], [2.343930742028129, 48.8674088840169], [2.343753326965265, 48.867345859399535], [2.343577002921591, 48.867283373807474], [2.343399588714246, 48.86722034865858], [2.343223266871504, 48.86715786344508], [2.343045853519475, 48.8670948377647], [2.34286953252585, 48.867032352023024], [2.342692118666106, 48.866969325803694], [2.342515798521601, 48.86690683953378], [2.342338386880512, 48.866843812790464], [2.342162067585126, 48.866781325992406], [2.341984655436228, 48.866718298710104], [2.341808336989966, 48.866655811383836], [2.341630927070981, 48.8665927826783], [2.341454609473843, 48.86653029482385], [2.341277200398917, 48.866467266486126], [2.341100883651003, 48.86640477810352], [2.341040248359989, 48.866384675788446], [2.3410246045701992, 48.86640007276735], [2.341079299038953, 48.86653398586907], [2.3411334450029972, 48.86666041606412], [2.341188138661748, 48.8667943290771], [2.341242285160543, 48.866920759193164], [2.341296979372417, 48.8670546721249], [2.341351126394598, 48.86718110306121], [2.341405821159606, 48.867315015911736], [2.341459970091068, 48.867441445877326], [2.341514665409218, 48.86757535864652], [2.341568813512313, 48.86770178852561], [2.341622961866876, 48.867828219265], [2.341677658010222, 48.867962131912925], [2.341731806910937, 48.868088561674064], [2.341786503607341, 48.868222474240696], [2.341840654406018, 48.86834890393033], [2.341895351655592, 48.86848281641573], [2.341895775478586, 48.86848423071378], [2.341904493820449, 48.86853405186006], [2.341900082179466, 48.86858942170097], [2.341900644598983, 48.86859249065158], [2.341955004330398, 48.86871398040573], [2.34201571648927, 48.868846740524134], [2.342070078117665, 48.86896823020555], [2.342130790866138, 48.86910099023506], [2.342185151665054, 48.86922247982879], [2.342245865003136, 48.86935523976938], [2.342300226335658, 48.869476729282944], [2.342360940263354, 48.869609489134604], [2.342415303492899, 48.86973097857544], [2.342476018010222, 48.8698637383382], [2.34253038041029, 48.86998522769131], [2.34253057733923, 48.86998571891401], [2.342591292447259, 48.87011847858766], [2.342640237835834, 48.870256050700675], [2.34268103069242, 48.870374848331714], [2.342729975184317, 48.870512421267854], [2.342770769809661, 48.870631218848295], [2.342819714779456, 48.870768791715804], [2.342860508446907, 48.8708875892306], [2.342909453905947, 48.87102516113021], [2.342950249330836, 48.87114395949362], [2.342999195267786, 48.871281531324634], [2.343039989746122, 48.87140032872314], [2.343071572268657, 48.87147071173339], [2.343129989984442, 48.871464598451496], [2.343323533193588, 48.871433187045156], [2.343519191984273, 48.871402104396196], [2.343712734715181, 48.87137069325804], [2.343908393038877, 48.87133960997112], [2.344101936677448, 48.871308197310086], [2.344297594522822, 48.87127711428452], [2.344491136331225, 48.87124570098494], [2.344686793720916, 48.87121461642215], [2.344880335051077, 48.87118320339082], [2.345075991973756, 48.871152118190125], [2.345269534211532, 48.87112070363585], [2.345465190667085, 48.871089617797224], [2.345658731063477, 48.871058203503694], [2.345854387052002, 48.871027117027154], [2.346047928355976, 48.87099570121076], [2.346243582503039, 48.870964614988104], [2.346437123339951, 48.870933198540655], [2.346632778394393, 48.87090211078826], [2.346826317389922, 48.87087069460155], [2.347021971977312, 48.87083960621121], [2.347215511880377, 48.87080818850162], [2.347411166000703, 48.87077709947342], [2.347604704062284, 48.87074568202462], [2.347800357715543, 48.87071459235845], [2.347865697833232, 48.87071711127966], [2.347880171149339, 48.87071053681509], [2.34790656477507, 48.87069854851033], [2.347876162711815, 48.870627477101756], [2.347874081109885, 48.87050147448925], [2.347871862778426, 48.870361784055866], [2.347869781208775, 48.87023578051373], [2.347867562888902, 48.870096090945935], [2.347867523847094, 48.87009550706118], [2.347865443661789, 48.86996950349601], [2.34785050516745, 48.86983924342718], [2.347848423670341, 48.86971323982504], [2.347833485303414, 48.86958297882462], [2.347818634878284, 48.869447224210646], [2.347803696650772, 48.8693169640744], [2.347788847742302, 48.86918120943151], [2.347773908302475, 48.86905094925277], [2.347759059558723, 48.86891519367424], [2.347746981620367, 48.86880987430811], [2.347739095070011, 48.86879007099488]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 50, "zemmour_eric": 72.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "2-4", "circ_bv": "01", "num_bureau": 4, "roussel_fabien": 15.0, "nb_emargement": 1213.0, "nb_procuration": 86.0, "nb_vote_blanc": 9.0, "jadot_yannick": 107.0, "le_pen_marine": 49.0, "nb_exprime": 1201.0, "nb_vote_nul": 3.0, "arr_bv": "02", "arthaud_nathalie": 1, "nb_inscrit": 1581.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1213, "quartier_bv": "07", "geo_point_2d": [48.869296661570864, 2.3443968233070804], "melenchon_jean_luc": 314.0, "poutou_philippe": 4.0, "macron_emmanuel": 539.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3412863345711212, 48.830266367043095], [2.34135811731166, 48.830266532140485], [2.341491652881057, 48.83026414303779], [2.341657520698882, 48.83026234098164], [2.341670917539963, 48.830253453368705], [2.341673275339521, 48.83011927982798], [2.3416784377486533, 48.82998803657898], [2.341680795516853, 48.829853863006306], [2.3416859578807703, 48.82972261972592], [2.341688315617512, 48.829588446121335], [2.341693477947673, 48.829457201910245], [2.341695835641699, 48.82932302917308], [2.341700997926647, 48.829191784930586], [2.341703355600671, 48.82905761126216], [2.34170851782895, 48.82892636788759], [2.341709498568561, 48.82892324346274], [2.341773070690241, 48.8288216771485], [2.341840765605955, 48.828710643280445], [2.341852053940475, 48.82870505193353], [2.342056778915686, 48.82869160582421], [2.342254185828055, 48.82867871540258], [2.342458910596023, 48.8286652686046], [2.342656318660022, 48.828652378425744], [2.342661409495054, 48.82865267981692], [2.342838269983835, 48.82868604275515], [2.343012494437973, 48.82871878836781], [2.343189355364366, 48.82875215168421], [2.343363580259949, 48.8287848967835], [2.343537804012359, 48.8288176416205], [2.343714665621498, 48.82885100325783], [2.343888891177475, 48.82888374758895], [2.344065753224227, 48.828917109604454], [2.344239979221638, 48.82894985342221], [2.344416841728633, 48.8289832140172], [2.344591068167468, 48.829015957321594], [2.344767931123382, 48.82904931739541], [2.3447762391106712, 48.82905377254344], [2.34486081273211, 48.829159730637244], [2.344952760278772, 48.829274261407804], [2.345037334616672, 48.829380219355976], [2.34512928156646, 48.82949475086015], [2.345213857982985, 48.82960070867011], [2.345305805709561, 48.82971524001606], [2.34539038148041, 48.82982119767289], [2.345482331345741, 48.82993572886802], [2.345566907833078, 48.83004168637921], [2.345658857124338, 48.83015621650936], [2.345743434328167, 48.83026217387486], [2.345835385746922, 48.830376704753476], [2.345849284066544, 48.8303752392466], [2.345852866169504, 48.830313190414934], [2.3458385774532, 48.830185209728015], [2.3458249584442, 48.83005825257665], [2.345810669866281, 48.82993027185729], [2.345797050991842, 48.8298033146739], [2.345783432172448, 48.82967635837391], [2.345769143801142, 48.829548377605974], [2.345755525127593, 48.829421420374615], [2.345741238256815, 48.82929343958167], [2.3457276183556752, 48.829166482310804], [2.3457133316232692, 48.82903850148543], [2.345699713218828, 48.82891154419], [2.345685425262655, 48.82878356332474], [2.345671806981481, 48.82865660689657], [2.34565751916368, 48.8285286259989], [2.345643901028343, 48.82840166863936], [2.345629614711037, 48.82827368771669], [2.345615995348129, 48.82814673031769], [2.345601709169187, 48.828018749362606], [2.345601100432123, 48.828016674771476], [2.345572360857998, 48.82796503729245], [2.345547685082356, 48.827914022824764], [2.345530093985815, 48.82789024961494], [2.34550289671438, 48.82789643057588], [2.34535894033072, 48.8278666791863], [2.345223904524044, 48.82783816093955], [2.345079948460493, 48.82780840921259], [2.344944912957256, 48.82777989064936], [2.344935883673571, 48.82778005974023], [2.344764060378662, 48.82782358266455], [2.344595246147258, 48.82786621526252], [2.344423422283931, 48.82790973769413], [2.344254608868426, 48.82795236891612], [2.344082783063464, 48.82799589174685], [2.343913969090444, 48.82803852248478], [2.3437451548413453, 48.82808115298279], [2.343573329548753, 48.82812467508403], [2.343404513380028, 48.82816730509046], [2.343232687530457, 48.828210825799616], [2.343063872155015, 48.828253456228715], [2.342892044375023, 48.82829697643769], [2.342883659032399, 48.828303327617455], [2.342842042177017, 48.828420941326094], [2.342794891367094, 48.828541405295525], [2.342782165223813, 48.82854814272791], [2.342730851584336, 48.828549839352576], [2.3426548915743632, 48.828551543490704], [2.342642463433373, 48.82854685329289], [2.342571965803728, 48.82846128060187], [2.342505401560159, 48.82837912462621], [2.342434904370953, 48.828293552740945], [2.342368340557525, 48.8282113966767], [2.342367384900699, 48.82820994522669], [2.342302568923554, 48.82808168866962], [2.342236746037798, 48.827949266912725], [2.342171930706226, 48.827821010255064], [2.342106108481409, 48.8276885883955], [2.342041293795298, 48.82756033163723], [2.341975473593509, 48.82742790968247], [2.341910658202103, 48.82729965191679], [2.341844838649874, 48.82716723075871], [2.341831895861563, 48.827161041974286], [2.341775464138086, 48.827161044372275], [2.341728180466617, 48.82716494912497], [2.341652886701497, 48.82715946307684], [2.341641087313451, 48.82718526956714], [2.341641515056775, 48.82726951195894], [2.341641526437475, 48.827395786174925], [2.341642178182366, 48.8275245299898], [2.341642189564626, 48.82765080417708], [2.341642842676452, 48.827779547970216], [2.341642854071734, 48.82790582122944], [2.341642808005482, 48.827906556664864], [2.341643461122038, 48.828035300428596], [2.341624437224388, 48.828188652480634], [2.341607189636767, 48.82827857237826], [2.341589941989649, 48.828368492266264], [2.34157091781299, 48.82852184426422], [2.341570814980682, 48.82852243638606], [2.341544017885917, 48.828643439126964], [2.341513786372784, 48.82877728939276], [2.34148698901466, 48.828898292093356], [2.341456757195962, 48.82903214321366], [2.341429960936515, 48.82915314588147], [2.341399727472925, 48.829286996050115], [2.341372930950116, 48.829407998677645], [2.341372824946502, 48.829408625857006], [2.341355138592991, 48.82955250744838], [2.341338210913422, 48.829701347848165], [2.341320523003011, 48.82984522938933], [2.341303595140826, 48.82999406884604], [2.341296811477464, 48.83004924582954], [2.341290927570785, 48.83006361599163], [2.34129721695373, 48.83007893098859], [2.341286312495048, 48.8301676364006], [2.341282135230092, 48.83025005176456], [2.3412863345711212, 48.830266367043095]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 51, "zemmour_eric": 65.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-53", "circ_bv": "10", "num_bureau": 53, "roussel_fabien": 27.0, "nb_emargement": 1017.0, "nb_procuration": 31.0, "nb_vote_blanc": 14.0, "jadot_yannick": 63.0, "le_pen_marine": 81.0, "nb_exprime": 998.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1321.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1017, "quartier_bv": "51", "geo_point_2d": [48.8286489027876, 2.3437861087883225], "melenchon_jean_luc": 384.0, "poutou_philippe": 6.0, "macron_emmanuel": 264.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408919902824959, 48.869105682342315], [2.408920462414071, 48.869084239540506], [2.4089236697265872, 48.86893890559024], [2.408926432448697, 48.8687899810739], [2.408929639716235, 48.86864464798405], [2.408932402405773, 48.86849572342792], [2.408935609648741, 48.86835038939996], [2.408938372305505, 48.86820146480407], [2.408924040249863, 48.86819237368078], [2.408784297919407, 48.8681971172902], [2.408669818339504, 48.86820190910644], [2.4086595583270283, 48.868205543898156], [2.408548395139979, 48.86830473376948], [2.408438783605479, 48.86840229980313], [2.40832762094136, 48.86850148945846], [2.408218008579452, 48.86859905527258], [2.408106845085296, 48.86869824380599], [2.407997231895771, 48.86879580940051], [2.407887618295744, 48.86889337488611], [2.407776453534086, 48.86899256398551], [2.407666839106531, 48.86909012925156], [2.407555673514929, 48.86918931722897], [2.407553065825336, 48.86919553132405], [2.40756223138836, 48.86925794474076], [2.407572431468691, 48.86933116519686], [2.407559467515042, 48.869345254778224], [2.407560943812971, 48.86934969940857], [2.407585561455566, 48.86936301001533], [2.407593786036431, 48.869365043650454], [2.407772184707959, 48.8693686370789], [2.407961824271476, 48.86937335875034], [2.408140221643981, 48.8693769507242], [2.408329862634225, 48.86938167181929], [2.4083403651704662, 48.869395954824455], [2.408223664288407, 48.86950159844155], [2.4081094010653032, 48.86960502813589], [2.407992699246543, 48.869710671507804], [2.407878435106233, 48.86981410096205], [2.407761730987341, 48.86991974408207], [2.407647465929814, 48.870023173296254], [2.407530762237418, 48.87012881617784], [2.407416496262667, 48.87023224515197], [2.407419728862902, 48.870244924694134], [2.407528427138819, 48.87029480210601], [2.407639450958055, 48.87034315845784], [2.40764272354005, 48.87035616374955], [2.407518569681068, 48.87046208268958], [2.407395041932301, 48.87056744610611], [2.407270887076339, 48.870673363869734], [2.407147358325536, 48.87077872701049], [2.407023202452119, 48.870884645396245], [2.406899671346264, 48.870990007355196], [2.406775514465715, 48.8710959254638], [2.406651983721055, 48.87120128715372], [2.406527825833161, 48.87130720498515], [2.406404292723185, 48.87141256639256], [2.406280135191299, 48.87151848395358], [2.406156601068995, 48.8716238459845], [2.406032441176841, 48.871729762362285], [2.405908907415714, 48.87183512412418], [2.405784746516293, 48.87194104022478], [2.405661210389901, 48.87204640170413], [2.405653770311826, 48.87206005711953], [2.405661135521777, 48.872067181339766], [2.405831005277371, 48.8721157918812], [2.405989286533376, 48.8721608597522], [2.406159156910864, 48.87220946892457], [2.406317438725198, 48.87225453725713], [2.406475722186859, 48.872299604486074], [2.406645592107586, 48.872348212955195], [2.406664174710696, 48.87234231910407], [2.40668654742124, 48.87228794837514], [2.406709780012697, 48.87223360708289], [2.4067281671611083, 48.87222775272269], [2.406908738449885, 48.87227762886017], [2.407090339561328, 48.87232761054765], [2.407270911543066, 48.87237748613424], [2.407452513350282, 48.87242746726777], [2.407633087388163, 48.87247734231023], [2.407814689891044, 48.87252732288977], [2.407995263258698, 48.87257719737468], [2.40817686645714, 48.872627177400204], [2.408357440517745, 48.87267705133424], [2.408539044411949, 48.872727030805784], [2.408557892338402, 48.872719375281356], [2.408572317101002, 48.87258676884163], [2.408586094655107, 48.8724549631908], [2.408600520635968, 48.87232235672266], [2.408614296685592, 48.872190551030286], [2.408628722521425, 48.872057944526986], [2.4086424984296553, 48.871926138799815], [2.408656924120466, 48.87179353226137], [2.408670699887506, 48.8716617264994], [2.408685125433294, 48.871529119925825], [2.408698902422203, 48.87139731413579], [2.408713326459714, 48.87126470752033], [2.40872710330733, 48.87113290169551], [2.408741528563077, 48.87100029505162], [2.408755303906256, 48.87086848918528], [2.408769729016989, 48.87073588250631], [2.408783504218785, 48.87060407660515], [2.408783534228793, 48.87060383483236], [2.408797959194369, 48.87047122811819], [2.408816903145419, 48.87034116364291], [2.408824676626126, 48.870329628494865], [2.408819754071142, 48.87032287895539], [2.408829792915886, 48.87019798482273], [2.408839712820057, 48.87007948256225], [2.408849751559834, 48.86995458929973], [2.4088596727456713, 48.869836086118966], [2.408869592512949, 48.869717583817256], [2.408879631121549, 48.86959268961202], [2.408889552160279, 48.86947418728925], [2.4088995906639132, 48.869349293954116], [2.408909510257887, 48.869230790697614], [2.408919548666764, 48.86910589733332], [2.408919902824959, 48.869105682342315]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 55, "zemmour_eric": 91.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-28", "circ_bv": "15", "num_bureau": 28, "roussel_fabien": 37.0, "nb_emargement": 1165.0, "nb_procuration": 35.0, "nb_vote_blanc": 16.0, "jadot_yannick": 72.0, "le_pen_marine": 91.0, "nb_exprime": 1146.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1509.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1165, "quartier_bv": "78", "geo_point_2d": [48.8708669394322, 2.407838282503966], "melenchon_jean_luc": 442.0, "poutou_philippe": 3.0, "macron_emmanuel": 295.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.271413926259588, 48.85061399360973], [2.271399136864491, 48.850629326742805], [2.27136146906654, 48.85065284056505], [2.271301287046603, 48.85069308482787], [2.271303591073209, 48.85070695536104], [2.271459761133295, 48.85077354017587], [2.271620088191818, 48.85084411628168], [2.271776260430069, 48.85091070068349], [2.271936586989101, 48.850981275448916], [2.272092760042817, 48.85104785942942], [2.272253088802533, 48.851118434669615], [2.272409261309113, 48.85118501822054], [2.272529926341788, 48.85123813265936], [2.272542000610937, 48.85125639929336], [2.272571661975811, 48.85125718400212], [2.272611326582088, 48.85127464435659], [2.272772729633807, 48.85134675522557], [2.272933060234056, 48.85141732953567], [2.273094464172941, 48.851489439961405], [2.273254795648036, 48.851560013831346], [2.273416200473988, 48.851632123813836], [2.273576531461105, 48.85170269723531], [2.273737938537053, 48.851774806782814], [2.273898270398814, 48.85184537976413], [2.273899562908528, 48.85184602435661], [2.274057042066778, 48.851934357508576], [2.274212161033362, 48.85202183252418], [2.27436964125282, 48.85211016525068], [2.274524761267403, 48.852197639847205], [2.274682242548074, 48.85228597214837], [2.274837363623379, 48.85237344542653], [2.274994845952754, 48.85246177820161], [2.275149968076064, 48.852549251060616], [2.275305089345013, 48.852636724602725], [2.27546257463819, 48.85272505585025], [2.275617698330406, 48.85281252808224], [2.275775183309569, 48.85290085979536], [2.275835782564283, 48.85292682420487], [2.275854989973744, 48.85291489979666], [2.27593179315544, 48.85275317369079], [2.275980382781448, 48.852618980741326], [2.275984882822296, 48.852614178397715], [2.276141743455636, 48.85252740639637], [2.276289654247613, 48.85244874895834], [2.276446512512621, 48.85236197653631], [2.2765944223874692, 48.85228331781059], [2.276751281009834, 48.852196544984345], [2.276899189942585, 48.85211788676945], [2.2770470984411793, 48.852039227466875], [2.2772039555749872, 48.851952454028165], [2.277351863131599, 48.85187379523647], [2.277508717897109, 48.85178702137706], [2.277556037631563, 48.851761856044945], [2.277561229403085, 48.85175599836736], [2.2775140352792, 48.851711852392825], [2.27742059700332, 48.85162838670161], [2.277320483837743, 48.851541000762786], [2.277227046178334, 48.85145753490763], [2.277126933665572, 48.851370148793436], [2.277117558634617, 48.85136663320315], [2.2769119132974422, 48.85135165730541], [2.276701433853703, 48.85133670669146], [2.276495790116834, 48.85132173008642], [2.276285310913368, 48.85130677874007], [2.276079666051591, 48.85129180141119], [2.275869188451019, 48.851276849340685], [2.27566354382696, 48.851261871296174], [2.27545306646668, 48.85124691849329], [2.275440925741214, 48.85123855284502], [2.2754306898107908, 48.85113318802498], [2.275415266246998, 48.85101857510285], [2.275396724850359, 48.85100724595603], [2.275364516205337, 48.851009914464385], [2.275192498674489, 48.85093907024499], [2.275029049363702, 48.850872153045145], [2.274857031380974, 48.850801308326474], [2.274693582933076, 48.850734390660094], [2.274521567236489, 48.850663544559296], [2.274358119638853, 48.85059662732567], [2.27418610485309, 48.85052578073379], [2.274022656755745, 48.85045886302535], [2.273859210453399, 48.85039194419862], [2.273687197021462, 48.85032109687649], [2.273523751569466, 48.85025417848244], [2.273351739048349, 48.850183330669296], [2.273188293096548, 48.850116411800464], [2.273016281486353, 48.85004556349628], [2.272852837772659, 48.8499786432699], [2.272680827060632, 48.84990779537397], [2.272632655960209, 48.849888071763736], [2.272602831242891, 48.849882058065496], [2.272584355031154, 48.849898445476484], [2.272446318202384, 48.84998565844092], [2.272290130876188, 48.85008316289648], [2.272152093065714, 48.85017037550698], [2.271995905985489, 48.85026788046979], [2.27185786720577, 48.8503550918271], [2.2717016776588013, 48.85045259638138], [2.271563639247491, 48.85053980829233], [2.2714451163873752, 48.850613796810755], [2.271413926259588, 48.85061399360973]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 163, "zemmour_eric": 170.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-21", "circ_bv": "14", "num_bureau": 21, "roussel_fabien": 8.0, "nb_emargement": 1191.0, "nb_procuration": 82.0, "nb_vote_blanc": 11.0, "jadot_yannick": 72.0, "le_pen_marine": 86.0, "nb_exprime": 1178.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1496.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1191, "quartier_bv": "61", "geo_point_2d": [48.851347623425916, 2.2744558885623363], "melenchon_jean_luc": 136.0, "poutou_philippe": 4.0, "macron_emmanuel": 506.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332531995975023, 48.876752538534376], [2.332497117413056, 48.87678827255566], [2.332442372059718, 48.876913553341915], [2.33238837717949, 48.87703547205938], [2.332333631304754, 48.877160752767814], [2.332279635913705, 48.8772826714089], [2.33222488951746, 48.87740795203948], [2.332170893615584, 48.87752987060417], [2.332116898824323, 48.877651789138646], [2.332062150285317, 48.87777706964527], [2.332008154983225, 48.877898988103325], [2.331953405922787, 48.87802426853215], [2.331953306934932, 48.878029009277405], [2.332005407424058, 48.878161999674205], [2.332055449576276, 48.87828997104659], [2.332105490610982, 48.87841794237556], [2.332157593229584, 48.8785509335661], [2.33220763476601, 48.878678904822124], [2.332259736554598, 48.87881189502976], [2.332309779956191, 48.87893986622036], [2.332361882255247, 48.87907285725138], [2.332411926158581, 48.879200828368944], [2.332464028990968, 48.87933381842472], [2.332482009817057, 48.87933999099097], [2.332691161735399, 48.87928836516637], [2.332895517210599, 48.87924039772187], [2.333104668319085, 48.87918877117023], [2.333309024386096, 48.879140803023134], [2.3333240540016282, 48.87914350558372], [2.333462229926698, 48.879252455036244], [2.333584518094376, 48.87935291789043], [2.333706806722331, 48.87945338150976], [2.333844984270233, 48.8795623304899], [2.333850644139364, 48.879581105008256], [2.333895560630986, 48.87958481467048], [2.33408987981374, 48.879539675321055], [2.33427305016963, 48.87949679484155], [2.33446736869679, 48.87945165487583], [2.334650539795757, 48.879408773822895], [2.334689544003255, 48.879397640991826], [2.334675251320684, 48.879372998043394], [2.334668894797053, 48.879363799399485], [2.334672170705624, 48.87935339072338], [2.334816122504595, 48.879267778113004], [2.334959406865825, 48.879182821729216], [2.335103357721175, 48.87909720876018], [2.335246641156067, 48.879012251120216], [2.335390591067799, 48.878926637792546], [2.335533873553402, 48.87884168069491], [2.33567782253299, 48.878756066109375], [2.335821104080686, 48.878671108654835], [2.335965052105196, 48.878585494609936], [2.336108332726657, 48.87850053589921], [2.336252279807564, 48.87841492149568], [2.336395559479766, 48.878329963327346], [2.336539505617078, 48.8782443485652], [2.336682785726369, 48.87815938914823], [2.336826730920087, 48.878073774027484], [2.336970008716613, 48.87798881514529], [2.337113952978192, 48.877903198766674], [2.33725722983704, 48.87781823952759], [2.337261503348515, 48.877809855300136], [2.337222920399843, 48.877677344063315], [2.3371837490825262, 48.87754768942643], [2.337145166537337, 48.87741517723376], [2.337105995610754, 48.877285522540596], [2.337067412082856, 48.87715301118306], [2.337028241547004, 48.87702335643365], [2.336989659785881, 48.87689084412782], [2.336950489640751, 48.87676118932213], [2.336942419280763, 48.87672777744878], [2.336923967974801, 48.876724211904246], [2.336789318288659, 48.876734798538166], [2.336604925405208, 48.87674859699649], [2.336397632611999, 48.8767648942917], [2.336213239518232, 48.8767786921463], [2.336005946494252, 48.87679498786358], [2.335821553190183, 48.876808785114534], [2.335614259912416, 48.87682508105238], [2.335429866398048, 48.8768388776996], [2.335245071350533, 48.876850155490466], [2.335060677649601, 48.876863951568716], [2.334875882433181, 48.876875228789444], [2.334691488557178, 48.87688902339945], [2.334506693171868, 48.87690030004998], [2.334322299097831, 48.87691409499029], [2.334319744911033, 48.87691412755264], [2.334127244148675, 48.87690462836892], [2.333938798897078, 48.87689551657048], [2.333750352348027, 48.87688640446773], [2.333557851792091, 48.87687690436823], [2.333369406740422, 48.876867791673206], [2.333176906322667, 48.876858290960996], [2.33298846004161, 48.87684917765859], [2.332795959750725, 48.8768396772329], [2.332790922518198, 48.87683876600938], [2.332676836748166, 48.876801467739455], [2.332566076562875, 48.87676076952165], [2.332531995975023, 48.876752538534376]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 87, "zemmour_eric": 103.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "9-9", "circ_bv": "01", "num_bureau": 9, "roussel_fabien": 8.0, "nb_emargement": 1229.0, "nb_procuration": 93.0, "nb_vote_blanc": 10.0, "jadot_yannick": 91.0, "le_pen_marine": 45.0, "nb_exprime": 1215.0, "nb_vote_nul": 4.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1470.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1229, "quartier_bv": "33", "geo_point_2d": [48.877970875468186, 2.334417252304478], "melenchon_jean_luc": 232.0, "poutou_philippe": 1.0, "macron_emmanuel": 602.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.334813040388867, 48.8947115198629], [2.334841642397488, 48.89470647345908], [2.334977214566718, 48.894739030916966], [2.3352257995671772, 48.89479723205802], [2.335361372213061, 48.89482978907826], [2.335379454289578, 48.894819714508785], [2.335367976366894, 48.89477850594378], [2.335355564052796, 48.89474638792937], [2.335361445814756, 48.89473951198459], [2.335341563892427, 48.89471279340673], [2.335308208770977, 48.894626486527166], [2.335264415783556, 48.894512285882136], [2.33521864876137, 48.894393861825584], [2.335174856166158, 48.89427966112354], [2.3351290881998032, 48.894161236100814], [2.335085295996698, 48.894047035341764], [2.33503952979079, 48.89392861116652], [2.334995736615948, 48.89381441034289], [2.334979431636347, 48.893807854567584], [2.334790010100806, 48.89383683626679], [2.33460165702769, 48.89386469315537], [2.334412236438816, 48.8938936742631], [2.334223881594229, 48.893921530548496], [2.334034460588297, 48.893950511057156], [2.333846105335978, 48.89397836674694], [2.333656683912995, 48.89400734665658], [2.333468329616688, 48.89403520175827], [2.333278906412822, 48.89406418106127], [2.333090551708901, 48.89409203556736], [2.332901128087997, 48.8941210142713], [2.3327127729763673, 48.89414886818176], [2.332698777281532, 48.89414539884875], [2.332652997863176, 48.89410663115705], [2.332580096813307, 48.89404085852093], [2.332580706223339, 48.89403438859398], [2.332554368375005, 48.89401816281355], [2.332507916136956, 48.893976252674875], [2.332384556348871, 48.89386409396835], [2.332265204119739, 48.8937564118123], [2.332141845386904, 48.89364425193397], [2.332022494152057, 48.893536570413715], [2.331899136462931, 48.893424410262895], [2.331779786245634, 48.893316727579844], [2.331656429600205, 48.89320456715655], [2.331537081740978, 48.89309688511691], [2.331413726139234, 48.89298472442109], [2.331294377933727, 48.89287704121106], [2.331171023364107, 48.892764881142035], [2.3310516761643783, 48.892657197668534], [2.330928322649974, 48.89254503642778], [2.33080897644466, 48.89243735359005], [2.330793327741577, 48.8924047483815], [2.330774593945179, 48.89240238728288], [2.330660475065847, 48.89242495831614], [2.330540824715524, 48.89244855142518], [2.330519272382751, 48.89244476528872], [2.330493398174274, 48.89245252209046], [2.330418132937931, 48.89246736278985], [2.330231381955245, 48.89250531219828], [2.330036464418064, 48.892543744428465], [2.329849712883339, 48.89258169323908], [2.329654796142199, 48.89262012485295], [2.329468042691538, 48.89265807305806], [2.32927312538285, 48.89269650404802], [2.329086372743762, 48.892734451662896], [2.328891453503625, 48.89277288202131], [2.328704700312416, 48.89281082903833], [2.328509781868447, 48.89284925878049], [2.328323026761415, 48.89288720519196], [2.3281281077497162, 48.89292563431022], [2.327941353454384, 48.892963580131465], [2.327746432511352, 48.893002008618126], [2.327559677663815, 48.89303995384155], [2.327556354793607, 48.89304537339333], [2.327581159453632, 48.89308088668144], [2.327772285611961, 48.893119956171596], [2.327955289447521, 48.89315685556831], [2.328146416165454, 48.89319592445864], [2.328329420521573, 48.89323282418033], [2.32852054779921, 48.89327189247084], [2.328703552687389, 48.89330879161821], [2.328894680536213, 48.89334785840962], [2.329077685956546, 48.89338475698268], [2.329268814353366, 48.89342382407353], [2.32945182030585, 48.893460722072305], [2.329460744488512, 48.89346642608886], [2.329525350301556, 48.89359167144956], [2.329588887894189, 48.89372024636828], [2.3296534943304392, 48.89384549163084], [2.329717032537693, 48.89397406735106], [2.329781639597159, 48.89409931251548], [2.329845178442195, 48.89422788723867], [2.32986395621986, 48.89423323717048], [2.3300107712903833, 48.89418765901007], [2.330154264032668, 48.89414416739972], [2.3303010785978913, 48.89409858887966], [2.33044457084063, 48.89405509781723], [2.330461802814777, 48.89405847039584], [2.330571424699855, 48.89417303731759], [2.330682257884086, 48.894288798000154], [2.330791879363807, 48.89440336558763], [2.330902713528606, 48.894519126041864], [2.331012337353796, 48.894633692511846], [2.331123172487523, 48.89474945363693], [2.331232797282688, 48.894864019881005], [2.331343633396913, 48.89497978077775], [2.331453257798399, 48.8950943467883], [2.331564096256999, 48.895210107464294], [2.331587002995533, 48.89521026949518], [2.331683546268974, 48.89511406918212], [2.331804777204337, 48.89498933256178], [2.331901319654272, 48.894893132953], [2.332022549564884, 48.8947683951878], [2.332119091202762, 48.89467219538408], [2.33224032006576, 48.89454745827253], [2.332336860903125, 48.894451257374605], [2.332350589868705, 48.894447239303595], [2.332430764169555, 48.89445606255393], [2.332486351767583, 48.89446472082524], [2.332508502236811, 48.89446841909765], [2.332526394799612, 48.894460181212104], [2.332602709655429, 48.89435991214007], [2.332685163266949, 48.894254105918236], [2.332701540785074, 48.894249669991645], [2.332879190550352, 48.89428804910601], [2.333083894094119, 48.894330996093636], [2.333261544407318, 48.894369375537224], [2.333466249949973, 48.894412321875684], [2.33364390083402, 48.894450699849976], [2.333848605648059, 48.89449364552405], [2.334026257079824, 48.894532023827544], [2.334230963892844, 48.89457496885243], [2.334408615895536, 48.89461334568659], [2.334613321979818, 48.894656290047166], [2.334790974530231, 48.89469466721053], [2.334791292782729, 48.89469473822615], [2.334813040388867, 48.8947115198629]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 67, "zemmour_eric": 85.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-41", "circ_bv": "03", "num_bureau": 41, "roussel_fabien": 19.0, "nb_emargement": 1256.0, "nb_procuration": 57.0, "nb_vote_blanc": 19.0, "jadot_yannick": 104.0, "le_pen_marine": 83.0, "nb_exprime": 1230.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1646.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "69", "geo_point_2d": [48.89372654931279, 2.3313545613278213], "melenchon_jean_luc": 431.0, "poutou_philippe": 9.0, "macron_emmanuel": 372.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355556543236465, 48.87652927552366], [2.355550849325481, 48.876496890406905], [2.355488066605222, 48.87639573518191], [2.355430315405815, 48.87629908389448], [2.35538058306717, 48.87621585335762], [2.355317802379733, 48.8761146980249], [2.355309782390553, 48.87610127812445], [2.355300652786571, 48.876095991229505], [2.355108765036361, 48.87606249974972], [2.354919743458267, 48.87602956030818], [2.354727856197738, 48.875996068215805], [2.354538835090489, 48.87596312907012], [2.354346948319542, 48.875929636365186], [2.354157927694381, 48.875896696616074], [2.353966041413126, 48.8758632032985], [2.353777022644381, 48.87583026205407], [2.353585135489562, 48.8757967681166], [2.353396117191661, 48.875763827168015], [2.353204230526551, 48.87573033261792], [2.353015212721826, 48.875697390166664], [2.35282332789852, 48.875663895910655], [2.352634309212453, 48.87563095284861], [2.352442424890142, 48.87559745708075], [2.352253406674922, 48.87556451431454], [2.352064388709991, 48.87553157034962], [2.351872505120336, 48.87549807366526], [2.35168348898961, 48.87546513000357], [2.351491604526336, 48.87543163269923], [2.351302588888846, 48.87539868753488], [2.351110704904015, 48.875365190517265], [2.351055376122695, 48.87536582589609], [2.3510548952746673, 48.87536633770958], [2.350857867076392, 48.87541184694705], [2.350668818595282, 48.875456704857775], [2.350471788365689, 48.87550221254942], [2.350282739212862, 48.875547070746045], [2.35008570966746, 48.87559257780596], [2.349896658501994, 48.87563743448245], [2.349699628266209, 48.875682941802495], [2.349510576440249, 48.87572779786565], [2.349313545525407, 48.87577330454645], [2.349124494402221, 48.87581816000363], [2.348935441590148, 48.875863015153], [2.348738409661194, 48.8759085208816], [2.348729915410953, 48.87590863295224], [2.348520697779183, 48.87586641646166], [2.348307299063864, 48.87581230380744], [2.348264600907194, 48.87581433228072], [2.348252199742758, 48.87582822785293], [2.348269911361221, 48.87591676407261], [2.348270617051945, 48.87591866191588], [2.348337857938993, 48.87604646475646], [2.348410943975258, 48.87617897500446], [2.348478185542601, 48.87630677773604], [2.348551272312413, 48.87643928696788], [2.348598154067966, 48.87652839192038], [2.348589513303225, 48.87655165657156], [2.348597774557991, 48.87656364110078], [2.348618135063789, 48.87660233876966], [2.348614986831003, 48.876622508117784], [2.348661847789911, 48.876640469207736], [2.348729090568828, 48.8767682717449], [2.348803990757578, 48.876907207380704], [2.3488712342184233, 48.87703501070638], [2.348946135170046, 48.87717394621962], [2.349013379335212, 48.87730174853528], [2.349069110491839, 48.87740512522274], [2.349098090997859, 48.87743590514102], [2.349144261515252, 48.87742190261926], [2.349343711024043, 48.87739427737457], [2.349521933926855, 48.87737034873994], [2.349700155302599, 48.87734641983209], [2.349899605590877, 48.87731879366675], [2.350077826616585, 48.8772948641955], [2.350277276507203, 48.87726723739965], [2.350455497182968, 48.87724330736508], [2.350654946675717, 48.87721567993871], [2.350833167001634, 48.877191749340746], [2.351032616096606, 48.8771641212839], [2.351210837435865, 48.87714019012993], [2.351210949423167, 48.87714017544819], [2.351410396768138, 48.87711254585396], [2.35159796895865, 48.877086270758014], [2.351797415891783, 48.87705864051764], [2.351984987692912, 48.87703236481397], [2.352184434214403, 48.877004733927485], [2.352372004262644, 48.87697845760879], [2.352571451735778, 48.87695082608355], [2.352759021394725, 48.87692454915716], [2.352958468444822, 48.876896917885055], [2.353146037725536, 48.876870639451745], [2.35334548436387, 48.87684300753345], [2.3535330532551653, 48.87681672849247], [2.353732498118437, 48.87678909592075], [2.353920067983697, 48.87676281627945], [2.354107636285029, 48.876736537235544], [2.354307081910911, 48.87670890281261], [2.354494649822913, 48.87668262316103], [2.354694093673506, 48.87665498808464], [2.354881662559457, 48.87662870783275], [2.355081105998346, 48.876601072110205], [2.355268674494746, 48.87657479125065], [2.35546811751069, 48.87654715578129], [2.355532337040073, 48.87653815744259], [2.355556543236465, 48.87652927552366]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 51, "zemmour_eric": 93.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-34", "circ_bv": "05", "num_bureau": 34, "roussel_fabien": 9.0, "nb_emargement": 1177.0, "nb_procuration": 86.0, "nb_vote_blanc": 6.0, "jadot_yannick": 127.0, "le_pen_marine": 89.0, "nb_exprime": 1169.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 1, "nb_inscrit": 1453.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "38", "geo_point_2d": [48.87635459413939, 2.351484297589363], "melenchon_jean_luc": 342.0, "poutou_philippe": 1.0, "macron_emmanuel": 412.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3810970876223, 48.861092703068394], [2.381111483039187, 48.86112641211398], [2.381072751122227, 48.86116527484901], [2.381037234526506, 48.86120047048413], [2.381042738153853, 48.86121357991948], [2.381187096318873, 48.86125875319402], [2.381364052011901, 48.861318510400345], [2.381508409383369, 48.86136368327599], [2.38168536716422, 48.861423440008636], [2.3818297251050202, 48.861468612492416], [2.381884487228541, 48.86148710527904], [2.381908024040154, 48.86150379996464], [2.381921006285863, 48.861502838164576], [2.382043201360289, 48.86154410248421], [2.382193999758305, 48.861595649953124], [2.382370959113389, 48.8616554056595], [2.382521758147193, 48.86170695360956], [2.382540276869632, 48.86170291307403], [2.382583894322654, 48.86164395046444], [2.382621709351214, 48.86159681755664], [2.382639240156498, 48.861584810913016], [2.3826383550445343, 48.86157426962856], [2.382713985353308, 48.861454190777245], [2.382783127078034, 48.86133883863276], [2.382858756721927, 48.86121875876519], [2.382927897803028, 48.86110340741187], [2.382997039940949, 48.86098805601367], [2.383072668582716, 48.860867975972866], [2.383141808735341, 48.8607526235602], [2.383217436690946, 48.860632544301744], [2.383234967763862, 48.86062761451057], [2.38343376133786, 48.86067868744012], [2.3836324384304612, 48.860729960888406], [2.383831232795237, 48.86078103225369], [2.3840299093063, 48.86083230503038], [2.384228704440572, 48.86088337662998], [2.384427381733067, 48.860934648742074], [2.384626177658092, 48.860985718777414], [2.384824855732011, 48.86103699022492], [2.385023653800134, 48.86108805960229], [2.385222332655474, 48.86113933038519], [2.385421130130115, 48.8611903999899], [2.385619809766869, 48.86124167010819], [2.385637770680194, 48.86123600381284], [2.385686331149576, 48.86113458041274], [2.385731534984692, 48.86104234364717], [2.385743060220355, 48.86102656085084], [2.38573873516655, 48.86102148433482], [2.385618160460979, 48.86098888828809], [2.385411136846159, 48.8609324535318], [2.385242958969472, 48.86088698762176], [2.385035936165981, 48.86083055221118], [2.384867758945755, 48.8607850857697], [2.384660736964222, 48.86072864880562], [2.384492560389637, 48.86068318273196], [2.384486987997131, 48.860669364415735], [2.384610340862789, 48.860564262810996], [2.384732743764537, 48.86046003664644], [2.384856095649351, 48.86035493386923], [2.384978497567786, 48.860250707433664], [2.385101848450628, 48.86014560528263], [2.385224249385561, 48.860041378576014], [2.385347599287772, 48.85993627525253], [2.38546999923931, 48.8598320482749], [2.385593348139578, 48.85972694557759], [2.3857157471077333, 48.85962271832891], [2.385839095027177, 48.85951761445916], [2.385961493012058, 48.859413386939515], [2.386084839929586, 48.85930828369593], [2.386207236931003, 48.859204055905224], [2.386216936517382, 48.85918862431363], [2.386211343887069, 48.85918274628249], [2.386057666183826, 48.859136026558545], [2.385921871740128, 48.85909446531917], [2.38592093838918, 48.859094208712776], [2.385738248885489, 48.859048388331594], [2.38552705552153, 48.85899632554069], [2.385344365333915, 48.858950505446444], [2.38513317276041, 48.85889844195583], [2.384950484625331, 48.85885262126324], [2.3847392914792582, 48.8588005570659], [2.384629528399497, 48.85877302667334], [2.384627537416029, 48.85876976709623], [2.384601505911982, 48.8587638720166], [2.384528580206008, 48.85874558108697], [2.384315868721917, 48.85869174110791], [2.384133182041007, 48.8586459182598], [2.38392047136175, 48.858592078472334], [2.383737785377929, 48.85854625501652], [2.383696277362706, 48.8585219333621], [2.383677208580201, 48.85853190423919], [2.383664456729465, 48.85853857287062], [2.383658274487253, 48.85855053651587], [2.383552563227604, 48.85865698368279], [2.383432118069986, 48.858777219161674], [2.383326405888368, 48.85888366610715], [2.383205961047652, 48.85900390134085], [2.383100246581228, 48.85911034805775], [2.382979800694581, 48.85923058303927], [2.3828740866689992, 48.85933702954165], [2.382874074253629, 48.85933704206846], [2.382753627320985, 48.85945727679779], [2.382679554821073, 48.85953160338826], [2.382664689821651, 48.859540007538186], [2.382659760483005, 48.859549155438394], [2.382627965186317, 48.85958105939088], [2.382520316540487, 48.85968834815375], [2.382414449173676, 48.859794579380285], [2.382306801009954, 48.859901867937474], [2.382200932784598, 48.86000809805538], [2.38209328236641, 48.860115387292076], [2.381987413271835, 48.860221617200665], [2.38187976197278, 48.86032890622464], [2.381773892008978, 48.860435135923844], [2.3816662398290482, 48.86054242473509], [2.381560368996008, 48.86064865422496], [2.381452715945871, 48.860755941924175], [2.3813468442330112, 48.86086217210399], [2.381239191664863, 48.86096945959753], [2.381133319082747, 48.861075689567976], [2.3810970876223, 48.861092703068394]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 47, "zemmour_eric": 61.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-40", "circ_bv": "06", "num_bureau": 40, "roussel_fabien": 32.0, "nb_emargement": 1160.0, "nb_procuration": 58.0, "nb_vote_blanc": 11.0, "jadot_yannick": 91.0, "le_pen_marine": 71.0, "nb_exprime": 1143.0, "nb_vote_nul": 6.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1498.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1160, "quartier_bv": "43", "geo_point_2d": [48.86006245126645, 2.3836433030353175], "melenchon_jean_luc": 427.0, "poutou_philippe": 5.0, "macron_emmanuel": 338.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355037123824084, 48.86068990694381], [2.355048748289836, 48.86068799642395], [2.355233138300135, 48.86062634956281], [2.355407110343699, 48.86056854677278], [2.355581083375326, 48.86051074283489], [2.355765472117303, 48.86044909604298], [2.355939442978491, 48.860391292469885], [2.356123830884715, 48.860329644219874], [2.356297800949451, 48.86027184011961], [2.356482188008997, 48.86021019131084], [2.356656158640136, 48.86015238669069], [2.356840543478844, 48.86009073821509], [2.356860162191347, 48.860069809703916], [2.3568206365463062, 48.86003630611327], [2.356714506484622, 48.85993175214361], [2.356601682987028, 48.85982102492919], [2.356495553803255, 48.85971647074506], [2.356382729874327, 48.8596057432954], [2.356276602931294, 48.85950118890414], [2.356163779944983, 48.85939046032721], [2.3560576538799403, 48.85928590572151], [2.355944831813908, 48.859175177816], [2.355838706626742, 48.859070622995866], [2.355725885492194, 48.85895989486245], [2.355619759819974, 48.85885533982049], [2.35550693962813, 48.85874461055989], [2.355400816196592, 48.85864005531082], [2.355287996925088, 48.858529326721616], [2.355181874371502, 48.858424771258115], [2.355076163781685, 48.858321543549714], [2.354970040713494, 48.85821698787143], [2.354864330964934, 48.858113759956595], [2.35475821010794, 48.858009204078215], [2.354652499837729, 48.85790597594956], [2.35454637982902, 48.85780141986376], [2.354440671762947, 48.85769819153605], [2.354334551239622, 48.85759363523547], [2.354257192458602, 48.85751809059102], [2.354250170108948, 48.85750602658473], [2.354244528267039, 48.857502003923514], [2.354216179838799, 48.857474320030356], [2.354214608044097, 48.85747225563319], [2.354140989154871, 48.857354961658345], [2.354083469244832, 48.857246502505845], [2.354025948222533, 48.85713804240847], [2.353952330219074, 48.85702074918153], [2.353948850006792, 48.8570175017233], [2.35385653153928, 48.85696273734512], [2.353751973676154, 48.85690855432528], [2.353723712559626, 48.85689178888768], [2.353702764167097, 48.85689552676734], [2.353676161105877, 48.85691814924698], [2.353519907908956, 48.85696596276185], [2.353314707929218, 48.8570287528593], [2.353158455431802, 48.85707656590484], [2.3529532545809, 48.85713935537621], [2.352797001420117, 48.85718716794499], [2.352591799686777, 48.8572499576896], [2.352435545873806, 48.857297768882376], [2.352429336396993, 48.85731026053481], [2.352532610840013, 48.85743422554881], [2.352635708524556, 48.85755797635489], [2.352738983949577, 48.85768194116314], [2.35284208124037, 48.85780569265574], [2.352945359010401, 48.85792965726555], [2.35304845728152, 48.85805340855274], [2.353049025683541, 48.85805417337509], [2.353049100940015, 48.8580643580203], [2.353060961685231, 48.85807038033591], [2.353138522926431, 48.85818882670075], [2.353214219858657, 48.85830442727469], [2.353291780433761, 48.85842287350781], [2.353367478057316, 48.85853847306118], [2.353445039329233, 48.85865691916997], [2.35352073763286, 48.858772518601995], [2.35359643627229, 48.85888811797407], [2.3536739985740462, 48.85900656479647], [2.353675024963394, 48.859011175007254], [2.35365802121913, 48.85910723257459], [2.353640993798323, 48.85920343569811], [2.353642187506431, 48.85920829233435], [2.353711699665767, 48.859306258811245], [2.353780246269002, 48.85940286200702], [2.353849758947518, 48.85950082838655], [2.353918306051666, 48.859597432385556], [2.353986853409906, 48.859694036336876], [2.354056366865386, 48.85979200257068], [2.354059881214774, 48.85979504065276], [2.354193309678605, 48.8598699039634], [2.354327767262572, 48.85994534465622], [2.354332133246019, 48.859949944995854], [2.354365056927618, 48.860033979654425], [2.354397465464098, 48.86011669667091], [2.35439926279605, 48.86011937653178], [2.354505171228264, 48.860225964790345], [2.354609942514953, 48.860331408235474], [2.354714714225723, 48.860436851578875], [2.354820623948749, 48.86054343952773], [2.354823099271104, 48.86054530642847], [2.354910588031285, 48.860595308744514], [2.35500473868506, 48.860649118763156], [2.355037123824084, 48.86068990694381]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 49, "zemmour_eric": 83.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "4-12", "circ_bv": "07", "num_bureau": 12, "roussel_fabien": 12.0, "nb_emargement": 1031.0, "nb_procuration": 78.0, "nb_vote_blanc": 15.0, "jadot_yannick": 104.0, "le_pen_marine": 33.0, "nb_exprime": 1011.0, "nb_vote_nul": 5.0, "arr_bv": "04", "arthaud_nathalie": 2, "nb_inscrit": 1265.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "13", "geo_point_2d": [48.858889581897095, 2.3545721390438445], "melenchon_jean_luc": 239.0, "poutou_philippe": 6.0, "macron_emmanuel": 434.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.382154149656492, 48.885845916760154], [2.382162303379082, 48.88584589947945], [2.382210754686711, 48.88586457844572], [2.38227460101946, 48.885887719227775], [2.382287281979509, 48.88588622702066], [2.382306174691178, 48.8858378194165], [2.382432963649057, 48.88572688614416], [2.382558449109418, 48.88562014675321], [2.382685236999795, 48.885509213191746], [2.382810720044348, 48.88540247440752], [2.38293750686734, 48.88529154055697], [2.3830629902338, 48.88518480149423], [2.383188473096499, 48.88507806139039], [2.383315258324922, 48.884967127107075], [2.383315298273666, 48.88496709313848], [2.383351439122823, 48.884936041218054], [2.383351119961523, 48.88493431916505], [2.383281157622052, 48.88492228737288], [2.383143276618493, 48.884858324834106], [2.383022918228832, 48.884802603013796], [2.383017213583221, 48.88479423777007], [2.38303991247384, 48.88466170063543], [2.383062204723485, 48.884528255764856], [2.3830849033943142, 48.88439571769034], [2.383107195414807, 48.88426227277917], [2.383099375474549, 48.884253128611775], [2.3829062157418113, 48.88419409340747], [2.382725710243727, 48.88413869614934], [2.382545203766096, 48.88408329860929], [2.382352045280862, 48.8840242634011], [2.382333571867181, 48.88402921691652], [2.382262775911553, 48.88415160967145], [2.382192660463131, 48.884273165913704], [2.382121863855344, 48.88439555765892], [2.382051749113244, 48.88451711379873], [2.381980951831852, 48.88463950633272], [2.381910836432372, 48.88476106236303], [2.381896345045975, 48.8847667837054], [2.381703700016295, 48.884750374583035], [2.381526273289477, 48.884735024027094], [2.381348845314445, 48.884719672301706], [2.381156201995175, 48.884703262304775], [2.381144610925868, 48.88469247074071], [2.3811871540341363, 48.88456065432638], [2.381229304014015, 48.88442977114941], [2.381271846693292, 48.884297954673485], [2.38131399624758, 48.884167071435414], [2.381356538497872, 48.88403525489789], [2.381398687637361, 48.8839043706995], [2.381441230822249, 48.88377255410747], [2.381483379525575, 48.883641670747245], [2.381525920917911, 48.883509854086576], [2.381568069206548, 48.883378969766014], [2.381610610169916, 48.88324715304382], [2.381652758022308, 48.883116269561455], [2.381695298556717, 48.882984452777634], [2.38173744599443, 48.88285356833495], [2.381735943498263, 48.88284723380978], [2.381669283219077, 48.882770403580274], [2.381565659873786, 48.882650159813544], [2.381516402855648, 48.88259338804187], [2.3815006657270272, 48.88258773990839], [2.381482311986677, 48.88259539729293], [2.381366224115798, 48.88264922209905], [2.381245217485686, 48.882703962966126], [2.3811291291278502, 48.882757787537045], [2.381008121985464, 48.88281252905833], [2.380997616603433, 48.882813914566775], [2.380851953051419, 48.88279381414233], [2.380700892996378, 48.88277378095422], [2.38055522967115, 48.882753680168044], [2.38040416984657, 48.88273364660482], [2.380389503612614, 48.88273816626642], [2.380296015741467, 48.882851498566914], [2.380203082584311, 48.88296401796686], [2.380109595265578, 48.883077350105594], [2.380016661291884, 48.88318987023698], [2.379923173161902, 48.88330320220692], [2.379830238393075, 48.88341572127123], [2.3797367480777583, 48.88352905396452], [2.379643813866652, 48.88364157286804], [2.379550322750874, 48.88375490449323], [2.3794573877232, 48.88386742412825], [2.37936389579624, 48.883980755584616], [2.379270958609833, 48.88409327414544], [2.379177467235168, 48.884206605440035], [2.379084529232161, 48.884319124732336], [2.3789910370464042, 48.88443245585806], [2.378898098248233, 48.88454497408328], [2.378868981363138, 48.8845783606984], [2.3788771370194812, 48.88458422434481], [2.378976642358344, 48.88462386568397], [2.379132642178315, 48.88468221900104], [2.379298942061936, 48.88474846942726], [2.379397379796583, 48.88478529088263], [2.379438966701756, 48.884801949706784], [2.379450528214113, 48.88480043221233], [2.379508091072574, 48.88482196362161], [2.379671638658641, 48.8848855786185], [2.37982764003069, 48.88494393191542], [2.379827794793953, 48.884943990273904], [2.379991341779493, 48.88500760571922], [2.380162592495487, 48.88507363143925], [2.3803261416607873, 48.8851372464268], [2.38049739185319, 48.88520327255237], [2.3806609418453393, 48.885266886175856], [2.380832192888668, 48.88533291181477], [2.380995743696961, 48.88539652497344], [2.381166995591012, 48.88546255012574], [2.381330547215451, 48.885526162819545], [2.381501801323953, 48.88559218749223], [2.381665352390334, 48.885655800613435], [2.381836607360342, 48.88572182390022], [2.382000159242771, 48.8857854365566], [2.38212296241876, 48.88583278036724], [2.382154149656492, 48.885845916760154]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 26, "zemmour_eric": 58.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-2", "circ_bv": "16", "num_bureau": 2, "roussel_fabien": 21.0, "nb_emargement": 1137.0, "nb_procuration": 55.0, "nb_vote_blanc": 13.0, "jadot_yannick": 104.0, "le_pen_marine": 67.0, "nb_exprime": 1122.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1542.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1138, "quartier_bv": "76", "geo_point_2d": [48.88433849086602, 2.3810824300779756], "melenchon_jean_luc": 541.0, "poutou_philippe": 6.0, "macron_emmanuel": 253.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3711232160205, 48.88947551409239], [2.371100342741685, 48.889477756481], [2.370895935471288, 48.88950223608023], [2.370691813002228, 48.8895262671665], [2.370487406713067, 48.88955074607448], [2.370283283865301, 48.88957477646324], [2.370078877193661, 48.88959925467277], [2.369874753967201, 48.88962328436406], [2.369670345549362, 48.889647761867934], [2.369466223307948, 48.88967179086898], [2.369262099514409, 48.88969581951434], [2.369057690523826, 48.88972029597077], [2.368853566351617, 48.88974432391863], [2.368649158342321, 48.8897687996838], [2.368445033791453, 48.88979282693421], [2.368240625399721, 48.88981730200089], [2.368179003285404, 48.88982586397235], [2.368176203648653, 48.889839330945385], [2.368209494819863, 48.8899153545702], [2.368266072346919, 48.89004493967569], [2.368321666050698, 48.89017189262728], [2.368378244135665, 48.8903014776495], [2.368433838386942, 48.8904284305193], [2.368490418393478, 48.89055801546548], [2.368546013181254, 48.890684969152744], [2.36860259238207, 48.89081455400838], [2.368658187728164, 48.89094150671466], [2.368714767486913, 48.89107109148702], [2.368770363380325, 48.891198044111505], [2.36882694506079, 48.89132762880776], [2.368882541490834, 48.89145458224976], [2.368939122365379, 48.89158416685549], [2.368994719353758, 48.89171111931643], [2.36905130215015, 48.89184070384606], [2.369106899685975, 48.891967656225255], [2.369163481676448, 48.89209724066435], [2.369219079748828, 48.892224193861004], [2.369275662297379, 48.892353778216815], [2.369331260928114, 48.892480730432396], [2.369387845398351, 48.89261031471205], [2.369443444576555, 48.8927372668459], [2.369500028241081, 48.89286685103503], [2.369555627955871, 48.89299380398633], [2.369612212178294, 48.89312338809213], [2.369667812451454, 48.893250340062416], [2.369724398595814, 48.893379924092045], [2.369779999416468, 48.893506875980506], [2.369836584754915, 48.89363645991964], [2.369892186112184, 48.89376341262556], [2.369948773372597, 48.893892996488525], [2.370004375288158, 48.89401994821339], [2.370005419845246, 48.8940216552202], [2.370089249955671, 48.8941262526313], [2.37018652808394, 48.89424814265521], [2.370270358911896, 48.89435274081717], [2.370367636523475, 48.8944746306616], [2.370406091705215, 48.89452261094198], [2.370436532627646, 48.89453618251678], [2.370485177694631, 48.894513555980865], [2.370601322532691, 48.89448105176239], [2.37072470467861, 48.89444873205066], [2.370752489105638, 48.89443326947462], [2.370729191743997, 48.894400565640765], [2.370720046191537, 48.894332447253426], [2.370703243965691, 48.89426373824259], [2.370696120067941, 48.894257207725076], [2.370483898243345, 48.89418372951547], [2.370257212772253, 48.89410494892012], [2.370252690926587, 48.8940915702548], [2.370370856015615, 48.893988486630576], [2.370488508637007, 48.89388668801355], [2.370606672805127, 48.893783603238106], [2.37072432313854, 48.89368180436319], [2.370842486363919, 48.89357872023505], [2.370960137148006, 48.893476920217346], [2.371078299441521, 48.89337383583727], [2.371195949301681, 48.893272035568835], [2.371314110663239, 48.89316895093683], [2.371431758224703, 48.89306715130978], [2.371549918665377, 48.89296406552658], [2.371667566666555, 48.892862265656014], [2.371785726164537, 48.89275918052016], [2.37190337188886, 48.89265737949251], [2.372021530454913, 48.89255429410469], [2.372139176619056, 48.8924524928335], [2.372257334253292, 48.89234940719373], [2.37237497948261, 48.89224760657113], [2.372377203730114, 48.89223959089623], [2.372320390582258, 48.89211368594329], [2.37226491127507, 48.891989614459575], [2.372208098671407, 48.891863709424676], [2.372152619898152, 48.89173963786069], [2.372095809213402, 48.89161373185167], [2.372040329610395, 48.89148966020021], [2.3719835194590733, 48.891363755008506], [2.37192804038989, 48.891239683276766], [2.3718712307828342, 48.891113778003074], [2.371815752247568, 48.89098970619105], [2.371760273976798, 48.89086563433929], [2.371703465183515, 48.89073972894306], [2.371647987446551, 48.890615657011026], [2.371591179208367, 48.890489750633606], [2.3715357033583, 48.890365679527704], [2.371478894300608, 48.89023977306116], [2.371423418995177, 48.89011570097569], [2.371366610470867, 48.88998979532651], [2.371311135699316, 48.88986572316074], [2.371254329082968, 48.88973981743675], [2.371198853481656, 48.88961574518359], [2.371142047420385, 48.88948983847836], [2.3711232160205, 48.88947551409239]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 45, "zemmour_eric": 105.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-53", "circ_bv": "17", "num_bureau": 53, "roussel_fabien": 18.0, "nb_emargement": 1043.0, "nb_procuration": 27.0, "nb_vote_blanc": 15.0, "jadot_yannick": 54.0, "le_pen_marine": 64.0, "nb_exprime": 1027.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 11, "nb_inscrit": 1504.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "73", "geo_point_2d": [48.89152582445995, 2.3703494224026875], "melenchon_jean_luc": 418.0, "poutou_philippe": 8.0, "macron_emmanuel": 254.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291008312662198, 48.88531016554851], [2.2910110640106662, 48.8853101080954], [2.291032564202527, 48.8853238135492], [2.291039946879572, 48.885328346738696], [2.291053439638246, 48.88533032152887], [2.291083369668035, 48.885323931811385], [2.291103418294982, 48.885319651874994], [2.291118212226606, 48.885315600731595], [2.291120311377336, 48.88530545158761], [2.291115245486725, 48.88518392429218], [2.291110221705172, 48.88506341258033], [2.291105154498057, 48.88494188524968], [2.291100130763307, 48.884821373510874], [2.291095063603192, 48.884699846153], [2.291090039902902, 48.88457933528649], [2.291085016238005, 48.884458823507316], [2.29107995051212, 48.884337296116804], [2.291074925530345, 48.88421678430264], [2.291069859851553, 48.88409525688497], [2.291068257323166, 48.88409126694035], [2.290996982508731, 48.884003258667725], [2.290925858129785, 48.88391543649813], [2.29092428694801, 48.883911849638565], [2.290910766510746, 48.88378885655163], [2.290897396860439, 48.88366721244549], [2.290884025909135, 48.88354556831632], [2.290870505662056, 48.88342257518392], [2.2908571361998282, 48.88330093103277], [2.290843616079769, 48.88317793786995], [2.290830245391958, 48.88305629278144], [2.290816726762363, 48.88293329959632], [2.2908196412147452, 48.88292706377842], [2.290948914864297, 48.88281948557077], [2.291081732644913, 48.882708957695506], [2.291211006562933, 48.88260138009091], [2.291343823231038, 48.88249085190297], [2.291473096078475, 48.88238327309479], [2.291605911634179, 48.88227274459424], [2.291605717467156, 48.88226566656868], [2.291589687642929, 48.882257287934195], [2.291410217873387, 48.88223429285085], [2.291231373056512, 48.882211378539765], [2.2910519036034, 48.88218838291834], [2.290873059114094, 48.88216546717176], [2.290693589977421, 48.88214247101228], [2.2905147458034563, 48.8821195547295], [2.290335276983229, 48.88209655803193], [2.290156433124713, 48.88207364121298], [2.2899769646208368, 48.882050643977344], [2.289798121077674, 48.882027726622205], [2.289782758013473, 48.882021177350346], [2.289770705959933, 48.8820242139619], [2.2896046703770763, 48.88200293714188], [2.289445725544121, 48.881982569134834], [2.289279690214539, 48.8819612927626], [2.2891207456357883, 48.8819409243234], [2.288961799817752, 48.881920555664735], [2.288795766259488, 48.88189927772898], [2.288788085430166, 48.88189635692136], [2.288661514413251, 48.88180052526555], [2.288534756278627, 48.88170455025759], [2.288408187557446, 48.88160871832534], [2.288281430356531, 48.88151274303248], [2.288154861204263, 48.88141691080762], [2.28802810630045, 48.8813209352379], [2.287901538080595, 48.88122510272859], [2.287774782746975, 48.881129126865844], [2.287648216822816, 48.8810332940801], [2.287521462422985, 48.880937317932435], [2.287394897431013, 48.880841484862195], [2.287268143964861, 48.88074550842963], [2.287141578541791, 48.88064967506679], [2.28701482737269, 48.880553698357446], [2.287003754983605, 48.88055062682747], [2.286873957105077, 48.88055559600822], [2.286722776799228, 48.880561382859554], [2.286710056962777, 48.88057157212004], [2.286745117477409, 48.880741688443315], [2.286777526384546, 48.880898937394484], [2.286781865745616, 48.88090437995758], [2.286919399948383, 48.88098685549693], [2.287058159955873, 48.88107006393478], [2.287195696397346, 48.881152539152446], [2.287334455911933, 48.881235748148676], [2.2874719932285252, 48.88131822303656], [2.287610753626016, 48.88140143170005], [2.287748291817734, 48.88148390625807], [2.287887053110432, 48.88156711368952], [2.288024592177176, 48.88164958791774], [2.288163354340594, 48.881732795915696], [2.288164545741453, 48.88174529389103], [2.288022507199504, 48.88185485368531], [2.287885374236241, 48.88196062929428], [2.287743333156254, 48.88207018872783], [2.287606200422353, 48.882175964004475], [2.287469065767967, 48.88228173910576], [2.287327022936341, 48.88239129801344], [2.287189887147883, 48.882497072774214], [2.287047844505031, 48.88260663133736], [2.2870265942544012, 48.88260620171444], [2.286912147072379, 48.88250610475957], [2.28680037777879, 48.882408348421045], [2.286685932829906, 48.8823082512401], [2.286574164373365, 48.88221049557206], [2.286561300072103, 48.88220701132626], [2.286411415269892, 48.882221495815884], [2.286232934386753, 48.88223874327336], [2.286218496360391, 48.88224850043663], [2.286218571552845, 48.88225475397355], [2.286364298053186, 48.882348094298095], [2.286505329349998, 48.882438008759536], [2.286651056877098, 48.88253134871949], [2.286792089165389, 48.88262126282818], [2.286937817731469, 48.8827146015243], [2.287078851011142, 48.882804515280206], [2.28722458059168, 48.882897854511036], [2.287365616226287, 48.882987767922245], [2.287506650984255, 48.883077681151896], [2.287652382096071, 48.88317101983882], [2.28779341784544, 48.8832609327157], [2.287939149984048, 48.88335427103801], [2.288080186724927, 48.88344418356211], [2.288225919890231, 48.88353752151987], [2.288366957634813, 48.883627432791855], [2.288512691826921, 48.883720770385], [2.288653730550631, 48.88381068220354], [2.288799465769552, 48.88390401943202], [2.288940505484691, 48.88399393089776], [2.289086241730533, 48.88408726776163], [2.289227283800579, 48.88417717888266], [2.289373019709673, 48.88427051537383], [2.289514062771164, 48.88436042614204], [2.289659799707088, 48.88445376226859], [2.289800843772297, 48.88454367178473], [2.289946581735053, 48.88463700754669], [2.289995656580432, 48.88466829053952], [2.290013011776844, 48.88468341503892], [2.290019827619379, 48.8846837009747], [2.290111796509341, 48.88474232801698], [2.2902704309485, 48.88484173658598], [2.290411475743057, 48.884931646242265], [2.290570111318752, 48.88503105529637], [2.290711157143492, 48.8851209645841], [2.290869792504388, 48.88522037321598], [2.29098933917876, 48.885296576677355], [2.291008312662198, 48.88531016554851]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 199, "zemmour_eric": 215.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "17-53", "circ_bv": "04", "num_bureau": 53, "roussel_fabien": 7.0, "nb_emargement": 1341.0, "nb_procuration": 61.0, "nb_vote_blanc": 11.0, "jadot_yannick": 69.0, "le_pen_marine": 71.0, "nb_exprime": 1328.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1674.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1340, "quartier_bv": "65", "geo_point_2d": [48.883008754981475, 2.2892954584748253], "melenchon_jean_luc": 114.0, "poutou_philippe": 2.0, "macron_emmanuel": 606.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.321003804424643, 48.82759052669807], [2.320995936440431, 48.82757975784876], [2.320931815672655, 48.82751683037255], [2.320814927255967, 48.82740161646284], [2.320710607049445, 48.827299236883825], [2.3205937196211748, 48.82718402183626], [2.320489400272615, 48.82708164294373], [2.320372513821137, 48.82696642765763], [2.320268195342349, 48.82686404855226], [2.3202679453295962, 48.82686379170786], [2.320172937235788, 48.82676290263276], [2.320076042134259, 48.82665925424219], [2.319981034796165, 48.82655836409695], [2.319884141806617, 48.82645471643905], [2.319789135212602, 48.82635382612298], [2.319692241622613, 48.826250178283004], [2.319655032735942, 48.82621066375442], [2.319640179567349, 48.82617750010148], [2.319582680498335, 48.826178051658395], [2.319524885018453, 48.82611667567111], [2.319494855451094, 48.826083791687], [2.3194741539010533, 48.82607041704017], [2.319448424869363, 48.82608103079349], [2.319250335995435, 48.826110026244564], [2.319051473885987, 48.826138969298064], [2.318853384571168, 48.826167964090104], [2.318654522020368, 48.82619690648204], [2.3184564322646652, 48.82622590061512], [2.318257569272422, 48.82625484234546], [2.318059479064182, 48.82628383671885], [2.317860615630603, 48.82631277778763], [2.317662524993256, 48.82634177060269], [2.317463661118352, 48.826370711009915], [2.317265570040046, 48.82639970316596], [2.317066705723928, 48.82642864291161], [2.316868614204773, 48.82645763440865], [2.316669749447346, 48.826486573492716], [2.316471658849422, 48.82651556433853], [2.316272792288625, 48.826544502753244], [2.316074701238073, 48.826573493839355], [2.315875834235879, 48.826602431592484], [2.315677742756399, 48.82663142112026], [2.315478875312923, 48.826660358211825], [2.31528078339263, 48.82668934708056], [2.315081915507879, 48.826718283510516], [2.314883823146679, 48.826747271720286], [2.314684954820763, 48.826776207488656], [2.314486862018766, 48.826805195039384], [2.314287993251594, 48.82683413014615], [2.314089900008809, 48.82686311703784], [2.313891030788552, 48.826892052382355], [2.313849651028741, 48.826917620847865], [2.31384984415525, 48.826918782154515], [2.3138833420370712, 48.82694085712892], [2.314022171180875, 48.82703234419296], [2.3141636298998662, 48.82712765413475], [2.31430246003293, 48.82721914085815], [2.314443918409069, 48.82731445044473], [2.314582749531399, 48.82740593682756], [2.314724210288873, 48.827501246074526], [2.314863042400479, 48.82759273211672], [2.315004502815106, 48.82768804100848], [2.315143335915992, 48.82777952671009], [2.315284797349871, 48.82787483525443], [2.315423631440046, 48.82796632061541], [2.315565095255296, 48.82806162882015], [2.315703930334767, 48.828153113840514], [2.315845393807177, 48.82824842169], [2.315984229875951, 48.82833990636974], [2.316125694367636, 48.82843521387185], [2.316264532799637, 48.828526697319404], [2.316405998298813, 48.82862200537336], [2.316544836358004, 48.82871348847251], [2.316686302876475, 48.82880879617904], [2.316825141924984, 48.82890027893759], [2.316966610824893, 48.82899558630443], [2.317105450862731, 48.8290870687223], [2.317218641333309, 48.829163324688004], [2.317218906145881, 48.82917451624391], [2.31722996217787, 48.829182089158024], [2.317258240278694, 48.82920114020097], [2.317307093408082, 48.82922414183081], [2.317322736097824, 48.82922422212978], [2.317513293153218, 48.82913743342854], [2.317691922196155, 48.829055522042616], [2.317870550677875, 48.828973610383905], [2.318061105905166, 48.82888682079043], [2.318061333380111, 48.828886717759794], [2.31822235717143, 48.828816031936995], [2.318382471511668, 48.828745794897415], [2.318543493082033, 48.82867510772632], [2.318703607918938, 48.82860487025575], [2.318864628618519, 48.82853418264338], [2.31902474122784, 48.82846394472631], [2.319185761045097, 48.828393257572], [2.319345874162825, 48.82832301832462], [2.3195068931093052, 48.82825233072907], [2.319667003987719, 48.8281820919345], [2.319828022075363, 48.82811140299842], [2.319988133450436, 48.828041163772845], [2.320149150667405, 48.827970474395535], [2.320309261176921, 48.82790023473123], [2.320470277523213, 48.82782954491268], [2.320630385805272, 48.82775930480191], [2.320791401269175, 48.827688615441446], [2.320951510059606, 48.82761837400038], [2.321003804424643, 48.82759052669807]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 75, "zemmour_eric": 63.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "14-50", "circ_bv": "10", "num_bureau": 50, "roussel_fabien": 27.0, "nb_emargement": 1205.0, "nb_procuration": 75.0, "nb_vote_blanc": 9.0, "jadot_yannick": 110.0, "le_pen_marine": 58.0, "nb_exprime": 1191.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1541.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1205, "quartier_bv": "56", "geo_point_2d": [48.827476455835125, 2.3176775191912777], "melenchon_jean_luc": 308.0, "poutou_philippe": 8.0, "macron_emmanuel": 468.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4623965389855402, 48.81940599996399], [2.4624101578019353, 48.81940606119362], [2.462410250522558, 48.819397067893696], [2.462396631708514, 48.819397006664076], [2.4623965389855402, 48.81940599996399]]], "type": "Polygon"}, "properties": {"lassalle_jean": 0.0, "pecresse_valerie": 4, "zemmour_eric": 6.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 0.0, "date_tour": "2022-04-10", "id_bvote": "15-99", "circ_bv": "07", "num_bureau": 99, "roussel_fabien": 1.0, "nb_emargement": 66.0, "nb_procuration": 21.0, "nb_vote_blanc": 1.0, "jadot_yannick": 8.0, "le_pen_marine": 3.0, "nb_exprime": 65.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 901.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 66, "quartier_bv": "14", "geo_point_2d": [48.81940153392898, 2.462403394754635], "melenchon_jean_luc": 16.0, "poutou_philippe": 1.0, "macron_emmanuel": 22.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.36379812373917, 48.86750136102104], [2.363770323804195, 48.867465189233656], [2.363602683106802, 48.86739674395962], [2.36343524032653, 48.86733355704681], [2.363267601856149, 48.86726511130261], [2.363100159905319, 48.867201923913456], [2.362932520924664, 48.867133478583796], [2.362765079803477, 48.86707029071843], [2.362597639088492, 48.867007102615176], [2.362430001406042, 48.86693865567032], [2.362262561520499, 48.866875467090814], [2.362094926065048, 48.86680701967579], [2.361927485646021, 48.866743830612705], [2.361759851054434, 48.866675382720246], [2.361755443684184, 48.86667272594369], [2.361642009994458, 48.866565569626005], [2.36153173532417, 48.866464526681376], [2.361418301184833, 48.866357370124256], [2.361308028763316, 48.86625632606252], [2.361194595537485, 48.86614916927324], [2.361084322616548, 48.86604812587839], [2.36097089166722, 48.86594096886419], [2.360860619631925, 48.86583992434494], [2.360747189585147, 48.865732767997855], [2.360636918424355, 48.86563172325348], [2.360526647691432, 48.8655306783983], [2.360413219004848, 48.865423521704784], [2.360393346866594, 48.86540531172664], [2.360391920898774, 48.86540465388082], [2.360333475314809, 48.865430971076634], [2.360133252993407, 48.865470024087216], [2.359931366048738, 48.86550940151697], [2.359731144476406, 48.865548454758674], [2.359529256923852, 48.86558783150738], [2.359329034759703, 48.86562688317431], [2.359127146599275, 48.865666259241934], [2.358926922469271, 48.86570531022615], [2.358725033700975, 48.86574468561269], [2.358524810320045, 48.86578373682801], [2.358322920943887, 48.865823111533494], [2.358315040206833, 48.865836300417094], [2.358411632683325, 48.86594448041319], [2.358506676557174, 48.866050924380566], [2.358603271192683, 48.86615910420832], [2.358698315838501, 48.866265548902206], [2.358794909906812, 48.866373728546975], [2.358889955335885, 48.86648017306805], [2.358986550200017, 48.8665883525372], [2.359081596412253, 48.86669479688538], [2.359178193435548, 48.8668029761862], [2.359273240430855, 48.86690942036155], [2.3592748176343, 48.866912081864236], [2.359304531360881, 48.86700263110538], [2.35933586529221, 48.867098118297335], [2.359365579231017, 48.86718866750814], [2.359396913386145, 48.86728415466806], [2.359386975918023, 48.867294769472124], [2.359184180014698, 48.86732906756522], [2.358986088528996, 48.86736257031099], [2.358783292097787, 48.86739686772276], [2.35858520010752, 48.867430368903705], [2.358569102169098, 48.86743455540566], [2.358566754335396, 48.86744421794199], [2.358600048406453, 48.86756642354903], [2.358632873087732, 48.867686906176786], [2.35866616610575, 48.86780911173132], [2.3586989910818, 48.86792959521375], [2.358732285773296, 48.86805180073039], [2.358765111066268, 48.86817228326898], [2.35879840470472, 48.86829448873313], [2.358831230292475, 48.86841497212639], [2.358848069092037, 48.86846536156837], [2.358871828077912, 48.868462557884975], [2.359070031206364, 48.86843450954003], [2.359276412548231, 48.8684039936872], [2.359376786673979, 48.868389788969424], [2.359379874403786, 48.86839145218922], [2.359410715638037, 48.868399599807354], [2.359601288445834, 48.86837208442462], [2.359699116914951, 48.86835823994226], [2.359897319201034, 48.86833019022475], [2.360087891486929, 48.868302674964774], [2.360286093352255, 48.86827462460209], [2.360476663877389, 48.86824710781519], [2.360674865310907, 48.8682190577066], [2.360865436790461, 48.86819154030656], [2.361063637814344, 48.868163488653515], [2.361254208874212, 48.868135971532396], [2.361444778369682, 48.86810845409995], [2.361642978765358, 48.868080401485436], [2.36183354922625, 48.86805288254057], [2.3620317492012273, 48.868024829280856], [2.362241266908732, 48.86799507059352], [2.362439465081017, 48.86796701664997], [2.362637664402886, 48.86793896238473], [2.362847181418887, 48.867909202634486], [2.363045380301313, 48.86788114769264], [2.363254896851857, 48.86785138722713], [2.363261215752229, 48.867849239042215], [2.363398611552325, 48.86776653623508], [2.363526267151505, 48.86769205361043], [2.363663662116126, 48.86760935048731], [2.363791318314299, 48.86753486757665], [2.36379812373917, 48.86750136102104]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 60, "zemmour_eric": 82.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "3-14", "circ_bv": "05", "num_bureau": 14, "roussel_fabien": 26.0, "nb_emargement": 1352.0, "nb_procuration": 94.0, "nb_vote_blanc": 13.0, "jadot_yannick": 138.0, "le_pen_marine": 42.0, "nb_exprime": 1334.0, "nb_vote_nul": 5.0, "arr_bv": "03", "arthaud_nathalie": 6, "nb_inscrit": 1654.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1352, "quartier_bv": "09", "geo_point_2d": [48.867082924251896, 2.3605930979022407], "melenchon_jean_luc": 349.0, "poutou_philippe": 3.0, "macron_emmanuel": 577.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.365199393664297, 48.868074698922484], [2.365206171001911, 48.86808068040846], [2.365318245905936, 48.868125460268224], [2.365418285030078, 48.868165651626114], [2.365419490353062, 48.86816608070665], [2.365604298073769, 48.86822407948018], [2.365777634677853, 48.86827781546119], [2.365950971650392, 48.868331550289284], [2.366135779186801, 48.86838954822631], [2.366309116889627, 48.868443283429606], [2.366493926584355, 48.86850128081499], [2.36666726503935, 48.86855501459489], [2.366852074155109, 48.86861301231351], [2.36685282538973, 48.868613229431], [2.367026164576518, 48.86866696358502], [2.367236007289261, 48.868722869018015], [2.367307074302928, 48.868744899009435], [2.367326129974688, 48.86875296339196], [2.367335367901616, 48.868752916892205], [2.367437640878711, 48.868784619570825], [2.367624434385123, 48.86884638850184], [2.367797775154607, 48.86890012062776], [2.367906092504648, 48.86893593782693], [2.36792817021484, 48.86893201818115], [2.367936236876111, 48.86889143490635], [2.368032189155993, 48.868768626797625], [2.368122634591748, 48.86867584546866], [2.368132233168532, 48.86867112784133], [2.368316020078697, 48.86864833198459], [2.368512990859372, 48.86862485265714], [2.368696778791925, 48.868602057121294], [2.3688937492369, 48.868578576266955], [2.369077535476384, 48.86855578013834], [2.369274506927033, 48.86853229956294], [2.369458292847506, 48.868509501949404], [2.369591691612902, 48.868493599220706], [2.369628131469514, 48.86848488767818], [2.3696209229351313, 48.868445437039746], [2.369693705630618, 48.86833034599045], [2.369767478058491, 48.86821432478434], [2.369840261470345, 48.868099233629046], [2.369914033255389, 48.86798321140909], [2.369986814657484, 48.86786812013347], [2.370060585777954, 48.867752098698205], [2.37013336789652, 48.86763700731656], [2.370207138374173, 48.86752098486747], [2.370279918482908, 48.86740589336549], [2.370353688295906, 48.86728987170111], [2.370426469121116, 48.86717478009316], [2.370500238280542, 48.867058758314215], [2.370573017095949, 48.866943666585904], [2.3706467856125792, 48.866827643793144], [2.370719565144465, 48.86671255195886], [2.37079333299657, 48.86659652995079], [2.370866110518681, 48.86648143799623], [2.3709398777278983, 48.86636541497437], [2.370940009828495, 48.8663651998267], [2.371012788066497, 48.866250107766014], [2.371073798120681, 48.86614672079801], [2.371073859258431, 48.86614662488973], [2.371132547742816, 48.866056775166754], [2.371193557322153, 48.86595338901895], [2.371175999146482, 48.86592565010167], [2.371142094794267, 48.865925158991864], [2.370956609597815, 48.86595967588021], [2.370794650982769, 48.86598439013168], [2.370786425406568, 48.86598395387552], [2.370618448472584, 48.86593869263317], [2.37045398958428, 48.865896412988526], [2.370286013221396, 48.86585115127599], [2.37012155351625, 48.865808871164056], [2.369953577735347, 48.8657636080821], [2.369789119939374, 48.86572132751718], [2.369757765705138, 48.8657128785728], [2.369748844703977, 48.86570570340949], [2.369731378237035, 48.86570515726259], [2.369594757300381, 48.86566834262454], [2.369435240852773, 48.8656256702991], [2.369267264884908, 48.86558040713856], [2.369107748974717, 48.865537734373206], [2.368939774938035, 48.86549247075667], [2.368780258202368, 48.86544979754432], [2.36876245984564, 48.86545482452883], [2.368686876594858, 48.8655809264656], [2.36861125622769, 48.8657066863963], [2.3685356722455833, 48.86583278820887], [2.368460052510807, 48.86595854802258], [2.368384467797267, 48.866084649711006], [2.368308845968861, 48.86621040939337], [2.368233260512969, 48.86633651185684], [2.368157639327853, 48.866462270523], [2.368139846126594, 48.866467288446316], [2.367976758856388, 48.86642366454412], [2.367822122095936, 48.866383310092054], [2.367813582946285, 48.86638298619207], [2.3676141835601943, 48.86641820503872], [2.367419039516335, 48.866452546702774], [2.367223893852068, 48.866486888040384], [2.3670244936697182, 48.866522105901296], [2.366829347484793, 48.86655644659348], [2.366629946758433, 48.86659166469413], [2.36643480142692, 48.8666260038488], [2.366235400167586, 48.86666122128995], [2.366040252952312, 48.86669555979195], [2.365840851160113, 48.866730776573554], [2.36583157438462, 48.86674255376322], [2.365877070058337, 48.866824605228345], [2.365918415799315, 48.86690076198345], [2.365918249829087, 48.86690711765014], [2.365849309562669, 48.86702149667885], [2.365781847323907, 48.867134257480465], [2.365712906457401, 48.86724863640714], [2.36564544362923, 48.86736139710873], [2.365577979145852, 48.86747415775358], [2.365509038734089, 48.86758853743419], [2.365441573661284, 48.867701297978975], [2.365372632660272, 48.86781567665822], [2.365305166998135, 48.86792843710299], [2.365236224033953, 48.86804281567297], [2.365199393664297, 48.868074698922484]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 52, "zemmour_eric": 75.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "11-22", "circ_bv": "07", "num_bureau": 22, "roussel_fabien": 31.0, "nb_emargement": 1390.0, "nb_procuration": 60.0, "nb_vote_blanc": 15.0, "jadot_yannick": 158.0, "le_pen_marine": 56.0, "nb_exprime": 1371.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1710.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1390, "quartier_bv": "41", "geo_point_2d": [48.867276468856524, 2.368255235622022], "melenchon_jean_luc": 438.0, "poutou_philippe": 7.0, "macron_emmanuel": 483.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.341499927717849, 48.89424043721247], [2.341482035990529, 48.89423028890953], [2.341477090532832, 48.89419566571511], [2.341477265456555, 48.8941931584693], [2.341511794329721, 48.8940802541559], [2.341544616709542, 48.893965307971555], [2.341579145285552, 48.8938524036153], [2.341611967372942, 48.89373745738859], [2.341646495651798, 48.89362455298944], [2.341679317446964, 48.89350960672037], [2.341713844064846, 48.89339670227084], [2.341746666931515, 48.893281755966925], [2.341747640613522, 48.89327971715969], [2.341764570180714, 48.8932586068975], [2.341758682931147, 48.8932478735009], [2.3418305755404862, 48.8931429634116], [2.341890962682005, 48.893056783181244], [2.341951348248541, 48.892970603805374], [2.3420232400980883, 48.892865692674604], [2.342031308328528, 48.89286087526852], [2.342198452788606, 48.89282368114682], [2.342380713920557, 48.892778738507225], [2.34238894365376, 48.892767609618396], [2.342330864132074, 48.892646253515736], [2.342274310337127, 48.89252732942514], [2.342216231350754, 48.89240597324027], [2.342159678067257, 48.89228704996873], [2.342101599616085, 48.89216569370172], [2.342045046866755, 48.8920467694507], [2.3419869689393122, 48.89192541400072], [2.341930416712777, 48.89180648966956], [2.341872339331988, 48.89168513323811], [2.341815787616877, 48.89156620972605], [2.341757710771268, 48.891444853212434], [2.341701159590309, 48.89132592872089], [2.341692748264976, 48.891297707561826], [2.341659232820709, 48.891296877589284], [2.341624298567333, 48.8912820589172], [2.341618504333427, 48.89127682447078], [2.341565365970033, 48.89114614470846], [2.341515081693105, 48.891025008939515], [2.341464797650147, 48.8909038731361], [2.341411661416885, 48.89077319326863], [2.341361377869087, 48.89065205649474], [2.341308242152463, 48.890521376551405], [2.341315235780634, 48.89051103052149], [2.341432812695511, 48.89047162671113], [2.341566027575433, 48.890416213562105], [2.34156662167925, 48.89040126375841], [2.341395886781191, 48.89032168786372], [2.341243619527254, 48.890249355754385], [2.3410728856208323, 48.89016977938818], [2.340920619259819, 48.89009744685812], [2.340768353321848, 48.89002511412966], [2.340597620888532, 48.88994553617029], [2.340445355843484, 48.8898732030211], [2.340274624390413, 48.88979362548946], [2.340221122386045, 48.889802348238454], [2.340218477178395, 48.88980574750191], [2.340254346015099, 48.88992515518641], [2.340290876988861, 48.8900468894508], [2.340326746146215, 48.890166297986575], [2.340363277458526, 48.89028803220214], [2.340399146959422, 48.89040743979076], [2.340435678610083, 48.890529173957454], [2.340471549795597, 48.890648582404914], [2.340508080420963, 48.89077031651529], [2.34054395194993, 48.89088972401557], [2.340580484277615, 48.89101145808457], [2.3406163547636, 48.89113086642866], [2.34065288742965, 48.89125260044886], [2.340637374189252, 48.89126322777566], [2.340469778222653, 48.891245714081016], [2.340250818231712, 48.89122243398696], [2.340083222537841, 48.89120491885137], [2.339864262891289, 48.89118163804969], [2.33969666744726, 48.89116412327167], [2.339636748938194, 48.89115775209048], [2.339598478053115, 48.89117594300151], [2.339626829787306, 48.89122280576012], [2.339648584906729, 48.89126642424295], [2.339687910670253, 48.891394551963074], [2.339728576018678, 48.89152987803442], [2.339767902178024, 48.89165800569751], [2.339808567928707, 48.891793332608444], [2.339847894495284, 48.89192145931519], [2.339888560659634, 48.892056786166464], [2.339927887622042, 48.892184912816184], [2.339968554200068, 48.89232023960774], [2.340007881546915, 48.892448367099696], [2.340048548550019, 48.892583692932305], [2.340087876292712, 48.8927118203672], [2.340087898565185, 48.89271189243578], [2.340120392412902, 48.89281556646944], [2.340159720507534, 48.89294369385363], [2.340192214642927, 48.89304736784588], [2.340206921210862, 48.8930952793476], [2.340206481863266, 48.89311617268613], [2.340221938747015, 48.893126618044604], [2.340246560674898, 48.893206832971735], [2.340287237197326, 48.89334462461735], [2.340326566102164, 48.89347275188488], [2.340367243055367, 48.89361054257061], [2.340406572357955, 48.893738669780824], [2.340447249730646, 48.89387646040594], [2.340486579430992, 48.89400458755874], [2.340527257223176, 48.89414237812327], [2.340566587321386, 48.894270505218756], [2.34060726553307, 48.89440829572265], [2.340646596028948, 48.89453642276072], [2.340687274660138, 48.894674213204], [2.34072660555379, 48.89480234018477], [2.340734989423991, 48.894829824626086], [2.340745403530421, 48.89483484980671], [2.34075614569528, 48.8948400341735], [2.340810230960756, 48.89482593556878], [2.340868549630116, 48.89483760240684], [2.3409258049982142, 48.894845886413705], [2.340938776129398, 48.89484318339522], [2.341086678261108, 48.89473693310472], [2.341225856291096, 48.89463519509054], [2.34136503514091, 48.89453345691266], [2.341512935534266, 48.89442720516644], [2.341516372460878, 48.89441977678511], [2.341498834359446, 48.89434348984059], [2.341488129020518, 48.89426853818196], [2.341499927717849, 48.89424043721247]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 66, "zemmour_eric": 81.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "18-4", "circ_bv": "18", "num_bureau": 4, "roussel_fabien": 26.0, "nb_emargement": 1509.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 141.0, "le_pen_marine": 77.0, "nb_exprime": 1488.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1855.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1508, "quartier_bv": "70", "geo_point_2d": [48.892334304074794, 2.3409682076066596], "melenchon_jean_luc": 489.0, "poutou_philippe": 10.0, "macron_emmanuel": 529.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3317447380596352, 48.856418916679374], [2.3317389443221073, 48.85640318341451], [2.331706790646753, 48.856363930541484], [2.331668489111632, 48.85631296971484], [2.331669110100596, 48.85629919598916], [2.3316652698076172, 48.85629310570376], [2.3316075965894782, 48.85621636821066], [2.331516956623527, 48.8560950571277], [2.331420982804026, 48.85596735862771], [2.331330343705813, 48.855846047376225], [2.331234370813855, 48.85571834779862], [2.331143732571624, 48.85559703727789], [2.331047760595656, 48.85546933752199], [2.330957123232585, 48.8553480259334], [2.330861153523872, 48.85522032690615], [2.330770515665579, 48.855099015141384], [2.330769831762412, 48.85509793299049], [2.330714339976891, 48.854990992456216], [2.330646150081214, 48.85485861275758], [2.330590660167311, 48.854751672150556], [2.330522469524675, 48.854619293244596], [2.330466980130919, 48.85451235165786], [2.330466660227743, 48.85451179226782], [2.330439195256774, 48.85446821862832], [2.330425124109578, 48.854453537962456], [2.33036984905342, 48.85446187234164], [2.330198147650263, 48.85451216736932], [2.330028022743158, 48.85456129821834], [2.329856320682434, 48.85461159275105], [2.329686195128509, 48.854660723109724], [2.329514491047413, 48.85471101713976], [2.329344366220855, 48.85476014611635], [2.329172661470619, 48.85481044055072], [2.32900253463444, 48.854859569029315], [2.328832407465771, 48.85490869816314], [2.328660703106267, 48.854958990964455], [2.328490575290787, 48.85500811960789], [2.328318870273627, 48.85505841191423], [2.328148741822833, 48.85510753916797], [2.327977034773807, 48.855157831870926], [2.327806905676112, 48.85520695863426], [2.3276351993322493, 48.855257250849846], [2.327633090511402, 48.85525802233815], [2.327461597953036, 48.85533501734232], [2.327291153465099, 48.85541112852878], [2.327119659897556, 48.85548812303227], [2.326949214409219, 48.85556423372118], [2.326778768423045, 48.8556403441621], [2.326607273343964, 48.855717337915394], [2.326436826345863, 48.85579344875803], [2.326265330269122, 48.85587044111139], [2.326094883633553, 48.85594655146413], [2.3259233865477382, 48.856023543316816], [2.325921529621009, 48.85602454013288], [2.325872975090785, 48.85605565496072], [2.325828074688566, 48.85608717617878], [2.325801848996777, 48.856099105845324], [2.325800575103193, 48.856108657003105], [2.325712428684276, 48.85617053862833], [2.325564484732291, 48.85627477370367], [2.3254314368675493, 48.85636817620701], [2.325283493155237, 48.85647241092408], [2.325150444282131, 48.85656581309838], [2.325002498083673, 48.8566700474418], [2.324869449565055, 48.85676344929472], [2.324721502243197, 48.85686768327219], [2.324588451365095, 48.856961083889125], [2.32458682908751, 48.85696247952265], [2.324485747281126, 48.85706963080319], [2.324384121581496, 48.85717780688042], [2.324283040303283, 48.85728495797666], [2.324181413762816, 48.857393133860754], [2.324080330287119, 48.85750028475727], [2.323978704268688, 48.85760846045595], [2.323877619958476, 48.85771561116043], [2.323775991736304, 48.85782378665825], [2.323674907965927, 48.85793093627916], [2.323573278891217, 48.85803911248316], [2.323472192923316, 48.858146261904295], [2.3233705630077273, 48.85825443791514], [2.323269477568187, 48.85836158715201], [2.323167846811611, 48.85846976296966], [2.323113624581028, 48.858489065756295], [2.323118933322234, 48.85850659268596], [2.32319273836722, 48.858583339069305], [2.3232872070565262, 48.858681033951214], [2.323398099024498, 48.858796343684936], [2.323492568484974, 48.85889403838604], [2.323603461360892, 48.85900934790733], [2.323697930229724, 48.859107042419815], [2.323792400815853, 48.85920473685683], [2.323903295016533, 48.859320046067964], [2.323908624578301, 48.8593224459703], [2.323963467386761, 48.85930840754777], [2.324135441523914, 48.85924729040962], [2.324319538499222, 48.85918265126094], [2.324491511791943, 48.85912153450346], [2.3246756065183343, 48.85905689479197], [2.324847580341113, 48.85899577752356], [2.325031674181405, 48.85893113725703], [2.325203647183168, 48.85887001857073], [2.325387740137259, 48.85880537774905], [2.3255597122946012, 48.85874425944342], [2.325743804362696, 48.85867961806675], [2.325915775687168, 48.85861849924249], [2.3260998668691633, 48.8585538573107], [2.326271837360865, 48.858492737967836], [2.32645592765676, 48.858428095480996], [2.3266278973274153, 48.85836697472027], [2.326811986737104, 48.85830233167835], [2.3269839555633602, 48.858241211298285], [2.327164184461294, 48.85817643717846], [2.327336152458875, 48.858115316285335], [2.327516380495083, 48.858050540728456], [2.327688346301088, 48.857989419314634], [2.327868574815247, 48.85792464412694], [2.328040539804177, 48.857863521300764], [2.3282207660821053, 48.857798745567614], [2.328392731593647, 48.857737623135336], [2.328572956998241, 48.85767284686446], [2.328744921692589, 48.85761172301984], [2.328925146223946, 48.85754694621116], [2.329097110078023, 48.85748582275282], [2.329277333747621, 48.8574210445071], [2.329449295410135, 48.8573599205281], [2.329629519557694, 48.85729514265154], [2.329801480403098, 48.85723401726023], [2.3298023378752752, 48.857233685704735], [2.329960625190337, 48.857167474106156], [2.330118467850325, 48.85710115098561], [2.330276755735463, 48.85703493806935], [2.330434597591549, 48.85696861452388], [2.330592884660767, 48.85690240208079], [2.330750725712953, 48.85683607811047], [2.3309090106265, 48.8567698643344], [2.3310668508747883, 48.856703539939176], [2.331225136335294, 48.85663732664396], [2.331382975779685, 48.85657100182384], [2.331541260447374, 48.85650478720333], [2.331699097725012, 48.85643846195069], [2.3317447380596352, 48.856418916679374]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 138, "zemmour_eric": 129.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "7-5", "circ_bv": "02", "num_bureau": 5, "roussel_fabien": 15.0, "nb_emargement": 1115.0, "nb_procuration": 116.0, "nb_vote_blanc": 6.0, "jadot_yannick": 61.0, "le_pen_marine": 40.0, "nb_exprime": 1105.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1361.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1115, "quartier_bv": "25", "geo_point_2d": [48.85683248669293, 2.3274807481385276], "melenchon_jean_luc": 109.0, "poutou_philippe": 2.0, "macron_emmanuel": 575.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.367851148840063, 48.876672591519885], [2.367834856030693, 48.87668401065427], [2.367791284828504, 48.87670158645777], [2.367613139558922, 48.87677258139055], [2.367458317237714, 48.876835035118056], [2.367280171057922, 48.87690602954676], [2.36712534794066, 48.87696848283608], [2.3671189638521932, 48.87697771311682], [2.367150708284095, 48.87709876300705], [2.367181478851645, 48.87721536502168], [2.367213223573691, 48.87733641486926], [2.367243993058194, 48.87745301683544], [2.367246514962247, 48.877456875712475], [2.36736937778516, 48.87756507536271], [2.367491460625738, 48.87767253689697], [2.367614324466264, 48.87778073627462], [2.36773640968128, 48.877888197545325], [2.367859273176007, 48.87799639664318], [2.367981359401853, 48.87810385764304], [2.368104223925118, 48.87821205556911], [2.368226311151095, 48.87831951719739], [2.368349178055428, 48.878427714858084], [2.3684712649397293, 48.878535175309054], [2.368593353680374, 48.87864263653154], [2.368716222109507, 48.87875083378377], [2.368838310497781, 48.87885829472822], [2.368961179944578, 48.87896649170788], [2.368988035602227, 48.8789855201241], [2.368994663677617, 48.87898439222442], [2.369084989793894, 48.878930921890834], [2.369207439313586, 48.87886186536461], [2.369353902247251, 48.87877516262268], [2.369476351044276, 48.87870610581168], [2.369622814455686, 48.878619402735715], [2.36974526251906, 48.878550346539136], [2.36974894540294, 48.87854053893056], [2.369688305963808, 48.8784321892433], [2.369629269449555, 48.87832773576558], [2.369568630507061, 48.87821938599675], [2.369509593110716, 48.87811493243266], [2.36950922230145, 48.878109408580755], [2.369551456584745, 48.87800802446353], [2.369592982189241, 48.87791133020606], [2.369634506287113, 48.877814635019234], [2.369676740076611, 48.877713251729965], [2.369683443216668, 48.8777077093643], [2.369789108514452, 48.877670332729636], [2.369905013849619, 48.877631227422185], [2.369910407692886, 48.87761849878129], [2.369809056705066, 48.877510170399056], [2.369711091732037, 48.87740510183991], [2.369609742937447, 48.87729677327514], [2.369511778767886, 48.877191704532514], [2.369410430803, 48.877083375778035], [2.369312466073601, 48.876978306844805], [2.369214503113642, 48.876873236929306], [2.369113156375868, 48.876764908791124], [2.369015194219359, 48.87665983869223], [2.368913848311466, 48.87655151036435], [2.368815885595014, 48.8764464400748], [2.368714540516896, 48.87633811155725], [2.368695839877605, 48.876335155755456], [2.368556803467984, 48.87639108406097], [2.368401984764735, 48.876453539936975], [2.368262949086828, 48.87650946790236], [2.368108128326935, 48.87657192248517], [2.367969092017465, 48.876627850103276], [2.367857841738199, 48.876672728487314], [2.367851148840063, 48.876672591519885]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 31, "zemmour_eric": 128.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "10-17", "circ_bv": "05", "num_bureau": 17, "roussel_fabien": 25.0, "nb_emargement": 964.0, "nb_procuration": 57.0, "nb_vote_blanc": 8.0, "jadot_yannick": 49.0, "le_pen_marine": 78.0, "nb_exprime": 954.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1335.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 964, "quartier_bv": "40", "geo_point_2d": [48.877582325368714, 2.3685902077997887], "melenchon_jean_luc": 353.0, "poutou_philippe": 5.0, "macron_emmanuel": 233.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.354808712597005, 48.88021630963243], [2.35482804737725, 48.88020555080255], [2.354870796141917, 48.880195741930955], [2.355059081786024, 48.88015345537607], [2.355245650040632, 48.880110648455556], [2.355433935072631, 48.880068361307885], [2.3556205013509173, 48.88002555379257], [2.355808785770904, 48.87998326605212], [2.355995352799715, 48.87994045795667], [2.356183635244212, 48.8798981696161], [2.356370201660066, 48.87985536093319], [2.356558484856014, 48.87981307200715], [2.356745049295435, 48.87977026272949], [2.356933331879354, 48.87972797321066], [2.357119897069277, 48.87968516335284], [2.357308177677697, 48.87964287323391], [2.357494742254647, 48.87960006278869], [2.357683023614494, 48.87955777208429], [2.357869586215001, 48.8795149610443], [2.357882100561446, 48.8795161883056], [2.358017292133303, 48.87958120568982], [2.358157171626956, 48.87964591079984], [2.358292363890027, 48.87971092696652], [2.358432245426132, 48.87977563265409], [2.358567438369338, 48.87984064850254], [2.358707319243319, 48.879905352954495], [2.358728408841452, 48.879907479526665], [2.358744049539278, 48.87989721919321], [2.358770677676634, 48.87983324487129], [2.358786963342213, 48.87977945763459], [2.358800047468939, 48.87975600928944], [2.358769542785383, 48.87974402059143], [2.358682860210314, 48.8796545413111], [2.358609734790051, 48.87957674676641], [2.358607711225881, 48.87957309992623], [2.358588628335605, 48.87947923783651], [2.358566435888277, 48.87938167541061], [2.358547353142528, 48.87928781329801], [2.358525162228621, 48.87919024995553], [2.358510627005345, 48.87918261857938], [2.358300568614214, 48.8791933325234], [2.358100100062121, 48.87920446624503], [2.357890041498525, 48.87921517946854], [2.357689574137933, 48.87922631250987], [2.357489105328285, 48.879237445208055], [2.357279046505897, 48.879248157359186], [2.357273623064425, 48.87924920923964], [2.357111868102176, 48.87930677392438], [2.356925302074508, 48.879365220461935], [2.356906460670058, 48.87935982578176], [2.356846743865507, 48.879236148967685], [2.356783291134804, 48.87911259592909], [2.35672357490622, 48.878988919025815], [2.356665962492766, 48.87887101180992], [2.356606246830909, 48.87874733392172], [2.356548633586875, 48.8786294266162], [2.35648891846942, 48.87850574954164], [2.356431307121681, 48.8783878421611], [2.35637369467136, 48.87826993473289], [2.356313980381608, 48.87814625753073], [2.356251652025653, 48.87801777008162], [2.356191938325941, 48.87789409189098], [2.356129610572939, 48.87776560434893], [2.356069897440928, 48.87764192696842], [2.35601018459261, 48.877518249544266], [2.355947857748885, 48.877389760964476], [2.35594106737653, 48.87738449030853], [2.3557878341379572, 48.87733294336861], [2.35563679676267, 48.8772824683629], [2.355485759669003, 48.87723199406357], [2.355332528704245, 48.8771804456418], [2.355291535599481, 48.87716858209947], [2.355278337686371, 48.87718088046302], [2.355240446338716, 48.87722189467028], [2.355142518656269, 48.87732566926645], [2.355034319320319, 48.87744278221601], [2.354936390811843, 48.87754655662274], [2.354828191905783, 48.87766367026916], [2.354730262571271, 48.87776744448649], [2.354622062753864, 48.87788455702386], [2.354524131229989, 48.87798833104444], [2.354501550384089, 48.877988887387325], [2.354382435470114, 48.87788145638351], [2.354296369824072, 48.87779410037276], [2.3542833972133392, 48.877790064338946], [2.354088092778558, 48.87780469780964], [2.35389924138497, 48.87781890982766], [2.35370393538183, 48.87783354176461], [2.353515085142247, 48.877847753183644], [2.353319778911859, 48.87786238539279], [2.353130927110621, 48.877876595298744], [2.352935620664153, 48.87789122688077], [2.352746770005769, 48.87790543708706], [2.352737279880642, 48.87790381104288], [2.352597569053091, 48.87783774685112], [2.352464807329893, 48.87777131897591], [2.352325097192187, 48.87770525535753], [2.352192336165424, 48.877638826272886], [2.35207338087538, 48.87758257667593], [2.351940619118975, 48.877516147297406], [2.351919865012634, 48.87750633382568], [2.351910370216931, 48.8775045431114], [2.351749195220829, 48.87751436892395], [2.351605622362475, 48.877523234040794], [2.35144444589893, 48.87753305853622], [2.351300874300494, 48.87754192329482], [2.351290173285391, 48.87754655533542], [2.3512242950848172, 48.877625827177795], [2.351101816121775, 48.87776985451458], [2.351035937352167, 48.877849126237216], [2.351034397745476, 48.8778547252385], [2.351053827758758, 48.87794256958838], [2.3510756318247372, 48.878042877174444], [2.3510950619665563, 48.87813072240191], [2.351116866190619, 48.87823102996335], [2.351154567406582, 48.878247843202985], [2.351164556819767, 48.87824551051333], [2.351319574159316, 48.878232709496146], [2.351504916494097, 48.87822180736878], [2.351659933690633, 48.8782090050113], [2.351845275858615, 48.87819810325603], [2.351859957895173, 48.87820567059851], [2.351889491483301, 48.87833022901086], [2.351921967270305, 48.87845240750455], [2.351951501157739, 48.87857696497442], [2.351983977244168, 48.87869914342394], [2.352013511408633, 48.87882370174987], [2.352045987794289, 48.87894588015525], [2.3520755222470813, 48.879070438438], [2.352108000306709, 48.87919261590724], [2.352114017932804, 48.87919861194969], [2.352237347846396, 48.879251289541614], [2.352447523155923, 48.879341073799516], [2.352570855107758, 48.87939375104845], [2.352580510174358, 48.87939507312039], [2.352712733720792, 48.879380519234516], [2.352887094187005, 48.87936750780024], [2.35301931757778, 48.879352953575406], [2.3531936765117543, 48.879339941686965], [2.353207170353895, 48.87935319520916], [2.353109230835463, 48.87947121334757], [2.353024461417407, 48.8795758260742], [2.352926521077449, 48.87969384314001], [2.3528417522934912, 48.879798455723474], [2.352743811109656, 48.8799164735152], [2.352659040244129, 48.8800210850415], [2.352657852751096, 48.88002754481811], [2.352691149970074, 48.880120506246335], [2.3527398224667992, 48.880246508600536], [2.352757281827592, 48.88025283446401], [2.35295216579039, 48.88021069750511], [2.353153579133072, 48.88016419597613], [2.353348462443543, 48.88012205836874], [2.353549875089571, 48.88007555616928], [2.353567522790008, 48.880081651804105], [2.353607136822553, 48.88017632522541], [2.353679078447763, 48.88032886888406], [2.353718692882304, 48.88042354134793], [2.353716367428838, 48.880442817659414], [2.353753557148525, 48.88045423577939], [2.3539294702817513, 48.88041393738749], [2.354116040397968, 48.8803711322374], [2.354291952970004, 48.88033083330983], [2.35447852111605, 48.880288028483584], [2.354654433138037, 48.88024772812109], [2.354798253285149, 48.880214730695734], [2.354808712597005, 48.88021630963243]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 59, "zemmour_eric": 64.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "10-30", "circ_bv": "05", "num_bureau": 30, "roussel_fabien": 17.0, "nb_emargement": 1124.0, "nb_procuration": 68.0, "nb_vote_blanc": 5.0, "jadot_yannick": 112.0, "le_pen_marine": 45.0, "nb_exprime": 1116.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 0, "nb_inscrit": 1428.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1124, "quartier_bv": "37", "geo_point_2d": [48.878865060432766, 2.3545032195581093], "melenchon_jean_luc": 398.0, "poutou_philippe": 13.0, "macron_emmanuel": 364.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.279584075658858, 48.86380229645341], [2.279581778982223, 48.86380139496744], [2.279482457111313, 48.86381273595147], [2.279289364860695, 48.86383367398362], [2.279086362827955, 48.86385685255493], [2.278893271617576, 48.86387778995541], [2.278690269236709, 48.863900967853915], [2.2784971763405952, 48.863921904606315], [2.278294173611612, 48.86394508183208], [2.278101081755856, 48.86396601795281], [2.277898078678766, 48.86398919450576], [2.277800320712056, 48.864000355567626], [2.277607227090032, 48.86402129088232], [2.277501981712102, 48.86403330585859], [2.277473318197191, 48.86405125386842], [2.277495183800244, 48.86409138997163], [2.27760759862119, 48.86418697453184], [2.277725716113387, 48.86428490202922], [2.277838130424279, 48.86438048544871], [2.277956250151616, 48.86447841270971], [2.278068665290578, 48.86457399679522], [2.278186784527055, 48.86467192380334], [2.278299201881982, 48.864767506764565], [2.278417321978104, 48.86486543442732], [2.27841733275788, 48.86486544348583], [2.278519908209552, 48.864952416742476], [2.278638029152158, 48.865050343271754], [2.278740605323891, 48.86513731722401], [2.278858727100695, 48.86523524351914], [2.2789478983574822, 48.865311498975586], [2.279066020918886, 48.86540942505072], [2.279155192789793, 48.86548567944148], [2.279155906290078, 48.86548632857365], [2.2792626224920562, 48.86558908809672], [2.279359884683033, 48.865686385488665], [2.279454423029506, 48.86578135865772], [2.279551685937681, 48.86587865587692], [2.279646224982643, 48.865973628877995], [2.27974348997112, 48.86607092593261], [2.27983802835168, 48.86616589875748], [2.279935294057273, 48.866263195639306], [2.279936273195975, 48.866264352698735], [2.280001793347175, 48.866359759646556], [2.2800857532234238, 48.866478779288066], [2.280151275281188, 48.86657418614373], [2.280208540961495, 48.86665536324697], [2.2802119593070582, 48.866674840345084], [2.280219948866264, 48.86668235210042], [2.280246643783964, 48.866720193607996], [2.2803330668045882, 48.866833881207505], [2.28041702821427, 48.86695289966635], [2.280503451992795, 48.86706658711894], [2.280587414166819, 48.86718560543321], [2.280673838703251, 48.86729929273885], [2.280757801629211, 48.86741831180785], [2.280757845730385, 48.86741837592665], [2.28084153054853, 48.86754008949984], [2.280904657514628, 48.86763143886918], [2.28096778333898, 48.86772278818946], [2.281051469124352, 48.867844502481645], [2.281077840372629, 48.867858865205555], [2.2810866978906432, 48.867859910390976], [2.281105929061456, 48.867871962062715], [2.281123080526544, 48.86785018751515], [2.281302431453147, 48.86779489250867], [2.281475665456389, 48.867740367227405], [2.281655015630632, 48.86768507168711], [2.281828247536477, 48.86763054588195], [2.282001479067283, 48.867576020722666], [2.282180828129951, 48.86752072348697], [2.28235405892651, 48.867466197811964], [2.282533408587555, 48.86741090094991], [2.282706638662247, 48.867356373859934], [2.28288598620779, 48.86730107645587], [2.283059215548223, 48.86724654885022], [2.283238562341396, 48.867191250912356], [2.283411790947568, 48.86713672279099], [2.283591138351496, 48.8670814243275], [2.283591247882123, 48.86708138990849], [2.283764475741437, 48.86702686217055], [2.283957968526213, 48.86696580563132], [2.284131195617317, 48.866911277356905], [2.284264394475437, 48.86686924605238], [2.284293344569686, 48.86685717003334], [2.284262380468583, 48.8668105496522], [2.284184232930116, 48.86670054870503], [2.284105955000475, 48.86659152900391], [2.284027677410824, 48.866482508341605], [2.283949530860151, 48.86637250720858], [2.283871253914599, 48.86626348732163], [2.283793108022674, 48.866153486064704], [2.283714831745935, 48.866044465154665], [2.283636686512955, 48.86593446377379], [2.283558409517201, 48.86582544363095], [2.283480264942957, 48.86571544212625], [2.283401989979103, 48.86560642096839], [2.283323846063789, 48.86549641933976], [2.283318368687049, 48.86549246627052], [2.283154560107802, 48.865429464214095], [2.282991672204306, 48.86536674894002], [2.28282786441556, 48.8653037464293], [2.2826649759354662, 48.865241030695316], [2.282501168937019, 48.86517802773028], [2.282338282618671, 48.86511531065349], [2.282174476410728, 48.86505230723418], [2.282011590866372, 48.8649895906049], [2.281847785448827, 48.86492658673134], [2.281684899327781, 48.864863869642164], [2.281521096063705, 48.864800865322486], [2.281358210741446, 48.86473814688228], [2.281351510905523, 48.8647312248138], [2.281339281500072, 48.864645692292925], [2.281327658879933, 48.864564991127544], [2.281321021360691, 48.86455809910898], [2.281152657580762, 48.86449248663306], [2.28097437747847, 48.86442340669384], [2.280806014558002, 48.86435779462159], [2.28062773537619, 48.864288714157645], [2.28045937332769, 48.86422310158975], [2.2802810950664583, 48.864154020601056], [2.28011273390225, 48.86408840663827], [2.279934456561603, 48.864019325124836], [2.279766096256837, 48.86395371156569], [2.27958781983677, 48.8638846295275], [2.279584075658858, 48.86380229645341]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 139, "zemmour_eric": 255.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-52", "circ_bv": "14", "num_bureau": 52, "roussel_fabien": 7.0, "nb_emargement": 1338.0, "nb_procuration": 74.0, "nb_vote_blanc": 21.0, "jadot_yannick": 47.0, "le_pen_marine": 82.0, "nb_exprime": 1314.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1679.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1338, "quartier_bv": "63", "geo_point_2d": [48.8657630291585, 2.281080686397169], "melenchon_jean_luc": 136.0, "poutou_philippe": 6.0, "macron_emmanuel": 615.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.349088036291388, 48.83742056094927], [2.349024488960998, 48.837433066181575], [2.349043193989878, 48.83756123242503], [2.349063444564471, 48.83768663521276], [2.34908214978013, 48.83781480142107], [2.349102400547058, 48.83794020417376], [2.349121105949502, 48.838068370346875], [2.349141356908668, 48.83819377306457], [2.349160062509025, 48.83832193830322], [2.349180313649203, 48.83844734188515], [2.349199019436451, 48.838575507088585], [2.349219270768871, 48.8387009106355], [2.3492379767429092, 48.8388290758038], [2.349258228278805, 48.83895447841632], [2.349246464110154, 48.83896434791147], [2.349058449696833, 48.83898073574816], [2.348891908882095, 48.83899375783199], [2.348703894251217, 48.839010145111], [2.348537353265175, 48.83902316580156], [2.348537210057989, 48.83902317761277], [2.348343941661237, 48.839039661625215], [2.348155926692504, 48.839056048042295], [2.347962658053294, 48.83907253143826], [2.347774642846232, 48.83908891725558], [2.347586627509601, 48.839105303676455], [2.347393358507725, 48.83912178615187], [2.347205344306434, 48.83913817108111], [2.347012073699715, 48.839154652932564], [2.346824059259915, 48.83917103726206], [2.34663078977317, 48.839187518504474], [2.346442773721387, 48.83920390312606], [2.346249503992217, 48.839220383751986], [2.346061487713212, 48.83923676687447], [2.345868217741732, 48.83925324688387], [2.3458564184655613, 48.83926314283584], [2.345880779266258, 48.83941038260014], [2.345908182553531, 48.839556434725395], [2.3459325436262493, 48.8397036753398], [2.3459599458616323, 48.839849726508085], [2.345984307217759, 48.83999696707329], [2.346011709752383, 48.84014301819136], [2.34599943816087, 48.8401530797496], [2.345887295029553, 48.840159893542854], [2.345794571313625, 48.84016662277069], [2.345789366290285, 48.84016772930337], [2.3456362184512862, 48.84023239689627], [2.34545550120867, 48.84029967449225], [2.345302351205213, 48.84036434164266], [2.345171063126731, 48.84041321670817], [2.345142926964185, 48.840423872151106], [2.345168551716736, 48.84046388576891], [2.3452721132110312, 48.84057778788743], [2.345395641109925, 48.84071287307652], [2.345414093616902, 48.84071602379641], [2.345583806239039, 48.84065165398153], [2.345751516612451, 48.840586439262566], [2.345921227033487, 48.84052206895406], [2.346088937930089, 48.84045685376196], [2.346258647512571, 48.84039248296724], [2.346426356207685, 48.8403272672871], [2.346442376907265, 48.8403283261312], [2.346611206347958, 48.84042843485667], [2.346739450640074, 48.84050315837915], [2.346867696651077, 48.84057788266589], [2.347036527717027, 48.84067799076873], [2.347164773232935, 48.84075271381858], [2.347333605435788, 48.84085282148645], [2.347461853158968, 48.84092754511285], [2.34747783545441, 48.84092853165793], [2.347635808860709, 48.840866493523485], [2.347795654436617, 48.84080583511824], [2.347953627081595, 48.840743797456554], [2.348113470548896, 48.84068313861255], [2.348271442443715, 48.84062110052437], [2.348431286527301, 48.84056044125646], [2.348589257671957, 48.840498402741794], [2.348749101009384, 48.84043774304252], [2.348762683848749, 48.84043774414089], [2.348897076608192, 48.84048876277795], [2.349032434067611, 48.84053838080338], [2.349166827350585, 48.84058939913279], [2.349302183965804, 48.84063901684109], [2.349308314857899, 48.84064014201854], [2.349354128235116, 48.84064121772744], [2.349412822100993, 48.84064158732024], [2.349436272538122, 48.840645937371534], [2.3494485194879893, 48.840641735592065], [2.349565508033413, 48.840642472485676], [2.349654730320521, 48.840641428665826], [2.34969719054534, 48.840644470910505], [2.349705268544561, 48.840637728221324], [2.349721981979696, 48.8405216841604], [2.349741802052487, 48.840380724790606], [2.349741812599131, 48.84038064390513], [2.349756192322231, 48.84027024503036], [2.349776012206787, 48.84012928562318], [2.349790391788104, 48.84001888671945], [2.349790398138546, 48.84001739470775], [2.349781107824374, 48.8398980857345], [2.3497692282533063, 48.83980066490817], [2.349769385530747, 48.839798760908074], [2.349797110927066, 48.839686152825934], [2.349830176235027, 48.83957623946878], [2.349857900019232, 48.83946363134267], [2.349890966420153, 48.839353717954246], [2.349918689954768, 48.839241109791644], [2.349951754723928, 48.839131196357094], [2.349951407790214, 48.83912678668152], [2.349888038747363, 48.838991582435256], [2.349829547729406, 48.83887253837255], [2.349771058352237, 48.83875349337665], [2.349707690231032, 48.83861828898969], [2.349649200043864, 48.83849924479904], [2.349585832547745, 48.83836404031674], [2.349527344286571, 48.83824499604683], [2.349463977415726, 48.838109791469215], [2.349405488355769, 48.837990747105245], [2.349342122109992, 48.837855542432315], [2.349283634976099, 48.837736497989084], [2.349287101287632, 48.83773200202517], [2.349263872206633, 48.83768590992455], [2.349205385452917, 48.83756686452566], [2.349141469578388, 48.83743036970517], [2.349088036291388, 48.83742056094927]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 79, "zemmour_eric": 86.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "5-12", "circ_bv": "02", "num_bureau": 12, "roussel_fabien": 29.0, "nb_emargement": 1244.0, "nb_procuration": 84.0, "nb_vote_blanc": 13.0, "jadot_yannick": 113.0, "le_pen_marine": 39.0, "nb_exprime": 1230.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1513.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1245, "quartier_bv": "19", "geo_point_2d": [48.83974157611225, 2.347988005287791], "melenchon_jean_luc": 349.0, "poutou_philippe": 2.0, "macron_emmanuel": 472.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.360677891121223, 48.87111426713759], [2.360667009550692, 48.871131120179484], [2.360597108839654, 48.871207172591255], [2.360520198106995, 48.87129241382067], [2.3604320119090803, 48.871388361628206], [2.360355100638718, 48.87147360273755], [2.360352734608763, 48.87149119823896], [2.360364791832273, 48.87150507380883], [2.360443352775027, 48.871617581717125], [2.360527199942557, 48.87173795193589], [2.360605762950494, 48.87185045972114], [2.360689609505033, 48.871970829793455], [2.360768173215006, 48.87208333744837], [2.360852020519721, 48.87220370738155], [2.360930584920704, 48.87231621580544], [2.361014432986636, 48.8724365847002], [2.361092998089675, 48.872549092993786], [2.361176848268982, 48.87266946175665], [2.361176857635401, 48.872669476196045], [2.361270467873304, 48.87280412268091], [2.361354318873269, 48.87292449129165], [2.361447930028217, 48.873059137606624], [2.361531781837885, 48.87317950696454], [2.361544344987813, 48.87318119547786], [2.361564006993688, 48.87317400043076], [2.361609103208505, 48.873043500745155], [2.361651300751552, 48.872922341373354], [2.361696397893174, 48.872791841632385], [2.361738595029294, 48.872670682202155], [2.361742901465321, 48.872665929683954], [2.361869697271872, 48.87259269457401], [2.361996018129455, 48.872519582702544], [2.362122814598173, 48.87244634642273], [2.3622491333822833, 48.87237323426719], [2.362375929127857, 48.87229999860887], [2.362502248565158, 48.87222688618377], [2.362506415739662, 48.87222247554266], [2.362553992033922, 48.87210651741323], [2.36260511630382, 48.871982695451784], [2.362636465126662, 48.871963613854554], [2.362636166221048, 48.87196197007228], [2.362616036264183, 48.87194517657175], [2.362518805464905, 48.871852778842566], [2.362393576370344, 48.87173420864536], [2.36229634499622, 48.87164181071056], [2.362171116915141, 48.87152324025797], [2.362073886329528, 48.87143084212478], [2.361948659273041, 48.87131227051752], [2.3618514294647133, 48.8712198730853], [2.361852601691769, 48.8712086519942], [2.361991560089434, 48.87110913989716], [2.362123169861595, 48.87101629663735], [2.362262127229323, 48.870916784208845], [2.362393734669991, 48.87082394062814], [2.36252534299384, 48.8707310978015], [2.362664298832344, 48.87063158488043], [2.362795904835624, 48.87053874083358], [2.362934859644214, 48.8704392275811], [2.363066466031489, 48.87034638412716], [2.363205419809971, 48.87024687054326], [2.363337023876896, 48.87015402586915], [2.363475976625378, 48.870054511953846], [2.363495610355337, 48.870038132374475], [2.363504475493552, 48.87000792034927], [2.363451920422014, 48.86988402847974], [2.36340056613304, 48.86976185170332], [2.363348011545909, 48.86963796065987], [2.363296657743133, 48.86951578381169], [2.363245304181354, 48.86939360692794], [2.363192748982807, 48.86926971486854], [2.36314139590722, 48.869147537913015], [2.363088842567252, 48.86902364578765], [2.363037489967055, 48.86890146965964], [2.362984937122458, 48.86877757746109], [2.362971932220723, 48.86876516390147], [2.362954977477386, 48.86876706120471], [2.362838959877134, 48.86881630128243], [2.362735040219888, 48.86886069436259], [2.3627307015448222, 48.86886365797132], [2.362637084172162, 48.86896963327655], [2.362529093450065, 48.869089323329916], [2.362435473898497, 48.86919529844856], [2.362327482245335, 48.869314988295606], [2.362233863241236, 48.869420963242206], [2.362125869293797, 48.86954065287562], [2.362032249473963, 48.86964662764289], [2.361924254595431, 48.86976631706999], [2.361830633959853, 48.86987229165792], [2.361722638150217, 48.86999198087867], [2.361629016698986, 48.87009795528725], [2.361521021321352, 48.87021764430892], [2.361427397702165, 48.87032361763166], [2.361319401393414, 48.870443306447], [2.361225778310552, 48.87054928049691], [2.361225420531317, 48.87054966260533], [2.361138671495559, 48.87064302046376], [2.361008737591064, 48.870774551288186], [2.360921989155567, 48.87086790897787], [2.36079205414296, 48.87099943954031], [2.360705303581343, 48.87109279704671], [2.360687017356293, 48.871112692575934], [2.360677891121223, 48.87111426713759]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 27, "zemmour_eric": 50.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "10-4", "circ_bv": "05", "num_bureau": 4, "roussel_fabien": 16.0, "nb_emargement": 1090.0, "nb_procuration": 85.0, "nb_vote_blanc": 12.0, "jadot_yannick": 122.0, "le_pen_marine": 20.0, "nb_exprime": 1074.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1394.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1090, "quartier_bv": "39", "geo_point_2d": [48.87095419410141, 2.361920597495808], "melenchon_jean_luc": 416.0, "poutou_philippe": 3.0, "macron_emmanuel": 370.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.362859284338874, 48.896892059997725], [2.362850757179815, 48.896866499200115], [2.362742075840669, 48.89674507696032], [2.362649043092709, 48.89663854065501], [2.362556012089405, 48.89653200427438], [2.362447330772124, 48.89641058172273], [2.3623543005888212, 48.89630404516326], [2.362245621581739, 48.89618262241053], [2.362152590854729, 48.89607608566488], [2.362043912793928, 48.89595466270387], [2.361950882886906, 48.89584812577935], [2.361842205772375, 48.895726702610006], [2.361749178049418, 48.8956201655139], [2.361640501881144, 48.895498742136226], [2.361547473614267, 48.89539220485404], [2.361557130573842, 48.89537883940263], [2.361710930988486, 48.89536254701382], [2.361859978686647, 48.89534719676893], [2.362013778912943, 48.895330903990704], [2.362162826431227, 48.89531555336844], [2.36217396453727, 48.89530451959561], [2.362126383970875, 48.8951770053719], [2.362079584674116, 48.895051869476816], [2.362032004569763, 48.89492435518617], [2.361985205726941, 48.894799219225376], [2.361937626073605, 48.89467170576712], [2.361890827684714, 48.894546569740555], [2.361843248504427, 48.894419055316135], [2.361796450569563, 48.89429391922383], [2.3617488718513, 48.89416640473253], [2.361702074359227, 48.89404126947377], [2.36165449473914, 48.89391375490826], [2.361607697712007, 48.89378861868455], [2.361560119917773, 48.89366110405942], [2.361513323344547, 48.89353596776994], [2.3614657460012882, 48.89340845397722], [2.361418949881959, 48.89328331762206], [2.361429694579939, 48.89326953078039], [2.361414943708337, 48.89326544924492], [2.361363633224144, 48.89326697245551], [2.361195690838656, 48.893271960042945], [2.360984779484977, 48.893277135394776], [2.360765526523341, 48.893283644505864], [2.360554615079576, 48.89328881910009], [2.360335362003918, 48.89329532832279], [2.360124450470077, 48.893300502159306], [2.359905197291447, 48.89330701059437], [2.359694287031265, 48.893312183680464], [2.359632651744564, 48.89330794385438], [2.359628617281933, 48.893323030865126], [2.359613131661585, 48.893420168197615], [2.359596040587319, 48.893541596570685], [2.35957631004143, 48.89366537332688], [2.359559218811958, 48.89378680076826], [2.359539486721769, 48.89391057748342], [2.3595223953147633, 48.89403200579165], [2.359502663044204, 48.89415578247306], [2.359485571470823, 48.894277210748875], [2.359465840394606, 48.894400986504515], [2.35944874865485, 48.89452241474791], [2.359429016023345, 48.89464619136178], [2.35941192411721, 48.8947676195727], [2.359392191316188, 48.894891395253566], [2.359375099243673, 48.89501282343204], [2.359360496876791, 48.89504076180597], [2.359369331693982, 48.89505412528715], [2.35935731997778, 48.89518388403577], [2.359345894548381, 48.89531409826202], [2.359333882713889, 48.89544385697751], [2.359322458532602, 48.89557407117793], [2.359310446579721, 48.895703829860246], [2.359299020918883, 48.89583404402021], [2.3592870088476072, 48.8959638026694], [2.359275584434994, 48.8960940168035], [2.359263572245327, 48.896223775419564], [2.359252146364212, 48.89635398861397], [2.359240134045079, 48.89648374809609], [2.359228709412201, 48.89661396126464], [2.359216696974671, 48.89674372071363], [2.359205270862208, 48.896873933841725], [2.359193258317344, 48.897003692358254], [2.359181833442059, 48.897133906359805], [2.359169820778794, 48.89726366484317], [2.359158394423906, 48.897393878804245], [2.359163567518475, 48.89740012886158], [2.359238349435721, 48.89739763319491], [2.359431771375779, 48.89737134666182], [2.359629519912555, 48.89734404603885], [2.359822941467074, 48.89731775797345], [2.360020690959002, 48.89729045671054], [2.360214112105955, 48.89726416891137], [2.360411859825272, 48.89723686699393], [2.360605281950583, 48.8972105776697], [2.360803029261207, 48.89718327510509], [2.3609964496148192, 48.89715698603984], [2.361194196516847, 48.89712968282796], [2.361387617848783, 48.89710339223768], [2.361585364342, 48.897076088378604], [2.36177878390244, 48.89704979804728], [2.361976531350865, 48.897022493548256], [2.362169950525675, 48.8969962016846], [2.36236769620145, 48.8969688965311], [2.362561114968482, 48.8969426049337], [2.362758861599446, 48.89691529914023], [2.362826468163939, 48.89690610810806], [2.362859284338874, 48.896892059997725]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 24, "zemmour_eric": 55.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-64", "circ_bv": "17", "num_bureau": 64, "roussel_fabien": 18.0, "nb_emargement": 1174.0, "nb_procuration": 34.0, "nb_vote_blanc": 13.0, "jadot_yannick": 44.0, "le_pen_marine": 76.0, "nb_exprime": 1159.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1796.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1176, "quartier_bv": "72", "geo_point_2d": [48.89543373427171, 2.3606786456050126], "melenchon_jean_luc": 685.0, "poutou_philippe": 9.0, "macron_emmanuel": 202.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.33775344081474, 48.84928835133392], [2.337762303855312, 48.84928150680923], [2.337955634871401, 48.8492511360805], [2.338127010990296, 48.84922437862261], [2.338320342955877, 48.849194006411274], [2.338491717337067, 48.84916724842208], [2.338496946706663, 48.84916559553465], [2.338651494694069, 48.84908626041947], [2.338792668440181, 48.84901336074723], [2.338933841802727, 48.84894046000429], [2.339088388445933, 48.84886112520801], [2.339091871218174, 48.8488584679555], [2.339182178685478, 48.84875353046238], [2.339282145490576, 48.84862972822376], [2.339372453540895, 48.84852479057303], [2.339472419443787, 48.84840098904928], [2.339562726725972, 48.848296050334056], [2.339662691738067, 48.84817224862593], [2.339752996866696, 48.8480673106373], [2.339852960999404, 48.84794350784546], [2.339943266711157, 48.847838569699206], [2.3400432299417, 48.84771476762225], [2.340133533522712, 48.84760982840401], [2.340134900134666, 48.84760758214637], [2.340179659119692, 48.84749017657564], [2.340236401476046, 48.84734618003752], [2.3402811613705152, 48.847228774408805], [2.34033790315031, 48.84708477868799], [2.340382661228992, 48.846967372986285], [2.340439402455212, 48.84682337628427], [2.340489716826535, 48.84680860556016], [2.340501325365297, 48.846739699415956], [2.340432209288686, 48.84661253107861], [2.34036394758724, 48.84648646731352], [2.340294833544283, 48.84635929887541], [2.340226572495543, 48.846233235902616], [2.3401574591350123, 48.84610606645697], [2.340089198750151, 48.845980003377115], [2.340020086049265, 48.84585283472251], [2.339951826339762, 48.84572677063636], [2.339882712947427, 48.845599601866006], [2.339814453890499, 48.845473538572136], [2.339745342531651, 48.84534636970104], [2.339677084150066, 48.84522030540083], [2.339607973462222, 48.845093136421504], [2.339539715733288, 48.84496707291361], [2.339470604353883, 48.84483990381852], [2.3394023473001813, 48.84471383930432], [2.339333237954318, 48.844586670108534], [2.33926498155314, 48.84446060638659], [2.339195872878252, 48.84433343708257], [2.339127617152493, 48.84420737235437], [2.33905850914857, 48.844080202942145], [2.338990254075211, 48.84395413900623], [2.338988237801611, 48.843920697656536], [2.338965203739557, 48.8439037747838], [2.338896949123042, 48.843777710774745], [2.338825647829981, 48.84364984014013], [2.33875739389499, 48.84352377512346], [2.338686091917796, 48.843395905268395], [2.338617838652916, 48.84326984014334], [2.338546537376927, 48.84314196927668], [2.338478284770633, 48.84301590494266], [2.338406985547031, 48.842888033971235], [2.338338733610823, 48.842761969528944], [2.338267433714488, 48.84263409843769], [2.338199182459781, 48.84250803298776], [2.338127884615599, 48.84238016179182], [2.338059634019641, 48.84225409713288], [2.337988335502722, 48.84212622581712], [2.337920085576825, 48.8420001610499], [2.337848789112127, 48.8418722896294], [2.337780539867603, 48.84174622385461], [2.337709242718836, 48.84161835321359], [2.337640994144358, 48.841492287330524], [2.337569699059208, 48.84136441568551], [2.33750145114333, 48.84123835059344], [2.337430155385431, 48.841110478828654], [2.3373619081395782, 48.840984413628284], [2.337290614433732, 48.8408565417588], [2.337251743299759, 48.84082780573596], [2.337245319325385, 48.840822959440096], [2.337193589757331, 48.840784717814], [2.336979466835368, 48.840710080045035], [2.336819968844122, 48.84068868588198], [2.336798628994606, 48.840677022419484], [2.336709211037169, 48.84069512012815], [2.336653818341145, 48.84070214999632], [2.336632667075794, 48.840708429891315], [2.336413482374326, 48.84080136158546], [2.3362990079796813, 48.84085599970829], [2.336294907745327, 48.84085870653312], [2.336194916979458, 48.84094263719861], [2.3360879745280583, 48.841052540636554], [2.335978902868254, 48.8411655835272], [2.335871959503913, 48.841275486750106], [2.335762886920605, 48.84138852852192], [2.335655942631852, 48.841498432429006], [2.335546870475842, 48.84161147398889], [2.335439925274127, 48.84172137768095], [2.335330850820672, 48.841834419013686], [2.33522390470598, 48.84194432249071], [2.335114830679813, 48.84205736361148], [2.335007883663614, 48.84216726597411], [2.334898807328494, 48.842280307767076], [2.334791859399303, 48.84239020991462], [2.334684911007599, 48.84250011285503], [2.334575834649268, 48.84261315342806], [2.3344688853560402, 48.84272305525411], [2.334359806688709, 48.842836096499326], [2.334252856482464, 48.84294599811029], [2.334143778242395, 48.843059039143526], [2.334036827123124, 48.84316894053938], [2.333927746585402, 48.843281981345434], [2.333820794553197, 48.8433918825262], [2.333711714454325, 48.84350492222104], [2.333604761497477, 48.84361482408599], [2.3334956791009223, 48.84372786355363], [2.333388725231114, 48.84383776520352], [2.33327964189938, 48.84395080445157], [2.333172687127905, 48.84406070498705], [2.333090377509283, 48.84414600043364], [2.333076565762341, 48.84416327754586], [2.333076383465221, 48.84416602318427], [2.333049610150211, 48.84419376766944], [2.3329383777406703, 48.84430947739696], [2.332829292433342, 48.844422517085846], [2.332718059046443, 48.844538226584824], [2.332608974156527, 48.84465126515797], [2.332499887419447, 48.8447643045119], [2.332388652571729, 48.844880013669105], [2.332279566251959, 48.844993051907245], [2.332168330426858, 48.84510876083588], [2.332059241776336, 48.8452217997416], [2.331948006336405, 48.84533750844926], [2.331838916740726, 48.8454505462316], [2.3317276789608252, 48.84556625470302], [2.331618589759493, 48.845679293168196], [2.331507351002175, 48.845795001411055], [2.331505236337071, 48.84580008717787], [2.331511320832437, 48.84593498047946], [2.3315188439306382, 48.84606597407625], [2.331524928480733, 48.84620086824423], [2.3315324502890302, 48.84633186180129], [2.33153997213514, 48.84646285534249], [2.331546058160291, 48.84659774856971], [2.331553580078981, 48.84672874207879], [2.331559666170507, 48.84686363527311], [2.331567188150243, 48.84699462964937], [2.3315732743079423, 48.84712952281082], [2.331578011813548, 48.84714125266115], [2.331586124917956, 48.84714818439416], [2.331593647016804, 48.847279177836], [2.331602083219832, 48.84740668864841], [2.331609605396104, 48.84753768205886], [2.331618043042753, 48.847665192848176], [2.331625565296354, 48.847796186227214], [2.331634001661273, 48.84792369697823], [2.331641523992402, 48.84805469032585], [2.331649961800756, 48.84818220105373], [2.331657484209317, 48.84831319436998], [2.331665920747565, 48.84844070416022], [2.331683069182043, 48.84847056606018], [2.331738292135533, 48.84846057505388], [2.331893925186553, 48.84849984510098], [2.332046376186661, 48.848540097265705], [2.332202009707327, 48.848579366909256], [2.33235446252906, 48.84861961958542], [2.332510096519375, 48.84865888882542], [2.332662548460676, 48.84869914019929], [2.332663714257551, 48.848699407516044], [2.332864340509862, 48.8487382545157], [2.333037004520143, 48.84877225783965], [2.3332096674046, 48.84880626000652], [2.333410295837904, 48.84884510609455], [2.333582959207286, 48.848879107720485], [2.333783588199304, 48.84891795318002], [2.3339562520536052, 48.84895195426502], [2.33415688160433, 48.84899079909601], [2.334319684930961, 48.84902353963408], [2.334520315028085, 48.849062383853195], [2.334683120169347, 48.849095123902245], [2.334883749450401, 48.84913396750184], [2.3350465550436272, 48.84916670705421], [2.335047742152038, 48.84916690791336], [2.335221371503156, 48.84919083520691], [2.335391025562789, 48.84921585716841], [2.3355606797854422, 48.84924087888876], [2.335734310981197, 48.8492648054439], [2.335736216632694, 48.84926497700931], [2.33592797409226, 48.84927316261473], [2.336119477595637, 48.849280107187155], [2.336311235171177, 48.84928829217822], [2.336502737430005, 48.84929523523024], [2.336694495121303, 48.84930341960696], [2.336885998838108, 48.849310362952295], [2.337077756645261, 48.84931854671465], [2.337269260480052, 48.84932548854714], [2.337271476613226, 48.84932546394902], [2.337495518405378, 48.84931088502766], [2.337706887724221, 48.84929192581349], [2.33775344081474, 48.84928835133392]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 121, "zemmour_eric": 83.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "6-10", "circ_bv": "02", "num_bureau": 10, "roussel_fabien": 13.0, "nb_emargement": 943.0, "nb_procuration": 75.0, "nb_vote_blanc": 12.0, "jadot_yannick": 78.0, "le_pen_marine": 20.0, "nb_exprime": 930.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1104.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 943, "quartier_bv": "22", "geo_point_2d": [48.84579014987118, 2.3360103230961395], "melenchon_jean_luc": 132.0, "poutou_philippe": 1.0, "macron_emmanuel": 443.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.293852837405086, 48.848707693627766], [2.293826952024895, 48.84871696437362], [2.293813176141099, 48.848720786299], [2.293796320819244, 48.84871724224839], [2.293767584218005, 48.84868672091228], [2.293742763961153, 48.8486578217547], [2.2937279609041212, 48.84865347588497], [2.293531315763925, 48.84868223760435], [2.293334399042875, 48.848711213244194], [2.293137753467704, 48.848739974315265], [2.292940837684514, 48.848768948414616], [2.292744191674176, 48.8487977088373], [2.292547274079156, 48.84882668317866], [2.292350627633859, 48.848855442953024], [2.292153710964516, 48.84888441665319], [2.291957064084066, 48.848913175779224], [2.291760145627328, 48.84894214792281], [2.29156349831194, 48.84897090640046], [2.291366580768679, 48.848999878802154], [2.291169933018154, 48.84902863663152], [2.2909730136752913, 48.84905760837585], [2.290958026722404, 48.84905306501328], [2.290917957660986, 48.849003515455905], [2.290882649574477, 48.84895921130733], [2.2908674012637302, 48.84894453505554], [2.290841422049309, 48.84895354288646], [2.290670956148751, 48.84900965902444], [2.290499176467246, 48.84906625548228], [2.290328708454651, 48.84912237201818], [2.290156928029912, 48.849178967978915], [2.289986460654884, 48.849235083130296], [2.289814679474661, 48.84929167949322], [2.2896442113624, 48.849347794151306], [2.289472428076379, 48.849404390008964], [2.289301959226886, 48.84946050417376], [2.289130176560192, 48.84951709954245], [2.28911938090576, 48.84951749227569], [2.288954546236067, 48.849477433651295], [2.288755976721965, 48.849429597124384], [2.288591142609745, 48.84938953799613], [2.288441269557656, 48.84935343218087], [2.288432040026695, 48.84935599893361], [2.288424911705399, 48.84937155059836], [2.2884452990508732, 48.849508435314405], [2.288463125809964, 48.84963694160453], [2.288480952644798, 48.849765448776466], [2.288501338928904, 48.84990233342641], [2.2885132513726862, 48.849910380714924], [2.288686971189526, 48.84992436536154], [2.288858029073324, 48.84993878901089], [2.289031750440068, 48.84995277316464], [2.289202808512544, 48.8499671963207], [2.289206015954148, 48.84996773340857], [2.289368494151519, 48.85000983630346], [2.289530185695563, 48.85005128316479], [2.289692664415341, 48.85009338561629], [2.28985435783903, 48.850134832044546], [2.2900160501573392, 48.85017627824462], [2.290178529659385, 48.8502183800316], [2.290180455359526, 48.850218772785844], [2.290406738023035, 48.85025313062396], [2.290637317740206, 48.85028819432521], [2.290863602369065, 48.850322551305226], [2.291094182712941, 48.850357613224524], [2.291104450253431, 48.85036449752034], [2.291120679015053, 48.85041462698962], [2.291136352862567, 48.8504635759016], [2.291145676681429, 48.85047031160329], [2.291309600901702, 48.85050361563715], [2.291477242981768, 48.85053782283545], [2.291641167626311, 48.85057112641309], [2.291808808778514, 48.85060533313665], [2.291972735222238, 48.85063863536679], [2.292140376809264, 48.85067284162371], [2.292304303665031, 48.85070614429683], [2.292471945686879, 48.85074035008715], [2.292484078933557, 48.85075397431796], [2.292516216296704, 48.850745835364094], [2.292694979233247, 48.85068674655432], [2.292893703624043, 48.850621043726356], [2.293072464341763, 48.850561954337934], [2.29327118778072, 48.85049625087567], [2.293449947630123, 48.85043716181593], [2.2936486714799322, 48.850371457727356], [2.293709800165065, 48.85035125108681], [2.293736811811899, 48.850345314662405], [2.293738728411743, 48.85034195696613], [2.29385635867733, 48.850303073947615], [2.294017620787485, 48.85025000182316], [2.294196378945878, 48.85019091163518], [2.294357640362648, 48.850137839047086], [2.294536397762804, 48.8500787474459], [2.294697658474113, 48.85002567529349], [2.294876415103951, 48.8499665831783], [2.295037675121777, 48.84991351056231], [2.295043584488248, 48.84990118994341], [2.2949932345653, 48.84983963501118], [2.294951055375455, 48.849788592282756], [2.294940205412542, 48.84977486883096], [2.2949179153203962, 48.849777645113036], [2.294879307985343, 48.849790156156374], [2.294835414846534, 48.849804150559855], [2.294817718542423, 48.849800587312636], [2.294721796418219, 48.84969214789976], [2.294627664190291, 48.84958540525413], [2.29453174148281, 48.84947696655919], [2.294437611407607, 48.849370222852144], [2.294341689491686, 48.84926178398388], [2.294247558831898, 48.84915504009864], [2.2941516390701873, 48.84904660106508], [2.294057509176084, 48.848939857908995], [2.293961588855443, 48.84883141779479], [2.29386746110205, 48.848724674476586], [2.293852837405086, 48.848707693627766]]], "type": "Polygon"}, "properties": {"lassalle_jean": 26.0, "pecresse_valerie": 129, "zemmour_eric": 117.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-13", "circ_bv": "12", "num_bureau": 13, "roussel_fabien": 18.0, "nb_emargement": 1390.0, "nb_procuration": 94.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 79.0, "nb_exprime": 1375.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1688.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1390, "quartier_bv": "59", "geo_point_2d": [48.84969240208603, 2.292006686955136], "melenchon_jean_luc": 242.0, "poutou_philippe": 4.0, "macron_emmanuel": 596.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.312352222732879, 48.82591468416059], [2.312339197483002, 48.82591224479345], [2.312169273982617, 48.82595157417019], [2.311972226014039, 48.82599647540227], [2.311802301962306, 48.82603580425468], [2.311605254721402, 48.826080704886536], [2.311435330118327, 48.826120033214565], [2.311238280880985, 48.826164933230544], [2.311068355726674, 48.82620426103422], [2.310871307216917, 48.82624916045002], [2.310701381511274, 48.826288487729315], [2.310655136310416, 48.82629902451467], [2.3106314758468383, 48.82630077592408], [2.310626445875113, 48.82630589407807], [2.310475640531105, 48.82634025605628], [2.310292768550545, 48.82638173227465], [2.31009571870222, 48.82642663040545], [2.309912846104451, 48.82646810693895], [2.309715794240526, 48.826513004432464], [2.309532921049458, 48.82655447948249], [2.309335868531807, 48.82659937634654], [2.3091529960858033, 48.82664085171962], [2.308955942914531, 48.8266857479542], [2.308773068513179, 48.82672722183597], [2.3087707805149362, 48.82672760074077], [2.3085849135926892, 48.82674716434423], [2.308369394303634, 48.82676996931763], [2.308183525705716, 48.826789533187934], [2.307968006065948, 48.82681233743713], [2.307782138540486, 48.826831899791465], [2.307566617187942, 48.82685470330856], [2.307380749348788, 48.826874265937654], [2.307243154081842, 48.826889079489106], [2.307057284636787, 48.82690864160695], [2.306919689187211, 48.826923454785764], [2.306900719078887, 48.82692852347062], [2.306898878312864, 48.82694249455511], [2.306921745023015, 48.82704986997895], [2.306955528086339, 48.827205622403575], [2.30697839502847, 48.827312997791395], [2.307012178431539, 48.82746875016349], [2.307035045605858, 48.827576125515286], [2.3070373546198573, 48.82758001072092], [2.307153425380918, 48.82769013313618], [2.307270400571473, 48.82780244975173], [2.307386472320019, 48.827912571918965], [2.307503449861894, 48.82802488919155], [2.30761952259784, 48.828135011110724], [2.307736501152939, 48.82824732723377], [2.307852573514277, 48.82835744889707], [2.307969553070561, 48.82846976476988], [2.307967810018046, 48.82848131798803], [2.307842105717263, 48.828561774693256], [2.307714918798847, 48.828645832783856], [2.307716790479807, 48.82865957801961], [2.307887445183205, 48.828737756659194], [2.308053529893156, 48.828813801363836], [2.308224186956453, 48.8288919804194], [2.30839027264891, 48.82896802464592], [2.308560929359993, 48.829046203202346], [2.308727016034856, 48.82912224695079], [2.30889310319434, 48.82919829046345], [2.309063761413229, 48.82927646828633], [2.3090918559987292, 48.829285609076855], [2.30910640618665, 48.82927088938159], [2.309225204872033, 48.829185928802964], [2.309360433477138, 48.82908591117045], [2.309479232689258, 48.82900095033333], [2.309614460327097, 48.828900932397154], [2.309733258703716, 48.828815971293686], [2.309868485374502, 48.828715953053745], [2.3099872815534, 48.82863099167608], [2.310076979493974, 48.828564646721176], [2.310092800538283, 48.82856307234192], [2.310109488031568, 48.82853719817221], [2.310155015761565, 48.828503523670996], [2.310285076367562, 48.828406722796004], [2.310420300906281, 48.82830670479495], [2.310550360528798, 48.828209903614514], [2.310685584059966, 48.82810988439665], [2.31081564406102, 48.828013082918545], [2.310950866572642, 48.827913063383214], [2.311080924216134, 48.827816262491105], [2.311216145708428, 48.827716242638246], [2.311346202380247, 48.82761944054138], [2.311469593319753, 48.82752636022234], [2.311599649035424, 48.82742955873275], [2.311723039073132, 48.827336478136495], [2.311853093844546, 48.82723967635493], [2.311976482980262, 48.82714659548145], [2.3121065368192912, 48.82704979250854], [2.3122299250413603, 48.8269567122571], [2.31235997793614, 48.82685990899229], [2.312483365256237, 48.826766828463604], [2.312613417206776, 48.82667002490676], [2.312736803636965, 48.82657694320154], [2.312866854631417, 48.826480140252016], [2.312990240159643, 48.82638705826959], [2.313016810758298, 48.82637915966505], [2.313012979356864, 48.82635215537703], [2.312975154629386, 48.82632760357773], [2.312814952897257, 48.82622372847141], [2.3126685372973492, 48.82612869053141], [2.312522120869176, 48.826033652396276], [2.312361922304944, 48.82592977666371], [2.312352222732879, 48.82591468416059]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 68, "zemmour_eric": 76.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "14-54", "circ_bv": "10", "num_bureau": 54, "roussel_fabien": 26.0, "nb_emargement": 1176.0, "nb_procuration": 49.0, "nb_vote_blanc": 13.0, "jadot_yannick": 77.0, "le_pen_marine": 103.0, "nb_exprime": 1159.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1539.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "56", "geo_point_2d": [48.82745033154724, 2.3096978710244893], "melenchon_jean_luc": 330.0, "poutou_philippe": 9.0, "macron_emmanuel": 401.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.310029781001381, 48.85096974555505], [2.310040961805252, 48.85100007258772], [2.310093767619398, 48.8511272677461], [2.31015291109793, 48.851258241640906], [2.310205717434942, 48.85138543761969], [2.310264861487867, 48.851516411428726], [2.310317668371765, 48.851643606429256], [2.310376812998988, 48.85177458015261], [2.310391627209423, 48.85178093047152], [2.310572284494464, 48.8517654575313], [2.310755035246771, 48.85174985877629], [2.3109356936789123, 48.85173438529479], [2.31111844285073, 48.851718785976466], [2.311299101067231, 48.85170331194584], [2.311481851384013, 48.85168771207984], [2.311662508022139, 48.85167223749229], [2.311845258121148, 48.8516566370708], [2.312025915906348, 48.85164116194196], [2.312208665787575, 48.85162556096499], [2.312224028979456, 48.85163411044739], [2.312232384276291, 48.85176824120797], [2.312241856108619, 48.851902655372], [2.31225021150627, 48.85203678519962], [2.312259683433396, 48.85217119932978], [2.312268038919993, 48.85230532912383], [2.312277510941918, 48.85243974322012], [2.312285866505597, 48.85257387387978], [2.312295337259669, 48.852708287934355], [2.312303692924163, 48.85284241766113], [2.312313165135687, 48.85297683168968], [2.312328021910908, 48.85298537014116], [2.312575655777076, 48.85297039599987], [2.312777527451642, 48.852960319936514], [2.312789103616876, 48.85295441558622], [2.312854509344052, 48.8528347233338], [2.312918308708337, 48.852713012644244], [2.31298371383573, 48.85259332029526], [2.313047513953463, 48.85247161041753], [2.313112918481178, 48.852351917971895], [2.313176718013424, 48.85223020709954], [2.313242121929415, 48.852110515456616], [2.313305919501688, 48.85198880448112], [2.313371322829774, 48.851869111842305], [2.313435121155508, 48.851747401678615], [2.31344892277456, 48.851741368830574], [2.313675506022475, 48.851751526536404], [2.313909167761083, 48.85175961630499], [2.3141357498154242, 48.851769773131245], [2.314369413070026, 48.85177786200875], [2.314499238264496, 48.8517836809575], [2.314521026956872, 48.851819105615704], [2.314591634380797, 48.851816296698736], [2.314688391477854, 48.85182063362969], [2.314778067092298, 48.85181794820664], [2.314804036305077, 48.85181840270848], [2.314821439027314, 48.85177645645071], [2.314866338313747, 48.85165579837836], [2.3149106645343682, 48.851535073141505], [2.3149555620435, 48.85141441500173], [2.314999887852086, 48.851293689705635], [2.315044784946655, 48.85117303150614], [2.315089110343212, 48.85105230615085], [2.315134007011403, 48.850931648791004], [2.315178331995938, 48.85081092337641], [2.315223228261396, 48.85069026505764], [2.315267552833913, 48.85056953958382], [2.315312450047522, 48.85044888121318], [2.31535677284533, 48.85032815567234], [2.31540166964439, 48.85020749724203], [2.315445992030199, 48.850086771641976], [2.315490888403007, 48.84996611405129], [2.315535210376822, 48.849845388391984], [2.315534901238711, 48.84984039247651], [2.315489151704252, 48.84975005622293], [2.315436007641448, 48.849643462168466], [2.315390259825795, 48.849553124969596], [2.315350971314162, 48.84947432303139], [2.315360190249999, 48.84945016050421], [2.315348155795431, 48.84944113760583], [2.315334299295027, 48.84941334541782], [2.315334017136328, 48.84940837213819], [2.315385156167582, 48.849272136439374], [2.315437143975988, 48.84913143573708], [2.315488283828536, 48.84899519996804], [2.31554026973139, 48.84885449827891], [2.315591409042575, 48.84871826243189], [2.315643394378924, 48.84857756156221], [2.315694533148756, 48.848441325637296], [2.315746517942232, 48.84830062378852], [2.315738143310064, 48.84829009293573], [2.315561421083287, 48.848245532305256], [2.315385796560426, 48.84820405170917], [2.315209074926708, 48.8481594905548], [2.31503345097427, 48.848118009438274], [2.314856729933513, 48.84807344776006], [2.314681106551502, 48.848031966123145], [2.314504386092084, 48.84798740482034], [2.314328764654964, 48.847945921771526], [2.314152043425981, 48.84790135993704], [2.313976422559198, 48.8478598763678], [2.313799703285913, 48.847815314017254], [2.313624081627048, 48.84777382991983], [2.313599160454583, 48.847761104869825], [2.3135666025672093, 48.84776432125999], [2.313527472809473, 48.84783019176073], [2.313453603340667, 48.84795947386831], [2.313384086812165, 48.848076491119926], [2.313310216638526, 48.84820577311033], [2.313240700810194, 48.84832279115988], [2.313171184669673, 48.84843980915676], [2.313097313452863, 48.848569090973555], [2.313027796673673, 48.848686107961925], [2.312953923389356, 48.848815389653765], [2.31293994044275, 48.84882117319148], [2.312762143464362, 48.84881051268934], [2.312583450893371, 48.84880080819397], [2.312405654057393, 48.8487901471619], [2.312226960248101, 48.84878044302541], [2.312049163554537, 48.848769781463346], [2.311870471255992, 48.84876007590282], [2.311692674704851, 48.848749413810815], [2.31151398253066, 48.84873970861697], [2.311336184759397, 48.84872904598717], [2.311157492733225, 48.84871933936143], [2.311143421345402, 48.84872551160498], [2.311082205358218, 48.848849263816106], [2.311021749092793, 48.84897366430143], [2.310960532525272, 48.84909741642271], [2.31090007568151, 48.84922181681884], [2.310838858533439, 48.849345568850296], [2.310778401111433, 48.84946996915724], [2.310717183382909, 48.8495937210988], [2.310656725382446, 48.84971812131651], [2.310595507073559, 48.84984187316828], [2.310535049857418, 48.84996627330463], [2.310473829605378, 48.85009002505866], [2.310413371810874, 48.85021442510579], [2.310352150978246, 48.85033817677001], [2.31029169260537, 48.85046257672791], [2.31023047119235, 48.850586328302235], [2.310170012241096, 48.850710728170924], [2.310108790247575, 48.850834479655425], [2.3100483307179323, 48.85095887943487], [2.310029781001381, 48.85096974555505]]], "type": "Polygon"}, "properties": {"lassalle_jean": 23.0, "pecresse_valerie": 208, "zemmour_eric": 153.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "7-11", "circ_bv": "12", "num_bureau": 11, "roussel_fabien": 8.0, "nb_emargement": 1053.0, "nb_procuration": 70.0, "nb_vote_blanc": 9.0, "jadot_yannick": 46.0, "le_pen_marine": 40.0, "nb_exprime": 1042.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1254.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1053, "quartier_bv": "27", "geo_point_2d": [48.850185433518895, 2.3130286315151207], "melenchon_jean_luc": 76.0, "poutou_philippe": 2.0, "macron_emmanuel": 463.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.341499927717849, 48.89424043721247], [2.341527261390321, 48.89423854425472], [2.341698694058259, 48.89427928354837], [2.341900054303151, 48.89432518819053], [2.342071488900559, 48.89436592785402], [2.342272849809229, 48.89441183186574], [2.342444284994988, 48.894452570093115], [2.342645646567425, 48.89449847347434], [2.342817080966309, 48.89453921115733], [2.343018444555015, 48.894585114814845], [2.343189879530875, 48.89462585196091], [2.343198155512098, 48.894637230595194], [2.343161302255103, 48.89470803614947], [2.343123774683907, 48.89479346994046], [2.343133833594984, 48.89480461194318], [2.343171623129027, 48.89480771413208], [2.343352999738639, 48.89475984871145], [2.343524535806508, 48.894713994811575], [2.343705911765284, 48.894666128852364], [2.34387744720223, 48.89462027534234], [2.344058822521294, 48.89457240794526], [2.344230357338752, 48.89452655392584], [2.344401891853964, 48.89448069965879], [2.34458326620463, 48.89443283146132], [2.34475480010035, 48.89438697668485], [2.344936173788743, 48.89433910884806], [2.345107707076079, 48.89429325266295], [2.345289080113618, 48.89424538428754], [2.345296854299344, 48.89423400721066], [2.345235575695282, 48.89412104119086], [2.345167224216369, 48.89400231946487], [2.345105946154939, 48.89388935425412], [2.34503759527577, 48.893770632428996], [2.34497631776827, 48.89365766712804], [2.344929564738269, 48.89357645984412], [2.344925011707842, 48.89356174361815], [2.344897024345798, 48.89355167369433], [2.344875427129991, 48.89351415904732], [2.344803768792627, 48.89338706514738], [2.344735419261772, 48.89326834309541], [2.344663760251982, 48.89314124817642], [2.344595412726885, 48.89302252602537], [2.344527064138449, 48.89290380471425], [2.344455406138965, 48.892776709628386], [2.344387058203675, 48.89265798731145], [2.344315402248057, 48.892530892120746], [2.344300055430199, 48.8925251936167], [2.344067161169074, 48.89255458864083], [2.343874938883765, 48.89258061687284], [2.343868525862993, 48.89258267985415], [2.34373427650427, 48.89266008453515], [2.343598391935383, 48.892737559239386], [2.343464141775725, 48.89281496360662], [2.343328256411914, 48.89289243709413], [2.343194005451422, 48.892969841147604], [2.343058119270103, 48.893047315216876], [2.342923868872383, 48.89312471896404], [2.342787980521176, 48.89320219270836], [2.342653729322514, 48.89327959614174], [2.342517841540205, 48.8933570686768], [2.342506272034225, 48.89335908798448], [2.342327259993088, 48.893335724446466], [2.342157350617664, 48.89331215433815], [2.34197833754201, 48.8932887893708], [2.34180842984153, 48.89326521877392], [2.341764570180714, 48.8932586068975], [2.341747640613522, 48.89327971715969], [2.341746666931515, 48.893281755966925], [2.341713844064846, 48.89339670227084], [2.341679317446964, 48.89350960672037], [2.341646495651798, 48.89362455298944], [2.341611967372942, 48.89373745738859], [2.341579145285552, 48.8938524036153], [2.341544616709542, 48.893965307971555], [2.341511794329721, 48.8940802541559], [2.341477265456555, 48.8941931584693], [2.341477090532832, 48.89419566571511], [2.341482035990529, 48.89423028890953], [2.341499927717849, 48.89424043721247]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 48, "zemmour_eric": 62.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-9", "circ_bv": "18", "num_bureau": 9, "roussel_fabien": 25.0, "nb_emargement": 1311.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 129.0, "le_pen_marine": 49.0, "nb_exprime": 1298.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1628.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1313, "quartier_bv": "70", "geo_point_2d": [48.893756535334866, 2.3434464468635636], "melenchon_jean_luc": 507.0, "poutou_philippe": 10.0, "macron_emmanuel": 404.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.371336936477543, 48.87905180093435], [2.37132081019942, 48.879045812140546], [2.371284217857946, 48.87900873750228], [2.371172651905376, 48.878891328406745], [2.371062633249701, 48.87877985571353], [2.370951066923513, 48.8786624463799], [2.370841049225604, 48.87855097345991], [2.370729485252673, 48.87843356390256], [2.370619468512518, 48.87832209075581], [2.37061891596949, 48.87832155364779], [2.370533762740918, 48.87824484978992], [2.370423746818208, 48.878133376444204], [2.370338594173865, 48.87805667333367], [2.370281257939034, 48.878056005718555], [2.370275239559288, 48.87811272191189], [2.370273861090035, 48.87818252260806], [2.370274047976573, 48.87831760953785], [2.370271530753191, 48.878445052296385], [2.370271717634727, 48.87858013919402], [2.370269200381979, 48.8787075828214], [2.370269387258413, 48.87884266968684], [2.370266868634799, 48.87897011237736], [2.370267056869479, 48.87910519921782], [2.370264538227467, 48.87923264187791], [2.370264726457153, 48.87936772868616], [2.370262207785868, 48.87949517221513], [2.370262396010356, 48.8796302589912], [2.370259877331546, 48.87975770159044], [2.37026006555104, 48.87989278833432], [2.370257546853729, 48.88002023090317], [2.370257735068127, 48.88015531761483], [2.370255216341646, 48.88028276105247], [2.370255403187458, 48.88041784772478], [2.370252885816837, 48.880545290239915], [2.370250367070502, 48.88067273273308], [2.370250555268635, 48.88080781936472], [2.370248036492923, 48.88093526272672], [2.37024822468596, 48.88107034932617], [2.370245705902824, 48.881197791758424], [2.370245894090662, 48.881332878325665], [2.370243375289125, 48.88146032072749], [2.370243563471969, 48.881595407262495], [2.3702163276897013, 48.8816313414836], [2.370242973331527, 48.881663490569075], [2.370243160150435, 48.881798577071955], [2.370245510639383, 48.881920274039466], [2.370245697465795, 48.88205536051085], [2.370248047972161, 48.8821770574499], [2.370248234806176, 48.88231214388976], [2.370250585319186, 48.8824338416996], [2.370282631125606, 48.882458560125066], [2.3703448734985493, 48.882473171521], [2.3705050378475923, 48.88240667293666], [2.370678987589355, 48.88233432452067], [2.3708391524481742, 48.88226782548816], [2.371013101261993, 48.88219547657761], [2.37117326390372, 48.88212897708257], [2.371347211789495, 48.88205662767751], [2.371507374941095, 48.88199012773429], [2.37168132189893, 48.881917777834644], [2.3718414828441903, 48.88185127652965], [2.372015428863342, 48.88177892703472], [2.372175590318363, 48.88171242528156], [2.37234953540958, 48.881640075292125], [2.372509696011041, 48.88157357308359], [2.372683640174225, 48.88150122259962], [2.372843798558507, 48.88143471992859], [2.373017741793864, 48.881362368950086], [2.373177900687899, 48.88129586583091], [2.373201763989875, 48.88126034315962], [2.373184974101508, 48.88124744521048], [2.373100002958307, 48.881136215531775], [2.373012690972209, 48.88103211779309], [2.372927720548291, 48.88092088797037], [2.3728404092783872, 48.88081678918639], [2.372839320323002, 48.880814820245384], [2.372790063832658, 48.88067798370907], [2.37274263425, 48.880543001231395], [2.372740932508931, 48.8805402862319], [2.372641073484765, 48.880434262602876], [2.372537038259713, 48.88032360342737], [2.372437180055372, 48.88021758050666], [2.372333145696396, 48.88010692113221], [2.372233288333439, 48.88000089712129], [2.372129254840432, 48.87989023754789], [2.372029398308015, 48.87978421334608], [2.371925365681169, 48.87967355357368], [2.371825509968437, 48.879567530080244], [2.371721478207538, 48.87945687010893], [2.371621623336174, 48.879350845525266], [2.371517592441418, 48.879240185355066], [2.371417738400566, 48.879134160580456], [2.371344309701044, 48.87905976365977], [2.371336936477543, 48.87905180093435]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 36, "zemmour_eric": 51.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-61", "circ_bv": "17", "num_bureau": 61, "roussel_fabien": 23.0, "nb_emargement": 1189.0, "nb_procuration": 74.0, "nb_vote_blanc": 11.0, "jadot_yannick": 84.0, "le_pen_marine": 43.0, "nb_exprime": 1171.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1543.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "73", "geo_point_2d": [48.88055534442239, 2.3712743851004743], "melenchon_jean_luc": 606.0, "poutou_philippe": 5.0, "macron_emmanuel": 260.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.403095792771207, 48.85458625957121], [2.4031081034066872, 48.85457069030919], [2.4032834299817303, 48.85452760912447], [2.4034566933221813, 48.85448520359926], [2.403632017948265, 48.85444212279301], [2.403805282083482, 48.8543997167666], [2.403980606133822, 48.85435663544622], [2.404153869701087, 48.85431422891179], [2.404329193175577, 48.854271147077384], [2.4045024561748862, 48.854228740034976], [2.404677779083697, 48.8541856567872], [2.404851040142066, 48.85414325012928], [2.405026363837818, 48.854100166374245], [2.405199624328233, 48.8540577592083], [2.405374947448114, 48.85401467493921], [2.40554820737057, 48.853972267265306], [2.40555682557279, 48.85396562072604], [2.405596002695705, 48.85383798374239], [2.405635030537434, 48.85371146927722], [2.405674207277702, 48.85358383223881], [2.405713234739099, 48.853457317719204], [2.405752411096831, 48.85332968062597], [2.405791438167747, 48.85320316695125], [2.405830615515877, 48.85307552891072], [2.405869642206573, 48.852949015181565], [2.405908817798938, 48.852821377978785], [2.4059478441197752, 48.8526948632959], [2.405952448438288, 48.85268081493273], [2.405946444394443, 48.85267598529551], [2.405797755622207, 48.85264953099039], [2.405611168399706, 48.8526166197734], [2.405422506501057, 48.852583053120114], [2.405235918390837, 48.85255014130919], [2.405047256974703, 48.852516574062236], [2.404860670702298, 48.852483661670945], [2.404672009768482, 48.852450093830335], [2.404485422608373, 48.8524171808452], [2.404296762157085, 48.852383612410904], [2.404110175472044, 48.852350698838606], [2.404110156434866, 48.85235069514642], [2.403921496465935, 48.852317126118436], [2.403744071067504, 48.85228564170973], [2.4035554115699362, 48.8522520721026], [2.403377986614097, 48.852220587149205], [2.403189327587997, 48.852187016962894], [2.403011901712103, 48.852155531458024], [2.4028232431573793, 48.85212196069253], [2.402645819086944, 48.852090474649806], [2.40246839523092, 48.85205898834308], [2.402279737375878, 48.85202541671772], [2.402102312599818, 48.85199392985953], [2.401913655216065, 48.85196035765503], [2.401736232245575, 48.851928870258945], [2.401579327770728, 48.85190094772016], [2.401550200612978, 48.851894539862585], [2.401540020297149, 48.85191425397062], [2.401463737858532, 48.85204816971197], [2.40138608211048, 48.852184270236684], [2.40130979888098, 48.85231818584736], [2.401232142328471, 48.85245428623913], [2.401155858297741, 48.85258820261848], [2.401078200940758, 48.852724302877256], [2.401001916129455, 48.85285821822662], [2.400924257967891, 48.852994318352465], [2.4009078982282, 48.85300537039144], [2.400909239255783, 48.85301271939673], [2.401003621163231, 48.85307290783604], [2.401102835540225, 48.85313668450669], [2.401230180477929, 48.85321789275739], [2.401329394045587, 48.853281669225055], [2.40133040943013, 48.85328225618445], [2.401492464061536, 48.853366414991314], [2.401653028209219, 48.853450222565], [2.401815083883954, 48.85353438092224], [2.401975647705299, 48.85361818804348], [2.402137704423567, 48.853702345951085], [2.402298270644157, 48.85378615263357], [2.402458837381238, 48.853869959094304], [2.402620895662815, 48.85395411632841], [2.402624881683278, 48.85395747371174], [2.402694804574441, 48.85405934126215], [2.402764510071795, 48.85415986674715], [2.402834433497212, 48.85426173509669], [2.402904139534691, 48.854362260481984], [2.4029740635046792, 48.854464128731394], [2.403043768719472, 48.8545646540103], [2.403046782860418, 48.85456743634201], [2.403049530154373, 48.85456900502094], [2.403079021096038, 48.8545874646715], [2.403095792771207, 48.85458625957121]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 38, "zemmour_eric": 56.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "20-44", "circ_bv": "15", "num_bureau": 44, "roussel_fabien": 24.0, "nb_emargement": 1546.0, "nb_procuration": 89.0, "nb_vote_blanc": 15.0, "jadot_yannick": 124.0, "le_pen_marine": 89.0, "nb_exprime": 1524.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1953.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1543, "quartier_bv": "80", "geo_point_2d": [48.85317024873588, 2.4034613679748578], "melenchon_jean_luc": 779.0, "poutou_philippe": 12.0, "macron_emmanuel": 323.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.336195696826763, 48.88273008052474], [2.336217572113024, 48.88276676412688], [2.336289388878265, 48.88288431367104], [2.336362017502301, 48.88300452428217], [2.336433836284924, 48.88312207372183], [2.336506464210427, 48.8832422842118], [2.336578283646996, 48.88335983353936], [2.336650913601086, 48.88348004392331], [2.336722732328148, 48.88359759313126], [2.336795362947174, 48.88371780340161], [2.336867182328191, 48.88383535249751], [2.336939813612366, 48.883955562654194], [2.336932390453143, 48.88396719305315], [2.3368148018887602, 48.883999505827944], [2.336690865830257, 48.884026751568065], [2.336682344267055, 48.884038321905955], [2.336730128469045, 48.8841260752781], [2.336779348340209, 48.88421578902169], [2.336827132868505, 48.88430354234091], [2.33687635308597, 48.884393255130895], [2.3368706390317913, 48.88440398846315], [2.336686682149268, 48.88447809948345], [2.336532318710636, 48.88454260029482], [2.336377954878153, 48.88460710180269], [2.336193997952025, 48.88468121116061], [2.336039633289615, 48.88474571222416], [2.335855674028873, 48.8848198210454], [2.335701308536431, 48.88488432166461], [2.3355173483045633, 48.884958429956676], [2.335362983345795, 48.88502293013913], [2.335179022142804, 48.88509703790206], [2.335024654990602, 48.885161537632676], [2.335020112681265, 48.88517359579657], [2.3351114318314172, 48.88527899264297], [2.335205182405725, 48.8853918979186], [2.335296502324752, 48.88549729370368], [2.335390255045377, 48.885610199718805], [2.335384038298964, 48.885622674878796], [2.33524199551258, 48.88566619088149], [2.335101788701399, 48.885708158373546], [2.335093926444729, 48.88571717275488], [2.335116920164853, 48.88574597465171], [2.335164811215229, 48.88581171083981], [2.335230151543001, 48.88589267419625], [2.335248871287437, 48.88589628821027], [2.335435039382093, 48.88582727563532], [2.3356204830551652, 48.88575717865543], [2.335806650160005, 48.88568816549395], [2.335992092825992, 48.88561806882894], [2.336178258952483, 48.88554905418165], [2.336363700622857, 48.88547895693225], [2.336549865759526, 48.88540994169848], [2.336735306434288, 48.885339843864635], [2.336921470581234, 48.88527082804432], [2.337106910260383, 48.88520072962607], [2.337293072042352, 48.885131714111004], [2.3374785121009403, 48.885061614216646], [2.337516734236828, 48.885047496695776], [2.337537668811833, 48.885020102940544], [2.337639819783451, 48.88489086427606], [2.337727907307717, 48.884800930264625], [2.337729133119404, 48.884799653701755], [2.337817220323703, 48.884709720516405], [2.3378980829014893, 48.88463938417274], [2.33797894526094, 48.88456904776993], [2.338087797823043, 48.88448928099736], [2.338088943490121, 48.884488407786534], [2.338218407998293, 48.884401623155355], [2.338327259832207, 48.88432185705217], [2.338456723517841, 48.8842350730494], [2.338565574650007, 48.884155305818254], [2.338567714060305, 48.88415413771635], [2.3386853471610323, 48.884102258549355], [2.338818420104388, 48.884045267302646], [2.338936054073007, 48.883993387891756], [2.339069125100211, 48.88393639635321], [2.339074336486692, 48.883925474877415], [2.339052518539188, 48.88388998647669], [2.3390245289988982, 48.88385383446832], [2.339026877664354, 48.88384197987272], [2.339004172066557, 48.883821745496334], [2.3389457205116, 48.88374624776039], [2.338849747986696, 48.88362407079909], [2.338763307702043, 48.883512420893574], [2.3386673360474433, 48.883390242860806], [2.338580896530573, 48.8832785936991], [2.338484925734848, 48.88315641549417], [2.33839848699717, 48.883044766177036], [2.338302517060309, 48.88292258779989], [2.338216079101713, 48.88281093832735], [2.338120110023807, 48.88268875977808], [2.338033672855814, 48.8825771092508], [2.337937704625321, 48.882454931428605], [2.337851268236495, 48.88234328074599], [2.337839576141004, 48.88232283902547], [2.337800574408771, 48.88232121945394], [2.337738432716766, 48.882330824134], [2.337510338433968, 48.88236810214999], [2.337324003147338, 48.88239690085061], [2.337321757920298, 48.882397386652855], [2.337191657343042, 48.8824340318962], [2.337011567193136, 48.88248809093492], [2.336881467534551, 48.88252473584574], [2.33677295097983, 48.882557310193796], [2.336748768762548, 48.88255526874878], [2.336722699112342, 48.882568017141004], [2.336651124834496, 48.88258950222963], [2.336465965283371, 48.88264450363629], [2.336285873652225, 48.88269856157305], [2.336216420783186, 48.88271919210547], [2.336195696826763, 48.88273008052474]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 44, "zemmour_eric": 57.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-27", "circ_bv": "18", "num_bureau": 27, "roussel_fabien": 22.0, "nb_emargement": 1164.0, "nb_procuration": 76.0, "nb_vote_blanc": 12.0, "jadot_yannick": 109.0, "le_pen_marine": 40.0, "nb_exprime": 1150.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1452.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1164, "quartier_bv": "69", "geo_point_2d": [48.88400754777912, 2.3371857771745237], "melenchon_jean_luc": 374.0, "poutou_philippe": 7.0, "macron_emmanuel": 448.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291686164198487, 48.87946962248362], [2.291702243302413, 48.8794687013637], [2.291881885695603, 48.879427666042886], [2.292062321123654, 48.879386448979155], [2.292241962949416, 48.87934541311497], [2.292422399183196, 48.87930419461428], [2.292602040441522, 48.879263158206705], [2.292782474729689, 48.87922194005146], [2.292962115420579, 48.87918090310052], [2.293142549138798, 48.879139684399505], [2.293322189274447, 48.87909864600595], [2.293502623786154, 48.8790574267672], [2.29368226334215, 48.879016388729525], [2.293862695920558, 48.878975168937004], [2.294042334921293, 48.87893412945673], [2.294222768293073, 48.87889290912646], [2.294238075927538, 48.8788939625631], [2.294248273363528, 48.878886542880174], [2.294445550446962, 48.87883311046366], [2.294639601470838, 48.878780551757266], [2.294836879102466, 48.87872711959803], [2.29503092797308, 48.878674560244264], [2.295228204814018, 48.87862112653577], [2.295422254258125, 48.878568566550705], [2.29561952893266, 48.878515132184226], [2.295813577574767, 48.87846257245905], [2.295815390943414, 48.878462176624495], [2.296001586918282, 48.87843088653364], [2.296189645348637, 48.87839928424056], [2.29637584087381, 48.87836799356582], [2.2965639002134, 48.87833639069099], [2.29675009528887, 48.8783050994324], [2.2969381541864, 48.87827349506866], [2.297124348800022, 48.878242204125456], [2.297312407243341, 48.878210599172], [2.297498600043834, 48.87817930763693], [2.2976866580329363, 48.87814770209377], [2.297872851747132, 48.87811640998285], [2.2980609092820092, 48.87808480384999], [2.298116340505461, 48.87806936614475], [2.298134632376498, 48.87805394989939], [2.298116118089266, 48.87802850427284], [2.298031966916903, 48.87791126136023], [2.297965133809766, 48.877819411151336], [2.2978797882338933, 48.87770211613416], [2.2977956381330102, 48.87758487212141], [2.297710291959786, 48.87746757695043], [2.297626142619503, 48.87735033279357], [2.297540797212226, 48.87723303747678], [2.297456648620302, 48.877115794075145], [2.297371303991294, 48.876998497713295], [2.297287156159745, 48.87688125416757], [2.297201812296767, 48.87676395765995], [2.297117665225787, 48.87664671397017], [2.297032322128731, 48.87652941731675], [2.296948175818208, 48.87641217348288], [2.296862834838496, 48.87629487759096], [2.29677868793709, 48.87617763270574], [2.29669334772337, 48.87606033666803], [2.296609201582514, 48.87594309163877], [2.296523862134678, 48.875825795455306], [2.296439716742111, 48.87570855118122], [2.2963543780725, 48.87559125395274], [2.296270233440258, 48.875474009534585], [2.296184895536614, 48.875356712160354], [2.296100751664889, 48.87523946759813], [2.296015414514947, 48.87512217097737], [2.295931271415785, 48.87500492537186], [2.29584593503189, 48.87488762860536], [2.295761794056355, 48.874770382863815], [2.295676457075068, 48.87465308594356], [2.295592316859917, 48.874535840057916], [2.295506980644563, 48.874418542991904], [2.295422841177725, 48.87430129786156], [2.2953375057404592, 48.87418399975052], [2.295253367033881, 48.87406675447609], [2.295168032362533, 48.87394945621935], [2.295083894416308, 48.873832210800884], [2.295026595615515, 48.87380921352094], [2.294962420561667, 48.873805910890496], [2.294795980131339, 48.87385790894041], [2.29461254714592, 48.873915966223976], [2.294446107377944, 48.87396796379024], [2.294262673614966, 48.87402602053184], [2.29409623178273, 48.874078017598436], [2.293912797254283, 48.87413607289882], [2.2937463560844122, 48.87418806948183], [2.293562919403011, 48.87424612513153], [2.293396477532192, 48.87429812122285], [2.293213041436553, 48.87435617633865], [2.293046597501473, 48.87440817193026], [2.292972099987721, 48.8744317488776], [2.292959591176914, 48.87443754140507], [2.292990982719838, 48.87448039521993], [2.293057358734995, 48.87457784156931], [2.293124365943572, 48.87467621522363], [2.2931907424456153, 48.874773662381045], [2.293257750158034, 48.87487203594325], [2.293262497270605, 48.87487577645429], [2.293400970439254, 48.87493816197336], [2.293542037694233, 48.8750017146932], [2.293680511544715, 48.875064098982506], [2.293821579469674, 48.87512765226492], [2.293960055353029, 48.875190036231814], [2.294101123972359, 48.875253588278284], [2.294104900411488, 48.87526588026608], [2.293984752716914, 48.8753890686082], [2.293867566101952, 48.875509220122616], [2.293747418647966, 48.87563240820738], [2.293630229574659, 48.875752559454895], [2.293628435831386, 48.87575533413043], [2.293584770073719, 48.87587577705149], [2.293541435589234, 48.87599530367233], [2.2934977680536353, 48.87611574742668], [2.293454434533201, 48.87623527399811], [2.293411099462705, 48.87635479963355], [2.293367432687673, 48.87647524330916], [2.293324097205657, 48.87659476978638], [2.293280428677063, 48.8767152124967], [2.293237094159098, 48.876834738924465], [2.293193425215909, 48.87695518247607], [2.293150088947433, 48.87707470793904], [2.293106420965232, 48.87719515144072], [2.293063084285214, 48.87731467774542], [2.293019415900613, 48.87743512118917], [2.293023100638642, 48.877443614733004], [2.2932049181806162, 48.877561906519055], [2.293377153976189, 48.8776739638888], [2.293387032807372, 48.877676552042885], [2.293554725227949, 48.87767408828317], [2.293727323072068, 48.87767155340286], [2.293895015460452, 48.87766908916648], [2.29406761327154, 48.877666553795535], [2.294081468797229, 48.877676532733275], [2.294059156411122, 48.87780963203401], [2.294038462629632, 48.87793225186375], [2.29401776876289, 48.878054870776985], [2.293995456039617, 48.87818797091943], [2.293974760606697, 48.878310589788754], [2.293952447676148, 48.87844368899305], [2.293935315781029, 48.87845138702009], [2.293951426161731, 48.87847448353327], [2.293999411952966, 48.87852449548658], [2.294054561438459, 48.87858197370508], [2.294047626595763, 48.87859525202074], [2.293862192000063, 48.878638940057435], [2.293675664705146, 48.878682844396], [2.293490229473364, 48.87872653275236], [2.293303701551077, 48.878770436507956], [2.2931182657076112, 48.878814123385375], [2.29293173578252, 48.87885802744915], [2.2927462993151773, 48.87890171374694], [2.292559770138369, 48.87894561633646], [2.292374333034938, 48.8789893029539], [2.292187801867538, 48.87903320495232], [2.292002364152457, 48.879076890090886], [2.291815833721149, 48.879120791514325], [2.291630395369979, 48.879164476972505], [2.291443864311428, 48.87920837781287], [2.291430454957071, 48.87922484178254], [2.291439975922767, 48.879235006701634], [2.2914622999964482, 48.87925472732485], [2.291573836669957, 48.879369826444226], [2.291676830673419, 48.87946080770358], [2.291686164198487, 48.87946962248362]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 138, "zemmour_eric": 180.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "17-63", "circ_bv": "04", "num_bureau": 63, "roussel_fabien": 8.0, "nb_emargement": 1196.0, "nb_procuration": 69.0, "nb_vote_blanc": 13.0, "jadot_yannick": 59.0, "le_pen_marine": 63.0, "nb_exprime": 1182.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1514.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1196, "quartier_bv": "65", "geo_point_2d": [48.876690701465215, 2.295066603607127], "melenchon_jean_luc": 144.0, "poutou_philippe": 0.0, "macron_emmanuel": 547.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305243816613529, 48.834506985434174], [2.305245834632693, 48.834499803067025], [2.305149729190093, 48.83439048174455], [2.305053747909931, 48.83428148302903], [2.3049576432726733, 48.83417216153085], [2.304861662784048, 48.83406316353926], [2.304765558964219, 48.8339538409661], [2.30466957927921, 48.83384484279913], [2.304573477614868, 48.83373552095755], [2.304477497383209, 48.83362652170792], [2.304381396524277, 48.833517199690746], [2.304285417096228, 48.83340820026573], [2.304189317042496, 48.83329887807289], [2.30409333978029, 48.83318987848039], [2.303997239169707, 48.833080556103965], [2.3039012626990782, 48.8329715572354], [2.3038051629056913, 48.832862233784056], [2.303709187238636, 48.83275323474009], [2.303613088238619, 48.83264391201243], [2.303517113387143, 48.83253491189376], [2.303421015192295, 48.83242558899045], [2.303325041144479, 48.83231658869647], [2.303228943754893, 48.83220726561749], [2.303132970510524, 48.832098265148126], [2.303133881011982, 48.83208742668051], [2.303118028899529, 48.8320782865973], [2.303116761883747, 48.83207635634956], [2.303053328730938, 48.83193710422383], [2.302992496330756, 48.83180194227409], [2.302929063855822, 48.831662689149056], [2.302868233448119, 48.83152752801023], [2.302865571424454, 48.831524277437715], [2.302740875755607, 48.831427046574824], [2.3026155963752952, 48.83132898294224], [2.302490901639716, 48.83123175180182], [2.302365623198953, 48.83113368789033], [2.302363286677402, 48.831131057974886], [2.302294917468717, 48.83101111671391], [2.302225230951275, 48.83089028272696], [2.3021568623759903, 48.830770341361294], [2.3020871778746113, 48.83064950637663], [2.302018809920777, 48.8305295658056], [2.301949124699058, 48.830408730706544], [2.301948481624139, 48.8304072115026], [2.301916540914727, 48.83029408487974], [2.301884809102094, 48.83018103500319], [2.301852868669426, 48.83006790834045], [2.301821137132535, 48.829954858424195], [2.301789195614451, 48.8298417317137], [2.301757465715355, 48.829728681765644], [2.301725524474012, 48.82961555501533], [2.301693793488598, 48.82950250501964], [2.301690130155077, 48.829497849135514], [2.301526464614385, 48.82938756501078], [2.301363778810115, 48.8292800546563], [2.301201092302642, 48.82917254496164], [2.30103742882978, 48.829062259236345], [2.30100153741031, 48.82904211924296], [2.300986673288183, 48.82904737197491], [2.300970868647509, 48.82913251907788], [2.300959726546338, 48.8291889385047], [2.300953292604127, 48.8292082528193], [2.300955996668407, 48.82921068705278], [2.300938659373391, 48.82929847924617], [2.300915770430506, 48.82941505775072], [2.300887289378926, 48.82955926931567], [2.300864401568921, 48.829675847791286], [2.300835920232665, 48.829820059310485], [2.300813030831137, 48.829936637741156], [2.300804098673155, 48.82994394602854], [2.300625117814875, 48.82998608404508], [2.3004446697012693, 48.83002851360367], [2.3002656869000733, 48.83007065107115], [2.300085238201219, 48.830113080084246], [2.2999062561813313, 48.83015521701862], [2.2997258055350702, 48.83019764547826], [2.299546822934333, 48.830239781871605], [2.299366373064999, 48.8302822097937], [2.299187389883419, 48.83032434564595], [2.299006938066684, 48.830366773014546], [2.2988279543042642, 48.83040890832573], [2.298647501902298, 48.83045133514884], [2.298468517558941, 48.830493469918956], [2.298288065933923, 48.8305358962045], [2.2981090810098372, 48.830578030433536], [2.297928627437424, 48.83062045616563], [2.297921969622051, 48.83062706438094], [2.297929952504972, 48.830642031913214], [2.2980736860525193, 48.83073146243969], [2.29821667077817, 48.830820189573444], [2.298360405308779, 48.83090961974114], [2.298503391011168, 48.83099834651802], [2.298647126536946, 48.83108777542766], [2.298790113215976, 48.8311765018476], [2.298933849712727, 48.83126593129774], [2.299076837368305, 48.831354657360855], [2.299220573486043, 48.83144408644419], [2.29936356349256, 48.83153281125905], [2.299507300593277, 48.83162223998362], [2.299650291564474, 48.831710965340875], [2.299794029648279, 48.83180039370663], [2.299937021596049, 48.831889118707], [2.300080760675125, 48.83197854581462], [2.300223753599572, 48.83206727045812], [2.300367493649572, 48.832156698106225], [2.300510487550805, 48.83224542239277], [2.300654228583913, 48.83233484968207], [2.300797223473799, 48.83242357271238], [2.300940965490121, 48.8325129996429], [2.301083961344641, 48.83260172321557], [2.30108565268075, 48.83260299132539], [2.301201775459051, 48.83270852532566], [2.301318518742745, 48.83281445225473], [2.301434642463523, 48.832919986008996], [2.301551385331729, 48.833025912682835], [2.30166751135723, 48.83313144619904], [2.301784255172191, 48.833237372625575], [2.301900380777945, 48.83334290588779], [2.302017125539769, 48.83344883206703], [2.302133253450176, 48.83355436509118], [2.302249999158774, 48.83366029102311], [2.302366126649442, 48.83376582379328], [2.302482874667081, 48.833871749485844], [2.3025990031123023, 48.83397728111066], [2.302715750702442, 48.83408320744731], [2.30283188009019, 48.83418873882608], [2.3029486300014312, 48.834294664024014], [2.30306476031969, 48.83440019605607], [2.303181509815472, 48.83450612099875], [2.303297642438559, 48.834611652792695], [2.303414392881161, 48.83471757748805], [2.303530525084631, 48.83482310902802], [2.303647277836249, 48.83492903348397], [2.303666268609064, 48.83493724380116], [2.303683502352774, 48.8349300223317], [2.303875982219828, 48.83487800234154], [2.304066277617201, 48.834825895582746], [2.30425875671778, 48.83477387497176], [2.304449052714686, 48.83472176760707], [2.304641531048782, 48.83466974637531], [2.304831824920649, 48.83461763838889], [2.30502211976236, 48.83456553100449], [2.305214596959646, 48.83451350794399], [2.305243816613529, 48.834506985434174]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 75, "zemmour_eric": 85.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-50", "circ_bv": "13", "num_bureau": 50, "roussel_fabien": 9.0, "nb_emargement": 1106.0, "nb_procuration": 36.0, "nb_vote_blanc": 11.0, "jadot_yannick": 70.0, "le_pen_marine": 76.0, "nb_exprime": 1088.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1472.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1106, "quartier_bv": "57", "geo_point_2d": [48.83203232636239, 2.301785502467222], "melenchon_jean_luc": 322.0, "poutou_philippe": 5.0, "macron_emmanuel": 386.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.404647357834585, 48.87178481754342], [2.404679637509012, 48.87179003864349], [2.404743501923375, 48.8718082053395], [2.404903238199296, 48.871853437488994], [2.405107350313139, 48.87191149863659], [2.405267087231941, 48.87195672939705], [2.405471198792833, 48.872014789911994], [2.405630937697453, 48.87206002108878], [2.405653770311826, 48.87206005711953], [2.405661210389901, 48.87204640170413], [2.405784746516293, 48.87194104022478], [2.405908907415714, 48.87183512412418], [2.406032441176841, 48.871729762362285], [2.406156601068995, 48.8716238459845], [2.406280135191299, 48.87151848395358], [2.406404292723185, 48.87141256639256], [2.406527825833161, 48.87130720498515], [2.406651983721055, 48.87120128715372], [2.406775514465715, 48.8710959254638], [2.406899671346264, 48.870990007355196], [2.407023202452119, 48.870884645396245], [2.407147358325536, 48.87077872701049], [2.407270887076339, 48.870673363869734], [2.407395041932301, 48.87056744610611], [2.407518569681068, 48.87046208268958], [2.40764272354005, 48.87035616374955], [2.407639450958055, 48.87034315845784], [2.407528427138819, 48.87029480210601], [2.407419728862902, 48.870244924694134], [2.407416496262667, 48.87023224515197], [2.407530762237418, 48.87012881617784], [2.407647465929814, 48.870023173296254], [2.407761730987341, 48.86991974408207], [2.407878435106233, 48.86981410096205], [2.407992699246543, 48.869710671507804], [2.4081094010653032, 48.86960502813589], [2.408223664288407, 48.86950159844155], [2.4083403651704662, 48.869395954824455], [2.408329862634225, 48.86938167181929], [2.408140221643981, 48.8693769507242], [2.407961824271476, 48.86937335875034], [2.407772184707959, 48.8693686370789], [2.407593786036431, 48.869365043650454], [2.407585561455566, 48.86936301001533], [2.407560943812971, 48.86934969940857], [2.407559467515042, 48.869345254778224], [2.407529986176853, 48.86933730351561], [2.407387455144725, 48.869260234401295], [2.407229605976463, 48.86917475150423], [2.407062458443585, 48.86908437130843], [2.4069046117047472, 48.86899888797594], [2.406737465300141, 48.86890850731191], [2.40657961962752, 48.868823023537225], [2.4064217731097672, 48.86873753954101], [2.4062546283813813, 48.86864715818138], [2.406253319347001, 48.868646349479526], [2.40621570349184, 48.868620038945885], [2.406178469871913, 48.8685938049409], [2.40617479585136, 48.868587953615815], [2.406173629200447, 48.86856449043077], [2.406173794426992, 48.86854174522839], [2.406170025451721, 48.86853549412625], [2.405994747002584, 48.86841430301897], [2.405826171923459, 48.86829709480268], [2.405820864831883, 48.868294827309306], [2.405770112244108, 48.86828295591486], [2.405719919151784, 48.86827055846654], [2.405714748485307, 48.868268282652394], [2.40566300695938, 48.868232093627235], [2.405602683791671, 48.86818958998479], [2.405599050373135, 48.86818269740883], [2.405612368671617, 48.86807712202597], [2.405625851433947, 48.86796704446747], [2.405639170986142, 48.86786146906784], [2.40565265363592, 48.86775139148481], [2.405665971715496, 48.86764581605485], [2.405679454252825, 48.86753573844735], [2.405671402962656, 48.86752834548448], [2.405646316123832, 48.86752915442227], [2.405530127244552, 48.867563656949685], [2.405423089963347, 48.86759727850911], [2.4054194525603663, 48.867598862159554], [2.405277338188312, 48.86768515169968], [2.405137893008597, 48.86777092102569], [2.404995777690385, 48.867857211117354], [2.404856330223445, 48.8679429800952], [2.404854034249411, 48.86794479703127], [2.4047577504192272, 48.868045446000444], [2.404663501004585, 48.86814590085449], [2.404567216434562, 48.868246549652085], [2.40447296628864, 48.86834700433788], [2.404376680978772, 48.86844765296388], [2.4042824301118513, 48.868548106582026], [2.4042655107954483, 48.86856135413983], [2.404285795231106, 48.86857737425963], [2.404430324416487, 48.8686620214106], [2.404590247403784, 48.86875612503707], [2.404761765072199, 48.86885657695988], [2.404921690618726, 48.86895068013372], [2.404925697970191, 48.86895992095343], [2.404867183421927, 48.86909164180717], [2.404809296159939, 48.869222365675526], [2.4047507810225293, 48.86935408644105], [2.40469289317668, 48.86948481022204], [2.404634376087005, 48.86961653089267], [2.404576487647204, 48.869747255485585], [2.4045179713417513, 48.86987897517551], [2.404460082318069, 48.87000969968111], [2.40440156405004, 48.870141420175344], [2.404343674452949, 48.87027214369432], [2.404343131845245, 48.87027488756435], [2.404347674468125, 48.870396475126846], [2.404352678011102, 48.87051805327804], [2.404357220667288, 48.8706396417127], [2.404362224255904, 48.87076121983673], [2.404366766955477, 48.870882808244275], [2.404371769226588, 48.87100438633437], [2.40436908346708, 48.8710099947114], [2.404288023498449, 48.87108194639584], [2.404145203177379, 48.871206785340085], [2.404064141230003, 48.871278736853306], [2.404033201874896, 48.87128366045528], [2.404041979895155, 48.87130906899279], [2.404043532547536, 48.87131182329099], [2.404129167581641, 48.871410487531584], [2.404212378981617, 48.87150712422869], [2.404295590700527, 48.87160375996024], [2.404381226692121, 48.87170242399446], [2.40438745123017, 48.87170615302987], [2.404504939090549, 48.871741117332014], [2.404645184565742, 48.87178101244339], [2.404647357834585, 48.87178481754342]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 49, "zemmour_eric": 56.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "20-27", "circ_bv": "15", "num_bureau": 27, "roussel_fabien": 18.0, "nb_emargement": 1041.0, "nb_procuration": 53.0, "nb_vote_blanc": 5.0, "jadot_yannick": 96.0, "le_pen_marine": 48.0, "nb_exprime": 1033.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1350.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1041, "quartier_bv": "78", "geo_point_2d": [48.86999915602853, 2.4057962527169665], "melenchon_jean_luc": 380.0, "poutou_philippe": 9.0, "macron_emmanuel": 314.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.272736959326859, 48.8621699743396], [2.272790760065486, 48.86214832284892], [2.272849161114399, 48.86212482053411], [2.27283770167931, 48.862104016285656], [2.27293278085165, 48.8620095861452], [2.273063255564741, 48.86188130337539], [2.273158335284805, 48.86178687304509], [2.273288808897413, 48.861658589104316], [2.273383886439131, 48.86156415856755], [2.273385384387487, 48.86156220886749], [2.273458033018112, 48.861433123037415], [2.27352815775183, 48.86130534388113], [2.273600805670431, 48.86117625793448], [2.273670928345289, 48.861048478656706], [2.273741052039047, 48.86092069933136], [2.273813698893929, 48.86079161321067], [2.273814414854067, 48.8607896317782], [2.273841861522308, 48.86063999086571], [2.273867348390122, 48.86049902401407], [2.27389283512012, 48.86035805713915], [2.273920281335774, 48.86020841615038], [2.273920264915285, 48.86020617125817], [2.27389802301478, 48.86008273639025], [2.273875534760135, 48.859969063419896], [2.273853046603618, 48.85985539043371], [2.273830805024645, 48.85973195461491], [2.273808317067957, 48.859618281596006], [2.27378607568374, 48.859494846641816], [2.273800698873004, 48.85948482031913], [2.273972654570597, 48.85949391563897], [2.274143186374944, 48.85950278622901], [2.274315143541917, 48.85951188196417], [2.274485674112974, 48.859520751158485], [2.274657631399128, 48.85952984640132], [2.274828163450108, 48.859538715115704], [2.275000120855336, 48.85954780986632], [2.27517065164807, 48.85955667898351], [2.275185508149231, 48.85955092854779], [2.275188258409849, 48.85953096420441], [2.275159667243039, 48.85939775731984], [2.2751315241015, 48.85926615757764], [2.27510293457546, 48.859132951555274], [2.275074791720252, 48.85900135176828], [2.275046201134162, 48.85886814479303], [2.275018058552773, 48.85873654586059], [2.274989469619941, 48.858603338848205], [2.274961327337388, 48.858471738971765], [2.2749331838214832, 48.85834013996409], [2.274904595323255, 48.85820693288387], [2.274891999412555, 48.858166330609855], [2.274873826077237, 48.85816471406347], [2.274809957214352, 48.858167905567875], [2.274579488519156, 48.85817772275548], [2.274378900284432, 48.858187746773076], [2.274148430044937, 48.85819756402136], [2.273947843026225, 48.858207586425195], [2.273944774946272, 48.85820748866651], [2.273753571328979, 48.85818695354338], [2.273558401399023, 48.85816486692617], [2.273367198090423, 48.85814433118492], [2.273172028496559, 48.85812224303739], [2.272980825496663, 48.85810170667801], [2.272785656213711, 48.858079618798804], [2.272782731981043, 48.85807907850099], [2.272638756026587, 48.85803856785344], [2.272436972517964, 48.85798466488207], [2.272436523042669, 48.85798454523276], [2.272302490335323, 48.85795048996356], [2.272302274368611, 48.857950436487485], [2.272100491536944, 48.85789653384377], [2.27193145263779, 48.85785574486462], [2.271729670556369, 48.857801841591034], [2.271560630904417, 48.857761051177015], [2.271559909389533, 48.85776089209529], [2.271373627415195, 48.85772309564066], [2.271186297914371, 48.85768556771684], [2.271000016493043, 48.857647769778794], [2.270812686169262, 48.857610241259216], [2.270626405275587, 48.85757244363631], [2.270439076867302, 48.857534913638375], [2.270252796513969, 48.857497115431315], [2.270065467270049, 48.85745958573695], [2.269879187469766, 48.85742178604644], [2.269691860128658, 48.85738425577302], [2.269505580856026, 48.85734645639764], [2.269318252704704, 48.85730892462924], [2.269260060367037, 48.85729711594768], [2.269243326681337, 48.85728734385318], [2.269222371562456, 48.85728692538966], [2.269094286574571, 48.857260934079456], [2.268900944988165, 48.85722043750723], [2.2687146668749962, 48.857182636895104], [2.26852132587418, 48.857142139706674], [2.268521153285762, 48.85714210357669], [2.268305707580858, 48.857096308590286], [2.268112367205605, 48.85705581163728], [2.267896922216903, 48.857010015911314], [2.267703582492215, 48.85696951739544], [2.2674881382068808, 48.856923721829226], [2.267294799120133, 48.85688322264975], [2.267293855048796, 48.85688299652601], [2.267103795545391, 48.85683212771552], [2.266944533103116, 48.856789722274534], [2.266785272282929, 48.856747316628265], [2.266595212408215, 48.85669644699545], [2.266388303355659, 48.856637600764735], [2.266198244268715, 48.85658673049643], [2.266195398071622, 48.85658569226929], [2.2660483457903933, 48.85651575104669], [2.265871069918398, 48.85643696607824], [2.265724019855107, 48.85636702445612], [2.265546743616679, 48.8562882389883], [2.265399694408474, 48.85621829695825], [2.265278797586149, 48.85615531088677], [2.265131749125444, 48.85608536761985], [2.265010852922762, 48.85602238216943], [2.265008830610364, 48.856021203277336], [2.264920148981491, 48.855954828050265], [2.264806568482284, 48.85587404670997], [2.264787514487668, 48.85584625002198], [2.264747141435631, 48.8558448363831], [2.264746408357204, 48.855845017146926], [2.264583534950248, 48.855888746844215], [2.264387372372215, 48.855943342804856], [2.264224498356585, 48.85598707200961], [2.264028335032188, 48.85604166737683], [2.263865459045054, 48.85608539608062], [2.263858055779687, 48.85609724907434], [2.263938862175101, 48.85622250902722], [2.264014586872833, 48.85634388749262], [2.264095394027148, 48.85646914731199], [2.264171119447968, 48.856590525651384], [2.26425192736099, 48.85671578533721], [2.2643276535176042, 48.856837162651296], [2.26440846217685, 48.8569624231029], [2.264484189056569, 48.85708380029097], [2.264564998474646, 48.85720906060904], [2.264640726077479, 48.85733043767109], [2.264650717890405, 48.85739166899472], [2.264687293416085, 48.85739792125771], [2.264875944333007, 48.85734110854518], [2.2650520564128263, 48.85729699122489], [2.265240705216398, 48.85724017702453], [2.2654168166336373, 48.857196060062705], [2.265605466036801, 48.85713924529047], [2.2657815768040432, 48.857095127787844], [2.265791424909631, 48.85709517202453], [2.265940707432743, 48.857134119988395], [2.266145022776067, 48.85718184576308], [2.266294305811822, 48.857220793282785], [2.266498621818901, 48.85726851845001], [2.266647905354636, 48.85730746642485], [2.266655074947647, 48.85731179491023], [2.266666900352551, 48.85732852351142], [2.266746884822129, 48.857433675665455], [2.266810827166716, 48.85752412747209], [2.266886596652899, 48.857631306921135], [2.266966582030662, 48.85773645889964], [2.2670423507832362, 48.85784363822124], [2.267122338164175, 48.857948790083874], [2.267198107545822, 48.858055969286355], [2.267278094204278, 48.85816112101639], [2.267353865565351, 48.85826830100737], [2.267433852864017, 48.85837345261322], [2.267434491935897, 48.85837443412782], [2.267507519105337, 48.858507966376074], [2.267578363520949, 48.858639822288985], [2.267649208295136, 48.85877167814427], [2.267722236571652, 48.8589052102137], [2.267793082070797, 48.85903706595226], [2.267866111088027, 48.859170597901986], [2.26793695731214, 48.85930245352383], [2.268009987082728, 48.859435984454514], [2.268080834019086, 48.85956784085894], [2.2681538645304062, 48.85970137166985], [2.268154575228891, 48.859705504064905], [2.268131163622357, 48.8598333133012], [2.268109068033251, 48.85996378187145], [2.268085656186392, 48.86009159196834], [2.2680635590234832, 48.86022205959221], [2.268040146948926, 48.860349869650406], [2.268018049562512, 48.86048033723549], [2.267994637260252, 48.86060814725505], [2.267972539650332, 48.86073861480132], [2.267949128483327, 48.860866424790515], [2.267927030637264, 48.86099689319728], [2.267903617892229, 48.8611247022402], [2.267881519822548, 48.86125517060814], [2.267858106849903, 48.8613829796124], [2.267836008556705, 48.86151344794155], [2.267812596706586, 48.86164125781471], [2.26779049820261, 48.861771725205784], [2.267803286770623, 48.86178170355451], [2.267991290707026, 48.86178860324706], [2.268198436044422, 48.86179727630722], [2.268386440089349, 48.86180417537889], [2.268593585554334, 48.86181284775498], [2.268781589707775, 48.86181974620581], [2.268988733937557, 48.86182841788951], [2.269176739562488, 48.861835315727845], [2.26938388391984, 48.86184398672745], [2.269571889653268, 48.86185088394492], [2.269779034138382, 48.861859554260455], [2.269967039980295, 48.861866450857114], [2.270174184605556, 48.861875119589286], [2.270362189180361, 48.86188201645602], [2.270569335296345, 48.86189068451244], [2.270757339979624, 48.86189758075834], [2.270945346088246, 48.86190447581783], [2.271152491014975, 48.861913143755714], [2.2711610222289, 48.86191560238662], [2.271300196876469, 48.86200293097173], [2.271435687838566, 48.86209248174884], [2.271446508375811, 48.86209508829972], [2.271621758571623, 48.862085085801915], [2.271793313759485, 48.862072519887064], [2.271968563812794, 48.86206251688119], [2.2721401174796982, 48.86204995046063], [2.272315368753492, 48.86203994695504], [2.272486922262423, 48.862027380037055], [2.2724969319628983, 48.86202929175869], [2.272619996402465, 48.86209414220876], [2.272711739179797, 48.86214568149856], [2.272736959326859, 48.8621699743396]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 180, "zemmour_eric": 272.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-4", "circ_bv": "14", "num_bureau": 4, "roussel_fabien": 3.0, "nb_emargement": 1332.0, "nb_procuration": 98.0, "nb_vote_blanc": 8.0, "jadot_yannick": 29.0, "le_pen_marine": 54.0, "nb_exprime": 1322.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1695.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1334, "quartier_bv": "62", "geo_point_2d": [48.859333960858855, 2.270311780437744], "melenchon_jean_luc": 53.0, "poutou_philippe": 3.0, "macron_emmanuel": 699.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.327793961205971, 48.83618509354181], [2.327809369371572, 48.83618524488722], [2.327841192817159, 48.83617506477897], [2.327988377809085, 48.83612798055248], [2.328172694920917, 48.83606100648852], [2.328191317689797, 48.836064694175946], [2.328285773167134, 48.83618306820038], [2.328380460132959, 48.836300004443345], [2.328474916454639, 48.83641837919281], [2.328569602909992, 48.8365353152538], [2.32866406146143, 48.836653688937346], [2.328758748768548, 48.83677062482401], [2.328853208175941, 48.836888998333286], [2.328947896334832, 48.837005934045614], [2.329042356586615, 48.8371243082799], [2.329137045597293, 48.83724124381791], [2.329231505354375, 48.837359616970964], [2.329326196579101, 48.837476552342274], [2.329420657192164, 48.83759492532104], [2.329515349268704, 48.83771186051798], [2.329609810726191, 48.83783023422175], [2.329704502292181, 48.83794716923673], [2.329798965979609, 48.83806554187454], [2.329893658397427, 48.83818247671518], [2.329988122940873, 48.83830084917868], [2.330082816198968, 48.83841778474421], [2.330177281598446, 48.83853615703347], [2.33027197572005, 48.838653091525345], [2.330282327466517, 48.83865777762935], [2.330516750266796, 48.83867731376889], [2.330775290635388, 48.83869830555072], [2.330790203311056, 48.83869147644122], [2.330837087563014, 48.838562395261114], [2.330883940687778, 48.8384341287022], [2.330930824476122, 48.83830504745565], [2.33097767712745, 48.838176781729786], [2.331024560452188, 48.838047700416766], [2.331071412641432, 48.837919434624645], [2.331079242454732, 48.837913289857795], [2.331096384659853, 48.83790650195455], [2.331132760508373, 48.8378961036118], [2.3311588968413632, 48.83789584863868], [2.331165893203759, 48.83788723223867], [2.331325853175731, 48.83784150599127], [2.331507538191639, 48.837789526222345], [2.331703871822834, 48.83773340098854], [2.331885556073432, 48.83768142153972], [2.332081888890401, 48.83762529568003], [2.332263572398742, 48.83757331475275], [2.332459904401477, 48.8375171882672], [2.332641587156128, 48.83746520676075], [2.332659883478646, 48.83746018963264], [2.33266259857953, 48.83745158793091], [2.332658663749923, 48.83732368746528], [2.332654909489715, 48.837194986654715], [2.332650976060695, 48.83706708616713], [2.33264722183795, 48.83693838532675], [2.332643288447156, 48.83681048480955], [2.332639534261873, 48.83668178393944], [2.332635600909306, 48.83655388339264], [2.332631846761384, 48.836425182492725], [2.332627912084814, 48.836297281908685], [2.332624157962944, 48.83616858187834], [2.33262022468683, 48.83604068127234], [2.332616470613833, 48.835911980312915], [2.332612537375944, 48.835784079677275], [2.332608783340508, 48.83565537868808], [2.332604850140843, 48.83552747802289], [2.332601096142866, 48.835398777003945], [2.3325971616191232, 48.83527087630153], [2.332593407647094, 48.83514217615213], [2.332589474535393, 48.83501427452845], [2.3325857206008243, 48.83488557434928], [2.33258178751583, 48.83475767359533], [2.332578033630232, 48.834628972487074], [2.332583432313573, 48.834623573110576], [2.332572952395957, 48.834608195649956], [2.332484058565115, 48.834499992730784], [2.332360706315069, 48.83434632575794], [2.332271813382877, 48.83423812175639], [2.332298052661816, 48.834221602891475], [2.332284613880097, 48.83417197971539], [2.332204272503842, 48.83407518064354], [2.33211538035874, 48.833966976499525], [2.332035039612697, 48.83387017729624], [2.331946148168457, 48.83376197300665], [2.331865808052719, 48.83366517367198], [2.331776917297706, 48.83355697013611], [2.331776603123245, 48.833556610430946], [2.331692941995991, 48.83346599627129], [2.331604051939534, 48.83335779258769], [2.33152039279355, 48.83326717829887], [2.331502175872416, 48.83326398534107], [2.331324893414099, 48.833328595434224], [2.331162810883387, 48.833388783509896], [2.330985527580134, 48.83345339309282], [2.330823445631716, 48.83351358070954], [2.330646161483326, 48.83357818978224], [2.330484077392895, 48.83363837692475], [2.33030679239957, 48.83370298548727], [2.330144707529179, 48.83376317216317], [2.329982622284505, 48.8338233586162], [2.329805336040566, 48.83388796642473], [2.329643250016033, 48.83394815241119], [2.329465962927059, 48.834012759709545], [2.329303876122769, 48.834072945229366], [2.329178698496561, 48.834118561765614], [2.329146125861017, 48.834129910818284], [2.32916977384596, 48.83417053315601], [2.329255107150941, 48.834277791393056], [2.329342819501573, 48.83438705950081], [2.329428153517068, 48.834494317593624], [2.32951586659467, 48.83460358555331], [2.329601201332252, 48.83471084260264], [2.329688915137031, 48.83482011041432], [2.329686657905465, 48.83483058263002], [2.329569066977944, 48.83491064030554], [2.329404348396257, 48.835022377498895], [2.3292867566024, 48.83510243488311], [2.329122038171806, 48.835214171676185], [2.32900444551181, 48.83529422876917], [2.329001733717262, 48.83529565614679], [2.328823439050758, 48.835367100103134], [2.32864274521328, 48.83544104586496], [2.32846444955736, 48.83551248927692], [2.328283756068955, 48.83558643449451], [2.328105458061412, 48.83565787735442], [2.327924763559773, 48.83573182202007], [2.327746465925227, 48.83580326434323], [2.3275657690480402, 48.83587720844932], [2.327560884904469, 48.83588903379176], [2.327676309886412, 48.83603414037134], [2.327783187871335, 48.83616920588388], [2.327793961205971, 48.83618509354181]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 97, "zemmour_eric": 86.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "14-28", "circ_bv": "11", "num_bureau": 28, "roussel_fabien": 19.0, "nb_emargement": 1251.0, "nb_procuration": 123.0, "nb_vote_blanc": 17.0, "jadot_yannick": 126.0, "le_pen_marine": 47.0, "nb_exprime": 1232.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1535.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1251, "quartier_bv": "53", "geo_point_2d": [48.83592222417641, 2.330680583958719], "melenchon_jean_luc": 261.0, "poutou_philippe": 4.0, "macron_emmanuel": 541.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323034328562558, 48.88698204177591], [2.323032937200318, 48.88698185943943], [2.3230251131480832, 48.886980835833306], [2.322998637835544, 48.88698690769957], [2.32284759262822, 48.887077074675304], [2.322709929613143, 48.88715903433311], [2.322572266164717, 48.88724099382652], [2.32242121947038, 48.8873311611428], [2.322283555112489, 48.88741312029141], [2.322154576563221, 48.88749011289309], [2.322134925109458, 48.88750194293012], [2.3221731741271983, 48.8875302230216], [2.322315023667264, 48.88763682118991], [2.322457933956469, 48.887744216588146], [2.322599784674116, 48.887850813499085], [2.322742696137924, 48.88795820853652], [2.322884548009764, 48.88806480598857], [2.323027462011871, 48.88817220067294], [2.323169313685929, 48.88827879775918], [2.32331222886267, 48.88838619208271], [2.323454081714321, 48.88849278791158], [2.323596998065702, 48.88860018187432], [2.323599683871922, 48.88860895919744], [2.323526556546201, 48.888753541100705], [2.32345462699467, 48.88889575368665], [2.323451647122941, 48.888906880418205], [2.323464980192441, 48.88891354062829], [2.32358755688502, 48.889004977079416], [2.323710585134366, 48.88909675049518], [2.323833161314124, 48.889188187571186], [2.323956190429222, 48.8892799607193], [2.324078768846947, 48.88937139663705], [2.324201798827802, 48.8894631695175], [2.32432437673272, 48.889554606060166], [2.324447407591007, 48.88964637777369], [2.324569987722239, 48.8897378140573], [2.324693018070901, 48.88982958639472], [2.324815599076395, 48.88992102151241], [2.324938631654561, 48.89001279358987], [2.325061213511003, 48.890104229340096], [2.325184245591218, 48.89019600114215], [2.325200305039063, 48.89019816998834], [2.325347883869643, 48.8901520324484], [2.325559807169643, 48.89008577859753], [2.325707385374776, 48.89003963971055], [2.32591930639627, 48.88997338520896], [2.326066883952658, 48.889927246773475], [2.326074413409139, 48.88991735159272], [2.326030459634124, 48.88977287110856], [2.325986498258369, 48.88962836446461], [2.325942546346597, 48.889483883018585], [2.325898585447164, 48.889339377203584], [2.325854632659544, 48.88919489567957], [2.325810673611775, 48.88905038980196], [2.325818330325154, 48.88904045577595], [2.325912908994304, 48.88901167827913], [2.32599233078743, 48.888987512577586], [2.326066219950201, 48.88897670486859], [2.326063850225127, 48.88896349300363], [2.326034582549473, 48.88887263470654], [2.325988790777239, 48.88873399654192], [2.325947703921253, 48.888606446556274], [2.325901912614419, 48.88846780832484], [2.32586082619292, 48.88834025737914], [2.325815035339735, 48.88820161998018], [2.325773949341077, 48.888074068973786], [2.3257281589650223, 48.88793543060867], [2.325687074752875, 48.8878078795493], [2.325641283466878, 48.88766924200893], [2.325600199677552, 48.88754169088874], [2.325590582264499, 48.88753444748728], [2.325521542365857, 48.887539104734635], [2.325442331512105, 48.88757977491025], [2.325441999191402, 48.887579952004415], [2.325293375996986, 48.887660843786], [2.325112562268497, 48.887759841786846], [2.324963939412552, 48.88784073315394], [2.32478312444466, 48.88793972974183], [2.324634499188166, 48.88802062157838], [2.3246162399653683, 48.88802008601081], [2.3244724985840293, 48.8879265265208], [2.324344177272157, 48.88784193113189], [2.324200436871429, 48.88774837130012], [2.324072115077003, 48.88766377559825], [2.323943795063085, 48.88757917976001], [2.323800056107037, 48.88748561942523], [2.323671736974128, 48.887401023281704], [2.323527998986993, 48.8873074635044], [2.323399680746766, 48.887222866156385], [2.323255943740315, 48.88712930603731], [2.323254586552855, 48.88712827762796], [2.3232291119526662, 48.88710572146203], [2.323100793319803, 48.88702112466972], [2.323056019696209, 48.886992035450405], [2.323034328562558, 48.88698204177591]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 71, "zemmour_eric": 58.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "17-30", "circ_bv": "03", "num_bureau": 30, "roussel_fabien": 20.0, "nb_emargement": 1050.0, "nb_procuration": 60.0, "nb_vote_blanc": 18.0, "jadot_yannick": 110.0, "le_pen_marine": 47.0, "nb_exprime": 1031.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1308.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1050, "quartier_bv": "68", "geo_point_2d": [48.88855993321933, 2.3244728529070215], "melenchon_jean_luc": 276.0, "poutou_philippe": 3.0, "macron_emmanuel": 393.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.327556354793607, 48.89304537339333], [2.32749793365377, 48.893058703350036], [2.327465192460444, 48.893066174518054], [2.327455204193698, 48.89308395201245], [2.327494494840969, 48.89320001995877], [2.327527770630257, 48.89329836710474], [2.3275287274215373, 48.893310245347855], [2.327533648321551, 48.89331595041148], [2.327544163531067, 48.893347029828135], [2.327584058333919, 48.89346809595007], [2.327627849773671, 48.89359752244925], [2.327667744974665, 48.89371858761643], [2.327711536833234, 48.89384801405541], [2.327751431045312, 48.893969080058625], [2.327795223322599, 48.894098506437395], [2.327835119296559, 48.89421957149349], [2.327878911992573, 48.89434899781209], [2.32791880834157, 48.894470063711836], [2.327962601456318, 48.89459948997025], [2.328002498203473, 48.89472055491521], [2.328046291736857, 48.89484998111343], [2.328086188858962, 48.894971046902086], [2.328129982811193, 48.89510047304011], [2.328169880331464, 48.89522153787396], [2.328213674702345, 48.89535096395177], [2.328243268935832, 48.89544076806509], [2.328253248123047, 48.8954651470985], [2.328316085327402, 48.89545680041765], [2.328495963503924, 48.895473809917334], [2.328679063802784, 48.895490474781816], [2.328858942214334, 48.89550748373583], [2.329042042747801, 48.89552414804484], [2.329221920041978, 48.89554115554622], [2.329405022173921, 48.895557819307356], [2.329584899691319, 48.89557482716231], [2.329768002057854, 48.89559149036798], [2.329773008433678, 48.8955913331267], [2.329993377495176, 48.89555538200192], [2.330186713472099, 48.895525201306455], [2.330194348932574, 48.89552540948787], [2.330362420098091, 48.89556278542168], [2.330531655185245, 48.89559855244235], [2.3306997268290273, 48.89563592790029], [2.330868962374097, 48.895671695341186], [2.331037034507597, 48.89570906942394], [2.3312062705221432, 48.89574483638582], [2.331217492064372, 48.89574396735677], [2.3313429204411, 48.89569394153718], [2.33145597216987, 48.89564454256712], [2.331569023684111, 48.89559514348807], [2.331694449989108, 48.89554511818514], [2.331699581806326, 48.8955414569081], [2.331796716949674, 48.89541383844177], [2.331898099569379, 48.89528574625604], [2.3319952337490513, 48.89515812759892], [2.332096615382417, 48.89503003521523], [2.332193748598324, 48.8949024163673], [2.332295130620754, 48.894774322894015], [2.332392261509252, 48.894646703847656], [2.332493642533829, 48.894518611075696], [2.332514458897983, 48.89449126090777], [2.332508502236811, 48.89446841909765], [2.332486351767583, 48.89446472082524], [2.332430764169555, 48.89445606255393], [2.332350589868705, 48.894447239303595], [2.332336860903125, 48.894451257374605], [2.33224032006576, 48.89454745827253], [2.332119091202762, 48.89467219538408], [2.332022549564884, 48.8947683951878], [2.331901319654272, 48.894893132953], [2.331804777204337, 48.89498933256178], [2.331683546268974, 48.89511406918212], [2.331587002995533, 48.89521026949518], [2.331564096256999, 48.895210107464294], [2.331453257798399, 48.8950943467883], [2.331343633396913, 48.89497978077775], [2.331232797282688, 48.894864019881005], [2.331123172487523, 48.89474945363693], [2.331012337353796, 48.894633692511846], [2.330902713528606, 48.894519126041864], [2.330791879363807, 48.89440336558763], [2.330682257884086, 48.894288798000154], [2.330571424699855, 48.89417303731759], [2.330461802814777, 48.89405847039584], [2.33044457084063, 48.89405509781723], [2.3303010785978913, 48.89409858887966], [2.330154264032668, 48.89414416739972], [2.3300107712903833, 48.89418765901007], [2.32986395621986, 48.89423323717048], [2.329845178442195, 48.89422788723867], [2.329781639597159, 48.89409931251548], [2.329717032537693, 48.89397406735106], [2.3296534943304392, 48.89384549163084], [2.329588887894189, 48.89372024636828], [2.329525350301556, 48.89359167144956], [2.329460744488512, 48.89346642608886], [2.32945182030585, 48.893460722072305], [2.329268814353366, 48.89342382407353], [2.329077685956546, 48.89338475698268], [2.328894680536213, 48.89334785840962], [2.328703552687389, 48.89330879161821], [2.32852054779921, 48.89327189247084], [2.328329420521573, 48.89323282418033], [2.328146416165454, 48.89319592445864], [2.327955289447521, 48.89315685556831], [2.327772285611961, 48.893119956171596], [2.327581159453632, 48.89308088668144], [2.327556354793607, 48.89304537339333]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 58, "zemmour_eric": 88.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "18-43", "circ_bv": "03", "num_bureau": 43, "roussel_fabien": 18.0, "nb_emargement": 1290.0, "nb_procuration": 63.0, "nb_vote_blanc": 13.0, "jadot_yannick": 80.0, "le_pen_marine": 93.0, "nb_exprime": 1269.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1734.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1290, "quartier_bv": "69", "geo_point_2d": [48.894582580509706, 2.329493820825836], "melenchon_jean_luc": 513.0, "poutou_philippe": 12.0, "macron_emmanuel": 345.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345263086613731, 48.8830996029625], [2.345247081128082, 48.88313598417374], [2.345144090044061, 48.88323990417672], [2.345042700713566, 48.883342205957746], [2.344939708813855, 48.88344612576543], [2.34483831866915, 48.88354842825349], [2.344735324601488, 48.88365234695919], [2.344633935017344, 48.88375464926244], [2.344532543682486, 48.883856950563604], [2.344429548383138, 48.88396086987633], [2.344424728914002, 48.88396382116757], [2.344238948077588, 48.884031508955445], [2.344050767999403, 48.88410007004787], [2.343864986179519, 48.88416775814639], [2.343676805116541, 48.884236318642536], [2.3434910223358463, 48.88430400525311], [2.34330284165177, 48.88437256516052], [2.343296489809175, 48.8843832638176], [2.343354677410599, 48.88449917375864], [2.343416866197697, 48.88461357494165], [2.343475054324402, 48.88472948479992], [2.3435372450145913, 48.88484388590391], [2.343595433666586, 48.8849597956794], [2.343657623532676, 48.88507419668946], [2.343715812698631, 48.8851901072814], [2.34377800311556, 48.8853045073057], [2.343836192806817, 48.8854204178149], [2.343898383752027, 48.88553481865194], [2.343956573979823, 48.88565072817905], [2.344018766828175, 48.88576512893708], [2.344019444643474, 48.88576696458221], [2.344023331766989, 48.88578261440389], [2.344027020269919, 48.88578566894532], [2.344051310698676, 48.885904730972214], [2.344074924473412, 48.8860207909143], [2.344099215121273, 48.88613985290603], [2.344122829120724, 48.88625591191456], [2.34413151508226, 48.88626312623751], [2.344327541407893, 48.8863120782708], [2.344526224764498, 48.88636047614966], [2.344722251827542, 48.88640942753239], [2.344920935922425, 48.88645782475204], [2.344929846906121, 48.88646635056628], [2.344927870461474, 48.88659722607588], [2.344925890209399, 48.88672786142863], [2.34492391374488, 48.88685873690699], [2.344921933472832, 48.88698937222861], [2.344919956988444, 48.88712024767574], [2.3449179766965242, 48.88725088296619], [2.344916000192265, 48.88738175838212], [2.344914019880473, 48.88751239364142], [2.34492612817693, 48.887521419877885], [2.345040211611986, 48.88752990588507], [2.345123656664745, 48.88753529420969], [2.345155630073249, 48.887540461240576], [2.345172563497718, 48.887518460091684], [2.345276285362162, 48.887432143343226], [2.345388508917619, 48.8873438342064], [2.345391510208872, 48.88733658945045], [2.345355970703281, 48.887194965209375], [2.345319974655519, 48.88705213873995], [2.345284435538521, 48.886910514441], [2.3452484398722913, 48.88676768881232], [2.345212899791741, 48.88662606354874], [2.345176905881988, 48.88648323786906], [2.34517672084614, 48.88648168551716], [2.345191871179961, 48.886442687197], [2.345153553443617, 48.88643152742378], [2.345154013894502, 48.88639653980491], [2.345155554157367, 48.886279157196306], [2.345156999473999, 48.886169107174474], [2.345158444773214, 48.886059058040864], [2.345159986379739, 48.88594167540363], [2.345172073774121, 48.8859328183795], [2.345378032090859, 48.88591729984715], [2.345585008574154, 48.88590170378776], [2.345790966644766, 48.885886184544674], [2.345997942880711, 48.88587058777103], [2.346203900705189, 48.885855067817204], [2.346410875330144, 48.885839470321905], [2.346616832919761, 48.88582394875805], [2.346823808649689, 48.8858083514552], [2.34702976599314, 48.88579282918064], [2.347236741486965, 48.885777230264296], [2.347248211159833, 48.88576561951895], [2.347198428560014, 48.885660284118906], [2.347141769393232, 48.88555568461347], [2.3470919858457, 48.88545034914156], [2.347035327121142, 48.88534574956581], [2.346985545364607, 48.885240413137716], [2.34692888707099, 48.88513581439087], [2.346931095689711, 48.88512715871032], [2.347079223506403, 48.88500548883451], [2.347224105830207, 48.8848812577698], [2.347226802880626, 48.884874536502934], [2.347201902212678, 48.8847564025238], [2.347176953183674, 48.88463702269203], [2.347152052753555, 48.88451888777768], [2.34712710258913, 48.88439950790234], [2.347102202374394, 48.884281373851394], [2.347077253801527, 48.8841619939473], [2.347052353824715, 48.884043858961185], [2.347027404116435, 48.88392447901348], [2.347002504354998, 48.883806344890786], [2.346977556249532, 48.88368696401507], [2.346952656714841, 48.88356882985647], [2.346927708826154, 48.883449449843866], [2.346941628254585, 48.883418069010865], [2.346935756382048, 48.883412637405684], [2.346734444306284, 48.88337428081331], [2.346534012780533, 48.88333695392166], [2.346332701293344, 48.88329859665114], [2.346132271699012, 48.88326126999113], [2.3459309608003, 48.88322291204251], [2.345730531785214, 48.88318558470741], [2.345529221474885, 48.88314722608066], [2.345328793039155, 48.88310989807044], [2.345275395913546, 48.88309972333759], [2.345263086613731, 48.8830996029625]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 37, "zemmour_eric": 65.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "18-21", "circ_bv": "18", "num_bureau": 21, "roussel_fabien": 18.0, "nb_emargement": 1416.0, "nb_procuration": 152.0, "nb_vote_blanc": 15.0, "jadot_yannick": 164.0, "le_pen_marine": 51.0, "nb_exprime": 1392.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 7, "nb_inscrit": 1740.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1415, "quartier_bv": "70", "geo_point_2d": [48.88484642823342, 2.3454121195655917], "melenchon_jean_luc": 539.0, "poutou_philippe": 7.0, "macron_emmanuel": 439.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.319627116842173, 48.885701685984365], [2.31961205497688, 48.885705116777224], [2.319607824857234, 48.88570772058302], [2.319607402649289, 48.88570799247961], [2.319483290695167, 48.88579129809591], [2.319331660899288, 48.885893015621946], [2.319207546699337, 48.88597632093067], [2.319055915814324, 48.88607803898962], [2.318931802095991, 48.88616134400624], [2.318780168781722, 48.88626306079186], [2.3186560541811723, 48.88634636550862], [2.318504421141378, 48.88644808283494], [2.318380304295065, 48.88653138724408], [2.318375625677554, 48.88654042765498], [2.318388609460539, 48.88654992295026], [2.318514801352089, 48.88662744404072], [2.318681031235424, 48.88672955926749], [2.318807223997625, 48.886807080037094], [2.3189734550278462, 48.88690919484121], [2.319099650024358, 48.88698671529771], [2.3192658822014742, 48.88708882967915], [2.319392076704998, 48.88716634980702], [2.319402333487599, 48.88716874007018], [2.319593961045108, 48.88715980613906], [2.319787676330645, 48.88715077404368], [2.319800061941993, 48.887154832931294], [2.319912855725959, 48.887268915047486], [2.320024456132052, 48.887381789661156], [2.320137250911082, 48.8874958706431], [2.320248852289995, 48.8876087450243], [2.320254103078359, 48.8876118514377], [2.320339599147859, 48.8876404785725], [2.320434447958037, 48.8876722362305], [2.320446672075199, 48.887672276829534], [2.320622132218568, 48.887614983406166], [2.320796029300396, 48.88755819887195], [2.320971488674984, 48.88750090493069], [2.321145384994769, 48.88744411988318], [2.321320843600573, 48.8873868254241], [2.321494737794752, 48.88733003985556], [2.321670195631774, 48.8872727448786], [2.321844090427671, 48.88721595880457], [2.32201798346903, 48.887159173366584], [2.3221934401663002, 48.8871018767147], [2.322367333809274, 48.88704509077118], [2.322542789737748, 48.886987793601435], [2.322716682618779, 48.88693100714467], [2.322892137778457, 48.88687370945704], [2.3229115664201982, 48.88686388083773], [2.322911905986113, 48.88686115419274], [2.322839506386089, 48.88679891496439], [2.322715536155522, 48.88669234112395], [2.322601886196185, 48.886594639858906], [2.322477915574612, 48.886488065744935], [2.3223642678705723, 48.88639036424391], [2.322240298233332, 48.8862837889648], [2.322126651409231, 48.88618608811936], [2.322002682744615, 48.88607951257445], [2.321889035448518, 48.885981811477585], [2.321765069120143, 48.88587523567456], [2.3216514227273892, 48.885777533434734], [2.321638371144195, 48.88577185126538], [2.321624278295635, 48.88577575365378], [2.321473529569799, 48.88586816090064], [2.321322194702318, 48.885960926161296], [2.321171444904366, 48.886053333012235], [2.321020108960604, 48.88614609787547], [2.320869358102258, 48.88623850343123], [2.32071802108211, 48.886331267897], [2.3206996814337, 48.886331404869665], [2.320566075529016, 48.88625313173486], [2.320435161858974, 48.88617643585981], [2.320301556737763, 48.886098163318024], [2.320170643846904, 48.88602146714299], [2.3200370395208942, 48.885943194295024], [2.319906127409215, 48.88586649781993], [2.319775214319641, 48.885789801188636], [2.319641611194029, 48.88571152698366], [2.319627116842173, 48.885701685984365]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 83, "zemmour_eric": 72.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-2", "circ_bv": "03", "num_bureau": 2, "roussel_fabien": 16.0, "nb_emargement": 1189.0, "nb_procuration": 103.0, "nb_vote_blanc": 14.0, "jadot_yannick": 114.0, "le_pen_marine": 41.0, "nb_exprime": 1171.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 4, "nb_inscrit": 1439.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "67", "geo_point_2d": [48.88666854776881, 2.320623038749283], "melenchon_jean_luc": 195.0, "poutou_philippe": 8.0, "macron_emmanuel": 580.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.293736811811899, 48.850345314662405], [2.29374823857545, 48.85036080796905], [2.293870724115684, 48.85044765920693], [2.293991465284157, 48.850533233715794], [2.294113950272456, 48.85062008468321], [2.294234692239857, 48.85070565893329], [2.294357178038713, 48.850792509638275], [2.294477920792871, 48.850878084529015], [2.294600407414566, 48.850964934072216], [2.294721150967669, 48.85105050870421], [2.294726214489963, 48.85105276986693], [2.294907232653566, 48.851098933424744], [2.295109854420044, 48.85115031886227], [2.295112981362483, 48.851154902441316], [2.295138718196821, 48.8511600104419], [2.295143779180587, 48.85116225987994], [2.295272305574824, 48.85125287932962], [2.295397369500252, 48.851340981614996], [2.295525896776188, 48.85143160077772], [2.295650961571551, 48.85151970188461], [2.295776025414824, 48.851607803745075], [2.295904554007353, 48.85169842247932], [2.296029620071135, 48.8517865240686], [2.29615814954548, 48.85187714251584], [2.296283216479, 48.8519652429266], [2.296411746835266, 48.852055861086896], [2.296414434921527, 48.852058642426684], [2.296420467822785, 48.85208460465987], [2.296436760348183, 48.85208733019294], [2.296506863965215, 48.85220199711233], [2.296572412103952, 48.85230827404628], [2.296595335203594, 48.85231077232709], [2.296742790980386, 48.85219844024266], [2.2968572352865, 48.85211129841869], [2.296971679221981, 48.85202415557913], [2.297119134727041, 48.85191182390926], [2.297233576423727, 48.85182468079559], [2.297381030799663, 48.85171234878281], [2.297473140315158, 48.851642210701094], [2.297490419498612, 48.851637551840156], [2.297494082811701, 48.85162602196243], [2.29751641410307, 48.85160901666017], [2.297542024528604, 48.85159088212194], [2.297538195137615, 48.85157672169176], [2.297429454344691, 48.85154050811718], [2.29728519828448, 48.85149353276333], [2.297285066684903, 48.851493488821106], [2.297114936564193, 48.851438338096855], [2.296970681070449, 48.85139136235948], [2.2968005516158962, 48.85133621118317], [2.296656296700315, 48.851289234163154], [2.296652231518483, 48.85128721098703], [2.29651269858653, 48.85118595363696], [2.29636880016679, 48.85108123757787], [2.296229268337207, 48.850979979878545], [2.296085371067844, 48.85087526255989], [2.2959458403283692, 48.85077400541055], [2.295801944197434, 48.850669287731705], [2.295804063621051, 48.85065595458093], [2.295937072853045, 48.85059260208119], [2.296127025471227, 48.85050211613845], [2.2962600339057833, 48.85043876417019], [2.296449984039822, 48.85034827769425], [2.296582991701134, 48.85028492445891], [2.29659421860046, 48.85028348403214], [2.296783648079998, 48.85031420003679], [2.296973257504953, 48.85034512994544], [2.297162688794687, 48.850375845356304], [2.297352298668915, 48.85040677466258], [2.297541729043556, 48.85043748946364], [2.297731339379168, 48.850468417268225], [2.2979207701890783, 48.85049913236678], [2.298110380973939, 48.85053005956901], [2.298299813594136, 48.85056077407377], [2.298489424828243, 48.850591700673554], [2.298503251724134, 48.85058865556251], [2.298623865451375, 48.85049109935252], [2.298739123551527, 48.8503981613236], [2.298854381240462, 48.85030522317589], [2.298974993654344, 48.85020766658706], [2.299090250501389, 48.85011472819623], [2.299210860670121, 48.850017171344945], [2.299210251176795, 48.85000534026995], [2.299082103208339, 48.84991498260657], [2.29895421676633, 48.84982446444327], [2.29882606968671, 48.849734106490985], [2.298698184133317, 48.84964358803929], [2.298570037942325, 48.84955322979811], [2.298442151914972, 48.84946271105011], [2.298314006612705, 48.84937235252], [2.298186122836623, 48.849281833491595], [2.298185494241042, 48.84928135494102], [2.298179766356614, 48.84926933284176], [2.298165643168033, 48.84926607074951], [2.298047726315751, 48.849169837919334], [2.297938121213912, 48.84908008237879], [2.297828516489628, 48.848990326730586], [2.297710599521177, 48.848894093536295], [2.29769917671274, 48.84887824356897], [2.29767256945676, 48.8488843973108], [2.297604668782843, 48.84890640452418], [2.297435667700079, 48.84896117092762], [2.2972674175976042, 48.84901570047349], [2.297098417156394, 48.84907046730253], [2.296930166348256, 48.84912499636879], [2.296761165198173, 48.849179762716034], [2.296592913696308, 48.84923429040344], [2.296423911837456, 48.849289056268915], [2.296255659617694, 48.84934358437599], [2.29608665704987, 48.84939834975975], [2.29591840412445, 48.84945287738721], [2.295749400859911, 48.8495076413899], [2.295581147228634, 48.84956216853774], [2.295412141880507, 48.84961693294993], [2.295243887543472, 48.84967145961813], [2.295074882861213, 48.84972622265733], [2.294945235139952, 48.84976823779367], [2.294940205412542, 48.84977486883096], [2.294951055375455, 48.849788592282756], [2.2949932345653, 48.84983963501118], [2.295043584488248, 48.84990118994341], [2.295037675121777, 48.84991351056231], [2.294876415103951, 48.8499665831783], [2.294697658474113, 48.85002567529349], [2.294536397762804, 48.8500787474459], [2.294357640362648, 48.850137839047086], [2.294196378945878, 48.85019091163518], [2.294017620787485, 48.85025000182316], [2.29385635867733, 48.850303073947615], [2.293738728411743, 48.85034195696613], [2.293736811811899, 48.850345314662405]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 156, "zemmour_eric": 127.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-19", "circ_bv": "12", "num_bureau": 19, "roussel_fabien": 13.0, "nb_emargement": 1171.0, "nb_procuration": 83.0, "nb_vote_blanc": 16.0, "jadot_yannick": 78.0, "le_pen_marine": 78.0, "nb_exprime": 1151.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1417.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1171, "quartier_bv": "59", "geo_point_2d": [48.850333058813625, 2.2965241748497673], "melenchon_jean_luc": 155.0, "poutou_philippe": 4.0, "macron_emmanuel": 494.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.300042578670279, 48.88371384153399], [2.300057563682489, 48.88370938660298], [2.300127429831778, 48.88358917992446], [2.300198020682605, 48.88346910693399], [2.300267886173338, 48.88334890104651], [2.3003384750109612, 48.88322882793906], [2.300408341230768, 48.88310862105206], [2.3004789294068733, 48.882988548734815], [2.300548793616475, 48.88286834173166], [2.300619382518675, 48.882748268414076], [2.30068924608173, 48.8826280613027], [2.300759834322328, 48.88250798877536], [2.300829697238946, 48.882387781555785], [2.300900283478474, 48.88226770801218], [2.300908615403261, 48.88226575834154], [2.300913834700236, 48.88224457349898], [2.300967342782576, 48.88215355033558], [2.30103348770785, 48.88204521856392], [2.300993042449004, 48.88198868852557], [2.300996003153951, 48.88198622634388], [2.301005597487539, 48.88196407776693], [2.300965531575982, 48.88190804276526], [2.300917048884703, 48.88184027892821], [2.3009284003503723, 48.88182314901488], [2.300831009393713, 48.88179064758674], [2.300742083614072, 48.88166635355625], [2.300655144535699, 48.88154483650623], [2.30056621959562, 48.881420542317336], [2.300479281337847, 48.8812990251125], [2.300390357225137, 48.881174731664515], [2.300303418436742, 48.88105321339759], [2.300214495163369, 48.88092891979121], [2.300127558559155, 48.880807401377425], [2.300038636125308, 48.88068310761269], [2.299951700341665, 48.88056158904406], [2.299864764963823, 48.88044007039888], [2.299775843784351, 48.880315776397524], [2.299776028048348, 48.88030785251781], [2.299862028375156, 48.8801966425499], [2.29994780906624, 48.88008571721603], [2.300033810022886, 48.87997450711027], [2.3001195899942, 48.879863580731644], [2.300205588853855, 48.87975237047208], [2.300291368081341, 48.87964144484732], [2.300377366207384, 48.87953023444192], [2.300463144715215, 48.87941930777242], [2.300549142107654, 48.87930809722124], [2.30063491987168, 48.87919717130554], [2.300720917893866, 48.87908596061647], [2.300806694926274, 48.87897503455536], [2.300892690851427, 48.878863823712514], [2.300978467164198, 48.87875289660669], [2.30101524815268, 48.878686652076674], [2.301000684795902, 48.87868195164026], [2.300995978021257, 48.87868072623937], [2.30095939703278, 48.878697428292035], [2.300914747683084, 48.87873752356745], [2.3007640311475193, 48.87883593657306], [2.300614060983137, 48.87893386180596], [2.300463344674553, 48.87903227442346], [2.300313372003916, 48.879130200153526], [2.300162654571052, 48.87922861147567], [2.300012682133114, 48.87932653681956], [2.299861962200537, 48.879424947737654], [2.299711988631846, 48.87952287268741], [2.299561268914151, 48.87962128411668], [2.299411292851237, 48.879719208664305], [2.299407559699012, 48.87972750299157], [2.299445432503277, 48.87984282991981], [2.299495186665982, 48.87996713607971], [2.299533059838551, 48.880082462955194], [2.29958281443934, 48.880206769051625], [2.299620687980218, 48.88032209587427], [2.299670444382576, 48.88044640191523], [2.299649490873129, 48.88046746501848], [2.299650467617809, 48.8804776737091], [2.299647466915855, 48.88048595073889], [2.299521121718716, 48.88057952680707], [2.299391832744476, 48.880676705339724], [2.299265485261855, 48.88077028111393], [2.299136195337049, 48.88086745935369], [2.299009846932317, 48.88096103484193], [2.298880556056937, 48.88105821278878], [2.298754206730086, 48.88115178799098], [2.298624914904122, 48.88124896564493], [2.298498564655147, 48.88134254056115], [2.298369271878593, 48.881439717922206], [2.29824292207089, 48.88153329256041], [2.298113626980333, 48.88163046962051], [2.297987276250493, 48.88172404397268], [2.297857980209328, 48.88182122073987], [2.297731628557345, 48.881914794806065], [2.2976023315655603, 48.88201197128034], [2.297475978991426, 48.88210554506051], [2.29734668241254, 48.882202721249826], [2.297220327552723, 48.88229629473598], [2.297148753731379, 48.88235008652356], [2.2971464713416783, 48.88235440882127], [2.297183413915058, 48.88237586170314], [2.297342080626516, 48.88245100079527], [2.297499719222073, 48.882524350254585], [2.29765735962502, 48.88259769950944], [2.297816026344876, 48.882672837051075], [2.297973667642909, 48.88274618587954], [2.298132335259417, 48.88282132389113], [2.29828997745244, 48.88289467229324], [2.298448645989849, 48.882969808976235], [2.298606289077759, 48.88304315695199], [2.298764958511839, 48.88311829410487], [2.298922601131295, 48.883191641646256], [2.299081272849818, 48.88326677747857], [2.299238916364266, 48.88334012459355], [2.29939758897948, 48.88341526089577], [2.299555233401018, 48.88348860668511], [2.299713906924926, 48.88356374255796], [2.299871552229367, 48.88363708882019], [2.300030225298614, 48.88371222425572], [2.300042578670279, 48.88371384153399]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 149, "zemmour_eric": 229.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-42", "circ_bv": "04", "num_bureau": 42, "roussel_fabien": 3.0, "nb_emargement": 1282.0, "nb_procuration": 83.0, "nb_vote_blanc": 9.0, "jadot_yannick": 61.0, "le_pen_marine": 56.0, "nb_exprime": 1271.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1563.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1282, "quartier_bv": "66", "geo_point_2d": [48.881861363925374, 2.299434544875729], "melenchon_jean_luc": 98.0, "poutou_philippe": 0.0, "macron_emmanuel": 642.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3832776231006942, 48.8448640911662], [2.383277064044487, 48.8448637780058], [2.383254382317696, 48.84485107456463], [2.383170562093347, 48.84490472709977], [2.382985638262095, 48.8449592638703], [2.382804313772514, 48.84501164157833], [2.382619389189405, 48.845066176878206], [2.382438063959769, 48.84511855402614], [2.382253138603298, 48.845173089653976], [2.382071812644273, 48.845225465342466], [2.381890486310127, 48.84527784165298], [2.381705559826132, 48.8453323755273], [2.381524232751941, 48.8453847512777], [2.381339305494678, 48.845439285479955], [2.381326614971066, 48.84543873689872], [2.381182104168693, 48.845380146417035], [2.381043587617205, 48.84532238359952], [2.381028875865716, 48.84532244868347], [2.380914705609778, 48.84537149168069], [2.380797705444998, 48.845419919150196], [2.380683534757894, 48.845468961922535], [2.380566534148798, 48.84551739006104], [2.380551656185683, 48.845517218594274], [2.380363292499885, 48.84543305525766], [2.380170752081977, 48.845346215071444], [2.379982389618664, 48.845262052021475], [2.379789851829873, 48.845175211215974], [2.379774226560726, 48.8451753262704], [2.379604505308373, 48.84525560071433], [2.3794385382355863, 48.84533593485898], [2.379268814569954, 48.84541620970736], [2.379102846468255, 48.84549654337476], [2.378933121773231, 48.845576816836044], [2.378767154005196, 48.84565715003323], [2.378597428259245, 48.845737423906016], [2.378431458099813, 48.845817756618885], [2.378261731324473, 48.84589802910454], [2.378095760136119, 48.845978361340144], [2.378068504198473, 48.84598877001441], [2.378063692841258, 48.84599971806174], [2.377897721023696, 48.84608005001525], [2.377736998833358, 48.846160852423324], [2.377571025988321, 48.846241184811326], [2.377410302794526, 48.84632198676882], [2.377244328943487, 48.84640231779265], [2.377083604735483, 48.84648312019892], [2.3769176298677, 48.846563450757905], [2.376756904656225, 48.84664425271357], [2.376755382896638, 48.84665766948745], [2.376874707527361, 48.84673882035665], [2.377029379202619, 48.84684502237529], [2.377148704699718, 48.84692617205827], [2.37730337747864, 48.84703237460413], [2.377422703831367, 48.847113524000186], [2.377577377735352, 48.8472197252747], [2.377696704932974, 48.84730087528309], [2.377722712770191, 48.84730923607263], [2.377749852659921, 48.84730861008026], [2.377750170008332, 48.847308394985916], [2.377899299412111, 48.847203724582876], [2.378050093020943, 48.847098287393386], [2.3781992212211, 48.846993616596734], [2.37835001361519, 48.84688817900937], [2.378499140611735, 48.84678350781916], [2.378649931780372, 48.846678070733205], [2.378799057573318, 48.84657339914942], [2.3789498475379602, 48.84646796076623], [2.378961921639298, 48.846465254323455], [2.379147862878639, 48.84648500066809], [2.379320968173114, 48.84650472959527], [2.37949407223615, 48.84652445826457], [2.379680013888451, 48.84654420378109], [2.379690356028053, 48.84654951054738], [2.379771936351617, 48.846673941306335], [2.379850530609452, 48.84679809929946], [2.379932113067207, 48.84692252992857], [2.380010708092346, 48.84704668688946], [2.380092291321596, 48.84717111738155], [2.380170887103244, 48.84729527420952], [2.380252469741576, 48.84741970455755], [2.380331067642268, 48.847543861259666], [2.380412651052211, 48.847668291470654], [2.380491249709438, 48.84779244803984], [2.38051974580266, 48.84782654716779], [2.380561262252201, 48.847814467933475], [2.380647645056226, 48.84770679999967], [2.380729469935765, 48.84760572946042], [2.380815852046273, 48.84749806138502], [2.380897676261265, 48.84739699161108], [2.380984057678266, 48.847289323394016], [2.381065879887366, 48.847188252579784], [2.381152260610868, 48.84708058422114], [2.381234083528541, 48.84697951327993], [2.381237546166643, 48.84697675217753], [2.381353303935204, 48.846915123448476], [2.381466227218521, 48.84686071527317], [2.3815819844483412, 48.84679908721578], [2.381694907241384, 48.84674467881892], [2.381698695902847, 48.84674188521217], [2.381798036547261, 48.84662741494632], [2.381894226496634, 48.84651545370396], [2.38199356627995, 48.846400983252494], [2.382089756743165, 48.84628902273648], [2.382189095665495, 48.846174552099434], [2.382285283928133, 48.84606259139647], [2.382381471788247, 48.84595062970556], [2.382480809424715, 48.84583615879157], [2.382576996436106, 48.84572419782003], [2.382676333211513, 48.84560972672043], [2.3827725193957052, 48.84549776466966], [2.38287185531006, 48.845383293384465], [2.382968042008125, 48.84527133206009], [2.383067377061437, 48.845156860589256], [2.383163561559098, 48.84504489907792], [2.38326289575138, 48.84493042742153], [2.3832776231006942, 48.8448640911662]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 37, "zemmour_eric": 66.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "12-60", "circ_bv": "07", "num_bureau": 60, "roussel_fabien": 25.0, "nb_emargement": 1107.0, "nb_procuration": 77.0, "nb_vote_blanc": 7.0, "jadot_yannick": 100.0, "le_pen_marine": 61.0, "nb_exprime": 1093.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1426.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1107, "quartier_bv": "48", "geo_point_2d": [48.8462154391667, 2.3801149392677563], "melenchon_jean_luc": 421.0, "poutou_philippe": 10.0, "macron_emmanuel": 329.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.348200138179429, 48.85853067900081], [2.3482081029715163, 48.85853365876092], [2.348237131802848, 48.85858595488459], [2.348311224740725, 48.85871488180011], [2.348381398069803, 48.85884130330567], [2.348455493090613, 48.85897023010963], [2.34852566711366, 48.85909665150149], [2.348595840114322, 48.85922307283039], [2.348669936208696, 48.859351999457196], [2.348740111277611, 48.85947841978056], [2.34881420809213, 48.85960734628835], [2.3488224355068192, 48.85961790175027], [2.3488938060327103, 48.85960051535636], [2.349043309691884, 48.85955203717349], [2.349189133040444, 48.859504752010125], [2.349334957476023, 48.85945746757371], [2.349484458951419, 48.85940898882608], [2.349491191826751, 48.85940410598579], [2.349519186986215, 48.85935538393093], [2.34954718771336, 48.85930664840771], [2.349553953414296, 48.859301754949804], [2.349722510751819, 48.8592474563623], [2.349890078316564, 48.85919347592528], [2.35005863495349, 48.859139176859095], [2.350226201821748, 48.8590851959462], [2.350231026530646, 48.859082596942635], [2.350255076350113, 48.85906196064953], [2.350280320661753, 48.85904029838362], [2.350288534929117, 48.85903695063579], [2.350420981010243, 48.85902002621591], [2.350551235904152, 48.85900338204642], [2.35055650327261, 48.85900189972593], [2.350739142723757, 48.85891683923379], [2.350921530700679, 48.8588318949104], [2.351104168959958, 48.85874683384814], [2.351286554383732, 48.85866188894804], [2.351290669063487, 48.85866058920977], [2.351444162053951, 48.85863165002226], [2.351596974508595, 48.85860283915499], [2.351599919110869, 48.8586020277084], [2.351778676437393, 48.8585355871998], [2.3519574442557483, 48.85846914288206], [2.352136200670349, 48.85840270183142], [2.352314967588007, 48.858336256072356], [2.352493724453688, 48.85826981448707], [2.352672489085484, 48.85820336907792], [2.352851245039338, 48.85813692695062], [2.3530300087704292, 48.8580704801001], [2.353049100940015, 48.8580643580203], [2.353049025683541, 48.85805417337509], [2.35304845728152, 48.85805340855274], [2.352945359010401, 48.85792965726555], [2.35284208124037, 48.85780569265574], [2.352738983949577, 48.85768194116314], [2.352635708524556, 48.85755797635489], [2.352532610840013, 48.85743422554881], [2.352429336396993, 48.85731026053481], [2.352435545873806, 48.857297768882376], [2.352591799686777, 48.8572499576896], [2.352797001420117, 48.85718716794499], [2.3529532545809, 48.85713935537621], [2.353158455431802, 48.85707656590484], [2.353314707929218, 48.8570287528593], [2.353519907908956, 48.85696596276185], [2.353676161105877, 48.85691814924698], [2.353702764167097, 48.85689552676734], [2.353708418820787, 48.85687664216206], [2.353641444875853, 48.856756929366576], [2.353576074315786, 48.856637744106166], [2.353509099619235, 48.85651803120349], [2.353443729672775, 48.85639884494589], [2.3533767569501203, 48.85627913195071], [2.353311387595044, 48.85615994649446], [2.353244414120664, 48.85604023339213], [2.353179045379186, 48.85592104693865], [2.353112073878776, 48.855801333743834], [2.353046705728556, 48.855682148091745], [2.352979733476419, 48.855562434789725], [2.352914365939786, 48.855443248140396], [2.352847395661591, 48.855323534745956], [2.352782028716095, 48.85520434889799], [2.352715057686269, 48.855084635396395], [2.35264969135435, 48.8549654485512], [2.352582720935619, 48.854845734949826], [2.352517355194923, 48.854726548906], [2.352487307873652, 48.85468902989994], [2.352445765513761, 48.85469213089681], [2.352369298681432, 48.85472455961481], [2.352192631142418, 48.85480062475358], [2.352020431623431, 48.85487365062984], [2.351843763069645, 48.85494971524334], [2.35167156119511, 48.855022741499695], [2.351494891626443, 48.85509880558791], [2.351322690144272, 48.85517183044046], [2.351146019560831, 48.855247894003405], [2.350973817085815, 48.85532091924342], [2.350797145487594, 48.85539698228101], [2.350624940679298, 48.8554700061025], [2.350448268066398, 48.85554606861482], [2.3502760636279723, 48.85561909283112], [2.3500993900002882, 48.85569515481809], [2.349927184580205, 48.85576817852251], [2.349925423884975, 48.85576881918878], [2.34973482121733, 48.85582656789977], [2.349564082952179, 48.85587795434671], [2.349393342976291, 48.8559293414395], [2.349202739131646, 48.85598708929462], [2.349031999815862, 48.85603847497495], [2.34884139516039, 48.85609622314811], [2.34867065376769, 48.8561476083004], [2.348480049686618, 48.85620535500046], [2.348309307568809, 48.85625674053139], [2.348118702687951, 48.85631448665022], [2.347947959867428, 48.8563658707612], [2.347757352824138, 48.85642361629136], [2.347586610641152, 48.85647500078841], [2.347396002798181, 48.85653274573728], [2.347238879599986, 48.856578478738115], [2.347048270993002, 48.85663622312774], [2.346891148529151, 48.856681956574384], [2.34680498857657, 48.85670701797934], [2.34680123388875, 48.85672863678201], [2.346842451024499, 48.85679219140408], [2.346924874298133, 48.8569265088345], [2.347007180896932, 48.85705342209308], [2.347016745825538, 48.857062900388755], [2.347021083323208, 48.857066549342754], [2.347161866777979, 48.857136423638714], [2.347286940740113, 48.857205034824254], [2.347427726299741, 48.85727490790685], [2.347552799581508, 48.85734351879851], [2.347556885541114, 48.857347341733835], [2.347627053835207, 48.85747376383008], [2.347686482318393, 48.85758669012444], [2.3477566526121603, 48.85771311212488], [2.347816080275078, 48.857826039222395], [2.347875509569753, 48.85793896538704], [2.3479456807966033, 48.85806538723651], [2.348005109282269, 48.85817831330507], [2.348075281145928, 48.85830473505125], [2.348134711548397, 48.85841766103845], [2.348175855273241, 48.858491786547944], [2.348200138179429, 48.85853067900081]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 48, "zemmour_eric": 75.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "4-11", "circ_bv": "07", "num_bureau": 11, "roussel_fabien": 11.0, "nb_emargement": 824.0, "nb_procuration": 65.0, "nb_vote_blanc": 12.0, "jadot_yannick": 69.0, "le_pen_marine": 42.0, "nb_exprime": 807.0, "nb_vote_nul": 5.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1041.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 824, "quartier_bv": "13", "geo_point_2d": [48.85715337364875, 2.3504532840243564], "melenchon_jean_luc": 198.0, "poutou_philippe": 8.0, "macron_emmanuel": 326.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358131932621784, 48.863399752593686], [2.358113664136512, 48.86336966954775], [2.358013520454923, 48.86325089098312], [2.357886594011077, 48.863100343143934], [2.357786451364893, 48.86298156436045], [2.357697814480037, 48.862876430945114], [2.35759767405768, 48.86275765198696], [2.357509037934725, 48.862652518410556], [2.357420400795392, 48.862547385650494], [2.3573202616378772, 48.862428606424984], [2.35730264017851, 48.86242481098478], [2.357122690322205, 48.862479578729825], [2.356939906186436, 48.86253280388479], [2.356759954212782, 48.86258757107178], [2.35657717069057, 48.86264079567484], [2.356397217962486, 48.86269556231108], [2.356214432327792, 48.862748786347666], [2.356034480208508, 48.86280355244045], [2.355851693824357, 48.8628567759178], [2.355671739587724, 48.86291154145248], [2.355488953817148, 48.86296476437798], [2.355466296593542, 48.86295725782974], [2.355454667685441, 48.86295706389599], [2.355329503284978, 48.86291559540971], [2.355183234722711, 48.862867043153074], [2.355035413653587, 48.86281806774876], [2.354889146991099, 48.86276951603502], [2.354741326475154, 48.862720540263204], [2.354595059008663, 48.862671987279114], [2.354587756993487, 48.86266241033514], [2.354624894465255, 48.86252177930979], [2.354661948773134, 48.86238146347819], [2.354699085844368, 48.862240832394114], [2.354736139741374, 48.86210051740327], [2.354773276412181, 48.861959886260564], [2.354810328557697, 48.861819570304554], [2.354804712694084, 48.861810657180776], [2.354650241364986, 48.861739382952734], [2.354494623846413, 48.86166758071486], [2.354340153354601, 48.86159630697669], [2.3541845353389013, 48.8615245034197], [2.354030065695512, 48.86145322927206], [2.353874449897528, 48.86138142530995], [2.353719981102559, 48.86131015075285], [2.353564366159294, 48.861238346378286], [2.3535409050217853, 48.86120848992282], [2.353522445583153, 48.861211755563296], [2.353463633361138, 48.86123245558953], [2.353386687937771, 48.861260441252554], [2.353340058847075, 48.861270906820266], [2.353334003367725, 48.861274375257935], [2.353358079956737, 48.861310865965415], [2.353360949703271, 48.861316425048145], [2.353428618398423, 48.86144746401438], [2.353494036585969, 48.861574144223205], [2.353561705950596, 48.86170518308371], [2.353627124774297, 48.861831864089595], [2.353627812029943, 48.86183546788672], [2.353613144551209, 48.86195880242138], [2.353598428098707, 48.86208256296667], [2.353583760480745, 48.86220589747024], [2.353569043888642, 48.8623296579843], [2.353554376131654, 48.86245299245676], [2.353539659399949, 48.862576752939624], [2.353524991503831, 48.862700087381], [2.353510274632522, 48.86282384783264], [2.353513231676974, 48.86283017901403], [2.353636662699584, 48.862931683981365], [2.353764360807943, 48.86303669681606], [2.353887792809027, 48.863138201505464], [2.3540154905557, 48.86324321494458], [2.354009510487843, 48.863257296096414], [2.353812299523808, 48.86330452180141], [2.3536177582848232, 48.86335110777636], [2.353420546610556, 48.863398332831814], [2.353226004671062, 48.863444918166024], [2.353028792286569, 48.86349214257194], [2.352834248283423, 48.86353872725806], [2.352825325921578, 48.86354800792038], [2.352837980355126, 48.863638482150655], [2.3528493439789813, 48.863719737397794], [2.352851638806192, 48.86372396054166], [2.3528872144905852, 48.863758553764775], [2.352921381428836, 48.863791775951775], [2.352922375995172, 48.86379291450424], [2.352995154253564, 48.863892357363206], [2.3530671110982, 48.863990680539466], [2.353067776498854, 48.863991762451064], [2.353129845355258, 48.8641153459927], [2.353192072833463, 48.86423924241668], [2.353254142279475, 48.86436282586622], [2.353316370348891, 48.86448672219793], [2.353378440384721, 48.8646103055554], [2.353440669045358, 48.86473420179474], [2.35345763431215, 48.864760156793125], [2.353478501383587, 48.86475619818702], [2.353552566428629, 48.86473500050832], [2.353714754784741, 48.864688400949085], [2.353892214294817, 48.86463761082743], [2.354054402055068, 48.86459100990455], [2.354231859539189, 48.864540219267475], [2.354394046692418, 48.86449361788018], [2.354394205385349, 48.86449357197032], [2.354604048008828, 48.864431414185525], [2.354766234479253, 48.8643848131886], [2.354945093560019, 48.864333444474454], [2.355107279431505, 48.86428684211198], [2.355107403913496, 48.86428680680894], [2.355270940342378, 48.86424108656409], [2.35544979706908, 48.864189717081736], [2.3556133328927, 48.86414399636497], [2.355841435057414, 48.86407991389138], [2.356004970192645, 48.864034192634975], [2.356138294001789, 48.86399719415208], [2.356301828616828, 48.863951472486605], [2.356435152003554, 48.86391447367021], [2.356598686098397, 48.86386875159574], [2.356742508591159, 48.86383168926684], [2.356743352589445, 48.86383145008071], [2.356913965755954, 48.86377803305605], [2.357091995045264, 48.863722758008876], [2.357262607498339, 48.86366934048196], [2.357440636046308, 48.863614064910735], [2.357611247785949, 48.863560646881574], [2.357802212112528, 48.86350311090107], [2.357972821755022, 48.863449692343806], [2.358118576271132, 48.86340577672014], [2.358131932621784, 48.863399752593686]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 71, "zemmour_eric": 80.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "3-10", "circ_bv": "05", "num_bureau": 10, "roussel_fabien": 16.0, "nb_emargement": 1329.0, "nb_procuration": 90.0, "nb_vote_blanc": 11.0, "jadot_yannick": 135.0, "le_pen_marine": 48.0, "nb_exprime": 1315.0, "nb_vote_nul": 3.0, "arr_bv": "03", "arthaud_nathalie": 0, "nb_inscrit": 1723.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1329, "quartier_bv": "12", "geo_point_2d": [48.8632489863126, 2.3550633766667857], "melenchon_jean_luc": 389.0, "poutou_philippe": 9.0, "macron_emmanuel": 508.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328669006883791, 48.88075248824939], [2.328674716939923, 48.880740261449965], [2.328726829195336, 48.8806306011052], [2.328785613833674, 48.88051210530875], [2.328837725627179, 48.88040244489297], [2.328896509755666, 48.88028394901752], [2.328948619735483, 48.88017428762384], [2.3290074047176033, 48.88005579167704], [2.329059514224042, 48.87994613111163], [2.3291182986963213, 48.87982763508584], [2.329181328517325, 48.87970409235992], [2.32924011243915, 48.87958559624827], [2.329303141666688, 48.879462054330375], [2.329361925038169, 48.87934355813287], [2.329424953695416, 48.879220015224405], [2.32948373651666, 48.87910151894104], [2.32950013936763, 48.8790956140447], [2.329634092261345, 48.879118677609476], [2.329772214215801, 48.87913385021595], [2.329786310063072, 48.87912942076433], [2.32988583613484, 48.879013828789574], [2.329988498828325, 48.878898479111015], [2.330088023998455, 48.8787828878432], [2.330190685800472, 48.87866753706785], [2.33029020871711, 48.87855194560009], [2.3303928696161, 48.87843659462716], [2.330492393006129, 48.878321002974744], [2.330595053002102, 48.878205651804265], [2.330694574138672, 48.87809005995191], [2.330797233231639, 48.877974708583864], [2.33080798521599, 48.87797029269317], [2.331041583600723, 48.87795888885889], [2.331276784914203, 48.87794773094789], [2.331510383094988, 48.87793632619864], [2.331745584217674, 48.87792516646715], [2.331757873214024, 48.87791827150851], [2.331802966830232, 48.877792851825], [2.3318464864636272, 48.87766862483942], [2.331891581025142, 48.87754320420249], [2.331935100238676, 48.877418977156566], [2.33198019437065, 48.8772935564578], [2.332023711800828, 48.87716932934393], [2.332068805491739, 48.877043909482666], [2.332112323876899, 48.87691968141676], [2.332157417138282, 48.876794261493735], [2.332200935091965, 48.87667003426679], [2.332228334026457, 48.876638327203814], [2.332209938094903, 48.87662377044451], [2.3321470476779043, 48.87660066188181], [2.331969145055851, 48.87652848762932], [2.331800316189641, 48.876466449817656], [2.331749996700137, 48.87644603547466], [2.331736831994473, 48.87643300883442], [2.331712227578203, 48.87642957271259], [2.331584645462422, 48.876377812238], [2.331431126162588, 48.87631876333392], [2.331253225495493, 48.87624658799908], [2.331099705594915, 48.87618753865538], [2.331097109948032, 48.87618676780894], [2.330945269900437, 48.87615416726604], [2.330729729812241, 48.87610724819714], [2.33057789022642, 48.87607464718591], [2.33036235078669, 48.87602772835142], [2.330210511662647, 48.875995126871864], [2.330208906397902, 48.875994847189524], [2.330021061312822, 48.87597012005279], [2.329817540951157, 48.875945178956], [2.329629696231013, 48.87592045120409], [2.329426176239162, 48.87589551034006], [2.329238331883959, 48.87587078197292], [2.329034813648549, 48.8758458395508], [2.328846969658297, 48.875821110568445], [2.328643450441139, 48.8757961674722], [2.328455606815848, 48.875771437874604], [2.328252087980107, 48.87574649411193], [2.328064244719784, 48.875721763899094], [2.32786072625407, 48.87569682036919], [2.32767288337033, 48.875672088641885], [2.327469365286047, 48.87564714444549], [2.327281522755682, 48.87562241300226], [2.327078005064657, 48.87559746724015], [2.326890162899287, 48.87557273518169], [2.326886060570802, 48.875572611388485], [2.326814621228703, 48.87559346911846], [2.326843131609072, 48.87564455356802], [2.326848030296261, 48.87577885498405], [2.326853840409378, 48.87590793905342], [2.326858739148851, 48.87604224043696], [2.326864549329512, 48.87617132357571], [2.326869448121371, 48.87630562492674], [2.326875258346333, 48.87643470893341], [2.326881068611716, 48.87656379202544], [2.326885967483086, 48.87669809332796], [2.326891777792771, 48.876827177287886], [2.32689667671663, 48.87696147855791], [2.32690248709376, 48.87709056158722], [2.32690738607001, 48.87722486282469], [2.326913196491545, 48.877353946721925], [2.326918094156676, 48.87748824791919], [2.326923906009165, 48.877617330893436], [2.326928803726781, 48.877751632058214], [2.326934615635103, 48.8778807150011], [2.326939513393482, 48.878015017032595], [2.326945325357738, 48.8781440999441], [2.3269502231801242, 48.87827840104379], [2.3269560338369892, 48.878407483916284], [2.326960933063468, 48.87854178589038], [2.326966743776261, 48.87867086873149], [2.326971643066857, 48.87880516977376], [2.32697745383548, 48.878934252583484], [2.326982353166848, 48.87906855449251], [2.326988163991505, 48.87919763727083], [2.326993063386788, 48.87933193824803], [2.326998874267376, 48.87946102099498], [2.327003773715056, 48.87959532193964], [2.327009584639956, 48.87972440555446], [2.327014482776667, 48.87985870645891], [2.327020295132487, 48.87998778915076], [2.32702519332159, 48.88012209002261], [2.327031005721833, 48.880251173582344], [2.327035903963225, 48.88038547442167], [2.327041715067546, 48.88051455704304], [2.3270466147249182, 48.880648857857466], [2.327050959603858, 48.880745368223884], [2.327067573536651, 48.88077035966964], [2.32711974776053, 48.88076212454082], [2.327308150452463, 48.880762020464026], [2.327497223049944, 48.880761674335666], [2.327685624387608, 48.880761568757926], [2.327874696980836, 48.88076122203341], [2.328063098304594, 48.88076111676092], [2.328252170905264, 48.88076076854102], [2.328440572226513, 48.88076066267449], [2.328629644811415, 48.880760314757744], [2.328669006883791, 48.88075248824939]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 116, "zemmour_eric": 124.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "9-17", "circ_bv": "01", "num_bureau": 17, "roussel_fabien": 19.0, "nb_emargement": 1306.0, "nb_procuration": 99.0, "nb_vote_blanc": 10.0, "jadot_yannick": 126.0, "le_pen_marine": 55.0, "nb_exprime": 1293.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 0, "nb_inscrit": 1570.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1306, "quartier_bv": "33", "geo_point_2d": [48.87783909533699, 2.328892040912009], "melenchon_jean_luc": 233.0, "poutou_philippe": 4.0, "macron_emmanuel": 571.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3729456214636713, 48.831656834844736], [2.372931924775362, 48.83166603823075], [2.372795757460938, 48.83165615516354], [2.372551803314069, 48.83163570643683], [2.372415636140215, 48.83162582383589], [2.372403405199723, 48.83162902796475], [2.372255199012659, 48.83174782314129], [2.372103915804055, 48.831868453772614], [2.371955708242993, 48.83198724945197], [2.371804422284316, 48.83210787967155], [2.371786388968101, 48.832109634056096], [2.371636085923976, 48.83204366811391], [2.371485373025581, 48.83197760449004], [2.371335070732188, 48.831911639061126], [2.371184359959288, 48.83184557505734], [2.371034058427359, 48.83177960924236], [2.370883347066266, 48.831713543945014], [2.370867297818724, 48.831714016233384], [2.370756571170868, 48.831767455265265], [2.370615696461728, 48.83184192739108], [2.370611562189494, 48.831852287056584], [2.370679901776659, 48.831965070533066], [2.370747421668383, 48.832081569436156], [2.370815761850054, 48.8321943528119], [2.370883283704493, 48.832310851621585], [2.370951623118552, 48.83242363488947], [2.371019145573592, 48.83254013359861], [2.371015607284513, 48.83254998916165], [2.370995125732302, 48.83256664658415], [2.370937966091881, 48.83260109847515], [2.370917982208525, 48.832601912522655], [2.3709036689518213, 48.83261350295112], [2.370893956052406, 48.83261584778115], [2.370690548321095, 48.832610637011285], [2.370499564548793, 48.83260567385746], [2.370296156896606, 48.83260046241683], [2.370105173199232, 48.83259549863321], [2.369914189527362, 48.83259053544393], [2.369710780630535, 48.83258532300052], [2.369519797044374, 48.832580358282144], [2.369316389588935, 48.832575145175184], [2.3691254060666402, 48.83257018072632], [2.368921998701345, 48.83256496604925], [2.368731015253906, 48.83256000097059], [2.368527606594556, 48.832554786514905], [2.368517954765538, 48.83253982401688], [2.368637652075392, 48.83245094981958], [2.368751805365144, 48.83236694869878], [2.368871500517144, 48.83227807424655], [2.368985653051417, 48.83219407288957], [2.36898481490537, 48.83218149618406], [2.368866749743183, 48.832108657464104], [2.36870917189303, 48.83200993667016], [2.368591107504531, 48.83193709766696], [2.368433530694952, 48.83183837649477], [2.368315467080038, 48.831765537208284], [2.368296600201687, 48.831765704673394], [2.368176375663395, 48.83184398481628], [2.368034518763274, 48.83193296455414], [2.3679142934458, 48.83201124442189], [2.367772435632284, 48.83210022473493], [2.367652209535516, 48.83217850432759], [2.367556723325658, 48.83223839750245], [2.367541910115169, 48.832237357745825], [2.367520815665809, 48.832252350206964], [2.367474443138017, 48.83228143610739], [2.367322553180145, 48.83237783028109], [2.367180693358926, 48.83246680986315], [2.367028802328676, 48.83256320274855], [2.366886941501708, 48.83265218196749], [2.3667350480149922, 48.83274857535598], [2.366593187544407, 48.83283755421898], [2.366441292985202, 48.83293394631915], [2.366299430146508, 48.83302292481184], [2.36629622179879, 48.833026070893446], [2.366249098730303, 48.833110166721205], [2.366181967181823, 48.83322103862879], [2.366196381349857, 48.83323329426314], [2.36642117190818, 48.8332139148795], [2.366609527192033, 48.833193968892864], [2.366620430229926, 48.83319595307886], [2.366759524882594, 48.83327282743592], [2.366888441039761, 48.8333445123518], [2.367017357540462, 48.83341619802342], [2.367156453377072, 48.833493071004426], [2.367285370613828, 48.83356475637767], [2.367424468604336, 48.833641629044024], [2.367424719830382, 48.833655279185656], [2.367282593311866, 48.833737787339125], [2.367140613493054, 48.833818610680254], [2.36699848743079, 48.833901119390575], [2.366856506726621, 48.83398194238267], [2.366714378418105, 48.83406444983683], [2.366572398190852, 48.834145272487106], [2.366430268987229, 48.83422777959168], [2.366288287874616, 48.83430860189289], [2.366260010367139, 48.83434339250953], [2.366276060229913, 48.83435425826998], [2.3663394439925822, 48.83437528313747], [2.366523816991454, 48.834436747641554], [2.366703696077636, 48.83449641360946], [2.366888069934431, 48.83455787754545], [2.367067949866448, 48.83461754205979], [2.367252324570245, 48.834679006326944], [2.367432203974876, 48.834738670279826], [2.367616579547509, 48.834800133079554], [2.367796461138425, 48.83485979738467], [2.367980837568977, 48.83492125961626], [2.368160719994802, 48.834980923367134], [2.368345097283271, 48.8350423850306], [2.3685249791817, 48.83510204822004], [2.368709358690386, 48.835163509322534], [2.368889241423716, 48.835223171957686], [2.368940346124472, 48.83523311788265], [2.368964943022033, 48.83520290301377], [2.369063740137023, 48.835093658267674], [2.369170521619821, 48.83497507244529], [2.369269317872166, 48.83486582750713], [2.369376097047412, 48.83474724236922], [2.369474892448004, 48.83463799633971], [2.369581672051082, 48.83451941100132], [2.369680466589147, 48.83441016477977], [2.369787245257873, 48.8342915792337], [2.369886038933318, 48.834182332820106], [2.369992815305426, 48.83406374705923], [2.370091608118265, 48.83395450045361], [2.370198384918321, 48.833835914492255], [2.370297176868459, 48.833726667694606], [2.3704039527342973, 48.8336080815256], [2.370502743821846, 48.83349883453592], [2.370609517391116, 48.83338024815211], [2.370708307616089, 48.83327100097041], [2.370815081613323, 48.83315241438614], [2.370913870975725, 48.833043167012434], [2.370944593293155, 48.83303418202097], [2.370944023747709, 48.8329971619189], [2.370945082156302, 48.83299615479659], [2.371077658584935, 48.83288670993486], [2.371191811661992, 48.83278429465817], [2.371324387044664, 48.83267484860288], [2.371438539162217, 48.832572433970626], [2.371441363874171, 48.83257068425391], [2.371606639816293, 48.83249426366194], [2.371773780419021, 48.832416812063364], [2.371939056759155, 48.83234039010937], [2.372106196374642, 48.83226293803564], [2.372271471728674, 48.83218651651114], [2.372438610357031, 48.83210906396222], [2.372603883373682, 48.83203264196076], [2.372771022377031, 48.83195518894382], [2.372936294418531, 48.831878766472514], [2.373103431072328, 48.83180131297331], [2.373106914741452, 48.83178893882404], [2.373061568152977, 48.83174434154157], [2.373007730535271, 48.831693517462575], [2.373015529223083, 48.83166602325356], [2.372974774397852, 48.8316606670054], [2.3729456214636713, 48.831656834844736]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 49, "zemmour_eric": 92.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "13-32", "circ_bv": "09", "num_bureau": 32, "roussel_fabien": 43.0, "nb_emargement": 1290.0, "nb_procuration": 42.0, "nb_vote_blanc": 7.0, "jadot_yannick": 98.0, "le_pen_marine": 77.0, "nb_exprime": 1277.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1710.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1291, "quartier_bv": "50", "geo_point_2d": [48.83335065745954, 2.3688928331782817], "melenchon_jean_luc": 533.0, "poutou_philippe": 16.0, "macron_emmanuel": 294.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.293852837405086, 48.848707693627766], [2.29386746110205, 48.848724674476586], [2.293961588855443, 48.84883141779479], [2.294057509176084, 48.848939857908995], [2.2941516390701873, 48.84904660106508], [2.294247558831898, 48.84915504009864], [2.294341689491686, 48.84926178398388], [2.294437611407607, 48.849370222852144], [2.29453174148281, 48.84947696655919], [2.294627664190291, 48.84958540525413], [2.294721796418219, 48.84969214789976], [2.294817718542423, 48.849800587312636], [2.294835414846534, 48.849804150559855], [2.294879307985343, 48.849790156156374], [2.2949179153203962, 48.849777645113036], [2.294940205412542, 48.84977486883096], [2.294945235139952, 48.84976823779367], [2.295074882861213, 48.84972622265733], [2.295243887543472, 48.84967145961813], [2.295412141880507, 48.84961693294993], [2.295581147228634, 48.84956216853774], [2.295749400859911, 48.8495076413899], [2.29591840412445, 48.84945287738721], [2.29608665704987, 48.84939834975975], [2.296255659617694, 48.84934358437599], [2.296423911837456, 48.849289056268915], [2.296592913696308, 48.84923429040344], [2.296761165198173, 48.849179762716034], [2.296930166348256, 48.84912499636879], [2.297098417156394, 48.84907046730253], [2.2972674175976042, 48.84901570047349], [2.297435667700079, 48.84896117092762], [2.297604668782843, 48.84890640452418], [2.29767256945676, 48.8488843973108], [2.29769917671274, 48.84887824356897], [2.297700752903678, 48.848875550236194], [2.297801101591845, 48.84884302740019], [2.297801382142462, 48.84884293911048], [2.297963645884106, 48.84879347487095], [2.29816850133532, 48.8487308732495], [2.298330764379563, 48.848681408507076], [2.298535617598592, 48.84861880534351], [2.298697879933326, 48.848569340997486], [2.298704893757962, 48.848564389746734], [2.298780736653175, 48.84843352999647], [2.298852563751057, 48.84830810038845], [2.2989243918537188, 48.84818267163055], [2.299000232279701, 48.84805181168832], [2.299003179984042, 48.848040353084265], [2.298991069113365, 48.84803329317191], [2.298811317962609, 48.8479668183379], [2.298630710043337, 48.84789994428333], [2.298450961174822, 48.84783346890793], [2.298270354180115, 48.84776659430139], [2.298090604868587, 48.84770011836865], [2.297909998798549, 48.847633243210154], [2.29790359599016, 48.847627943458896], [2.297844913620725, 48.8474965824561], [2.297783785932324, 48.84736185242719], [2.297773928096513, 48.84735568968426], [2.297591366862076, 48.84732662079493], [2.297408888250738, 48.84729770500215], [2.297226327423045, 48.847268635554265], [2.297043850591928, 48.847239718311975], [2.29686128880848, 48.84721064829754], [2.296678812370822, 48.84718173139629], [2.296496250994132, 48.847152660823355], [2.29631377497421, 48.84712374246452], [2.296131214004187, 48.847094671333046], [2.295948738377724, 48.84706575331527], [2.295933167952685, 48.84705982660904], [2.295918794989676, 48.847063809848905], [2.295901088678873, 48.84706871600352], [2.2958987513433993, 48.84708225476923], [2.295791472329997, 48.847211421414436], [2.295692790040038, 48.84733151361137], [2.295687415210162, 48.847335068634294], [2.295507661596655, 48.84740040405416], [2.295326179258712, 48.84746637116659], [2.295146424751699, 48.84753170513673], [2.294964941499151, 48.847597671693464], [2.294785186074207, 48.84766300601246], [2.2946037019071532, 48.84772897201343], [2.294423945588616, 48.847794304882704], [2.29424246050706, 48.847860270327956], [2.294062703270581, 48.84792560354606], [2.293881217274623, 48.84799156843559], [2.293701459132272, 48.84805690110325], [2.2935199722218123, 48.848122865437006], [2.293514721894959, 48.848135212377], [2.293627780074244, 48.8482654863379], [2.293740883139209, 48.84839580810463], [2.293853943811757, 48.84852608182938], [2.293967046633056, 48.848656404243016], [2.293961658051096, 48.848668800744896], [2.293912757837664, 48.84868609381523], [2.293853066641705, 48.84870716885325], [2.293852837405086, 48.848707693627766]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 139, "zemmour_eric": 140.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-6", "circ_bv": "12", "num_bureau": 6, "roussel_fabien": 18.0, "nb_emargement": 1368.0, "nb_procuration": 72.0, "nb_vote_blanc": 12.0, "jadot_yannick": 110.0, "le_pen_marine": 47.0, "nb_exprime": 1353.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1666.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1368, "quartier_bv": "59", "geo_point_2d": [48.848349494481084, 2.296136707474572], "melenchon_jean_luc": 247.0, "poutou_philippe": 9.0, "macron_emmanuel": 589.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.401434135087281, 48.86832123279652], [2.401385647314683, 48.86830228408712], [2.4012999204128382, 48.86818249885571], [2.401223416121883, 48.86807955391417], [2.401146912133199, 48.867976608914184], [2.40106118767943, 48.86785682348338], [2.401060768335266, 48.867856303366445], [2.400966226340829, 48.86774771814793], [2.4008924331343042, 48.867664236495614], [2.400818641527348, 48.86758075479836], [2.400742511435205, 48.86749331504479], [2.400726499111429, 48.867487514184205], [2.400707591980014, 48.867494691562484], [2.400617228015967, 48.86759061571678], [2.400525323201216, 48.867688560984796], [2.400434958565238, 48.86778448498466], [2.4003430530657512, 48.867882430095534], [2.400252687757837, 48.86797835394097], [2.400160781573603, 48.86807629889475], [2.40015789263365, 48.868076913952756], [2.400146251842186, 48.868094216424446], [2.400067357318584, 48.868178662700885], [2.399982479228037, 48.86827152010492], [2.399903584160158, 48.86835596715917], [2.399818704125601, 48.868448824425386], [2.399818595058225, 48.86844894349033], [2.399731152739257, 48.86854586273659], [2.3996462720879093, 48.8686387198646], [2.399629608535608, 48.868642444974185], [2.399561781641489, 48.868624845556525], [2.3993816257605403, 48.868580009935535], [2.399238980775944, 48.868542996797075], [2.399205556075694, 48.86853467833138], [2.39918998040871, 48.8685375742558], [2.3990588601741463, 48.8686488888815], [2.398931714622378, 48.868755947866795], [2.398800593286258, 48.86886726218759], [2.398673446681075, 48.86897431997811], [2.398546299542989, 48.86908137852253], [2.398415176564124, 48.869192692388324], [2.398412977397345, 48.869195427909595], [2.39836935431862, 48.86928386076733], [2.398317449218995, 48.869378673233946], [2.398315081191845, 48.86938139171615], [2.398186914602972, 48.869482376899605], [2.398056463145369, 48.869584973750754], [2.397928295564624, 48.8696859577394], [2.397797843087821, 48.86978855428983], [2.397669674504808, 48.86988953798294], [2.397539221008798, 48.869992134232575], [2.397411051413105, 48.87009311852943], [2.397280596897876, 48.87019571447833], [2.397262833491116, 48.87023104717901], [2.3972835888758093, 48.87023851995335], [2.397463784252526, 48.870258009260496], [2.397615417355976, 48.87027221664813], [2.397618702857193, 48.87027280695925], [2.397728042825322, 48.87030258559553], [2.397852397604806, 48.87034785878002], [2.397854361262973, 48.87034852067707], [2.397978716262007, 48.870393793728425], [2.39818908934914, 48.8704795474858], [2.398190037294911, 48.87047986162342], [2.3983692509196652, 48.87053357873425], [2.3985319579814472, 48.87058093796368], [2.398711172296269, 48.87063465545695], [2.398873881347776, 48.8706820142241], [2.39905309637333, 48.87073573030123], [2.399215804688285, 48.870783088592454], [2.399235486839229, 48.87078980469017], [2.399270174294686, 48.87076961243419], [2.399300221651299, 48.87073577464752], [2.399330547063766, 48.87070087433394], [2.3993479559070803, 48.870691334309], [2.399349754011362, 48.870686021064735], [2.399420353728764, 48.87060477231598], [2.399527608157503, 48.87048448198821], [2.399628533717154, 48.87036833182774], [2.399735785804727, 48.87024804218011], [2.399836710442083, 48.87013189181928], [2.3999439629356862, 48.87001160106695], [2.400044886640396, 48.86989545140503], [2.400152136803233, 48.86977516043359], [2.400253059596029, 48.869659009672006], [2.400360310144189, 48.869538719394434], [2.400461232014721, 48.86942256843248], [2.400568480242503, 48.86930227703654], [2.400669401180437, 48.86918612677348], [2.400669461956857, 48.86918605782888], [2.400669493734132, 48.86918602111521], [2.400683995149989, 48.869169509060384], [2.400777531389419, 48.86906243649567], [2.40087974785747, 48.86894604790102], [2.40097328329329, 48.86883897516167], [2.401075497522303, 48.868722586369515], [2.401169032154626, 48.86861551345558], [2.401271246870886, 48.86849912447956], [2.40136477933644, 48.86839205138416], [2.401365266462144, 48.86839153760099], [2.401397326768789, 48.868360118620956], [2.401411010951338, 48.86835382604623], [2.401417653866528, 48.868344463892385], [2.401434135087281, 48.86832123279652]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 52, "zemmour_eric": 45.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "20-6", "circ_bv": "15", "num_bureau": 6, "roussel_fabien": 24.0, "nb_emargement": 1139.0, "nb_procuration": 56.0, "nb_vote_blanc": 13.0, "jadot_yannick": 91.0, "le_pen_marine": 51.0, "nb_exprime": 1124.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1429.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1139, "quartier_bv": "79", "geo_point_2d": [48.869317456038274, 2.3995085567965098], "melenchon_jean_luc": 503.0, "poutou_philippe": 6.0, "macron_emmanuel": 300.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.282268143191398, 48.838974659773406], [2.282267027518881, 48.83897939456991], [2.282147574556074, 48.839060526944166], [2.282014171549168, 48.839151095319046], [2.281858750801997, 48.83925665609876], [2.2817253468036522, 48.8393472232363], [2.281714488680845, 48.83936198598338], [2.281724242748072, 48.839370983412195], [2.281916789277515, 48.839423945057746], [2.282104415798923, 48.83947555298596], [2.282296963100949, 48.83952851401464], [2.282484590375196, 48.83958012134171], [2.282677139812107, 48.83963308176169], [2.282864767851562, 48.839684687588345], [2.282870778360959, 48.83968791729042], [2.282965094111097, 48.839779072783266], [2.283099318405225, 48.83990872753635], [2.283193636317135, 48.83999988283919], [2.283327861748399, 48.84012953731017], [2.283422180459575, 48.84022069241477], [2.283422729557035, 48.840229016686024], [2.283440022049143, 48.84023698347488], [2.283584393028266, 48.84035362423979], [2.283726676582445, 48.84046872878105], [2.283871048844973, 48.8405853691758], [2.284013333664832, 48.840700473352236], [2.2840307970966, 48.84071247924846], [2.284052481918291, 48.84070323849137], [2.284097187423904, 48.84067876076099], [2.284153587339221, 48.84064843693507], [2.2841737509351008, 48.840650648633186], [2.284268733076731, 48.840751116368885], [2.284360900594362, 48.84084860735114], [2.284455883457385, 48.84094907492045], [2.284548051675135, 48.841046565741244], [2.284558096176074, 48.84105074223366], [2.284806277178639, 48.84106905620505], [2.285049647004932, 48.8410877842952], [2.285051108244269, 48.84108783979573], [2.285248583105481, 48.841088347139205], [2.285445169916657, 48.84108863210384], [2.285642644784804, 48.84108913879681], [2.285839231613441, 48.84108942221452], [2.2860367064759872, 48.841089929156304], [2.286233293309743, 48.841090211926485], [2.286430768179112, 48.84109071821774], [2.286627355017979, 48.84109100034035], [2.286824829894158, 48.841091505981076], [2.287021416738126, 48.84109178745613], [2.287218003584215, 48.84109206860808], [2.287415477107818, 48.84109257326574], [2.28761206532134, 48.84109285377822], [2.28780953885173, 48.84109335778538], [2.287836852742003, 48.84108295010183], [2.287849660414021, 48.84106770468206], [2.2876855970674113, 48.84100304256662], [2.287512843969269, 48.84093508623414], [2.287348781457969, 48.84087042364911], [2.287176029238533, 48.840802466822154], [2.28701196756244, 48.84073780376752], [2.286839216209508, 48.84066984734538], [2.28667515536872, 48.84060518382116], [2.286502404906695, 48.840537226005274], [2.286338343538886, 48.840472562003306], [2.286165593955569, 48.84040460369298], [2.2860015347855, 48.84033993922955], [2.285885070641868, 48.84029412258929], [2.28588364888986, 48.840291186649665], [2.285857345263857, 48.84028464408702], [2.285801062074993, 48.840262502816664], [2.285577530250969, 48.840172880370574], [2.285404782652883, 48.840104920943325], [2.285404381602335, 48.84010475666075], [2.285253396316596, 48.8400405811548], [2.285102081994769, 48.83997608420921], [2.284951096091557, 48.83991190830617], [2.284799782505112, 48.83984741187008], [2.284648798721497, 48.83978323468697], [2.284497484520254, 48.83971873785287], [2.284346501481689, 48.839654560280835], [2.284195188027961, 48.83959006305694], [2.284194662300392, 48.83958985035743], [2.284041326031255, 48.83953080001438], [2.283883230032245, 48.83946973156485], [2.283729894469205, 48.83941068081625], [2.283571797824656, 48.83934961283971], [2.283418462967913, 48.83929056168558], [2.283260368427351, 48.83922949239972], [2.283107034276703, 48.83917044084004], [2.282948940452993, 48.83910937203535], [2.2829453585300348, 48.83910431767734], [2.282922163993755, 48.83910092200948], [2.282764070609776, 48.839039852057354], [2.282610676026961, 48.83897953046809], [2.282608904695615, 48.83897894424664], [2.282497220173918, 48.838947415126746], [2.282374615866433, 48.83891398027479], [2.282359359275332, 48.838916223515895], [2.282323861272458, 48.838941849510526], [2.282287894676777, 48.83896627831632], [2.282268143191398, 48.838974659773406]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 103, "zemmour_eric": 106.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-86", "circ_bv": "13", "num_bureau": 86, "roussel_fabien": 20.0, "nb_emargement": 1083.0, "nb_procuration": 59.0, "nb_vote_blanc": 11.0, "jadot_yannick": 72.0, "le_pen_marine": 68.0, "nb_exprime": 1072.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1329.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1083, "quartier_bv": "60", "geo_point_2d": [48.840220969939004, 2.2845730879223214], "melenchon_jean_luc": 189.0, "poutou_philippe": 2.0, "macron_emmanuel": 449.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345944253365866, 48.86295127213732], [2.345962916708627, 48.862938584526155], [2.34615088479657, 48.86289625862413], [2.346339317771371, 48.8628537937687], [2.346527285247693, 48.862811467272245], [2.346715717608908, 48.86276900182095], [2.34690368583642, 48.862726674737544], [2.347092116221325, 48.862684208682886], [2.347280083837101, 48.86264188100508], [2.347468514971429, 48.862599414362], [2.3476564806237032, 48.86255708518307], [2.347844911133269, 48.86251461884339], [2.34803287617379, 48.862472289070034], [2.348221306069855, 48.862429822134516], [2.348409271861632, 48.862387491774214], [2.348597699781177, 48.86234502423535], [2.348606158165279, 48.86233354064799], [2.34855815243296, 48.8622431207162], [2.348510135522539, 48.8621520819453], [2.348462130124074, 48.86206166196018], [2.348414113548785, 48.861970623135804], [2.348422851863117, 48.8619590979131], [2.348578300027644, 48.861926446176305], [2.348716959637853, 48.861896801124644], [2.348855619090363, 48.86186715591157], [2.3490110667205713, 48.86183450271064], [2.349027995857915, 48.86183997109601], [2.3490767400802, 48.86192750438483], [2.349125318264308, 48.86201546663085], [2.349174062803172, 48.86210300076546], [2.349222641326466, 48.86219096205877], [2.349239939338013, 48.86219637395998], [2.349385812900814, 48.86216278235979], [2.349503782431188, 48.86213565630691], [2.349512920210125, 48.862127163977945], [2.349512889519051, 48.8620014575857], [2.349513371356041, 48.86187978933568], [2.349513339301026, 48.861754082907986], [2.349513821134679, 48.86163241463082], [2.349514301591862, 48.86151074723212], [2.349514270909046, 48.861385039870704], [2.349513447848786, 48.86138196502445], [2.349454800398969, 48.86127568959424], [2.349394334628524, 48.86116637793332], [2.349335686301381, 48.86106010241665], [2.349275221042388, 48.86095078977502], [2.349216574552539, 48.860844515086015], [2.349156109793659, 48.860735202362925], [2.349164313719823, 48.860723653483916], [2.349264016135755, 48.86070006886313], [2.349354499143681, 48.86067908171532], [2.349397752655324, 48.86066793112625], [2.349410573119126, 48.86065409060719], [2.349397636196599, 48.86063119571868], [2.34932353648224, 48.86050226969116], [2.34926385318067, 48.86039664586704], [2.349191232016563, 48.86026812707737], [2.34911713332933, 48.86013920087982], [2.349044514248829, 48.860010681978665], [2.348970416290796, 48.859881755660346], [2.348897796568089, 48.85975323663294], [2.348823699339247, 48.859624310193844], [2.3488224355068192, 48.85961790175027], [2.34881420809213, 48.85960734628835], [2.348740111277611, 48.85947841978056], [2.348669936208696, 48.859351999457196], [2.348595840114322, 48.85922307283039], [2.34852566711366, 48.85909665150149], [2.348455493090613, 48.85897023010963], [2.348381398069803, 48.85884130330567], [2.348311224740725, 48.85871488180011], [2.348237131802848, 48.85858595488459], [2.3482081029715163, 48.85853365876092], [2.348200138179429, 48.85853067900081], [2.348119090516853, 48.858557855660834], [2.347941653776612, 48.85861521089149], [2.347760057342814, 48.858674156619706], [2.347582618448462, 48.85873151130455], [2.347401021214386, 48.85879045558248], [2.347223582891662, 48.85884780973638], [2.347041984834787, 48.858906754362614], [2.34686454572077, 48.858964107978125], [2.346682946863636, 48.85902305115403], [2.346505506946953, 48.85908040513047], [2.346323907278291, 48.85913934775536], [2.346146465218772, 48.85919670028673], [2.345964864738587, 48.859255642360594], [2.345787423239423, 48.85931299526028], [2.345605821947713, 48.85937193678313], [2.345428379668559, 48.85942928824512], [2.34524677755403, 48.85948823011625], [2.345069334483493, 48.859545581039875], [2.344887730205908, 48.859604521453186], [2.34484947858354, 48.85961688494846], [2.3448412091084, 48.859619601577386], [2.344847690063878, 48.85966297131008], [2.344948527114033, 48.859786663127736], [2.345047990051203, 48.85990856481343], [2.345148826689157, 48.86003225642744], [2.345248290575123, 48.86015415702045], [2.345349129526988, 48.86027784844576], [2.345448592987497, 48.86039974883779], [2.345449035112259, 48.86040025129392], [2.345545709892113, 48.86050243340667], [2.345644505727432, 48.86060647698761], [2.345741181273316, 48.860708658923485], [2.345839979241728, 48.860812703230465], [2.345936655553552, 48.86091488498939], [2.346035454314686, 48.86101892821635], [2.346032176471929, 48.8610308500503], [2.345879057404075, 48.86110801457372], [2.345731376509333, 48.86118159325058], [2.345578255189957, 48.8612587573712], [2.3454305734432133, 48.86133233566685], [2.345282891279237, 48.86140591377537], [2.345129769999324, 48.86148307731405], [2.34498208698324, 48.861556655041355], [2.344828963451888, 48.86163381817717], [2.344799167345059, 48.86164017532197], [2.34479807331154, 48.86164143561393], [2.344810583727055, 48.861665155154014], [2.344811603718068, 48.86166663926595], [2.344855903339362, 48.8617181248233], [2.344912444099819, 48.861783321372414], [2.344911476464087, 48.861787104127934], [2.344927097502068, 48.86180095774843], [2.344961960943642, 48.861841158755524], [2.345061939303108, 48.86195533670899], [2.345153344314917, 48.86206073409012], [2.34525332350388, 48.86217491276036], [2.345344730662516, 48.86228030908262], [2.345444709329277, 48.862394487562895], [2.345536117248938, 48.86249988461743], [2.345636096756617, 48.862614062915185], [2.345727505460009, 48.86271945890332], [2.34581891315903, 48.862824855703465], [2.345918895273052, 48.862939033738925], [2.345944253365866, 48.86295127213732]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 59, "zemmour_eric": 53.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "1-3", "circ_bv": "01", "num_bureau": 3, "roussel_fabien": 14.0, "nb_emargement": 1012.0, "nb_procuration": 112.0, "nb_vote_blanc": 7.0, "jadot_yannick": 73.0, "le_pen_marine": 79.0, "nb_exprime": 1002.0, "nb_vote_nul": 3.0, "arr_bv": "01", "arthaud_nathalie": 1, "nb_inscrit": 1243.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1012, "quartier_bv": "02", "geo_point_2d": [48.860820044773966, 2.3472191006559378], "melenchon_jean_luc": 249.0, "poutou_philippe": 7.0, "macron_emmanuel": 418.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.314361275443546, 48.83596307563906], [2.314374958071447, 48.83597332416219], [2.314432345148286, 48.8360196136737], [2.314556217784845, 48.83612026893709], [2.314686069891975, 48.83622501088639], [2.314764808181602, 48.83628899086982], [2.3147685008249432, 48.83629693098711], [2.314780849967387, 48.83630519949966], [2.314825985305871, 48.83634187539111], [2.314948982959836, 48.836443706971465], [2.315072857601853, 48.83654436166169], [2.315195856215899, 48.8366461929697], [2.315319730453494, 48.836746847378244], [2.315442730027728, 48.83684867841399], [2.315566606585484, 48.83694933255644], [2.315689607119815, 48.83705116331988], [2.315813483273156, 48.837151817180626], [2.315936484767592, 48.837253647671794], [2.316060363229421, 48.83735430216576], [2.316183365695774, 48.837456131485276], [2.316307245115559, 48.837556785705345], [2.316430247167875, 48.83765861564404], [2.316554127557519, 48.83775926869089], [2.3166771319322272, 48.83786109836511], [2.316801013279737, 48.83796175113802], [2.31692401861469, 48.83806358053992], [2.317047899557903, 48.838164233031144], [2.317170905852902, 48.838266062160706], [2.317294789116475, 48.83836671438582], [2.317295500753363, 48.83837573102647], [2.317304721531003, 48.83838928048661], [2.317426733136191, 48.83848755383976], [2.3175506174202, 48.83858820577994], [2.317578357624232, 48.838610547877245], [2.317582092168624, 48.83861273126584], [2.317656994417106, 48.83858437065412], [2.317747329705615, 48.83847457560959], [2.3178376408826082, 48.83836544858206], [2.317927975411186, 48.83825565337965], [2.318018285818901, 48.83814652709366], [2.318108620949828, 48.838036731741056], [2.318198929249538, 48.83792760439024], [2.318289263620545, 48.83781780887976], [2.318379571150904, 48.83770868227048], [2.318390399352159, 48.837704031276374], [2.318604426247804, 48.83769229165896], [2.3188244667340863, 48.83768045729479], [2.319038493435269, 48.83766871690051], [2.319258533723476, 48.8376568817376], [2.319472560229982, 48.8376451405664], [2.3196926003201, 48.8376333046048], [2.3197051149060393, 48.83762417882651], [2.319702551068412, 48.83753020889795], [2.3197044045612483, 48.83736418769098], [2.319701840737689, 48.83727021774059], [2.319693859448039, 48.83726219313794], [2.319536881049205, 48.83721506271909], [2.319369520836884, 48.83716347599673], [2.319363865546574, 48.83715042273801], [2.319479183334185, 48.83703339899484], [2.319590722394303, 48.836920148978614], [2.31970603916317, 48.83680312499264], [2.31981757587543, 48.83668987473381], [2.319932892987903, 48.836572850512816], [2.3200444287144553, 48.8364596000191], [2.320056888373835, 48.836446616484054], [2.320044165446219, 48.83643539466335], [2.319882982910483, 48.83636585811674], [2.319719304235864, 48.83629553548974], [2.319558121203745, 48.83622599848891], [2.319394443406563, 48.83615567540856], [2.319233262602507, 48.83608613796909], [2.319069585671011, 48.83601581533471], [2.319066934821695, 48.836002228736106], [2.319191086580358, 48.835912062104526], [2.319312982694989, 48.83582391238338], [2.319437133591599, 48.83573374638138], [2.31955902887316, 48.83564559639546], [2.319683178919473, 48.83555543012367], [2.319805072005665, 48.835467279865235], [2.319929221213524, 48.83537711242439], [2.320051114828965, 48.835288961908894], [2.320175263174702, 48.83519879509765], [2.320297154594797, 48.835110644309616], [2.320300828036059, 48.83509598024553], [2.320290027514264, 48.83508216028323], [2.320146583801315, 48.83500628169093], [2.319980357641982, 48.834918808204506], [2.319836914829312, 48.83484292922977], [2.319670688348145, 48.83475545529249], [2.319527246435752, 48.83467957593528], [2.3193610223692662, 48.83459210066333], [2.319217581345404, 48.83451622182303], [2.319051356957088, 48.83442874610019], [2.318907916833489, 48.83435286687744], [2.318741694848099, 48.834265390719274], [2.318598255624759, 48.83418951111411], [2.318432033317538, 48.83410203450505], [2.318288594994454, 48.83402615451746], [2.318277435231984, 48.834023610441264], [2.3182596173097663, 48.834032345219704], [2.318098265006881, 48.83413045624825], [2.317940980227922, 48.8342260567167], [2.31778369350978, 48.83432165696236], [2.31762233941564, 48.83441976732359], [2.317465052890916, 48.83451536714144], [2.317303697597454, 48.834613477055846], [2.317146409903867, 48.83470907643819], [2.316985053411075, 48.834807185905724], [2.316985132841209, 48.8348204628906], [2.317152176129545, 48.83492045101067], [2.317332384027745, 48.835027664928226], [2.317325972769297, 48.835043159589624], [2.31711358349794, 48.83507161206989], [2.316911497991977, 48.83509899700497], [2.316699108266784, 48.83512744874784], [2.316497023688809, 48.83515483298909], [2.316284632147696, 48.835183283986794], [2.316082547135526, 48.835210667526425], [2.316077605383936, 48.83521204858568], [2.315880737045889, 48.83530075380614], [2.31568407411071, 48.83538922423907], [2.315487204433841, 48.835477928797765], [2.315290540150497, 48.83556639946897], [2.31529007569001, 48.83556659826944], [2.315142491259545, 48.835627347703806], [2.314992235722346, 48.835689481079704], [2.314844649246467, 48.83575022923281], [2.31469439300004, 48.83581236222775], [2.314546805829038, 48.83587311000665], [2.314396548873383, 48.83593524262062], [2.314361275443546, 48.83596307563906]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 47, "zemmour_eric": 89.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-15", "circ_bv": "11", "num_bureau": 15, "roussel_fabien": 22.0, "nb_emargement": 1239.0, "nb_procuration": 76.0, "nb_vote_blanc": 17.0, "jadot_yannick": 109.0, "le_pen_marine": 59.0, "nb_exprime": 1220.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1588.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1239, "quartier_bv": "56", "geo_point_2d": [48.83622802896429, 2.317630123533854], "melenchon_jean_luc": 418.0, "poutou_philippe": 3.0, "macron_emmanuel": 412.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347097710621428, 48.89467927683702], [2.347136774855216, 48.89469635746791], [2.347289748199568, 48.89466052424041], [2.3474945530116322, 48.89461198076037], [2.347647525861834, 48.89457614707312], [2.347852330008406, 48.89452760297746], [2.347991625736046, 48.894494972391115], [2.348005302364453, 48.89449176883041], [2.34801461769998, 48.89449178986979], [2.3482252495873492, 48.894542795687414], [2.348432192051396, 48.894592526503985], [2.348642824755381, 48.894643531582474], [2.348849769382435, 48.8946932616803], [2.349060401550411, 48.894744265113005], [2.3492673469767062, 48.89479399448466], [2.349275646483202, 48.89479421405141], [2.349470198337915, 48.894758792830096], [2.349663788474255, 48.894723252755924], [2.349858339799737, 48.89468783090175], [2.350051929396042, 48.89465229109711], [2.35024647882843, 48.894616868602704], [2.350440069271007, 48.89458132727642], [2.35063461817415, 48.89454590414919], [2.35082820807669, 48.89451036309244], [2.351022756461795, 48.89447493843307], [2.351216345835508, 48.894439396746606], [2.351410893680145, 48.89440397235364], [2.351604482536229, 48.894368429138176], [2.3517990298516, 48.89433300411238], [2.351992618167645, 48.89429746116643], [2.352187164953745, 48.894262035507815], [2.352380752752133, 48.89422649103285], [2.352575299008953, 48.89419106474145], [2.3527688862673, 48.894155520536025], [2.35281600723839, 48.89414747357645], [2.352817985019203, 48.89413671220411], [2.352814462099847, 48.894103021705355], [2.352791603314726, 48.893986687959725], [2.352779141598404, 48.89386750918161], [2.3527790184079223, 48.893866776468734], [2.352756161169652, 48.89375044269862], [2.352730676068596, 48.893639901622564], [2.35270781767411, 48.893523567811755], [2.352682332797923, 48.89341302580327], [2.352659474599774, 48.89329669285843], [2.352633989937374, 48.89318615081677], [2.352633398601551, 48.89318456751251], [2.352616531370308, 48.89315988888242], [2.352562889196057, 48.89317034486418], [2.352367166616917, 48.89321084415287], [2.35216883789974, 48.89325272297098], [2.351973114693233, 48.89329322251183], [2.351774785345314, 48.89333510067421], [2.351579061533828, 48.89337559866872], [2.351380731544079, 48.893417477074564], [2.351185007116428, 48.89345797442203], [2.350986676495843, 48.89349985217209], [2.350979026166776, 48.89350391880854], [2.350928728495687, 48.89356134484435], [2.350875284747532, 48.89362627482538], [2.35086834774154, 48.89363033902586], [2.350851113263513, 48.893634951749355], [2.350648518131693, 48.89368820291658], [2.350474876888922, 48.89373467612421], [2.350284000757881, 48.893785761719315], [2.350081403095482, 48.89383901191242], [2.349890526195874, 48.893890096875516], [2.349687929077669, 48.893943347304536], [2.349497051409496, 48.893994431635605], [2.349294453494115, 48.894047680494644], [2.349275923387283, 48.89404069640241], [2.349243742943825, 48.89390301085773], [2.349209568403622, 48.893762943838674], [2.34917738830741, 48.89362525824126], [2.349143214128023, 48.89348519116774], [2.349111033015125, 48.89334750551019], [2.349076859196549, 48.89320743838229], [2.349044679794511, 48.89306975267943], [2.349010506336841, 48.8929296854971], [2.348978327270684, 48.892792000640796], [2.3489441528212502, 48.892651932497365], [2.3489234143958, 48.8926454444494], [2.348877694089341, 48.892664895508354], [2.348843296642209, 48.89270299530886], [2.348746789620633, 48.89281196115158], [2.348650655657332, 48.89291843871472], [2.348554147833262, 48.89302740438078], [2.348458014430778, 48.89313388267501], [2.348431747145734, 48.89316353968018], [2.348417789964298, 48.89317164486687], [2.348414963711183, 48.89318986683347], [2.348344722308471, 48.89326917530594], [2.348241360993933, 48.893383261005766], [2.348144851451595, 48.893492226295756], [2.348041489256202, 48.89360631179989], [2.347944978893481, 48.89371527600738], [2.347841615817325, 48.89382936131577], [2.347745104611484, 48.89393832623923], [2.347641740654654, 48.894052411351865], [2.347545228617047, 48.89416137609213], [2.347441863779332, 48.894275461009016], [2.34734535091005, 48.89438442556599], [2.3472419851915403, 48.894498510287164], [2.347145471490471, 48.894607474660894], [2.347105477263853, 48.894651616508895], [2.347097710621428, 48.89467927683702]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 36, "zemmour_eric": 37.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "18-15", "circ_bv": "18", "num_bureau": 15, "roussel_fabien": 21.0, "nb_emargement": 1100.0, "nb_procuration": 54.0, "nb_vote_blanc": 17.0, "jadot_yannick": 112.0, "le_pen_marine": 54.0, "nb_exprime": 1080.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1457.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "70", "geo_point_2d": [48.89397941635673, 2.350018626293876], "melenchon_jean_luc": 536.0, "poutou_philippe": 8.0, "macron_emmanuel": 213.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4080067874618543, 48.85302325576382], [2.407992220260271, 48.853023127931216], [2.407853028838858, 48.852998074909586], [2.407672715776659, 48.85296652811728], [2.407479514576198, 48.85293175331988], [2.407299200596724, 48.85290020685542], [2.40710599989143, 48.852865431452834], [2.406925687740488, 48.85283388353104], [2.406732487520132, 48.852799108422595], [2.406552175824824, 48.85276755993608], [2.40653653351374, 48.852767903248825], [2.406525885338098, 48.85279701813434], [2.4064800037135052, 48.85292451165047], [2.406434051893272, 48.85305228538426], [2.406388169819224, 48.853179778835894], [2.406342217538452, 48.85330755340435], [2.4062963350149422, 48.85343504679154], [2.406250383646657, 48.85356282130215], [2.406204499310889, 48.853690314618056], [2.40615854750255, 48.85381808816476], [2.4061126640801023, 48.853945581422956], [2.406066710448405, 48.85407335579757], [2.406020826576477, 48.85420084899127], [2.405974872494457, 48.85432862330128], [2.405928988173041, 48.854456116430455], [2.405883033650947, 48.85458388977655], [2.405837148869783, 48.854711383740515], [2.405791193897355, 48.85483915702197], [2.405745308676946, 48.85496665002216], [2.405699353243921, 48.855094424138294], [2.405653467574005, 48.855221917073926], [2.40560751170089, 48.85534969022617], [2.405561625571203, 48.85547718399661], [2.405515669247734, 48.85560495708421], [2.405469782678786, 48.855732449890816], [2.405423825894696, 48.85586022381305], [2.405423638358732, 48.85586375911357], [2.405450916908299, 48.85597471848013], [2.405481095583387, 48.85609585395723], [2.4054905037467282, 48.85610433567363], [2.405508017765084, 48.85610404316251], [2.405661194031901, 48.85608420362697], [2.405817213961627, 48.856063461581556], [2.405827845191303, 48.85606496861481], [2.406020360915457, 48.85615601644979], [2.406215434112527, 48.85624479411326], [2.406220688104999, 48.85624623305807], [2.406389235486727, 48.856266227179994], [2.406587565881412, 48.85629048956987], [2.40675611492018, 48.85631048228167], [2.406954445654148, 48.85633474406251], [2.407122993603743, 48.85635473714933], [2.40732132467699, 48.856378998321105], [2.407489874283501, 48.85639898999784], [2.407569366332692, 48.85640871429816], [2.407599348172605, 48.85641144025745], [2.40760726050748, 48.856393047324275], [2.407562628387862, 48.856259571999075], [2.407517441157516, 48.85612567299727], [2.407472809496908, 48.855992197606454], [2.407427622729354, 48.855858298538486], [2.407438234136276, 48.855847527447814], [2.407634636560098, 48.85582141334889], [2.407836110008497, 48.8557947115679], [2.408032512033829, 48.855768596814755], [2.408233985063892, 48.85574189526193], [2.408242089249506, 48.855727581764114], [2.408180489945619, 48.85567492973485], [2.408128862709087, 48.855630350069944], [2.408128565323833, 48.85561969583428], [2.40825423368832, 48.85550248221759], [2.408377868422032, 48.85538703641391], [2.408503535664682, 48.85526982251086], [2.408627169293998, 48.85515437642544], [2.408752835414724, 48.85503716223605], [2.408876467939657, 48.854921715868855], [2.4088782551257752, 48.854919393589114], [2.408944498183294, 48.854789489002066], [2.409010744119858, 48.85466002236133], [2.409076987880053, 48.8545301176774], [2.409143233157677, 48.854400650933094], [2.409209476257934, 48.854270746145446], [2.409275720866432, 48.854141280196856], [2.409341963316753, 48.854011374406284], [2.409408207266333, 48.853881908354175], [2.409474450897027, 48.85375244135101], [2.409540692347402, 48.853622536304236], [2.409606935319089, 48.853493069197505], [2.409673174746775, 48.85336316404036], [2.409687291204269, 48.85333066826916], [2.409676129924555, 48.85332594468569], [2.409625532665406, 48.85331685085462], [2.409432328862775, 48.853282079221245], [2.409237472328305, 48.8532470553901], [2.4090442690333163, 48.85321228402729], [2.4088494116578962, 48.853177259555295], [2.408656208890849, 48.85314248666439], [2.408461352027164, 48.853107462457544], [2.408268149777766, 48.8530726889379], [2.408073293446138, 48.853037663197604], [2.408019283161785, 48.853027942039226], [2.4080067874618543, 48.85302325576382]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 31, "zemmour_eric": 54.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-37", "circ_bv": "15", "num_bureau": 37, "roussel_fabien": 22.0, "nb_emargement": 1116.0, "nb_procuration": 57.0, "nb_vote_blanc": 13.0, "jadot_yannick": 59.0, "le_pen_marine": 64.0, "nb_exprime": 1099.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1573.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1116, "quartier_bv": "80", "geo_point_2d": [48.854527908830285, 2.4073852193111565], "melenchon_jean_luc": 600.0, "poutou_philippe": 11.0, "macron_emmanuel": 222.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.353510439422695, 48.887777276049924], [2.353552752322697, 48.887782445395594], [2.35362213373665, 48.88786609661053], [2.353663651115189, 48.88791877209086], [2.353665318805624, 48.88792285144032], [2.353669695409091, 48.88803258377968], [2.353673152222151, 48.88813808251525], [2.353677528871377, 48.88824781393359], [2.353680985703536, 48.888353313547505], [2.353681015734192, 48.888353750781626], [2.35368425806284, 48.88837633055246], [2.353718860241178, 48.88837967305284], [2.353901256476796, 48.88839672652902], [2.354111369027771, 48.888416603828894], [2.35429376688489, 48.888433656714014], [2.354503879734712, 48.88845353332442], [2.3546862764861363, 48.888470585603734], [2.354896389634693, 48.88849046152472], [2.355078786644006, 48.888507513205546], [2.35528890145519, 48.88852738844445], [2.355471298722383, 48.888544439526804], [2.355681412468586, 48.88856431406896], [2.355863809993651, 48.888581364552856], [2.356073924027641, 48.88860123930488], [2.356256323174275, 48.888618289197616], [2.356291127055679, 48.88861317388769], [2.356295868316474, 48.88859512744608], [2.3563217099505103, 48.888474138110276], [2.356349974321028, 48.88834392571263], [2.3563758157046832, 48.888222936337506], [2.356404079803448, 48.888092723897316], [2.356429920936726, 48.8879717344828], [2.356458184763845, 48.887841522000045], [2.356471145061974, 48.887834411442675], [2.356467147657207, 48.88780519066316], [2.356495411300839, 48.88767497815187], [2.356522654762248, 48.887542776224464], [2.356550918124646, 48.887412563668946], [2.356578161318854, 48.88728036079807], [2.3566064244001232, 48.88715014819839], [2.356633668679781, 48.88701794529063], [2.356661931479719, 48.886887732646734], [2.3566891741065, 48.88675553058667], [2.356717436625217, 48.88662531789856], [2.356744680348452, 48.88649311490241], [2.356772942586048, 48.88636290217007], [2.356800184667438, 48.88623069912236], [2.35678682227695, 48.88622049642522], [2.356592941132547, 48.88621909050045], [2.356405732399114, 48.886218473763414], [2.356211851272433, 48.886217067221565], [2.356024642550892, 48.88621644988873], [2.355830761430919, 48.88621504362905], [2.3556435527322, 48.88621442480109], [2.355449671630164, 48.886213017924376], [2.3552624629321253, 48.88621239939979], [2.355068581858965, 48.886210991006735], [2.354881373172744, 48.88621037188633], [2.354694163138582, 48.886209751566625], [2.354500283443147, 48.88620834315992], [2.354464334026801, 48.88621280516074], [2.354457434412627, 48.886222755885484], [2.354287684343184, 48.886310625696545], [2.354119635609893, 48.88639937498883], [2.353949884394695, 48.88648724430686], [2.353781834515711, 48.88657599311077], [2.3536120821546502, 48.88666386193578], [2.35344403113007, 48.88675261025133], [2.353438926992779, 48.88675994727398], [2.353445984014805, 48.88689187250314], [2.353455398830293, 48.88701326404819], [2.353464813689576, 48.88713465557906], [2.353471870827967, 48.88726658076176], [2.353481285771551, 48.887387972263376], [2.353488344349676, 48.887519897422], [2.353497759377364, 48.887641288894315], [2.353504816667987, 48.88777321401419], [2.353510439422695, 48.887777276049924]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 28, "zemmour_eric": 38.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-55", "circ_bv": "17", "num_bureau": 55, "roussel_fabien": 25.0, "nb_emargement": 1217.0, "nb_procuration": 80.0, "nb_vote_blanc": 12.0, "jadot_yannick": 100.0, "le_pen_marine": 57.0, "nb_exprime": 1198.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1616.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1217, "quartier_bv": "71", "geo_point_2d": [48.8873465334142, 2.355117851831783], "melenchon_jean_luc": 720.0, "poutou_philippe": 15.0, "macron_emmanuel": 171.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.301488231655742, 48.84786220089448], [2.30151106133171, 48.84787398003516], [2.301610518445502, 48.84794080863385], [2.301705004525965, 48.84800601805676], [2.301721469541685, 48.848015626717924], [2.301784611217527, 48.847975530184804], [2.301932613536871, 48.847913111943505], [2.302086464424328, 48.847848645609446], [2.302234467396346, 48.847786226096275], [2.302388317535805, 48.84772175936672], [2.302390630281707, 48.847707795848876], [2.3022951236125992, 48.84764500028722], [2.302200275104236, 48.84758293606808], [2.302104767530807, 48.84752014033948], [2.302009919488336, 48.84745807506317], [2.3020050702852313, 48.84744581812766], [2.301981719248786, 48.847443464960854], [2.301833527943167, 48.847435364889726], [2.301670784053096, 48.84742413984422], [2.3016586391904053, 48.84741431265935], [2.301679585697919, 48.84727414500099], [2.301700438576582, 48.84713485455449], [2.301721384859349, 48.84699468685365], [2.301742237526625, 48.84685539546564], [2.301763182210003, 48.84671522861363], [2.301784036016236, 48.84657593719135], [2.3018049804748832, 48.84643577029691], [2.301825834057575, 48.84629647883239], [2.301846778291494, 48.84615631189548], [2.30186763165065, 48.84601702038875], [2.301888575671891, 48.845876852510074], [2.301909427432997, 48.84573756185248], [2.301906969161079, 48.84573146150623], [2.301799632115465, 48.84563194366251], [2.301692958232497, 48.845532693096025], [2.301585623379537, 48.8454331741512], [2.301478948948417, 48.84533392336821], [2.301371614901433, 48.84523440511295], [2.301264942659232, 48.84513515323016], [2.301157608067713, 48.84503563475715], [2.3010509366279512, 48.844936383565106], [2.300943604216995, 48.84483686489036], [2.300836932241136, 48.844737612582584], [2.300826239652273, 48.844725325912776], [2.30081124552389, 48.844725511688395], [2.300628386373813, 48.84478145183291], [2.300446344962952, 48.84483724898316], [2.300263485029162, 48.84489318856438], [2.300081442837445, 48.84494898515379], [2.299898582119947, 48.84500492417159], [2.299716539147174, 48.845060720200195], [2.299533676283412, 48.84511665864672], [2.299351632529685, 48.84517245411445], [2.299339449562331, 48.845172221776586], [2.299155273674874, 48.84510697323586], [2.298967624675131, 48.845041233685045], [2.298783449716089, 48.84497598456429], [2.298595803019543, 48.84491024443054], [2.298579330534422, 48.84491213904795], [2.298419352194453, 48.84502831908633], [2.298262701076242, 48.845140625964746], [2.29810272132896, 48.84525680555591], [2.297946068841651, 48.84536911199671], [2.297901744292627, 48.84540373466842], [2.297904101933578, 48.845406344972865], [2.2979311285769, 48.84542496305714], [2.298056021107845, 48.84551132450058], [2.298190907955936, 48.845604246845355], [2.298315801334894, 48.84569060890297], [2.298450689110296, 48.84578353093992], [2.298575583361491, 48.84586989181318], [2.2987104720640072, 48.845962813542286], [2.298835367163236, 48.84604917502972], [2.2989702581555562, 48.846142096459], [2.299095154127029, 48.84622845676203], [2.299230044683999, 48.84632137787545], [2.299354941503526, 48.84640773879271], [2.299489832987834, 48.846500659598306], [2.299633444231815, 48.846597165789646], [2.299768336702892, 48.846690086265426], [2.2999119476221033, 48.846786592098105], [2.300046841080055, 48.84687951224405], [2.300190454399496, 48.84697601773403], [2.300325348844333, 48.847068937550155], [2.300468961826939, 48.84716544358072], [2.300603858633349, 48.84725836217573], [2.300747472653604, 48.847354867855564], [2.300882369084297, 48.847447786112774], [2.301025985505029, 48.847544291449864], [2.301160882910565, 48.847637210276524], [2.301304499018402, 48.84773371435561], [2.3014393974108502, 48.8478266328525], [2.301483560249067, 48.847856307074814], [2.301488231655742, 48.84786220089448]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 106, "zemmour_eric": 118.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-26", "circ_bv": "12", "num_bureau": 26, "roussel_fabien": 16.0, "nb_emargement": 1278.0, "nb_procuration": 72.0, "nb_vote_blanc": 12.0, "jadot_yannick": 85.0, "le_pen_marine": 82.0, "nb_exprime": 1263.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1592.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "58", "geo_point_2d": [48.846097551746055, 2.3004020479700205], "melenchon_jean_luc": 241.0, "poutou_philippe": 3.0, "macron_emmanuel": 552.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389641997276682, 48.87527228488151], [2.389625658551257, 48.87526515080548], [2.389556792409376, 48.87523305050436], [2.389380602236484, 48.875153531333716], [2.389237955133102, 48.875087039903654], [2.389061767304145, 48.87500752026019], [2.388919121007667, 48.87494102844139], [2.38889253223472, 48.87492902780764], [2.388891679529742, 48.87492826351818], [2.3888695604743813, 48.87491912848872], [2.388733623102882, 48.87486421183231], [2.388584025419711, 48.87479669214025], [2.388581409122945, 48.87479587297463], [2.3883776490263022, 48.874748817682224], [2.388214918147103, 48.87471464154188], [2.388211607880462, 48.87471417135999], [2.388036499649985, 48.87470476500436], [2.387822409134923, 48.874692344129194], [2.387647299684778, 48.87468293719713], [2.387493632157769, 48.87467402104115], [2.387458159729707, 48.874678963932524], [2.387455117034419, 48.87471521487581], [2.387447046842524, 48.87483695858292], [2.387436429927417, 48.87497236809969], [2.387428359641524, 48.87509411267644], [2.387417742625316, 48.87522952215997], [2.3874096722664753, 48.87535126580778], [2.387409824066149, 48.875501228508405], [2.387409818786096, 48.87550190927616], [2.387415226929278, 48.87561324104733], [2.387415378745708, 48.87576320371233], [2.387420786927906, 48.87587453545689], [2.387421276044122, 48.87587665229005], [2.387473400542616, 48.87599972732776], [2.387520811208206, 48.876112425098974], [2.387526865820916, 48.87612927178807], [2.387530382881371, 48.8761315264214], [2.3875825078927573, 48.876254601383174], [2.387629015804706, 48.876369323357444], [2.387681139923762, 48.87649239824273], [2.387727649628591, 48.87660712016094], [2.387774158164345, 48.876721842941386], [2.38782628435314, 48.876844916831836], [2.3878267115205, 48.876846390322555], [2.387844074192813, 48.87696769369709], [2.387863634662214, 48.877089592858965], [2.3878636699302, 48.87708984035542], [2.387877008149343, 48.87720264692238], [2.387894372420972, 48.8773239502574], [2.3879077107664672, 48.877436756796975], [2.38792507382424, 48.8775580600948], [2.387925227359544, 48.877558801928444], [2.387957560389692, 48.87767358515482], [2.387994926680281, 48.877811067117044], [2.388027258657222, 48.87792585029131], [2.388064626665644, 48.87806333310658], [2.3880969589528, 48.87817811623576], [2.38813432597334, 48.878315598091554], [2.388166659934151, 48.87843038118263], [2.388166812693076, 48.87843107354819], [2.388204180079502, 48.87856855535062], [2.388223039969146, 48.878685563730166], [2.38824189859075, 48.8788025711881], [2.3882641372643523, 48.87894780158039], [2.388282996062681, 48.87906480990327], [2.388305233599403, 48.87921004024637], [2.388324093948482, 48.87932704854189], [2.388338031788617, 48.879418074329344], [2.388343132519765, 48.87942320048665], [2.388391389547519, 48.87941734688038], [2.388412413259525, 48.87941134783808], [2.388448883208505, 48.8793999858554], [2.388456678363686, 48.879391402006185], [2.388449398341726, 48.879302354591985], [2.38843609843463, 48.879127960623464], [2.388428818484581, 48.879038913186676], [2.388442157196538, 48.87902943764086], [2.388624894471553, 48.879026947248974], [2.388850708609704, 48.879023925552715], [2.389033445845738, 48.87902143453725], [2.38925925993628, 48.87901841207036], [2.389441997133524, 48.879015920431236], [2.389667811176444, 48.879012897193725], [2.389805099288675, 48.87901102495004], [2.389812893373513, 48.87900658151865], [2.389812303016865, 48.87899156510226], [2.389767710074493, 48.87886931676512], [2.389723400929636, 48.878746953829896], [2.389678808405379, 48.87862470543248], [2.389634499677499, 48.87850234243723], [2.389589907571452, 48.878380093979565], [2.389545599271082, 48.878257730024934], [2.389501007572497, 48.87813548240633], [2.389456701052521, 48.87801311839859], [2.389456449662733, 48.87801223127604], [2.389428971545446, 48.877878811262384], [2.389401387285792, 48.8777438735134], [2.389373908087622, 48.87761045344767], [2.3893463241022133, 48.877475516552416], [2.389318846560741, 48.87734209554922], [2.389291262860112, 48.877207158608456], [2.389263785590621, 48.87707373845944], [2.389236202185312, 48.87693880057384], [2.389247134779498, 48.876928768552325], [2.389371528410493, 48.87691296155633], [2.3894979043701072, 48.87689622923619], [2.389508639552551, 48.87688581846481], [2.389467694401978, 48.8767358224143], [2.389429060824611, 48.87658894171133], [2.389388117499889, 48.87643894560018], [2.389349484367145, 48.876292064831986], [2.389349443501571, 48.87628915438588], [2.389380635300963, 48.8761572457137], [2.389412129469402, 48.87602279165248], [2.389443320939976, 48.8758908838314], [2.389474814785533, 48.87575642972119], [2.389506004585014, 48.875624520945735], [2.389537499460415, 48.87549006769278], [2.389537903320078, 48.87548887993551], [2.389578475716908, 48.87539699968453], [2.389618462367168, 48.87530820383489], [2.389641997276682, 48.87527228488151]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 38, "zemmour_eric": 63.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-31", "circ_bv": "16", "num_bureau": 31, "roussel_fabien": 27.0, "nb_emargement": 1200.0, "nb_procuration": 63.0, "nb_vote_blanc": 12.0, "jadot_yannick": 123.0, "le_pen_marine": 46.0, "nb_exprime": 1182.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1550.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1200, "quartier_bv": "75", "geo_point_2d": [48.87676723764834, 2.3885842620777993], "melenchon_jean_luc": 529.0, "poutou_philippe": 6.0, "macron_emmanuel": 284.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.35283882049259, 48.8281197308478], [2.352818505672242, 48.82810627690255], [2.352809838912564, 48.828092164690695], [2.352962052089792, 48.827958170329296], [2.353064662059494, 48.82786644155158], [2.353167271679177, 48.82777471177896], [2.353254819052886, 48.82769310925681], [2.353342364790427, 48.82761150665728], [2.353444973408597, 48.827519777524905], [2.353446563746733, 48.827510935378434], [2.3534408779697022, 48.82750204490101], [2.353436877541282, 48.82749828907014], [2.353405054998624, 48.827494186753576], [2.353384646300178, 48.82748139073103], [2.353358056461253, 48.827469003775334], [2.353338973034829, 48.827471264144606], [2.353238833896251, 48.827567608644785], [2.353140979224829, 48.82766051181355], [2.353040840707809, 48.82775685703839], [2.352942985328354, 48.82784976002948], [2.352842844730988, 48.82794610416562], [2.352744988632329, 48.82803900787836], [2.352742902842631, 48.828040566896966], [2.35259081557746, 48.82813276594446], [2.352429473413319, 48.8282283358999], [2.352415694909758, 48.828230087021126], [2.352287361504662, 48.828199072345924], [2.352158049588735, 48.82816690103186], [2.35202971649245, 48.82813588607844], [2.351900403518938, 48.828103715375924], [2.351897516310852, 48.82810322665876], [2.351720553147814, 48.828085933091884], [2.351547189756574, 48.82806967327495], [2.351370226834929, 48.8280523782899], [2.351196863664531, 48.82803611796465], [2.351023499240262, 48.8280198573805], [2.350846536650143, 48.82800256251907], [2.350843179853557, 48.828001936321236], [2.35071873336059, 48.82796683540261], [2.350597039317888, 48.827930914679165], [2.350472593149068, 48.82789581440151], [2.350350898079625, 48.827859893417944], [2.35034670086139, 48.827859155615116], [2.350167010353602, 48.82784723397508], [2.349989106175986, 48.82783669781666], [2.349986373924984, 48.82783634749956], [2.349857299658934, 48.82781250137648], [2.349726264825557, 48.827786293487286], [2.349597190791184, 48.827762447981726], [2.349466156225488, 48.827736238907065], [2.349459262222346, 48.82773307517994], [2.349425868020462, 48.827704073959666], [2.34937932555015, 48.82767031725541], [2.349361236057984, 48.82766910091852], [2.349230212316784, 48.82773208083476], [2.349044305607411, 48.82782226296267], [2.348913282449208, 48.8278852434298], [2.348727373283336, 48.827975425045274], [2.348596349368683, 48.8280384042573], [2.348591151681709, 48.828043495186044], [2.348565569635079, 48.828111100325515], [2.348536226870846, 48.82818587187101], [2.34852224309169, 48.82819259406727], [2.348416126803135, 48.828188484115536], [2.348316227097087, 48.8281833215005], [2.348306509870758, 48.82818534160747], [2.348141118941525, 48.82827517092806], [2.347982665017698, 48.828359887119305], [2.347824210578906, 48.82844460309429], [2.347658817996165, 48.828534431727086], [2.347656544432998, 48.8285354158323], [2.347472879019364, 48.828598665156775], [2.347294170477447, 48.828658846504645], [2.3471105042006, 48.82872209436636], [2.346931793443974, 48.82878227605796], [2.346748126292556, 48.82884552335622], [2.346569416056643, 48.82890570450716], [2.346540994144193, 48.828915006133215], [2.346539219164335, 48.82891946362555], [2.346579801952959, 48.828997507291], [2.346648457952535, 48.82913528332459], [2.34671129864934, 48.82925613010079], [2.346779955348291, 48.82939390512778], [2.3468427966615533, 48.82951475180702], [2.346911454037349, 48.82965252762605], [2.346974295978445, 48.82977337330897], [2.34699220384194, 48.82977881246613], [2.347164530113572, 48.82973366936573], [2.347328930853843, 48.82969014120994], [2.347501256540787, 48.829644997620775], [2.347665656720282, 48.829601468998675], [2.347830055251939, 48.829557941040775], [2.34800238006795, 48.829512796724245], [2.348003948203073, 48.82951245271877], [2.348190442889497, 48.82947697809592], [2.348393979575132, 48.82944121649925], [2.348422911477812, 48.82944146046722], [2.348429739207231, 48.82943010350356], [2.348621394064756, 48.82935674413385], [2.34880497402613, 48.829287786091264], [2.348996627832444, 48.829214426110966], [2.349180205423062, 48.82914546837557], [2.349363783901301, 48.829076509462205], [2.349555436144578, 48.82900314857262], [2.349569040825855, 48.82900312543132], [2.3497464623318782, 48.82907025444125], [2.349922274351147, 48.829137476961506], [2.350099696769133, 48.829204605439344], [2.350275509708162, 48.829271826533], [2.3504529330383113, 48.8293389544788], [2.350628746885882, 48.829406175045115], [2.350806169765837, 48.82947330245145], [2.350981985872906, 48.829540523397164], [2.351159409665025, 48.829607650271434], [2.35133522669184, 48.82967486979047], [2.351512651396017, 48.829741996132675], [2.351688469331275, 48.829809215124385], [2.35186589494751, 48.82987634093452], [2.352041713791415, 48.829943559398885], [2.352219140319707, 48.83001068467693], [2.352394960060886, 48.830077903513235], [2.352401754850697, 48.83007911398691], [2.352499077883493, 48.83008245956427], [2.352623513235061, 48.83008264932674], [2.3526371119891, 48.8300744595005], [2.352654544366173, 48.829946122556535], [2.352674770489903, 48.82983106826328], [2.352674824887875, 48.82983019796497], [2.352672236296473, 48.82969715413219], [2.352670747493518, 48.829564950854255], [2.352669257324796, 48.82943274845267], [2.3526666687784, 48.829299703673314], [2.352665178627705, 48.829167501240406], [2.352662591455865, 48.82903445733613], [2.352661101334155, 48.82890225397261], [2.352658512823747, 48.828769210029414], [2.352657022720064, 48.828637006634565], [2.352654435595363, 48.82850396266719], [2.352652945509498, 48.828371759241], [2.352650357046243, 48.82823871523473], [2.352655185556027, 48.8282317307507], [2.352722881355415, 48.82819395470884], [2.3528423243226, 48.82812651130232], [2.35283882049259, 48.8281197308478]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 52, "zemmour_eric": 67.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-57", "circ_bv": "10", "num_bureau": 57, "roussel_fabien": 30.0, "nb_emargement": 1230.0, "nb_procuration": 54.0, "nb_vote_blanc": 9.0, "jadot_yannick": 138.0, "le_pen_marine": 74.0, "nb_exprime": 1217.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1561.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1230, "quartier_bv": "51", "geo_point_2d": [48.82880930295542, 2.350052311276821], "melenchon_jean_luc": 440.0, "poutou_philippe": 12.0, "macron_emmanuel": 343.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.367829418244922, 48.85850936745307], [2.367835619160505, 48.85849886074958], [2.3678494344065992, 48.85844043832467], [2.367881833050112, 48.858309841531415], [2.367913484500079, 48.858175996818325], [2.367945882818616, 48.85804539997662], [2.367977533943406, 48.85791155521471], [2.368009930584983, 48.85778095741803], [2.3680415813736992, 48.857647113506594], [2.3680739790532073, 48.85751651566865], [2.368105629516758, 48.85738267170837], [2.368138025508523, 48.85725207381484], [2.368169675657722, 48.85711822890642], [2.368187662568569, 48.8570457203075], [2.368196154660804, 48.85703125324396], [2.36819289315969, 48.857016078389734], [2.368207303253601, 48.85695798995097], [2.368215236069919, 48.856924451925785], [2.368246761714811, 48.85679117559052], [2.368279156985071, 48.85666057758916], [2.368310682306806, 48.85652730120536], [2.368343078604649, 48.85639670406216], [2.368374602240476, 48.85626342762266], [2.368406998224946, 48.856132829531845], [2.368439394036221, 48.85600223231619], [2.368470917186934, 48.855868955803956], [2.368473189612423, 48.85585486238755], [2.368398884512231, 48.855843784126655], [2.368197817325823, 48.85587682243206], [2.368004740182239, 48.8559085490781], [2.36780367248509, 48.85594158761859], [2.367610594872341, 48.85597331272754], [2.367417517024578, 48.85600503752402], [2.367216448582756, 48.85603807507495], [2.367206118827502, 48.856047071509906], [2.367212253504776, 48.85618205953917], [2.367218382655633, 48.85631694409705], [2.367224517385532, 48.856451932992194], [2.367230647962747, 48.8565868175239], [2.367236782767117, 48.85672180548627], [2.367242912044967, 48.85685668997733], [2.3672331435187512, 48.85686558595132], [2.36704464683609, 48.85690226459844], [2.366791490501055, 48.85695152356624], [2.366602993207536, 48.85698820061548], [2.366425065715616, 48.85702282165938], [2.3662365665433542, 48.85705949812192], [2.366058638564492, 48.85709411861873], [2.365870138876367, 48.85713079450169], [2.365692210410568, 48.85716541445148], [2.365503711569468, 48.85720208976209], [2.365325782616738, 48.85723670916484], [2.36513728188595, 48.85727338478796], [2.364959352457252, 48.85730800274434], [2.364781422792119, 48.85734262043507], [2.364592921295103, 48.85737929519722], [2.364583263820952, 48.85738909808747], [2.364575972314895, 48.857440260227804], [2.364597738884904, 48.85754909634543], [2.3646192810854982, 48.85756692071521], [2.364622136970262, 48.85757135078445], [2.364647436468923, 48.85769784727064], [2.364669203295819, 48.85780668335002], [2.364694501671084, 48.857933178892885], [2.364716268694604, 48.858042014940665], [2.364706019667277, 48.858051923516264], [2.36458698999231, 48.858071287660216], [2.364473663298848, 48.85808972416726], [2.3644647495051663, 48.858094415496026], [2.364380037021932, 48.85820557115064], [2.364297381267199, 48.85831569171965], [2.364212669429946, 48.858426847240885], [2.364130012970442, 48.85853696767232], [2.364045299053441, 48.858648123045654], [2.363962641889157, 48.85875824333954], [2.363879984375576, 48.858868363565335], [2.363795270749264, 48.85897951873577], [2.363712612530791, 48.859089638824024], [2.363627896824696, 48.85920079384654], [2.363545237901421, 48.85931091379721], [2.363460522841397, 48.859422068686335], [2.363454869758114, 48.859437075712165], [2.363478295381187, 48.85944602741491], [2.363653258181956, 48.859441722815845], [2.363827057958788, 48.8594374468529], [2.364002020690948, 48.85943314264315], [2.364175819047594, 48.85942886616642], [2.364350781733096, 48.859424560547474], [2.364524581395424, 48.85942028357142], [2.364538710656489, 48.859428969855614], [2.3645450655374542, 48.85955442123254], [2.364551609210387, 48.859683617581034], [2.36455796415347, 48.85980906892846], [2.36456450926429, 48.859938264354554], [2.364585908085008, 48.85994534971861], [2.36474349371786, 48.8598731008902], [2.364901162523453, 48.859800813621334], [2.3650587486449233, 48.85972856437561], [2.3652164165757252, 48.85965627668199], [2.365374000459919, 48.8595840270045], [2.365531667516033, 48.859511738886134], [2.365689250525905, 48.85943948878408], [2.365846916696185, 48.85936720114022], [2.366004498831737, 48.859294950613666], [2.366162164138181, 48.85922266164575], [2.366319746762345, 48.85915041070189], [2.366477411194007, 48.85907812130925], [2.366634991580919, 48.8590058699336], [2.366792655137801, 48.85893358011623], [2.366950234650399, 48.858861328316095], [2.367107897332504, 48.85878903807395], [2.367265477333709, 48.8587167858565], [2.367423139141036, 48.8586444951896], [2.367580716905009, 48.858572242540426], [2.367738377837666, 48.8584999514488], [2.367829418244922, 48.85850936745307]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 65, "zemmour_eric": 101.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "3-7", "circ_bv": "05", "num_bureau": 7, "roussel_fabien": 14.0, "nb_emargement": 1187.0, "nb_procuration": 83.0, "nb_vote_blanc": 10.0, "jadot_yannick": 91.0, "le_pen_marine": 35.0, "nb_exprime": 1169.0, "nb_vote_nul": 8.0, "arr_bv": "03", "arthaud_nathalie": 3, "nb_inscrit": 1441.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1187, "quartier_bv": "11", "geo_point_2d": [48.85801787897877, 2.3661860439185083], "melenchon_jean_luc": 278.0, "poutou_philippe": 3.0, "macron_emmanuel": 531.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.378360102696906, 48.87080356918667], [2.378350514573967, 48.870815795343795], [2.378263759797075, 48.87088396957148], [2.378097822318264, 48.87101270111452], [2.377971594113233, 48.871111893208585], [2.377970637995658, 48.87111272912004], [2.377849928009008, 48.87123212188337], [2.377739139407144, 48.8713416077358], [2.3776184297226353, 48.87146100024799], [2.377507638784123, 48.871570485856374], [2.377386928049446, 48.87168987721109], [2.377276137489936, 48.87179936348892], [2.377155424330969, 48.87191875457836], [2.37704463279804, 48.87202824061917], [2.377026212960931, 48.872051369216585], [2.377067659827318, 48.87208030702372], [2.377242757663071, 48.87212857897743], [2.377433471764668, 48.87218013353056], [2.377608571638175, 48.87222840495186], [2.3777992864780773, 48.87227995801825], [2.377974385662986, 48.87232822889298], [2.378165101219599, 48.87237978227113], [2.378340202442361, 48.87242805261349], [2.37853091873736, 48.87247960450485], [2.378706020634591, 48.87252787430774], [2.378896737646408, 48.87257942651085], [2.379071838854923, 48.87262769576722], [2.379072042690377, 48.872627751684036], [2.379213321820764, 48.87266770898874], [2.37938842361953, 48.87271597777812], [2.379529703231814, 48.87275593470624], [2.379704806983641, 48.872804203036], [2.379842675013856, 48.87283576639904], [2.379843708153157, 48.87283601906886], [2.379981576351755, 48.87286758227099], [2.380171961521742, 48.87290850504739], [2.380172010470964, 48.8729085160929], [2.380376564474025, 48.87295592506797], [2.380566948924634, 48.87299684630657], [2.380770026366512, 48.87303835451665], [2.38096041142752, 48.87307927512641], [2.381163490878299, 48.873120781773686], [2.381353876539015, 48.873161702653846], [2.381556956624701, 48.87320320863049], [2.381747342895812, 48.87324412888184], [2.381748111429867, 48.873244277644204], [2.381934157526778, 48.873276425549335], [2.382137237158841, 48.87331793053019], [2.382165991034877, 48.873308806802164], [2.382197302238845, 48.87328557311125], [2.382208385831459, 48.873260216909806], [2.382223075215047, 48.87322660903226], [2.38223935021744, 48.873220355412506], [2.382244800271473, 48.873221216323266], [2.382442232598312, 48.87325239605837], [2.382645127476992, 48.87328443822125], [2.382661403906012, 48.87327817645795], [2.382716898377597, 48.873150816448174], [2.38277097711611, 48.87302670289346], [2.38282646968856, 48.872899342796856], [2.382880549257435, 48.87277523007068], [2.382936041304713, 48.87264786899496], [2.382990118988235, 48.872523756184016], [2.383044196424701, 48.87239964243538], [2.383099689024339, 48.872272282146795], [2.383153765927999, 48.87214816921969], [2.383209257991722, 48.87202080885129], [2.383206611526167, 48.87200943120703], [2.383188097264352, 48.87200565212459], [2.383056429065117, 48.87197289065612], [2.38292767778881, 48.87194053888679], [2.382798928046463, 48.871908186085804], [2.382667258975106, 48.87187542417931], [2.382661912025374, 48.871873007067194], [2.382537634754792, 48.871784149280764], [2.382392952570343, 48.871677511421], [2.382268674861744, 48.87158865333251], [2.382123995134081, 48.87148201513582], [2.381999718350823, 48.871393156752404], [2.381855038353524, 48.87128651820472], [2.38173076385875, 48.871197659533344], [2.38158608495506, 48.8710910206417], [2.381461810011584, 48.871002162567635], [2.381458586879679, 48.87100046415208], [2.381299793840997, 48.87093970357096], [2.381121889932656, 48.870872214052774], [2.380963097677683, 48.870811453017964], [2.3807851960175253, 48.870743962099255], [2.380626404546163, 48.87068320061074], [2.380448502397033, 48.87061570917675], [2.380289711709485, 48.8705549472345], [2.380111810423918, 48.870487456191576], [2.379953020520081, 48.87042669379563], [2.379775121482706, 48.87035920135224], [2.379616332362579, 48.87029843850257], [2.379438432836242, 48.87023094554386], [2.379279644499726, 48.870170182240535], [2.3792217009826713, 48.87013780236382], [2.379217819035133, 48.87013946129412], [2.379188266976501, 48.87016292732807], [2.379062042896447, 48.870262121547604], [2.3789277618697833, 48.87036469849952], [2.378801536804725, 48.87046389242623], [2.378667256097433, 48.87056646997356], [2.3785410300580923, 48.87066566270815], [2.378406746954425, 48.87076823993739], [2.37836727464675, 48.870799259037625], [2.378360102696906, 48.87080356918667]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 14, "zemmour_eric": 46.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-76", "circ_bv": "06", "num_bureau": 76, "roussel_fabien": 21.0, "nb_emargement": 1452.0, "nb_procuration": 90.0, "nb_vote_blanc": 11.0, "jadot_yannick": 92.0, "le_pen_marine": 37.0, "nb_exprime": 1436.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 2036.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1452, "quartier_bv": "77", "geo_point_2d": [48.871849034069704, 2.380247489869921], "melenchon_jean_luc": 924.0, "poutou_philippe": 8.0, "macron_emmanuel": 240.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358131932621784, 48.863399752593686], [2.3581440867755292, 48.86339903355029], [2.3581892944156913, 48.863385411694395], [2.358237561244731, 48.863375519622], [2.358283739798079, 48.863374367860054], [2.358290749432001, 48.86336746340069], [2.35841734438983, 48.86331197443028], [2.358565382161833, 48.86324175386279], [2.358691976532753, 48.86318626369628], [2.358762801016591, 48.86315411567893], [2.358763621111917, 48.86315371266964], [2.358940090725934, 48.863060019067525], [2.35910259833602, 48.86297279496809], [2.359265104027765, 48.862885571533134], [2.359441571842803, 48.862791876269576], [2.359604077776785, 48.862704651468135], [2.359780544358232, 48.862610956588796], [2.359784038339644, 48.86260360424364], [2.359760607751837, 48.86257946367219], [2.359652373578705, 48.86248339746949], [2.3595342621937743, 48.86237885232851], [2.359426030228844, 48.862282785011764], [2.359307919753013, 48.86217823962848], [2.3591996872592, 48.86208217208233], [2.359081579055267, 48.86197762646401], [2.358973347384507, 48.861881559595076], [2.35885523872655, 48.86177701372719], [2.358747009263968, 48.86168094574417], [2.358628901515086, 48.86157639963397], [2.358520671512538, 48.86148033232091], [2.358402566035509, 48.86137578597571], [2.358308282573315, 48.861300166121765], [2.358307857626079, 48.86129980770185], [2.358189751622346, 48.86119526112233], [2.358079896745793, 48.86109745251244], [2.357961791658219, 48.86099290568884], [2.3578519376363962, 48.86089509685186], [2.357733834827845, 48.86079054979155], [2.357623980286581, 48.86069274161942], [2.357505878394266, 48.86058819431507], [2.357396024718605, 48.86049038501654], [2.357286172807271, 48.860392576515196], [2.357168070910271, 48.86028802884183], [2.35705821986463, 48.86019021921409], [2.356940118883749, 48.860085671296716], [2.356917038700995, 48.86006061554797], [2.356890784036394, 48.860064934324264], [2.356860162191347, 48.860069809703916], [2.356840543478844, 48.86009073821509], [2.356656158640136, 48.86015238669069], [2.356482188008997, 48.86021019131084], [2.356297800949451, 48.86027184011961], [2.356123830884715, 48.860329644219874], [2.355939442978491, 48.860391292469885], [2.355765472117303, 48.86044909604298], [2.355581083375326, 48.86051074283489], [2.355407110343699, 48.86056854677278], [2.355233138300135, 48.86062634956281], [2.355048748289836, 48.86068799642395], [2.355037123824084, 48.86068990694381], [2.355022804977552, 48.86069696429684], [2.354863948395486, 48.8607528784415], [2.354679557500547, 48.86081452472677], [2.3545207001916593, 48.86087043840989], [2.354336309848639, 48.86093208326783], [2.354177451801685, 48.860987997388655], [2.353993059273596, 48.861049641703815], [2.353834200510971, 48.86110555446377], [2.353649808512415, 48.86116719915023], [2.353549761223688, 48.86120241140882], [2.3535409050217853, 48.86120848992282], [2.353564366159294, 48.861238346378286], [2.353719981102559, 48.86131015075285], [2.353874449897528, 48.86138142530995], [2.354030065695512, 48.86145322927206], [2.3541845353389013, 48.8615245034197], [2.354340153354601, 48.86159630697669], [2.354494623846413, 48.86166758071486], [2.354650241364986, 48.861739382952734], [2.354804712694084, 48.861810657180776], [2.354810328557697, 48.861819570304554], [2.354773276412181, 48.861959886260564], [2.354736139741374, 48.86210051740327], [2.354699085844368, 48.862240832394114], [2.354661948773134, 48.86238146347819], [2.354624894465255, 48.86252177930979], [2.354587756993487, 48.86266241033514], [2.354595059008663, 48.862671987279114], [2.354741326475154, 48.862720540263204], [2.354889146991099, 48.86276951603502], [2.355035413653587, 48.86281806774876], [2.355183234722711, 48.862867043153074], [2.355329503284978, 48.86291559540971], [2.355454667685441, 48.86295706389599], [2.355466296593542, 48.86295725782974], [2.355488953817148, 48.86296476437798], [2.355671739587724, 48.86291154145248], [2.355851693824357, 48.8628567759178], [2.356034480208508, 48.86280355244045], [2.356214432327792, 48.862748786347666], [2.356397217962486, 48.86269556231108], [2.35657717069057, 48.86264079567484], [2.356759954212782, 48.86258757107178], [2.356939906186436, 48.86253280388479], [2.357122690322205, 48.862479578729825], [2.35730264017851, 48.86242481098478], [2.3573202616378772, 48.862428606424984], [2.357420400795392, 48.862547385650494], [2.357509037934725, 48.862652518410556], [2.35759767405768, 48.86275765198696], [2.357697814480037, 48.862876430945114], [2.357786451364893, 48.86298156436045], [2.357886594011077, 48.863100343143934], [2.358013520454923, 48.86325089098312], [2.358113664136512, 48.86336966954775], [2.358131932621784, 48.863399752593686]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 64, "zemmour_eric": 79.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "3-11", "circ_bv": "05", "num_bureau": 11, "roussel_fabien": 19.0, "nb_emargement": 1276.0, "nb_procuration": 88.0, "nb_vote_blanc": 7.0, "jadot_yannick": 104.0, "le_pen_marine": 45.0, "nb_exprime": 1266.0, "nb_vote_nul": 3.0, "arr_bv": "03", "arthaud_nathalie": 4, "nb_inscrit": 1609.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1276, "quartier_bv": "12", "geo_point_2d": [48.86175562611776, 2.3567190002832], "melenchon_jean_luc": 336.0, "poutou_philippe": 6.0, "macron_emmanuel": 566.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303918041629505, 48.890056648542476], [2.3039565748204662, 48.89009409124973], [2.30402350418232, 48.89011734391143], [2.30404008358079, 48.89011534124189], [2.304170989168552, 48.89001759316169], [2.304321620212195, 48.88990179309661], [2.304452524734573, 48.88980404468965], [2.304603154534333, 48.889688244247886], [2.304685829003985, 48.88962650968204], [2.304694563378126, 48.88961553822607], [2.30464309979387, 48.889586062451556], [2.304612309418724, 48.88946391664923], [2.304583002197676, 48.88934765115802], [2.304552212104484, 48.88922550531368], [2.304522905163823, 48.88910923888323], [2.304518964724247, 48.889104269684935], [2.304386533642144, 48.88901925933486], [2.304258731513266, 48.88893722102975], [2.304255551025465, 48.888935700669364], [2.304105438801371, 48.88888379409682], [2.303954781143066, 48.888831699798686], [2.303950781892301, 48.888829605394854], [2.30382780124871, 48.88873547526974], [2.303704856168581, 48.8886413703957], [2.303581876414229, 48.888547240001856], [2.303458932210956, 48.888453135758425], [2.303335953345628, 48.888359005095914], [2.303213008679578, 48.88826489967663], [2.303090030703475, 48.88817076874542], [2.302967088277945, 48.888076663964725], [2.302844111202894, 48.88798253186552], [2.302721169666222, 48.8878884268162], [2.302598193468339, 48.88779429534757], [2.302475251468896, 48.88770018912243], [2.302352276160116, 48.88760605738507], [2.30222933640104, 48.88751195179853], [2.30210636198135, 48.88741781979246], [2.301983423123268, 48.88732371303806], [2.301860449592664, 48.88722958076337], [2.301737510247702, 48.88713547463162], [2.30173430366988, 48.887133676155194], [2.301598526597923, 48.88707881556463], [2.3014005650988922, 48.8869988298236], [2.301264788718184, 48.88694396974708], [2.301066828256492, 48.88686398254521], [2.300931052578886, 48.886809122083555], [2.3009246422709, 48.88680146012378], [2.300906512918666, 48.88680023640385], [2.300727070718816, 48.886746413080445], [2.300546796264655, 48.88669234090266], [2.300367353444777, 48.886638517026945], [2.300187081101315, 48.88658444431019], [2.300007639025056, 48.8865306198901], [2.299827367428652, 48.8864765466265], [2.2998101715005452, 48.88647995076398], [2.299718130640033, 48.886576633857565], [2.2996288712022652, 48.88667039412732], [2.299618651279525, 48.88667456300449], [2.299443799131809, 48.886685861825896], [2.299268933259791, 48.88669716121134], [2.299094080960315, 48.886708459521856], [2.29891921493663, 48.886719758396275], [2.298744362485299, 48.88673105619587], [2.298569496309854, 48.88674235455934], [2.298394643706775, 48.886753651848], [2.298219777379574, 48.88676494970045], [2.298195186991492, 48.88677068989802], [2.298194469691643, 48.88677170014004], [2.298203823206054, 48.886789126458126], [2.298267371625138, 48.88690752452296], [2.298331334109302, 48.88702669029732], [2.298394883096112, 48.887145089168136], [2.298458844812347, 48.887264253941396], [2.298462775763348, 48.887268052366494], [2.298619960280293, 48.88735778309134], [2.298778175233096, 48.88744810150132], [2.298935359485573, 48.887537830890174], [2.299093575532483, 48.88762814886861], [2.299250762223405, 48.887717878735934], [2.299408979364434, 48.887808196282805], [2.299566167142458, 48.887897925721425], [2.299724385377511, 48.8879882428367], [2.299881574254632, 48.88807797094729], [2.300039793583916, 48.88816828763103], [2.300196983535855, 48.888258016212085], [2.300355202595591, 48.888348332456275], [2.300364069315359, 48.88836044878199], [2.300373935791455, 48.88836200111907], [2.300539176639551, 48.88844050586254], [2.300696209296796, 48.88851577070886], [2.300853243783765, 48.88859103445275], [2.301018486069222, 48.88866953941765], [2.3011755214857432, 48.88874480272839], [2.301340764745052, 48.888823307237544], [2.301497799715363, 48.88889857100639], [2.301663043960589, 48.88897707416057], [2.301820081224162, 48.88905233750417], [2.301985326431184, 48.889130841101846], [2.30214236463638, 48.88920610311302], [2.302307610817263, 48.889284606254925], [2.302464649952022, 48.88935986783288], [2.302629897106771, 48.889438370519024], [2.3027869358073803, 48.88951363165582], [2.302952183935993, 48.88959213388625], [2.303109224917852, 48.88966739549703], [2.303274474020339, 48.88974589727167], [2.303431515943808, 48.88982115754997], [2.303596766020168, 48.88989965886887], [2.303753807509486, 48.889974918705995], [2.303919058559721, 48.89005341956913], [2.303918041629505, 48.890056648542476]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 169, "zemmour_eric": 201.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-37", "circ_bv": "04", "num_bureau": 37, "roussel_fabien": 2.0, "nb_emargement": 1160.0, "nb_procuration": 63.0, "nb_vote_blanc": 4.0, "jadot_yannick": 55.0, "le_pen_marine": 56.0, "nb_exprime": 1152.0, "nb_vote_nul": 5.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1399.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1161, "quartier_bv": "66", "geo_point_2d": [48.88813023448712, 2.301564190697039], "melenchon_jean_luc": 94.0, "poutou_philippe": 3.0, "macron_emmanuel": 543.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.387526865820916, 48.87612927178807], [2.387520811208206, 48.876112425098974], [2.387473400542616, 48.87599972732776], [2.387421276044122, 48.87587665229005], [2.387420786927906, 48.87587453545689], [2.387415378745708, 48.87576320371233], [2.387415226929278, 48.87561324104733], [2.387409818786096, 48.87550190927616], [2.387409824066149, 48.875501228508405], [2.3874096722664753, 48.87535126580778], [2.387417742625316, 48.87522952215997], [2.387428359641524, 48.87509411267644], [2.387436429927417, 48.87497236809969], [2.387447046842524, 48.87483695858292], [2.387455117034419, 48.87471521487581], [2.387458159729707, 48.874678963932524], [2.387441311004044, 48.87467211023234], [2.387380889567606, 48.874668604797364], [2.387245983987933, 48.87465990934712], [2.387031893845771, 48.87464748705767], [2.386896988379058, 48.874638791213954], [2.3868919595996623, 48.87463779687565], [2.386739059277842, 48.87458250145823], [2.386570136016959, 48.87452378720536], [2.386568361371625, 48.874523050550366], [2.386415463093523, 48.87446775472088], [2.386241709141118, 48.87438262338921], [2.386078192300929, 48.87429909295135], [2.385904439462411, 48.874213961117135], [2.385740925055918, 48.87413043021279], [2.385567173331281, 48.87404529787605], [2.385497362124774, 48.874009635264834], [2.385477740216804, 48.874003173544416], [2.385443801287435, 48.87403508754463], [2.385396939306304, 48.874056906710685], [2.385353692800937, 48.87407793232413], [2.38533686448769, 48.874090646134405], [2.385352051237032, 48.87410300721805], [2.385510471608546, 48.874182353989994], [2.385671802465283, 48.874262233497085], [2.3856765681261782, 48.874272237861355], [2.385612364717177, 48.87440088539808], [2.385548789748154, 48.87452801084308], [2.385484585708272, 48.874656658281445], [2.385421010115084, 48.874783783629105], [2.3853568054338012, 48.87491243186839], [2.385293229227154, 48.875039556219456], [2.385229023914869, 48.87516820436039], [2.385165447084243, 48.87529532861411], [2.385101241141049, 48.87542397665666], [2.385037663686234, 48.87555110081305], [2.3849740859105513, 48.87567822582028], [2.384909877669941, 48.87580687280927], [2.38484629927005, 48.875933997719144], [2.384782091761977, 48.87606264461679], [2.384718512737975, 48.8761897694293], [2.384654304598861, 48.87631841622859], [2.3845907249508382, 48.876445540943756], [2.384526516180777, 48.87657418764463], [2.384516568921138, 48.87658014763672], [2.384314032907962, 48.87661010701012], [2.384093358359805, 48.87664297469043], [2.383890821858881, 48.876672933346086], [2.383670146788109, 48.87670579934509], [2.383632736325062, 48.87671133277785], [2.383616412939963, 48.87671791008237], [2.3836214707337993, 48.876733285022915], [2.383662795649407, 48.87681912138552], [2.383706351776077, 48.87691033462661], [2.383747676972051, 48.87699617094613], [2.383791233395438, 48.87708738414165], [2.383807074267022, 48.87709347861208], [2.383993423899756, 48.87706733810872], [2.384176894281686, 48.87704161058598], [2.3843632448959973, 48.877015470411955], [2.384546714912431, 48.876989742321214], [2.38473306516617, 48.87696360067101], [2.384916534817199, 48.87693787201227], [2.38510288333633, 48.876911729778215], [2.385286353985346, 48.87688600055848], [2.385289250924509, 48.87688580409126], [2.385398129040458, 48.87688633254932], [2.385535672498408, 48.87688674454404], [2.385538362119522, 48.87688840322716], [2.385565917326711, 48.87688680805215], [2.385649289805101, 48.87688705787717], [2.38580264139594, 48.87688710552153], [2.3860235573405513, 48.87688776661586], [2.386176908933817, 48.87688781378079], [2.386180060008526, 48.876887571829855], [2.38637843263055, 48.8768565168621], [2.386578476496595, 48.87682523990084], [2.386776848643652, 48.87679418427112], [2.386976892031031, 48.876762906642355], [2.387175263703212, 48.876731850350694], [2.3873753052485203, 48.87670057204742], [2.387384703635765, 48.876695346463116], [2.387467652506292, 48.876566965042564], [2.387543617226971, 48.87644648262447], [2.387544142861123, 48.87644039323993], [2.3874838585083, 48.8763066869006], [2.387422011855493, 48.87616974391637], [2.387428103436099, 48.87615944895738], [2.387462727006404, 48.876145849259], [2.387481368509905, 48.87613919155932], [2.387526865820916, 48.87612927178807]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 26, "zemmour_eric": 48.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-15", "circ_bv": "16", "num_bureau": 15, "roussel_fabien": 23.0, "nb_emargement": 1194.0, "nb_procuration": 89.0, "nb_vote_blanc": 9.0, "jadot_yannick": 131.0, "le_pen_marine": 38.0, "nb_exprime": 1179.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1485.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1194, "quartier_bv": "76", "geo_point_2d": [48.87580235845676, 2.3860233759362384], "melenchon_jean_luc": 527.0, "poutou_philippe": 7.0, "macron_emmanuel": 322.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3412863345711212, 48.830266367043095], [2.341282002997945, 48.83027507070568], [2.341279865399606, 48.830317242243], [2.341270229030553, 48.830457916810886], [2.341263914083327, 48.83058250457926], [2.341254277622197, 48.83072317911258], [2.341247962616183, 48.83084776595132], [2.341241647568621, 48.830972353675214], [2.341232009613047, 48.83111302815027], [2.341225695868787, 48.831237614952], [2.341216057821227, 48.8313782893925], [2.341200425891237, 48.8314832688828], [2.341190789092176, 48.83162394329788], [2.341175157037639, 48.831728922761904], [2.341197556149274, 48.83175648149526], [2.341232135818957, 48.83176331472837], [2.341413164458594, 48.83171347827879], [2.341589681202873, 48.83166512586361], [2.341770707808876, 48.831615287961675], [2.341947225251256, 48.83156693502211], [2.342128251163117, 48.831517097473984], [2.34230476657918, 48.831468743994996], [2.342485791808255, 48.83141890590135], [2.342662307922307, 48.831370551897926], [2.342843332468694, 48.83132071325878], [2.343019846556529, 48.83127235871593], [2.343200871793551, 48.83122251863945], [2.343377385217162, 48.83117416356474], [2.343558408397956, 48.83112432383454], [2.343734922519639, 48.83107596823538], [2.343915945017632, 48.831026127959724], [2.344092457112994, 48.83097777182119], [2.344273478928185, 48.830927931], [2.344449991721607, 48.83087957433704], [2.344631012865295, 48.83082973207105], [2.344807523632392, 48.83078137486876], [2.344988545444044, 48.830731532964], [2.345165055547105, 48.83068317522982], [2.345346075313859, 48.83063333277211], [2.34552258611486, 48.83058497451352], [2.345703605198694, 48.830535131510324], [2.345880113973471, 48.83048677271237], [2.345906535391015, 48.83045828028538], [2.345905166037229, 48.83042117276692], [2.345868437031815, 48.830377536674185], [2.345849284066544, 48.8303752392466], [2.345835385746922, 48.830376704753476], [2.345743434328167, 48.83026217387486], [2.345658857124338, 48.83015621650936], [2.345566907833078, 48.83004168637921], [2.345482331345741, 48.82993572886802], [2.34539038148041, 48.82982119767289], [2.345305805709561, 48.82971524001606], [2.345213857982985, 48.82960070867011], [2.34512928156646, 48.82949475086015], [2.345037334616672, 48.829380219355976], [2.344952760278772, 48.829274261407804], [2.34486081273211, 48.829159730637244], [2.3447762391106712, 48.82905377254344], [2.344767931123382, 48.82904931739541], [2.344591068167468, 48.829015957321594], [2.344416841728633, 48.8289832140172], [2.344239979221638, 48.82894985342221], [2.344065753224227, 48.828917109604454], [2.343888891177475, 48.82888374758895], [2.343714665621498, 48.82885100325783], [2.343537804012359, 48.8288176416205], [2.343363580259949, 48.8287848967835], [2.343189355364366, 48.82875215168421], [2.343012494437973, 48.82871878836781], [2.342838269983835, 48.82868604275515], [2.342661409495054, 48.82865267981692], [2.342656318660022, 48.828652378425744], [2.342458910596023, 48.8286652686046], [2.342254185828055, 48.82867871540258], [2.342056778915686, 48.82869160582421], [2.341852053940475, 48.82870505193353], [2.341840765605955, 48.828710643280445], [2.341773070690241, 48.8288216771485], [2.341709498568561, 48.82892324346274], [2.34170851782895, 48.82892636788759], [2.341703355600671, 48.82905761126216], [2.341700997926647, 48.829191784930586], [2.341695835641699, 48.82932302917308], [2.341693477947673, 48.829457201910245], [2.341688315617512, 48.829588446121335], [2.3416859578807703, 48.82972261972592], [2.341680795516853, 48.829853863006306], [2.3416784377486533, 48.82998803657898], [2.341673275339521, 48.83011927982798], [2.341670917539963, 48.830253453368705], [2.341657520698882, 48.83026234098164], [2.341491652881057, 48.83026414303779], [2.34135811731166, 48.830266532140485], [2.3412863345711212, 48.830266367043095]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 65, "zemmour_eric": 53.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-55", "circ_bv": "10", "num_bureau": 55, "roussel_fabien": 24.0, "nb_emargement": 972.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 60.0, "le_pen_marine": 79.0, "nb_exprime": 951.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1271.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 973, "quartier_bv": "51", "geo_point_2d": [48.83010015725705, 2.343209469816201], "melenchon_jean_luc": 317.0, "poutou_philippe": 8.0, "macron_emmanuel": 294.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.282268143191398, 48.838974659773406], [2.282287894676777, 48.83896627831632], [2.282323861272458, 48.838941849510526], [2.282359359275332, 48.838916223515895], [2.282374615866433, 48.83891398027479], [2.282497220173918, 48.838947415126746], [2.282608904695615, 48.83897894424664], [2.282610676026961, 48.83897953046809], [2.282764070609776, 48.839039852057354], [2.282922163993755, 48.83910092200948], [2.2829453585300348, 48.83910431767734], [2.282955206986164, 48.83909071884832], [2.283059699927578, 48.838987111540064], [2.28316224023168, 48.83888606463657], [2.283264778775721, 48.838785017627835], [2.283369270501305, 48.83868140912152], [2.28337654108917, 48.83867781022103], [2.283560031533848, 48.8386398891867], [2.283741840112569, 48.838602287870096], [2.283925330037974, 48.83856436537356], [2.284107138077287, 48.838526764398495], [2.2842906274710533, 48.83848884133904], [2.28447243499576, 48.83845123890694], [2.284655923845536, 48.83841331618392], [2.28483773084338, 48.838375713194075], [2.285019537578806, 48.83833810992664], [2.285203026994662, 48.83830018636873], [2.285384833203216, 48.83826258254355], [2.28556832073727, 48.838224657515255], [2.285750126406522, 48.83818705403165], [2.285933613409011, 48.83814912844047], [2.286115418563503, 48.83811152349984], [2.286298905022004, 48.838073598245074], [2.286480709649611, 48.838035992746725], [2.286664195588752, 48.83799806602978], [2.286673649358086, 48.837998386822676], [2.286834285622441, 48.83804398231982], [2.286994822320081, 48.838089307192476], [2.287155460507849, 48.83813490226273], [2.287315997752496, 48.838180227599935], [2.287323980977667, 48.83818078330953], [2.287413352750509, 48.838168532971764], [2.287561185376247, 48.83814936654369], [2.287577026453004, 48.8381185818397], [2.287542132526863, 48.838101838149086], [2.287431828463828, 48.83807200546577], [2.287254394834185, 48.83802574318446], [2.2870846138278518, 48.83797982303902], [2.286907179457808, 48.83793356023075], [2.286737399057629, 48.83788763958872], [2.286559965309658, 48.837841376261586], [2.286390185515633, 48.837795455122965], [2.286212753751795, 48.83774919128511], [2.286042974564031, 48.8377032696499], [2.285865542059911, 48.83765700528509], [2.2856957634782082, 48.83761108315326], [2.285694909861242, 48.83761083792318], [2.28552309004011, 48.83755680899518], [2.285332837723082, 48.8374958515403], [2.285161020018636, 48.83744182209479], [2.285160074890904, 48.837441494470966], [2.2849698234194022, 48.83738053643243], [2.284785403475167, 48.8373103548046], [2.284611818624371, 48.83724083037485], [2.284427398293999, 48.83717064817817], [2.284253815748302, 48.83710112322837], [2.284069396394346, 48.837030940470946], [2.283895813441415, 48.836961414085515], [2.283711396413756, 48.836891231674834], [2.283537814403586, 48.83682170476121], [2.283537574535158, 48.836821611588306], [2.283381403157228, 48.83675933515117], [2.2832078220264442, 48.83668980775045], [2.28305165007515, 48.836627530867275], [2.282878071172977, 48.83655800388732], [2.282721900010546, 48.836495726566284], [2.282548320637272, 48.836426198192164], [2.282392151625929, 48.83636392044146], [2.282218573119026, 48.83629439247992], [2.2820624048965428, 48.83623211429136], [2.281888827280876, 48.836162584943814], [2.281732658484938, 48.83610030630922], [2.281695407499209, 48.836085384131884], [2.281695348945436, 48.836085381981455], [2.281656791566721, 48.83613727908115], [2.281668143215379, 48.83626243137145], [2.281679214089249, 48.83638729955667], [2.28169056722091, 48.83651245092578], [2.281701636839268, 48.836637319072786], [2.2817129900668283, 48.83676247131104], [2.281724059804389, 48.83688733852879], [2.281735413140243, 48.83701249073694], [2.281746482972224, 48.837137358824], [2.281757836428866, 48.83726251010277], [2.28176890636766, 48.83738737815978], [2.281757297979694, 48.83739680044551], [2.281594504633212, 48.83741268068203], [2.281423334100567, 48.83742921188391], [2.2814132420688242, 48.83744228840694], [2.281503630733532, 48.83755603283258], [2.281590830880599, 48.83766627565202], [2.281681220321355, 48.83778001992068], [2.281768421218738, 48.83789026258859], [2.281766742860967, 48.83790023555353], [2.281642889086589, 48.837996819279205], [2.28152257715882, 48.838089653073894], [2.281398722469531, 48.83818623742971], [2.281278409669681, 48.838279070963125], [2.281262818078173, 48.83828911770973], [2.28126755356062, 48.838300314576635], [2.281391966388374, 48.83838395545932], [2.281513291847868, 48.8384658472665], [2.281637705465057, 48.838549487881224], [2.281759031708329, 48.83863137852771], [2.281883446114956, 48.8387150188745], [2.282004773117225, 48.83879691015888], [2.282129188313297, 48.83888055023768], [2.282250516099346, 48.83896244036137], [2.282268143191398, 48.838974659773406]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 134, "zemmour_eric": 136.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-74", "circ_bv": "13", "num_bureau": 74, "roussel_fabien": 14.0, "nb_emargement": 1227.0, "nb_procuration": 59.0, "nb_vote_blanc": 13.0, "jadot_yannick": 92.0, "le_pen_marine": 70.0, "nb_exprime": 1211.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1572.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "60", "geo_point_2d": [48.83773805073916, 2.2833957350721037], "melenchon_jean_luc": 220.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291991049883198, 48.84126195194225], [2.291998127959426, 48.84126729112032], [2.292157841205554, 48.841346311438855], [2.292315513510645, 48.8414241520804], [2.292475227718636, 48.841503171964085], [2.292632902346827, 48.84158101128512], [2.292792617504478, 48.84166003163326], [2.292950291718847, 48.841737870516994], [2.293110007850569, 48.84181688953097], [2.293267684363647, 48.84189472889279], [2.293427401457242, 48.84197374747191], [2.293585077556501, 48.84205158639639], [2.293742755501285, 48.84212942421638], [2.293902474034339, 48.8422084421446], [2.294060151553013, 48.84228628042657], [2.294219871048048, 48.84236529791993], [2.294377550889937, 48.84244313488137], [2.294537271334581, 48.84252215283911], [2.29469495076254, 48.84259998936322], [2.294854672181347, 48.84267900598686], [2.294857895443827, 48.84268126531201], [2.294946985439282, 48.842770654266886], [2.295013365617513, 48.84284251554206], [2.295047376129512, 48.84288468586583], [2.295049395107086, 48.84288501524023], [2.295050939579329, 48.84288526807018], [2.295106280095529, 48.84286819410008], [2.2951317546060412, 48.84286620100895], [2.295378026363183, 48.8428536801471], [2.295566031281484, 48.842860823023386], [2.295592423782618, 48.8428607724781], [2.295602482595903, 48.84279905503131], [2.295701078011087, 48.842686082254325], [2.295800087907832, 48.84257245348966], [2.295898682466125, 48.84245948052691], [2.29599769013911, 48.84234585156767], [2.296096283840323, 48.84223287841908], [2.296195292026668, 48.84211924838193], [2.296293884870906, 48.842006275047574], [2.296392890821378, 48.8418926457151], [2.296491482808758, 48.84177967219495], [2.296590489260454, 48.84166604268388], [2.296689079040455, 48.84155306807069], [2.296788084630916, 48.841439438372994], [2.296886674904401, 48.841326464481284], [2.296985679633634, 48.84121283459704], [2.297084267687636, 48.84109986051156], [2.2971832715677802, 48.84098622954139], [2.29717772525543, 48.84097376047894], [2.297020406400129, 48.84091999544661], [2.296850647091336, 48.840861751967665], [2.296693328911409, 48.840807986499826], [2.296523571683231, 48.84074974345821], [2.296366254178876, 48.84069597755484], [2.296196496330707, 48.840637733135935], [2.29603917950183, 48.840583966797055], [2.295869422371827, 48.84052572280744], [2.295712106218324, 48.84047195603307], [2.295588613451407, 48.84042958447927], [2.29558540129874, 48.84042136960751], [2.295541654647019, 48.840418067624206], [2.29549539105092, 48.8404021938008], [2.295313641579213, 48.840339666628516], [2.29514388743024, 48.84028142070532], [2.29496213880125, 48.840218892992276], [2.294792384063936, 48.84016064745521], [2.294610637640185, 48.84009811920937], [2.294440883688916, 48.840039873167235], [2.2942711301292222, 48.83998162598188], [2.294089384955137, 48.839919096934096], [2.2940736180662222, 48.83992060566778], [2.293926399585369, 48.84001454121088], [2.293780886572636, 48.8401071591663], [2.29363366704948, 48.84020109343411], [2.29348815299576, 48.840293711018035], [2.293340932418113, 48.84038764490991], [2.293195417323401, 48.8404802621222], [2.293048195679057, 48.84057419653745], [2.29290267954334, 48.840666813378206], [2.292757164252811, 48.84075943004232], [2.292609939679963, 48.840853362987346], [2.292464423348426, 48.840945979279915], [2.292317197708846, 48.84103991274829], [2.292171680336293, 48.84113252866928], [2.292024453654392, 48.84122646086234], [2.291991049883198, 48.84126195194225]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 92, "zemmour_eric": 138.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-65", "circ_bv": "13", "num_bureau": 65, "roussel_fabien": 17.0, "nb_emargement": 1136.0, "nb_procuration": 57.0, "nb_vote_blanc": 21.0, "jadot_yannick": 87.0, "le_pen_marine": 60.0, "nb_exprime": 1113.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1376.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "57", "geo_point_2d": [48.84133637001086, 2.2946928793608494], "melenchon_jean_luc": 228.0, "poutou_philippe": 2.0, "macron_emmanuel": 432.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.264787514487668, 48.85584625002198], [2.264806568482284, 48.85587404670997], [2.264920148981491, 48.855954828050265], [2.265008830610364, 48.856021203277336], [2.265010852922762, 48.85602238216943], [2.265131749125444, 48.85608536761985], [2.265278797586149, 48.85615531088677], [2.265399694408474, 48.85621829695825], [2.265546743616679, 48.8562882389883], [2.265724019855107, 48.85636702445612], [2.265871069918398, 48.85643696607824], [2.2660483457903933, 48.85651575104669], [2.266195398071622, 48.85658569226929], [2.266198244268715, 48.85658673049643], [2.266388303355659, 48.856637600764735], [2.266595212408215, 48.85669644699545], [2.266785272282929, 48.856747316628265], [2.266944533103116, 48.856789722274534], [2.267103795545391, 48.85683212771552], [2.267293855048796, 48.85688299652601], [2.267294799120133, 48.85688322264975], [2.2674881382068808, 48.856923721829226], [2.267703582492215, 48.85696951739544], [2.267896922216903, 48.857010015911314], [2.268112367205605, 48.85705581163728], [2.268305707580858, 48.857096308590286], [2.268521153285762, 48.85714210357669], [2.26852132587418, 48.857142139706674], [2.2687146668749962, 48.857182636895104], [2.268900944988165, 48.85722043750723], [2.269094286574571, 48.857260934079456], [2.269222371562456, 48.85728692538966], [2.269243326681337, 48.85728734385318], [2.269261878483111, 48.85725747161986], [2.269268388186118, 48.85722674790188], [2.269276191476102, 48.85718483776141], [2.269292310596613, 48.857177105474136], [2.2694735454283013, 48.85720027870069], [2.269652353648086, 48.857223210202264], [2.269833588800166, 48.85724638288258], [2.270012398699493, 48.85726931385356], [2.270193632809294, 48.85729248597927], [2.270372443025189, 48.85731541641135], [2.270387812328221, 48.85730973264217], [2.270434333354473, 48.85722745425025], [2.270518389420055, 48.85707474383317], [2.270564911393163, 48.8569924653814], [2.270577155335245, 48.85697412474313], [2.270561802573491, 48.85696228013201], [2.270488641157371, 48.85684065899032], [2.270405008965004, 48.85669730388684], [2.270405115526533, 48.856690667265546], [2.270461641581588, 48.85659951378885], [2.270520475080777, 48.856500754074084], [2.27057700072799, 48.856409600527286], [2.270635833793988, 48.856310840738864], [2.27063115016175, 48.856300269898576], [2.2704926063765463, 48.85623397895429], [2.270350763740998, 48.85616444352384], [2.270212220661077, 48.85609815314614], [2.270070378769459, 48.85602861737486], [2.269931836420006, 48.85596232576514], [2.269789995272422, 48.855892789653], [2.26965145364074, 48.855826497710524], [2.269509613224478, 48.855756962156846], [2.269507699201812, 48.85574416426997], [2.269490062316984, 48.85573342256567], [2.269484753447307, 48.85572770799816], [2.269453528858609, 48.855606302507255], [2.269422195652178, 48.85548691899215], [2.269390972728858, 48.855365512567616], [2.269359639797938, 48.855246129909524], [2.269328417164658, 48.85512472344235], [2.269297084534466, 48.85500533984274], [2.269265860815906, 48.854883934223864], [2.269234528473729, 48.85476455058199], [2.269205101826737, 48.8547236666884], [2.269200029880853, 48.85472332183476], [2.269153182230218, 48.85473737601474], [2.268987773351992, 48.85478699962518], [2.268791226572586, 48.854843577253554], [2.26862581564982, 48.85489320035059], [2.268429268076705, 48.85494977737902], [2.26826385782228, 48.85499940087858], [2.26806730945556, 48.85505597730711], [2.267901897169119, 48.85510559939394], [2.267762676551388, 48.855146614564454], [2.267597265049921, 48.85519623623445], [2.267458042587416, 48.85523725103885], [2.267456830653543, 48.855237563791796], [2.267253009579847, 48.85528259243414], [2.267068510578718, 48.85532352018216], [2.266884009937485, 48.855364446736594], [2.266680187872454, 48.85540947439809], [2.266495687972125, 48.85545040125824], [2.266291865235296, 48.85549542825482], [2.266231024081094, 48.85550892422048], [2.266208527912858, 48.85550746420734], [2.266184964387597, 48.855518598585945], [2.2660613063475212, 48.85554602883908], [2.26588696596861, 48.85558531458609], [2.265702464822517, 48.855626240216715], [2.265528123904674, 48.85566552543808], [2.265343622205396, 48.855706449613216], [2.265169280735949, 48.855745735208174], [2.264984778470817, 48.855786658827085], [2.264810436462341, 48.855825943896384], [2.264787514487668, 48.85584625002198]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 189, "zemmour_eric": 179.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "16-18", "circ_bv": "14", "num_bureau": 18, "roussel_fabien": 1.0, "nb_emargement": 1124.0, "nb_procuration": 64.0, "nb_vote_blanc": 10.0, "jadot_yannick": 36.0, "le_pen_marine": 55.0, "nb_exprime": 1114.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1438.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1125, "quartier_bv": "62", "geo_point_2d": [48.85614100050123, 2.2681138984071945], "melenchon_jean_luc": 71.0, "poutou_philippe": 2.0, "macron_emmanuel": 562.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3380516308034203, 48.89339588860925], [2.3380418065521322, 48.89336350006095], [2.337871700219313, 48.89326729258101], [2.337740398868149, 48.89318135478686], [2.337739760798715, 48.89318101491141], [2.337589548440492, 48.89310695763103], [2.337439549139904, 48.89303194625283], [2.337289337638755, 48.892957888585826], [2.337139340563943, 48.89288287682889], [2.336989129919864, 48.89280881877524], [2.336839132343201, 48.89273380662457], [2.336688922556191, 48.89265974818431], [2.336538927205288, 48.89258473565496], [2.33638871827524, 48.892510676828046], [2.33623872242259, 48.89243566390486], [2.336088514349606, 48.892361604691345], [2.335938519358907, 48.89228659138201], [2.335788313506774, 48.8922125317894], [2.335638319377922, 48.89213751809384], [2.335488113019152, 48.89206345810705], [2.335338119752247, 48.891988444025266], [2.335187914250532, 48.89191438365187], [2.335037923209351, 48.89183936919144], [2.334985399736714, 48.8918245273484], [2.334968616812121, 48.89183846179995], [2.3349390828267342, 48.89192001215648], [2.334886490772672, 48.89205658996704], [2.334843172703047, 48.892176195053636], [2.334790580138637, 48.89231277279022], [2.334747262999354, 48.89243237782174], [2.334694669913102, 48.89256895638353], [2.334651350976563, 48.892688561344855], [2.334598757391438, 48.892825138933375], [2.334555438021431, 48.89294474383204], [2.334551775464353, 48.892948946701004], [2.334422157546674, 48.89303289042537], [2.33426817778914, 48.89313280454865], [2.334138557592703, 48.8932167479444], [2.333984578111031, 48.893316661693866], [2.333854956999644, 48.89340060476855], [2.333700975066185, 48.89350051812901], [2.333571354403567, 48.89358446089024], [2.333417371382237, 48.89368437386927], [2.333287748440929, 48.89376831630185], [2.333133765695351, 48.89386822890705], [2.333004141839074, 48.89395217101855], [2.332997898301059, 48.89395447807882], [2.332802925181834, 48.89398666417883], [2.332609081691626, 48.89402040309209], [2.332580706223339, 48.89403438859398], [2.332580096813307, 48.89404085852093], [2.332652997863176, 48.89410663115705], [2.332698777281532, 48.89414539884875], [2.3327127729763673, 48.89414886818176], [2.332901128087997, 48.8941210142713], [2.333090551708901, 48.89409203556736], [2.333278906412822, 48.89406418106127], [2.333468329616688, 48.89403520175827], [2.333656683912995, 48.89400734665658], [2.333846105335978, 48.89397836674694], [2.334034460588297, 48.893950511057156], [2.334223881594229, 48.893921530548496], [2.334412236438816, 48.8938936742631], [2.33460165702769, 48.89386469315537], [2.334790010100806, 48.89383683626679], [2.334979431636347, 48.893807854567584], [2.334995736615948, 48.89381441034289], [2.33503952979079, 48.89392861116652], [2.335085295996698, 48.894047035341764], [2.3351290881998032, 48.894161236100814], [2.335174856166158, 48.89427966112354], [2.33521864876137, 48.894393861825584], [2.335264415783556, 48.894512285882136], [2.335308208770977, 48.894626486527166], [2.335341563892427, 48.89471279340673], [2.335361445814756, 48.89473951198459], [2.33539638599072, 48.894733182220136], [2.335586252600453, 48.89477247583977], [2.335776373071575, 48.89481145759959], [2.335966241617399, 48.89485075062154], [2.336156362658752, 48.89488973177531], [2.336346231776801, 48.894929024192], [2.336536352024718, 48.894968004732185], [2.336726221714882, 48.89500729654359], [2.336916343896983, 48.895046276485296], [2.33710621414801, 48.89508556859071], [2.337296336911776, 48.89512454702709], [2.337329211381299, 48.89511773762239], [2.33732767205649, 48.895091332229256], [2.33724537596756, 48.894972828303864], [2.337160835444948, 48.89485184234753], [2.337078540102854, 48.894733339180846], [2.336994001732007, 48.89461235218857], [2.336911707148183, 48.894493848881346], [2.336827168178677, 48.894372862636565], [2.336744874353115, 48.8942543591888], [2.336660337535448, 48.894133371908076], [2.336578044468137, 48.89401486831974], [2.336493507063156, 48.8938938808873], [2.33641121475409, 48.89377537715845], [2.336326679477897, 48.8936543904886], [2.336336159000185, 48.8936418408191], [2.336484121957677, 48.893620549102764], [2.336566047457889, 48.89361295227327], [2.336588136242574, 48.89361666833841], [2.33661420681966, 48.893605140458575], [2.3366789376371733, 48.89359582501994], [2.336874894804561, 48.893569166203825], [2.337087587996961, 48.893538559059664], [2.337283544739579, 48.89351189957345], [2.337496237469355, 48.89348129080258], [2.337692195150916, 48.89345463065384], [2.337904887394965, 48.89342402205486], [2.338030004082699, 48.893406998900524], [2.3380516308034203, 48.89339588860925]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 62, "zemmour_eric": 82.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "18-39", "circ_bv": "03", "num_bureau": 39, "roussel_fabien": 32.0, "nb_emargement": 1447.0, "nb_procuration": 85.0, "nb_vote_blanc": 13.0, "jadot_yannick": 133.0, "le_pen_marine": 62.0, "nb_exprime": 1428.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1786.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1447, "quartier_bv": "69", "geo_point_2d": [48.89349347391654, 2.335644414397406], "melenchon_jean_luc": 546.0, "poutou_philippe": 10.0, "macron_emmanuel": 445.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.300633353877978, 48.835062881695634], [2.300640454686854, 48.83507871441518], [2.300664100964998, 48.83510667569245], [2.3007358087189322, 48.835191850989844], [2.300851052936317, 48.83532811960187], [2.300922761288297, 48.8354132956696], [2.300917233775838, 48.83542561085853], [2.300809557777811, 48.83546328398757], [2.300708312662295, 48.83549837564224], [2.300701271515023, 48.8355080477072], [2.300733641939695, 48.835618431750085], [2.300768477915661, 48.83572865121056], [2.300800849981856, 48.83583903522145], [2.300835686235297, 48.83594925553998], [2.300827757954052, 48.83595934692708], [2.300662065817757, 48.836006658415826], [2.300491467014453, 48.83605531612093], [2.300325774267773, 48.83610262713974], [2.300155174836469, 48.83615128436105], [2.29998948147961, 48.83619859490996], [2.299818881420307, 48.83624725164746], [2.2996531874652533, 48.8362945608272], [2.299482586765872, 48.83634321798017], [2.299316892200447, 48.83639052669001], [2.299176588573765, 48.83643054163239], [2.299159540651212, 48.836440375316144], [2.299169759580655, 48.836455816260866], [2.299307606821845, 48.83656073341405], [2.299447165852421, 48.836666255805426], [2.299585014208483, 48.83677117261916], [2.299724574352086, 48.83687669556634], [2.299862423823033, 48.83698161204062], [2.300001985103637, 48.837087133744966], [2.3000016471789912, 48.8370992094338], [2.29986920176078, 48.83719219200198], [2.299736544461453, 48.83728498880693], [2.299604096735834, 48.83737797105817], [2.299471438491837, 48.83747076755368], [2.299338991183606, 48.83756374950392], [2.299206331994733, 48.83765654568997], [2.299073883729541, 48.83774952823053], [2.298941222245617, 48.83784232319991], [2.298942281623173, 48.83785533432047], [2.299104585668568, 48.837946856655584], [2.299260467560087, 48.83803473915546], [2.299422772710714, 48.83812626194345], [2.299578655675134, 48.83821414401454], [2.299734539165299, 48.83830202587559], [2.299896845992705, 48.83839354709912], [2.300052730555778, 48.83848142853144], [2.300215038488445, 48.83857295020786], [2.300215672968241, 48.838573286686874], [2.30023451907637, 48.83857609415098], [2.300248183521738, 48.838563186273866], [2.300371382549207, 48.83845889367697], [2.300496421409693, 48.83835280037237], [2.300619619455273, 48.838248506600884], [2.300744657305701, 48.83814241301681], [2.300867854345368, 48.83803811986938], [2.3009928911858513, 48.837932026005845], [2.301116087243538, 48.83782773168378], [2.301241124436446, 48.8377216375488], [2.3012412209684, 48.83771067657458], [2.30110560335912, 48.83759279779463], [2.300972606259092, 48.83747512752395], [2.300970785057622, 48.83746656565592], [2.301026795572007, 48.837368879447354], [2.301081914598785, 48.83727619030184], [2.301082837951085, 48.83727337346856], [2.301089929497353, 48.837183749338166], [2.301098784146495, 48.837092082236005], [2.301105875640681, 48.83700245809013], [2.301114730231085, 48.83691079097196], [2.301118388197893, 48.83690521285458], [2.301253347130397, 48.836810190313365], [2.301389235967525, 48.83671446613938], [2.301524193900368, 48.83661944417567], [2.301660083105273, 48.83652371968559], [2.301795040050417, 48.83642869740009], [2.301930926898345, 48.83633297257806], [2.302065882867943, 48.836237949071446], [2.30220177008355, 48.836142223933344], [2.302336723691305, 48.83604720099636], [2.302472609912176, 48.83595147553422], [2.302607563894675, 48.83585645228341], [2.302743447758707, 48.835760726489305], [2.30274637869088, 48.835751630230305], [2.302671961092472, 48.83560994180144], [2.30259622114887, 48.835463152446444], [2.302603903736616, 48.835451944284955], [2.302659430565048, 48.8354367646318], [2.302708357901484, 48.83542311768475], [2.302726886486626, 48.83541414382998], [2.302715001302468, 48.8353969127074], [2.302619548711952, 48.835260653399885], [2.302520327200499, 48.83511928246542], [2.302424874276984, 48.834983022061444], [2.302325653821949, 48.834841650930436], [2.302308361556738, 48.834837048699505], [2.302187667908803, 48.83486798368344], [2.302076082475579, 48.83489762982734], [2.302066413388652, 48.83489775687971], [2.301924469338315, 48.83486428487256], [2.301781216585253, 48.834830481280804], [2.30163927290124, 48.83479700893321], [2.301496020518006, 48.83476320499791], [2.30148503683847, 48.834763733541095], [2.30127582503055, 48.83483720095152], [2.301069786908542, 48.834908944453225], [2.30086374821939, 48.8349806875954], [2.300654536027289, 48.835054153912864], [2.300633353877978, 48.835062881695634]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 109, "zemmour_eric": 83.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "15-58", "circ_bv": "13", "num_bureau": 58, "roussel_fabien": 19.0, "nb_emargement": 1233.0, "nb_procuration": 64.0, "nb_vote_blanc": 16.0, "jadot_yannick": 121.0, "le_pen_marine": 75.0, "nb_exprime": 1208.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1536.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1233, "quartier_bv": "57", "geo_point_2d": [48.83655043506987, 2.300858729119105], "melenchon_jean_luc": 217.0, "poutou_philippe": 8.0, "macron_emmanuel": 524.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.373488102983312, 48.868018144207106], [2.373488303752345, 48.86799997769166], [2.373500570929986, 48.86795252617498], [2.373524537208292, 48.867859512370096], [2.373558411759975, 48.86772848404166], [2.373582379195083, 48.8676354702135], [2.37356967199437, 48.8676249821519], [2.37339976362927, 48.86761895572675], [2.373232105377663, 48.867612865298604], [2.373062197101961, 48.867606837494854], [2.3728945402920782, 48.867600746601006], [2.372847847266017, 48.86758490648366], [2.372839442860768, 48.867590243198656], [2.372817863662454, 48.867619752595104], [2.372719165050766, 48.86775189524841], [2.37263456076243, 48.867867587209524], [2.3725499547350353, 48.86798327909156], [2.372451256118148, 48.86811542148772], [2.372442142588296, 48.868120202260165], [2.372250881775168, 48.86814981281955], [2.372055000819965, 48.86817534640872], [2.371863739584416, 48.868204956347995], [2.37166785824295, 48.86823048840302], [2.371476596573936, 48.86826009862147], [2.371280716198543, 48.86828563004881], [2.371280025262636, 48.86828572444747], [2.371083057011552, 48.8683092083356], [2.370887174884482, 48.868334740009885], [2.370690206270965, 48.86835822325051], [2.370494323778011, 48.86838375338145], [2.370297354802072, 48.86840723597456], [2.370101473284586, 48.8684327663679], [2.369904502583057, 48.86845624830628], [2.369708620699619, 48.86848177715633], [2.369645048373926, 48.86848935565894], [2.369628131469514, 48.86848488767818], [2.369591691612902, 48.868493599220706], [2.369458292847506, 48.868509501949404], [2.369274506927033, 48.86853229956294], [2.369077535476384, 48.86855578013834], [2.3688937492369, 48.868578576266955], [2.368696778791925, 48.868602057121294], [2.368512990859372, 48.86862485265714], [2.368316020078697, 48.86864833198459], [2.368132233168532, 48.86867112784133], [2.368122634591748, 48.86867584546866], [2.368032189155993, 48.868768626797625], [2.367936236876111, 48.86889143490635], [2.36792817021484, 48.86893201818115], [2.367956155824923, 48.86894026811664], [2.368034634217254, 48.86896621925426], [2.368173449447701, 48.869015391442396], [2.368369921895647, 48.869088668765734], [2.368508737768999, 48.86913784055959], [2.368509124560756, 48.86913798379658], [2.368674857764053, 48.86920136667178], [2.368871331629664, 48.86927464226049], [2.369037065697579, 48.869338025525586], [2.369233539224939, 48.86941130050348], [2.369328943127544, 48.86944778579283], [2.369345844018825, 48.86946508549708], [2.369378556069988, 48.86946999916619], [2.369448887177207, 48.86949689570364], [2.369570416291243, 48.8695394126908], [2.369570974359833, 48.86953959729666], [2.369750894833305, 48.869595326248806], [2.369925094140616, 48.869649694686835], [2.370105016736317, 48.869705423108265], [2.370279215418303, 48.86975979101831], [2.370459138773127, 48.86981551890191], [2.370633339556102, 48.86986988629832], [2.370813262306834, 48.86992561363692], [2.370987463827584, 48.86997998051257], [2.371197799330039, 48.87004124602716], [2.371372001649682, 48.8700956114382], [2.371546204321992, 48.87014997749232], [2.3717565411680273, 48.87021124201563], [2.37175675850972, 48.87021130700943], [2.371930961970509, 48.87026567249788], [2.372109913852125, 48.870320286572586], [2.372284118046049, 48.870374651541724], [2.372463069309093, 48.87042926507588], [2.37263727424688, 48.8704836286264], [2.372816227606869, 48.87053824253367], [2.372838036396119, 48.87055362576561], [2.372892709578863, 48.87055320084476], [2.372909581831252, 48.870538921417534], [2.37291746907202, 48.87050104934847], [2.372922513143743, 48.87049641540479], [2.372938041940238, 48.8704808257939], [2.372937509365534, 48.870475690481896], [2.372919348389834, 48.87046679171874], [2.372757969201408, 48.87041909513366], [2.372594153363383, 48.87037089451663], [2.372432774769821, 48.87032319748897], [2.372268959534292, 48.8702749964227], [2.372107581546437, 48.87022729805316], [2.371943766902567, 48.87017909743694], [2.371782389509586, 48.87013139862489], [2.371618575468212, 48.87008319755938], [2.371612148490285, 48.870070692692224], [2.371704899255984, 48.86995801223336], [2.371795095076551, 48.86984949481233], [2.371887845041809, 48.86973681508847], [2.371978041461458, 48.869628297514986], [2.37197841192288, 48.86962787407152], [2.37207435781552, 48.86952527095783], [2.372187673430965, 48.869403828683446], [2.3722836185096, 48.86930122448196], [2.37239693178662, 48.8691797819777], [2.372492876040419, 48.869077177587656], [2.372606189705418, 48.86895573486787], [2.37265638446127, 48.86890209426725], [2.372658580412137, 48.868900303500986], [2.372782309435597, 48.86882237306606], [2.372906225443678, 48.86874360079835], [2.373029953724557, 48.8686656700964], [2.373153868996215, 48.86858689666183], [2.373156801424268, 48.86858416993334], [2.373228444173221, 48.86848183604519], [2.3733008906625193, 48.86837759971445], [2.373372531481146, 48.86827526571378], [2.373444977394842, 48.86817102927634], [2.373446009691103, 48.868168848385096], [2.3734635620032742, 48.86810339098259], [2.3734851696817483, 48.86801981421582], [2.373488102983312, 48.868018144207106]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 41, "zemmour_eric": 63.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-27", "circ_bv": "06", "num_bureau": 27, "roussel_fabien": 42.0, "nb_emargement": 1509.0, "nb_procuration": 102.0, "nb_vote_blanc": 16.0, "jadot_yannick": 178.0, "le_pen_marine": 42.0, "nb_exprime": 1490.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 7, "nb_inscrit": 1784.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1509, "quartier_bv": "41", "geo_point_2d": [48.86892923605737, 2.3710409297278647], "melenchon_jean_luc": 575.0, "poutou_philippe": 13.0, "macron_emmanuel": 478.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.364876063880095, 48.87652712603912], [2.364852171927879, 48.87653508069084], [2.364697258737835, 48.876599177972054], [2.36453299875611, 48.876662934051076], [2.364378084793097, 48.87672703091187], [2.364213824017449, 48.87679078654556], [2.364058909281366, 48.87685488298584], [2.363894646348399, 48.87691863816693], [2.363888660225885, 48.87692348164569], [2.36385647776684, 48.876985602970244], [2.363813435588781, 48.87704869990535], [2.363808156905179, 48.87705266489307], [2.363633114201774, 48.877123836780584], [2.363449190836029, 48.87719600531469], [2.363274148534752, 48.877267175776026], [2.363090224165428, 48.877339343749235], [2.363084538067805, 48.87735041576659], [2.363116545723171, 48.87740314399144], [2.363142418673732, 48.877457027588086], [2.363136162437619, 48.87746755877234], [2.3629616505128, 48.87753304690316], [2.362790718018307, 48.877595688555395], [2.362616205240816, 48.87766117527573], [2.3624452719102322, 48.8777238164275], [2.362270756894642, 48.877789303528644], [2.362099822728064, 48.87785194417988], [2.361925308223232, 48.877917429877805], [2.361754373220765, 48.87798007002849], [2.361704342455673, 48.87800133960642], [2.361711462957024, 48.87802044612677], [2.36178478392098, 48.87814579213697], [2.36186748825172, 48.87828487234982], [2.361940811326778, 48.878410218241676], [2.362023515130641, 48.87854929830611], [2.362025641134477, 48.87855172254468], [2.362152636955297, 48.8786551164984], [2.362276097702982, 48.87875283107675], [2.362403093147957, 48.87885622473865], [2.362526554842384, 48.878953939040834], [2.362653552638311, 48.87905733242546], [2.362777015279389, 48.879155046451544], [2.362904012699582, 48.87925843954431], [2.363027476287214, 48.87935615329428], [2.363154474695027, 48.879459546102495], [2.363277939229427, 48.87955725957627], [2.363404939988234, 48.87966065210719], [2.363528405469311, 48.879758365304866], [2.363558603232571, 48.879782949884344], [2.363566946463399, 48.879785871198926], [2.363619212153031, 48.87976690334892], [2.363780540231446, 48.87968464551041], [2.363937162684281, 48.879605924701536], [2.364093784663638, 48.87952720368217], [2.364255111249987, 48.87944494518624], [2.364411732264544, 48.87936622373937], [2.364573057839188, 48.87928396570229], [2.364729677900021, 48.879205242928734], [2.364891002473737, 48.87912298445113], [2.364895859923188, 48.87911812774873], [2.364941401804098, 48.879002365443725], [2.36498850931001, 48.878885330766316], [2.365034049417976, 48.87876956839437], [2.365081157868573, 48.878652533663036], [2.365126697567051, 48.87853677123135], [2.365173805587927, 48.87841973733812], [2.365219344876921, 48.878303974846766], [2.365266451126575, 48.878186939985845], [2.365311991369521, 48.87807117744202], [2.365359097200432, 48.8779541425199], [2.365404635670479, 48.87783837990917], [2.365451742446073, 48.87772134493307], [2.365454324822887, 48.87771799241861], [2.365554190398627, 48.87764008551219], [2.3656771675536152, 48.877539936372415], [2.365695480570041, 48.877537572831876], [2.365701060266765, 48.87749892028887], [2.365606929692783, 48.87738767673499], [2.365507105884641, 48.877269700188926], [2.3654129747757953, 48.87715845645221], [2.365313151846218, 48.877040479719845], [2.365219022940369, 48.87692923491546], [2.3651192008784863, 48.87681125889614], [2.365025071437666, 48.876700013908824], [2.364925250254527, 48.87658203770328], [2.364890906277205, 48.87654144843353], [2.364876063880095, 48.87652712603912]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 37, "zemmour_eric": 51.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-20", "circ_bv": "05", "num_bureau": 20, "roussel_fabien": 17.0, "nb_emargement": 1064.0, "nb_procuration": 97.0, "nb_vote_blanc": 12.0, "jadot_yannick": 107.0, "le_pen_marine": 56.0, "nb_exprime": 1048.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 6, "nb_inscrit": 1360.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "40", "geo_point_2d": [48.878161511903194, 2.3638618667588402], "melenchon_jean_luc": 436.0, "poutou_philippe": 6.0, "macron_emmanuel": 286.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.384327962955263, 48.85011352496086], [2.384261303514904, 48.85013060870136], [2.384093778030956, 48.8501558870536], [2.383888005200833, 48.8501883105473], [2.383720480713008, 48.85021358838257], [2.383527745674967, 48.85022890166037], [2.383526146436381, 48.850229077787844], [2.383342055290936, 48.850241971075285], [2.383149320026176, 48.85025728464242], [2.382965228687856, 48.85027017734973], [2.382772493218694, 48.850285489410204], [2.382588400324806, 48.850298381530386], [2.3823956646406073, 48.850313692983406], [2.382211572916566, 48.8503265845305], [2.38201883701734, 48.850341895376175], [2.381834745100449, 48.85035478634315], [2.381642008975532, 48.850370097480706], [2.381457916865799, 48.85038298786759], [2.381457393211999, 48.85038301753716], [2.381285056224974, 48.850391086737616], [2.381071163801709, 48.85040058205323], [2.380898826696793, 48.85040865069724], [2.380684934141651, 48.850418144422946], [2.38051259554546, 48.850426213402756], [2.380298704210675, 48.85043570644494], [2.3801263655073, 48.85044377396904], [2.380124552416401, 48.85044393994964], [2.379945864682096, 48.850468486452414], [2.37973574663488, 48.85049674956617], [2.379557058547058, 48.850521294587836], [2.379410729912804, 48.85054097710525], [2.379382101442356, 48.850540470668534], [2.379364985046201, 48.85054939700393], [2.379301193818077, 48.850557977783936], [2.379060400186553, 48.85058763555501], [2.378850281178681, 48.850615897110806], [2.378848045465192, 48.850616304602866], [2.378681958521319, 48.85065692852636], [2.378463297071868, 48.85071193318751], [2.378387247732863, 48.85073053425385], [2.378369694835437, 48.850737647780164], [2.378391759941147, 48.850777482364435], [2.378426461096961, 48.850891662884834], [2.3784645297278, 48.85101750660126], [2.378499231202797, 48.8511316870759], [2.378537298822094, 48.85125753073498], [2.378572001979106, 48.85137171117092], [2.378610069949386, 48.851497554779684], [2.3786100765377443, 48.85149757370034], [2.378649958138766, 48.85163031124558], [2.378688026486222, 48.85175615480027], [2.378727908494531, 48.85188889138937], [2.378765977219143, 48.85201473489001], [2.378805859623817, 48.85214747142228], [2.378843928725588, 48.85227331486887], [2.378883810164078, 48.85240605133719], [2.37892188100577, 48.85253189473682], [2.378961762840632, 48.8526646311483], [2.3789998326968362, 48.852790474486774], [2.379039716290943, 48.85292321084847], [2.379077786524222, 48.85304905413287], [2.379078736359561, 48.85305100346001], [2.379184955445764, 48.85320579070415], [2.379286559425583, 48.85335186525503], [2.379294873398478, 48.85335673160506], [2.379476901255747, 48.85339463007836], [2.379642357267747, 48.85342359273916], [2.379807813463774, 48.853452555170435], [2.379989840655358, 48.853490453752364], [2.380155297256721, 48.8535194157014], [2.3802849862685163, 48.85354641595964], [2.380299296537302, 48.85355051017372], [2.38033096604043, 48.85353048465602], [2.380396572662546, 48.85342339331392], [2.380460638702532, 48.853318849007074], [2.380526246154467, 48.85321175758059], [2.380590310322005, 48.85310721227808], [2.38065591724098, 48.85300012076001], [2.380719980888161, 48.85289557536821], [2.380784045640948, 48.85279102993925], [2.38084965176368, 48.85268393828458], [2.38085159821636, 48.852681730555275], [2.381010107678909, 48.852549510458765], [2.381171900639294, 48.852418559919876], [2.381174258924981, 48.852410016581956], [2.381108820368222, 48.85228128663645], [2.381042882776847, 48.85215157196457], [2.380977444879874, 48.852022841018005], [2.3809115065799142, 48.85189312623654], [2.380846070694679, 48.85176439519526], [2.380780133038088, 48.85163468121054], [2.380714696439198, 48.85150595006048], [2.380648760809969, 48.851376235080956], [2.380583324860258, 48.85124750382916], [2.380517389874368, 48.85111778964642], [2.380451954573723, 48.850989058292825], [2.380386020252543, 48.85085934310831], [2.3803205856009573, 48.85073061165296], [2.380254651923093, 48.85060089726518], [2.380267189982855, 48.8505890466746], [2.380490231811953, 48.850584922540826], [2.3807005582436203, 48.85058097320351], [2.380923600014647, 48.85057684736254], [2.38113392637009, 48.85057289816274], [2.381344254067038, 48.85056894770094], [2.381567295724948, 48.85056482155928], [2.381580373114648, 48.850570541588716], [2.381639912666734, 48.8506712450247], [2.381700147849376, 48.85077226049366], [2.381759687863401, 48.85087296385181], [2.381819923522167, 48.85097397834287], [2.381879463998033, 48.85107468162313], [2.381939700122152, 48.85117569603561], [2.38195246313527, 48.85118139640922], [2.382155760880916, 48.85118057931528], [2.382357247308888, 48.851180006143224], [2.382560545042759, 48.851179188361556], [2.382762031450244, 48.8511786154072], [2.382965329172332, 48.85117779693774], [2.383166814207359, 48.851177223294705], [2.383370111917656, 48.85117640413747], [2.383571598305461, 48.85117582981983], [2.383774896003954, 48.85117500997485], [2.383976382381903, 48.851174434975576], [2.384033373439181, 48.85117690751697], [2.384038439328312, 48.851165573873175], [2.384092297698075, 48.851076352943736], [2.384164889745057, 48.85096824396985], [2.384241029173457, 48.8508421121801], [2.384313620596201, 48.850734002193875], [2.384378383660372, 48.850596272153], [2.384468002060547, 48.850448143004726], [2.384468442865373, 48.85044232106105], [2.384413107596928, 48.85031543981009], [2.384358242859247, 48.850180936220404], [2.384364269612659, 48.85013462714513], [2.384353489270195, 48.850128361639165], [2.384327962955263, 48.85011352496086]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 54.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "11-8", "circ_bv": "07", "num_bureau": 8, "roussel_fabien": 22.0, "nb_emargement": 1232.0, "nb_procuration": 113.0, "nb_vote_blanc": 10.0, "jadot_yannick": 128.0, "le_pen_marine": 47.0, "nb_exprime": 1219.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 0, "nb_inscrit": 1530.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "44", "geo_point_2d": [48.851533874722804, 2.3807450768229605], "melenchon_jean_luc": 479.0, "poutou_philippe": 12.0, "macron_emmanuel": 374.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332120635373362, 48.826864253100304], [2.332123552008045, 48.82687805593928], [2.332149785596845, 48.82693698032736], [2.332205782205063, 48.82705462483947], [2.332265252852776, 48.827188201382], [2.332321249991376, 48.82730584581371], [2.332380721221498, 48.827439422268924], [2.332417437048132, 48.8275165571977], [2.332426233576045, 48.82752977856897], [2.33243464646378, 48.827534664175666], [2.332453928337718, 48.82757517269543], [2.332512744691742, 48.82768951672811], [2.332568741565166, 48.82780716098375], [2.332627558444337, 48.82792150403696], [2.332678386832106, 48.82802303942772], [2.332729215417757, 48.82812457478772], [2.332788031644867, 48.82823891772204], [2.332788503721215, 48.828239710007765], [2.332874929892092, 48.82836655894504], [2.332956354280622, 48.828486291026664], [2.333037779031546, 48.82860602393934], [2.333124206416314, 48.82873287265504], [2.333205631949361, 48.82885260452782], [2.33329206150186, 48.828979454001214], [2.333368799829989, 48.829093586174885], [2.333455228828369, 48.829220434596216], [2.333531967868426, 48.829334566640625], [2.333618397663334, 48.82946141491675], [2.333652978306199, 48.829512844973486], [2.333673751450219, 48.82953102555303], [2.333722028789069, 48.82951737939184], [2.333816155996284, 48.82937388595593], [2.333905316639007, 48.82923183794522], [2.33399944282629, 48.829088344328504], [2.334088602481267, 48.828946296144956], [2.3341031715256593, 48.828940841610944], [2.334247676626937, 48.82895488851655], [2.334404657838776, 48.82896897140519], [2.334419720382708, 48.828962204693], [2.334465646610054, 48.828838698157966], [2.3345088879324623, 48.828716881868246], [2.334554812370329, 48.82859337526445], [2.334598053280915, 48.82847155891583], [2.334643977291546, 48.82834805225069], [2.334687217790316, 48.82822623584323], [2.334733141373516, 48.828102729116885], [2.334776381460475, 48.82798091265053], [2.334822304616452, 48.82785740586291], [2.334865544291607, 48.827735589337664], [2.334911467020162, 48.82761208248882], [2.334954706283518, 48.82749026590472], [2.334959943617514, 48.82748505076624], [2.335114870678549, 48.82741046982283], [2.335262902544469, 48.827338837178964], [2.335417828737619, 48.827264255833335], [2.335565859783485, 48.82719262190581], [2.335720785108749, 48.82711804015802], [2.33586881531184, 48.82704640674552], [2.33601684510815, 48.826974773145196], [2.336171769140906, 48.826900190798675], [2.336319798117255, 48.82682855591474], [2.336474721282134, 48.82675397316604], [2.336517661987108, 48.82673319387351], [2.336524977840311, 48.82671951446964], [2.336507945163053, 48.82669963188564], [2.3363136219575082, 48.82667544862113], [2.336130242671321, 48.82665328013786], [2.335935919813638, 48.82662909625864], [2.335752540862549, 48.826606926295995], [2.335558218341381, 48.826582742701405], [2.335374838351872, 48.82656057215108], [2.335180517540855, 48.82653638794933], [2.334997137875008, 48.82651421681898], [2.334813759727202, 48.82649204541451], [2.334619438069694, 48.826467860292034], [2.334613658500433, 48.82646796573979], [2.334410862107291, 48.826500941603214], [2.334207932211564, 48.82653219137471], [2.334005135323573, 48.82656516564892], [2.3338022035726063, 48.826596414722594], [2.333599407528676, 48.826629389213856], [2.333396475284648, 48.826660637597264], [2.333193544159339, 48.82669188564306], [2.332990745997018, 48.82672485909178], [2.332787813016585, 48.8267561064397], [2.332585015709936, 48.82678907920614], [2.332382082236263, 48.8268203258638], [2.332179284423217, 48.826853297940325], [2.332120635373362, 48.826864253100304]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 67, "zemmour_eric": 74.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "14-38", "circ_bv": "11", "num_bureau": 38, "roussel_fabien": 24.0, "nb_emargement": 1093.0, "nb_procuration": 64.0, "nb_vote_blanc": 11.0, "jadot_yannick": 118.0, "le_pen_marine": 43.0, "nb_exprime": 1077.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1329.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1093, "quartier_bv": "54", "geo_point_2d": [48.827604059126735, 2.3339526677123117], "melenchon_jean_luc": 313.0, "poutou_philippe": 4.0, "macron_emmanuel": 381.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.40086298663433, 48.84121592606624], [2.4009669690319733, 48.8412031102139], [2.401168776024749, 48.84118628991307], [2.4013861507288, 48.84116534536906], [2.401587957429746, 48.841148525259825], [2.401805330445381, 48.841127579946594], [2.402007138237606, 48.841110758237164], [2.402224510927273, 48.84108981216156], [2.40229107773661, 48.84108426387295], [2.402325570533197, 48.84108872345737], [2.402337303558284, 48.8410821555992], [2.402472542871403, 48.841070882310895], [2.402660559901596, 48.841055273100864], [2.402862367127517, 48.841038450846916], [2.403050383923971, 48.84102284102377], [2.403252189536036, 48.84100601810489], [2.403440206098741, 48.8409904076686], [2.403642011459403, 48.84097358409166], [2.403830027788353, 48.84095797304223], [2.404031832897601, 48.84094114880716], [2.404219848992787, 48.84092553714459], [2.4044216552232482, 48.840908711358914], [2.404609671074382, 48.84089309998256], [2.4046513722177663, 48.8408806895196], [2.404654261574816, 48.84087167073593], [2.404644069699931, 48.8408413979467], [2.404603351196599, 48.840713284818975], [2.404562618292963, 48.840592293617085], [2.404521898822096, 48.840464180426274], [2.4044811676749323, 48.84034318827714], [2.404440435354529, 48.84022219609428], [2.404399717825176, 48.84009408372548], [2.404399990271298, 48.84006487657287], [2.404356937051619, 48.84005830552787], [2.404230869507443, 48.84005618478874], [2.404086429273974, 48.84004567849557], [2.4040743905331152, 48.840037793192145], [2.404047985438485, 48.83989015402335], [2.404024131979355, 48.83975077557292], [2.403997727172487, 48.83960313635507], [2.4039738739791012, 48.83946375785884], [2.403950020913387, 48.8393243793404], [2.403923616532448, 48.839176740049844], [2.403930438738871, 48.839149428985955], [2.403916183905352, 48.83914067372691], [2.403794209328948, 48.83913802340109], [2.403579506708832, 48.83913262357533], [2.403381770589913, 48.839128325164275], [2.403167068052478, 48.83912292459821], [2.4029693319940693, 48.83911862640465], [2.402754628187317, 48.839113224192154], [2.402556892199723, 48.8391089253168], [2.402542822958954, 48.8391181130669], [2.402544944305036, 48.83918134872194], [2.4025478386992, 48.83924085408893], [2.402534092619312, 48.83925013518588], [2.40234561647853, 48.839248957128035], [2.402168344493791, 48.8392472555809], [2.401979868382009, 48.839246076047495], [2.401802595056597, 48.83924437395147], [2.401614118953192, 48.8392431947411], [2.401436845649627, 48.83924149210306], [2.401259572357542, 48.83923978920234], [2.40107109629334, 48.83923860823705], [2.400893823023118, 48.83923690479433], [2.400705348329608, 48.839235724158925], [2.400675234775407, 48.83920920222868], [2.400646715569431, 48.83921038589503], [2.400615670983024, 48.839239948823], [2.400544582131387, 48.83930764273141], [2.400429243900852, 48.83941194543349], [2.400327109662069, 48.839509202066665], [2.400320442095081, 48.83952598308769], [2.400296008298719, 48.8395874820852], [2.40027266444612, 48.83959699720368], [2.400305759407198, 48.83962290282146], [2.400300701413888, 48.83965148162619], [2.400300948529887, 48.83965451640811], [2.400348509303793, 48.83978248021026], [2.400393762364907, 48.839913987581596], [2.400441323603546, 48.84004195131714], [2.400486577113669, 48.840173459522106], [2.400534138816945, 48.840301423191015], [2.400579394159323, 48.840432930437856], [2.400600177756229, 48.84048885155084], [2.400596202113709, 48.84049831717798], [2.400607449691107, 48.84052721600526], [2.400634226929436, 48.840599258483635], [2.400680633897303, 48.84072628092203], [2.400728196581373, 48.84085424445043], [2.400774605367745, 48.84098126683018], [2.400822167152851, 48.841109230285184], [2.400849866321106, 48.84118504201032], [2.40086298663433, 48.84121592606624]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 43, "zemmour_eric": 85.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-40", "circ_bv": "08", "num_bureau": 40, "roussel_fabien": 19.0, "nb_emargement": 1058.0, "nb_procuration": 63.0, "nb_vote_blanc": 10.0, "jadot_yannick": 104.0, "le_pen_marine": 56.0, "nb_exprime": 1044.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1316.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1058, "quartier_bv": "45", "geo_point_2d": [48.8401452409281, 2.402378459224444], "melenchon_jean_luc": 289.0, "poutou_philippe": 8.0, "macron_emmanuel": 367.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345025005390149, 48.83515941302548], [2.345034675011182, 48.83517799297925], [2.345059940664685, 48.835299722428296], [2.345088137925127, 48.83542375680371], [2.345113402471588, 48.835545485307975], [2.345141599980887, 48.83566952054285], [2.345166866133628, 48.835791249016594], [2.345195062552067, 48.83591528330481], [2.345220328937586, 48.8360370126398], [2.34524852561618, 48.83616104688819], [2.345264599067108, 48.83616854027074], [2.345437056918256, 48.83614640275756], [2.3456050437056453, 48.83612411912045], [2.345777499903016, 48.83610198110808], [2.345945486401809, 48.836079696991945], [2.346117943669847, 48.83605755849529], [2.346285929879833, 48.836035273900215], [2.346458386856408, 48.836013134911816], [2.346626372777686, 48.8359908498377], [2.346635754123361, 48.83599183552597], [2.346727366750187, 48.836025980379986], [2.346815236107176, 48.83605715209479], [2.346822731163809, 48.83605819761824], [2.347027001141813, 48.83604781269592], [2.3472333716184552, 48.836037010788985], [2.347437641431719, 48.83602662516522], [2.347644011728124, 48.83601582344891], [2.34784828137654, 48.83600543712367], [2.348054651515211, 48.83599463379942], [2.348258920998663, 48.83598424677272], [2.348465290968431, 48.83597344273978], [2.348479309345648, 48.83597959792726], [2.348545568407417, 48.8361125526566], [2.34860700181358, 48.836242266710904], [2.348673261523699, 48.836375222237564], [2.348734696919535, 48.83650493620326], [2.348800957300492, 48.83663789072867], [2.348862393312346, 48.83676760549759], [2.348923828278958, 48.83689731931321], [2.348990091003469, 48.8370302736946], [2.349022493440884, 48.83706103662299], [2.349062108426458, 48.83707282886726], [2.349252573830123, 48.83705185230651], [2.3494433852757792, 48.83703075501098], [2.349633850372165, 48.83700977784232], [2.349824662860509, 48.83698868084456], [2.350015126298679, 48.83696770216132], [2.35020593847878, 48.8369466045545], [2.350396401598442, 48.836925626162675], [2.350587213481396, 48.83690452704759], [2.350777676293858, 48.8368835480479], [2.350968487868445, 48.83686244832376], [2.351158950373697, 48.83684146871617], [2.3513497616399093, 48.83682036838309], [2.351540225200289, 48.83679938817502], [2.351731036146932, 48.83677828813223], [2.351735756567389, 48.83677831551397], [2.3517993800098003, 48.836786084588596], [2.351863473678786, 48.836806220677175], [2.351872406428179, 48.83680473475904], [2.351896868964983, 48.83675791494269], [2.351945523634231, 48.83667527488545], [2.352005849739367, 48.83658815442859], [2.352011488359354, 48.83656823970548], [2.351950702851778, 48.83655434973287], [2.35184042265177, 48.83653902326033], [2.351711644615442, 48.83651344077443], [2.351703140789415, 48.836501147098936], [2.351790262251286, 48.836372991722655], [2.351881393309217, 48.8362406336667], [2.351968515259654, 48.83611247813814], [2.352059645409415, 48.83598011991554], [2.352146765124079, 48.83585196421991], [2.352237894365789, 48.835719605830704], [2.352225341311323, 48.8357068918347], [2.352014295553901, 48.83570843151341], [2.351807073451631, 48.835709357486344], [2.351596029034192, 48.8357108964344], [2.35138880555238, 48.835711821675325], [2.351177761101427, 48.83571336078474], [2.350970538964714, 48.83571428530843], [2.350759493140326, 48.83571582277316], [2.350552270986412, 48.83571674657223], [2.350341225139728, 48.83571828329897], [2.350134002968623, 48.83571920637342], [2.3499229570996523, 48.83572074236219], [2.349715734911371, 48.835721664712004], [2.3497030696804853, 48.83571613489114], [2.349634532221604, 48.83560311547169], [2.349550502684142, 48.83547017708244], [2.349481965879442, 48.83535715755072], [2.349397937127554, 48.835224219025065], [2.349329399614726, 48.835111199373664], [2.34924537163718, 48.834978261610935], [2.349176836152045, 48.8348652409554], [2.349092808960052, 48.834732303056256], [2.349024274129074, 48.83461928228843], [2.348997798643532, 48.83461421954163], [2.348976422993289, 48.834618604540196], [2.348932440299995, 48.83473196175814], [2.348875037439252, 48.83487438634972], [2.348831054309563, 48.83498774350449], [2.348773650878902, 48.83513016891415], [2.3487296673130142, 48.83524352600569], [2.348685683555729, 48.835356883069565], [2.348628279321366, 48.835499308362515], [2.348609663227209, 48.83550523814788], [2.348368916598444, 48.83543585181668], [2.348160576770116, 48.835382426423536], [2.348153015847371, 48.83537684870526], [2.348098626251378, 48.835261113811484], [2.348041009540828, 48.83514090491699], [2.347986620439599, 48.835025169947926], [2.347929005610326, 48.83490496098155], [2.347920717800242, 48.83489923268576], [2.3479003636840963, 48.83489403668611], [2.347706779277011, 48.834847053943236], [2.347542179987734, 48.83480503612599], [2.347357228317181, 48.83475782199546], [2.347163644905489, 48.83471083836783], [2.3469786925498273, 48.834663623640516], [2.346785109829141, 48.83461663939631], [2.346600159501577, 48.834569424986476], [2.346406576109611, 48.83452244011825], [2.346388712414033, 48.834528564340346], [2.346370328664154, 48.8345740978881], [2.346344588770244, 48.83461360682636], [2.346329094620138, 48.834629364543694], [2.346331330910157, 48.83463452655457], [2.346259907649712, 48.834744156060886], [2.346200487117801, 48.834815286169174], [2.346193208400204, 48.8348200346248], [2.346171031396555, 48.83482658851819], [2.346163072803547, 48.83483677174163], [2.345973542436243, 48.834888872972655], [2.345801273344876, 48.83493681069977], [2.34561174361462, 48.834988911360306], [2.345439473859931, 48.83503684856206], [2.345267202426097, 48.835084785506254], [2.345077671623921, 48.83513688531361], [2.345036107493764, 48.835148451150836], [2.345025005390149, 48.83515941302548]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 80, "zemmour_eric": 77.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-65", "circ_bv": "09", "num_bureau": 65, "roussel_fabien": 40.0, "nb_emargement": 1459.0, "nb_procuration": 90.0, "nb_vote_blanc": 17.0, "jadot_yannick": 155.0, "le_pen_marine": 43.0, "nb_exprime": 1441.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1736.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1461, "quartier_bv": "52", "geo_point_2d": [48.83583090204906, 2.3485515579006235], "melenchon_jean_luc": 424.0, "poutou_philippe": 8.0, "macron_emmanuel": 531.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.350618118111718, 48.821323442543864], [2.350619585388253, 48.82133959617657], [2.350620962667907, 48.82147375692243], [2.350622272239902, 48.821606793060134], [2.350623581807378, 48.82173983008145], [2.35062495911919, 48.821873989880174], [2.350626268700232, 48.82200702686981], [2.350627646014815, 48.82214118753595], [2.350628955620626, 48.82227422359462], [2.350630332949078, 48.82240838422884], [2.3506316425684552, 48.82254142025584], [2.350633019910982, 48.822675580858096], [2.350634329543926, 48.82280861685348], [2.350635706900424, 48.822942777423826], [2.3506370165469352, 48.82307581338755], [2.350638393917305, 48.823209973925934], [2.350631412079577, 48.823223638039195], [2.350647056535054, 48.823232727567174], [2.350795417962924, 48.823264192010015], [2.350962864596233, 48.82329982774163], [2.351141813859323, 48.8233377785929], [2.351309260965706, 48.82337341383714], [2.351488209371591, 48.82341136416019], [2.351655656951042, 48.823446998917056], [2.351834605861504, 48.823484948719226], [2.35200205391402, 48.823520582988735], [2.352006292764318, 48.82352101337647], [2.352194595954857, 48.82352033827968], [2.352386238303943, 48.82351927445132], [2.352574541483178, 48.823518598756195], [2.352766182456218, 48.82351753431157], [2.352954485624241, 48.82351685801822], [2.3531461265831233, 48.82351579296472], [2.353161558444529, 48.82351966371846], [2.353175758438093, 48.82351358878388], [2.353325681639273, 48.82349882690356], [2.353459032662457, 48.82348526044732], [2.353482023176491, 48.82348458430088], [2.353488499248631, 48.82347617055914], [2.353630617438012, 48.82341725611866], [2.353770263127044, 48.823359443374834], [2.353912380668634, 48.82330052949272], [2.354052025743754, 48.82324271551454], [2.354194142648907, 48.823183801291414], [2.354333787098968, 48.82312598697822], [2.354340143265244, 48.823117782096304], [2.354336551965092, 48.82308145032126], [2.354332844361765, 48.823048681252466], [2.354334901979311, 48.823043217848564], [2.354439274111796, 48.82293381709586], [2.354543364452612, 48.822824478578625], [2.354647735698702, 48.82271507852197], [2.354751825165792, 48.822605739802036], [2.354856195547762, 48.822496338642864], [2.354960284141033, 48.82238699972015], [2.355064653636634, 48.82227759925709], [2.355168741356098, 48.82216826013166], [2.355170829261689, 48.82216331131764], [2.355167706608974, 48.82204906709335], [2.35516346428704, 48.82190146155748], [2.355160343028098, 48.82178721731373], [2.355156100759436, 48.82163961084391], [2.355152978170254, 48.821525366566014], [2.355148735932724, 48.82137776096086], [2.355145614737301, 48.82126351666352], [2.355131710248913, 48.821254687120096], [2.354934382792584, 48.82125743075932], [2.354731316798884, 48.82126031488794], [2.354533989300193, 48.82126305786643], [2.354330923262434, 48.82126594131511], [2.354133595721391, 48.821268683632866], [2.353930528277644, 48.82127156639423], [2.353733200694259, 48.82127430805123], [2.353530134568415, 48.82127719014002], [2.353332806942697, 48.82127993113629], [2.353129740772827, 48.82128281254512], [2.352932413104787, 48.82128555288064], [2.352729346890901, 48.8212884336095], [2.352532019169381, 48.82129117418365], [2.352366954200245, 48.82129351446919], [2.35235493395848, 48.82128917011856], [2.352337087428631, 48.821294005655616], [2.352299084788537, 48.82129454450283], [2.352100138355829, 48.82129766143042], [2.351897072048816, 48.821300540745945], [2.351698125569202, 48.82130365700466], [2.351495059216644, 48.82130653563749], [2.351296111328294, 48.821309651219984], [2.351093044930201, 48.8213125291701], [2.350894098356804, 48.821315644091115], [2.350691031913187, 48.82131852135855], [2.350641347024462, 48.821319299334334], [2.350618118111718, 48.821323442543864]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 48, "zemmour_eric": 53.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-44", "circ_bv": "10", "num_bureau": 44, "roussel_fabien": 21.0, "nb_emargement": 1046.0, "nb_procuration": 39.0, "nb_vote_blanc": 11.0, "jadot_yannick": 56.0, "le_pen_marine": 78.0, "nb_exprime": 1032.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1517.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1047, "quartier_bv": "51", "geo_point_2d": [48.82230626189862, 2.352762522681231], "melenchon_jean_luc": 456.0, "poutou_philippe": 10.0, "macron_emmanuel": 264.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3744022678610612, 48.89468976860096], [2.3743780269092962, 48.894684199289856], [2.374278747341477, 48.89458178964293], [2.374178011638839, 48.894477098815806], [2.374078734223204, 48.89437468899081], [2.373977999323445, 48.89426999797568], [2.37387872269602, 48.89416758796551], [2.373777988599132, 48.89406289676234], [2.373678711385452, 48.89396048745914], [2.373577979466088, 48.89385579517584], [2.373554043356838, 48.89385689573502], [2.373474971809471, 48.89397176034915], [2.373389960574177, 48.894099616854675], [2.373310888285371, 48.89421448223432], [2.37322587626175, 48.89434233769576], [2.373146803242216, 48.89445720294159], [2.373061791772366, 48.89458505916467], [2.372982716669265, 48.89469992337031], [2.372897704400047, 48.89482777944857], [2.372818628566296, 48.894942643520416], [2.372733615497903, 48.89507049945386], [2.372654540297267, 48.895185363399065], [2.372569525065709, 48.89531321918057], [2.372490449134512, 48.895428082992], [2.372405434467434, 48.89555593863584], [2.372326356430838, 48.89567080320552], [2.3723087071801903, 48.89570245660545], [2.372319926421032, 48.895712351244285], [2.372370053936626, 48.89572958678555], [2.372543641030487, 48.895790283929564], [2.372715792673175, 48.89584947683367], [2.372889380569837, 48.89591017346989], [2.373061534376758, 48.89596936497836], [2.373235121701495, 48.89603006199893], [2.373407276297919, 48.89608925300392], [2.373580864436278, 48.89614994861742], [2.373753019811381, 48.89620914001824], [2.373926608752535, 48.896269835123945], [2.374098764917146, 48.89632902602123], [2.374272356025001, 48.8963897206263], [2.374444511626015, 48.89644891011368], [2.374618103525859, 48.8965096051102], [2.37479026128028, 48.89656879410124], [2.37496385262981, 48.89662948768359], [2.37513601116293, 48.89668867707036], [2.375309603315251, 48.896749370144875], [2.375481762648662, 48.8968085581289], [2.375655355592984, 48.89686925159487], [2.375827515715888, 48.89692843907541], [2.375835536857135, 48.896929386491834], [2.376032212842234, 48.89691296104342], [2.376226277145213, 48.896896382275344], [2.376422952893124, 48.896879955285456], [2.376617016948642, 48.896863375883726], [2.376813692437708, 48.89684694915095], [2.377007756256622, 48.896830368216264], [2.377204432861624, 48.896813940848396], [2.377398495058381, 48.89679736017224], [2.377595171426144, 48.89678093126297], [2.377789234739331, 48.896764349960215], [2.377985909484424, 48.89674792130092], [2.378179972550118, 48.896731339364514], [2.378376647057944, 48.89671490916378], [2.378570709876029, 48.8966983265937], [2.378767385499847, 48.89668189575789], [2.378961446706501, 48.8966653125471], [2.379155509153545, 48.896648729028655], [2.37935218439461, 48.89663229813097], [2.379546245230213, 48.896615713971805], [2.379742920233952, 48.89659928153268], [2.379936982185932, 48.896582696746925], [2.380133655577699, 48.89656626365857], [2.380327717282032, 48.896549678239204], [2.380524390415135, 48.89653324540794], [2.380718451871914, 48.89651665935485], [2.380915126131454, 48.89650022498923], [2.38110918597686, 48.89648363829548], [2.381305859977627, 48.89646720418692], [2.381499920950056, 48.89645061596732], [2.381696593338825, 48.89643418120955], [2.381890654052989, 48.89641759325555], [2.382087326204339, 48.896401156956344], [2.382281386670909, 48.8963845683687], [2.382478058563481, 48.89636813232661], [2.382672118782454, 48.89635154310535], [2.382868791801481, 48.89633510552885], [2.383062850408938, 48.896318515666884], [2.383259523179833, 48.89630207744822], [2.383453582903476, 48.89628548695965], [2.383650254051779, 48.89626904899107], [2.383844313527799, 48.896252457868854], [2.3840409844385, 48.89623601835884], [2.384067906935646, 48.896222712055334], [2.38406361144659, 48.89619634180388], [2.383986620160484, 48.89612668587458], [2.38390740365309, 48.89605306414974], [2.383793148865143, 48.89594969346584], [2.383713932889989, 48.895876072500386], [2.38370358727311, 48.89587238692141], [2.383500819981458, 48.89586573872111], [2.383309833362499, 48.89585919311063], [2.3831188454171173, 48.89585264808777], [2.382916078277014, 48.895845998897336], [2.38272509180399, 48.89583945235418], [2.382522324765571, 48.895832802497], [2.382331338379904, 48.8958262562251], [2.382128571443073, 48.89581960570118], [2.381937583802111, 48.89581305789494], [2.381734816967085, 48.895806406704224], [2.381543830777175, 48.89579985917629], [2.38134106404386, 48.89579320731888], [2.381150077962682, 48.895786658263646], [2.38094731133109, 48.895780005739454], [2.380756323973184, 48.89577345694841], [2.380553557454022, 48.89576680285818], [2.380362571558073, 48.895760253446184], [2.380159805129956, 48.895753599588495], [2.379968819342585, 48.895747048649234], [2.37976605301622, 48.89574039412478], [2.379575065952333, 48.895733843449676], [2.379372299727729, 48.89572718825845], [2.379181314136344, 48.89572063606315], [2.379169641448073, 48.89570622335428], [2.379104461322921, 48.895703675813486], [2.379038235881372, 48.89572850431605], [2.378850620542655, 48.89579809893312], [2.378677184392318, 48.895863120949734], [2.378489568085976, 48.895932714992604], [2.378316131047021, 48.89599773557913], [2.378142692200223, 48.896062756802785], [2.377955074459904, 48.896132349995625], [2.377781636088395, 48.896197369796226], [2.377594017380454, 48.89626696241486], [2.377583154291525, 48.896267685663915], [2.377373394096252, 48.89622320057108], [2.37716589528351, 48.89618217125083], [2.3769561371532, 48.8961376854308], [2.376748638999448, 48.89609665628366], [2.376538881580868, 48.89605216883007], [2.37633138409677, 48.89601113895678], [2.376123888314292, 48.89597010783022], [2.375914130564837, 48.89592562016947], [2.375907735378629, 48.89592274140339], [2.375780894083994, 48.89582013734825], [2.3756577507939163, 48.895720390670746], [2.3755309091210313, 48.89561778632476], [2.375407766788598, 48.8955180393718], [2.375284624917223, 48.895418293182374], [2.375157786079436, 48.895315688420006], [2.375034645176376, 48.895215941055866], [2.374907805960331, 48.895113336002666], [2.374784666014793, 48.89501358836305], [2.374657829148331, 48.89491098303327], [2.374534690149398, 48.89481123601749], [2.374407852904667, 48.89470863039689], [2.374406934146257, 48.894707791929456], [2.3744022678610612, 48.89468976860096]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 21, "zemmour_eric": 41.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-42", "circ_bv": "16", "num_bureau": 42, "roussel_fabien": 9.0, "nb_emargement": 816.0, "nb_procuration": 10.0, "nb_vote_blanc": 9.0, "jadot_yannick": 22.0, "le_pen_marine": 68.0, "nb_exprime": 804.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1236.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 818, "quartier_bv": "74", "geo_point_2d": [48.89590380878494, 2.3769503010342516], "melenchon_jean_luc": 491.0, "poutou_philippe": 1.0, "macron_emmanuel": 127.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.397262833491116, 48.87023104717901], [2.397251066953359, 48.87023140521864], [2.397070871748261, 48.87021191559085], [2.396881959086802, 48.87019425868003], [2.396701764148308, 48.87017476849587], [2.396512853099492, 48.87015711190807], [2.396332658427607, 48.87013762116759], [2.396143746285826, 48.870119963090495], [2.395963551880561, 48.87010047179372], [2.395830548714453, 48.87007840531217], [2.395804184519731, 48.87007321346693], [2.395793226199165, 48.870075354330105], [2.395772435449023, 48.87007941600362], [2.395757379407438, 48.870102920595926], [2.39565951003639, 48.87022027281358], [2.395549350063259, 48.87035819724243], [2.395548560530672, 48.87035938847304], [2.395500880097888, 48.87044968474056], [2.3954549164818832, 48.87053534818084], [2.395407235725706, 48.87062564439669], [2.39536127042686, 48.87071130867978], [2.39536092981765, 48.870716575268375], [2.395410255161466, 48.870841549700835], [2.395454503332484, 48.87095387897757], [2.395498751694241, 48.87106620822657], [2.395548077710239, 48.8711911816634], [2.395592326465035, 48.87130351175296], [2.395641654293513, 48.87142848513125], [2.395685902098766, 48.87154081425589], [2.395722106949341, 48.8716325403526], [2.395732594956854, 48.87164593763228], [2.395790232631287, 48.87163365948162], [2.395956553713519, 48.87164444915931], [2.396111765737943, 48.87165448467585], [2.396266979185333, 48.87166451999794], [2.396433299101591, 48.87167530900601], [2.396444485381815, 48.87168070026591], [2.396520424882897, 48.87179697144338], [2.396596138413536, 48.87191324231898], [2.396672079955327, 48.872029513382635], [2.396747792809743, 48.872145783231666], [2.39682373502909, 48.87226205417461], [2.396899449912905, 48.87237832480933], [2.396975391446532, 48.87249459562474], [2.397051107006796, 48.8726108661391], [2.397127049217989, 48.87272713683381], [2.397202765465321, 48.87284340632843], [2.397278708354086, 48.87295967690241], [2.397354425267574, 48.873075947175934], [2.397430368833922, 48.87319221762924], [2.397506086434389, 48.87330848688303], [2.397582030678325, 48.87342475721561], [2.397657748944973, 48.87354102724825], [2.397671783861123, 48.8735464156286], [2.397855784849153, 48.873532903457324], [2.398026769704456, 48.87351903416348], [2.398055527200688, 48.87351773804653], [2.398057039746099, 48.87350058277595], [2.398056556443096, 48.87345038495534], [2.398055660149891, 48.87331134530277], [2.398054445251235, 48.873185128527155], [2.398053547594538, 48.87304608973359], [2.398052332707188, 48.87291987292761], [2.398051435060701, 48.872780834100624], [2.398050220184658, 48.872654617264345], [2.398049322558773, 48.872515577504636], [2.398048107694034, 48.872389360638], [2.398049860567856, 48.872384910553876], [2.398161956850292, 48.8722535931394], [2.398275030521031, 48.87212082090074], [2.3983871243042, 48.87198950323716], [2.398500196827708, 48.87185673075406], [2.398499479707524, 48.8718471690222], [2.398454515805677, 48.8718047993447], [2.398408539528976, 48.87176167811241], [2.398407879524706, 48.87175201234335], [2.398499710078003, 48.87164859707935], [2.398601321758937, 48.87153233711688], [2.398693151540905, 48.87142892168389], [2.398794762351183, 48.871312662433375], [2.398886591361832, 48.871209246831434], [2.398988201311848, 48.87109298739359], [2.399080029551187, 48.870989571622665], [2.3991816386513243, 48.870873311098244], [2.399243420088925, 48.870803732944125], [2.399235486839229, 48.87078980469017], [2.399215804688285, 48.870783088592454], [2.39905309637333, 48.87073573030123], [2.398873881347776, 48.8706820142241], [2.398711172296269, 48.87063465545695], [2.3985319579814472, 48.87058093796368], [2.3983692509196652, 48.87053357873425], [2.398190037294911, 48.87047986162342], [2.39818908934914, 48.8704795474858], [2.397978716262007, 48.870393793728425], [2.397854361262973, 48.87034852067707], [2.397852397604806, 48.87034785878002], [2.397728042825322, 48.87030258559553], [2.397618702857193, 48.87027280695925], [2.397615417355976, 48.87027221664813], [2.397463784252526, 48.870258009260496], [2.3972835888758093, 48.87023851995335], [2.397262833491116, 48.87023104717901]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 49, "zemmour_eric": 69.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-16", "circ_bv": "15", "num_bureau": 16, "roussel_fabien": 34.0, "nb_emargement": 1279.0, "nb_procuration": 87.0, "nb_vote_blanc": 13.0, "jadot_yannick": 99.0, "le_pen_marine": 66.0, "nb_exprime": 1262.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1548.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1279, "quartier_bv": "78", "geo_point_2d": [48.87138916834736, 2.397243575757512], "melenchon_jean_luc": 499.0, "poutou_philippe": 10.0, "macron_emmanuel": 373.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.310061005422707, 48.88053100842669], [2.310042405965211, 48.880594339480965], [2.31004895669064, 48.880674195973604], [2.3100555706030432, 48.88075484244075], [2.310052081878518, 48.8807645711329], [2.310064442844185, 48.880772275029905], [2.310205382208668, 48.88087567796991], [2.310345405172082, 48.880978408145225], [2.310486345652367, 48.881081810735104], [2.310626368372632, 48.88118453965544], [2.310766392997007, 48.88128726930956], [2.310907335148934, 48.88139067137483], [2.311047359518263, 48.88149340067326], [2.311188302785912, 48.88159680238838], [2.311328329627217, 48.881699531346804], [2.3114692740106, 48.88180293271182], [2.311471631081631, 48.88180534928951], [2.311474024536317, 48.881825950621554], [2.311492206012705, 48.881853440819036], [2.311492522538888, 48.8818663202106], [2.311503319410722, 48.88187334135217], [2.311556957636255, 48.88195443791846], [2.311624733577274, 48.88204979195074], [2.311696553864229, 48.88215837860847], [2.311764330338249, 48.8822537316448], [2.31183615119753, 48.88236231819863], [2.311903926829035, 48.88245767113041], [2.311904916479306, 48.88245883156316], [2.312006553106095, 48.88255969859332], [2.312107741884536, 48.882660123178276], [2.312208932428654, 48.882760546777135], [2.312310568869584, 48.88286141351369], [2.312411760195953, 48.88296183692275], [2.312513397422586, 48.883062703468696], [2.312614589519344, 48.88316312758721], [2.312716227531689, 48.88326399394249], [2.312718912537375, 48.883265956412245], [2.312867294628406, 48.88334660144288], [2.313017645797046, 48.88342831609461], [2.313166028813202, 48.88350896074314], [2.313316380919346, 48.88359067500764], [2.313464764860734, 48.88367131927403], [2.313615117904388, 48.88375303315134], [2.313648055805615, 48.88378921777124], [2.313671960532795, 48.88378021848476], [2.313693650912101, 48.88377492703991], [2.313737311928949, 48.88375694243745], [2.313740935207666, 48.883754764337084], [2.313866514652993, 48.88364517911], [2.313992558031891, 48.883536048766004], [2.314118136408459, 48.883426464152485], [2.31424417874254, 48.883317332622624], [2.314369756062108, 48.88320774772344], [2.314495795964249, 48.88309861679844], [2.314621372238769, 48.88298903071425], [2.314747412447723, 48.88287989951052], [2.314872987665463, 48.88277031314064], [2.31499902545425, 48.882661181642526], [2.315124599615122, 48.88255159498695], [2.315250637710832, 48.88244246321011], [2.315369082554826, 48.88233603893343], [2.315495118253096, 48.88222690687001], [2.3155175761721543, 48.88220672920972], [2.315519610919721, 48.88220577675691], [2.315533681626171, 48.88219221250767], [2.315629667495992, 48.882105966513805], [2.315744400786363, 48.881998373974824], [2.315862843599588, 48.881891950066006], [2.315977574573207, 48.8817843572749], [2.316096016434899, 48.88167793221542], [2.31621074644349, 48.88157034007921], [2.316329187342046, 48.88146391476838], [2.316443916397432, 48.88135632238782], [2.316447888931375, 48.8813159829378], [2.316400792722384, 48.881304926513344], [2.316197446201427, 48.8812791324716], [2.316000424044486, 48.88125552812216], [2.315797077914711, 48.881229733399245], [2.315600056126022, 48.88120612838985], [2.315403033152537, 48.88118252304797], [2.315199688967211, 48.881156727316494], [2.315002666362094, 48.88113312131468], [2.314799322567871, 48.881107324902054], [2.314602300331129, 48.88108371824029], [2.314398956928223, 48.88105792114651], [2.314201935059866, 48.88103431382486], [2.313998592048081, 48.881008516049924], [2.313801570548118, 48.88098490806835], [2.31359822793952, 48.88095910871298], [2.313401208171356, 48.88093550007933], [2.313197864578656, 48.88090970093425], [2.313129300669778, 48.880901485164244], [2.313118722083282, 48.880897969225416], [2.313088871408928, 48.88089719540187], [2.312960415928822, 48.880881802734145], [2.3127571571942402, 48.880856837906904], [2.312560138194264, 48.88083322788697], [2.312356879841145, 48.88080826237908], [2.312159861206503, 48.88078465169939], [2.311956603234857, 48.88075968551082], [2.311759584965356, 48.88073607417138], [2.311556327375193, 48.88071110730214], [2.311359309471043, 48.880687495302965], [2.311156052262371, 48.88066252775306], [2.310959033359997, 48.880638915086294], [2.310755777896211, 48.88061394686358], [2.310558759359106, 48.880590333537064], [2.31035550427693, 48.88056536463368], [2.310158486105105, 48.88054175064741], [2.310072774251056, 48.88053122104276], [2.310061005422707, 48.88053100842669]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 135, "zemmour_eric": 165.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-45", "circ_bv": "04", "num_bureau": 45, "roussel_fabien": 9.0, "nb_emargement": 1349.0, "nb_procuration": 100.0, "nb_vote_blanc": 19.0, "jadot_yannick": 77.0, "le_pen_marine": 43.0, "nb_exprime": 1327.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1639.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1349, "quartier_bv": "66", "geo_point_2d": [48.88191523596216, 2.313324752969645], "melenchon_jean_luc": 135.0, "poutou_philippe": 6.0, "macron_emmanuel": 720.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.280546134494349, 48.831946869166174], [2.280481471346281, 48.83195143394854], [2.280455084629386, 48.83196113328819], [2.280422272036373, 48.831973194401485], [2.2803533126759, 48.83199854307728], [2.280175756054404, 48.832061686583714], [2.280001981548666, 48.83212556130359], [2.27982442406899, 48.83218870428132], [2.279650647347247, 48.8322525784753], [2.279473090371503, 48.8323157209325], [2.279299312795864, 48.832379594608796], [2.279121753587392, 48.832442737428366], [2.279091368095088, 48.83245390623084], [2.279039267321739, 48.832473055618046], [2.279021578393965, 48.83247862046566], [2.279019873974957, 48.83248207999099], [2.278901466131315, 48.83259157771398], [2.278785946332858, 48.83269877952764], [2.278667537505538, 48.83280827699786], [2.278552018120488, 48.832915477673744], [2.27843649824777, 48.833022679127104], [2.278318086588576, 48.83313217621147], [2.278202565754577, 48.83323937741813], [2.278084153111773, 48.833348874249715], [2.278080071156563, 48.83335136247173], [2.277908981704819, 48.83341907357762], [2.277733635811014, 48.83348865641976], [2.277562545458673, 48.83355636702183], [2.277387198628154, 48.83362595024687], [2.277216108749835, 48.83369365945399], [2.277040759632809, 48.83376324215442], [2.277034862627025, 48.83377380836614], [2.277080115390284, 48.83386292594445], [2.277125007374239, 48.833949777585616], [2.277170260456839, 48.83403889421652], [2.277215152742426, 48.83412574581022], [2.277213291413781, 48.83413392608526], [2.27710172524532, 48.83423561439469], [2.276992225580557, 48.83433541919934], [2.276880657174861, 48.834437108175344], [2.276771156663577, 48.83453691275961], [2.276659587395372, 48.83463860151109], [2.276550086037662, 48.83473840587504], [2.276539551628328, 48.83474845834189], [2.276545426737937, 48.83475784109538], [2.276599838158566, 48.834881066353745], [2.276654644309891, 48.835005121385365], [2.276709056234442, 48.835128347466124], [2.276763861555866, 48.83525240151276], [2.276818273996723, 48.83537562751661], [2.276873081200357, 48.835499681494], [2.27692749415753, 48.83562290742093], [2.276982300518784, 48.83574696131262], [2.277036713992278, 48.83587018716263], [2.277091522223296, 48.835994241884414], [2.277145936225491, 48.83611746675816], [2.277200743614234, 48.83624152139423], [2.277255159495084, 48.8363647461993], [2.277309967403669, 48.83648880075789], [2.277364382426174, 48.83661202637707], [2.277419190867173, 48.8367360799589], [2.277473607768363, 48.8368593055094], [2.277528416729318, 48.83698335901372], [2.277582832784531, 48.83710658447907], [2.277637642265447, 48.8372306379059], [2.277654379091553, 48.83723678367356], [2.277864809683662, 48.83719806539303], [2.2780722950068872, 48.83715969501213], [2.278282724964904, 48.83712097689304], [2.278490209686185, 48.8370826048853], [2.2787006390225573, 48.83704388602836], [2.278908123116783, 48.83700551419239], [2.2789205147644243, 48.837007261730676], [2.279065703642207, 48.837087037193676], [2.279209668749003, 48.83716588144055], [2.279354859860955, 48.83724565744875], [2.27949882585566, 48.83732450043712], [2.279644016489739, 48.83740427607483], [2.279787984709841, 48.8374831196115], [2.279933176240618, 48.83756289398765], [2.280077143973951, 48.83764173715692], [2.280222337751461, 48.837721511178934], [2.280366306360178, 48.83780035398899], [2.280510275404427, 48.83787919662019], [2.280655470506278, 48.83795897009957], [2.28079944042612, 48.83803781237158], [2.280944635037585, 48.83811758637971], [2.281089831468256, 48.8381973593148], [2.28124519287783, 48.83828519306737], [2.281262818078173, 48.83828911770973], [2.281278409669681, 48.838279070963125], [2.281398722469531, 48.83818623742971], [2.28152257715882, 48.838089653073894], [2.281642889086589, 48.837996819279205], [2.281766742860967, 48.83790023555353], [2.281768421218738, 48.83789026258859], [2.281681220321355, 48.83778001992068], [2.281590830880599, 48.83766627565202], [2.281503630733532, 48.83755603283258], [2.2814132420688242, 48.83744228840694], [2.281423334100567, 48.83742921188391], [2.281594504633212, 48.83741268068203], [2.281757297979694, 48.83739680044551], [2.28176890636766, 48.83738737815978], [2.281757836428866, 48.83726251010277], [2.281746482972224, 48.837137358824], [2.281735413140243, 48.83701249073694], [2.281724059804389, 48.83688733852879], [2.2817129900668283, 48.83676247131104], [2.281701636839268, 48.836637319072786], [2.28169056722091, 48.83651245092578], [2.281679214089249, 48.83638729955667], [2.281668143215379, 48.83626243137145], [2.281656791566721, 48.83613727908115], [2.281695348945436, 48.836085381981455], [2.281663350080702, 48.83607500529577], [2.281527025752458, 48.836020397610035], [2.281345960822534, 48.83594431730061], [2.281340512353181, 48.835937811764204], [2.2813044140990932, 48.835924674451526], [2.281298850232427, 48.835920017334374], [2.281242723715758, 48.83581249707492], [2.2811828247598402, 48.835683058821246], [2.281126700099938, 48.83557553849274], [2.281066801704414, 48.835446100153526], [2.281010677538859, 48.83533857974783], [2.281018093098734, 48.8353274118109], [2.281187856726334, 48.83527834863249], [2.281351792558114, 48.8352319941924], [2.281521554198583, 48.83518293052801], [2.281685489433534, 48.83513657562663], [2.281855251811457, 48.835087511492624], [2.282019186449475, 48.83504115612995], [2.282188946840369, 48.834992091509974], [2.282352880881553, 48.834945735686], [2.282354269967189, 48.834945279942666], [2.282510769529376, 48.83488712445715], [2.282677823560265, 48.834824179033404], [2.282834321035724, 48.834766023110156], [2.283001374287818, 48.83470307722771], [2.283157872401015, 48.834644920882994], [2.283324924874311, 48.83458197454183], [2.283481422262859, 48.83452381776748], [2.283648473957459, 48.834460870967675], [2.28380497062146, 48.834402713763744], [2.283972021537161, 48.83433976650521], [2.283975167288708, 48.83432577755835], [2.283843536101379, 48.83423385932078], [2.283702629697366, 48.834136346124524], [2.283570999468949, 48.83404442757153], [2.283430094099163, 48.83394691313843], [2.283298464829754, 48.83385499426989], [2.2831575604817322, 48.833757479499255], [2.283025932171222, 48.83366556031524], [2.282885027470435, 48.83356804609815], [2.282753401481064, 48.83347612660688], [2.282612497814501, 48.83337861115295], [2.28248087278401, 48.833286691346174], [2.282339970139294, 48.83318917555471], [2.282208346067674, 48.83309725543247], [2.282067444432411, 48.8329997402028], [2.281935821319654, 48.8329078197651], [2.281794920718708, 48.83281030329856], [2.281663298564705, 48.8327183825454], [2.281531675512762, 48.83262646163173], [2.281390776428208, 48.83252894466455], [2.281259155697338, 48.83243702344363], [2.281118257622195, 48.83233950703823], [2.280986637850162, 48.83224758550185], [2.280845740809222, 48.832150067859615], [2.28071412199602, 48.83205814600781], [2.280573225964567, 48.83196062892738], [2.280546134494349, 48.831946869166174]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 117, "zemmour_eric": 105.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-75", "circ_bv": "13", "num_bureau": 75, "roussel_fabien": 11.0, "nb_emargement": 1110.0, "nb_procuration": 54.0, "nb_vote_blanc": 10.0, "jadot_yannick": 70.0, "le_pen_marine": 94.0, "nb_exprime": 1097.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1438.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1110, "quartier_bv": "60", "geo_point_2d": [48.83492194642122, 2.2798879951545645], "melenchon_jean_luc": 198.0, "poutou_philippe": 4.0, "macron_emmanuel": 465.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352534088752133, 48.86624257367389], [2.352448983028002, 48.86626029526682], [2.352260450125579, 48.86630133555668], [2.352065576046575, 48.86634473347405], [2.351877043910823, 48.86638577226494], [2.351682169196561, 48.86642916955475], [2.3514936364419983, 48.86647020863788], [2.351298761092377, 48.86651360530009], [2.351110226367174, 48.86655464376875], [2.350915350382302, 48.86659803980336], [2.350726816412506, 48.86663907767237], [2.350531939792491, 48.86668247307941], [2.350343405226301, 48.866723509442004], [2.350148527970952, 48.866766904221485], [2.34995999142292, 48.86680794086884], [2.349765113532337, 48.86685133502075], [2.349576577739737, 48.86689237106847], [2.34938169921403, 48.86693576459279], [2.349381566621759, 48.866935793550326], [2.349178221054497, 48.86698157613708], [2.348983341863258, 48.86702496900928], [2.348779995597927, 48.86707075091577], [2.34858511574138, 48.8671141431361], [2.348381768777986, 48.86715992436232], [2.348186888256138, 48.86720331593075], [2.347983540594689, 48.86724909647671], [2.347788659407546, 48.86729248739323], [2.347585311048046, 48.867338267258994], [2.347390429195616, 48.8673816575236], [2.347335547485745, 48.867385471857126], [2.347328432070976, 48.8674090372089], [2.347338559314483, 48.86750011312116], [2.347346515027771, 48.86766865555485], [2.347357415373713, 48.86776668937603], [2.347368349436485, 48.867789023913474], [2.347414093687029, 48.86778783618699], [2.347593390811585, 48.86784179481117], [2.347769993927076, 48.86789504239043], [2.34794929042621, 48.867949000468826], [2.348125894268935, 48.868002247517815], [2.348305192868759, 48.86805620506524], [2.348481797438816, 48.868109451583955], [2.348661095413108, 48.868163408585595], [2.348837700710393, 48.86821665457399], [2.349017000785476, 48.86827061104468], [2.349193606809886, 48.868323856502805], [2.349372906259527, 48.868377812427696], [2.349549513011159, 48.868431057355494], [2.34972881456149, 48.86848501274944], [2.34990542067727, 48.86853825713953], [2.35008472296522, 48.868592211995036], [2.350261331171391, 48.86864545586228], [2.350437939738487, 48.86869869946629], [2.350617241767166, 48.86875265350889], [2.350793851061475, 48.86880589658263], [2.350973155190843, 48.868859850094246], [2.351149765212466, 48.86891309263763], [2.351329068716259, 48.86896704560344], [2.351505679465089, 48.86902028761655], [2.3516849850696753, 48.869074240051305], [2.351861596545609, 48.86912748153411], [2.352040901524711, 48.86918143342313], [2.352217513727847, 48.869234674375555], [2.3523968208076402, 48.86928862573353], [2.352403667191732, 48.86929322513229], [2.352408530313291, 48.86930010442137], [2.352513202780265, 48.86945904371158], [2.352612789226424, 48.869599907408706], [2.35264955594884, 48.869648340596044], [2.352689351812893, 48.86966902840956], [2.352872796530273, 48.86962919748811], [2.353057883600721, 48.86958772846997], [2.353241329102032, 48.86954789788741], [2.353426414227126, 48.86950642828901], [2.353609859171392, 48.86946659623941], [2.353794945066266, 48.869425126974754], [2.353978388079322, 48.869385294350074], [2.354163473403087, 48.86934382361321], [2.354195810076205, 48.86933920190737], [2.354230517797375, 48.869310250531846], [2.354249265539085, 48.8692940736129], [2.354211531871001, 48.869261407429036], [2.354148778290661, 48.86914353039082], [2.354079054583393, 48.86901972320956], [2.354016300230799, 48.868901846068766], [2.353946578536217, 48.86877803789138], [2.353883824774552, 48.8686601606553], [2.353814103718306, 48.86853635237368], [2.3537513505475642, 48.86841847504245], [2.353681630129646, 48.86829466665659], [2.353618877549818, 48.8681767892301], [2.3535491577590593, 48.86805298163932], [2.353486405770137, 48.86793510411764], [2.353416686628849, 48.86781129552334], [2.353353935230823, 48.8676934179064], [2.353315271908598, 48.86762475738783], [2.353312119007659, 48.86761518574177], [2.353306011763645, 48.867607830299924], [2.353274956602779, 48.86755268211679], [2.353203761283393, 48.86742575634744], [2.353134043484375, 48.86730194843081], [2.353062848839931, 48.86717502344818], [2.35299313172244, 48.86705121452213], [2.352921937763992, 48.86692428942688], [2.352852221316954, 48.86680048039067], [2.352781028044493, 48.86667355518286], [2.352711312268, 48.86654974603654], [2.352640119681416, 48.86642282071615], [2.35257040456418, 48.86629901235898], [2.352543651885313, 48.866251315762064], [2.352534088752133, 48.86624257367389]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 53, "zemmour_eric": 65.0, "hidalgo_anne": 53.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "2-8", "circ_bv": "01", "num_bureau": 8, "roussel_fabien": 21.0, "nb_emargement": 1346.0, "nb_procuration": 93.0, "nb_vote_blanc": 14.0, "jadot_yannick": 117.0, "le_pen_marine": 65.0, "nb_exprime": 1328.0, "nb_vote_nul": 4.0, "arr_bv": "02", "arthaud_nathalie": 1, "nb_inscrit": 1788.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1346, "quartier_bv": "08", "geo_point_2d": [48.86788424179377, 2.3512358755928116], "melenchon_jean_luc": 410.0, "poutou_philippe": 6.0, "macron_emmanuel": 516.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.287537655015341, 48.855718905373585], [2.287536890939937, 48.855718667890386], [2.28740224153104, 48.855623493735735], [2.287267191269508, 48.85552527809876], [2.287132541502566, 48.85543010271666], [2.286997493601152, 48.855331887665585], [2.28686284482648, 48.85523671196341], [2.286727796584143, 48.85513849568347], [2.286593150152342, 48.8550433205687], [2.286458102919587, 48.8549451039673], [2.286323456117428, 48.85484992852431], [2.286188411256953, 48.854751711609595], [2.286053765447139, 48.8546565358466], [2.285918720233527, 48.85455831860229], [2.285784076778748, 48.854463142527365], [2.285649032574695, 48.85436492496159], [2.285514390124571, 48.854269747667374], [2.285379346917737, 48.85417153067946], [2.285244704097249, 48.8540763530571], [2.285109663262738, 48.85397813575583], [2.284975021434467, 48.85388295781344], [2.284839980259045, 48.853784739283334], [2.284705340773519, 48.853689561928384], [2.284570300607623, 48.85359134307683], [2.284519232406645, 48.85355524228309], [2.2845130030251832, 48.85355095555644], [2.284492792775069, 48.853542943717514], [2.284409222532514, 48.85348386681716], [2.284267740531632, 48.85338708762228], [2.284133103131157, 48.85329190869012], [2.283991622164304, 48.853195129152034], [2.283856984389141, 48.85309995078391], [2.28371550446867, 48.85300317000334], [2.283580869056488, 48.85290799131623], [2.283439390157666, 48.852811211091776], [2.2833047543954113, 48.8527160311701], [2.283163277893345, 48.852619250610665], [2.283028643131403, 48.85252407036186], [2.282887166300585, 48.85242728945107], [2.282752533889311, 48.85233210978259], [2.282611058104861, 48.852235327629366], [2.28247642533114, 48.85214014762561], [2.282334950568291, 48.85204336602847], [2.282225661687232, 48.8519661010263], [2.2822064685964962, 48.8519523848377], [2.282205446194003, 48.851952009965814], [2.282180104690548, 48.851934093741576], [2.282045703149954, 48.85183797117463], [2.281911072447998, 48.85174278960149], [2.281776670546753, 48.85164666580833], [2.281642042180677, 48.85155148482361], [2.281507641269209, 48.851455360711725], [2.281373013901173, 48.851360178508614], [2.281238613966971, 48.85126405497731], [2.281103986221858, 48.85116887244695], [2.280969588652331, 48.85107274770583], [2.280834961880541, 48.850977565755684], [2.28070056530066, 48.850881440695865], [2.2805659395144913, 48.85078625842665], [2.280431543924249, 48.85069013304814], [2.28029691913601, 48.85059494956061], [2.280162524535505, 48.8504988238634], [2.280027900720452, 48.85040364095608], [2.279975405022352, 48.85036567320603], [2.279957551666905, 48.85036544614882], [2.279921402745421, 48.85036158887217], [2.27990213420601, 48.85040065636649], [2.2797555929674562, 48.85048989770717], [2.279616297380993, 48.85057537638493], [2.279477001325115, 48.85066085579323], [2.279330458639135, 48.85075009569308], [2.279191161647346, 48.850835574755195], [2.279044619343334, 48.850924814299155], [2.278905320052924, 48.85101029300689], [2.27875877676797, 48.85109953218674], [2.278619476541632, 48.85118501054823], [2.2784729322758333, 48.85127424936399], [2.278453320329711, 48.851301500501734], [2.278496350063222, 48.85133699072306], [2.27864407794433, 48.85142786539093], [2.278793029217632, 48.85151693592396], [2.278940758126354, 48.85160781021083], [2.2790897104335652, 48.85169687946088], [2.279237438994639, 48.85178775425779], [2.279386392323416, 48.85187682312409], [2.279534123287075, 48.85196769664892], [2.279683077624792, 48.85205676603076], [2.279830809616084, 48.852147639174596], [2.279979763625077, 48.85223670726517], [2.280127496631375, 48.8523275809273], [2.280276453024592, 48.85241664864234], [2.28042418705844, 48.852507521923435], [2.280573144473049, 48.8525965892547], [2.280720878184319, 48.85268746124733], [2.280869836608013, 48.852776529094115], [2.280870723232375, 48.852813701427095], [2.280908978134606, 48.85280768437609], [2.280963520165967, 48.852840297423086], [2.281057937223485, 48.85289675197907], [2.281198449958281, 48.85297544128259], [2.281347410021504, 48.853064508511764], [2.281487922283039, 48.85314319745528], [2.281636883333007, 48.853232263411364], [2.281777397834509, 48.85331095291056], [2.281917912760298, 48.85338964223913], [2.282066875249741, 48.85347870764019], [2.282207389702275, 48.853557396608785], [2.282356353166074, 48.85364646163603], [2.282496869870898, 48.853725150260985], [2.282645834309161, 48.85381421491441], [2.282647048160606, 48.85381504060953], [2.2827663941830982, 48.8538993273035], [2.282885009038203, 48.853991018416274], [2.283004355848669, 48.85407530485954], [2.283122971522995, 48.85416699572191], [2.283242319121439, 48.85425128191451], [2.283360935602825, 48.854342973425716], [2.283480283989156, 48.85442725936761], [2.283598901302245, 48.85451894972913], [2.283591398317235, 48.85454157136718], [2.283643927730668, 48.85456727298278], [2.283644115141342, 48.85456742070038], [2.283772977010535, 48.85467147094614], [2.28389917567574, 48.85477209563073], [2.28402803856053, 48.854876145582686], [2.284154238213902, 48.85497676997975], [2.284283102114197, 48.85508081963786], [2.284409302755951, 48.855181443747384], [2.284535505235495, 48.85528206862211], [2.284664369301701, 48.85538611693359], [2.284790572769547, 48.8554867415208], [2.284919437851272, 48.855590789538425], [2.2850456423197683, 48.85569141293877], [2.28517450840468, 48.85579546156186], [2.285300713861595, 48.85589608467465], [2.285429580962048, 48.856000133003796], [2.285555787407186, 48.85610075582906], [2.285684655523191, 48.85620480386435], [2.285686126350468, 48.856214728966016], [2.285604494479318, 48.85631565863777], [2.28552484938201, 48.856416096468834], [2.28544321688308, 48.85651702601224], [2.285363571167089, 48.85661746371773], [2.285281936677312, 48.8567183931247], [2.285202291705485, 48.85681883071281], [2.285120656587909, 48.85691975999143], [2.285041009622187, 48.85702019834509], [2.285040337699566, 48.85702754747679], [2.285115507282227, 48.857158767634466], [2.285183349915675, 48.8572937671266], [2.285183707804118, 48.857298577228036], [2.285139870369491, 48.857426766037044], [2.285097551819754, 48.85755122436435], [2.285055233067948, 48.85767568266275], [2.285011394999858, 48.85780387138115], [2.284969074474161, 48.85792832961261], [2.284925235981524, 48.85805651827028], [2.284882916407701, 48.85818097645107], [2.284839077502861, 48.8583091641487], [2.284796757505678, 48.85843362316997], [2.2847529181762862, 48.85856181080687], [2.284745328173253, 48.85858649593771], [2.284762305781468, 48.85861051129397], [2.284963670905382, 48.858658840934204], [2.285168949572485, 48.858704487446644], [2.2853703154366922, 48.85875281639852], [2.285575594830405, 48.858798462209556], [2.28577696279791, 48.85884679048118], [2.285982241542892, 48.85889243648195], [2.286183610250783, 48.85894076406526], [2.286388889734586, 48.85898640846534], [2.286590259182854, 48.85903473536026], [2.286795539393042, 48.8590803790589], [2.286800463365788, 48.85908231234094], [2.286928217689752, 48.85916060441243], [2.28706681267491, 48.859253519690185], [2.287194569181838, 48.859331811473425], [2.287333163722089, 48.859424727319514], [2.287460921049068, 48.85950301880629], [2.287599516532144, 48.8595959334303], [2.287727274666882, 48.859674225519946], [2.287865871080387, 48.859767139821145], [2.287866524916082, 48.85976756910691], [2.287994940134522, 48.859857682326435], [2.288133537513386, 48.85995059630228], [2.288261953644761, 48.8600407092204], [2.288400553337349, 48.86013362377903], [2.288528970381668, 48.86022373639582], [2.288667569686664, 48.86031664972247], [2.288795987644032, 48.86040676203786], [2.288934587912102, 48.860499675039925], [2.28906300677005, 48.86058978795316], [2.289201608001203, 48.860682700630676], [2.289330027784388, 48.8607728123432], [2.289468629978626, 48.86086572469613], [2.28959705067488, 48.860955836107266], [2.289735653819851, 48.86104874903485], [2.289864075429081, 48.86113886014461], [2.289907378035339, 48.861193794194264], [2.289945458035902, 48.86119158109445], [2.290087671674911, 48.86110214769869], [2.290222150168465, 48.86101626566709], [2.290364364216933, 48.86092683193646], [2.290498841789622, 48.86084095047962], [2.290641054884583, 48.86075151640607], [2.290775530197947, 48.860665633717396], [2.290917742339409, 48.86057619930088], [2.291052218107128, 48.86049031629581], [2.291194429282858, 48.86040088243564], [2.291328904141877, 48.86031499910607], [2.291471113013507, 48.86022556399562], [2.291605586964033, 48.8601396803416], [2.291747796232804, 48.86005024579555], [2.291882269274642, 48.85996436181704], [2.291940660877831, 48.859933008679214], [2.291905599435816, 48.859884490603186], [2.291762952758843, 48.859779851066236], [2.291641736540213, 48.85968219398192], [2.29152051940083, 48.859584537657426], [2.291395179194082, 48.859484405143434], [2.291273962976997, 48.859386748551785], [2.291148623707781, 48.85928661666101], [2.2910274084252222, 48.85918895890293], [2.29090207010566, 48.85908882673607], [2.290780855745389, 48.85899116871087], [2.29065551837537, 48.858891036267885], [2.290534304937377, 48.85879337797554], [2.290408968517097, 48.85869324525653], [2.290287756001375, 48.85859558669703], [2.290162420530723, 48.858495453701906], [2.290041208925009, 48.85839779577458], [2.289915874416232, 48.858297661604134], [2.289865860989075, 48.858257365963965], [2.289858944480748, 48.858234719607346], [2.289813006089304, 48.858220450304984], [2.289741810304527, 48.8581630877254], [2.289607726867137, 48.858050339069294], [2.289486517348869, 48.85795267964165], [2.289352435005386, 48.85783993067817], [2.289231226442833, 48.8577422718727], [2.289097145193247, 48.85762952260177], [2.288975937598661, 48.857531863519256], [2.288973867211841, 48.857529569549534], [2.288901268747491, 48.857412438534595], [2.28882976365324, 48.85729601006151], [2.288757165838265, 48.85717887893447], [2.288685661386441, 48.85706245035077], [2.288613064220935, 48.856945319111674], [2.288541560423911, 48.856828889518134], [2.288468963895485, 48.856711759066286], [2.288397460740977, 48.8565953293621], [2.288324864861798, 48.85647819879818], [2.288253362349898, 48.8563617689834], [2.288180767120059, 48.85624463830742], [2.288109263887816, 48.85612820837394], [2.288106739240224, 48.85612555194017], [2.287967661789482, 48.85602413396444], [2.287833009453932, 48.85592895941327], [2.287698358960726, 48.855833785609825], [2.287559283095921, 48.85573236623356], [2.287537655015341, 48.855718905373585]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 149, "zemmour_eric": 157.0, "hidalgo_anne": 2.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-5", "circ_bv": "14", "num_bureau": 5, "roussel_fabien": 10.0, "nb_emargement": 1001.0, "nb_procuration": 71.0, "nb_vote_blanc": 6.0, "jadot_yannick": 38.0, "le_pen_marine": 67.0, "nb_exprime": 995.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1272.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1004, "quartier_bv": "62", "geo_point_2d": [48.85628488007625, 2.285923743052941], "melenchon_jean_luc": 68.0, "poutou_philippe": 0.0, "macron_emmanuel": 481.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.334971135396092, 48.88575751908848], [2.334986862365513, 48.88578436417726], [2.334932170671244, 48.88589470844101], [2.334860784007434, 48.88603208548407], [2.334806091785932, 48.886142429665334], [2.334734703097765, 48.88627980569542], [2.334680010348815, 48.88639014979425], [2.334608622340575, 48.88652752662503], [2.334553929064274, 48.88663787064137], [2.334552072052419, 48.886640295701895], [2.334449220312491, 48.88673546653268], [2.334350646205916, 48.88682957016488], [2.334252073118114, 48.88692367281618], [2.334149218906524, 48.88701884335715], [2.334050645096422, 48.88711294582641], [2.333947790142838, 48.88720811617793], [2.333946085268688, 48.88720941161912], [2.3338274604367673, 48.88728352270917], [2.333659262188106, 48.88738905641718], [2.333540637902392, 48.88746316721855], [2.333372438492166, 48.88756870050646], [2.333253813388993, 48.887642811011496], [2.33325121454398, 48.88765363883446], [2.333350073583871, 48.88777339246504], [2.333434991936798, 48.8878760612109], [2.333519910636096, 48.88797872898772], [2.333618770899612, 48.888098483260286], [2.333640348775179, 48.888105371683864], [2.333652925467889, 48.88810397756987], [2.333797466972917, 48.88800169107856], [2.333929610214116, 48.88791015794424], [2.33394008944345, 48.88790737436281], [2.334084221852576, 48.88791387507771], [2.334268220524898, 48.88791923210089], [2.334300999494606, 48.88793183585522], [2.334327538468622, 48.887921142908425], [2.334509863750842, 48.88787230218654], [2.334686416147659, 48.887823444398606], [2.334868740751185, 48.88777460312587], [2.335045293832112, 48.887725745711286], [2.335221845229537, 48.88767688712738], [2.335404168817696, 48.88762804503284], [2.335580719535762, 48.88757918681472], [2.335763042456591, 48.88753034327016], [2.335939593870343, 48.887481484526056], [2.336121914737427, 48.88743264132244], [2.336130080917679, 48.887432205459454], [2.336297472754218, 48.88745738740336], [2.33646489631128, 48.88748180485913], [2.336632288457718, 48.88750698723308], [2.336799712342808, 48.88753140332036], [2.336967104810602, 48.88755658522511], [2.337134527636931, 48.88758100173483], [2.337301921801195, 48.88760618227867], [2.337469344943981, 48.887630598319156], [2.337478059143959, 48.887629965745866], [2.337668459496783, 48.887571346048425], [2.337857223934142, 48.88751168187507], [2.338047624791189, 48.8874530615759], [2.338236388365314, 48.88739339679836], [2.338426788363111, 48.88733477588999], [2.338615551073999, 48.887275110508305], [2.338805950212341, 48.88721648899073], [2.338994712059987, 48.88715682300486], [2.339185108975415, 48.88709820087047], [2.339373869971229, 48.88703853338123], [2.339437758617262, 48.88702977567517], [2.339439198143708, 48.88700488033613], [2.339350941489407, 48.886925034033546], [2.339186074797865, 48.88679578298477], [2.339097818897497, 48.88671593558115], [2.339096143445252, 48.88671427966372], [2.339017822361744, 48.88661446169534], [2.338908487199186, 48.886477107146355], [2.338869997310158, 48.88642805211369], [2.338861363274015, 48.88640992884254], [2.338841363202691, 48.88640068033195], [2.33880153277339, 48.886349917241176], [2.338763857933789, 48.88630080551422], [2.338749889724228, 48.88629595114113], [2.338489961673126, 48.886318768439786], [2.338284795627712, 48.886332167894004], [2.338281452487848, 48.88633211434402], [2.338224145480623, 48.886326515862024], [2.338219273635053, 48.88632538815699], [2.338114871668145, 48.88628700510501], [2.338012992068697, 48.88624781481881], [2.338006683397151, 48.8862423560895], [2.337970599859609, 48.8861527750282], [2.337912308435504, 48.88598940984232], [2.337876225235584, 48.885899828732], [2.337876062819325, 48.885895656747444], [2.337913300374764, 48.885779686484156], [2.337947962641228, 48.88565656668288], [2.337947030099817, 48.885651293257965], [2.3378782746799462, 48.885548605399684], [2.337774902881364, 48.88540737594559], [2.337706146748021, 48.885304688857445], [2.337695197101646, 48.885288333343304], [2.337591826316137, 48.88514710369771], [2.337534021803523, 48.88506077112191], [2.337516734236828, 48.885047496695776], [2.3374785121009403, 48.885061614216646], [2.337293072042352, 48.885131714111004], [2.337106910260383, 48.88520072962607], [2.336921470581234, 48.88527082804432], [2.336735306434288, 48.885339843864635], [2.336549865759526, 48.88540994169848], [2.336363700622857, 48.88547895693225], [2.336178258952483, 48.88554905418165], [2.335992092825992, 48.88561806882894], [2.335806650160005, 48.88568816549395], [2.3356204830551652, 48.88575717865543], [2.335435039382093, 48.88582727563532], [2.335248871287437, 48.88589628821027], [2.335230151543001, 48.88589267419625], [2.335164811215229, 48.88581171083981], [2.335116920164853, 48.88574597465171], [2.335093926444729, 48.88571717275488], [2.335057635592026, 48.885723487753985], [2.335040244394039, 48.88572850565345], [2.334986988961651, 48.885744445462336], [2.334971135396092, 48.88575751908848]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 58, "zemmour_eric": 90.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-28", "circ_bv": "18", "num_bureau": 28, "roussel_fabien": 26.0, "nb_emargement": 1461.0, "nb_procuration": 131.0, "nb_vote_blanc": 17.0, "jadot_yannick": 159.0, "le_pen_marine": 48.0, "nb_exprime": 1440.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1797.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1461, "quartier_bv": "69", "geo_point_2d": [48.88669347433602, 2.3363961385405343], "melenchon_jean_luc": 426.0, "poutou_philippe": 9.0, "macron_emmanuel": 560.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.308064699152362, 48.830725504519314], [2.308079543418748, 48.83074194825499], [2.308184753268011, 48.830830150730286], [2.308301720694505, 48.83092691211375], [2.3084255696481, 48.83103073818993], [2.308542536597516, 48.831127500212], [2.308666386507268, 48.83123132602021], [2.308783354365656, 48.83132808689016], [2.308900322658254, 48.83142484763732], [2.309024173975087, 48.831528673946806], [2.3091411445268433, 48.831625434449016], [2.309264996811777, 48.831729259591235], [2.309381966898495, 48.83182601983272], [2.309505820127701, 48.83192984560629], [2.30962279111149, 48.832026605594955], [2.309746645308806, 48.83213043020123], [2.309746747704186, 48.832130516232795], [2.309849701006536, 48.83221784787376], [2.309928460268003, 48.83228386944331], [2.309940776886939, 48.83229261317739], [2.310010897920599, 48.83225839539121], [2.3101427040309312, 48.83217196940628], [2.310274826346047, 48.83208539579923], [2.310406631593301, 48.83199896861079], [2.310538753031544, 48.831912394698776], [2.310670558754239, 48.83182596811333], [2.31080267795351, 48.83173939388858], [2.310934482813024, 48.83165296609958], [2.311066602485856, 48.831566392477086], [2.311198405108303, 48.83147996437609], [2.311330523916267, 48.83139338954935], [2.311462325651775, 48.83130696204348], [2.311594443583096, 48.83122038691186], [2.311726244455532, 48.83113395820249], [2.311858361510008, 48.831047382765966], [2.3119901628579163, 48.83096095465953], [2.312122277673471, 48.8308743789103], [2.3121343117526862, 48.83087191368279], [2.312319787329422, 48.83089417767038], [2.312506186585162, 48.8309165519055], [2.312519171113403, 48.83091339418733], [2.312654498952595, 48.830804054233774], [2.312786541030855, 48.83069704710768], [2.312921867735808, 48.830587707729755], [2.313053908717389, 48.83048070028787], [2.313185949156807, 48.830373692689975], [2.31332127283436, 48.83026435192145], [2.313332772579026, 48.83024907279143], [2.313318745908939, 48.83024004526315], [2.313159181987897, 48.83015627757332], [2.312998704160127, 48.83007367360087], [2.3128391412507048, 48.82998990637093], [2.312678663080117, 48.82990730194897], [2.312519101194057, 48.8298235342796], [2.312358625404868, 48.82974092942383], [2.312199064542365, 48.82965716131507], [2.312038589772306, 48.8295745560176], [2.311879029933256, 48.829490787469446], [2.311718554820381, 48.82940818172247], [2.311558996016553, 48.82932441183561], [2.311398523273174, 48.82924180655413], [2.311238965492895, 48.82915803622784], [2.311078493780513, 48.8290754296054], [2.310918937011793, 48.82899165973908], [2.310758464956593, 48.82890905266713], [2.310598909211207, 48.8288252823614], [2.310438439537353, 48.828742674855626], [2.310278884815498, 48.82865890411058], [2.310118416160747, 48.82857629616317], [2.310092800538283, 48.82856307234192], [2.310076979493974, 48.828564646721176], [2.3099872815534, 48.82863099167608], [2.309868485374502, 48.828715953053745], [2.309733258703716, 48.828815971293686], [2.309614460327097, 48.828900932397154], [2.309479232689258, 48.82900095033333], [2.309360433477138, 48.82908591117045], [2.309225204872033, 48.829185928802964], [2.30910640618665, 48.82927088938159], [2.3090918559987292, 48.829285609076855], [2.309092878871696, 48.82928901283364], [2.3091131808401633, 48.82941343305219], [2.309123119099453, 48.82954946550145], [2.309120197805002, 48.82955547805017], [2.3090517375795923, 48.82961262110251], [2.308981364650826, 48.82967346209322], [2.30897927243903, 48.829681772839756], [2.309039710721424, 48.82980109341853], [2.309100510268581, 48.829920003225475], [2.309160949104649, 48.8300393237176], [2.309221749194262, 48.830158234337006], [2.309216955101176, 48.83016833542658], [2.309079993073645, 48.830235380652745], [2.308901831491002, 48.83032220597871], [2.308764868653951, 48.83038925083477], [2.308586704658548, 48.83047607567157], [2.308449741011874, 48.83054312015756], [2.308271575965771, 48.830629944513], [2.308134611497737, 48.830696989528214], [2.308064699152362, 48.830725504519314]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 52, "zemmour_eric": 85.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "14-52", "circ_bv": "10", "num_bureau": 52, "roussel_fabien": 23.0, "nb_emargement": 1129.0, "nb_procuration": 42.0, "nb_vote_blanc": 10.0, "jadot_yannick": 62.0, "le_pen_marine": 114.0, "nb_exprime": 1113.0, "nb_vote_nul": 6.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1534.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1129, "quartier_bv": "56", "geo_point_2d": [48.83040306276205, 2.3105206336276054], "melenchon_jean_luc": 400.0, "poutou_philippe": 9.0, "macron_emmanuel": 313.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.329579553106811, 48.84783478714267], [2.329572519533169, 48.84782117368227], [2.329674326911181, 48.847705299440214], [2.329773226110857, 48.847592476529336], [2.329875031233212, 48.847476602085074], [2.329973929575935, 48.84736377808582], [2.330075733805373, 48.847247903447034], [2.330174632630537, 48.847135080165614], [2.3301665343580362, 48.84712192034442], [2.330051398327956, 48.84710050222681], [2.329926779047052, 48.847079222447896], [2.329924922074566, 48.84707707426628], [2.329893866082279, 48.847073501638036], [2.329802646577499, 48.847057924579914], [2.329629962615389, 48.84702861554214], [2.329414123043027, 48.846991757959984], [2.329241439518669, 48.84696244835967], [2.329025601857736, 48.846925590082066], [2.3288529187712372, 48.84689627991925], [2.328850853575811, 48.8468958078609], [2.328664131644532, 48.84684169432635], [2.328473708611854, 48.84678645260758], [2.328286987464096, 48.846732338479065], [2.328096565230767, 48.84667709615462], [2.327909844866331, 48.846622981432205], [2.327719423432357, 48.84656773850202], [2.327532703851347, 48.84651362318571], [2.327342283216731, 48.846458379649874], [2.327324291615273, 48.846463046007656], [2.327262438612069, 48.846557526912974], [2.327202037600563, 48.84664971627739], [2.327140184154069, 48.846744197103625], [2.327079784072552, 48.846836386398536], [2.327068509201496, 48.84684177311144], [2.326923469176424, 48.8468504625648], [2.32679756608563, 48.846857713525004], [2.326784990828635, 48.84685373953478], [2.326674255552807, 48.84674393297752], [2.326563751794445, 48.84663396212497], [2.326453017451655, 48.84652415534127], [2.326342514637875, 48.8464141833634], [2.326231781228214, 48.84630437635332], [2.326121280698144, 48.846194405056416], [2.3260105468591172, 48.846084597812215], [2.325900047273509, 48.845974625389964], [2.32578931571844, 48.84586481882632], [2.325678815703179, 48.84575484617039], [2.325665375498855, 48.84574781924191], [2.325644673702934, 48.845754905546926], [2.325551326247964, 48.84578936543355], [2.3254427399378, 48.84582762906729], [2.325437051452739, 48.84583968982016], [2.325535458183866, 48.84596540800351], [2.325634943116956, 48.846092295041956], [2.325733350814072, 48.84621801213473], [2.325832838073672, 48.846344898987525], [2.325931246725153, 48.84647061588901], [2.326030734948898, 48.8465975025485], [2.326129144554756, 48.84672321925871], [2.326228632379955, 48.84685010571723], [2.326224667903101, 48.84686131191883], [2.326232587814789, 48.84686995351845], [2.326233396568607, 48.84687696230052], [2.326195228963069, 48.84695160210109], [2.32616269784292, 48.84701450278953], [2.326161458135347, 48.84701626844844], [2.326065676982042, 48.84712117546603], [2.325969247584786, 48.847226864788794], [2.3258734656574003, 48.84733177163265], [2.325777035480658, 48.84743746078051], [2.325681252779285, 48.84754236745067], [2.3255848218114092, 48.84764805732295], [2.3254890383360403, 48.847752963819374], [2.325392606600297, 48.84785865261744], [2.325296822350925, 48.84796355894015], [2.32520038983567, 48.84806924756333], [2.325104604812286, 48.848174153712314], [2.325008171517511, 48.84827984216057], [2.324912385720108, 48.84838474813583], [2.324815951634153, 48.84849043730847], [2.324815117274028, 48.84850087867014], [2.324833017485134, 48.848508386818], [2.324979952370652, 48.848589663690404], [2.32513040845489, 48.84867298199759], [2.3252773442683132, 48.84875425849275], [2.325427801303229, 48.84883757641364], [2.325574736681902, 48.84891885252389], [2.325725194667497, 48.849002170058505], [2.325872132336739, 48.8490834457992], [2.326022591273123, 48.84916676294748], [2.32616952988181, 48.84924803741159], [2.326319989757256, 48.84933135507292], [2.32646692929386, 48.8494126291598], [2.326617390120008, 48.84949594643479], [2.326639704664338, 48.84948997166881], [2.326659268476143, 48.84936371548078], [2.326678969265694, 48.84923644826715], [2.326698532887193, 48.84911019204393], [2.326718233496631, 48.84898292389557], [2.326737796916106, 48.8488566685365], [2.326757497333915, 48.84872940035268], [2.326777059200543, 48.84860314495079], [2.326796759426525, 48.84847587673151], [2.326816322477026, 48.84834962040283], [2.326836022499767, 48.8482223530474], [2.326855585359973, 48.84809609668355], [2.326875285202608, 48.84796882839343], [2.326894847860907, 48.84784257289372], [2.326914547511823, 48.847715304568126], [2.326934109979834, 48.84758904903325], [2.326953809439033, 48.847461780672255], [2.3269784765124832, 48.84745748918499], [2.327090962779132, 48.84756208623547], [2.327190105235919, 48.847654704188905], [2.327302592353008, 48.84775930102188], [2.327401734198465, 48.8478519187759], [2.327404642519104, 48.847853901128204], [2.327536621813986, 48.847919808884086], [2.327668205348216, 48.847986315037375], [2.327800185311765, 48.84805222249468], [2.32793177089092, 48.84811872745857], [2.327935306819579, 48.848121393239204], [2.328029942628485, 48.848230284226105], [2.328126828711419, 48.84834213226728], [2.328221465321264, 48.84845102308109], [2.328318352225643, 48.84856287094499], [2.3284129896366412, 48.8486717615857], [2.328509877350884, 48.84878361017165], [2.328604515574531, 48.84889249974001], [2.328701404110241, 48.84900434814865], [2.328721316072465, 48.84901082733517], [2.328733828471372, 48.84900714361068], [2.328814378488932, 48.84889287140748], [2.328895218259366, 48.84877787048548], [2.328975767557071, 48.8486635990494], [2.3290566066157, 48.8485485979947], [2.329137155205141, 48.84843432642644], [2.329217993551976, 48.848319325239025], [2.329298542807274, 48.84820505264692], [2.329379379079683, 48.84809005131914], [2.3294599276152548, 48.84797577949417], [2.329540763175892, 48.84786077803368], [2.329571574386545, 48.84784602131147], [2.329572147888798, 48.84784529514392], [2.329579553106811, 48.84783478714267]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 127, "zemmour_eric": 124.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "6-13", "circ_bv": "11", "num_bureau": 13, "roussel_fabien": 17.0, "nb_emargement": 1124.0, "nb_procuration": 106.0, "nb_vote_blanc": 15.0, "jadot_yannick": 73.0, "le_pen_marine": 43.0, "nb_exprime": 1110.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 1360.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "23", "geo_point_2d": [48.84771205639059, 2.3273390561003797], "melenchon_jean_luc": 145.0, "poutou_philippe": 1.0, "macron_emmanuel": 528.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406332584119689, 48.862342841391815], [2.406368618064363, 48.862362006138724], [2.406451142755886, 48.86244622780103], [2.406557705690252, 48.86255856330167], [2.406669740868854, 48.86267290077764], [2.406776304727869, 48.86278523695992], [2.406888340873675, 48.86289957420789], [2.406994905667797, 48.86301191017255], [2.407106942780819, 48.86312624719249], [2.407213508509856, 48.86323858293952], [2.407325545227058, 48.86335291972466], [2.407432111891221, 48.863465255254056], [2.407544150938704, 48.863579591817874], [2.407650718537803, 48.863691927129636], [2.407683010781575, 48.863724880504655], [2.407686407958135, 48.86373168733809], [2.407700602599017, 48.86374206762744], [2.407780350423665, 48.86382345057527], [2.407876591941969, 48.86392692192352], [2.407988632957804, 48.864041258023605], [2.408084875302271, 48.864144728284714], [2.408196917243647, 48.86425906416731], [2.408293160394054, 48.864362535139854], [2.408300349971719, 48.86436633622117], [2.408493437587441, 48.86441009386517], [2.408668766028695, 48.86444970562858], [2.408861854272958, 48.86449346177563], [2.40903718327491, 48.8645330729964], [2.409212512533282, 48.86457268485815], [2.409405601690046, 48.8646164401231], [2.409424585869497, 48.864618139124204], [2.4094459998549, 48.86457299991642], [2.409571776865185, 48.86446985377757], [2.409699563390805, 48.86436507611587], [2.409825338023807, 48.864261930583766], [2.4099531235294522, 48.86415715263166], [2.410078897158455, 48.86405400681371], [2.410206681654313, 48.86394922767195], [2.410332454279425, 48.863846081568184], [2.410460237745143, 48.863741303035304], [2.410586010729228, 48.86363815665242], [2.410713791811943, 48.86353337782245], [2.410705151947967, 48.86351884151161], [2.410527823679462, 48.86350167307404], [2.410352444216602, 48.863484914180965], [2.410175117532582, 48.863467746126254], [2.409999736944631, 48.86345098580981], [2.409822410492327, 48.863433817232014], [2.409647031484824, 48.86341705730421], [2.409469703911486, 48.863399887297255], [2.409294325131673, 48.8633831268521], [2.409116999153018, 48.863365956328735], [2.408941619237955, 48.86334919535953], [2.408930010458767, 48.86333939816745], [2.408949951377056, 48.863208066103184], [2.408970842397118, 48.86307443999746], [2.408990781747922, 48.86294310788829], [2.409011673920045, 48.86280948175016], [2.409031613066614, 48.862678149602786], [2.409052505027654, 48.8625445234256], [2.40907244396989, 48.86241319124], [2.409093334356936, 48.86227956501701], [2.40911327445786, 48.86214823279997], [2.409134164634041, 48.86201460653791], [2.40915410316752, 48.86188327427586], [2.409174994495748, 48.86174964798148], [2.4091949328352023, 48.86161831478199], [2.409215822579164, 48.86148468934106], [2.409235762077296, 48.861353356110115], [2.409256651610301, 48.86121973063013], [2.409276590904107, 48.86108839736101], [2.409297480226262, 48.860954771841925], [2.409317417952661, 48.86082343852787], [2.40933424202241, 48.8607158243816], [2.409331032412055, 48.86070617747855], [2.409299023913659, 48.86070333135364], [2.409183940305295, 48.860691448615064], [2.409063815029957, 48.86067955436013], [2.409055948308775, 48.860676849862294], [2.408933833263813, 48.860591891133154], [2.408812708152775, 48.860507654836994], [2.408690592527846, 48.86042269673926], [2.408569469566395, 48.860338460190775], [2.408447354734668, 48.86025350183188], [2.4083262325598263, 48.86016926502433], [2.408323453856788, 48.86016778175903], [2.408143912288501, 48.86009550945955], [2.4079587422756052, 48.86002081138877], [2.407779201719694, 48.8599485385326], [2.407594032762259, 48.8598738389883], [2.407414491855774, 48.859801565568624], [2.407229323943584, 48.859726865450114], [2.407216516913483, 48.85972688565023], [2.407205105840686, 48.85973826517961], [2.407147379457314, 48.85986873928367], [2.407085573509343, 48.860009613826705], [2.407027845163022, 48.86014008783446], [2.406966038580084, 48.86028096138197], [2.406964524624454, 48.86028320493575], [2.406848768151894, 48.86041794642692], [2.406737714688812, 48.86053594735234], [2.406723115806897, 48.860539973285206], [2.406498127702014, 48.86050623761256], [2.406271302111719, 48.86047253826456], [2.406255212277044, 48.86047881769239], [2.40619355350688, 48.860619777880565], [2.4061331808436313, 48.86075920652651], [2.406071521411472, 48.86090016661619], [2.406011148107088, 48.86103959426601], [2.405999945517609, 48.861046029218784], [2.405873460246608, 48.86105779428176], [2.40574517061102, 48.86106952776787], [2.40573390441396, 48.86107603882401], [2.40569236765393, 48.86117516585704], [2.405650328237126, 48.861277836479], [2.405608789784042, 48.861376964357504], [2.405566750039701, 48.86147963493142], [2.40551396045979, 48.861511883037586], [2.405535503195772, 48.86152923134328], [2.405612048050503, 48.861608092655345], [2.405686611370157, 48.861682164067126], [2.405763155305045, 48.86176102616414], [2.405868258667405, 48.86186543640792], [2.405980290842305, 48.86197977460084], [2.40608539508112, 48.86208418463335], [2.406197428203051, 48.862198522600416], [2.406302533318229, 48.862302932421606], [2.406332042790221, 48.862333049372424], [2.406332584119689, 48.862342841391815]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 28, "zemmour_eric": 56.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-41", "circ_bv": "15", "num_bureau": 41, "roussel_fabien": 22.0, "nb_emargement": 1085.0, "nb_procuration": 51.0, "nb_vote_blanc": 9.0, "jadot_yannick": 46.0, "le_pen_marine": 84.0, "nb_exprime": 1070.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1528.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1085, "quartier_bv": "80", "geo_point_2d": [48.86213149296647, 2.40794129860031], "melenchon_jean_luc": 565.0, "poutou_philippe": 6.0, "macron_emmanuel": 217.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.33775344081474, 48.84928835133392], [2.337706887724221, 48.84929192581349], [2.337495518405378, 48.84931088502766], [2.337271476613226, 48.84932546394902], [2.337269260480052, 48.84932548854714], [2.337077756645261, 48.84931854671465], [2.336885998838108, 48.849310362952295], [2.336694495121303, 48.84930341960696], [2.336502737430005, 48.84929523523024], [2.336311235171177, 48.84928829217822], [2.336119477595637, 48.849280107187155], [2.33592797409226, 48.84927316261473], [2.335736216632694, 48.84926497700931], [2.335734310981197, 48.8492648054439], [2.3355606797854422, 48.84924087888876], [2.335391025562789, 48.84921585716841], [2.335221371503156, 48.84919083520691], [2.335047742152038, 48.84916690791336], [2.3350465550436272, 48.84916670705421], [2.334883749450401, 48.84913396750184], [2.334683120169347, 48.849095123902245], [2.334520315028085, 48.849062383853195], [2.334319684930961, 48.84902353963408], [2.33415688160433, 48.84899079909601], [2.3339562520536052, 48.84895195426502], [2.333783588199304, 48.84891795318002], [2.333582959207286, 48.848879107720485], [2.333410295837904, 48.84884510609455], [2.3332096674046, 48.84880626000652], [2.333037004520143, 48.84877225783965], [2.332864340509862, 48.8487382545157], [2.332663714257551, 48.848699407516044], [2.332662548460676, 48.84869914019929], [2.332510096519375, 48.84865888882542], [2.33235446252906, 48.84861961958542], [2.332202009707327, 48.848579366909256], [2.332046376186661, 48.848540097265705], [2.331893925186553, 48.84849984510098], [2.331738292135533, 48.84846057505388], [2.331683069182043, 48.84847056606018], [2.331680209234568, 48.84847510354264], [2.331688645843099, 48.84860261421204], [2.331697136209962, 48.84872572370101], [2.331705574274674, 48.84885323344883], [2.331714063359701, 48.84897634290125], [2.331722501494877, 48.84910385351847], [2.331730992023386, 48.84922696294961], [2.331739428877792, 48.84935447352934], [2.331747919498757, 48.849477582032264], [2.331756356435159, 48.849605092582046], [2.331764847125414, 48.849728201955394], [2.331773337855684, 48.84985131131446], [2.33178177491489, 48.84997882181966], [2.331790265737519, 48.85010193025052], [2.331798704241312, 48.85022944073344], [2.33177606926944, 48.85024629150517], [2.33180112400291, 48.85024924822303], [2.331808711733919, 48.850256806535384], [2.331877579189605, 48.850251176212986], [2.33206438877372, 48.8502557501187], [2.332280306754046, 48.850260671451316], [2.332467116419166, 48.85026524382892], [2.332683034465239, 48.850270165334], [2.332869844199726, 48.85027473708281], [2.333085762334775, 48.8502796569618], [2.333272572127008, 48.85028422898106], [2.333488490339403, 48.850289148133285], [2.333675300200991, 48.8502937195237], [2.333891218490722, 48.85029863794908], [2.334078028433146, 48.85030320781143], [2.334090994487719, 48.850310833684084], [2.334118049317911, 48.85042741603423], [2.334146169651181, 48.85054434245361], [2.334173226088748, 48.85066092477438], [2.334201346671833, 48.85077785115625], [2.334228401991372, 48.8508944334325], [2.334256524186883, 48.85101135978442], [2.334283579751102, 48.85112794202376], [2.334311702196541, 48.85124486833816], [2.334338758005444, 48.85136145054056], [2.334366879337986, 48.85147837680987], [2.334382484728974, 48.851485847345664], [2.334545172266318, 48.8514687291628], [2.334780746201758, 48.85144425096258], [2.334943433489884, 48.85142713133828], [2.335179005687565, 48.85140265234544], [2.335341694077601, 48.851385532186555], [2.335345948704543, 48.851385534236634], [2.335536529782479, 48.85140493065589], [2.335722941945668, 48.85142445381789], [2.335913521943541, 48.851443849628474], [2.336099935750019, 48.85146337221002], [2.336286348333447, 48.85148289449326], [2.3364769287433003, 48.85150229030469], [2.336663342969808, 48.85152181200744], [2.336853923673756, 48.85154120631849], [2.33704033818081, 48.8515607274332], [2.337230919167388, 48.85158012114309], [2.337417332592048, 48.85159964166219], [2.337607915223982, 48.851619034778466], [2.337794328929169, 48.85163855470958], [2.3379849104695642, 48.851657948116426], [2.338171325817803, 48.851677467467056], [2.338361907652234, 48.85169685937345], [2.338406331446757, 48.85168383681357], [2.338396102193735, 48.85165926019686], [2.338315211133107, 48.851541456748684], [2.338241666168525, 48.851420628853965], [2.338240838493777, 48.85141862590568], [2.338210882036367, 48.85128831250627], [2.338182038843316, 48.85115727046652], [2.338152082683191, 48.85102695702176], [2.338123239782663, 48.85089591493702], [2.338093285271103, 48.85076560235375], [2.338064442674514, 48.85063455932479], [2.338034487097517, 48.85050424668867], [2.338005644782018, 48.85037320451404], [2.337975690876413, 48.85024289094082], [2.337946848853419, 48.85011184872125], [2.337916893882383, 48.8499815350952], [2.337888052151894, 48.84985049283067], [2.337858097478223, 48.84972017915928], [2.337829256040236, 48.8495891368498], [2.337799303014968, 48.84945882403993], [2.337770461880901, 48.84932778078627], [2.33775344081474, 48.84928835133392]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 99, "zemmour_eric": 128.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "6-2", "circ_bv": "02", "num_bureau": 2, "roussel_fabien": 8.0, "nb_emargement": 1016.0, "nb_procuration": 82.0, "nb_vote_blanc": 4.0, "jadot_yannick": 72.0, "le_pen_marine": 44.0, "nb_exprime": 1010.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1266.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1016, "quartier_bv": "22", "geo_point_2d": [48.85012141883437, 2.3351478219621176], "melenchon_jean_luc": 142.0, "poutou_philippe": 1.0, "macron_emmanuel": 485.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323034328562558, 48.88698204177591], [2.323056019696209, 48.886992035450405], [2.323100793319803, 48.88702112466972], [2.3232291119526662, 48.88710572146203], [2.323254586552855, 48.88712827762796], [2.323255943740315, 48.88712930603731], [2.323399680746766, 48.887222866156385], [2.323527998986993, 48.8873074635044], [2.323671736974128, 48.887401023281704], [2.323800056107037, 48.88748561942523], [2.323943795063085, 48.88757917976001], [2.324072115077003, 48.88766377559825], [2.324200436871429, 48.88774837130012], [2.324344177272157, 48.88784193113189], [2.3244724985840293, 48.8879265265208], [2.3246162399653683, 48.88802008601081], [2.324634499188166, 48.88802062157838], [2.32478312444466, 48.88793972974183], [2.324963939412552, 48.88784073315394], [2.325112562268497, 48.887759841786846], [2.325293375996986, 48.887660843786], [2.325441999191402, 48.887579952004415], [2.325442331512105, 48.88757977491025], [2.325521542365857, 48.887539104734635], [2.325590582264499, 48.88753444748728], [2.325593365143875, 48.887497634759164], [2.325654072009985, 48.88736844097925], [2.325705751423834, 48.8872518237918], [2.325757430606213, 48.887135206569624], [2.325818138006403, 48.887006012671584], [2.325869816693035, 48.886889395374844], [2.325930522164176, 48.88676020138326], [2.325982200355277, 48.886643584011914], [2.326028442862, 48.88654516901223], [2.326048312823655, 48.88652289205446], [2.326047218070718, 48.88651696740622], [2.326061681826102, 48.886486187433775], [2.326117561850678, 48.88636381813524], [2.326178267457998, 48.88623462396393], [2.326234148313921, 48.88611225369136], [2.326294851963568, 48.885983060322964], [2.326350732275571, 48.88586068996795], [2.326411435354358, 48.88573149561161], [2.326467315110816, 48.885609126073476], [2.326528017607119, 48.88547993162845], [2.326583896831201, 48.88535756110863], [2.326644600108633, 48.88522836658262], [2.326700478777289, 48.885105996879645], [2.32676118010864, 48.88497680225728], [2.326817058245033, 48.88485443157263], [2.326877758993922, 48.884725236861605], [2.32693363657481, 48.88460286699382], [2.326994336741246, 48.88447367219414], [2.327050213778159, 48.88435130224396], [2.327110914725732, 48.88422210736329], [2.327166791230498, 48.88409973643141], [2.327227490232049, 48.88397054145442], [2.3272833661813372, 48.88384817133945], [2.32734406460046, 48.8837189762738], [2.327399940017413, 48.88359660517717], [2.327392281114434, 48.88358715694122], [2.327346679754561, 48.88358144360621], [2.327220194730739, 48.883685765846586], [2.327096665744137, 48.88378764848606], [2.326970179718732, 48.88389197044277], [2.3268466497538602, 48.88399385280515], [2.326720162738285, 48.88409817357892], [2.326596631783607, 48.88420005656352], [2.326470143766332, 48.88430437705361], [2.326346611833258, 48.884406259761185], [2.326220122814375, 48.884510579967554], [2.326096589914638, 48.88461246149877], [2.325970099882296, 48.884716782320716], [2.32584656600425, 48.88481866357487], [2.325720074970278, 48.8849229841131], [2.325596540113915, 48.88502486509022], [2.325470046714596, 48.88512918533705], [2.325346512243513, 48.885231066044774], [2.325327334313443, 48.88523246795583], [2.3253050637374493, 48.885220698829585], [2.325280599020931, 48.88520777068805], [2.325267228328146, 48.885206595458], [2.325254817751736, 48.885219726790005], [2.325139836691884, 48.885309744750856], [2.32502396779444, 48.88539973780571], [2.324908985938065, 48.88548975553013], [2.324793114865757, 48.885579749238445], [2.324678132212949, 48.88566976672643], [2.32456226170476, 48.88575976020431], [2.324559031237313, 48.88576595275378], [2.324564440990401, 48.885852166068], [2.324569876828715, 48.88593878781804], [2.324565967690812, 48.88594547027035], [2.324416267795259, 48.88604569777759], [2.324266667742156, 48.88614585820549], [2.324116966694464, 48.886246085320195], [2.323967365501662, 48.88634624445664], [2.323817663301822, 48.886446471178914], [2.323668060945864, 48.88654663082233], [2.323518357593865, 48.8866468571521], [2.323368754098302, 48.88674701550408], [2.323219049594138, 48.88684724144133], [2.323069444935493, 48.88694740030032], [2.323034328562558, 48.88698204177591]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 76, "zemmour_eric": 64.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-4", "circ_bv": "03", "num_bureau": 4, "roussel_fabien": 20.0, "nb_emargement": 1264.0, "nb_procuration": 87.0, "nb_vote_blanc": 10.0, "jadot_yannick": 125.0, "le_pen_marine": 45.0, "nb_exprime": 1253.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1566.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1264, "quartier_bv": "67", "geo_point_2d": [48.886227771751436, 2.3252342524429657], "melenchon_jean_luc": 347.0, "poutou_philippe": 9.0, "macron_emmanuel": 513.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.343214170763249, 48.841133830322796], [2.343207144664273, 48.841152607351255], [2.3432804376543652, 48.84121912202145], [2.343317416491042, 48.84126250530721], [2.34334178635821, 48.841295086351465], [2.34337052667074, 48.841289212975006], [2.343490514061605, 48.84124215215948], [2.343636943983542, 48.84118869703329], [2.343656476252328, 48.841193749807324], [2.343719087553203, 48.84131902672075], [2.343779709183878, 48.84144197590901], [2.343842321079146, 48.84156725273009], [2.343902944662929, 48.84169020093669], [2.343965555790227, 48.841815477657995], [2.344026179942119, 48.841938426674076], [2.344088791663821, 48.842063703303], [2.344149416395152, 48.84218665222934], [2.344212030073754, 48.84231192877333], [2.344272654022045, 48.84243487760239], [2.344335268295072, 48.84256015405405], [2.344395894185308, 48.84268310280074], [2.344458507690272, 48.84280837915258], [2.344519134159971, 48.842931327809495], [2.34458174825927, 48.84305660406894], [2.344642375308542, 48.84317955263602], [2.3447049913647993, 48.84330482881057], [2.344765617630935, 48.84342777728042], [2.344828234281752, 48.84355305336254], [2.344888862489892, 48.84367600175004], [2.344951478372653, 48.84380127773234], [2.345012107160287, 48.84392422602998], [2.345074723637517, 48.84404950191991], [2.345135353004655, 48.84417245012776], [2.34519598265785, 48.84429539829131], [2.345258601385554, 48.84442067405076], [2.345257363524412, 48.84442809780206], [2.345163995977661, 48.84453143695591], [2.345071627593013, 48.84463027210064], [2.344978259315886, 48.844733611090795], [2.3448858902206853, 48.84483244607422], [2.344884467602923, 48.844839820242], [2.344904734108519, 48.84488088993433], [2.34493381203981, 48.84494304752749], [2.34494310122348, 48.84495127448424], [2.344984461017591, 48.844945748628774], [2.345140221657656, 48.84492112783558], [2.345309759076519, 48.844894926509376], [2.345465519411016, 48.84487030529153], [2.345635056501111, 48.84484410350316], [2.345645492215194, 48.84483633973767], [2.345666641143827, 48.84471069232092], [2.345689822444204, 48.844586282731626], [2.345710971164492, 48.84446063527885], [2.345734152236536, 48.844336226552386], [2.34575530075977, 48.844210578164294], [2.345778481614774, 48.84408616940134], [2.345780813236413, 48.844082136822344], [2.345895459641868, 48.8439731701786], [2.346012077191786, 48.843862579152486], [2.346126722642032, 48.84375361136643], [2.346243337836248, 48.84364302098496], [2.346357983682533, 48.843534052963236], [2.346474597905945, 48.84342346143527], [2.34658924141196, 48.843314494062376], [2.346705856016015, 48.843203902294654], [2.34682049856684, 48.84309493377939], [2.346937112177658, 48.84298434266383], [2.3470517537620292, 48.842875373905486], [2.347168365039558, 48.84276478163598], [2.347168958643584, 48.84276416701311], [2.347266639366418, 48.842656831350624], [2.347357354614104, 48.84255392833298], [2.347455033192537, 48.84244659248902], [2.347545747702236, 48.84234368930913], [2.347636460491342, 48.84224078604349], [2.347734139270599, 48.84213344994897], [2.347824852684218, 48.84203054652854], [2.3479225306927383, 48.8419232093607], [2.347929982439906, 48.841919290981714], [2.348111395892482, 48.84188020407332], [2.348296511304397, 48.84184022959985], [2.3484779242068052, 48.841801142132866], [2.348663039068037, 48.841761166190125], [2.3488444514204723, 48.84172207816456], [2.34902956434606, 48.84168210254371], [2.349210976148322, 48.84164301395951], [2.349396089885674, 48.8416030368768], [2.349405474260363, 48.84159469595358], [2.34941064893995, 48.84144593877696], [2.349416164537578, 48.84130665283584], [2.349421681468185, 48.841167366884484], [2.349426854696633, 48.84101860964283], [2.349432371568183, 48.84087932365507], [2.349437544737532, 48.840730566374525], [2.34943753343135, 48.840729943953015], [2.3494375249687423, 48.84069230731143], [2.349436033830475, 48.8406710652113], [2.349436272538122, 48.840645937371534], [2.349412822100993, 48.84064158732024], [2.349354128235116, 48.84064121772744], [2.349308314857899, 48.84064014201854], [2.349302183965804, 48.84063901684109], [2.349166827350585, 48.84058939913279], [2.349032434067611, 48.84053838080338], [2.348897076608192, 48.84048876277795], [2.348762683848749, 48.84043774414089], [2.348749101009384, 48.84043774304252], [2.348589257671957, 48.840498402741794], [2.348431286527301, 48.84056044125646], [2.348271442443715, 48.84062110052437], [2.348113470548896, 48.84068313861255], [2.347953627081595, 48.840743797456554], [2.347795654436617, 48.84080583511824], [2.347635808860709, 48.840866493523485], [2.34747783545441, 48.84092853165793], [2.347461853158968, 48.84092754511285], [2.347333605435788, 48.84085282148645], [2.347164773232935, 48.84075271381858], [2.347036527717027, 48.84067799076873], [2.346867696651077, 48.84057788266589], [2.346739450640074, 48.84050315837915], [2.346611206347958, 48.84042843485667], [2.346442376907265, 48.8403283261312], [2.346426356207685, 48.8403272672871], [2.346258647512571, 48.84039248296724], [2.346088937930089, 48.84045685376196], [2.345921227033487, 48.84052206895406], [2.345751516612451, 48.840586439262566], [2.345583806239039, 48.84065165398153], [2.345414093616902, 48.84071602379641], [2.345395641109925, 48.84071287307652], [2.3452721132110312, 48.84057778788743], [2.345168551716736, 48.84046388576891], [2.345142926964185, 48.840423872151106], [2.345133599040931, 48.84042366999316], [2.345084168965227, 48.84044207199566], [2.344898928322614, 48.84051106605089], [2.344718209162111, 48.840578342516295], [2.344532967550863, 48.840647335996415], [2.344352247445507, 48.84071461190076], [2.344167004865424, 48.840783604805736], [2.343986282452763, 48.84085088014153], [2.343805560936017, 48.8409181552077], [2.343620316908978, 48.84098714725355], [2.3434395944473803, 48.84105442175868], [2.343254349462836, 48.841123412330106], [2.343214170763249, 48.841133830322796]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 86, "zemmour_eric": 82.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "5-6", "circ_bv": "02", "num_bureau": 6, "roussel_fabien": 24.0, "nb_emargement": 1139.0, "nb_procuration": 78.0, "nb_vote_blanc": 9.0, "jadot_yannick": 89.0, "le_pen_marine": 44.0, "nb_exprime": 1127.0, "nb_vote_nul": 3.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1351.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1139, "quartier_bv": "19", "geo_point_2d": [48.841967216113645, 2.346181639518223], "melenchon_jean_luc": 333.0, "poutou_philippe": 6.0, "macron_emmanuel": 410.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3025345268709883, 48.83889565117897], [2.302552845459806, 48.83889299602223], [2.3026961611490853, 48.838911559936456], [2.302839121569426, 48.838930207946994], [2.302982437450954, 48.83894877241685], [2.303125398075777, 48.8389674200847], [2.303139275833583, 48.838963682206995], [2.303218031090908, 48.83888785640372], [2.30328678625072, 48.83882400677369], [2.303288953525265, 48.83881731099404], [2.303253415783367, 48.8386884041082], [2.303217672810825, 48.83855845363003], [2.3031821354218, 48.83842954669311], [2.303146392792453, 48.83829959706286], [2.303110855756094, 48.83817069007494], [2.303075113494081, 48.83804073949396], [2.303039576810485, 48.837911832455], [2.303003834891554, 48.837781882721934], [2.302968298572739, 48.83765297473266], [2.3029325570091093, 48.837523024948204], [2.302897021031021, 48.83739411780721], [2.302861279834512, 48.837264167072064], [2.302825744209271, 48.837135259880036], [2.302790003355924, 48.83700530999282], [2.302801128684234, 48.83699483690067], [2.302992659364488, 48.836973377096875], [2.3031820862102013, 48.83695212777519], [2.30337361657668, 48.8369306673606], [2.303563043111879, 48.83690941743481], [2.303754573152564, 48.83688795730872], [2.303943999377244, 48.83686670677879], [2.304135530478492, 48.83684524515058], [2.304324955030404, 48.83682399400864], [2.30451648581775, 48.83680253176958], [2.304705910047129, 48.83678128092286], [2.304897440520671, 48.836759818073], [2.305086864451503, 48.83673856572291], [2.305278394611331, 48.83671710226221], [2.305467818231508, 48.83669584930803], [2.305468680818603, 48.83669573380081], [2.305608364616319, 48.83667401012875], [2.3057542705824092, 48.83665115142594], [2.305893954141633, 48.836629427419595], [2.306039859845715, 48.83660656926678], [2.306050146358943, 48.83659631495003], [2.306031591441544, 48.83652408307737], [2.306013190527141, 48.836460651544996], [2.306009199531094, 48.83644042759719], [2.3059784267679833, 48.836442473197344], [2.305829305251387, 48.83645946939391], [2.305674019285529, 48.83647601411206], [2.305661390337338, 48.836472900026834], [2.305543462539765, 48.83637965115068], [2.305425488509847, 48.83628612037612], [2.3053075615448613, 48.83619287215112], [2.305189588360852, 48.83609934112827], [2.305071662252516, 48.83600609175582], [2.30495368991451, 48.83591256048471], [2.304835764638637, 48.83581931176344], [2.304717793146728, 48.835725780244005], [2.304599867365091, 48.8356325303674], [2.30448189808148, 48.83553899860763], [2.30436397313239, 48.83544574938217], [2.304246004694756, 48.83535221737418], [2.304230126796718, 48.83534971739253], [2.304121046044882, 48.83538085946871], [2.304010054401209, 48.83541419648808], [2.303991841071919, 48.83540947402562], [2.303902064196218, 48.835267452329944], [2.303813313103372, 48.83512588170633], [2.303812653550848, 48.835124975796084], [2.303795844029278, 48.83511746622086], [2.303776850397695, 48.83512384554141], [2.303606989570038, 48.835171444434266], [2.303413315384787, 48.835225467129256], [2.303243452531632, 48.83527306549359], [2.303049778966383, 48.83532708670371], [2.302879915438207, 48.835374685446745], [2.302735168440401, 48.83541505910524], [2.302726886486626, 48.83541414382998], [2.302708357901484, 48.83542311768475], [2.302659430565048, 48.8354367646318], [2.302603903736616, 48.835451944284955], [2.30259622114887, 48.835463152446444], [2.302671961092472, 48.83560994180144], [2.30274637869088, 48.835751630230305], [2.302743447758707, 48.835760726489305], [2.302607563894675, 48.83585645228341], [2.302472609912176, 48.83595147553422], [2.302336723691305, 48.83604720099636], [2.30220177008355, 48.836142223933344], [2.302065882867943, 48.836237949071446], [2.301930926898345, 48.83633297257806], [2.301795040050417, 48.83642869740009], [2.301660083105273, 48.83652371968559], [2.301524193900368, 48.83661944417567], [2.301389235967525, 48.83671446613938], [2.301253347130397, 48.836810190313365], [2.301118388197893, 48.83690521285458], [2.301114730231085, 48.83691079097196], [2.301105875640681, 48.83700245809013], [2.301098784146495, 48.837092082236005], [2.301089929497353, 48.837183749338166], [2.301082837951085, 48.83727337346856], [2.301081914598785, 48.83727619030184], [2.301026795572007, 48.837368879447354], [2.300970785057622, 48.83746656565592], [2.300972606259092, 48.83747512752395], [2.30110560335912, 48.83759279779463], [2.3012412209684, 48.83771067657458], [2.301241124436446, 48.8377216375488], [2.301116087243538, 48.83782773168378], [2.3009928911858513, 48.837932026005845], [2.300867854345368, 48.83803811986938], [2.300744657305701, 48.83814241301681], [2.300619619455273, 48.838248506600884], [2.300496421409693, 48.83835280037237], [2.300371382549207, 48.83845889367697], [2.300248183521738, 48.838563186273866], [2.30023451907637, 48.83857609415098], [2.300240772217081, 48.838584865420586], [2.300329742358194, 48.83862924726932], [2.300419551440151, 48.838674680823246], [2.300422330890155, 48.83868706432468], [2.30034349274036, 48.83875954667625], [2.300265894674595, 48.83883169086833], [2.3001870574509002, 48.8389041731154], [2.300109458965273, 48.83897631629731], [2.300110122190962, 48.83898729699423], [2.300173591047956, 48.83903779204561], [2.300255705188544, 48.839102524341], [2.300272286269318, 48.83910478072339], [2.300460455987573, 48.83904213482606], [2.300648152669353, 48.838980387934775], [2.300836322837115, 48.83891774234651], [2.301024018625688, 48.8388559948586], [2.301212186542299, 48.838793347764835], [2.30139988143766, 48.83873159968031], [2.301588048453445, 48.8386689519883], [2.3017757424555922, 48.83860720330717], [2.301788600824409, 48.83860745194071], [2.301975673809229, 48.838678313308876], [2.302155402297924, 48.83874784543031], [2.302335131266132, 48.838817377277394], [2.302522205747388, 48.83888823777755], [2.3025345268709883, 48.83889565117897]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 154, "zemmour_eric": 133.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-60", "circ_bv": "13", "num_bureau": 60, "roussel_fabien": 27.0, "nb_emargement": 1368.0, "nb_procuration": 79.0, "nb_vote_blanc": 19.0, "jadot_yannick": 92.0, "le_pen_marine": 80.0, "nb_exprime": 1343.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1654.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1368, "quartier_bv": "57", "geo_point_2d": [48.83707837276755, 2.302772679535494], "melenchon_jean_luc": 234.0, "poutou_philippe": 3.0, "macron_emmanuel": 551.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.299877844092862, 48.865307021284764], [2.299902671526151, 48.86532638920803], [2.299861911261852, 48.86545988218454], [2.299824387568434, 48.86558440507416], [2.299786863683542, 48.86570892883731], [2.299746102823076, 48.865842421728246], [2.29970857856531, 48.86596694543779], [2.299667817314447, 48.86610043737167], [2.299630292683598, 48.866224961027676], [2.299589531018253, 48.866358453803024], [2.299552007377531, 48.86648297741338], [2.299511243958564, 48.86661646922371], [2.299473719944858, 48.866740992780514], [2.299432957474512, 48.86687448544033], [2.29939543172469, 48.866999008935544], [2.299354668863826, 48.86713250063828], [2.299317142741104, 48.867257024079926], [2.299276379465628, 48.86739051662415], [2.299238852969796, 48.86751504001219], [2.299198089303997, 48.8676485315993], [2.299160562435152, 48.867773054933764], [2.299119798354623, 48.86790654736236], [2.299082271112859, 48.86803107064324], [2.299041506641897, 48.86816456211475], [2.299003979027009, 48.86828908534205], [2.298963214141506, 48.86842257765502], [2.298925687528856, 48.868547099937366], [2.298925033623985, 48.86854858542523], [2.29885280859979, 48.86867285316128], [2.298782301607568, 48.8687933239734], [2.298710074552479, 48.86891759068852], [2.298639568262082, 48.86903806139793], [2.298567340527157, 48.869162327999405], [2.29849683221222, 48.86928279859003], [2.298424605160636, 48.86940706508587], [2.29835409618423, 48.86952753556579], [2.298340066889351, 48.86955150722977], [2.298339810747454, 48.86955169818825], [2.298327160350966, 48.86957096715994], [2.298270681661495, 48.86966746592136], [2.298207590172323, 48.86978040638698], [2.298137080188676, 48.869900876698345], [2.2980739867639253, 48.870013817061704], [2.298003477518657, 48.870134287276926], [2.29794038352152, 48.870247227546], [2.297877290626122, 48.87036016687899], [2.297806779093809, 48.87048063693261], [2.297707137838078, 48.87061210229139], [2.29763662693444, 48.870732572225286], [2.297566114341426, 48.87085304209653], [2.297466471777958, 48.87098450631138], [2.29746553417146, 48.87098579406615], [2.297367436868419, 48.871096860224156], [2.297267653545891, 48.87121210913931], [2.297169555394817, 48.87132317511238], [2.297069771200933, 48.871438423838974], [2.29697167220161, 48.871549489627135], [2.296871887148503, 48.87166473726585], [2.296773787288987, 48.87177580376839], [2.296674001364508, 48.87189105121853], [2.296575900668867, 48.87200211663683], [2.2964761138608623, 48.872117364797674], [2.2963780123171462, 48.87222843003103], [2.296278224637746, 48.872343678003304], [2.296180122245745, 48.872454743051705], [2.296080333707093, 48.872569989936125], [2.295982230467, 48.87268105479957], [2.295882441044782, 48.87279630239469], [2.295784336956382, 48.872907367073196], [2.295684546662738, 48.87302261447969], [2.295586441726126, 48.87313367897324], [2.295486650573209, 48.87324892529186], [2.2953885461517682, 48.87335998960849], [2.295288752751952, 48.873475236629766], [2.295228777812901, 48.873543133769324], [2.295216810770912, 48.87355738714551], [2.295215133881909, 48.873563124973096], [2.295177002161947, 48.87360629195204], [2.295134330843662, 48.87365223993472], [2.295119487663505, 48.87371913378719], [2.295199365445194, 48.87373931232748], [2.295214084704143, 48.873743031438124], [2.295290927211946, 48.87370862621974], [2.295469758062842, 48.8736517198464], [2.295652054971733, 48.87359415459628], [2.295830883671666, 48.8735372476695], [2.2960131797686563, 48.87347968276275], [2.296192009056478, 48.87342277439936], [2.296374304353722, 48.873365208936704], [2.29655313149078, 48.873308300019886], [2.29673542598828, 48.87325073400131], [2.296914253688814, 48.8731938254464], [2.297096547398703, 48.87313625797265], [2.297275372948481, 48.87307934886431], [2.297457665858615, 48.8730217808347], [2.297636491984004, 48.872964871189026], [2.297818784094376, 48.87290730260343], [2.29799760806891, 48.87285039240439], [2.2981799007428, 48.87279282327093], [2.298358723929858, 48.87273591252651], [2.298541014440705, 48.87267834282915], [2.298719836840085, 48.87262143153939], [2.298902127914438, 48.87256386129412], [2.299080949526239, 48.87250694945898], [2.299263238425452, 48.87244937954912], [2.299442060625138, 48.87239246627735], [2.299624348724584, 48.87233489581161], [2.299803168773311, 48.872277981986464], [2.299985456072991, 48.87222041096485], [2.300164276697387, 48.87216349660233], [2.300346563197398, 48.87210592502487], [2.30052538165886, 48.872049011008336], [2.300707667371074, 48.8719914379757], [2.300886486408202, 48.871934523421764], [2.301068771320635, 48.871876949833236], [2.301247588207014, 48.871820034726014], [2.301429873682916, 48.87176246058961], [2.301608689781597, 48.87170554493705], [2.301790973094462, 48.871647970236786], [2.301969788405647, 48.87159105403894], [2.302152072281868, 48.87153347879079], [2.302330886805453, 48.87147656204755], [2.302513168506698, 48.87141898713488], [2.302602069522621, 48.87139068925745], [2.302624232958129, 48.87138632166776], [2.302640306261103, 48.87137646676955], [2.302730220310783, 48.87134784643805], [2.302906499878374, 48.871290976120626], [2.30308531275716, 48.871234057338654], [2.303261591551981, 48.871177186492424], [2.303440403652132, 48.87112026717414], [2.303616681674182, 48.87106339579912], [2.303795492995697, 48.871006475944505], [2.303971770244972, 48.87094960404069], [2.304150582139065, 48.87089268455698], [2.304326858627578, 48.870835811225135], [2.304505668379805, 48.870778891197176], [2.304681944095533, 48.87072201733652], [2.304860753069123, 48.8706650967723], [2.305037028012066, 48.87060822238284], [2.305215836207018, 48.870551301282326], [2.305392110377171, 48.87049442636413], [2.305570919156599, 48.87043750473522], [2.305747192554063, 48.87038062928822], [2.30592599919173, 48.87032370711514], [2.3061022718163002, 48.870266831139396], [2.306281077675321, 48.87020990842998], [2.306385548594162, 48.870176200280504], [2.306409003172263, 48.87016285412039], [2.306378748913903, 48.87011945000503], [2.306229474534562, 48.870037211267935], [2.306078955433513, 48.86995439673371], [2.305929682000361, 48.86987215761051], [2.305779163852857, 48.869789342686914], [2.305629892729291, 48.86970710318544], [2.30547937417213, 48.86962428786456], [2.305330103994842, 48.86954204797696], [2.305179586391223, 48.86945923226674], [2.305030317160105, 48.86937699199301], [2.304879800510024, 48.86929417589343], [2.304730532225275, 48.869211935233565], [2.304580016528726, 48.86912911874468], [2.30443074919024, 48.86904687769864], [2.304280234447218, 48.868964060820424], [2.304130968054888, 48.86888181938828], [2.303980455628564, 48.86879900212861], [2.303831188819415, 48.86871676030244], [2.303680677346604, 48.868633942653474], [2.303679775032454, 48.86862067294834], [2.303835763210675, 48.86851790101522], [2.303993373522236, 48.8684155007423], [2.304149360467487, 48.86831272838145], [2.304306969529815, 48.86821032857583], [2.304462955241903, 48.86810755578724], [2.304620563079033, 48.868005154650376], [2.304619811819858, 48.86799188762244], [2.3044610272339, 48.86790308354417], [2.304303681052689, 48.86781522382576], [2.304144896168979, 48.867726420205265], [2.303987552417706, 48.86763856006511], [2.303828768623513, 48.867549755111796], [2.303671425939027, 48.867461894542075], [2.303512643222132, 48.86737308915517], [2.303355301592398, 48.86728522905509], [2.303196519952893, 48.86719642323467], [2.303039178038826, 48.867108561797785], [2.302880398839841, 48.86701975555175], [2.302723057992647, 48.86693189368529], [2.302722965975712, 48.866931842785725], [2.302564483643089, 48.86684476907391], [2.302407143857136, 48.86675690677826], [2.302248661221482, 48.866669832626485], [2.302091323859675, 48.86658196990974], [2.301932842284105, 48.86649489532606], [2.301775504620306, 48.86640703217226], [2.301617024116873, 48.86631995625737], [2.301459688865042, 48.86623209358178], [2.3014548792226233, 48.866224796977306], [2.301464846864053, 48.8660880651703], [2.301474449886597, 48.865954427674666], [2.301484416049876, 48.86581769672395], [2.30149401897238, 48.86568405919414], [2.301503620482528, 48.86555042163943], [2.3015135878671, 48.86541368974504], [2.301523189277218, 48.865280052156116], [2.301533156558598, 48.86514332022671], [2.301542757856732, 48.86500968350288], [2.301552725035023, 48.864872951538445], [2.301562326245087, 48.86473931388112], [2.301572293320393, 48.86460258188168], [2.301581895793492, 48.86446894419811], [2.301573456972186, 48.864466982034614], [2.30148448816346, 48.864479113952484], [2.301393438606619, 48.864543432813214], [2.301234120349473, 48.864608917897286], [2.301143068893595, 48.86467323655204], [2.300983749924673, 48.86473872129519], [2.300829185818853, 48.86480060742524], [2.300669866065856, 48.86486609174302], [2.300515301209168, 48.8649279774606], [2.300360735985361, 48.864989862975115], [2.300201415064743, 48.86505534665812], [2.300197872002462, 48.86505739174665], [2.300102268103829, 48.86514424495269], [2.299940450916901, 48.86527674308364], [2.29990771560988, 48.86530648104196], [2.299877844092862, 48.865307021284764]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 71, "zemmour_eric": 137.0, "hidalgo_anne": 2.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "8-18", "circ_bv": "01", "num_bureau": 18, "roussel_fabien": 5.0, "nb_emargement": 671.0, "nb_procuration": 37.0, "nb_vote_blanc": 5.0, "jadot_yannick": 21.0, "le_pen_marine": 49.0, "nb_exprime": 662.0, "nb_vote_nul": 4.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 943.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 671, "quartier_bv": "29", "geo_point_2d": [48.86950393093302, 2.30084710088197], "melenchon_jean_luc": 76.0, "poutou_philippe": 1.0, "macron_emmanuel": 284.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.400150463880788, 48.87843526931706], [2.400124897998195, 48.87843127319798], [2.4000609844503282, 48.87839822093553], [2.400006749450776, 48.87836809409954], [2.400000178589077, 48.878366097931504], [2.399795819735185, 48.8783439464854], [2.399595014392674, 48.87832155170562], [2.399390657249236, 48.8782993995738], [2.399189850899638, 48.87827700320743], [2.398989044712263, 48.87825460740303], [2.398784688089346, 48.878232454235494], [2.398784509710794, 48.878232433554416], [2.398620557191959, 48.87821267467744], [2.398455406088152, 48.87819198863889], [2.398454301535666, 48.878191881464474], [2.398315616474707, 48.878182711030185], [2.398057221995102, 48.878164621576225], [2.397918537076649, 48.87815545068172], [2.397906263412919, 48.87814644691929], [2.397907625244093, 48.87800199355734], [2.39790924672066, 48.87787081648892], [2.397910868199355, 48.877739638505616], [2.39791223000712, 48.877595185090286], [2.397913851459425, 48.87746400797339], [2.397915213251709, 48.877319554521925], [2.397916834687919, 48.87718837737218], [2.397918197828127, 48.87704392389139], [2.397918767676147, 48.876997814488064], [2.397912346647039, 48.87697497697145], [2.397886439066226, 48.87697572890965], [2.397721614861752, 48.876915464821145], [2.397558076445426, 48.87685581851598], [2.397393253010767, 48.87679555306954], [2.397229715346997, 48.87673590630938], [2.397064892661349, 48.87667564130355], [2.396901355750135, 48.87661599408827], [2.396736533834314, 48.87655572772456], [2.396572997675658, 48.876496080054274], [2.396408176508836, 48.87643581413116], [2.3962446424661232, 48.87637616601269], [2.396079820705653, 48.87631589872481], [2.395916287415497, 48.87625625015132], [2.395751466404119, 48.87619598330405], [2.3955879338665182, 48.8761363342755], [2.395423114988373, 48.87607606607722], [2.395259581839951, 48.87601641658678], [2.395246320809769, 48.876016440427], [2.39511723083745, 48.876064699254094], [2.394954370340407, 48.87612487247538], [2.394825279828833, 48.87617313098292], [2.394701619514695, 48.87621882043801], [2.394697059445565, 48.87622451442998], [2.3947089225933462, 48.87623930816049], [2.394768583081225, 48.87635425116881], [2.394827761421505, 48.876468703359876], [2.394887422444862, 48.87658364538579], [2.39494660130693, 48.87669809749427], [2.395006261481478, 48.876813040329445], [2.39506544086534, 48.87692749235539], [2.39512510293877, 48.877042434215], [2.395184282844432, 48.8771568861584], [2.395243945432469, 48.87727182883413], [2.39530312585994, 48.87738628069496], [2.395303861118203, 48.877389186548065], [2.395303977325764, 48.877488978627554], [2.39530410826975, 48.87760053670952], [2.395315073059428, 48.87760948557096], [2.395336276851924, 48.87760816003928], [2.39553914446357, 48.8776590074335], [2.3957248199217043, 48.87770401828274], [2.39572703140517, 48.87770473002375], [2.395877505799783, 48.877765061098216], [2.3960273054542682, 48.877824818399056], [2.396177106815826, 48.87788457551611], [2.396327580877545, 48.877944906907395], [2.396477382929132, 48.8780046636422], [2.396627857685541, 48.8780649946495], [2.396777659063725, 48.8781247509952], [2.396928135888769, 48.87818508072604], [2.396931031361469, 48.87818595507133], [2.39708965821312, 48.87821965873083], [2.397299985010895, 48.87826441802322], [2.397458612340281, 48.878298121191435], [2.397668939772096, 48.878342879832424], [2.397790772712007, 48.87836876481484], [2.3978003303029203, 48.87837635556802], [2.397824299361353, 48.8783740992096], [2.397861094237358, 48.87838191689383], [2.397861827184511, 48.87838208785565], [2.398033569225738, 48.87842570926997], [2.3981983996620873, 48.87846770657579], [2.398370142267543, 48.87851132750387], [2.398534973246264, 48.87855332434303], [2.398706716415945, 48.87859694478487], [2.398871547937034, 48.87863894115736], [2.399036378350123, 48.87868093819371], [2.399208123734388, 48.87872455701879], [2.399216511252964, 48.87872485901731], [2.399439944355059, 48.87868585383355], [2.399656767721444, 48.878647365476304], [2.3998735907672613, 48.878608876725046], [2.400097022879773, 48.87856987031084], [2.400106766637991, 48.87856334324366], [2.400125153610496, 48.87851384547818], [2.400153410909975, 48.878438776178484], [2.400150463880788, 48.87843526931706]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 42, "zemmour_eric": 84.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-36", "circ_bv": "16", "num_bureau": 36, "roussel_fabien": 24.0, "nb_emargement": 981.0, "nb_procuration": 26.0, "nb_vote_blanc": 9.0, "jadot_yannick": 42.0, "le_pen_marine": 69.0, "nb_exprime": 968.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1377.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 981, "quartier_bv": "75", "geo_point_2d": [48.87737274075903, 2.396820106459773], "melenchon_jean_luc": 442.0, "poutou_philippe": 12.0, "macron_emmanuel": 212.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.36584570846116, 48.853437286011754], [2.365821410615433, 48.853442856430014], [2.365668028536622, 48.853473571093176], [2.365495233639626, 48.85350833313046], [2.365314901882026, 48.853544443540876], [2.365142107877117, 48.85357920507326], [2.364961775618575, 48.85361531584849], [2.36478897978039, 48.85365007686148], [2.364780782540386, 48.85365463443137], [2.3647165263169603, 48.85373884410644], [2.364652610598624, 48.853822606772944], [2.364588353960928, 48.85390681636646], [2.36452443920428, 48.85399057805979], [2.364518680003589, 48.85399446864864], [2.364342869653551, 48.85405634915524], [2.364150076889793, 48.85412420618825], [2.363974265664281, 48.85418608614609], [2.363781470566604, 48.85425394346936], [2.363605658465616, 48.85431582287837], [2.363412863781684, 48.854383678707784], [2.363237050805224, 48.854445557567935], [2.363044255161261, 48.85451341279556], [2.36293212319085, 48.854552877471825], [2.362932767983725, 48.854569473945936], [2.362955949800894, 48.85458190589508], [2.363040086564606, 48.85469766688521], [2.363122665849446, 48.854809085537035], [2.363206803350368, 48.85492484638626], [2.36328938335184, 48.8550362649003], [2.36330456019867, 48.855057144956305], [2.363304623255204, 48.85506023816122], [2.363316236342531, 48.855073407100335], [2.363385197776527, 48.85516828774452], [2.36346337434522, 48.85528098943976], [2.363547513365079, 48.85539675000027], [2.3636256892539063, 48.85550945245837], [2.363709829003287, 48.855625212880895], [2.36378800695969, 48.85573791431773], [2.363872146075762, 48.8558536745951], [2.36395032472603, 48.85596637590266], [2.364034465934487, 48.85608213604933], [2.364112643904801, 48.85619483811976], [2.3641967858428092, 48.85631059812844], [2.364274965880836, 48.8564232991776], [2.3642890652829323, 48.8564437461629], [2.364340173558554, 48.85644319296443], [2.364405381628865, 48.85642261326176], [2.364542453935574, 48.856393651009725], [2.364746909847733, 48.8563602609005], [2.3648839817896112, 48.856331299154924], [2.364884909313582, 48.856331126905836], [2.365089364760943, 48.856297736209605], [2.365286942245835, 48.85626594460025], [2.3654913971688343, 48.85623255411444], [2.36568897416126, 48.85620076183941], [2.365893428581795, 48.85616736976545], [2.366091005070904, 48.85613557772405], [2.366288581329743, 48.85610378445621], [2.366493034985478, 48.856070391354834], [2.3666906107408963, 48.856038598320644], [2.366895063883195, 48.85600520453044], [2.366895100756, 48.8560051984301], [2.367092674666959, 48.8559734038237], [2.367280122926937, 48.85594242232483], [2.3674776977168452, 48.85591062798743], [2.36766514417012, 48.8558796449772], [2.367852590389564, 48.85584866257179], [2.368050164474732, 48.855816867286514], [2.368237610239396, 48.855785884276216], [2.368435183862373, 48.85575408745413], [2.368492498835251, 48.85576089315106], [2.368509772283407, 48.85574391554048], [2.368529209781649, 48.85566173205419], [2.368559351950182, 48.85553890853828], [2.368590874513865, 48.85540563193885], [2.368621015015166, 48.85528280927117], [2.3686525372770912, 48.85514953172549], [2.368682678847728, 48.855026709021146], [2.368714200786003, 48.85489343232784], [2.3687443407113262, 48.854770608673164], [2.368775862336955, 48.85463733193287], [2.368806003331608, 48.85451450824153], [2.368837524644595, 48.85438123145426], [2.368867663982855, 48.854258407711946], [2.368899186346107, 48.85412513088488], [2.368929325390892, 48.85400230709874], [2.368959464282804, 48.8538794841907], [2.368990984819136, 48.85374620728683], [2.369017718411103, 48.85360610241758], [2.369049238633066, 48.85347282546561], [2.369075971928249, 48.85333272054888], [2.369107491835849, 48.85319944354876], [2.369141721365925, 48.85317081506975], [2.369122527666558, 48.85315174832882], [2.369108717129449, 48.853075393337754], [2.369081142521519, 48.853015991406544], [2.3690805152793812, 48.85301253008874], [2.369074993844418, 48.85300244891157], [2.369000446776227, 48.85301269064956], [2.368830528921294, 48.85303920851986], [2.368660657314037, 48.85306571919837], [2.368490739113268, 48.85309223658493], [2.368320865797498, 48.853118746772594], [2.368150948613573, 48.85314526368256], [2.367981074941259, 48.85317177428585], [2.367811156048731, 48.85319829070482], [2.367641283404268, 48.85322479993232], [2.367640202357407, 48.85322493811553], [2.367506274486427, 48.85323842292525], [2.367305645213191, 48.85325862381709], [2.367171717169055, 48.853272108251964], [2.366971087636426, 48.853292308582276], [2.366799657158401, 48.853309568427555], [2.366599027348343, 48.85332976723404], [2.366427596623847, 48.85334702654567], [2.366426515560298, 48.85334716561715], [2.366287369105107, 48.853368574405735], [2.366150699759777, 48.85338990621957], [2.366011553077135, 48.85341131468662], [2.365874884880621, 48.85343264529252], [2.365847935686113, 48.85343804247961], [2.36584570846116, 48.853437286011754]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 81, "zemmour_eric": 90.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "4-6", "circ_bv": "07", "num_bureau": 6, "roussel_fabien": 29.0, "nb_emargement": 1366.0, "nb_procuration": 96.0, "nb_vote_blanc": 13.0, "jadot_yannick": 123.0, "le_pen_marine": 56.0, "nb_exprime": 1351.0, "nb_vote_nul": 2.0, "arr_bv": "04", "arthaud_nathalie": 2, "nb_inscrit": 1699.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1366, "quartier_bv": "15", "geo_point_2d": [48.854728580682064, 2.3662576768887282], "melenchon_jean_luc": 300.0, "poutou_philippe": 7.0, "macron_emmanuel": 612.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345944253365866, 48.86295127213732], [2.345918895273052, 48.862939033738925], [2.34581891315903, 48.862824855703465], [2.345727505460009, 48.86271945890332], [2.345636096756617, 48.862614062915185], [2.345536117248938, 48.86249988461743], [2.345444709329277, 48.862394487562895], [2.345344730662516, 48.86228030908262], [2.34525332350388, 48.86217491276036], [2.345153344314917, 48.86206073409012], [2.345061939303108, 48.86195533670899], [2.344961960943642, 48.861841158755524], [2.344927097502068, 48.86180095774843], [2.344911476464087, 48.861787104127934], [2.3448858788545692, 48.861796362188564], [2.344793591871487, 48.86182631156981], [2.344695082338499, 48.8618572385729], [2.3446879762757282, 48.86186257865985], [2.344626542013693, 48.86198724256065], [2.344566058624471, 48.862112793885046], [2.344504623775655, 48.86223745769509], [2.344444139790824, 48.86236300982882], [2.344382704355219, 48.86248767354816], [2.3443222197974, 48.862613224692645], [2.344260783774897, 48.86273788832122], [2.344200298621551, 48.862863440274985], [2.344138860649213, 48.86298810380536], [2.344078374922864, 48.86311365476992], [2.344016937726739, 48.863238318216986], [2.343956451415963, 48.86336386909155], [2.343948808108724, 48.863369417530265], [2.343755112120168, 48.8634239153956], [2.343562385465308, 48.86347869256448], [2.343368688666348, 48.86353318979905], [2.343175961200946, 48.86358796634021], [2.342982263591384, 48.86364246294399], [2.342789535315442, 48.863697238857505], [2.342787596583593, 48.8636979171103], [2.342620970238633, 48.86376781919554], [2.342460801754752, 48.86383525004979], [2.342300632856351, 48.86390268068553], [2.342134005202986, 48.86397258207985], [2.341973835459382, 48.86404001226992], [2.341807206928392, 48.86410991320059], [2.341806590029313, 48.86411018950454], [2.34166174789864, 48.86417880166965], [2.341481441846832, 48.86426501298798], [2.341336598857484, 48.86433362474998], [2.341156291731765, 48.86441983556644], [2.341011447883738, 48.864488446925364], [2.340831139684104, 48.864574657239885], [2.340686294977397, 48.86464326819572], [2.340683596032195, 48.86465618681825], [2.340794202997202, 48.864747527482066], [2.340929959533848, 48.86485919593984], [2.341040567373202, 48.8649505354599], [2.341176324967055, 48.865062203617796], [2.34128693365801, 48.865153543792715], [2.34142269230888, 48.86526521165067], [2.341533301862923, 48.865356551581144], [2.34166906157092, 48.86546821913917], [2.341779671999218, 48.8655595579259], [2.341806451900686, 48.865599439159304], [2.341831147473735, 48.86559627707143], [2.34191359432641, 48.86557730728828], [2.342097337545536, 48.86553355258098], [2.342281249019089, 48.86549123836734], [2.34246499162585, 48.86544748309215], [2.342648902508273, 48.86540516741101], [2.34283264586575, 48.86536141157553], [2.34301655477125, 48.86531909621793], [2.3430167872069783, 48.86531904083514], [2.343200529951689, 48.86527528443141], [2.343395252586141, 48.865227853903846], [2.343578993328362, 48.865184096908045], [2.343773716640383, 48.86513666576825], [2.343957456743097, 48.865092908187854], [2.344152179369694, 48.86504547642837], [2.344335918832895, 48.865001718263365], [2.344530640774162, 48.86495428588427], [2.344714379597745, 48.864910527134626], [2.344909100853578, 48.86486309413591], [2.345092839037637, 48.86481933480164], [2.345289132767217, 48.86477232798465], [2.345472870311932, 48.86472856806339], [2.345669164730968, 48.864681559727444], [2.345852901625038, 48.864637800118444], [2.346049193996078, 48.86459079114794], [2.346232930262086, 48.86454703005264], [2.346429221936912, 48.86450002135427], [2.346612958926629, 48.86445625967942], [2.346673932271626, 48.86444537410953], [2.346675432860095, 48.86444376168079], [2.34685916807033, 48.864400000517634], [2.347046284600128, 48.864354632403135], [2.347230019184501, 48.86431087066708], [2.347417133708149, 48.864265501961725], [2.347600869029615, 48.864221739660294], [2.347740911530741, 48.86418778374688], [2.34775943218866, 48.86417876262276], [2.347723872407337, 48.864138029925456], [2.34771312651537, 48.86402973422547], [2.347703884467835, 48.86392250524003], [2.347693137310082, 48.86381420861047], [2.3476838953419232, 48.86370697960264], [2.3476748172784943, 48.863699008683724], [2.347494104778051, 48.86365699269366], [2.347315900518011, 48.86361542628939], [2.34713518859696, 48.86357340975423], [2.346956984909092, 48.86353184281238], [2.346776273567539, 48.863489825732124], [2.346598071814988, 48.863448258260135], [2.346593592616694, 48.86344652055079], [2.346476154580914, 48.86337810818678], [2.346363933553349, 48.86330892827363], [2.346251711460682, 48.863239748243465], [2.346134274340052, 48.86317133553121], [2.346131494496258, 48.86316909266229], [2.346044330893998, 48.86306950932437], [2.345944348254672, 48.86295533140712], [2.345944253365866, 48.86295127213732]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 42, "zemmour_eric": 71.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "1-5", "circ_bv": "01", "num_bureau": 5, "roussel_fabien": 13.0, "nb_emargement": 880.0, "nb_procuration": 55.0, "nb_vote_blanc": 12.0, "jadot_yannick": 66.0, "le_pen_marine": 44.0, "nb_exprime": 864.0, "nb_vote_nul": 4.0, "arr_bv": "01", "arthaud_nathalie": 2, "nb_inscrit": 1087.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 880, "quartier_bv": "02", "geo_point_2d": [48.86403344966997, 2.3442742405572807], "melenchon_jean_luc": 206.0, "poutou_philippe": 3.0, "macron_emmanuel": 387.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3042812925753138, 48.84040461001733], [2.304333646048683, 48.840426644142596], [2.304478069636828, 48.840467916877344], [2.304652589607342, 48.840515354179956], [2.304797013705846, 48.840556625627045], [2.304971535626001, 48.8406040624685], [2.304991850477375, 48.840601838543314], [2.305020292862811, 48.84056844114979], [2.305099808566973, 48.840476227641076], [2.305197276884118, 48.84035781810637], [2.305276791953837, 48.840265604462594], [2.305374259475046, 48.8401471947614], [2.305453775284738, 48.84005498009121], [2.3055512406356122, 48.83993657111485], [2.305631346054139, 48.839840653435346], [2.305728810600839, 48.83972224429155], [2.305808915363202, 48.8396263264747], [2.30590637911771, 48.83950791626427], [2.306018141183497, 48.83937164019972], [2.306115605348863, 48.839253229799716], [2.306227366321524, 48.839116953508636], [2.306228074152318, 48.83911618415596], [2.30634554763307, 48.83900435876329], [2.306461648208329, 48.83889143615012], [2.30657912068144, 48.838779610505625], [2.306695218887679, 48.838666687635126], [2.306812691715548, 48.83855486174663], [2.30692878891517, 48.83844193862675], [2.307046260735414, 48.83833011248638], [2.307162356928532, 48.838217189117074], [2.30716317025561, 48.838216476130434], [2.307265597583647, 48.83813053013994], [2.30737610266274, 48.838043140573475], [2.307478527936795, 48.83795719437945], [2.307589032291316, 48.83786980460275], [2.307647132941533, 48.8378210523623], [2.307658504506676, 48.83779587824395], [2.307612037663931, 48.837773463180504], [2.307503887460191, 48.83765311917694], [2.307396439947551, 48.83753939939764], [2.307288292089575, 48.83741905518186], [2.307180845517933, 48.83730533608436], [2.307072697280896, 48.8371849916406], [2.306965251662091, 48.83707127232562], [2.306857806524063, 48.836957552003334], [2.306749661116758, 48.83683720723788], [2.30664221691959, 48.8367234875974], [2.306534071133412, 48.83660314260405], [2.306533202404716, 48.83654801147569], [2.306499905982375, 48.836546402821355], [2.3064489753204382, 48.836555994315894], [2.306426709249403, 48.8365595886081], [2.306437882203081, 48.83658509931866], [2.306367290046642, 48.83671604501451], [2.30629470611971, 48.83684388616533], [2.306224113241154, 48.83697483264565], [2.306151528614678, 48.83710267278071], [2.306078943620091, 48.83723051375635], [2.306008349675991, 48.837361460064095], [2.305935765332231, 48.837489300931196], [2.305858581291462, 48.83761538286082], [2.305785994864522, 48.83774322360012], [2.3057088100734973, 48.83786930630376], [2.3056362229376, 48.83799714602382], [2.305559038770657, 48.83812322861011], [2.305486450901735, 48.83825106910951], [2.305409264646106, 48.8383771506633], [2.305336676056328, 48.838504991042804], [2.305259489050405, 48.83863107337057], [2.305259331483406, 48.83863134406525], [2.305191242638009, 48.8387549771307], [2.305122390558012, 48.83887880896951], [2.3050543024270302, 48.83900244193758], [2.304985448332406, 48.83912627366226], [2.304917359553237, 48.83924990652496], [2.304848506168772, 48.83937373815129], [2.304780415379206, 48.839497370900744], [2.304711561354489, 48.839621201521545], [2.304643469904715, 48.83974483506497], [2.304574615227844, 48.839868665579495], [2.304506524492373, 48.83999229902549], [2.3044376678007152, 48.840116129425816], [2.30436957641712, 48.84023976276648], [2.304300720435715, 48.840363593068496], [2.3042812925753138, 48.84040461001733]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 88, "zemmour_eric": 48.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "15-42", "circ_bv": "12", "num_bureau": 42, "roussel_fabien": 6.0, "nb_emargement": 820.0, "nb_procuration": 25.0, "nb_vote_blanc": 8.0, "jadot_yannick": 61.0, "le_pen_marine": 74.0, "nb_exprime": 810.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1063.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 820, "quartier_bv": "57", "geo_point_2d": [48.83857173525571, 2.305978793251504], "melenchon_jean_luc": 173.0, "poutou_philippe": 1.0, "macron_emmanuel": 320.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389162138891186, 48.855435213380645], [2.389151047490822, 48.85546440627985], [2.389095437565771, 48.85558248026894], [2.38903951539686, 48.855701474458954], [2.388983906329007, 48.85581954837795], [2.388927983650854, 48.85593854249043], [2.388872372714399, 48.85605661632543], [2.388816449527197, 48.85617561036043], [2.388760839447735, 48.856293684125376], [2.388704915751379, 48.856412678082776], [2.3886493038033922, 48.85653075176372], [2.388593379608323, 48.85664974474433], [2.3885377685068763, 48.85676781925449], [2.388481842439868, 48.85688681215063], [2.388482475503554, 48.856901271499666], [2.3884994316424573, 48.85690639179868], [2.388667953578472, 48.85690518166254], [2.388858497730383, 48.856903860724664], [2.38906051249078, 48.85690240918428], [2.3892510566120553, 48.85690108852059], [2.389453072723974, 48.85689963542514], [2.389643616825253, 48.8568983141364], [2.389657057605623, 48.856905335547836], [2.389701653396854, 48.8570363047396], [2.389745234450959, 48.85716456078849], [2.389789832048589, 48.85729552992377], [2.389833413536574, 48.85742378591059], [2.389878010214843, 48.85755475497546], [2.389921593499504, 48.857683010907145], [2.389965175646463, 48.85781126590194], [2.390009772977063, 48.857942235771255], [2.390009187160656, 48.85794745259302], [2.389964206845145, 48.858024154307834], [2.389903793158787, 48.85811962852008], [2.389907580871681, 48.8581243981793], [2.389938489297164, 48.85812994733811], [2.390124078991526, 48.85806892836389], [2.390280571301707, 48.85801842709762], [2.390287214959049, 48.858013602678014], [2.390358510760933, 48.85789112956143], [2.390429456900171, 48.85776869148258], [2.39050075202206, 48.857646219153494], [2.390571696141296, 48.8575237800571], [2.390642990593725, 48.857401307616264], [2.3907139354080282, 48.85727886841548], [2.390785229191104, 48.85715639586285], [2.390856171974813, 48.85703395654379], [2.390927465088346, 48.85691148387944], [2.390998408567329, 48.85678904445596], [2.391069701011426, 48.85666657167985], [2.391140642449234, 48.85654413303738], [2.391211934234517, 48.85642165925024], [2.391282876367507, 48.85629922050339], [2.391354167472763, 48.85617674750378], [2.3914251075858273, 48.856054307739406], [2.391496398021677, 48.855931834628045], [2.391567338829825, 48.85580939475927], [2.391572422835973, 48.85580516129637], [2.391734715622825, 48.855732594170526], [2.391896112831688, 48.855660351432334], [2.3920584047166003, 48.85558778385804], [2.392219801017638, 48.855515541573155], [2.392225347310942, 48.855510343630336], [2.392274777822997, 48.85538382882238], [2.392327005382445, 48.85525059835953], [2.392376435401264, 48.855124083480014], [2.392428663792774, 48.854990853847895], [2.39247809195554, 48.85486433888989], [2.392530319837259, 48.85473110828292], [2.392579748869627, 48.854604593260255], [2.392631976231073, 48.854471362577826], [2.392681403407414, 48.854344847476675], [2.3927336302486992, 48.8542116167187], [2.392783056931841, 48.85408510154599], [2.3928352832422912, 48.85395187161182], [2.392884710795037, 48.85382535637447], [2.392922765620172, 48.85372827668181], [2.392928659206662, 48.85372564990379], [2.392931502631896, 48.85370969637392], [2.392945673596225, 48.853673545155914], [2.392963818088983, 48.85362983437305], [2.392954925980328, 48.85361891432225], [2.392827756843513, 48.85359135154513], [2.392711944548015, 48.85356635186073], [2.392690814110742, 48.853559527370024], [2.39267642307562, 48.85356707451956], [2.392600877490518, 48.85368798817632], [2.392525910806538, 48.85380878150211], [2.392450365884547, 48.85392969504448], [2.392375398503912, 48.85405048824972], [2.39229985151943, 48.85417140166385], [2.392224884794447, 48.85429219565471], [2.3921493371102622, 48.85441310894752], [2.392074368336287, 48.85453390191161], [2.391998821315204, 48.854654815089994], [2.391923851844548, 48.854775607933504], [2.391848302760928, 48.85489652098362], [2.391773333956404, 48.85501731371352], [2.3916977841730542, 48.8551382266423], [2.391622813298504, 48.85525902014393], [2.391547264178247, 48.85537993295832], [2.391472292617486, 48.855500725440066], [2.391396741434645, 48.85562163812622], [2.39132177054001, 48.85574243049429], [2.391306316342814, 48.855747817221726], [2.391128233765975, 48.85572275381291], [2.390927930226293, 48.855692009168614], [2.3907498480222, 48.85566694519547], [2.390549544930844, 48.85563619901692], [2.39037146309951, 48.85561113447939], [2.3901711617982953, 48.85558038857216], [2.389993080339619, 48.85555532347024], [2.389792778113384, 48.85552457692119], [2.389614697038115, 48.8554995103556], [2.389414396612551, 48.85546876317856], [2.389236315899525, 48.85544369694793], [2.389180148453038, 48.85543507508133], [2.389162138891186, 48.855435213380645]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 74, "zemmour_eric": 86.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-45", "circ_bv": "06", "num_bureau": 45, "roussel_fabien": 14.0, "nb_emargement": 1273.0, "nb_procuration": 76.0, "nb_vote_blanc": 7.0, "jadot_yannick": 123.0, "le_pen_marine": 61.0, "nb_exprime": 1262.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 0, "nb_inscrit": 1587.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1274, "quartier_bv": "44", "geo_point_2d": [48.85610787573172, 2.390516403757691], "melenchon_jean_luc": 355.0, "poutou_philippe": 10.0, "macron_emmanuel": 471.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291020235957023, 48.840758877655155], [2.291012675984076, 48.84075642343658], [2.290980232605871, 48.840736712119266], [2.290977598676787, 48.84073452093166], [2.290946809444157, 48.840714808616625], [2.290831515653001, 48.84058019817537], [2.290731068179757, 48.84046112681182], [2.290630619803129, 48.840342055343136], [2.290515327653106, 48.8402074445522], [2.290497461841021, 48.84018626633791], [2.290492286988714, 48.84018246548366], [2.290443043664665, 48.84019213302731], [2.290262694965603, 48.84026446614197], [2.290080902369386, 48.84033693521258], [2.289900554016793, 48.84040926867923], [2.28971876041201, 48.84048173719012], [2.289538411068166, 48.84055406920217], [2.289356616442458, 48.84062653805262], [2.289176266095007, 48.840698869509254], [2.288994470460727, 48.84077133779994], [2.28897813273923, 48.84077021451087], [2.288903953298476, 48.840724531659504], [2.288828228980211, 48.84068073904499], [2.28881744385875, 48.840674502547856], [2.288800460180489, 48.840673989663706], [2.288773212930192, 48.840685534768845], [2.288702429213134, 48.84071552790172], [2.288507876647544, 48.840808773297056], [2.288335360144435, 48.84088930466741], [2.288335314877564, 48.84088932688236], [2.288213644400989, 48.84094763943061], [2.288041128345975, 48.841028170374734], [2.287919458578597, 48.84108648262461], [2.287869606095156, 48.841100447169616], [2.287871080923523, 48.8411088821468], [2.287748445497638, 48.84117970140634], [2.287641081079198, 48.84124224643738], [2.287640753854655, 48.8412439568891], [2.287657484283895, 48.84125932332111], [2.287861244448659, 48.84132170894268], [2.288067146235856, 48.84138475000582], [2.288270907368922, 48.84144713582189], [2.288476810147113, 48.841510176172854], [2.288680572273145, 48.841572560384876], [2.288886476042322, 48.841635600023615], [2.288889975173472, 48.84165037228198], [2.288769232037025, 48.8417238182684], [2.28865102880449, 48.84179533479707], [2.288530283645312, 48.841868779625365], [2.288412079743764, 48.841940296807955], [2.2884122664619, 48.84195366614326], [2.288545638921435, 48.84203143283921], [2.28867763475757, 48.8421080624848], [2.288811009382998, 48.8421858279829], [2.288943006000311, 48.84226245732507], [2.289076380042039, 48.8423402234078], [2.289208377440534, 48.84241685244655], [2.289341753647961, 48.84249461733145], [2.289473751827641, 48.8425712460668], [2.289485228957328, 48.842584026810236], [2.289501471153507, 48.84258390383191], [2.289664089887617, 48.84251445078904], [2.289824968612003, 48.84244566621704], [2.289825648668963, 48.84244535637456], [2.289988526234405, 48.84236614177589], [2.290146112728569, 48.84228860795442], [2.290308989317199, 48.84220939290831], [2.290466574860699, 48.842131858653794], [2.290490371456, 48.842125293200866], [2.290648893308423, 48.84219326595449], [2.290808224591827, 48.842261864753866], [2.2909667472741653, 48.84232983707799], [2.291126080768037, 48.84239843455445], [2.291284604280292, 48.84246640644903], [2.291443937235409, 48.84253500438497], [2.291602461577583, 48.842602975850056], [2.291761796731045, 48.84267157336234], [2.291775067298218, 48.84267304504949], [2.291790280352606, 48.842667036496756], [2.291836466618742, 48.84261857224545], [2.2919004972633292, 48.842547527931785], [2.291896073838616, 48.84253533059568], [2.291738872295166, 48.842469671530395], [2.291581464418674, 48.84240438516777], [2.291424263666621, 48.84233872568136], [2.291266856579691, 48.842273438897095], [2.291109656618829, 48.842207778989604], [2.2909522503337962, 48.84214249088444], [2.290795051151992, 48.8420768314551], [2.290637645656525, 48.84201154292834], [2.29063433577375, 48.8419982450176], [2.290756799960884, 48.841899107911914], [2.290874966989705, 48.841802815988174], [2.290997430259948, 48.84170367861879], [2.291115595050999, 48.84160738553315], [2.291238058766715, 48.84150824790816], [2.291356222657905, 48.84141195546725], [2.291359154407826, 48.841405173601956], [2.291338885232454, 48.84129865002949], [2.291316735880571, 48.841185910553676], [2.2912964655148143, 48.841079386945054], [2.291274317710208, 48.84096664744725], [2.291312609747343, 48.84094594507339], [2.291315410958386, 48.84092821980106], [2.291282383748453, 48.8409113471198], [2.291163082475064, 48.84085039866189], [2.291034151896471, 48.84077206574978], [2.291020235957023, 48.840758877655155]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 131, "zemmour_eric": 118.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-89", "circ_bv": "13", "num_bureau": 89, "roussel_fabien": 11.0, "nb_emargement": 1172.0, "nb_procuration": 63.0, "nb_vote_blanc": 14.0, "jadot_yannick": 81.0, "le_pen_marine": 78.0, "nb_exprime": 1154.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1463.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1172, "quartier_bv": "60", "geo_point_2d": [48.84140924342821, 2.289810822853291], "melenchon_jean_luc": 168.0, "poutou_philippe": 2.0, "macron_emmanuel": 512.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.306532853541583, 48.881485983932706], [2.306530561848196, 48.881480723936015], [2.306454634384255, 48.88143977534926], [2.30640411550735, 48.881410134670325], [2.306388492084984, 48.88140937594986], [2.30622307853906, 48.88147453933945], [2.306039926590525, 48.88154669093968], [2.305874512172314, 48.881611853839544], [2.305691360621359, 48.881684004905416], [2.305525945330963, 48.88174916731557], [2.305342791450666, 48.88182131783129], [2.305177375287982, 48.88188647975172], [2.304994221805372, 48.88195862973314], [2.304828804770298, 48.88202379116386], [2.30464564895844, 48.88209594059511], [2.304480232414601, 48.882161101543986], [2.304400755005123, 48.88219240970841], [2.30438862847998, 48.88219301914903], [2.304291468933377, 48.882166971938595], [2.304121194370238, 48.882121323174324], [2.303938471370532, 48.882072336304475], [2.303768196062816, 48.882026687026304], [2.303585475090621, 48.88197769962145], [2.303415200401754, 48.881932049837346], [2.303232480093652, 48.881883061889525], [2.303062206023635, 48.88183741159945], [2.30287948637963, 48.88178842310872], [2.30270921292847, 48.88174277231268], [2.30270241480184, 48.88173609562233], [2.302682810305336, 48.88173569365066], [2.302495648376814, 48.88168551315245], [2.302307758521977, 48.88163513835539], [2.302120597304171, 48.88158495816556], [2.301932708186959, 48.881534581876025], [2.301745547691917, 48.8814844010953], [2.301557659288227, 48.8814340251119], [2.301370499515952, 48.881383843740316], [2.301182611849906, 48.88133346626438], [2.301164997984356, 48.88133817219962], [2.301090306454521, 48.88145001828174], [2.301025733365993, 48.88154676058085], [2.300961160037457, 48.88164350283663], [2.30088646763194, 48.88175534876058], [2.300932652835319, 48.88181994163336], [2.3009284003503723, 48.88182314901488], [2.300917048884703, 48.88184027892821], [2.300965531575982, 48.88190804276526], [2.301005597487539, 48.88196407776693], [2.300996003153951, 48.88198622634388], [2.301086270776684, 48.88200625543034], [2.301172522678884, 48.88212688224959], [2.301256859583275, 48.882244831285576], [2.301343110900147, 48.882365458847076], [2.3014274485772592, 48.88248340773734], [2.301513702047838, 48.882604035157726], [2.3015980404976872, 48.88272198390222], [2.301684293395115, 48.88284261116563], [2.301768632617708, 48.88296055976438], [2.301854887668873, 48.88308118688667], [2.301939227664323, 48.883199135339716], [2.301947433272122, 48.88320387051321], [2.302125992346943, 48.883241268849524], [2.302303473338517, 48.883278441196715], [2.302482031573199, 48.88331583809233], [2.302659513072947, 48.88335300990918], [2.302838073170499, 48.88339040717846], [2.303015555190659, 48.88342757756581], [2.303194115799569, 48.88346497430155], [2.303371598315859, 48.883502145057804], [2.303550158084692, 48.88353954035284], [2.303727641109243, 48.88357671057882], [2.303905124387156, 48.88361388054046], [2.304083686285683, 48.88365127504391], [2.304261170071952, 48.883688444475226], [2.304439732469801, 48.88372583934442], [2.304617216776229, 48.88376300734615], [2.304795779685412, 48.883800401681796], [2.304824654034126, 48.883804149586815], [2.304832962327897, 48.88379406863278], [2.3050332178201502, 48.88374547467174], [2.305232704084741, 48.88369706657074], [2.305432960206523, 48.883648471045476], [2.3056324457279382, 48.883600062274176], [2.305832699728123, 48.88355146696737], [2.30603218450636, 48.883503057525786], [2.306232439136041, 48.8834544606548], [2.30643192317109, 48.8834060505429], [2.306632175679181, 48.88335745389039], [2.306831658971042, 48.88330904310824], [2.307031912108597, 48.883260444891455], [2.307231394657157, 48.883212033439044], [2.307237292996683, 48.883197943530135], [2.307119217019811, 48.88310152345934], [2.307001386984778, 48.883005304336805], [2.306883310517917, 48.882908884008536], [2.30676548135472, 48.88281266463703], [2.306647407124853, 48.882716244067154], [2.306529578833381, 48.882620024446574], [2.306411504113621, 48.88252360361924], [2.306293676705747, 48.88242738285044], [2.306175604223058, 48.88233096178147], [2.306057777675018, 48.882234741662955], [2.30593970470233, 48.88213832033658], [2.305821879025894, 48.88204209996902], [2.30570380829025, 48.88194567840107], [2.30558598348561, 48.88184945778451], [2.30559002427741, 48.88183592554328], [2.305745409763277, 48.88177961550029], [2.305900161651603, 48.88172344907231], [2.306055546454552, 48.881667139520296], [2.306210297674067, 48.88161097268573], [2.3063656818180682, 48.88155466182619], [2.306520431005466, 48.88149849457713], [2.306532853541583, 48.881485983932706]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 115, "zemmour_eric": 194.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "17-48", "circ_bv": "04", "num_bureau": 48, "roussel_fabien": 9.0, "nb_emargement": 1166.0, "nb_procuration": 83.0, "nb_vote_blanc": 10.0, "jadot_yannick": 56.0, "le_pen_marine": 51.0, "nb_exprime": 1154.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1464.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1166, "quartier_bv": "66", "geo_point_2d": [48.882652354979044, 2.303946214393829], "melenchon_jean_luc": 99.0, "poutou_philippe": 4.0, "macron_emmanuel": 596.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.304805011224089, 48.844786399657586], [2.304816233803135, 48.84479457444905], [2.304848149042253, 48.84480205195703], [2.305036866321229, 48.84484599954457], [2.305217958480975, 48.84488842489041], [2.305406676384551, 48.84493237189122], [2.305587767782804, 48.844974796666094], [2.305768860838437, 48.84501722117316], [2.30595757967293, 48.84506116729985], [2.306138671967264, 48.84510359123593], [2.306327391426342, 48.84514753677587], [2.306336401960169, 48.84515699997514], [2.306313220586552, 48.84529634085421], [2.306289717140724, 48.845435401940875], [2.306266534143914, 48.84557474366748], [2.306243030447857, 48.84571380471022], [2.306219847214349, 48.84585314549371], [2.306196344618766, 48.84599220739977], [2.306173161136591, 48.846131548139354], [2.306149656928294, 48.846270609993624], [2.306126473197544, 48.84640995068942], [2.306102970101701, 48.846549012507616], [2.306108673377769, 48.84656637452721], [2.306123623414516, 48.846569537959205], [2.306301964475447, 48.84651971945068], [2.306478557205259, 48.84647028626131], [2.306656897587251, 48.84642046721929], [2.306833489632116, 48.8463710344009], [2.307011829347128, 48.84632121392607], [2.3071884193564243, 48.84627178057154], [2.307366758392484, 48.846221959563195], [2.3075433490913833, 48.84617252568821], [2.307721687448489, 48.84612270414639], [2.307898277474397, 48.84607326974315], [2.308076615152443, 48.84602344766779], [2.308253203142883, 48.84597401272839], [2.308253271533189, 48.845973993337836], [2.308431608520311, 48.84592417162816], [2.308621476793329, 48.845871822526775], [2.308799813090657, 48.84582199936442], [2.308961334615751, 48.84577746510313], [2.3089827276040182, 48.845775872684776], [2.308988629486567, 48.845769278460715], [2.309016974121283, 48.84576146301702], [2.309211016617897, 48.845707964317555], [2.309400883308308, 48.84565561486834], [2.309594925016722, 48.84560211554114], [2.309784789585325, 48.845549764570535], [2.309974655135054, 48.845497413304045], [2.310168695665338, 48.845443913038636], [2.310358559081235, 48.84539156115006], [2.310552600174073, 48.84533806116404], [2.31056059640053, 48.8453318629594], [2.310614065316706, 48.84518691294868], [2.3106715585258852, 48.84502892731213], [2.310664680696851, 48.845018877754725], [2.310599367429313, 48.844996073045266], [2.310541153147087, 48.844975769873095], [2.310521292645626, 48.844966818257156], [2.3105162308810883, 48.8449675076771], [2.310398626521524, 48.844926490628836], [2.310248039019101, 48.84487400616717], [2.310072219801573, 48.84481268544069], [2.30992163430733, 48.84476020146992], [2.309745815869586, 48.84469887935824], [2.309595231032874, 48.84464639497127], [2.309594411489617, 48.84464613212392], [2.309445042485905, 48.84460217784236], [2.309301234113343, 48.84455990491104], [2.3091574246114313, 48.844517631797416], [2.30900805770719, 48.84447367697308], [2.308991666067617, 48.84446447892044], [2.308979283518826, 48.84446656587327], [2.308779380534612, 48.844412611993285], [2.308591814079071, 48.844361508112044], [2.30839191326148, 48.84430755358738], [2.308204346201435, 48.84425644908599], [2.308203731300133, 48.8442562710533], [2.3080274264201233, 48.844201896548384], [2.307846636221913, 48.84414608292501], [2.30767033208721, 48.8440917078885], [2.3074895426655, 48.84403589282065], [2.30731323927611, 48.843981517252544], [2.307132451969632, 48.84392570254673], [2.306956147963132, 48.8438713264391], [2.306775361421307, 48.843815511188154], [2.306599059522544, 48.84376113455678], [2.306418272394823, 48.84370531785354], [2.30640521206823, 48.84368216350127], [2.30636731068192, 48.843690199030924], [2.306186524048456, 48.84363438197391], [2.306010207589712, 48.84357996210419], [2.305829421721084, 48.843524144501984], [2.305653106020129, 48.84346972320127], [2.305634752006092, 48.84347441748808], [2.305552373936683, 48.84360518382935], [2.305470752341654, 48.84373406132717], [2.305388373450367, 48.84386482752503], [2.305306749668554, 48.843993705772355], [2.305224369955475, 48.84412447182688], [2.30514274673599, 48.84425334904088], [2.305060366200906, 48.84438411495207], [2.304978742169229, 48.844512992024185], [2.304896359449793, 48.84464375778402], [2.304814734593913, 48.844772635613516], [2.304805011224089, 48.844786399657586]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 155, "zemmour_eric": 169.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-31", "circ_bv": "12", "num_bureau": 31, "roussel_fabien": 4.0, "nb_emargement": 1361.0, "nb_procuration": 82.0, "nb_vote_blanc": 9.0, "jadot_yannick": 78.0, "le_pen_marine": 54.0, "nb_exprime": 1348.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1615.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1361, "quartier_bv": "58", "geo_point_2d": [48.84498465406427, 2.3074658109215815], "melenchon_jean_luc": 206.0, "poutou_philippe": 3.0, "macron_emmanuel": 631.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389162138891186, 48.855435213380645], [2.389180148453038, 48.85543507508133], [2.389236315899525, 48.85544369694793], [2.389414396612551, 48.85546876317856], [2.389614697038115, 48.8554995103556], [2.389792778113384, 48.85552457692119], [2.389993080339619, 48.85555532347024], [2.3901711617982953, 48.85558038857216], [2.39037146309951, 48.85561113447939], [2.390549544930844, 48.85563619901692], [2.3907498480222, 48.85566694519547], [2.390927930226293, 48.855692009168614], [2.391128233765975, 48.85572275381291], [2.391306316342814, 48.855747817221726], [2.39132177054001, 48.85574243049429], [2.391396741434645, 48.85562163812622], [2.391472292617486, 48.855500725440066], [2.391547264178247, 48.85537993295832], [2.391622813298504, 48.85525902014393], [2.3916977841730542, 48.8551382266423], [2.391773333956404, 48.85501731371352], [2.391848302760928, 48.85489652098362], [2.391923851844548, 48.854775607933504], [2.391998821315204, 48.854654815089994], [2.392074368336287, 48.85453390191161], [2.3921493371102622, 48.85441310894752], [2.392224884794447, 48.85429219565471], [2.39229985151943, 48.85417140166385], [2.392375398503912, 48.85405048824972], [2.392450365884547, 48.85392969504448], [2.392525910806538, 48.85380878150211], [2.392600877490518, 48.85368798817632], [2.39267642307562, 48.85356707451956], [2.392690814110742, 48.853559527370024], [2.392690292688675, 48.853548371884585], [2.392690509105806, 48.85354804472028], [2.392787351725164, 48.853408977768886], [2.392880738246107, 48.853275007792796], [2.392977578487666, 48.853135940646425], [2.393070965382409, 48.8530019713952], [2.393071241534893, 48.85300154650383], [2.393135657080183, 48.85289553313418], [2.393202325101144, 48.85278530779391], [2.393266740112439, 48.85267929433306], [2.393333407579565, 48.852569068898354], [2.393397822056873, 48.852463055346284], [2.3934644889700722, 48.852352829817114], [2.393457126023529, 48.852341209752936], [2.393346591912386, 48.85231045277326], [2.393235898944381, 48.852278953819194], [2.39322857397634, 48.852267471533175], [2.393302299818412, 48.85214078777288], [2.39336946937054, 48.85202506258414], [2.393436637261683, 48.851909337338725], [2.393510363453877, 48.85178265341635], [2.393577530719665, 48.85166692806658], [2.393651256226367, 48.8515402440298], [2.39371842287727, 48.851424517676456], [2.393778714636508, 48.85132091657657], [2.3937893453381083, 48.851315094074195], [2.3937895331500982, 48.85130305000863], [2.393802964829591, 48.85127996784806], [2.393883368995752, 48.85113857349312], [2.39395709301153, 48.85101188920769], [2.394030815295674, 48.850885205754814], [2.394111218234499, 48.85074381119659], [2.394101299989829, 48.85073185534754], [2.393934194913926, 48.850708356127406], [2.393722172810836, 48.85067796757655], [2.393555069451884, 48.85065446693337], [2.393343047778674, 48.85062407860849], [2.393175943400794, 48.85060057742779], [2.39296392354112, 48.85057018753728], [2.392796819496554, 48.850546686725274], [2.392773674003311, 48.850550918529414], [2.392772315872176, 48.85056630854955], [2.392785423429553, 48.850592466182846], [2.392796071003708, 48.850613494914455], [2.3927964667560833, 48.85061824280513], [2.392755039041294, 48.850744852919206], [2.392713297109486, 48.85087233108419], [2.392671868980145, 48.85099894203983], [2.3926301280040683, 48.85112642015365], [2.392588699481132, 48.85125303015226], [2.392546956735438, 48.85138050820101], [2.392505527808418, 48.8515071181419], [2.392463784645134, 48.851634597031854], [2.392422356676764, 48.85176120692195], [2.392380613116956, 48.85188868485443], [2.392339183381753, 48.852015294679916], [2.3922974394149312, 48.85214277255423], [2.392305197191099, 48.852152881989966], [2.392513391421103, 48.85221432163367], [2.392723027389396, 48.85227628085661], [2.392931222605063, 48.85233771976646], [2.393140859566602, 48.852399678250485], [2.393147905048706, 48.852411286830836], [2.393072714107946, 48.85253276299137], [2.393001106209204, 48.85264869478614], [2.392925914583652, 48.852770170828464], [2.392854304669393, 48.85288610250365], [2.392782695799268, 48.85300203413086], [2.392707503154588, 48.85312350999733], [2.392693898485422, 48.85312907897434], [2.392504103282784, 48.85311996110366], [2.392314896270995, 48.85311054553574], [2.392125101202182, 48.853101427063756], [2.391935895699346, 48.85309201000405], [2.391746100753974, 48.85308289183001], [2.391556895386937, 48.853073474170806], [2.391367100585905, 48.853064354496176], [2.391177895354677, 48.85305493623758], [2.3911643661984963, 48.853060328253946], [2.391065067990122, 48.85321153617785], [2.390970388010084, 48.853360050571006], [2.39096911607615, 48.853361600872326], [2.390888358543227, 48.853432688140906], [2.390806802146523, 48.853512286331785], [2.390790112621133, 48.85351987371616], [2.390791066833479, 48.85353687359431], [2.3907669472427, 48.853560414490595], [2.390659385288253, 48.85366640739116], [2.390553707029359, 48.85376954625116], [2.390446145572256, 48.85387553894701], [2.390340466456526, 48.853978678498564], [2.390232902771166, 48.854084670975844], [2.390127222819833, 48.854187809420395], [2.390123600881794, 48.85419020751237], [2.390006558910486, 48.85424276786532], [2.389885952226377, 48.854296890983186], [2.389883739407913, 48.854298130695575], [2.389742029901077, 48.854396466909975], [2.389598235304033, 48.85449626095172], [2.389456523356742, 48.854594596803516], [2.389312727666137, 48.854694390484376], [2.389171015993467, 48.85479272688677], [2.3890272192197353, 48.85489251930742], [2.388885506469404, 48.854990855354195], [2.388741707239374, 48.855090647406975], [2.388599993411369, 48.855188983098046], [2.388456194450584, 48.85528877479687], [2.388444262763692, 48.85531718720376], [2.388462053262701, 48.85532467886866], [2.388609573800021, 48.85534724191701], [2.388809874646355, 48.85537799045154], [2.38900630927549, 48.85540803450304], [2.38915044315336, 48.855430160491224], [2.389162138891186, 48.855435213380645]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 64, "zemmour_eric": 56.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-44", "circ_bv": "06", "num_bureau": 44, "roussel_fabien": 30.0, "nb_emargement": 1425.0, "nb_procuration": 76.0, "nb_vote_blanc": 11.0, "jadot_yannick": 126.0, "le_pen_marine": 59.0, "nb_exprime": 1410.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1784.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1425, "quartier_bv": "44", "geo_point_2d": [48.853676351281045, 2.391518096020415], "melenchon_jean_luc": 494.0, "poutou_philippe": 10.0, "macron_emmanuel": 491.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.380724086876941, 48.825441076572744], [2.38070595165121, 48.825463327597475], [2.380700720154598, 48.825467079673615], [2.380521510206957, 48.825537875623176], [2.380350559333424, 48.82560571828401], [2.380171348433767, 48.82567651370008], [2.380000398012071, 48.82574435585909], [2.379821186160298, 48.8258151507417], [2.379650233466426, 48.82588299238467], [2.379479281678817, 48.825950834685585], [2.3793000684205072, 48.82602162787491], [2.379129114360706, 48.82608946965983], [2.378949900150386, 48.82616026231569], [2.378778946542429, 48.826228103598716], [2.378599731380098, 48.82629889572108], [2.378428775499843, 48.82636673648808], [2.378249559385396, 48.82643752807699], [2.3782398288557642, 48.82643862059039], [2.378085683599232, 48.826417736070425], [2.377850608090893, 48.82638774510197], [2.377696463140695, 48.82636686007932], [2.377615100854408, 48.8263493269935], [2.377578290021258, 48.82635061937718], [2.377556706865261, 48.82639021706709], [2.377372799734089, 48.826429063278525], [2.377177066259402, 48.82647030110617], [2.376993158573622, 48.82650914583168], [2.376797424498003, 48.82655038303502], [2.376613516246882, 48.82658922717397], [2.376417781570438, 48.82663046375301], [2.376233872753881, 48.82666930730535], [2.376038137476518, 48.82671054326011], [2.375854228094633, 48.82674938622588], [2.3756584922163553, 48.82679062155632], [2.375474582258476, 48.82682946483482], [2.375278845789964, 48.82687069864163], [2.375094935266761, 48.82690954133354], [2.374899198186572, 48.826950775415355], [2.374715287108834, 48.82698961662136], [2.374519549427852, 48.82703085007889], [2.374335637784707, 48.827069690698266], [2.374139899502837, 48.8271109235315], [2.3739559872943943, 48.82714976356426], [2.373760248411641, 48.82719099577317], [2.373576335627201, 48.82722983611869], [2.373380596154276, 48.827271066803924], [2.373196682804542, 48.82730990656284], [2.373012767829499, 48.827348745131104], [2.37281702745363, 48.82738997578892], [2.372633113275409, 48.82742881377772], [2.37243737229868, 48.82747004381121], [2.372253457555186, 48.82750888121338], [2.372057715977705, 48.82755011062254], [2.37204939598892, 48.82756231279583], [2.372062557306297, 48.8275920531077], [2.372106857208571, 48.827658266381064], [2.37212300655565, 48.8276632896237], [2.372308230872374, 48.827628874317945], [2.372491994146452, 48.82759416505886], [2.372677217974014, 48.827559749179485], [2.372860980758682, 48.82752503935131], [2.373046204097074, 48.82749062289833], [2.373229967754532, 48.82745591250818], [2.373415190603747, 48.82742149548164], [2.373598952409882, 48.827386784515255], [2.373784174769916, 48.827352366915086], [2.373967936086623, 48.82731765537961], [2.374153157957468, 48.82728323720588], [2.374336918784944, 48.8272485251013], [2.374345626558422, 48.827248795500346], [2.374530816311828, 48.82729660352762], [2.3746984081856812, 48.82734512868815], [2.374866001744394, 48.827393652719465], [2.375051192489528, 48.8274414599348], [2.375057408421863, 48.8274444972208], [2.375085592239923, 48.82744637848582], [2.375270783373808, 48.82749418535885], [2.375457337054744, 48.82753948710965], [2.375642528860246, 48.82758729340307], [2.375829083208235, 48.827632593670906], [2.376014275685346, 48.827680399384704], [2.376200830678645, 48.827725699968234], [2.376386023827362, 48.82777350510242], [2.376572579487694, 48.827818804202956], [2.37675777330801, 48.82786660875753], [2.376944329613654, 48.82791190817374], [2.376949917700117, 48.82791244183408], [2.377125495256255, 48.827905516594505], [2.377299337330481, 48.82789802265161], [2.377458957725673, 48.82789114064704], [2.377634535131715, 48.82788421555929], [2.377648755405543, 48.82788360244095], [2.377656758551876, 48.82788494188212], [2.377826230535969, 48.82795449880872], [2.377998462492835, 48.82802624632293], [2.378167935392156, 48.828095802756565], [2.378340168275364, 48.828167550668965], [2.378509642089917, 48.82823710660963], [2.378681875921022, 48.82830885312155], [2.378851349288677, 48.8283784085622], [2.379023585408166, 48.828450155479366], [2.379193059691052, 48.828519710426974], [2.379365296758432, 48.8285914559437], [2.379534771956545, 48.82866101039837], [2.3797070099502, 48.82873275631322], [2.379876486063545, 48.82880231027489], [2.38004872500498, 48.82887405478926], [2.3800677740152762, 48.82887096436338], [2.380158917166905, 48.828767316595396], [2.380260798236864, 48.82866045338168], [2.380351940626026, 48.828556806346455], [2.380453822251078, 48.8284499429553], [2.380472823188129, 48.828447214662226], [2.380642516398665, 48.82852074569964], [2.380805957459855, 48.82859027519432], [2.380975651605904, 48.8286638057497], [2.381139093559886, 48.82873333478021], [2.381308788641451, 48.828806864853505], [2.381472231488223, 48.828876393419925], [2.3816419275053082, 48.828949923011166], [2.381805371244872, 48.82901945111342], [2.381968815420392, 48.829088978988004], [2.382138512829835, 48.829162507860715], [2.38230195789815, 48.82923203527111], [2.382471656243115, 48.82930556366174], [2.382635102204226, 48.829375090608046], [2.382804801484716, 48.829448618516594], [2.38295428095614, 48.82951796141465], [2.383107522730605, 48.829584357403235], [2.383257002993884, 48.829653699914594], [2.383410244190827, 48.82972009550022], [2.383559725256597, 48.82978943672547], [2.383712968589508, 48.829855832821536], [2.383862450447131, 48.82992517366005], [2.384015694575218, 48.82999156846086], [2.384165177214071, 48.83006090981194], [2.384318420764528, 48.83012730420981], [2.384387661635174, 48.83018787972224], [2.38445096551672, 48.83016370312729], [2.384528992276569, 48.83010215071799], [2.384651280589462, 48.82999789098778], [2.384783685211673, 48.82989344033467], [2.384905972525631, 48.829789180324646], [2.385038376107479, 48.82968472937012], [2.385038744768019, 48.829684425479975], [2.385161029719441, 48.82958016518275], [2.385275654123914, 48.82948136052936], [2.385397938114727, 48.82937710087031], [2.385512561634225, 48.82927829507266], [2.385634844674943, 48.82917403515252], [2.385749467298973, 48.829075229109904], [2.385871749389604, 48.828970968928644], [2.38598637110758, 48.82887216354042], [2.3861086522587263, 48.82876790219876], [2.386223273081355, 48.828669096565626], [2.386345553282326, 48.82856483496283], [2.386460173209515, 48.82846602908475], [2.386582452460423, 48.82836176722091], [2.3866970714921782, 48.828262961097884], [2.386819349793031, 48.82815869897292], [2.386933967929363, 48.82805989260498], [2.386934821607697, 48.828059232345986], [2.387069129276421, 48.82796508658517], [2.387203739257952, 48.82786847344342], [2.387338045949634, 48.82777432736464], [2.387472656291736, 48.82767771481004], [2.387606962017048, 48.82758356751393], [2.387741570006175, 48.827486954633294], [2.387875874754353, 48.82739280701914], [2.388010481752729, 48.82729619381939], [2.388144785513327, 48.82720204678662], [2.388279392893508, 48.827105432375404], [2.388413694314997, 48.82701128501764], [2.388548300693683, 48.82691467118667], [2.388682602510909, 48.826820522618604], [2.388817206536672, 48.82672390846158], [2.3889515073662553, 48.82662976047481], [2.389086110411837, 48.82653314509941], [2.389220410264431, 48.826438996794685], [2.389355013670736, 48.82634238200645], [2.389489311194804, 48.8262482324775], [2.389623913610299, 48.82615161737021], [2.389758211519462, 48.826057467530205], [2.389892811581983, 48.8259608520969], [2.390027108503753, 48.825866702838255], [2.390161707586004, 48.825770086186544], [2.390164647701979, 48.82576455654777], [2.390158652247238, 48.82573690714161], [2.390109982848812, 48.825715673880254], [2.390108301039803, 48.825714940408844], [2.390065351980474, 48.825696203281105], [2.389910855526635, 48.82561573258224], [2.3897614004593493, 48.825550529971046], [2.389606903544258, 48.825470058862074], [2.389445088156806, 48.82538356755224], [2.389290593586731, 48.82530309602968], [2.3891346404438822, 48.82521973795545], [2.389075717038316, 48.82518824219586], [2.388921223617138, 48.82510777018211], [2.38882177711613, 48.825054615365126], [2.388651486151207, 48.824993718054465], [2.388499636576809, 48.82493971136164], [2.388329346363447, 48.824878813586025], [2.3881774974573933, 48.82482480647859], [2.388025650217406, 48.824770800082], [2.387855361109357, 48.8247099016223], [2.387684144786378, 48.82464900536214], [2.387513856475013, 48.82458810640952], [2.387342642302229, 48.824527210560106], [2.387172354787546, 48.82446631111461], [2.387001141424157, 48.82440541387033], [2.386830854706156, 48.82434451393195], [2.386659642131021, 48.82428361709146], [2.386489356209703, 48.824222716660195], [2.386348777385046, 48.82417271415072], [2.386178492189047, 48.8241118132708], [2.386037915312969, 48.82406181129724], [2.385867630842286, 48.82400090996865], [2.385842372120477, 48.823991925907166], [2.3857977441658162, 48.82397605118221], [2.385791894052359, 48.823973970561305], [2.385744084025319, 48.82395696514713], [2.385726064400038, 48.82395055538001], [2.385555780656976, 48.82388965360131], [2.385386072593636, 48.823829287862715], [2.385215789643765, 48.823768385593304], [2.385139551662089, 48.82374126780907], [2.385093737299518, 48.823724971204356], [2.385090849566269, 48.82372394455891], [2.38504487517767, 48.823707591350974], [2.384874593023798, 48.82364668858915], [2.384707060795814, 48.823587095727916], [2.384536779430067, 48.823526192478525], [2.384369247975264, 48.82346659913761], [2.384198967397642, 48.82340569540065], [2.38403143807812, 48.82334610158711], [2.383861158288624, 48.82328519736264], [2.3836936283804873, 48.82322560306244], [2.383523349379117, 48.82316469835039], [2.383355820244164, 48.82310510357058], [2.383185542030922, 48.82304419837101], [2.383059373873072, 48.822999316233464], [2.3829813260769033, 48.82297155184756], [2.382811048737269, 48.82291064610751], [2.382721803319383, 48.8228788979801], [2.382676246866709, 48.82286050171839], [2.382648346015969, 48.822876782076314], [2.3825617952281792, 48.82299234026592], [2.382474624256059, 48.82310951405602], [2.382388071345674, 48.8232250711896], [2.382300900956041, 48.82334224483583], [2.382214347274188, 48.8234578018197], [2.382127176105044, 48.823574975315], [2.382040621641157, 48.823690533048534], [2.381953449692491, 48.82380770639293], [2.381866894467977, 48.823923263077475], [2.381779720377765, 48.82404043626389], [2.381693165743771, 48.824155992805814], [2.381605990874013, 48.824273165841326], [2.381519435458055, 48.82438872313284], [2.381432259808738, 48.82450589601746], [2.381345702269908, 48.824621452252906], [2.381258527203057, 48.82473862499364], [2.381171968892905, 48.824854181079424], [2.381084793046484, 48.8249713536692], [2.380998233964799, 48.825086909605325], [2.3809110573388, 48.825204082044124], [2.3808244974749933, 48.82531963872986], [2.380737318707454, 48.8254368110107], [2.380724086876941, 48.825441076572744]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 43, "zemmour_eric": 81.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-71", "circ_bv": "09", "num_bureau": 71, "roussel_fabien": 17.0, "nb_emargement": 1331.0, "nb_procuration": 37.0, "nb_vote_blanc": 22.0, "jadot_yannick": 78.0, "le_pen_marine": 80.0, "nb_exprime": 1301.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1652.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "50", "geo_point_2d": [48.82660914484048, 2.383185539037531], "melenchon_jean_luc": 593.0, "poutou_philippe": 6.0, "macron_emmanuel": 329.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.382639557131637, 48.85407669268408], [2.382625394650501, 48.8541064528647], [2.382551690010275, 48.85423052556036], [2.382478167501502, 48.8543548401644], [2.382404462170027, 48.854478911842364], [2.382330938959531, 48.854603226328145], [2.382257232926143, 48.854727297887685], [2.382183710376734, 48.85485161226227], [2.382110002267939, 48.85497568459561], [2.382036479016791, 48.855099998851934], [2.381962770216823, 48.85522407016757], [2.381889246263929, 48.85534838430564], [2.38181553676191, 48.85547245550281], [2.381743590353091, 48.8555936677273], [2.3816716422466913, 48.855714879888225], [2.381597933070918, 48.85583895091749], [2.381525984286985, 48.85596016296406], [2.3814522744067173, 48.856084234775516], [2.381380324955917, 48.85620544580843], [2.38130661438192, 48.856329517502765], [2.381299392036841, 48.856334472445184], [2.3812277892443943, 48.85635516495383], [2.381148231150953, 48.85637860066108], [2.3811416787904163, 48.85638268399252], [2.381056577762136, 48.85649135372105], [2.380970118728071, 48.85660061172383], [2.3808850169860483, 48.85670928130905], [2.380798557230518, 48.85681853916645], [2.380713454774844, 48.85692720860832], [2.380626994308634, 48.857036465421004], [2.380541889776219, 48.8571451347125], [2.38045542857804, 48.857254392279074], [2.380370324694736, 48.857363061434214], [2.380283862785762, 48.85747231795614], [2.38026640503877, 48.857476419405295], [2.380118870927896, 48.85743462159557], [2.379965600519689, 48.85739040880806], [2.37981806553078, 48.85734861061718], [2.379664795630837, 48.85730439744097], [2.379640571111937, 48.857310538516394], [2.379636886008226, 48.857314977480485], [2.379689795380038, 48.85740211349419], [2.379726449936625, 48.857465244365265], [2.379735263968665, 48.85747750859321], [2.379750328665664, 48.85747842397123], [2.379910416486765, 48.85752860445666], [2.380073325481995, 48.857579280490384], [2.380233415286944, 48.85762946054622], [2.380396324911662, 48.857680136135635], [2.380411762329498, 48.85767836790747], [2.380493169660612, 48.85762477545762], [2.380647059076949, 48.857531590206364], [2.380784978206837, 48.857448043164425], [2.380938867942088, 48.85735485753012], [2.381076786136256, 48.85727131013855], [2.381230673464858, 48.85717812410711], [2.381368592086193, 48.85709457637299], [2.381522478370833, 48.85700138995144], [2.381660394693581, 48.856917841860664], [2.381814281297344, 48.856824655056094], [2.381952196684389, 48.8567411066157], [2.382090112991911, 48.85665755801715], [2.382243996695549, 48.856564370631055], [2.382261932095381, 48.856564085495016], [2.382296502423087, 48.856583079223235], [2.382302169147561, 48.85660207573339], [2.382343560410761, 48.85660329575962], [2.382388369211433, 48.85662791467012], [2.382424269456665, 48.856647631105254], [2.382441993535125, 48.85664746896154], [2.382593398155064, 48.85655950973713], [2.382742893981643, 48.85647260170186], [2.382894298948361, 48.856384642089914], [2.383043793771333, 48.856297733665045], [2.383195196348566, 48.85620977455083], [2.383344690167844, 48.85612286573634], [2.383496091739655, 48.85603490532826], [2.383645584555341, 48.85594799612417], [2.383796986473936, 48.8558600353286], [2.38394647692329, 48.85577312572791], [2.38409787781509, 48.85568516543705], [2.38424736862371, 48.85559825545384], [2.384398767147245, 48.85551029386212], [2.384548256952293, 48.85542338348931], [2.384697746258654, 48.855336472922964], [2.384849143261258, 48.85524851074068], [2.384998631564054, 48.8551615997848], [2.385150028902836, 48.8550736381143], [2.385299516202072, 48.85498672676881], [2.385450911172707, 48.854898763797486], [2.385454830919514, 48.85488916448629], [2.385426325355724, 48.854832851904526], [2.385392770300355, 48.85476996071544], [2.385415670873289, 48.85472604258335], [2.385399829938984, 48.85471924307825], [2.385382124479758, 48.854711644364855], [2.385370790586371, 48.854710390912345], [2.385177673201575, 48.85466399332677], [2.384980805124274, 48.85461924624053], [2.384787688424537, 48.854572848021746], [2.384590819663692, 48.85452810028319], [2.384397705011833, 48.854481701438246], [2.384200836930366, 48.85443695305436], [2.384200792075243, 48.85443694293067], [2.384007678108529, 48.854390543452496], [2.383822748574059, 48.85434897844202], [2.383629635269988, 48.854302578350044], [2.383444706349271, 48.854261012752005], [2.383259776360782, 48.85421944685962], [2.383066664038086, 48.85417304585368], [2.382881736026166, 48.854131479380776], [2.382688624366127, 48.854085077761056], [2.382648687130565, 48.8540761012508], [2.382639557131637, 48.85407669268408]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 53, "zemmour_eric": 73.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-5", "circ_bv": "07", "num_bureau": 5, "roussel_fabien": 29.0, "nb_emargement": 1414.0, "nb_procuration": 99.0, "nb_vote_blanc": 13.0, "jadot_yannick": 139.0, "le_pen_marine": 42.0, "nb_exprime": 1398.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1762.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1414, "quartier_bv": "43", "geo_point_2d": [48.85558301596873, 2.3828245963744883], "melenchon_jean_luc": 506.0, "poutou_philippe": 10.0, "macron_emmanuel": 487.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303481595359494, 48.82701156477349], [2.303457734143313, 48.82700280974066], [2.30335749257186, 48.82692084097451], [2.303236672150775, 48.82682131504284], [2.303109434176975, 48.8267172699699], [2.302988613339114, 48.826617743761595], [2.302861376357065, 48.82651369840583], [2.302740556464598, 48.8264141719289], [2.302613320474395, 48.82631012629036], [2.302492502889172, 48.826210599552695], [2.302365267890901, 48.826106553631384], [2.302244449888891, 48.82600702661715], [2.302117215882345, 48.82590298041301], [2.301996398825602, 48.82580345313015], [2.301869165810975, 48.82569940664329], [2.301748351061535, 48.82559987909967], [2.30162753542336, 48.82550035051798], [2.301500303884422, 48.82539630361057], [2.30137948917955, 48.82529677565956], [2.301252258632406, 48.82519272846939], [2.301250750487838, 48.82519051347458], [2.301206877588791, 48.825180282974024], [2.3011959433048492, 48.825182662699], [2.301133202300419, 48.825196317409976], [2.3009760456969213, 48.82523224653182], [2.300869299550046, 48.82525547950531], [2.300712142586356, 48.82529140827845], [2.300487114298422, 48.82534038290849], [2.300329956815441, 48.82537631117667], [2.300291913297608, 48.82538459133886], [2.300235652651954, 48.825396835492114], [2.300193324976957, 48.82540604749576], [2.300191604071693, 48.82540801606417], [2.300206467590462, 48.825436124167986], [2.3001254979570582, 48.825557952688136], [2.300045312360684, 48.825678272073006], [2.299964341974647, 48.8258001004578], [2.299884154271991, 48.82592041970072], [2.299803183133308, 48.82604224795007], [2.29972299606034, 48.826162566167646], [2.299642024156926, 48.82628439518094], [2.299561834977545, 48.82640471325653], [2.299480862333546, 48.82652654123509], [2.299400673759787, 48.826646860083905], [2.299319700363115, 48.826768687927085], [2.299239509683011, 48.82688900663392], [2.299158535533654, 48.827010834341664], [2.299078345483236, 48.82713115202317], [2.298997370581189, 48.82725297959551], [2.298917178412201, 48.82737329803427], [2.298836202757449, 48.827495125471216], [2.298756011206252, 48.82761544378393], [2.298675034798687, 48.827737271085404], [2.298594841153079, 48.82785758835682], [2.298594448745066, 48.82786417670862], [2.29863863281314, 48.827947700393125], [2.298724423041154, 48.82810844681337], [2.298768607524477, 48.82819197043158], [2.298771829826669, 48.828195361098295], [2.298872500399143, 48.82826189471647], [2.298973029454431, 48.828328334778895], [2.299073700540446, 48.828394868219824], [2.299174231470574, 48.828461308113205], [2.299177871903779, 48.82846967208586], [2.29914198438572, 48.82857314578265], [2.2991051669484133, 48.828681133388784], [2.299069279152577, 48.82878460614492], [2.299032462777467, 48.82889259371627], [2.298996573317539, 48.82899606732242], [2.298959756642495, 48.82910405485098], [2.298977217573474, 48.82911459089171], [2.299182854311886, 48.82907091529436], [2.299355972658174, 48.82903407028844], [2.299529090771844, 48.82899722413142], [2.299734726584965, 48.828953547580596], [2.299907844151477, 48.82891670177198], [2.300113479329771, 48.82887302456683], [2.300286597735303, 48.828836177315964], [2.300492232278658, 48.828792499456476], [2.300665348775005, 48.82875565254605], [2.300870982683318, 48.828711974032174], [2.301044098656633, 48.82867512567158], [2.301061808012011, 48.82868473020661], [2.301033004921025, 48.82884733140469], [2.301010731226419, 48.828967328507545], [2.301004262027524, 48.8290021784847], [2.301015747903268, 48.829020999453405], [2.301055017530043, 48.82901706573934], [2.301245415933076, 48.8289771333952], [2.301463200446562, 48.82893401772023], [2.301472644779389, 48.828923640992855], [2.30145106609415, 48.8288523642275], [2.301427034909548, 48.82878479025934], [2.30143757422009, 48.82877392167371], [2.301628345790562, 48.82874824424891], [2.301816238532712, 48.82872167281985], [2.302007009725484, 48.8286959947898], [2.302194902098364, 48.82866942186527], [2.302385674275551, 48.82864374323802], [2.302573564893049, 48.82861717060874], [2.30276433669242, 48.82859149137622], [2.30295222694062, 48.828564917251505], [2.302962944644038, 48.8285553500726], [2.302945099748731, 48.82841893444508], [2.302920035926898, 48.828283082901955], [2.302929377465609, 48.828273435752294], [2.303129521234679, 48.82823083029215], [2.303320740855677, 48.82819026896285], [2.303520883985635, 48.82814766284461], [2.303712102997099, 48.82810710088656], [2.303903321711016, 48.828066538621314], [2.304103463889863, 48.82802393152343], [2.304294681994238, 48.82798336862945], [2.304494822171952, 48.82794076086555], [2.304612879459895, 48.82794859025089], [2.304617866332633, 48.82793368775956], [2.30454203406272, 48.827872769865614], [2.304414792279802, 48.827768726286884], [2.304284858390452, 48.827664344921374], [2.304157616267256, 48.82756030104178], [2.304027684762346, 48.827455920284734], [2.303900443661168, 48.82735187611219], [2.303770513202592, 48.827247494157], [2.303643273123221, 48.82714344969153], [2.303513343698968, 48.82703906743763], [2.303486344923119, 48.82701699141236], [2.303481595359494, 48.82701156477349]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 43, "zemmour_eric": 97.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-48", "circ_bv": "13", "num_bureau": 48, "roussel_fabien": 12.0, "nb_emargement": 1081.0, "nb_procuration": 21.0, "nb_vote_blanc": 14.0, "jadot_yannick": 41.0, "le_pen_marine": 113.0, "nb_exprime": 1062.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1569.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1081, "quartier_bv": "57", "geo_point_2d": [48.82733022564187, 2.3012013472356085], "melenchon_jean_luc": 450.0, "poutou_philippe": 3.0, "macron_emmanuel": 259.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328043110286374, 48.84994521109158], [2.328041371168988, 48.84993730315484], [2.328126333851285, 48.84982293935964], [2.32821044701815, 48.84971017248298], [2.328295408970677, 48.849595807645095], [2.328379522756147, 48.84948304153348], [2.328464483967213, 48.84936867655219], [2.328548597020211, 48.849255910298744], [2.328633556127365, 48.849141545166404], [2.328717668447902, 48.8490287787711], [2.328717797478565, 48.84902860052249], [2.328721316072465, 48.84901082733517], [2.328701404110241, 48.84900434814865], [2.328604515574531, 48.84889249974001], [2.328509877350884, 48.84878361017165], [2.3284129896366412, 48.8486717615857], [2.328318352225643, 48.84856287094499], [2.328221465321264, 48.84845102308109], [2.328126828711419, 48.84834213226728], [2.328029942628485, 48.848230284226105], [2.327935306819579, 48.848121393239204], [2.32793177089092, 48.84811872745857], [2.327800185311765, 48.84805222249468], [2.327668205348216, 48.847986315037375], [2.327536621813986, 48.847919808884086], [2.327404642519104, 48.847853901128204], [2.327401734198465, 48.8478519187759], [2.327302592353008, 48.84775930102188], [2.327190105235919, 48.847654704188905], [2.327090962779132, 48.84756208623547], [2.3269784765124832, 48.84745748918499], [2.326953809439033, 48.847461780672255], [2.326934109979834, 48.84758904903325], [2.326914547511823, 48.847715304568126], [2.326894847860907, 48.84784257289372], [2.326875285202608, 48.84796882839343], [2.326855585359973, 48.84809609668355], [2.326836022499767, 48.8482223530474], [2.326816322477026, 48.84834962040283], [2.326796759426525, 48.84847587673151], [2.326777059200543, 48.84860314495079], [2.326757497333915, 48.84872940035268], [2.326737796916106, 48.8488566685365], [2.326718233496631, 48.84898292389557], [2.326698532887193, 48.84911019204393], [2.326678969265694, 48.84923644826715], [2.326659268476143, 48.84936371548078], [2.326639704664338, 48.84948997166881], [2.326617390120008, 48.84949594643479], [2.32646692929386, 48.8494126291598], [2.326319989757256, 48.84933135507292], [2.32616952988181, 48.84924803741159], [2.326022591273123, 48.84916676294748], [2.325872132336739, 48.8490834457992], [2.325725194667497, 48.849002170058505], [2.325574736681902, 48.84891885252389], [2.325427801303229, 48.84883757641364], [2.3252773442683132, 48.84875425849275], [2.32513040845489, 48.84867298199759], [2.324979952370652, 48.848589663690404], [2.324833017485134, 48.848508386818], [2.324815117274028, 48.84850087867014], [2.324799777922451, 48.848507230624115], [2.324682525664792, 48.84861644460032], [2.324566349690107, 48.84872511592], [2.324449097803909, 48.848834330553004], [2.324332920856714, 48.848943001624804], [2.324215666640173, 48.849052215100734], [2.324099488720358, 48.849160885924576], [2.323982233512694, 48.84927010004962], [2.323866054620447, 48.849378770625535], [2.323748799807653, 48.849487983608846], [2.323632619942768, 48.84959665393683], [2.323515362787826, 48.849705866662326], [2.323399181938817, 48.84981453764168], [2.323353438390207, 48.84984643104906], [2.323358987651231, 48.84985292972572], [2.323440888825154, 48.849894334416625], [2.323594444067604, 48.84996587338086], [2.323754356209645, 48.85004671596731], [2.32390791234311, 48.85011825362014], [2.324067826801743, 48.85019909578424], [2.324221382440196, 48.850270633916594], [2.324222540805422, 48.85027115848992], [2.324400205452599, 48.850343132939656], [2.324566147958858, 48.85041101091764], [2.324743814920017, 48.85048298485578], [2.324909756968244, 48.85055086144169], [2.32508742488079, 48.85062283486057], [2.325253367810277, 48.85069071186069], [2.325431036674214, 48.8507626847603], [2.3255969805082533, 48.85083056037606], [2.325774650323579, 48.8509025327564], [2.3259405964015, 48.850970408794005], [2.326118267168221, 48.85104238065505], [2.326284212788078, 48.8511102553006], [2.326461884506188, 48.85118222664235], [2.326627831007331, 48.851250101702114], [2.32663000674016, 48.85125120666681], [2.326724864561009, 48.851313822254895], [2.326845078301032, 48.85138871635425], [2.326860545032668, 48.85140483172484], [2.326883246312128, 48.8514105462494], [2.326938600684736, 48.85144503234223], [2.326986806477647, 48.85147556779095], [2.326997863212865, 48.85147934073317], [2.327045968821757, 48.851443137855064], [2.327135011780404, 48.851320475184224], [2.327222471229002, 48.85120009779404], [2.327311513345381, 48.851077435864376], [2.327398971978349, 48.850957058318876], [2.32748643020725, 48.850836680696425], [2.327575471092831, 48.85071401763094], [2.327662928506219, 48.850593639853194], [2.327751968549465, 48.850470977528865], [2.327752795595413, 48.85046465159155], [2.327738978670912, 48.85043230857446], [2.327723850139714, 48.850397902251444], [2.327724573102711, 48.85039161620023], [2.32780252804834, 48.85028056250938], [2.327876004021335, 48.850173569384054], [2.327949479681016, 48.85006657710261], [2.328027433661219, 48.849955523232815], [2.328027562696538, 48.8499553449851], [2.328043110286374, 48.84994521109158]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 99, "zemmour_eric": 123.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "6-14", "circ_bv": "11", "num_bureau": 14, "roussel_fabien": 4.0, "nb_emargement": 1022.0, "nb_procuration": 68.0, "nb_vote_blanc": 9.0, "jadot_yannick": 70.0, "le_pen_marine": 41.0, "nb_exprime": 1009.0, "nb_vote_nul": 4.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 1254.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1022, "quartier_bv": "23", "geo_point_2d": [48.84963448921161, 2.3263191899740705], "melenchon_jean_luc": 172.0, "poutou_philippe": 3.0, "macron_emmanuel": 463.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406738053597103, 48.858263616974845], [2.40671777085092, 48.85825491688227], [2.406682885734107, 48.85823109654711], [2.4066435211301522, 48.85820244069553], [2.406623901647249, 48.85820204572881], [2.406525365382992, 48.858265521199584], [2.406428175240813, 48.85832854010124], [2.406329639861697, 48.85839201541036], [2.406232449246831, 48.858455034145855], [2.406213109085538, 48.858454877925325], [2.406087327446655, 48.85836924315583], [2.405961911515337, 48.858283845689265], [2.405836132075372, 48.85819820974997], [2.405710716967456, 48.85811281200698], [2.405691194286137, 48.85811277620662], [2.405564561686952, 48.85819804278495], [2.405443764637328, 48.85827998815838], [2.405317131226825, 48.85836525446207], [2.405196333400382, 48.858447199573405], [2.405177604119349, 48.858459794436065], [2.405177808670991, 48.85846241164719], [2.405253758713463, 48.85851138794351], [2.40541949264916, 48.85861872543137], [2.40555187773254, 48.858704095106454], [2.405717612895286, 48.85881143216281], [2.405849998967035, 48.85889680059393], [2.405850701862423, 48.858909146687694], [2.405787731067177, 48.858956552340445], [2.405722024668234, 48.85900634562309], [2.4057244034226333, 48.85901957959769], [2.405873215287035, 48.85908942143329], [2.406020525385717, 48.85915891746991], [2.406169338055288, 48.85922875802916], [2.406316648942804, 48.85929825369256], [2.40646546240739, 48.8593680938748], [2.406612772710759, 48.859437590057475], [2.40676158697016, 48.85950742986273], [2.406908899435556, 48.85957692477962], [2.407057714489976, 48.85964676420786], [2.407205027744314, 48.859716258751476], [2.407216516913483, 48.85972688565023], [2.407229323943584, 48.859726865450114], [2.407414491855774, 48.859801565568624], [2.407594032762259, 48.8598738389883], [2.407779201719694, 48.8599485385326], [2.4079587422756052, 48.86002081138877], [2.408143912288501, 48.86009550945955], [2.408323453856788, 48.86016778175903], [2.4083262325598263, 48.86016926502433], [2.408447354734668, 48.86025350183188], [2.408569469566395, 48.860338460190775], [2.408690592527846, 48.86042269673926], [2.408812708152775, 48.860507654836994], [2.408933833263813, 48.860591891133154], [2.409055948308775, 48.860676849862294], [2.409063815029957, 48.86067955436013], [2.409183940305295, 48.860691448615064], [2.409299023913659, 48.86070333135364], [2.409331032412055, 48.86070617747855], [2.409337945099395, 48.86069769482174], [2.40934201150057, 48.8606716834161], [2.409345875068653, 48.86064997706188], [2.409350249727626, 48.86064173998864], [2.409342635438855, 48.86063143640953], [2.40936126283401, 48.86052681426226], [2.409383394226228, 48.86040321797048], [2.409405887699188, 48.86027688944535], [2.409428018879483, 48.86015329311748], [2.409450510783576, 48.86002696364944], [2.409472641741659, 48.85990336818476], [2.409495133429766, 48.85977703867987], [2.409517264185926, 48.85965344227981], [2.409539757020791, 48.85952711274477], [2.409561887554846, 48.859403517207866], [2.409584378810679, 48.859277187629296], [2.409606509132726, 48.859153592056295], [2.409629000172481, 48.85902726244085], [2.409651130292711, 48.85890366593251], [2.409673622479317, 48.85877733628694], [2.409695751014429, 48.85865374063502], [2.409718242984956, 48.85852741095264], [2.409740372670992, 48.85840381527137], [2.409730533014146, 48.85839410327912], [2.409518641000024, 48.858354705358344], [2.409314247923165, 48.85831702854781], [2.40910235653717, 48.85827762988724], [2.408897964063696, 48.85823995236306], [2.408883121036193, 48.85823745800754], [2.408869316787435, 48.85824599834588], [2.408755032917717, 48.858379600692835], [2.408643601853599, 48.85851110085737], [2.4086422292811562, 48.8585124269032], [2.408527551824651, 48.85860495759605], [2.408408871152291, 48.85870010616019], [2.408294192868274, 48.858792636613764], [2.408175511342355, 48.85888778493038], [2.408060832241036, 48.85898031424537], [2.40794214985113, 48.859075463213756], [2.407921825709841, 48.859075997595454], [2.407793804243816, 48.8589885854961], [2.407649386802667, 48.858890118292756], [2.407521367623597, 48.85880270499478], [2.407376951212647, 48.85870423744617], [2.4072489329371383, 48.85861682474135], [2.407104517556276, 48.85851835684748], [2.406976498831525, 48.858430943829845], [2.406832084490984, 48.858332474691395], [2.406738953168738, 48.85826888260249], [2.406738053597103, 48.858263616974845]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 36, "zemmour_eric": 81.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "20-40", "circ_bv": "15", "num_bureau": 40, "roussel_fabien": 37.0, "nb_emargement": 1074.0, "nb_procuration": 30.0, "nb_vote_blanc": 16.0, "jadot_yannick": 53.0, "le_pen_marine": 73.0, "nb_exprime": 1055.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1497.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1074, "quartier_bv": "80", "geo_point_2d": [48.859218928821555, 2.4079216837894246], "melenchon_jean_luc": 462.0, "poutou_philippe": 9.0, "macron_emmanuel": 238.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305609109337752, 48.85521366008241], [2.3055947532876893, 48.855219739164355], [2.30554917618353, 48.85530351145633], [2.30547937468813, 48.85543186003715], [2.305416907126244, 48.85554667894624], [2.305347103616551, 48.85567502741395], [2.305284635459679, 48.855789847128165], [2.305214832673133, 48.855918194599184], [2.305152362570417, 48.856033014211306], [2.30508255913229, 48.856161361577094], [2.305020089809502, 48.85627618110291], [2.305019879832161, 48.85627659628522], [2.304964095913592, 48.856396180714874], [2.30491004369799, 48.85651313375826], [2.304854257911343, 48.85663271810333], [2.304800205203819, 48.85674967107219], [2.304744418911832, 48.856869255340555], [2.304690365724384, 48.8569862073356], [2.304634580289818, 48.857105791535204], [2.304580526598541, 48.85722274435501], [2.304570915453691, 48.85724722111256], [2.304584556585986, 48.857254216430015], [2.304612794180124, 48.857377382640344], [2.304639996871981, 48.85749997712148], [2.304668236093245, 48.85762314329941], [2.304695439043963, 48.85774573774081], [2.304723677154596, 48.85786890476969], [2.304750880375971, 48.85799149827208], [2.304769120030569, 48.857998623705484], [2.304948999168566, 48.85795444548765], [2.305123129878763, 48.857911732843476], [2.305303008428605, 48.85786755319077], [2.305477138558198, 48.85782484002809], [2.30565701650788, 48.85778065983979], [2.305831146056763, 48.857737946158636], [2.305841182436593, 48.85773808711966], [2.306000490949838, 48.857782337557595], [2.306156761510152, 48.85782567890493], [2.306316070547255, 48.857869929818555], [2.30647234163279, 48.85791327075035], [2.306628612978305, 48.857956611476396], [2.306787922816482, 48.85800086175664], [2.3067921554037643, 48.85800153740833], [2.30699932506501, 48.85801207264355], [2.307204354674959, 48.85802211487457], [2.307411523126518, 48.85803265028741], [2.307616552908935, 48.85804269091271], [2.307823722888444, 48.858053225619656], [2.308028751468361, 48.85806326553069], [2.308235921613119, 48.858073799523794], [2.308440951704276, 48.858083839635576], [2.308648120663209, 48.858094372007756], [2.308853150914848, 48.858104411413116], [2.309058181245396, 48.85811445046709], [2.309265351813701, 48.85812498177831], [2.309305560611932, 48.85812490898493], [2.309311447630536, 48.85810298523416], [2.309319604290201, 48.85806541143133], [2.309335717199371, 48.85800455699893], [2.3093232777251558, 48.85799404010254], [2.309116016493481, 48.857984114528755], [2.308914913331903, 48.857973771784366], [2.308707652246718, 48.857963846402384], [2.30850654789348, 48.85795350206436], [2.3082992869667223, 48.85794357597494], [2.308098184123749, 48.85793323185762], [2.307890923367369, 48.85792330416146], [2.307689820683718, 48.8579129593577], [2.307482560073841, 48.857903031853354], [2.307281456198582, 48.85789268545601], [2.307074195747165, 48.85788275724423], [2.306873093382181, 48.857872411067554], [2.306869508761911, 48.85787189925691], [2.30666485563392, 48.857821938077905], [2.306433052004078, 48.85776648960911], [2.306424836905279, 48.857755058862686], [2.306486750476676, 48.85763857803246], [2.306547896719595, 48.85752299656455], [2.306609811103008, 48.85740651565422], [2.306670956812677, 48.85729093319997], [2.306732869282252, 48.85717445219374], [2.306794014434643, 48.85705887055175], [2.306855927716338, 48.85694238946535], [2.306917072323321, 48.85682680773631], [2.306978983691308, 48.85671032655403], [2.307040127753098, 48.856594744737954], [2.30704084282366, 48.85659252567205], [2.307056448390009, 48.85647396046285], [2.307071509919372, 48.85635448463905], [2.30708711670739, 48.85623591940834], [2.307102176746738, 48.85611644264791], [2.307117783393775, 48.855997877387765], [2.307132844656841, 48.85587840060576], [2.3071484497998602, 48.85575983530835], [2.307163510923802, 48.855640358496885], [2.307155062974359, 48.85563128274301], [2.306963731901121, 48.85557994390244], [2.306775525104425, 48.85552931355717], [2.306584194779571, 48.85547797410506], [2.306395990082708, 48.855427343166085], [2.306204660494265, 48.8553760040017], [2.306016455171787, 48.85532537245326], [2.305825126343707, 48.855274031778], [2.305636923121167, 48.855223399635875], [2.305609109337752, 48.85521366008241]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 112, "zemmour_eric": 130.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "7-17", "circ_bv": "02", "num_bureau": 17, "roussel_fabien": 6.0, "nb_emargement": 1044.0, "nb_procuration": 70.0, "nb_vote_blanc": 1.0, "jadot_yannick": 56.0, "le_pen_marine": 65.0, "nb_exprime": 1039.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1302.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1044, "quartier_bv": "28", "geo_point_2d": [48.85674292625906, 2.3060286942870327], "melenchon_jean_luc": 132.0, "poutou_philippe": 2.0, "macron_emmanuel": 500.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303918041629505, 48.890056648542476], [2.303919058559721, 48.89005341956913], [2.303753807509486, 48.889974918705995], [2.303596766020168, 48.88989965886887], [2.303431515943808, 48.88982115754997], [2.303274474020339, 48.88974589727167], [2.303109224917852, 48.88966739549703], [2.302952183935993, 48.88959213388625], [2.3027869358073803, 48.88951363165582], [2.302629897106771, 48.889438370519024], [2.302464649952022, 48.88935986783288], [2.302307610817263, 48.889284606254925], [2.30214236463638, 48.88920610311302], [2.301985326431184, 48.889130841101846], [2.301820081224162, 48.88905233750417], [2.301663043960589, 48.88897707416057], [2.301497799715363, 48.88889857100639], [2.301340764745052, 48.888823307237544], [2.3011755214857432, 48.88874480272839], [2.301018486069222, 48.88866953941765], [2.300853243783765, 48.88859103445275], [2.300696209296796, 48.88851577070886], [2.300539176639551, 48.88844050586254], [2.300373935791455, 48.88836200111907], [2.300364069315359, 48.88836044878199], [2.300347178774567, 48.88837051521903], [2.300228050744649, 48.888481122885715], [2.300110800405119, 48.888589985009325], [2.299991671370991, 48.88870059241876], [2.299874421406682, 48.88880945429707], [2.299757170940122, 48.88891831694903], [2.299638040415648, 48.88902892307434], [2.299520787596997, 48.88913778546513], [2.299401656068393, 48.8892483913331], [2.299284403624945, 48.889357253478614], [2.2991652710921002, 48.88946785908933], [2.299048016296629, 48.88957672097366], [2.298928882759531, 48.88968732632707], [2.298925794789138, 48.88969990965068], [2.298934974995007, 48.88970605635627], [2.299100515135557, 48.88978234248627], [2.299266022157087, 48.88985879456136], [2.299431564644057, 48.88993507933183], [2.299597072637141, 48.89001153093873], [2.299762614731073, 48.89008781523292], [2.299928123695708, 48.890164266371606], [2.300093668123865, 48.89024055020549], [2.300259178060058, 48.89031700087595], [2.300424722095074, 48.89039328423358], [2.300590233002926, 48.89046973443585], [2.300755779372281, 48.89054601733313], [2.300921289887849, 48.89062246705921], [2.301086837227807, 48.890698749488195], [2.301252350078784, 48.890775198754], [2.301417897025597, 48.890851480706715], [2.30158341084804, 48.89092792950432], [2.301748960117154, 48.89100421189594], [2.301914474923327, 48.891080659326015], [2.302080023799299, 48.891156941241384], [2.302245539576937, 48.89123338820324], [2.30228563100839, 48.89126301723763], [2.302294645975258, 48.89126057862671], [2.3023688270834892, 48.891201630012695], [2.302444577269087, 48.89114404487873], [2.302457994213878, 48.89114052212786], [2.302472473986093, 48.89112312444116], [2.302526029178598, 48.891082411755775], [2.302663175990323, 48.890980352582474], [2.302792480282577, 48.89088205623724], [2.302929624680659, 48.890779996732206], [2.303058929348039, 48.890681699189976], [2.303196072696138, 48.89057963936115], [2.303325374987283, 48.89048134240459], [2.303462518649154, 48.89037928225988], [2.303591819951682, 48.89028098409842], [2.3037289611998473, 48.89017892362203], [2.30385826285365, 48.89008062606206], [2.303918041629505, 48.890056648542476]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 70, "zemmour_eric": 92.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-36", "circ_bv": "04", "num_bureau": 36, "roussel_fabien": 11.0, "nb_emargement": 1140.0, "nb_procuration": 33.0, "nb_vote_blanc": 16.0, "jadot_yannick": 30.0, "le_pen_marine": 111.0, "nb_exprime": 1117.0, "nb_vote_nul": 7.0, "arr_bv": "17", "arthaud_nathalie": 4, "nb_inscrit": 1558.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1140, "quartier_bv": "66", "geo_point_2d": [48.88982945026461, 2.301369788882105], "melenchon_jean_luc": 474.0, "poutou_philippe": 1.0, "macron_emmanuel": 284.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.360399440208453, 48.822359383449275], [2.360424641039848, 48.82237255921982], [2.360626166421622, 48.82242343007354], [2.360821947739135, 48.82247258354675], [2.361017729414758, 48.82252173759659], [2.361219255951758, 48.82257260744399], [2.361415038388628, 48.82262175993968], [2.361616565699748, 48.822672629112986], [2.361812348886732, 48.822721780953806], [2.362013876961064, 48.82277265035238], [2.362209662260042, 48.8228218015456], [2.362411189757712, 48.82287266936347], [2.362508476146861, 48.82285422826709], [2.362507780221198, 48.82284519840562], [2.362539897612155, 48.82280573585762], [2.362634756665041, 48.822688798987095], [2.362727382859398, 48.82257498626159], [2.3628222410719, 48.822458049218284], [2.362914866447093, 48.82234423632421], [2.363009723819321, 48.822227299108214], [2.36310234837546, 48.82211348604556], [2.363197204907425, 48.821996548656784], [2.363289828644318, 48.82188273542556], [2.36338468433603, 48.82176579786411], [2.363477307242911, 48.821651985363594], [2.363572162094382, 48.821535047629446], [2.36366478555496, 48.8214212340683], [2.363759638204254, 48.82130429615417], [2.363852260845711, 48.82119048242445], [2.363947112654889, 48.82107354433759], [2.364039734477234, 48.82095973043931], [2.364134585446104, 48.82084279217978], [2.364227206449347, 48.820728978112946], [2.364322056578122, 48.82061203968068], [2.364414676751311, 48.820498226344625], [2.3645095260398, 48.82038128773968], [2.364569670259062, 48.820307379801655], [2.364581351717725, 48.82029398896275], [2.364505327111244, 48.820259252940225], [2.364331484549054, 48.82021005472084], [2.364160867298736, 48.82016198772658], [2.363987025385938, 48.82011278900219], [2.363816408771318, 48.82006472151228], [2.363645792471365, 48.820016653776925], [2.363471951528997, 48.81996745429735], [2.36330133586485, 48.81991938606633], [2.36312749557188, 48.819870186081715], [2.362956880543438, 48.81982211735509], [2.36278304089977, 48.81977291686544], [2.36261242514534, 48.81972484763592], [2.362438587501777, 48.819675647547825], [2.36226797239416, 48.81962757692333], [2.362094135399996, 48.819578376330234], [2.361923520928103, 48.81953030521009], [2.36174968458324, 48.819481104112015], [2.361731586020092, 48.81948617984015], [2.361661689825504, 48.819607811228984], [2.361591507953455, 48.81972749748024], [2.361521611108736, 48.819849128761135], [2.361451428579343, 48.81996881580379], [2.361441145167465, 48.81997441888613], [2.361295577659686, 48.819991754035144], [2.361150448592901, 48.820008534633516], [2.36100488089324, 48.820025869428086], [2.360859750276143, 48.82004264966593], [2.360855730107143, 48.820042729807376], [2.360639634315389, 48.820025803917545], [2.360421926789626, 48.820008598302024], [2.360205831280144, 48.81999167162772], [2.359988124039936, 48.81997446522184], [2.359772028812738, 48.819957537763095], [2.359554320496394, 48.81994033055961], [2.359539319019456, 48.819947596345415], [2.359507341861554, 48.820059755820886], [2.359477355321879, 48.82016574360367], [2.3594453792588252, 48.820277903048044], [2.359415392467849, 48.82038389079474], [2.359385405554865, 48.82048987852391], [2.35935342909525, 48.82060203791141], [2.3593541724751192, 48.82060704784034], [2.359429046980077, 48.82073039773328], [2.359504282770155, 48.82085585404655], [2.359579157976456, 48.820979204717496], [2.359654393124881, 48.82110466090129], [2.359729270405521, 48.821228011458246], [2.3598045062740303, 48.82135346751979], [2.359879384278129, 48.82147681705616], [2.359954620855893, 48.82160227389483], [2.360029498210465, 48.8217256233026], [2.360104736881427, 48.82185107912703], [2.360179614937392, 48.8219744293128], [2.360254854328471, 48.82209988501502], [2.36032973310791, 48.822223234180214], [2.36040497320829, 48.822348690659496], [2.360399440208453, 48.822359383449275]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 54, "zemmour_eric": 93.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "13-39", "circ_bv": "10", "num_bureau": 39, "roussel_fabien": 26.0, "nb_emargement": 1367.0, "nb_procuration": 53.0, "nb_vote_blanc": 20.0, "jadot_yannick": 73.0, "le_pen_marine": 88.0, "nb_exprime": 1340.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1854.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1367, "quartier_bv": "51", "geo_point_2d": [48.821080145642235, 2.361822010740181], "melenchon_jean_luc": 510.0, "poutou_philippe": 12.0, "macron_emmanuel": 420.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.263523092752335, 48.839540598515036], [2.263505922566354, 48.839539729231994], [2.263380938393838, 48.839574782603705], [2.263249642129054, 48.83960661678257], [2.263233209262846, 48.83960274359648], [2.263106062871265, 48.83946044662963], [2.26297732893766, 48.83932168415686], [2.262966584875255, 48.83931740529002], [2.262754401769974, 48.839308402694876], [2.262545263359449, 48.839300401509334], [2.262333080396163, 48.839291398166736], [2.262123942131278, 48.83928339534519], [2.261911759310002, 48.83927439125516], [2.261702621165209, 48.83926638859615], [2.261490438486054, 48.83925738375865], [2.26128130048694, 48.8392493794636], [2.2612455342855142, 48.83924837882372], [2.261238168627754, 48.83927270098046], [2.261227623677758, 48.83932205736867], [2.261217121012392, 48.839382847758976], [2.261218179465775, 48.839387476179915], [2.261292960040541, 48.83950014212357], [2.261375954124458, 48.83962568919266], [2.261450736757185, 48.839738354122765], [2.261533731600446, 48.839863901055615], [2.261608514903153, 48.839976566762374], [2.261691510505768, 48.84010211355895], [2.261766293141729, 48.84021477823536], [2.261849289503703, 48.8403403248957], [2.261924074172085, 48.8404529903571], [2.262007071293434, 48.84057853688121], [2.262081856644769, 48.84069120221996], [2.262128167792974, 48.84076125585129], [2.262125679565091, 48.84076637412393], [2.26214354162122, 48.8407867327843], [2.262178920821137, 48.84083430029031], [2.262215606296575, 48.84088979301923], [2.262216313343279, 48.840891148238], [2.262266665672343, 48.841019568136836], [2.262315787486365, 48.84114551253144], [2.262364908175334, 48.8412714568833], [2.262415262600276, 48.84139987668425], [2.2624643837694443, 48.841525820966574], [2.262514737322774, 48.84165424068798], [2.262563860334403, 48.84178018490915], [2.262614214365958, 48.84190860545872], [2.262640083250054, 48.84193465783358], [2.262660915787774, 48.84193174456525], [2.262787275140008, 48.84187359648982], [2.262944444699116, 48.841803189008665], [2.263119958633569, 48.84172241933357], [2.263277127287386, 48.84165201140586], [2.263452640210009, 48.84157124033241], [2.263609809320889, 48.84150083196645], [2.263618977252733, 48.84149933608593], [2.263797137905865, 48.841512518430605], [2.263962175506601, 48.8415254407902], [2.2641272118141202, 48.84153836381292], [2.264305372741892, 48.8415515445009], [2.264325697943018, 48.8415565620836], [2.264349165243431, 48.84154555148948], [2.264534220329835, 48.84148199933365], [2.264711380554272, 48.84142017192601], [2.264888538995949, 48.84135834424423], [2.265073594122441, 48.84129479125172], [2.265250751708272, 48.84123296302659], [2.265435804598161, 48.841169408559], [2.265450587095406, 48.84117035463466], [2.265597970450028, 48.841247903151675], [2.265747087124808, 48.8413244071546], [2.265894471343536, 48.841401956194886], [2.266043588894171, 48.841478459817715], [2.266190974002344, 48.8415560075827], [2.26634009242904, 48.841632510825356], [2.266487478401336, 48.84171005911366], [2.266636597703895, 48.84178656197616], [2.266783985928099, 48.84186410899751], [2.266933104744261, 48.841940611471465], [2.266953370298711, 48.84193788554873], [2.267021472886071, 48.84185714895999], [2.267074808477804, 48.84179487589026], [2.267071577492461, 48.841783565383295], [2.266935341062081, 48.84170934907184], [2.266800528969011, 48.84163696705259], [2.266664294670237, 48.84156275043103], [2.266529483332767, 48.84149036809681], [2.266524665148307, 48.84148496120972], [2.266509015450503, 48.84142993071583], [2.266487203653404, 48.841348713191024], [2.266494356979502, 48.841342713273555], [2.266479098398464, 48.84132098711523], [2.266469562914207, 48.84128548529084], [2.266434581660791, 48.84115532679807], [2.2664032360505733, 48.84103860830984], [2.266368253765944, 48.84090844976055], [2.266336908465389, 48.84079173032982], [2.266305561930129, 48.84067501176963], [2.266270581495979, 48.84054485315776], [2.266257206539164, 48.84053743043895], [2.266072385219281, 48.840537069196365], [2.265891037455693, 48.840536770356195], [2.265706216140691, 48.840536408547884], [2.265524868381504, 48.84053610915265], [2.265340047071393, 48.8405357467786], [2.265158699316614, 48.84053544682825], [2.265149567952033, 48.840533108125655], [2.265013332082433, 48.84045135276389], [2.264854393996126, 48.84035455151446], [2.264718157693811, 48.840272795795094], [2.264559220687603, 48.840175995037306], [2.264422986677311, 48.84009423897706], [2.264264050776469, 48.83999743691233], [2.264127816333461, 48.83991568049453], [2.263968881512594, 48.839818878921434], [2.263832649361689, 48.83973712216276], [2.263673715646183, 48.83964031928272], [2.2635374830626622, 48.839558562166516], [2.263523092752335, 48.839540598515036]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 149, "zemmour_eric": 152.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-41", "circ_bv": "14", "num_bureau": 41, "roussel_fabien": 8.0, "nb_emargement": 1227.0, "nb_procuration": 63.0, "nb_vote_blanc": 18.0, "jadot_yannick": 58.0, "le_pen_marine": 98.0, "nb_exprime": 1206.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1602.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "61", "geo_point_2d": [48.84059388216799, 2.2636733249744383], "melenchon_jean_luc": 183.0, "poutou_philippe": 5.0, "macron_emmanuel": 515.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389384119579635, 48.872851357643576], [2.389386315993849, 48.87285123664563], [2.389425719064728, 48.872867213767336], [2.389428860111511, 48.872868968202916], [2.3894756340693633, 48.87288408177167], [2.389610306454306, 48.872986072315406], [2.389735458181628, 48.87308767061184], [2.389870131601706, 48.87318966084443], [2.389995284314466, 48.873291259749756], [2.390016051243928, 48.87330125555449], [2.390021476652025, 48.873319483026805], [2.390038949817166, 48.87331130808366], [2.390066605383817, 48.873314939319364], [2.390079512053758, 48.873312053468844], [2.390123517237898, 48.87327899332337], [2.39013799090393, 48.873268146450066], [2.390144141001651, 48.87326081313589], [2.390092820545733, 48.873231190195426], [2.390003892750908, 48.87315527391915], [2.389920177010849, 48.8730838079601], [2.389836462874241, 48.87301234104558], [2.389747535826688, 48.87293642456379], [2.389748440391763, 48.87292473153157], [2.389879904679773, 48.87283346181161], [2.390011353395236, 48.872742201755415], [2.390142816761875, 48.87265093173159], [2.390274265919358, 48.872559671378546], [2.390405728364629, 48.8724684010509], [2.390537176600846, 48.87237714039406], [2.3906686381247573, 48.872285869762635], [2.3908000854397162, 48.87219460880195], [2.390931546042273, 48.87210333786669], [2.391062992435978, 48.87201207660224], [2.391194452117189, 48.871920805363175], [2.391325897589649, 48.87182954379494], [2.39145735634952, 48.87173827225203], [2.391588800900842, 48.87164701038004], [2.391589803559166, 48.87163540235863], [2.391522927845787, 48.8715768862102], [2.391432988997873, 48.87149818859037], [2.39140631245105, 48.871495551906705], [2.391395856467472, 48.871502497372745], [2.39121220267802, 48.87154333667982], [2.391040065681365, 48.87158442855333], [2.390856409960933, 48.871625267304545], [2.390684272412848, 48.871666358663326], [2.390512133240536, 48.87170744886686], [2.390328478025088, 48.87174828770976], [2.390311604996339, 48.8717433264704], [2.39027543211678, 48.87168799227005], [2.390239539261965, 48.871633083968476], [2.390223109083981, 48.87162802964227], [2.389997784461274, 48.871672557015025], [2.389775389204195, 48.87171650443698], [2.389550065189746, 48.87176103007102], [2.389327669177189, 48.871804976657685], [2.389316739109578, 48.87180407192209], [2.389174475786842, 48.87174772752934], [2.389040037346827, 48.871694480643676], [2.389035483059113, 48.87169152646315], [2.388947395668616, 48.87159824919183], [2.388836071406584, 48.87148668392358], [2.388747983356433, 48.87139340648124], [2.3886366599591913, 48.87128184100686], [2.388548573975687, 48.87118856340742], [2.388437251443425, 48.87107699772692], [2.3883694063225662, 48.871023378892545], [2.388362372795567, 48.871019800467025], [2.388176888797605, 48.870978573949465], [2.387992439861913, 48.87093757726781], [2.387806956449526, 48.870896350173965], [2.387622506732901, 48.87085535291223], [2.387437023916669, 48.870814124342786], [2.3872525761455, 48.87077312651493], [2.387067093904381, 48.87073189826847], [2.386882646715533, 48.87069089986752], [2.386698198464484, 48.870649900274564], [2.3865127171008362, 48.87060867116445], [2.386328270784766, 48.8705676719047], [2.386142790006715, 48.870526442218285], [2.386137605305827, 48.87052598844355], [2.385928390685003, 48.870534422186445], [2.38572067223475, 48.87054348918078], [2.385511457465526, 48.87055192309412], [2.385303738872916, 48.87056098936474], [2.3850960202078992, 48.87057005527485], [2.384886805230846, 48.870578488096164], [2.384679086423589, 48.87058755328262], [2.384469871308765, 48.87059598537509], [2.38444273502644, 48.87059886399937], [2.384444371561211, 48.87061773420743], [2.384370553928775, 48.87072910885509], [2.384283698023102, 48.870860151423656], [2.384209879703486, 48.87097152594782], [2.384123024342, 48.8711025692773], [2.384049203982783, 48.871213942771654], [2.383962347812762, 48.87134498595577], [2.383888528129701, 48.87145635933361], [2.383801669788081, 48.87158740236541], [2.383727849417919, 48.87169877561969], [2.383640991631, 48.87182981851312], [2.383567169199818, 48.87194119253615], [2.383556408234588, 48.871946509750586], [2.38339807535272, 48.871959869571434], [2.383238511453293, 48.87197333165983], [2.383226993998446, 48.871980128850936], [2.383223741523989, 48.871988957959225], [2.383217775706928, 48.87200264928505], [2.383206611526167, 48.87200943120703], [2.383209257991722, 48.87202080885129], [2.383153765927999, 48.87214816921969], [2.383099689024339, 48.872272282146795], [2.383044196424701, 48.87239964243538], [2.382990118988235, 48.872523756184016], [2.382936041304713, 48.87264786899496], [2.382880549257435, 48.87277523007068], [2.38282646968856, 48.872899342796856], [2.38277097711611, 48.87302670289346], [2.382716898377597, 48.873150816448174], [2.382661403906012, 48.87327817645795], [2.382645127476992, 48.87328443822125], [2.382442232598312, 48.87325239605837], [2.382244800271473, 48.873221216323266], [2.38223935021744, 48.873220355412506], [2.382223075215047, 48.87322660903226], [2.382208385831459, 48.873260216909806], [2.382197302238845, 48.87328557311125], [2.382165991034877, 48.873308806802164], [2.382163435039785, 48.873322917663415], [2.382206729376523, 48.87333056062931], [2.382392776064573, 48.87336270781917], [2.382587426483404, 48.87339571928846], [2.382773473639146, 48.87342786588472], [2.382894335990171, 48.87344836252853], [2.382905280381395, 48.873454637849164], [2.38292119397157, 48.87345771467082], [2.38299498391781, 48.87347022796641], [2.383111344949194, 48.87348666677218], [2.383143992590217, 48.87348007022246], [2.383150908407476, 48.873442932762806], [2.383279542738661, 48.87334535494609], [2.383402629876254, 48.87325231523305], [2.383531263254484, 48.87315473802828], [2.383654349492104, 48.87306169804039], [2.383782981938675, 48.872964119648984], [2.383906068639416, 48.8728710793932], [2.384034700143688, 48.872773500714466], [2.384157784581172, 48.87268046017677], [2.384158478450069, 48.87267988997078], [2.38426594461602, 48.872583910874084], [2.384372997459245, 48.87248803297244], [2.384480461460177, 48.87239205455874], [2.384587513524862, 48.872296175549344], [2.384694978097975, 48.8722001969334], [2.384802027999597, 48.872104318607725], [2.38490949179224, 48.872008338883255], [2.38501654226788, 48.871912460356064], [2.38501752218852, 48.871911678471896], [2.385117959447097, 48.8718402269049], [2.3852883244325582, 48.87174240162647], [2.38538875964072, 48.87167094891505], [2.38539044438838, 48.87166993592007], [2.385560808305137, 48.87157211023873], [2.385743731607351, 48.871479272626296], [2.3857613026325932, 48.87147979897259], [2.385795959553713, 48.87147690288164], [2.385878108054035, 48.8715270414737], [2.386023987004154, 48.87159332084316], [2.386196243744045, 48.871671178444394], [2.386342124855304, 48.871737458323814], [2.386514382547277, 48.87181531545703], [2.386660264477714, 48.8718815940408], [2.386832523111284, 48.871959451605335], [2.386978404486934, 48.87202572978571], [2.387150665446549, 48.872103585989976], [2.387296547619999, 48.87216986467327], [2.387298068875329, 48.8721704633234], [2.387485345724195, 48.87223343544914], [2.3876828914283132, 48.87230013988572], [2.387685448131398, 48.87230079778767], [2.387837371013082, 48.872328688895806], [2.387992974109771, 48.872356081508244], [2.388144897317264, 48.87238397222468], [2.388300500751486, 48.87241136353675], [2.388304124711646, 48.872412391110004], [2.388476911175917, 48.87248257402189], [2.388665284696911, 48.87255895715812], [2.388838072144647, 48.872629138640086], [2.3890264467252003, 48.87270552119784], [2.389199235135197, 48.87277570304842], [2.38934820772767, 48.87283610789322], [2.389384119579635, 48.872851357643576]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 29, "zemmour_eric": 44.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-74", "circ_bv": "06", "num_bureau": 74, "roussel_fabien": 36.0, "nb_emargement": 1328.0, "nb_procuration": 88.0, "nb_vote_blanc": 6.0, "jadot_yannick": 142.0, "le_pen_marine": 41.0, "nb_exprime": 1319.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1705.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1328, "quartier_bv": "77", "geo_point_2d": [48.87178900365225, 2.3867042573768584], "melenchon_jean_luc": 700.0, "poutou_philippe": 14.0, "macron_emmanuel": 252.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.382860348206879, 48.8900724199966], [2.382821299480796, 48.890052541591665], [2.382661485655866, 48.88997403710612], [2.382499363747915, 48.88989262827939], [2.382339550899172, 48.88981412335273], [2.382177431356186, 48.88973271408534], [2.382017618119892, 48.889654208710574], [2.381855499578127, 48.88957279899543], [2.381695687318017, 48.88949429317958], [2.381533569788153, 48.88941288211745], [2.381373758493541, 48.88933437675977], [2.381211641964895, 48.88925296524993], [2.381211609417873, 48.88925294979327], [2.381051800473937, 48.88917444310224], [2.3809049108131672, 48.889101120129894], [2.380758021576878, 48.889027796073194], [2.380598214007831, 48.88894928876073], [2.380451324267918, 48.88887596431062], [2.380291517616556, 48.88879745747721], [2.380144630100641, 48.88872413264782], [2.37998482438826, 48.888645624494956], [2.379837936358114, 48.888572300171376], [2.379678131574212, 48.888493791598385], [2.37953124577866, 48.888420465996276], [2.379371441912313, 48.88834195790238], [2.379224555613239, 48.88826863190682], [2.3791175290166873, 48.888216051154586], [2.379093156450539, 48.888194968748365], [2.37905924590904, 48.888197207581214], [2.379006469615832, 48.88817127979327], [2.378850250467033, 48.88809295054806], [2.378690448643376, 48.888014440622676], [2.378534229076799, 48.88793611094688], [2.378374428200201, 48.88785760148779], [2.378218210943111, 48.8877792713956], [2.378058411035036, 48.887700760604275], [2.377902194723947, 48.887622430088626], [2.377742394399235, 48.88754391975653], [2.377586179034043, 48.88746558881741], [2.377426381041536, 48.8873870771602], [2.377270166622134, 48.88730874579757], [2.377110368223738, 48.8872302337003], [2.376954154739569, 48.887151902813535], [2.376794358662615, 48.887073390290396], [2.376638146135091, 48.886995058080885], [2.376478349652249, 48.88691654511773], [2.376322138070506, 48.88683821248478], [2.376198978642075, 48.88677769928453], [2.376162978727478, 48.886759186191064], [2.376162407613483, 48.88675916253102], [2.376125772895411, 48.886741163230056], [2.375965979327881, 48.886662649572095], [2.375801375003357, 48.88658197921408], [2.375641581038987, 48.88650346600396], [2.375476977720193, 48.88642279518834], [2.375317184744196, 48.88634428063465], [2.37515258242034, 48.88626361026063], [2.37499279178557, 48.886185095269816], [2.374828189114588, 48.886104423531755], [2.3746683994466, 48.88602590899593], [2.374503797781342, 48.88594523680024], [2.374344009101729, 48.88586672092086], [2.374179409805721, 48.885786048274696], [2.374019620729344, 48.88570753284315], [2.373855022439048, 48.885626859739354], [2.373695235714576, 48.88554834297139], [2.373530637066469, 48.885467669402885], [2.373476324905951, 48.885440981010504], [2.373460833505177, 48.88542624363534], [2.3734318817285462, 48.88542256947187], [2.373326408223788, 48.88537074061201], [2.373169673622096, 48.885293017007804], [2.373009888955353, 48.88521449930139], [2.372908125418829, 48.88516403487837], [2.37288831043394, 48.885160022624525], [2.372855024826832, 48.8851910180205], [2.37273997347552, 48.88529658525742], [2.3726199728814, 48.8854048666885], [2.372504919206753, 48.88551043457114], [2.372384918994595, 48.88561871575273], [2.372269864381791, 48.8857242824897], [2.372149861824544, 48.88583256340748], [2.372143781259894, 48.88584974281413], [2.372155429058121, 48.88586033409512], [2.37232668200067, 48.885929893677854], [2.372488315043146, 48.885994090277016], [2.372659570233875, 48.886063649382294], [2.372821204101902, 48.88612784552425], [2.372982838368555, 48.88619204144426], [2.373154094870861, 48.88626159982976], [2.373315729962965, 48.88632579529256], [2.373486985986175, 48.886395353186316], [2.373648623267477, 48.88645954819904], [2.373819880175335, 48.886529105608204], [2.373872456564014, 48.88654998588837], [2.373896161070847, 48.88656843448615], [2.373932382855734, 48.88656331247657], [2.37404144465157, 48.88660662669687], [2.374157330100477, 48.88665078137771], [2.374318967637472, 48.88671497546352], [2.374434854926479, 48.88675912987853], [2.374438292683583, 48.886761074192634], [2.374528405095133, 48.88683174802879], [2.374628428994513, 48.88691084806818], [2.374641748393077, 48.88693356442167], [2.374658031820159, 48.886935559631546], [2.374844104931062, 48.887024836851374], [2.37501898556014, 48.8871048813443], [2.3751938667377512, 48.88718492467673], [2.375379941658394, 48.8872742010436], [2.3753846484614742, 48.887278246475134], [2.375469275110593, 48.88742341881748], [2.375548720162896, 48.8875735831815], [2.375556022814623, 48.88757882835095], [2.3757248002800893, 48.88762866851645], [2.375893430091579, 48.88767765601097], [2.376062206825857, 48.88772749658856], [2.37623083727491, 48.887776483603496], [2.376399616026909, 48.88782632280888], [2.376568247113322, 48.8878753093442], [2.3767370251448963, 48.88792514806239], [2.376905656868865, 48.88797413411816], [2.376909037173538, 48.88797553756594], [2.37706915362917, 48.888064677926714], [2.377230769603917, 48.88815608136498], [2.377390887176229, 48.888245220381584], [2.377552504276187, 48.88833662337059], [2.377712622954426, 48.888425761942315], [2.377874241179498, 48.88851716448203], [2.378034360952927, 48.88860630350814], [2.378195980313863, 48.88869770469928], [2.378218025916038, 48.888724746697875], [2.3782568423200092, 48.88871611151318], [2.378363505297615, 48.88873804940316], [2.378404940191792, 48.88875088560172], [2.378412297459607, 48.88876438845238], [2.378270210329669, 48.888907849941795], [2.378135969961884, 48.88903803393505], [2.378139293143264, 48.88905039529253], [2.3782941120958663, 48.889123702597296], [2.378450162579687, 48.88919692885309], [2.37845360782658, 48.8892092395719], [2.3783515713054832, 48.889310315298175], [2.378249486293376, 48.8894123349666], [2.378147448978066, 48.889513410500236], [2.378045363178594, 48.88961542907654], [2.378047258899468, 48.88962684232486], [2.37820685078982, 48.889728747739376], [2.378354780629936, 48.889825583163145], [2.37851437373117, 48.88992748814934], [2.378662304707814, 48.890024323175695], [2.378810237598425, 48.890121158017784], [2.378969832496968, 48.89022306236952], [2.378985166405617, 48.89022472560057], [2.379166371318836, 48.89016800254934], [2.37934563347658, 48.89011004607623], [2.379526836223567, 48.890053323365784], [2.379706097585278, 48.889995366346966], [2.379887299551108, 48.889938642185896], [2.3800665601168842, 48.88988068462141], [2.380081329580111, 48.889881869948944], [2.380152543157712, 48.88992127006013], [2.380185271072998, 48.8899414799515], [2.380189617925365, 48.889950839207], [2.380135464118176, 48.89007582536037], [2.380080363359106, 48.89020357828201], [2.380026209026808, 48.89032856435721], [2.379971106368472, 48.89045631719207], [2.379916952885417, 48.89058130229686], [2.379861849691655, 48.89070905505207], [2.379807695672774, 48.89083404097791], [2.379752591943375, 48.890961793653354], [2.379698436035701, 48.89108677949395], [2.379643333134528, 48.891214532096775], [2.379589176701714, 48.89133951785918], [2.379534071901217, 48.891467270375216], [2.379479916317753, 48.89159225516719], [2.379424810981699, 48.89172000760351], [2.379370654862371, 48.891844993216566], [2.379315548990751, 48.89197274557315], [2.379261390982472, 48.89209773110092], [2.379206285939074, 48.89222548338487], [2.379233849580896, 48.89225064714775], [2.379270832514407, 48.892248203852986], [2.379327741662482, 48.892217940853556], [2.379482764467744, 48.89213591512096], [2.379636711535818, 48.892054048186615], [2.379791733377083, 48.891972021142536], [2.379945679474776, 48.89189015379877], [2.380100700330623, 48.8918081272417], [2.380254644094259, 48.891726259481445], [2.380409665339192, 48.891644232519205], [2.38056360814306, 48.89156236345024], [2.38071862841329, 48.891480336075816], [2.380872570236097, 48.89139846749672], [2.381027589531632, 48.89131643971001], [2.381181530394771, 48.89123456982223], [2.381336548715614, 48.89115254162333], [2.381490488597812, 48.891070672225396], [2.38164550594397, 48.89098864361429], [2.381799444866396, 48.89090677290773], [2.3819544598741063, 48.89082474387736], [2.382108399179274, 48.89074287366767], [2.382110652529116, 48.89074135285282], [2.382234368780328, 48.89063341799055], [2.382353191511045, 48.89053143104002], [2.382472012412538, 48.890429443955036], [2.382595728537336, 48.89032150869577], [2.382689523701101, 48.89023967652794], [2.382808344641798, 48.89013768908919], [2.38283826360801, 48.890111585820165], [2.382861158111063, 48.890108336759646], [2.382851421078227, 48.89008804105964], [2.382860348206879, 48.8900724199966]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 55, "zemmour_eric": 97.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-66", "circ_bv": "17", "num_bureau": 66, "roussel_fabien": 21.0, "nb_emargement": 1188.0, "nb_procuration": 54.0, "nb_vote_blanc": 6.0, "jadot_yannick": 109.0, "le_pen_marine": 68.0, "nb_exprime": 1178.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1628.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "73", "geo_point_2d": [48.88873729910682, 2.3783369479704555], "melenchon_jean_luc": 511.0, "poutou_philippe": 10.0, "macron_emmanuel": 261.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.379401365660513, 48.854852777389134], [2.37938753036236, 48.854854436881276], [2.379322091116221, 48.85493307838184], [2.379236890890629, 48.85503359474289], [2.379138834979353, 48.855151431464776], [2.379053635395323, 48.855251948581966], [2.378955578658708, 48.8553697851305], [2.378870377001287, 48.85547030209039], [2.37877231943932, 48.85558813846559], [2.378687117082051, 48.85568865437592], [2.378686213951514, 48.855689986119906], [2.378671654409403, 48.85571635769094], [2.378700595426117, 48.8557239230985], [2.378770234450359, 48.85584428844598], [2.378836481721617, 48.85595983450585], [2.378906122737813, 48.85608019975578], [2.378972369247498, 48.85619574570881], [2.379042010893011, 48.85631611085406], [2.379108259366737, 48.85643165671441], [2.379177900267896, 48.85655202264721], [2.379244149343019, 48.85666756840774], [2.37924424553936, 48.856667730789546], [2.3793068853634862, 48.85677073345071], [2.379387681429447, 48.85690380102122], [2.379450323173097, 48.8570068044918], [2.379531119971447, 48.85713987193716], [2.379593760919692, 48.85724287530368], [2.379621650504175, 48.85728880570919], [2.379640571111937, 48.857310538516394], [2.379664795630837, 48.85730439744097], [2.37981806553078, 48.85734861061718], [2.379965600519689, 48.85739040880806], [2.380118870927896, 48.85743462159557], [2.38026640503877, 48.857476419405295], [2.380283862785762, 48.85747231795614], [2.380370324694736, 48.857363061434214], [2.38045542857804, 48.857254392279074], [2.380541889776219, 48.8571451347125], [2.380626994308634, 48.857036465421004], [2.380713454774844, 48.85692720860832], [2.380798557230518, 48.85681853916645], [2.3808850169860483, 48.85670928130905], [2.380970118728071, 48.85660061172383], [2.381056577762136, 48.85649135372105], [2.3811416787904163, 48.85638268399252], [2.381148231150953, 48.85637860066108], [2.3812277892443943, 48.85635516495383], [2.381299392036841, 48.856334472445184], [2.38130661438192, 48.856329517502765], [2.381380324955917, 48.85620544580843], [2.3814522744067173, 48.856084234775516], [2.381525984286985, 48.85596016296406], [2.381597933070918, 48.85583895091749], [2.3816716422466913, 48.855714879888225], [2.381743590353091, 48.8555936677273], [2.38181553676191, 48.85547245550281], [2.381889246263929, 48.85534838430564], [2.381962770216823, 48.85522407016757], [2.382036479016791, 48.855099998851934], [2.382110002267939, 48.85497568459561], [2.382183710376734, 48.85485161226227], [2.382257232926143, 48.854727297887685], [2.382330938959531, 48.854603226328145], [2.382404462170027, 48.854478911842364], [2.382478167501502, 48.8543548401644], [2.382551690010275, 48.85423052556036], [2.382625394650501, 48.8541064528647], [2.382639557131637, 48.85407669268408], [2.382619993039202, 48.85407015509122], [2.382475001548404, 48.85403756449907], [2.38231922530563, 48.85400284235634], [2.382288726573597, 48.8539868041819], [2.382269273752687, 48.85399008531503], [2.382113497778381, 48.8539553638023], [2.381992466189335, 48.85393412833205], [2.381982419215921, 48.853934931722605], [2.381800804393029, 48.85400056078314], [2.381616849176111, 48.85406710020506], [2.381435233432124, 48.854132728702915], [2.381251278644594, 48.85419926756193], [2.381069660616709, 48.85426489549012], [2.380885704895766, 48.854331433779215], [2.380704087320283, 48.85439706025248], [2.380520129292429, 48.85446359886387], [2.380338510795862, 48.854529224774474], [2.380154551834687, 48.85459576281593], [2.379972932417035, 48.85466138816385], [2.379788973885156, 48.854727925642436], [2.379607352183602, 48.854793550420645], [2.379423392718306, 48.85486008732929], [2.379401365660513, 48.854852777389134]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 61, "zemmour_eric": 70.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-4", "circ_bv": "07", "num_bureau": 4, "roussel_fabien": 33.0, "nb_emargement": 1407.0, "nb_procuration": 79.0, "nb_vote_blanc": 9.0, "jadot_yannick": 134.0, "le_pen_marine": 51.0, "nb_exprime": 1391.0, "nb_vote_nul": 7.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1739.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1407, "quartier_bv": "43", "geo_point_2d": [48.85558865592423, 2.3805269904678705], "melenchon_jean_luc": 459.0, "poutou_philippe": 11.0, "macron_emmanuel": 521.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.306029456786891, 48.848003000259574], [2.306098769646218, 48.84805234199855], [2.3062149703420323, 48.84814953097636], [2.306334127361533, 48.848250496305425], [2.306450330312725, 48.848347684146], [2.306569488241296, 48.84844864922267], [2.306685692073167, 48.84854583681734], [2.306804850910917, 48.84864680164164], [2.306921055611617, 48.848743989889705], [2.307040215370413, 48.84884495356239], [2.307156420951913, 48.848942141564564], [2.307275581607745, 48.849043105884114], [2.307391788082109, 48.8491402927411], [2.307510949647043, 48.849241256808305], [2.307627155627605, 48.849338444310796], [2.307746319476264, 48.84943940723421], [2.307862526337543, 48.84953659449077], [2.307981691083484, 48.84963755806107], [2.307997999332544, 48.84963918849467], [2.308036353466648, 48.84961460504362], [2.3081706167143112, 48.84952752019382], [2.308312463780305, 48.84943628621101], [2.308446726107131, 48.8493492010374], [2.308588572204358, 48.84925796671265], [2.308722833610457, 48.84917088121523], [2.308864677376262, 48.849079646540666], [2.30899893923602, 48.84899255982808], [2.309140782033074, 48.84890132481157], [2.309275042960083, 48.848814238674485], [2.309416884788393, 48.84872300331602], [2.309551144794587, 48.84863591685514], [2.30969298565416, 48.84854468115476], [2.309827244739544, 48.84845759437013], [2.309969084642396, 48.848366357428525], [2.310103341444337, 48.84827927031226], [2.310245181729091, 48.84818803393592], [2.31037943761024, 48.84810094649586], [2.310521276926273, 48.84800970977757], [2.310520979557785, 48.84800798128857], [2.310461291570346, 48.847976246859986], [2.310287723491704, 48.84793584623127], [2.31009746198132, 48.8478903369409], [2.309923895833391, 48.84784993578911], [2.309733634954378, 48.84780442591666], [2.309560068012111, 48.84776402422604], [2.309369809126999, 48.8477185137794], [2.309196242752927, 48.8476781115579], [2.309005983136672, 48.84763260052129], [2.308832418681392, 48.847592198676], [2.308642159696521, 48.847546687057324], [2.308468594458848, 48.847506283773974], [2.308278336105369, 48.84746077157322], [2.30810477279842, 48.84742036776685], [2.3081033174717, 48.84741995463718], [2.307908555222338, 48.8473556236061], [2.307728330680776, 48.847285957710376], [2.307533568044421, 48.847221625153956], [2.307353344467437, 48.847151958685], [2.307337112292256, 48.84715317418068], [2.30718568892252, 48.84724735828411], [2.307034331387516, 48.84734946236314], [2.306882906900241, 48.847443646066694], [2.306731549552584, 48.847545750651896], [2.306580123947759, 48.847639933955676], [2.306428764086128, 48.847742037232635], [2.306277337351777, 48.8478362210359], [2.306125976326817, 48.84793832391178], [2.306046393027021, 48.847987821923226], [2.306029456786891, 48.848003000259574]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 169, "zemmour_eric": 144.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "7-13", "circ_bv": "12", "num_bureau": 13, "roussel_fabien": 7.0, "nb_emargement": 1028.0, "nb_procuration": 75.0, "nb_vote_blanc": 9.0, "jadot_yannick": 51.0, "le_pen_marine": 53.0, "nb_exprime": 1017.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1225.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1028, "quartier_bv": "27", "geo_point_2d": [48.84827825467043, 2.3081037660641712], "melenchon_jean_luc": 63.0, "poutou_philippe": 1.0, "macron_emmanuel": 498.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.290144113937229, 48.8343640504605], [2.290154207143567, 48.834294458248685], [2.290162279794304, 48.83423878356488], [2.2901709195432423, 48.83417697850368], [2.290178993507956, 48.8341213047203], [2.29018908527071, 48.83405171158307], [2.290197159196622, 48.83399603779221], [2.290205797501812, 48.833934232707016], [2.290213871403923, 48.833878558009886], [2.290223963060876, 48.833808965753924], [2.290232036924185, 48.83375329104935], [2.29024067650995, 48.83369148595627], [2.290248750324968, 48.833635812144045], [2.290249920317978, 48.83363292939255], [2.290251775481732, 48.83363025306642], [2.290254313116434, 48.833627781350856], [2.290325184275452, 48.83357878388044], [2.290396056675734, 48.83352978547469], [2.290466927568192, 48.833480787916], [2.290535475254797, 48.83343411401137], [2.290545835082527, 48.83342706049958], [2.290534633587472, 48.83341998162225], [2.290476495223373, 48.83337339533507], [2.290418356950844, 48.833326809917025], [2.290360218782328, 48.83328022446875], [2.290304107150643, 48.833234892153484], [2.290247996978688, 48.83318955981809], [2.290189859115487, 48.833142974281316], [2.290131721356196, 48.83309638871433], [2.290073583700714, 48.833049803117156], [2.290017472566314, 48.83300447065805], [2.2899593364776782, 48.83295788500963], [2.289901199130818, 48.83291129932287], [2.289843061887865, 48.832864713605986], [2.289840725954959, 48.832861980921265], [2.289839954836574, 48.83285888428657], [2.289840841466025, 48.832855801991755], [2.289840949131663, 48.83284999895492], [2.289843387608178, 48.83284730451176], [2.289902448509165, 48.832802281632894], [2.28996643069431, 48.832753506960415], [2.290025492744987, 48.83270848402511], [2.290089335025658, 48.83265996207788], [2.290148396864201, 48.83261493907812], [2.290212378589188, 48.83256616426591], [2.290271440202948, 48.83252114210096], [2.290335282025259, 48.83247262001431], [2.290394343439131, 48.83242759688558], [2.290458324704169, 48.83237882193366], [2.290517385893262, 48.83233379963973], [2.290581227257217, 48.83228527741369], [2.290640286884206, 48.83224025414792], [2.290704269051309, 48.83219147906432], [2.290763328465864, 48.83214645573401], [2.290827170733579, 48.83209793337667], [2.290886229936008, 48.83205290998196], [2.290950211643062, 48.83200413475862], [2.291009270620624, 48.831959112198646], [2.291073112430089, 48.83191058970191], [2.29113217120776, 48.83186556617822], [2.2911961524547673, 48.83181679081517], [2.29125521102001, 48.83177176722693], [2.291314270833114, 48.831726744515116], [2.291378110711916, 48.83167822183741], [2.291378980559435, 48.83167315900054], [2.291347449110547, 48.83163407051409], [2.291305805710278, 48.83158273823576], [2.291257756658331, 48.83152351012122], [2.291216114784667, 48.83147217871401], [2.291184582229494, 48.831433089270206], [2.29114294050011, 48.831381757833356], [2.2911291577499, 48.831364767847376], [2.291125184955413, 48.831356380989334], [2.291122163317581, 48.831355586917205], [2.288872389234268, 48.82858233975855], [2.288857842658578, 48.82857361921342], [2.288846890640666, 48.82857520714926], [2.288806120183159, 48.828592150956645], [2.288732263395977, 48.82862284466329], [2.288699185297165, 48.82863659101881], [2.288625336605792, 48.82866728110964], [2.2885514796058413, 48.82869797470261], [2.288477630740565, 48.82872866470057], [2.28840377356659, 48.828759358200635], [2.288329924527512, 48.82879004810565], [2.2882560671796153, 48.82882074151287], [2.288182217966533, 48.828851431325006], [2.288108360444816, 48.82888212463934], [2.288034511057831, 48.828912814358596], [2.287960653374473, 48.82894350668067], [2.287886803801303, 48.82897419720638], [2.287812945944024, 48.82900488943558], [2.287739096209235, 48.82903557896905], [2.287665238165649, 48.82906627200465], [2.287591388257058, 48.82909696144528], [2.287517530039549, 48.82912765438797], [2.287443679956953, 48.82915834373573], [2.287369821565623, 48.82918903658551], [2.287295971309124, 48.82921972584033], [2.287222112743869, 48.82925041859727], [2.287148260951329, 48.82928110775107], [2.28707440357429, 48.82931180042323], [2.287000551607844, 48.829342489484155], [2.286926694069084, 48.82937318116408], [2.286852841916532, 48.82940387103144], [2.286778984203852, 48.82943456261848], [2.286705131877394, 48.82946525239295], [2.2866312739907952, 48.829495943887075], [2.286557421502634, 48.82952663266934], [2.286483562067764, 48.82955732496173], [2.286409710767844, 48.82958801365926], [2.28633585115905, 48.82961870585876], [2.286261999685226, 48.82964939446336], [2.286188139902507, 48.829680086569994], [2.286114288254779, 48.829710775081715], [2.286040428298036, 48.82974146709542], [2.285966576476505, 48.82977215551424], [2.2858927163458382, 48.829802847435076], [2.285818864350301, 48.829833535761004], [2.285745004058132, 48.82986422668961], [2.28567115187637, 48.829894915821974], [2.28559729141028, 48.829925606657675], [2.285523439066936, 48.82995629479782], [2.2854495784146, 48.82998698643991], [2.28537572589735, 48.83001767448717], [2.285301865070987, 48.83004836603637], [2.2852280123799362, 48.83007905399074], [2.285154151379648, 48.83010974544704], [2.285080298514589, 48.83014043330853], [2.28500643734048, 48.83017112467193], [2.284932584301516, 48.83020181244049], [2.284858722953481, 48.830232503711], [2.284784868378449, 48.830263191378556], [2.284711008230992, 48.83029388166498], [2.284710713704607, 48.83029400131962], [2.2846368262093693, 48.830323005060755], [2.28456296740969, 48.83035199633635], [2.284489079750056, 48.83038099998469], [2.284415222148215, 48.83040999117566], [2.284341334324086, 48.830438994731225], [2.284267475183402, 48.83046798672062], [2.284193587207325, 48.8304969892841], [2.28411972790231, 48.83052598118074], [2.284045839749488, 48.8305549845508], [2.283971981654666, 48.83058397546353], [2.283898093337347, 48.830612978740774], [2.28382423370367, 48.83064197045196], [2.2837503452344112, 48.830670972737096], [2.283676485436402, 48.830699964355546], [2.283602598164926, 48.830728966556094], [2.283528738202587, 48.8307579580818], [2.283454878158098, 48.83078694956109], [2.28338098927777, 48.83081595161435], [2.283307130431128, 48.83084494300909], [2.283233241374143, 48.83087394586884], [2.2831593810133572, 48.83090293626336], [2.283085491791977, 48.830931939030336], [2.283011631266861, 48.8309609293321], [2.282937741880984, 48.83098993200631], [2.282863882541351, 48.831018923122855], [2.282789993003552, 48.83104792480495], [2.282716132137403, 48.83107691582056], [2.282642242422836, 48.83110591830922], [2.282568382766816, 48.83113490834093], [2.282494492887853, 48.8311639107368], [2.28242063170542, 48.83119290066763], [2.28234674166206, 48.831221902970725], [2.282272880302918, 48.83125089370805], [2.282198990107543, 48.831279895019094], [2.282125129946158, 48.831308885671895], [2.2820512395740042, 48.83133788778941], [2.281977377898583, 48.83136687744199], [2.281903487362033, 48.831395879466726], [2.28190322852442, 48.831395978643016], [2.281823744975774, 48.83142562876583], [2.28174427775709, 48.83145527353735], [2.281664794027634, 48.83148492355295], [2.281585326640669, 48.831514567318024], [2.281505842718006, 48.83154421812571], [2.2814263751501658, 48.831573861783596], [2.281346891059088, 48.831603511584795], [2.281267423298075, 48.83163315603478], [2.281266479650262, 48.83163352090787], [2.281190602344946, 48.83166398822913], [2.281114723588638, 48.8316944554932], [2.281038844743737, 48.83172492270832], [2.280962965822547, 48.83175538897515], [2.280887088162464, 48.831785856100545], [2.280811209051385, 48.831816323168745], [2.280735329851713, 48.831846790187974], [2.280659450575758, 48.83187725625896], [2.280649587825189, 48.83188325874818], [2.280643998935665, 48.83189130964364], [2.280643553934566, 48.83190016044562], [2.28064706355691, 48.83190625595446], [2.280676725706215, 48.8319067851131], [2.286701750231, 48.83278070609335], [2.286704263988864, 48.83278118336464], [2.287993950291822, 48.83308687177814], [2.287998106664408, 48.833110915267575], [2.28645427923115, 48.83376672460587], [2.286453409311551, 48.8337738451725], [2.287636345121027, 48.834474050662486], [2.287645051697393, 48.83447357278485], [2.287652558484608, 48.8344731615098], [2.287901905929381, 48.83432887731998], [2.287906387147812, 48.83432715111658], [2.287911521834673, 48.83432665555159], [2.287920960366677, 48.83432694648083], [2.287926003678951, 48.83432775446558], [2.287930222901114, 48.83432974921647], [2.289054055102024, 48.83511419964443], [2.289056969175345, 48.83511540234116], [2.28999230512526, 48.83531422387943], [2.290004682026355, 48.835314050020294], [2.290008288523103, 48.83530912936558], [2.290015253119449, 48.835259311185254], [2.290023327430314, 48.83520363656691], [2.290033419598183, 48.83513404440945], [2.290041493870241, 48.83507836978367], [2.290049568112803, 48.83502269605385], [2.2900582067631188, 48.834960891036], [2.290066280981883, 48.83490521639992], [2.290076373034631, 48.83483562422024], [2.2900844472145883, 48.83477994957669], [2.290093087145502, 48.834718144551], [2.290101161277164, 48.8346624707998], [2.290111253248597, 48.834592877702796], [2.290119327341455, 48.83453720394411], [2.290127965828605, 48.834475398894384], [2.2901360398854163, 48.834419725128754], [2.290144113937229, 48.8343640504605]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 133, "zemmour_eric": 118.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "15-71", "circ_bv": "13", "num_bureau": 71, "roussel_fabien": 22.0, "nb_emargement": 1325.0, "nb_procuration": 75.0, "nb_vote_blanc": 11.0, "jadot_yannick": 103.0, "le_pen_marine": 67.0, "nb_exprime": 1307.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1657.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1325, "quartier_bv": "57", "geo_point_2d": [48.83170690655409, 2.287351748442682], "melenchon_jean_luc": 264.0, "poutou_philippe": 5.0, "macron_emmanuel": 525.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.330722891963308, 48.868164905690875], [2.3307054321156, 48.86816974815358], [2.330641902226221, 48.868201175692654], [2.330463092565571, 48.86828511499749], [2.330323101897267, 48.86835029418295], [2.330183109515576, 48.86841547319318], [2.33000429838006, 48.868499411796385], [2.329982675981912, 48.86849792465476], [2.329841290901335, 48.86860019068905], [2.329711440982194, 48.868696108830335], [2.329570054831232, 48.86879837452591], [2.329440203907065, 48.86889429325504], [2.329310351153193, 48.868990210928054], [2.32916896341657, 48.869092476122674], [2.329039111020731, 48.86918839439118], [2.328897722213698, 48.86929065924699], [2.328767867472776, 48.869386576297096], [2.328626478958519, 48.869488840821866], [2.328496623212622, 48.869584758459766], [2.328355233627943, 48.869687022645806], [2.328225376900042, 48.869782939072984], [2.328083984881728, 48.86988520291259], [2.328088167837108, 48.869917934587434], [2.328133629800614, 48.86993765605531], [2.328222791982444, 48.86995250641928], [2.328418664928099, 48.869985890189376], [2.328613353486431, 48.87001831728736], [2.328809226929851, 48.87005170041635], [2.329003915977276, 48.870084126877146], [2.329199789918453, 48.87011750936502], [2.32939447946654, 48.87014993428932], [2.329590355268677, 48.87018331614372], [2.329785043931149, 48.8702157413225], [2.329980920230927, 48.87024912253576], [2.330175609382467, 48.87028154707737], [2.3303714861799802, 48.87031492764952], [2.330566177195256, 48.870347350662264], [2.330762053127376, 48.87038073058567], [2.330956744620248, 48.870413153860476], [2.331152621049985, 48.87044653314278], [2.331347313031904, 48.870478955780364], [2.33154318995935, 48.87051233442149], [2.331737882430308, 48.870544756421936], [2.331933759866992, 48.87057813352267], [2.332128452826979, 48.8706105548859], [2.332314381004112, 48.870642365849534], [2.332509074440975, 48.870674786591735], [2.332695003068398, 48.87070659786157], [2.33288969563052, 48.87073901707597], [2.333075624719548, 48.8707708277527], [2.333270319110445, 48.87080324725297], [2.333456248672683, 48.87083505643739], [2.333650943540435, 48.870867475316665], [2.333836873564461, 48.870899283907995], [2.334031568909159, 48.87093170216631], [2.334137696711494, 48.870949858528775], [2.33416542691612, 48.87096059173772], [2.334192628699566, 48.870958164638836], [2.334272431398567, 48.87097181713712], [2.334475245345096, 48.87100949869912], [2.334661176379313, 48.871041306005935], [2.3348639895029972, 48.87107898779859], [2.335049921022628, 48.871110794499565], [2.3352527360727002, 48.87114847473944], [2.335438668066262, 48.87118028173388], [2.335624600298464, 48.871212087539256], [2.335827416158636, 48.87124976680199], [2.336013348864666, 48.871281572900806], [2.336216163913445, 48.87131925149492], [2.336402097116328, 48.87135105608859], [2.336604914068537, 48.87138873492849], [2.3367908477568022, 48.87142053891633], [2.336928087762127, 48.87144603470867], [2.336981283981487, 48.8714510086498], [2.337002870200683, 48.87138186550242], [2.3369866376177493, 48.871253730165456], [2.336972068017221, 48.87112862041177], [2.33695583422574, 48.87100048503373], [2.336941264781478, 48.870875374348316], [2.336925031133247, 48.87074723983605], [2.336910461833698, 48.870622129118225], [2.336894228340262, 48.87049399457235], [2.336879659185526, 48.870368883822124], [2.336865090100777, 48.87024377305591], [2.336848856836859, 48.87011563846005], [2.3368342892601293, 48.86999052766897], [2.336818056162245, 48.86986239214031], [2.336803487355762, 48.86973728220856], [2.336787254412564, 48.86960914664634], [2.336772685762236, 48.8694840357829], [2.336756452962374, 48.86935590108641], [2.336741884456849, 48.86923079019054], [2.336725651811567, 48.86910265546053], [2.336711083450946, 48.868977544532285], [2.336694852334976, 48.86884940887702], [2.336694352758528, 48.868847638000716], [2.336636325140629, 48.868718271515974], [2.336579132964616, 48.86858905261256], [2.336521105909553, 48.86845968694098], [2.336463915666316, 48.86833046795987], [2.336405889185425, 48.86820110220214], [2.336348698148821, 48.8680718831282], [2.336290672241997, 48.86794251728442], [2.336233483138241, 48.86781329813276], [2.336175456453984, 48.86768393129602], [2.336118267908346, 48.86755471295837], [2.336060243161392, 48.8674253460431], [2.336003055185418, 48.867296127620236], [2.33594502964947, 48.86716676061132], [2.335887842243259, 48.86703754210316], [2.335860769784214, 48.86701288475083], [2.3358215315786133, 48.86702077190289], [2.3357409914101313, 48.867039525933684], [2.335558324405699, 48.86708024786535], [2.335363500757466, 48.86712561277665], [2.335180833144708, 48.867166335028315], [2.334986007482652, 48.86721169931406], [2.334803339284424, 48.86725242008712], [2.334608514334827, 48.867297783762425], [2.33442584552817, 48.867338504855496], [2.3342310199278993, 48.867383867912785], [2.334048350535794, 48.86742458752731], [2.333853524284858, 48.86746994996665], [2.333670854284221, 48.867510669901144], [2.333660255123128, 48.86750790926318], [2.333623875795858, 48.86752179854487], [2.333441205434001, 48.86756251812696], [2.333263151735777, 48.86760251399454], [2.333080480808917, 48.86764323302312], [2.332902426557755, 48.86768322835118], [2.332724372033286, 48.86772322341287], [2.3325417002735263, 48.86776394071544], [2.332363645184705, 48.8678039361369], [2.332180972859962, 48.86784465288598], [2.332002917229842, 48.86788464686864], [2.331820244328486, 48.86792536396346], [2.331642188145546, 48.86796535740655], [2.331459514679311, 48.86800607394787], [2.331281457943556, 48.86804606685142], [2.331098783923895, 48.86808678193992], [2.33092072662368, 48.86812677520318], [2.330738052039055, 48.86816748973819], [2.330722891963308, 48.868164905690875]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 82.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "2-3", "circ_bv": "01", "num_bureau": 3, "roussel_fabien": 6.0, "nb_emargement": 666.0, "nb_procuration": 52.0, "nb_vote_blanc": 10.0, "jadot_yannick": 52.0, "le_pen_marine": 35.0, "nb_exprime": 654.0, "nb_vote_nul": 2.0, "arr_bv": "02", "arthaud_nathalie": 0, "nb_inscrit": 875.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 666, "quartier_bv": "05", "geo_point_2d": [48.86930131857675, 2.333435181568944], "melenchon_jean_luc": 116.0, "poutou_philippe": 4.0, "macron_emmanuel": 285.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.344300024773878, 48.89109332609746], [2.344317263023322, 48.891081787736226], [2.344497565351145, 48.891019989483496], [2.344673684385107, 48.89095754033622], [2.344853985859765, 48.890895741539836], [2.345030104034675, 48.890833292760554], [2.345210403292211, 48.89077149341306], [2.3453865206308, 48.890709043203216], [2.345390256069375, 48.89070709680235], [2.345513017422108, 48.89061600711513], [2.345638248264607, 48.890522743635536], [2.345761008748758, 48.89043165367874], [2.345886238703683, 48.890338389924146], [2.346008998330757, 48.890247298798556], [2.346134227398113, 48.89015403476894], [2.346145070815273, 48.89015101289459], [2.346338604205654, 48.890156945665574], [2.346533020292272, 48.890162204850014], [2.346726552404712, 48.89016813698648], [2.346920969947417, 48.89017339464917], [2.34711450214554, 48.890179326158574], [2.347308919769193, 48.89018458319134], [2.347502452053193, 48.89019051407368], [2.347696869746418, 48.89019577137578], [2.34789040212745, 48.890201700731794], [2.348084818537969, 48.89020695739658], [2.3481075155594953, 48.89020190895053], [2.348113280089998, 48.89019180225167], [2.348101316178479, 48.890045118488636], [2.348087685653655, 48.88990639544392], [2.348091375094615, 48.88987662990516], [2.3480889174886332, 48.889874998640565], [2.348075288405103, 48.889736275580354], [2.348062102675509, 48.889600271774334], [2.348048473735224, 48.889461548676344], [2.348035286781518, 48.88932554482593], [2.348021657984683, 48.88918682169018], [2.3480084711704903, 48.88905081780277], [2.347996338718434, 48.88904245186851], [2.347798056929176, 48.88902821310088], [2.347611742999862, 48.88901371005721], [2.347413461413951, 48.88899947155164], [2.347227147694601, 48.88898496790921], [2.347040834090318, 48.888970463077364], [2.3468425528252093, 48.888956223625904], [2.346656239419629, 48.888941719094554], [2.3464579583804372, 48.88892747810658], [2.346429467996499, 48.888933755476216], [2.346425035883144, 48.88895014846903], [2.346369688672208, 48.88905756394406], [2.346320309195222, 48.88915921851021], [2.346270929525434, 48.88926087304661], [2.346215581666314, 48.889368288419945], [2.346166201593805, 48.889469942893804], [2.34611085329641, 48.88957735819831], [2.34609646841873, 48.8895834049454], [2.345925087159184, 48.88957112932618], [2.345702034932902, 48.889554262462276], [2.345530655225887, 48.88954198628568], [2.345307601877186, 48.889525119578394], [2.345136222370396, 48.88951284193769], [2.344913170638033, 48.88949597450272], [2.344741789956554, 48.889483696289695], [2.344735849445657, 48.88948411614179], [2.344583978773486, 48.889518140098104], [2.344427299561397, 48.88955115727127], [2.344275428480752, 48.8895851817334], [2.344118750235013, 48.88961819850828], [2.344102738067314, 48.889614071032724], [2.344058255805792, 48.88956237698068], [2.34401629929214, 48.88951090628891], [2.343999660747496, 48.88950670522003], [2.343803188847742, 48.88955342961762], [2.343586698887735, 48.889607286221704], [2.343533658653171, 48.88961989986258], [2.343510924753761, 48.88963142688041], [2.343522583751357, 48.88965155474327], [2.343570275372671, 48.88970837834989], [2.343621230676895, 48.88977147642804], [2.343620941163996, 48.88978027023904], [2.343535583965194, 48.88987575668296], [2.343449696503921, 48.8899720630342], [2.343364337324388, 48.89006754843267], [2.343278449218682, 48.89016385554352], [2.343280697077108, 48.89017486121641], [2.343435618634441, 48.89027419490945], [2.343588505722957, 48.89036943700223], [2.343743428457761, 48.890468769380156], [2.343896316669291, 48.890564011962255], [2.34390053232084, 48.89057136545292], [2.343880317837374, 48.89071757653964], [2.343858983114624, 48.89086317172403], [2.343838768401199, 48.89100938276484], [2.343817433431368, 48.89115497880237], [2.343827390454841, 48.89118238629779], [2.34383519515558, 48.89118459373766], [2.344066493500636, 48.89113720304379], [2.344277945138665, 48.89109228338457], [2.344300024773878, 48.89109332609746]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 44, "zemmour_eric": 67.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-6", "circ_bv": "18", "num_bureau": 6, "roussel_fabien": 20.0, "nb_emargement": 1167.0, "nb_procuration": 69.0, "nb_vote_blanc": 8.0, "jadot_yannick": 128.0, "le_pen_marine": 54.0, "nb_exprime": 1155.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 7, "nb_inscrit": 1459.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1167, "quartier_bv": "70", "geo_point_2d": [48.88994350961795, 2.3457116103539577], "melenchon_jean_luc": 405.0, "poutou_philippe": 7.0, "macron_emmanuel": 374.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.40219892928073, 48.83710969438446], [2.402244574736275, 48.83709409012188], [2.402328210032866, 48.836987799588954], [2.40241866621421, 48.83687132001127], [2.402502300798369, 48.83676502933544], [2.402592756204104, 48.83664854960287], [2.402676390075841, 48.83654225878413], [2.402766843343634, 48.836425778889925], [2.402850476502959, 48.83631948792829], [2.402905658180169, 48.83624842952396], [2.402927661024323, 48.836238063576566], [2.402930936995515, 48.83621301827829], [2.402966209126863, 48.836167596631476], [2.403007812794517, 48.83611903182197], [2.403039670703315, 48.83607800718422], [2.403061919049621, 48.83606820363894], [2.403068546367015, 48.836045185135305], [2.403127142907268, 48.83596972868206], [2.40321336843292, 48.83585559622679], [2.403303820671578, 48.8357391158618], [2.403390045428919, 48.83562498325566], [2.403480496882904, 48.835508501833715], [2.403566722234256, 48.83539436908351], [2.403657171520778, 48.8352778883965], [2.403743396103833, 48.83516375549537], [2.4038338445953142, 48.83504727465079], [2.403920068410081, 48.83493314159877], [2.404010517479213, 48.83481665970403], [2.404096739163398, 48.834702526494354], [2.404187187427321, 48.834586045341354], [2.404273408343343, 48.834471911980806], [2.404363855812349, 48.83435543067017], [2.404450077322299, 48.834241297165576], [2.404444679785268, 48.83422948771559], [2.404240688531668, 48.8341520096493], [2.404057991547354, 48.83408558169518], [2.403875295018282, 48.83401915435741], [2.4036713054443393, 48.83394167440614], [2.403626818282508, 48.833925498765325], [2.403621882804179, 48.83392095215009], [2.40358119566453, 48.83391283396229], [2.403442986019981, 48.83386258070676], [2.403284306235521, 48.83380566789523], [2.403101611683791, 48.83373923845971], [2.402942932647492, 48.833682325189024], [2.402784253957682, 48.833625411704915], [2.402601560674931, 48.83355898149498], [2.402442882733282, 48.83350206755173], [2.402260188955472, 48.83343563680621], [2.402240607723051, 48.833407654123164], [2.402206810348401, 48.83340275094929], [2.402073108718716, 48.83349654837385], [2.402015489876763, 48.83355718961837], [2.402011600037993, 48.83356173804698], [2.402011516748104, 48.83357861781731], [2.401957339356856, 48.83368031157209], [2.401884863033393, 48.83381666885367], [2.401830685147657, 48.83391836252947], [2.401758209524198, 48.83405471971214], [2.401704031143969, 48.83415641330893], [2.401691172535869, 48.83416242329787], [2.401478209970835, 48.83416235251696], [2.4012716722846, 48.834159545273316], [2.401259758154251, 48.834163857446214], [2.401142769940647, 48.83429063801109], [2.401037219698631, 48.83439356162132], [2.400931669029371, 48.834496486028264], [2.400814679281748, 48.83462326533523], [2.4007816439081973, 48.83465547876071], [2.400748318286822, 48.83467359228453], [2.40075472374081, 48.834687604097674], [2.400682207459378, 48.83475831484325], [2.400601567298291, 48.834837552175685], [2.400496014880167, 48.834940475258065], [2.400415372791949, 48.83501971244523], [2.400415039137146, 48.835020057027926], [2.4004094844231982, 48.83504188193516], [2.400427184988326, 48.83504951363207], [2.400533862335697, 48.835161428283534], [2.400637568918869, 48.83527143837627], [2.400744247182435, 48.83538335191859], [2.400847953288812, 48.83549336180027], [2.4009546324479, 48.83560527603205], [2.401058339439802, 48.83571528570952], [2.401165019504762, 48.83582719973145], [2.4012687273822, 48.835937209204666], [2.401375408363371, 48.83604912211745], [2.401479118488687, 48.836159131393266], [2.401582827689416, 48.83626914056152], [2.401689510013961, 48.83638105406025], [2.401793220100251, 48.83649106302429], [2.401899903341023, 48.83660297541388], [2.4020036143128802, 48.836712984173616], [2.40211029844925, 48.836824897252654], [2.402112266963424, 48.83682847486381], [2.402127946566972, 48.836921508656935], [2.402151463707539, 48.837035608707836], [2.402159877521826, 48.83708553749635], [2.40219892928073, 48.83710969438446]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 71, "zemmour_eric": 92.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-25", "circ_bv": "08", "num_bureau": 25, "roussel_fabien": 24.0, "nb_emargement": 1215.0, "nb_procuration": 53.0, "nb_vote_blanc": 18.0, "jadot_yannick": 101.0, "le_pen_marine": 61.0, "nb_exprime": 1195.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1567.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1215, "quartier_bv": "46", "geo_point_2d": [48.83502643350995, 2.402379322266274], "melenchon_jean_luc": 402.0, "poutou_philippe": 9.0, "macron_emmanuel": 380.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.367076939997184, 48.86170248649804], [2.36715925225117, 48.86171777808666], [2.36734313803437, 48.86173929588895], [2.367541240792686, 48.86176193088418], [2.367552232563146, 48.86177270827305], [2.367501875000609, 48.861925106034455], [2.367452120073547, 48.86207421083995], [2.367460306069243, 48.862084477864656], [2.367651416075364, 48.862135652398834], [2.367841459656204, 48.86218633714262], [2.368032570410358, 48.862237511063434], [2.368222614744365, 48.86228819429802], [2.368413726235641, 48.86233936850478], [2.368603771312102, 48.86239005112944], [2.368794883551306, 48.862441224722794], [2.368984929370114, 48.86249190673754], [2.369176042357445, 48.86254307971756], [2.3693660889185972, 48.862593761122376], [2.36955720266473, 48.86264493258972], [2.369747249957337, 48.862695614283865], [2.3699383644515812, 48.862746785137844], [2.370128412497301, 48.862797465322785], [2.370319527728677, 48.8628486364627], [2.3705095765168283, 48.86289931603768], [2.370700692496212, 48.86295048656417], [2.370890742026586, 48.863001165529234], [2.371081858753972, 48.863052335442354], [2.371271909026768, 48.86310301379748], [2.37129255266552, 48.86310960561921], [2.371308119138107, 48.86309978831333], [2.3714256645649052, 48.86299754775409], [2.3715510671007882, 48.86288779114195], [2.371552671486467, 48.86288598109274], [2.371624438197422, 48.862778519352474], [2.3717128817807662, 48.86264507851318], [2.371784649203275, 48.86253761576135], [2.371873091967407, 48.8624041747746], [2.3719448573537463, 48.86229671279545], [2.372033299298475, 48.86216327166134], [2.372105065396368, 48.862055808670625], [2.372193506510968, 48.86192236828838], [2.372265270583563, 48.86181490517113], [2.37227731594133, 48.86180042864038], [2.372270849657694, 48.861792954440894], [2.372119889967877, 48.86175237818495], [2.371945225989561, 48.861705655321785], [2.371755365740015, 48.861654621906105], [2.371580702416237, 48.86160789850682], [2.371390842880105, 48.86155686450841], [2.37121618021097, 48.861510140572975], [2.371026321377196, 48.861459106891026], [2.370851660736555, 48.861412381527316], [2.370849030751235, 48.8614118712622], [2.370663533278392, 48.86138891411155], [2.370477853918075, 48.86136511752515], [2.370292358138242, 48.861342159805396], [2.370106679114194, 48.861318362642116], [2.370101724286217, 48.861317020819826], [2.369957486195755, 48.86125366977331], [2.369814409049179, 48.861190829193944], [2.369670170294457, 48.8611274777868], [2.36952709384098, 48.86106463685679], [2.369384016369567, 48.86100179574497], [2.369239780024503, 48.86093844381547], [2.369096704609268, 48.860875602360196], [2.36895246759995, 48.860812250070005], [2.368938592485071, 48.86080477168708], [2.36892487719222, 48.860807842577074], [2.368764046832846, 48.860797150107146], [2.368530005720973, 48.8607811139373], [2.368369175525049, 48.86077042093642], [2.368135134654791, 48.860754383993914], [2.367974304622528, 48.86074369046213], [2.367969541008792, 48.86074277495098], [2.367836253931817, 48.860698494009974], [2.36770355258395, 48.860654037941735], [2.367570265960058, 48.860609756700946], [2.367437565065169, 48.8605653003342], [2.367351927687237, 48.86054358618729], [2.367344633750934, 48.86055180902495], [2.367328483703075, 48.86062034648402], [2.367296026749152, 48.860759776841796], [2.367264620179562, 48.86089306299784], [2.367251420165402, 48.860949765338454], [2.3672382770002622, 48.860968228673435], [2.367247773155155, 48.86099147392203], [2.367228515864299, 48.86107420098459], [2.367194963825492, 48.86120802074596], [2.367162504796066, 48.86134745008716], [2.3671289524116332, 48.861481269797046], [2.367096494387376, 48.861620699992464], [2.367078277695927, 48.86169335442216], [2.367076939997184, 48.86170248649804]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 41, "zemmour_eric": 76.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-18", "circ_bv": "07", "num_bureau": 18, "roussel_fabien": 25.0, "nb_emargement": 1309.0, "nb_procuration": 100.0, "nb_vote_blanc": 9.0, "jadot_yannick": 112.0, "le_pen_marine": 49.0, "nb_exprime": 1300.0, "nb_vote_nul": 0.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1589.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1309, "quartier_bv": "42", "geo_point_2d": [48.86183834308786, 2.369565277884946], "melenchon_jean_luc": 432.0, "poutou_philippe": 9.0, "macron_emmanuel": 494.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.277588554388263, 48.842545396349735], [2.2776009403014, 48.84255895449911], [2.277576561175682, 48.84269234301206], [2.277551765266958, 48.84282757809188], [2.277527385889835, 48.8429609665627], [2.277502591088213, 48.84309620160802], [2.277478211459584, 48.8432295900367], [2.2774534164024702, 48.843364825039195], [2.277429036522332, 48.843498213425725], [2.277404239847411, 48.8436334483773], [2.277379859715756, 48.84376683672168], [2.277355064147946, 48.843902071638745], [2.277375873470748, 48.843910753033995], [2.2775358168501763, 48.84384400018326], [2.277690510257178, 48.84377995939323], [2.277850454207205, 48.843713205222926], [2.278005146839375, 48.843649164018544], [2.278165088622501, 48.84358240941154], [2.278319780479841, 48.843518367792804], [2.278338408266309, 48.84352104786423], [2.278441004905864, 48.843624116548845], [2.278544370665095, 48.843727957832854], [2.278564146400567, 48.84373010606912], [2.278585728801697, 48.84371897612296], [2.278607204159886, 48.84370790038886], [2.278626915386984, 48.843709983471264], [2.2787428959497458, 48.843824316228705], [2.278853158450616, 48.84393291509088], [2.278969140005796, 48.84404724760617], [2.279079403449741, 48.84415584623813], [2.279189667353203, 48.84426444475789], [2.279305650384381, 48.84437877691292], [2.279415915230932, 48.84448737520243], [2.279531899266989, 48.844601706215975], [2.279529079391982, 48.84462510967646], [2.279550210845085, 48.84463182660552], [2.279771781828571, 48.84465908952277], [2.280020321469042, 48.844692818004674], [2.280030877237909, 48.84469137688904], [2.280189696705411, 48.84461801781455], [2.2803660124367973, 48.844537116449054], [2.280524830962483, 48.84446375691952], [2.280701145639357, 48.844382855948254], [2.280859961873111, 48.84430949505616], [2.281036275507895, 48.84422859357974], [2.281195092149963, 48.84415523314018], [2.28137140474266, 48.84407433115867], [2.281530220455322, 48.84400096936469], [2.281706532005932, 48.84392006687815], [2.281819513927236, 48.8438678767269], [2.281826985348759, 48.843860443331806], [2.281801072230535, 48.84383743301592], [2.281706270287772, 48.84372837391799], [2.28161357125932, 48.84362178443506], [2.281520872597738, 48.84351519576941], [2.2814260732022458, 48.84340613552679], [2.281333373945173, 48.84329954668709], [2.281238575334378, 48.843190486274814], [2.281145878206713, 48.84308389727739], [2.281051079018007, 48.842974836687304], [2.280958382657443, 48.84286824752402], [2.280863585615711, 48.842759186772426], [2.280770888659647, 48.84265259743507], [2.280676092402585, 48.84254353651385], [2.2806781407931043, 48.84253264487407], [2.280665104796002, 48.84252387677867], [2.280571621116473, 48.84242202400578], [2.280478579163668, 48.84231751436876], [2.2803850962312042, 48.84221566053196], [2.280292056383281, 48.84211115073876], [2.280198572810571, 48.842009297628486], [2.280105533717462, 48.841904786771615], [2.280012052241859, 48.841802933504965], [2.2799190138910372, 48.84169842248366], [2.279890201677001, 48.841685776578075], [2.2798880872547063, 48.84168585648501], [2.279781057320454, 48.84176721043708], [2.279680894722855, 48.84183739589018], [2.279573864153905, 48.841918749645814], [2.279473700986075, 48.84198893491589], [2.279469349348041, 48.84199097725657], [2.279284584871591, 48.84204556223527], [2.279090395410754, 48.842100128803345], [2.278905630150488, 48.84215471319141], [2.278711439886229, 48.84220927913899], [2.278526673842149, 48.84226386293643], [2.278332482774372, 48.842318428263546], [2.278147715946582, 48.84237301147037], [2.277953524062934, 48.84242757707627], [2.277946758709405, 48.8424399826224], [2.278029150717545, 48.842545131481145], [2.278110030669649, 48.84264889780911], [2.278192424712291, 48.84275404564464], [2.278273305313665, 48.84285781184283], [2.278266255777254, 48.84287027414668], [2.278149427962184, 48.842901159606754], [2.278089473285929, 48.84292011717563], [2.278072477365934, 48.84291611314552], [2.277984423072983, 48.84281077369076], [2.277898585385515, 48.842705875639005], [2.2778105318116753, 48.84260053513709], [2.277724696182922, 48.84249563694904], [2.277705356565783, 48.84249233820958], [2.277645052591213, 48.8425178408648], [2.277615074661725, 48.84253100919054], [2.277588554388263, 48.842545396349735]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 107, "zemmour_eric": 97.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-81", "circ_bv": "13", "num_bureau": 81, "roussel_fabien": 18.0, "nb_emargement": 1181.0, "nb_procuration": 41.0, "nb_vote_blanc": 11.0, "jadot_yannick": 92.0, "le_pen_marine": 64.0, "nb_exprime": 1169.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1477.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1182, "quartier_bv": "60", "geo_point_2d": [48.84326325186045, 2.279593969952727], "melenchon_jean_luc": 232.0, "poutou_philippe": 2.0, "macron_emmanuel": 503.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.394378191850599, 48.88737504388514], [2.394372518142908, 48.88737415633476], [2.394304490843205, 48.88729422580311], [2.394226743693939, 48.88720287411893], [2.3941203668464333, 48.88707788044132], [2.39404262169639, 48.886986529525736], [2.394040934236486, 48.886981302216505], [2.394057230091525, 48.88686474882793], [2.394072971353727, 48.88674733106732], [2.394089265700184, 48.886630777642694], [2.394105006819526, 48.88651335985287], [2.394121302384715, 48.886396806405926], [2.394137043360991, 48.886279388586914], [2.394132519999664, 48.88626156989033], [2.394118775425757, 48.88625885902786], [2.39399610408574, 48.886281553172516], [2.393894687983164, 48.88630149494204], [2.393889248574692, 48.886301811847794], [2.393783487700488, 48.886293868697216], [2.393687673744788, 48.886285336404235], [2.393682490747689, 48.88628553319041], [2.393583837561549, 48.886302063166085], [2.393488427177472, 48.88631683871956], [2.3934786966127453, 48.88631594856169], [2.393406091444936, 48.8862893951566], [2.393343942541402, 48.88626465556085], [2.393338671015761, 48.88626343814737], [2.393136618821789, 48.886245942220505], [2.392936851062225, 48.88622902230917], [2.392734799136799, 48.886211525703736], [2.392535031650322, 48.88619460422218], [2.392332979993456, 48.886177106938106], [2.392133212759096, 48.88616018568494], [2.391933444301527, 48.88614326319201], [2.391731393046018, 48.88612576489193], [2.39153162620411, 48.88610884263427], [2.391329575217183, 48.88609134365561], [2.391129808637905, 48.88607442072703], [2.390927757919569, 48.88605692106978], [2.390727991613452, 48.886039996571], [2.390525941163722, 48.88602249623509], [2.390326175109735, 48.88600557196469], [2.390124124928616, 48.88598807095021], [2.390110650410565, 48.8859923658342], [2.390080435407997, 48.88602597973228], [2.390035342880231, 48.8860756211222], [2.390033128865637, 48.88608802410797], [2.39004718550137, 48.88609608800707], [2.390150654397276, 48.88618612474621], [2.390252773366227, 48.88627326858288], [2.390356242969655, 48.886363305129876], [2.39045836261969, 48.88645044967647], [2.390560482611419, 48.886537594129], [2.390663951918972, 48.88662762948226], [2.390666483056668, 48.88663473082902], [2.390626995593671, 48.88677257237878], [2.390587534065685, 48.88690841303761], [2.390548046186164, 48.88704625452699], [2.390508585597966, 48.88718209603217], [2.390469095938349, 48.88731993745426], [2.390429634947322, 48.887455778000295], [2.390390172386832, 48.88759161850961], [2.390350683466774, 48.887729459848174], [2.390311220492813, 48.887865300297584], [2.390271731156209, 48.888003141575794], [2.390249817966951, 48.88803847047384], [2.390267627423552, 48.88804601834392], [2.390405074599585, 48.88808198239493], [2.390583528017528, 48.88812755021483], [2.390770256672891, 48.88817640912036], [2.390948712097808, 48.88822197639903], [2.391135441434435, 48.888270834730875], [2.391313896138831, 48.88831640145445], [2.391500627520315, 48.88836525921952], [2.39167908286788, 48.88841082539492], [2.391865813567021, 48.88845968257942], [2.392044270921454, 48.888505248213576], [2.392231002301846, 48.888554104824344], [2.392409458935737, 48.88859966990339], [2.392596190997376, 48.888648525940475], [2.392774649638029, 48.88869409047824], [2.392953107237878, 48.88873965384199], [2.393139840301112, 48.88878850992432], [2.393318299907816, 48.888834072746754], [2.393505033652292, 48.88888292825535], [2.393683492538424, 48.888928490522765], [2.393870228327752, 48.88897734546455], [2.394048687857021, 48.88902290718375], [2.394235422963968, 48.88907176154494], [2.394413884500089, 48.88911732272281], [2.394600620288266, 48.88916617651027], [2.394779081103795, 48.88921173713309], [2.394909381366237, 48.88924582520612], [2.394930697628681, 48.88925177760786], [2.394968417356803, 48.88920539148615], [2.395004376042312, 48.88911724908254], [2.395039774170273, 48.88903203471635], [2.395075732625725, 48.88894389137813], [2.395111131882774, 48.88885867698427], [2.3951114304344943, 48.88885493012246], [2.395076642494987, 48.88871050237883], [2.39504024073551, 48.88856672025816], [2.395005453186007, 48.88842229245592], [2.394969051824582, 48.88827851027587], [2.394934264665076, 48.88813408241504], [2.394897862338006, 48.887990300168724], [2.394896290539152, 48.887987314571205], [2.3948116197520433, 48.88788768066497], [2.39470523873794, 48.88776268757801], [2.394620568681636, 48.88766305351626], [2.394514188585031, 48.887538060234014], [2.39442951789585, 48.88743842600992], [2.394391167423372, 48.88739336395819], [2.394378191850599, 48.88737504388514]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 31, "zemmour_eric": 115.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-21", "circ_bv": "16", "num_bureau": 21, "roussel_fabien": 23.0, "nb_emargement": 1228.0, "nb_procuration": 69.0, "nb_vote_blanc": 9.0, "jadot_yannick": 72.0, "le_pen_marine": 43.0, "nb_exprime": 1218.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1758.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1229, "quartier_bv": "75", "geo_point_2d": [48.8875141175041, 2.3926420122494827], "melenchon_jean_luc": 599.0, "poutou_philippe": 9.0, "macron_emmanuel": 269.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.310069360648848, 48.83636823686741], [2.310069951841294, 48.836368243874894], [2.3101183034869113, 48.83634087967425], [2.310270239319852, 48.83625561857205], [2.310421489746217, 48.836170019654894], [2.310573423222905, 48.836084758146725], [2.310724672655622, 48.83599915883315], [2.310876606488816, 48.83591389783395], [2.311027854939677, 48.835828297224616], [2.3111797864166412, 48.83574303581952], [2.311331033862081, 48.83565743571305], [2.311482965719327, 48.83557217301836], [2.311634212171133, 48.83548657251546], [2.311786143034365, 48.83540130942268], [2.311937388492542, 48.83531570852334], [2.312089316999673, 48.8352304450246], [2.312240561464229, 48.835144843728855], [2.312392490327894, 48.83505958073912], [2.312543733810595, 48.834973978147666], [2.3126949767848, 48.8348883762577], [2.312846902807266, 48.83480311176414], [2.312890283600748, 48.83477880091292], [2.31288767640905, 48.834764923006844], [2.312900916110049, 48.83475250318109], [2.312866875872325, 48.83474962210407], [2.31274009021462, 48.83464452148022], [2.312612864348301, 48.83454102176094], [2.312486078335959, 48.83443592173969], [2.312358853494963, 48.834332420831664], [2.312232069864388, 48.834227320529415], [2.312104846024977, 48.83412382023119], [2.311978063425748, 48.834018718740836], [2.311850840599778, 48.83391521815318], [2.31172405902002, 48.833810116373975], [2.311596835845222, 48.833706615489014], [2.311470055273051, 48.83360151432032], [2.311342834485813, 48.833498012254395], [2.311216054933091, 48.8333929107969], [2.311088835159267, 48.83328940844156], [2.310961615878747, 48.83318590684065], [2.310834837853679, 48.83308080494976], [2.310793901456739, 48.83304793347722], [2.310733414124595, 48.833069177086976], [2.310551697997144, 48.833129645136545], [2.310357879821814, 48.833194650623], [2.310176162821372, 48.83325511809526], [2.309982343711133, 48.83332012296589], [2.309800625837699, 48.833380589860845], [2.309606805792756, 48.833445594115645], [2.309425087046334, 48.833506060433265], [2.309231266078401, 48.83357106317291], [2.309224057296043, 48.833580777047935], [2.309239716144439, 48.833634635650355], [2.30926692835846, 48.8337016009903], [2.309260717569692, 48.8337116677882], [2.309164759492329, 48.833749215552], [2.309048727213179, 48.833865078057485], [2.308946359974942, 48.83397159935561], [2.3088303267272883, 48.834087460726906], [2.308727959968325, 48.83419398182482], [2.308611925728311, 48.834309843860524], [2.30850955672407, 48.8344163647425], [2.308506555752849, 48.834417471609534], [2.308487299498446, 48.83443374956065], [2.308442522290393, 48.83447949001831], [2.3084432308416423, 48.83448235592069], [2.308542704294612, 48.83449729131177], [2.308634894931998, 48.834608654885656], [2.308725271108857, 48.83471818306064], [2.308817462526835, 48.834829546471845], [2.3089078394584472, 48.834939075386636], [2.309000031657126, 48.83505043863514], [2.309090408004956, 48.83515996648315], [2.309182602346641, 48.83527132957679], [2.3092729794491422, 48.83538085816455], [2.309292387384033, 48.835384088364194], [2.30934071167115, 48.83536327532761], [2.309390330246047, 48.83534204613986], [2.309409827230176, 48.83534544411806], [2.30950237172134, 48.835462949877005], [2.309590723524197, 48.835574362385], [2.309683268829563, 48.835691867979904], [2.309771620056662, 48.83580327942435], [2.309859973023751, 48.83591469080028], [2.309952519528389, 48.83603219705046], [2.309953730290491, 48.8360382999777], [2.309934705403335, 48.83609472023647], [2.309915513735183, 48.83615354714554], [2.309916867685157, 48.83615974263454], [2.309979941914495, 48.836236178071], [2.31004156466552, 48.83631287220879], [2.310069360648848, 48.83636823686741]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 89, "zemmour_eric": 100.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-44", "circ_bv": "12", "num_bureau": 44, "roussel_fabien": 19.0, "nb_emargement": 1246.0, "nb_procuration": 54.0, "nb_vote_blanc": 9.0, "jadot_yannick": 87.0, "le_pen_marine": 89.0, "nb_exprime": 1228.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1576.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1246, "quartier_bv": "57", "geo_point_2d": [48.83460502152915, 2.3105550294022508], "melenchon_jean_luc": 329.0, "poutou_philippe": 6.0, "macron_emmanuel": 461.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.372778343143363, 48.86192665438769], [2.372783250733758, 48.86193170384946], [2.372923727650576, 48.861968579284195], [2.373037644659418, 48.861997243790476], [2.37305161585561, 48.86199568017534], [2.373206354159547, 48.86190708863449], [2.37336084608173, 48.861818538767686], [2.373515583333614, 48.86172994681283], [2.373670074205036, 48.8616413965327], [2.373824810404975, 48.86155280416388], [2.373979300225538, 48.86146425347043], [2.374134035373538, 48.86137566068763], [2.374288524143149, 48.86128710958083], [2.374443258239316, 48.86119851638409], [2.374597745958081, 48.861109964863964], [2.374752479002321, 48.86102137125323], [2.374906965670246, 48.860932819319764], [2.374924908817715, 48.860928837207936], [2.374929313551145, 48.86091991352498], [2.375067451614525, 48.86083792844609], [2.37520585169448, 48.860756449104834], [2.375343990252265, 48.860674463701756], [2.375482388113221, 48.86059298312225], [2.375620525791658, 48.86051099828718], [2.375758924148981, 48.860429517383004], [2.375897059595893, 48.860347532209566], [2.376035457086413, 48.860266050973564], [2.376173591675645, 48.860184064569516], [2.376311988288702, 48.86010258390104], [2.376450122009284, 48.86002059716572], [2.376588517766518, 48.8599391152661], [2.376726650607792, 48.85985712909884], [2.376865045498239, 48.85977564686741], [2.376876835566207, 48.85975889228137], [2.376861837874361, 48.85974742306611], [2.376681801384534, 48.85969130425589], [2.376517561849989, 48.85964014013298], [2.376353322638015, 48.85958897578238], [2.37617328724333, 48.859532856199124], [2.376009047344688, 48.85948169136394], [2.375829012702423, 48.859425570358], [2.375828665110114, 48.85942545882474], [2.3757885737397793, 48.85941203740586], [2.375774491726236, 48.85940425834825], [2.375762181113245, 48.85940471215575], [2.375636276003164, 48.85936256485698], [2.375464898840001, 48.8593057393067], [2.375298903090036, 48.85925017010653], [2.375127526664431, 48.859193344067336], [2.37496153163238, 48.85913777439358], [2.3747901559445372, 48.85908094786551], [2.3746241616304022, 48.859025377718154], [2.374452786669423, 48.858968551600476], [2.374286793084004, 48.85891298008021], [2.374115418860582, 48.85885615347367], [2.373949424630265, 48.858800581472735], [2.373778052507424, 48.85874375438437], [2.373612058984123, 48.85868818280913], [2.373440687609855, 48.858631354332616], [2.373274694804479, 48.85857578228378], [2.373103324167773, 48.85851895331843], [2.372948368092094, 48.85846779866303], [2.372776998155762, 48.858410970124126], [2.37262204272152, 48.8583598150412], [2.372450673496279, 48.858302986029436], [2.372295718703676, 48.85825183051897], [2.372112501758254, 48.85819048799268], [2.371957547632245, 48.85813933203918], [2.371920229338548, 48.85814059311936], [2.371897319223047, 48.85815133159965], [2.371980379342353, 48.85826547211089], [2.372058347640977, 48.8583760028299], [2.372141407119131, 48.85849014229982], [2.372219376095567, 48.858600672891505], [2.372302437636727, 48.858714813133], [2.372380407290986, 48.858825343597424], [2.37246346955392, 48.85893948280472], [2.372541439886009, 48.859050013141825], [2.372624502849061, 48.85916415311354], [2.372702473858989, 48.85927468332335], [2.372703601130883, 48.859277167833085], [2.372731857479687, 48.85940373446625], [2.372759830186542, 48.859529304913195], [2.372788086797855, 48.859655872403586], [2.372816061138548, 48.85978144281601], [2.372844318034031, 48.85990800936505], [2.372872291271848, 48.860033580627864], [2.372900548440676, 48.8601601471349], [2.372928521960215, 48.86028571745677], [2.372956779391566, 48.860412284821], [2.372984754544976, 48.860537855108284], [2.373012728470264, 48.8606634253677], [2.373040986311035, 48.86078999266896], [2.373068961870208, 48.86091556289382], [2.3730972186321813, 48.86104212924658], [2.373125194451452, 48.86116770032903], [2.373153452849769, 48.861294266646844], [2.373181427587895, 48.86141983678115], [2.373209686248657, 48.86154640395622], [2.373206972112551, 48.86155322566399], [2.373102203531023, 48.86164236319204], [2.372997472404373, 48.86173209618574], [2.372892703104608, 48.86182123351601], [2.372787972631385, 48.86191096541978], [2.372778343143363, 48.86192665438769]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 58, "zemmour_eric": 58.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "11-19", "circ_bv": "07", "num_bureau": 19, "roussel_fabien": 26.0, "nb_emargement": 1224.0, "nb_procuration": 73.0, "nb_vote_blanc": 13.0, "jadot_yannick": 134.0, "le_pen_marine": 38.0, "nb_exprime": 1204.0, "nb_vote_nul": 7.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1517.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1224, "quartier_bv": "42", "geo_point_2d": [48.8599623028594, 2.374136595434677], "melenchon_jean_luc": 400.0, "poutou_philippe": 6.0, "macron_emmanuel": 428.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.283943524842908, 48.844875503086065], [2.2838908810805, 48.84489075512799], [2.283772533274607, 48.844942229745804], [2.283567343775805, 48.845048062711506], [2.283403520398329, 48.84513467990165], [2.283403497062226, 48.84513469235302], [2.2832263957332, 48.84522644699149], [2.283062571228337, 48.84531306370095], [2.282885468680574, 48.84540481871935], [2.282721643048395, 48.84549143494808], [2.282544539306635, 48.84558318854781], [2.282380711172287, 48.84566980518694], [2.282379298738389, 48.84567064931441], [2.282234925867687, 48.84576984677419], [2.282110664434059, 48.84585674358327], [2.281966290536511, 48.84595594070237], [2.281842028211255, 48.84604283721794], [2.28171776545922, 48.846129734496955], [2.2815733914200482, 48.84622893112577], [2.281571528949508, 48.84623978249013], [2.281617514244779, 48.84629045013152], [2.281640687424567, 48.84631252572457], [2.281649205361278, 48.84632064148917], [2.281659409482341, 48.846324960359475], [2.28186368440414, 48.84633974287483], [2.2820688729433503, 48.84635290536805], [2.282273146728342, 48.84636768717571], [2.282478335480987, 48.84638084896634], [2.282682610854126, 48.84639563008272], [2.282887799820295, 48.84640879117075], [2.282898469269793, 48.846413467073845], [2.282990608884687, 48.846526007498525], [2.283083734506843, 48.84664149107655], [2.2831758749250612, 48.84675403133554], [2.283269001365219, 48.84686951474568], [2.283361141224068, 48.84698205483083], [2.283454269844839, 48.84709753808128], [2.283546410506822, 48.847210078000714], [2.283639539945621, 48.8473255610833], [2.283731681410949, 48.84743810083701], [2.283824811667785, 48.84755358375176], [2.283916953936266, 48.84766612333973], [2.284010083648527, 48.84778160607848], [2.284071881654429, 48.84780151190119], [2.2840920350289178, 48.84779316227815], [2.284140341467708, 48.84776312653792], [2.284291115320627, 48.84767138230076], [2.28443892559028, 48.84757947804445], [2.284589697011273, 48.847487734307], [2.284737507596005, 48.8473958296748], [2.284888277972494, 48.84730408464672], [2.285036086134845, 48.84721218052164], [2.28518685545429, 48.84712043510215], [2.285334663931935, 48.847028530601186], [2.285485432194442, 48.846936784790365], [2.285633238274301, 48.84684487899793], [2.285679836993303, 48.846816523231524], [2.285688528485501, 48.84681371874025], [2.285703679611552, 48.84680282434927], [2.285807848029522, 48.8467394347912], [2.285906687754488, 48.84668124224669], [2.285921818625035, 48.846672516077106], [2.28587566808506, 48.84662741352411], [2.285765950517371, 48.84651973403072], [2.285648662459084, 48.84640608419759], [2.285635132840774, 48.846402279137045], [2.285500540355232, 48.84641727005885], [2.285359731074606, 48.84643167867844], [2.285345698118793, 48.84642711690982], [2.285259906560461, 48.846323903996684], [2.285176423134732, 48.846224209631345], [2.2850906322334312, 48.84612099747731], [2.285007149456548, 48.846021302975686], [2.284923668361634, 48.84592160841505], [2.284837878471267, 48.845818395152456], [2.2847543966626143, 48.84571870044742], [2.284668607429149, 48.84561548794397], [2.284673843306198, 48.845603335530114], [2.284853400673344, 48.84553627209254], [2.285040379699266, 48.84546704029555], [2.285219936125169, 48.84539997629971], [2.285406914162857, 48.84533074482066], [2.285405603484886, 48.84531463202968], [2.285223317766856, 48.84526320190546], [2.285064828829877, 48.84521778837666], [2.285062448079692, 48.84521690985752], [2.284909883459695, 48.84514672248424], [2.2847610932062192, 48.84507806481422], [2.284612304707219, 48.845009406963065], [2.284459739926091, 48.84493921989379], [2.284310952220478, 48.844870561659306], [2.284158389626535, 48.84480037330591], [2.2841431671327, 48.844800212967534], [2.284074443464857, 48.84482972007614], [2.283956095978865, 48.84488119487832], [2.283943524842908, 48.844875503086065]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 79, "zemmour_eric": 97.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-94", "circ_bv": "13", "num_bureau": 94, "roussel_fabien": 19.0, "nb_emargement": 1125.0, "nb_procuration": 73.0, "nb_vote_blanc": 13.0, "jadot_yannick": 50.0, "le_pen_marine": 107.0, "nb_exprime": 1108.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1529.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "60", "geo_point_2d": [48.84621791618217, 2.2839458188282085], "melenchon_jean_luc": 314.0, "poutou_philippe": 7.0, "macron_emmanuel": 387.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.360507046667604, 48.85056021066022], [2.360503422529474, 48.85057191348652], [2.360506290866548, 48.85066754916522], [2.360508319861463, 48.85080315218703], [2.36051245338859, 48.8509409446781], [2.360514482410185, 48.85107654766647], [2.360514093981119, 48.85107877149372], [2.360491354086836, 48.851171197162884], [2.36043340827373, 48.851327649462156], [2.36041066949046, 48.85142007510256], [2.3604100586453782, 48.85142132194014], [2.360326106337272, 48.85150492232225], [2.360272271065576, 48.85159245286472], [2.360269201664453, 48.8515954807685], [2.360152089271941, 48.85167152541351], [2.360068136135933, 48.85175512649506], [2.360036046855992, 48.851786698477], [2.360072615796194, 48.8518091593797], [2.360145970304764, 48.85190226071538], [2.360258209841616, 48.85204689065511], [2.360331565016435, 48.8521399918571], [2.360326217647938, 48.85215195615519], [2.3602178742809032, 48.85219266532883], [2.360117307339026, 48.85222790654909], [2.36011169129828, 48.8522401041315], [2.360212720143916, 48.85236426237734], [2.360269900693248, 48.85243080552147], [2.360287941292432, 48.852434614508326], [2.360364207242248, 48.85240976568316], [2.360424962012088, 48.852387984334655], [2.3604420461866082, 48.85239021611563], [2.360585083233622, 48.85250642163335], [2.36069859255762, 48.85259907881318], [2.360812103659084, 48.85269173498561], [2.360955142359011, 48.85280794002945], [2.36095565882971, 48.85280838796777], [2.36105965068761, 48.85290588552432], [2.3611526840556483, 48.852991959344216], [2.361256676648544, 48.85308945671343], [2.361349709296086, 48.85317553125793], [2.361442743624676, 48.853261604831424], [2.361546737298425, 48.8533591019249], [2.361548124790682, 48.85336020474015], [2.361619702672197, 48.8534047097974], [2.36170676743818, 48.853463618719346], [2.361709377254903, 48.85346584684797], [2.361791241684351, 48.85356458278022], [2.361898865201358, 48.85369518877644], [2.361980730350066, 48.85379392455866], [2.362088354826716, 48.8539245294582], [2.362170219332099, 48.854023265083164], [2.362252085510526, 48.854122000650634], [2.3623597113448422, 48.85425260526755], [2.362360146909761, 48.85425309593685], [2.36244898180878, 48.85434918751241], [2.362539678775931, 48.854444383284665], [2.36262851296944, 48.85454047470314], [2.362719210597538, 48.8546356703229], [2.362737205887462, 48.8546388032734], [2.362831423265753, 48.854605349087365], [2.362895105199931, 48.85458293547258], [2.362932767983725, 48.854569473945936], [2.36293212319085, 48.854552877471825], [2.363044255161261, 48.85451341279556], [2.363237050805224, 48.854445557567935], [2.363412863781684, 48.854383678707784], [2.363605658465616, 48.85431582287837], [2.363781470566604, 48.85425394346936], [2.363974265664281, 48.85418608614609], [2.364150076889793, 48.85412420618825], [2.364342869653551, 48.85405634915524], [2.364518680003589, 48.85399446864864], [2.36452443920428, 48.85399057805979], [2.364588353960928, 48.85390681636646], [2.364652610598624, 48.853822606772944], [2.3647165263169603, 48.85373884410644], [2.364780782540386, 48.85365463443137], [2.36478897978039, 48.85365007686148], [2.364961775618575, 48.85361531584849], [2.365142107877117, 48.85357920507326], [2.365314901882026, 48.853544443540876], [2.365495233639626, 48.85350833313046], [2.365668028536622, 48.853473571093176], [2.365821410615433, 48.853442856430014], [2.36584570846116, 48.853437286011754], [2.365838755181359, 48.853420603944365], [2.365764270482957, 48.85330581331276], [2.365691666957772, 48.85319392311318], [2.365619065107057, 48.85308203286549], [2.365544580013804, 48.85296724205496], [2.365536826343123, 48.85296235882536], [2.365369993629926, 48.852921180367105], [2.365202966866697, 48.85287995477682], [2.365036136043825, 48.85283877585722], [2.364869109819827, 48.85279754889857], [2.364702278150992, 48.852756370402496], [2.364535252455274, 48.8527151429748], [2.364368421324969, 48.85267396311091], [2.364201397509324, 48.85263273612063], [2.364193167842773, 48.8526270039808], [2.364137485340157, 48.85250986499835], [2.364081763259559, 48.85239263942806], [2.364026081268788, 48.852275499469805], [2.363970358315696, 48.85215827471496], [2.363914676825893, 48.85204113468017], [2.363858955747752, 48.851923908956714], [2.363803274747726, 48.85180676974467], [2.363747552808066, 48.85168954393741], [2.363738505161638, 48.851683629338574], [2.363542724051201, 48.85164444556895], [2.363348257833871, 48.85160552568775], [2.363152477310425, 48.85156634127686], [2.362958011687034, 48.85152741985941], [2.362951138037277, 48.85152427419463], [2.362803947543067, 48.851397132933684], [2.362652169452773, 48.85126384692871], [2.362651569859221, 48.85126328703434], [2.362638241119477, 48.85124974730053], [2.362634414129394, 48.85124074506064], [2.362617718971213, 48.851237483202205], [2.362448197173726, 48.85118137134295], [2.3622775464670482, 48.85112488628498], [2.362108025391141, 48.85106877483736], [2.361937376784641, 48.85101228929581], [2.361767856441315, 48.85095617736053], [2.361597208572274, 48.85089969132812], [2.361427687609836, 48.85084357799866], [2.3612570404782582, 48.85078709147536], [2.3610875216001, 48.85073097856489], [2.360916875205984, 48.850674491550684], [2.36074735706041, 48.85061837815259], [2.360576710041152, 48.8505618906403], [2.360507046667604, 48.85056021066022]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 100, "zemmour_eric": 92.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "4-5", "circ_bv": "07", "num_bureau": 5, "roussel_fabien": 12.0, "nb_emargement": 1193.0, "nb_procuration": 90.0, "nb_vote_blanc": 8.0, "jadot_yannick": 121.0, "le_pen_marine": 46.0, "nb_exprime": 1183.0, "nb_vote_nul": 2.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1438.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1193, "quartier_bv": "15", "geo_point_2d": [48.85264330212303, 2.3626300740639143], "melenchon_jean_luc": 247.0, "poutou_philippe": 5.0, "macron_emmanuel": 511.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.401434135087281, 48.86832123279652], [2.401440358679704, 48.86831917745785], [2.401485740319282, 48.868273051657354], [2.401529444118161, 48.86823092759365], [2.401530287035945, 48.86822993983932], [2.401620140471388, 48.86810708544129], [2.401707955893776, 48.86798882268679], [2.401797808494415, 48.867865968128584], [2.401885624470156, 48.86774770522477], [2.401975476235894, 48.86762485050643], [2.402063290038571, 48.8675065874396], [2.402153140969424, 48.86738373256114], [2.402240953962413, 48.86726546933822], [2.402250386452694, 48.86725616063326], [2.402250344083705, 48.86724654739747], [2.402338156624772, 48.867128284088594], [2.402424395278222, 48.86701302293149], [2.4025122070305143, 48.866894759469965], [2.402598446275415, 48.866779498169926], [2.40268625723894, 48.866661234555714], [2.402772494349027, 48.866545973099164], [2.4028603058869242, 48.866427709339085], [2.402946542225341, 48.866312447732824], [2.403034351611362, 48.86619418381331], [2.403120588541241, 48.86607892206411], [2.403206823726399, 48.86596366023394], [2.403294631933634, 48.86584539608619], [2.403323458593067, 48.86583648885396], [2.403316559163385, 48.86582307948627], [2.403336371706069, 48.865796394142286], [2.403404366884446, 48.865704815243035], [2.403488026198615, 48.865591781490856], [2.403575833140665, 48.865473517097065], [2.403659491701062, 48.86536048410073], [2.403747297864009, 48.86524221955644], [2.403830955680943, 48.86512918641664], [2.403918761064796, 48.86501092172185], [2.404002418148564, 48.864897887539264], [2.404086073495935, 48.864784854179184], [2.404173879083366, 48.86466658926724], [2.404174086627631, 48.86466632049849], [2.404254476268965, 48.864566660117184], [2.404338131900642, 48.864453626553896], [2.404339095155455, 48.864447469069525], [2.404292967183833, 48.864327517515235], [2.404247227376179, 48.86420844741616], [2.404201099817432, 48.86408849669983], [2.404155361802846, 48.86396942564746], [2.404109233304292, 48.863849474863066], [2.404063495699232, 48.86373040464916], [2.404017368997069, 48.86361045291098], [2.403971631811812, 48.863491382636276], [2.403970573971896, 48.86347077706434], [2.403926718192679, 48.863469641316044], [2.403804447039317, 48.86352008875342], [2.403684278407946, 48.86357105736655], [2.403562006771506, 48.86362150545092], [2.403441839032072, 48.86367247382272], [2.403423290270065, 48.86367005566696], [2.403306916855053, 48.86356003112195], [2.403193237611327, 48.863452369863744], [2.40307686516842, 48.86334234507347], [2.402963186875205, 48.86323468357557], [2.402846815404394, 48.863124658539974], [2.402733138071786, 48.86301699590312], [2.402719598978412, 48.86300720285548], [2.402702577525193, 48.86300950745477], [2.402578644286007, 48.863077459140406], [2.402465126684798, 48.863140371528026], [2.402351608809528, 48.86320328380444], [2.402227673288558, 48.863271235107916], [2.402225699972143, 48.86327214617698], [2.402051804947888, 48.863338093131], [2.401870197360735, 48.86340638723721], [2.401696301438392, 48.863472333666735], [2.401514692906932, 48.86354062812446], [2.401340796086498, 48.863606574029454], [2.40115918662105, 48.86367486793947], [2.400985288902525, 48.8637408133199], [2.400832871011054, 48.86379819633828], [2.400658973830871, 48.86386414124405], [2.400506553845752, 48.86392152473296], [2.400490244802651, 48.86392016597344], [2.400439204601779, 48.86388732986487], [2.400388723309227, 48.863856036205206], [2.400372512083383, 48.86385482631078], [2.400240033094652, 48.86390591145894], [2.400118005548022, 48.86395338583104], [2.39999597641593, 48.86400086006987], [2.399863498049586, 48.864051944801275], [2.399856851331176, 48.86406083203281], [2.3998671146156783, 48.864114640695504], [2.3998754615459412, 48.86415364289197], [2.399886039763767, 48.86416130076018], [2.400112694862002, 48.86419439963218], [2.400364545554341, 48.864231465396536], [2.400368600572464, 48.864247950841715], [2.400213336410623, 48.86430953130645], [2.400064831780086, 48.864368376382885], [2.399909565537198, 48.864429956440006], [2.399761061593694, 48.8644888002407], [2.399605794632831, 48.86455037989702], [2.399457288629493, 48.86460922420683], [2.399302022313628, 48.86467080346922], [2.399153515623991, 48.86472964739569], [2.399147833237737, 48.86473409218674], [2.399116697269647, 48.86478625678923], [2.399074303125857, 48.8648580325265], [2.399087890131229, 48.86487027241714], [2.399278644523042, 48.864862072042904], [2.399470877590388, 48.864853894972526], [2.399661633225031, 48.86484569399457], [2.399853866171723, 48.864837516308924], [2.400044620323015, 48.86482931471359], [2.400236853149146, 48.864821136412694], [2.400249707483523, 48.86483440404207], [2.400160410982839, 48.86494283873634], [2.400054734041497, 48.86507013764014], [2.399965436741275, 48.865178571266576], [2.399859758845413, 48.865305869971166], [2.399770459372191, 48.86541430342217], [2.39966478052159, 48.86554160192746], [2.399575481591291, 48.865650036116065], [2.399469801786045, 48.86577733442204], [2.399380502056085, 48.86588576754281], [2.399355427108769, 48.86589458923271], [2.399353050601012, 48.86589924397807], [2.399421154114741, 48.86597672297643], [2.399515691048094, 48.866085308696725], [2.399623784300283, 48.866208280710865], [2.399718320702724, 48.86631686714084], [2.399826414924066, 48.86643983804701], [2.399920953532114, 48.866548424301016], [2.400022879035147, 48.8666658223455], [2.400117417099787, 48.86677440841538], [2.400219343498076, 48.8668918053693], [2.400313883745482, 48.86700039126859], [2.40041581101833, 48.867117788930535], [2.400510350732583, 48.867226373746355], [2.4006048921937593, 48.867334959382994], [2.400706820777052, 48.86745235676156], [2.40072523030774, 48.86747350154175], [2.400726499111429, 48.867487514184205], [2.400742511435205, 48.86749331504479], [2.400818641527348, 48.86758075479836], [2.4008924331343042, 48.867664236495614], [2.400966226340829, 48.86774771814793], [2.401060768335266, 48.867856303366445], [2.40106118767943, 48.86785682348338], [2.401146912133199, 48.867976608914184], [2.401223416121883, 48.86807955391417], [2.4012999204128382, 48.86818249885571], [2.401385647314683, 48.86830228408712], [2.401434135087281, 48.86832123279652]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 38, "zemmour_eric": 56.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "20-4", "circ_bv": "15", "num_bureau": 4, "roussel_fabien": 23.0, "nb_emargement": 1186.0, "nb_procuration": 61.0, "nb_vote_blanc": 15.0, "jadot_yannick": 127.0, "le_pen_marine": 43.0, "nb_exprime": 1168.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1447.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "79", "geo_point_2d": [48.865342857920005, 2.40176164799081], "melenchon_jean_luc": 526.0, "poutou_philippe": 8.0, "macron_emmanuel": 305.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3912698980077, 48.884338871379626], [2.391246906717861, 48.88433421559065], [2.391108835606557, 48.884278353393604], [2.390948256219567, 48.884214228650805], [2.390781004091626, 48.88414655966745], [2.390620424151027, 48.88408243447037], [2.390453172882893, 48.88401476412168], [2.3902925937524833, 48.88395063847724], [2.390273330175917, 48.883954314846], [2.39018922850641, 48.88406544244196], [2.390111334340295, 48.884172099567806], [2.390027230609781, 48.88428322702103], [2.3899493371602443, 48.884389883128044], [2.389947938299269, 48.88439323767779], [2.389932447619547, 48.8845317168613], [2.38991696724539, 48.884669309343955], [2.389901476401187, 48.88480778848868], [2.389885994499624, 48.88494538092582], [2.389870503490831, 48.88508386003177], [2.38985502278897, 48.88522145243731], [2.389839531615792, 48.885359931504475], [2.389824050749924, 48.88549752387145], [2.389808559412257, 48.88563600289983], [2.3897930770189513, 48.88577359522129], [2.389777585516687, 48.88591207421091], [2.389762104323098, 48.88604966650074], [2.3897589497569323, 48.88606784823959], [2.38976195148508, 48.88607015591467], [2.389908858693441, 48.886082943807], [2.390011952302663, 48.886093353535735], [2.390033128865637, 48.88608802410797], [2.390035342880231, 48.8860756211222], [2.390080435407997, 48.88602597973228], [2.390110650410565, 48.8859923658342], [2.390124124928616, 48.88598807095021], [2.390326175109735, 48.88600557196469], [2.390525941163722, 48.88602249623509], [2.390727991613452, 48.886039996571], [2.390927757919569, 48.88605692106978], [2.391129808637905, 48.88607442072703], [2.391329575217183, 48.88609134365561], [2.39153162620411, 48.88610884263427], [2.391731393046018, 48.88612576489193], [2.391933444301527, 48.88614326319201], [2.392133212759096, 48.88616018568494], [2.392332979993456, 48.886177106938106], [2.392535031650322, 48.88619460422218], [2.392734799136799, 48.886211525703736], [2.392936851062225, 48.88622902230917], [2.393136618821789, 48.886245942220505], [2.393338671015761, 48.88626343814737], [2.393343942541402, 48.88626465556085], [2.393406091444936, 48.8862893951566], [2.3934786966127453, 48.88631594856169], [2.393488427177472, 48.88631683871956], [2.393583837561549, 48.886302063166085], [2.393682490747689, 48.88628553319041], [2.393687673744788, 48.886285336404235], [2.393783487700488, 48.886293868697216], [2.393889248574692, 48.886301811847794], [2.393894687983164, 48.88630149494204], [2.39399610408574, 48.886281553172516], [2.394118775425757, 48.88625885902786], [2.394132519999664, 48.88626156989033], [2.394147807750501, 48.886255653258075], [2.394151079025971, 48.88625532267195], [2.394247886060827, 48.886253396892066], [2.39434606737421, 48.886252319752046], [2.394359473928196, 48.88624352563534], [2.394363504948395, 48.88612276421186], [2.394368098942349, 48.885996041309824], [2.39437212991293, 48.885875280758135], [2.394376723863961, 48.88574855782721], [2.394380754805944, 48.885627796348786], [2.394385348714153, 48.88550107338897], [2.394392221293018, 48.88535582507515], [2.394396816512948, 48.88522910209048], [2.394403687660421, 48.88508385373316], [2.394408282828449, 48.88495713071668], [2.394401576150872, 48.884941900912075], [2.394381146665787, 48.884939823560764], [2.394298344445791, 48.88490198561692], [2.39422457873735, 48.884867834698824], [2.39421885680503, 48.88486631017216], [2.3940327114310023, 48.88484705797059], [2.393846356563452, 48.88482753911726], [2.393660211465733, 48.884808286335904], [2.393473856887129, 48.88478876600287], [2.393287712065726, 48.88476951264172], [2.393101359129016, 48.884749991735184], [2.392915214583936, 48.884730737794186], [2.39272886055153, 48.88471121719952], [2.39254271628278, 48.884691962678765], [2.392356363902864, 48.88467244061131], [2.392170218546953, 48.88465318550386], [2.391983866445448, 48.88463366285592], [2.391978874650275, 48.88463244680031], [2.391811619839909, 48.88456477928236], [2.391641237096783, 48.88449490577492], [2.39147398317741, 48.884427236877634], [2.391303601337233, 48.884357362881], [2.391274419469236, 48.88434555566834], [2.3912698980077, 48.884338871379626]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 52, "zemmour_eric": 161.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-24", "circ_bv": "16", "num_bureau": 24, "roussel_fabien": 12.0, "nb_emargement": 1155.0, "nb_procuration": 32.0, "nb_vote_blanc": 12.0, "jadot_yannick": 56.0, "le_pen_marine": 51.0, "nb_exprime": 1139.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1598.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1154, "quartier_bv": "75", "geo_point_2d": [48.88532872321015, 2.3919819102940316], "melenchon_jean_luc": 473.0, "poutou_philippe": 9.0, "macron_emmanuel": 281.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.397262833491116, 48.87023104717901], [2.397280596897876, 48.87019571447833], [2.397411051413105, 48.87009311852943], [2.397539221008798, 48.869992134232575], [2.397669674504808, 48.86988953798294], [2.397797843087821, 48.86978855428983], [2.397928295564624, 48.8696859577394], [2.398056463145369, 48.869584973750754], [2.398186914602972, 48.869482376899605], [2.398315081191845, 48.86938139171615], [2.398317449218995, 48.869378673233946], [2.39836935431862, 48.86928386076733], [2.398412977397345, 48.869195427909595], [2.398415176564124, 48.869192692388324], [2.398546299542989, 48.86908137852253], [2.398673446681075, 48.86897431997811], [2.398800593286258, 48.86886726218759], [2.398931714622378, 48.868755947866795], [2.3990588601741463, 48.8686488888815], [2.39918998040871, 48.8685375742558], [2.399205556075694, 48.86853467833138], [2.399238980775944, 48.868542996797075], [2.3993816257605403, 48.868580009935535], [2.399561781641489, 48.868624845556525], [2.399629608535608, 48.868642444974185], [2.3996462720879093, 48.8686387198646], [2.399731152739257, 48.86854586273659], [2.399818595058225, 48.86844894349033], [2.399818704125601, 48.868448824425386], [2.399903584160158, 48.86835596715917], [2.399982479228037, 48.86827152010492], [2.400067357318584, 48.868178662700885], [2.400146251842186, 48.868094216424446], [2.40015789263365, 48.868076913952756], [2.40013359918099, 48.86806834022601], [2.399979914628735, 48.86799461202184], [2.399824758296591, 48.867919813215906], [2.399671073246106, 48.86784608549772], [2.3995159177998002, 48.867771286281396], [2.399362234998135, 48.8676975572643], [2.399207080437666, 48.86762275763757], [2.399053397148137, 48.867549028207186], [2.398898243473503, 48.867474228170096], [2.398897919418281, 48.867474076353155], [2.398875752801482, 48.86747048638537], [2.398861873152836, 48.86748260630439], [2.398731817162328, 48.86760168550203], [2.398601319474642, 48.867719651646816], [2.398470821196024, 48.86783761763669], [2.398340763425178, 48.86795669637124], [2.398210263962695, 48.86807466205175], [2.398080204994128, 48.868193741376906], [2.3980796570780543, 48.868194204478336], [2.398076706022555, 48.868196535109995], [2.398075715473146, 48.868197316149555], [2.39795694798112, 48.86829111507852], [2.397835568215794, 48.8683866733356], [2.397716801212308, 48.8684804729163], [2.397595420565332, 48.86857603091352], [2.3974766527081, 48.86866982934059], [2.397355271179268, 48.86876538707793], [2.397236502447584, 48.86885918614994], [2.397115120036987, 48.86895474362731], [2.397114902605919, 48.86895491970155], [2.39700409952962, 48.869046155073], [2.39687346378566, 48.869154434462025], [2.39676265986221, 48.869245669593504], [2.396632021752835, 48.869353948692584], [2.396521216971601, 48.869445184483375], [2.396390579233619, 48.869553462407], [2.3962797736052153, 48.86964469795784], [2.396149134865005, 48.869752975598374], [2.396038328389218, 48.869844210909214], [2.395907688636342, 48.869952489166], [2.395811275062916, 48.87003547353623], [2.395804184519731, 48.87007321346693], [2.395830548714453, 48.87007840531217], [2.395963551880561, 48.87010047179372], [2.396143746285826, 48.870119963090495], [2.396332658427607, 48.87013762116759], [2.396512853099492, 48.87015711190807], [2.396701764148308, 48.87017476849587], [2.396881959086802, 48.87019425868003], [2.397070871748261, 48.87021191559085], [2.397251066953359, 48.87023140521864], [2.397262833491116, 48.87023104717901]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 54, "zemmour_eric": 44.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-7", "circ_bv": "15", "num_bureau": 7, "roussel_fabien": 28.0, "nb_emargement": 1032.0, "nb_procuration": 38.0, "nb_vote_blanc": 11.0, "jadot_yannick": 88.0, "le_pen_marine": 48.0, "nb_exprime": 1020.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1314.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1034, "quartier_bv": "79", "geo_point_2d": [48.86891291535857, 2.3980305646718967], "melenchon_jean_luc": 433.0, "poutou_philippe": 6.0, "macron_emmanuel": 267.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406738053597103, 48.858263616974845], [2.406738953168738, 48.85826888260249], [2.406832084490984, 48.858332474691395], [2.406976498831525, 48.858430943829845], [2.407104517556276, 48.85851835684748], [2.4072489329371383, 48.85861682474135], [2.407376951212647, 48.85870423744617], [2.407521367623597, 48.85880270499478], [2.407649386802667, 48.858890118292756], [2.407793804243816, 48.8589885854961], [2.407921825709841, 48.859075997595454], [2.40794214985113, 48.859075463213756], [2.408060832241036, 48.85898031424537], [2.408175511342355, 48.85888778493038], [2.408294192868274, 48.858792636613764], [2.408408871152291, 48.85870010616019], [2.408527551824651, 48.85860495759605], [2.4086422292811562, 48.8585124269032], [2.408643601853599, 48.85851110085737], [2.408755032917717, 48.858379600692835], [2.408869316787435, 48.85824599834588], [2.408883121036193, 48.85823745800754], [2.408877270467717, 48.858225387779974], [2.408836782574307, 48.85809369816031], [2.408794981904027, 48.85795700346504], [2.408754495790054, 48.857825313792425], [2.408712695550871, 48.8576886190353], [2.408672208500728, 48.85755692839699], [2.408630410055731, 48.857420233584826], [2.408589923411902, 48.857288543786105], [2.408548124035095, 48.857151848905445], [2.408525418450638, 48.85714708166491], [2.4084165431132902, 48.85721476333101], [2.408318327984643, 48.85727660239511], [2.408298118990597, 48.85727558064021], [2.4081964941379352, 48.85718845222042], [2.408051219007421, 48.8570643605169], [2.407949596342472, 48.856977231877636], [2.407804322388786, 48.856853139850706], [2.407702699185881, 48.856766010978475], [2.407686987558173, 48.856750406898534], [2.407663298536096, 48.856759036678866], [2.407586521964007, 48.856791532201605], [2.407449299858073, 48.856849750950886], [2.407273240645326, 48.856924268483084], [2.4071360164768922, 48.85698248685941], [2.406959957730571, 48.857057003928496], [2.406822732872649, 48.857115221039315], [2.40681947498727, 48.857128430669974], [2.406942773156361, 48.857229490635795], [2.407065258699414, 48.857329422254395], [2.40718855782085, 48.857430481948725], [2.407311044297563, 48.85753041419693], [2.407434344371355, 48.857631473619655], [2.407556831802199, 48.857731404698924], [2.40755569758497, 48.85774353215096], [2.40742056775218, 48.857829557251875], [2.407288959438696, 48.85791305898803], [2.407153828736072, 48.85799908287532], [2.407022219566898, 48.85808258430538], [2.40688708661106, 48.85816860877087], [2.406755477949099, 48.85825210990156], [2.406738053597103, 48.858263616974845]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 25, "zemmour_eric": 71.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-39", "circ_bv": "15", "num_bureau": 39, "roussel_fabien": 21.0, "nb_emargement": 970.0, "nb_procuration": 23.0, "nb_vote_blanc": 17.0, "jadot_yannick": 22.0, "le_pen_marine": 81.0, "nb_exprime": 944.0, "nb_vote_nul": 8.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1396.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 969, "quartier_bv": "80", "geo_point_2d": [48.85791892985488, 2.4078684798031067], "melenchon_jean_luc": 493.0, "poutou_philippe": 7.0, "macron_emmanuel": 183.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.404399990271298, 48.84006487657287], [2.404412169883321, 48.84005853107431], [2.404467921862401, 48.840059468774726], [2.404664697516543, 48.8400604959126], [2.404846517068887, 48.840063554617814], [2.405028338015171, 48.840066612154104], [2.40522511233462, 48.840067639262635], [2.405406933317359, 48.84007069622347], [2.405603707669938, 48.84007172180996], [2.405604543884865, 48.84007175294586], [2.4058151723100742, 48.840083871374816], [2.40601189818347, 48.840096089479324], [2.406222526801731, 48.84010820719075], [2.406419252862464, 48.84012042462509], [2.406629881684005, 48.84013254071973], [2.406826607921828, 48.840144758383204], [2.406829202570587, 48.84014507703151], [2.407024501606757, 48.84018227149965], [2.407224150392294, 48.84021979118453], [2.407419449990353, 48.84025698500542], [2.407619099346376, 48.84029450402862], [2.407814399506111, 48.84033169720223], [2.408014049432611, 48.8403692155638], [2.4080187791284953, 48.840369534859015], [2.408245532355963, 48.84036107680588], [2.4084793747879703, 48.84034971966871], [2.408706126492038, 48.84034126073566], [2.408939968744971, 48.84032990179862], [2.408972458996475, 48.840318957041134], [2.408972471411782, 48.84030572662859], [2.408934384467423, 48.840174379480125], [2.408896566910279, 48.84004572631654], [2.40885848171982, 48.83991437822077], [2.408820664538673, 48.83978572500324], [2.40878284754411, 48.839657071758985], [2.4087447615516853, 48.83952572447384], [2.408706944943316, 48.839397070276306], [2.408668860694462, 48.83926572294319], [2.408631044451973, 48.83913706959104], [2.408592959221946, 48.83900572219644], [2.408578346308419, 48.83898211099033], [2.408542054736055, 48.83898256020588], [2.408358414462129, 48.8389318499781], [2.408171335869119, 48.838880284249036], [2.40798769630609, 48.838829574346825], [2.407800617084515, 48.83877800802652], [2.407616978252714, 48.83872729665124], [2.407429901127391, 48.83867572975321], [2.407246263016507, 48.838625017804176], [2.407059185262737, 48.83857345031492], [2.406875549235273, 48.83852273779889], [2.40668847221526, 48.838471169725146], [2.406504835546424, 48.838420456628576], [2.406317760622767, 48.838368887977126], [2.406134124664717, 48.83831817520617], [2.405947049112426, 48.83826660596345], [2.405918284060719, 48.838273996154804], [2.405926282192487, 48.83831327320468], [2.4059339254872922, 48.838350810924766], [2.405901281301012, 48.83835809910531], [2.405734153172022, 48.83830678868697], [2.405554646100002, 48.83825297834608], [2.405349351347428, 48.83818994879363], [2.4051698464373272, 48.83813613787648], [2.405151933108478, 48.838140431384325], [2.405056670665036, 48.83827130123624], [2.404964040306824, 48.83840130811481], [2.4048687769148422, 48.838532177786554], [2.40477614562427, 48.83866218448926], [2.404680881283736, 48.838793053980794], [2.40458824906089, 48.83892306050767], [2.404492983771789, 48.83905392981903], [2.404400350616657, 48.83918393617], [2.40438622363841, 48.8391890227632], [2.404314291491355, 48.83917834621338], [2.4041700502546712, 48.839165660941795], [2.404152457589764, 48.83915247322495], [2.404115160577128, 48.83915421296788], [2.404042461536862, 48.83914781968556], [2.403966699903572, 48.83914617321341], [2.403930438738871, 48.839149428985955], [2.403923616532448, 48.839176740049844], [2.403950020913387, 48.8393243793404], [2.4039738739791012, 48.83946375785884], [2.403997727172487, 48.83960313635507], [2.404024131979355, 48.83975077557292], [2.404047985438485, 48.83989015402335], [2.4040743905331152, 48.840037793192145], [2.404086429273974, 48.84004567849557], [2.404230869507443, 48.84005618478874], [2.404356937051619, 48.84005830552787], [2.404399990271298, 48.84006487657287]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 57, "zemmour_eric": 72.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-39", "circ_bv": "08", "num_bureau": 39, "roussel_fabien": 19.0, "nb_emargement": 936.0, "nb_procuration": 41.0, "nb_vote_blanc": 12.0, "jadot_yannick": 79.0, "le_pen_marine": 75.0, "nb_exprime": 917.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1210.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 936, "quartier_bv": "45", "geo_point_2d": [48.839381129384606, 2.4064493553427386], "melenchon_jean_luc": 241.0, "poutou_philippe": 8.0, "macron_emmanuel": 314.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.387526865820916, 48.87612927178807], [2.387481368509905, 48.87613919155932], [2.387462727006404, 48.876145849259], [2.387428103436099, 48.87615944895738], [2.387422011855493, 48.87616974391637], [2.3874838585083, 48.8763066869006], [2.387544142861123, 48.87644039323993], [2.387543617226971, 48.87644648262447], [2.387467652506292, 48.876566965042564], [2.387384703635765, 48.876695346463116], [2.3873753052485203, 48.87670057204742], [2.387175263703212, 48.876731850350694], [2.386976892031031, 48.876762906642355], [2.386776848643652, 48.87679418427112], [2.386578476496595, 48.87682523990084], [2.38637843263055, 48.8768565168621], [2.386180060008526, 48.876887571829855], [2.386176908933817, 48.87688781378079], [2.3860235573405513, 48.87688776661586], [2.38580264139594, 48.87688710552153], [2.385649289805101, 48.87688705787717], [2.385565917326711, 48.87688680805215], [2.385538362119522, 48.87688840322716], [2.385538276302655, 48.876906309378825], [2.385551630131734, 48.877017246619594], [2.38556400672086, 48.877126193107735], [2.3855763833724772, 48.87723513868459], [2.385589738730343, 48.877346075895], [2.385602115477429, 48.877455022346744], [2.385615469583072, 48.877565959525164], [2.385620439299708, 48.877572213797485], [2.385703396667898, 48.87761688300658], [2.385786402534677, 48.87766172957269], [2.385791315547428, 48.87766770745169], [2.385815541055611, 48.87781356921794], [2.385838635623893, 48.8779546380197], [2.38586173168061, 48.87809570680596], [2.385885956232354, 48.878241567595005], [2.385881580804496, 48.87824919755296], [2.38583294149351, 48.87827840110327], [2.385783676485641, 48.8783095529702], [2.385779633901766, 48.87831739957175], [2.385809336457529, 48.87844595206252], [2.385839174358811, 48.87857668340242], [2.385868877209409, 48.87870523584816], [2.385898715408592, 48.87883596714243], [2.385928418543427, 48.87896452044244], [2.385958257040616, 48.879095251691105], [2.385987960480899, 48.87922380404682], [2.386017799276099, 48.87935453524983], [2.386002878388195, 48.879364817203474], [2.385819851099787, 48.879352010810095], [2.385666612103663, 48.87934168716329], [2.385654604211596, 48.879334234852614], [2.385619776763864, 48.87919753248146], [2.38558364513611, 48.879057318700404], [2.38554881807052, 48.878920615375], [2.385512686825813, 48.87878040153727], [2.385491898143831, 48.878774332270645], [2.38535201913262, 48.878833332396084], [2.385220702811047, 48.87888896876751], [2.3850808231847243, 48.87894796856989], [2.384949504921052, 48.87900360463104], [2.384948914457644, 48.87900384081929], [2.384776879651736, 48.87906885615408], [2.384589657634105, 48.87913998145901], [2.384417621940647, 48.87920499537024], [2.384230397579634, 48.87927612009755], [2.384227777390783, 48.87928645700712], [2.384242927035629, 48.87929837190836], [2.384443249052561, 48.879321529196964], [2.384632118739715, 48.879343441066375], [2.384832441092526, 48.87936659860205], [2.385021311106864, 48.87938850985658], [2.385210181280124, 48.879410420812704], [2.385410505521566, 48.87943357648746], [2.385599376011385, 48.87945548772797], [2.385799699235745, 48.87947864274353], [2.385800291665202, 48.87947870244071], [2.385970973633615, 48.87949327747596], [2.386128552128293, 48.87950681829836], [2.386286132068278, 48.87952035892015], [2.3864568143091702, 48.879534933262185], [2.386458202896259, 48.87953500513033], [2.386645784346158, 48.87953838641919], [2.3868296611532642, 48.87954164861398], [2.387017242640621, 48.879545030220044], [2.3872011194944482, 48.87954829184431], [2.387384996360727, 48.87955155408538], [2.387572577930387, 48.879554933922044], [2.387756454853953, 48.87955819469332], [2.387944037824533, 48.8795615748542], [2.388127913431333, 48.87956483504795], [2.388315496449935, 48.87956821462677], [2.388315831846954, 48.87956821723979], [2.388375754696856, 48.87955707853122], [2.388369471781446, 48.879538135337405], [2.388351897691479, 48.87949224181286], [2.388343597759341, 48.87943803730077], [2.388343132519765, 48.87942320048665], [2.388338031788617, 48.879418074329344], [2.388324093948482, 48.87932704854189], [2.388305233599403, 48.87921004024637], [2.388282996062681, 48.87906480990327], [2.3882641372643523, 48.87894780158039], [2.38824189859075, 48.8788025711881], [2.388223039969146, 48.878685563730166], [2.388204180079502, 48.87856855535062], [2.388166812693076, 48.87843107354819], [2.388166659934151, 48.87843038118263], [2.38813432597334, 48.878315598091554], [2.3880969589528, 48.87817811623576], [2.388064626665644, 48.87806333310658], [2.388027258657222, 48.87792585029131], [2.387994926680281, 48.877811067117044], [2.387957560389692, 48.87767358515482], [2.387925227359544, 48.877558801928444], [2.38792507382424, 48.8775580600948], [2.3879077107664672, 48.877436756796975], [2.387894372420972, 48.8773239502574], [2.387877008149343, 48.87720264692238], [2.3878636699302, 48.87708984035542], [2.387863634662214, 48.877089592858965], [2.387844074192813, 48.87696769369709], [2.3878267115205, 48.876846390322555], [2.38782628435314, 48.876844916831836], [2.387774158164345, 48.876721842941386], [2.387727649628591, 48.87660712016094], [2.387681139923762, 48.87649239824273], [2.387629015804706, 48.876369323357444], [2.3875825078927573, 48.876254601383174], [2.387530382881371, 48.8761315264214], [2.387526865820916, 48.87612927178807]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 45, "zemmour_eric": 119.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-16", "circ_bv": "16", "num_bureau": 16, "roussel_fabien": 37.0, "nb_emargement": 1375.0, "nb_procuration": 68.0, "nb_vote_blanc": 11.0, "jadot_yannick": 93.0, "le_pen_marine": 37.0, "nb_exprime": 1360.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1719.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1375, "quartier_bv": "76", "geo_point_2d": [48.87823647234297, 2.386834059654359], "melenchon_jean_luc": 549.0, "poutou_philippe": 8.0, "macron_emmanuel": 403.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305474074261746, 48.854322070293854], [2.305457650660822, 48.854298724772974], [2.305330774493236, 48.85421278311388], [2.305205744696865, 48.85412454607916], [2.305192332519828, 48.854115460231974], [2.305052043745167, 48.85402043240576], [2.304927016245216, 48.85393219507245], [2.304786728435817, 48.85383716781879], [2.30466170183677, 48.85374892929445], [2.304521415004618, 48.85365390171405], [2.304396387919896, 48.853565663789276], [2.304363937285587, 48.853540010704606], [2.3042809639040502, 48.853562557259295], [2.304138476731654, 48.85365462880387], [2.303996245216408, 48.853745990268926], [2.303853757039334, 48.85383806145926], [2.303711523161502, 48.85392942256287], [2.303569035342529, 48.85402149340692], [2.303426800464784, 48.85411285415699], [2.303284311641022, 48.85420492464677], [2.303142075763358, 48.85429628504332], [2.302999585935003, 48.85438835517889], [2.302857349069446, 48.854479714322615], [2.302714856861555, 48.85457178499527], [2.3025726189960682, 48.85466314378546], [2.302430127158202, 48.85475521321253], [2.3022878882807403, 48.85484657254846], [2.302145395438261, 48.854938641621274], [2.302003155560852, 48.855030000603655], [2.30186066171355, 48.855122069322206], [2.301718420836186, 48.85521342795109], [2.301575924621437, 48.85530549630736], [2.30143368274411, 48.85539685458268], [2.301291186887444, 48.85548892259267], [2.301148944010049, 48.855580280514424], [2.30100644714864, 48.85567234817012], [2.300864203283439, 48.855763704839], [2.300721705405214, 48.85585577303973], [2.300579460539935, 48.855947129355066], [2.300436960306183, 48.85603919629423], [2.300294714428946, 48.856130553155296], [2.3001522145532682, 48.85622261974813], [2.300009967676036, 48.856313976255635], [2.299867466795488, 48.85640604249419], [2.299725218918254, 48.856497398648095], [2.299582717033029, 48.85658946453233], [2.299440468155788, 48.85668082033266], [2.29929796390292, 48.85677288585464], [2.299155714025662, 48.85686424130138], [2.299013210130757, 48.85695630647701], [2.298870959265577, 48.85704766067092], [2.298728454353875, 48.85713972639153], [2.298586202488671, 48.857231080231784], [2.298443696584168, 48.85732314469878], [2.298301443706824, 48.857414499084776], [2.2981589354347323, 48.85750656318945], [2.298016681557344, 48.85759791722181], [2.297874173643309, 48.85768998098017], [2.297731918765769, 48.85778133465892], [2.297589409846909, 48.85787339806294], [2.297447153969414, 48.8579647513881], [2.297304644045721, 48.85805681443778], [2.297162387180295, 48.85814816651002], [2.297019874876633, 48.85824023009665], [2.296877617011138, 48.858331581815264], [2.296735105065622, 48.858423645055574], [2.296592846200056, 48.858514996420546], [2.296450333261723, 48.85860705840724], [2.296308073383934, 48.85869841031785], [2.296165559440843, 48.85879047195019], [2.296023298562964, 48.8588818235072], [2.29588078225209, 48.85897388477715], [2.295738521736927, 48.859065235988524], [2.295596004421175, 48.85915729690413], [2.295453741543091, 48.85924864775383], [2.295311224585376, 48.85934070832308], [2.295168960719347, 48.85943205791987], [2.295026442744477, 48.85952411903401], [2.294884177878334, 48.85961546827717], [2.294741912501152, 48.859706818242934], [2.294599393032404, 48.859798877926416], [2.294457126655094, 48.85989022753856], [2.294314604818396, 48.85998228685961], [2.294172337440949, 48.86007363611808], [2.294029815962381, 48.86016569509278], [2.293887547584792, 48.860257043997585], [2.293745025101305, 48.86034910261791], [2.293602755735658, 48.86044045026974], [2.293460232235053, 48.86053250943494], [2.293317961869356, 48.860623856733135], [2.293175436013052, 48.86071591463662], [2.293115961661671, 48.86076417160578], [2.293124365284309, 48.86077358351523], [2.293260081170926, 48.86087267093342], [2.293385293898888, 48.860956882919794], [2.293510508382301, 48.86104109567613], [2.293646225700159, 48.861140182632475], [2.293771439695186, 48.86122439419454], [2.293907157986785, 48.861323480838614], [2.2940323728441028, 48.861407692113715], [2.294102530981856, 48.86145891311077], [2.294133465340643, 48.861491742983766], [2.2942495603471222, 48.86144788723822], [2.294392427348913, 48.861356009098365], [2.294534678599061, 48.86126507417222], [2.294677543233762, 48.86117319566878], [2.2948197934870223, 48.86108226038875], [2.294962658480593, 48.86099038153787], [2.29510490773707, 48.86089944590394], [2.29524777035141, 48.86080756758879], [2.29539001862338, 48.86071663070169], [2.295532881596599, 48.86062475203905], [2.295675128859535, 48.86053381569735], [2.295817989477874, 48.86044193577192], [2.295960235744153, 48.86035099907636], [2.296103096721267, 48.86025911880344], [2.2962453419907902, 48.86016818175398], [2.296388200600988, 48.860076301117566], [2.296530444873663, 48.85998536371422], [2.2966733038427423, 48.85989348273036], [2.296815547118776, 48.85980254497316], [2.296958403720859, 48.859710663625776], [2.29710064600006, 48.85961972551475], [2.297243502961028, 48.859527843819876], [2.297385744243501, 48.859436905354976], [2.297527983666611, 48.859345966705554], [2.297670839123351, 48.85925408447789], [2.29781307891257, 48.859163145482626], [2.297955932002356, 48.85907126289151], [2.298098170794967, 48.85898032354238], [2.298241024243646, 48.85888844060379], [2.298383262039451, 48.85879750090083], [2.29852611310909, 48.8587056184981], [2.298668349920308, 48.858614677542], [2.298811201348849, 48.85852279479181], [2.298953437163471, 48.85843185348186], [2.299096286225109, 48.85833997036825], [2.299238521030848, 48.85824902960378], [2.299381370463487, 48.858157145243375], [2.29952360427255, 48.858066204125116], [2.299666451338405, 48.857974319401286], [2.299808684150797, 48.857883377929205], [2.299951531575457, 48.85779149285792], [2.299991361702686, 48.85776602588504], [2.300012827905065, 48.857765154969954], [2.300033465893634, 48.85773878428224], [2.300135867475686, 48.8576733093915], [2.3002738412234702, 48.85758568084922], [2.300416071914917, 48.857494738623316], [2.3005540447185853, 48.85740710974381], [2.300696274433506, 48.85731616717029], [2.300834246293063, 48.857228537953645], [2.300976475031364, 48.85713759503246], [2.301114445946918, 48.85704996547864], [2.301256673708707, 48.85695902220979], [2.3013946436801618, 48.85687139231881], [2.301536869102687, 48.85678044869436], [2.30167483812995, 48.85669281846623], [2.30181706393884, 48.85660187450209], [2.301955032022016, 48.85651424393684], [2.302097256854413, 48.856423299625], [2.30223522399351, 48.85633566872262], [2.302377447849421, 48.85624472406318], [2.302515414044444, 48.85615709282362], [2.3026576369237732, 48.85606614781656], [2.302795602174829, 48.855978516239865], [2.302937824077687, 48.85588757088518], [2.303075788384682, 48.85579993897136], [2.303113835808103, 48.85577567018306], [2.303113651781948, 48.85577169845191], [2.303255872577195, 48.855680751802964], [2.303392208262625, 48.85559313611262], [2.303534428072373, 48.8555021900173], [2.303670762834221, 48.85541457309618], [2.303812981670298, 48.855323626655164], [2.303949314133725, 48.855236009394694], [2.304091531996241, 48.855145062608], [2.304227864874886, 48.8550574459233], [2.304370081775957, 48.85496649789163], [2.304506413719018, 48.85487888087549], [2.304648629634432, 48.85478793339747], [2.304784959291109, 48.85470031514267], [2.304927174232982, 48.85460936731896], [2.305063504316892, 48.85452174874065], [2.305199833930327, 48.854434130899435], [2.305342046058883, 48.85434318255296], [2.30539700497412, 48.85435170913879], [2.305409538037184, 48.85434342596183], [2.305474074261746, 48.854322070293854]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 153, "zemmour_eric": 158.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "7-24", "circ_bv": "02", "num_bureau": 24, "roussel_fabien": 1.0, "nb_emargement": 917.0, "nb_procuration": 84.0, "nb_vote_blanc": 5.0, "jadot_yannick": 23.0, "le_pen_marine": 36.0, "nb_exprime": 911.0, "nb_vote_nul": 1.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1148.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 917, "quartier_bv": "28", "geo_point_2d": [48.857498718521256, 2.2992911137055927], "melenchon_jean_luc": 55.0, "poutou_philippe": 0.0, "macron_emmanuel": 466.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.30779564622692, 48.837707499342294], [2.307842612445556, 48.837733657707915], [2.307864935850447, 48.83774609117021], [2.307900239366771, 48.8377326609824], [2.30809914899345, 48.83772407242482], [2.308284227484771, 48.837717912799064], [2.308469305932348, 48.837711752886904], [2.308668214023105, 48.83770316337506], [2.308853292373032, 48.83769700286873], [2.309052201706585, 48.83768841272606], [2.309237279958649, 48.83768225162553], [2.309436189172624, 48.8376736608443], [2.30945035100284, 48.837680608397086], [2.309492372407195, 48.837800556297616], [2.309552816892712, 48.83791732691077], [2.3095665026759082, 48.83792339661263], [2.3097919353383842, 48.8379147181967], [2.310006001832829, 48.83790824200439], [2.310220069624547, 48.83790176633613], [2.310445502084648, 48.83789308668835], [2.310659568409043, 48.83788660932631], [2.310885000730503, 48.837877928850126], [2.31090723035396, 48.83787041136712], [2.310909673879177, 48.83785593389064], [2.310854132739398, 48.83777954697186], [2.31078943600952, 48.837700079088066], [2.310801035259623, 48.83768683164098], [2.310990543927114, 48.837683144140236], [2.311145639497134, 48.83767846311998], [2.3111545331337853, 48.83767591515659], [2.311279715830218, 48.83759527265028], [2.311407074009027, 48.83751349133878], [2.311418674701917, 48.837511051574495], [2.311630712625916, 48.83753289727105], [2.31183598029111, 48.83755415952119], [2.3120412481356363, 48.83757542051938], [2.312253286582398, 48.8375972651111], [2.312255301559406, 48.837597373828444], [2.312359677813715, 48.837597395610885], [2.312488613926082, 48.83759799825864], [2.312502292700685, 48.837588298025224], [2.312489532691189, 48.837481447836545], [2.312476687140436, 48.837378194626346], [2.312463927234861, 48.83727134441487], [2.312451083137093, 48.83716809208969], [2.312455220708824, 48.837160871441654], [2.312591603247774, 48.83707434977766], [2.31272434508068, 48.836990710204475], [2.312857085125253, 48.836907070469856], [2.312993466333099, 48.83682054832808], [2.312997413107861, 48.83681880283324], [2.31316961252262, 48.83676872455679], [2.313342211439816, 48.836718493633626], [2.313514410180095, 48.836668415755604], [2.3136870070706452, 48.83661818432265], [2.313859205148195, 48.83656810594373], [2.314031802736666, 48.83651787401659], [2.314203998789353, 48.836467795128996], [2.314376595713306, 48.83641756269983], [2.314548792477516, 48.836367482419924], [2.314721387374719, 48.836317249480935], [2.3147685008249432, 48.83629693098711], [2.314764808181602, 48.83628899086982], [2.314686069891975, 48.83622501088639], [2.314556217784845, 48.83612026893709], [2.314432345148286, 48.8360196136737], [2.314374958071447, 48.83597332416219], [2.314361275443546, 48.83596307563906], [2.314352458054106, 48.83596089718286], [2.314279992725506, 48.835902444428314], [2.31416290195104, 48.83580539914438], [2.314033051940453, 48.8357006565879], [2.313915963441301, 48.83560361105254], [2.313786113055428, 48.835498869100526], [2.313669025469271, 48.83540182330596], [2.313539176094093, 48.835297080167734], [2.313422089420921, 48.83520003411391], [2.313292241044592, 48.83509529068872], [2.313175155284398, 48.83499824437568], [2.3130453092690972, 48.83489350067133], [2.312928223059684, 48.83479645409124], [2.312890283600748, 48.83477880091292], [2.312846902807266, 48.83480311176414], [2.3126949767848, 48.8348883762577], [2.312543733810595, 48.834973978147666], [2.312392490327894, 48.83505958073912], [2.312240561464229, 48.835144843728855], [2.312089316999673, 48.8352304450246], [2.311937388492542, 48.83531570852334], [2.311786143034365, 48.83540130942268], [2.311634212171133, 48.83548657251546], [2.311482965719327, 48.83557217301836], [2.311331033862081, 48.83565743571305], [2.3111797864166412, 48.83574303581952], [2.311027854939677, 48.835828297224616], [2.310876606488816, 48.83591389783395], [2.310724672655622, 48.83599915883315], [2.310573423222905, 48.836084758146725], [2.310421489746217, 48.836170019654894], [2.310270239319852, 48.83625561857205], [2.3101183034869113, 48.83634087967425], [2.310069951841294, 48.836368243874894], [2.310069360648848, 48.83636823686741], [2.310039916399484, 48.83637481501325], [2.309889652531842, 48.836461645873975], [2.309786753734061, 48.836519880041934], [2.309635501250185, 48.83660547812967], [2.309485236044028, 48.83669230846449], [2.309333982552762, 48.836777907057076], [2.309183717721523, 48.836864736108275], [2.309032463234772, 48.836950334306415], [2.308882196029932, 48.83703716385691], [2.308730940559614, 48.83712276076125], [2.308580673717672, 48.8372095899274], [2.308429417251966, 48.837295186437316], [2.308279149410676, 48.83738201521131], [2.308127890575183, 48.83746761221814], [2.307977621734533, 48.83755444059993], [2.307976121827611, 48.837555456305786], [2.307891086037082, 48.83762177586827], [2.30780835464701, 48.83768742518099], [2.30779564622692, 48.837707499342294]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 74, "zemmour_eric": 91.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-39", "circ_bv": "12", "num_bureau": 39, "roussel_fabien": 24.0, "nb_emargement": 1149.0, "nb_procuration": 49.0, "nb_vote_blanc": 13.0, "jadot_yannick": 54.0, "le_pen_marine": 102.0, "nb_exprime": 1130.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1590.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1148, "quartier_bv": "58", "geo_point_2d": [48.83656349326799, 2.311568307374557], "melenchon_jean_luc": 454.0, "poutou_philippe": 2.0, "macron_emmanuel": 281.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.340427435702178, 48.88039119213905], [2.340457874125353, 48.88039099470162], [2.340667296713783, 48.8803774594412], [2.340871531032728, 48.880365095859695], [2.341075763891219, 48.88035273192213], [2.34128518754005, 48.8803391946886], [2.3414894201987613, 48.8803268300451], [2.34169884362454, 48.880313292986955], [2.341903076083463, 48.8803009276375], [2.342112499308817, 48.880287388956184], [2.342316731568039, 48.88027502290077], [2.342526154581686, 48.88026148349556], [2.342730386629645, 48.88024911763347], [2.3429398094316802, 48.88023557750434], [2.343144041291167, 48.88022321003706], [2.343335782766853, 48.88021096347108], [2.34354001443578, 48.88019859532804], [2.343731755727726, 48.8801863481276], [2.343754590411022, 48.88018434637768], [2.343758535150392, 48.880182399361516], [2.34391575664537, 48.88014710339942], [2.344090082797, 48.880109166973014], [2.344247305209575, 48.880073870580645], [2.344371857351806, 48.880046766059905], [2.344412781621514, 48.88003765419766], [2.344400226912215, 48.88000411947214], [2.344268941512106, 48.879892947083526], [2.344142589363598, 48.87978669393483], [2.344011305061542, 48.879675521241715], [2.34388495261402, 48.87956926689343], [2.343758602034293, 48.87946301330827], [2.343627319379068, 48.87935183926214], [2.343500969852446, 48.87924558538409], [2.343369688283913, 48.87913441193278], [2.343355259478302, 48.87913127685553], [2.343169122885584, 48.87916561395036], [2.342992912287215, 48.87920094053784], [2.342964875661939, 48.87920006360409], [2.342954053860956, 48.87920683375037], [2.342912488038361, 48.8792151672711], [2.342683692070856, 48.879259729608954], [2.34246591486023, 48.879303388843894], [2.342456250213102, 48.879302954443624], [2.342260600490547, 48.87924357407468], [2.342066157665792, 48.8791833510421], [2.341870508837314, 48.87912397002922], [2.341676066910175, 48.879063746356564], [2.3414804189756753, 48.87900436469967], [2.341314816538148, 48.87895307296558], [2.341308475696304, 48.8789491223772], [2.341279635744141, 48.878940189789475], [2.341172585181473, 48.87880724660889], [2.3410913926541372, 48.87869241883368], [2.341082643277657, 48.87868754754734], [2.340888000711018, 48.878652319349136], [2.340693473384674, 48.87861953315934], [2.340498831335359, 48.87858430432624], [2.340304304496658, 48.8785515184013], [2.340109662964774, 48.87851628893329], [2.339915136636498, 48.87848350147471], [2.339905421141176, 48.87847730275183], [2.339835165309257, 48.87831819897572], [2.3397571416444283, 48.878155256199946], [2.3397416892358, 48.878149117553356], [2.339694935753785, 48.87815475212567], [2.339665364032371, 48.878156703349234], [2.33961142949991, 48.87815702907568], [2.3396097900845803, 48.87818018689696], [2.339643083035146, 48.878304572277315], [2.339675141752009, 48.87842759283039], [2.339708433641969, 48.87855197905637], [2.339740492665486, 48.87867499956436], [2.339773784881074, 48.87879938484495], [2.339805844211249, 48.87892240530779], [2.339806128234105, 48.87892323336225], [2.33985073789247, 48.87902987688631], [2.339900671015568, 48.87914909994142], [2.339945281061088, 48.87925574340838], [2.339982674612291, 48.879345026791924], [2.339989156465934, 48.8793627002621], [2.33999778542483, 48.879367068233854], [2.340010324080139, 48.879397007831905], [2.340059897404015, 48.87952176149416], [2.340109831477524, 48.8796409844088], [2.340159403919817, 48.879765737095404], [2.340209338455041, 48.87988495994213], [2.340259273218887, 48.88000418275514], [2.340308846353574, 48.880128936237995], [2.340358781579144, 48.88024815898307], [2.340408356547813, 48.88037291240462], [2.340427435702178, 48.88039119213905]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 66, "zemmour_eric": 81.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "9-23", "circ_bv": "01", "num_bureau": 23, "roussel_fabien": 14.0, "nb_emargement": 1147.0, "nb_procuration": 105.0, "nb_vote_blanc": 17.0, "jadot_yannick": 123.0, "le_pen_marine": 41.0, "nb_exprime": 1127.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 0, "nb_inscrit": 1395.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "36", "geo_point_2d": [48.879573208093866, 2.341706282402339], "melenchon_jean_luc": 252.0, "poutou_philippe": 2.0, "macron_emmanuel": 493.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.399132261258475, 48.84809850675559], [2.3991326678881713, 48.848098104987905], [2.399149181868327, 48.848081729748685], [2.399124234543938, 48.84804890395277], [2.3991052499364622, 48.847951712559414], [2.399085407864669, 48.84784651979149], [2.399066423392961, 48.84774932927365], [2.399046581476699, 48.84764413648016], [2.399036454241378, 48.84763702208292], [2.398972871861169, 48.84765976033001], [2.39879037533212, 48.84768015090062], [2.398614428073082, 48.84769968735073], [2.398431931263968, 48.847720077373864], [2.398255982373223, 48.84773961328928], [2.398080034713203, 48.84775914895242], [2.39789753748668, 48.84777953815934], [2.397721589557497, 48.84779907329468], [2.397539092050926, 48.84781946195411], [2.397523566107599, 48.84781269077731], [2.39749938635115, 48.84774610493762], [2.397479876042474, 48.84768746411718], [2.397473933102453, 48.84768182761325], [2.397305146841251, 48.84761023425258], [2.3971320908583422, 48.84753801026889], [2.396963305532449, 48.84746641641674], [2.396790249138239, 48.84739419192238], [2.396785171392669, 48.847382805673696], [2.396873692150926, 48.84725686924481], [2.396953513181919, 48.847144943104574], [2.397033335232667, 48.847033016906686], [2.397121854807492, 48.846907079355375], [2.397201674769859, 48.84679515301441], [2.397290194885969, 48.846669216217826], [2.397370014122484, 48.84655728974067], [2.397458532075675, 48.84643135188646], [2.397538350586246, 48.84631942527311], [2.39762686908084, 48.846193488173654], [2.397706686865574, 48.846081561424086], [2.397795203186782, 48.84595562416635], [2.397875021618672, 48.84584369638817], [2.397963537129102, 48.845717758979006], [2.3980433534622962, 48.84560583195709], [2.398131869524438, 48.84547989440336], [2.398211685142209, 48.84536796634596], [2.398208572176943, 48.84532342266635], [2.398173443057533, 48.845320399491605], [2.398040181946535, 48.8453318415734], [2.397852297491384, 48.84534701522077], [2.397659810664144, 48.84536354231572], [2.397471925994363, 48.84537871446598], [2.39727943755645, 48.84539524184095], [2.397091552661557, 48.84541041339342], [2.396899065348518, 48.84542694016275], [2.396711180228724, 48.84544211111744], [2.396518692688408, 48.84545863637501], [2.396330805970629, 48.845473807624366], [2.3961383181926372, 48.84549033226946], [2.395950432622866, 48.84550550202859], [2.395757944596682, 48.845522026960545], [2.395570057439353, 48.845537196114975], [2.395377569175605, 48.84555372043448], [2.395189683155886, 48.845568888998024], [2.395142489428772, 48.8455536401487], [2.395108570116321, 48.84557141620616], [2.395068821220292, 48.84561902679841], [2.394961076148549, 48.845737446074494], [2.3948634173139, 48.84585441973305], [2.394755672651365, 48.84597283880604], [2.39465801291469, 48.84608981227219], [2.394626646238163, 48.84612428505257], [2.39461052185924, 48.84613285886096], [2.394605842350012, 48.84614518963205], [2.394529461994224, 48.84622913479364], [2.394454143403128, 48.84631479585001], [2.394451035954097, 48.84632458040023], [2.394485532636489, 48.84634325654569], [2.394661043343437, 48.84633887629397], [2.394827057473561, 48.84633310411064], [2.394841205090481, 48.8463405701758], [2.394874974114527, 48.84647098025897], [2.39490768085285, 48.846600532354785], [2.39494144884908, 48.84673094238185], [2.394974155915802, 48.846860494429365], [2.395007925609438, 48.846990904414085], [2.395040633015007, 48.84712045551386], [2.395074401670383, 48.84725086634184], [2.39510710940436, 48.847380417393204], [2.395140879767605, 48.84751082727956], [2.395173586456926, 48.84764037917497], [2.395207357155082, 48.84777078901211], [2.395240065535456, 48.847900340865955], [2.395273836568331, 48.84803075065396], [2.395306543914482, 48.848160302452506], [2.395340315282178, 48.84829071219128], [2.39537302432984, 48.848420263049036], [2.395390404684311, 48.84845864177155], [2.3954093400531082, 48.848459070220194], [2.395472550435998, 48.84844982409738], [2.395642184265597, 48.848429906025515], [2.395840222314597, 48.84840093705538], [2.396009855844534, 48.848381018461374], [2.396010423407564, 48.84838096017052], [2.396204518059287, 48.84836463449234], [2.396390378636394, 48.848348113168576], [2.396584473036333, 48.848331787772835], [2.396770333386243, 48.848315264959055], [2.396964427544809, 48.84829893894646], [2.39715028628404, 48.84828241643436], [2.397344380211628, 48.8482660889056], [2.39746140441503, 48.84825568551512], [2.397477910342506, 48.848252196407294], [2.397491680275567, 48.84824148969468], [2.397560515914117, 48.84823536997171], [2.39775211292207, 48.84821870004594], [2.397937971125389, 48.84820217630907], [2.398129567890562, 48.848185505778346], [2.398315427218461, 48.84816898146151], [2.398507023740844, 48.84815231032584], [2.398692881478394, 48.84813578451597], [2.398884477747603, 48.84811911367468], [2.39907033660971, 48.84810258728481], [2.399132261258475, 48.84809850675559]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 85, "zemmour_eric": 94.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-16", "circ_bv": "08", "num_bureau": 16, "roussel_fabien": 15.0, "nb_emargement": 1127.0, "nb_procuration": 72.0, "nb_vote_blanc": 9.0, "jadot_yannick": 105.0, "le_pen_marine": 42.0, "nb_exprime": 1112.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1379.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1127, "quartier_bv": "46", "geo_point_2d": [48.84688326297553, 2.396443590193682], "melenchon_jean_luc": 287.0, "poutou_philippe": 3.0, "macron_emmanuel": 422.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339740860663706, 48.85196142190459], [2.339733503526451, 48.85194179333001], [2.33985781413742, 48.85182622577391], [2.339987966618847, 48.85170312042293], [2.340112276107496, 48.85158755167841], [2.340242428742891, 48.851464446931004], [2.340244199917461, 48.85146308427949], [2.340396449470313, 48.85136884732918], [2.34053631779396, 48.85128083203962], [2.340676184282507, 48.85119281657211], [2.340828432264617, 48.85109857904924], [2.3409682977705, 48.85101056322586], [2.34112054605448, 48.85091632532336], [2.341121480902551, 48.850915788159234], [2.341179318717364, 48.85088550782983], [2.341190337638037, 48.850883718526056], [2.341251757443836, 48.85089143862284], [2.34133635358644, 48.85087936372405], [2.341340484192561, 48.8508782847509], [2.341499151292663, 48.850817383982104], [2.341654088423499, 48.850756025390524], [2.341809026552176, 48.850694666602415], [2.341967692545619, 48.850633765202225], [2.342122628590279, 48.85057240509451], [2.342281293844856, 48.850511503271804], [2.342436229145397, 48.85045014365055], [2.342594895023913, 48.850389241412735], [2.34269012933611, 48.8503638649586], [2.342690370137092, 48.85035827947515], [2.342671048281281, 48.85031705111862], [2.342639250700565, 48.850264881884904], [2.342641007660244, 48.850257399892506], [2.342609271794021, 48.85021762772689], [2.342566798681973, 48.850147940588855], [2.34249560047349, 48.85003123546125], [2.342421330530981, 48.849909378063614], [2.342350131600183, 48.84979267371625], [2.342275862337937, 48.84967081620219], [2.342204665432881, 48.84955411085144], [2.342130396850684, 48.849432253220975], [2.342059200585976, 48.849315548657955], [2.34198493268402, 48.849193690911065], [2.341913737082255, 48.8490769853372], [2.341839469860431, 48.8489551274739], [2.341768273536434, 48.84883842268025], [2.341694006994634, 48.848716564700545], [2.341622812696331, 48.84859985890358], [2.341548546834747, 48.84847800080747], [2.34147735318801, 48.84836129489893], [2.3414030879951673, 48.84823943758572], [2.341331895000187, 48.8481227315656], [2.341257630498806, 48.848000873236735], [2.341186436792742, 48.84788416709756], [2.3411121729714512, 48.84776230865231], [2.341040981268394, 48.84764560330838], [2.3409667181270812, 48.84752374474675], [2.340895527087027, 48.84740703839199], [2.340895396350439, 48.847406816429235], [2.340864290464701, 48.847349045568755], [2.340847112569986, 48.84734429044644], [2.340774610510467, 48.84721556852262], [2.340705493135882, 48.847088400397446], [2.340632990419647, 48.84695967835073], [2.340563875092617, 48.846832510122056], [2.340489716826535, 48.84680860556016], [2.340439402455212, 48.84682337628427], [2.340382661228992, 48.846967372986285], [2.34033790315031, 48.84708477868799], [2.3402811613705152, 48.847228774408805], [2.340236401476046, 48.84734618003752], [2.340179659119692, 48.84749017657564], [2.340134900134666, 48.84760758214637], [2.340133533522712, 48.84760982840401], [2.3400432299417, 48.84771476762225], [2.339943266711157, 48.847838569699206], [2.339852960999404, 48.84794350784546], [2.339752996866696, 48.8480673106373], [2.339662691738067, 48.84817224862593], [2.339562726725972, 48.848296050334056], [2.339472419443787, 48.84840098904928], [2.339372453540895, 48.84852479057303], [2.339282145490576, 48.84862972822376], [2.339182178685478, 48.84875353046238], [2.339091871218174, 48.8488584679555], [2.339088388445933, 48.84886112520801], [2.338933841802727, 48.84894046000429], [2.338792668440181, 48.84901336074723], [2.338651494694069, 48.84908626041947], [2.338496946706663, 48.84916559553465], [2.338491717337067, 48.84916724842208], [2.338320342955877, 48.849194006411274], [2.338127010990296, 48.84922437862261], [2.337955634871401, 48.8492511360805], [2.337762303855312, 48.84928150680923], [2.33775344081474, 48.84928835133392], [2.337770461880901, 48.84932778078627], [2.337799303014968, 48.84945882403993], [2.337829256040236, 48.8495891368498], [2.337858097478223, 48.84972017915928], [2.337888052151894, 48.84985049283067], [2.337916893882383, 48.8499815350952], [2.337946848853419, 48.85011184872125], [2.337975690876413, 48.85024289094082], [2.338005644782018, 48.85037320451404], [2.338034487097517, 48.85050424668867], [2.338064442674514, 48.85063455932479], [2.338093285271103, 48.85076560235375], [2.338123239782663, 48.85089591493702], [2.338152082683191, 48.85102695702176], [2.338182038843316, 48.85115727046652], [2.338210882036367, 48.85128831250627], [2.338240838493777, 48.85141862590568], [2.338241666168525, 48.851420628853965], [2.338315211133107, 48.851541456748684], [2.338396102193735, 48.85165926019686], [2.338406331446757, 48.85168383681357], [2.338414939232488, 48.85168724710302], [2.338495832107517, 48.85180505047586], [2.338570264020754, 48.85191610886575], [2.338651156239562, 48.85203391210182], [2.338725588810735, 48.852144970372315], [2.338806481735962, 48.852262773479104], [2.338880914965081, 48.852373831630075], [2.338918710314614, 48.85242462652429], [2.338961384143829, 48.85241626894695], [2.338965999463498, 48.85241437971659], [2.33909234483799, 48.852335777863985], [2.339216516380807, 48.85226242240336], [2.339342860997574, 48.85218382117482], [2.339467031825634, 48.852110465444234], [2.339562022659666, 48.85205434836158], [2.3396883662621732, 48.85197574585419], [2.339717545809296, 48.8519585079398], [2.339740860663706, 48.85196142190459]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 97, "zemmour_eric": 97.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "6-3", "circ_bv": "02", "num_bureau": 3, "roussel_fabien": 13.0, "nb_emargement": 1087.0, "nb_procuration": 128.0, "nb_vote_blanc": 10.0, "jadot_yannick": 79.0, "le_pen_marine": 36.0, "nb_exprime": 1077.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 5, "nb_inscrit": 1401.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1088, "quartier_bv": "22", "geo_point_2d": [48.84984644468977, 2.340054854256405], "melenchon_jean_luc": 186.0, "poutou_philippe": 8.0, "macron_emmanuel": 512.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.326580807580767, 48.875563737628106], [2.326596475919284, 48.875519147546946], [2.326630631724606, 48.875394033981074], [2.326664362477418, 48.8752619211483], [2.326698516576121, 48.875136808425495], [2.326732246990165, 48.875004695542785], [2.326766402131994, 48.87487958187982], [2.326800132207371, 48.87474746894717], [2.326834285642505, 48.87462235612731], [2.326868015379123, 48.87449024314472], [2.326902169857479, 48.8743651293847], [2.326935899255238, 48.874233016352214], [2.326970052027026, 48.87410790343526], [2.3270037810860362, 48.873975790352866], [2.327037934900936, 48.87385067649575], [2.327067691489037, 48.87373412209282], [2.327066645473578, 48.87373245693075], [2.327070617606027, 48.87371689820144], [2.327069936093171, 48.873712241186794], [2.327018959669632, 48.87360151658599], [2.32696142282836, 48.87350050390871], [2.326910446842717, 48.8733897792405], [2.3268529090825822, 48.87328876648396], [2.326799884684336, 48.8732063945133], [2.326742347352811, 48.8731053807876], [2.3267414401914, 48.87310331169954], [2.326709208948142, 48.872972730572236], [2.326675098810535, 48.872840805129236], [2.326642867896028, 48.87271022395305], [2.326608758098352, 48.87257829845974], [2.326576526137689, 48.872447718126274], [2.326542416691566, 48.87231579168341], [2.326541268305974, 48.872315088233165], [2.326479323534175, 48.87231939378926], [2.326291223221193, 48.8722409280741], [2.326140203495361, 48.872181759322665], [2.326135457700386, 48.87217838705704], [2.326044761021727, 48.87206609013722], [2.325952162543742, 48.87195107990534], [2.325861466656032, 48.871838782823495], [2.325768867635329, 48.87172377151917], [2.325678172526821, 48.8716114751746], [2.3255855756781623, 48.871496463712525], [2.325494881372227, 48.87138416630669], [2.325402283957458, 48.87126915557075], [2.325311591805789, 48.87115685801065], [2.325218995211339, 48.87104184620996], [2.325200838997066, 48.87103802777277], [2.325046352129605, 48.87108918637249], [2.324892341030949, 48.87114137540341], [2.324737853553893, 48.87119253360021], [2.324583843203927, 48.871244722237016], [2.32456511920868, 48.87124032042489], [2.324486245361365, 48.87112114329649], [2.324406444877745, 48.87100458964812], [2.324388429820651, 48.87100008928324], [2.324201609175675, 48.87105550793917], [2.3240210101625483, 48.87110925628689], [2.323834188735242, 48.8711646743639], [2.323653588964503, 48.871218422151955], [2.3234667667663462, 48.87127383875078], [2.323286166226319, 48.871327586878465], [2.323099344608987, 48.87138300290606], [2.32291874331135, 48.87143675047401], [2.322738141652704, 48.87149049686766], [2.322551317504911, 48.871545912024025], [2.322370715076968, 48.87159965875721], [2.322183890146662, 48.871655073334644], [2.3221767900062282, 48.87165999119965], [2.322151628700925, 48.871702291351134], [2.32212236289565, 48.87174339820763], [2.322102130120342, 48.87176274447891], [2.3221065516423502, 48.871770583000625], [2.322052034581557, 48.87184716165821], [2.321964771766126, 48.871968326724414], [2.321880988113276, 48.8720860111892], [2.321793725863193, 48.87220717611225], [2.321709941427994, 48.87232486133116], [2.321622678379786, 48.87244602610329], [2.321538893185648, 48.87256371027771], [2.321451627976232, 48.872684874891235], [2.321367842011433, 48.87280255892048], [2.321280577367147, 48.872923723390834], [2.321196790619963, 48.873041408174146], [2.321109525177726, 48.873162572493584], [2.321025737671582, 48.873280256232455], [2.320938471431182, 48.87340142040094], [2.32085468315435, 48.873519103994646], [2.320767414752674, 48.87364026800448], [2.320683625705143, 48.87375795145297], [2.320596357856855, 48.873879116218895], [2.320512568038717, 48.873996799522196], [2.320425299404064, 48.87411796323794], [2.3203415088151083, 48.874235646395995], [2.3202542380191318, 48.87435680995307], [2.320170446659446, 48.87447449296594], [2.320083176428575, 48.87459565637982], [2.319999384286413, 48.87471334014675], [2.319939674244967, 48.87475475727516], [2.319939939450985, 48.874755329862445], [2.320094913775097, 48.87484331121639], [2.320208214850765, 48.874904729349666], [2.320215124736672, 48.87490681098945], [2.320411100642245, 48.87492582778562], [2.320603922249828, 48.87494480567261], [2.3207998984285823, 48.8749638227309], [2.320992720318483, 48.874982799991], [2.321188696793866, 48.87500181551287], [2.321381518954458, 48.87502079304532], [2.3215774957146342, 48.87503980792997], [2.321770319520772, 48.87505878484324], [2.321771023677071, 48.875058840994534], [2.32197334670963, 48.87507141774287], [2.322171280347062, 48.875082577117176], [2.322373602193424, 48.87509515408032], [2.322571537370052, 48.87510631280027], [2.322773859417055, 48.87511888818742], [2.322971793406281, 48.875130046237636], [2.323174116993766, 48.875142621854984], [2.323372051158927, 48.87515377924314], [2.323574374946917, 48.875166353284484], [2.323772309288, 48.87517751001059], [2.3237739950601313, 48.87517767511918], [2.3239687610690343, 48.875205099747205], [2.324176938276406, 48.875235332862815], [2.324239595796119, 48.87524415566263], [2.324246654948643, 48.875248094145576], [2.3242923299120752, 48.87525164535426], [2.324424440230106, 48.875270246474805], [2.324631310131668, 48.87529987155875], [2.324826078412252, 48.87532729479657], [2.325032950143842, 48.8753569182933], [2.325227717485864, 48.87538434086856], [2.325434589672459, 48.87541396366969], [2.3256293574392553, 48.87544138559006], [2.325836230080849, 48.875471007695566], [2.326030998272412, 48.87549842896103], [2.326237871368993, 48.875528050370946], [2.326432641348668, 48.875555470989184], [2.326532217863935, 48.87556972906415], [2.326580807580767, 48.875563737628106]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 96, "zemmour_eric": 138.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "8-11", "circ_bv": "01", "num_bureau": 11, "roussel_fabien": 14.0, "nb_emargement": 923.0, "nb_procuration": 48.0, "nb_vote_blanc": 9.0, "jadot_yannick": 58.0, "le_pen_marine": 48.0, "nb_exprime": 913.0, "nb_vote_nul": 1.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1141.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 923, "quartier_bv": "31", "geo_point_2d": [48.873467486247684, 2.32391678595585], "melenchon_jean_luc": 110.0, "poutou_philippe": 3.0, "macron_emmanuel": 420.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.317633358915719, 48.88091141512228], [2.317637239394282, 48.880899882587364], [2.3177802785987263, 48.880834269315635], [2.317912133600702, 48.88077270480914], [2.31805517210941, 48.880707091201415], [2.318187026464436, 48.880645526385024], [2.318192782999835, 48.88063826916042], [2.318194742617658, 48.88049764951821], [2.318196272331368, 48.88036278675179], [2.318197802037157, 48.88022792396879], [2.318199761626089, 48.88008730427411], [2.31820129131475, 48.879952441457334], [2.318203252247259, 48.879811821735196], [2.318204781918789, 48.87967695888464], [2.318206741468043, 48.879536339119475], [2.318196043312116, 48.8795274745945], [2.318029105787696, 48.87950319677237], [2.31786448073967, 48.87947862431951], [2.317697543526395, 48.87945434603399], [2.317532917425667, 48.87942977311635], [2.317365980523544, 48.87940549436741], [2.317201356097231, 48.87938092100053], [2.317192617816259, 48.879376715330004], [2.31711634992646, 48.87929134611269], [2.317044062353909, 48.87921024531176], [2.316971776381733, 48.8791291435697], [2.316895509216474, 48.87904377419251], [2.31687999379844, 48.8790196481984], [2.316853577480778, 48.879021994915774], [2.316701401060644, 48.87895156546645], [2.316556431756713, 48.87888411059743], [2.316404256141297, 48.87881368076157], [2.316259287606026, 48.878746225524324], [2.316107112807131, 48.87867579440271], [2.315962145028713, 48.878608339696385], [2.315954907163079, 48.878606704714926], [2.315697748154203, 48.87859896486318], [2.315451641068636, 48.87859221757015], [2.315414075652138, 48.87859423850984], [2.315409605971554, 48.87861291645762], [2.315406572288742, 48.87865875449345], [2.315398622866139, 48.87874651847392], [2.315390503526504, 48.87886919642058], [2.3153825526811582, 48.87895696037551], [2.31537598450064, 48.87896412470064], [2.315203078711361, 48.879032899998926], [2.315040711778978, 48.87910121283043], [2.315036995754905, 48.87910352534701], [2.314917161769385, 48.87921281859697], [2.314799002203675, 48.879320518685404], [2.314679167219432, 48.87942981167565], [2.314561006657314, 48.879537512407204], [2.314442845618432, 48.879645212112386], [2.314323009139672, 48.879754504713866], [2.314204847104362, 48.879862205062224], [2.31408500962685, 48.87997149740396], [2.313966846618985, 48.88007919659685], [2.313847008142714, 48.88018848867884], [2.313728844138391, 48.88029618851491], [2.313609006026828, 48.880405480344926], [2.313490839686358, 48.88051317901778], [2.31337100057602, 48.88062247058802], [2.313252833239261, 48.880730169903984], [2.313132993130136, 48.88083946121447], [2.313118722083282, 48.880897969225416], [2.313129300669778, 48.880901485164244], [2.313197864578656, 48.88090970093425], [2.313401208171356, 48.88093550007933], [2.31359822793952, 48.88095910871298], [2.313801570548118, 48.88098490806835], [2.313998592048081, 48.881008516049924], [2.314201935059866, 48.88103431382486], [2.314398956928223, 48.88105792114651], [2.314602300331129, 48.88108371824029], [2.314799322567871, 48.881107324902054], [2.315002666362094, 48.88113312131468], [2.315199688967211, 48.881156727316494], [2.315403033152537, 48.88118252304797], [2.315600056126022, 48.88120612838985], [2.315797077914711, 48.881229733399245], [2.316000424044486, 48.88125552812216], [2.316197446201427, 48.8812791324716], [2.316400792722384, 48.881304926513344], [2.316447888931375, 48.8813159829378], [2.316470053798175, 48.88130789316708], [2.31667340056645, 48.88133368674514], [2.316809368517605, 48.88136136811462], [2.316842473543886, 48.88136792251348], [2.316870432902515, 48.881316850567806], [2.316931338431133, 48.881204802852615], [2.316994055509729, 48.88108269917892], [2.317001924168391, 48.88107723024878], [2.317154717039789, 48.881037089468386], [2.317297321492236, 48.88099681035324], [2.317439924372387, 48.88095653015972], [2.317592716540386, 48.88091638971522], [2.317633358915719, 48.88091141512228]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 174, "zemmour_eric": 208.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-3", "circ_bv": "01", "num_bureau": 3, "roussel_fabien": 8.0, "nb_emargement": 1217.0, "nb_procuration": 109.0, "nb_vote_blanc": 4.0, "jadot_yannick": 74.0, "le_pen_marine": 54.0, "nb_exprime": 1205.0, "nb_vote_nul": 9.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1433.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1218, "quartier_bv": "32", "geo_point_2d": [48.880133735289505, 2.315953133024688], "melenchon_jean_luc": 109.0, "poutou_philippe": 1.0, "macron_emmanuel": 541.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347030400002883, 48.86567729401474], [2.347087967247807, 48.865671481742865], [2.34717288073529, 48.865690601839724], [2.347248884165504, 48.865706493199575], [2.3472566845144, 48.8657065789107], [2.347445562950476, 48.86567162252611], [2.34763474100039, 48.86563721247947], [2.347823618942544, 48.86560225459681], [2.348012797842679, 48.86556784485716], [2.348201675279639, 48.86553288637567], [2.348390852326309, 48.86549847512961], [2.348579729258064, 48.865463516049324], [2.348768907154953, 48.86542910511028], [2.348769853684873, 48.86542895647274], [2.348928261585116, 48.86540876106345], [2.3490850863614128, 48.8653880496045], [2.349243492652072, 48.86536785376985], [2.349400317168768, 48.86534714279639], [2.349558723212733, 48.86532694654376], [2.34971554748096, 48.86530623515647], [2.349716872428516, 48.8653060202174], [2.34988691512448, 48.865272419075396], [2.350063273159482, 48.865238267413766], [2.350233315410871, 48.86520466577754], [2.350409671626334, 48.86517051359599], [2.350421069692675, 48.86517165827043], [2.350538381906231, 48.86522323559011], [2.350653188969106, 48.86527371099275], [2.350659547446639, 48.865275185341126], [2.350865771518118, 48.86528721757825], [2.351063801450438, 48.86530025726266], [2.351261831481893, 48.86531329661928], [2.351468054468949, 48.86532532871014], [2.3514695617195303, 48.86532536115984], [2.351694706021255, 48.86531861725501], [2.351933813018148, 48.86531505756649], [2.351991953570594, 48.865307679386085], [2.352010416581188, 48.865290662133624], [2.351992518576465, 48.86525875092908], [2.351939227422899, 48.86516373625196], [2.351868773093915, 48.86503332483485], [2.351797584632477, 48.86490639883942], [2.351727129643013, 48.86477598730127], [2.351655943241291, 48.864649061199465], [2.351585488954518, 48.86451864954761], [2.351600217822997, 48.864470448018984], [2.351553141251799, 48.86444804839252], [2.351476029847241, 48.864319616012274], [2.3514095417033483, 48.864200598822784], [2.351332431019066, 48.86407216632132], [2.351265943530334, 48.863953148126214], [2.351188833566319, 48.86382471550351], [2.351122346710244, 48.8637056981013], [2.35105586015795, 48.86358668064936], [2.350978751254253, 48.86345824784887], [2.350963291802715, 48.863423049955564], [2.350865465598486, 48.86342960533154], [2.350671282497989, 48.86347629459388], [2.350484172290961, 48.86352166751246], [2.350289989868655, 48.863568356159654], [2.350102878999011, 48.86361372847834], [2.349908695891859, 48.863660416502995], [2.349721584359399, 48.863705788221765], [2.3495344738529482, 48.863751160552916], [2.349340288361108, 48.863797847642125], [2.349153177203179, 48.86384321847403], [2.348958991026506, 48.86388990494072], [2.348771879205777, 48.86393527517273], [2.348577692344276, 48.86398196101688], [2.348390579860955, 48.864027330649016], [2.34819639231463, 48.86407401587061], [2.348009277805461, 48.86411938489543], [2.347815090937378, 48.8641660695019], [2.3477680182100302, 48.86417748288063], [2.34775943218866, 48.86417876262276], [2.347740911530741, 48.86418778374688], [2.347600869029615, 48.864221739660294], [2.347417133708149, 48.864265501961725], [2.347230019184501, 48.86431087066708], [2.347046284600128, 48.864354632403135], [2.34685916807033, 48.864400000517634], [2.346675432860095, 48.86444376168079], [2.346673932271626, 48.86444537410953], [2.346694035256017, 48.864489115585634], [2.346725772427303, 48.86459592419135], [2.34676061577852, 48.864697885174046], [2.346795459266024, 48.86479984613718], [2.346827196845827, 48.8649066537868], [2.346858934544493, 48.865013462316924], [2.346894320273281, 48.86515212124341], [2.346894384143321, 48.86515235452222], [2.3469279285974283, 48.8652834974424], [2.346963314693378, 48.865422156314665], [2.346996859506008, 48.86555329828423], [2.347020949209386, 48.86566728401336], [2.347030400002883, 48.86567729401474]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 60, "zemmour_eric": 74.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "2-7", "circ_bv": "01", "num_bureau": 7, "roussel_fabien": 17.0, "nb_emargement": 1192.0, "nb_procuration": 86.0, "nb_vote_blanc": 11.0, "jadot_yannick": 103.0, "le_pen_marine": 37.0, "nb_exprime": 1181.0, "nb_vote_nul": 0.0, "arr_bv": "02", "arthaud_nathalie": 2, "nb_inscrit": 1514.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1192, "quartier_bv": "08", "geo_point_2d": [48.86464861311862, 2.3493284168571833], "melenchon_jean_luc": 267.0, "poutou_philippe": 2.0, "macron_emmanuel": 571.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.286253108921799, 48.866279961958035], [2.286240165285704, 48.86632742709404], [2.286219046402111, 48.86638992466648], [2.286186476562591, 48.86651818363264], [2.286144414619907, 48.866642659057035], [2.286111844438626, 48.86677091797362], [2.286069783476671, 48.86689539335147], [2.286037212953728, 48.867023652218435], [2.28599515025858, 48.86714812663425], [2.285976402834643, 48.86722195567694], [2.285978761296865, 48.86723268998764], [2.286064777713992, 48.86723338567672], [2.286263625869478, 48.86724546456153], [2.286460377914885, 48.86725751173251], [2.2866571300512932, 48.867269558580006], [2.286855978482097, 48.867281636480314], [2.287052730788795, 48.86729368357646], [2.28725157941581, 48.86730575992], [2.287258923333956, 48.86730773455553], [2.287395574405034, 48.867380947617924], [2.287533021934175, 48.86745516083731], [2.287669673777105, 48.867528373577], [2.287807122098113, 48.86760258557243], [2.287943774712999, 48.86767579798942], [2.288081223801083, 48.867750010559476], [2.288097062151341, 48.86775068574586], [2.288180417305854, 48.8677149485633], [2.28829277970653, 48.86766879488459], [2.288296623065722, 48.86765589320184], [2.288195832878997, 48.86756389393817], [2.28809781827268, 48.867474510206584], [2.287997028787892, 48.867382510760365], [2.287899014863966, 48.86729312685132], [2.287798226081314, 48.867201127222614], [2.287700212839774, 48.8671117431361], [2.287697797478104, 48.867105044799814], [2.287730835898472, 48.86696938845481], [2.287763234681137, 48.866846104222745], [2.287770826537725, 48.86683941327539], [2.287954813855774, 48.86678153318669], [2.288133812241116, 48.866725089980115], [2.28831779875209, 48.866667209327474], [2.288496796351318, 48.866610765572176], [2.288675792199544, 48.866554321538196], [2.288859778868324, 48.86649644005157], [2.289038773930435, 48.86643999546895], [2.289222759792129, 48.86638211341834], [2.289401754068122, 48.86632566828704], [2.289585739122731, 48.866267785672484], [2.2896037920407872, 48.86627187334894], [2.289705584064698, 48.866405869000666], [2.289808536843954, 48.86654245346576], [2.28991032993548, 48.86667644801129], [2.290013285137162, 48.866813033174274], [2.29002024836262, 48.86681523651543], [2.290045369812474, 48.8668064154273], [2.290180465273878, 48.86675027353275], [2.2903212861480062, 48.866694013443734], [2.29045638238368, 48.86663787124012], [2.290597202668225, 48.866581609921454], [2.2907322983029, 48.86652546829997], [2.290873117985511, 48.866469206650955], [2.290878590057917, 48.86645797652292], [2.290846634075279, 48.866408700703765], [2.290822217484951, 48.86637167821353], [2.290814669979866, 48.86635571950642], [2.290808408653191, 48.86635392957341], [2.290754721989325, 48.8662725234102], [2.290687382918454, 48.86617030899934], [2.290609280343832, 48.866051880224], [2.290541943206534, 48.86594966571904], [2.290463841293444, 48.865831236825144], [2.290396503363718, 48.86572902220989], [2.290394175063144, 48.86572661973224], [2.290275890820142, 48.8656393568377], [2.290157030992394, 48.86555144646869], [2.290038747544259, 48.86546418332601], [2.289919889891702, 48.865376271816345], [2.28980160723853, 48.86528900842552], [2.289682750373554, 48.86520109756574], [2.289564468515438, 48.865113833926685], [2.289445612462457, 48.86502592191821], [2.289436044428899, 48.86502292423592], [2.289272097184155, 48.865018119515554], [2.289105065321306, 48.865012801605346], [2.289092802618863, 48.86500668692876], [2.289045185642932, 48.864913325786986], [2.289005379831309, 48.86483363978207], [2.289008955770603, 48.864824223239665], [2.2891497235780323, 48.86473679983772], [2.289291212714767, 48.86464872582222], [2.289431980937391, 48.86456130208248], [2.289573469120202, 48.86447322771939], [2.289714235044162, 48.86438580272643], [2.289855723624054, 48.864297728923056], [2.289996488600153, 48.86421030358432], [2.29013797487544, 48.86412222852591], [2.290138735034954, 48.864109658306944], [2.290023312151392, 48.86402538613736], [2.2899123384445073, 48.86394504792749], [2.289909099439936, 48.8639370622556], [2.289942406086895, 48.86383696150815], [2.289975171209769, 48.863737978122316], [2.289972305780711, 48.863730286956226], [2.289847223760413, 48.86363169895541], [2.289723060023168, 48.86353367925639], [2.289597978946578, 48.863435090977646], [2.2894738161345902, 48.86333707190189], [2.289348736013964, 48.863238482445844], [2.289224574139484, 48.86314046309415], [2.289099494950284, 48.86304187425941], [2.288975332650283, 48.86294385462366], [2.288850254417043, 48.86284526461164], [2.288726094417555, 48.86274724470801], [2.288601017115715, 48.86264865531732], [2.288476858065991, 48.86255063423844], [2.288351781707818, 48.86245204456981], [2.288227622220286, 48.86235402410616], [2.28817834667097, 48.86232607592934], [2.288142952947892, 48.86231817413867], [2.288019028636116, 48.8623971915473], [2.287876258316734, 48.86248943408393], [2.287752333193094, 48.86256845120423], [2.287609563295103, 48.86266069341657], [2.287546366913534, 48.86270098863459], [2.287497166014852, 48.86271402952323], [2.287485315683467, 48.862729144538356], [2.287424586039135, 48.862767867019606], [2.287297456118243, 48.86285675925088], [2.287173529242881, 48.8629357757456], [2.28716939062065, 48.86293758577366], [2.287124664442055, 48.862950131536664], [2.287042366379441, 48.86295962859325], [2.28702849386446, 48.862966314474924], [2.287032636807513, 48.86302942872551], [2.287004766743115, 48.863154320323545], [2.286972078588113, 48.86328663342934], [2.286944208240946, 48.86341152498433], [2.286911519783069, 48.863543837143546], [2.286883650516168, 48.863668728663555], [2.286850960367757, 48.863801041666676], [2.286823090818086, 48.863925933143555], [2.286790400354476, 48.86405824609942], [2.286762530521929, 48.86418313753319], [2.286729841118583, 48.864315449550624], [2.286729838257034, 48.86431545942643], [2.286702571057317, 48.864436737219805], [2.2866698813425588, 48.86456904919056], [2.2866426152336, 48.86469032695063], [2.286609923844273, 48.86482263886659], [2.286582657463009, 48.86494391658523], [2.286549965750056, 48.865076229353804], [2.2865226991088, 48.86519750613168], [2.286490007084325, 48.86532981885353], [2.286462740158441, 48.865451096489316], [2.286430047834962, 48.865583408265216], [2.286402780636762, 48.86570468585946], [2.286370089352529, 48.86583699849614], [2.286342820531234, 48.86595827514156], [2.286315551570655, 48.86607955266679], [2.286282859829732, 48.86621186523478], [2.286282680709097, 48.86621250180565], [2.286261738091667, 48.86627447881974], [2.286253108921799, 48.866279961958035]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 130, "zemmour_eric": 238.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-63", "circ_bv": "04", "num_bureau": 63, "roussel_fabien": 9.0, "nb_emargement": 1168.0, "nb_procuration": 69.0, "nb_vote_blanc": 8.0, "jadot_yannick": 40.0, "le_pen_marine": 77.0, "nb_exprime": 1154.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1502.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1167, "quartier_bv": "64", "geo_point_2d": [48.86508131625467, 2.288154649335954], "melenchon_jean_luc": 90.0, "poutou_philippe": 1.0, "macron_emmanuel": 541.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332531995975023, 48.876752538534376], [2.332566076562875, 48.87676076952165], [2.332676836748166, 48.876801467739455], [2.332790922518198, 48.87683876600938], [2.332795959750725, 48.8768396772329], [2.33298846004161, 48.87684917765859], [2.333176906322667, 48.876858290960996], [2.333369406740422, 48.876867791673206], [2.333557851792091, 48.87687690436823], [2.333750352348027, 48.87688640446773], [2.333938798897078, 48.87689551657048], [2.334127244148675, 48.87690462836892], [2.334319744911033, 48.87691412755264], [2.334322299097831, 48.87691409499029], [2.334506693171868, 48.87690030004998], [2.334691488557178, 48.87688902339945], [2.334875882433181, 48.876875228789444], [2.335060677649601, 48.876863951568716], [2.335245071350533, 48.876850155490466], [2.335429866398048, 48.8768388776996], [2.335614259912416, 48.87682508105238], [2.335821553190183, 48.876808785114534], [2.336005946494252, 48.87679498786358], [2.336213239518232, 48.8767786921463], [2.336397632611999, 48.8767648942917], [2.336604925405208, 48.87674859699649], [2.336789318288659, 48.876734798538166], [2.336923967974801, 48.876724211904246], [2.336942419280763, 48.87672777744878], [2.336969015600657, 48.87671947819307], [2.337041657090346, 48.87671376681818], [2.3371046038838, 48.876711949801354], [2.337108864682513, 48.8767120579331], [2.337290993157521, 48.87673582582746], [2.337459493620191, 48.87675919515767], [2.337641623771987, 48.876782963424404], [2.33781012318109, 48.876806332252514], [2.337978624104684, 48.876829700850536], [2.338160753376643, 48.87685346831842], [2.338164796796602, 48.876853623774814], [2.338339598116104, 48.87684311543156], [2.338505436180334, 48.8768317308148], [2.338680235994239, 48.87682122196638], [2.3388460739028822, 48.876809837776754], [2.339020874937968, 48.87679932843829], [2.339186712702442, 48.876787943776606], [2.339233678113393, 48.87678668404288], [2.339246855579359, 48.87677403297245], [2.339276753475662, 48.87672836153495], [2.33930710857851, 48.87668404791118], [2.339318957487404, 48.87667218900916], [2.339303221661645, 48.87664318131221], [2.339262068310274, 48.87653130968552], [2.339215707783716, 48.87639345714194], [2.339174553454359, 48.876281585452325], [2.339128193393223, 48.876143731944346], [2.339087040812426, 48.876031860206865], [2.33906686508871, 48.87597186918246], [2.339053792798781, 48.87594358301681], [2.339000989697032, 48.87594195774662], [2.338901043854648, 48.87594928491775], [2.33876755717499, 48.875961567349364], [2.338752432514117, 48.875954803531286], [2.338703694955073, 48.875823799516624], [2.338657497179682, 48.87570089093828], [2.338608760097117, 48.87556988685483], [2.338562564134217, 48.87544697821909], [2.3385138275279163, 48.8753159740668], [2.338467630650994, 48.87519306535862], [2.338418894521057, 48.87506206113757], [2.338372698093359, 48.87493915236444], [2.338326503258346, 48.874816242668054], [2.3382777678360602, 48.87468523834477], [2.338231572075498, 48.8745623294752], [2.33818283712956, 48.87443132508317], [2.338136641818207, 48.874308416148686], [2.338087907348609, 48.87417741168783], [2.338097118118049, 48.87415844701167], [2.33807970085946, 48.87413891510286], [2.338030965328354, 48.87400791059116], [2.337983565355435, 48.8738808309474], [2.337934831670808, 48.87374982637346], [2.337887430815523, 48.87362274575507], [2.337838697614157, 48.873491741111366], [2.337791297216849, 48.873364661324516], [2.33774389842546, 48.87323758061253], [2.337695165945454, 48.87310657586469], [2.337647766248834, 48.87297949597662], [2.33759903425207, 48.87284849115901], [2.337551635036279, 48.872721410303924], [2.33750290352275, 48.87259040541655], [2.33745550612808, 48.8724633254005], [2.337406773734605, 48.87233232043584], [2.3373593768207472, 48.87220523945276], [2.337310646273766, 48.872074234425895], [2.3372632484545672, 48.87194715426679], [2.3372145183908, 48.871816149170186], [2.33716712105241, 48.87168906804402], [2.337118391471848, 48.87155806287769], [2.337151717203031, 48.87148794958249], [2.33714308910064, 48.87148181416651], [2.337052928657344, 48.87146626797871], [2.33698735113472, 48.87145408562474], [2.336981283981487, 48.8714510086498], [2.336928087762127, 48.87144603470867], [2.3367908477568022, 48.87142053891633], [2.336604914068537, 48.87138873492849], [2.336402097116328, 48.87135105608859], [2.336216163913445, 48.87131925149492], [2.336013348864666, 48.871281572900806], [2.335827416158636, 48.87124976680199], [2.335624600298464, 48.871212087539256], [2.335438668066262, 48.87118028173388], [2.3352527360727002, 48.87114847473944], [2.335049921022628, 48.871110794499565], [2.3348639895029972, 48.87107898779859], [2.334661176379313, 48.871041306005935], [2.334475245345096, 48.87100949869912], [2.334272431398567, 48.87097181713712], [2.334192628699566, 48.870958164638836], [2.33416542691612, 48.87096059173772], [2.334149372261594, 48.87100679601756], [2.334092135501016, 48.87113557982362], [2.3340357159498613, 48.87126397602295], [2.333978478625687, 48.871392759744694], [2.333922058527314, 48.8715211549613], [2.333864820639536, 48.8716499385987], [2.333808399982439, 48.87177833373184], [2.3337511615310502, 48.87190711728492], [2.3336947403037183, 48.87203551323387], [2.3336383188097383, 48.87216390824204], [2.333581079514241, 48.87229269166876], [2.333524658824689, 48.872421086601044], [2.333467418965462, 48.87254986994349], [2.333410996342482, 48.87267826568393], [2.333353755919716, 48.872807048942036], [2.333297332749483, 48.87293544369975], [2.333240091762967, 48.87306422687351], [2.333183668033966, 48.8731926215477], [2.333126426472281, 48.87332140553639], [2.333070002184503, 48.87344980012708], [2.333012760070666, 48.87357858313211], [2.332956335224104, 48.87370697763937], [2.332899092546697, 48.873835760560034], [2.332842667129724, 48.87396415588306], [2.332785425251851, 48.874092938726946], [2.3327289992877, 48.87422133306718], [2.332671755482925, 48.87435011581913], [2.332615328959966, 48.87447851007585], [2.332558084579871, 48.87460729364268], [2.332501657498095, 48.87473568781592], [2.332444412565817, 48.87486447039911], [2.332387984925217, 48.87499286448884], [2.332330739429226, 48.87512164698763], [2.332274311218265, 48.87525004189311], [2.332217065158654, 48.875378824307546], [2.332160636400279, 48.87550721823024], [2.332103389776939, 48.8756360005603], [2.3320469618230772, 48.87576439440705], [2.331989714636004, 48.87589317665269], [2.331933284748493, 48.87602157130765], [2.331876036997572, 48.87615035346886], [2.331819606562731, 48.87627874714101], [2.331762358248057, 48.87640752921788], [2.331736831994473, 48.87643300883442], [2.331749996700137, 48.87644603547466], [2.331800316189641, 48.876466449817656], [2.331969145055851, 48.87652848762932], [2.3321470476779043, 48.87660066188181], [2.332209938094903, 48.87662377044451], [2.332228334026457, 48.876638327203814], [2.332254561681371, 48.876640547376006], [2.332360502421016, 48.8766794751967], [2.332464557337024, 48.87672098069652], [2.332522626355515, 48.876742318391514], [2.332531995975023, 48.876752538534376]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 78, "zemmour_eric": 88.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "9-6", "circ_bv": "01", "num_bureau": 6, "roussel_fabien": 11.0, "nb_emargement": 1103.0, "nb_procuration": 83.0, "nb_vote_blanc": 15.0, "jadot_yannick": 95.0, "le_pen_marine": 52.0, "nb_exprime": 1088.0, "nb_vote_nul": 0.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1397.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1103, "quartier_bv": "34", "geo_point_2d": [48.87442428348392, 2.335442193939176], "melenchon_jean_luc": 209.0, "poutou_philippe": 3.0, "macron_emmanuel": 516.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.361704342455673, 48.87800133960642], [2.361683273215867, 48.87799159810891], [2.36160995134997, 48.87786625201172], [2.361537445805972, 48.877743303332586], [2.361464126003999, 48.87761795712513], [2.361391621149799, 48.87749500832997], [2.361318300684908, 48.87736966199773], [2.361245796509673, 48.87724671398583], [2.361172478119703, 48.87712136664401], [2.361099973270947, 48.87699841850885], [2.36102665557032, 48.876873071948765], [2.360954152785867, 48.87675012280558], [2.360880834422415, 48.876624776120686], [2.36080833231679, 48.876501827760784], [2.360735016028115, 48.876376480066384], [2.36066251461234, 48.876253531590464], [2.360589197649797, 48.8761281846705], [2.360516696934905, 48.876005235179356], [2.360513085151783, 48.876001795715595], [2.360378653430559, 48.87592070755914], [2.360218187808973, 48.87582593072987], [2.360205980335898, 48.875823875258334], [2.360050351399046, 48.875847943263], [2.359863876053234, 48.87587943740431], [2.359708246792278, 48.87590350496304], [2.359521771040681, 48.87593499856983], [2.359512847247879, 48.87593012859127], [2.359442076110334, 48.875936055153005], [2.359255600081154, 48.87596754834426], [2.359037799957957, 48.87600094469707], [2.358851323452112, 48.87603243725674], [2.358667569456306, 48.876060612076714], [2.358641659355484, 48.87606852680472], [2.358678010420109, 48.87612430134085], [2.358747283094316, 48.87623999861668], [2.358816177997382, 48.87635517489927], [2.3588850718418692, 48.876470351122855], [2.358954345436291, 48.87658604824255], [2.359023241254995, 48.87670122436987], [2.3590925154634173, 48.876816921385405], [2.359161411893168, 48.87693209740903], [2.359230686726661, 48.87704779342111], [2.359299583767262, 48.87716296934108], [2.359368859203705, 48.87727866614825], [2.359437755491961, 48.877393841957335], [2.359507032905835, 48.877509538667624], [2.359575929804952, 48.87762471437301], [2.359645207832862, 48.877740410979115], [2.35964567380066, 48.87774609455997], [2.359595502823315, 48.8778666471046], [2.3595441723720523, 48.87798999393645], [2.359494000924814, 48.878110546411826], [2.359442669992681, 48.87823389317284], [2.359392498075546, 48.87835444557904], [2.359341166662739, 48.878477792269216], [2.3592909942757, 48.87859834460619], [2.35923966238211, 48.87872169122556], [2.359189488172779, 48.878842242586714], [2.35913815715068, 48.878965590041815], [2.35908798247153, 48.87908614133376], [2.35903665096864, 48.87920948871802], [2.358986475819459, 48.879330039940726], [2.358935143835773, 48.879453387254166], [2.358884968216759, 48.87957393840763], [2.358833635752267, 48.87969728565025], [2.35881008771157, 48.87975386239919], [2.358800047468939, 48.87975600928944], [2.358786963342213, 48.87977945763459], [2.358770677676634, 48.87983324487129], [2.358744049539278, 48.87989721919321], [2.358728408841452, 48.879907479526665], [2.358737523190842, 48.87992538277773], [2.358752751026141, 48.87995529787015], [2.358784833265228, 48.87995091099664], [2.358984105614339, 48.88001081690705], [2.359168713716888, 48.88006671570609], [2.359367985587183, 48.880126620963935], [2.359552594501189, 48.880182520064466], [2.359554907105886, 48.88018340478736], [2.35970943036734, 48.88025721745077], [2.359876145151611, 48.88033638945733], [2.36003066932237, 48.8804102016959], [2.360197385073668, 48.880489374143366], [2.360351910153534, 48.880563185957044], [2.360518626893963, 48.88064235704691], [2.360673152883139, 48.88071616843574], [2.360839870601648, 48.88079533906726], [2.360994397500038, 48.880869150031174], [2.3611611161856, 48.880948321103624], [2.3613156439931062, 48.88102213164265], [2.36148236366779, 48.881101301357475], [2.361636892384615, 48.88117511147162], [2.361803613026369, 48.88125428162736], [2.361958142652418, 48.88132809131661], [2.36212486428329, 48.881407260114685], [2.362279394818461, 48.881481069379056], [2.362446117427429, 48.88156023771881], [2.362600648871929, 48.881634046558254], [2.362767372447993, 48.881713215338905], [2.362921904801623, 48.8817870237534], [2.363088629366899, 48.88186619117641], [2.363243162629762, 48.88193999916603], [2.36325951837892, 48.88193982085222], [2.363407039515508, 48.881864343998764], [2.363552218041311, 48.881790949046], [2.36369973834297, 48.881715470922444], [2.363844916041253, 48.88164207560478], [2.363992435486009, 48.88156659800964], [2.364137612367758, 48.881493201427894], [2.364285132330116, 48.88141772346911], [2.364430308384346, 48.88134432652252], [2.364577826137278, 48.88126884818567], [2.3647230013530223, 48.8811954517735], [2.364870518271019, 48.88111997216649], [2.365015692659256, 48.881046575389476], [2.365059563469854, 48.88102549214485], [2.365056103807233, 48.881011871428434], [2.364975136356767, 48.880945905100106], [2.364848130709856, 48.88084251436281], [2.364716041957561, 48.88073489663259], [2.364589035976211, 48.880631505593406], [2.3644569482944933, 48.88052388755668], [2.364329944705481, 48.88042049623003], [2.364197858094427, 48.88031287788689], [2.3640708541708673, 48.88020948625832], [2.3639387686303692, 48.88010186760868], [2.363811767099217, 48.87999847569276], [2.36367968126579, 48.87989085672937], [2.363582878555146, 48.87981204909148], [2.363566946463399, 48.879785871198926], [2.363558603232571, 48.879782949884344], [2.363528405469311, 48.879758365304866], [2.363404939988234, 48.87966065210719], [2.363277939229427, 48.87955725957627], [2.363154474695027, 48.879459546102495], [2.363027476287214, 48.87935615329428], [2.362904012699582, 48.87925843954431], [2.362777015279389, 48.879155046451544], [2.362653552638311, 48.87905733242546], [2.362526554842384, 48.878953939040834], [2.362403093147957, 48.87885622473865], [2.362276097702982, 48.87875283107675], [2.362152636955297, 48.8786551164984], [2.362025641134477, 48.87855172254468], [2.362023515130641, 48.87854929830611], [2.361940811326778, 48.878410218241676], [2.36186748825172, 48.87828487234982], [2.36178478392098, 48.87814579213697], [2.361711462957024, 48.87802044612677], [2.361704342455673, 48.87800133960642]]], "type": "Polygon"}, "properties": {"lassalle_jean": 3.0, "pecresse_valerie": 42, "zemmour_eric": 59.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-24", "circ_bv": "05", "num_bureau": 24, "roussel_fabien": 12.0, "nb_emargement": 1024.0, "nb_procuration": 71.0, "nb_vote_blanc": 13.0, "jadot_yannick": 105.0, "le_pen_marine": 37.0, "nb_exprime": 1009.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1286.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1024, "quartier_bv": "37", "geo_point_2d": [48.879204763279056, 2.361326795315296], "melenchon_jean_luc": 403.0, "poutou_philippe": 4.0, "macron_emmanuel": 310.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.365059563469854, 48.88102549214485], [2.365015692659256, 48.881046575389476], [2.364870518271019, 48.88111997216649], [2.3647230013530223, 48.8811954517735], [2.364577826137278, 48.88126884818567], [2.364430308384346, 48.88134432652252], [2.364285132330116, 48.88141772346911], [2.364137612367758, 48.881493201427894], [2.363992435486009, 48.88156659800964], [2.363844916041253, 48.88164207560478], [2.36369973834297, 48.881715470922444], [2.363552218041311, 48.881790949046], [2.363407039515508, 48.881864343998764], [2.36325951837892, 48.88193982085222], [2.363243162629762, 48.88193999916603], [2.363088629366899, 48.88186619117641], [2.362921904801623, 48.8817870237534], [2.362767372447993, 48.881713215338905], [2.362600648871929, 48.881634046558254], [2.362446117427429, 48.88156023771881], [2.362279394818461, 48.881481069379056], [2.36212486428329, 48.881407260114685], [2.361958142652418, 48.88132809131661], [2.361803613026369, 48.88125428162736], [2.361636892384615, 48.88117511147162], [2.36148236366779, 48.881101301357475], [2.3613156439931062, 48.88102213164265], [2.3611611161856, 48.880948321103624], [2.360994397500038, 48.880869150031174], [2.360839870601648, 48.88079533906726], [2.360673152883139, 48.88071616843574], [2.360518626893963, 48.88064235704691], [2.360351910153534, 48.880563185957044], [2.360197385073668, 48.880489374143366], [2.36003066932237, 48.8804102016959], [2.359876145151611, 48.88033638945733], [2.35970943036734, 48.88025721745077], [2.359554907105886, 48.88018340478736], [2.359552594501189, 48.880182520064466], [2.359367985587183, 48.880126620963935], [2.359168713716888, 48.88006671570609], [2.358984105614339, 48.88001081690705], [2.358784833265228, 48.87995091099664], [2.358752751026141, 48.87995529787015], [2.358748102937771, 48.879959044770054], [2.358703043651223, 48.880090679582516], [2.358659151476545, 48.880215548650746], [2.35861409174324, 48.88034718339912], [2.358570197775718, 48.88047205239833], [2.358525138970114, 48.88060368619057], [2.358481244573126, 48.88072855512806], [2.358437351317968, 48.88085342494189], [2.35839229048322, 48.88098505863122], [2.358348395446165, 48.88110992747676], [2.358303335517064, 48.88124156200855], [2.358309729370127, 48.881251296458295], [2.358484351332045, 48.88131895001506], [2.358658649773459, 48.88138600442209], [2.358833272629358, 48.881453658360876], [2.359007571970773, 48.881520712251714], [2.359182195742698, 48.88158836477407], [2.359356495984214, 48.881655418148725], [2.359531120650029, 48.881723071053145], [2.359705421791749, 48.88179012391161], [2.359880047373478, 48.881857775399546], [2.3600543494152992, 48.88192482774185], [2.36022897589093, 48.88199247961184], [2.360403278832855, 48.88205953143792], [2.360577906224592, 48.882127181891406], [2.360752210066516, 48.8821942332013], [2.360926838352167, 48.882261884036865], [2.361101143094197, 48.88232893483055], [2.361275772295838, 48.882396584249626], [2.36145007793807, 48.88246363452709], [2.361456549422616, 48.882469544360724], [2.361495845226867, 48.88259226595724], [2.361542549815406, 48.88275224037157], [2.361559646755296, 48.88280563387371], [2.361560381218888, 48.88281958008734], [2.3615655468356, 48.88282534445258], [2.361587747495645, 48.88289467249214], [2.361626231790947, 48.88299587772284], [2.3616655297668, 48.883118598313], [2.361704014378743, 48.88321980349811], [2.361724030455893, 48.88322541499879], [2.361899453974874, 48.88315899665875], [2.362071944629059, 48.883093297184615], [2.362247367259267, 48.8830268783268], [2.362419857025912, 48.882961179242805], [2.362595278767452, 48.882894759867305], [2.362767767668478, 48.882829059374885], [2.362943189884692, 48.882762639488945], [2.363115677898291, 48.88269693938669], [2.36329109787328, 48.88263051807647], [2.363463585010253, 48.88256481746513], [2.36348282079772, 48.882568886674306], [2.363569656170359, 48.88269502142934], [2.363652678355025, 48.88281732718002], [2.36373951455333, 48.88294346178336], [2.363822537532989, 48.88306576738864], [2.363909374556974, 48.883191901840334], [2.363992398331634, 48.883314207300195], [2.364079237544877, 48.8834403416074], [2.364162262114553, 48.88356264692188], [2.364249100789934, 48.88368878107013], [2.364332126154634, 48.88381108623918], [2.364415151909319, 48.88393339133703], [2.364501991815461, 48.88405952525942], [2.364585018365185, 48.88418183021186], [2.3646718590970552, 48.884307963982515], [2.364678733602595, 48.884365612276234], [2.364689692224911, 48.884368048247545], [2.364724099405753, 48.88437569793107], [2.364768331886582, 48.884358965907836], [2.364967807254743, 48.88434623648811], [2.365151704947392, 48.884334893639476], [2.365351180140589, 48.884322162681535], [2.365535076301127, 48.88431081923658], [2.365718973755991, 48.88429947461704], [2.365918448663978, 48.88428674361286], [2.366102345939356, 48.88427539930354], [2.366301820672238, 48.88426266676109], [2.366485717779176, 48.88425132186264], [2.366685192326091, 48.8842385886812], [2.366685987889804, 48.88423876735892], [2.366732455104493, 48.884232874333904], [2.366909271694006, 48.88421964141891], [2.367108746016002, 48.884206907531414], [2.367285562421828, 48.884193674060405], [2.36748503655234, 48.884180939545736], [2.36756787045416, 48.88417474008636], [2.367608553717039, 48.88415485591165], [2.367609091793928, 48.88412795267865], [2.36747970667516, 48.8840645779987], [2.367479516890859, 48.88406448526471], [2.367313386254728, 48.883984358749835], [2.367155551533339, 48.883909813005765], [2.366989423252683, 48.88382968603737], [2.366831588100152, 48.88375513984853], [2.366665460811487, 48.88367501241939], [2.366507627955067, 48.8836004658002], [2.366341501658185, 48.88352033791024], [2.366183668370728, 48.883445790846295], [2.366017543065831, 48.8833656624956], [2.365859710710906, 48.88329111499414], [2.365693586397788, 48.88321098618268], [2.365535756338953, 48.88313643825091], [2.365369633017811, 48.88305630897868], [2.3652118025279423, 48.88298176060216], [2.365053973853496, 48.88290721201977], [2.36488785200488, 48.882827082062335], [2.3647300228994013, 48.88275253303515], [2.364563902042554, 48.88267240261704], [2.36440607523314, 48.882597853159595], [2.364239954004713, 48.88251772227347], [2.364082128127812, 48.882443172378515], [2.363916009265674, 48.88236304013962], [2.363758182957847, 48.88228848979991], [2.363592065076587, 48.88220835799959], [2.363594227395846, 48.88219298826491], [2.3637525903278123, 48.882142990873795], [2.363893955177105, 48.88209471241128], [2.364052317522469, 48.88204471461928], [2.364193681827134, 48.88199643579857], [2.364198037204868, 48.881994085598045], [2.36432126348973, 48.88189301678956], [2.364444116471069, 48.881791658979665], [2.364567341799387, 48.881690589899314], [2.364690195187788, 48.88158923182551], [2.36481341819605, 48.8814881624661], [2.364936270628099, 48.881386804121156], [2.365059492679839, 48.88128573448984], [2.3651823441663042, 48.88118437497451], [2.365222162321841, 48.881157264457855], [2.365219478478859, 48.881150355963996], [2.365188264059566, 48.88112492467872], [2.365137001164539, 48.88108047236234], [2.365085877378456, 48.88103882127343], [2.365059563469854, 48.88102549214485]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 33, "zemmour_eric": 44.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "10-27", "circ_bv": "05", "num_bureau": 27, "roussel_fabien": 23.0, "nb_emargement": 1126.0, "nb_procuration": 53.0, "nb_vote_blanc": 9.0, "jadot_yannick": 104.0, "le_pen_marine": 42.0, "nb_exprime": 1112.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1523.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "37", "geo_point_2d": [48.88220629232537, 2.3624661561436318], "melenchon_jean_luc": 525.0, "poutou_philippe": 10.0, "macron_emmanuel": 280.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3541424804970292, 48.884084283451514], [2.354128265208892, 48.8841431532609], [2.354117285137715, 48.8842424293615], [2.354102064886699, 48.88435197269366], [2.354091084721647, 48.88445124877303], [2.354075864343331, 48.884560792980345], [2.3540845117059392, 48.884569997490864], [2.354283996567642, 48.88462102039563], [2.354481908547437, 48.884673110979186], [2.354681392829904, 48.8847241332097], [2.354879306962691, 48.88477622313883], [2.355078792029408, 48.88482724470245], [2.355276705588085, 48.88487933396248], [2.355284815154179, 48.884890032867155], [2.355227845895582, 48.88502906524019], [2.355183970957993, 48.88513192878413], [2.35517066643869, 48.88513857510874], [2.354978033173413, 48.88513726589712], [2.354784520287212, 48.88513552085741], [2.354591887042944, 48.88513421102456], [2.354398375555899, 48.885132464468825], [2.354205740969044, 48.88513115400734], [2.354012229506211, 48.885129406827524], [2.354002438082366, 48.88513261226353], [2.353996583390647, 48.88515847861638], [2.35405283233152, 48.88529007494307], [2.354109660910927, 48.88541707069528], [2.354165910416879, 48.885548666937886], [2.354222738190634, 48.8856756625992], [2.354278988250518, 48.88580725965697], [2.354335817945873, 48.88593425524209], [2.3543926479183153, 48.88606125078554], [2.35444889747171, 48.886192846810694], [2.354464334026801, 48.88621280516074], [2.354500283443147, 48.88620834315992], [2.354694163138582, 48.886209751566625], [2.354881373172744, 48.88621037188633], [2.355068581858965, 48.886210991006735], [2.3552624629321253, 48.88621239939979], [2.355449671630164, 48.886213017924376], [2.3556435527322, 48.88621442480109], [2.355830761430919, 48.88621504362905], [2.356024642550892, 48.88621644988873], [2.356211851272433, 48.886217067221565], [2.356405732399114, 48.886218473763414], [2.356592941132547, 48.88621909050045], [2.35678682227695, 48.88622049642522], [2.356800184667438, 48.88623069912236], [2.356772942586048, 48.88636290217007], [2.356744680348452, 48.88649311490241], [2.356717436625217, 48.88662531789856], [2.3566891741065, 48.88675553058667], [2.356661931479719, 48.886887732646734], [2.356633668679781, 48.88701794529063], [2.3566064244001232, 48.88715014819839], [2.356578161318854, 48.88728036079807], [2.356550918124646, 48.887412563668946], [2.356522654762248, 48.887542776224464], [2.356495411300839, 48.88767497815187], [2.356467147657207, 48.88780519066316], [2.356471145061974, 48.887834411442675], [2.356509154153244, 48.88783848911141], [2.356712864487693, 48.88783370662745], [2.356915003642678, 48.887828821828805], [2.357118713890825, 48.88782403955362], [2.357320851606527, 48.88781915406246], [2.357524561779676, 48.88781437109677], [2.357726699419765, 48.88780948492042], [2.357930410881486, 48.887804701271534], [2.358132548445951, 48.88779981441005], [2.358336258468769, 48.88779503006335], [2.358538395957599, 48.88779014251669], [2.358742107269069, 48.887785357486806], [2.3589442446822533, 48.88778046925495], [2.35914795456597, 48.887775682627996], [2.359350091903495, 48.88777079371097], [2.35955223056664, 48.887765904459975], [2.359755940326425, 48.88776111769787], [2.359819946980962, 48.887758405822275], [2.359824814266887, 48.887729226262884], [2.359824698012522, 48.887728255269515], [2.359796731273017, 48.88759085972757], [2.359769987592109, 48.8874613685759], [2.359743245418833, 48.88733187651104], [2.359715277743465, 48.887194480893186], [2.359688535832343, 48.88706498968393], [2.359660569808224, 48.88692759402721], [2.359633826817611, 48.8867981018677], [2.359605861070219, 48.88666070706407], [2.3595791183527153, 48.88653121486088], [2.359551152903959, 48.88639381911188], [2.3595244118121412, 48.88626432777156], [2.359496446651157, 48.886126931976406], [2.359486540213319, 48.88607896736441], [2.359488672613955, 48.88606458954776], [2.359477779856009, 48.88605102429156], [2.359460944134133, 48.88596949750898], [2.359442326423895, 48.885859676461415], [2.35941558451336, 48.88573018502657], [2.359396966984341, 48.885620363948014], [2.359370225309394, 48.88549087247485], [2.359351607961592, 48.885381051365364], [2.359351489893109, 48.88538011813141], [2.3593460109767292, 48.885264147562395], [2.359336614264832, 48.88511647451585], [2.359331134045712, 48.885000503911066], [2.35932173743464, 48.88485282992865], [2.3593162586399963, 48.8847368593027], [2.359306862107617, 48.884589186182986], [2.359301382010244, 48.88447321552121], [2.359313937261781, 48.884431427089865], [2.359296177397223, 48.88441931163682], [2.359210983620574, 48.884420356687954], [2.359099542458039, 48.88442037894024], [2.3589501780371602, 48.88441186487442], [2.358948829922029, 48.884411820783924], [2.358747677631789, 48.8843986782231], [2.358598313330682, 48.884390163718216], [2.358552719314868, 48.88438718460042], [2.358550752753721, 48.88438631250834], [2.358521812929146, 48.88438268245587], [2.358366254846421, 48.88437251838354], [2.358171812555037, 48.88435855914867], [2.357970660666644, 48.884345415281814], [2.357776217218913, 48.88433145539688], [2.357575066909746, 48.88431830997311], [2.3573806236692763, 48.88430434944538], [2.3571794721899852, 48.88429120424865], [2.356985030520365, 48.88427724308547], [2.356783879245639, 48.884264097223806], [2.356589436419705, 48.884250135410504], [2.356388285349554, 48.88423698888392], [2.356193844094491, 48.88422302643513], [2.355999401580108, 48.88420906366309], [2.355798250817565, 48.88419591614473], [2.355603809874065, 48.884181952737265], [2.355402659327253, 48.8841688036547], [2.355208217227478, 48.884154839597095], [2.355007066874146, 48.884141690748876], [2.354812626345271, 48.88412772605584], [2.354611476196558, 48.88411457654271], [2.354417034511424, 48.884100611199536], [2.35421588456734, 48.88408746102146], [2.354152197471186, 48.88408288615041], [2.3541424804970292, 48.884084283451514]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 27, "zemmour_eric": 34.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "18-58", "circ_bv": "17", "num_bureau": 58, "roussel_fabien": 16.0, "nb_emargement": 1245.0, "nb_procuration": 67.0, "nb_vote_blanc": 17.0, "jadot_yannick": 81.0, "le_pen_marine": 58.0, "nb_exprime": 1223.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 7, "nb_inscrit": 1719.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1244, "quartier_bv": "71", "geo_point_2d": [48.88583917333273, 2.357238408878884], "melenchon_jean_luc": 704.0, "poutou_philippe": 12.0, "macron_emmanuel": 236.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.343030253980965, 48.846091329779675], [2.343044835903587, 48.84607770000178], [2.343227782424982, 48.84603572852612], [2.343394863129914, 48.84599582186452], [2.343577810455898, 48.845953848958686], [2.343744890630401, 48.84591394180534], [2.343748660738202, 48.845912563080816], [2.34389288468503, 48.845837928341915], [2.344065110299215, 48.84574881435778], [2.344209333328388, 48.84567418012576], [2.344381557860341, 48.845585065672964], [2.344525779994501, 48.84551043014918], [2.3446980020816532, 48.84542131522035], [2.344842223298179, 48.84534668020343], [2.345014445665681, 48.84525756481341], [2.345158665987189, 48.84518292850477], [2.345160312699231, 48.84517962337285], [2.34512114663073, 48.84515239667412], [2.345047643836687, 48.84509468610696], [2.3449658585904762, 48.84503300802778], [2.344963092672752, 48.84502973809531], [2.344958664673785, 48.8450044346055], [2.3449411711550843, 48.844967040511285], [2.34494310122348, 48.84495127448424], [2.34493381203981, 48.84494304752749], [2.344904734108519, 48.84488088993433], [2.344884467602923, 48.844839820242], [2.3448858902206853, 48.84483244607422], [2.344978259315886, 48.844733611090795], [2.345071627593013, 48.84463027210064], [2.345163995977661, 48.84453143695591], [2.345257363524412, 48.84442809780206], [2.345258601385554, 48.84442067405076], [2.34519598265785, 48.84429539829131], [2.345135353004655, 48.84417245012776], [2.345074723637517, 48.84404950191991], [2.345012107160287, 48.84392422602998], [2.344951478372653, 48.84380127773234], [2.344888862489892, 48.84367600175004], [2.344828234281752, 48.84355305336254], [2.344765617630935, 48.84342777728042], [2.3447049913647993, 48.84330482881057], [2.344642375308542, 48.84317955263602], [2.34458174825927, 48.84305660406894], [2.344519134159971, 48.842931327809495], [2.344458507690272, 48.84280837915258], [2.344395894185308, 48.84268310280074], [2.344335268295072, 48.84256015405405], [2.344272654022045, 48.84243487760239], [2.344212030073754, 48.84231192877333], [2.344149416395152, 48.84218665222934], [2.344088791663821, 48.842063703303], [2.344026179942119, 48.841938426674076], [2.343965555790227, 48.841815477657995], [2.343902944662929, 48.84169020093669], [2.343842321079146, 48.84156725273009], [2.343779709183878, 48.84144197590901], [2.343719087553203, 48.84131902672075], [2.343656476252328, 48.841193749807324], [2.343636943983542, 48.84118869703329], [2.343490514061605, 48.84124215215948], [2.34337052667074, 48.841289212975006], [2.34334178635821, 48.841295086351465], [2.34333532553803, 48.841300685403574], [2.343294687475545, 48.84131662389721], [2.343127588632011, 48.84138369480477], [2.342966963685851, 48.841446693638204], [2.342799864014924, 48.84151376318092], [2.342639238271792, 48.841576761566934], [2.342472137750793, 48.84164383154336], [2.34231151257316, 48.84170682948951], [2.342150885644758, 48.84176982720894], [2.341983783887705, 48.841836895592316], [2.341823156162331, 48.84189989286434], [2.341656053555192, 48.84196696168144], [2.3414954250442053, 48.84202995760677], [2.341328321598333, 48.842097025958246], [2.341321785019259, 48.84210503657619], [2.341328009352073, 48.84221811908587], [2.341332912346345, 48.84236352103745], [2.341339138096561, 48.842476603527864], [2.3413440411575612, 48.842622004545994], [2.3413502656004033, 48.84273508700213], [2.341355170079265, 48.84288048799362], [2.341361394577124, 48.84299357042301], [2.341362159419675, 48.842996231352814], [2.341427359794597, 48.84311842702923], [2.341493020978678, 48.843246018671366], [2.341496817239573, 48.84327059847222], [2.341517323536359, 48.84327668491631], [2.341582985140062, 48.84340427649092], [2.341647055770513, 48.84353034113342], [2.34171271938527, 48.84365793171601], [2.341776789278828, 48.84378399625283], [2.341842453519412, 48.84391158763455], [2.341906524049958, 48.84403765117389], [2.341972188927635, 48.84416524245537], [2.342036260072568, 48.84429130679589], [2.342101925598803, 48.84441889707782], [2.342165997369384, 48.84454496132021], [2.342231663521479, 48.844672552401214], [2.342295735929069, 48.844798615646134], [2.342361402718386, 48.84492620662688], [2.342425475740292, 48.84505227067293], [2.342491143178187, 48.84517986065415], [2.342555216825771, 48.84530592460205], [2.34262088488956, 48.845433515382325], [2.342684959174068, 48.845559578332754], [2.342750627875207, 48.84568716901279], [2.3428147027740662, 48.845813232764336], [2.342880372123803, 48.84594082244481], [2.342944447648365, 48.84606688609817], [2.342973672119568, 48.84609718417005], [2.342995744637534, 48.8460948995977], [2.343030253980965, 48.846091329779675]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 89, "zemmour_eric": 146.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "5-7", "circ_bv": "02", "num_bureau": 7, "roussel_fabien": 20.0, "nb_emargement": 1283.0, "nb_procuration": 87.0, "nb_vote_blanc": 14.0, "jadot_yannick": 107.0, "le_pen_marine": 51.0, "nb_exprime": 1267.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1579.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1283, "quartier_bv": "19", "geo_point_2d": [48.84364105527316, 2.3432711170521836], "melenchon_jean_luc": 278.0, "poutou_philippe": 7.0, "macron_emmanuel": 510.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.400150463880788, 48.87843526931706], [2.400153410909975, 48.878438776178484], [2.400125153610496, 48.87851384547818], [2.400106766637991, 48.87856334324366], [2.400097022879773, 48.87856987031084], [2.3998735907672613, 48.878608876725046], [2.399656767721444, 48.878647365476304], [2.399439944355059, 48.87868585383355], [2.399216511252964, 48.87872485901731], [2.399208123734388, 48.87872455701879], [2.399036378350123, 48.87868093819371], [2.398871547937034, 48.87863894115736], [2.398706716415945, 48.87859694478487], [2.398534973246264, 48.87855332434303], [2.398370142267543, 48.87851132750387], [2.3981983996620873, 48.87846770657579], [2.398033569225738, 48.87842570926997], [2.397861827184511, 48.87838208785565], [2.397861094237358, 48.87838191689383], [2.397824299361353, 48.8783740992096], [2.3978003303029203, 48.87837635556802], [2.39779535721691, 48.878389952693446], [2.397833036704094, 48.878519143819254], [2.3978704357559693, 48.87864949184254], [2.397908116980507, 48.87877868292116], [2.39794551641706, 48.878909029991], [2.397983196641871, 48.87903822190795], [2.398020596452707, 48.87916856892363], [2.398058278425291, 48.879297759894094], [2.398095678600026, 48.8794281077549], [2.39808223645148, 48.87943877275664], [2.397883227211449, 48.879438334086295], [2.397683512268617, 48.879437371722744], [2.397484503037302, 48.87943693238958], [2.397284788107215, 48.87943596936089], [2.397085778884627, 48.879435529364926], [2.396886063967298, 48.87943456567104], [2.396687054743028, 48.87943412591159], [2.396487339848883, 48.8794331606533], [2.396473842832044, 48.87944382519946], [2.39650796267433, 48.879562752636794], [2.396542528541961, 48.87968085671554], [2.3965766473434282, 48.87979978320157], [2.396611213524137, 48.879917887235074], [2.396645333990695, 48.88003681458208], [2.396679900484488, 48.880154918570334], [2.396714019910219, 48.880273844965956], [2.396748586717098, 48.88039194890897], [2.396735529582599, 48.880402643572026], [2.3966339059449853, 48.880404270949754], [2.396580873711772, 48.88040330848397], [2.396576506268194, 48.88040119013768], [2.396551616515596, 48.88040350455926], [2.396480066050968, 48.88040465026036], [2.396345766387487, 48.88040803722689], [2.3961725908837233, 48.880410809784216], [2.396038292558284, 48.880414195513424], [2.396027082247814, 48.880427766473765], [2.396120637238055, 48.880531906624], [2.396210162229552, 48.880631552209685], [2.396303717951968, 48.88073569219758], [2.396393243643968, 48.88083533762795], [2.396486800088247, 48.880939478352765], [2.3965763264912843, 48.8810391227285], [2.39666585323701, 48.8811387670283], [2.396759410771409, 48.88124290751137], [2.396779737060859, 48.88125954495566], [2.396784491658847, 48.88125944210662], [2.396934679735131, 48.88117298378914], [2.397110804091453, 48.88107094374563], [2.397260991092819, 48.880984484104715], [2.397437114172309, 48.8808824435637], [2.397437177308683, 48.88088240790835], [2.397587363224514, 48.88079594784324], [2.397742438921092, 48.88070719821421], [2.397892622450978, 48.880620738644815], [2.398047698479532, 48.8805319877139], [2.398197880997381, 48.88044552774781], [2.398352954610131, 48.88035677729977], [2.398503137479546, 48.880270316943864], [2.398658210060673, 48.880181565187044], [2.398808391918059, 48.88009510443447], [2.398963463446901, 48.880006353167396], [2.399113642939164, 48.87991989111204], [2.39926871478969, 48.87983113944229], [2.399418893259463, 48.87974467788953], [2.399418922088961, 48.87974466094689], [2.399573991534024, 48.87965590886083], [2.39968697068751, 48.87959049892431], [2.399688161250148, 48.879589889753774], [2.399846995787126, 48.879517587812295], [2.400005189990828, 48.87944567545483], [2.40016402227404, 48.87937337397577], [2.400322215601848, 48.87930146118996], [2.400481047005132, 48.87922915928081], [2.400639239457251, 48.879157246066676], [2.400798071344068, 48.87908494373433], [2.40095626155684, 48.87901303008504], [2.401115092574071, 48.8789407264233], [2.401273281911158, 48.87886881234577], [2.40143211203812, 48.87879650915325], [2.401590301862775, 48.87872459465417], [2.401596111526616, 48.87871820608435], [2.401602272191052, 48.87867758991662], [2.4016136029168402, 48.87861184356364], [2.401609018217895, 48.878607980513216], [2.40158318872009, 48.87860614357733], [2.4014275997418952, 48.87851348490279], [2.401269782629603, 48.87841946677768], [2.401114194766565, 48.87832680768009], [2.400956380149131, 48.878232789132745], [2.400800792038012, 48.87814012960534], [2.400642978551987, 48.87804611062891], [2.400487392919445, 48.8779534506853], [2.4003295792013972, 48.87785943127302], [2.400306843588183, 48.877865432824144], [2.400292114881207, 48.87799512599263], [2.40027996205073, 48.87810253047933], [2.4002795984826673, 48.87810402784004], [2.400235397188564, 48.8782214593595], [2.400176773293484, 48.87837577292286], [2.400160827451156, 48.87841813506571], [2.400150463880788, 48.87843526931706]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 21, "zemmour_eric": 38.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-35", "circ_bv": "16", "num_bureau": 35, "roussel_fabien": 14.0, "nb_emargement": 769.0, "nb_procuration": 26.0, "nb_vote_blanc": 10.0, "jadot_yannick": 36.0, "le_pen_marine": 52.0, "nb_exprime": 756.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1105.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 769, "quartier_bv": "75", "geo_point_2d": [48.879509108799425, 2.398604200641368], "melenchon_jean_luc": 394.0, "poutou_philippe": 11.0, "macron_emmanuel": 156.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358339994179588, 48.82295192099876], [2.358341195988213, 48.82296062532914], [2.358303795264928, 48.823080160578684], [2.358261336707721, 48.82320968323019], [2.358223935622798, 48.82332921842821], [2.358181475291322, 48.82345874191466], [2.35814407385572, 48.82357827616192], [2.358101614485032, 48.82370779959861], [2.3580642126875793, 48.82382733379439], [2.358044117860039, 48.823888631784804], [2.358031819352098, 48.82389972073486], [2.358072419194736, 48.82392822588678], [2.358257549411698, 48.82397695485664], [2.35844067976112, 48.82402496409782], [2.358625810665747, 48.82407369249339], [2.35880894169404, 48.82412170116653], [2.358994073297385, 48.82417042808847], [2.359177205004541, 48.8242184361935], [2.359362337284485, 48.82426716344045], [2.359545469670504, 48.82431517097744], [2.3597306026381, 48.82436389765007], [2.3599137357029782, 48.824411904618934], [2.360098869369261, 48.824460629817935], [2.360282003113091, 48.82450863621872], [2.360465138545056, 48.824556643243604], [2.3606502732404833, 48.82460536758272], [2.360833408000403, 48.8246533731329], [2.361018543372437, 48.82470209779701], [2.361084171041563, 48.82471261499476], [2.361092296470376, 48.82469890065162], [2.361179521952248, 48.82458732416676], [2.36127310071303, 48.824467116053896], [2.3613603254203133, 48.824355539414164], [2.361453904721162, 48.82423533024295], [2.361541128653761, 48.82412375344831], [2.361634707121742, 48.8240035441108], [2.361721928917657, 48.82389196715399], [2.361815506541777, 48.82377175854948], [2.361902728925039, 48.82366018144511], [2.361996305727322, 48.82353997177504], [2.362083527335928, 48.82342839451571], [2.362177103305374, 48.82330818467938], [2.362264322777341, 48.8231966072579], [2.362357897902967, 48.823076398154605], [2.3624128307867123, 48.82300612412277], [2.362423096844923, 48.82299685681383], [2.362425364477852, 48.8229847309085], [2.362457651630254, 48.82294342736708], [2.362518162627721, 48.82286907736174], [2.362508476146861, 48.82285422826709], [2.362411189757712, 48.82287266936347], [2.362209662260042, 48.8228218015456], [2.362013876961064, 48.82277265035238], [2.361812348886732, 48.822721780953806], [2.361616565699748, 48.822672629112986], [2.361415038388628, 48.82262175993968], [2.361219255951758, 48.82257260744399], [2.361017729414758, 48.82252173759659], [2.360821947739135, 48.82247258354675], [2.360626166421622, 48.82242343007354], [2.360424641039848, 48.82237255921982], [2.360399440208453, 48.822359383449275], [2.360386633766449, 48.822363983621294], [2.360206795057462, 48.82233620750053], [2.3600324957270002, 48.82230944647179], [2.359852656032909, 48.82228166980982], [2.359678357077466, 48.82225490736426], [2.359498517760151, 48.82222713016833], [2.359324219157749, 48.82220036810467], [2.359144381579175, 48.82217259038208], [2.358970083352019, 48.82214582690159], [2.358962852684313, 48.82214602017942], [2.358801406526273, 48.8221800783512], [2.358627353198803, 48.822217346920006], [2.358577691371384, 48.82220988282045], [2.358568950412828, 48.822231094537464], [2.358537475645069, 48.82233257972115], [2.358500075833336, 48.82245211419959], [2.358461204292177, 48.82257744984114], [2.358423804118876, 48.82269698516895], [2.358384932211815, 48.8228223207584], [2.358347531688007, 48.82294185603631], [2.358339994179588, 48.82295192099876]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 48, "zemmour_eric": 57.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-35", "circ_bv": "10", "num_bureau": 35, "roussel_fabien": 25.0, "nb_emargement": 1023.0, "nb_procuration": 42.0, "nb_vote_blanc": 10.0, "jadot_yannick": 77.0, "le_pen_marine": 65.0, "nb_exprime": 1006.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1297.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1023, "quartier_bv": "51", "geo_point_2d": [48.823359499259176, 2.3601174102986118], "melenchon_jean_luc": 361.0, "poutou_philippe": 9.0, "macron_emmanuel": 301.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295752186267317, 48.83456526821059], [2.29573694256071, 48.834557520282004], [2.295639260541196, 48.83445411959545], [2.295532857318459, 48.834342839294465], [2.2954351760939, 48.83423943932067], [2.295346186368095, 48.83414637031492], [2.295324695367848, 48.83413356341528], [2.295307515391315, 48.83414107360626], [2.295079463486925, 48.8341440629601], [2.294864245112667, 48.83414653395156], [2.294649025355841, 48.83414900454779], [2.294420973379002, 48.83415199264611], [2.294410001063812, 48.834148565155736], [2.294302249381551, 48.83405823389148], [2.294192013021662, 48.8339662015302], [2.294084262094099, 48.833875870054904], [2.29397402650471, 48.83378383747775], [2.293954032509387, 48.8337828497575], [2.29383664876523, 48.83385536861797], [2.293721975161315, 48.83392582041098], [2.293604592134546, 48.833998339042516], [2.293489917890305, 48.83406879150335], [2.293473576252004, 48.8340742369227], [2.29347197210439, 48.83408373384144], [2.293412868063474, 48.83419879609634], [2.293353882599446, 48.834314438209766], [2.29329477803629, 48.834429500382555], [2.293235793423702, 48.834545141522675], [2.293176686963831, 48.834660204504694], [2.293117701828315, 48.834775845562675], [2.293058594858378, 48.83489090756332], [2.292999609187529, 48.83500654943856], [2.29294050305762, 48.83512161136514], [2.292881515513633, 48.835237252250955], [2.292822408849259, 48.835352314994786], [2.292763420782217, 48.83546795579848], [2.292767650165068, 48.83547775700167], [2.292915824374045, 48.835558638643626], [2.2930678002939873, 48.83564031062794], [2.293215974068454, 48.83572119187829], [2.293367952295011, 48.835802863477404], [2.293373028465064, 48.83581081155196], [2.293391976830612, 48.83581461901802], [2.293392214837688, 48.83581474993387], [2.293524675595548, 48.83588930619756], [2.293650650885473, 48.835959197631034], [2.293776626525503, 48.836029088028184], [2.293909087015535, 48.83610364384384], [2.293913281823733, 48.83610787047897], [2.293975564215638, 48.83624304879117], [2.294038090378142, 48.83637906310971], [2.294100373429929, 48.836514240424854], [2.294162900243408, 48.83665025464519], [2.294225183930726, 48.836785432761864], [2.294287711395191, 48.836921446883956], [2.294349995730234, 48.83705662490283], [2.294412523845695, 48.83719263892674], [2.294474810202992, 48.837327815956556], [2.294537338969359, 48.837463829882225], [2.294550564852667, 48.8374766645804], [2.294573239033062, 48.83747159723296], [2.294769795819207, 48.83743018447277], [2.294973584167196, 48.83738715557138], [2.295170140316845, 48.837345742150205], [2.295373928004209, 48.83730271256352], [2.295570483517356, 48.837261298481366], [2.295774270556237, 48.8372182673101], [2.295970825432871, 48.83717685256701], [2.296174611798959, 48.83713382160972], [2.296178677280217, 48.83711808223225], [2.296003327822154, 48.837030569381064], [2.29583078395191, 48.83694458642301], [2.295655437023905, 48.836857073056215], [2.295482894301725, 48.836771089582996], [2.295307547179195, 48.8366835756847], [2.295135005617339, 48.83659759079704], [2.295133990527651, 48.836583794730785], [2.29526699860882, 48.83650301792553], [2.295423089908231, 48.83640810928913], [2.295556097093001, 48.8363273321497], [2.295712185977619, 48.836232423113145], [2.295845192266099, 48.836151645639546], [2.296001281460577, 48.83605673621884], [2.296134286852772, 48.83597595841111], [2.296290373620336, 48.83588104948955], [2.296423378128498, 48.83580027044835], [2.296579465205828, 48.83570536114267], [2.296712468817709, 48.83562458176734], [2.296732961908594, 48.835614887397696], [2.296732400953476, 48.835606884172115], [2.296634065337321, 48.8355036712424], [2.296536379752988, 48.83540027227519], [2.29643804490259, 48.835297060064555], [2.296340360094373, 48.835193660918186], [2.296242026021857, 48.83509044852734], [2.296144342001686, 48.83498704830248], [2.296046008707147, 48.83488383573143], [2.295948325450834, 48.8347804362267], [2.295849992934059, 48.834677223475445], [2.295752310465986, 48.83457382289224], [2.295752186267317, 48.83456526821059]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 90, "zemmour_eric": 114.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-55", "circ_bv": "13", "num_bureau": 55, "roussel_fabien": 20.0, "nb_emargement": 1248.0, "nb_procuration": 60.0, "nb_vote_blanc": 13.0, "jadot_yannick": 108.0, "le_pen_marine": 87.0, "nb_exprime": 1222.0, "nb_vote_nul": 14.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1512.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1249, "quartier_bv": "57", "geo_point_2d": [48.83550735726444, 2.2947008814739536], "melenchon_jean_luc": 276.0, "poutou_philippe": 3.0, "macron_emmanuel": 470.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.370830988129945, 48.85776260657957], [2.3708024802579, 48.85777244395373], [2.370729967898732, 48.85783565649252], [2.370679841763086, 48.857886365260484], [2.370669577838406, 48.85790008660167], [2.370675592377634, 48.857911501285336], [2.370758570723897, 48.8580364488245], [2.370834557020765, 48.858162784994946], [2.370917536148331, 48.85828773239559], [2.370993523186264, 48.858414069335815], [2.371076504458161, 48.858539016605064], [2.371152490896069, 48.85866535250928], [2.371152894584138, 48.85866612267364], [2.371207975390815, 48.85878967850287], [2.371264969826036, 48.858916983832984], [2.371320051163695, 48.85904053958271], [2.371377046147178, 48.85916784483061], [2.371432128015824, 48.85929140050079], [2.371489123547577, 48.859418705666556], [2.371544205947218, 48.85954226125724], [2.371601202016403, 48.859669567240104], [2.371656284947048, 48.859793122751256], [2.371713281575467, 48.85992042775266], [2.371768366399976, 48.86004398319143], [2.371825362213733, 48.860171288103516], [2.371807529684329, 48.8601822627526], [2.371617792991116, 48.86013558250447], [2.371429796692715, 48.86008951005806], [2.371240060675615, 48.86004282920714], [2.371052063672114, 48.85999675705559], [2.370862328331333, 48.85995007560188], [2.370674333370253, 48.85990400196099], [2.370484598705696, 48.8598573199045], [2.370296604402469, 48.85981124656566], [2.370106870414137, 48.8597645639064], [2.369918875427655, 48.85971848906389], [2.36972914211556, 48.85967180580185], [2.369541149149772, 48.85962573126852], [2.369351416513913, 48.859579047403756], [2.369163424216852, 48.859532972273215], [2.3691451238629853, 48.859540454600356], [2.36912482715281, 48.85966687855361], [2.369104653125735, 48.85979104217791], [2.3690843562197372, 48.85991746609579], [2.36906418336214, 48.86004162969239], [2.369043886271211, 48.860168052675526], [2.369023711846291, 48.860292217129334], [2.369003414559535, 48.860418640077015], [2.368983241304098, 48.8605428045032], [2.368962942458646, 48.86066922740825], [2.368942769020622, 48.86079339090025], [2.368938592485071, 48.86080477168708], [2.36895246759995, 48.860812250070005], [2.369096704609268, 48.860875602360196], [2.369239780024503, 48.86093844381547], [2.369384016369567, 48.86100179574497], [2.36952709384098, 48.86106463685679], [2.369670170294457, 48.8611274777868], [2.369814409049179, 48.861190829193944], [2.369957486195755, 48.86125366977331], [2.370101724286217, 48.861317020819826], [2.370106679114194, 48.861318362642116], [2.370292358138242, 48.861342159805396], [2.370477853918075, 48.86136511752515], [2.370663533278392, 48.86138891411155], [2.370849030751235, 48.8614118712622], [2.370851660736555, 48.861412381527316], [2.371026321377196, 48.861459106891026], [2.37121618021097, 48.861510140572975], [2.371390842880105, 48.86155686450841], [2.371580702416237, 48.86160789850682], [2.371755365740015, 48.861654621906105], [2.371945225989561, 48.861705655321785], [2.372119889967877, 48.86175237818495], [2.372270849657694, 48.861792954440894], [2.37227731594133, 48.86180042864038], [2.372297719706154, 48.861802686895025], [2.3723366196396842, 48.86181314255666], [2.372521667655744, 48.861861717976474], [2.372711529410611, 48.86191275016691], [2.372756101251971, 48.861924449535756], [2.372778343143363, 48.86192665438769], [2.372787972631385, 48.86191096541978], [2.372892703104608, 48.86182123351601], [2.372997472404373, 48.86173209618574], [2.373102203531023, 48.86164236319204], [2.373206972112551, 48.86155322566399], [2.373209686248657, 48.86154640395622], [2.373181427587895, 48.86141983678115], [2.373153452849769, 48.861294266646844], [2.373125194451452, 48.86116770032903], [2.3730972186321813, 48.86104212924658], [2.373068961870208, 48.86091556289382], [2.373040986311035, 48.86078999266896], [2.373012728470264, 48.8606634253677], [2.372984754544976, 48.860537855108284], [2.372956779391566, 48.860412284821], [2.372928521960215, 48.86028571745677], [2.372900548440676, 48.8601601471349], [2.372872291271848, 48.860033580627864], [2.372844318034031, 48.85990800936505], [2.372816061138548, 48.85978144281601], [2.372788086797855, 48.859655872403586], [2.372759830186542, 48.859529304913195], [2.372731857479687, 48.85940373446625], [2.372703601130883, 48.859277167833085], [2.372702473858989, 48.85927468332335], [2.372624502849061, 48.85916415311354], [2.372541439886009, 48.859050013141825], [2.37246346955392, 48.85893948280472], [2.372380407290986, 48.858825343597424], [2.372302437636727, 48.858714813133], [2.372219376095567, 48.858600672891505], [2.372141407119131, 48.85849014229982], [2.372058347640977, 48.8583760028299], [2.371980379342353, 48.85826547211089], [2.371897319223047, 48.85815133159965], [2.371920229338548, 48.85814059311936], [2.371905821168291, 48.85813111481095], [2.371826819420892, 48.858103418399544], [2.371656491075242, 48.8580460873593], [2.371551605938784, 48.858009315328886], [2.371367719676603, 48.85794484738614], [2.371197390991599, 48.85788751567712], [2.371013505608413, 48.85782304628369], [2.37084317907424, 48.8577657140714], [2.370830988129945, 48.85776260657957]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 76, "zemmour_eric": 88.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "11-16", "circ_bv": "07", "num_bureau": 16, "roussel_fabien": 14.0, "nb_emargement": 1264.0, "nb_procuration": 75.0, "nb_vote_blanc": 21.0, "jadot_yannick": 122.0, "le_pen_marine": 49.0, "nb_exprime": 1236.0, "nb_vote_nul": 7.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1544.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1264, "quartier_bv": "42", "geo_point_2d": [48.86023345378259, 2.371334740876286], "melenchon_jean_luc": 308.0, "poutou_philippe": 5.0, "macron_emmanuel": 541.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.356009055994515, 48.840987142104765], [2.356012675487317, 48.84099657432758], [2.355981293129167, 48.84107646760727], [2.355954537374604, 48.841153640026576], [2.355959546206798, 48.84117038525757], [2.355993147219233, 48.84117724392759], [2.356177761092749, 48.84114264266501], [2.356376882398676, 48.84110521243163], [2.35656149712476, 48.841070610581944], [2.356760616517461, 48.84103317970011], [2.35694523074464, 48.840998576356675], [2.3571443495865623, 48.84096114483368], [2.357328963292839, 48.84092654179512], [2.35752808158398, 48.840889109631014], [2.357712694780346, 48.84085450599807], [2.357911812520697, 48.840817073192774], [2.35809642521822, 48.840782468066095], [2.358295543770221, 48.84074503462702], [2.358480154584292, 48.84071042979789], [2.358679272585487, 48.84067299571767], [2.358863884252074, 48.84063839030145], [2.359063000340012, 48.8406009555728], [2.3592476115077172, 48.84056634866286], [2.3594467270448343, 48.840528913293106], [2.359631337691433, 48.84049430668803], [2.359830452677726, 48.840456870677166], [2.360015062814475, 48.84042226347767], [2.360214178612376, 48.84038482683295], [2.360398786887763, 48.84035021813251], [2.360402621108057, 48.840349874391066], [2.360599142491347, 48.84035083684923], [2.360798557256913, 48.84035206896517], [2.360995078666913, 48.84035302987357], [2.361194493450224, 48.840354261329466], [2.361391014864666, 48.840355222486785], [2.361590429665717, 48.84035645328263], [2.361786951106835, 48.840357412890164], [2.361986365925612, 48.840358643025965], [2.362076095698697, 48.840333210011565], [2.362069538242214, 48.840314596892135], [2.362021550031365, 48.84024921266595], [2.361967247067455, 48.84016810893584], [2.361880031851395, 48.84004927218486], [2.361831525640164, 48.839976825995464], [2.361825729315899, 48.83996816837598], [2.3618193713754, 48.83996398389314], [2.361642745607616, 48.839907924859695], [2.361467766060634, 48.839852759322014], [2.361291141048022, 48.839796699763845], [2.36111616224657, 48.83974153370636], [2.36093953798893, 48.839685473623426], [2.36076455993301, 48.839630307046214], [2.360587936430545, 48.83957424643851], [2.360412959120159, 48.83951907934149], [2.36023633638371, 48.8394630173098], [2.360061358445408, 48.83940785058498], [2.359884736464147, 48.839351788028615], [2.359709760633794, 48.83929662079128], [2.359533139407517, 48.83924055771018], [2.359358164322699, 48.83918538995309], [2.359181543851614, 48.83912932634729], [2.3590065695123332, 48.8390741580704], [2.358829949796237, 48.839018093939906], [2.358654976213562, 48.83896292424394], [2.358607212043556, 48.838947762971635], [2.358602586078861, 48.83894757268422], [2.358562268084051, 48.838999703122326], [2.358514330878688, 48.83911118583257], [2.358463534694621, 48.83922534947574], [2.358415597070555, 48.83933683212389], [2.35836480045043, 48.83945099570207], [2.358316862418727, 48.83956247738886], [2.358266065362336, 48.839676640902034], [2.358218126900848, 48.83978812342605], [2.358167329408287, 48.83990228687421], [2.358149355471566, 48.83990814422367], [2.357976052692857, 48.839864040237984], [2.357812245081845, 48.83982018393379], [2.3576389415184282, 48.83977607944888], [2.357475134467506, 48.8397322226796], [2.357301831481812, 48.839688117702906], [2.357138025002179, 48.83964425956925], [2.35713438509781, 48.83964365362219], [2.356985884920897, 48.83963293907099], [2.356727243565421, 48.839613326460984], [2.35657874356971, 48.83960261050475], [2.356564096783968, 48.83960923738287], [2.356508860319818, 48.83974618416735], [2.356459344128717, 48.83987225059781], [2.356404107110608, 48.8400091973017], [2.356354589042639, 48.84013526455104], [2.356305072108773, 48.840261330873695], [2.356249834272987, 48.840398277458654], [2.3562003168357792, 48.84052434370828], [2.356145078434903, 48.8406612911119], [2.356095560494548, 48.84078735728848], [2.356040321550792, 48.84092430371215], [2.356022185434939, 48.840970476531616], [2.356009055994515, 48.840987142104765]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 100, "zemmour_eric": 103.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "5-19", "circ_bv": "02", "num_bureau": 19, "roussel_fabien": 26.0, "nb_emargement": 1147.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 90.0, "le_pen_marine": 51.0, "nb_exprime": 1131.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 6, "nb_inscrit": 1396.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "18", "geo_point_2d": [48.84010590215067, 2.358679979400486], "melenchon_jean_luc": 270.0, "poutou_philippe": 2.0, "macron_emmanuel": 423.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355495726112641, 48.83138338298704], [2.3555117231989042, 48.83134923012888], [2.355561287962654, 48.831231767708566], [2.355616347530101, 48.83110728019236], [2.355665913190167, 48.8309898177107], [2.355720972252234, 48.83086533011942], [2.355770536084433, 48.83074786756166], [2.355825594641131, 48.83062337989539], [2.355825191927975, 48.83062157448593], [2.355758776021207, 48.830605537096865], [2.355641300955162, 48.83050039453424], [2.355523741587417, 48.83039549781746], [2.355406267457687, 48.83029035590364], [2.355288709036501, 48.830185458936214], [2.355171235865214, 48.83008031587245], [2.35505367839058, 48.82997541865439], [2.354936207517544, 48.82987027624675], [2.35481864962739, 48.82976537877065], [2.354701179712778, 48.82966023521313], [2.354583622769164, 48.82955533748639], [2.354466153790709, 48.82945019457769], [2.354348597804659, 48.82934529570091], [2.354231129773581, 48.829240152541686], [2.354113574722914, 48.82913525431357], [2.353996107639003, 48.82903011090379], [2.353878553546092, 48.8289252115257], [2.3537610874094392, 48.82882006786542], [2.353643535613917, 48.828715169143365], [2.353526069062479, 48.828610025225174], [2.353408518224597, 48.82850512535318], [2.353291052620404, 48.82839998118447], [2.353173502717846, 48.828295081961144], [2.353056038060889, 48.82818993754191], [2.352938489115958, 48.82808503716864], [2.35292247708799, 48.8280820365622], [2.352901448154419, 48.82808759423314], [2.35283882049259, 48.8281197308478], [2.3528423243226, 48.82812651130232], [2.352722881355415, 48.82819395470884], [2.352655185556027, 48.8282317307507], [2.352650357046243, 48.82823871523473], [2.352652945509498, 48.828371759241], [2.352654435595363, 48.82850396266719], [2.352657022720064, 48.828637006634565], [2.352658512823747, 48.828769210029414], [2.352661101334155, 48.82890225397261], [2.352662591455865, 48.82903445733613], [2.352665178627705, 48.829167501240406], [2.3526666687784, 48.829299703673314], [2.352669257324796, 48.82943274845267], [2.352670747493518, 48.829564950854255], [2.352672236296473, 48.82969715413219], [2.352674824887875, 48.82983019796497], [2.352674770489903, 48.82983106826328], [2.352654544366173, 48.829946122556535], [2.3526371119891, 48.8300744595005], [2.352623513235061, 48.83008264932674], [2.352499077883493, 48.83008245956427], [2.352401754850697, 48.83007911398691], [2.352394960060886, 48.830077903513235], [2.352219140319707, 48.83001068467693], [2.352041713791415, 48.829943559398885], [2.35186589494751, 48.82987634093452], [2.351688469331275, 48.829809215124385], [2.351512651396017, 48.829741996132675], [2.35133522669184, 48.82967486979047], [2.351159409665025, 48.829607650271434], [2.350981985872906, 48.829540523397164], [2.350806169765837, 48.82947330245145], [2.350628746885882, 48.829406175045115], [2.3504529330383113, 48.8293389544788], [2.350275509708162, 48.829271826533], [2.350099696769133, 48.829204605439344], [2.349922274351147, 48.829137476961506], [2.3497464623318782, 48.82907025444125], [2.349569040825855, 48.82900312543132], [2.349555436144578, 48.82900314857262], [2.349363783901301, 48.829076509462205], [2.349180205423062, 48.82914546837557], [2.348996627832444, 48.829214426110966], [2.34880497402613, 48.829287786091264], [2.348621394064756, 48.82935674413385], [2.348429739207231, 48.82943010350356], [2.348422911477812, 48.82944146046722], [2.348429345514024, 48.829450485657105], [2.348512773575481, 48.82957037962895], [2.348600672305193, 48.82969195272446], [2.348621773577649, 48.82973117239882], [2.348647781563868, 48.82972951260227], [2.348723218436028, 48.8297087386891], [2.348936713832478, 48.829648302138025], [2.349117727761744, 48.8295984539333], [2.34912076750536, 48.82959785890265], [2.349177116184716, 48.82959140406648], [2.349207233538055, 48.82958879248968], [2.349217987330915, 48.82958756130532], [2.349331087258146, 48.82957775474401], [2.349483655239341, 48.82956027795376], [2.349508247388261, 48.82956661738912], [2.349535430172627, 48.82956151919024], [2.349541429640393, 48.8295617191035], [2.349626652736577, 48.829568193991605], [2.349846340709048, 48.82960877830974], [2.34993307236937, 48.829622862681155], [2.349935315796491, 48.829623421694095], [2.350107396184207, 48.82967850456242], [2.350289989643173, 48.82973661671884], [2.350462070779268, 48.82979169907129], [2.350644665041251, 48.82984980978106], [2.35081674692572, 48.82990489161764], [2.350999340617339, 48.82996300177262], [2.351171423250177, 48.83001808309334], [2.351354019084673, 48.83007619360767], [2.351526102465782, 48.83013127441251], [2.351708699103269, 48.83018938348015], [2.351880783232847, 48.830244463769155], [2.352063379299854, 48.83030257228205], [2.352235464177794, 48.83035765205513], [2.352418062387597, 48.83041576092737], [2.352590148013904, 48.83047084018457], [2.352708137444169, 48.830508387258234], [2.352721686911827, 48.83052008317587], [2.352749437893553, 48.83052354575033], [2.352814047511234, 48.83054410607964], [2.352986892354851, 48.830598777850454], [2.353169492246801, 48.83065688556294], [2.353342337837205, 48.83071155681453], [2.353524938531522, 48.8307696630792], [2.3536977848573573, 48.830824334710975], [2.353880384980794, 48.83088244041976], [2.354053232053313, 48.830937111532315], [2.354235834330043, 48.83099521669995], [2.3544086821492503, 48.83104988729331], [2.354591285217284, 48.8311079919124], [2.354764133794304, 48.83116266108724], [2.354946736280108, 48.831220766049796], [2.355119585603904, 48.83127543470548], [2.355302190254232, 48.83133353822748], [2.355475040313477, 48.83138820726329], [2.355495726112641, 48.83138338298704]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 74, "zemmour_eric": 86.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-56", "circ_bv": "10", "num_bureau": 56, "roussel_fabien": 33.0, "nb_emargement": 1362.0, "nb_procuration": 75.0, "nb_vote_blanc": 18.0, "jadot_yannick": 106.0, "le_pen_marine": 87.0, "nb_exprime": 1336.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1663.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1362, "quartier_bv": "51", "geo_point_2d": [48.82987339597645, 2.353083614948575], "melenchon_jean_luc": 459.0, "poutou_philippe": 7.0, "macron_emmanuel": 393.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358904825827535, 48.85862198387922], [2.358891399365444, 48.85863270503452], [2.358763785000126, 48.85872004864756], [2.3586254807711162, 48.858819864553595], [2.3584978655125752, 48.858907206969064], [2.358359560277417, 48.85900702255093], [2.358231944114683, 48.859094364668024], [2.358093637862186, 48.859194180825064], [2.357966022158184, 48.85928152265117], [2.357823649491364, 48.85938240937618], [2.357704572397009, 48.85946895314513], [2.357562198711759, 48.85956983954203], [2.35744312076584, 48.859656382136926], [2.357300746062155, 48.85975726820577], [2.357181667242486, 48.85984381142514], [2.357039291520354, 48.85994469716588], [2.356920211838018, 48.86003124011048], [2.356917038700995, 48.86006061554797], [2.356940118883749, 48.860085671296716], [2.35705821986463, 48.86019021921409], [2.357168070910271, 48.86028802884183], [2.357286172807271, 48.860392576515196], [2.357396024718605, 48.86049038501654], [2.357505878394266, 48.86058819431507], [2.357623980286581, 48.86069274161942], [2.357733834827845, 48.86079054979155], [2.3578519376363962, 48.86089509685186], [2.357961791658219, 48.86099290568884], [2.358079896745793, 48.86109745251244], [2.358189751622346, 48.86119526112233], [2.358307857626079, 48.86129980770185], [2.358308282573315, 48.861300166121765], [2.358402566035509, 48.86137578597571], [2.358520671512538, 48.86148033232091], [2.358628901515086, 48.86157639963397], [2.358747009263968, 48.86168094574417], [2.35885523872655, 48.86177701372719], [2.358973347384507, 48.861881559595076], [2.359081579055267, 48.86197762646401], [2.3591996872592, 48.86208217208233], [2.359307919753013, 48.86217823962848], [2.359426030228844, 48.862282785011764], [2.3595342621937743, 48.86237885232851], [2.359652373578705, 48.86248339746949], [2.359760607751837, 48.86257946367219], [2.359784038339644, 48.86260360424364], [2.359824027707402, 48.86259258353737], [2.359824402358348, 48.86259237779263], [2.359964253418501, 48.86251251655866], [2.360106124231096, 48.86243275858979], [2.360245974430926, 48.86235289701507], [2.360387844366629, 48.86227313960008], [2.36052769371718, 48.86219327678537], [2.360669562786839, 48.86211351902491], [2.360809412629043, 48.8620336567761], [2.3609512808437962, 48.861953897770896], [2.36109112846268, 48.861874035174104], [2.361232995800469, 48.86179427672276], [2.36124470213129, 48.861787691238696], [2.361250840998093, 48.861785721160565], [2.361343221654405, 48.8617796966355], [2.361426896861782, 48.86176851820127], [2.361446797454276, 48.86176830871719], [2.361457039016995, 48.86176490267938], [2.361558288318901, 48.86175137619702], [2.361747347081808, 48.861724757630284], [2.361932271208291, 48.86170005301287], [2.362121329593979, 48.86167343385411], [2.362306251997853, 48.861648728650444], [2.36242121718174, 48.86163254141161], [2.362445517865222, 48.861616166073716], [2.362436619786164, 48.861588544716135], [2.362571331014408, 48.8615266048663], [2.362750450614259, 48.86144424785452], [2.362885162459284, 48.86138230765061], [2.363064281077838, 48.86129994925913], [2.363198990802672, 48.861238009585946], [2.363204627017414, 48.861229088382416], [2.363169172677522, 48.86109472082668], [2.363133788943016, 48.8609606135301], [2.363098334968415, 48.86082624592082], [2.36306295159858, 48.86069213857081], [2.363027497989465, 48.860557770908024], [2.362992113610336, 48.860423664396635], [2.362956661740562, 48.860289295788306], [2.362921277726099, 48.86015518922349], [2.362885826221591, 48.86002082056164], [2.362850442571891, 48.859886713943425], [2.3628537862149273, 48.859879121466996], [2.3629852142382353, 48.859783757335784], [2.363120258584244, 48.85968576821856], [2.363251684258138, 48.85959040467012], [2.363386727601829, 48.85949241523513], [2.363376517934661, 48.85947674914303], [2.363355466766018, 48.85946712025309], [2.363188191763339, 48.85940759274424], [2.363023664648808, 48.85934953926461], [2.362856390402722, 48.85929001128567], [2.362691865381127, 48.859231958250305], [2.362524590528597, 48.859172429794], [2.362360066248097, 48.85911437629632], [2.362351576981292, 48.85911341732395], [2.362156565192848, 48.85913310982311], [2.361961153396577, 48.85915284304084], [2.361766141313006, 48.85917253490304], [2.36157072785807, 48.859192267475265], [2.36137571684231, 48.85921195870786], [2.361180303091649, 48.859231690641856], [2.360985290417848, 48.8592513812302], [2.360789877734302, 48.85927111253324], [2.360594864765502, 48.85929080248472], [2.360399450423416, 48.859310533142235], [2.360204438522358, 48.859330222464], [2.36000902388447, 48.85934995248333], [2.359997211415152, 48.85934734595252], [2.359867271473075, 48.859259556261435], [2.359738409343408, 48.85917249346399], [2.3596084702846323, 48.8590847025788], [2.359479609008726, 48.85899764038826], [2.359349669459171, 48.85890984920089], [2.359220809059233, 48.858822785818695], [2.359090871733682, 48.8587349952431], [2.35896201219875, 48.858647931568456], [2.358915492101666, 48.85861836358391], [2.358911101317017, 48.85861985366547], [2.358904825827535, 48.85862198387922]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 71, "zemmour_eric": 64.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "3-5", "circ_bv": "05", "num_bureau": 5, "roussel_fabien": 13.0, "nb_emargement": 1038.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 106.0, "le_pen_marine": 43.0, "nb_exprime": 1025.0, "nb_vote_nul": 1.0, "arr_bv": "03", "arthaud_nathalie": 4, "nb_inscrit": 1292.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1038, "quartier_bv": "11", "geo_point_2d": [48.860485505505736, 2.360259254514983], "melenchon_jean_luc": 224.0, "poutou_philippe": 3.0, "macron_emmanuel": 459.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347289402034467, 48.8790127765565], [2.347257284249965, 48.879003537958376], [2.347058216347305, 48.878947177553876], [2.34685657057316, 48.87889113460291], [2.346657503533776, 48.87883477352637], [2.346455859989468, 48.87877872990219], [2.346256793813362, 48.87872236815359], [2.346055149771911, 48.87866632384131], [2.345856084459088, 48.87860996142068], [2.345654442647581, 48.87855391643521], [2.345642596938578, 48.878554315743735], [2.3455245937017413, 48.87859695022825], [2.345405212620326, 48.8786394079871], [2.345287207632927, 48.87868204222689], [2.345167826162943, 48.87872449974577], [2.345157873641266, 48.87872527898825], [2.344972158557446, 48.87869292479289], [2.34473324022979, 48.87865238925111], [2.344667334938626, 48.87864090823177], [2.344636547200442, 48.87862853213294], [2.344625644843379, 48.878631328733526], [2.34450583560186, 48.87861045575398], [2.3442990248875653, 48.878574222182515], [2.344113312228049, 48.87854186755715], [2.343906502070422, 48.87850563240607], [2.343720788536001, 48.87847327716232], [2.3435139789125, 48.87843704223018], [2.343328267229842, 48.878404686383], [2.343121458163242, 48.87836844987128], [2.342935745605596, 48.87833609340564], [2.3429281658723973, 48.87833620379068], [2.342762661590561, 48.87837248814867], [2.342545946673507, 48.87841730092631], [2.342537258869996, 48.878429038990205], [2.342609246952661, 48.87855570535057], [2.3426769414298, 48.878677855002934], [2.342748930184757, 48.87880452214996], [2.342816623960917, 48.87892667078904], [2.342888613399519, 48.8790533378235], [2.342956309178697, 48.87917548726273], [2.342964875661939, 48.87920006360409], [2.342992912287215, 48.87920094053784], [2.343169122885584, 48.87916561395036], [2.343355259478302, 48.87913127685553], [2.343369688283913, 48.87913441193278], [2.343500969852446, 48.87924558538409], [2.343627319379068, 48.87935183926214], [2.343758602034293, 48.87946301330827], [2.34388495261402, 48.87956926689343], [2.344011305061542, 48.879675521241715], [2.344142589363598, 48.87978669393483], [2.344268941512106, 48.879892947083526], [2.344400226912215, 48.88000411947214], [2.344412781621514, 48.88003765419766], [2.344418190199044, 48.880039218976506], [2.344467965057209, 48.880028387472954], [2.344642290398003, 48.879990451137644], [2.344838513169964, 48.879942716542246], [2.345012837953977, 48.879904779664415], [2.345209060063521, 48.879857044458], [2.345383384302253, 48.87981910613842], [2.345579604385804, 48.8797713703135], [2.345581073641178, 48.879770987135174], [2.3457327576532, 48.879724541862515], [2.345928978423804, 48.87967680546834], [2.346123044183099, 48.87966167039395], [2.346126460847202, 48.87966115575072], [2.346260377809252, 48.87965267973454], [2.346454443393625, 48.87963754322334], [2.346588361604943, 48.879629066847585], [2.346623906520651, 48.87961980525822], [2.346618881234066, 48.8795767105736], [2.346732166314101, 48.87948539987402], [2.346858731882461, 48.87937972811974], [2.346972016102128, 48.87928841807611], [2.347098582068588, 48.8791827460568], [2.347211865439276, 48.879091435769865], [2.347293184519296, 48.879023540615954], [2.347289402034467, 48.8790127765565]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 48, "zemmour_eric": 83.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "9-19", "circ_bv": "01", "num_bureau": 19, "roussel_fabien": 20.0, "nb_emargement": 1200.0, "nb_procuration": 71.0, "nb_vote_blanc": 19.0, "jadot_yannick": 148.0, "le_pen_marine": 54.0, "nb_exprime": 1181.0, "nb_vote_nul": 1.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1465.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1201, "quartier_bv": "36", "geo_point_2d": [48.8791298981335, 2.344855363038907], "melenchon_jean_luc": 287.0, "poutou_philippe": 4.0, "macron_emmanuel": 480.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.367829418244922, 48.85850936745307], [2.367738377837666, 48.8584999514488], [2.367580716905009, 48.858572242540426], [2.367423139141036, 48.8586444951896], [2.367265477333709, 48.8587167858565], [2.367107897332504, 48.85878903807395], [2.366950234650399, 48.858861328316095], [2.366792655137801, 48.85893358011623], [2.366634991580919, 48.8590058699336], [2.366477411194007, 48.85907812130925], [2.366319746762345, 48.85915041070189], [2.366162164138181, 48.85922266164575], [2.366004498831737, 48.859294950613666], [2.365846916696185, 48.85936720114022], [2.365689250525905, 48.85943948878408], [2.365531667516033, 48.859511738886134], [2.365374000459919, 48.8595840270045], [2.3652164165757252, 48.85965627668199], [2.3650587486449233, 48.85972856437561], [2.364901162523453, 48.859800813621334], [2.36474349371786, 48.8598731008902], [2.364585908085008, 48.85994534971861], [2.36456450926429, 48.859938264354554], [2.36455796415347, 48.85980906892846], [2.364551609210387, 48.859683617581034], [2.3645450655374542, 48.85955442123254], [2.364538710656489, 48.859428969855614], [2.364524581395424, 48.85942028357142], [2.364350781733096, 48.859424560547474], [2.364175819047594, 48.85942886616642], [2.364002020690948, 48.85943314264315], [2.363827057958788, 48.8594374468529], [2.363653258181956, 48.859441722815845], [2.363478295381187, 48.85944602741491], [2.363454869758114, 48.859437075712165], [2.36344437546808, 48.859440465291705], [2.363409123297518, 48.8594549209504], [2.363387359419765, 48.85947071373659], [2.363376517934661, 48.85947674914303], [2.363386727601829, 48.85949241523513], [2.363251684258138, 48.85959040467012], [2.363120258584244, 48.85968576821856], [2.3629852142382353, 48.859783757335784], [2.3628537862149273, 48.859879121466996], [2.362850442571891, 48.859886713943425], [2.362885826221591, 48.86002082056164], [2.362921277726099, 48.86015518922349], [2.362956661740562, 48.860289295788306], [2.362992113610336, 48.860423664396635], [2.363027497989465, 48.860557770908024], [2.36306295159858, 48.86069213857081], [2.363098334968415, 48.86082624592082], [2.363133788943016, 48.8609606135301], [2.363169172677522, 48.86109472082668], [2.363204627017414, 48.861229088382416], [2.363198990802672, 48.861238009585946], [2.363064281077838, 48.86129994925913], [2.362885162459284, 48.86138230765061], [2.362750450614259, 48.86144424785452], [2.362571331014408, 48.8615266048663], [2.362436619786164, 48.861588544716135], [2.362445517865222, 48.861616166073716], [2.3624898246794253, 48.86162291876905], [2.362563918839368, 48.8616124862218], [2.362758171325453, 48.86158518773751], [2.36294722886133, 48.861558568170565], [2.363141482308529, 48.86153126907005], [2.363330539452795, 48.86150464889627], [2.363524791135112, 48.861477349165014], [2.363713847898844, 48.861450727485106], [2.363908099168283, 48.86142342802966], [2.364097155540585, 48.86139680574295], [2.364291407781988, 48.86136950477193], [2.364480463751776, 48.86134288277771], [2.3646747142283813, 48.86131558117597], [2.364863769806528, 48.86128895857492], [2.3650580212442, 48.86126165635694], [2.365247076441753, 48.861235032249795], [2.365441326103555, 48.861207730300336], [2.365630380909649, 48.86118110558638], [2.365824630180469, 48.861153802114195], [2.366013684583946, 48.8611271776927], [2.366202738805238, 48.86110055207264], [2.366396988827709, 48.86107324857596], [2.366586042657419, 48.86104662234905], [2.366780290925993, 48.861019317322416], [2.366969344353082, 48.860992691388006], [2.367163593582672, 48.86096538574504], [2.3672382770002622, 48.860968228673435], [2.367251420165402, 48.860949765338454], [2.367264620179562, 48.86089306299784], [2.367296026749152, 48.860759776841796], [2.367328483703075, 48.86062034648402], [2.367344633750934, 48.86055180902495], [2.367351927687237, 48.86054358618729], [2.367355284380483, 48.860533521358064], [2.367370540534111, 48.86046877440771], [2.367402194609026, 48.86033493009033], [2.367433600490326, 48.86020164383111], [2.367465254230131, 48.860067800364064], [2.367496659789087, 48.85993451405619], [2.367528313215422, 48.85980066964099], [2.367559718441123, 48.85966738418373], [2.367591370180334, 48.85953353971239], [2.367622775083605, 48.85940025420649], [2.367654427861483, 48.85926640969346], [2.367685832453442, 48.859133123239644], [2.367717484896032, 48.85899927957699], [2.367748889165668, 48.8588659930745], [2.367780541295005, 48.858732148463645], [2.367811945231309, 48.85859886281184], [2.367829780414413, 48.858523440567815], [2.367829418244922, 48.85850936745307]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 70, "zemmour_eric": 74.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "3-6", "circ_bv": "05", "num_bureau": 6, "roussel_fabien": 27.0, "nb_emargement": 1190.0, "nb_procuration": 69.0, "nb_vote_blanc": 14.0, "jadot_yannick": 115.0, "le_pen_marine": 42.0, "nb_exprime": 1174.0, "nb_vote_nul": 2.0, "arr_bv": "03", "arthaud_nathalie": 5, "nb_inscrit": 1460.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1190, "quartier_bv": "11", "geo_point_2d": [48.86023685582616, 2.365317054770871], "melenchon_jean_luc": 266.0, "poutou_philippe": 8.0, "macron_emmanuel": 522.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.331920393034483, 48.85241972718718], [2.33193052091253, 48.85245060288338], [2.332139113071716, 48.85248584218187], [2.332304516473426, 48.85251286642125], [2.332513107783535, 48.85254810415888], [2.332678511576729, 48.85257512787979], [2.332887104740219, 48.85261036587032], [2.333052507562343, 48.85263738906513], [2.333055585352358, 48.85263766793352], [2.333213146828879, 48.852639966165356], [2.333366873736082, 48.85264244428142], [2.333524433878016, 48.852644742095706], [2.333678160802712, 48.85264722071117], [2.3336819142422423, 48.85264763103456], [2.333851856920519, 48.85268288232808], [2.334044108752116, 48.85272255556975], [2.334214053282426, 48.8527578063541], [2.334406305666209, 48.852797479011144], [2.334425877682574, 48.85278582160954], [2.334452930173234, 48.85276510343223], [2.334641311531643, 48.85280654479589], [2.334825050513298, 48.852848586902866], [2.335013432458079, 48.85289002857685], [2.335197172034337, 48.85293207010925], [2.335197386739329, 48.85293211896804], [2.335419851504819, 48.852983790664354], [2.335603591739591, 48.853025831569134], [2.335660352207178, 48.85303901560849], [2.335662045801379, 48.85304043789932], [2.335712128590326, 48.853051894948614], [2.335877833758847, 48.85309038267314], [2.336054545297788, 48.85313016875249], [2.336063774401818, 48.85313006707314], [2.336277725851457, 48.85307656065678], [2.33647452270207, 48.85302777028182], [2.336688474672682, 48.85297426313366], [2.336885270752354, 48.85292547207865], [2.33694051327118, 48.85293351177794], [2.336955198999691, 48.85291435684178], [2.337031734763015, 48.85289538183281], [2.337151994603473, 48.852865565345496], [2.337345724217099, 48.85281821440101], [2.337542519103549, 48.852769421358914], [2.3377362466421, 48.8527220697705], [2.337933040788345, 48.85267327698121], [2.338126768977338, 48.852625924764006], [2.338323562394807, 48.8525771313282], [2.338517288520138, 48.85252977756778], [2.338714081208824, 48.852480983485485], [2.338907807973162, 48.85243362999554], [2.338918710314614, 48.85242462652429], [2.338880914965081, 48.852373831630075], [2.338806481735962, 48.852262773479104], [2.338725588810735, 48.852144970372315], [2.338651156239562, 48.85203391210182], [2.338570264020754, 48.85191610886575], [2.338495832107517, 48.85180505047586], [2.338414939232488, 48.85168724710302], [2.338406331446757, 48.85168383681357], [2.338361907652234, 48.85169685937345], [2.338171325817803, 48.851677467467056], [2.3379849104695642, 48.851657948116426], [2.337794328929169, 48.85163855470958], [2.337607915223982, 48.851619034778466], [2.337417332592048, 48.85159964166219], [2.337230919167388, 48.85158012114309], [2.33704033818081, 48.8515607274332], [2.336853923673756, 48.85154120631849], [2.336663342969808, 48.85152181200744], [2.3364769287433003, 48.85150229030469], [2.336286348333447, 48.85148289449326], [2.336099935750019, 48.85146337221002], [2.335913521943541, 48.851443849628474], [2.335722941945668, 48.85142445381789], [2.335536529782479, 48.85140493065589], [2.335345948704543, 48.851385534236634], [2.335341694077601, 48.851385532186555], [2.335179005687565, 48.85140265234544], [2.334943433489884, 48.85142713133828], [2.334780746201758, 48.85144425096258], [2.334545172266318, 48.8514687291628], [2.334382484728974, 48.851485847345664], [2.334366879337986, 48.85147837680987], [2.334338758005444, 48.85136145054056], [2.334311702196541, 48.85124486833816], [2.334283579751102, 48.85112794202376], [2.334256524186883, 48.85101135978442], [2.334228401991372, 48.8508944334325], [2.334201346671833, 48.85077785115625], [2.334173226088748, 48.85066092477438], [2.334146169651181, 48.85054434245361], [2.334118049317911, 48.85042741603423], [2.334090994487719, 48.850310833684084], [2.334078028433146, 48.85030320781143], [2.333891218490722, 48.85029863794908], [2.333675300200991, 48.8502937195237], [2.333488490339403, 48.850289148133285], [2.333272572127008, 48.85028422898106], [2.333085762334775, 48.8502796569618], [2.332869844199726, 48.85027473708281], [2.332683034465239, 48.850270165334], [2.332467116419166, 48.85026524382892], [2.332280306754046, 48.850260671451316], [2.33206438877372, 48.8502557501187], [2.331877579189605, 48.850251176212986], [2.331808711733919, 48.850256806535384], [2.331807257247799, 48.8502819201858], [2.331835995851015, 48.850414306114715], [2.331863776840677, 48.85055411087287], [2.331892515749018, 48.85068649585656], [2.331920297023895, 48.850826301466675], [2.331949036226037, 48.85095868640439], [2.331976817809088, 48.8510984910679], [2.3320055586561272, 48.85123087686653], [2.332033339173211, 48.85137068147513], [2.332023131726026, 48.85138057587805], [2.331973845506012, 48.851388705206915], [2.331920725800906, 48.85139863520857], [2.331910845119791, 48.85140791356792], [2.331925892631737, 48.851550390121304], [2.331937482852426, 48.85167425943847], [2.331952530502587, 48.85181673685368], [2.3319641194831, 48.851940606131045], [2.33197570850718, 48.85206447629276], [2.331990757748815, 48.85220695276146], [2.332002346906981, 48.85233082199166], [2.331927934625457, 48.85240167874009], [2.331920393034483, 48.85241972718718]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 101, "zemmour_eric": 123.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "6-1", "circ_bv": "02", "num_bureau": 1, "roussel_fabien": 12.0, "nb_emargement": 1057.0, "nb_procuration": 70.0, "nb_vote_blanc": 8.0, "jadot_yannick": 59.0, "le_pen_marine": 50.0, "nb_exprime": 1048.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1310.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1057, "quartier_bv": "22", "geo_point_2d": [48.85184291421659, 2.3347724418693194], "melenchon_jean_luc": 192.0, "poutou_philippe": 3.0, "macron_emmanuel": 468.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295365715238077, 48.85451450961388], [2.29534822060358, 48.854524836449194], [2.295245378204075, 48.854585931251485], [2.295129033153775, 48.85465268792653], [2.295110068387849, 48.854651995222284], [2.2949815006986922, 48.85455990073202], [2.294854783794719, 48.85446844475238], [2.2947262170095453, 48.85437634997263], [2.294599500987831, 48.85428489460681], [2.294470936469522, 48.854192799545594], [2.294344219991617, 48.85410134298705], [2.294215656365293, 48.85400924853564], [2.294088940781708, 48.853917791691615], [2.294086838903755, 48.85391580429904], [2.294032728523101, 48.853846222720065], [2.293982769619776, 48.8537811642015], [2.293979610131502, 48.85377847536174], [2.293844738255357, 48.853700231159614], [2.293696086213326, 48.85361359087897], [2.29356121382702, 48.85353534633762], [2.293412562738983, 48.85344870479265], [2.293277692567861, 48.853370459928115], [2.293129042409423, 48.853283818917376], [2.292994171728036, 48.85320557371365], [2.292845522511388, 48.8531189323378], [2.292845067002727, 48.85311865444163], [2.292702688548288, 48.85302801091391], [2.292570619375555, 48.85294367421404], [2.292428241876631, 48.85285303034548], [2.292296172241033, 48.852768692422075], [2.29215379569762, 48.85267804821271], [2.292021728300236, 48.852593710880434], [2.291879352712324, 48.852503066330215], [2.291747284852185, 48.852418727774456], [2.291604910219773, 48.85232808288345], [2.291472844609944, 48.85224374401953], [2.291330470933023, 48.85215309878769], [2.291198404835886, 48.85206876049883], [2.291176763861006, 48.852059697147446], [2.291170931226755, 48.85206078139893], [2.29109743340388, 48.85213517367989], [2.2909862520786293, 48.85224771204232], [2.29087894095183, 48.85235632683574], [2.290767760045492, 48.85246886498086], [2.290660448007837, 48.85257747955665], [2.290549266157868, 48.852690017476405], [2.290441953209348, 48.852798631834645], [2.290330770415533, 48.852911169528994], [2.290223456556138, 48.85301978366967], [2.290112271455908, 48.85313232113049], [2.290004956685625, 48.853240935053634], [2.2898937720043913, 48.85335347229712], [2.28978645632311, 48.853462086002644], [2.289675270698102, 48.85357462302076], [2.289567954106018, 48.85368323650873], [2.289456767537224, 48.853795773301364], [2.289349450034123, 48.85390438657179], [2.289238262521535, 48.854016923139], [2.289130944107611, 48.8541255361918], [2.289019754288426, 48.85423807252553], [2.288912434963564, 48.854346685360746], [2.288801245563249, 48.85445922147711], [2.288693925327442, 48.85456783409475], [2.288582734983402, 48.85468036998566], [2.288475413836641, 48.85478898238569], [2.288364222536382, 48.85490151895045], [2.288256900490937, 48.855010130233616], [2.28814570824693, 48.85512266657291], [2.288038385290514, 48.85523127763849], [2.287927190739825, 48.855343813744234], [2.287819866872323, 48.85545242459219], [2.287712542545211, 48.85556103623254], [2.28760134796219, 48.855673571110906], [2.287537655015341, 48.855718905373585], [2.287559283095921, 48.85573236623356], [2.287698358960726, 48.855833785609825], [2.287833009453932, 48.85592895941327], [2.287967661789482, 48.85602413396444], [2.288106739240224, 48.85612555194017], [2.288109263887816, 48.85612820837394], [2.288180767120059, 48.85624463830742], [2.288253362349898, 48.8563617689834], [2.288324864861798, 48.85647819879818], [2.288397460740977, 48.8565953293621], [2.288468963895485, 48.856711759066286], [2.288541560423911, 48.856828889518134], [2.288613064220935, 48.856945319111674], [2.288685661386441, 48.85706245035077], [2.288757165838265, 48.85717887893447], [2.28882976365324, 48.85729601006151], [2.288901268747491, 48.857412438534595], [2.288973867211841, 48.857529569549534], [2.288975937598661, 48.857531863519256], [2.289097145193247, 48.85762952260177], [2.289231226442833, 48.8577422718727], [2.289352435005386, 48.85783993067817], [2.289486517348869, 48.85795267964165], [2.289607726867137, 48.858050339069294], [2.289741810304527, 48.8581630877254], [2.289813006089304, 48.858220450304984], [2.289858944480748, 48.858234719607346], [2.289900496400443, 48.858208817411374], [2.290040403441151, 48.85811942415299], [2.290184244839871, 48.85802733531072], [2.290324150894289, 48.85793794260526], [2.290467991290387, 48.85784585340686], [2.290607896382921, 48.857756459455736], [2.290751735776503, 48.857664369901244], [2.290891639894908, 48.85757497560381], [2.291035478286082, 48.857482885693194], [2.291175381430265, 48.85739349104938], [2.291319220181808, 48.85730140079072], [2.291459120976774, 48.85721200669182], [2.291602958725818, 48.85711991607704], [2.29174285855891, 48.857030520732515], [2.291886695305462, 48.856938429761655], [2.292026595527318, 48.85684903407884], [2.292170429908523, 48.85675694274381], [2.292310329156384, 48.85666754671468], [2.292454162535011, 48.85657545502356], [2.2925940607965742, 48.8564860595474], [2.292737893172836, 48.85639396750022], [2.292877790472426, 48.85630457077845], [2.293021621846227, 48.85621247837516], [2.293161518171742, 48.85612308130707], [2.293305348543087, 48.85603098854771], [2.293445243894531, 48.85594159113335], [2.293589073251236, 48.85584949891718], [2.293728967628721, 48.855760101156505], [2.293872795995077, 48.855668007685], [2.294012689398507, 48.85557860957798], [2.294156516762428, 48.85548651575042], [2.2942964091918068, 48.85539711729716], [2.294440235553401, 48.85530502311351], [2.294580126996461, 48.85521562521324], [2.294723952355637, 48.85512353067354], [2.294863842836836, 48.855034131527674], [2.295007668556408, 48.85494203663995], [2.295147556700869, 48.85485263713982], [2.295291381417927, 48.85476054189605], [2.295431268588369, 48.85467114204959], [2.295522143675004, 48.85461295171281], [2.295527436210305, 48.85460223374202], [2.295457584155034, 48.8545782439934], [2.295419930352932, 48.85455002075791], [2.295385617799251, 48.854524461298794], [2.295365715238077, 48.85451450961388]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 188, "zemmour_eric": 176.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-16", "circ_bv": "12", "num_bureau": 16, "roussel_fabien": 8.0, "nb_emargement": 1456.0, "nb_procuration": 87.0, "nb_vote_blanc": 11.0, "jadot_yannick": 93.0, "le_pen_marine": 82.0, "nb_exprime": 1436.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1756.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1456, "quartier_bv": "59", "geo_point_2d": [48.855141772259955, 2.2911545318437123], "melenchon_jean_luc": 195.0, "poutou_philippe": 4.0, "macron_emmanuel": 632.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.300012827905065, 48.857765154969954], [2.300037469777969, 48.85778173752836], [2.300024824142327, 48.85791534911567], [2.300011851004982, 48.858007796187316], [2.300010599971362, 48.85801671047189], [2.300006299422827, 48.85802272268607], [2.299875346522388, 48.858103424668506], [2.299737526356915, 48.858187180998634], [2.299606571275922, 48.85826788176776], [2.299468751606276, 48.85835163778388], [2.299337795683645, 48.85843233914616], [2.29919997514692, 48.85851609484036], [2.2990690183945333, 48.85859679589657], [2.298931196990726, 48.8586805512688], [2.298800239420881, 48.85876125111963], [2.29866241714999, 48.85884500616991], [2.298667962047959, 48.858860279129296], [2.2988629824260762, 48.85889644728906], [2.299042589626332, 48.85893053547351], [2.299237610527477, 48.858966703020485], [2.299417218215019, 48.85900079064047], [2.299612239627095, 48.85903695847395], [2.299791847814109, 48.859071044630255], [2.299960680518642, 48.85910308710185], [2.300155702702953, 48.85913925314702], [2.300166478411307, 48.85914129834209], [2.300175774859702, 48.85914083647949], [2.300348596061242, 48.859089354421], [2.300540455905662, 48.859037423997336], [2.300558908202224, 48.85904372120594], [2.30060031227449, 48.859161998936536], [2.300644835653264, 48.859290694099116], [2.30068623874186, 48.859408972664966], [2.300730762543931, 48.85953766776692], [2.300772167386793, 48.85965594628468], [2.300805710419084, 48.85975290283217], [2.300819828017728, 48.85976350865323], [2.30085159694575, 48.85975855985304], [2.301026944577612, 48.859687718619334], [2.301197910069462, 48.8596183687473], [2.301373255395702, 48.85954752698927], [2.301544219978625, 48.859478175714436], [2.301719564350126, 48.85940733433933], [2.301890528012062, 48.859337982560966], [2.302061491218863, 48.85926863053408], [2.302236834181833, 48.859197788387654], [2.302407796467648, 48.859128435857265], [2.302583139850864, 48.85905759320238], [2.3027541012156902, 48.85898824016849], [2.302929442293411, 48.85891739698934], [2.303100402737253, 48.85884804345194], [2.303275742884224, 48.85877719885716], [2.303292838188608, 48.85875880586831], [2.303266887591743, 48.85874100945048], [2.303209517118473, 48.85872179796484], [2.303031434678656, 48.85866171829329], [2.30286994579826, 48.858607641079935], [2.302691864152322, 48.85854755999762], [2.302530375978094, 48.85849348232045], [2.3023522951139093, 48.8584334007266], [2.30219080628315, 48.858379322577676], [2.302029319150515, 48.85832524421614], [2.301851239439036, 48.85826516186758], [2.301689753012672, 48.858211083042235], [2.301511674070996, 48.8581510010815], [2.301510277262024, 48.8581355294212], [2.3016949707322523, 48.85805364365455], [2.301870790223418, 48.85797514676134], [2.302055481183605, 48.85789326131779], [2.302231299590435, 48.85781476388359], [2.302415990778421, 48.85773287787979], [2.3025918067381372, 48.857654379896594], [2.30259655709963, 48.857650682452956], [2.302683993817089, 48.8575268678431], [2.302772797139412, 48.85739918489924], [2.302860234378799, 48.857275370140464], [2.302949036828568, 48.857147687936155], [2.303036471864348, 48.85702387301264], [2.303125274828401, 48.85689618975729], [2.303212709023358, 48.85677237467697], [2.303301509752124, 48.85664469215323], [2.303298149977279, 48.85663420318998], [2.3031414798506322, 48.856542813006016], [2.302980607644748, 48.856449844941466], [2.302823939992345, 48.856358454334504], [2.302663067559387, 48.85626548581969], [2.302662319699106, 48.856252421909325], [2.302789019660841, 48.856167221314635], [2.302911258319138, 48.85608732058049], [2.303037957460425, 48.85600212060883], [2.303160196712399, 48.85592221961648], [2.303164199580479, 48.85591519017369], [2.303160960997863, 48.85587424429783], [2.303152758003995, 48.85579839426115], [2.303113835808103, 48.85577567018306], [2.303075788384682, 48.85579993897136], [2.302937824077687, 48.85588757088518], [2.302795602174829, 48.855978516239865], [2.3026576369237732, 48.85606614781656], [2.302515414044444, 48.85615709282362], [2.302377447849421, 48.85624472406318], [2.30223522399351, 48.85633566872262], [2.302097256854413, 48.856423299625], [2.301955032022016, 48.85651424393684], [2.30181706393884, 48.85660187450209], [2.30167483812995, 48.85669281846623], [2.301536869102687, 48.85678044869436], [2.3013946436801618, 48.85687139231881], [2.301256673708707, 48.85695902220979], [2.301114445946918, 48.85704996547864], [2.300976475031364, 48.85713759503246], [2.300834246293063, 48.857228537953645], [2.300696274433506, 48.85731616717029], [2.3005540447185853, 48.85740710974381], [2.300416071914917, 48.857494738623316], [2.3002738412234702, 48.85758568084922], [2.300135867475686, 48.8576733093915], [2.300033465893634, 48.85773878428224], [2.300012827905065, 48.857765154969954]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 142, "zemmour_eric": 155.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "7-22", "circ_bv": "02", "num_bureau": 22, "roussel_fabien": 6.0, "nb_emargement": 1064.0, "nb_procuration": 66.0, "nb_vote_blanc": 12.0, "jadot_yannick": 54.0, "le_pen_marine": 68.0, "nb_exprime": 1048.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1322.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "28", "geo_point_2d": [48.85806061831014, 2.301357385690294], "melenchon_jean_luc": 112.0, "poutou_philippe": 6.0, "macron_emmanuel": 477.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.257679316421076, 48.84305814959561], [2.257694685745685, 48.843069488008815], [2.257717860210538, 48.843100711389184], [2.257802265442399, 48.84321183709291], [2.257883420735583, 48.84332117979506], [2.257967825302186, 48.843432306250875], [2.258048981298813, 48.8435416479198], [2.258133387937978, 48.843652774245285], [2.25821454324994, 48.84376211667114], [2.258298950611971, 48.84387324195855], [2.2583801066145828, 48.84398258425047], [2.258464514686688, 48.844093709399104], [2.258545671380058, 48.8442030515571], [2.258545488650783, 48.844211202319435], [2.2584570113116538, 48.844321975304666], [2.25836185947764, 48.844439161619924], [2.258273381361218, 48.84454993444677], [2.258178228698117, 48.844667120591986], [2.258089749804393, 48.84477789326037], [2.2579945963121952, 48.84489507923559], [2.257906116641159, 48.84500585174551], [2.257810962319752, 48.84512303755074], [2.257722481871496, 48.845233809902155], [2.257627326720973, 48.84535099553738], [2.25764047891013, 48.84536420525088], [2.257801431779702, 48.84535526945855], [2.258014455755133, 48.84534593871623], [2.258175408504169, 48.84533700242063], [2.258388432337973, 48.84532767101223], [2.258549384966465, 48.84531873421341], [2.258549864833009, 48.8453187192001], [2.258575661417118, 48.84533124900608], [2.258591600069705, 48.84532370134307], [2.258646198261584, 48.84532258631122], [2.258828583684803, 48.84531912960302], [2.258973832629417, 48.84531616209068], [2.259173681102309, 48.84531207823854], [2.259356066453865, 48.84530862072612], [2.259538451781118, 48.84530516293567], [2.259738298792255, 48.84530107903123], [2.259920684067855, 48.845297620658016], [2.260120532395435, 48.84529353522417], [2.260302917619165, 48.845290076268235], [2.260448670726273, 48.84528709659298], [2.260498110109778, 48.84528557828538], [2.2605000160128492, 48.84528416906269], [2.260554111157536, 48.84528306354167], [2.260753958004423, 48.845278977940474], [2.260964326362802, 48.845271875762855], [2.261164173147275, 48.84526778857714], [2.261374541404682, 48.845260685678106], [2.2615743881013293, 48.84525659870639], [2.261784754895003, 48.84524949507759], [2.2619846028919532, 48.845245406529706], [2.262194969584533, 48.84523830217953], [2.262206466258588, 48.845225307043314], [2.262151138313946, 48.845152090814906], [2.26209799858352, 48.845075434473266], [2.262102448924176, 48.8450665842468], [2.262078092419102, 48.84504718840547], [2.262051339713273, 48.845008595125115], [2.261969837160498, 48.84488814163179], [2.261889945500646, 48.844772891866874], [2.261808445064661, 48.844652437347285], [2.261728552760591, 48.844537187441844], [2.26164705305347, 48.844416733686124], [2.261567161467509, 48.844301483648515], [2.261485662514825, 48.844181028858124], [2.261405771647067, 48.844065778688396], [2.261324273423123, 48.84394532466186], [2.261244384636073, 48.84383007436845], [2.261243641816997, 48.843823936073896], [2.261298315055636, 48.84369339727182], [2.261351598045314, 48.84356180927512], [2.261406270738584, 48.84343127039303], [2.261459554562857, 48.843299681426494], [2.2615142267108608, 48.843169142464404], [2.261567508632087, 48.843037553410404], [2.261622180234736, 48.84290701436831], [2.261675462977914, 48.84277542524376], [2.26167449264391, 48.842769089479134], [2.261576050937796, 48.84263881499089], [2.261479199834668, 48.84251931120447], [2.261452328896747, 48.84249399168746], [2.261438025825298, 48.842493807150305], [2.261393988857229, 48.84251408500628], [2.26122751463442, 48.842589162765215], [2.261073957829621, 48.8426598708896], [2.260920401957803, 48.84273057972004], [2.260753926361285, 48.84280565680539], [2.260600368276034, 48.842876364308154], [2.260433891752854, 48.84295144093833], [2.260415085587486, 48.84294921294927], [2.2603123685391, 48.842853473839085], [2.26021486524314, 48.84276415690737], [2.260195271620743, 48.8427624060764], [2.260052823052193, 48.84283803369536], [2.259916661604359, 48.84291151096766], [2.259774212224005, 48.84298713824479], [2.259638049993847, 48.84306061519013], [2.259495599801685, 48.8431362421254], [2.259359436789199, 48.84320971874385], [2.259331761356018, 48.84321871468923], [2.259329224154272, 48.843229264794175], [2.259206636444831, 48.84331001126091], [2.259103525887534, 48.84337509696144], [2.259000416422326, 48.84344018347706], [2.258877827707364, 48.84352092959162], [2.258858427038656, 48.8435208282869], [2.258723893957221, 48.843429375900634], [2.25859088834733, 48.84333939339817], [2.2584563562036832, 48.84324794069616], [2.258323351518611, 48.84315795788161], [2.258188820299944, 48.84306650576314], [2.258055816539886, 48.84297652263656], [2.25792128627179, 48.842885069303065], [2.257788283436641, 48.84279508586441], [2.257771189192933, 48.84279378993579], [2.257650315162777, 48.84284481404904], [2.257571197762888, 48.84287821138855], [2.257566230394812, 48.84288964575117], [2.2576226513815962, 48.842968061360224], [2.257680630109806, 48.84304618081587], [2.257679316421076, 48.84305814959561]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 193, "zemmour_eric": 206.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-50", "circ_bv": "14", "num_bureau": 50, "roussel_fabien": 10.0, "nb_emargement": 1311.0, "nb_procuration": 75.0, "nb_vote_blanc": 9.0, "jadot_yannick": 47.0, "le_pen_marine": 98.0, "nb_exprime": 1305.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1704.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1314, "quartier_bv": "61", "geo_point_2d": [48.84415865519798, 2.2599382175374374], "melenchon_jean_luc": 111.0, "poutou_philippe": 2.0, "macron_emmanuel": 602.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294458479574836, 48.884378342392495], [2.294464018983086, 48.884375711207454], [2.294597129590354, 48.884274612653535], [2.294720062781389, 48.884182668573295], [2.294842996913977, 48.884090723467885], [2.294976106057053, 48.88398962446649], [2.295099039281857, 48.88389767908205], [2.295232147434428, 48.88379657977824], [2.295355078387895, 48.88370463410676], [2.295488185549971, 48.883603534500544], [2.295611116959237, 48.883511588558086], [2.295744223130824, 48.88341048864948], [2.2958671536201702, 48.88331854332723], [2.295956198642404, 48.88325090819144], [2.2959616239997658, 48.883241669750205], [2.295923082661246, 48.88321934374534], [2.295887635038107, 48.88309084963274], [2.295852108354706, 48.88296206364405], [2.29581666108181, 48.88283356948041], [2.295781133385905, 48.88270478343251], [2.295745686463252, 48.882576289217816], [2.295710160481913, 48.88244750312674], [2.295674713897334, 48.88231900976026], [2.2956391869034922, 48.882190223610024], [2.2956037406813072, 48.88206172929323], [2.295568215402009, 48.88193294309983], [2.295532769530049, 48.88180444873196], [2.295497243238251, 48.881675662479374], [2.295468004116497, 48.88166060999953], [2.295456551400597, 48.88166352390244], [2.2952810585629, 48.88158428113791], [2.295115255799426, 48.88150978340109], [2.294939762635714, 48.88143054011718], [2.294773960849926, 48.8813560418973], [2.294598470099185, 48.8812767972108], [2.294432669291182, 48.8812022985079], [2.294422761909257, 48.88120085873748], [2.294226470791532, 48.88122232904165], [2.294032641710968, 48.88124352935228], [2.29383635027148, 48.881264999016], [2.293642520873299, 48.88128619869421], [2.293448689941614, 48.881307398949424], [2.29325239803297, 48.88132886675522], [2.29305856814707, 48.881350066386055], [2.292862275916793, 48.88137153355145], [2.292668445713392, 48.88139273254984], [2.292472153149175, 48.88141419997402], [2.292278322640396, 48.881435397440725], [2.292082029754658, 48.88145686422449], [2.291888198928301, 48.88147806105877], [2.29169190572085, 48.88149952720206], [2.291680509245105, 48.88150871934834], [2.291686440275212, 48.88161844204876], [2.291692371183538, 48.88172817552912], [2.291698300900218, 48.88183789819899], [2.291704233222045, 48.88194763166492], [2.291710162988603, 48.88205735431233], [2.291716095360424, 48.882167087755796], [2.291713948227778, 48.882172260626255], [2.291706337758042, 48.882180092888554], [2.291685787125131, 48.8821879888898], [2.291688158986304, 48.88220288693753], [2.291688602409632, 48.882205675704625], [2.291708381351358, 48.88221501631286], [2.2918638572464918, 48.882292751923124], [2.29201875527699, 48.882370197917155], [2.2921736551192993, 48.882447644612704], [2.292329132403446, 48.88252537960232], [2.292484031817688, 48.882602824978036], [2.29263951002842, 48.88268055955363], [2.292794411717128, 48.88275800542419], [2.292949890854453, 48.88283573958577], [2.293104792114982, 48.882913184136505], [2.293260272178898, 48.88299091788405], [2.293263964916036, 48.88299372942093], [2.293358838235227, 48.883106777392435], [2.293454671429834, 48.88322097039706], [2.293549545576997, 48.88333401819409], [2.293645380983615, 48.88344821013129], [2.293740255958866, 48.88356125775383], [2.293836090826099, 48.88367545040603], [2.293930966629242, 48.88378849785411], [2.294026802345146, 48.883902689430755], [2.29412167897629, 48.88401573670437], [2.294217516892151, 48.88412992811281], [2.294312394339123, 48.88424297611117], [2.294408231727809, 48.88435716733533], [2.294458479574836, 48.884378342392495]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 173, "zemmour_eric": 188.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-55", "circ_bv": "04", "num_bureau": 55, "roussel_fabien": 7.0, "nb_emargement": 1304.0, "nb_procuration": 66.0, "nb_vote_blanc": 12.0, "jadot_yannick": 72.0, "le_pen_marine": 54.0, "nb_exprime": 1289.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1599.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1305, "quartier_bv": "65", "geo_point_2d": [48.88248858536138, 2.2940397073013212], "melenchon_jean_luc": 123.0, "poutou_philippe": 2.0, "macron_emmanuel": 632.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.357567060143579, 48.875187663824235], [2.357625847669934, 48.87516082386908], [2.357708963372721, 48.87503938829834], [2.357790743379672, 48.87491976484905], [2.357873858302252, 48.87479833003657], [2.357955637563092, 48.87467870554919], [2.358038751716566, 48.87455727059571], [2.358120530220214, 48.87443764596954], [2.358203643604591, 48.87431621087507], [2.35828542133998, 48.874196587009415], [2.358368533955271, 48.87407515177388], [2.358450310944569, 48.873955526870176], [2.3584516785494642, 48.87395396665632], [2.358544943456814, 48.8738687345196], [2.358681776928439, 48.87374347243422], [2.358775041082363, 48.87365824010196], [2.358911874810965, 48.87353297773701], [2.359005138211467, 48.87344774520922], [2.359005166557709, 48.87343724380455], [2.358881535688404, 48.873323411849725], [2.358759465423479, 48.87321287159232], [2.358758791319502, 48.87320295368936], [2.358855616377408, 48.87309638287574], [2.358953006192101, 48.872991414921046], [2.359049829096126, 48.8728848439226], [2.359147219487102, 48.87277987579713], [2.359244041589487, 48.87267330552041], [2.3593414311936662, 48.87256833721679], [2.359438252516548, 48.87246176586332], [2.359535639970555, 48.872356797374295], [2.359632461866155, 48.872250225850635], [2.359729848533182, 48.87214525718349], [2.359826669627171, 48.87203868638157], [2.35992405550743, 48.87193371753632], [2.360020875821926, 48.87182714565766], [2.360118260915322, 48.8717221766343], [2.360215645616117, 48.87161720752173], [2.360312464745718, 48.871510635376666], [2.360326921160137, 48.87149644463131], [2.360302773582744, 48.87147916430135], [2.360075074366522, 48.871425370976866], [2.359865868707558, 48.871374929924436], [2.359860728570438, 48.87137441049709], [2.359656351702491, 48.87137978985841], [2.359453807127673, 48.871385276704224], [2.359249431538323, 48.871390655378036], [2.359046886878397, 48.871396141535214], [2.358844342175806, 48.87140162734968], [2.358639966459378, 48.8714070049828], [2.3584374216716952, 48.87141249010862], [2.3582330445073882, 48.871417867039646], [2.358030499634623, 48.871423351476864], [2.35782612374895, 48.871428727720335], [2.357818406605392, 48.8714305587408], [2.357680911340759, 48.871498923473794], [2.357494321598304, 48.87159267006776], [2.357444089980739, 48.87161764575852], [2.357420282481658, 48.87162547440163], [2.357418910882247, 48.871629018526086], [2.3573316463417893, 48.87167240716723], [2.357224301987839, 48.871725124675535], [2.357086803813761, 48.87179348780127], [2.356979458962591, 48.871846205084275], [2.356974957529249, 48.871856784101475], [2.357050738550924, 48.87198067931448], [2.3571261356759923, 48.87210389520024], [2.357201917416765, 48.872227790289806], [2.357277316620315, 48.872351006060086], [2.357353097705928, 48.8724749019182], [2.357428497635898, 48.87259811666643], [2.3575042808038082, 48.872722012408396], [2.357579680074835, 48.872845227925744], [2.357655463972965, 48.87296912264505], [2.357730865322626, 48.87309233804689], [2.357728158860104, 48.87310186189602], [2.357574199990975, 48.87320995354512], [2.357425667112599, 48.87331171130651], [2.357277133664968, 48.87341346797495], [2.357123172938818, 48.87352155901346], [2.356974638290724, 48.87362331618645], [2.356820677690866, 48.87373140592342], [2.356759705559397, 48.873743256217], [2.356761412719699, 48.87376167571446], [2.356761691754098, 48.87376469358949], [2.356774976286638, 48.87378027943366], [2.356839350343237, 48.87389549221501], [2.356911358633214, 48.874024921305256], [2.356975733282738, 48.874140134887], [2.3570477422498293, 48.87426956386649], [2.357112117503496, 48.87438477734934], [2.357184127147608, 48.874514206218116], [2.357248503016419, 48.8746294187028], [2.357320514701, 48.87475884746814], [2.357384889799431, 48.87487406074591], [2.3574569021612612, 48.87500348940053], [2.357521277863649, 48.8751187025794], [2.357556640764891, 48.87518225955716], [2.357567060143579, 48.875187663824235]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 50, "zemmour_eric": 47.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "10-1", "circ_bv": "05", "num_bureau": 1, "roussel_fabien": 25.0, "nb_emargement": 1124.0, "nb_procuration": 76.0, "nb_vote_blanc": 24.0, "jadot_yannick": 114.0, "le_pen_marine": 39.0, "nb_exprime": 1094.0, "nb_vote_nul": 6.0, "arr_bv": "10", "arthaud_nathalie": 1, "nb_inscrit": 1441.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1124, "quartier_bv": "39", "geo_point_2d": [48.87281742653124, 2.358256325318362], "melenchon_jean_luc": 408.0, "poutou_philippe": 8.0, "macron_emmanuel": 357.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328775845315838, 48.8456487286767], [2.328791589858191, 48.84563260780589], [2.328913524273861, 48.84553404272617], [2.329041871355705, 48.84543046176236], [2.329163806187642, 48.84533189641732], [2.329292150911665, 48.84522831515859], [2.329414084797307, 48.84512974954061], [2.32954242852619, 48.845026167994625], [2.32966436145398, 48.84492760300298], [2.32979270418753, 48.84482402116969], [2.329914636180612, 48.84472545500583], [2.330042977919041, 48.84462187288526], [2.330164908965854, 48.84452330644845], [2.330293251071507, 48.84441972404827], [2.330415179809519, 48.844321157330896], [2.330543520919961, 48.84421757464343], [2.330665448711727, 48.84411900765312], [2.330757256192514, 48.84404491009622], [2.330757151437222, 48.84404022832394], [2.330736075549769, 48.84402975964632], [2.330667857722914, 48.8439981691815], [2.33059423906461, 48.8439636794864], [2.330589462888604, 48.84395966768149], [2.330520874779527, 48.84384575092044], [2.330452019043843, 48.84373168871074], [2.330383430172787, 48.84361777183999], [2.330314575050653, 48.843503708628575], [2.330245988130896, 48.84338979256268], [2.330177133610849, 48.84327572924884], [2.330108545940565, 48.84316181217393], [2.330039692010941, 48.84304774965698], [2.329971106303585, 48.842933832487624], [2.329902252987391, 48.84281976896897], [2.329833666506485, 48.84270585258922], [2.329764813792258, 48.84259178896814], [2.329696229285819, 48.842477871594674], [2.329627377161982, 48.8423638087705], [2.329558791893454, 48.84224989128733], [2.329489940371566, 48.84213582836077], [2.329426806646819, 48.842063473111814], [2.329420277783173, 48.84206502299375], [2.329351869309355, 48.84208768843158], [2.329175117660295, 48.842145567139454], [2.328998471717595, 48.842204094620506], [2.328821717918843, 48.84226197279257], [2.328645071184668, 48.84232049974567], [2.328468317972879, 48.84237837649792], [2.328291670447336, 48.84243690292308], [2.328114915074165, 48.84249478003875], [2.327938266757354, 48.84255330593598], [2.327761511971067, 48.84261118163183], [2.327584862851189, 48.84266970790039], [2.327408107277809, 48.84272758306806], [2.327231457378167, 48.84278610790936], [2.327054699643383, 48.84284398344046], [2.326878048952478, 48.84290250775382], [2.326701291804611, 48.842960381865076], [2.326582969968526, 48.84299958199912], [2.32655977385956, 48.84300703486323], [2.326608652436229, 48.84307968547433], [2.3266980876703522, 48.84319194749849], [2.326787099635583, 48.84330377896291], [2.326876535638622, 48.843416040831094], [2.326965548357761, 48.84352787303958], [2.327054985129828, 48.843640134751766], [2.327143998626217, 48.84375196590574], [2.327233011142078, 48.84386379697462], [2.327322450429148, 48.843976058460704], [2.327411463699146, 48.84408789027366], [2.327500903755172, 48.84420015160377], [2.327589917802325, 48.844311982362136], [2.327679358627415, 48.84442424353631], [2.327768373428629, 48.84453607503875], [2.327857815022589, 48.844648336056935], [2.327946830601174, 48.8447601665048], [2.328036272964115, 48.84487242736698], [2.328125289296682, 48.84498425855889], [2.328214732428715, 48.84509651926513], [2.328303749538564, 48.84520834940248], [2.328393193439494, 48.84532060995272], [2.328482211303552, 48.845432440834074], [2.32857165597349, 48.84554470122835], [2.328575295223453, 48.845547586121945], [2.328661806293006, 48.84559279870152], [2.328770093116251, 48.84564897610502], [2.328775845315838, 48.8456487286767]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 103, "zemmour_eric": 117.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 23.0, "date_tour": "2022-04-10", "id_bvote": "6-20", "circ_bv": "11", "num_bureau": 20, "roussel_fabien": 5.0, "nb_emargement": 980.0, "nb_procuration": 62.0, "nb_vote_blanc": 1.0, "jadot_yannick": 61.0, "le_pen_marine": 42.0, "nb_exprime": 972.0, "nb_vote_nul": 7.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1204.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 980, "quartier_bv": "23", "geo_point_2d": [48.84372865183688, 2.3287570388812457], "melenchon_jean_luc": 128.0, "poutou_philippe": 4.0, "macron_emmanuel": 467.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323799011839277, 48.83070128693545], [2.323776685364393, 48.830679581103766], [2.323716102198642, 48.830593434591314], [2.323649398087068, 48.83049662011583], [2.323568402678732, 48.83038144676606], [2.323501699112594, 48.830284632189894], [2.323501097486493, 48.830283859821115], [2.323437107429596, 48.83020701408602], [2.323346476820712, 48.83010335560821], [2.3232595641618072, 48.83000147816564], [2.323168934274937, 48.82989781863493], [2.323082023667701, 48.8297959410524], [2.322991394479485, 48.8296922822675], [2.322904483199693, 48.82959040452957], [2.3228138547218, 48.829486745591105], [2.322726945493752, 48.82938486771318], [2.322636317737857, 48.82928120772189], [2.322628636875989, 48.82928020998106], [2.322588953668176, 48.82929795294939], [2.32242842883776, 48.82935700769876], [2.322244691226544, 48.829424767055], [2.322084165615578, 48.829483821335636], [2.321900425736119, 48.829551581046914], [2.321739900706857, 48.82961063486651], [2.321556159944797, 48.829678393141926], [2.32139563276123, 48.82973744738433], [2.321211892466826, 48.829805205130945], [2.321051364514516, 48.82986425800528], [2.320867621951843, 48.82993201610688], [2.320707094581246, 48.8299910685202], [2.320523351135992, 48.83005882518592], [2.320362821622787, 48.83011787712275], [2.320362493149272, 48.830117994873106], [2.320193830432353, 48.83017737810113], [2.319994558047203, 48.83024602510184], [2.3198258944852252, 48.83030540870353], [2.319626621126191, 48.83037405508336], [2.319457956730882, 48.83043343815937], [2.319335259905569, 48.83047570488663], [2.319323804361654, 48.83047521068786], [2.319300690136524, 48.83048518901355], [2.319224112597499, 48.8305115680229], [2.319124534558453, 48.830542544959194], [2.319117348330079, 48.83054893278282], [2.319150911489748, 48.83058116859759], [2.3192349568460893, 48.830702621983974], [2.319319151703504, 48.83082329728792], [2.319403196479971, 48.83094475052208], [2.319487392117883, 48.8310654256815], [2.319571439038958, 48.83118687877896], [2.319655635457379, 48.831307553793856], [2.319655723647255, 48.8313076856042], [2.319739370428838, 48.831433867886346], [2.319824416992452, 48.831560756868065], [2.319908064588525, 48.831686939003774], [2.319993111975614, 48.831813827836854], [2.320008926046045, 48.83182850469867], [2.320016319200559, 48.83182860788925], [2.320142220799217, 48.83176988218011], [2.320269887276214, 48.83171149733701], [2.320290681458729, 48.83171628326693], [2.320356792312165, 48.83186033399587], [2.320422428196839, 48.831999465090995], [2.320488538411237, 48.83214351570297], [2.32055417500408, 48.832282646690594], [2.320568632884913, 48.83229645956242], [2.32058122850502, 48.83229584848916], [2.320718658733954, 48.83224315772754], [2.320886288108646, 48.83217906783921], [2.3210579282302852, 48.83211326109309], [2.321225556758466, 48.832049171621115], [2.321397196035848, 48.831983363481214], [2.321564823729236, 48.83191927352634], [2.321736462138945, 48.83185346579124], [2.32190408899744, 48.83178937535344], [2.322075726562982, 48.83172356622455], [2.322243351224579, 48.8316594752961], [2.32241498792236, 48.831593666572026], [2.322582613111272, 48.83152957516843], [2.322754248964873, 48.831463765050586], [2.322921873318993, 48.831399673164036], [2.323093508304944, 48.831333863451036], [2.323261131824273, 48.8312697710816], [2.323432765965832, 48.83120395997477], [2.323600388650469, 48.83113986712245], [2.323772021924389, 48.83107405642049], [2.323939642423708, 48.83100996217826], [2.323997144386479, 48.83099929774732], [2.323997870797716, 48.83099317981087], [2.323976019192016, 48.83096162675741], [2.323895020977428, 48.83084645366891], [2.323818422501427, 48.830735851725976], [2.323798008230119, 48.8307068241078], [2.323799011839277, 48.83070128693545]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 76, "zemmour_eric": 63.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-25", "circ_bv": "11", "num_bureau": 25, "roussel_fabien": 24.0, "nb_emargement": 1214.0, "nb_procuration": 66.0, "nb_vote_blanc": 11.0, "jadot_yannick": 149.0, "le_pen_marine": 59.0, "nb_exprime": 1201.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 0, "nb_inscrit": 1550.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "56", "geo_point_2d": [48.83078047965764, 2.3215717095959736], "melenchon_jean_luc": 355.0, "poutou_philippe": 7.0, "macron_emmanuel": 420.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305609109337752, 48.85521366008241], [2.305636923121167, 48.855223399635875], [2.305825126343707, 48.855274031778], [2.306016455171787, 48.85532537245326], [2.306204660494265, 48.8553760040017], [2.306395990082708, 48.855427343166085], [2.306584194779571, 48.85547797410506], [2.306775525104425, 48.85552931355717], [2.306963731901121, 48.85557994390244], [2.307155062974359, 48.85563128274301], [2.307163510923802, 48.855640358496885], [2.3071484497998602, 48.85575983530835], [2.307132844656841, 48.85587840060576], [2.307117783393775, 48.855997877387765], [2.307102176746738, 48.85611644264791], [2.30708711670739, 48.85623591940834], [2.307071509919372, 48.85635448463905], [2.307056448390009, 48.85647396046285], [2.30704084282366, 48.85659252567205], [2.307040127753098, 48.856594744737954], [2.306978983691308, 48.85671032655403], [2.306917072323321, 48.85682680773631], [2.306855927716338, 48.85694238946535], [2.306794014434643, 48.85705887055175], [2.306732869282252, 48.85717445219374], [2.306670956812677, 48.85729093319997], [2.306609811103008, 48.85740651565422], [2.306547896719595, 48.85752299656455], [2.306486750476676, 48.85763857803246], [2.306424836905279, 48.857755058862686], [2.306433052004078, 48.85776648960911], [2.30666485563392, 48.857821938077905], [2.306869508761911, 48.85787189925691], [2.306873093382181, 48.857872411067554], [2.307074195747165, 48.85788275724423], [2.307281456198582, 48.85789268545601], [2.307482560073841, 48.857903031853354], [2.307689820683718, 48.8579129593577], [2.307890923367369, 48.85792330416146], [2.308098184123749, 48.85793323185762], [2.3082992869667223, 48.85794357597494], [2.30850654789348, 48.85795350206436], [2.308707652246718, 48.857963846402384], [2.308914913331903, 48.857973771784366], [2.309116016493481, 48.857984114528755], [2.3093232777251558, 48.85799404010254], [2.309335717199371, 48.85800455699893], [2.309319604290201, 48.85806541143133], [2.309311447630536, 48.85810298523416], [2.309305560611932, 48.85812490898493], [2.30931156144998, 48.858130384713135], [2.309293695165388, 48.858197858153794], [2.30925687174917, 48.85833611913354], [2.309222890826696, 48.85846444604388], [2.309186068385061, 48.85860270787578], [2.309152087126255, 48.85873103383589], [2.309115262945409, 48.85886929560488], [2.309081282689335, 48.85899762242125], [2.309044458144208, 48.85913588323598], [2.309010477539775, 48.85926421000136], [2.308976495405125, 48.85939253673437], [2.30893967165371, 48.85953079837483], [2.308905689182715, 48.8596591241576], [2.308868863692146, 48.85979738573513], [2.308880744995482, 48.85980787785168], [2.309089531655002, 48.859823573835584], [2.309283210666709, 48.85983865523502], [2.309491997582724, 48.859854349617116], [2.309685678188171, 48.85986943037263], [2.309879357542899, 48.85988451080659], [2.310088144810334, 48.85990020504724], [2.31015123714295, 48.85990159402919], [2.310176827643084, 48.8598890552789], [2.310172908727814, 48.85985273302012], [2.3101629975189972, 48.85976085648091], [2.310150016530352, 48.859624326460306], [2.310136186542608, 48.85949612762861], [2.310123205702084, 48.8593595966732], [2.31010937583857, 48.85923139870713], [2.310096395134258, 48.85909486771623], [2.310082565406982, 48.85896666971648], [2.31006958483898, 48.85883013869005], [2.3100557552479373, 48.85870194065661], [2.310042773453135, 48.8585654095869], [2.3100289439983293, 48.858437211519764], [2.310015963702744, 48.85830068042241], [2.310002134384169, 48.858172482321606], [2.309989154224686, 48.858035951188775], [2.309975325054249, 48.85790775215498], [2.309962345019057, 48.85777122188596], [2.309948515984948, 48.857643022818515], [2.309935536085955, 48.85750649251403], [2.30992170718797, 48.85737829341291], [2.309908727425173, 48.85724176307294], [2.309894898663411, 48.85711356393812], [2.3098850195683758, 48.8571021741938], [2.309815390372203, 48.85710311085012], [2.309676085104293, 48.857015938642355], [2.309532504241472, 48.85692612986521], [2.3093931999319333, 48.856838956414954], [2.309249620044503, 48.85674914728403], [2.309110315306534, 48.856661974382], [2.308966736406314, 48.85657216399811], [2.308827433977749, 48.85648499076072], [2.308683856040879, 48.85639518092235], [2.30854455457058, 48.85630800644247], [2.3084009762461353, 48.856218196242544], [2.308261675722274, 48.85613102141948], [2.30811809973594, 48.85604121087371], [2.307978800146666, 48.855954036606704], [2.307835223772753, 48.855864225699335], [2.307695925141744, 48.85577705018987], [2.307552351105921, 48.8556872389367], [2.307413053421329, 48.855600063084076], [2.307269480360751, 48.85551025147714], [2.307130182247887, 48.85542307617272], [2.30698661016255, 48.855333264212135], [2.306847314370773, 48.85524608767315], [2.306703743260669, 48.85515627535881], [2.306564448415391, 48.8550690984767], [2.3064208769177, 48.85497928580076], [2.306281583006744, 48.85489210947477], [2.306138013847087, 48.85480229645305], [2.305998720894487, 48.8547151188846], [2.305919198015695, 48.85466537105836], [2.305909223582355, 48.85466502360724], [2.305884978314672, 48.854687596232004], [2.3058225125268272, 48.85480241632903], [2.30575705060051, 48.85492727740883], [2.305694584255418, 48.85504209651508], [2.305629121721331, 48.85516695749792], [2.305612230489245, 48.85519800510375], [2.305609109337752, 48.85521366008241]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 154, "zemmour_eric": 154.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-16", "circ_bv": "02", "num_bureau": 16, "roussel_fabien": 9.0, "nb_emargement": 1185.0, "nb_procuration": 51.0, "nb_vote_blanc": 13.0, "jadot_yannick": 44.0, "le_pen_marine": 59.0, "nb_exprime": 1166.0, "nb_vote_nul": 6.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1421.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1185, "quartier_bv": "28", "geo_point_2d": [48.85739495161158, 2.30835070068978], "melenchon_jean_luc": 140.0, "poutou_philippe": 5.0, "macron_emmanuel": 562.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.286467382711613, 48.88693925435352], [2.286515845504541, 48.886936884720086], [2.286686073107651, 48.88686853791616], [2.286855076771601, 48.88680070519189], [2.287025302120647, 48.88673235788913], [2.287194306264265, 48.88666452468579], [2.287364530722892, 48.886596176892255], [2.287533533982635, 48.886528343201725], [2.287703757563146, 48.886459994018225], [2.287872759926816, 48.88639216073969], [2.288042982616903, 48.88632381106544], [2.288211984096604, 48.88625597729974], [2.28838220589627, 48.886187627134774], [2.28855120512858, 48.88611979287372], [2.2887214260378252, 48.88605144221806], [2.288890425749795, 48.885983607477925], [2.28906064576862, 48.88591525633152], [2.289229644596724, 48.88584742110423], [2.289399863725129, 48.88577906946711], [2.289568861681738, 48.88571123285332], [2.2895707303074992, 48.88571060721271], [2.289746924244538, 48.88566245359065], [2.28992569395362, 48.885613594618704], [2.290101885882923, 48.885565439562725], [2.290280656289522, 48.88551658006462], [2.290456847550078, 48.88546842538128], [2.29063561592697, 48.885419565340804], [2.290811807894543, 48.88537141013899], [2.290990575605337, 48.885322549564215], [2.291008312662198, 48.88531016554851], [2.29098933917876, 48.885296576677355], [2.290869792504388, 48.88522037321598], [2.290711157143492, 48.8851209645841], [2.290570111318752, 48.88503105529637], [2.290411475743057, 48.884931646242265], [2.2902704309485, 48.88484173658598], [2.290111796509341, 48.88474232801698], [2.290019827619379, 48.8846837009747], [2.290013011776844, 48.88468341503892], [2.289992872510519, 48.884697154355294], [2.289806776377223, 48.88471920669967], [2.289646980190335, 48.88473814301746], [2.289634996827169, 48.88473569767668], [2.289490298269377, 48.88464166173278], [2.28934562050355, 48.884547639216294], [2.289200922978472, 48.88445360380585], [2.289056246257584, 48.88435958092365], [2.288911549777584, 48.88426554514738], [2.288766874101625, 48.88417152189944], [2.288622178679082, 48.88407748485814], [2.288477504035659, 48.88398346214369], [2.288332809658185, 48.88388942473663], [2.288188137435528, 48.88379540076531], [2.288043442727257, 48.88370136388361], [2.287898771549504, 48.883607339546565], [2.287887063042176, 48.88360486328497], [2.287693887581382, 48.883625085061425], [2.287506409274478, 48.88364470999657], [2.287318930826272, 48.88366433463779], [2.287125756287725, 48.88368455550462], [2.287117973632099, 48.883687267426936], [2.286970211984733, 48.88379059082934], [2.286819130188514, 48.88389623523595], [2.286671367355287, 48.883999558249904], [2.286520282970664, 48.88410520315048], [2.286500660585219, 48.88410535151906], [2.286363049031087, 48.88401343949031], [2.286229707145692, 48.88392185672258], [2.286092096542342, 48.88382994526635], [2.285958755603191, 48.88373836218158], [2.285821145975372, 48.883646449499345], [2.285687805982564, 48.88355486609751], [2.285550197305399, 48.8834629539878], [2.285416856895472, 48.88337137026084], [2.285283518317989, 48.88327978638589], [2.285145911093691, 48.88318787288922], [2.285145738154878, 48.8831877558423], [2.285008131404489, 48.8830958430789], [2.284865299868261, 48.88300123690298], [2.284727694118134, 48.8829093229024], [2.284584863602932, 48.882814716375876], [2.284447258840513, 48.88272280203745], [2.284304429346331, 48.882628195160336], [2.284286941258129, 48.882627175991885], [2.284122879084317, 48.88270300925284], [2.283962420235969, 48.88277806792435], [2.283798358477672, 48.882853900738425], [2.283637898709041, 48.88292895806544], [2.283473834639286, 48.88300479041626], [2.283313373938003, 48.88307984729806], [2.283149310283972, 48.8831556792019], [2.282988847274109, 48.88323073652957], [2.28282478267205, 48.88330656797835], [2.282664320105459, 48.883381623969655], [2.282500253191921, 48.88345745495517], [2.282339789692672, 48.883532510501304], [2.282179325718488, 48.883607566726475], [2.282015258750453, 48.883683397039945], [2.282002859098429, 48.88369031861514], [2.282000231206186, 48.88369972429994], [2.28205529080333, 48.883742492347324], [2.282185628481453, 48.88384361006335], [2.282281796110281, 48.88391831255064], [2.282412134680659, 48.88401942910464], [2.282546418490481, 48.88412373750537], [2.282676758088833, 48.88422485375241], [2.282811042970901, 48.88432916093757], [2.282941383584852, 48.884430277776936], [2.283075669526581, 48.884534584645806], [2.283206011180908, 48.88463570027897], [2.283340298170136, 48.88474000773082], [2.283470640852462, 48.88484112305699], [2.283604928913749, 48.88494542929332], [2.283735272611715, 48.885046545211765], [2.283869561732896, 48.88515085113179], [2.283999906471251, 48.88525196584398], [2.2841341966397692, 48.88535627234696], [2.284264542406154, 48.88545738675218], [2.284365727302962, 48.88553597825489], [2.284424246317568, 48.88558143052254], [2.284425467426286, 48.88558237942346], [2.284555814324205, 48.88568349349078], [2.284648479218888, 48.885755466884966], [2.284778826983095, 48.885856580693584], [2.284891446190457, 48.88594405169034], [2.285004065776165, 48.88603152257421], [2.285134414921834, 48.88613263597036], [2.28524703532352, 48.88622010661067], [2.285377385413032, 48.88632121972494], [2.285489470941365, 48.886408274130936], [2.285619821972646, 48.88650938696396], [2.285677282601301, 48.88655401385774], [2.2858141233705043, 48.88661741386758], [2.285972214139159, 48.886694932266494], [2.286109055637759, 48.88675833193114], [2.286267148636826, 48.88683584993881], [2.286403990877152, 48.886899248358965], [2.286461662984766, 48.886927527141154], [2.286467382711613, 48.88693925435352]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 112, "zemmour_eric": 158.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-58", "circ_bv": "04", "num_bureau": 58, "roussel_fabien": 5.0, "nb_emargement": 1128.0, "nb_procuration": 50.0, "nb_vote_blanc": 26.0, "jadot_yannick": 46.0, "le_pen_marine": 103.0, "nb_exprime": 1093.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1454.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1128, "quartier_bv": "65", "geo_point_2d": [48.88481244604666, 2.286260572242964], "melenchon_jean_luc": 252.0, "poutou_philippe": 7.0, "macron_emmanuel": 361.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294133465340643, 48.861491742983766], [2.294134071945184, 48.861495261232704], [2.294199633147496, 48.861543126548575], [2.294201944415699, 48.861544471222], [2.294351761322995, 48.86161346179158], [2.294497982057247, 48.861683717940515], [2.294647799769256, 48.86175270723158], [2.294794021281349, 48.861822963909276], [2.294943839785687, 48.86189195282104], [2.295090063462966, 48.861962208236996], [2.295239882747572, 48.8620311976688], [2.295386105851878, 48.86210145270611], [2.295535925928925, 48.86217044175866], [2.295682149823254, 48.862240696425445], [2.295682954861441, 48.86224103931974], [2.295816171635205, 48.86229361334827], [2.29597549213418, 48.862350200808976], [2.29610870948238, 48.862402774506755], [2.296268030620772, 48.862459362471704], [2.296268974739122, 48.862459702582335], [2.296436806065291, 48.862514571335005], [2.296596126538925, 48.862571158849455], [2.296763958568591, 48.86262602713782], [2.296923279738405, 48.862682614211096], [2.297091112471767, 48.86273748203512], [2.297250434337762, 48.862794068667206], [2.297418267774614, 48.86284893602696], [2.29757759169981, 48.86290552222578], [2.297578944175977, 48.86290590609278], [2.297786586496355, 48.862956219323955], [2.297968640707572, 48.86299906676841], [2.29817628513862, 48.86304937932719], [2.298358340007893, 48.863092225275956], [2.298540395164608, 48.86313507184539], [2.298748040689884, 48.863185383406034], [2.29874940686515, 48.86318566211581], [2.298931464033029, 48.86322850809475], [2.29911950995937, 48.86325978094375], [2.299300896734561, 48.8632829877999], [2.299488943079405, 48.86331426006687], [2.299670330220926, 48.86333746546271], [2.299858376972076, 48.863368738046944], [2.299860372218312, 48.86336896736248], [2.300041759715746, 48.86339217219424], [2.300218281837925, 48.86340364774828], [2.300406442007967, 48.86341453814522], [2.300582965649289, 48.86342601316909], [2.300771125976237, 48.863436902992476], [2.30094764977366, 48.86344837747824], [2.300948175570107, 48.86344840483194], [2.301087911445633, 48.86345389668704], [2.3012760719668712, 48.86346478661557], [2.301415807920899, 48.86347027808769], [2.30160396856984, 48.86348116750056], [2.3016141732220072, 48.86349090316266], [2.301704073851147, 48.863491701150394], [2.301730742060196, 48.863471960420064], [2.301744655431142, 48.86343371937327], [2.301755606260959, 48.8633060152268], [2.30176774093843, 48.863178867475156], [2.301778691670143, 48.86305116239796], [2.301790826232015, 48.8629240146147], [2.301801776853571, 48.86279630950599], [2.301813911299642, 48.86266916169118], [2.301813598084849, 48.862666596713126], [2.30176836341488, 48.862535724529046], [2.301723834499605, 48.862407029261874], [2.301678600268439, 48.86227615791249], [2.301634071796649, 48.86214746258179], [2.3015895435449503, 48.86201876721957], [2.301544310000278, 48.86188789487429], [2.301499782192157, 48.86175919944855], [2.301454549098324, 48.86162832703868], [2.301410021721614, 48.86149963244864], [2.301364789078614, 48.86136875997424], [2.301320262157627, 48.8612400644214], [2.301275029965453, 48.861109191882434], [2.301230503487923, 48.86098049626606], [2.301185271734507, 48.86084962456179], [2.301140745700629, 48.8607209288819], [2.301095515773048, 48.86059005622177], [2.301050988819755, 48.860461360470374], [2.301005759342873, 48.86033048774567], [2.3009612328331253, 48.86020179193079], [2.30091600379507, 48.86007092004078], [2.300871479091803, 48.85994222417036], [2.300826249153658, 48.85981135130857], [2.30081526794902, 48.859779612816375], [2.300819828017728, 48.85976350865323], [2.300805710419084, 48.85975290283217], [2.300772167386793, 48.85965594628468], [2.300730762543931, 48.85953766776692], [2.30068623874186, 48.859408972664966], [2.300644835653264, 48.859290694099116], [2.30060031227449, 48.859161998936536], [2.300558908202224, 48.85904372120594], [2.300540455905662, 48.859037423997336], [2.300348596061242, 48.859089354421], [2.300175774859702, 48.85914083647949], [2.300166478411307, 48.85914129834209], [2.300155702702953, 48.85913925314702], [2.299960680518642, 48.85910308710185], [2.299791847814109, 48.859071044630255], [2.299612239627095, 48.85903695847395], [2.299417218215019, 48.85900079064047], [2.299237610527477, 48.858966703020485], [2.299042589626332, 48.85893053547351], [2.2988629824260762, 48.85889644728906], [2.298667962047959, 48.858860279129296], [2.29866241714999, 48.85884500616991], [2.298800239420881, 48.85876125111963], [2.298931196990726, 48.8586805512688], [2.2990690183945333, 48.85859679589657], [2.29919997514692, 48.85851609484036], [2.299337795683645, 48.85843233914616], [2.299468751606276, 48.85835163778388], [2.299606571275922, 48.85826788176776], [2.299737526356915, 48.858187180998634], [2.299875346522388, 48.858103424668506], [2.300006299422827, 48.85802272268607], [2.300010599971362, 48.85801671047189], [2.300011851004982, 48.858007796187316], [2.300024824142327, 48.85791534911567], [2.300037469777969, 48.85778173752836], [2.300012827905065, 48.857765154969954], [2.299991361702686, 48.85776602588504], [2.299951531575457, 48.85779149285792], [2.299808684150797, 48.857883377929205], [2.299666451338405, 48.857974319401286], [2.29952360427255, 48.858066204125116], [2.299381370463487, 48.858157145243375], [2.299238521030848, 48.85824902960378], [2.299096286225109, 48.85833997036825], [2.298953437163471, 48.85843185348186], [2.298811201348849, 48.85852279479181], [2.298668349920308, 48.858614677542], [2.29852611310909, 48.8587056184981], [2.298383262039451, 48.85879750090083], [2.298241024243646, 48.85888844060379], [2.298098170794967, 48.85898032354238], [2.297955932002356, 48.85907126289151], [2.29781307891257, 48.859163145482626], [2.297670839123351, 48.85925408447789], [2.297527983666611, 48.859345966705554], [2.297385744243501, 48.859436905354976], [2.297243502961028, 48.859527843819876], [2.29710064600006, 48.85961972551475], [2.296958403720859, 48.859710663625776], [2.296815547118776, 48.85980254497316], [2.2966733038427423, 48.85989348273036], [2.296530444873663, 48.85998536371422], [2.296388200600988, 48.860076301117566], [2.2962453419907902, 48.86016818175398], [2.296103096721267, 48.86025911880344], [2.295960235744153, 48.86035099907636], [2.295817989477874, 48.86044193577192], [2.295675128859535, 48.86053381569735], [2.295532881596599, 48.86062475203905], [2.29539001862338, 48.86071663070169], [2.29524777035141, 48.86080756758879], [2.29510490773707, 48.86089944590394], [2.294962658480593, 48.86099038153787], [2.2948197934870223, 48.86108226038875], [2.294677543233762, 48.86117319566878], [2.294534678599061, 48.86126507417222], [2.294392427348913, 48.861356009098365], [2.2942495603471222, 48.86144788723822], [2.294133465340643, 48.861491742983766]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 145, "zemmour_eric": 169.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "7-23", "circ_bv": "02", "num_bureau": 23, "roussel_fabien": 7.0, "nb_emargement": 1002.0, "nb_procuration": 74.0, "nb_vote_blanc": 10.0, "jadot_yannick": 32.0, "le_pen_marine": 71.0, "nb_exprime": 989.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 2, "nb_inscrit": 1210.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1002, "quartier_bv": "28", "geo_point_2d": [48.86123240743774, 2.2986216301477898], "melenchon_jean_luc": 70.0, "poutou_philippe": 0.0, "macron_emmanuel": 475.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.348468766917066, 48.85259385136217], [2.348449365094674, 48.85260349202112], [2.348299850377856, 48.852670966669265], [2.348153724004025, 48.85274056137963], [2.348004208511094, 48.85280803565005], [2.347858082720799, 48.8528776299982], [2.347708566451757, 48.852945103890875], [2.347562439882236, 48.85301469786941], [2.34741292283708, 48.853082171384344], [2.347266795488332, 48.85315176499326], [2.347117277666959, 48.85321923813045], [2.346971148176308, 48.85328883136228], [2.346967851330692, 48.85329123353171], [2.346966316066653, 48.85329183311627], [2.346779146502013, 48.85335437961876], [2.346590291710254, 48.85341314563223], [2.346403121258516, 48.85347569153973], [2.346214265603015, 48.85353445695335], [2.346027094264281, 48.853597002265815], [2.345838237745043, 48.85365576707948], [2.345651065519113, 48.85371831179693], [2.345462206773452, 48.85377707600328], [2.345275033660427, 48.853839620125704], [2.345086175413717, 48.85389838373956], [2.344899001413603, 48.853960927266954], [2.344710142303161, 48.85401969028095], [2.344613829830763, 48.85405871188011], [2.344681313395757, 48.85413782621606], [2.344800337715001, 48.85425252777155], [2.344917212208057, 48.85436666612052], [2.3450362375693032, 48.85448136741774], [2.345153113092375, 48.85459550551278], [2.345272139495737, 48.854710206551744], [2.345389016048834, 48.85482434439284], [2.345508043505415, 48.854939044274246], [2.345624921077256, 48.85505318276072], [2.34574394957587, 48.85516788238382], [2.345860828189053, 48.855282019717116], [2.34586206196642, 48.85528351129331], [2.345936881589361, 48.85539865701546], [2.346019184731135, 48.85552557113568], [2.346094006422995, 48.85564071584266], [2.346176308967086, 48.85576762981968], [2.346251131342471, 48.85588277530261], [2.346333436014362, 48.85600968915137], [2.346408257721723, 48.85612483450353], [2.346490563158789, 48.856251748216515], [2.346565386923829, 48.85636689345274], [2.346647691763021, 48.85649380702258], [2.346722516234177, 48.856608951236204], [2.346763606144749, 48.85667231093877], [2.34680498857657, 48.85670701797934], [2.346891148529151, 48.856681956574384], [2.347048270993002, 48.85663622312774], [2.347238879599986, 48.856578478738115], [2.347396002798181, 48.85653274573728], [2.347586610641152, 48.85647500078841], [2.347757352824138, 48.85642361629136], [2.347947959867428, 48.8563658707612], [2.348118702687951, 48.85631448665022], [2.348309307568809, 48.85625674053139], [2.348480049686618, 48.85620535500046], [2.34867065376769, 48.8561476083004], [2.34884139516039, 48.85609622314811], [2.349031999815862, 48.85603847497495], [2.349202739131646, 48.85598708929462], [2.349393342976291, 48.8559293414395], [2.349564082952179, 48.85587795434671], [2.34973482121733, 48.85582656789977], [2.349925423884975, 48.85576881918878], [2.349927184580205, 48.85576817852251], [2.3500993900002882, 48.85569515481809], [2.3502760636279723, 48.85561909283112], [2.350448268066398, 48.85554606861482], [2.350624940679298, 48.8554700061025], [2.350797145487594, 48.85539698228101], [2.350973817085815, 48.85532091924342], [2.351146019560831, 48.855247894003405], [2.351322690144272, 48.85517183044046], [2.351494891626443, 48.85509880558791], [2.35167156119511, 48.855022741499695], [2.351843763069645, 48.85494971524334], [2.352020431623431, 48.85487365062984], [2.352192631142418, 48.85480062475358], [2.352369298681432, 48.85472455961481], [2.352445765513761, 48.85469213089681], [2.352487307873652, 48.85468902989994], [2.352507750853757, 48.85467051402963], [2.35260348248194, 48.85462991540986], [2.352776659752393, 48.85455583453833], [2.352948858535217, 48.85448280666099], [2.353122033463023, 48.8544087252725], [2.35329423127565, 48.85433569688848], [2.353467405223518, 48.85426161499033], [2.353639602065847, 48.854188586099625], [2.353812775033783, 48.85411450369184], [2.353984970906019, 48.85404147429446], [2.354158144256715, 48.85396739138442], [2.354330337795962, 48.853894361472975], [2.354402635048201, 48.85386343249823], [2.35441391410003, 48.853856720324806], [2.354372442788466, 48.853814773770154], [2.354268608527835, 48.85372037314418], [2.35416607110807, 48.85362715037585], [2.354063532681261, 48.853533928403785], [2.353959699551047, 48.85343952658663], [2.35395522486886, 48.853436924879404], [2.353837276414777, 48.85339423421244], [2.353605260403886, 48.85331025669307], [2.353487312523137, 48.85326756567629], [2.35348026727441, 48.853260263529016], [2.353467902686325, 48.85313467930518], [2.353456022353587, 48.85301400635609], [2.353444142075873, 48.85289333339274], [2.353431777661918, 48.8527677491237], [2.353437274161562, 48.85275993465812], [2.353480559432934, 48.85273881248547], [2.353543103583725, 48.85270829087442], [2.353563504399817, 48.85271164596384], [2.353614453972541, 48.8527820519516], [2.353664476472079, 48.852851178519884], [2.353683290908824, 48.85285520133315], [2.353862774272672, 48.85279071840471], [2.354039153850959, 48.85272734893771], [2.35421863633406, 48.85266286546812], [2.3543950136840612, 48.852599495461895], [2.354574496649172, 48.852535011458464], [2.354750873122514, 48.85247164181968], [2.354930355218007, 48.85240715637568], [2.355106730825727, 48.85234378620509], [2.355283107367315, 48.85228041577827], [2.355462586782763, 48.85221592951751], [2.355638962458828, 48.85215255855883], [2.3558184409935192, 48.852088071756874], [2.355994815803957, 48.852024700266384], [2.356174293457991, 48.85196021292326], [2.356350667402904, 48.85189684090093], [2.356530144176079, 48.851832353016626], [2.356535461805647, 48.85181999570235], [2.356440028351814, 48.851709672127456], [2.356345773657955, 48.851600710132175], [2.356250339655592, 48.85149038547768], [2.356156085755011, 48.851381423311516], [2.356060652555945, 48.8512710984839], [2.355966399448631, 48.85116213614683], [2.3558709684042523, 48.85105181205288], [2.355776714727579, 48.85094284953757], [2.355681284497488, 48.85083252437122], [2.355587032976679, 48.8507235616924], [2.355547372646207, 48.85068979671758], [2.355515208409026, 48.850676794160215], [2.3555145737874152, 48.85067697960647], [2.355335181877442, 48.85073075065478], [2.355143605882643, 48.85078665199293], [2.354964213212335, 48.850840422479756], [2.35477263505378, 48.85089632321109], [2.354593242985753, 48.85095009314375], [2.354401664026058, 48.85100599327563], [2.354222271197706, 48.85105976264676], [2.354030691436771, 48.85111566217915], [2.353851296485578, 48.85116943098142], [2.353659717286128, 48.85122532992166], [2.353656861414438, 48.85122594584177], [2.353496159547423, 48.851248044461244], [2.353351662643922, 48.85127144907323], [2.353190960495993, 48.85129354818118], [2.353046463340402, 48.85131695152437], [2.35297023619564, 48.851327433224654], [2.352948138053721, 48.85132692070365], [2.352928203402632, 48.85133447000873], [2.352843728120003, 48.851346086076575], [2.35263159766474, 48.85137455429362], [2.352454818833121, 48.851405797312154], [2.352453224959431, 48.85140607827845], [2.352260519304714, 48.851448472257516], [2.352081219748975, 48.851494217572345], [2.351888513465569, 48.85153661094893], [2.351709211917366, 48.85158235569529], [2.351708540791319, 48.85158251574167], [2.351526593929884, 48.8516296677619], [2.351347293117604, 48.85167541107024], [2.351165345616135, 48.851722561637914], [2.35098604415591, 48.85176830530036], [2.350804096003222, 48.85181545531479], [2.350624793917456, 48.8518611975328], [2.350442845102243, 48.851908347893264], [2.350263541017099, 48.85195408955872], [2.350262736834881, 48.851954318124754], [2.350090189170987, 48.85200771465625], [2.349910885797012, 48.85205345579655], [2.34987324567205, 48.852060931775874], [2.349863616823192, 48.852069060889825], [2.349687869255332, 48.85213997597637], [2.3495199601096513, 48.85219921122371], [2.349344211635155, 48.852270125797226], [2.3491763016795453, 48.85232936055539], [2.349008392704845, 48.85238859508218], [2.34883264289543, 48.852459508892224], [2.348664731748052, 48.8525187429224], [2.348488981032004, 48.852589656219365], [2.348468766917066, 48.85259385136217]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 75, "zemmour_eric": 84.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "4-10", "circ_bv": "07", "num_bureau": 10, "roussel_fabien": 11.0, "nb_emargement": 808.0, "nb_procuration": 57.0, "nb_vote_blanc": 8.0, "jadot_yannick": 66.0, "le_pen_marine": 44.0, "nb_exprime": 796.0, "nb_vote_nul": 1.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1014.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 805, "quartier_bv": "16", "geo_point_2d": [48.85367311072745, 2.3503128562928506], "melenchon_jean_luc": 135.0, "poutou_philippe": 1.0, "macron_emmanuel": 344.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.398363943371222, 48.88412904974182], [2.398358951720913, 48.884141740209124], [2.398305914224393, 48.884263405902374], [2.398252862735768, 48.88438484485986], [2.398199824743692, 48.88450651047918], [2.3981467714068962, 48.88462794845668], [2.398093719175773, 48.88474938730335], [2.398040680440598, 48.88487105281187], [2.397987627714504, 48.88499249158469], [2.397934588483857, 48.885114157019345], [2.397881533909465, 48.88523559481217], [2.397828494183335, 48.88535726017289], [2.397775440466975, 48.885478698797975], [2.397722400245461, 48.88560036408477], [2.397669346034009, 48.885721802636006], [2.3976163053169, 48.88584346784893], [2.397614168079973, 48.88584632593749], [2.397534479929995, 48.88591747784741], [2.397381670449642, 48.886053190134625], [2.397301981665423, 48.88612434187642], [2.397293121636562, 48.88612788377797], [2.397071454995119, 48.88615075630244], [2.396848956458799, 48.88617314398791], [2.396627289429502, 48.88619601568914], [2.39640479051927, 48.886218401649046], [2.396394491539142, 48.88622348756248], [2.396307379813432, 48.88634651823517], [2.396222924279147, 48.88646707020341], [2.3962160965094093, 48.886471512602405], [2.396051612755616, 48.886519857120945], [2.395885832970571, 48.886568453878866], [2.395721348614393, 48.88661679704016], [2.395555566838524, 48.886665394228906], [2.395391081869429, 48.886713736932265], [2.39522530085082, 48.88676233276704], [2.395060815258469, 48.88681067591172], [2.39489503225937, 48.88685927127807], [2.394886935124979, 48.88686754999127], [2.394887889576459, 48.88695980193404], [2.394887997256908, 48.887051693457934], [2.394888951724095, 48.88714394448589], [2.3948890594066983, 48.8872358359944], [2.39488039234919, 48.887244217045115], [2.394639061850255, 48.88730649112607], [2.394401262184126, 48.88736530310019], [2.394378191850599, 48.88737504388514], [2.394391167423372, 48.88739336395819], [2.39442951789585, 48.88743842600992], [2.394514188585031, 48.887538060234014], [2.394620568681636, 48.88766305351626], [2.39470523873794, 48.88776268757801], [2.3948116197520433, 48.88788768066497], [2.394896290539152, 48.887987314571205], [2.394897862338006, 48.887990300168724], [2.394934264665076, 48.88813408241504], [2.394969051824582, 48.88827851027587], [2.395005453186007, 48.88842229245592], [2.39504024073551, 48.88856672025816], [2.395076642494987, 48.88871050237883], [2.3951114304344943, 48.88885493012246], [2.395111131882774, 48.88885867698427], [2.395075732625725, 48.88894389137813], [2.395039774170273, 48.88903203471635], [2.395004376042312, 48.88911724908254], [2.394968417356803, 48.88920539148615], [2.394930697628681, 48.88925177760786], [2.3949363348194552, 48.88925535661151], [2.39499277240801, 48.88927012174631], [2.395173407198293, 48.889317963542425], [2.395360144418608, 48.889366816136516], [2.395540778518037, 48.88941465736736], [2.395727516440224, 48.88946350848498], [2.395908152566016, 48.889511350063565], [2.3960948911796303, 48.88956020060396], [2.39627552661456, 48.88960804161728], [2.3964622672833302, 48.88965689158731], [2.396642903391327, 48.88970473204224], [2.396829643387782, 48.88975358142815], [2.397010281532376, 48.889801421331555], [2.397197022220246, 48.88985027014027], [2.397395475525155, 48.889901712781224], [2.397582216934069, 48.88995056098477], [2.397780671001668, 48.890002002982676], [2.397967414495366, 48.8900508505879], [2.39816586933625, 48.89010229104343], [2.398352612176847, 48.89015113893586], [2.398551067780404, 48.890202578748315], [2.398737812705789, 48.89025142604244], [2.398742984534809, 48.8902519925025], [2.398786009886706, 48.890226361191004], [2.398802895384039, 48.890133856518986], [2.398825414720704, 48.89000992821318], [2.398849298525964, 48.88987908107763], [2.398871817631619, 48.88975515363357], [2.398895701203514, 48.889624306458344], [2.398918220098927, 48.88950037807753], [2.398920987716847, 48.88948521324473], [2.398945697890937, 48.889349842100444], [2.3989682151745573, 48.889225914571654], [2.398992925113094, 48.88909054248638], [2.399015443535899, 48.88896661492625], [2.399037960498184, 48.888842686441826], [2.3990626700632642, 48.88870731519413], [2.399063432935964, 48.888703133583796], [2.399085951033804, 48.88857920506745], [2.399105233146158, 48.88847356597282], [2.3991126781245953, 48.88843277595955], [2.3991351959882152, 48.888308847403394], [2.399150758401408, 48.888223583517025], [2.39915370968551, 48.88810243277684], [2.399154876523701, 48.88796266521008], [2.399157827773056, 48.88784151534024], [2.399158994594449, 48.88770174774023], [2.399159371333295, 48.887656570409995], [2.399162322565221, 48.88753541960708], [2.399163266215931, 48.887422437149574], [2.399166216061853, 48.88730128631382], [2.399167159699873, 48.88718830383222], [2.399170110887242, 48.8870671529774], [2.399171054512467, 48.88695417047168], [2.399174005677505, 48.88683301959101], [2.39917478843498, 48.88673917833138], [2.399177739568669, 48.886618028326154], [2.399178522316185, 48.88652418704816], [2.399179270573497, 48.88643451664749], [2.399180554932109, 48.88629365498273], [2.39918079668333, 48.886264665626896], [2.399181000465174, 48.88624026712272], [2.399181489201664, 48.886181716464435], [2.399182772194876, 48.8860408538611], [2.399183373151012, 48.885968912835516], [2.399183714497914, 48.88592798186006], [2.399183863978192, 48.88591018051004], [2.399185146947916, 48.885769318771125], [2.399185928854061, 48.885675666274416], [2.399186710747017, 48.88558201466897], [2.399187995074954, 48.88544115199554], [2.399188293547989, 48.885405472834485], [2.399189177788273, 48.88540388636834], [2.399189985562188, 48.88540089027858], [2.399207287375862, 48.88536985151104], [2.39927639061039, 48.8852434655637], [2.399331139116565, 48.88514524991073], [2.399385887416225, 48.88504703422395], [2.399454989799283, 48.8849206472371], [2.399466065534099, 48.88490077827013], [2.3994703515506552, 48.884893090763256], [2.399496078884464, 48.88484693519696], [2.3995651807241902, 48.88472054902284], [2.399620798434018, 48.88462077093259], [2.399689899670942, 48.88449438466047], [2.399745518274219, 48.8843946055994], [2.39977374870915, 48.88434396048664], [2.399842847843963, 48.88421757408756], [2.399893299935207, 48.884127062656766], [2.399893524122515, 48.88412665998375], [2.399962624041788, 48.88400027349741], [2.400039971694431, 48.88386150951397], [2.400032598171543, 48.88384733518074], [2.399988384448853, 48.88385211205998], [2.3997869433558052, 48.88388633881618], [2.399586261724424, 48.88392066796802], [2.399384820112269, 48.88395489314624], [2.399184137941247, 48.88398922252122], [2.398982695799629, 48.88402344702079], [2.398782013099342, 48.88405777571957], [2.398580569064781, 48.884091999533595], [2.398379885835235, 48.884126327556274], [2.398363943371222, 48.88412904974182]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 18, "zemmour_eric": 35.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-18", "circ_bv": "16", "num_bureau": 18, "roussel_fabien": 8.0, "nb_emargement": 557.0, "nb_procuration": 11.0, "nb_vote_blanc": 6.0, "jadot_yannick": 22.0, "le_pen_marine": 32.0, "nb_exprime": 550.0, "nb_vote_nul": 1.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 797.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 557, "quartier_bv": "75", "geo_point_2d": [48.88747410605831, 2.397438324654041], "melenchon_jean_luc": 283.0, "poutou_philippe": 6.0, "macron_emmanuel": 112.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.377334278375316, 48.86566626738982], [2.377332735269563, 48.86566398672565], [2.377232023634575, 48.86564012570738], [2.37705051787159, 48.86559730057593], [2.376856035858752, 48.86555122123716], [2.376674529351507, 48.865508395524984], [2.376480049366138, 48.86546231557864], [2.376298543466973, 48.86541949019211], [2.376104064146177, 48.865373409631154], [2.375922558876625, 48.86533058277171], [2.375728080220208, 48.86528450159608], [2.375546575558733, 48.865241675062336], [2.375352097566898, 48.865195593272055], [2.375170593535062, 48.86515276526536], [2.374976116207615, 48.86510668286048], [2.374794612794644, 48.865063854280145], [2.374784436734105, 48.86504841967104], [2.374777387183255, 48.865045979801785], [2.374715076166839, 48.86502441090822], [2.374691398775263, 48.865053101228945], [2.374678075128464, 48.865069245856915], [2.3746779666623032, 48.86506987842712], [2.374591600114928, 48.865184909876504], [2.374531676381835, 48.865283306718354], [2.374513939244619, 48.86530043012716], [2.374514095548903, 48.865306371997654], [2.374427726895317, 48.86542140239782], [2.374343130186038, 48.865537095810254], [2.374256760772429, 48.86565212606307], [2.374172163308796, 48.86576781933053], [2.374085793124348, 48.8658828503353], [2.374001193543339, 48.865998543450665], [2.373914823972766, 48.86611357341592], [2.373830223637277, 48.866229266386355], [2.373743851943538, 48.8663442961971], [2.373659252216782, 48.86645998902968], [2.373572879752169, 48.866575019592354], [2.37348827927112, 48.86669071227994], [2.37340190605725, 48.86680574179596], [2.373317303458566, 48.86692143433146], [2.373240044081732, 48.86703259210338], [2.373155442118299, 48.86714828450789], [2.373078180696501, 48.867259442145375], [2.372993578005176, 48.86737513441176], [2.372916317264689, 48.86748629192912], [2.372853293028574, 48.867572474657926], [2.372847847266017, 48.86758490648366], [2.3728945402920782, 48.867600746601006], [2.373062197101961, 48.867606837494854], [2.373232105377663, 48.867612865298604], [2.37339976362927, 48.86761895572675], [2.37356967199437, 48.8676249821519], [2.373582379195083, 48.8676354702135], [2.373558411759975, 48.86772848404166], [2.373524537208292, 48.867859512370096], [2.373500570929986, 48.86795252617498], [2.373488303752345, 48.86799997769166], [2.373488102983312, 48.868018144207106], [2.373514436475425, 48.8680199548186], [2.373725850477422, 48.868066048907316], [2.373956993292668, 48.86811635759459], [2.37396616731892, 48.86812638195603], [2.373955579050007, 48.86816812968639], [2.373945344720116, 48.86820923713704], [2.373954372254022, 48.86821920137579], [2.374114278001472, 48.86825539700517], [2.374265472203884, 48.868289494582285], [2.374425379746446, 48.868325689800876], [2.374576572993439, 48.868359786975674], [2.374727767801433, 48.868393883965595], [2.374887675985652, 48.86843007856313], [2.374903659845859, 48.86842633805014], [2.3749418577022112, 48.86838601150006], [2.374975333047655, 48.868348996825375], [2.374993917508826, 48.868335179290874], [2.37499310429378, 48.868331149600536], [2.375050589747199, 48.86826758406781], [2.375157575472632, 48.868148094283185], [2.375248535470147, 48.86804751479906], [2.375355520289465, 48.86792802481377], [2.37544647816825, 48.86782744425277], [2.375553462081565, 48.867707954066745], [2.375644420557062, 48.86760737334243], [2.375644492420683, 48.86760729187737], [2.375716757786408, 48.86752551141104], [2.3758121932906793, 48.86741632472826], [2.375884459491366, 48.86733454415365], [2.375979894294387, 48.86722535731834], [2.376059041175518, 48.867133126191504], [2.376154475243524, 48.86702393919706], [2.376233621498777, 48.8669317088373], [2.376329054831879, 48.86682252168381], [2.376408200482797, 48.86673029029253], [2.376408262683885, 48.866730218669325], [2.376500165808647, 48.86662537387369], [2.376595598021897, 48.86651618647742], [2.376687500402801, 48.86641134061835], [2.376782931831418, 48.866302153051606], [2.376874833457604, 48.86619730702843], [2.376970264090741, 48.86608812019049], [2.377062164962423, 48.86598327400317], [2.377157594821499, 48.865874086095474], [2.377179714062448, 48.86584885146783], [2.377193590851596, 48.86583872694737], [2.377192331519722, 48.86583152386436], [2.377262112353362, 48.865751912131955], [2.377321110264845, 48.865683710858605], [2.377334278375316, 48.86566626738982]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 34, "zemmour_eric": 39.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-28", "circ_bv": "06", "num_bureau": 28, "roussel_fabien": 33.0, "nb_emargement": 1330.0, "nb_procuration": 110.0, "nb_vote_blanc": 12.0, "jadot_yannick": 132.0, "le_pen_marine": 39.0, "nb_exprime": 1316.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1691.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1330, "quartier_bv": "41", "geo_point_2d": [48.86667478225725, 2.374997016865699], "melenchon_jean_luc": 513.0, "poutou_philippe": 8.0, "macron_emmanuel": 457.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.394718571213671, 48.836243532875045], [2.394692261478156, 48.83624311194009], [2.394646213834877, 48.83625508776819], [2.394464251105755, 48.836299777962566], [2.394287539073333, 48.83634432179132], [2.39410557708744, 48.83638901144344], [2.3939288644460053, 48.83643355473871], [2.393746900468409, 48.836478244734046], [2.393570187228425, 48.83652278659656], [2.393388223994065, 48.8365674760496], [2.393211510134614, 48.836612018278004], [2.393029546291722, 48.83665670628257], [2.392852830461025, 48.836701247970616], [2.3926708659991442, 48.836745935425924], [2.392494150921696, 48.83679047658744], [2.392317435542242, 48.83683501748617], [2.392135470154392, 48.83687970412168], [2.391958752803696, 48.83692424447996], [2.391776786796866, 48.836968930566265], [2.391763843397148, 48.83696768748371], [2.3916933806615672, 48.83693267579035], [2.391630093484806, 48.836900495771296], [2.391570357180359, 48.8368736544139], [2.391560340080561, 48.83687978028939], [2.391505352846395, 48.83695170147662], [2.391424522148438, 48.837047983515234], [2.391330460397157, 48.837171010884724], [2.391249629036063, 48.837267292786265], [2.3912099164762, 48.83729990034354], [2.391209390212452, 48.837307397454886], [2.391269260937862, 48.837328005279076], [2.3914712240084, 48.83728491194944], [2.391669501652185, 48.83724226360729], [2.391871464059613, 48.837199169598605], [2.392069742412128, 48.837156520596736], [2.392271704156435, 48.83711342590897], [2.3924699804929492, 48.83707077623341], [2.392671941574133, 48.837027680866576], [2.392870218619356, 48.83698503053125], [2.393072179037407, 48.83694193448536], [2.393270454056152, 48.83689928437574], [2.393286133369091, 48.836902970352874], [2.39338344317649, 48.837002859724166], [2.393500919374879, 48.8371228108257], [2.393598230004293, 48.83722270000258], [2.393715707192421, 48.83734265086959], [2.393813018654318, 48.83744253895277], [2.3939304968321933, 48.837562489585224], [2.394027809105662, 48.83766237837337], [2.394145288273296, 48.837782328771326], [2.394242601368808, 48.83788221736503], [2.39424269398214, 48.83789406063908], [2.394260433443562, 48.8379008138492], [2.394418147109131, 48.837975214425946], [2.394578099364755, 48.838050231388586], [2.39473581258401, 48.838124630630354], [2.394895765755331, 48.838199647158156], [2.395053481232052, 48.83827404687734], [2.395213433956685, 48.83834906296348], [2.395371150338836, 48.838423462253886], [2.395531105351995, 48.83849847701277], [2.395688821277381, 48.83857287586751], [2.395848777195816, 48.838647891090886], [2.396006495389134, 48.83872228952372], [2.396166452223281, 48.83879730431229], [2.396186442492448, 48.8387941063624], [2.396292987257154, 48.83865820647621], [2.396392824558727, 48.838528503413485], [2.396393764446774, 48.83852746219852], [2.396501654201205, 48.8384293366882], [2.396606480138068, 48.83832926468916], [2.396714370444095, 48.83823113897645], [2.396819195573973, 48.83813106677324], [2.396927085069409, 48.8380329408513], [2.397031909392209, 48.83793286844393], [2.397139796714582, 48.837834742305894], [2.397244620230516, 48.837734669694356], [2.397244930056503, 48.83773438615772], [2.39735281791891, 48.837636260716316], [2.397491744533991, 48.837514059994064], [2.397599630123863, 48.83741593340447], [2.3976994820335022, 48.83732810263408], [2.397716985357157, 48.83732560060272], [2.397731145963724, 48.83730559003446], [2.397770220827919, 48.837271219767715], [2.397770621175792, 48.83727088362297], [2.397887412479604, 48.83717164141714], [2.397992118320734, 48.83708812298317], [2.3981089101555932, 48.83698888055169], [2.398213615285088, 48.83690536101089], [2.398318320068667, 48.836821842271505], [2.3984351093235903, 48.83672259949102], [2.398434850848853, 48.836711351656184], [2.3983078219902563, 48.8366099328032], [2.398186119134713, 48.836510293459426], [2.398059091239651, 48.83640887522343], [2.397937389329091, 48.836309235608695], [2.3978156878837, 48.83620959586126], [2.39768866281487, 48.83610817631215], [2.397566962314448, 48.83600853629374], [2.397439936857182, 48.83590711645535], [2.397318237291122, 48.835807477065295], [2.3971912128077433, 48.83570605694456], [2.397175343156901, 48.835703522600916], [2.3969929388284132, 48.83575518179033], [2.3968108592092072, 48.83580676949], [2.396628454158317, 48.83585842811884], [2.39644637381775, 48.835910015258946], [2.39626396939617, 48.835961674233374], [2.396081886982434, 48.8360132599077], [2.395899481838355, 48.83606491832157], [2.395717398692843, 48.83611650433558], [2.395534992836691, 48.836168161289535], [2.395352908969726, 48.83621974674398], [2.395170502391087, 48.836271403137324], [2.394988417802874, 48.83632298803216], [2.394978247112668, 48.83632314074331], [2.394872440355182, 48.83629724165624], [2.39473171991001, 48.83626228459215], [2.394718571213671, 48.836243532875045]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 48, "zemmour_eric": 84.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "12-22", "circ_bv": "08", "num_bureau": 22, "roussel_fabien": 19.0, "nb_emargement": 1177.0, "nb_procuration": 49.0, "nb_vote_blanc": 20.0, "jadot_yannick": 75.0, "le_pen_marine": 96.0, "nb_exprime": 1147.0, "nb_vote_nul": 10.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1576.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "46", "geo_point_2d": [48.83710612495181, 2.395664150792187], "melenchon_jean_luc": 450.0, "poutou_philippe": 3.0, "macron_emmanuel": 317.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294693431976497, 48.8875686935937], [2.2947661814477502, 48.887571799413976], [2.294939434360448, 48.887612537810334], [2.295112302826008, 48.88765318555516], [2.295285556292548, 48.8876939225484], [2.29545842529847, 48.887734569790545], [2.295631679294303, 48.887775307179226], [2.295804548840689, 48.88781595391862], [2.295977803378084, 48.887856690803495], [2.296150674828501, 48.88789733704817], [2.2961814583735762, 48.88789980140128], [2.2961883275316293, 48.88788709555808], [2.296338911515263, 48.887832259836095], [2.296481687458409, 48.887780266699345], [2.296632270812033, 48.88772543150238], [2.29677504753302, 48.88767343801877], [2.296925628917362, 48.88761860154029], [2.297068405040275, 48.887566608601105], [2.2970733506093612, 48.88756555304131], [2.297239296728176, 48.887552245755735], [2.297407102213384, 48.88753878817077], [2.297573048161609, 48.88752548042234], [2.2977408534743082, 48.8875120223693], [2.297750664346026, 48.887507972664366], [2.297866416993099, 48.88738971222984], [2.297993026763032, 48.887260359122614], [2.297988972185716, 48.88724792997207], [2.297832055131738, 48.88718104568999], [2.297675165595741, 48.8871141730485], [2.297518247972115, 48.88704728923825], [2.297361359242109, 48.88698041617745], [2.297204443800398, 48.88691353105658], [2.297047555876383, 48.88684665757646], [2.296890641240702, 48.88677977203615], [2.296733754110633, 48.88671289903603], [2.296576840281077, 48.88664601307638], [2.29641995396914, 48.886579138757675], [2.296263040945713, 48.88651225237862], [2.296106155427506, 48.886445378539904], [2.296101993507119, 48.88643305930008], [2.296212728938532, 48.88631621966922], [2.296322871779629, 48.88620000327857], [2.296433604856328, 48.88608316341069], [2.296543746711538, 48.8859669467922], [2.296654478809215, 48.88585010579599], [2.296764619666402, 48.88573388984895], [2.2968753521364302, 48.885617048631744], [2.296985492019997, 48.88550083155761], [2.296990634090703, 48.88548702461185], [2.29698493867915, 48.88548222200757], [2.296829745947352, 48.885457084438876], [2.296655293776083, 48.88542882706104], [2.296459403721284, 48.88539709704091], [2.296284951939788, 48.885368840021236], [2.296089063699909, 48.88533710940147], [2.295914612332492, 48.885308850941406], [2.2959089860312663, 48.88530872882129], [2.29573064090323, 48.88532951931543], [2.295551435163872, 48.88535040880347], [2.295373088386736, 48.88537119875616], [2.295193883712055, 48.88539208861554], [2.295015536649426, 48.88541287803486], [2.294836330324275, 48.885433767350285], [2.294657984339669, 48.88545455624429], [2.29447877772766, 48.885475445023765], [2.294300431469866, 48.88549623248512], [2.294121224570908, 48.88551712072864], [2.29394287801546, 48.88553790855589], [2.293763670829762, 48.885558796263474], [2.293750229983498, 48.885555194293], [2.293675901321252, 48.88549358857449], [2.293577005222203, 48.88540298004624], [2.293577745270051, 48.88539185426182], [2.293699113121014, 48.88529901891588], [2.293830202896893, 48.88518833864762], [2.2939515698234683, 48.885095503028595], [2.294082658550455, 48.88498482246346], [2.294228970176903, 48.88486654397716], [2.294360059113721, 48.884755862194055], [2.294506369466816, 48.884637583344144], [2.294637455861916, 48.88452690212551], [2.294635843071948, 48.884514688660786], [2.294613420934094, 48.884501348941505], [2.294533099032483, 48.884453563525135], [2.294519192543918, 48.884457876629995], [2.29451125209957, 48.88449007186911], [2.29438291383611, 48.88459286580298], [2.294260453523807, 48.88469467889223], [2.294132114261032, 48.88479747253815], [2.2940096516137363, 48.88489928534391], [2.293881311351635, 48.88500207870188], [2.2937588490963208, 48.8851038912402], [2.293630507834885, 48.88520668431021], [2.293508043244549, 48.88530849656502], [2.293379700983767, 48.885411289347026], [2.293244606156212, 48.885508283693845], [2.293116264246633, 48.885611076182876], [2.292981168410194, 48.8857080702148], [2.2928528241245862, 48.88581086239472], [2.29271772727905, 48.88590785611179], [2.292589381993229, 48.886010647091354], [2.292454284138793, 48.88610764049358], [2.292418772564132, 48.88610265967479], [2.292428690864565, 48.88611650776118], [2.292412713638623, 48.88614139411287], [2.292556713394067, 48.88622943895031], [2.292697858605723, 48.88631774103846], [2.29284186068226, 48.88640578642616], [2.292983006855438, 48.886494088163985], [2.293127009901869, 48.886582133194594], [2.293268157036576, 48.88667043458211], [2.293412159701265, 48.886758478348376], [2.293553309148946, 48.886846780292856], [2.293697312783533, 48.88693482370204], [2.2938384618413092, 48.88702312438893], [2.293982467797051, 48.887111168348326], [2.294123617816374, 48.88719946868489], [2.294267624754224, 48.88728751138797], [2.294408775722911, 48.88737581227343], [2.294552782266816, 48.88746385461138], [2.294693935572909, 48.88755215425532], [2.294693431976497, 48.8875686935937]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 132, "zemmour_eric": 230.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-40", "circ_bv": "04", "num_bureau": 40, "roussel_fabien": 16.0, "nb_emargement": 1250.0, "nb_procuration": 65.0, "nb_vote_blanc": 16.0, "jadot_yannick": 57.0, "le_pen_marine": 102.0, "nb_exprime": 1229.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1538.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1249, "quartier_bv": "66", "geo_point_2d": [48.88649522650255, 2.295157728473631], "melenchon_jean_luc": 211.0, "poutou_philippe": 1.0, "macron_emmanuel": 440.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.336770277532095, 48.855397431235836], [2.336760859621114, 48.85540633839559], [2.336747854021264, 48.855497515619454], [2.336730342315791, 48.855622334253965], [2.33671124295843, 48.85575623563453], [2.336693731078304, 48.85588105423464], [2.336674631532125, 48.856014955578146], [2.33665712084009, 48.85613977415136], [2.33663801974214, 48.85627367545029], [2.336620508875454, 48.85639849398909], [2.336601407588573, 48.85653239525099], [2.336583896547232, 48.856657213755334], [2.336564795071417, 48.856791114980155], [2.336547283855419, 48.8569159334501], [2.336525603101552, 48.8570246060971], [2.336508091713195, 48.85714942453501], [2.336508044448791, 48.857149711166315], [2.336486364878582, 48.85725838379087], [2.336469831697523, 48.85734565427825], [2.336468596995291, 48.85734842642969], [2.336404303994869, 48.85743690880098], [2.336342487651478, 48.857498396429726], [2.336336583442317, 48.857502453038016], [2.336307860444968, 48.85753102443167], [2.336196985659061, 48.85756982083485], [2.336099277315347, 48.8575948932263], [2.33609132625547, 48.857606196235935], [2.336154131166282, 48.85772688333729], [2.336213989505561, 48.85783923594264], [2.336276794981304, 48.857959922954294], [2.336336653852815, 48.85807227547464], [2.336399458530794, 48.85819296238904], [2.336459319297447, 48.85830531483198], [2.336522124540465, 48.858426001656646], [2.336581985839372, 48.85853835401468], [2.336612248133077, 48.85858599312783], [2.336649667583667, 48.858585775168876], [2.336742033345302, 48.85856658416452], [2.336952474828641, 48.858513299154886], [2.337146304579766, 48.858473027104516], [2.337356745271781, 48.858419741379436], [2.337550574350945, 48.85837946957017], [2.337555180474156, 48.85837781328218], [2.337706861158831, 48.85829481354632], [2.337856754702214, 48.858212119398225], [2.338008434424017, 48.858129119267716], [2.338158325660609, 48.85804642382269], [2.338310005782644, 48.857963423305094], [2.3384598960639202, 48.85788072746999], [2.338611573860294, 48.85779772655022], [2.338761464549051, 48.85771503033258], [2.3389131413826663, 48.85763202901816], [2.339063029753328, 48.85754933240292], [2.339214706987074, 48.85746633070142], [2.339364594402435, 48.8573836336961], [2.339516269310447, 48.85730063159248], [2.339666157133392, 48.857217934204634], [2.339817831067366, 48.85713493260567], [2.339967716572143, 48.857052234820216], [2.340119390917546, 48.85696923193489], [2.340269275467139, 48.85688653375938], [2.340420947486936, 48.85680353047193], [2.340570832444011, 48.8567208319139], [2.340722503501178, 48.85663782823184], [2.340872386140112, 48.85655512927624], [2.34087457232197, 48.85655361781553], [2.340990381314501, 48.856452162989086], [2.3411139030131682, 48.85634421311948], [2.341229711074266, 48.85624275804227], [2.341353233143524, 48.856134807912774], [2.341469038921717, 48.85603335167803], [2.341592559998718, 48.85592540128113], [2.341708364834235, 48.85582394569495], [2.34183188491889, 48.85571599503064], [2.341947688823008, 48.85561453919375], [2.3420712079154278, 48.85550658826205], [2.342187012250985, 48.85540513218186], [2.342310528988349, 48.85529718097535], [2.342426332392521, 48.855195724644396], [2.342549849511844, 48.8550877722787], [2.342665650621814, 48.85498631568959], [2.342667547014384, 48.85498497078178], [2.342775884026278, 48.854922341331736], [2.342837865096618, 48.854893519314864], [2.34284116507217, 48.85489035192852], [2.342760718075485, 48.85483393612632], [2.342660551133977, 48.85472797626948], [2.3425590535556102, 48.85462100532674], [2.342458886059359, 48.85451504617259], [2.342357389309654, 48.85440807503827], [2.342257224006964, 48.854302114803204], [2.34215572808601, 48.85419514347734], [2.342142653495918, 48.854190979534195], [2.34195619900241, 48.854204816105444], [2.341771628527079, 48.854218602493795], [2.341585175187643, 48.85423243939334], [2.341400604516305, 48.854246225209046], [2.341214149616707, 48.854260061522645], [2.3410295787494713, 48.85427384676571], [2.3408431236525162, 48.8542876825008], [2.340658552589187, 48.85430146717123], [2.340653241124384, 48.854301171694544], [2.34049386390564, 48.85427081883177], [2.340340912692989, 48.854242951022165], [2.340321149031117, 48.85423826704946], [2.340309324398591, 48.85424507742102], [2.340155128776567, 48.85428621715456], [2.340000418020179, 48.85432733496145], [2.339846223273652, 48.85436847430141], [2.339691512029278, 48.854409591705846], [2.339537315432647, 48.854450730637176], [2.339382603700286, 48.85449184763915], [2.339374149967814, 48.854501183927454], [2.33939456231141, 48.854622293015105], [2.3394143013889392, 48.8547449146793], [2.339434713932739, 48.85486602283426], [2.339454453196985, 48.85498864446496], [2.339443214420106, 48.85499845732648], [2.339262871725312, 48.85501894449181], [2.339086079824588, 48.85503927652348], [2.338905738211023, 48.855059763157335], [2.338728944669631, 48.85508009465304], [2.338548602774279, 48.85510058074788], [2.338371808955148, 48.85512091171522], [2.338191466778117, 48.8551413972711], [2.338014674043872, 48.85516172771757], [2.338007523722991, 48.85516413260292], [2.33784219385935, 48.855269961209075], [2.337682087959569, 48.855375096314624], [2.337673247800256, 48.85537769957712], [2.337456065385379, 48.85538584512794], [2.337248496383288, 48.85539380969896], [2.337040927306199, 48.85540177480917], [2.336823744703581, 48.85540991831289], [2.336770277532095, 48.855397431235836]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 66, "zemmour_eric": 101.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "6-4", "circ_bv": "02", "num_bureau": 4, "roussel_fabien": 18.0, "nb_emargement": 877.0, "nb_procuration": 62.0, "nb_vote_blanc": 9.0, "jadot_yannick": 64.0, "le_pen_marine": 43.0, "nb_exprime": 863.0, "nb_vote_nul": 5.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1128.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 877, "quartier_bv": "21", "geo_point_2d": [48.85615720971155, 2.3391310891128594], "melenchon_jean_luc": 156.0, "poutou_philippe": 2.0, "macron_emmanuel": 378.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3912698980077, 48.884338871379626], [2.391284904634543, 48.88432303681703], [2.391388558788171, 48.88422056945457], [2.391493735891711, 48.88411645407735], [2.391597389212631, 48.88401398741411], [2.391702565481427, 48.88390987183394], [2.391806219354344, 48.883807404078304], [2.391911393424922, 48.88370328828821], [2.392015046475751, 48.883600820332504], [2.392120221075074, 48.883496704346335], [2.392223871940352, 48.88339423618371], [2.392329045704853, 48.88329011999452], [2.392432695748064, 48.883187651631886], [2.392537868677953, 48.88308353523973], [2.392641519252074, 48.88298106758325], [2.392746689983703, 48.88287695098119], [2.392746506736254, 48.88286144297142], [2.392723120517112, 48.882854799741835], [2.392523317806801, 48.88287169350781], [2.392326785309783, 48.88288796861473], [2.392126982333151, 48.882904862618055], [2.391930450961155, 48.882921136181515], [2.391730647728801, 48.882938029522954], [2.391534114733624, 48.88295430332772], [2.391334311245455, 48.88297119600721], [2.391137779375436, 48.88298746826854], [2.391130597076126, 48.88298677973143], [2.390957104175681, 48.8829365251914], [2.390787306468163, 48.88288631617846], [2.390617507735028, 48.88283610601623], [2.39044401718481, 48.882785851632036], [2.390274219110226, 48.88273564097838], [2.390100727872852, 48.882685385185916], [2.390090641418031, 48.88268083087552], [2.390070129721146, 48.88268609536118], [2.389875196737146, 48.882728082742815], [2.389678958957465, 48.88277049303368], [2.389484025352714, 48.88281247887598], [2.389287786925909, 48.882854889421715], [2.389092854053331, 48.882896874630845], [2.388896615000498, 48.882939283632915], [2.388701680122641, 48.88298126909427], [2.388505440433237, 48.88302367745196], [2.388310504924108, 48.88306566227317], [2.388114264598141, 48.883108069986406], [2.388105333278897, 48.88311430343706], [2.388086151614875, 48.88316185081069], [2.388064972284742, 48.88321554205862], [2.388047871438282, 48.88322189472814], [2.387991882581961, 48.88321085979378], [2.387935987600483, 48.88319891699333], [2.387918643621216, 48.88320507144915], [2.387861649603595, 48.88334080225429], [2.387812854733493, 48.8834585587421], [2.387764059653189, 48.88357631429816], [2.387707064815787, 48.883712045883144], [2.387658270622333, 48.883829801375946], [2.387601275242448, 48.883965531979996], [2.387552479198104, 48.88408328829483], [2.387495483264947, 48.88421901881726], [2.387495445380316, 48.88421910945533], [2.387469253003431, 48.88427980673146], [2.38746144995788, 48.884296984396244], [2.387463317542564, 48.88429923956644], [2.387435646069163, 48.88436336828432], [2.387377565457344, 48.88449851580286], [2.38732369968953, 48.884623341707645], [2.387265618497229, 48.884758489139905], [2.387211753555666, 48.88488331497179], [2.387153671772295, 48.88501846321708], [2.387099806304164, 48.88514328806981], [2.3870417239402952, 48.88527843622884], [2.386987856571285, 48.88540326099473], [2.386933990297065, 48.88552808662841], [2.386875907084247, 48.885663233760454], [2.38687665495113, 48.88567569413169], [2.386891448732321, 48.88568086365974], [2.387074711054769, 48.88570805232281], [2.387289991543254, 48.88574081039386], [2.387473254284752, 48.88576799844545], [2.38768853527187, 48.88580075579811], [2.387688619678046, 48.88580076792098], [2.387871881464571, 48.88582795625325], [2.388045695734609, 48.88585364001168], [2.388228959257167, 48.885880827803064], [2.388402773879798, 48.88590651104192], [2.3885860377854122, 48.88593369738618], [2.388759852750068, 48.885959381004724], [2.388943117028166, 48.88598656680115], [2.389116930981769, 48.88601224989312], [2.389118128026842, 48.886012389999735], [2.389274347657281, 48.886027033825755], [2.389497584640844, 48.886046467234216], [2.389653804480217, 48.88606111056469], [2.389730134568234, 48.886067754434414], [2.3897589497569323, 48.88606784823959], [2.389762104323098, 48.88604966650074], [2.389777585516687, 48.88591207421091], [2.3897930770189513, 48.88577359522129], [2.389808559412257, 48.88563600289983], [2.389824050749924, 48.88549752387145], [2.389839531615792, 48.885359931504475], [2.38985502278897, 48.88522145243731], [2.389870503490831, 48.88508386003177], [2.389885994499624, 48.88494538092582], [2.389901476401187, 48.88480778848868], [2.38991696724539, 48.884669309343955], [2.389932447619547, 48.8845317168613], [2.389947938299269, 48.88439323767779], [2.3899493371602443, 48.884389883128044], [2.390027230609781, 48.88428322702103], [2.390111334340295, 48.884172099567806], [2.39018922850641, 48.88406544244196], [2.390273330175917, 48.883954314846], [2.3902925937524833, 48.88395063847724], [2.390453172882893, 48.88401476412168], [2.390620424151027, 48.88408243447037], [2.390781004091626, 48.88414655966745], [2.390948256219567, 48.884214228650805], [2.391108835606557, 48.884278353393604], [2.391246906717861, 48.88433421559065], [2.3912698980077, 48.884338871379626]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 30, "zemmour_eric": 74.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-23", "circ_bv": "16", "num_bureau": 23, "roussel_fabien": 21.0, "nb_emargement": 1170.0, "nb_procuration": 70.0, "nb_vote_blanc": 8.0, "jadot_yannick": 76.0, "le_pen_marine": 77.0, "nb_exprime": 1157.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 12, "nb_inscrit": 1638.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1170, "quartier_bv": "75", "geo_point_2d": [48.88422684479989, 2.3893301303206766], "melenchon_jean_luc": 530.0, "poutou_philippe": 8.0, "macron_emmanuel": 277.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.369281320050499, 48.88670453578762], [2.3692743344174, 48.886718214596286], [2.369234879005659, 48.88683971690245], [2.3691963191760133, 48.886961798569985], [2.369156864761338, 48.88708330083066], [2.369118304568315, 48.887205382446005], [2.369078848434375, 48.887326883747605], [2.36904028787807, 48.88744896531074], [2.369000831366626, 48.887570467458936], [2.368962271810711, 48.88769254897707], [2.368922814932557, 48.88781405107262], [2.368884253649774, 48.88793613253137], [2.368844796405, 48.888057634574274], [2.368806234758921, 48.88817971598083], [2.368766778511219, 48.888301217978245], [2.368728216501839, 48.88842329933258], [2.368710433559291, 48.88845149110749], [2.368716824304768, 48.88845935251429], [2.368910637702479, 48.88849753692755], [2.369099320466954, 48.888535081551815], [2.369293134427021, 48.88857326534337], [2.36948181774169, 48.888610809362326], [2.369675632264107, 48.8886489925321], [2.369864316128963, 48.888686535945794], [2.370058131213723, 48.88872471849377], [2.370246815639635, 48.888762260402856], [2.370440631286728, 48.88880044232915], [2.370629316251935, 48.888837984532174], [2.370823132461357, 48.88887616583669], [2.371011816613123, 48.88891370742724], [2.371019707909341, 48.88891784349777], [2.371132734668498, 48.88904782546684], [2.3712532184560082, 48.88919232106885], [2.371283459126775, 48.88920393992741], [2.3713165633273112, 48.889191083452936], [2.371350485732643, 48.8891427619705], [2.371370818894098, 48.88910430845165], [2.371400682899334, 48.889081152983195], [2.371378693272517, 48.88905766144079], [2.371422681083692, 48.888974472061996], [2.371494112254451, 48.88884572670996], [2.3715584325766272, 48.888724083708695], [2.371629863079009, 48.88859533734708], [2.371694182764018, 48.88847369514442], [2.371765611223583, 48.88834494866532], [2.371829930293041, 48.888223305462745], [2.371901359426345, 48.88809455977972], [2.371965677869302, 48.88797291647646], [2.372037106334453, 48.88784416978384], [2.37210142415102, 48.88772252637996], [2.372172851926235, 48.887593780476294], [2.372237169116421, 48.887472136971766], [2.372241478086945, 48.88746810091303], [2.372404584682033, 48.88738123316316], [2.372570253636152, 48.887292403697984], [2.372733360506937, 48.88720553459423], [2.372899026977655, 48.887116704652875], [2.373062132749528, 48.88702983508738], [2.37322779946408, 48.88694100468401], [2.373390904126324, 48.886854135556064], [2.3735565683573983, 48.88676530467649], [2.373719671931767, 48.88667843418752], [2.373885336406576, 48.886589602846016], [2.373896161070847, 48.88656843448615], [2.373872456564014, 48.88654998588837], [2.373819880175335, 48.886529105608204], [2.373648623267477, 48.88645954819904], [2.373486985986175, 48.886395353186316], [2.373315729962965, 48.88632579529256], [2.373154094870861, 48.88626159982976], [2.372982838368555, 48.88619204144426], [2.372821204101902, 48.88612784552425], [2.372659570233875, 48.886063649382294], [2.372488315043146, 48.885994090277016], [2.37232668200067, 48.885929893677854], [2.372155429058121, 48.88586033409512], [2.372143781259894, 48.88584974281413], [2.372107288634481, 48.88585292391816], [2.371905531446363, 48.88583573989986], [2.37170461986133, 48.88581991346298], [2.37150286429772, 48.88580272877282], [2.3713019529732913, 48.8857869007605], [2.37110019765951, 48.885769716290625], [2.370899286584844, 48.88575388760215], [2.370888017271735, 48.885756464313666], [2.370751635253663, 48.8858465669438], [2.370616407205181, 48.88593886353879], [2.370480022875805, 48.88602896583737], [2.370344793872248, 48.88612126211026], [2.37020840859519, 48.886211364084545], [2.370073178636552, 48.886303660035374], [2.369936792411804, 48.8863937616853], [2.369801561508961, 48.88648605641476], [2.369665174325634, 48.88657615863965], [2.369529942467701, 48.88666845304697], [2.369522253299442, 48.88667108805101], [2.369414471729625, 48.88668226025336], [2.369300643235615, 48.8866991876638], [2.369281320050499, 48.88670453578762]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 25, "zemmour_eric": 96.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "19-56", "circ_bv": "17", "num_bureau": 56, "roussel_fabien": 14.0, "nb_emargement": 1005.0, "nb_procuration": 26.0, "nb_vote_blanc": 8.0, "jadot_yannick": 49.0, "le_pen_marine": 59.0, "nb_exprime": 992.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1412.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1005, "quartier_bv": "73", "geo_point_2d": [48.88729386622091, 2.370987327312536], "melenchon_jean_luc": 503.0, "poutou_philippe": 8.0, "macron_emmanuel": 205.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.283422729557035, 48.840229016686024], [2.283403854817588, 48.8402380232417], [2.283271999577579, 48.84031456571593], [2.283137053741742, 48.84039239720638], [2.283005197719396, 48.84046893937593], [2.282870252435528, 48.840546771462115], [2.282738395643216, 48.84062331242772], [2.282603448198817, 48.840701144194036], [2.282590116366423, 48.84070289086258], [2.282392907307038, 48.84065883767395], [2.282197204317943, 48.84061546592325], [2.281999995921337, 48.84057141208343], [2.2818042935998513, 48.840528038787255], [2.281607085853842, 48.84048398519557], [2.281411384187586, 48.840440611253236], [2.281215682846946, 48.84039723698901], [2.281018476093344, 48.84035318242186], [2.28082277404562, 48.840309807503274], [2.28062556931734, 48.84026575229311], [2.2804298679248642, 48.840222376728384], [2.28023266249696, 48.84017832085886], [2.280225943104187, 48.84017502740106], [2.280104984157625, 48.84006320194595], [2.279983887184315, 48.839950556195774], [2.279975176663803, 48.83994690807742], [2.279835751440787, 48.83993043498725], [2.279695928743056, 48.839914828133516], [2.279686638733637, 48.83991071962361], [2.27958651940237, 48.83980472920612], [2.279483331413012, 48.8396959321556], [2.279465268366896, 48.83969280596114], [2.279386063718901, 48.83972127153565], [2.279330007902661, 48.83974214821955], [2.279322907490192, 48.839750357179824], [2.279325594679792, 48.83980167174635], [2.279328322045707, 48.83984111394414], [2.279330475922806, 48.839845664251634], [2.279436278464385, 48.83995436834491], [2.279546722344486, 48.84006838139577], [2.279652525789159, 48.84017708527611], [2.27976297197664, 48.84029109811278], [2.279762913963445, 48.840301507988414], [2.279779999186334, 48.840309645841025], [2.2797804031554723, 48.84031009076399], [2.279874131761961, 48.84042035857429], [2.279965224970597, 48.84052692750945], [2.280058955720361, 48.84063719516168], [2.280150049685864, 48.8407437639354], [2.280241144023774, 48.840850332629614], [2.280334874576522, 48.84096060002554], [2.280425969658994, 48.84106716945756], [2.280519700992706, 48.84117743668729], [2.280610796844379, 48.841284005058604], [2.280704530321517, 48.841394272130245], [2.2806986258331072, 48.841406754065304], [2.280503629553778, 48.841469611179086], [2.280309280228513, 48.841531564401755], [2.28011428301279, 48.84159442087385], [2.279919932759328, 48.84165637345704], [2.279915570792681, 48.84165857494069], [2.279890201677001, 48.841685776578075], [2.2799190138910372, 48.84169842248366], [2.280012052241859, 48.841802933504965], [2.280105533717462, 48.841904786771615], [2.280198572810571, 48.842009297628486], [2.280292056383281, 48.84211115073876], [2.2803850962312042, 48.84221566053196], [2.280478579163668, 48.84231751436876], [2.280571621116473, 48.84242202400578], [2.280665104796002, 48.84252387677867], [2.2806781407931043, 48.84253264487407], [2.280701803736887, 48.842526883695534], [2.280855363900988, 48.842462440744704], [2.281007890478213, 48.84239881520578], [2.281161451249003, 48.84233437186285], [2.281313977077674, 48.8422707459264], [2.281467535730194, 48.84220630217497], [2.281620060798123, 48.84214267674029], [2.281622656901674, 48.84214126233235], [2.281739848788367, 48.84205936071277], [2.281852303361711, 48.84197988221767], [2.281964757604376, 48.84190040271189], [2.282081948411919, 48.84181850073952], [2.28219440194391, 48.8417390219057], [2.282311593390086, 48.841657119704685], [2.282312867379424, 48.84165632780791], [2.282455169450134, 48.84157863856524], [2.282606507832838, 48.8414957780008], [2.282748809027515, 48.84141808839767], [2.282900147839668, 48.84133522745801], [2.2830424481583123, 48.841257537494435], [2.283193786037461, 48.84117467617138], [2.28333608546771, 48.84109698674663], [2.2834874210514178, 48.84101412503202], [2.283629719618014, 48.84093643434751], [2.283781055631172, 48.84085357225771], [2.283923353321748, 48.840775881212735], [2.284029982861052, 48.84071749736046], [2.2840307970966, 48.84071247924846], [2.284013333664832, 48.840700473352236], [2.283871048844973, 48.8405853691758], [2.283726676582445, 48.84046872878105], [2.283584393028266, 48.84035362423979], [2.283440022049143, 48.84023698347488], [2.283422729557035, 48.840229016686024]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 101, "zemmour_eric": 69.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-79", "circ_bv": "13", "num_bureau": 79, "roussel_fabien": 9.0, "nb_emargement": 1019.0, "nb_procuration": 48.0, "nb_vote_blanc": 14.0, "jadot_yannick": 80.0, "le_pen_marine": 67.0, "nb_exprime": 1004.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1298.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1019, "quartier_bv": "60", "geo_point_2d": [48.84113600859954, 2.2815004287822473], "melenchon_jean_luc": 234.0, "poutou_philippe": 3.0, "macron_emmanuel": 384.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376914452547419, 48.82412118264585], [2.376891175492506, 48.82413980073843], [2.3767672219128633, 48.82421252221453], [2.376624488239891, 48.82429339113243], [2.376500533923135, 48.82436611232213], [2.376357800778076, 48.82444698091779], [2.376341429877832, 48.824447661808755], [2.376188409628987, 48.82438100335593], [2.376042608755482, 48.824316057006314], [2.375889587923669, 48.82424939725685], [2.375743787790418, 48.824184450535355], [2.375739251345796, 48.82418314524444], [2.375528602977449, 48.824150838900046], [2.37532372529369, 48.824114953134334], [2.37511884788118, 48.8240790679158], [2.374908200328428, 48.82404675957627], [2.374703323480764, 48.824010872744324], [2.374492675088216, 48.82397856456309], [2.37428780015644, 48.82394267702424], [2.374077152297, 48.82391036810912], [2.3738722765571962, 48.82387447984912], [2.3736616306034852, 48.823842169307895], [2.373646624774877, 48.823846581293544], [2.373553954412251, 48.82395737200651], [2.3734521311159043, 48.82407865176551], [2.373359458576406, 48.82418944139841], [2.373257634374319, 48.824310720966764], [2.373164960998232, 48.824421511325326], [2.373063137263439, 48.82454278981085], [2.372970463061563, 48.82465357999586], [2.372868637048174, 48.824774859182845], [2.372775962031314, 48.82488564829487], [2.372674135112355, 48.82500692729122], [2.372581459258866, 48.825117717128975], [2.372479632806994, 48.82523899504243], [2.372410785924913, 48.82532129796641], [2.372411682795473, 48.8253269057763], [2.372433623906751, 48.82533560005384], [2.372609520384518, 48.825360480528545], [2.372824185785681, 48.82538975066145], [2.373000082632414, 48.825414630560445], [2.373214748475789, 48.825443899990894], [2.373390645691682, 48.82546877931423], [2.373605311977261, 48.82549804804218], [2.373781209562204, 48.8255229267899], [2.373995876289979, 48.825552194815344], [2.374171774243865, 48.825577072987386], [2.374185329301246, 48.82557384322016], [2.374275786578217, 48.82549799296956], [2.374368937541341, 48.825421033420625], [2.374459394286175, 48.825345183020815], [2.374552543332324, 48.825268224210575], [2.3745711535373992, 48.82526654527752], [2.3745929616564663, 48.82527613423896], [2.37464370585228, 48.825300307674645], [2.374648115999339, 48.825311353468166], [2.3745888642923862, 48.825389695690085], [2.374482637969515, 48.825542447431104], [2.374423387113338, 48.82562078956203], [2.374431025775968, 48.8256332849521], [2.374625136224919, 48.82567867621054], [2.374808427451889, 48.82571817994775], [2.375002539896659, 48.82576357149663], [2.375185830346079, 48.825803074645314], [2.37537994344627, 48.825848464678856], [2.375563235831379, 48.825887968152536], [2.375746528494144, 48.8259274713439], [2.375940641183656, 48.82597286045521], [2.376123934441583, 48.82601236216585], [2.3763180491269242, 48.826057751567575], [2.376501341607274, 48.82609725268966], [2.376695456947994, 48.82614264057602], [2.376878751363942, 48.82618214202312], [2.377072865987308, 48.826227529286385], [2.37725616098764, 48.82626703015203], [2.377450277617688, 48.82631241680634], [2.377552209609245, 48.8263343830553], [2.377578290021258, 48.82635061937718], [2.377615100854408, 48.8263493269935], [2.377696463140695, 48.82636686007932], [2.377850608090893, 48.82638774510197], [2.378085683599232, 48.826417736070425], [2.3782398288557642, 48.82643862059039], [2.378249559385396, 48.82643752807699], [2.378428775499843, 48.82636673648808], [2.378599731380098, 48.82629889572108], [2.378778946542429, 48.826228103598716], [2.378949900150386, 48.82616026231569], [2.379129114360706, 48.82608946965983], [2.3793000684205072, 48.82602162787491], [2.379479281678817, 48.825950834685585], [2.379650233466426, 48.82588299238467], [2.379821186160298, 48.8258151507417], [2.380000398012071, 48.82574435585909], [2.380171348433767, 48.82567651370008], [2.380350559333424, 48.82560571828401], [2.380521510206957, 48.825537875623176], [2.380700720154598, 48.825467079673615], [2.38070595165121, 48.825463327597475], [2.380724086876941, 48.825441076572744], [2.380668178217362, 48.82541224361734], [2.380497358125669, 48.82535289324441], [2.380329112437386, 48.8252949490923], [2.380158293126758, 48.82523559732954], [2.379990046821074, 48.82517765358665], [2.379819228280729, 48.825118301333326], [2.379650984092423, 48.82506035711444], [2.379482740288784, 48.82500241175656], [2.379311922900094, 48.82494305876937], [2.379143678479049, 48.824885113820635], [2.3789728618605412, 48.82482576034296], [2.378804619567688, 48.824767814018934], [2.378633803708748, 48.82470846095005], [2.378465562171134, 48.82465051414298], [2.378294747093299, 48.824591159684275], [2.378126504938276, 48.824533213286394], [2.377955690630728, 48.82447385833721], [2.377787450603805, 48.824415910564014], [2.377616637055711, 48.824356556023666], [2.377448397784235, 48.824298607767396], [2.377277585017164, 48.82423925183727], [2.377109345128172, 48.824181303990215], [2.376938533131494, 48.82412194756957], [2.376914452547419, 48.82412118264585]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 38, "zemmour_eric": 65.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-25", "circ_bv": "09", "num_bureau": 25, "roussel_fabien": 26.0, "nb_emargement": 1233.0, "nb_procuration": 47.0, "nb_vote_blanc": 15.0, "jadot_yannick": 81.0, "le_pen_marine": 96.0, "nb_exprime": 1207.0, "nb_vote_nul": 11.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1729.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1233, "quartier_bv": "50", "geo_point_2d": [48.82515141117061, 2.3764114269826], "melenchon_jean_luc": 569.0, "poutou_philippe": 8.0, "macron_emmanuel": 282.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.362614196105643, 48.87426986784615], [2.362599870800436, 48.87423099781602], [2.362494597138212, 48.87412858201961], [2.362390926092326, 48.87402625919289], [2.362285653254748, 48.87392384319374], [2.362181983026832, 48.87382152016709], [2.36207670965058, 48.87371910395786], [2.361973040240629, 48.873616780731304], [2.36186776905232, 48.87351436432667], [2.361764100460323, 48.873412040900114], [2.361658830096634, 48.873309624292716], [2.361555162322481, 48.873207300666316], [2.361554108671213, 48.8732060584584], [2.361544344987813, 48.87318119547786], [2.361531781837885, 48.87317950696454], [2.361447930028217, 48.873059137606624], [2.361354318873269, 48.87292449129165], [2.361270467873304, 48.87280412268091], [2.361176857635401, 48.872669476196045], [2.361176848268982, 48.87266946175665], [2.361092998089675, 48.872549092993786], [2.361014432986636, 48.8724365847002], [2.360930584920704, 48.87231621580544], [2.360852020519721, 48.87220370738155], [2.360768173215006, 48.87208333744837], [2.360689609505033, 48.871970829793455], [2.360605762950494, 48.87185045972114], [2.360527199942557, 48.87173795193589], [2.360443352775027, 48.871617581717125], [2.360364791832273, 48.87150507380883], [2.360352734608763, 48.87149119823896], [2.360338312719935, 48.87149491817597], [2.360326921160137, 48.87149644463131], [2.360312464745718, 48.871510635376666], [2.360215645616117, 48.87161720752173], [2.360118260915322, 48.8717221766343], [2.360020875821926, 48.87182714565766], [2.35992405550743, 48.87193371753632], [2.359826669627171, 48.87203868638157], [2.359729848533182, 48.87214525718349], [2.359632461866155, 48.872250225850635], [2.359535639970555, 48.872356797374295], [2.359438252516548, 48.87246176586332], [2.3593414311936662, 48.87256833721679], [2.359244041589487, 48.87267330552041], [2.359147219487102, 48.87277987579713], [2.359049829096126, 48.8728848439226], [2.358953006192101, 48.872991414921046], [2.358855616377408, 48.87309638287574], [2.358758791319502, 48.87320295368936], [2.358759465423479, 48.87321287159232], [2.358881535688404, 48.873323411849725], [2.359005166557709, 48.87343724380455], [2.359005138211467, 48.87344774520922], [2.358911874810965, 48.87353297773701], [2.358775041082363, 48.87365824010196], [2.358681776928439, 48.87374347243422], [2.358544943456814, 48.8738687345196], [2.3584516785494642, 48.87395396665632], [2.358450310944569, 48.873955526870176], [2.358368533955271, 48.87407515177388], [2.35828542133998, 48.874196587009415], [2.358203643604591, 48.87431621087507], [2.358120530220214, 48.87443764596954], [2.358038751716566, 48.87455727059571], [2.357955637563092, 48.87467870554919], [2.357873858302252, 48.87479833003657], [2.357790743379672, 48.87491976484905], [2.357708963372721, 48.87503938829834], [2.357625847669934, 48.87516082386908], [2.357567060143579, 48.875187663824235], [2.357577075414548, 48.87520173371774], [2.35761372560303, 48.875267604377115], [2.357673545863415, 48.87538034950262], [2.357745558279178, 48.87550977791685], [2.357805379102975, 48.87562252295167], [2.357877392181169, 48.87575195125819], [2.357937213568587, 48.87586469620237], [2.35799703385162, 48.875977441097895], [2.358069049260167, 48.87610686925478], [2.358112489440598, 48.87614971626976], [2.35812753005981, 48.876149455170484], [2.358184147033661, 48.87614026805478], [2.3584019482757412, 48.8761068741586], [2.3586049366466533, 48.876073937403525], [2.35863898466507, 48.87606871752297], [2.358641659355484, 48.87606852680472], [2.358667569456306, 48.876060612076714], [2.358851323452112, 48.87603243725674], [2.359037799957957, 48.87600094469707], [2.359255600081154, 48.87596754834426], [2.359442076110334, 48.875936055153005], [2.359512847247879, 48.87593012859127], [2.359511345622979, 48.87588082981535], [2.359460355985462, 48.87577949333404], [2.35940976177086, 48.87567351477078], [2.359358772522981, 48.87557217912646], [2.359308180079812, 48.87546620050762], [2.35925719123242, 48.875364864801], [2.359206599197314, 48.87525888611932], [2.359213370676299, 48.87524818700086], [2.359377745481663, 48.87519245092194], [2.359565649781783, 48.87512850726038], [2.359730023832478, 48.8750727706917], [2.359917927268453, 48.875008826470236], [2.360082300553428, 48.874953090311095], [2.360270204499445, 48.87488914463774], [2.360434577029754, 48.874833407988824], [2.360622478737132, 48.87476946264758], [2.360786850523814, 48.87471372460963], [2.360974751367042, 48.87464977870849], [2.36113912239905, 48.874594040180774], [2.36114104178749, 48.8745935072257], [2.361321385434608, 48.874553829490715], [2.361511671864013, 48.87451183296945], [2.361692014945999, 48.87447215467314], [2.361882300778181, 48.87443015755964], [2.362062641931803, 48.874390478694814], [2.362252927166756, 48.87434848098901], [2.362433269118466, 48.87430880157016], [2.362578217124672, 48.87427680979668], [2.362614196105643, 48.87426986784615]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 31, "zemmour_eric": 57.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "10-8", "circ_bv": "05", "num_bureau": 8, "roussel_fabien": 27.0, "nb_emargement": 1296.0, "nb_procuration": 108.0, "nb_vote_blanc": 10.0, "jadot_yannick": 169.0, "le_pen_marine": 63.0, "nb_exprime": 1283.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1657.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1296, "quartier_bv": "39", "geo_point_2d": [48.87398517208486, 2.359867677585378], "melenchon_jean_luc": 443.0, "poutou_philippe": 8.0, "macron_emmanuel": 435.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.277791925817521, 48.85768774509809], [2.277853094507135, 48.857699059436804], [2.278049581975646, 48.8576798646948], [2.278244763710519, 48.85765997104851], [2.278441249511998, 48.85764077655382], [2.278636432326229, 48.85762088137691], [2.278832917836007, 48.857601686238446], [2.27902809899137, 48.8575817904138], [2.279224585572314, 48.85756259463978], [2.279419766431676, 48.857542698175656], [2.279431397873693, 48.8575451704005], [2.279540433883451, 48.857615841010286], [2.279646343972844, 48.8576828323122], [2.279652071263663, 48.85768499466902], [2.279832162850012, 48.85771855174067], [2.280033603319796, 48.85775523454589], [2.280213694044187, 48.85778879013374], [2.280415135041714, 48.85782547319367], [2.280595227617475, 48.85785902821341], [2.280796669167584, 48.857895709729505], [2.280976762219312, 48.857929265072244], [2.2811782043096738, 48.85796594594371], [2.281358296487097, 48.85799950070194], [2.2813589971069588, 48.857999003068294], [2.281371521336272, 48.85796690018634], [2.281561612411676, 48.857930871174666], [2.281748220367414, 48.8578946770579], [2.281938309568342, 48.857858646538034], [2.282124916991235, 48.85782245273081], [2.282315007031054, 48.85778642161837], [2.282501613946082, 48.857750226322096], [2.282691703461895, 48.85771419460895], [2.28287830984408, 48.857677999622176], [2.283068398835883, 48.85764196730834], [2.283255004710177, 48.857605770832485], [2.283445091802716, 48.85756973880901], [2.283631697156637, 48.85753354174345], [2.283637865390672, 48.857518811224935], [2.2835243577683633, 48.857437724628895], [2.283356342711741, 48.85730710945096], [2.283242835988741, 48.857226022572405], [2.283241888996961, 48.85722540893447], [2.2830947600091323, 48.85714074612153], [2.28295887939514, 48.85706087754511], [2.282823000560482, 48.856981008816796], [2.282675871593042, 48.85689634456278], [2.28253999362137, 48.856816475501276], [2.282392865578284, 48.85673181088674], [2.282256988469494, 48.85665194149207], [2.282109861338466, 48.85656727741633], [2.282092578048089, 48.85653135858822], [2.282055170254611, 48.85652892533042], [2.281991493137224, 48.856500185600254], [2.281956759382499, 48.85648668106904], [2.281953363216998, 48.85648448514237], [2.281844581778677, 48.85638153662698], [2.281706566173213, 48.85625404620161], [2.281706536575496, 48.85625401814384], [2.281597756118506, 48.856151068483406], [2.281495151712427, 48.85605551704656], [2.281386372087505, 48.855952567175564], [2.281283768472352, 48.855857014641124], [2.281181163858381, 48.85576146290156], [2.281072386830451, 48.85565851272607], [2.281063287861982, 48.85565476888749], [2.2810018932304272, 48.855642668761284], [2.280885742618078, 48.855630826830016], [2.280874171944834, 48.85563326020919], [2.280753943568738, 48.855714126546026], [2.280592534562341, 48.85581747018205], [2.280472306674417, 48.855898337129986], [2.280310896538796, 48.85600168036895], [2.280190666425986, 48.85608254701232], [2.280190274482963, 48.856082800971855], [2.280028863216441, 48.856186143813204], [2.27990033110274, 48.856265889968284], [2.279877702871793, 48.85627009049961], [2.279861814489797, 48.85628601515555], [2.279733281874068, 48.85636576112403], [2.279607703798456, 48.85645792149517], [2.279607120945106, 48.8564583793571], [2.27950460087662, 48.85654421563906], [2.279425056953059, 48.856611032057145], [2.279423681682008, 48.85661202206329], [2.279300159046194, 48.85667896477746], [2.279163650100602, 48.85676353030279], [2.279162540901152, 48.856764202636505], [2.279053046509563, 48.85683832733028], [2.278916536757733, 48.85692289166231], [2.278807043045559, 48.856997016128595], [2.278670532466263, 48.85708158106715], [2.278547269573751, 48.85715727350869], [2.278410756790209, 48.85724183813052], [2.278287493141193, 48.85731753029353], [2.278150980879031, 48.85740209461502], [2.2780277164609473, 48.8574777873988], [2.278026214412336, 48.85747887375416], [2.277913967376468, 48.8575692546471], [2.277790248114774, 48.85767495420113], [2.277791925817521, 48.85768774509809]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 160, "zemmour_eric": 231.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-6", "circ_bv": "14", "num_bureau": 6, "roussel_fabien": 8.0, "nb_emargement": 1063.0, "nb_procuration": 72.0, "nb_vote_blanc": 7.0, "jadot_yannick": 26.0, "le_pen_marine": 51.0, "nb_exprime": 1053.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1319.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1063, "quartier_bv": "62", "geo_point_2d": [48.85703934467333, 2.280851771318432], "melenchon_jean_luc": 48.0, "poutou_philippe": 0.0, "macron_emmanuel": 494.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.286253108921799, 48.866279961958035], [2.286261738091667, 48.86627447881974], [2.286282680709097, 48.86621250180565], [2.286282859829732, 48.86621186523478], [2.286315551570655, 48.86607955266679], [2.286342820531234, 48.86595827514156], [2.286370089352529, 48.86583699849614], [2.286402780636762, 48.86570468585946], [2.286430047834962, 48.865583408265216], [2.286462740158441, 48.865451096489316], [2.286490007084325, 48.86532981885353], [2.2865226991088, 48.86519750613168], [2.286549965750056, 48.865076229353804], [2.286582657463009, 48.86494391658523], [2.286609923844273, 48.86482263886659], [2.2866426152336, 48.86469032695063], [2.2866698813425588, 48.86456904919056], [2.286702571057317, 48.864436737219805], [2.286729838257034, 48.86431545942643], [2.286729841118583, 48.864315449550624], [2.286762530521929, 48.86418313753319], [2.286790400354476, 48.86405824609942], [2.286823090818086, 48.863925933143555], [2.286850960367757, 48.863801041666676], [2.286883650516168, 48.863668728663555], [2.286911519783069, 48.863543837143546], [2.286944208240946, 48.86341152498433], [2.286972078588113, 48.86328663342934], [2.287004766743115, 48.863154320323545], [2.287032636807513, 48.86302942872551], [2.28702849386446, 48.862966314474924], [2.286958025212416, 48.862962038215], [2.286843011278616, 48.86297530994817], [2.286651489105305, 48.862997714453314], [2.28645417538567, 48.86302048253494], [2.286262654242002, 48.86304288642506], [2.286065340193681, 48.86306565296541], [2.285873817353727, 48.86308805622423], [2.285676502952084, 48.86311082302188], [2.285484979778868, 48.863133225657556], [2.285287666411593, 48.86315599092203], [2.285096142905129, 48.86317839293454], [2.284898827821511, 48.863201158448184], [2.284707303994151, 48.86322355893823], [2.2845099885695612, 48.863246323809896], [2.284318464396723, 48.863268724575995], [2.284121150006449, 48.86329148791453], [2.283929625500387, 48.86331388805752], [2.283732309393876, 48.86333665164516], [2.283540784554495, 48.86335905116494], [2.283343468119404, 48.86338181321132], [2.283151944309846, 48.86340421211611], [2.282954627521447, 48.86342697441973], [2.2827631020156582, 48.86344937269319], [2.28256578489871, 48.86347213345553], [2.282374259059731, 48.86349453110581], [2.282176942952513, 48.863517292133594], [2.281985416792743, 48.86353968826142], [2.28178809898158, 48.863562448639016], [2.281596572476344, 48.86358484504296], [2.28154400520542, 48.86358146538658], [2.281537615137159, 48.863583225730224], [2.28134608844786, 48.863605621732844], [2.281143088218764, 48.86362880379749], [2.280951561192305, 48.86365119916784], [2.280748560610165, 48.863674380562315], [2.280557033246455, 48.86369677530037], [2.280354033674213, 48.86371995603292], [2.280162505973361, 48.86374235013871], [2.279959504697383, 48.86376552929363], [2.279767976659503, 48.863787922767116], [2.279664296855276, 48.863799761997925], [2.279584075658858, 48.86380229645341], [2.27958781983677, 48.8638846295275], [2.279766096256837, 48.86395371156569], [2.279934456561603, 48.864019325124836], [2.28011273390225, 48.86408840663827], [2.2802810950664583, 48.864154020601056], [2.28045937332769, 48.86422310158975], [2.28062773537619, 48.864288714157645], [2.280806014558002, 48.86435779462159], [2.28097437747847, 48.86442340669384], [2.281152657580762, 48.86449248663306], [2.281321021360691, 48.86455809910898], [2.281327658879933, 48.864564991127544], [2.281339281500072, 48.864645692292925], [2.281351510905523, 48.8647312248138], [2.281358210741446, 48.86473814688228], [2.281521096063705, 48.864800865322486], [2.281684899327781, 48.864863869642164], [2.281847785448827, 48.86492658673134], [2.282011590866372, 48.8649895906049], [2.282174476410728, 48.86505230723418], [2.282338282618671, 48.86511531065349], [2.282501168937019, 48.86517802773028], [2.2826649759354662, 48.865241030695316], [2.28282786441556, 48.8653037464293], [2.282991672204306, 48.86536674894002], [2.283154560107802, 48.865429464214095], [2.283318368687049, 48.86549246627052], [2.283323846063789, 48.86549641933976], [2.283401989979103, 48.86560642096839], [2.283480264942957, 48.86571544212625], [2.283558409517201, 48.86582544363095], [2.283636686512955, 48.86593446377379], [2.283714831745935, 48.866044465154665], [2.283793108022674, 48.866153486064704], [2.283871253914599, 48.86626348732163], [2.283949530860151, 48.86637250720858], [2.284027677410824, 48.866482508341605], [2.284105955000475, 48.86659152900391], [2.284184232930116, 48.86670054870503], [2.284262380468583, 48.8668105496522], [2.284293344569686, 48.86685717003334], [2.284306866301548, 48.86685696759572], [2.284367159327095, 48.86683794263953], [2.284553048364873, 48.86677885061682], [2.28474653794119, 48.86671779278097], [2.284746888486127, 48.86671767885979], [2.284932776676365, 48.8666585853416], [2.285095705851406, 48.866603331321635], [2.285281593225593, 48.8665442381549], [2.285444521673128, 48.86648898365442], [2.285607451138047, 48.86643372893751], [2.285793337338871, 48.86637463406768], [2.285956264713167, 48.86631937886207], [2.286142150097949, 48.86626028434364], [2.286253108921799, 48.866279961958035]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 177, "zemmour_eric": 274.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-51", "circ_bv": "14", "num_bureau": 51, "roussel_fabien": 6.0, "nb_emargement": 1449.0, "nb_procuration": 101.0, "nb_vote_blanc": 9.0, "jadot_yannick": 44.0, "le_pen_marine": 65.0, "nb_exprime": 1438.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1842.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1449, "quartier_bv": "63", "geo_point_2d": [48.86460730370487, 2.284217268913463], "melenchon_jean_luc": 151.0, "poutou_philippe": 1.0, "macron_emmanuel": 693.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.36809244888894, 48.850876192765675], [2.368084553956242, 48.850858016488324], [2.368036890504433, 48.85075533187884], [2.367981062095904, 48.85063124983611], [2.367923631141693, 48.8505075208267], [2.367867803268233, 48.850383438703545], [2.367810372866956, 48.850259708712905], [2.367754544166065, 48.85013562650206], [2.367697114306809, 48.85001189642952], [2.367641287503775, 48.84988781414537], [2.367583858175614, 48.84976408489024], [2.367528031918543, 48.84964000162632], [2.3674706031323822, 48.849516272289286], [2.367414776036965, 48.84939218983701], [2.367357347803717, 48.849268459518726], [2.367301522606112, 48.849144376993216], [2.367244094903933, 48.84902064749237], [2.367188270252275, 48.848896563987054], [2.367191056222446, 48.8488883262316], [2.367176762378182, 48.84886836766571], [2.367129035444821, 48.84876301556523], [2.367073211332185, 48.84863893287683], [2.367025483455634, 48.848533580706125], [2.36696965983533, 48.84840949794386], [2.36692193375182, 48.84830414481806], [2.366881820843543, 48.84821498259556], [2.366884943737877, 48.84818742574707], [2.366874901426411, 48.84817939171452], [2.366859191222074, 48.84814447109887], [2.366800169445497, 48.848014053303935], [2.366744345555643, 48.84788997037144], [2.366685324365538, 48.847759551590784], [2.36662950238438, 48.84763546858354], [2.366573680669043, 48.84751138553647], [2.366514660334797, 48.8473809666273], [2.366511074714928, 48.84737707500907], [2.366383732868739, 48.84729582005045], [2.366240762394423, 48.84721022819984], [2.366113421377489, 48.847128972941384], [2.365970451815795, 48.8470433798556], [2.365970096080033, 48.84704316212453], [2.365820338402571, 48.846954187265595], [2.365677369790791, 48.84686859471547], [2.365527613114736, 48.846779619476195], [2.365384644110966, 48.84669402565633], [2.365234888425261, 48.846605050936], [2.365091921743764, 48.846519456760134], [2.3649421656969523, 48.84643048165223], [2.364799199975114, 48.8463448871132], [2.364649446292286, 48.846255911632156], [2.36450648016751, 48.8461703167227], [2.364459463410004, 48.846128386198444], [2.364433675824015, 48.846130677473504], [2.36437331143046, 48.84617615750469], [2.364237629407869, 48.84628000046253], [2.364105376152, 48.846379641695], [2.363969693065759, 48.84648348433002], [2.36383744014373, 48.846583125255414], [2.36370175462035, 48.84668696845965], [2.363569500669651, 48.84678660907064], [2.3634372448506182, 48.846886249519244], [2.3633015591141, 48.84699009134932], [2.363169302266484, 48.84708973148354], [2.363033615455294, 48.84719357389008], [2.362901357578879, 48.847293213709925], [2.362765669715088, 48.847397054894294], [2.362633410809971, 48.84749669439975], [2.36249772188248, 48.8476005352613], [2.362496744763913, 48.84760120906965], [2.362470801226242, 48.84761172551481], [2.362458920107633, 48.84763331693243], [2.362295380540106, 48.847734969399134], [2.362138784970272, 48.847832031464876], [2.361975244143692, 48.84793368437516], [2.361818647380485, 48.84803074600452], [2.361655105305846, 48.848132398459065], [2.361498505986614, 48.84822945964485], [2.36142229080235, 48.848270949425945], [2.361425789089392, 48.848302737884964], [2.361456854287451, 48.848326250096214], [2.361386290999373, 48.84845462541272], [2.361319971092822, 48.84856941785704], [2.361249405775626, 48.84869779305747], [2.361183086620746, 48.848812585408155], [2.361112520637076, 48.848940960499824], [2.361046199508646, 48.84905575274227], [2.360975634221058, 48.84918412773244], [2.360909312481627, 48.84929891987392], [2.360838746527552, 48.849427294755365], [2.360772424177112, 48.84954208679589], [2.360771746234912, 48.84954369571929], [2.360720415796129, 48.84964732946433], [2.360688516652809, 48.849764178719155], [2.360658733871172, 48.84989534441657], [2.360626833075134, 48.85001219362165], [2.360594932124899, 48.85012904370524], [2.360565150261877, 48.85026020934363], [2.360533249032636, 48.850377058485456], [2.360503465509908, 48.85050822407197], [2.360503251608353, 48.85050999645742], [2.360504516760828, 48.85055215330463], [2.360507046667604, 48.85056021066022], [2.360576710041152, 48.8505618906403], [2.36074735706041, 48.85061837815259], [2.360916875205984, 48.850674491550684], [2.3610875216001, 48.85073097856489], [2.3612570404782582, 48.85078709147536], [2.361427687609836, 48.85084357799866], [2.361597208572274, 48.85089969132812], [2.361767856441315, 48.85095617736053], [2.361937376784641, 48.85101228929581], [2.362108025391141, 48.85106877483736], [2.3622775464670482, 48.85112488628498], [2.362448197173726, 48.85118137134295], [2.362617718971213, 48.851237483202205], [2.362634414129394, 48.85124074506064], [2.362646103394492, 48.85123222658667], [2.362759757768343, 48.85117423990404], [2.36286893721441, 48.85111853522809], [2.362978117789775, 48.851062830456996], [2.363091771435805, 48.851004842550886], [2.363103146335755, 48.85100319072948], [2.36328912837118, 48.85103127453834], [2.3634773850034563, 48.85105970022015], [2.363663367442248, 48.85108778344584], [2.363851624471833, 48.85111620943674], [2.364037608687584, 48.851144291187246], [2.364225866125457, 48.85117271658785], [2.364411849381935, 48.851200797747985], [2.364600107228088, 48.85122922255831], [2.364786090876944, 48.8512573040346], [2.364974349142332, 48.851285727355375], [2.365160333194427, 48.851313808248555], [2.365348591857222, 48.85134223187832], [2.3655345776863292, 48.85137031129628], [2.365722836757283, 48.851398734335795], [2.365908821626982, 48.85142681316335], [2.366097081106288, 48.851455235612626], [2.366283066368362, 48.85148331475634], [2.3664713262559163, 48.851511736615294], [2.366657311932235, 48.851539814276556], [2.3668455722279242, 48.85156823554526], [2.36686065254764, 48.851555257626124], [2.366777095318729, 48.85145118918562], [2.366676279619569, 48.851325625596544], [2.3665927231270762, 48.85122155700581], [2.366491908316434, 48.85109599323548], [2.366408352560348, 48.85099192449446], [2.366307538638214, 48.850866360542916], [2.366223983618526, 48.85076229165166], [2.366123170584889, 48.85063672751887], [2.366039616301593, 48.8505326584774], [2.366038247170759, 48.85053127700882], [2.365932161518827, 48.85044308711799], [2.365823000237889, 48.85035234014436], [2.365716915314602, 48.8502641500485], [2.365607754783327, 48.85017340286395], [2.365501669225883, 48.85008521255583], [2.365392509444269, 48.84999446516031], [2.365286425989006, 48.8499062737551], [2.365177266957045, 48.849815526148596], [2.365184573877143, 48.84980122019829], [2.365354468658739, 48.84977264243186], [2.365513666921927, 48.84974586397043], [2.365683561342575, 48.849717285735345], [2.365842759267643, 48.8496905068347], [2.366001958391675, 48.84966372772887], [2.36617185227676, 48.84963514879827], [2.366187920797781, 48.84964060846973], [2.366256595495074, 48.84975733535441], [2.366324999499818, 48.84987359848351], [2.366393674811203, 48.84999032526505], [2.366462078053984, 48.85010658918355], [2.366530753979366, 48.85022331586195], [2.366599159196515, 48.85033957968495], [2.366667835747036, 48.85045630536097], [2.36673624021316, 48.850572569074004], [2.366804918729574, 48.85068929555343], [2.366873323807384, 48.85080555916376], [2.36688459710032, 48.85081124697719], [2.367077224969177, 48.85082466191173], [2.36726331986749, 48.85083762019002], [2.367449413484824, 48.8508505790708], [2.367642041655381, 48.85086399219629], [2.367828136823684, 48.85087695049496], [2.368020765178399, 48.850890363909706], [2.36809244888894, 48.850876192765675]]], "type": "Polygon"}, "properties": {"lassalle_jean": 27.0, "pecresse_valerie": 82, "zemmour_eric": 128.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "4-8", "circ_bv": "07", "num_bureau": 8, "roussel_fabien": 23.0, "nb_emargement": 1267.0, "nb_procuration": 69.0, "nb_vote_blanc": 14.0, "jadot_yannick": 85.0, "le_pen_marine": 86.0, "nb_exprime": 1249.0, "nb_vote_nul": 4.0, "arr_bv": "04", "arthaud_nathalie": 3, "nb_inscrit": 1613.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1267, "quartier_bv": "15", "geo_point_2d": [48.849153131422064, 2.364236266606491], "melenchon_jean_luc": 302.0, "poutou_philippe": 5.0, "macron_emmanuel": 466.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.368243378204167, 48.87942960546311], [2.368275192863139, 48.87945066750737], [2.368377220585905, 48.87956924124682], [2.368472332197303, 48.87968056666635], [2.368567445578788, 48.87979189200623], [2.368669474635415, 48.87991046545989], [2.368764588858069, 48.88002179061995], [2.368866618813934, 48.88014036388083], [2.368961733877968, 48.880251688861016], [2.369063764733082, 48.88037026192913], [2.3691588806383033, 48.88048158672941], [2.369260912392676, 48.880600159604754], [2.369356029128408, 48.88071148512446], [2.36945806179294, 48.88083005690778], [2.369553179369985, 48.88094138224759], [2.369655212922808, 48.88105995473738], [2.369750331352061, 48.881171278998075], [2.369852365804276, 48.88128985129507], [2.369947485074857, 48.88140117537586], [2.370049520426375, 48.88151974748007], [2.370144640538193, 48.88163107138099], [2.3702163276897013, 48.8816313414836], [2.370243563471969, 48.881595407262495], [2.370243375289125, 48.88146032072749], [2.370245894090662, 48.881332878325665], [2.370245705902824, 48.881197791758424], [2.37024822468596, 48.88107034932617], [2.370248036492923, 48.88093526272672], [2.370250555268635, 48.88080781936472], [2.370250367070502, 48.88067273273308], [2.370252885816837, 48.880545290239915], [2.370255403187458, 48.88041784772478], [2.370255216341646, 48.88028276105247], [2.370257735068127, 48.88015531761483], [2.370257546853729, 48.88002023090317], [2.37026006555104, 48.87989278833432], [2.370259877331546, 48.87975770159044], [2.370262396010356, 48.8796302589912], [2.370262207785868, 48.87949517221513], [2.370264726457153, 48.87936772868616], [2.370264538227467, 48.87923264187791], [2.370267056869479, 48.87910519921782], [2.370266868634799, 48.87897011237736], [2.370269387258413, 48.87884266968684], [2.370269200381979, 48.8787075828214], [2.370271717634727, 48.87858013919402], [2.370271530753191, 48.878445052296385], [2.370274047976573, 48.87831760953785], [2.370273861090035, 48.87818252260806], [2.370275239559288, 48.87811272191189], [2.370281257939034, 48.878056005718555], [2.370276816194544, 48.87805382125903], [2.370277954927251, 48.877996179163134], [2.370280721624723, 48.87799086427452], [2.370407354440146, 48.87788065256355], [2.370537270545194, 48.87777490697111], [2.370663900929341, 48.87766469496004], [2.370793815985787, 48.877558948169174], [2.370920445301892, 48.877448735865116], [2.371050359287914, 48.87734298967441], [2.371176987536089, 48.8772327770774], [2.371306900462564, 48.877127030587594], [2.371433527653674, 48.87701681679839], [2.371563439520609, 48.876911070009434], [2.371690066996349, 48.87680085683373], [2.371819976440365, 48.87669510973854], [2.371946602859046, 48.87658489537061], [2.37207651124355, 48.87647914797631], [2.372090537755092, 48.8764659698754], [2.372078181617436, 48.8764288102667], [2.372204805478921, 48.876318595591876], [2.372328512467995, 48.87621120377706], [2.3723269854799423, 48.876205428345614], [2.37228255001847, 48.87618581921019], [2.372079172922821, 48.87618215261798], [2.371878702007042, 48.87617854409705], [2.371675324968235, 48.87617487681875], [2.371474855482675, 48.876171266729386], [2.371271478500621, 48.87616759876491], [2.371071007696833, 48.87616398889138], [2.370867630771744, 48.876160320240835], [2.370667160023964, 48.87615670969096], [2.370463783155749, 48.8761530403543], [2.370263313827365, 48.876149429135275], [2.370059935663432, 48.87614575820606], [2.369859466391082, 48.87614214631071], [2.369847895258257, 48.876137494302114], [2.369784367753824, 48.87606138471478], [2.369733363217341, 48.875984742964725], [2.36972059971534, 48.87597936609733], [2.369519514474697, 48.875982090688986], [2.369323137611046, 48.875985453094536], [2.369122050962743, 48.875988177011344], [2.368925675413861, 48.87599153877202], [2.36872458872128, 48.87599426202118], [2.368528211760433, 48.875997623122686], [2.368516732617074, 48.8759938303331], [2.368403806580043, 48.875888657325596], [2.36828834746958, 48.8757845185561], [2.3681754223474343, 48.875679345313195], [2.368059964157703, 48.87557520630363], [2.367947039950534, 48.87547003282533], [2.367831581318065, 48.87536589356857], [2.367718659400138, 48.875260718962785], [2.367603201688186, 48.875156579465994], [2.3674902806742972, 48.87505140552412], [2.367374823883052, 48.87494726578726], [2.367261902420767, 48.8748420916028], [2.367146447913359, 48.87473795163317], [2.367033527366117, 48.87463277721333], [2.366918073779292, 48.87452863700367], [2.366894717334117, 48.874506882665116], [2.366889524575493, 48.87449361248934], [2.366878186338262, 48.87449015393371], [2.3667886232172, 48.87440673270413], [2.366680654830799, 48.87430804133652], [2.366567737519358, 48.874202866443525], [2.366459768610854, 48.87410417485119], [2.366455298301115, 48.874104043271494], [2.366433353339834, 48.87411647465441], [2.366382490768595, 48.87423191395507], [2.366323059464237, 48.87436670562951], [2.366272196404299, 48.87448214485715], [2.366212764528889, 48.87461693644625], [2.366161902343482, 48.87473237560801], [2.366102468533879, 48.87486716710458], [2.366051605859663, 48.87498260619334], [2.365992171478987, 48.87511739760458], [2.365941308315956, 48.87523283662028], [2.365881873364402, 48.87536762794616], [2.36583100971255, 48.87548306688884], [2.36583507598315, 48.875492316502395], [2.365978375265649, 48.87557581073991], [2.366120920470699, 48.87565901481582], [2.366264220670054, 48.87574250869855], [2.366406766798895, 48.875825711522225], [2.36655006791511, 48.87590920505018], [2.366692614956801, 48.875992407520876], [2.366835916989777, 48.876075900694026], [2.366978464944424, 48.87615910281179], [2.367121767894269, 48.876242595630146], [2.367264316750851, 48.8763257982942], [2.367407620617572, 48.87640929075772], [2.367550170397946, 48.87649249216957], [2.367693475181546, 48.87657598427829], [2.367836025874791, 48.876659185337175], [2.367851148840063, 48.876672591519885], [2.367857841738199, 48.876672728487314], [2.367969092017465, 48.876627850103276], [2.368108128326935, 48.87657192248517], [2.368262949086828, 48.87650946790236], [2.368401984764735, 48.876453539936975], [2.368556803467984, 48.87639108406097], [2.368695839877605, 48.876335155755456], [2.368714540516896, 48.87633811155725], [2.368815885595014, 48.8764464400748], [2.368913848311466, 48.87655151036435], [2.369015194219359, 48.87665983869223], [2.369113156375868, 48.876764908791124], [2.369214503113642, 48.876873236929306], [2.369312466073601, 48.876978306844805], [2.369410430803, 48.877083375778035], [2.369511778767886, 48.877191704532514], [2.369609742937447, 48.87729677327514], [2.369711091732037, 48.87740510183991], [2.369809056705066, 48.877510170399056], [2.369910407692886, 48.87761849878129], [2.369905013849619, 48.877631227422185], [2.369789108514452, 48.877670332729636], [2.369683443216668, 48.8777077093643], [2.369676740076611, 48.877713251729965], [2.369634506287113, 48.877814635019234], [2.369592982189241, 48.87791133020606], [2.369551456584745, 48.87800802446353], [2.36950922230145, 48.878109408580755], [2.369509593110716, 48.87811493243266], [2.369568630507061, 48.87821938599675], [2.369629269449555, 48.87832773576558], [2.369688305963808, 48.8784321892433], [2.36974894540294, 48.87854053893056], [2.36974526251906, 48.878550346539136], [2.369622814455686, 48.878619402735715], [2.369476351044276, 48.87870610581168], [2.369353902247251, 48.87877516262268], [2.369207439313586, 48.87886186536461], [2.369084989793894, 48.878930921890834], [2.368994663677617, 48.87898439222442], [2.368988035602227, 48.8789855201241], [2.3689733089805483, 48.878997503434015], [2.368917171238702, 48.879030736389964], [2.368752258799386, 48.87912404761837], [2.368605793872085, 48.879210750496085], [2.368440881657331, 48.87930406218676], [2.368294415716318, 48.87939076377006], [2.368250905594311, 48.87941538269322], [2.368243378204167, 48.87942960546311]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 38, "zemmour_eric": 51.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-16", "circ_bv": "05", "num_bureau": 16, "roussel_fabien": 19.0, "nb_emargement": 1110.0, "nb_procuration": 68.0, "nb_vote_blanc": 7.0, "jadot_yannick": 112.0, "le_pen_marine": 43.0, "nb_exprime": 1103.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1447.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1112, "quartier_bv": "40", "geo_point_2d": [48.877412000815816, 2.3691330179130046], "melenchon_jean_luc": 468.0, "poutou_philippe": 4.0, "macron_emmanuel": 320.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295365715238077, 48.85451450961388], [2.295385617799251, 48.854524461298794], [2.295419930352932, 48.85455002075791], [2.295457584155034, 48.8545782439934], [2.295527436210305, 48.85460223374202], [2.295536186357124, 48.85459514705088], [2.295589133583054, 48.85456124267228], [2.295733507294441, 48.85446955212741], [2.295877328555788, 48.85437745613959], [2.296021699888137, 48.85428576522379], [2.296165520132848, 48.854193668874366], [2.296309891799508, 48.854101978503024], [2.296453711027489, 48.854009881791974], [2.29659808032718, 48.85391819015043], [2.296741898538642, 48.85382609307779], [2.296886268184794, 48.85373440108141], [2.297030085379538, 48.85364230364714], [2.297174452634466, 48.85355061217917], [2.297318268812706, 48.85345851438331], [2.297462636426232, 48.8533668216612], [2.2976064515878702, 48.853274723503745], [2.297750816810205, 48.85318303131009], [2.29789463095515, 48.85309093279105], [2.298038996536079, 48.852999239343255], [2.298182809664535, 48.85290714046262], [2.298327172866417, 48.852815446643966], [2.298470986340945, 48.85272334740976], [2.298615348514442, 48.852631654127585], [2.298759159609747, 48.85253955452379], [2.298903520779082, 48.852447859979485], [2.299047332220463, 48.85235576002211], [2.299191692361436, 48.85226406601425], [2.29928465130595, 48.85220453141208], [2.299294755211049, 48.852195212958115], [2.299249084236626, 48.8521620765825], [2.299074576519571, 48.85211037639283], [2.298900666579545, 48.852059042788355], [2.298726159553119, 48.852007342085734], [2.298552248937559, 48.85195600796215], [2.29837774260197, 48.85190430674662], [2.298203834036145, 48.851852972119836], [2.2980293283911912, 48.851801270391356], [2.297855419149843, 48.85174993524543], [2.29768091419563, 48.851698233004015], [2.297507007004015, 48.851646897354975], [2.297490419498612, 48.851637551840156], [2.297473140315158, 48.851642210701094], [2.297381030799663, 48.85171234878281], [2.297233576423727, 48.85182468079559], [2.297119134727041, 48.85191182390926], [2.296971679221981, 48.85202415557913], [2.2968572352865, 48.85211129841869], [2.296742790980386, 48.85219844024266], [2.296595335203594, 48.85231077232709], [2.296572412103952, 48.85230827404628], [2.296506863965215, 48.85220199711233], [2.296436760348183, 48.85208733019294], [2.296420467822785, 48.85208460465987], [2.296402067290109, 48.85209084144463], [2.296381960095524, 48.8521655364842], [2.296365033309789, 48.852221486868196], [2.296361292834471, 48.85222609387809], [2.296227709768937, 48.85231400492708], [2.296093043359792, 48.85240288345628], [2.295959459388498, 48.85249079419184], [2.295824792064935, 48.85257967240498], [2.295691207187876, 48.85266758282706], [2.295556538949991, 48.85275646072417], [2.295422954529918, 48.85284437084083], [2.295288285377503, 48.85293324842193], [2.295154698688897, 48.85302115821708], [2.295020028622047, 48.853110035482125], [2.294886441027658, 48.853197944963824], [2.294751770046468, 48.8532868219128], [2.294618181546288, 48.85337473108101], [2.29448351101332, 48.85346360772196], [2.294349921607346, 48.85355151657671], [2.294215248797153, 48.85364039289358], [2.294214687985103, 48.85365271800176], [2.2943372808936022, 48.853744043399786], [2.29448034238931, 48.853850522139005], [2.294602937591459, 48.853941847256586], [2.2947460001609272, 48.854048326558505], [2.294868594943543, 48.85413965048034], [2.29501165859895, 48.85424612944575], [2.295134254312546, 48.85433745307914], [2.295277319053902, 48.85444393170795], [2.295365604527043, 48.85450969559575], [2.295365715238077, 48.85451450961388]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 170, "zemmour_eric": 130.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "15-20", "circ_bv": "12", "num_bureau": 20, "roussel_fabien": 13.0, "nb_emargement": 1191.0, "nb_procuration": 78.0, "nb_vote_blanc": 5.0, "jadot_yannick": 71.0, "le_pen_marine": 54.0, "nb_exprime": 1183.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1492.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1191, "quartier_bv": "59", "geo_point_2d": [48.85304229253157, 2.2966158342036653], "melenchon_jean_luc": 162.0, "poutou_philippe": 1.0, "macron_emmanuel": 544.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389678295387445, 48.838575333152946], [2.3896118716682633, 48.83854985075312], [2.389448680780506, 48.83848694482212], [2.389283165902584, 48.83842194927042], [2.389119974449476, 48.838359042876796], [2.388954460387579, 48.838294046862835], [2.388791271104552, 48.83823113912128], [2.3886257578481302, 48.83816614354433], [2.388462567999968, 48.838103235340185], [2.388297055559565, 48.83803823930102], [2.388259050152627, 48.8380332576334], [2.388244998580529, 48.83804585599505], [2.388129421579147, 48.83813845232964], [2.38801420217204, 48.83823049546972], [2.387898624351244, 48.838323091566025], [2.3877834041284363, 48.838415134468605], [2.387667825488219, 48.83850773032661], [2.387552604449704, 48.83859977299166], [2.387437383004159, 48.83869181553814], [2.387321803146402, 48.83878441013957], [2.387206580885141, 48.83887645244852], [2.387091001559681, 48.838969047718], [2.386975777120393, 48.83906108978242], [2.3868601969754932, 48.83915368481357], [2.386830770201563, 48.83917535429965], [2.386831213196435, 48.839180665504834], [2.3868315320967453, 48.83918448043473], [2.386865704745208, 48.83920458995768], [2.387028993432847, 48.83927903599389], [2.387200680442375, 48.83935908198083], [2.387363971454761, 48.83943352755647], [2.387535659487704, 48.83951357305153], [2.387539170480782, 48.8395258736113], [2.38741381537987, 48.839651200823546], [2.387290855517235, 48.83977427556962], [2.387165499211264, 48.839899603393086], [2.38704253818686, 48.84002267695723], [2.387045312303565, 48.84003460321357], [2.387090242784287, 48.8400587420552], [2.387129961823845, 48.84007939973226], [2.387132870777343, 48.84009144809045], [2.38701698552874, 48.84020633949827], [2.386901320034966, 48.8403208065131], [2.386785433766008, 48.84043569767299], [2.386669767254829, 48.840550164440444], [2.386553878613641, 48.84066505444617], [2.386438212447398, 48.84077952097314], [2.386322322775244, 48.84089441163023], [2.386206654229019, 48.84100887790288], [2.386090764898931, 48.84112376831903], [2.385975095335166, 48.84123823434423], [2.385859204995274, 48.841353123613146], [2.38574353441396, 48.84146758939099], [2.3856276416805873, 48.84158247930426], [2.385511970081708, 48.841696944834624], [2.385396077690384, 48.841811834507006], [2.38528040507393, 48.84192629978994], [2.385164511672782, 48.842041188315065], [2.385048838038744, 48.84215565335059], [2.385051111619826, 48.84216736031338], [2.385214154821419, 48.8422631869131], [2.385384634989355, 48.84235847409973], [2.385547678039619, 48.8424543002215], [2.3857181608155402, 48.84254958602418], [2.385721205098951, 48.84256088771822], [2.385629506627089, 48.84266754042161], [2.385540382287974, 48.84277194437953], [2.385448683074855, 48.84287859692413], [2.385359558012604, 48.84298300072763], [2.385267858058019, 48.84308965311346], [2.385178733635143, 48.84319405676948], [2.38518097601237, 48.84320483452032], [2.38522435965303, 48.8432334331508], [2.385247900388071, 48.843247915986915], [2.385277546851168, 48.8432699074629], [2.385294548212197, 48.8432665170027], [2.385328567751311, 48.84324028662506], [2.385329396373332, 48.84323957859032], [2.385431103764056, 48.84313507488742], [2.3855190400468063, 48.84305176660037], [2.3855371860379613, 48.84304200642837], [2.385540818527772, 48.843035314068615], [2.385624210958928, 48.84294940659504], [2.385725918565371, 48.84284490172199], [2.385809310376162, 48.842758995004026], [2.38588947869685, 48.84267662144644], [2.385916576686025, 48.84265863666047], [2.385917363576595, 48.84265557118626], [2.385938902099085, 48.842633439690154], [2.38604455177535, 48.842524070336694], [2.386146256346351, 48.84241956505946], [2.386247960509595, 48.84231505968597], [2.386353608902434, 48.84220568912905], [2.386455312232465, 48.84210118355926], [2.386560961108656, 48.84199181370457], [2.386670150386705, 48.84187425703933], [2.38677579698961, 48.84176488696567], [2.386881444522087, 48.84165551589571], [2.386990632362186, 48.84153795980181], [2.387096278983868, 48.84142858851987], [2.387205465864124, 48.84131103220603], [2.38731111157502, 48.841201660712144], [2.387420297495344, 48.841084104178314], [2.387525940922438, 48.8409747333648], [2.38760320849195, 48.84089154237294], [2.387635127255867, 48.840857175718675], [2.387663930169626, 48.840855491161626], [2.387655918599541, 48.84082638101584], [2.387755679099091, 48.84071248216188], [2.387864864364977, 48.84059492427844], [2.387964623964816, 48.84048102522665], [2.388073806901574, 48.84036346802051], [2.388173565612477, 48.840249567871524], [2.388271500192095, 48.840139556133074], [2.388371258031877, 48.840025656695744], [2.388469190410984, 48.83991564476646], [2.388568947400766, 48.839801744242074], [2.3886668789420122, 48.839691732128905], [2.388764811421636, 48.83958172083096], [2.388864565763999, 48.839467820019074], [2.388962497416216, 48.83935780763796], [2.389062252249824, 48.839243907544635], [2.3891601817017882, 48.839133894972704], [2.389259935685418, 48.8390199937924], [2.389282539520216, 48.83899460059347], [2.389289675742523, 48.83899149285755], [2.389300579708736, 48.838973572078295], [2.38937590441766, 48.838888953407725], [2.389477672155707, 48.838789042890305], [2.389575599865742, 48.838679030832765], [2.389677366811048, 48.83857912012669], [2.389678295387445, 48.838575333152946]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 60, "zemmour_eric": 72.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "12-49", "circ_bv": "08", "num_bureau": 49, "roussel_fabien": 26.0, "nb_emargement": 1257.0, "nb_procuration": 71.0, "nb_vote_blanc": 14.0, "jadot_yannick": 104.0, "le_pen_marine": 70.0, "nb_exprime": 1240.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1604.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "47", "geo_point_2d": [48.840207469813606, 2.387390909366335], "melenchon_jean_luc": 403.0, "poutou_philippe": 14.0, "macron_emmanuel": 429.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.30228563100839, 48.89126301723763], [2.302245539576937, 48.89123338820324], [2.302080023799299, 48.891156941241384], [2.301914474923327, 48.891080659326015], [2.301748960117154, 48.89100421189594], [2.30158341084804, 48.89092792950432], [2.301417897025597, 48.890851480706715], [2.301252350078784, 48.890775198754], [2.301086837227807, 48.890698749488195], [2.300921289887849, 48.89062246705921], [2.300755779372281, 48.89054601733313], [2.300590233002926, 48.89046973443585], [2.300424722095074, 48.89039328423358], [2.300259178060058, 48.89031700087595], [2.300093668123865, 48.89024055020549], [2.299928123695708, 48.890164266371606], [2.299762614731073, 48.89008781523292], [2.299597072637141, 48.89001153093873], [2.299431564644057, 48.88993507933183], [2.299266022157087, 48.88985879456136], [2.299100515135557, 48.88978234248627], [2.298934974995007, 48.88970605635627], [2.298925794789138, 48.88969990965068], [2.298904969379017, 48.889702854430936], [2.298885634452278, 48.88971918006328], [2.298875259517741, 48.88973298877246], [2.298855285718744, 48.88973639449055], [2.298698226892647, 48.889664817115104], [2.298543834725662, 48.88959445485365], [2.298386776743714, 48.889522877959685], [2.298232385418452, 48.88945251528758], [2.29807532830488, 48.88938093707661], [2.297920937821344, 48.88931057399384], [2.297763881551905, 48.88923899626436], [2.2976094919100882, 48.889168632770925], [2.297455104049234, 48.88909826908192], [2.297298047708937, 48.88902668982035], [2.29714366067766, 48.88895632661992], [2.296986606557318, 48.88888474694861], [2.29683221901619, 48.888814382430326], [2.296675165752103, 48.88874280234129], [2.296669824002412, 48.88873289451814], [2.296716576502665, 48.88862681970508], [2.296763611544574, 48.88852010709996], [2.296810365026408, 48.88841403223769], [2.296857398320219, 48.88830731956709], [2.296904151419944, 48.88820124464764], [2.296951184317214, 48.88809453281874], [2.296942668597799, 48.888083551450386], [2.29675733930785, 48.88803997782038], [2.29656381290298, 48.88799447524225], [2.296378484247091, 48.88795090102232], [2.296184958504341, 48.8879053978282], [2.2961814583735762, 48.88789980140128], [2.296150674828501, 48.88789733704817], [2.295977803378084, 48.887856690803495], [2.295804548840689, 48.88781595391862], [2.295631679294303, 48.887775307179226], [2.29545842529847, 48.887734569790545], [2.295285556292548, 48.8876939225484], [2.295112302826008, 48.88765318555516], [2.294939434360448, 48.887612537810334], [2.2947661814477502, 48.887571799413976], [2.294693431976497, 48.8875686935937], [2.294692102169975, 48.88757081897492], [2.294581782582025, 48.88768037047009], [2.294474165895147, 48.887790395541515], [2.294363845371311, 48.88789994771323], [2.294256226406364, 48.88800997255874], [2.294145904970998, 48.88811952360851], [2.294038285091846, 48.88822954823616], [2.293927962720562, 48.888339099962494], [2.293820341927089, 48.88844912437225], [2.293710018644264, 48.888558674976615], [2.293602396936363, 48.88866869916848], [2.293492072717591, 48.888778250449384], [2.293384451459151, 48.88888827443142], [2.293274126328829, 48.888997824590355], [2.293166502792244, 48.889107848346455], [2.293056176725948, 48.88921739918193], [2.292948552275107, 48.88932742272009], [2.292838225297245, 48.88943697243362], [2.292730599932035, 48.88954699575388], [2.292716196418125, 48.889566502583], [2.29271976310247, 48.88957420842657], [2.29286119075276, 48.88959088542291], [2.293051986245347, 48.88961282882272], [2.293193663284705, 48.889629534776226], [2.2933844590590198, 48.88965147764547], [2.293526134946485, 48.88966818319698], [2.293608287371053, 48.88967786981391], [2.293799083509398, 48.889699811122306], [2.293944407459123, 48.889716946886985], [2.294135203882288, 48.889738887659], [2.2942729587562543, 48.88975512943631], [2.294282166106965, 48.889756215233305], [2.294321304861079, 48.88976082923231], [2.294403201582104, 48.88977048591518], [2.294593998382584, 48.889792426854385], [2.294632207185589, 48.88979693184997], [2.294809718026878, 48.889817859774986], [2.29500051517224, 48.889839800065545], [2.295053349388611, 48.889846028714416], [2.295057108857629, 48.88984647263288], [2.295063618851578, 48.88984723941546], [2.295069768135976, 48.889849062585135], [2.295070039110789, 48.88984909385828], [2.295175656612706, 48.88990450904888], [2.295336804356503, 48.88998907355498], [2.29544242242626, 48.89004448850319], [2.295603572388085, 48.8901290535468], [2.29579807049871, 48.89023109959706], [2.295959220251944, 48.890315664139635], [2.295999208887272, 48.89033664407704], [2.296024536789409, 48.89034993308263], [2.296185688641962, 48.890434497319255], [2.2963722451376958, 48.89053237499107], [2.296533396768111, 48.89061693783841], [2.296669327853195, 48.89068825360144], [2.2968052579590292, 48.89075956829822], [2.296966412347346, 48.890844131452596], [2.297102343267007, 48.89091544580203], [2.297263498620257, 48.891000008544594], [2.297380982702733, 48.89106164454975], [2.2975421375972482, 48.89114620689802], [2.297601670817824, 48.8911774399572], [2.297722797321463, 48.89124098556734], [2.297883954689942, 48.891325547449775], [2.298005081882632, 48.8913890927658], [2.298005436697522, 48.891389279208134], [2.2980057915246412, 48.8913894647512], [2.2980348474039403, 48.891404708723044], [2.298196005798072, 48.891489269273634], [2.298248641109298, 48.8915168831434], [2.298279322281936, 48.891532978349034], [2.298297992370043, 48.89154277261886], [2.298329241007969, 48.891559166116025], [2.2983495281100073, 48.89156980982497], [2.29851068751409, 48.8916543708386], [2.298544635375698, 48.891672180342965], [2.298571569414703, 48.89168631007275], [2.298598848801925, 48.89170062168466], [2.298628923394394, 48.89171478418574], [2.298659283974067, 48.891729080555166], [2.298675200166088, 48.89173657614045], [2.2988399221055262, 48.89181289993035], [2.299013164723125, 48.891894480471976], [2.299177886281634, 48.89197080467724], [2.299351131317832, 48.89205238472618], [2.299515853883506, 48.89212870755636], [2.29964954591686, 48.8921916627348], [2.299814270712182, 48.89226798605204], [2.299979192147684, 48.89234564578477], [2.300143916561673, 48.89242196773054], [2.300310282390092, 48.89250030543093], [2.300475007766722, 48.89257662780977], [2.300604268899953, 48.892637493843026], [2.300639837242898, 48.89263660529735], [2.300645042510888, 48.89263310134299], [2.300763853257678, 48.89254422131297], [2.300889110783273, 48.892449642890796], [2.301007922046519, 48.89236076351098], [2.301133178687326, 48.89226618481772], [2.301251989127386, 48.89217730428157], [2.301377244883614, 48.892082725317216], [2.301496054476353, 48.89199384542332], [2.301621309347809, 48.891899266187856], [2.3016211774820112, 48.89188733764061], [2.301595891985081, 48.89186879442851], [2.301570944818302, 48.89185095735731], [2.301570359088561, 48.89183921052431], [2.301690380103683, 48.89174119042951], [2.3018286622078348, 48.891631306630956], [2.301948682269511, 48.89153328535942], [2.302086961912626, 48.891423401233816], [2.302206981008804, 48.891325379684815], [2.3022710784, 48.891274443838775], [2.30228563100839, 48.89126301723763]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 57, "zemmour_eric": 102.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "17-39", "circ_bv": "04", "num_bureau": 39, "roussel_fabien": 21.0, "nb_emargement": 1044.0, "nb_procuration": 17.0, "nb_vote_blanc": 12.0, "jadot_yannick": 20.0, "le_pen_marine": 127.0, "nb_exprime": 1023.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 7, "nb_inscrit": 1445.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1044, "quartier_bv": "66", "geo_point_2d": [48.890062544050565, 2.297516661271161], "melenchon_jean_luc": 417.0, "poutou_philippe": 11.0, "macron_emmanuel": 212.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.321409090208958, 48.88459245288568], [2.32140498240996, 48.88460106678178], [2.321257180424838, 48.88469204261592], [2.321109435650521, 48.88478298351353], [2.320961632644476, 48.884873958068525], [2.3208138868379082, 48.88496489858639], [2.320666084162716, 48.885055872769236], [2.32051833596039, 48.885146812899634], [2.320370532240812, 48.885237787601845], [2.320222783017853, 48.885328726453224], [2.320074978265716, 48.88541970077556], [2.319927228010485, 48.88551063924714], [2.31977942222568, 48.885601613189536], [2.319631670938173, 48.88569255128137], [2.319627116842173, 48.885701685984365], [2.319641611194029, 48.88571152698366], [2.319775214319641, 48.885789801188636], [2.319906127409215, 48.88586649781993], [2.3200370395208942, 48.885943194295024], [2.320170643846904, 48.88602146714299], [2.320301556737763, 48.886098163318024], [2.320435161858974, 48.88617643585981], [2.320566075529016, 48.88625313173486], [2.3206996814337, 48.886331404869665], [2.32071802108211, 48.886331267897], [2.320869358102258, 48.88623850343123], [2.321020108960604, 48.88614609787547], [2.321171444904366, 48.886053333012235], [2.321322194702318, 48.885960926161296], [2.321473529569799, 48.88586816090064], [2.321624278295635, 48.88577575365378], [2.321638371144195, 48.88577185126538], [2.321640177280734, 48.885759871626185], [2.321656680444296, 48.88566944932164], [2.321673447787084, 48.88557758597832], [2.321689950835205, 48.8854871636542], [2.321706718048894, 48.88539530119022], [2.321709551730441, 48.885390804402235], [2.321837738588819, 48.885283678296936], [2.321964842657504, 48.88517745603786], [2.322093028465531, 48.8850703296385], [2.322220131492735, 48.8849641070878], [2.322347232626107, 48.88485788528349], [2.322475418236051, 48.88475075755203], [2.322602518327968, 48.884644535456104], [2.322730701524088, 48.88453740742281], [2.322857801938149, 48.884431185043], [2.322985984083948, 48.88432405671563], [2.322993824738715, 48.884320835578755], [2.32322496549617, 48.884288081069194], [2.323467262131011, 48.884253746073234], [2.3234786542748243, 48.88425552007385], [2.323632240348331, 48.8843366873083], [2.323779455953214, 48.884414907221874], [2.323926672000246, 48.88449312694892], [2.324080259472829, 48.884574293591115], [2.324227475058672, 48.88465251292925], [2.324381063470284, 48.884733679173806], [2.324528281333792, 48.88481189723918], [2.3246818706842323, 48.88489306308613], [2.324829089438485, 48.88497128166955], [2.324982679727864, 48.885052447118866], [2.325129899384634, 48.885130665321064], [2.3252590259060613, 48.88519890222668], [2.325267228328146, 48.885206595458], [2.325280599020931, 48.88520777068805], [2.3253050637374493, 48.885220698829585], [2.325327334313443, 48.88523246795583], [2.325346512243513, 48.885231066044774], [2.325470046714596, 48.88512918533705], [2.325596540113915, 48.88502486509022], [2.325720074970278, 48.8849229841131], [2.32584656600425, 48.88481866357487], [2.325970099882296, 48.884716782320716], [2.326096589914638, 48.88461246149877], [2.326220122814375, 48.884510579967554], [2.326346611833258, 48.884406259761185], [2.326470143766332, 48.88430437705361], [2.326596631783607, 48.88420005656352], [2.326720162738285, 48.88409817357892], [2.3268466497538602, 48.88399385280515], [2.326970179718732, 48.88389197044277], [2.327096665744137, 48.88378764848606], [2.327220194730739, 48.883685765846586], [2.327346679754561, 48.88358144360621], [2.327392281114434, 48.88358715694122], [2.32741082020501, 48.883558831420075], [2.327435317309578, 48.883521403054964], [2.327427150498351, 48.88351327128687], [2.327297372532305, 48.88348807496117], [2.327202902833591, 48.883470413660056], [2.327160532976679, 48.88345375825674], [2.327140995332783, 48.88345846437843], [2.327119584434673, 48.883455436508314], [2.326978033115954, 48.88342897395621], [2.326976579030378, 48.883413392953805], [2.326929592877864, 48.88341882698458], [2.326881260718766, 48.88340875974197], [2.326872377519068, 48.88340911269954], [2.326854180596101, 48.883449242896035], [2.326699525037844, 48.883534352973555], [2.326549818757409, 48.8836167396314], [2.326395162204193, 48.883701849302774], [2.326245453597265, 48.88378423555985], [2.326090796049183, 48.8838693448251], [2.325941087842795, 48.88395173069673], [2.325791379162618, 48.88403411637495], [2.32563672013042, 48.88411922503436], [2.325623488503517, 48.884120810672485], [2.325449485665581, 48.88408073382986], [2.325275443668966, 48.88404064751741], [2.3251014413667352, 48.88400057016608], [2.324927399905949, 48.883960483344794], [2.324753398139427, 48.88392040548472], [2.324579357214474, 48.88388031815456], [2.324405355983663, 48.883840239785805], [2.324231315594548, 48.88380015194681], [2.324057314899556, 48.88376007306928], [2.323883275046283, 48.88371998472149], [2.323709276250479, 48.88367990534296], [2.323535235569483, 48.88363981647861], [2.323361237309403, 48.88359973659135], [2.323187198527824, 48.8835596472259], [2.323173630399737, 48.88356142314852], [2.323028154459763, 48.883646912257156], [2.322882249295239, 48.88373265416793], [2.322736772398592, 48.883818142909234], [2.322590864910996, 48.88390388444384], [2.322445388421241, 48.883989372825546], [2.322299479974133, 48.8840751139917], [2.322154002527699, 48.88416060200604], [2.322008093109366, 48.884246343703005], [2.321862614717956, 48.88433183045069], [2.321716704340094, 48.884417571779245], [2.321571223616695, 48.88450305905109], [2.321425312291013, 48.88458879911191], [2.321409090208958, 48.88459245288568]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 82, "zemmour_eric": 90.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "17-1", "circ_bv": "03", "num_bureau": 1, "roussel_fabien": 14.0, "nb_emargement": 1201.0, "nb_procuration": 82.0, "nb_vote_blanc": 11.0, "jadot_yannick": 91.0, "le_pen_marine": 46.0, "nb_exprime": 1181.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1463.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1201, "quartier_bv": "67", "geo_point_2d": [48.88466983420408, 2.323292875594571], "melenchon_jean_luc": 208.0, "poutou_philippe": 4.0, "macron_emmanuel": 593.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.388259050152627, 48.8380332576334], [2.388253637021455, 48.83801713495152], [2.388251485567761, 48.83789270607885], [2.3882498901182743, 48.837767686456125], [2.388247738683821, 48.837643257555605], [2.388246143250957, 48.83751823790494], [2.388243993198111, 48.83739380898357], [2.388242397792419, 48.83726878840564], [2.3882402463858883, 48.837144360348766], [2.388238650996818, 48.83701933974289], [2.388236499620082, 48.836894910758886], [2.38823490423708, 48.83676989102438], [2.388229581025343, 48.83676283437057], [2.388063534298572, 48.836678631954804], [2.387902033562245, 48.836594968797584], [2.387735987899325, 48.83651076591443], [2.387574488219283, 48.836427101403146], [2.387408443620315, 48.83634289805273], [2.387246946337861, 48.8362592339929], [2.3870809014404, 48.836175030168164], [2.386919405214331, 48.83609136475424], [2.386753361380614, 48.83600716046222], [2.3865918661897743, 48.83592349549284], [2.386580335569537, 48.83590248925577], [2.386561180337598, 48.835902149988875], [2.386520361486408, 48.83588100252919], [2.386399685791141, 48.83581848385283], [2.386248040191866, 48.83573680346041], [2.386086545297965, 48.835653136882236], [2.385934902032611, 48.835571456087735], [2.385773408153686, 48.83548778907442], [2.385621765860026, 48.83540610787087], [2.385460272985367, 48.835322441321736], [2.385308630311691, 48.8352407588028], [2.385156989475667, 48.83515907609263], [2.384995498112219, 48.83507540889755], [2.384843858247883, 48.83499372577837], [2.384682367899289, 48.83491005814812], [2.384623690919496, 48.83487845115551], [2.384612606258869, 48.83487872509257], [2.3845828269887, 48.83492818358728], [2.38445342851707, 48.83502337482842], [2.384323084807531, 48.83511896667234], [2.384193685387981, 48.835214157616214], [2.384063340725065, 48.8353097491608], [2.383933941719901, 48.835404939814524], [2.383803594741388, 48.83550053105269], [2.383674194788296, 48.83559572140919], [2.383543846856284, 48.835691312348025], [2.383414445955254, 48.83578650240728], [2.3832840970698372, 48.83588209304673], [2.383154695220864, 48.835977282808756], [2.383024345382135, 48.83607287314886], [2.382894942585209, 48.8361680626136], [2.382764593155294, 48.83626365266139], [2.382635188048073, 48.83635884182189], [2.382504837664734, 48.83645443157029], [2.382505565282163, 48.83646695897936], [2.382647148398889, 48.83655601640266], [2.382777768339445, 48.83663705230622], [2.382919352383243, 48.83672610939378], [2.3830499718109612, 48.83680714498072], [2.383180591644709, 48.83688818041915], [2.383322178421213, 48.83697723701695], [2.383452799115011, 48.83705827124649], [2.383594386818603, 48.83714732750851], [2.383611997742268, 48.83714799295403], [2.383652960620819, 48.83712756452758], [2.383691715848982, 48.83711017445558], [2.383709011215305, 48.837111255565894], [2.383850147039713, 48.837204472345455], [2.383989085140955, 48.83729716679138], [2.384130221969612, 48.83739038322501], [2.384269161064461, 48.837483077330184], [2.384410298897377, 48.83757629341783], [2.384549240348111, 48.837668987189325], [2.384690379185395, 48.83776220293099], [2.384829320267383, 48.83785489635471], [2.384970460098225, 48.8379481126497], [2.385109402184554, 48.838040804833426], [2.385250544382065, 48.838134020789425], [2.385389487451424, 48.83822671353166], [2.385530629301447, 48.838319928235414], [2.385669573364349, 48.838412620636916], [2.385810716218767, 48.838505834994685], [2.385949662637715, 48.83859852706242], [2.386090806496334, 48.83869174107419], [2.3862297525466483, 48.83878443279418], [2.386370897398988, 48.838877647359276], [2.386509844453554, 48.838970337839186], [2.386650990310212, 48.83906355205829], [2.386789939710176, 48.83915624310372], [2.386830770201563, 48.83917535429965], [2.3868601969754932, 48.83915368481357], [2.386975777120393, 48.83906108978242], [2.387091001559681, 48.838969047718], [2.387206580885141, 48.83887645244852], [2.387321803146402, 48.83878441013957], [2.387437383004159, 48.83869181553814], [2.387552604449704, 48.83859977299166], [2.387667825488219, 48.83850773032661], [2.3877834041284363, 48.838415134468605], [2.387898624351244, 48.838323091566025], [2.38801420217204, 48.83823049546972], [2.388129421579147, 48.83813845232964], [2.388244998580529, 48.83804585599505], [2.388259050152627, 48.8380332576334]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 58, "zemmour_eric": 115.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-61", "circ_bv": "08", "num_bureau": 61, "roussel_fabien": 31.0, "nb_emargement": 1236.0, "nb_procuration": 54.0, "nb_vote_blanc": 22.0, "jadot_yannick": 81.0, "le_pen_marine": 99.0, "nb_exprime": 1210.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1489.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1236, "quartier_bv": "47", "geo_point_2d": [48.83695937288879, 2.3857283954995747], "melenchon_jean_luc": 388.0, "poutou_philippe": 10.0, "macron_emmanuel": 360.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.270577155335245, 48.85697412474313], [2.270564911393163, 48.8569924653814], [2.270518389420055, 48.85707474383317], [2.270434333354473, 48.85722745425025], [2.270387812328221, 48.85730973264217], [2.270372443025189, 48.85731541641135], [2.270193632809294, 48.85729248597927], [2.270012398699493, 48.85726931385356], [2.269833588800166, 48.85724638288258], [2.269652353648086, 48.857223210202264], [2.2694735454283013, 48.85720027870069], [2.269292310596613, 48.857177105474136], [2.269276191476102, 48.85718483776141], [2.269268388186118, 48.85722674790188], [2.269261878483111, 48.85725747161986], [2.269243326681337, 48.85728734385318], [2.269260060367037, 48.85729711594768], [2.269318252704704, 48.85730892462924], [2.269505580856026, 48.85734645639764], [2.269691860128658, 48.85738425577302], [2.269879187469766, 48.85742178604644], [2.270065467270049, 48.85745958573695], [2.270252796513969, 48.857497115431315], [2.270439076867302, 48.857534913638375], [2.270626405275587, 48.85757244363631], [2.270812686169262, 48.857610241259216], [2.271000016493043, 48.857647769778794], [2.271186297914371, 48.85768556771684], [2.271373627415195, 48.85772309564066], [2.271559909389533, 48.85776089209529], [2.271560630904417, 48.857761051177015], [2.271729670556369, 48.857801841591034], [2.27193145263779, 48.85785574486462], [2.272100491536944, 48.85789653384377], [2.272302274368611, 48.857950436487485], [2.272302490335323, 48.85795048996356], [2.272436523042669, 48.85798454523276], [2.272436972517964, 48.85798466488207], [2.272638756026587, 48.85803856785344], [2.272782731981043, 48.85807907850099], [2.272785656213711, 48.858079618798804], [2.272980825496663, 48.85810170667801], [2.273172028496559, 48.85812224303739], [2.273367198090423, 48.85814433118492], [2.273558401399023, 48.85816486692617], [2.273753571328979, 48.85818695354338], [2.273944774946272, 48.85820748866651], [2.273947843026225, 48.858207586425195], [2.274148430044937, 48.85819756402136], [2.274378900284432, 48.858187746773076], [2.274579488519156, 48.85817772275548], [2.274809957214352, 48.858167905567875], [2.274873826077237, 48.85816471406347], [2.274891999412555, 48.858166330609855], [2.274914337877941, 48.85815924142819], [2.275051057058374, 48.85815240904524], [2.275154626489518, 48.8581502241496], [2.275155968665544, 48.85815015223671], [2.275366041255127, 48.85813192015487], [2.275570894113858, 48.85811579837526], [2.275780965056742, 48.85809756555619], [2.275985817664508, 48.85808144216654], [2.276190670132996, 48.85806531932525], [2.276400742018455, 48.85804708542565], [2.276605594223363, 48.858030961873574], [2.276815665825088, 48.858012727245004], [2.276858801499388, 48.85800800638359], [2.276864281835512, 48.858009297702644], [2.276899859548891, 48.858001843873126], [2.277043082174552, 48.85798617005887], [2.277207349972504, 48.85796935239946], [2.277393707980926, 48.85794895806151], [2.277557975548382, 48.857932139920244], [2.277567092958215, 48.85792837179525], [2.2776911481700672, 48.857810116788166], [2.277754332070137, 48.85772689837466], [2.277741336956754, 48.857711009233434], [2.277691485677421, 48.85770279398701], [2.277478797199487, 48.857678287664484], [2.277272605490332, 48.85765412688156], [2.277059917395701, 48.857629620712764], [2.276853726073379, 48.85760545920704], [2.276641038374329, 48.85758095229264], [2.276434847438852, 48.85755679006414], [2.276432663804574, 48.85755640902303], [2.276244317201976, 48.85751221773817], [2.276061799887129, 48.85746727268238], [2.275879284262535, 48.857422326455335], [2.2756909372511, 48.85737813428591], [2.275508422246065, 48.85733318838892], [2.275320075871402, 48.857288995632224], [2.27513756014827, 48.85724404825843], [2.274949215760739, 48.85719985582205], [2.274940205834875, 48.857192173771395], [2.27492032932011, 48.85704363581458], [2.274901192458639, 48.85689827075618], [2.274881316154692, 48.85674973365289], [2.274862180885373, 48.856604367658726], [2.274861969610691, 48.85660338967476], [2.274818092452603, 48.85646198108898], [2.274778652508836, 48.85633129903486], [2.274778804170267, 48.85632725733508], [2.274830666894998, 48.85619405549161], [2.274880724235015, 48.85605746917441], [2.274932586430666, 48.85592426725442], [2.274982643244333, 48.85578768086136], [2.274975501094638, 48.85577752608815], [2.274930995222332, 48.85576281180244], [2.274893614502891, 48.85575428330224], [2.274867521082735, 48.85574088840602], [2.274840207250715, 48.8557570138797], [2.27471315601468, 48.85585901995824], [2.274588418401794, 48.85596015405241], [2.274583891634115, 48.855962538691564], [2.274429091502473, 48.85601306508225], [2.2742831244927952, 48.85606112483908], [2.274137157213846, 48.85610918441583], [2.273982357588605, 48.856159709330896], [2.2738363897436358, 48.85620776943574], [2.273681589533862, 48.85625829395728], [2.2736657596568293, 48.856256490887624], [2.273608086765093, 48.856217214734045], [2.2735662613161702, 48.85618288500325], [2.273545320503547, 48.85616895810457], [2.273512752141473, 48.856180669694055], [2.273376382011879, 48.85625010142505], [2.273249500965318, 48.8563164545646], [2.273122620958345, 48.85638280757396], [2.27298624842965, 48.856452237940104], [2.272982713396853, 48.85645357449482], [2.272782015021108, 48.8565049467774], [2.272572766971945, 48.856558726496836], [2.272566642486196, 48.85657235232885], [2.272677992227607, 48.856674671145676], [2.272788979650568, 48.85677661441093], [2.272900331627967, 48.85687893301032], [2.273011319920938, 48.85698087605065], [2.273122671408617, 48.85708319441601], [2.273233660571808, 48.85718513723133], [2.273228687103194, 48.857198428323414], [2.273097461288512, 48.85724171690537], [2.272878349887816, 48.85731686353921], [2.272747123483786, 48.8573601517324], [2.272732226395704, 48.85735897297054], [2.272552601836262, 48.85725869269354], [2.27238890231957, 48.857165764093494], [2.272384428173197, 48.85716407307474], [2.272137320163779, 48.85710824000534], [2.271902230287534, 48.8570572524428], [2.271899199750098, 48.85705681400264], [2.271680237262102, 48.857042064861055], [2.271465851022092, 48.8570289233529], [2.2712514648902262, 48.857015781460454], [2.27103250412079, 48.857001031141465], [2.270818118212993, 48.85698788847234], [2.270599156320698, 48.856973137351766], [2.270577155335245, 48.85697412474313]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 160, "zemmour_eric": 180.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-11", "circ_bv": "14", "num_bureau": 11, "roussel_fabien": 4.0, "nb_emargement": 1067.0, "nb_procuration": 64.0, "nb_vote_blanc": 7.0, "jadot_yannick": 38.0, "le_pen_marine": 42.0, "nb_exprime": 1057.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1310.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1068, "quartier_bv": "62", "geo_point_2d": [48.8573497500711, 2.2737521470837354], "melenchon_jean_luc": 54.0, "poutou_philippe": 0.0, "macron_emmanuel": 563.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.264787514487668, 48.85584625002198], [2.264810436462341, 48.855825943896384], [2.264984778470817, 48.855786658827085], [2.265169280735949, 48.855745735208174], [2.265343622205396, 48.855706449613216], [2.265528123904674, 48.85566552543808], [2.265702464822517, 48.855626240216715], [2.26588696596861, 48.85558531458609], [2.2660613063475212, 48.85554602883908], [2.266184964387597, 48.855518598585945], [2.266208527912858, 48.85550746420734], [2.266191794644052, 48.8554727757787], [2.266175484003337, 48.85535175940392], [2.2661570924176972, 48.85521437897142], [2.266162833284149, 48.85520622909592], [2.266304926839547, 48.85514034987874], [2.266458651057083, 48.85507311540524], [2.266600745238176, 48.855007235837256], [2.266754468694048, 48.85494000007642], [2.266896560775319, 48.85487412014091], [2.267050283444118, 48.85480688489129], [2.267192376163829, 48.85474100370571], [2.267346098058109, 48.85467376806798], [2.267344984836066, 48.854658338106795], [2.267184515335117, 48.85460182258822], [2.267000961455206, 48.854537078382535], [2.266840494076172, 48.85448056150548], [2.26665694105088, 48.85441581676503], [2.266496473042966, 48.85435930031141], [2.266312920872291, 48.854294555036184], [2.266152454986502, 48.854238037224114], [2.265968903670447, 48.85417329141409], [2.265808437155675, 48.85411677402547], [2.265647971001775, 48.85406025551947], [2.265464420926139, 48.85399550982449], [2.265457746528465, 48.853985096510485], [2.265501944207891, 48.853883509685936], [2.265541649944074, 48.85378915671411], [2.265585845931057, 48.85368756983234], [2.265625551353236, 48.85359321771531], [2.265623797452177, 48.85358586095998], [2.265495043380259, 48.85345698887839], [2.265369549184637, 48.85333628757609], [2.265244056920376, 48.853215587036686], [2.26511530333977, 48.85308671449519], [2.265108052249447, 48.853083093194655], [2.26498613362185, 48.853057530905346], [2.2648433156813113, 48.85303352189326], [2.264834346245792, 48.85302863180956], [2.264822891656124, 48.8530152895335], [2.264801621908522, 48.85301005496066], [2.264716340265529, 48.85289028889811], [2.264621965814799, 48.85276021143922], [2.264536684993621, 48.852640445221766], [2.264442311456647, 48.85251036669266], [2.264357030094536, 48.852390600311836], [2.264289524780833, 48.85229755352325], [2.264273805347118, 48.85229305448228], [2.26424603294705, 48.85230246012971], [2.264101520409087, 48.85239619972741], [2.263958935380649, 48.85249131713593], [2.263814420439722, 48.85258505636263], [2.263671834370455, 48.852680173412864], [2.263664925159599, 48.85268265270819], [2.263497238264385, 48.85270570199556], [2.26333969553837, 48.852728414186195], [2.263182152662203, 48.852751127068224], [2.263014465333198, 48.852774175677595], [2.262856923552493, 48.85279688723959], [2.262689235932276, 48.85281993539225], [2.2626873335954603, 48.85282030679847], [2.262502680955051, 48.85286628283859], [2.262321503622641, 48.8529120398899], [2.262136850347126, 48.85295801446236], [2.261955670999042, 48.85300377184685], [2.26177101843845, 48.85304974585939], [2.261589838462919, 48.853095501786875], [2.261405183879, 48.853141476121934], [2.2612240046260492, 48.85318723150012], [2.261039349394303, 48.85323320526686], [2.260858169501179, 48.85327896008732], [2.260673513634368, 48.853324932386386], [2.260492333101078, 48.853370686649136], [2.260307676573693, 48.853416659279155], [2.260126495400239, 48.8534624129842], [2.260105739159352, 48.85348447641679], [2.262693590929623, 48.857885479724274], [2.262740479739547, 48.85795023377525], [2.262929133428799, 48.85789342325245], [2.263114812845013, 48.8578408417893], [2.26330346709291, 48.85778403067915], [2.263489145741512, 48.85773144863002], [2.263677799185063, 48.857674636924116], [2.263863477066153, 48.857622054288974], [2.264052128342583, 48.85756524197898], [2.264237805456057, 48.85751265875783], [2.26442645729111, 48.85745584586049], [2.264612133636963, 48.85740326205335], [2.264650717890405, 48.85739166899472], [2.264640726077479, 48.85733043767109], [2.264564998474646, 48.85720906060904], [2.264484189056569, 48.85708380029097], [2.26440846217685, 48.8569624231029], [2.2643276535176042, 48.856837162651296], [2.26425192736099, 48.85671578533721], [2.264171119447968, 48.856590525651384], [2.264095394027148, 48.85646914731199], [2.264014586872833, 48.85634388749262], [2.263938862175101, 48.85622250902722], [2.263858055779687, 48.85609724907434], [2.263865459045054, 48.85608539608062], [2.264028335032188, 48.85604166737683], [2.264224498356585, 48.85598707200961], [2.264387372372215, 48.855943342804856], [2.264583534950248, 48.855888746844215], [2.264746408357204, 48.855845017146926], [2.264747141435631, 48.8558448363831], [2.264787514487668, 48.85584625002198]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 222, "zemmour_eric": 203.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "16-23", "circ_bv": "14", "num_bureau": 23, "roussel_fabien": 5.0, "nb_emargement": 1184.0, "nb_procuration": 63.0, "nb_vote_blanc": 7.0, "jadot_yannick": 21.0, "le_pen_marine": 51.0, "nb_exprime": 1171.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1449.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1185, "quartier_bv": "61", "geo_point_2d": [48.85486072651547, 2.263384004154107], "melenchon_jean_luc": 85.0, "poutou_philippe": 3.0, "macron_emmanuel": 561.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.34191282416967, 48.885624695117606], [2.341920896896124, 48.88560788787018], [2.3418693877882673, 48.885469324886586], [2.341820632087528, 48.88533433384303], [2.341769123517145, 48.88519577078182], [2.3417203683324352, 48.88506077966388], [2.341668860299417, 48.88492221652503], [2.341620105630729, 48.88478722533266], [2.341571351214807, 48.88465223410382], [2.341519843982391, 48.884513670849415], [2.341471090082479, 48.8843786795462], [2.341419583387408, 48.8842401162142], [2.341408929173438, 48.884233428649694], [2.341393232913885, 48.884231425836404], [2.341357566777543, 48.88422687508267], [2.341342200077932, 48.88423256244525], [2.341267780343756, 48.88436415302811], [2.341194497048461, 48.88449373350754], [2.341120076556539, 48.88462532486661], [2.341046792526069, 48.88475490522485], [2.341040624865435, 48.88475962963117], [2.340920434300903, 48.884803544229506], [2.340701279502485, 48.884883618119474], [2.340581088365617, 48.8849275323722], [2.340561038276074, 48.884921177900836], [2.340531560167937, 48.88480721801252], [2.34050419605027, 48.88470142756574], [2.340497209329523, 48.884695018231646], [2.340388576314067, 48.884656514864375], [2.340283204333762, 48.884619167916036], [2.340278807875109, 48.88461669211892], [2.340163448558985, 48.88451671108334], [2.34004324732011, 48.88441253394364], [2.339927888908503, 48.88431255266255], [2.339807689975788, 48.88420837527456], [2.33979751776866, 48.884176054824806], [2.339784156378024, 48.88417511059553], [2.339734052021726, 48.88418120874522], [2.3396621955403942, 48.88419013850689], [2.339646081545423, 48.88418204829394], [2.339629068239755, 48.884047444372555], [2.339612453781432, 48.88391085960878], [2.3395954406512818, 48.883776255649416], [2.339578826367677, 48.88363967084729], [2.339558257449994, 48.88363266311944], [2.339426905013426, 48.88368424442822], [2.339208709769609, 48.88377647000137], [2.33907735662409, 48.88382805091994], [2.339026877664354, 48.88384197987272], [2.3390245289988982, 48.88385383446832], [2.339052518539188, 48.88388998647669], [2.339074336486692, 48.883925474877415], [2.339069125100211, 48.88393639635321], [2.338936054073007, 48.883993387891756], [2.338818420104388, 48.884045267302646], [2.3386853471610323, 48.884102258549355], [2.338567714060305, 48.88415413771635], [2.338565574650007, 48.884155305818254], [2.338456723517841, 48.8842350730494], [2.338327259832207, 48.88432185705217], [2.338218407998293, 48.884401623155355], [2.338088943490121, 48.884488407786534], [2.338087797823043, 48.88448928099736], [2.33797894526094, 48.88456904776993], [2.3378980829014893, 48.88463938417274], [2.337817220323703, 48.884709720516405], [2.337729133119404, 48.884799653701755], [2.337727907307717, 48.884800930264625], [2.337639819783451, 48.88489086427606], [2.337537668811833, 48.885020102940544], [2.337516734236828, 48.885047496695776], [2.337534021803523, 48.88506077112191], [2.337591826316137, 48.88514710369771], [2.337695197101646, 48.885288333343304], [2.337706146748021, 48.885304688857445], [2.337774902881364, 48.88540737594559], [2.3378782746799462, 48.885548605399684], [2.337947030099817, 48.885651293257965], [2.337947962641228, 48.88565656668288], [2.337913300374764, 48.885779686484156], [2.337876062819325, 48.885895656747444], [2.337876225235584, 48.885899828732], [2.337912308435504, 48.88598940984232], [2.337970599859609, 48.8861527750282], [2.338006683397151, 48.8862423560895], [2.338012992068697, 48.88624781481881], [2.338114871668145, 48.88628700510501], [2.338219273635053, 48.88632538815699], [2.338224145480623, 48.886326515862024], [2.338281452487848, 48.88633211434402], [2.338284795627712, 48.886332167894004], [2.338489961673126, 48.886318768439786], [2.338749889724228, 48.88629595114113], [2.338763857933789, 48.88630080551422], [2.33880153277339, 48.886349917241176], [2.338841363202691, 48.88640068033195], [2.338861363274015, 48.88640992884254], [2.338915413940188, 48.886385339277304], [2.339102658421557, 48.88633796212937], [2.339289949358422, 48.88629033583091], [2.339477193157319, 48.88624295809314], [2.339664482057806, 48.88619533029793], [2.33985172653796, 48.886147951977925], [2.340039014742791, 48.886100324491984], [2.340226257176931, 48.886052945574704], [2.340413544697507, 48.886005317498814], [2.340600787812893, 48.88595793799921], [2.340788074660492, 48.885910308434134], [2.340975315718578, 48.8858629292365], [2.3411626032455333, 48.88581529908896], [2.341349843632605, 48.88576791840232], [2.341537129100285, 48.885720288556605], [2.34172437016848, 48.885672907287635], [2.341911654963352, 48.88562527595274], [2.34191282416967, 48.885624695117606]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 49, "zemmour_eric": 64.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-23", "circ_bv": "18", "num_bureau": 23, "roussel_fabien": 33.0, "nb_emargement": 1215.0, "nb_procuration": 74.0, "nb_vote_blanc": 7.0, "jadot_yannick": 125.0, "le_pen_marine": 52.0, "nb_exprime": 1203.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1565.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1213, "quartier_bv": "70", "geo_point_2d": [48.885198216025024, 2.3395454428340092], "melenchon_jean_luc": 394.0, "poutou_philippe": 5.0, "macron_emmanuel": 429.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.343510924753761, 48.88963142688041], [2.343496566971007, 48.88962924194273], [2.343353134494266, 48.889663352872105], [2.343179737936417, 48.88970383196795], [2.34298326455712, 48.88975055501184], [2.342809867421248, 48.88979103356883], [2.3427803236732743, 48.889783772145535], [2.342761026611462, 48.889792250286476], [2.342755750539555, 48.889792752828114], [2.342545086069889, 48.889785363114456], [2.34233295581033, 48.889779465952664], [2.342122291454426, 48.88977207549513], [2.341910161285522, 48.889766178483534], [2.341699495691032, 48.88975878637531], [2.34148736698778, 48.889752888622176], [2.341276701495708, 48.889745496669306], [2.341075047492345, 48.88973577791783], [2.340864383491766, 48.88972838524695], [2.3406627296316342, 48.889718665800984], [2.340452064395101, 48.88971127239714], [2.34025041067811, 48.88970155225664], [2.340200001914335, 48.88970349044204], [2.340193908071596, 48.88972892036069], [2.340189478832501, 48.88974740137113], [2.340201171094942, 48.88975867049218], [2.340205112175712, 48.88977010284734], [2.340221122386045, 48.889802348238454], [2.340274624390413, 48.88979362548946], [2.340445355843484, 48.8898732030211], [2.340597620888532, 48.88994553617029], [2.340768353321848, 48.89002511412966], [2.340920619259819, 48.89009744685812], [2.3410728856208323, 48.89016977938818], [2.341243619527254, 48.890249355754385], [2.341395886781191, 48.89032168786372], [2.34156662167925, 48.89040126375841], [2.341566027575433, 48.890416213562105], [2.341432812695511, 48.89047162671113], [2.341315235780634, 48.89051103052149], [2.341308242152463, 48.890521376551405], [2.341361377869087, 48.89065205649474], [2.341411661416885, 48.89077319326863], [2.341464797650147, 48.8909038731361], [2.341515081693105, 48.891025008939515], [2.341565365970033, 48.89114614470846], [2.341618504333427, 48.89127682447078], [2.341624298567333, 48.8912820589172], [2.341659232820709, 48.891296877589284], [2.341692748264976, 48.891297707561826], [2.341703138615696, 48.89129118702814], [2.341914635197241, 48.89128112507815], [2.342120686227493, 48.89127125137297], [2.342332182647264, 48.89126118868537], [2.342538233519439, 48.89125131426154], [2.342749728413863, 48.89124125082877], [2.342955780491613, 48.89123137569376], [2.343167275224344, 48.891221311523346], [2.343373325780329, 48.891211435662214], [2.343584821715019, 48.89120137076169], [2.34379087211289, 48.8911914941819], [2.343793930555798, 48.891191112541854], [2.343827390454841, 48.89118238629779], [2.343817433431368, 48.89115497880237], [2.343838768401199, 48.89100938276484], [2.343858983114624, 48.89086317172403], [2.343880317837374, 48.89071757653964], [2.34390053232084, 48.89057136545292], [2.343896316669291, 48.890564011962255], [2.343743428457761, 48.890468769380156], [2.343588505722957, 48.89036943700223], [2.343435618634441, 48.89027419490945], [2.343280697077108, 48.89017486121641], [2.343278449218682, 48.89016385554352], [2.343364337324388, 48.89006754843267], [2.343449696503921, 48.8899720630342], [2.343535583965194, 48.88987575668296], [2.343620941163996, 48.88978027023904], [2.343621230676895, 48.88977147642804], [2.343570275372671, 48.88970837834989], [2.343522583751357, 48.88965155474327], [2.343510924753761, 48.88963142688041]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 51, "zemmour_eric": 58.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-5", "circ_bv": "18", "num_bureau": 5, "roussel_fabien": 18.0, "nb_emargement": 1062.0, "nb_procuration": 81.0, "nb_vote_blanc": 15.0, "jadot_yannick": 110.0, "le_pen_marine": 52.0, "nb_exprime": 1047.0, "nb_vote_nul": 0.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1279.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1062, "quartier_bv": "70", "geo_point_2d": [48.89045705439512, 2.34239660211229], "melenchon_jean_luc": 307.0, "poutou_philippe": 6.0, "macron_emmanuel": 402.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.367076939997184, 48.86170248649804], [2.367078277695927, 48.86169335442216], [2.367096494387376, 48.861620699992464], [2.3671289524116332, 48.861481269797046], [2.367162504796066, 48.86134745008716], [2.367194963825492, 48.86120802074596], [2.367228515864299, 48.86107420098459], [2.367247773155155, 48.86099147392203], [2.3672382770002622, 48.860968228673435], [2.367163593582672, 48.86096538574504], [2.366969344353082, 48.860992691388006], [2.366780290925993, 48.861019317322416], [2.366586042657419, 48.86104662234905], [2.366396988827709, 48.86107324857596], [2.366202738805238, 48.86110055207264], [2.366013684583946, 48.8611271776927], [2.365824630180469, 48.861153802114195], [2.365630380909649, 48.86118110558638], [2.365441326103555, 48.861207730300336], [2.365247076441753, 48.861235032249795], [2.3650580212442, 48.86126165635694], [2.364863769806528, 48.86128895857492], [2.3646747142283813, 48.86131558117597], [2.364480463751776, 48.86134288277771], [2.364291407781988, 48.86136950477193], [2.364097155540585, 48.86139680574295], [2.363908099168283, 48.86142342802966], [2.363713847898844, 48.861450727485106], [2.363524791135112, 48.861477349165014], [2.363330539452795, 48.86150464889627], [2.363141482308529, 48.86153126907005], [2.36294722886133, 48.861558568170565], [2.362758171325453, 48.86158518773751], [2.362563918839368, 48.8616124862218], [2.3624898246794253, 48.86162291876905], [2.362445517865222, 48.861616166073716], [2.36242121718174, 48.86163254141161], [2.362306251997853, 48.861648728650444], [2.362121329593979, 48.86167343385411], [2.361932271208291, 48.86170005301287], [2.361747347081808, 48.861724757630284], [2.361558288318901, 48.86175137619702], [2.361457039016995, 48.86176490267938], [2.361446797454276, 48.86176830871719], [2.36145811593508, 48.86180937929158], [2.361590992105319, 48.861923807806704], [2.361722331188352, 48.86203691131909], [2.361855208530232, 48.8621513386181], [2.36198654739745, 48.86226444181004], [2.362119425888949, 48.862378869691454], [2.362250767266386, 48.86249197257747], [2.362383646929544, 48.862606399242765], [2.362514989454202, 48.8627195018156], [2.362517730673796, 48.86272406530553], [2.362538361678571, 48.86285836109869], [2.36256105699479, 48.86300609778576], [2.362570523315342, 48.863011811381526], [2.362592058679812, 48.863008932162465], [2.362755930808768, 48.86292619992986], [2.362918062578757, 48.86284473707372], [2.363081933673445, 48.86276200438252], [2.363244064422699, 48.862680541072706], [2.363407934494315, 48.86259780702353], [2.363570064211847, 48.862516344159296], [2.363581170220094, 48.86251470345712], [2.363804259872939, 48.862546143580126], [2.364031329987103, 48.862578143145285], [2.364254421557253, 48.862609581535324], [2.364481492213431, 48.8626415811438], [2.364497807482342, 48.86263416724335], [2.364525173808675, 48.86251798046214], [2.364553225655877, 48.86239888702161], [2.36458059173493, 48.86228270020309], [2.364608641965757, 48.86216360671708], [2.36463055042537, 48.862157926751706], [2.364781636124456, 48.862236537458756], [2.364930645848782, 48.862314067629114], [2.365081732453485, 48.86239267794625], [2.365230743070983, 48.86247020773205], [2.365381830581307, 48.8625488176592], [2.365530842092082, 48.86262634706043], [2.365681930508028, 48.862704956597696], [2.365830942900935, 48.86278248651359], [2.365982032222511, 48.86286109566092], [2.366131046882579, 48.86293862430018], [2.366282135746757, 48.863017233050336], [2.366431151300017, 48.86309476130502], [2.366444080635512, 48.863096190460126], [2.366453236300161, 48.86309408319958], [2.366462443911668, 48.86309196362252], [2.366475439619336, 48.863093427300726], [2.366543701137783, 48.863129392781985], [2.366616269831988, 48.863167626681296], [2.366695542280765, 48.86317974127326], [2.366701378681357, 48.86317102783135], [2.366731017391011, 48.86312150937243], [2.366731816786238, 48.863119552131955], [2.366765371245853, 48.86298573273124], [2.366796442555169, 48.86285029573663], [2.366829996675268, 48.86271647628526], [2.366861067656098, 48.86258103924101], [2.366894621436787, 48.86244721973901], [2.366925693451948, 48.86231178265222], [2.366959246893329, 48.8621779630996], [2.366990317227822, 48.862042525056644], [2.367023870318775, 48.86190870635268], [2.367054940324798, 48.86177326826006], [2.367070276367091, 48.86171210393271], [2.367076939997184, 48.86170248649804]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 69, "zemmour_eric": 70.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "3-4", "circ_bv": "05", "num_bureau": 4, "roussel_fabien": 16.0, "nb_emargement": 1163.0, "nb_procuration": 59.0, "nb_vote_blanc": 5.0, "jadot_yannick": 98.0, "le_pen_marine": 44.0, "nb_exprime": 1154.0, "nb_vote_nul": 5.0, "arr_bv": "03", "arthaud_nathalie": 2, "nb_inscrit": 1431.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1164, "quartier_bv": "10", "geo_point_2d": [48.861990705245496, 2.364759068758562], "melenchon_jean_luc": 287.0, "poutou_philippe": 8.0, "macron_emmanuel": 521.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.333616614900865, 48.83036380222343], [2.333594244525263, 48.8303597167339], [2.333399511729783, 48.83035221718442], [2.333187874045486, 48.830344355053384], [2.332993141354344, 48.83033685574145], [2.332781503793598, 48.83032899289127], [2.332586769867742, 48.83032149201065], [2.332375133792834, 48.83031362844888], [2.332180399982744, 48.8303061269065], [2.331968764031513, 48.83029826262553], [2.331774030325871, 48.83029076132075], [2.331562394498325, 48.83028289632056], [2.331367660919992, 48.83027539345475], [2.331156025216145, 48.830267527735366], [2.330951188611678, 48.83026039938967], [2.330767169072797, 48.83025365339481], [2.330562332575918, 48.83024652438304], [2.330378313136336, 48.830239777789814], [2.330173476747259, 48.830232648111945], [2.329989457406984, 48.83022590092038], [2.329784621125514, 48.83021877057643], [2.329600601884555, 48.83021202278645], [2.3293957657109052, 48.83020489177648], [2.329211747931339, 48.83019814339576], [2.32920035405466, 48.830193278628755], [2.329159446587639, 48.83014082159449], [2.329111509860471, 48.83007694622345], [2.32910550279076, 48.83007543215561], [2.3290825859135103, 48.83008188072678], [2.328978340149513, 48.8301099454685], [2.3288526254293282, 48.83014741941851], [2.328849615252271, 48.83015130491316], [2.328858941070699, 48.83016686696341], [2.328956440314125, 48.83028099697683], [2.329064426889, 48.830402194555404], [2.329161927010833, 48.83051632527666], [2.32926991455089, 48.83063752264424], [2.329367415574289, 48.830751652274685], [2.3294548473208, 48.83084977945538], [2.32946307121139, 48.83086493055073], [2.3294752682405813, 48.830868582938514], [2.329495825004206, 48.83089165380986], [2.329597120194425, 48.83100869867798], [2.329705109754706, 48.831129896498695], [2.329806407239831, 48.8312469411723], [2.329914397791757, 48.831368137878954], [2.329907818604631, 48.83138102051989], [2.329723134538025, 48.831430955843715], [2.32954054513015, 48.83148122190197], [2.329355858994552, 48.8315311566466], [2.32917326889316, 48.831581421240344], [2.328988583401411, 48.831631356320315], [2.328805991232731, 48.831681620341264], [2.328621305045778, 48.83173155395031], [2.328438712172123, 48.83178181740606], [2.328254025266708, 48.83183175134282], [2.328071431687977, 48.83188201423337], [2.32788674408738, 48.83193194669924], [2.3277041497919813, 48.83198220992385], [2.327519461484616, 48.832032141818125], [2.327336866495749, 48.83208240357827], [2.327330137752385, 48.832094995633945], [2.327417246699753, 48.832200915448695], [2.3274994745397652, 48.83230073697431], [2.327586582824365, 48.83240665573935], [2.327668811301562, 48.832506478029494], [2.32775104010517, 48.83260629935493], [2.327838150773735, 48.83271221791549], [2.327920380214648, 48.83281204000546], [2.328007491571086, 48.83291795842323], [2.328031552315338, 48.832926661027834], [2.328048974972416, 48.832920002824594], [2.32818037813335, 48.83292330689812], [2.328290694373584, 48.83292626666078], [2.328296966190235, 48.83292544298284], [2.328464221522422, 48.83287470243085], [2.328657505350234, 48.83281567432904], [2.328824759979298, 48.83276493326789], [2.329018042991859, 48.83270590457771], [2.329185296917797, 48.83265516300742], [2.329378579115104, 48.83259613372881], [2.329545832337915, 48.83254539164943], [2.329739113719968, 48.83248636178238], [2.329906366239648, 48.83243561919387], [2.330099646794884, 48.83237658963776], [2.330266898622987, 48.83232584564082], [2.330460178362867, 48.832266815496325], [2.330627429487828, 48.83221607099021], [2.330644498474964, 48.83221929993271], [2.330767974725486, 48.832343211272004], [2.330890035443281, 48.832463673548], [2.331013512867709, 48.83258758370749], [2.331135576087328, 48.83270804571424], [2.331259053300559, 48.83283195648487], [2.331381117671324, 48.83295241731546], [2.331385874717404, 48.83295529761642], [2.331479621760121, 48.8329846735037], [2.331594419676525, 48.83302635525093], [2.331612950896754, 48.83302277318311], [2.331703750565656, 48.832912592131706], [2.33180354109273, 48.83279199703564], [2.331894341319067, 48.83268181582439], [2.331994130963364, 48.8325612205445], [2.332084929022777, 48.83245103915828], [2.332184717795934, 48.83233044279519], [2.332275515038945, 48.83222026214091], [2.332375302929549, 48.83209966559397], [2.332466100730011, 48.83198948477991], [2.332565887737867, 48.8318688880491], [2.332656683371454, 48.83175870706005], [2.332756469496677, 48.83163811014539], [2.332847264336925, 48.83152792808965], [2.332947049568117, 48.831407331890496], [2.333037844965823, 48.83129714967496], [2.3331376293258073, 48.83117655239264], [2.333228422545178, 48.83106637090149], [2.33332820602256, 48.830945773435324], [2.333418998437112, 48.83083559177676], [2.333420129253965, 48.83083376965254], [2.333469204994323, 48.83072134083733], [2.333520089320634, 48.83060403217457], [2.333569165991324, 48.83049160330289], [2.333620049879958, 48.83037429367424], [2.333616614900865, 48.83036380222343]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 100, "zemmour_eric": 68.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-3", "circ_bv": "11", "num_bureau": 3, "roussel_fabien": 27.0, "nb_emargement": 1270.0, "nb_procuration": 115.0, "nb_vote_blanc": 11.0, "jadot_yannick": 125.0, "le_pen_marine": 38.0, "nb_exprime": 1257.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1545.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1270, "quartier_bv": "55", "geo_point_2d": [48.831495144045775, 2.3306906748662093], "melenchon_jean_luc": 313.0, "poutou_philippe": 6.0, "macron_emmanuel": 511.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.290090817275724, 48.84804698731359], [2.290077006568893, 48.84805355796122], [2.290069016489799, 48.8480710976156], [2.290062251400669, 48.84808724332886], [2.29004194353461, 48.84809249202597], [2.289871408868383, 48.84802279459652], [2.289727697752311, 48.84796503693654], [2.289724288008974, 48.84796305428094], [2.289588600090691, 48.84785307392347], [2.289451526884133, 48.847741493295445], [2.289315838755633, 48.84763151259865], [2.289178766728109, 48.84751993073664], [2.289176733131983, 48.847510871944834], [2.289226673634933, 48.8474300315623], [2.289276153460823, 48.84735088461936], [2.289275452013989, 48.84734306587147], [2.289182530913977, 48.84723447312861], [2.289076692859457, 48.84710952593793], [2.289057699546853, 48.84710623741524], [2.28889413593551, 48.84717212233628], [2.288730199691433, 48.8472379220753], [2.288566633902421, 48.847303805633395], [2.288402698193215, 48.84736960492404], [2.2882391315645902, 48.847435488925925], [2.288075193665029, 48.8475012877519], [2.287911627583968, 48.847567170407096], [2.2877476888566672, 48.8476329687765], [2.287584121935984, 48.84769885187545], [2.287420182380938, 48.84776464978838], [2.287256613282595, 48.847830531524345], [2.287092674262432, 48.84789632898883], [2.286929104324449, 48.84796221116855], [2.286765163113915, 48.8480280081684], [2.286746324281178, 48.84802486859867], [2.28667818500735, 48.847948064935466], [2.286609261102954, 48.84787244910593], [2.286541122218104, 48.84779564625345], [2.286472198714165, 48.8477200303346], [2.286471939451439, 48.847719757180194], [2.28645648650562, 48.84771347469043], [2.28643803653024, 48.84772095798868], [2.286396320283543, 48.84773048527084], [2.286341683373427, 48.84774305626261], [2.28633431935472, 48.84775598747148], [2.286432172278274, 48.84786977777102], [2.286529084676508, 48.84798282129117], [2.286626938451155, 48.84809661140824], [2.286723853068645, 48.84820965385643], [2.286821707694599, 48.84832344379103], [2.286918621781471, 48.848436486949595], [2.287016477258538, 48.848550276701715], [2.287113392202146, 48.848663318780204], [2.287211249893083, 48.84877710835798], [2.287308165668632, 48.84889015115495], [2.28740602284826, 48.849003940542104], [2.287502939468161, 48.84911698315825], [2.287505252038239, 48.8491278477514], [2.287524211334585, 48.84913227580183], [2.287722779935419, 48.84918011529321], [2.287942388960353, 48.849233795129145], [2.288140958344289, 48.849281633022855], [2.288360568227788, 48.849335312086346], [2.288409265358499, 48.8493470443254], [2.288432040026695, 48.84935599893361], [2.288441269557656, 48.84935343218087], [2.288591142609745, 48.84938953799613], [2.288755976721965, 48.849429597124384], [2.288954546236067, 48.849477433651295], [2.28911938090576, 48.84951749227569], [2.289130176560192, 48.84951709954245], [2.289301959226886, 48.84946050417376], [2.289472428076379, 48.849404390008964], [2.2896442113624, 48.849347794151306], [2.289814679474661, 48.84929167949322], [2.289986460654884, 48.849235083130296], [2.290156928029912, 48.849178967978915], [2.290328708454651, 48.84912237201818], [2.290499176467246, 48.84906625548228], [2.290670956148751, 48.84900965902444], [2.290841422049309, 48.84895354288646], [2.2908674012637302, 48.84894453505554], [2.2908684138186572, 48.84894132763173], [2.29080932061921, 48.848867180103795], [2.290727269806643, 48.8487637795505], [2.290632869347858, 48.84864532770636], [2.290550819234701, 48.84854192701143], [2.29045641957886, 48.84842347500443], [2.290374370165105, 48.8483200741679], [2.290279971312197, 48.848201621998115], [2.290197922597834, 48.848098221019995], [2.290193658498371, 48.84809503085967], [2.290152159595302, 48.84807592678032], [2.29011682918343, 48.84805906452759], [2.290090817275724, 48.84804698731359]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 130, "zemmour_eric": 124.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-11", "circ_bv": "12", "num_bureau": 11, "roussel_fabien": 8.0, "nb_emargement": 1245.0, "nb_procuration": 77.0, "nb_vote_blanc": 7.0, "jadot_yannick": 79.0, "le_pen_marine": 88.0, "nb_exprime": 1234.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1609.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1245, "quartier_bv": "59", "geo_point_2d": [48.84843233865902, 2.288708733483631], "melenchon_jean_luc": 191.0, "poutou_philippe": 6.0, "macron_emmanuel": 564.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.380717237381531, 48.868965989310055], [2.380715653002164, 48.86896658636735], [2.38068726987199, 48.86898770526848], [2.380686985076835, 48.86898792413279], [2.3805648328593882, 48.869082455528385], [2.380440193936922, 48.8691814301433], [2.380318040807157, 48.869275962169745], [2.380193400952777, 48.86937493651039], [2.3800712469319762, 48.8694694673691], [2.379946606145778, 48.8695684414354], [2.379824451223342, 48.86966297202575], [2.379699809494404, 48.86976194671702], [2.379577653670423, 48.8698564770389], [2.379453011020257, 48.86995545055657], [2.379330854294625, 48.87004998061007], [2.379235762755034, 48.87012548781471], [2.3792217009826713, 48.87013780236382], [2.379279644499726, 48.870170182240535], [2.379438432836242, 48.87023094554386], [2.379616332362579, 48.87029843850257], [2.379775121482706, 48.87035920135224], [2.379953020520081, 48.87042669379563], [2.380111810423918, 48.870487456191576], [2.380289711709485, 48.8705549472345], [2.380448502397033, 48.87061570917675], [2.380626404546163, 48.87068320061074], [2.3807851960175253, 48.870743962099255], [2.380963097677683, 48.870811453017964], [2.381121889932656, 48.870872214052774], [2.381299793840997, 48.87093970357096], [2.381458586879679, 48.87100046415208], [2.381461810011584, 48.871002162567635], [2.38158608495506, 48.8710910206417], [2.38173076385875, 48.871197659533344], [2.381855038353524, 48.87128651820472], [2.381999718350823, 48.871393156752404], [2.382123995134081, 48.87148201513582], [2.382268674861744, 48.87158865333251], [2.382392952570343, 48.871677511421], [2.382537634754792, 48.871784149280764], [2.382661912025374, 48.871873007067194], [2.382667258975106, 48.87187542417931], [2.382798928046463, 48.871908186085804], [2.38292767778881, 48.87194053888679], [2.383056429065117, 48.87197289065612], [2.383188097264352, 48.87200565212459], [2.383206611526167, 48.87200943120703], [2.383217775706928, 48.87200264928505], [2.383223741523989, 48.871988957959225], [2.383226993998446, 48.871980128850936], [2.383238511453293, 48.87197333165983], [2.38339807535272, 48.871959869571434], [2.383556408234588, 48.871946509750586], [2.383567169199818, 48.87194119253615], [2.383640991631, 48.87182981851312], [2.383727849417919, 48.87169877561969], [2.383801669788081, 48.87158740236541], [2.383888528129701, 48.87145635933361], [2.383962347812762, 48.87134498595577], [2.384049203982783, 48.871213942771654], [2.384123024342, 48.8711025692773], [2.384209879703486, 48.87097152594782], [2.384283698023102, 48.870860151423656], [2.384370553928775, 48.87072910885509], [2.384444371561211, 48.87061773420743], [2.38444273502644, 48.87059886399937], [2.38443934992973, 48.87059713695146], [2.384230134748341, 48.87060556772553], [2.384041906252401, 48.870612250802175], [2.384031262118086, 48.87060944495512], [2.38391263511351, 48.87052657297742], [2.383770092219569, 48.87042665312566], [2.383651464683549, 48.8703437808684], [2.38350892414337, 48.87024386159542], [2.383390297439131, 48.8701609890656], [2.383247756547541, 48.870061068558805], [2.383159698757779, 48.86999955067619], [2.383145931289606, 48.8699718988435], [2.383126924824149, 48.869972215485156], [2.383096356770929, 48.8699508605565], [2.383093484026993, 48.86994156368788], [2.383123831451893, 48.86988749813585], [2.38315423491925, 48.8698358322954], [2.38314780247691, 48.86982459429827], [2.383000438294704, 48.86977416883285], [2.38285092484124, 48.869724176373296], [2.382703561230501, 48.86967375053779], [2.382554046976213, 48.869623758595104], [2.382545850428633, 48.8696156420574], [2.382524590624659, 48.86961538219458], [2.382524373378621, 48.86961530822744], [2.382348360379408, 48.86955381168731], [2.382176234357551, 48.86949381795472], [2.382000222179744, 48.869432320895896], [2.381828095597086, 48.86937232664901], [2.381652084240894, 48.86931082907147], [2.38147995846064, 48.86925083431736], [2.381307834429385, 48.86919084021883], [2.381131824300523, 48.869129341866156], [2.380959699719155, 48.86906934635406], [2.380783690411908, 48.86900784748272], [2.380717237381531, 48.868965989310055]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 19, "zemmour_eric": 53.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-75", "circ_bv": "06", "num_bureau": 75, "roussel_fabien": 22.0, "nb_emargement": 1294.0, "nb_procuration": 53.0, "nb_vote_blanc": 14.0, "jadot_yannick": 65.0, "le_pen_marine": 56.0, "nb_exprime": 1273.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1850.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1294, "quartier_bv": "77", "geo_point_2d": [48.87044754317472, 2.381984851611029], "melenchon_jean_luc": 778.0, "poutou_philippe": 8.0, "macron_emmanuel": 228.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.32289451568672, 48.837670692833385], [2.322815612151668, 48.837642837883166], [2.32267203130739, 48.83757962579741], [2.322501476378385, 48.837505163437434], [2.322357896294198, 48.837441950966834], [2.32218734226453, 48.83736748814984], [2.322043762940533, 48.83730427529435], [2.321873209809998, 48.837229812020254], [2.32172963124629, 48.83716659877998], [2.321729525581533, 48.83716655231294], [2.321558971988289, 48.8370920885739], [2.321397785401135, 48.837022554109325], [2.321227234115208, 48.83694808989545], [2.32106604706535, 48.83687855406788], [2.320895496724494, 48.83680408937136], [2.32073431191309, 48.83673455399488], [2.320563761155063, 48.836660088808095], [2.320402577243106, 48.83659055207629], [2.320232028792381, 48.83651608641468], [2.320070844394289, 48.83644655011849], [2.320056888373835, 48.836446616484054], [2.3200444287144553, 48.8364596000191], [2.319932892987903, 48.836572850512816], [2.31981757587543, 48.83668987473381], [2.31970603916317, 48.83680312499264], [2.319590722394303, 48.836920148978614], [2.319479183334185, 48.83703339899484], [2.319363865546574, 48.83715042273801], [2.319369520836884, 48.83716347599673], [2.319536881049205, 48.83721506271909], [2.319693859448039, 48.83726219313794], [2.319701840737689, 48.83727021774059], [2.3197044045612483, 48.83736418769098], [2.319702551068412, 48.83753020889795], [2.3197051149060393, 48.83762417882651], [2.3196926003201, 48.8376333046048], [2.319472560229982, 48.8376451405664], [2.319258533723476, 48.8376568817376], [2.319038493435269, 48.83766871690051], [2.3188244667340863, 48.83768045729479], [2.318604426247804, 48.83769229165896], [2.318390399352159, 48.837704031276374], [2.318379571150904, 48.83770868227048], [2.318289263620545, 48.83781780887976], [2.318198929249538, 48.83792760439024], [2.318108620949828, 48.838036731741056], [2.318018285818901, 48.83814652709366], [2.317927975411186, 48.83825565337965], [2.3178376408826082, 48.83836544858206], [2.317747329705615, 48.83847457560959], [2.317656994417106, 48.83858437065412], [2.317582092168624, 48.83861273126584], [2.317595473888141, 48.83863024637227], [2.317689747641407, 48.838706177352776], [2.317814640787249, 48.83880977388589], [2.317936654349912, 48.83890804578269], [2.31806154847009, 48.8390116420393], [2.318183564321455, 48.83910991457354], [2.3183084580536812, 48.839213510545925], [2.31843047485489, 48.83931178191123], [2.318555370923975, 48.83941537761481], [2.318677387289108, 48.8395136496021], [2.318802284344412, 48.839617244129876], [2.318924301647741, 48.83971551584752], [2.319049199665764, 48.839819110998064], [2.319171219281265, 48.83991738155457], [2.31929611691135, 48.84002097642085], [2.319418137453221, 48.840119247607035], [2.319543037420221, 48.84022284220455], [2.31966505754953, 48.84032111221401], [2.31978995849103, 48.840424706534975], [2.319911979546728, 48.84052297717414], [2.319930853759178, 48.84052438945945], [2.320073858098649, 48.84045137061283], [2.32021812039328, 48.84037798010775], [2.320361122566179, 48.840304960900454], [2.320505384039264, 48.840231570938634], [2.320648386770463, 48.84015855138609], [2.320792647445657, 48.840085160168925], [2.320935648010297, 48.84001214025569], [2.321079907875779, 48.83993874868248], [2.321222908998714, 48.83986572842399], [2.321367168042673, 48.83979233739405], [2.321386219629793, 48.83979392223742], [2.321489458469248, 48.83988112326874], [2.32158517293132, 48.83996159653027], [2.321688412447549, 48.84004879647747], [2.321784127524602, 48.84012926956775], [2.321846134667822, 48.84014951511715], [2.321880113693971, 48.84012379157421], [2.321912064236578, 48.84004787901598], [2.321961267630722, 48.83992664707874], [2.3220129532693248, 48.839803843593145], [2.322062154847723, 48.83968261068091], [2.322113839994941, 48.83955980802419], [2.322163042470733, 48.839438575051666], [2.322214727138271, 48.83931577232453], [2.322263927786744, 48.83919453927637], [2.322315611974508, 48.83907173647881], [2.322364813520275, 48.83895050337036], [2.322416497228473, 48.83882770050239], [2.322465696946946, 48.83870646731824], [2.3225173801753822, 48.83858366437991], [2.32256658079115, 48.83846243113551], [2.322618263540033, 48.838339628126725], [2.322667462328532, 48.83821839480665], [2.322719144609354, 48.8380955908282], [2.322768344283462, 48.83797435834716], [2.322820026084741, 48.83785155429829], [2.322869223943291, 48.8377303208423], [2.322890543427269, 48.83767966493956], [2.32289451568672, 48.837670692833385]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 99, "zemmour_eric": 114.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "14-14", "circ_bv": "11", "num_bureau": 14, "roussel_fabien": 33.0, "nb_emargement": 1301.0, "nb_procuration": 92.0, "nb_vote_blanc": 14.0, "jadot_yannick": 94.0, "le_pen_marine": 53.0, "nb_exprime": 1284.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1572.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1301, "quartier_bv": "56", "geo_point_2d": [48.838519930684825, 2.3203879811799637], "melenchon_jean_luc": 312.0, "poutou_philippe": 10.0, "macron_emmanuel": 503.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323747450557006, 48.820166452400734], [2.323750923325922, 48.820195143477775], [2.323785760820756, 48.82032899152584], [2.323820131063342, 48.82046096978553], [2.323854502841836, 48.82059294802761], [2.32388934086834, 48.82072679599814], [2.323923711635321, 48.82085877418135], [2.323958551378918, 48.820992622107816], [2.323992922496307, 48.82112460023998], [2.324027762595289, 48.821258448114634], [2.324062134063092, 48.821390426195684], [2.324096974517363, 48.8215242740185], [2.324131346335585, 48.821656252048456], [2.324166187133493, 48.821790100718836], [2.324200559302142, 48.821922078697696], [2.324235400467006, 48.82205592641686], [2.324269772986084, 48.822187904344645], [2.324304613144291, 48.82232175200429], [2.324322142467528, 48.822328803272754], [2.324486737840351, 48.82229444776793], [2.324653564418873, 48.8222577473592], [2.324671324144137, 48.82226488891667], [2.324699026900361, 48.822381702326965], [2.324722308208794, 48.822491288504736], [2.3247500098376612, 48.82260810187197], [2.324773291354339, 48.82271768801773], [2.324796572968781, 48.82282727414827], [2.324824274942538, 48.82294408746336], [2.3248261789719322, 48.8229475680253], [2.324854723793737, 48.82297805451475], [2.324863240874812, 48.82298561692828], [2.324879071685842, 48.82298943244057], [2.325052038060181, 48.822951962104625], [2.325226848820721, 48.822914775338035], [2.325399814697464, 48.82287730449654], [2.325574626333368, 48.822840116327434], [2.32574759035053, 48.82280264497279], [2.3259224014764452, 48.82276545719212], [2.326095366357977, 48.82272798533962], [2.32627017563508, 48.82269079614109], [2.326443140018999, 48.822653323783115], [2.326617948786219, 48.82261613497303], [2.326635688038091, 48.82262552457146], [2.326621946509284, 48.822723486006815], [2.326592765482628, 48.822891621912085], [2.3265790238030473, 48.82298958331932], [2.326569392991869, 48.822997364487264], [2.326398713280199, 48.82303134320678], [2.326225501180563, 48.82306511854438], [2.326054821023094, 48.823099096770996], [2.325881607113625, 48.82313287160073], [2.325710926510157, 48.82316684933444], [2.325537713514827, 48.82320062367175], [2.325528402781206, 48.823211548996596], [2.325540502223431, 48.82324174918776], [2.325545524892929, 48.82326664628822], [2.325543213270416, 48.82327719107859], [2.325551254053329, 48.82328431095673], [2.32556652027258, 48.82336000348031], [2.32558614284943, 48.82343482118506], [2.325603812176137, 48.82344183167365], [2.325788798421151, 48.82340172632975], [2.325971107787979, 48.82336215783108], [2.326156093467793, 48.82332205191616], [2.326338400903683, 48.82328248374639], [2.326523386018295, 48.82324237726045], [2.32670569425885, 48.82320280853561], [2.326890678819863, 48.82316270057934], [2.327072986503185, 48.82312313129178], [2.32725797048727, 48.823083023663806], [2.327440277613256, 48.8230434538135], [2.327625259670242, 48.82300334560684], [2.327807566250381, 48.82296377429448], [2.327989872542207, 48.822924203602064], [2.328174855115317, 48.8228840945487], [2.328357160849793, 48.822844523293554], [2.3285421428576702, 48.822804413669196], [2.328724446684395, 48.822764840944366], [2.328909428127033, 48.82272473074897], [2.329091732746792, 48.82268515836838], [2.329276713624187, 48.82264504760201], [2.32945901768658, 48.8226054746587], [2.329643997998725, 48.82256536332132], [2.329826301515308, 48.82252578891595], [2.330011279900228, 48.82248567699999], [2.330193582847874, 48.822446102931195], [2.330378562029502, 48.82240599045187], [2.33042225389913, 48.82240469177225], [2.330430243159131, 48.8223973040247], [2.330410333354992, 48.82233681171144], [2.330367567976446, 48.82221867689543], [2.330346199306285, 48.82215375143717], [2.330302377301138, 48.82202045159164], [2.330259612426662, 48.82190231670378], [2.330216847757623, 48.82178418088892], [2.33017302639377, 48.82165088095216], [2.3301302621270272, 48.82153274507988], [2.330086439833907, 48.82139944507396], [2.3300436773315942, 48.82128130915194], [2.329999855471045, 48.82114800908448], [2.329957092009183, 48.82102987309743], [2.32991327194333, 48.820896572976054], [2.329913180088855, 48.82089630174735], [2.329874167281423, 48.820771649111414], [2.329830346282554, 48.82063834892142], [2.329791333877606, 48.82051369533059], [2.329747514669297, 48.82038039508729], [2.329708501293457, 48.82025574143321], [2.329664682513684, 48.820122441128994], [2.329625670890766, 48.81999778742694], [2.329581851177617, 48.81986448705416], [2.329542839934145, 48.81973983419581], [2.329499020660986, 48.819606532862814], [2.329460009808618, 48.819481879948846], [2.329416190963983, 48.81934857855493], [2.329377180502509, 48.819223925585376], [2.329333363448371, 48.81909062413817], [2.329294352016007, 48.81896597110538], [2.329288645107042, 48.818951491395104], [2.329240093902395, 48.81893797022619], [2.329203366258236, 48.81894622289229], [2.329117960692515, 48.81896541235601], [2.329083835045763, 48.81897308059495], [2.328889888279221, 48.81901642624815], [2.328700640998126, 48.81905894805334], [2.328506693593669, 48.819102293081684], [2.328317447061918, 48.81914481338552], [2.328123499019558, 48.819188157789014], [2.327934250490231, 48.81923067837477], [2.327740301809968, 48.819274022153444], [2.327551054029914, 48.819316541237825], [2.327357104700157, 48.81935988529094], [2.327167854934225, 48.819402403757955], [2.32715858577771, 48.81940448673651], [2.326964635806211, 48.81944782925036], [2.326895793170833, 48.81946329606871], [2.326843740470606, 48.8194749900219], [2.326799207157831, 48.81948499587363], [2.326605256588155, 48.819528337801465], [2.326389737360487, 48.819576757245706], [2.326195784747358, 48.8196200984982], [2.325980264771822, 48.819668516301164], [2.325786312827201, 48.81971185779287], [2.3256780525699963, 48.81973617912359], [2.325665884783519, 48.819738912082975], [2.325471932327376, 48.81978225216275], [2.325354245407623, 48.819808690235014], [2.325170214470898, 48.81984971053218], [2.324976261190642, 48.81989304980374], [2.324792229658831, 48.8199340695161], [2.324598275750625, 48.819977408171326], [2.32441424362373, 48.820018427298876], [2.324220289087583, 48.820061765337705], [2.324036256365612, 48.82010278388048], [2.323842301201526, 48.820146121302955], [2.323769415140653, 48.82016236570754], [2.323747450557006, 48.820166452400734]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 61, "zemmour_eric": 87.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "14-44", "circ_bv": "10", "num_bureau": 44, "roussel_fabien": 18.0, "nb_emargement": 1156.0, "nb_procuration": 52.0, "nb_vote_blanc": 13.0, "jadot_yannick": 57.0, "le_pen_marine": 93.0, "nb_exprime": 1140.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1538.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1156, "quartier_bv": "55", "geo_point_2d": [48.82118732101301, 2.327142384882274], "melenchon_jean_luc": 474.0, "poutou_philippe": 5.0, "macron_emmanuel": 285.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.33026312044112, 48.88766862146757], [2.330262191655093, 48.88766258358056], [2.330128598878302, 48.887573967420586], [2.32999954733903, 48.88747987712166], [2.32999969841667, 48.887473329059574], [2.329959947002912, 48.88745422792152], [2.329830896076707, 48.88736013653127], [2.329698798817494, 48.8872640485157], [2.329569748834587, 48.887169956827734], [2.329437652539605, 48.887073868507464], [2.329308603488304, 48.88697977742102], [2.329176508169231, 48.88688368789671], [2.329047460061106, 48.88678959651247], [2.328915365694866, 48.88669350758276], [2.328786318541401, 48.88659941500156], [2.328654225139471, 48.88650332576708], [2.328525178917677, 48.88640923378743], [2.328393086491543, 48.88631314334898], [2.328372374862821, 48.88631353259458], [2.328254259389689, 48.88640996156475], [2.328132747640938, 48.88650703865692], [2.328014629921499, 48.88660346736608], [2.327893118638123, 48.88670054420566], [2.327872927639213, 48.886701156623694], [2.327721721273925, 48.886600773591525], [2.327567703463639, 48.88649859839161], [2.327416498274911, 48.88639821495553], [2.327262483026259, 48.88629603935182], [2.327111279014082, 48.88619565551174], [2.326957264963411, 48.88609347949666], [2.326806062127671, 48.88599309525265], [2.326652047911447, 48.88589091881846], [2.3266295618799973, 48.88589418463148], [2.326567522238815, 48.886006650323424], [2.326508749369192, 48.886113769847775], [2.3264467078302102, 48.88622623634627], [2.326387935827863, 48.88633335579756], [2.326325893777965, 48.886445821311725], [2.326267119915618, 48.88655294067464], [2.326251628553694, 48.886558700044304], [2.32616231117436, 48.88654694321055], [2.326104227136295, 48.88653908083084], [2.326048312823655, 48.88652289205446], [2.326028442862, 48.88654516901223], [2.325982200355277, 48.886643584011914], [2.325930522164176, 48.88676020138326], [2.325869816693035, 48.886889395374844], [2.325818138006403, 48.887006012671584], [2.325757430606213, 48.887135206569624], [2.325705751423834, 48.8872518237918], [2.325654072009985, 48.88736844097925], [2.325593365143875, 48.887497634759164], [2.325590582264499, 48.88753444748728], [2.325600199677552, 48.88754169088874], [2.325641283466878, 48.88766924200893], [2.325687074752875, 48.8878078795493], [2.3257281589650223, 48.88793543060867], [2.325773949341077, 48.888074068973786], [2.325815035339735, 48.88820161998018], [2.32586082619292, 48.88834025737914], [2.325901912614419, 48.88846780832484], [2.325947703921253, 48.888606446556274], [2.325988790777239, 48.88873399654192], [2.326034582549473, 48.88887263470654], [2.326063850225127, 48.88896349300363], [2.326066219950201, 48.88897670486859], [2.326069893775289, 48.88898146230283], [2.326081713375274, 48.889018154828754], [2.326126452856392, 48.8891496229571], [2.326167540578836, 48.88927717281831], [2.326212279135488, 48.88940864087591], [2.326253367260922, 48.8895361915768], [2.326266449181781, 48.88957463316318], [2.3262755520575, 48.88958204806863], [2.326338412656319, 48.889574743071506], [2.326501380610261, 48.88949591201416], [2.3266622624799043, 48.88941784601984], [2.326825229452403, 48.889339014510476], [2.326986111715465, 48.88926094807761], [2.327149076343014, 48.88918211610854], [2.32730995763578, 48.889104049229374], [2.327472921281999, 48.88902521680832], [2.327633801604472, 48.88894714948289], [2.327796764269364, 48.888868316609845], [2.327957643621549, 48.88879024883816], [2.328120605305016, 48.88871141551311], [2.328281483686915, 48.8886333472952], [2.328444444389163, 48.88855451351816], [2.328605321812375, 48.88847644395469], [2.328768282885301, 48.88839761063257], [2.328929157974638, 48.888319540615264], [2.329092118066253, 48.88824070684113], [2.329252992185211, 48.88816263637758], [2.32941595129562, 48.888083802151485], [2.3295768244443043, 48.88800573124169], [2.329737698462699, 48.88792766101712], [2.329900654751821, 48.8878488252076], [2.330061527799948, 48.887770754536824], [2.33022448310777, 48.887691918275316], [2.33026312044112, 48.88766862146757]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 64, "zemmour_eric": 72.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-31", "circ_bv": "18", "num_bureau": 31, "roussel_fabien": 25.0, "nb_emargement": 1425.0, "nb_procuration": 90.0, "nb_vote_blanc": 19.0, "jadot_yannick": 145.0, "le_pen_marine": 53.0, "nb_exprime": 1405.0, "nb_vote_nul": 1.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1818.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1425, "quartier_bv": "69", "geo_point_2d": [48.887680330219794, 2.3274940984005106], "melenchon_jean_luc": 454.0, "poutou_philippe": 13.0, "macron_emmanuel": 509.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.32390556737661, 48.89875644591104], [2.323925536903511, 48.89875844181764], [2.324134557450486, 48.898759546034285], [2.324340734181599, 48.898760634741656], [2.324546912285296, 48.8987617231018], [2.324755932858618, 48.89876282623398], [2.324962109615707, 48.898763913871676], [2.325171130206619, 48.89876501627924], [2.325377306981052, 48.89876610320216], [2.32558632758954, 48.89876720488507], [2.325792505745267, 48.898768291100914], [2.326001526382965, 48.89876939115998], [2.326207703192046, 48.89877047665338], [2.326416723835754, 48.89877157688708], [2.326430458980782, 48.89876298829684], [2.326440175659979, 48.898620508933085], [2.32644981458294, 48.89847918563782], [2.326459531156195, 48.89833670623554], [2.326469169985703, 48.8981953820028], [2.3264788864529162, 48.898052902562], [2.326488525177338, 48.89791157829105], [2.326498241527082, 48.89776909971099], [2.326507878782487, 48.8976277753942], [2.326512916643972, 48.89762119372221], [2.326634271199774, 48.897556333659416], [2.32676380600034, 48.897487101996354], [2.326885161283314, 48.89742224257828], [2.327014695428241, 48.89735300973612], [2.327009462859982, 48.897337307876384], [2.326842943254217, 48.89730942746473], [2.326680611780043, 48.897282248454275], [2.326514091162572, 48.89725436757627], [2.326351761407315, 48.8972271872271], [2.326185241142068, 48.897199305890496], [2.326022910354617, 48.897172125985776], [2.326013200329618, 48.8971608316311], [2.326053452916204, 48.897072138733826], [2.326092276111327, 48.89698659079149], [2.326132528416845, 48.89689789875275], [2.326171351352102, 48.89681235077117], [2.326173453878069, 48.89680218588637], [2.326160912880665, 48.89679569057494], [2.326007529773634, 48.89672994773457], [2.325809156161481, 48.896644920889194], [2.325655773931278, 48.89657917848855], [2.325457401468073, 48.8964941510488], [2.32530402012613, 48.89642840818856], [2.325096127969291, 48.89633929933823], [2.324942747539855, 48.896273556006065], [2.324928756291232, 48.89627321003968], [2.3247483706281162, 48.89633842089575], [2.324567317131519, 48.89640387232759], [2.324386930574746, 48.89646908173225], [2.3242058747937993, 48.89653453350143], [2.324025488695407, 48.89659974236156], [2.323844432005676, 48.89666519357649], [2.323664043638058, 48.89673040187676], [2.323482987403453, 48.89679585254515], [2.323302598130312, 48.8968610602932], [2.323121540986927, 48.896926510407354], [2.323100059605346, 48.89692776045679], [2.323095238941016, 48.896941737436705], [2.323095479411974, 48.896943069791014], [2.323134491467873, 48.89707490231865], [2.323172131824976, 48.89720209646143], [2.323209770990386, 48.897329291469106], [2.323248783625108, 48.89746112391301], [2.323254149732898, 48.897470768872715], [2.3232697333925962, 48.897472665466374], [2.323485831637615, 48.89748167449862], [2.323707627056216, 48.89749092035797], [2.323923725452879, 48.897499928599956], [2.324145522390837, 48.8975091736559], [2.324158171991014, 48.89751938038371], [2.324132419536746, 48.89764220362925], [2.324106648167684, 48.89776510858753], [2.32408089410637, 48.89788793178671], [2.324055123857971, 48.89801083671398], [2.324029369553542, 48.898133659874496], [2.324003599061868, 48.89825656476313], [2.323977844514321, 48.898379387884965], [2.323952072415413, 48.898502292727215], [2.323926318988697, 48.89862511581808], [2.3239005466465033, 48.898748020621646], [2.32390556737661, 48.89875644591104]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 29, "zemmour_eric": 67.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-20", "circ_bv": "03", "num_bureau": 20, "roussel_fabien": 21.0, "nb_emargement": 941.0, "nb_procuration": 17.0, "nb_vote_blanc": 8.0, "jadot_yannick": 36.0, "le_pen_marine": 103.0, "nb_exprime": 926.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 8, "nb_inscrit": 1367.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 940, "quartier_bv": "68", "geo_point_2d": [48.8976020752151, 2.32504755226137], "melenchon_jean_luc": 416.0, "poutou_philippe": 5.0, "macron_emmanuel": 203.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.335079952624643, 48.880472354607534], [2.335101562501977, 48.8804801351485], [2.335230778492638, 48.88057116916839], [2.335369987608038, 48.88066675967923], [2.335499204530942, 48.880757793394025], [2.33563841462631, 48.880853384475785], [2.335767633844963, 48.880944417892984], [2.335906843579858, 48.88104000773959], [2.335923243329977, 48.881040003379105], [2.335953695049322, 48.881015482903365], [2.336133444489392, 48.8810001406952], [2.336346718698889, 48.88098179412865], [2.336526467906797, 48.88096645132996], [2.33673974183987, 48.88094810406267], [2.336919490815807, 48.88093276067345], [2.337132764472447, 48.8809144127055], [2.337312513216204, 48.88089906872573], [2.3375257865964, 48.880880720057085], [2.337705535108172, 48.88086537548679], [2.337710300144174, 48.88086435322492], [2.337868219986304, 48.88080754802133], [2.338002582293812, 48.880759879073864], [2.338136943003188, 48.88071220906672], [2.338294861918714, 48.88065540329252], [2.338298445077314, 48.880641474443436], [2.338153572355921, 48.88053587165966], [2.338009455515955, 48.88042813245401], [2.337864583985449, 48.88032252840076], [2.337720468333693, 48.88021478882636], [2.337575597982636, 48.88010918440298], [2.337431483507638, 48.88000144535913], [2.337436998037743, 48.87998705596471], [2.337618752657557, 48.8799429277701], [2.3377956790022543, 48.87989963055681], [2.337977433013148, 48.87985550181415], [2.338154357410509, 48.879812203160526], [2.33833611217584, 48.87976807387737], [2.338513035966571, 48.87972477558953], [2.338694790122869, 48.879680645758334], [2.338871713329915, 48.879637346037725], [2.33905346687707, 48.879593215658495], [2.339230389477492, 48.87954991630366], [2.3394121424156022, 48.87950578537642], [2.339589064432217, 48.8794624845888], [2.339770815397922, 48.87941835310604], [2.339947738171272, 48.87937505269176], [2.339989156465934, 48.8793627002621], [2.339982674612291, 48.879345026791924], [2.339945281061088, 48.87925574340838], [2.339900671015568, 48.87914909994142], [2.33985073789247, 48.87902987688631], [2.339806128234105, 48.87892323336225], [2.339805844211249, 48.87892240530779], [2.339773784881074, 48.87879938484495], [2.339740492665486, 48.87867499956436], [2.339708433641969, 48.87855197905637], [2.339675141752009, 48.87842759283039], [2.339643083035146, 48.878304572277315], [2.3396097900845803, 48.87818018689696], [2.33961142949991, 48.87815702907568], [2.339609440219594, 48.87815498110864], [2.339576148808422, 48.87803059570955], [2.33955098652372, 48.877928372480866], [2.339549883987007, 48.87790521391717], [2.339546349060775, 48.877901940620944], [2.33951305659871, 48.877777555168294], [2.339476081665855, 48.87764359033866], [2.339442789548054, 48.87751920393802], [2.33940581496804, 48.87738523995456], [2.339372523183194, 48.87726085350522], [2.339335548967219, 48.87712688946867], [2.339302258878717, 48.877002502978165], [2.33927721371077, 48.87691176475647], [2.339264988756017, 48.876898663207264], [2.339212061669016, 48.87690576630678], [2.339110234457576, 48.877010067649586], [2.339022053282345, 48.877105923038606], [2.33892022529907, 48.87721022420081], [2.338832044809972, 48.877306078540784], [2.33874386398488, 48.87740193370669], [2.338642034865765, 48.877506234604255], [2.338641866248985, 48.87750641353981], [2.338543052508768, 48.87760837114816], [2.338441222583891, 48.877712671855434], [2.338342409422981, 48.87781462928661], [2.338240578693024, 48.87791892980369], [2.338141763373155, 48.878020887941915], [2.338039931838104, 48.87812518826882], [2.338038663238136, 48.87812684052713], [2.337959460763248, 48.878257246790234], [2.337888605347877, 48.87837928048053], [2.337809402124698, 48.8785096857152], [2.337738546014286, 48.878631719288734], [2.337667689583259, 48.87875375190752], [2.337588485226118, 48.87888415785098], [2.337579396333258, 48.87888949367365], [2.337423457493797, 48.87891737973964], [2.337266161734073, 48.87894902000679], [2.337110221173878, 48.87897690655498], [2.336952926407524, 48.87900854641642], [2.336945471287078, 48.879012247256235], [2.336838065877254, 48.8791212227353], [2.336728105266805, 48.87923369225583], [2.336620698934121, 48.87934266841725], [2.336510736034712, 48.87945513680867], [2.336403328790405, 48.879564112753144], [2.336293366317489, 48.87967658092985], [2.336278676783882, 48.879680443969384], [2.336188935492515, 48.87966600762683], [2.336110105950265, 48.87964745342248], [2.3360951030118082, 48.87965012308412], [2.335958586298975, 48.879756802165744], [2.3358359182333652, 48.87985227757027], [2.335713248354525, 48.87994775283327], [2.335576731442817, 48.88005443145822], [2.335454060612669, 48.88014990643813], [2.335317542628667, 48.88025658564718], [2.33528151831886, 48.88028462290714], [2.335253500553791, 48.880296225225976], [2.335253442751205, 48.880308979252646], [2.3351667952026682, 48.880376416667715], [2.335078966201943, 48.880444738694756], [2.335077327301907, 48.880446333103706], [2.335079952624643, 48.880472354607534]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 76, "zemmour_eric": 67.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "9-11", "circ_bv": "01", "num_bureau": 11, "roussel_fabien": 24.0, "nb_emargement": 1238.0, "nb_procuration": 89.0, "nb_vote_blanc": 13.0, "jadot_yannick": 132.0, "le_pen_marine": 43.0, "nb_exprime": 1222.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1483.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1238, "quartier_bv": "33", "geo_point_2d": [48.87935688827148, 2.337812170924591], "melenchon_jean_luc": 301.0, "poutou_philippe": 3.0, "macron_emmanuel": 530.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.373890963309799, 48.88094786761049], [2.373862586007402, 48.88096761326571], [2.373724073257931, 48.88103318102939], [2.373578962976177, 48.88110080864829], [2.373440448151859, 48.88116637606877], [2.373295337130674, 48.88123400333566], [2.37326826779806, 48.8812645692277], [2.373288263821604, 48.8812824239632], [2.373395296533074, 48.88137430657892], [2.373512810269767, 48.88147082151994], [2.373619843764706, 48.88156270391918], [2.373737358342557, 48.88165921862327], [2.373844393984395, 48.88175110081317], [2.373961908039988, 48.88184761527323], [2.37406894446521, 48.881939497246634], [2.374186459362072, 48.88203601146973], [2.374188465548292, 48.88203734486859], [2.374335325302334, 48.88211594121665], [2.374481667272775, 48.882194769396065], [2.374628527924057, 48.88227336447396], [2.374774869417139, 48.88235219227658], [2.374921730944063, 48.88243078788286], [2.375068074697661, 48.88250961442366], [2.3752149371110303, 48.88258820965904], [2.375361280376478, 48.88266703672234], [2.375508143687183, 48.88274563068755], [2.375654487838816, 48.88282445738118], [2.375687522644424, 48.882829471627545], [2.375720214126425, 48.88279464835496], [2.375912467882245, 48.88278583540306], [2.376115000052748, 48.882776489342135], [2.376307253685486, 48.88276767485687], [2.376509785714406, 48.882758328127956], [2.3767020405660633, 48.88274951391498], [2.376904572464354, 48.88274016561882], [2.377096825818587, 48.882731350764665], [2.377299357564516, 48.88272200269982], [2.377491610795619, 48.88271318631232], [2.377694143763688, 48.88270383758657], [2.377886396850149, 48.88269502146428], [2.378088928323787, 48.88268567116418], [2.378281181276348, 48.8826768544078], [2.378483713961262, 48.88266750434609], [2.378675966790646, 48.88265868605636], [2.378878497970571, 48.88264933531961], [2.379070750655306, 48.88264051729505], [2.379273283067848, 48.88263116499813], [2.3794655356186523, 48.882622346339545], [2.379668066515468, 48.882612994266815], [2.379860318943045, 48.88260417407488], [2.380062849698187, 48.88259482133421], [2.380255103355356, 48.88258600051524], [2.380457633969017, 48.88257664710659], [2.38064988611798, 48.88256782654577], [2.380852416600643, 48.88255847156988], [2.381044668615638, 48.88254965037501], [2.381247200309553, 48.88254029563745], [2.381439452201358, 48.88253147290923], [2.381460179393687, 48.88253144059946], [2.38146881471859, 48.88252171491949], [2.381467476532619, 48.88246814136655], [2.381468028502746, 48.88238780099904], [2.381464034219118, 48.88238426669068], [2.381438612877728, 48.88238320904526], [2.381249381828303, 48.88239307171669], [2.381057010262578, 48.882403054551524], [2.380867777694643, 48.8824129175119], [2.380675405982461, 48.8824228997334], [2.380486174644286, 48.88243276119823], [2.380293801422118, 48.882442742799356], [2.380284899811335, 48.882441139087916], [2.380273567657847, 48.882435919189064], [2.380112794220935, 48.88236149938927], [2.3799659026735123, 48.88229383776112], [2.379807679447872, 48.88222095600459], [2.37964690732964, 48.88214653646389], [2.379488684997858, 48.88207365427607], [2.3793279138010313, 48.88199923339781], [2.379169692363208, 48.881926350778656], [2.379008922076872, 48.88185192946207], [2.378850701522382, 48.881779047310864], [2.378689932146634, 48.881704625556026], [2.37853171249672, 48.881631742074205], [2.378370944031661, 48.88155731988103], [2.378212725264961, 48.88148443686725], [2.378051957710383, 48.88141001423575], [2.377893739848469, 48.88133712989137], [2.377732973204473, 48.88126270682159], [2.377574756225658, 48.881189822945174], [2.377413989128834, 48.88111539943001], [2.377255774418215, 48.88104251423013], [2.377095008231973, 48.88096809027666], [2.37709463403022, 48.880967911161896], [2.376940007585522, 48.88089105027927], [2.37678904303961, 48.880815988923324], [2.37663441748622, 48.880739128534714], [2.376483453821236, 48.88066406678308], [2.376328829169804, 48.880587205989166], [2.376177866385644, 48.88051214384188], [2.37602324263627, 48.88043528264268], [2.375872280732929, 48.88036022009971], [2.375717656532903, 48.88028335758887], [2.375566696863085, 48.88020829555657], [2.37555251577708, 48.88019421182948], [2.375540845551245, 48.88019384068877], [2.375512773568218, 48.88020595032758], [2.375512278641577, 48.88020617437703], [2.375348486361762, 48.880283287275475], [2.375194462086792, 48.88035630681444], [2.375040437380018, 48.880429326150434], [2.374876643699641, 48.88050643838774], [2.374722618103149, 48.88057945730485], [2.374558822116623, 48.880656569089695], [2.374404795630611, 48.88072958758802], [2.374241000064717, 48.880806698934634], [2.374086972688982, 48.88087971701408], [2.373923174816926, 48.88095682790825], [2.373890963309799, 48.88094786761049]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 27, "zemmour_eric": 66.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "19-4", "circ_bv": "16", "num_bureau": 4, "roussel_fabien": 28.0, "nb_emargement": 988.0, "nb_procuration": 54.0, "nb_vote_blanc": 7.0, "jadot_yannick": 90.0, "le_pen_marine": 52.0, "nb_exprime": 975.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1325.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 989, "quartier_bv": "76", "geo_point_2d": [48.881739814306336, 2.3764785947885785], "melenchon_jean_luc": 445.0, "poutou_philippe": 2.0, "macron_emmanuel": 229.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.404647357834585, 48.87178481754342], [2.404645184565742, 48.87178101244339], [2.404504939090549, 48.871741117332014], [2.40438745123017, 48.87170615302987], [2.404381226692121, 48.87170242399446], [2.404295590700527, 48.87160375996024], [2.404212378981617, 48.87150712422869], [2.404129167581641, 48.871410487531584], [2.404043532547536, 48.87131182329099], [2.404041979895155, 48.87130906899279], [2.404033201874896, 48.87128366045528], [2.40403262049053, 48.871283475895], [2.403996660077345, 48.87116126792508], [2.403961252560084, 48.871042106032114], [2.403925292480968, 48.870919898014066], [2.403889885291039, 48.87080073607393], [2.403853925545985, 48.870678528007716], [2.403818518683384, 48.870559366020466], [2.403782559262097, 48.87043715880539], [2.403747152737111, 48.87031799587175], [2.403711193649878, 48.87019578860854], [2.403675787452211, 48.87007662562771], [2.403639828699027, 48.869954418316375], [2.403604422828674, 48.869835255288464], [2.403592481366573, 48.86982804247045], [2.403369658582642, 48.86981247966207], [2.403152874745165, 48.86979767141573], [2.402930052212183, 48.86978210868784], [2.402713268626075, 48.869767299644934], [2.402693749407677, 48.86976669951133], [2.4026843768610022, 48.8697789511583], [2.402542335423448, 48.86991156968187], [2.402398926500565, 48.8700459178144], [2.402396676323594, 48.870049431076644], [2.402360842608261, 48.870174906446586], [2.402324925681803, 48.87030072762109], [2.402289091610446, 48.87042620384029], [2.402253174337404, 48.870552024964674], [2.4022173412835732, 48.87067750114064], [2.402181423663944, 48.87080332221486], [2.402145588901162, 48.87092879833402], [2.402109670934937, 48.871054619358084], [2.402073835826433, 48.871180095427235], [2.402037917523932, 48.87130591550185], [2.402002082069803, 48.871431391520964], [2.401966163410373, 48.8715572124447], [2.401958901747922, 48.87157341724645], [2.401973779409343, 48.87158151004461], [2.401978359623689, 48.87158226858344], [2.402104100519159, 48.87158825136619], [2.402241402978243, 48.87159441856048], [2.402255287799471, 48.87160397138095], [2.402267814627339, 48.871604625698396], [2.402278124496688, 48.87160850564879], [2.402378868030806, 48.8717052419572], [2.402502714270028, 48.87182317928577], [2.402603457273271, 48.87191991537957], [2.40272730453131, 48.872037852452834], [2.402828049740434, 48.87213458744632], [2.402951898007094, 48.87225252516359], [2.403052642685241, 48.87234925994246], [2.403176491970949, 48.87246719740441], [2.403277238844689, 48.872563931982235], [2.403282622273149, 48.872566942808135], [2.40343688875754, 48.87261501218932], [2.4035950228711522, 48.872663836293434], [2.403749289930706, 48.872711905267785], [2.403907424631302, 48.87276072895486], [2.40392262761122, 48.87277166321379], [2.403937520235237, 48.8727701653391], [2.404103277597961, 48.87281721636256], [2.404262125499966, 48.87286214811115], [2.404427883448621, 48.872909198681214], [2.404586730547749, 48.87295412998853], [2.404595013777731, 48.87295465053484], [2.404637295540012, 48.87294855651452], [2.40469298064446, 48.87294124848793], [2.404699629911104, 48.87294146951691], [2.404723620488576, 48.872951160427625], [2.404733231172494, 48.87294921529891], [2.404900626041422, 48.87298300278771], [2.405063757765916, 48.873011074274714], [2.405084762135083, 48.87300744553616], [2.405090467321291, 48.87299435441937], [2.405045057434962, 48.872875176627105], [2.404999969048097, 48.872755561527136], [2.404954559587282, 48.872636382775454], [2.404909471614941, 48.872516767615544], [2.404864062559089, 48.87239758970304], [2.404818975011542, 48.87227797358392], [2.404773566370919, 48.87215879561133], [2.404728479237888, 48.87203917943221], [2.404683071012489, 48.871920001399516], [2.404637984283688, 48.87180038605976], [2.404647357834585, 48.87178481754342]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 51, "zemmour_eric": 106.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "20-23", "circ_bv": "15", "num_bureau": 23, "roussel_fabien": 30.0, "nb_emargement": 1276.0, "nb_procuration": 69.0, "nb_vote_blanc": 12.0, "jadot_yannick": 90.0, "le_pen_marine": 71.0, "nb_exprime": 1260.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1616.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1276, "quartier_bv": "78", "geo_point_2d": [48.87140961574054, 2.4034009067758806], "melenchon_jean_luc": 418.0, "poutou_philippe": 7.0, "macron_emmanuel": 416.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.402719598978412, 48.86300720285548], [2.402726357158174, 48.86299519709979], [2.402797297666595, 48.86294503780902], [2.40288579062561, 48.86288190761267], [2.402886109523962, 48.86288167537497], [2.403059430176189, 48.86275023697302], [2.403227499182718, 48.86262047997135], [2.403228369058648, 48.86261974594947], [2.403316483741677, 48.86253837398501], [2.403420449154563, 48.862440713845146], [2.403417282244956, 48.86242825746257], [2.403248517703989, 48.862347751452816], [2.403082002610746, 48.86226832843212], [2.402913240469053, 48.86218782194477], [2.4027467263876803, 48.8621083993454], [2.402577963929433, 48.86202789146757], [2.402411450870432, 48.861948468390224], [2.402242690800929, 48.86186796093408], [2.402076178774513, 48.861788536479516], [2.401907419741149, 48.861708028538985], [2.401740907363674, 48.861628604498996], [2.40172345451125, 48.86161889608223], [2.401701913387522, 48.86163213643531], [2.40166226371704, 48.86166593785282], [2.401538853459752, 48.861775617046796], [2.401422559017256, 48.86187475632858], [2.401299147760697, 48.861984435254705], [2.401182852395943, 48.86208357428489], [2.4011824571143, 48.86208392934591], [2.401092960816073, 48.862168468448694], [2.400969548169998, 48.86227814700589], [2.400880052555678, 48.862362685941434], [2.400758213497475, 48.86247318155149], [2.400655964042768, 48.86256591150654], [2.400534124034023, 48.8626764068682], [2.400431873781602, 48.8627691366148], [2.400310032822204, 48.86287963172804], [2.400207780409127, 48.86297236125931], [2.400085939862204, 48.86308285613098], [2.399983686651392, 48.86317558545382], [2.399981613912801, 48.863177077861664], [2.399898119804686, 48.86322503300777], [2.3997810894927882, 48.86329224837962], [2.399737598444242, 48.86328372933063], [2.399719471346335, 48.86331051702857], [2.399701793845201, 48.86333389217897], [2.39970065523062, 48.86333428397665], [2.399684100394498, 48.86335273546491], [2.399607298318294, 48.863454291440505], [2.399512778369132, 48.863575588935845], [2.399418296514738, 48.863700519874975], [2.3993237756786883, 48.86382181719413], [2.399229294287565, 48.86394674796311], [2.39913477256472, 48.86406804510605], [2.399134679861522, 48.864068164252984], [2.399040767839021, 48.86418785365223], [2.398946243866431, 48.864309151512295], [2.398852329613617, 48.86442884073082], [2.398757806138384, 48.864550137523224], [2.398663891018213, 48.864669826567855], [2.398569366656706, 48.8647911240843], [2.398539669568632, 48.864803380346224], [2.39855816990018, 48.864810127537176], [2.398500446240623, 48.86488369126848], [2.398478515562919, 48.86491123755899], [2.3984712624924622, 48.86491594152737], [2.3984658793790232, 48.86493093974898], [2.398429686927626, 48.86497706486507], [2.398356548979579, 48.86507064769351], [2.398262633362272, 48.865190336373836], [2.398207733463245, 48.86526058298477], [2.398200059579208, 48.865277282015114], [2.398247305937341, 48.86529089545716], [2.398380214739691, 48.86530835700824], [2.398501043081168, 48.865325370981964], [2.398506531398867, 48.865325348201786], [2.398648012455018, 48.86530556230559], [2.398800256857792, 48.86528459461689], [2.3988147949277723, 48.865288842380494], [2.398902392934564, 48.86538720968573], [2.399010484663924, 48.86551018143892], [2.399098083412403, 48.86560854858127], [2.399206174699943, 48.865731520126296], [2.399293774190014, 48.86582988710575], [2.399333761581784, 48.86587537943159], [2.399355427108769, 48.86589458923271], [2.399380502056085, 48.86588576754281], [2.399469801786045, 48.86577733442204], [2.399575481591291, 48.865650036116065], [2.39966478052159, 48.86554160192746], [2.399770459372191, 48.86541430342217], [2.399859758845413, 48.865305869971166], [2.399965436741275, 48.865178571266576], [2.400054734041497, 48.86507013764014], [2.400160410982839, 48.86494283873634], [2.400249707483523, 48.86483440404207], [2.400236853149146, 48.864821136412694], [2.400044620323015, 48.86482931471359], [2.399853866171723, 48.864837516308924], [2.399661633225031, 48.86484569399457], [2.399470877590388, 48.864853894972526], [2.399278644523042, 48.864862072042904], [2.399087890131229, 48.86487027241714], [2.399074303125857, 48.8648580325265], [2.399116697269647, 48.86478625678923], [2.399147833237737, 48.86473409218674], [2.399153515623991, 48.86472964739569], [2.399302022313628, 48.86467080346922], [2.399457288629493, 48.86460922420683], [2.399605794632831, 48.86455037989702], [2.399761061593694, 48.8644888002407], [2.399909565537198, 48.864429956440006], [2.400064831780086, 48.864368376382885], [2.400213336410623, 48.86430953130645], [2.400368600572464, 48.864247950841715], [2.400364545554341, 48.864231465396536], [2.400112694862002, 48.86419439963218], [2.399886039763767, 48.86416130076018], [2.3998754615459412, 48.86415364289197], [2.3998671146156783, 48.864114640695504], [2.399856851331176, 48.86406083203281], [2.399863498049586, 48.864051944801275], [2.39999597641593, 48.86400086006987], [2.400118005548022, 48.86395338583104], [2.400240033094652, 48.86390591145894], [2.400372512083383, 48.86385482631078], [2.400388723309227, 48.863856036205206], [2.400439204601779, 48.86388732986487], [2.400490244802651, 48.86392016597344], [2.400506553845752, 48.86392152473296], [2.400658973830871, 48.86386414124405], [2.400832871011054, 48.86379819633828], [2.400985288902525, 48.8637408133199], [2.40115918662105, 48.86367486793947], [2.401340796086498, 48.863606574029454], [2.401514692906932, 48.86354062812446], [2.401696301438392, 48.863472333666735], [2.401870197360735, 48.86340638723721], [2.402051804947888, 48.863338093131], [2.402225699972143, 48.86327214617698], [2.402227673288558, 48.863271235107916], [2.402351608809528, 48.86320328380444], [2.402465126684798, 48.863140371528026], [2.402578644286007, 48.863077459140406], [2.402702577525193, 48.86300950745477], [2.402719598978412, 48.86300720285548]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 36, "zemmour_eric": 55.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "20-1", "circ_bv": "15", "num_bureau": 1, "roussel_fabien": 37.0, "nb_emargement": 1137.0, "nb_procuration": 61.0, "nb_vote_blanc": 14.0, "jadot_yannick": 111.0, "le_pen_marine": 41.0, "nb_exprime": 1119.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1419.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "79", "geo_point_2d": [48.86346390851652, 2.4007725185130706], "melenchon_jean_luc": 466.0, "poutou_philippe": 5.0, "macron_emmanuel": 301.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352552385821931, 48.897857557880535], [2.352485240241187, 48.89785531618784], [2.352301611016839, 48.89780657485095], [2.352118202377467, 48.897756795709945], [2.3519345738555453, 48.89770805290663], [2.351751165914207, 48.89765827319906], [2.351567538072228, 48.89760953072788], [2.351384130828924, 48.897559750453716], [2.35120050231415, 48.897511007407964], [2.351017097132817, 48.89746122657467], [2.350833469309188, 48.897412482961784], [2.350650064825894, 48.897362701561924], [2.350466437693413, 48.897313957381925], [2.3502830339080623, 48.89726417541547], [2.350099407477961, 48.89721542976907], [2.349916004390761, 48.89716564723614], [2.349732378640594, 48.8971169019218], [2.349548976251445, 48.89706711882231], [2.34936535119244, 48.89701837294085], [2.349181949501346, 48.89696858927482], [2.348998325133505, 48.89691984282625], [2.34881492414047, 48.896870058593684], [2.348631300463798, 48.89682131157794], [2.348447900168827, 48.89677152677884], [2.348264277194484, 48.8967227782968], [2.3480808775863222, 48.89667299383038], [2.347897255303265, 48.89662424478118], [2.347713856404434, 48.896574458848995], [2.347530234801297, 48.89652571013194], [2.347346836600541, 48.896475923633254], [2.347163215688589, 48.89642717434907], [2.346979818185913, 48.896377387283835], [2.34679619796515, 48.89632863743254], [2.346649873069846, 48.896288913992464], [2.346643495145639, 48.89628543570307], [2.346606423239959, 48.89627537150942], [2.346512406270886, 48.896178973085036], [2.34642330709993, 48.896094063242685], [2.346408064775815, 48.89609058692375], [2.346360024429815, 48.89610037282312], [2.346317140852941, 48.89610725506956], [2.34627487246916, 48.89610924476351], [2.346267392789151, 48.89611769261018], [2.346302214341029, 48.89618378032383], [2.346363990027421, 48.896299357197705], [2.346428066321967, 48.89642096482584], [2.346489843933087, 48.89653654161721], [2.346553919449708, 48.89665814914422], [2.34661569762166, 48.8967737258456], [2.34667977508798, 48.89689533328638], [2.346741552456855, 48.89701090989041], [2.346805630509172, 48.89713251723747], [2.346867408438889, 48.89724809375156], [2.346931487088288, 48.89736970010568], [2.346993265567574, 48.89748527742901], [2.347057344802983, 48.89760688368948], [2.347119125206964, 48.89772246093028], [2.34709951439191, 48.897733265445936], [2.346911757205736, 48.897662808945874], [2.346776347396964, 48.89760405722304], [2.346769986128919, 48.897602607898285], [2.346580292790127, 48.897592154511194], [2.346374395233645, 48.89757995584094], [2.346184702056718, 48.89756950182705], [2.345978804682521, 48.89755730247645], [2.345789111667675, 48.89754684783577], [2.34558321447567, 48.89753464780481], [2.345393521622812, 48.89752419253734], [2.3451876246018, 48.89751199272528], [2.344997931910937, 48.89750153683101], [2.344792035083647, 48.89748933543933], [2.344602342554689, 48.89747887891828], [2.344396445909724, 48.897466676846264], [2.344270315549103, 48.89745972344905], [2.344255910956805, 48.89746573746129], [2.34425397779003, 48.89748883306823], [2.344236533905734, 48.89759687610808], [2.344218019066588, 48.89770319737133], [2.344199502787879, 48.897809518613954], [2.34418205868308, 48.89791756161422], [2.344146651247215, 48.89794141008918], [2.344152968355351, 48.89795589043175], [2.344151263056724, 48.89802997141918], [2.344149987861784, 48.898156096493445], [2.344148725124864, 48.89821096326461], [2.344145757057137, 48.898339911898645], [2.344144481852697, 48.89846603603787], [2.344141515123979, 48.89859498464926], [2.344140238539051, 48.898721108751545], [2.344137271785185, 48.89885005733275], [2.344135995183723, 48.89897618140561], [2.344133028404912, 48.89910512995663], [2.344131751786914, 48.899231254000036], [2.344128784982956, 48.899360202520896], [2.344127508348421, 48.89948632653485], [2.344124541519518, 48.89961527502551], [2.344123266232439, 48.899741399017515], [2.344120298014396, 48.899870347470504], [2.344119022710787, 48.899996471433035], [2.344116054467791, 48.900125419855904], [2.344114779147654, 48.900251543788954], [2.344111812243509, 48.90038049218909], [2.344110535542834, 48.90050661608519], [2.344107568613742, 48.90063556445514], [2.344106291896531, 48.9007616883218], [2.344103324942289, 48.900890636661586], [2.34410204820854, 48.90101676049877], [2.344100772821303, 48.9011428852281], [2.344097804479064, 48.90127183261605], [2.344094853165469, 48.901292138284866], [2.344134851855156, 48.90130336045149], [2.344199605784444, 48.901304662010034], [2.344402602150609, 48.90130844161879], [2.34453869834251, 48.901311177593335], [2.344674795901529, 48.90131391431996], [2.344877792349585, 48.901317692224076], [2.344979157750061, 48.901319730506295], [2.345182154242882, 48.90132350789458], [2.345370281987947, 48.90132728910562], [2.345558408385102, 48.901331070912946], [2.3457614049640663, 48.901334847319454], [2.345949532792278, 48.90133862762062], [2.3461525294290793, 48.901342403364175], [2.34634065593767, 48.90134618394277], [2.346543653996334, 48.901349959030846], [2.346708930324134, 48.90135342370424], [2.346911927062519, 48.90135719905995], [2.347077203437812, 48.90136066322516], [2.347280200231131, 48.90136443795663], [2.347491860371923, 48.90136887377459], [2.34769485723859, 48.90137264690398], [2.347906517436821, 48.90137708288836], [2.34810951436555, 48.90138085531493], [2.348140640522304, 48.90138150675943], [2.348169322833382, 48.901382108023604], [2.348355031027633, 48.90138599817922], [2.34855802801237, 48.9013897707449], [2.348743736263001, 48.901393660297785], [2.348946733316926, 48.901397431305355], [2.349132440248747, 48.90140132114737], [2.349335438724735, 48.90140509150355], [2.349521145712822, 48.90140898074286], [2.349724142882894, 48.90141275043278], [2.349909851291375, 48.901416639076785], [2.350112848519453, 48.90142040810789], [2.350298556995508, 48.90142429524991], [2.350501554270361, 48.90142806452145], [2.350687262802751, 48.901431951060765], [2.350890260135597, 48.90143571967346], [2.35108281474775, 48.901439748821396], [2.351285812150842, 48.90144351586442], [2.35147836818648, 48.90144754438381], [2.351554364352948, 48.901448928917205], [2.351757361825853, 48.901452695160984], [2.351911840420204, 48.901455506956225], [2.351963078761914, 48.90144982444414], [2.351966197051109, 48.90142857072759], [2.35199244128514, 48.90129606741029], [2.352019362604192, 48.90116428089179], [2.352045606569766, 48.90103177753081], [2.352072527617554, 48.900899990968476], [2.352099448540333, 48.90076820348494], [2.352125693455115, 48.900635700965076], [2.352152614106531, 48.90050391343772], [2.352178857388847, 48.90037141086679], [2.352205777757818, 48.900239624194896], [2.352232020782781, 48.90010712068104], [2.352258940880501, 48.899975333965365], [2.3522851849896282, 48.89984283131446], [2.35231210482739, 48.899711043655735], [2.352338347303981, 48.89957854095378], [2.352338427402205, 48.89957802338084], [2.352351667232119, 48.899456952598555], [2.352368249908312, 48.89933273248641], [2.352381489595302, 48.8992116625729], [2.352398072122203, 48.89908744242878], [2.352411311688646, 48.898966371585594], [2.352427894055071, 48.898842152308696], [2.352441133489781, 48.89872108143506], [2.352457715718105, 48.89859686122698], [2.352470955009898, 48.89847579122216], [2.352487537088937, 48.898351570982086], [2.3524875638767, 48.89835139126349], [2.352500803047739, 48.89823032032896], [2.3525191603217612, 48.89811854181707], [2.3525323993490233, 48.897997471752575], [2.352550757837045, 48.897885693219386], [2.352552385821931, 48.897857557880535]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 27, "zemmour_eric": 46.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "18-13", "circ_bv": "18", "num_bureau": 13, "roussel_fabien": 12.0, "nb_emargement": 865.0, "nb_procuration": 28.0, "nb_vote_blanc": 11.0, "jadot_yannick": 31.0, "le_pen_marine": 54.0, "nb_exprime": 844.0, "nb_vote_nul": 10.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1231.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 865, "quartier_bv": "70", "geo_point_2d": [48.89925108768749, 2.348221887704972], "melenchon_jean_luc": 472.0, "poutou_philippe": 7.0, "macron_emmanuel": 167.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.403061919049621, 48.83606820363894], [2.403039670703315, 48.83607800718422], [2.403007812794517, 48.83611903182197], [2.402966209126863, 48.836167596631476], [2.402930936995515, 48.83621301827829], [2.402927661024323, 48.836238063576566], [2.402973394321914, 48.836252291339235], [2.403125270613682, 48.83636762185063], [2.403269668603743, 48.83647814012916], [2.403421544836542, 48.83659347113356], [2.4035659440804222, 48.836703989032124], [2.40356910711803, 48.83670843506421], [2.403602886947506, 48.836844501673895], [2.403636573041127, 48.83698722846707], [2.403670353227388, 48.837123295023794], [2.403704041058566, 48.83726602086988], [2.403737821591335, 48.83740208827297], [2.403771508425065, 48.837544814057665], [2.403805289314732, 48.83768088140769], [2.403838977875656, 48.83782360714461], [2.403839002577568, 48.83782371069433], [2.403872783834359, 48.83795977709207], [2.403904336222513, 48.83808393830014], [2.403938117818507, 48.83822000464778], [2.403969671882106, 48.83834416581651], [2.40400345381731, 48.838480232113994], [2.404035006842062, 48.83860439233048], [2.404068789106196, 48.83874045947712], [2.404100343806415, 48.83886461965428], [2.404131897284377, 48.838988780701854], [2.404165680060856, 48.839124846874995], [2.404152457589764, 48.83915247322495], [2.4041700502546712, 48.839165660941795], [2.404314291491355, 48.83917834621338], [2.40438622363841, 48.8391890227632], [2.404400350616657, 48.83918393617], [2.404492983771789, 48.83905392981903], [2.40458824906089, 48.83892306050767], [2.404680881283736, 48.838793053980794], [2.40477614562427, 48.83866218448926], [2.4048687769148422, 48.838532177786554], [2.404964040306824, 48.83840130811481], [2.405056670665036, 48.83827130123624], [2.405151933108478, 48.838140431384325], [2.4051698464373272, 48.83813613787648], [2.405349351347428, 48.83818994879363], [2.405554646100002, 48.83825297834608], [2.405734153172022, 48.83830678868697], [2.405901281301012, 48.83835809910531], [2.4059339254872922, 48.838350810924766], [2.405926282192487, 48.83831327320468], [2.405918284060719, 48.838273996154804], [2.405901167350355, 48.83827067704102], [2.405811542569313, 48.83815944766174], [2.40572244342267, 48.838049589641734], [2.405632820765543, 48.837938360113355], [2.405543722383754, 48.837828501039176], [2.405454100488144, 48.83771727135488], [2.405365002850688, 48.83760741302517], [2.405275381716586, 48.837496183184975], [2.405186284843972, 48.837386323801105], [2.405096664461106, 48.83727509470432], [2.405007568343064, 48.837165235165614], [2.404917947369593, 48.83705400500684], [2.404828853358207, 48.836944146219416], [2.404739233146224, 48.83683291590473], [2.404650139899657, 48.83672305606313], [2.404560520449153, 48.836611825592605], [2.404471427946854, 48.83650196649548], [2.40438180925782, 48.83639073586904], [2.404292717510049, 48.8362808766171], [2.404203099582475, 48.836169645834815], [2.404114007237176, 48.83605978552197], [2.404101220859168, 48.83605505142974], [2.403938750195805, 48.83606117689641], [2.403771066504635, 48.83606567798931], [2.403608595779645, 48.83607180210818], [2.403440912015395, 48.83607630363751], [2.403278441218499, 48.836082427307915], [2.403110756039523, 48.836086927468244], [2.403061919049621, 48.83606820363894]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 75, "zemmour_eric": 88.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "12-64", "circ_bv": "08", "num_bureau": 64, "roussel_fabien": 20.0, "nb_emargement": 1098.0, "nb_procuration": 46.0, "nb_vote_blanc": 12.0, "jadot_yannick": 114.0, "le_pen_marine": 66.0, "nb_exprime": 1084.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1287.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1098, "quartier_bv": "45", "geo_point_2d": [48.83749199577141, 2.404371533983016], "melenchon_jean_luc": 284.0, "poutou_philippe": 3.0, "macron_emmanuel": 384.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.308211270074663, 48.88698784293448], [2.3082122527835702, 48.886986344032024], [2.308239273906856, 48.88696672836335], [2.308365022235486, 48.88687227593511], [2.30849673693677, 48.88677665452258], [2.308622484327464, 48.88668220270687], [2.308754199438737, 48.886586581002504], [2.308879945903445, 48.886492128900066], [2.309011658709568, 48.88639650598878], [2.309137404248299, 48.88630205359966], [2.3092691160889522, 48.88620643128785], [2.309394860701714, 48.88611197861199], [2.309526572964288, 48.88601635510906], [2.30956419460014, 48.88598809563237], [2.309569795727632, 48.88598076420599], [2.309525947078378, 48.88595515829579], [2.309363955121526, 48.88590344505663], [2.3092004154020103, 48.88585123882375], [2.309038424079676, 48.885799526038525], [2.308874886388432, 48.885747318464695], [2.308712894349128, 48.88569560522629], [2.308549357298671, 48.8856433981022], [2.308387367281473, 48.88559168352712], [2.308223830883737, 48.88553947595343], [2.308061840137534, 48.88548776182443], [2.307898304392417, 48.88543555380119], [2.307891771952289, 48.885429013870194], [2.307874491725078, 48.88542795169475], [2.307708812195846, 48.88537505831478], [2.307553436930335, 48.8853254546958], [2.307398061960728, 48.885275850873], [2.307232383387378, 48.88522295772573], [2.307222232187715, 48.885214751039825], [2.307203004706762, 48.88521758329952], [2.306997908041215, 48.88522010971311], [2.306793562868989, 48.88522262663647], [2.3065884661756932, 48.88522515144941], [2.306384120963898, 48.88522766767393], [2.306179025582422, 48.885230192692724], [2.305974680331063, 48.885232708218496], [2.305968468060745, 48.88523378198455], [2.305801301184562, 48.88529315806358], [2.305637285329801, 48.88535141542624], [2.305473269108059, 48.88540967256108], [2.305306101090614, 48.885469048838495], [2.305142082764251, 48.88552730550558], [2.304974915355172, 48.88558668132215], [2.304967786537628, 48.88559389125506], [2.304952383794702, 48.88572260688168], [2.3049367935987872, 48.885852896133684], [2.304921390702642, 48.885981611726], [2.304905800351741, 48.886111900943305], [2.304890397302376, 48.88624061650127], [2.304874805444754, 48.88637090477663], [2.304859403593696, 48.886499621207456], [2.304843811580974, 48.88662990944811], [2.304828408225159, 48.88675862493742], [2.304812817408977, 48.88688891405047], [2.304797413899934, 48.88701762950544], [2.304781822928655, 48.88714791858376], [2.30476360127625, 48.887160742461894], [2.304767302294113, 48.88717035621475], [2.304773618618211, 48.88717468449675], [2.30478664220217, 48.88717898337359], [2.304790120193668, 48.88717976620026], [2.304974766498579, 48.887203659577374], [2.3051599398353693, 48.8872276204785], [2.305344586491552, 48.88725151238498], [2.305529760168677, 48.88727547271317], [2.305714407152332, 48.88729936494758], [2.30589957980613, 48.887323324694854], [2.306084228492705, 48.887347216365846], [2.306269401486825, 48.88737117554019], [2.3064540491491963, 48.887395066631946], [2.3066392238471938, 48.88741902524117], [2.306823871848913, 48.887442915761596], [2.307009045523658, 48.88746687379001], [2.307193695240245, 48.887490762847726], [2.307378869243328, 48.88751472120237], [2.307443241708042, 48.88755208030993], [2.307462854672361, 48.88753837464116], [2.307563853114153, 48.887462948261536], [2.307695570792564, 48.88736732688248], [2.307826462598023, 48.887269575460834], [2.307958180656871, 48.8871739546832], [2.308089071495136, 48.88707620205799], [2.30819376606958, 48.887000197530355], [2.308211270074663, 48.88698784293448]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 165, "zemmour_eric": 149.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-49", "circ_bv": "04", "num_bureau": 49, "roussel_fabien": 7.0, "nb_emargement": 1182.0, "nb_procuration": 65.0, "nb_vote_blanc": 11.0, "jadot_yannick": 50.0, "le_pen_marine": 57.0, "nb_exprime": 1167.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1395.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1182, "quartier_bv": "66", "geo_point_2d": [48.88631988449243, 2.306837732494185], "melenchon_jean_luc": 123.0, "poutou_philippe": 1.0, "macron_emmanuel": 588.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.391982229045942, 48.84280618886307], [2.392001870789693, 48.84277812527291], [2.392117198008048, 48.84269228027824], [2.392243038151279, 48.842584485763275], [2.392367263904331, 48.842478145265794], [2.392493103013451, 48.842370350467135], [2.392617327735322, 48.84226401058884], [2.392743165820721, 48.84215621460717], [2.392867389522009, 48.842049874448854], [2.3929932265732132, 48.841942078183386], [2.393117449254027, 48.84183573774501], [2.393243285260477, 48.84172794209516], [2.393367506931196, 48.841621600477396], [2.393493340541, 48.84151380453695], [2.393617561191165, 48.84140746263917], [2.393743395129285, 48.841299666421904], [2.393742675612691, 48.84129826966713], [2.393698585943675, 48.841283369561815], [2.393549000700137, 48.841176262018635], [2.39339706936385, 48.84107118302612], [2.393383848019464, 48.84106867781662], [2.393206484898213, 48.84109851030895], [2.393026541016382, 48.84112822062135], [2.392849177488103, 48.84115805258232], [2.392669233196931, 48.84118776235562], [2.392491867899063, 48.84121759377834], [2.3923119245507403, 48.84124730391883], [2.392134558856136, 48.84127713391087], [2.391954613736113, 48.84130684350542], [2.391937821674463, 48.84129939419259], [2.391908895297628, 48.84116614187716], [2.3918834772845132, 48.84103886833211], [2.39185455255366, 48.84090561597937], [2.3918291347897, 48.840778343292364], [2.391800210352951, 48.84064508999612], [2.391774791486288, 48.84051781726095], [2.391768095308219, 48.840496872181205], [2.391752397773864, 48.840491745153564], [2.391626756401004, 48.84051830560308], [2.391426760308548, 48.840561661860804], [2.391239256544186, 48.840601299546755], [2.391039258458996, 48.84064465424721], [2.390851754101284, 48.84068429132282], [2.390651756727358, 48.84072764627843], [2.390464251776401, 48.84076728274373], [2.3902642537721173, 48.84081063614896], [2.39007674686557, 48.84085027199697], [2.389876748220525, 48.840893624751146], [2.389689242083102, 48.840933259995786], [2.38948924278687, 48.840976612998205], [2.389301734693761, 48.84101624762556], [2.389301543457328, 48.84101628891918], [2.389285745992529, 48.84102272053874], [2.38928825461698, 48.841046422498096], [2.389334326838255, 48.84113492002137], [2.38941278261952, 48.84128991872243], [2.3894588552569402, 48.841378417077756], [2.389475002661369, 48.84138422571487], [2.389627177837017, 48.84135945684094], [2.389788352610041, 48.8413393213169], [2.389803620484474, 48.841344959041635], [2.389862936735404, 48.84144784889337], [2.389912856885446, 48.84153796124545], [2.389962777197577, 48.841628074468794], [2.390022094095425, 48.8417309633162], [2.390014075628965, 48.84174259971649], [2.38987562737818, 48.84177630677725], [2.389738377285913, 48.841809956834716], [2.389599928667476, 48.84184366447368], [2.389462676867886, 48.8418773133066], [2.389454509566895, 48.841888615246596], [2.389520272099084, 48.84201743247919], [2.389580853573392, 48.842139469032546], [2.389646616734264, 48.84226828616674], [2.3897071987959873, 48.84239032262866], [2.389767781130883, 48.84251235994585], [2.389833545234901, 48.84264117603497], [2.389838599714097, 48.84264565184376], [2.389983319777733, 48.842713079163374], [2.390157295272644, 48.842794412036994], [2.390302016151125, 48.842861839861456], [2.390475991287944, 48.8429431713545], [2.390620714354311, 48.84301059879136], [2.390794690474511, 48.84309193070941], [2.3909394130142543, 48.84315935684549], [2.391113390128353, 48.843240688289214], [2.391258114855988, 48.843308114037704], [2.391276122076272, 48.84330676669327], [2.391386092686341, 48.84322570314555], [2.391501421909337, 48.84313985877892], [2.391611391816807, 48.84305879501197], [2.3917267202888812, 48.84297295131463], [2.3918366881312503, 48.84289188732153], [2.391952017235913, 48.84280604250177], [2.391982229045942, 48.84280618886307]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 45, "zemmour_eric": 85.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "12-9", "circ_bv": "08", "num_bureau": 9, "roussel_fabien": 21.0, "nb_emargement": 1068.0, "nb_procuration": 39.0, "nb_vote_blanc": 15.0, "jadot_yannick": 79.0, "le_pen_marine": 86.0, "nb_exprime": 1051.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1446.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1068, "quartier_bv": "46", "geo_point_2d": [48.841819283031846, 2.39126656267054], "melenchon_jean_luc": 436.0, "poutou_philippe": 7.0, "macron_emmanuel": 248.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.378360102696906, 48.87080356918667], [2.378292382851363, 48.87077370031765], [2.378093036726994, 48.870713797714814], [2.377884476004223, 48.87065222807476], [2.377685130813814, 48.87059232478601], [2.377476571059547, 48.870530754428486], [2.377470207314194, 48.87051819805586], [2.3775575262696282, 48.87041391351113], [2.377643878719981, 48.870310507018985], [2.377731196979674, 48.870206222328015], [2.377817548751608, 48.87010281479184], [2.377904866304727, 48.86999853085385], [2.377991217387708, 48.869895123172995], [2.37807853561885, 48.869790838196494], [2.378164884638838, 48.86968743126312], [2.378160627207763, 48.869675663788215], [2.377967455519702, 48.86958871029967], [2.377777555701871, 48.86950294893322], [2.377584383930542, 48.869415994805756], [2.377394486736127, 48.86933023282527], [2.377385111843259, 48.86932051706962], [2.377369178665469, 48.86932000969985], [2.377220821326223, 48.869263951926264], [2.377072459555106, 48.8692077212682], [2.376924101491881, 48.86915166311399], [2.376775740350114, 48.86909543298172], [2.376627384289093, 48.869039374461174], [2.376479023798289, 48.868983143056106], [2.376460770224278, 48.8689860733408], [2.376342884069071, 48.869106909465906], [2.37622518819872, 48.8692275198229], [2.376107300950725, 48.869348355689596], [2.375989605341714, 48.86946896669498], [2.375871717011592, 48.869589801403976], [2.375754020311582, 48.86971041215133], [2.375636130888553, 48.86983124660193], [2.375518433097531, 48.86995185709132], [2.375501257170384, 48.869955154385536], [2.375401200758576, 48.869924687039536], [2.375206487757444, 48.869866063699014], [2.3750367221152002, 48.86981490799944], [2.374842008560501, 48.869756284952395], [2.374672245007973, 48.869705127838635], [2.374477532273914, 48.86964650419279], [2.374307768063095, 48.869595347449206], [2.374113057523485, 48.869536722312525], [2.373943294028383, 48.86948556504691], [2.373926227696067, 48.8694888222192], [2.373829014490137, 48.86958681555756], [2.373729016924143, 48.86968720626763], [2.373631804340201, 48.86978519943535], [2.373531806013407, 48.86988558996269], [2.373434592688243, 48.86998358295264], [2.373334593600437, 48.87008397329718], [2.373237379523224, 48.870181967008634], [2.3731373796853212, 48.87028235627112], [2.373040163503641, 48.87038034979766], [2.372955691680528, 48.87046515016325], [2.372937509365534, 48.870475690481896], [2.372938041940238, 48.8704808257939], [2.372922513143743, 48.87049641540479], [2.37291746907202, 48.87050104934847], [2.372909581831252, 48.870538921417534], [2.372918566836583, 48.87056251405653], [2.373077401144214, 48.870620081709184], [2.3732596771074093, 48.87068800815439], [2.373418512185498, 48.87074557444858], [2.373600789021726, 48.87081350126587], [2.373601527193038, 48.870813789319605], [2.373758734533771, 48.87087957916981], [2.373941012282581, 48.87094750546077], [2.374098219092402, 48.87101329485004], [2.374211109361093, 48.87106443866258], [2.374212365707602, 48.871064944363155], [2.374375357462362, 48.871127350636755], [2.374543115902853, 48.87118690461052], [2.374717483832439, 48.8712494301065], [2.37488524304656, 48.8713089844935], [2.37505961315863, 48.87137150949132], [2.375227371804617, 48.87143106248582], [2.375401742736018, 48.87149358697837], [2.375569503518798, 48.87155314039318], [2.37574387390638, 48.87161566437331], [2.375911635484162, 48.871675216402764], [2.37608600669107, 48.87173773987761], [2.376253769042402, 48.87179729232023], [2.376428142431907, 48.87185981529684], [2.376595904215065, 48.871919366347015], [2.376763667734424, 48.87197891806524], [2.376938042343983, 48.872041440288804], [2.376979976833088, 48.87206026672861], [2.376999173102074, 48.872056573240656], [2.377026212960931, 48.872051369216585], [2.37704463279804, 48.87202824061917], [2.377155424330969, 48.87191875457836], [2.377276137489936, 48.87179936348892], [2.377386928049446, 48.87168987721109], [2.377507638784123, 48.871570485856374], [2.3776184297226353, 48.87146100024799], [2.377739139407144, 48.8713416077358], [2.377849928009008, 48.87123212188337], [2.377970637995658, 48.87111272912004], [2.377971594113233, 48.871111893208585], [2.378097822318264, 48.87101270111452], [2.378263759797075, 48.87088396957148], [2.378350514573967, 48.870815795343795], [2.378360102696906, 48.87080356918667]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 24, "zemmour_eric": 42.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "11-31", "circ_bv": "06", "num_bureau": 31, "roussel_fabien": 22.0, "nb_emargement": 1416.0, "nb_procuration": 70.0, "nb_vote_blanc": 27.0, "jadot_yannick": 108.0, "le_pen_marine": 62.0, "nb_exprime": 1380.0, "nb_vote_nul": 10.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1917.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1417, "quartier_bv": "41", "geo_point_2d": [48.87050526949638, 2.3759189654015604], "melenchon_jean_luc": 733.0, "poutou_philippe": 11.0, "macron_emmanuel": 314.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.396078257105748, 48.854373273781135], [2.3960234583430813, 48.854345695654565], [2.395856289917289, 48.85430472548509], [2.39569570001825, 48.854265542033936], [2.395535111723538, 48.85422635837277], [2.395367944064474, 48.854185387516665], [2.395207354900557, 48.85414620340587], [2.395040189129597, 48.85410523119654], [2.394879600448637, 48.85406604754237], [2.394712433829843, 48.85402507486532], [2.394694823532912, 48.854030541062485], [2.394675146590212, 48.85406772944608], [2.394656380101965, 48.85410408873453], [2.394639076099592, 48.85410969946934], [2.394468774769928, 48.85407132230482], [2.394260107620056, 48.85402452523036], [2.394089806847879, 48.85398614752351], [2.3938811403795492, 48.85393934978462], [2.393710841527559, 48.85390097154234], [2.393502174367408, 48.85385417403141], [2.393331876083483, 48.85381579434757], [2.393123209604676, 48.853768996172164], [2.392952911867781, 48.85373061684534], [2.392928659206662, 48.85372564990379], [2.392922765620172, 48.85372827668181], [2.392884710795037, 48.85382535637447], [2.3928352832422912, 48.85395187161182], [2.392783056931841, 48.85408510154599], [2.3927336302486992, 48.8542116167187], [2.392681403407414, 48.854344847476675], [2.392631976231073, 48.854471362577826], [2.392579748869627, 48.854604593260255], [2.392530319837259, 48.85473110828292], [2.39247809195554, 48.85486433888989], [2.392428663792774, 48.854990853847895], [2.392376435401264, 48.855124083480014], [2.392327005382445, 48.85525059835953], [2.392274777822997, 48.85538382882238], [2.392225347310942, 48.855510343630336], [2.392219801017638, 48.855515541573155], [2.3920584047166003, 48.85558778385804], [2.391896112831688, 48.855660351432334], [2.391734715622825, 48.855732594170526], [2.391572422835973, 48.85580516129637], [2.391567338829825, 48.85580939475927], [2.391496398021677, 48.855931834628045], [2.3914251075858273, 48.856054307739406], [2.391354167472763, 48.85617674750378], [2.391282876367507, 48.85629922050339], [2.391211934234517, 48.85642165925024], [2.391140642449234, 48.85654413303738], [2.391069701011426, 48.85666657167985], [2.390998408567329, 48.85678904445596], [2.390927465088346, 48.85691148387944], [2.390856171974813, 48.85703395654379], [2.390785229191104, 48.85715639586285], [2.3907139354080282, 48.85727886841548], [2.390642990593725, 48.857401307616264], [2.390571696141296, 48.8575237800571], [2.39050075202206, 48.857646219153494], [2.390429456900171, 48.85776869148258], [2.390358510760933, 48.85789112956143], [2.390287214959049, 48.858013602678014], [2.390280571301707, 48.85801842709762], [2.390124078991526, 48.85806892836389], [2.389938489297164, 48.85812994733811], [2.389907580871681, 48.8581243981793], [2.389893063110637, 48.8581456512655], [2.389892142413988, 48.85815036634177], [2.389907769883919, 48.858243510387226], [2.389931010432397, 48.858352763654516], [2.389961563355468, 48.85838822145255], [2.389963717976987, 48.858388125414216], [2.389993540416295, 48.858378994387095], [2.3901840458278443, 48.858322282175315], [2.390371585125664, 48.8582648602535], [2.390562089708509, 48.85820814743407], [2.390749626815965, 48.85815072490695], [2.39094013193281, 48.85809401148682], [2.391127668223421, 48.85803658746209], [2.391318171148545, 48.857979873427354], [2.391505707964087, 48.8579224497105], [2.391693243003253, 48.85786502568984], [2.391883744685474, 48.85780831074597], [2.392071280270669, 48.85775088523462], [2.392261781124068, 48.85769416968314], [2.39226440347819, 48.8576931154767], [2.39241907157752, 48.85761386802162], [2.392573395176645, 48.85753396748764], [2.392728063696577, 48.85745471962877], [2.392882386350491, 48.857374818684846], [2.393037053938405, 48.85729556951598], [2.393191375636636, 48.85721566906139], [2.393346040919273, 48.85713641947488], [2.393500363035189, 48.857056518617284], [2.39365502737544, 48.85697726862005], [2.393809348546156, 48.85689736735253], [2.393964011944027, 48.85681811694459], [2.394118332180007, 48.85673821436787], [2.394272994625142, 48.8566589644485], [2.394427313915824, 48.85657906146186], [2.394514220855114, 48.85655618835677], [2.394501390234711, 48.856525582495514], [2.394588172929336, 48.85639456937041], [2.394679483058582, 48.85626024878757], [2.394766263500633, 48.856129235495054], [2.394857574068661, 48.855994914751115], [2.394944353610569, 48.85586390219747], [2.39503566325453, 48.85572958128557], [2.395122441917195, 48.855598567672196], [2.395215707154043, 48.85547674483002], [2.395216137868556, 48.85547615433647], [2.395306475114989, 48.85536302680168], [2.395399739489538, 48.85524120468951], [2.395490075929917, 48.85512807699216], [2.395583340817507, 48.85500625471807], [2.395673675089115, 48.854893126851316], [2.395766939126927, 48.854771304408324], [2.395857272592708, 48.854658176379075], [2.395950535780647, 48.854536353767195], [2.396040868440512, 48.85442322557542], [2.396072086010579, 48.85438244837115], [2.396078257105748, 48.854373273781135]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 68, "zemmour_eric": 110.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-46", "circ_bv": "06", "num_bureau": 46, "roussel_fabien": 27.0, "nb_emargement": 1389.0, "nb_procuration": 68.0, "nb_vote_blanc": 19.0, "jadot_yannick": 82.0, "le_pen_marine": 93.0, "nb_exprime": 1373.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1834.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1395, "quartier_bv": "44", "geo_point_2d": [48.85587901796178, 2.3931328591737064], "melenchon_jean_luc": 610.0, "poutou_philippe": 10.0, "macron_emmanuel": 315.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305383134290451, 48.84680203802523], [2.305401227157745, 48.84683154416669], [2.305379588424119, 48.84696112744246], [2.305358272246081, 48.84708776805695], [2.305336633287273, 48.84721735219448], [2.305315316912138, 48.847343991872926], [2.305293677740129, 48.847473575972856], [2.305272362518325, 48.84760021562239], [2.30527512805601, 48.847606711591716], [2.305407105523321, 48.84771929927604], [2.305535040908607, 48.847827758645806], [2.305662978188941, 48.847936217876025], [2.305794957340627, 48.848048804199955], [2.305872789394726, 48.84809551180249], [2.305880826222994, 48.84809145463866], [2.3059389655836, 48.84805427861981], [2.306010810184175, 48.8480095941494], [2.306029456786891, 48.848003000259574], [2.306046393027021, 48.847987821923226], [2.306125976326817, 48.84793832391178], [2.306277337351777, 48.8478362210359], [2.306428764086128, 48.847742037232635], [2.306580123947759, 48.847639933955676], [2.306731549552584, 48.847545750651896], [2.306882906900241, 48.847443646066694], [2.307034331387516, 48.84734946236314], [2.30718568892252, 48.84724735828411], [2.307337112292256, 48.84715317418068], [2.307353344467437, 48.847151958685], [2.307533568044421, 48.847221625153956], [2.307728330680776, 48.847285957710376], [2.307908555222338, 48.8473556236061], [2.3081033174717, 48.84741995463718], [2.30810477279842, 48.84742036776685], [2.308278336105369, 48.84746077157322], [2.308468594458848, 48.847506283773974], [2.308642159696521, 48.847546687057324], [2.308832418681392, 48.847592198676], [2.309005983136672, 48.84763260052129], [2.309196242752927, 48.8476781115579], [2.309369809126999, 48.8477185137794], [2.309560068012111, 48.84776402422604], [2.309733634954378, 48.84780442591666], [2.309923895833391, 48.84784993578911], [2.31009746198132, 48.8478903369409], [2.310287723491704, 48.84793584623127], [2.310461291570346, 48.847976246859986], [2.310520979557785, 48.84800798128857], [2.310572266300672, 48.847967935949285], [2.310706639981813, 48.847882469460856], [2.31084847813037, 48.84779123233674], [2.310982849552166, 48.847705764617395], [2.31112468673622, 48.847614527151364], [2.311259058612031, 48.84752905911611], [2.311400893468968, 48.847437821300325], [2.311535264424295, 48.84735235384058], [2.31167709969124, 48.84726111479143], [2.311811468375362, 48.847175647000086], [2.311953302665944, 48.847084408508316], [2.31208767181586, 48.84699893950176], [2.31218630788375, 48.846935488167944], [2.312197613099932, 48.84692410157528], [2.31214615891987, 48.8468932777802], [2.311960986222613, 48.846849339465905], [2.311776466473281, 48.84680551074246], [2.311591295762166, 48.84676157186039], [2.311406775272003, 48.846717742555484], [2.311221605184333, 48.846673803097794], [2.311037085303955, 48.846629974118564], [2.310851915839832, 48.8465860340852], [2.3106673965930202, 48.846542203633035], [2.310482227752451, 48.84649826302407], [2.3102977091273242, 48.846454431998296], [2.310112540910317, 48.84641049081371], [2.309928022894969, 48.84636666011361], [2.309742855301525, 48.846322718353385], [2.309558337919777, 48.84627888618041], [2.309373170949903, 48.84623494384454], [2.309188654189853, 48.846191111097966], [2.309180276440137, 48.84618536075629], [2.30913255461147, 48.84608575225395], [2.309086177526373, 48.845987406101386], [2.309038454696246, 48.845887797535966], [2.3089920779529542, 48.845789452228736], [2.3089827276040182, 48.845775872684776], [2.308961334615751, 48.84577746510313], [2.308799813090657, 48.84582199936442], [2.308621476793329, 48.845871822526775], [2.308431608520311, 48.84592417162816], [2.308253271533189, 48.845973993337836], [2.308253203142883, 48.84597401272839], [2.308076615152443, 48.84602344766779], [2.307898277474397, 48.84607326974315], [2.307721687448489, 48.84612270414639], [2.3075433490913833, 48.84617252568821], [2.307366758392484, 48.846221959563195], [2.3071884193564243, 48.84627178057154], [2.307011829347128, 48.84632121392607], [2.306833489632116, 48.8463710344009], [2.306656897587251, 48.84642046721929], [2.306478557205259, 48.84647028626131], [2.306301964475447, 48.84651971945068], [2.306123623414516, 48.846569537959205], [2.306108673377769, 48.84656637452721], [2.30609071068079, 48.846574247699344], [2.30592107810067, 48.8466313302118], [2.305752345316084, 48.84668313574152], [2.30558361084542, 48.84673494012369], [2.305413977186818, 48.846792021908925], [2.305383954376858, 48.84680123875557], [2.305383134290451, 48.84680203802523]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 197, "zemmour_eric": 165.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "15-24", "circ_bv": "12", "num_bureau": 24, "roussel_fabien": 16.0, "nb_emargement": 1256.0, "nb_procuration": 88.0, "nb_vote_blanc": 10.0, "jadot_yannick": 62.0, "le_pen_marine": 51.0, "nb_exprime": 1241.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1564.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1256, "quartier_bv": "58", "geo_point_2d": [48.846989707144424, 2.3085491144313623], "melenchon_jean_luc": 155.0, "poutou_philippe": 3.0, "macron_emmanuel": 555.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.384227777390783, 48.87928645700712], [2.3841989372142303, 48.879293521286925], [2.384179951099413, 48.87929817208559], [2.384177451118614, 48.87931333271793], [2.38407223933675, 48.87942664480981], [2.383967777524454, 48.87953933922232], [2.383862564840468, 48.87965265020739], [2.383758100747035, 48.8797653453061], [2.383652887150276, 48.87987865608366], [2.383548423513278, 48.87999135098327], [2.383443207640257, 48.88010466154631], [2.383338743106855, 48.88021735534058], [2.383233527673876, 48.88033066660235], [2.383129060869927, 48.880443360183506], [2.383023844534796, 48.8805566703385], [2.382919378176616, 48.88066936461985], [2.382814160928674, 48.880782674567264], [2.382709692299912, 48.88089536863553], [2.382604474139147, 48.881008678375416], [2.382500004613949, 48.88112137133825], [2.382394785529687, 48.88123468176991], [2.382290316460898, 48.88134737453368], [2.382185096474459, 48.88146068385851], [2.382080625124374, 48.881573377308364], [2.381975404225081, 48.88168668642567], [2.381870931967866, 48.88179937966942], [2.381765710155709, 48.88191268857915], [2.381661238365563, 48.88202538072454], [2.381660506338443, 48.88202628076828], [2.381578263962901, 48.88214294665407], [2.381485062627435, 48.882275171782005], [2.381485005751431, 48.88227525332695], [2.381468446144171, 48.882299367782174], [2.3814672642428922, 48.882303701831006], [2.381470191015842, 48.88233144411996], [2.381469940437043, 48.88236781073197], [2.381464034219118, 48.88238426669068], [2.381468028502746, 48.88238780099904], [2.381467476532619, 48.88246814136655], [2.38146881471859, 48.88252171491949], [2.381460179393687, 48.88253144059946], [2.38146889104579, 48.88254284231295], [2.381481565475776, 48.882555151235], [2.381498968220555, 48.8825752098043], [2.3815006657270272, 48.88258773990839], [2.381516402855648, 48.88259338804187], [2.381565659873786, 48.882650159813544], [2.381669283219077, 48.882770403580274], [2.381735943498263, 48.88284723380978], [2.38173744599443, 48.88285356833495], [2.381695298556717, 48.882984452777634], [2.381652758022308, 48.883116269561455], [2.381610610169916, 48.88324715304382], [2.381568069206548, 48.883378969766014], [2.381525920917911, 48.883509854086576], [2.381483379525575, 48.883641670747245], [2.381441230822249, 48.88377255410747], [2.381398687637361, 48.8839043706995], [2.381356538497872, 48.88403525489789], [2.38131399624758, 48.884167071435414], [2.381271846693292, 48.884297954673485], [2.381229304014015, 48.88442977114941], [2.3811871540341363, 48.88456065432638], [2.381144610925868, 48.88469247074071], [2.381156201995175, 48.884703262304775], [2.381348845314445, 48.884719672301706], [2.381526273289477, 48.884735024027094], [2.381703700016295, 48.884750374583035], [2.381896345045975, 48.8847667837054], [2.381910836432372, 48.88476106236303], [2.381980951831852, 48.88463950633272], [2.382051749113244, 48.88451711379873], [2.382121863855344, 48.88439555765892], [2.382192660463131, 48.884273165913704], [2.382262775911553, 48.88415160967145], [2.382333571867181, 48.88402921691652], [2.382352045280862, 48.8840242634011], [2.382545203766096, 48.88408329860929], [2.382725710243727, 48.88413869614934], [2.3829062157418113, 48.88419409340747], [2.383099375474549, 48.884253128611775], [2.383107195414807, 48.88426227277917], [2.3830849033943142, 48.88439571769034], [2.383062204723485, 48.884528255764856], [2.38303991247384, 48.88466170063543], [2.383017213583221, 48.88479423777007], [2.383022918228832, 48.884802603013796], [2.383143276618493, 48.884858324834106], [2.383281157622052, 48.88492228737288], [2.383351119961523, 48.88493431916505], [2.38335936483787, 48.884915997406466], [2.383442935094762, 48.88484419397707], [2.383567099556277, 48.88473637466644], [2.383686811041302, 48.884633519057104], [2.383810973132071, 48.88452569946594], [2.383930683661751, 48.8844228426938], [2.384054844745285, 48.8843150228291], [2.384174554298248, 48.884212166692684], [2.38429871437456, 48.884104346554416], [2.38441842296166, 48.88400149015452], [2.384542583394238, 48.883893669749675], [2.384662289651801, 48.88379081307923], [2.384786449077274, 48.883682992400864], [2.384906154368895, 48.883580135466886], [2.385030312787169, 48.883472314515004], [2.385150017112758, 48.883369457317514], [2.385208451728113, 48.883318711625144], [2.385225961210087, 48.883300878858236], [2.38522399394302, 48.88328651820465], [2.385289718044652, 48.88322944266837], [2.385409899948844, 48.88312427277935], [2.385530645335513, 48.88301880437961], [2.385650827619993, 48.882913635134884], [2.385771572030345, 48.882808166471975], [2.385891753342173, 48.88270299696525], [2.386012496776114, 48.882597528039206], [2.386132677126002, 48.882492357371234], [2.386253418209502, 48.882386889074304], [2.386373597586755, 48.88228171814436], [2.3864943390681113, 48.88217624869203], [2.386614517462141, 48.88207107839939], [2.386735257967218, 48.88196560868393], [2.386855435388532, 48.881860438129294], [2.386976174917441, 48.88175496815067], [2.387096351366151, 48.88164979733411], [2.387217088555281, 48.88154432708537], [2.387337264041978, 48.881439155107564], [2.387433169397406, 48.88135537794015], [2.387454228794254, 48.88134607332557], [2.387458005816042, 48.88134097907228], [2.387482838009225, 48.881319286628596], [2.387595871731521, 48.88122000170937], [2.387716608276109, 48.88111453092268], [2.387829641097759, 48.88101524666353], [2.387950376694227, 48.88090977562149], [2.388063408625817, 48.880810491123164], [2.388184143274175, 48.88070501982569], [2.388297174315816, 48.880605735088245], [2.388417908015968, 48.88050026353544], [2.388530938167567, 48.88040097855878], [2.388651670919625, 48.880295506750656], [2.388764700181189, 48.88019622153488], [2.388885431985165, 48.880090749471385], [2.388998460356703, 48.87999146401645], [2.389119191212603, 48.87988599169762], [2.389232218694124, 48.87978670600354], [2.389352948601958, 48.879681233429366], [2.38946597519347, 48.87958194749612], [2.389464996236693, 48.87957798815359], [2.389422260597705, 48.87955600374018], [2.389358385659964, 48.8795565134274], [2.389182402987511, 48.87955620202683], [2.3889564168134862, 48.87955800309119], [2.388780434138406, 48.879557691099734], [2.388554446580555, 48.879559491398375], [2.388378463892296, 48.8795591797153], [2.388375754696856, 48.87955707853122], [2.388315831846954, 48.87956821723979], [2.388315496449935, 48.87956821462677], [2.388127913431333, 48.87956483504795], [2.387944037824533, 48.8795615748542], [2.387756454853953, 48.87955819469332], [2.387572577930387, 48.879554933922044], [2.387384996360727, 48.87955155408538], [2.3872011194944482, 48.87954829184431], [2.387017242640621, 48.879545030220044], [2.3868296611532642, 48.87954164861398], [2.386645784346158, 48.87953838641919], [2.386458202896259, 48.87953500513033], [2.3864568143091702, 48.879534933262185], [2.386286132068278, 48.87952035892015], [2.386128552128293, 48.87950681829836], [2.385970973633615, 48.87949327747596], [2.385800291665202, 48.87947870244071], [2.385799699235745, 48.87947864274353], [2.385599376011385, 48.87945548772797], [2.385410505521566, 48.87943357648746], [2.385210181280124, 48.879410420812704], [2.385021311106864, 48.87938850985658], [2.384832441092526, 48.87936659860205], [2.384632118739715, 48.879343441066375], [2.384443249052561, 48.879321529196964], [2.384242927035629, 48.87929837190836], [2.384227777390783, 48.87928645700712]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 34, "zemmour_eric": 68.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "19-1", "circ_bv": "16", "num_bureau": 1, "roussel_fabien": 14.0, "nb_emargement": 1117.0, "nb_procuration": 54.0, "nb_vote_blanc": 10.0, "jadot_yannick": 89.0, "le_pen_marine": 51.0, "nb_exprime": 1100.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 0, "nb_inscrit": 1553.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1117, "quartier_bv": "76", "geo_point_2d": [48.88173150141201, 2.384628663346016], "melenchon_jean_luc": 477.0, "poutou_philippe": 7.0, "macron_emmanuel": 315.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389940400511669, 48.84448091678009], [2.38991035261342, 48.844469828260884], [2.389745508633593, 48.84439532291415], [2.389581288936466, 48.84432107233845], [2.389416447260108, 48.84424656653533], [2.38925222851105, 48.84417231459873], [2.389087387765069, 48.844097809231585], [2.388923169953544, 48.84402355683335], [2.388758330159018, 48.84394905010357], [2.388594111912045, 48.84387479813612], [2.388429273058331, 48.84380029094299], [2.388265057121973, 48.8437260376216], [2.388100841642978, 48.843651784969175], [2.387936004199781, 48.84357727708149], [2.38777178966887, 48.84350302306819], [2.387606953156014, 48.84342851561649], [2.387442738200105, 48.84335426113462], [2.387277902638721, 48.843279752320335], [2.387113689972283, 48.84320549828318], [2.3869488553518, 48.843130989005545], [2.386784643633457, 48.84305673360751], [2.386619809943291, 48.842982224765855], [2.386455599162463, 48.8429079689063], [2.386290765061271, 48.84283345869509], [2.38612655520737, 48.84275920327321], [2.385961723409579, 48.84268469260567], [2.385916576686025, 48.84265863666047], [2.38588947869685, 48.84267662144644], [2.385809310376162, 48.842758995004026], [2.385725918565371, 48.84284490172199], [2.385624210958928, 48.84294940659504], [2.385540818527772, 48.843035314068615], [2.3855371860379613, 48.84304200642837], [2.38557849094932, 48.84306582405662], [2.385611097617236, 48.843085563372874], [2.385654548316573, 48.84311241473952], [2.385656493221702, 48.84312404624456], [2.385545873307227, 48.84323112509266], [2.385437989240748, 48.84333494781631], [2.385327368429615, 48.84344202644211], [2.385219484853825, 48.8435458489561], [2.385108861783702, 48.843652927352636], [2.385000977335971, 48.84375674964991], [2.384998810733035, 48.84376022082817], [2.384969219539378, 48.84387982548244], [2.384931089221223, 48.844017637793506], [2.384901499088639, 48.844137242410426], [2.38486336840298, 48.84427505466814], [2.384833776606285, 48.84439465923369], [2.384795645553317, 48.84453247143797], [2.384766054817495, 48.84465207596617], [2.384727923397114, 48.84478988811709], [2.38469833235972, 48.84490949260092], [2.384660199209355, 48.84504730469139], [2.384630607870482, 48.84516690913087], [2.384592475704535, 48.84530472207428], [2.3845628840747, 48.845424325570036], [2.3845499163270523, 48.84543928801861], [2.384572123779748, 48.845461277326194], [2.384628501782899, 48.84560192280977], [2.384694633073242, 48.84574090603473], [2.384699203550844, 48.845745277032904], [2.384709071468633, 48.845749922599055], [2.384819186513036, 48.845801764809714], [2.384951203284402, 48.845870373804495], [2.384963772312485, 48.845871876492645], [2.3850915092023532, 48.845844992099885], [2.385227367216424, 48.84582689554851], [2.385238593215048, 48.845828698886535], [2.385386798862496, 48.84590724303624], [2.38554238315154, 48.84599253679088], [2.385690588360262, 48.846071080545705], [2.38584617364621, 48.84615637299339], [2.385994381130691, 48.84623491726666], [2.386149967402945, 48.84632020930676], [2.386156339769204, 48.84632016016127], [2.386184036094773, 48.84629028534512], [2.386268751819963, 48.846221378680845], [2.386366358227336, 48.8461381042995], [2.3863835128328352, 48.84613565969854], [2.386587545541917, 48.846206975425005], [2.386788259150737, 48.8462790049605], [2.386992292974878, 48.84635031998758], [2.387193007684599, 48.84642234973407], [2.387210671308786, 48.84641961443202], [2.387343107846665, 48.84629504385597], [2.387475017863252, 48.8461703490138], [2.387607453135935, 48.84604577811727], [2.387739361889018, 48.845921082955776], [2.387746881400016, 48.84591756718079], [2.387885438504699, 48.84589212289329], [2.388034124737508, 48.84586116324128], [2.38817268291458, 48.845835718626816], [2.3883213688158262, 48.84580475861628], [2.388327868889129, 48.84580183386591], [2.388436784063256, 48.845712851626715], [2.38856996933576, 48.84560547556897], [2.388678883675619, 48.84551649399304], [2.38881206794742, 48.845409117646874], [2.38892098147412, 48.84532013493556], [2.389054164734883, 48.84521275920028], [2.389163077437881, 48.84512377625289], [2.389210905142883, 48.845085215884005], [2.3892393193734582, 48.84507270879246], [2.38924075109152, 48.845067045655014], [2.38932610558807, 48.844998229078534], [2.389451167629919, 48.84489455005164], [2.389584347348115, 48.84478717367826], [2.389709408369775, 48.844683494361824], [2.389842588389773, 48.844576116788275], [2.389938135390956, 48.84449690390041], [2.389940400511669, 48.84448091678009]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 45, "zemmour_eric": 111.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-10", "circ_bv": "08", "num_bureau": 10, "roussel_fabien": 34.0, "nb_emargement": 1194.0, "nb_procuration": 59.0, "nb_vote_blanc": 13.0, "jadot_yannick": 86.0, "le_pen_marine": 63.0, "nb_exprime": 1176.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1536.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1194, "quartier_bv": "46", "geo_point_2d": [48.84466934046416, 2.3868623709421506], "melenchon_jean_luc": 413.0, "poutou_philippe": 8.0, "macron_emmanuel": 357.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.391320524990081, 48.86513006097341], [2.391294982611979, 48.865127584687876], [2.391239912631582, 48.86512934519377], [2.391185988309629, 48.86513175273215], [2.3911801975291063, 48.8651311800731], [2.391042132022684, 48.86509633958575], [2.390897321237437, 48.86506003555589], [2.39075925609813, 48.86502519563928], [2.39061444570777, 48.86498889126483], [2.390612888670533, 48.86498856946689], [2.390388756833323, 48.86495158930805], [2.3901749297984862, 48.86491654715197], [2.389961101677696, 48.86488150550508], [2.389736972126768, 48.86484452412906], [2.389727835579551, 48.86483947000998], [2.389654643367367, 48.8647314717196], [2.389579132485197, 48.86462000717652], [2.389505942252689, 48.86451200878074], [2.389430432006675, 48.86440054412174], [2.389409414674908, 48.86439722175118], [2.38920966287733, 48.86450384196531], [2.389011940778442, 48.86460992810031], [2.388998042520645, 48.86461095074627], [2.388987705663117, 48.8646213114469], [2.388986718547114, 48.86462179385037], [2.388802150267797, 48.864703792278235], [2.38862087316908, 48.864784763995196], [2.388436305088975, 48.86486676275309], [2.388255026854549, 48.86494773390399], [2.388249876366006, 48.86495207387874], [2.388179216138013, 48.86507872572175], [2.388108988195872, 48.86520475377912], [2.3880383272933, 48.86533140461073], [2.387968097306596, 48.86545743254971], [2.387897435718771, 48.86558408326925], [2.387827206413689, 48.86571011110374], [2.387822791953359, 48.86571410048225], [2.387754590903197, 48.86574917574227], [2.387691438138817, 48.86578211477559], [2.387675810327897, 48.86579027278102], [2.387677660131819, 48.865799551747294], [2.387615014037762, 48.86593723051638], [2.3875571323353793, 48.866062582078094], [2.387499248991324, 48.86618793359063], [2.387436601948127, 48.86632561311734], [2.387378719395487, 48.86645096364946], [2.38731607171743, 48.86658864308036], [2.387300758892963, 48.86662180249417], [2.387299457725554, 48.86663855053442], [2.387325001160329, 48.86664307097193], [2.387512903638009, 48.86670772484157], [2.387702568427369, 48.8667727912293], [2.387890470478411, 48.866837444491644], [2.388080136200979, 48.8669025111727], [2.388268040551653, 48.86696716384168], [2.388457707218205, 48.86703222991681], [2.388645612505377, 48.867096881985454], [2.388835280126261, 48.86716194655534], [2.389023184986881, 48.867226598016636], [2.389212853541089, 48.86729166287986], [2.389230588319807, 48.86728856882224], [2.389280617720109, 48.867237544693864], [2.389332598390744, 48.8671877464051], [2.389349571800979, 48.86718098723523], [2.3893500197000073, 48.86717045556024], [2.389445487914729, 48.86705039067336], [2.389537884346784, 48.86693428601146], [2.389633351706248, 48.866814220049804], [2.389725745937485, 48.8666981152112], [2.389818139756975, 48.86658201028903], [2.389913607188059, 48.86646194407257], [2.390006000159354, 48.86634583987992], [2.3901014653616413, 48.86622577348103], [2.390116603966882, 48.86622118844607], [2.390296540160425, 48.866248605165794], [2.390472029042892, 48.86627562483901], [2.390651964248391, 48.86630304101613], [2.390827453498478, 48.86633006016692], [2.390837194459196, 48.86632915554634], [2.390992904663111, 48.86627182453171], [2.391138639037223, 48.86621785466018], [2.391284371756766, 48.86616388370234], [2.391440080964152, 48.866106552996705], [2.391445868896732, 48.86609500972046], [2.391390891853555, 48.86601440292446], [2.391284605083783, 48.86585949877265], [2.391229628528161, 48.86577889278473], [2.391228479736399, 48.865774312897244], [2.391243913522639, 48.86566967402235], [2.391259449761465, 48.86556501137475], [2.391274884786488, 48.86546037248301], [2.391290420900773, 48.865355709811624], [2.391305854438481, 48.86525107088916], [2.391321390428026, 48.865146408193986], [2.391320524990081, 48.86513006097341]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 23, "zemmour_eric": 54.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-63", "circ_bv": "06", "num_bureau": 63, "roussel_fabien": 13.0, "nb_emargement": 1017.0, "nb_procuration": 20.0, "nb_vote_blanc": 12.0, "jadot_yannick": 37.0, "le_pen_marine": 74.0, "nb_exprime": 1001.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1438.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1019, "quartier_bv": "79", "geo_point_2d": [48.86585164854169, 2.3892974026730496], "melenchon_jean_luc": 606.0, "poutou_philippe": 8.0, "macron_emmanuel": 156.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.404647357834585, 48.87178481754342], [2.404637984283688, 48.87180038605976], [2.404683071012489, 48.871920001399516], [2.404728479237888, 48.87203917943221], [2.404773566370919, 48.87215879561133], [2.404818975011542, 48.87227797358392], [2.404864062559089, 48.87239758970304], [2.404909471614941, 48.872516767615544], [2.404954559587282, 48.872636382775454], [2.404999969048097, 48.872755561527136], [2.405045057434962, 48.872875176627105], [2.405090467321291, 48.87299435441937], [2.405084762135083, 48.87300744553616], [2.405099819441152, 48.873017912163654], [2.40513553319828, 48.87302405762486], [2.4053386362271842, 48.873059035492936], [2.405537480924915, 48.87309325081593], [2.40574058585684, 48.87312822800657], [2.405939431072489, 48.87316244355904], [2.406142535190976, 48.87319741915944], [2.406341382298104, 48.873231634048814], [2.406544486956387, 48.873266608965054], [2.406743333228376, 48.87330082317782], [2.406942179761593, 48.87333503705922], [2.407145286589696, 48.87337001095954], [2.4073441336510673, 48.87340422417108], [2.407547239655637, 48.87343919738044], [2.407746088608362, 48.8734734099289], [2.407949195152597, 48.87350838245409], [2.408148043270249, 48.873542594325926], [2.40835115035414, 48.873577566166915], [2.408361051317388, 48.87358811211055], [2.408322854074045, 48.873708349303726], [2.408285589849305, 48.8738264893453], [2.408247392256953, 48.87394672648841], [2.408210126327184, 48.87406486647426], [2.408171928396034, 48.874185102668065], [2.408134663487882, 48.87430324261162], [2.408096465197496, 48.874423479654645], [2.408059199947634, 48.87454161954918], [2.408058747260585, 48.87454270280389], [2.407994875999508, 48.874665087244686], [2.407929613594385, 48.87479048561283], [2.40786574171581, 48.874912870856505], [2.407800477325965, 48.875038269119344], [2.407736604850327, 48.87516065336735], [2.407671341202455, 48.87528605153838], [2.407679834777827, 48.87529748359286], [2.4078671617469, 48.87533962309519], [2.408051543965431, 48.87538092934855], [2.408238871535454, 48.87542306826603], [2.40842325570743, 48.87546437395046], [2.408610583878195, 48.875506512283096], [2.408794967277088, 48.87554781738514], [2.408982296048792, 48.87558995513293], [2.409166680027553, 48.8756312605586], [2.409169601073665, 48.87563168866784], [2.409360388363556, 48.875645427638744], [2.409549958492688, 48.87565902180446], [2.409740745993119, 48.87567275926957], [2.40993031768447, 48.87568635283937], [2.410121105375148, 48.87570009059723], [2.410310677265142, 48.87571368356434], [2.410501463792984, 48.87572742070891], [2.410691035881714, 48.87574101307339], [2.410881823973249, 48.87575474961818], [2.411071396260705, 48.87576834137997], [2.411262184552759, 48.875782077318206], [2.411451755675561, 48.875795668470644], [2.411642544167921, 48.87580940380234], [2.411832116852909, 48.87582299435875], [2.412021688273351, 48.87583658460814], [2.41221247706588, 48.87585031903102], [2.412402050048495, 48.87586390868442], [2.412592839051553, 48.87587764160145], [2.412608548373612, 48.87587789135702], [2.412618442655629, 48.87587113107793], [2.412647110119347, 48.87577404335645], [2.412684077214183, 48.87564969896807], [2.412703983945964, 48.875582281208004], [2.412716299697956, 48.87554056683439], [2.412753266451764, 48.87541622329763], [2.412788584504038, 48.87529661022152], [2.412825549558915, 48.87517226572894], [2.412832260152534, 48.87514953838391], [2.412871717049291, 48.875015903406364], [2.412908683059699, 48.87489155976241], [2.41294813956495, 48.87475792472839], [2.412985103856719, 48.8746335801258], [2.413024559970472, 48.87449994503541], [2.41306152524982, 48.874375601286104], [2.41310098097208, 48.874241966139245], [2.41313794453281, 48.87411762143133], [2.41314252643746, 48.874100355145394], [2.413119570012088, 48.87409586195418], [2.412942720052815, 48.87405150219908], [2.412764718378742, 48.8740070178177], [2.412587870386662, 48.87396265754152], [2.412409869309127, 48.87391817352817], [2.412233020557591, 48.873873812717484], [2.412055021460102, 48.87382932728034], [2.411878173312544, 48.87378496594183], [2.411700173448267, 48.87374048086602], [2.411523327267905, 48.873696119006404], [2.411345328020476, 48.87365163250009], [2.411345235570648, 48.87365160956219], [2.41116219913159, 48.873607350721485], [2.410985561382307, 48.87356416810734], [2.4108089225624942, 48.87352098522411], [2.410625888401587, 48.87347672556484], [2.410449250176503, 48.87343354214748], [2.4102662166284983, 48.87338928193478], [2.41025752852682, 48.87337911354824], [2.410299380374298, 48.87323779718832], [2.410341416737997, 48.87309798538985], [2.410383269505475, 48.87295666807202], [2.410425304043749, 48.87281685710103], [2.410467156357748, 48.872675539717925], [2.410509191817353, 48.87253572778929], [2.410551042304517, 48.872394411233465], [2.410593077312089, 48.87225459923981], [2.410593310096647, 48.87225342495749], [2.410606308990787, 48.87212346605391], [2.410619051481031, 48.87199230526126], [2.410632050245885, 48.87186234632413], [2.4106447939707, 48.871731185504444], [2.410657792606065, 48.87160122653381], [2.410670534838916, 48.87147006567366], [2.410683533344999, 48.871340106669514], [2.410696276812311, 48.87120894578234], [2.41070927518901, 48.87107898674465], [2.410722017154304, 48.8709478267163], [2.410735015411797, 48.870817866745874], [2.4107477586115422, 48.8706867066905], [2.410760756739653, 48.87055674668651], [2.410773499810805, 48.87042558659741], [2.410760794310995, 48.87041603786859], [2.410568131874, 48.870407631088405], [2.410378278157308, 48.87039907775198], [2.410185614471367, 48.87039067124855], [2.409995762252719, 48.870382116412756], [2.409803098691246, 48.870373709293496], [2.409613246597143, 48.87036515385083], [2.409420583160251, 48.87035674611577], [2.409230729827571, 48.87034819005955], [2.409038067878396, 48.870339781715394], [2.408848214660174, 48.870331225951595], [2.408824676626126, 48.870329628494865], [2.408816903145419, 48.87034116364291], [2.408797959194369, 48.87047122811819], [2.408783534228793, 48.87060383483236], [2.408783504218785, 48.87060407660515], [2.408769729016989, 48.87073588250631], [2.408755303906256, 48.87086848918528], [2.408741528563077, 48.87100029505162], [2.40872710330733, 48.87113290169551], [2.408713326459714, 48.87126470752033], [2.408698902422203, 48.87139731413579], [2.408685125433294, 48.871529119925825], [2.408670699887506, 48.8716617264994], [2.408656924120466, 48.87179353226137], [2.4086424984296553, 48.871926138799815], [2.408628722521425, 48.872057944526986], [2.408614296685592, 48.872190551030286], [2.408600520635968, 48.87232235672266], [2.408586094655107, 48.8724549631908], [2.408572317101002, 48.87258676884163], [2.408557892338402, 48.872719375281356], [2.408539044411949, 48.872727030805784], [2.408357440517745, 48.87267705133424], [2.40817686645714, 48.872627177400204], [2.407995263258698, 48.87257719737468], [2.407814689891044, 48.87252732288977], [2.407633087388163, 48.87247734231023], [2.407452513350282, 48.87242746726777], [2.407270911543066, 48.87237748613424], [2.407090339561328, 48.87232761054765], [2.406908738449885, 48.87227762886017], [2.4067281671611083, 48.87222775272269], [2.406709780012697, 48.87223360708289], [2.40668654742124, 48.87228794837514], [2.406664174710696, 48.87234231910407], [2.406645592107586, 48.872348212955195], [2.406475722186859, 48.872299604486074], [2.406317438725198, 48.87225453725713], [2.406159156910864, 48.87220946892457], [2.405989286533376, 48.8721608597522], [2.405831005277371, 48.8721157918812], [2.405661135521777, 48.872067181339766], [2.405653770311826, 48.87206005711953], [2.405630937697453, 48.87206002108878], [2.405471198792833, 48.872014789911994], [2.405267087231941, 48.87195672939705], [2.405107350313139, 48.87191149863659], [2.404903238199296, 48.871853437488994], [2.404743501923375, 48.8718082053395], [2.404679637509012, 48.87179003864349], [2.404647357834585, 48.87178481754342]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 49, "zemmour_eric": 75.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-29", "circ_bv": "15", "num_bureau": 29, "roussel_fabien": 25.0, "nb_emargement": 1214.0, "nb_procuration": 47.0, "nb_vote_blanc": 15.0, "jadot_yannick": 85.0, "le_pen_marine": 93.0, "nb_exprime": 1195.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1534.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1214, "quartier_bv": "78", "geo_point_2d": [48.87346983965403, 2.4094905594054747], "melenchon_jean_luc": 456.0, "poutou_philippe": 13.0, "macron_emmanuel": 340.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.400150463880788, 48.87843526931706], [2.400160827451156, 48.87841813506571], [2.400176773293484, 48.87837577292286], [2.400235397188564, 48.8782214593595], [2.4002795984826673, 48.87810402784004], [2.40027996205073, 48.87810253047933], [2.400292114881207, 48.87799512599263], [2.400306843588183, 48.877865432824144], [2.4003295792013972, 48.87785943127302], [2.400487392919445, 48.8779534506853], [2.400642978551987, 48.87804611062891], [2.400800792038012, 48.87814012960534], [2.400956380149131, 48.878232789132745], [2.401114194766565, 48.87832680768009], [2.401269782629603, 48.87841946677768], [2.4014275997418952, 48.87851348490279], [2.40158318872009, 48.87860614357733], [2.401609018217895, 48.878607980513216], [2.401617424789884, 48.87858846662716], [2.4016246867926663, 48.8785463369921], [2.401647292017884, 48.8784207939415], [2.401665884557552, 48.878312918821734], [2.401688489582152, 48.87818737573672], [2.401707083316594, 48.87807950059454], [2.401707165462708, 48.878079115192826], [2.401735204057578, 48.87796553512777], [2.401764056995636, 48.877854407089245], [2.401792095355899, 48.87774082608841], [2.401820948047982, 48.877629698013514], [2.4018245067268422, 48.8776181818931], [2.40181140741207, 48.87761014567981], [2.401781212814936, 48.87757813514567], [2.401759072106163, 48.87755468689886], [2.401757128923818, 48.87754877218946], [2.401783283464154, 48.877416616881156], [2.401809442778085, 48.87728023562464], [2.401835597050931, 48.87714808027275], [2.401861756093003, 48.87701169897153], [2.401848622208883, 48.87700158063525], [2.401662230415455, 48.87699803930583], [2.401476817492124, 48.87699450797615], [2.401290425749289, 48.87699096606783], [2.4011050128867932, 48.87698743326299], [2.400918622557967, 48.87698389078259], [2.400733209735432, 48.87698035830117], [2.400546818093815, 48.876976815235025], [2.400361405321688, 48.87697328217774], [2.40017501373069, 48.87696973853262], [2.3999896010193402, 48.8769662040002], [2.39997674900567, 48.87695934514275], [2.399934802055963, 48.87684587232046], [2.3998932165123232, 48.876733472385276], [2.399851268563124, 48.87661999950362], [2.399809683380098, 48.876507599516394], [2.399767737158192, 48.87639412658908], [2.399726152335775, 48.87628172654982], [2.399684205114382, 48.87616825356313], [2.399642620652673, 48.876055853471826], [2.399641656689687, 48.87605408055247], [2.399565134574872, 48.87594936085656], [2.399484747393375, 48.87583790550533], [2.399408225922009, 48.87573318478931], [2.399327838046659, 48.875621729303994], [2.399337869541231, 48.87557649919888], [2.399319992490498, 48.87557199557623], [2.399180042321564, 48.875529602029324], [2.399000708182652, 48.875485831569236], [2.398995416637844, 48.87548501449011], [2.398758282238497, 48.87548044131102], [2.398597151164235, 48.875477327820285], [2.398436021472601, 48.875474214119535], [2.398198887181942, 48.87546963893299], [2.398096976666155, 48.87546766964163], [2.398077277785799, 48.87546568199526], [2.398066650898557, 48.87546760439163], [2.398007430407687, 48.87546645942429], [2.397972131884526, 48.87546548240187], [2.397965541550699, 48.8754652091363], [2.397939783970143, 48.87550412138097], [2.3979375204800553, 48.875625272451195], [2.3979358991342092, 48.87575645068643], [2.397933635624119, 48.87587760172887], [2.397932014271131, 48.87600877903477], [2.397929750730542, 48.87612993094867], [2.397928129359915, 48.87626110822451], [2.39792586580982, 48.87638225921138], [2.397924244411056, 48.876513437356415], [2.397921980840958, 48.87663458831547], [2.397920359435051, 48.876765765531175], [2.397918095844849, 48.87688691646241], [2.397917044260168, 48.8769719851429], [2.397912346647039, 48.87697497697145], [2.397918767676147, 48.876997814488064], [2.397918197828127, 48.87704392389139], [2.397916834687919, 48.87718837737218], [2.397915213251709, 48.877319554521925], [2.397913851459425, 48.87746400797339], [2.39791223000712, 48.877595185090286], [2.397910868199355, 48.877739638505616], [2.39790924672066, 48.87787081648892], [2.397907625244093, 48.87800199355734], [2.397906263412919, 48.87814644691929], [2.397918537076649, 48.87815545068172], [2.398057221995102, 48.878164621576225], [2.398315616474707, 48.878182711030185], [2.398454301535666, 48.878191881464474], [2.398455406088152, 48.87819198863889], [2.398620557191959, 48.87821267467744], [2.398784509710794, 48.878232433554416], [2.398784688089346, 48.878232454235494], [2.398989044712263, 48.87825460740303], [2.399189850899638, 48.87827700320743], [2.399390657249236, 48.8782993995738], [2.399595014392674, 48.87832155170562], [2.399795819735185, 48.8783439464854], [2.400000178589077, 48.878366097931504], [2.400006749450776, 48.87836809409954], [2.4000609844503282, 48.87839822093553], [2.400124897998195, 48.87843127319798], [2.400150463880788, 48.87843526931706]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 21, "zemmour_eric": 57.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-38", "circ_bv": "16", "num_bureau": 38, "roussel_fabien": 18.0, "nb_emargement": 1070.0, "nb_procuration": 57.0, "nb_vote_blanc": 9.0, "jadot_yannick": 88.0, "le_pen_marine": 56.0, "nb_exprime": 1055.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1434.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1069, "quartier_bv": "75", "geo_point_2d": [48.877159411428636, 2.39950884493778], "melenchon_jean_luc": 556.0, "poutou_philippe": 7.0, "macron_emmanuel": 195.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408687035356161, 48.847239774605455], [2.408707707604901, 48.84724105942518], [2.408783712686048, 48.84723430586219], [2.408984703482627, 48.84721606084253], [2.409182137778298, 48.84719851650613], [2.409383128297256, 48.84718027081655], [2.409580562323204, 48.84716272582212], [2.409781552564632, 48.847144479462614], [2.409978986320847, 48.847126933810124], [2.410179976284735, 48.84710868678073], [2.410377409781383, 48.84709113957091], [2.410578399457548, 48.847072892770925], [2.410775832684438, 48.847055344903026], [2.410976822083052, 48.84703709743312], [2.411118813520776, 48.8470244769913], [2.411174255040172, 48.84701954890717], [2.411191039202358, 48.84700301505404], [2.411175986536226, 48.84696881589471], [2.411140010939339, 48.84684554158385], [2.411101454443924, 48.846719389202235], [2.411065479205682, 48.84659611394208], [2.411026923075115, 48.84646996150816], [2.4109909481752902, 48.846346687097295], [2.410952392409666, 48.84622053461112], [2.410916417868479, 48.84609725925095], [2.410877862467795, 48.84597110671256], [2.410841888264808, 48.845847832201684], [2.410803333229158, 48.84572167961103], [2.410767359384802, 48.84559840415085], [2.41072880471398, 48.84547225150796], [2.410739439893827, 48.8454616609252], [2.410947595999433, 48.845433653033545], [2.411153910439427, 48.84540436492689], [2.4113620647308682, 48.84537635630597], [2.411568378721268, 48.84534706658377], [2.411776533923581, 48.84531905724696], [2.411982847454314, 48.84528976680847], [2.412191002205016, 48.845261756749125], [2.412397315265728, 48.845232466493705], [2.412406918721635, 48.845220047702355], [2.412335021376458, 48.84511235832659], [2.412253131017192, 48.844986290943105], [2.412181234302021, 48.84487860235168], [2.412099343319591, 48.84475253482976], [2.412027448607218, 48.84464484613005], [2.41194555837423, 48.84451877757713], [2.411873664302082, 48.84441108876242], [2.41179177479813, 48.84428502097712], [2.411719880003753, 48.84417733204075], [2.411691555709425, 48.84416441290814], [2.411673611702718, 48.844170323368644], [2.411480610451372, 48.8441898820875], [2.411290432365, 48.84420835447587], [2.411097432191568, 48.844227912582596], [2.410907252468168, 48.84424638435448], [2.410714252010111, 48.84426594184241], [2.410524072012135, 48.84428441300457], [2.410331071269463, 48.844303969873614], [2.410140892349289, 48.844322441332054], [2.409947889959458, 48.84434199757556], [2.409757710774799, 48.84436046752491], [2.409567531455447, 48.84437893717161], [2.409374528641262, 48.84439849248917], [2.409184349047364, 48.84441696152611], [2.408991347311143, 48.84443651623157], [2.408991079949434, 48.84443654189142], [2.408954394868334, 48.84443759277247], [2.408946831339991, 48.844442492868744], [2.40877105684448, 48.84445796381531], [2.408601256540841, 48.84447349911202], [2.408425481838175, 48.84448896955047], [2.40825567996806, 48.84450450434948], [2.408079905058244, 48.84451997427976], [2.40791010434656, 48.84453550859466], [2.40789834857526, 48.84454443228001], [2.407898609212756, 48.84464766343761], [2.407895201229823, 48.84473690313795], [2.407882420820184, 48.84476164951119], [2.407906546932169, 48.84477175356646], [2.408036017659865, 48.84485375898511], [2.408159737620938, 48.84493092605248], [2.408283456575608, 48.84500809387913], [2.408412929856273, 48.845090097979934], [2.408415436662778, 48.845091335298044], [2.408587691469885, 48.84515747656657], [2.4087567495264652, 48.845226421261415], [2.408762964534837, 48.84523578368681], [2.408751996859431, 48.845273128274115], [2.408742389975142, 48.84531303555211], [2.408749311517683, 48.84532233761508], [2.40893384945922, 48.845388909603905], [2.409120327195456, 48.8454571376016], [2.409127156698666, 48.84546350818825], [2.409158563621525, 48.845586498110706], [2.409187453334079, 48.84570448955614], [2.409216343187642, 48.84582248008279], [2.4092477505271113, 48.8459454708415], [2.409276640650774, 48.84606346132807], [2.40930804827777, 48.84618645204437], [2.409336938671535, 48.846304442490904], [2.409368346596255, 48.84642743226547], [2.409397237249935, 48.84654542357119], [2.409428645462188, 48.846668413303384], [2.4094169106944, 48.846678831052785], [2.4092094975968292, 48.84669607647801], [2.409002305636859, 48.846711593178526], [2.408794892261501, 48.84672883878379], [2.408587701410452, 48.84674435477261], [2.408575757113515, 48.846754607721515], [2.408601695351688, 48.84687025257273], [2.40862403186809, 48.84697355485661], [2.408649968959842, 48.84708919966793], [2.408672305676081, 48.84719250102323], [2.408687035356161, 48.847239774605455]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 57, "zemmour_eric": 80.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "12-36", "circ_bv": "08", "num_bureau": 36, "roussel_fabien": 18.0, "nb_emargement": 1050.0, "nb_procuration": 29.0, "nb_vote_blanc": 7.0, "jadot_yannick": 61.0, "le_pen_marine": 90.0, "nb_exprime": 1039.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1393.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1050, "quartier_bv": "45", "geo_point_2d": [48.84551061599942, 2.4101358713970744], "melenchon_jean_luc": 370.0, "poutou_philippe": 4.0, "macron_emmanuel": 296.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406122738258313, 48.85268477560632], [2.406129880434985, 48.85269305898943], [2.406343864160831, 48.8527315526824], [2.4065241756156652, 48.85276310058453], [2.40653653351374, 48.852767903248825], [2.406552175824824, 48.85276755993608], [2.406732487520132, 48.852799108422595], [2.406925687740488, 48.85283388353104], [2.40710599989143, 48.852865431452834], [2.407299200596724, 48.85290020685542], [2.407479514576198, 48.85293175331988], [2.407672715776659, 48.85296652811728], [2.407853028838858, 48.852998074909586], [2.407992220260271, 48.853023127931216], [2.4080067874618543, 48.85302325576382], [2.408020031795518, 48.85299083590185], [2.408109424909746, 48.852882523442965], [2.40819806453736, 48.852775124518075], [2.408287456911475, 48.85266681190515], [2.4083760958052203, 48.852559412827546], [2.408465487439231, 48.85245110006062], [2.408554125599116, 48.85234370083031], [2.4085554140776493, 48.8523414849065], [2.408601595061561, 48.85221365837628], [2.408647445147289, 48.85208674931475], [2.408693293646938, 48.851959840214434], [2.408739473954403, 48.85183201358712], [2.4087853233685372, 48.851705104429215], [2.4088315032245, 48.85157727773712], [2.408877350827741, 48.85145036850815], [2.4089235302321113, 48.85132254175127], [2.408969378749836, 48.85119563246469], [2.40901555770282, 48.851067805643034], [2.409061404399275, 48.850940897184735], [2.40910758291098, 48.85081306939895], [2.409153430521922, 48.850686160883065], [2.40919960858215, 48.850558333032524], [2.409245454382149, 48.85043142444558], [2.409291631980717, 48.85030359742958], [2.409337478705395, 48.85017668788574], [2.409383655852502, 48.85004886080497], [2.409429500766365, 48.84992195119011], [2.40947567882461, 48.84979412405125], [2.409521523290263, 48.84966721437209], [2.40956769953447, 48.84953938716177], [2.409613544914506, 48.849412477424984], [2.409659720707269, 48.849284650149926], [2.409705564276427, 48.84915774034215], [2.409751739617758, 48.84902991300229], [2.409747056106153, 48.849020513251105], [2.409724930971376, 48.849018582009286], [2.4095284750295303, 48.84901497661306], [2.409311872685486, 48.84901100162642], [2.409115416800799, 48.849007395551936], [2.408898814519878, 48.8490034198175], [2.40870235869236, 48.84899981306476], [2.40848575647437, 48.8489958365825], [2.4082893007040322, 48.84899222915152], [2.408057477936897, 48.84898732223322], [2.407938496025658, 48.848985137156646], [2.407935807918658, 48.84898340968887], [2.40791006714539, 48.8489843930067], [2.40783259198715, 48.848982969923874], [2.40774257047218, 48.848981045801], [2.407728514054707, 48.848989671157206], [2.4077255534454842, 48.849038058744775], [2.407721008788394, 48.849085415925096], [2.40772093752448, 48.849085930901175], [2.407711974262753, 48.84909605550588], [2.407719260009241, 48.84910559412917], [2.407696058614506, 48.84923180678078], [2.407673131869135, 48.849355546656355], [2.407649931614079, 48.84948175927747], [2.407627004649212, 48.84960549911643], [2.407603802808469, 48.84973171169347], [2.4075808756241, 48.8498554514958], [2.407557673560346, 48.84998166403562], [2.407534746156472, 48.85010540380132], [2.407511545232409, 48.85023161631054], [2.407488617609029, 48.8503553560396], [2.407488121719424, 48.85035690046809], [2.407411506762071, 48.850522444138186], [2.407335103694245, 48.850687527419566], [2.407334862560611, 48.85068811979679], [2.40729333986893, 48.85080605735165], [2.40725099036555, 48.85092633988881], [2.407209467294228, 48.851044277389285], [2.407167118756149, 48.851164560777015], [2.407125593942553, 48.85128249821639], [2.407083245027509, 48.851402780649394], [2.407041719834157, 48.85152071803438], [2.406999370521679, 48.85164100131126], [2.4069817072092032, 48.85164747992492], [2.406817722816227, 48.85161067056738], [2.406657682031446, 48.85157474661338], [2.406493696733604, 48.851537936802586], [2.406333656395485, 48.85150201241289], [2.406268890887341, 48.851498326578785], [2.406264689262998, 48.85151029946692], [2.406258196643531, 48.85156940853234], [2.406240521219419, 48.85171316830971], [2.406225577518311, 48.85184920631191], [2.406207901909303, 48.85199296604828], [2.406192958032653, 48.85212900491149], [2.4061752822489932, 48.85227276370758], [2.406160338206943, 48.85240880253247], [2.406155509216923, 48.85244807295346], [2.406151310339723, 48.85245620831637], [2.406152985002931, 48.85246615444191], [2.406140136641756, 48.852570643666596], [2.4061217673707143, 48.85267298661082], [2.406122738258313, 48.85268477560632]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 46, "zemmour_eric": 82.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "20-53", "circ_bv": "08", "num_bureau": 53, "roussel_fabien": 35.0, "nb_emargement": 1189.0, "nb_procuration": 42.0, "nb_vote_blanc": 2.0, "jadot_yannick": 92.0, "le_pen_marine": 75.0, "nb_exprime": 1182.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1459.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "80", "geo_point_2d": [48.851016885236824, 2.4079958846508855], "melenchon_jean_luc": 453.0, "poutou_philippe": 5.0, "macron_emmanuel": 330.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.365105852221698, 48.82654301176906], [2.365114003884157, 48.82652797433892], [2.365133076789703, 48.82639764474159], [2.365151474822763, 48.82627048993316], [2.365170547551397, 48.826140159400616], [2.365188946764172, 48.82601300456445], [2.365207345887302, 48.82588584971107], [2.36522641833556, 48.82575551912499], [2.365244815914381, 48.82562836422942], [2.365263888174782, 48.825498033607474], [2.365282286933307, 48.82537087868421], [2.365301359005952, 48.82524054802643], [2.365319756220187, 48.825113393060995], [2.365338828104979, 48.82498306236731], [2.365357226499012, 48.82485590737421], [2.365376298184904, 48.824725577543994], [2.365394696407742, 48.824598421616635], [2.365413767905783, 48.82446809175055], [2.3653980031076483, 48.82445343010952], [2.365386952438483, 48.82445186681046], [2.365246172559457, 48.82452300584598], [2.365113403613436, 48.824588594026466], [2.364972622981034, 48.82465973363063], [2.364839854715706, 48.82472532060735], [2.364827109118144, 48.82472658848317], [2.364665233354571, 48.82468837390654], [2.364498428550106, 48.82465048277151], [2.364336553263731, 48.8246122677474], [2.364169748941721, 48.82457437615138], [2.364007874132446, 48.82453616067977], [2.363841070292796, 48.8244982686227], [2.363824944652566, 48.82450216347548], [2.363778354827715, 48.82455369268683], [2.363740210147935, 48.824594820560655], [2.3637382875138693, 48.82459923256231], [2.363734144898129, 48.82472372100932], [2.363729942818307, 48.82484604882575], [2.363725798801096, 48.8249705372379], [2.363721596670824, 48.82509286592645], [2.363717393169765, 48.825215193694966], [2.3637132504552962, 48.825339682072965], [2.363709046914755, 48.82546200981431], [2.363704904160644, 48.82558649816469], [2.363700700569646, 48.82570882677814], [2.363696557776095, 48.825833315100816], [2.363692355518653, 48.82595564279504], [2.363688211323498, 48.82608013108283], [2.363684009026578, 48.82620245874987], [2.363679864791774, 48.826326947009996], [2.363690506622077, 48.8263359209315], [2.363884828928267, 48.82636464196506], [2.364055899443555, 48.826390146987244], [2.364226970126115, 48.82641565176418], [2.364421293025003, 48.82644437192402], [2.364592364064234, 48.826469876177], [2.36478668736651, 48.82649859574173], [2.364957758762507, 48.82652409947084], [2.365099426853456, 48.8265450363245], [2.365105852221698, 48.82654301176906]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 67, "zemmour_eric": 86.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-17", "circ_bv": "09", "num_bureau": 17, "roussel_fabien": 28.0, "nb_emargement": 1308.0, "nb_procuration": 43.0, "nb_vote_blanc": 14.0, "jadot_yannick": 74.0, "le_pen_marine": 82.0, "nb_exprime": 1290.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1693.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1308, "quartier_bv": "50", "geo_point_2d": [48.82549922979484, 2.3644956900882974], "melenchon_jean_luc": 433.0, "poutou_philippe": 9.0, "macron_emmanuel": 436.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332294626482992, 48.88285878300268], [2.332290335029563, 48.88286772720476], [2.3323261058462, 48.88298108060055], [2.332369940653602, 48.88312479900245], [2.332405711831619, 48.88323815144874], [2.332449547075, 48.883381869787875], [2.332485318591348, 48.88349522308314], [2.332529154270813, 48.883638941359564], [2.332564926137025, 48.88375229460454], [2.332591836155218, 48.883798802425744], [2.332597385961687, 48.88379924615541], [2.332646848294405, 48.88378763451059], [2.332695387903462, 48.88377321808537], [2.332698043280204, 48.88377340285876], [2.332736093214988, 48.883763281612985], [2.332872719833591, 48.883722702540666], [2.333062035281131, 48.88366514607513], [2.333247202056152, 48.8836101499838], [2.333436516680531, 48.88355259292026], [2.333621682671479, 48.88349759534486], [2.333810995109229, 48.88344003767573], [2.333996160292982, 48.88338504041486], [2.334185473271231, 48.883327482155295], [2.334370637670689, 48.88327248341037], [2.334559949825965, 48.883214924552796], [2.3347451120546783, 48.88315992611481], [2.334934423386883, 48.88310236665923], [2.335119586194941, 48.88304736674478], [2.335308896703964, 48.88298980669121], [2.335494058704941, 48.88293480709128], [2.335683367027338, 48.88287724643216], [2.335868528244083, 48.88282224534818], [2.336057837106944, 48.88276468409869], [2.336173543252111, 48.88273031382901], [2.336195696826763, 48.88273008052474], [2.336216420783186, 48.88271919210547], [2.336285873652225, 48.88269856157305], [2.336465965283371, 48.88264450363629], [2.336651124834496, 48.88258950222963], [2.336722699112342, 48.882568017141004], [2.336748768762548, 48.88255526874878], [2.336731868452488, 48.88252077029587], [2.336725948568283, 48.88242380664268], [2.336717208119548, 48.882334173994884], [2.336708466337469, 48.88224454133162], [2.336702546528236, 48.88214757765292], [2.3367057765532913, 48.882141395554264], [2.336794822498292, 48.882072224811026], [2.336883258695629, 48.8819998400062], [2.336972304162856, 48.88193066912207], [2.337060739884469, 48.88185828327755], [2.337060212363628, 48.88184659263714], [2.336922801868557, 48.88174686826914], [2.336783588379285, 48.88165127966521], [2.336646178940711, 48.88155155406276], [2.336506965117867, 48.881455965112686], [2.336369556712778, 48.881356240074346], [2.336230343931231, 48.88126064988637], [2.336092936571274, 48.88116092451285], [2.3359537248079922, 48.88106533488551], [2.335923243329977, 48.881040003379105], [2.335906843579858, 48.88104000773959], [2.335767633844963, 48.880944417892984], [2.33563841462631, 48.880853384475785], [2.335499204530942, 48.880757793394025], [2.335369987608038, 48.88066675967923], [2.335230778492638, 48.88057116916839], [2.335101562501977, 48.8804801351485], [2.335079952624643, 48.880472354607534], [2.335047381144217, 48.88048251243751], [2.334952056609392, 48.88060078307515], [2.334857683063805, 48.88071694547713], [2.334762356317074, 48.88083521503169], [2.334667981912155, 48.88095137815866], [2.3345726556689073, 48.88106964754458], [2.334478280427525, 48.88118580959797], [2.334382951960955, 48.881304078800085], [2.3342885758600103, 48.88142024157852], [2.334193247897017, 48.88153851061195], [2.334098870959593, 48.8816546723168], [2.334003540761644, 48.88177294206569], [2.333909162976334, 48.88188910359626], [2.33381383329335, 48.88200737227724], [2.3337194546485422, 48.882123534532816], [2.33362412274217, 48.88224180302994], [2.3335297432607582, 48.88235796421191], [2.33352495193183, 48.882361343309924], [2.333374077205427, 48.88242352761363], [2.333224924710796, 48.882483447806145], [2.333074050635929, 48.882545631732434], [2.332924896082837, 48.88260555153696], [2.332775741186614, 48.882665471152436], [2.332624866047947, 48.882727654502375], [2.332475710456798, 48.88278757373742], [2.332324834606229, 48.88284975670238], [2.332294626482992, 48.88285878300268]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 55, "zemmour_eric": 76.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "9-13", "circ_bv": "01", "num_bureau": 13, "roussel_fabien": 18.0, "nb_emargement": 1256.0, "nb_procuration": 69.0, "nb_vote_blanc": 12.0, "jadot_yannick": 98.0, "le_pen_marine": 45.0, "nb_exprime": 1239.0, "nb_vote_nul": 5.0, "arr_bv": "09", "arthaud_nathalie": 2, "nb_inscrit": 1575.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1256, "quartier_bv": "33", "geo_point_2d": [48.882255930545604, 2.3347549738429842], "melenchon_jean_luc": 376.0, "poutou_philippe": 8.0, "macron_emmanuel": 515.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305383134290451, 48.84680203802523], [2.305383954376858, 48.84680123875557], [2.305413977186818, 48.846792021908925], [2.30558361084542, 48.84673494012369], [2.305752345316084, 48.84668313574152], [2.30592107810067, 48.8466313302118], [2.30609071068079, 48.846574247699344], [2.306108673377769, 48.84656637452721], [2.306102970101701, 48.846549012507616], [2.306126473197544, 48.84640995068942], [2.306149656928294, 48.846270609993624], [2.306173161136591, 48.846131548139354], [2.306196344618766, 48.84599220739977], [2.306219847214349, 48.84585314549371], [2.306243030447857, 48.84571380471022], [2.306266534143914, 48.84557474366748], [2.306289717140724, 48.845435401940875], [2.306313220586552, 48.84529634085421], [2.306336401960169, 48.84515699997514], [2.306327391426342, 48.84514753677587], [2.306138671967264, 48.84510359123593], [2.30595757967293, 48.84506116729985], [2.305768860838437, 48.84501722117316], [2.305587767782804, 48.844974796666094], [2.305406676384551, 48.84493237189122], [2.305217958480975, 48.84488842489041], [2.305036866321229, 48.84484599954457], [2.304848149042253, 48.84480205195703], [2.304816233803135, 48.84479457444905], [2.304805011224089, 48.844786399657586], [2.304791021010089, 48.844786815707714], [2.304641846092388, 48.844751867283016], [2.304484389776423, 48.844715353294916], [2.304303298815317, 48.84467292683208], [2.304145844337584, 48.84463641240372], [2.304145225069855, 48.84463625590955], [2.304005162134739, 48.844597587742534], [2.303857677071274, 48.84455760271816], [2.303717615935434, 48.84451893332043], [2.303570129952623, 48.84447894793076], [2.303563029087925, 48.84446673008142], [2.3036310597151433, 48.84437338970904], [2.303695011730337, 48.84428484705267], [2.3037630418838653, 48.844191506590015], [2.303826994814179, 48.844102963856585], [2.303828309191456, 48.84409872020247], [2.303820357200296, 48.843972523454234], [2.303812669280726, 48.8438492061994], [2.303804981385423, 48.843725889829834], [2.303797029519646, 48.84359969213855], [2.303789341698254, 48.843476375740316], [2.303781389908416, 48.843350178019826], [2.303773702160732, 48.843226861593024], [2.303765750446831, 48.84310066384322], [2.30375675776655, 48.843092577462535], [2.303555886462151, 48.843044782344265], [2.3033723105730353, 48.84300026506446], [2.303358823726871, 48.84300189622293], [2.30320128015242, 48.84309099901432], [2.303049047017716, 48.843177073786244], [2.302896812017774, 48.84326314834984], [2.30273926685172, 48.84335225141126], [2.302736146423229, 48.84335480451312], [2.302636135723055, 48.84347694103249], [2.302535945515289, 48.84360013586475], [2.302532859232691, 48.843602681065676], [2.302432921114654, 48.84365956518498], [2.302322690943706, 48.84372256424677], [2.302301613335885, 48.843727922959914], [2.302298449490187, 48.84373626052127], [2.302188218982338, 48.843799260354125], [2.302106596286087, 48.84384505032022], [2.302105612499954, 48.84384565974764], [2.301976921647436, 48.843933734843695], [2.301851757397731, 48.844019730357495], [2.301723065686396, 48.84410780516674], [2.3015978992372492, 48.84419380039363], [2.301469206667089, 48.844281874916014], [2.301344040743552, 48.844367869871796], [2.301215347326622, 48.84445594320812], [2.301090179191565, 48.84454193877619], [2.300965012018048, 48.84462793331541], [2.300836317318415, 48.84471600622341], [2.300826239652273, 48.844725325912776], [2.300836932241136, 48.844737612582584], [2.300943604216995, 48.84483686489036], [2.3010509366279512, 48.844936383565106], [2.301157608067713, 48.84503563475715], [2.301264942659232, 48.84513515323016], [2.301371614901433, 48.84523440511295], [2.301478948948417, 48.84533392336821], [2.301585623379537, 48.8454331741512], [2.301692958232497, 48.845532693096025], [2.301799632115465, 48.84563194366251], [2.301906969161079, 48.84573146150623], [2.301909427432997, 48.84573756185248], [2.301888575671891, 48.845876852510074], [2.30186763165065, 48.84601702038875], [2.301846778291494, 48.84615631189548], [2.301825834057575, 48.84629647883239], [2.3018049804748832, 48.84643577029691], [2.301784036016236, 48.84657593719135], [2.301763182210003, 48.84671522861363], [2.301742237526625, 48.84685539546564], [2.301721384859349, 48.84699468685365], [2.301700438576582, 48.84713485455449], [2.301679585697919, 48.84727414500099], [2.3016586391904053, 48.84741431265935], [2.301670784053096, 48.84742413984422], [2.301833527943167, 48.847435364889726], [2.301981719248786, 48.847443464960854], [2.3020050702852313, 48.84744581812766], [2.302014610315224, 48.84743779750154], [2.302168749546066, 48.84740643469708], [2.30239562961472, 48.847360802060614], [2.302549768388427, 48.84732943876307], [2.302776649150856, 48.847283805408836], [2.302930787467524, 48.84725244161829], [2.302940378118368, 48.84724469821692], [2.30295828753367, 48.84712145934715], [2.302975793413967, 48.8470045442348], [2.302993299203691, 48.84688763000695], [2.303011208371243, 48.84676439108976], [2.3030100740598938, 48.84675984808997], [2.302925763856194, 48.84663595065795], [2.302841653613368, 48.84651160013677], [2.302757344211571, 48.8463877025585], [2.302673233408775, 48.84626335188328], [2.302588924808976, 48.846139454158696], [2.302504816171169, 48.84601510334531], [2.302420508373455, 48.845891205474466], [2.302336400538139, 48.845766854515], [2.302252093542296, 48.84564295649785], [2.302167985146896, 48.84551860538434], [2.302166839750048, 48.84551561011339], [2.302162651456851, 48.84547385065003], [2.302155914642957, 48.845414412789275], [2.30217448321663, 48.845405370960634], [2.302365002762141, 48.84545475102683], [2.302549869770922, 48.84550265075391], [2.302740390015699, 48.84555203111731], [2.302925259089163, 48.84559992936881], [2.30311578004524, 48.8456493091301], [2.303300649808679, 48.84569720679738], [2.303491171476156, 48.845746585956526], [2.303676041917652, 48.84579448393882], [2.303860911348504, 48.84584238072618], [2.304051434077432, 48.84589175898672], [2.30423630556082, 48.84593965519773], [2.304426829001135, 48.84598903285616], [2.304611701162585, 48.84603692938223], [2.304802225326179, 48.846086305539224], [2.30480946669267, 48.84609865271981], [2.304730833007524, 48.84620394480657], [2.304652680093414, 48.84630861906662], [2.304574045774695, 48.846413911030474], [2.3044958922309062, 48.846518585168376], [2.304417257278507, 48.84662387700938], [2.304339104467529, 48.84672855103303], [2.304260467519047, 48.84683384274322], [2.304182314078181, 48.84693851664475], [2.304183734457052, 48.84694797361999], [2.304267963072129, 48.8470142447159], [2.304363961367371, 48.84709665131136], [2.304380237352131, 48.84709940626383], [2.304545547351322, 48.84705156245982], [2.304714283879002, 48.84699975955643], [2.304879593255335, 48.846951915286596], [2.305048329128328, 48.84690011190742], [2.305213637882004, 48.84685226717175], [2.305352350279898, 48.846809680155495], [2.305383134290451, 48.84680203802523]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 129, "zemmour_eric": 154.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-25", "circ_bv": "12", "num_bureau": 25, "roussel_fabien": 17.0, "nb_emargement": 1276.0, "nb_procuration": 81.0, "nb_vote_blanc": 7.0, "jadot_yannick": 100.0, "le_pen_marine": 55.0, "nb_exprime": 1268.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1587.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1276, "quartier_bv": "58", "geo_point_2d": [48.845320573086155, 2.3035158026216975], "melenchon_jean_luc": 194.0, "poutou_philippe": 3.0, "macron_emmanuel": 564.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.336693413753543, 48.839680198857884], [2.336727493543385, 48.83973674571574], [2.336736573672481, 48.83985084289197], [2.336746041927525, 48.83999611513425], [2.3367551221425122, 48.84011021228255], [2.336764589133936, 48.84025548448207], [2.336773670797145, 48.84036958161001], [2.336783137887378, 48.84051485377439], [2.3367922196362843, 48.84062895087441], [2.336798628994606, 48.840677022419484], [2.336819968844122, 48.84068868588198], [2.336979466835368, 48.840710080045035], [2.337193589757331, 48.840784717814], [2.337245319325385, 48.840822959440096], [2.337251743299759, 48.84082780573596], [2.337290614433732, 48.8408565417588], [2.3373619081395782, 48.840984413628284], [2.337430155385431, 48.841110478828654], [2.33750145114333, 48.84123835059344], [2.337569699059208, 48.84136441568551], [2.337640994144358, 48.841492287330524], [2.337709242718836, 48.84161835321359], [2.337780539867603, 48.84174622385461], [2.337848789112127, 48.8418722896294], [2.337920085576825, 48.8420001610499], [2.337988335502722, 48.84212622581712], [2.338059634019641, 48.84225409713288], [2.338127884615599, 48.84238016179182], [2.338199182459781, 48.84250803298776], [2.338267433714488, 48.84263409843769], [2.338338733610823, 48.842761969528944], [2.338406985547031, 48.842888033971235], [2.338478284770633, 48.84301590494266], [2.338546537376927, 48.84314196927668], [2.338617838652916, 48.84326984014334], [2.338686091917796, 48.843395905268395], [2.33875739389499, 48.84352377512346], [2.338825647829981, 48.84364984014013], [2.338896949123042, 48.843777710774745], [2.338965203739557, 48.8439037747838], [2.338988237801611, 48.843920697656536], [2.339080286471905, 48.84390075292224], [2.339244741127807, 48.84379803769238], [2.339439086566378, 48.84371207962545], [2.3394425956968252, 48.84371096940197], [2.33964859789581, 48.84366745602963], [2.33983263823749, 48.84362936748128], [2.339883580201421, 48.84361860711051], [2.33988399699267, 48.8436179744602], [2.339867572793083, 48.843588351453704], [2.339863807475869, 48.84345499562959], [2.33985949872909, 48.84332183734854], [2.33985573345179, 48.84318848149232], [2.339851424747672, 48.84305532317918], [2.339847659510385, 48.84292196729084], [2.339843350848828, 48.842788808945556], [2.339839585651454, 48.842655453025124], [2.339835277032555, 48.84252229464776], [2.339831511875093, 48.84238893869521], [2.33982720193647, 48.842255780278265], [2.339823438181303, 48.842122424301145], [2.339819128285347, 48.84198926585211], [2.339815364570082, 48.8418559098429], [2.339811054716791, 48.84172275136176], [2.339807289679062, 48.84158939531292], [2.339802981230803, 48.841456236807176], [2.339799216232984, 48.841322880726274], [2.33979490782738, 48.8411897221885], [2.339793534185591, 48.84118597414927], [2.33970672757677, 48.841068408523256], [2.339618238829658, 48.840947817063366], [2.339531434375231, 48.84083025129261], [2.339442946438023, 48.84070965967731], [2.339356142775622, 48.840592093754296], [2.339267655648306, 48.84047150198363], [2.339180852777923, 48.840353935908325], [2.33909236646049, 48.84023334398229], [2.339005563019786, 48.840115777747194], [2.338917077512227, 48.83999518566578], [2.338830276225851, 48.839877619285964], [2.338741791528154, 48.83975702704918], [2.338654991033766, 48.839639460517084], [2.338566507145921, 48.839518868124905], [2.338574526897702, 48.83950640138534], [2.338763309026334, 48.83946558048081], [2.338948008644166, 48.8394262800302], [2.339136788827694, 48.83938545852582], [2.339321489242412, 48.83934615750326], [2.339510268843243, 48.83930533540653], [2.339694967330021, 48.83926603379698], [2.33988374634815, 48.83922521110792], [2.340068445631799, 48.83918590892643], [2.340257224067118, 48.83914508564507], [2.340441922785326, 48.83910578288406], [2.340630700637929, 48.839064959010386], [2.340815397428186, 48.83902565566242], [2.340847155617261, 48.839015397117414], [2.340838837098504, 48.83899012854664], [2.340792808289795, 48.838857009682606], [2.340742016059331, 48.83872306679281], [2.34071542818666, 48.838659033741195], [2.340686125475771, 48.838661957961385], [2.340563392897755, 48.83868881013744], [2.3404053055351293, 48.83872083376279], [2.340209328014288, 48.8387637104022], [2.340051240207065, 48.83879573355748], [2.339893153567888, 48.8388277565104], [2.33969717523513, 48.83887063140735], [2.339696445460241, 48.838870806352915], [2.339513764673458, 48.83892001214494], [2.339335829202086, 48.83896651698685], [2.339153147739426, 48.83901572222391], [2.338975212982081, 48.83906222653297], [2.33879253084355, 48.839111431215095], [2.338614594086641, 48.839157934076916], [2.338431911272243, 48.83920713820411], [2.33825397385556, 48.839253641424804], [2.338076037483677, 48.83930014438648], [2.337893353662456, 48.839349347684944], [2.337715415279805, 48.83939585009862], [2.337532730782724, 48.839445052842166], [2.337354793125359, 48.83949155382372], [2.3371721079524272, 48.83954075601229], [2.336994168272866, 48.839587257345165], [2.336811482424082, 48.8396364589788], [2.336707825535255, 48.839663547859985], [2.336693413753543, 48.839680198857884]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 89, "zemmour_eric": 94.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "5-9", "circ_bv": "02", "num_bureau": 9, "roussel_fabien": 15.0, "nb_emargement": 1344.0, "nb_procuration": 87.0, "nb_vote_blanc": 7.0, "jadot_yannick": 118.0, "le_pen_marine": 33.0, "nb_exprime": 1333.0, "nb_vote_nul": 4.0, "arr_bv": "05", "arthaud_nathalie": 0, "nb_inscrit": 1585.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1344, "quartier_bv": "19", "geo_point_2d": [48.841139589617015, 2.3386370250128166], "melenchon_jean_luc": 325.0, "poutou_philippe": 5.0, "macron_emmanuel": 592.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.386055899986467, 48.89796431563725], [2.386044786297887, 48.897982336680435], [2.386146959992599, 48.898112956128315], [2.386239107885987, 48.89824422105918], [2.386230906543157, 48.89825655898623], [2.386044137923209, 48.898296164334276], [2.385860685787247, 48.89833546714146], [2.385673916613083, 48.898375071010015], [2.385490463919576, 48.89841437324728], [2.385303694170185, 48.8984539774349], [2.385120240919036, 48.898493279102226], [2.384933470615554, 48.89853288181038], [2.384750016806974, 48.89857218290778], [2.3845632459281623, 48.89861178593499], [2.384379791561949, 48.89865108646245], [2.38419302012907, 48.89869068801017], [2.384009565205438, 48.89872998796769], [2.383822793197127, 48.89876958983448], [2.383639337715975, 48.89880888922206], [2.383452565153722, 48.89884848960936], [2.38326910911506, 48.898887788427], [2.383082335977373, 48.898927389133355], [2.382898879381202, 48.89896668738104], [2.382894295251122, 48.898967114316775], [2.382692283839677, 48.8989631207992], [2.382490856221539, 48.898959015737944], [2.382288843508495, 48.8989550215328], [2.382087417317588, 48.89895091580002], [2.381885404666932, 48.89894692091437], [2.381683978539189, 48.89894281450303], [2.381481965950931, 48.89893881893686], [2.381280538522385, 48.89893471183993], [2.3810785273711, 48.898930714701045], [2.380877099995049, 48.898926607824826], [2.380675088906291, 48.89892261000543], [2.380473661593427, 48.898918502450655], [2.380271649203133, 48.898914503943665], [2.38007022331734, 48.89891039571742], [2.379868210989491, 48.89890639652996], [2.379666785167009, 48.89890228762516], [2.379464772901619, 48.89889828775715], [2.379263345778381, 48.898894178166735], [2.379061334939433, 48.89889017762527], [2.378859907890054, 48.89888606645708], [2.378657897102854, 48.89888206613437], [2.378456470116824, 48.898877954287606], [2.378254458028134, 48.89887395327731], [2.378053032469335, 48.898869840759055], [2.377851020443138, 48.89886583906826], [2.377649594947504, 48.89886172587151], [2.37744758298381, 48.89885772350015], [2.377246156187585, 48.89885360961777], [2.377044145661138, 48.89884960567377], [2.376842718917441, 48.898845492012065], [2.3766407084535253, 48.898841487387536], [2.37643928177302, 48.89883737304735], [2.376237270007673, 48.898833367735186], [2.376035844754545, 48.89882925272354], [2.37583383305175, 48.898825246730866], [2.375632407861935, 48.89882113104067], [2.375430396221704, 48.89881712436748], [2.375228969742034, 48.89881300709238], [2.375026959517454, 48.89880900064509], [2.374825533101126, 48.898804882691394], [2.374623522939222, 48.898800875563595], [2.374422096586248, 48.89879675693137], [2.374220086486932, 48.89879274912307], [2.374018660197217, 48.89878862981233], [2.37381664879653, 48.89878462131638], [2.37361522393426, 48.89878050133421], [2.373413212607003, 48.89877649125845], [2.373211786433325, 48.8987723714899], [2.373009776532664, 48.8987683607408], [2.372808350422271, 48.89876424029368], [2.372606340584246, 48.89876022886406], [2.372404914537353, 48.8987561077384], [2.3722029047619753, 48.89875209562827], [2.372001478778489, 48.89874797382407], [2.3717994677018, 48.898743961026284], [2.3715980431456, 48.89873983855073], [2.371396032131579, 48.898735825072436], [2.371194606285802, 48.89873170101187], [2.370992596687567, 48.89872768775951], [2.370791170905237, 48.89872356302043], [2.370589161369683, 48.898719549087524], [2.3703877356507093, 48.89871542366991], [2.370299217233379, 48.89871550416809], [2.370291247998623, 48.898740697948355], [2.370285030517687, 48.89887186363365], [2.3702785780327122, 48.89900181848889], [2.370272360499646, 48.899132983243], [2.37026590795068, 48.89926293806653], [2.370259690354405, 48.89939410278863], [2.370253237741446, 48.899524057580464], [2.370247020071183, 48.89965522316989], [2.370240567405109, 48.899785177030736], [2.370234349671736, 48.89991634258821], [2.370227896941667, 48.90004629641735], [2.370221679145286, 48.90017746194282], [2.370215224987212, 48.90030741573311], [2.370209008491627, 48.90043858123377], [2.37020255426955, 48.9005685349923], [2.370196337710857, 48.90069970046099], [2.370189883413898, 48.90082965508709], [2.370183665439053, 48.90096081961738], [2.370177212442115, 48.901090774218936], [2.370170759423838, 48.901220727905404], [2.370164541343116, 48.90135189328703], [2.37015808826084, 48.901481846941806], [2.370151870117001, 48.901613012291435], [2.370152495576638, 48.90161599860105], [2.370200832804423, 48.90171701628034], [2.370251577251595, 48.901820566460756], [2.370265534579417, 48.901833556673374], [2.3703203959431542, 48.901839803058145], [2.370442247862003, 48.90184241490967], [2.370643761108265, 48.901846507345574], [2.370760343481636, 48.901849006648135], [2.37096185677842, 48.90185309854879], [2.37116625853077, 48.9018574795659], [2.371367771892253, 48.90186157078359], [2.371572175075976, 48.90186595111506], [2.371773688502151, 48.90187004164983], [2.371978090389336, 48.90187442128139], [2.372023061773616, 48.901875385524484], [2.372059047350059, 48.90187615605188], [2.372260560853988, 48.901880245767444], [2.372486637089053, 48.90188508885935], [2.372688150661048, 48.901889177855466], [2.372785771487475, 48.90189126830626], [2.372838186325664, 48.901892390831186], [2.373039699953637, 48.901896479235795], [2.373235714889848, 48.90190067881931], [2.3734372285811203, 48.90190476655511], [2.373633244944655, 48.90190896549513], [2.373834758699115, 48.90191305256205], [2.374030773761959, 48.90191725084435], [2.374232287579699, 48.90192133724244], [2.374428302705795, 48.901925534874124], [2.374629816586804, 48.90192962060336], [2.374825831776141, 48.90193381758439], [2.375027345720408, 48.9019379026448], [2.375223360983768, 48.901942098076006], [2.375424874991282, 48.90194618246751], [2.375627368187623, 48.901950517136505], [2.375828882259421, 48.901954600848285], [2.376031375532822, 48.90195893393499], [2.376232889668992, 48.90196301696699], [2.376435382997983, 48.9019673502699], [2.376636897198417, 48.90197143262214], [2.376828545930643, 48.90197553255241], [2.377030060193477, 48.90197961424316], [2.37722171035084, 48.90198371355139], [2.377423224676268, 48.901987794580606], [2.377614873530546, 48.90199189325264], [2.377816387918458, 48.90199597362036], [2.378008036833901, 48.902000071663224], [2.378199685779518, 48.902004169399454], [2.378401200260781, 48.902008248783204], [2.378602714773525, 48.902012327827876], [2.37883392677622, 48.90201726741503], [2.379035441357879, 48.90202134573166], [2.379266653441582, 48.90202628448343], [2.379357150444557, 48.902028218442204], [2.379558665109593, 48.90203229587847], [2.379605250121055, 48.902033290812746], [2.379635748111914, 48.90203394160578], [2.379666179265916, 48.902034592044906], [2.379691576750881, 48.90203513456913], [2.37971510587575, 48.90203563683535], [2.379916620597537, 48.90203971366933], [2.379931270222016, 48.90204002603176], [2.3801482992601253, 48.902044660328336], [2.380349814050661, 48.902048736433436], [2.380385232539243, 48.9020494925309], [2.380477670279558, 48.90205146625918], [2.38067918512233, 48.9020555418101], [2.380928434746564, 48.90206086289657], [2.381129949660996, 48.90206493768909], [2.381289876423316, 48.90206835125701], [2.381491391395024, 48.90207242544141], [2.381624554172962, 48.90207526777932], [2.381757715612165, 48.90207810906293], [2.381959230658256, 48.90208218246019], [2.382163711983563, 48.90208654510956], [2.382365227093974, 48.90209061782371], [2.382569708486436, 48.902094979779925], [2.382771223661359, 48.90209905181095], [2.382975705110306, 48.90210341397327], [2.383177220349633, 48.90210748532118], [2.383381701876375, 48.90211184589109], [2.383583217180091, 48.902115916555886], [2.3835891250527, 48.90211604228819], [2.383815165191729, 48.90212086200095], [2.384016680564237, 48.902124931936456], [2.384242719417287, 48.90212975083527], [2.384444234857627, 48.90213382005136], [2.384607062450189, 48.90210304959206], [2.384801369045889, 48.90206678393875], [2.384919619678502, 48.902044436351765], [2.385113924473621, 48.90200817018246], [2.385314070802457, 48.90197034549457], [2.385508375046228, 48.90193407868297], [2.38570852080359, 48.901896253333376], [2.385902824496005, 48.90185998587934], [2.386102968317834, 48.90182215986107], [2.386297271458885, 48.90178589176472], [2.3864974160732793, 48.901748065091724], [2.38669171866296, 48.90171179635302], [2.386891862705856, 48.901673969018326], [2.38708616474416, 48.901637699637305], [2.387286308215551, 48.901599871640926], [2.387480609702469, 48.9015636016175], [2.387680752602349, 48.90152577295941], [2.387875053537874, 48.90148950229368], [2.388075194502193, 48.90145167296694], [2.388269494886319, 48.90141540165886], [2.388319821900565, 48.90140588857769], [2.388369437980241, 48.901396510338785], [2.388451542617897, 48.90138099200024], [2.388645842475988, 48.90134472007925], [2.388765199921938, 48.90132215941183], [2.38879284058515, 48.90131693427964], [2.388822423932009, 48.90131134224301], [2.389016723271721, 48.901275069718096], [2.389065511994285, 48.90126584704781], [2.389083268257372, 48.901262490559155], [2.38910941047888, 48.901257549087646], [2.389127404612903, 48.90125414794087], [2.389268745031787, 48.90122743165936], [2.389463043757872, 48.901191157508364], [2.389466942789765, 48.90119042106313], [2.389643822589023, 48.90115698598142], [2.389838120790821, 48.90112071121961], [2.390015001478958, 48.90108727559457], [2.390209299151394, 48.90105100112757], [2.390352730165945, 48.901023886823445], [2.390547027366458, 48.90098761180648], [2.390690459383955, 48.90096049800259], [2.390690810916713, 48.90096029924448], [2.390813716896925, 48.900891029062], [2.390959975109339, 48.900808047889115], [2.391100284841295, 48.90072896808228], [2.391246542152124, 48.90064598564786], [2.391386851012075, 48.90056690549359], [2.3915331074002912, 48.900483923596205], [2.391673415388038, 48.90040484309452], [2.391819670864162, 48.90032186083489], [2.391959977979813, 48.900242779985845], [2.392106232543952, 48.90015979736396], [2.392246538787512, 48.90008071616742], [2.392392792439467, 48.89999773318336], [2.39253309781094, 48.89991865163942], [2.392679350550817, 48.8998356682931], [2.392824389448175, 48.899753916963505], [2.392970641260933, 48.899670933249], [2.393115680595419, 48.89958918246049], [2.393261931481065, 48.89950619837779], [2.393406968535186, 48.899424447217314], [2.3935532184937243, 48.899341462766394], [2.393598680497859, 48.89931583772493], [2.393608208160639, 48.89931046670809], [2.393766551769307, 48.89922121386087], [2.393912800583729, 48.89913822895544], [2.394059048931901, 48.89905524386514], [2.394217390991365, 48.89896599040107], [2.394363638370159, 48.898883004925786], [2.394521979383561, 48.898793751044934], [2.394668227156953, 48.898710765191524], [2.394826567124296, 48.89862151089393], [2.394972812574797, 48.898538523749394], [2.395131151496087, 48.898449269035076], [2.395277395966772, 48.898366282404815], [2.395389434738066, 48.898303126337], [2.395417345446784, 48.89826869583843], [2.395403301876359, 48.898258448314124], [2.395206913128029, 48.89825191335665], [2.395006144090454, 48.89824565452142], [2.394809755450798, 48.8982391180134], [2.394608985146258, 48.89823285850543], [2.394412596604742, 48.898226321346044], [2.394211827761366, 48.89822006117914], [2.394015439317896, 48.89821352336844], [2.393814669207679, 48.89820726252877], [2.393618280862369, 48.898200724066726], [2.393417512213234, 48.89819446256809], [2.393221123955712, 48.89818792435399], [2.393020355414091, 48.89818166129027], [2.392823967254741, 48.89817512242484], [2.392623197446418, 48.898168858688315], [2.392426809385148, 48.898162319171576], [2.392226041027445, 48.8981560556754], [2.392029653074864, 48.898149514608036], [2.39182888345037, 48.898143250439105], [2.391632495596099, 48.898136708720415], [2.391431727432637, 48.898130443892526], [2.391235339676584, 48.89812390152249], [2.391034571610306, 48.89811763602876], [2.39083818395248, 48.89811109300746], [2.390637414619545, 48.89810482684095], [2.390441027049326, 48.898098284067544], [2.390240259188082, 48.89809201634286], [2.390043871716103, 48.89808547291814], [2.3898431025775873, 48.898079205419904], [2.389646715214501, 48.898072660444605], [2.389445947537063, 48.89806639228749], [2.3892495602722432, 48.89805984666084], [2.389048792692042, 48.898053577837864], [2.388852404161546, 48.89804703155298], [2.388651636678693, 48.898040762064156], [2.388455249610336, 48.89803421513485], [2.388254482224739, 48.89802794498018], [2.388058095254677, 48.89802139739957], [2.3878573266023952, 48.8980151265721], [2.387660939720166, 48.89800857923943], [2.387460172539587, 48.898002306853826], [2.3872637857556662, 48.897995758869854], [2.387063018661895, 48.897989486717634], [2.386866630622829, 48.897982937176074], [2.386665863626355, 48.89797666435801], [2.386469477049577, 48.897970114172146], [2.386268710150409, 48.897963840688256], [2.386072323672078, 48.89795728985101], [2.386055899986467, 48.89796431563725]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 11, "zemmour_eric": 50.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-71", "circ_bv": "16", "num_bureau": 71, "roussel_fabien": 10.0, "nb_emargement": 821.0, "nb_procuration": 14.0, "nb_vote_blanc": 11.0, "jadot_yannick": 14.0, "le_pen_marine": 58.0, "nb_exprime": 803.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1241.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 821, "quartier_bv": "74", "geo_point_2d": [48.900129718715995, 2.381708750639424], "melenchon_jean_luc": 498.0, "poutou_philippe": 4.0, "macron_emmanuel": 132.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.304420622363052, 48.890324307089955], [2.304392172486504, 48.890330066597464], [2.304357739131754, 48.89034391946677], [2.304157806864581, 48.89042434486063], [2.303985521367386, 48.890493655742446], [2.303983914210061, 48.890494412628364], [2.303869668038221, 48.89055693440913], [2.303755718356688, 48.89061929322589], [2.303641470261064, 48.89068181567313], [2.303527520032941, 48.890744174265606], [2.303527172520251, 48.89074435840525], [2.303373615175076, 48.890823109652594], [2.30316710193669, 48.89092879318644], [2.303013543515041, 48.891007543059565], [2.302912139721123, 48.89105977390718], [2.302910725054746, 48.89106041228846], [2.302808661050704, 48.89110051536511], [2.302703559991615, 48.89114181206345], [2.302698586756594, 48.891142981907166], [2.302614802177577, 48.89115120217129], [2.302496443698615, 48.89116281560469], [2.302457994213878, 48.89114052212786], [2.302444577269087, 48.89114404487873], [2.3023688270834892, 48.891201630012695], [2.302294645975258, 48.89126057862671], [2.30228563100839, 48.89126301723763], [2.3022710784, 48.891274443838775], [2.302206981008804, 48.891325379684815], [2.302086961912626, 48.891423401233816], [2.301948682269511, 48.89153328535942], [2.3018286622078348, 48.891631306630956], [2.301690380103683, 48.89174119042951], [2.301570359088561, 48.89183921052431], [2.301570944818302, 48.89185095735731], [2.301595891985081, 48.89186879442851], [2.3016211774820112, 48.89188733764061], [2.301621309347809, 48.891899266187856], [2.301496054476353, 48.89199384542332], [2.301377244883614, 48.892082725317216], [2.301251989127386, 48.89217730428157], [2.301133178687326, 48.89226618481772], [2.301007922046519, 48.89236076351098], [2.300889110783273, 48.892449642890796], [2.300763853257678, 48.89254422131297], [2.300645042510888, 48.89263310134299], [2.300639837242898, 48.89263660529735], [2.300646873893439, 48.892665007562705], [2.300803195657185, 48.89273861478941], [2.300972636053038, 48.892818597268395], [2.30112895737464, 48.892892204051556], [2.301298398758672, 48.89297218695769], [2.301345049125347, 48.892994152693106], [2.301501279342063, 48.89306771527311], [2.301670721869317, 48.89314769763962], [2.3018269530189492, 48.8932212588852], [2.301996396546075, 48.89330124077969], [2.30215262861666, 48.89337480159008], [2.302322073143765, 48.89345478301255], [2.302324686264258, 48.893456013226235], [2.302389862462868, 48.89348670111477], [2.302559307718568, 48.893566682193416], [2.302697885083334, 48.89363192949607], [2.302836462795319, 48.89369717663442], [2.303005910785876, 48.893777157073714], [2.303169622080519, 48.89385504172927], [2.303339069732797, 48.89393502167769], [2.303339115813609, 48.89393504352959], [2.303519971206714, 48.894021082682116], [2.303684404114195, 48.89409937999757], [2.303757282546255, 48.894134050045515], [2.303921717519202, 48.894212347934236], [2.304082708756411, 48.894288934844916], [2.304247143343968, 48.89436723226782], [2.304408135538792, 48.894443818730224], [2.304572572480761, 48.894522114803856], [2.304733565621195, 48.89459870171716], [2.304898003541722, 48.8946769973329], [2.305051746611375, 48.894750135077516], [2.305216185488664, 48.894828430245504], [2.305369929464351, 48.8949015666723], [2.305534369298504, 48.894979861392585], [2.305688114168322, 48.89505299740074], [2.305759520644773, 48.895086965170684], [2.305923961638269, 48.89516526024198], [2.305966754207331, 48.89518561534326], [2.305967022521964, 48.89518574640096], [2.306104446048999, 48.8952511169276], [2.306284547854404, 48.895341369708476], [2.306421972190988, 48.89540673986147], [2.306602075085161, 48.89549699215202], [2.306771389449213, 48.89557753106602], [2.306960987847953, 48.895663803395976], [2.307130304673476, 48.89574434179816], [2.307216707661575, 48.89578544073189], [2.307406307555268, 48.89587171234049], [2.307505290354417, 48.89591879506466], [2.307522222291578, 48.89592517924378], [2.307532540795769, 48.8959290691275], [2.307718152265161, 48.896001379449714], [2.307891288727443, 48.89606665841692], [2.308076901185618, 48.89613896817404], [2.308250039919056, 48.89620424662233], [2.308414529327618, 48.89626342332031], [2.308587667534472, 48.8963287012652], [2.308698704106381, 48.896370565443924], [2.308863194550279, 48.89642974151673], [2.30904536870029, 48.8964984245055], [2.309209859942283, 48.896557600095214], [2.309392034997018, 48.89662628254871], [2.309556527037004, 48.89668545765539], [2.309558584557843, 48.896686233042516], [2.309602827553976, 48.89669337871846], [2.309614721201988, 48.89667859137427], [2.309764867256348, 48.89659116135448], [2.309909548066391, 48.89650727715523], [2.310059693131582, 48.89641984675213], [2.310204371626625, 48.896335962175776], [2.3103490496434382, 48.896252078317474], [2.310499194610399, 48.89616464645157], [2.310643871676229, 48.896080762223924], [2.310794014278234, 48.89599333086616], [2.31093869040489, 48.89590944536998], [2.311088832017748, 48.89582201362892], [2.311233508557208, 48.895738127771345], [2.311383649180923, 48.895650695646985], [2.311528323405428, 48.89556680941227], [2.311678463040008, 48.89547937690462], [2.311823137677318, 48.89539549030849], [2.311973276322766, 48.89530805741754], [2.312112879768208, 48.89522946892064], [2.312263017448425, 48.89514203565323], [2.312402621375214, 48.89506344681448], [2.312552758101874, 48.89497601227133], [2.312692361146143, 48.89489742308291], [2.312842496895704, 48.89480998906249], [2.312982097693604, 48.89473139951662], [2.31313223248961, 48.89464396422046], [2.313271833768959, 48.894565374332764], [2.313421967587784, 48.89447793955939], [2.313561567984526, 48.89439934932201], [2.3135654259657112, 48.89438490940605], [2.313553774743822, 48.89436633183167], [2.313394240070395, 48.894302136295686], [2.313235115579626, 48.894236860107135], [2.31307558169582, 48.8941726641391], [2.312916459364105, 48.894107387527264], [2.312756926269917, 48.89404319112711], [2.312597803369576, 48.893977914076345], [2.312438271065008, 48.893913717244125], [2.312279148971758, 48.89384843886292], [2.312119617444932, 48.893784242497894], [2.311960496146899, 48.89371896368559], [2.311800966773513, 48.893654766896304], [2.311641846270696, 48.89358948765293], [2.311482316323092, 48.893525290423696], [2.311323196615491, 48.89346001074922], [2.311300905146641, 48.89345236958851], [2.311249904164871, 48.89345602340197], [2.311249341376721, 48.89345577914595], [2.311090786212306, 48.893383330284585], [2.3109342175821252, 48.893311789264175], [2.310775661930868, 48.89323933996822], [2.310619094166676, 48.893167798526385], [2.31046054075621, 48.893095348811556], [2.310303973858102, 48.89302380694835], [2.3101454199608, 48.89295135679891], [2.309988853928575, 48.89287981451429], [2.30983228833853, 48.89280827112108], [2.309673737117728, 48.89273582034074], [2.309517172381743, 48.892664277425375], [2.309358620674108, 48.89259182621045], [2.309202056804101, 48.892520282873726], [2.30904350733723, 48.892447831239934], [2.308886944333196, 48.89237628748182], [2.308728394379496, 48.89230383541343], [2.30857183225348, 48.8922322903347], [2.308413284540431, 48.89215983784744], [2.308256723268445, 48.89208829324657], [2.308098175068671, 48.89201584032478], [2.307941614662552, 48.89194429530255], [2.307783068703519, 48.891871841961894], [2.307792068433228, 48.89184755820509], [2.307782153066785, 48.89183976937574], [2.307614458565275, 48.89176313500625], [2.307446935915407, 48.89168899791911], [2.307279242392762, 48.89161236306967], [2.307111720705284, 48.89153822550339], [2.306944028161706, 48.891461590173975], [2.306776507436618, 48.891387452128555], [2.306608815871901, 48.891310816319184], [2.306441297472961, 48.891236677802574], [2.306273606887304, 48.89116004151322], [2.306106088086984, 48.89108590250956], [2.305938569763716, 48.89101176326654], [2.305770880642347, 48.89093512625747], [2.305603364645211, 48.89086098654326], [2.305435676502693, 48.89078434905431], [2.3052681601041822, 48.89071020885303], [2.305100472940614, 48.89063357088413], [2.304932957516586, 48.89055942930448], [2.304765271319963, 48.89048279175494], [2.304597758221953, 48.89040864970413], [2.304430073004269, 48.89033201167462], [2.304420622363052, 48.890324307089955]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 75, "zemmour_eric": 127.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-17", "circ_bv": "03", "num_bureau": 17, "roussel_fabien": 16.0, "nb_emargement": 1204.0, "nb_procuration": 33.0, "nb_vote_blanc": 13.0, "jadot_yannick": 54.0, "le_pen_marine": 63.0, "nb_exprime": 1186.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1612.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1205, "quartier_bv": "67", "geo_point_2d": [48.893520605128096, 2.306942238605744], "melenchon_jean_luc": 468.0, "poutou_philippe": 6.0, "macron_emmanuel": 331.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.300826239652273, 48.844725325912776], [2.300836317318415, 48.84471600622341], [2.300965012018048, 48.84462793331541], [2.301090179191565, 48.84454193877619], [2.301215347326622, 48.84445594320812], [2.301344040743552, 48.844367869871796], [2.301469206667089, 48.844281874916014], [2.3015978992372492, 48.84419380039363], [2.301723065686396, 48.84410780516674], [2.301851757397731, 48.844019730357495], [2.301976921647436, 48.843933734843695], [2.302105612499954, 48.84384565974764], [2.302106596286087, 48.84384505032022], [2.302188218982338, 48.843799260354125], [2.302298449490187, 48.84373626052127], [2.302301613335885, 48.843727922959914], [2.302287015212365, 48.843716667690195], [2.30211611813366, 48.843650799552655], [2.301943233070253, 48.843584146109194], [2.3017723368605703, 48.84351827747272], [2.301599452676521, 48.843451623524565], [2.30142855597325, 48.84338575438123], [2.301255672668459, 48.843319099928344], [2.301084778196721, 48.84325323029402], [2.3009118957711863, 48.84318657533642], [2.300883406387012, 48.8431487163757], [2.300863236688595, 48.843151916266486], [2.300669404328114, 48.84319945885529], [2.300476229928091, 48.84324576924722], [2.300282395503033, 48.843293311197016], [2.300089220411376, 48.8433396209601], [2.299895385284149, 48.84338716227886], [2.299702209500762, 48.84343347141316], [2.299508375033984, 48.8434810121088], [2.29931519719636, 48.84352732060633], [2.299121362027628, 48.843574860670955], [2.298928184860697, 48.8436211685476], [2.2987343476274003, 48.84366870797317], [2.298541169768857, 48.843715015221015], [2.29853595882455, 48.84371554766988], [2.298348975995567, 48.84371046783665], [2.298154929480696, 48.84370407186728], [2.297967948092442, 48.843698991446466], [2.297773901667062, 48.84369259485897], [2.297586918994714, 48.84368751383459], [2.297392872658835, 48.84368111662902], [2.297205891427232, 48.84367603501703], [2.297011845180864, 48.84366963719338], [2.296824862665185, 48.84366455497782], [2.296630816496098, 48.84365815743533], [2.296443835433418, 48.84365307373292], [2.296249789353955, 48.84364667557234], [2.296062806994975, 48.84364159216564], [2.295868762379603, 48.84363519249565], [2.295838995291498, 48.843652820258235], [2.295836594099089, 48.843678860789794], [2.295880746111358, 48.843723768847056], [2.295881129465214, 48.84372413804514], [2.295985839692875, 48.8438238240746], [2.296093119255048, 48.843921864887875], [2.296197830297582, 48.84402154981484], [2.296305109303113, 48.84411959041258], [2.296409822498763, 48.84421927604365], [2.296517102310084, 48.84431731643391], [2.29651759530763, 48.84431774023645], [2.296655664338432, 48.844429886430206], [2.296794692146678, 48.844542215260795], [2.296932762356187, 48.84465436201147], [2.297071791360481, 48.84476669049742], [2.297209861410629, 48.8448788359984], [2.297348892973526, 48.84499116414772], [2.297486964214531, 48.845103309306374], [2.297625996973503, 48.84521563711102], [2.297655531476105, 48.84523611728267], [2.297656846318698, 48.84523845076142], [2.297674973307434, 48.84525090546973], [2.297774462290263, 48.84531989433855], [2.297882322874202, 48.845394198935324], [2.297901744292627, 48.84540373466842], [2.297946068841651, 48.84536911199671], [2.29810272132896, 48.84525680555591], [2.298262701076242, 48.845140625964746], [2.298419352194453, 48.84502831908633], [2.298579330534422, 48.84491213904795], [2.298595803019543, 48.84491024443054], [2.298783449716089, 48.84497598456429], [2.298967624675131, 48.845041233685045], [2.299155273674874, 48.84510697323586], [2.299339449562331, 48.845172221776586], [2.299351632529685, 48.84517245411445], [2.299533676283412, 48.84511665864672], [2.299716539147174, 48.845060720200195], [2.299898582119947, 48.84500492417159], [2.300081442837445, 48.84494898515379], [2.300263485029162, 48.84489318856438], [2.300446344962952, 48.84483724898316], [2.300628386373813, 48.84478145183291], [2.30081124552389, 48.844725511688395], [2.300826239652273, 48.844725325912776]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 75, "zemmour_eric": 117.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-27", "circ_bv": "12", "num_bureau": 27, "roussel_fabien": 9.0, "nb_emargement": 1124.0, "nb_procuration": 54.0, "nb_vote_blanc": 15.0, "jadot_yannick": 66.0, "le_pen_marine": 76.0, "nb_exprime": 1110.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1464.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1128, "quartier_bv": "58", "geo_point_2d": [48.8441966234494, 2.2991316440149157], "melenchon_jean_luc": 336.0, "poutou_philippe": 4.0, "macron_emmanuel": 373.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346741570126894, 48.891206622365154], [2.346714519948565, 48.891187803037965], [2.346585349053141, 48.891130678297394], [2.346433255154188, 48.89106616176657], [2.346304084869108, 48.89100903671627], [2.346151991673981, 48.89094451982104], [2.346151599620422, 48.89094435310404], [2.345965618959057, 48.89086806313573], [2.3458135265951, 48.89080354580233], [2.345807764205647, 48.890793576791935], [2.345817885782997, 48.89076953830123], [2.345819480001686, 48.89076433542857], [2.345830141436306, 48.89075789875577], [2.346012992810113, 48.89073560235861], [2.346200122094671, 48.890712999887484], [2.346382973141186, 48.89069070382371], [2.34657010346753, 48.89066810078092], [2.346752954197842, 48.890645804151305], [2.34694008283856, 48.890623200521986], [2.347122933264038, 48.89060090242723], [2.347310061582771, 48.8905782982188], [2.347492911680854, 48.89055600045743], [2.347680041041246, 48.89053339567738], [2.347862890823306, 48.890511097350156], [2.348050018509211, 48.890488491084284], [2.3482328679750353, 48.89046619219119], [2.348419995327776, 48.890443586245496], [2.348427378075774, 48.89042851417862], [2.34825977592481, 48.890313341152506], [2.348126294198524, 48.890217243035494], [2.3481075155594953, 48.89020190895053], [2.348084818537969, 48.89020695739658], [2.34789040212745, 48.890201700731794], [2.347696869746418, 48.89019577137578], [2.347502452053193, 48.89019051407368], [2.347308919769193, 48.89018458319134], [2.34711450214554, 48.890179326158574], [2.346920969947417, 48.89017339464917], [2.346726552404712, 48.89016813698648], [2.346533020292272, 48.890162204850014], [2.346338604205654, 48.890156945665574], [2.346145070815273, 48.89015101289459], [2.346134227398113, 48.89015403476894], [2.346008998330757, 48.890247298798556], [2.345886238703683, 48.890338389924146], [2.345761008748758, 48.89043165367874], [2.345638248264607, 48.890522743635536], [2.345513017422108, 48.89061600711513], [2.345390256069375, 48.89070709680235], [2.3453865206308, 48.890709043203216], [2.345210403292211, 48.89077149341306], [2.345030104034675, 48.890833292760554], [2.344853985859765, 48.890895741539836], [2.344673684385107, 48.89095754033622], [2.344497565351145, 48.891019989483496], [2.344317263023322, 48.891081787736226], [2.344300024773878, 48.89109332609746], [2.344313605470222, 48.8911154491835], [2.344377081232718, 48.89123360724994], [2.34444196507301, 48.891352824286336], [2.344505440052503, 48.891470982251704], [2.344570324482492, 48.891590199192805], [2.344633800031332, 48.891708357963864], [2.344698685051027, 48.891827574809575], [2.344762161191862, 48.89194573258771], [2.34482704680127, 48.892064949338106], [2.344890523522785, 48.89218310702265], [2.344955409722016, 48.89230232367766], [2.34495774479057, 48.89230502362731], [2.345086385640727, 48.892407414563934], [2.345222569041447, 48.89251567510207], [2.3452248481666143, 48.892518270418535], [2.345283122502634, 48.89262736929513], [2.345348510329483, 48.89274281846419], [2.34540678653975, 48.89285191726572], [2.345472174934109, 48.892967365444385], [2.345530450279708, 48.89307646505517], [2.345595839230373, 48.893191913142694], [2.345654116461447, 48.89330101177911], [2.345704078885045, 48.89338922316238], [2.345717884165436, 48.89341592750911], [2.345719067230815, 48.893416425002755], [2.345734494318696, 48.893443662512446], [2.345799884182956, 48.89355911044986], [2.345878657204815, 48.893682897106196], [2.345944047677794, 48.893798345838974], [2.346022822768196, 48.89392213238091], [2.346039570481087, 48.893927214174894], [2.346217138302492, 48.89388959475829], [2.346412794980551, 48.89384255359062], [2.346468990093999, 48.89383064749898], [2.346494266492332, 48.8938206123165], [2.346489643077954, 48.89379560213927], [2.346501504307102, 48.8936824279115], [2.346513182174442, 48.89356842799269], [2.346525041936946, 48.8934552537317], [2.346536719713184, 48.893341252887716], [2.346548580725211, 48.89322807950767], [2.346560258398857, 48.89311407863772], [2.346559455174728, 48.89311037534363], [2.3464912168702, 48.892987718558075], [2.346423076856592, 48.8928602994445], [2.346354839201087, 48.892737642553264], [2.346286698484798, 48.89261022332556], [2.3462184628533, 48.8924875654368], [2.346150322798031, 48.892360146102455], [2.346082086440548, 48.89223748899987], [2.34601394840998, 48.89211006956629], [2.346022889701615, 48.892098465872174], [2.346117800761995, 48.892079682008095], [2.346201349451849, 48.89206393779723], [2.346210241156455, 48.89205866864819], [2.346274522540153, 48.89195406861276], [2.346347004900975, 48.89183259973312], [2.346347075909082, 48.89183248410803], [2.34641135537497, 48.89172788397016], [2.346472683330166, 48.89162914205993], [2.346536963656361, 48.891524541842685], [2.346598291145134, 48.891425798950536], [2.346662570968062, 48.891321198646494], [2.346723897967845, 48.89122245657097], [2.346741570126894, 48.891206622365154]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 42, "zemmour_eric": 57.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-66", "circ_bv": "18", "num_bureau": 66, "roussel_fabien": 22.0, "nb_emargement": 1132.0, "nb_procuration": 64.0, "nb_vote_blanc": 7.0, "jadot_yannick": 118.0, "le_pen_marine": 34.0, "nb_exprime": 1122.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1426.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1132, "quartier_bv": "70", "geo_point_2d": [48.891684329889195, 2.345910419765158], "melenchon_jean_luc": 389.0, "poutou_philippe": 5.0, "macron_emmanuel": 409.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.390033128865637, 48.88608802410797], [2.390011952302663, 48.886093353535735], [2.389908858693441, 48.886082943807], [2.38976195148508, 48.88607015591467], [2.3897589497569323, 48.88606784823959], [2.389730134568234, 48.886067754434414], [2.389653804480217, 48.88606111056469], [2.389497584640844, 48.886046467234216], [2.389274347657281, 48.886027033825755], [2.389118128026842, 48.886012389999735], [2.389116930981769, 48.88601224989312], [2.388943117028166, 48.88598656680115], [2.388759852750068, 48.885959381004724], [2.3885860377854122, 48.88593369738618], [2.388402773879798, 48.88590651104192], [2.388228959257167, 48.885880827803064], [2.388045695734609, 48.88585364001168], [2.387871881464571, 48.88582795625325], [2.387688619678046, 48.88580076792098], [2.38768853527187, 48.88580075579811], [2.387473254284752, 48.88576799844545], [2.387289991543254, 48.88574081039386], [2.387074711054769, 48.88570805232281], [2.386891448732321, 48.88568086365974], [2.38687665495113, 48.88567569413169], [2.38686110553462, 48.88568165616623], [2.386738492181225, 48.88572983544057], [2.386610440536999, 48.885779954449646], [2.386605707393289, 48.885781093027965], [2.386421284733184, 48.885801223744686], [2.386233459092768, 48.88582196895855], [2.386049036143997, 48.88584209910116], [2.385861208833617, 48.88586284462258], [2.385676785606794, 48.88588297329184], [2.38548895936432, 48.88590371823552], [2.38530453583824, 48.885923847229925], [2.385116707947029, 48.88594459068265], [2.385105944897292, 48.885950776719355], [2.385056850893196, 48.88605432728582], [2.385007083955021, 48.886157106344164], [2.384957989559812, 48.88626065685065], [2.384908220855051, 48.88636343674087], [2.384859126068721, 48.88646698718736], [2.3848093569822533, 48.88656976611792], [2.384776572797342, 48.88661032804339], [2.384791224662036, 48.886617934264464], [2.3848387219772222, 48.88664258864609], [2.384871979457049, 48.88663318620782], [2.385059445533043, 48.88668221531055], [2.3852461638114, 48.88673108379403], [2.385433630592139, 48.88678011230657], [2.385620350936339, 48.8868289802092], [2.385807818421822, 48.88687800813149], [2.385994538104544, 48.88692687543926], [2.386182006284064, 48.88697590367061], [2.386368728043226, 48.88702476949827], [2.386556196927586, 48.88707379713936], [2.386742918025253, 48.887122662372136], [2.386930387614347, 48.88717168942302], [2.387117110777843, 48.88722055407493], [2.387304581071669, 48.88726958053561], [2.387491303573553, 48.88731844459259], [2.387678774572105, 48.88736747046304], [2.387865499139916, 48.88741633393913], [2.38805297084319, 48.88746535921935], [2.388239694749476, 48.88751422210059], [2.388427168521145, 48.88756324679752], [2.388613893129474, 48.88761210909085], [2.388801366242179, 48.887661133190576], [2.388988091552748, 48.88770999489607], [2.389175566733845, 48.88775901841249], [2.389362292746549, 48.887807879530044], [2.3893623321661392, 48.88780789052296], [2.389513239392346, 48.88784771220053], [2.389699966039951, 48.88789657278755], [2.389850873781366, 48.887936394036345], [2.3900376010637903, 48.887985254092925], [2.390188509320412, 48.88802507491299], [2.390237790103571, 48.8880379703536], [2.390249817966951, 48.88803847047384], [2.390271731156209, 48.888003141575794], [2.390311220492813, 48.887865300297584], [2.390350683466774, 48.887729459848174], [2.390390172386832, 48.88759161850961], [2.390429634947322, 48.887455778000295], [2.390469095938349, 48.88731993745426], [2.390508585597966, 48.88718209603217], [2.390548046186164, 48.88704625452699], [2.390587534065685, 48.88690841303761], [2.390626995593671, 48.88677257237878], [2.390666483056668, 48.88663473082902], [2.390663951918972, 48.88662762948226], [2.390560482611419, 48.886537594129], [2.39045836261969, 48.88645044967647], [2.390356242969655, 48.886363305129876], [2.390252773366227, 48.88627326858288], [2.390150654397276, 48.88618612474621], [2.39004718550137, 48.88609608800707], [2.390033128865637, 48.88608802410797]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 43, "zemmour_eric": 92.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-27", "circ_bv": "16", "num_bureau": 27, "roussel_fabien": 31.0, "nb_emargement": 1351.0, "nb_procuration": 68.0, "nb_vote_blanc": 11.0, "jadot_yannick": 95.0, "le_pen_marine": 63.0, "nb_exprime": 1338.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1926.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1351, "quartier_bv": "75", "geo_point_2d": [48.88668853542075, 2.388054643270247], "melenchon_jean_luc": 663.0, "poutou_philippe": 3.0, "macron_emmanuel": 289.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.286079696271588, 48.8355531139989], [2.28606937464667, 48.835567249919805], [2.285999038698495, 48.835692454721936], [2.285923081506769, 48.83582330276361], [2.285924810687125, 48.8358318337602], [2.286039981063833, 48.83593567231428], [2.286154933314107, 48.83603935565035], [2.286270104620161, 48.83614319306427], [2.2863850577735, 48.836246877059196], [2.28650022999649, 48.836350714232324], [2.286615184077531, 48.83645439708755], [2.286730357217361, 48.836558234019826], [2.286845312201595, 48.83666191753394], [2.28696048625838, 48.83676575422534], [2.287075442170223, 48.8368694365998], [2.287190617144069, 48.83697327305033], [2.28730557395903, 48.8370769560837], [2.287420749849746, 48.837180792293374], [2.28753570759253, 48.83728447418701], [2.2876508844002252, 48.83738831015582], [2.287765843046051, 48.83749199270834], [2.287881020770836, 48.83759582843631], [2.2879959803443928, 48.837699509849095], [2.288111160348435, 48.83780334534431], [2.2882261194629008, 48.83790702740786], [2.288227902184551, 48.837915461538984], [2.288147870252731, 48.83805812850934], [2.288069052172953, 48.83819678064209], [2.2880549057313813, 48.838229898572436], [2.288070880223395, 48.838235809889994], [2.288181237988661, 48.83826365738043], [2.288388967902698, 48.83831797970424], [2.288550165606744, 48.838358656643784], [2.288757896296041, 48.838412977423], [2.288919094581784, 48.83845365386194], [2.288960237344043, 48.83846441299093], [2.288963009668845, 48.83846713118385], [2.288988200480029, 48.83847500922514], [2.289154789215214, 48.838518571090034], [2.289344958484705, 48.83856972680903], [2.289367965619123, 48.838569891373666], [2.289376484053818, 48.83853129686913], [2.2894251615986843, 48.838419916423014], [2.289482575483551, 48.838292911785274], [2.289502972980531, 48.83828790832094], [2.289701370517638, 48.83837169391053], [2.289896801460142, 48.83845406302665], [2.290095198900355, 48.8385378479425], [2.290290631088188, 48.838620216402965], [2.29030816496511, 48.83861859723617], [2.290444372266042, 48.83851702798653], [2.290568646416618, 48.83842407843332], [2.290692921486244, 48.838331128751356], [2.290829127286234, 48.83822955903748], [2.290953400065312, 48.838136609060676], [2.291089606224026, 48.838035038141314], [2.291213878062504, 48.83794208877698], [2.291324826176741, 48.83785935185853], [2.291326795864887, 48.83785056406993], [2.291311636335489, 48.837840710670164], [2.291170884491504, 48.83777307669807], [2.291034589286925, 48.83770676586374], [2.290898295791382, 48.837640454878276], [2.290757545012243, 48.83757282130703], [2.290621250857127, 48.837506509989865], [2.290480500811395, 48.8374388751852], [2.290474148482859, 48.83743722043297], [2.29030958722597, 48.83742384003772], [2.290139396285968, 48.837409571601924], [2.289974835202301, 48.837396190745814], [2.289804644444213, 48.837381921833355], [2.289640083533773, 48.83736854051638], [2.289469892957603, 48.83735427112735], [2.289458064161169, 48.83734438510673], [2.289479202382734, 48.837215052236616], [2.289499664373567, 48.83709034350547], [2.289520802388891, 48.836961010598586], [2.289541264192729, 48.83683630093268], [2.289561727248735, 48.83671159215673], [2.2895828649564782, 48.83658225919512], [2.289603326463256, 48.83645754947636], [2.289624463952511, 48.836328217377314], [2.289644925259942, 48.83620350762308], [2.289666062542969, 48.83607417548731], [2.289686523651157, 48.83594946569766], [2.289707660740213, 48.83582013262588], [2.289726889747153, 48.83581292410904], [2.28982869548603, 48.83584377725312], [2.289917383194828, 48.83587050165305], [2.289918173130917, 48.83587072039356], [2.289940682309066, 48.835872447709484], [2.289951806527472, 48.83585752837704], [2.289969085678357, 48.83573391845174], [2.289986863104673, 48.835608228517884], [2.29000414208989, 48.83548461855993], [2.290021920708853, 48.835358928600954], [2.2900252717243212, 48.83533495588071], [2.290017392661053, 48.8353241822737], [2.290004682026355, 48.835314050020294], [2.28999230512526, 48.83531422387943], [2.289056969175345, 48.83511540234116], [2.289054055102024, 48.83511419964443], [2.287930222901114, 48.83432974921647], [2.287926003678951, 48.83432775446558], [2.287920960366677, 48.83432694648083], [2.287911521834673, 48.83432665555159], [2.287906387147812, 48.83432715111658], [2.287901905929381, 48.83432887731998], [2.287652558484608, 48.8344731615098], [2.287645051697393, 48.83447357278485], [2.287644145885794, 48.83448891343162], [2.287645447263813, 48.83449925770299], [2.28769277405234, 48.83461822112119], [2.2877408270305413, 48.83473929067077], [2.287788154266956, 48.834858253126384], [2.287836207687854, 48.83497932261169], [2.287883535347689, 48.835098285903385], [2.287931589211392, 48.835219355324384], [2.287978917319021, 48.83533831765349], [2.288026972975654, 48.83545938791761], [2.288074300156599, 48.83557835017536], [2.288122356268238, 48.83569941947587], [2.288169683872618, 48.835818382569656], [2.288217740427088, 48.83593945180587], [2.288204207761144, 48.83595072137651], [2.287965049279804, 48.83594662589093], [2.28774726548677, 48.835943132078484], [2.28774452205966, 48.835942899892345], [2.287552805486802, 48.835913362176], [2.2873653032739583, 48.83588450400353], [2.287177802631136, 48.83585564554458], [2.286986085338025, 48.835826106909465], [2.286983431487382, 48.83582550199942], [2.286837733571137, 48.83578071963689], [2.286689409615998, 48.83573530985838], [2.28654371084224, 48.83569052712599], [2.286395387399777, 48.83564511697922], [2.286249689130719, 48.83560033388508], [2.286101367563438, 48.835554923378226], [2.286079696271588, 48.8355531139989]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 107, "zemmour_eric": 86.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-69", "circ_bv": "13", "num_bureau": 69, "roussel_fabien": 24.0, "nb_emargement": 1275.0, "nb_procuration": 70.0, "nb_vote_blanc": 10.0, "jadot_yannick": 87.0, "le_pen_marine": 82.0, "nb_exprime": 1260.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1746.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1275, "quartier_bv": "57", "geo_point_2d": [48.83670931255036, 2.2886771594153204], "melenchon_jean_luc": 404.0, "poutou_philippe": 2.0, "macron_emmanuel": 398.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.334397694893718, 48.84043303690255], [2.334394845616431, 48.84043359124664], [2.334345203446862, 48.84044984176536], [2.334169562758381, 48.840507170155185], [2.333991993011081, 48.84056530057295], [2.333816351544925, 48.84062262843823], [2.333638781021842, 48.84068075742635], [2.333463138766619, 48.84073808566643], [2.333285567456262, 48.84079621412424], [2.333109924434972, 48.84085354094045], [2.332932352325837, 48.84091166976729], [2.33275670852698, 48.84096899605895], [2.332579135642086, 48.841027123456136], [2.332403491054148, 48.84108445012258], [2.332225917381987, 48.84114257698941], [2.332050272028004, 48.84119990223203], [2.331872697557052, 48.84125802946784], [2.331697051425611, 48.84131535418587], [2.331519476178924, 48.841373479992086], [2.331452475022061, 48.84139534686908], [2.3314468574794702, 48.8413963938134], [2.3314243664074112, 48.84140465379776], [2.33131572061665, 48.84144011108843], [2.331139079468578, 48.84149864176727], [2.330963431719306, 48.841555965395784], [2.330786789771429, 48.84161449644765], [2.330611139881896, 48.84167181954534], [2.330434497157306, 48.841730349171634], [2.33025884785225, 48.84178767175374], [2.330082204327848, 48.84184620175309], [2.329906552882528, 48.84190352380434], [2.329729908581427, 48.841962052378115], [2.329554257720595, 48.842019373913764], [2.329446021081022, 48.84205523650853], [2.329426806646819, 48.842063473111814], [2.329489940371566, 48.84213582836077], [2.329558791893454, 48.84224989128733], [2.329627377161982, 48.8423638087705], [2.329696229285819, 48.842477871594674], [2.329764813792258, 48.84259178896814], [2.329833666506485, 48.84270585258922], [2.329902252987391, 48.84281976896897], [2.329971106303585, 48.842933832487624], [2.330039692010941, 48.84304774965698], [2.330108545940565, 48.84316181217393], [2.330177133610849, 48.84327572924884], [2.330245988130896, 48.84338979256268], [2.330314575050653, 48.843503708628575], [2.330383430172787, 48.84361777183999], [2.330452019043843, 48.84373168871074], [2.330520874779527, 48.84384575092044], [2.330589462888604, 48.84395966768149], [2.33059423906461, 48.8439636794864], [2.330667857722914, 48.8439981691815], [2.330736075549769, 48.84402975964632], [2.330757151437222, 48.84404022832394], [2.3307749623520913, 48.844029381809094], [2.330811494977291, 48.84399989548618], [2.330851698048833, 48.84397033165136], [2.330858877762607, 48.843967560400294], [2.331027006320696, 48.843942858936366], [2.331195427336191, 48.8439183963034], [2.331363555576067, 48.84389369436538], [2.33153197628625, 48.84386923035821], [2.331700102845482, 48.843844527938515], [2.331868524601331, 48.8438200634641], [2.332036650830914, 48.84379536146967], [2.3322050722699, 48.84377089652041], [2.3322205999264902, 48.84376678946513], [2.332223065278014, 48.843754527815136], [2.332255983382046, 48.84363484888995], [2.332290392932043, 48.84351020568663], [2.332323310715738, 48.84339052761602], [2.332357718592423, 48.84326588345912], [2.3323579212927372, 48.843264738800876], [2.332369509987604, 48.84312593629649], [2.332380228376477, 48.842989864782545], [2.332391816950919, 48.8428510622418], [2.3324025352250253, 48.84271499069232], [2.33241412367884, 48.842576188115245], [2.332424841838284, 48.84244011653025], [2.332435561315665, 48.842304044035984], [2.332447149578638, 48.84216524230386], [2.332457867578766, 48.842029169766526], [2.332469455721321, 48.841890367998076], [2.332473101973794, 48.8418847241443], [2.332626656951663, 48.84177620552853], [2.332782183247823, 48.84166680733238], [2.33293573694014, 48.84155828829869], [2.333091261937295, 48.84144888967934], [2.333094742546162, 48.84144116914654], [2.333064339651362, 48.84132770930261], [2.333035463236293, 48.84121465097221], [2.333039622926496, 48.84120656818392], [2.3331797073350202, 48.84112063861429], [2.333310770388981, 48.84104192097581], [2.333313727015196, 48.841040540738916], [2.333465045170227, 48.84098833578839], [2.333662586075768, 48.84092008352885], [2.333813903531665, 48.84086787813135], [2.334011443535327, 48.84079962438913], [2.334162760280596, 48.84074741944402], [2.334360300733326, 48.84067916512589], [2.334511616790946, 48.84062695883462], [2.334518195005112, 48.84061607533144], [2.334487510220407, 48.8405569260145], [2.334462144843922, 48.84051068070358], [2.334397694893718, 48.84043303690255]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 96, "zemmour_eric": 93.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "6-21", "circ_bv": "11", "num_bureau": 21, "roussel_fabien": 18.0, "nb_emargement": 984.0, "nb_procuration": 70.0, "nb_vote_blanc": 5.0, "jadot_yannick": 91.0, "le_pen_marine": 39.0, "nb_exprime": 975.0, "nb_vote_nul": 4.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 1159.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 984, "quartier_bv": "23", "geo_point_2d": [48.8424117992056, 2.331456760464805], "melenchon_jean_luc": 133.0, "poutou_philippe": 2.0, "macron_emmanuel": 472.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.342492731636047, 48.874056518122714], [2.342500779949696, 48.874068272608845], [2.342614860789609, 48.87411305665746], [2.342683373823935, 48.87414061178352], [2.342690375234351, 48.87414187692613], [2.342885594796283, 48.87414158354773], [2.343078640840761, 48.874141311198464], [2.343273860398484, 48.87414101718687], [2.343466905075509, 48.87414074420401], [2.34366212462881, 48.87414044955919], [2.3438551693016922, 48.874140175950174], [2.344048215335865, 48.874139902037314], [2.344243434882816, 48.87413960644452], [2.344436479549513, 48.87413933189807], [2.344631699092018, 48.874139035672094], [2.344824743754549, 48.87413876049949], [2.345019963292803, 48.87413846364036], [2.34521300931448, 48.87413818784906], [2.345408228836968, 48.87413789125596], [2.345460678701642, 48.874144601131285], [2.345474209003935, 48.87413234069948], [2.3454589190647592, 48.87405397065731], [2.345436111938362, 48.87393325195845], [2.345410704525588, 48.87380302021589], [2.345387897632121, 48.87368230058114], [2.345362489099001, 48.87355206879125], [2.345339682415961, 48.87343135001916], [2.345314275489109, 48.87330111819691], [2.345291469038892, 48.87318039848886], [2.345266062354993, 48.873050166626754], [2.345243256126396, 48.872929446882125], [2.345217849685446, 48.87279921498019], [2.345195042303979, 48.87267849609073], [2.34516963610598, 48.872548264148975], [2.345146830320615, 48.8724275443311], [2.345157612327043, 48.87241762335209], [2.345304182045576, 48.87239773670829], [2.345440519286798, 48.8723778865629], [2.345587088785503, 48.872357999571975], [2.345723425814902, 48.87233814910361], [2.345723681251089, 48.87233811002956], [2.345884051871513, 48.87231364583085], [2.346045039168607, 48.87228804802214], [2.346205410847337, 48.87226358339922], [2.346366397831777, 48.87223798515713], [2.346526767853447, 48.87221351919584], [2.346687754525227, 48.87218792052039], [2.346696506585988, 48.87218351026479], [2.346795034423832, 48.87206528755506], [2.346894008748619, 48.87194762747847], [2.34699253569192, 48.87182940458093], [2.34709150912238, 48.87171174431586], [2.347190036534503, 48.87159352123793], [2.347289009070643, 48.87147586078449], [2.347387534225089, 48.871357637511316], [2.347486505866924, 48.87123997686946], [2.347585030127061, 48.87112175340848], [2.347684000874501, 48.871004092578204], [2.347688357527562, 48.87100097402719], [2.347717096251519, 48.8709883312362], [2.347784084017242, 48.87095804316432], [2.347782763634948, 48.87094601359349], [2.347759163331743, 48.870933173723955], [2.347549812378718, 48.870964207545825], [2.347348384714201, 48.870995024295254], [2.347139033267764, 48.87102605739695], [2.346937603769195, 48.87105687254672], [2.346728253181423, 48.871087905834926], [2.346526823200578, 48.87111872029169], [2.346317472119509, 48.871149752859736], [2.346116041656602, 48.87118056662349], [2.34590669009354, 48.871211597572064], [2.345705259137083, 48.871242411542134], [2.345702935323175, 48.87124290336922], [2.345512376252155, 48.87129609356228], [2.345326005866366, 48.87135018321755], [2.345135446018089, 48.87140337280537], [2.344949073493809, 48.8714574618611], [2.344758512868176, 48.87151065084368], [2.344572139568655, 48.87156473930725], [2.344385767245335, 48.871618827485484], [2.344195205465388, 48.87167201466424], [2.344008830992256, 48.87172610314215], [2.343818268435072, 48.871779289715654], [2.343631893198034, 48.871833376702114], [2.343441329852181, 48.871886563569646], [2.343433063690395, 48.87189404839891], [2.343416570344328, 48.87201624292261], [2.343399818417409, 48.872138503463006], [2.343383324915846, 48.87226069795514], [2.343366572820939, 48.872382959363065], [2.343350079175415, 48.87250515292427], [2.343333326923853, 48.87262741430052], [2.343316833111593, 48.87274960872935], [2.343300080703373, 48.87287187007388], [2.343299919448965, 48.872872657009964], [2.343259877516086, 48.87301106949286], [2.343222955397222, 48.87314607887934], [2.343182913049734, 48.87328449130219], [2.343145991900864, 48.87341950063898], [2.3431059477752543, 48.873557912994336], [2.343069026221735, 48.87369292317323], [2.343064772716595, 48.87369798468769], [2.342924360887344, 48.87378207016698], [2.342784117919023, 48.87386948485483], [2.342643705174379, 48.873953569991855], [2.342503461284631, 48.87404098343801], [2.342492731636047, 48.874056518122714]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 52, "zemmour_eric": 82.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "9-2", "circ_bv": "01", "num_bureau": 2, "roussel_fabien": 12.0, "nb_emargement": 1186.0, "nb_procuration": 83.0, "nb_vote_blanc": 14.0, "jadot_yannick": 97.0, "le_pen_marine": 43.0, "nb_exprime": 1167.0, "nb_vote_nul": 6.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1473.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1187, "quartier_bv": "35", "geo_point_2d": [48.87259786459877, 2.3448415825647735], "melenchon_jean_luc": 383.0, "poutou_philippe": 6.0, "macron_emmanuel": 446.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406332584119689, 48.862342841391815], [2.406332042790221, 48.862333049372424], [2.406302533318229, 48.862302932421606], [2.406197428203051, 48.862198522600416], [2.40608539508112, 48.86208418463335], [2.405980290842305, 48.86197977460084], [2.405868258667405, 48.86186543640792], [2.405763155305045, 48.86176102616414], [2.405686611370157, 48.861682164067126], [2.405612048050503, 48.861608092655345], [2.405535503195772, 48.86152923134328], [2.40551396045979, 48.861511883037586], [2.405509407126763, 48.86151063371558], [2.405478866571717, 48.861480294671146], [2.405367983503408, 48.86137294864838], [2.405262882137248, 48.86126853791882], [2.405157781192245, 48.86116412708711], [2.405046898105671, 48.861056779830164], [2.404941798020789, 48.86095236878884], [2.404830917182513, 48.86084502221736], [2.404725817957638, 48.86074061096644], [2.404614936662434, 48.86063326326825], [2.404509838297459, 48.860528851807686], [2.404398957887647, 48.860421504788185], [2.404293860382765, 48.860317093118034], [2.40418298224186, 48.8602097449854], [2.404179268459055, 48.86020732254979], [2.404016651302751, 48.86013554918853], [2.403868491448713, 48.860070502762], [2.40384126434348, 48.860058548852855], [2.403821863216004, 48.86006545539098], [2.403806857945734, 48.860091169317506], [2.40367666045685, 48.86013828475316], [2.403550561952348, 48.86018391677348], [2.403420363989726, 48.86023103282565], [2.403294265036274, 48.8602766645721], [2.403290038268406, 48.86027904834123], [2.403164342825635, 48.860386287894414], [2.4030395140649903, 48.86049278607535], [2.402913817591008, 48.86060002534475], [2.402788989158833, 48.86070652414993], [2.402672699481437, 48.86080566474213], [2.402541606980386, 48.86091750558347], [2.4024253163613283, 48.861016645916386], [2.402294224161351, 48.86112848647228], [2.402177932600626, 48.861227626545976], [2.402046837975741, 48.861339466802754], [2.401930545473336, 48.86143860661721], [2.401799449786516, 48.861550446581724], [2.40172280735001, 48.86161578471873], [2.40172345451125, 48.86161889608223], [2.401740907363674, 48.861628604498996], [2.401907419741149, 48.861708028538985], [2.402076178774513, 48.861788536479516], [2.402242690800929, 48.86186796093408], [2.402411450870432, 48.861948468390224], [2.402577963929433, 48.86202789146757], [2.4027467263876803, 48.8621083993454], [2.402913240469053, 48.86218782194477], [2.403082002610746, 48.86226832843212], [2.403248517703989, 48.862347751452816], [2.403417282244956, 48.86242825746257], [2.403420449154563, 48.862440713845146], [2.403316483741677, 48.86253837398501], [2.403228369058648, 48.86261974594947], [2.403227499182718, 48.86262047997135], [2.403059430176189, 48.86275023697302], [2.402886109523962, 48.86288167537497], [2.40288579062561, 48.86288190761267], [2.402797297666595, 48.86294503780902], [2.402726357158174, 48.86299519709979], [2.402719598978412, 48.86300720285548], [2.402733138071786, 48.86301699590312], [2.402846815404394, 48.863124658539974], [2.402963186875205, 48.86323468357557], [2.40307686516842, 48.86334234507347], [2.403193237611327, 48.863452369863744], [2.403306916855053, 48.86356003112195], [2.403423290270065, 48.86367005566696], [2.403441839032072, 48.86367247382272], [2.403562006771506, 48.86362150545092], [2.403684278407946, 48.86357105736655], [2.403804447039317, 48.86352008875342], [2.403926718192679, 48.863469641316044], [2.403970573971896, 48.86347077706434], [2.403972986943874, 48.863468608179716], [2.40407955430339, 48.863384963244094], [2.404210468958463, 48.86327831825877], [2.404317035537166, 48.863194673996624], [2.404447949227838, 48.863088028733195], [2.404554515046299, 48.863004383345945], [2.404671042027758, 48.8629462603546], [2.404673543030053, 48.86294473312335], [2.404865177565363, 48.86285424930789], [2.4049817038747, 48.86279612510694], [2.404983871182587, 48.8627952896022], [2.405134015495748, 48.862749058003836], [2.405287741147623, 48.86270108580083], [2.40543788491964, 48.862654853817304], [2.405591608650818, 48.86260688121312], [2.40574175188159, 48.86256064884444], [2.405895475065253, 48.8625126749466], [2.405896394653068, 48.8625123593461], [2.406094878021105, 48.862438820562296], [2.406294484625949, 48.86236379141434], [2.406332584119689, 48.862342841391815]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 33, "zemmour_eric": 58.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-3", "circ_bv": "15", "num_bureau": 3, "roussel_fabien": 32.0, "nb_emargement": 1133.0, "nb_procuration": 59.0, "nb_vote_blanc": 24.0, "jadot_yannick": 109.0, "le_pen_marine": 44.0, "nb_exprime": 1105.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 1, "nb_inscrit": 1447.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1133, "quartier_bv": "79", "geo_point_2d": [48.861820692236954, 2.4039734207508063], "melenchon_jean_luc": 495.0, "poutou_philippe": 8.0, "macron_emmanuel": 275.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.319772281584093, 48.87825405972687], [2.319774548697335, 48.87822402397169], [2.319700244923565, 48.87810051851886], [2.3196272796783433, 48.8779778030346], [2.3195529779684882, 48.877854297470535], [2.319480013415197, 48.87773158186906], [2.319405711042414, 48.87760807617829], [2.319332747181152, 48.87748536045964], [2.319258445508852, 48.877361854649855], [2.319185482339404, 48.877239138814055], [2.319111181367575, 48.87711563288529], [2.319038218878277, 48.876992917831615], [2.31896391860691, 48.87686941178387], [2.318890956821368, 48.87674669571374], [2.3188900578927782, 48.876744120291164], [2.318872033253672, 48.876604077138374], [2.318855820240543, 48.876468659676384], [2.318839608674994, 48.87633324220334], [2.318821584313728, 48.876193198990734], [2.31880537292293, 48.87605778147924], [2.318787347397443, 48.8759177373195], [2.318771136181499, 48.87578231976952], [2.318753110831635, 48.875642276468916], [2.318741874340679, 48.87563417872781], [2.318547402593886, 48.875611749398225], [2.318340498353728, 48.87558897016139], [2.318329273919958, 48.87557870684112], [2.318352834210056, 48.8754722243601], [2.318389261908719, 48.875318899305604], [2.318412823333768, 48.87521241589616], [2.318449250674133, 48.8750590907873], [2.318472810483909, 48.874952608232505], [2.318456368682487, 48.87494252925593], [2.318275349000775, 48.87496900927977], [2.318099137151592, 48.87499242269023], [2.317918117126538, 48.87501890127343], [2.317741904936204, 48.875042315056234], [2.31756088591949, 48.87506879310582], [2.317384673399781, 48.87509220636173], [2.317203652664732, 48.87511868386212], [2.317027439827446, 48.87514209569185], [2.317012401418785, 48.875137095000355], [2.316954952484083, 48.875056196281264], [2.316912109465941, 48.87499093315561], [2.316912110016493, 48.87498330226215], [2.317001215006198, 48.874857896849285], [2.317090165651098, 48.8747355994955], [2.31717926978835, 48.87461019392196], [2.31726821959216, 48.87448789640839], [2.317357322876968, 48.87436249067416], [2.317446271839698, 48.87424019300085], [2.317465656560742, 48.87420128655666], [2.317438956803467, 48.87418903729035], [2.317357352457498, 48.87417496403094], [2.317159955443448, 48.874142133717], [2.316968102872634, 48.87410904692309], [2.316770706365443, 48.87407621506608], [2.316578852921483, 48.87404312763856], [2.316381456897671, 48.87401029603695], [2.316189603943685, 48.8739772079836], [2.315992208415154, 48.87394437573816], [2.315800357314561, 48.87391128706684], [2.315602960929723, 48.87387845327047], [2.315411110319221, 48.873845363973295], [2.315213715780973, 48.87381253044019], [2.31502186429736, 48.87377944050944], [2.3148244702543153, 48.87374660633251], [2.314632619260807, 48.87371351577589], [2.314435225724808, 48.87368068005591], [2.314243376584617, 48.873647588881276], [2.314217726030205, 48.87364654348898], [2.314188764915264, 48.873689628670974], [2.31417385617118, 48.87381534035925], [2.314159775821285, 48.87393560047777], [2.314144868288302, 48.87406131304154], [2.3141307878049853, 48.87418157312985], [2.314116708619865, 48.874301833211206], [2.314101799526739, 48.87442754482079], [2.314087720196357, 48.87454780577123], [2.314072810962859, 48.87467351734913], [2.3140587315109, 48.874793777370094], [2.314043822137026, 48.87491948891638], [2.314029741176463, 48.87503974979856], [2.31401483302545, 48.875165461321025], [2.314024751337675, 48.87517482272733], [2.314221603902569, 48.87521115258242], [2.314416609048668, 48.875248019228316], [2.314613463538604, 48.8752843475451], [2.314808469236103, 48.87532121355026], [2.315005322912742, 48.875357541212466], [2.315200329161534, 48.8753944065768], [2.31539718475146, 48.87543073360002], [2.3155921915517412, 48.875467598323546], [2.315602055965843, 48.87547662563159], [2.315593706906102, 48.87560607016473], [2.31558543813256, 48.87573967368548], [2.3155770876378092, 48.87586911727953], [2.315568820143239, 48.8760027207751], [2.315560469553196, 48.87613216523639], [2.315552201974346, 48.876265768698886], [2.315543851312646, 48.87639521222889], [2.315535582285932, 48.876528815650616], [2.315527232892315, 48.87665826005561], [2.31551896378121, 48.87679186344435], [2.315510614304122, 48.87692130781726], [2.315502345120442, 48.877054910273685], [2.315493994196486, 48.87718435460682], [2.315485726279988, 48.87731795793727], [2.3154773752725513, 48.87744740223836], [2.315469107271767, 48.877581005535774], [2.315460756192668, 48.87771044890552], [2.315452486743979, 48.877844052162104], [2.315447258812835, 48.87792509213753], [2.315438642280226, 48.87793074016755], [2.315447612629727, 48.877958028793806], [2.315444489384818, 48.87800643305394], [2.315436371632016, 48.87812911109392], [2.31542802038367, 48.878258554397036], [2.315419901189352, 48.87838123240005], [2.315411551223074, 48.87851067568016], [2.315406465634755, 48.87858751561721], [2.315414075652138, 48.87859423850984], [2.315451641068636, 48.87859221757015], [2.315697748154203, 48.87859896486318], [2.315954907163079, 48.878606704714926], [2.315962145028713, 48.878608339696385], [2.316107112807131, 48.87867579440271], [2.316259287606026, 48.878746225524324], [2.316404256141297, 48.87881368076157], [2.316556431756713, 48.87888411059743], [2.316701401060644, 48.87895156546645], [2.316853577480778, 48.879021994915774], [2.31687999379844, 48.8790196481984], [2.316889035126425, 48.87901207431692], [2.316946443493944, 48.87889761418493], [2.317005984369238, 48.878780433996944], [2.317063390861072, 48.878665973777025], [2.3171229312084263, 48.87854879350628], [2.3171803371878212, 48.878434333206215], [2.31723987700724, 48.878317152852645], [2.317297282486193, 48.87820269157315], [2.317356821777684, 48.87808551113682], [2.317372722755116, 48.87807959243812], [2.317564107400439, 48.8781077977082], [2.317750337919269, 48.87813425646276], [2.31794172160664, 48.87816246111998], [2.318127952524539, 48.87818891838654], [2.318319337980587, 48.878217122446515], [2.318505567910673, 48.87824358001584], [2.318696953772074, 48.87827178347071], [2.318883185452864, 48.87829824045908], [2.318886838570845, 48.87829842672155], [2.319093776107226, 48.87828727401076], [2.319325905003985, 48.87827846485653], [2.319532842367026, 48.87826731138657], [2.319764969737119, 48.87825850137308], [2.319772281584093, 48.87825405972687]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 154, "zemmour_eric": 213.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-1", "circ_bv": "01", "num_bureau": 1, "roussel_fabien": 5.0, "nb_emargement": 1243.0, "nb_procuration": 100.0, "nb_vote_blanc": 3.0, "jadot_yannick": 54.0, "le_pen_marine": 57.0, "nb_exprime": 1233.0, "nb_vote_nul": 7.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1531.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1243, "quartier_bv": "32", "geo_point_2d": [48.876294157810435, 2.316780118373253], "melenchon_jean_luc": 124.0, "poutou_philippe": 1.0, "macron_emmanuel": 601.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.397775996206475, 48.83414478376298], [2.397775365737696, 48.83415265902751], [2.397701322685931, 48.83420819073744], [2.397631595662287, 48.83426794147281], [2.39763155639393, 48.83427888474939], [2.397761613232311, 48.834391417077725], [2.397888294687362, 48.83450348167706], [2.398018351278054, 48.83461601369678], [2.3981450352034432, 48.83472807710926], [2.398275092908844, 48.83484060882723], [2.398401777932006, 48.834952671945295], [2.398531836741649, 48.83506520426084], [2.398658521500288, 48.835177267077626], [2.398671550418691, 48.835194691209246], [2.3987118226861073, 48.83518966566194], [2.398776200764726, 48.83517281681485], [2.398947108965465, 48.83512878489578], [2.3991323798702853, 48.83508029568603], [2.399303287466809, 48.83503626325442], [2.399488556349263, 48.83498777348212], [2.399659463341469, 48.83494374053796], [2.399844732915704, 48.83489525111613], [2.400015639303792, 48.8348512176594], [2.400200906865914, 48.83480272677573], [2.400371812649675, 48.83475869280643], [2.400557080913922, 48.8347102013739], [2.400727986093452, 48.83466616689205], [2.400748318286822, 48.83467359228453], [2.4007816439081973, 48.83465547876071], [2.400814679281748, 48.83462326533523], [2.400931669029371, 48.834496486028264], [2.401037219698631, 48.83439356162132], [2.401142769940647, 48.83429063801109], [2.401259758154251, 48.834163857446214], [2.4012716722846, 48.834159545273316], [2.401478209970835, 48.83416235251696], [2.401691172535869, 48.83416242329787], [2.401704031143969, 48.83415641330893], [2.401758209524198, 48.83405471971214], [2.401830685147657, 48.83391836252947], [2.401884863033393, 48.83381666885367], [2.401957339356856, 48.83368031157209], [2.402011516748104, 48.83357861781731], [2.402011600037993, 48.83356173804698], [2.401953644729284, 48.833557054879215], [2.401751459434803, 48.833542248396896], [2.401548499703582, 48.83353213508236], [2.40134631325867, 48.83351732790804], [2.40114335370308, 48.83350721390578], [2.400941167469913, 48.8334924060463], [2.400738208100303, 48.83348229045703], [2.400536022068452, 48.83346748281168], [2.4003330628745, 48.833457366534674], [2.400330222312129, 48.833457022225915], [2.400163732727548, 48.833429718156765], [2.399951613268556, 48.833388260966515], [2.39978512411225, 48.83336095546939], [2.3995730052341653, 48.833319497605196], [2.399406516485536, 48.83329219247869], [2.399194399560886, 48.833250733048], [2.3990279098679332, 48.83322342738601], [2.399014458092898, 48.833226170313644], [2.398893136703587, 48.833316003568264], [2.398757434051629, 48.833417784425535], [2.398636113135603, 48.833507617410916], [2.398500409482995, 48.83360939795919], [2.398379086326301, 48.83369922976232], [2.3982433816626543, 48.83380101090087], [2.3981220589792462, 48.833890842434755], [2.397986353325314, 48.833992622364946], [2.397865028380454, 48.834082454515205], [2.397803364713755, 48.8341287024079], [2.397775996206475, 48.83414478376298]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 74, "zemmour_eric": 70.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "12-26", "circ_bv": "08", "num_bureau": 26, "roussel_fabien": 18.0, "nb_emargement": 1116.0, "nb_procuration": 48.0, "nb_vote_blanc": 14.0, "jadot_yannick": 87.0, "le_pen_marine": 65.0, "nb_exprime": 1087.0, "nb_vote_nul": 15.0, "arr_bv": "12", "arthaud_nathalie": 8, "nb_inscrit": 1390.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1116, "quartier_bv": "46", "geo_point_2d": [48.83414044657059, 2.3996686646518315], "melenchon_jean_luc": 312.0, "poutou_philippe": 8.0, "macron_emmanuel": 376.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.368243378204167, 48.87942960546311], [2.368217443810167, 48.87943737102477], [2.368096039130669, 48.87950606330564], [2.367954465299632, 48.879582353548614], [2.36778955075215, 48.87967566341136], [2.367647976011116, 48.8797519532802], [2.367608780901776, 48.87977005662142], [2.36762716151358, 48.87979396259888], [2.367620159698875, 48.879937590115354], [2.367612270751067, 48.88007128881306], [2.367605268858012, 48.88021491629248], [2.367597379840887, 48.88034861405624], [2.367589489408847, 48.880482312695335], [2.367582488761197, 48.880625940127004], [2.367577258806897, 48.88063273571801], [2.367428155242947, 48.880709621330986], [2.367280271129545, 48.880785088661135], [2.367131166691061, 48.88086197389364], [2.366983281725607, 48.88093743994723], [2.366834176412384, 48.88101432479919], [2.366686289220547, 48.88108979046827], [2.36653718439619, 48.881166674946954], [2.366389296330325, 48.88124214113801], [2.366240190631324, 48.881319025236124], [2.366092301713511, 48.88139449015063], [2.365943195139867, 48.88147137386822], [2.365795305358959, 48.881546838405406], [2.365750154844014, 48.88157289112162], [2.3657823125404622, 48.88160119250816], [2.365910868218663, 48.881706260427876], [2.36604095489017, 48.881811732908005], [2.366169511609904, 48.88191680052994], [2.366299599342089, 48.88202227180959], [2.3664281570924253, 48.88212734003292], [2.3665582458743533, 48.882232811011384], [2.366686806040721, 48.88233787804488], [2.366816894497926, 48.8824433496142], [2.366945455705864, 48.88254841634982], [2.367075545212831, 48.88265388761788], [2.367204107462348, 48.88275895405569], [2.367334198019084, 48.88286442502256], [2.367462761310191, 48.882969491162484], [2.367592852927629, 48.883074960928845], [2.367721417249414, 48.88318002767024], [2.367851509916638, 48.88328549713538], [2.36798007529095, 48.88339056267961], [2.368110170360624, 48.883496032749974], [2.3682387354129872, 48.88360109798915], [2.368368831532477, 48.883706567758246], [2.368497397626462, 48.88381163269958], [2.368627494795779, 48.883917102167466], [2.368658869677618, 48.88396151722182], [2.368713539410048, 48.883954218764615], [2.368782205748387, 48.88389706881349], [2.368807795567446, 48.88385276795446], [2.36881998853736, 48.88384562682243], [2.368829289113236, 48.88382116828], [2.368880457383355, 48.883732588053434], [2.368919075417118, 48.88363493578035], [2.368957693316847, 48.88353728258692], [2.369034450495647, 48.88340440135707], [2.369036340379106, 48.88340215940004], [2.369189800736218, 48.88326402279154], [2.369338678223551, 48.88313491716654], [2.3693413050364303, 48.883133189005086], [2.369483526869913, 48.883062233755915], [2.36967494764199, 48.88298046843562], [2.36967523005349, 48.88298034401653], [2.369817449651025, 48.88290938835369], [2.369934131286929, 48.88285678561525], [2.370050812697992, 48.88280418186131], [2.370193031302803, 48.882733225741006], [2.370197872758152, 48.8827293400306], [2.370243788855062, 48.88265859488084], [2.370243035049172, 48.8826195573688], [2.370246197305219, 48.8826150431862], [2.37024507384373, 48.882592816671966], [2.370254032666183, 48.88255132741511], [2.370252437302103, 48.882468668043494], [2.370282631125606, 48.882458560125066], [2.370250585319186, 48.8824338416996], [2.370248234806176, 48.88231214388976], [2.370248047972161, 48.8821770574499], [2.370245697465795, 48.88205536051085], [2.370245510639383, 48.881920274039466], [2.370243160150435, 48.881798577071955], [2.370242973331527, 48.881663490569075], [2.3702163276897013, 48.8816313414836], [2.370144640538193, 48.88163107138099], [2.370049520426375, 48.88151974748007], [2.369947485074857, 48.88140117537586], [2.369852365804276, 48.88128985129507], [2.369750331352061, 48.881171278998075], [2.369655212922808, 48.88105995473738], [2.369553179369985, 48.88094138224759], [2.36945806179294, 48.88083005690778], [2.369356029128408, 48.88071148512446], [2.369260912392676, 48.880600159604754], [2.3691588806383033, 48.88048158672941], [2.369063764733082, 48.88037026192913], [2.368961733877968, 48.880251688861016], [2.368866618813934, 48.88014036388083], [2.368764588858069, 48.88002179061995], [2.368669474635415, 48.87991046545989], [2.368567445578788, 48.87979189200623], [2.368472332197303, 48.87968056666635], [2.368377220585905, 48.87956924124682], [2.368275192863139, 48.87945066750737], [2.368243378204167, 48.87942960546311]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 39, "zemmour_eric": 50.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "10-21", "circ_bv": "05", "num_bureau": 21, "roussel_fabien": 8.0, "nb_emargement": 1036.0, "nb_procuration": 61.0, "nb_vote_blanc": 8.0, "jadot_yannick": 78.0, "le_pen_marine": 63.0, "nb_exprime": 1021.0, "nb_vote_nul": 7.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1389.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1036, "quartier_bv": "40", "geo_point_2d": [48.88176310900215, 2.3683059613496433], "melenchon_jean_luc": 477.0, "poutou_philippe": 5.0, "macron_emmanuel": 251.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376717338813709, 48.83634439575531], [2.376640585221532, 48.836319232658425], [2.376491629493099, 48.836232959921816], [2.376342359635653, 48.836146793276484], [2.376193403520482, 48.83606052104739], [2.376044134649818, 48.83597435401661], [2.375895180893981, 48.835888080510664], [2.375745913010093, 48.83580191309445], [2.375596958867606, 48.83571564009602], [2.375447691970488, 48.83562947229435], [2.375298740187428, 48.83554319801905], [2.375149472914762, 48.83545702982488], [2.375000522118035, 48.835370755164895], [2.374851257194443, 48.83528458659237], [2.374702306010843, 48.83519831243998], [2.374553042074006, 48.83511214348207], [2.37440409324992, 48.83502586805275], [2.374254830299832, 48.83493969870943], [2.374105881088963, 48.83485342378773], [2.373956619125616, 48.83476725405897], [2.37380767227415, 48.834680977860394], [2.373658409935251, 48.83459480773908], [2.373509464059179, 48.83450853205523], [2.3733602040693, 48.83442236155566], [2.373211257828149, 48.83433608458067], [2.373061998824999, 48.83424991369571], [2.372913054921604, 48.83416363724258], [2.3727637969159963, 48.83407746507289], [2.372614852636607, 48.83399118822796], [2.372465595606893, 48.8339050165722], [2.37231665368678, 48.83381873845052], [2.372167396281509, 48.83373256640221], [2.37201845533694, 48.83364628879521], [2.37186920028064, 48.83356011636867], [2.371720258970911, 48.8334738374706], [2.371571004901311, 48.833387664658694], [2.371422065929161, 48.83330138628246], [2.371272812846253, 48.833215213085175], [2.371123873509052, 48.833128933417875], [2.370974621412833, 48.833042759835216], [2.370944593293155, 48.83303418202097], [2.370913870975725, 48.833043167012434], [2.370815081613323, 48.83315241438614], [2.370708307616089, 48.83327100097041], [2.370609517391116, 48.83338024815211], [2.370502743821846, 48.83349883453592], [2.3704039527342973, 48.8336080815256], [2.370297176868459, 48.833726667694606], [2.370198384918321, 48.833835914492255], [2.370091608118265, 48.83395450045361], [2.369992815305426, 48.83406374705923], [2.369886038933318, 48.834182332820106], [2.369787245257873, 48.8342915792337], [2.369680466589147, 48.83441016477977], [2.369581672051082, 48.83451941100132], [2.369474892448004, 48.83463799633971], [2.369376097047412, 48.83474724236922], [2.369269317872166, 48.83486582750713], [2.369170521619821, 48.83497507244529], [2.369063740137023, 48.835093658267674], [2.368964943022033, 48.83520290301377], [2.368940346124472, 48.83523311788265], [2.368946776500313, 48.835243584464386], [2.3689595704629482, 48.83526440845074], [2.368998494401922, 48.835272654138265], [2.36915954651397, 48.83535004066623], [2.36931576808629, 48.83542484010284], [2.369476821139656, 48.83550222619306], [2.369633043612468, 48.835577026104446], [2.369794097607055, 48.835654411756956], [2.369950321002117, 48.835729210344454], [2.370111374575606, 48.83580659555207], [2.370267600244362, 48.83588139372217], [2.370423824988281, 48.835956192575395], [2.37058488132835, 48.83603357713693], [2.370741106994511, 48.83610837466629], [2.370902164275709, 48.83618575879009], [2.371058390853353, 48.83626055589485], [2.371219449075783, 48.83633793958089], [2.371375676553966, 48.836412737160394], [2.371536734355296, 48.83649012040155], [2.371692964117951, 48.8365649166643], [2.371854022860617, 48.83664229946771], [2.372010253534667, 48.83671709530592], [2.37217131321857, 48.83679447767158], [2.372327544793188, 48.836869273984426], [2.372488605418334, 48.8369466559124], [2.372644837915184, 48.83702145090137], [2.372805899481474, 48.83709883239151], [2.372970262357488, 48.83718054341747], [2.373131324898566, 48.83725792445842], [2.373295688797087, 48.8373396341263], [2.373456752312852, 48.83741701471808], [2.373621117212457, 48.83749872482647], [2.373782183065184, 48.837576104976186], [2.373946547625024, 48.837657813719346], [2.37410761444165, 48.83773519431918], [2.374271981375661, 48.837816902610626], [2.374433047815517, 48.837894281854815], [2.3745974157504373, 48.83797599058681], [2.374758483164997, 48.83805336938176], [2.3748270804248612, 48.838095317212215], [2.374838989363651, 48.8380941967892], [2.374954391646237, 48.83798860385531], [2.375065884342461, 48.83788598885732], [2.375181285704436, 48.83778039568487], [2.375292777508732, 48.83767778045628], [2.375408177950104, 48.83757218704529], [2.37551966886228, 48.83746957158612], [2.375635068393831, 48.83736397703727], [2.375746558403324, 48.837261362246835], [2.375861957014287, 48.837155767459386], [2.375973447494037, 48.837053152445506], [2.376088843822066, 48.8369475574124], [2.376200333409921, 48.83684494216791], [2.376315728817386, 48.83673934689633], [2.376427217513154, 48.83663673142121], [2.376542613362406, 48.8365311359182], [2.376654099803956, 48.836428520205416], [2.376710855818458, 48.836376584431825], [2.376717338813709, 48.83634439575531]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 43, "zemmour_eric": 69.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-70", "circ_bv": "09", "num_bureau": 70, "roussel_fabien": 23.0, "nb_emargement": 934.0, "nb_procuration": 46.0, "nb_vote_blanc": 9.0, "jadot_yannick": 53.0, "le_pen_marine": 59.0, "nb_exprime": 918.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1183.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 934, "quartier_bv": "50", "geo_point_2d": [48.83562303337425, 2.372774615266363], "melenchon_jean_luc": 347.0, "poutou_philippe": 5.0, "macron_emmanuel": 272.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.361944752834472, 48.89322343234297], [2.361960030899349, 48.89322478538606], [2.362108565536061, 48.89321907911113], [2.3622930344333612, 48.893212487532374], [2.36249078349049, 48.893204890782386], [2.36267525228913, 48.893198298614784], [2.3628729998728772, 48.893190701226246], [2.363057468572745, 48.89318410846979], [2.363255217410645, 48.89317651045731], [2.363439686011836, 48.893169917112], [2.363447953517348, 48.89317139817354], [2.363605509145504, 48.89324018192927], [2.363761776690266, 48.893308599798836], [2.3639193331372033, 48.89337738403239], [2.364075601506137, 48.893445801483864], [2.36423315879383, 48.89351458439659], [2.364389427986934, 48.89358300142999], [2.364546986104399, 48.89365178392127], [2.364703256121775, 48.89372020053658], [2.36486081506891, 48.893788982606324], [2.365017085910459, 48.89385739880354], [2.365174645687469, 48.893926180451786], [2.365330917353091, 48.89399459623092], [2.365488477959876, 48.8940633774576], [2.365644750449675, 48.89413179281864], [2.365802313250084, 48.89420057363107], [2.365958586564063, 48.894268988574], [2.366116148819455, 48.89433776985691], [2.366272422957616, 48.894406184381744], [2.366274900318293, 48.89440704105309], [2.366454466974166, 48.89445401202553], [2.366644704355813, 48.89450419756934], [2.366824270316531, 48.894551167975905], [2.3670145084097243, 48.89460135292779], [2.367194076402999, 48.89464832278293], [2.3673843152076373, 48.89469850714295], [2.367563882505745, 48.89474547643219], [2.367754122021818, 48.89479566020027], [2.367933691352377, 48.89484262893805], [2.368123931590801, 48.894892811214945], [2.368303500215367, 48.89493978028611], [2.368493741165212, 48.894989961971106], [2.368673311833239, 48.89503692959151], [2.368863553483598, 48.89508711158387], [2.369043124820305, 48.89513407864563], [2.369233367181985, 48.89518426004603], [2.36941293782349, 48.89523122654191], [2.369603180896687, 48.89528140735039], [2.369782753570737, 48.89532837329476], [2.369972997366229, 48.89537855261202], [2.370152569334182, 48.8954255188898], [2.370342813841075, 48.895475697615154], [2.370522387852349, 48.89552266244213], [2.370712633059766, 48.89557284147484], [2.3708922063759132, 48.89561980573597], [2.371082452294729, 48.89566998417673], [2.371262027643416, 48.89571694788628], [2.371289958854494, 48.89574968669154], [2.371339517206927, 48.89574241867185], [2.371426968535352, 48.8956741752545], [2.371585561328112, 48.895548347681654], [2.37167301200805, 48.89548010407254], [2.37167416180715, 48.895480104709335], [2.371716705533057, 48.895458331506475], [2.371770197689247, 48.89541371909476], [2.371768659536667, 48.89540148030469], [2.371607055273501, 48.89530486677445], [2.371455298743955, 48.895212588152795], [2.371293697001608, 48.89511597508945], [2.371141941578036, 48.895023696054814], [2.3709803396397, 48.894927082544804], [2.370828585322, 48.894834803097154], [2.370666984562312, 48.894738188248375], [2.370515231339705, 48.894645909287036], [2.370512419408573, 48.89464350052033], [2.370487108324173, 48.894612540630554], [2.370441730517688, 48.89455592290542], [2.370436532627646, 48.89453618251678], [2.370406091705215, 48.89452261094198], [2.370367636523475, 48.8944746306616], [2.370270358911896, 48.89435274081717], [2.37018652808394, 48.89424814265521], [2.370089249955671, 48.8941262526313], [2.370005419845246, 48.8940216552202], [2.370004375288158, 48.89401994821339], [2.369948773372597, 48.893892996488525], [2.369892186112184, 48.89376341262556], [2.369836584754915, 48.89363645991964], [2.369779999416468, 48.893506875980506], [2.369724398595814, 48.893379924092045], [2.369667812451454, 48.893250340062416], [2.369612212178294, 48.89312338809213], [2.369555627955871, 48.89299380398633], [2.369500028241081, 48.89286685103503], [2.369443444576555, 48.8927372668459], [2.369387845398351, 48.89261031471205], [2.369331260928114, 48.892480730432396], [2.369275662297379, 48.892353778216815], [2.369219079748828, 48.892224193861004], [2.369163481676448, 48.89209724066435], [2.369106899685975, 48.891967656225255], [2.36905130215015, 48.89184070384606], [2.368994719353758, 48.89171111931643], [2.368939122365379, 48.89158416685549], [2.368882541490834, 48.89145458224976], [2.36882694506079, 48.89132762880776], [2.368770363380325, 48.891198044111505], [2.368714767486913, 48.89107109148702], [2.368658187728164, 48.89094150671466], [2.36860259238207, 48.89081455400838], [2.368546013181254, 48.890684969152744], [2.368490418393478, 48.89055801546548], [2.368433838386942, 48.8904284305193], [2.368378244135665, 48.8903014776495], [2.368321666050698, 48.89017189262728], [2.368266072346919, 48.89004493967569], [2.368209494819863, 48.8899153545702], [2.368176203648653, 48.889839330945385], [2.368179003285404, 48.88982586397235], [2.36816704053574, 48.88981065086097], [2.368144737218986, 48.88975972054299], [2.3681110008038733, 48.88969399268349], [2.368093080223761, 48.889682780685604], [2.36803641699955, 48.88970010747239], [2.367831183235529, 48.88970911722786], [2.367625354698586, 48.8897176846213], [2.367420120805086, 48.889726692772854], [2.36721429212011, 48.88973526035887], [2.367009058086225, 48.88974426780571], [2.366803229264043, 48.88975283468502], [2.366597996453617, 48.88976184143444], [2.366392166141551, 48.889770406700514], [2.36618693317982, 48.88977941364449], [2.365981102730677, 48.889787978203856], [2.365775869639541, 48.88979698354392], [2.365570039042381, 48.88980554829581], [2.365364805810802, 48.88981455293119], [2.365158975076681, 48.88982311697637], [2.364953741704773, 48.88983212090707], [2.364747910844573, 48.88984068334625], [2.364542677321375, 48.889849687471525], [2.364336846324143, 48.88985824920401], [2.364131612660629, 48.889867252624654], [2.363925781526376, 48.88987581365039], [2.363720547733548, 48.88988481546704], [2.36351471781493, 48.889893376692584], [2.363309482518182, 48.88990237779732], [2.363103652473556, 48.88991093741689], [2.363099555942766, 48.88991235994054], [2.363105263782162, 48.889948792197224], [2.363120071992423, 48.89007310972508], [2.363135013894131, 48.890198544906625], [2.363149823610094, 48.890322862409796], [2.363164765644147, 48.89044829845832], [2.363179574138529, 48.89057261592224], [2.363194516315922, 48.890698051938514], [2.363209324952366, 48.89082236937049], [2.3632242672841, 48.89094780445524], [2.363239076062607, 48.89107212185522], [2.363254018526689, 48.891197557806954], [2.363268827447262, 48.891321875174945], [2.363283770065688, 48.89144731019517], [2.363298580492109, 48.89157162753844], [2.36331352324289, 48.89169706342562], [2.363328332447605, 48.89182138072963], [2.363343275352733, 48.89194681568533], [2.3633314612975482, 48.89195643586585], [2.363129174765404, 48.89197401480427], [2.362926671004473, 48.89199161293018], [2.362724385562691, 48.892009191191555], [2.362521880175461, 48.8920267877258], [2.362319594460368, 48.89204436530279], [2.362117090152314, 48.892061962058506], [2.361914802800122, 48.8920795389439], [2.361712298229492, 48.892097134115254], [2.361700583003057, 48.8921073428183], [2.361730714922143, 48.89224406176971], [2.361760387013932, 48.89237869631642], [2.361790517883287, 48.89251541521164], [2.361820190295477, 48.89265004881097], [2.361850321478896, 48.89278676765733], [2.361879994189246, 48.89292140210775], [2.361910125686837, 48.89305812090522], [2.361939798706475, 48.89319275530751], [2.361944752834472, 48.89322343234297]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 25, "zemmour_eric": 35.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "18-62", "circ_bv": "17", "num_bureau": 62, "roussel_fabien": 27.0, "nb_emargement": 1204.0, "nb_procuration": 52.0, "nb_vote_blanc": 9.0, "jadot_yannick": 71.0, "le_pen_marine": 71.0, "nb_exprime": 1192.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1699.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1204, "quartier_bv": "72", "geo_point_2d": [48.892408492109645, 2.3665105999150136], "melenchon_jean_luc": 678.0, "poutou_philippe": 11.0, "macron_emmanuel": 227.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408954394868334, 48.84443759277247], [2.408944374470466, 48.844405134975084], [2.408914167057888, 48.8442724836084], [2.408884556642055, 48.84414247297905], [2.40885494501141, 48.84401246232045], [2.408824739426782, 48.843879809991925], [2.408823840482686, 48.84385323046746], [2.408801257477168, 48.84384681437985], [2.408740968711764, 48.84371670421398], [2.40868784211699, 48.843596069949044], [2.408627553914672, 48.84346596059608], [2.40857442647548, 48.84334532624693], [2.40851413884624, 48.84321521680758], [2.408461013297881, 48.84309458148837], [2.408407887985244, 48.84297394703183], [2.408347601201336, 48.842843837465225], [2.408294476406786, 48.842723202931225], [2.408234190196136, 48.842593093278246], [2.408181064557166, 48.84247245866004], [2.408120778929779, 48.842342348021376], [2.408067655171388, 48.842221713332385], [2.408007370107031, 48.842091603506695], [2.407954246866603, 48.84197096874024], [2.407893962375379, 48.84184085882816], [2.407840839663329, 48.84172022308496], [2.407780555745128, 48.84159011308644], [2.407746144620399, 48.84151197015561], [2.407717141192955, 48.841487206623434], [2.407675955928837, 48.84149464994753], [2.407550862319799, 48.841590528941275], [2.407423600816532, 48.84168781444809], [2.407298506279551, 48.84178369316138], [2.407171243833699, 48.84188097838293], [2.407046148379103, 48.84197685591637], [2.406918884990453, 48.842074140852645], [2.406793788597874, 48.842170019004925], [2.406666524266522, 48.84226730365586], [2.406541426945978, 48.84236318152766], [2.406414161682258, 48.842460464994005], [2.406289063433845, 48.84255634258532], [2.406161797217064, 48.84265362666564], [2.406036698040872, 48.84274950397646], [2.405909430881365, 48.84284678777146], [2.405784330777286, 48.8429426648018], [2.405657062685299, 48.84303994741217], [2.405531961653227, 48.84313582416198], [2.405404692608243, 48.843233107386375], [2.405381200626783, 48.84322951010991], [2.405317283257316, 48.843068570780844], [2.405274481330577, 48.84293264317327], [2.405258752985956, 48.84292561924268], [2.405001639254527, 48.842955829920434], [2.404805257147907, 48.84298250106508], [2.404804592557203, 48.84298259039234], [2.4047825170987522, 48.842992178329204], [2.404785157485212, 48.843016302340004], [2.404824411532617, 48.84314160184966], [2.404861409172109, 48.843264410578364], [2.4049006635897, 48.843389710035105], [2.404937660222468, 48.84351251870613], [2.40497465839212, 48.84363532735896], [2.405013913361347, 48.8437606267369], [2.405050911886808, 48.84388343533884], [2.405090167226235, 48.844008734663866], [2.405127166107512, 48.844131543214935], [2.405166421827408, 48.84425684158775], [2.405169627908748, 48.84426103054256], [2.405300097138682, 48.84435690483136], [2.405439605783111, 48.8444584448686], [2.405570076003896, 48.844554318846036], [2.405709585702767, 48.84465585855048], [2.405712850891144, 48.8446601278252], [2.4057156095194943, 48.84468014140789], [2.405736530385556, 48.84468952218842], [2.405771724908169, 48.84480511945025], [2.4057931563119412, 48.84490393829917], [2.4058047385753882, 48.84491887656746], [2.405841891970009, 48.84491825796926], [2.406045688904867, 48.844903225437314], [2.406247449226996, 48.844887301082046], [2.406451245923819, 48.844872267858754], [2.4066530060124203, 48.844856341919844], [2.40685476597771, 48.84484041564036], [2.407058562305772, 48.844825382281236], [2.407260322027373, 48.84480945531739], [2.407464118127503, 48.84479442036773], [2.4076658776053, 48.84477849271947], [2.407869673457239, 48.84476345797783], [2.407882420820184, 48.84476164951119], [2.407895201229823, 48.84473690313795], [2.407898609212756, 48.84464766343761], [2.40789834857526, 48.84454443228001], [2.40791010434656, 48.84453550859466], [2.408079905058244, 48.84451997427976], [2.40825567996806, 48.84450450434948], [2.408425481838175, 48.84448896955047], [2.408601256540841, 48.84447349911202], [2.40877105684448, 48.84445796381531], [2.408946831339991, 48.844442492868744], [2.408954394868334, 48.84443759277247]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 107, "zemmour_eric": 95.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "12-35", "circ_bv": "08", "num_bureau": 35, "roussel_fabien": 19.0, "nb_emargement": 1186.0, "nb_procuration": 58.0, "nb_vote_blanc": 13.0, "jadot_yannick": 99.0, "le_pen_marine": 54.0, "nb_exprime": 1168.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1447.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "45", "geo_point_2d": [48.84351876523952, 2.40696659725092], "melenchon_jean_luc": 257.0, "poutou_philippe": 2.0, "macron_emmanuel": 469.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4025469179788193, 48.87594107790101], [2.402513189293811, 48.87592813546356], [2.402458228534447, 48.87580497564565], [2.402411611134168, 48.875699969967435], [2.402409724026732, 48.875697366875926], [2.402291075317136, 48.87558468996957], [2.4021720349529723, 48.87547185089462], [2.402053385907938, 48.87535917372289], [2.4019343479478152, 48.87524633349602], [2.4018156999307, 48.87513365606566], [2.401696661637568, 48.87502081557256], [2.401578016011713, 48.87490813789039], [2.401458978738484, 48.874795298037185], [2.401340332787613, 48.87468261919032], [2.401221297908049, 48.8745697790845], [2.401102652974626, 48.8744571008783], [2.400983617772476, 48.87434425960698], [2.400864975230261, 48.874231581149004], [2.4007459410480703, 48.87411874051757], [2.400627298180733, 48.87400606089488], [2.400508266392054, 48.8738932200109], [2.400506282555615, 48.873885768096834], [2.4005491974502142, 48.87377951819537], [2.400602725289047, 48.873644897994346], [2.400645638435598, 48.873538647129024], [2.400699167130606, 48.87340402776162], [2.40074207988188, 48.873297776838506], [2.400760710720769, 48.873250924012105], [2.400764764769395, 48.87323450269592], [2.400738855888869, 48.87322972703616], [2.400547278950039, 48.87317680521708], [2.400360049627523, 48.87312499395888], [2.40017281931418, 48.873073182398535], [2.399981243526232, 48.87302025966607], [2.399794013966164, 48.87296844750833], [2.399602440311604, 48.872915524171425], [2.399415211504814, 48.87286371141633], [2.399223638609975, 48.8728107883674], [2.399216277717853, 48.87279910145342], [2.399287746471864, 48.87268331387146], [2.3993588250889673, 48.872568581895344], [2.399430293209816, 48.87245279420408], [2.399501371198272, 48.87233806211936], [2.399572838686067, 48.87222227431885], [2.399643916045986, 48.872107542125526], [2.399715381537364, 48.87199175420887], [2.399786458268757, 48.87187702190699], [2.399857924490169, 48.871761233887895], [2.399929000593144, 48.87164650147741], [2.400000466181423, 48.871530713349074], [2.400071541655783, 48.871415980830015], [2.400143006611042, 48.87130019259239], [2.400214080093646, 48.87118545995792], [2.400214465278979, 48.87117935810133], [2.400162090520479, 48.8710695503422], [2.4001051340848543, 48.87094919376665], [2.400112628115851, 48.870937832251116], [2.400095637670555, 48.87092489829611], [2.400060776040214, 48.87091442438191], [2.399882615697006, 48.87086025555794], [2.399718932320088, 48.87081107663336], [2.399555247889106, 48.870761897475894], [2.399377088593287, 48.870707727892075], [2.3993479559070803, 48.870691334309], [2.399330547063766, 48.87070087433394], [2.399300221651299, 48.87073577464752], [2.399270174294686, 48.87076961243419], [2.399235486839229, 48.87078980469017], [2.399243420088925, 48.870803732944125], [2.3991816386513243, 48.870873311098244], [2.399080029551187, 48.870989571622665], [2.398988201311848, 48.87109298739359], [2.398886591361832, 48.871209246831434], [2.398794762351183, 48.871312662433375], [2.398693151540905, 48.87142892168389], [2.398601321758937, 48.87153233711688], [2.398499710078003, 48.87164859707935], [2.398407879524706, 48.87175201234335], [2.398408539528976, 48.87176167811241], [2.398454515805677, 48.8718047993447], [2.398499479707524, 48.8718471690222], [2.398500196827708, 48.87185673075406], [2.3983871243042, 48.87198950323716], [2.398275030521031, 48.87212082090074], [2.398161956850292, 48.8722535931394], [2.398049860567856, 48.872384910553876], [2.398048107694034, 48.872389360638], [2.398049322558773, 48.872515577504636], [2.398050220184658, 48.872654617264345], [2.398051435060701, 48.872780834100624], [2.398052332707188, 48.87291987292761], [2.398053547594538, 48.87304608973359], [2.398054445251235, 48.873185128527155], [2.398055660149891, 48.87331134530277], [2.398056556443096, 48.87345038495534], [2.398057039746099, 48.87350058277595], [2.398055527200688, 48.87351773804653], [2.39805907945971, 48.87352027404278], [2.398059811070021, 48.87359629296606], [2.398061123298914, 48.873730723793344], [2.398062338226579, 48.87385694050647], [2.398063650458166, 48.87399137220124], [2.398064865398037, 48.87411758888455], [2.398066176289776, 48.87425201964144], [2.398067391241845, 48.874378236294895], [2.398068703499609, 48.8745126679261], [2.398069918463881, 48.87463888454976], [2.398071230745127, 48.87477331524987], [2.398072445721605, 48.87489953184366], [2.398073756642197, 48.87503396340446], [2.398074971641268, 48.875160179069134], [2.398076283938297, 48.87529461060498], [2.39807749893918, 48.8754208271391], [2.398077277785799, 48.87546568199526], [2.398096976666155, 48.87546766964163], [2.398198887181942, 48.87546963893299], [2.398436021472601, 48.875474214119535], [2.398597151164235, 48.875477327820285], [2.398758282238497, 48.87548044131102], [2.398995416637844, 48.87548501449011], [2.399000708182652, 48.875485831569236], [2.399180042321564, 48.875529602029324], [2.399319992490498, 48.87557199557623], [2.399337869541231, 48.87557649919888], [2.399354692481462, 48.875575344331914], [2.399551275591318, 48.87560199116958], [2.399749164388487, 48.87562834115515], [2.399945749263548, 48.875654987350565], [2.40014363846153, 48.87568133668279], [2.400340223728067, 48.875707983128386], [2.400538113326959, 48.87573433180727], [2.400734697642407, 48.87576097669767], [2.400932587642196, 48.8757873247232], [2.401129173722725, 48.875813968971364], [2.401327064123404, 48.875840316343506], [2.401523649242465, 48.875866959935806], [2.4017215414073982, 48.87589330666142], [2.401918126928151, 48.8759199496046], [2.402116018130583, 48.87594629567004], [2.402312605406179, 48.87597293887023], [2.402454041714141, 48.875991768272314], [2.402510497009578, 48.875999284282265], [2.402528052454314, 48.87599192454445], [2.402527685955444, 48.87596456506928], [2.4025469179788193, 48.87594107790101]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 31, "zemmour_eric": 64.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-17", "circ_bv": "15", "num_bureau": 17, "roussel_fabien": 38.0, "nb_emargement": 1175.0, "nb_procuration": 43.0, "nb_vote_blanc": 14.0, "jadot_yannick": 62.0, "le_pen_marine": 68.0, "nb_exprime": 1158.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1550.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1175, "quartier_bv": "78", "geo_point_2d": [48.87384821366769, 2.3996112895425648], "melenchon_jean_luc": 544.0, "poutou_philippe": 20.0, "macron_emmanuel": 274.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.293373028465064, 48.83581081155196], [2.293367952295011, 48.835802863477404], [2.293215974068454, 48.83572119187829], [2.2930678002939873, 48.83564031062794], [2.292915824374045, 48.835558638643626], [2.292767650165068, 48.83547775700167], [2.292763420782217, 48.83546795579848], [2.292822408849259, 48.835352314994786], [2.292881515513633, 48.835237252250955], [2.29294050305762, 48.83512161136514], [2.292999609187529, 48.83500654943856], [2.293058594858378, 48.83489090756332], [2.293117701828315, 48.834775845562675], [2.293176686963831, 48.834660204504694], [2.293235793423702, 48.834545141522675], [2.29329477803629, 48.834429500382555], [2.293353882599446, 48.834314438209766], [2.293412868063474, 48.83419879609634], [2.29347197210439, 48.83408373384144], [2.293473576252004, 48.8340742369227], [2.29345879470581, 48.83406650042132], [2.293295985912126, 48.83397031183031], [2.293135349182399, 48.833875236677926], [2.292974713038733, 48.83378016130176], [2.2928119060325862, 48.83368397202727], [2.292651271068225, 48.833588896200474], [2.292488465256258, 48.833492706469244], [2.292327831471092, 48.83339763019184], [2.292165026853397, 48.83330144000398], [2.292160488989145, 48.83329471369783], [2.29216094992228, 48.83318442056518], [2.292160659293358, 48.833073793802214], [2.292161118862147, 48.83296350063977], [2.292160829596229, 48.83285287386303], [2.29216128916261, 48.832742580678854], [2.292160998535432, 48.832631953872244], [2.292156470992691, 48.83262527439022], [2.292059205603409, 48.83256791837989], [2.291945679034771, 48.832500696094066], [2.291926814787901, 48.832501122243016], [2.2917915343924298, 48.832592993934064], [2.291654443370178, 48.83268634231259], [2.29151916202625, 48.83277821278107], [2.291382071391404, 48.832871560840054], [2.291246789074572, 48.832963431884544], [2.291109696114884, 48.8330567787085], [2.29097441283736, 48.83314864942978], [2.2908373188906, 48.833241996825414], [2.290702034664613, 48.83333386632407], [2.290585659397284, 48.83341310546311], [2.290566584771668, 48.83342626171663], [2.290545835082527, 48.83342706049958], [2.290254313116434, 48.833627781350856], [2.290251775481732, 48.83363025306642], [2.290249920317978, 48.83363292939255], [2.290248750324968, 48.833635812144045], [2.290008010886908, 48.83530950815297], [2.290004682026355, 48.835314050020294], [2.290017392661053, 48.8353241822737], [2.2900252717243212, 48.83533495588071], [2.290021920708853, 48.835358928600954], [2.29000414208989, 48.83548461855993], [2.289986863104673, 48.835608228517884], [2.289969085678357, 48.83573391845174], [2.289951806527472, 48.83585752837704], [2.289940682309066, 48.835872447709484], [2.28994778730537, 48.83588034232154], [2.29010311424876, 48.83591956592976], [2.290244636425512, 48.835954271707195], [2.290399962450254, 48.83599349491927], [2.290541485025363, 48.83602820034318], [2.290545857145735, 48.83602878838425], [2.290735804464595, 48.83603350876612], [2.290927671528737, 48.836038122408674], [2.291117618916183, 48.836042842184206], [2.291309484686153, 48.83604745520619], [2.29149943350439, 48.83605217438342], [2.291691299342599, 48.836056786792945], [2.291881246867087, 48.83606150535577], [2.292073114147852, 48.83606611626155], [2.292263061728787, 48.83607083511732], [2.292454927715347, 48.83607544540256], [2.292644876727156, 48.836080163660036], [2.29283674278182, 48.8360847733328], [2.29302669049986, 48.83608949097585], [2.293218557984935, 48.83609410004421], [2.293232073174755, 48.83608775927673], [2.2932945026226, 48.83595390833845], [2.293358198188093, 48.835824020278906], [2.293373028465064, 48.83581081155196]]], "type": "Polygon"}, "properties": {"lassalle_jean": 25.0, "pecresse_valerie": 134, "zemmour_eric": 121.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-70", "circ_bv": "13", "num_bureau": 70, "roussel_fabien": 19.0, "nb_emargement": 1374.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 112.0, "le_pen_marine": 83.0, "nb_exprime": 1352.0, "nb_vote_nul": 8.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1732.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1374, "quartier_bv": "57", "geo_point_2d": [48.834610767917994, 2.2916195143673743], "melenchon_jean_luc": 270.0, "poutou_philippe": 5.0, "macron_emmanuel": 534.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.342973672119568, 48.84609718417005], [2.342944447648365, 48.84606688609817], [2.342880372123803, 48.84594082244481], [2.3428147027740662, 48.845813232764336], [2.342750627875207, 48.84568716901279], [2.342684959174068, 48.845559578332754], [2.34262088488956, 48.845433515382325], [2.342555216825771, 48.84530592460205], [2.342491143178187, 48.84517986065415], [2.342425475740292, 48.84505227067293], [2.342361402718386, 48.84492620662688], [2.342295735929069, 48.844798615646134], [2.342231663521479, 48.844672552401214], [2.342165997369384, 48.84454496132021], [2.342101925598803, 48.84441889707782], [2.342036260072568, 48.84429130679589], [2.341972188927635, 48.84416524245537], [2.341906524049958, 48.84403765117389], [2.341842453519412, 48.84391158763455], [2.341776789278828, 48.84378399625283], [2.34171271938527, 48.84365793171601], [2.341647055770513, 48.84353034113342], [2.341582985140062, 48.84340427649092], [2.341517323536359, 48.84327668491631], [2.341496817239573, 48.84327059847222], [2.341469955268475, 48.84327987143399], [2.341263956122136, 48.843323387957746], [2.341072765239905, 48.84336431638335], [2.340881572694977, 48.84340524449443], [2.340675572573209, 48.84344875910081], [2.340484380769017, 48.84348968658149], [2.340278379970484, 48.84353320139993], [2.340087186182096, 48.84357412823523], [2.339932125298104, 48.843606881967354], [2.33988399699267, 48.8436179744602], [2.339883580201421, 48.84361860711051], [2.33983263823749, 48.84362936748128], [2.33964859789581, 48.84366745602963], [2.3394425956968252, 48.84371096940197], [2.339439086566378, 48.84371207962545], [2.339244741127807, 48.84379803769238], [2.339080286471905, 48.84390075292224], [2.338988237801611, 48.843920697656536], [2.338990254075211, 48.84395413900623], [2.33905850914857, 48.844080202942145], [2.339127617152493, 48.84420737235437], [2.339195872878252, 48.84433343708257], [2.33926498155314, 48.84446060638659], [2.339333237954318, 48.844586670108534], [2.3394023473001813, 48.84471383930432], [2.339470604353883, 48.84483990381852], [2.339539715733288, 48.84496707291361], [2.339607973462222, 48.845093136421504], [2.339677084150066, 48.84522030540083], [2.339745342531651, 48.84534636970104], [2.339814453890499, 48.845473538572136], [2.339882712947427, 48.845599601866006], [2.339951826339762, 48.84572677063636], [2.340020086049265, 48.84585283472251], [2.340089198750151, 48.845980003377115], [2.3401574591350123, 48.84610606645697], [2.340226572495543, 48.846233235902616], [2.340294833544283, 48.84635929887541], [2.34036394758724, 48.84648646731352], [2.340432209288686, 48.84661253107861], [2.340501325365297, 48.846739699415956], [2.340489716826535, 48.84680860556016], [2.340563875092617, 48.846832510122056], [2.340632990419647, 48.84695967835073], [2.340705493135882, 48.847088400397446], [2.340774610510467, 48.84721556852262], [2.340847112569986, 48.84734429044644], [2.340864290464701, 48.847349045568755], [2.340950546435104, 48.847320031646056], [2.3411077830433022, 48.84728759980659], [2.341284456202333, 48.847248857845024], [2.341441692376521, 48.84721642646398], [2.341618363683524, 48.84717768399933], [2.341775600809148, 48.847145251285575], [2.341952271626528, 48.84710650832542], [2.341959960888173, 48.84709369516909], [2.341868611934915, 48.84698223686878], [2.341789297742454, 48.84687720766946], [2.341697949522302, 48.84676575011649], [2.341618636003155, 48.84666072078362], [2.341625825109773, 48.846648344678286], [2.341796075208077, 48.84660395999467], [2.341952732415148, 48.84656259410318], [2.3421229819550042, 48.84651820895095], [2.342279638633479, 48.846476843527505], [2.342449886252191, 48.84643245789922], [2.342606543787364, 48.84639109115272], [2.342613453235005, 48.84638703613036], [2.342673821349989, 48.846313735397274], [2.342843601143352, 48.84617983868854], [2.342955154053835, 48.84611195519507], [2.342973672119568, 48.84609718417005]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 108, "zemmour_eric": 103.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "5-8", "circ_bv": "02", "num_bureau": 8, "roussel_fabien": 22.0, "nb_emargement": 1328.0, "nb_procuration": 90.0, "nb_vote_blanc": 11.0, "jadot_yannick": 118.0, "le_pen_marine": 38.0, "nb_exprime": 1315.0, "nb_vote_nul": 5.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1647.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "19", "geo_point_2d": [48.845178280999, 2.3410207997714187], "melenchon_jean_luc": 244.0, "poutou_philippe": 2.0, "macron_emmanuel": 616.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408363433216961, 48.838174626567266], [2.408360050024045, 48.83820117515937], [2.408399255306108, 48.83832580644464], [2.408437339551119, 48.838457153980805], [2.40847654520032, 48.83858178611148], [2.4085146298271303, 48.83871313359298], [2.408553835863784, 48.83883776477048], [2.40859191951009, 48.838969112190526], [2.408578346308419, 48.83898211099033], [2.408592959221946, 48.83900572219644], [2.408631044451973, 48.83913706959104], [2.408668860694462, 48.83926572294319], [2.408706944943316, 48.839397070276306], [2.4087447615516853, 48.83952572447384], [2.40878284754411, 48.839657071758985], [2.408820664538673, 48.83978572500324], [2.40885848171982, 48.83991437822077], [2.408896566910279, 48.84004572631654], [2.408934384467423, 48.840174379480125], [2.408972471411782, 48.84030572662859], [2.408972458996475, 48.840318957041134], [2.408991179360479, 48.840329922785436], [2.409029265199073, 48.840461269890774], [2.409070852925863, 48.84058468033549], [2.409108940503754, 48.84071602829154], [2.409150528622469, 48.84083943868037], [2.409171468868057, 48.84086746090183], [2.409188637089642, 48.84086464616218], [2.40936632170942, 48.840897039822984], [2.409531845727614, 48.84092718235576], [2.409709532146432, 48.840959574612334], [2.409875056561704, 48.84098971666856], [2.410040582530887, 48.84101985850165], [2.410218268219353, 48.84105224999318], [2.410224678203703, 48.84105483667353], [2.410349364336301, 48.841144485129874], [2.410470169463429, 48.84123012386769], [2.410590973635343, 48.84131576157102], [2.410715661022178, 48.84140540962463], [2.4107188393829633, 48.84140930241467], [2.410769931854344, 48.84154364119378], [2.410816785601986, 48.84167365383045], [2.410816917522353, 48.84167765302581], [2.410766818297777, 48.841838568510376], [2.410714165424608, 48.84199393492669], [2.410714191035018, 48.841997936295456], [2.410751156087792, 48.84212092477353], [2.410802265672122, 48.84226587145565], [2.410819050663576, 48.842272522132824], [2.411055743023272, 48.842230806269754], [2.411295920512006, 48.84218558160798], [2.411313168901665, 48.84219306820095], [2.411337703953279, 48.8423173524306], [2.411364552895086, 48.84245453132011], [2.411389088182157, 48.842578816409414], [2.411415937394002, 48.842715995255226], [2.411440472926693, 48.84284028030487], [2.411467321045964, 48.84297745910031], [2.411491856824171, 48.84310174411029], [2.411518706575898, 48.843238922868736], [2.411543242599834, 48.84336320783905], [2.41157009262151, 48.84350038655383], [2.411594628890975, 48.84362467148446], [2.4116214791826023, 48.84376185015556], [2.411646015697802, 48.84388613504653], [2.411672864896845, 48.84402331366726], [2.411697401657678, 48.84414759851856], [2.411691555709425, 48.84416441290814], [2.411719880003753, 48.84417733204075], [2.41179177479813, 48.84428502097712], [2.411873664302082, 48.84441108876242], [2.41194555837423, 48.84451877757713], [2.412027448607218, 48.84464484613005], [2.412099343319591, 48.84475253482976], [2.412181234302021, 48.84487860235168], [2.412253131017192, 48.844986290943105], [2.412335021376458, 48.84511235832659], [2.412406918721635, 48.845220047702355], [2.412397315265728, 48.845232466493705], [2.412191002205016, 48.845261756749125], [2.411982847454314, 48.84528976680847], [2.411776533923581, 48.84531905724696], [2.411568378721268, 48.84534706658377], [2.4113620647308682, 48.84537635630597], [2.411153910439427, 48.84540436492689], [2.410947595999433, 48.845433653033545], [2.410739439893827, 48.8454616609252], [2.41072880471398, 48.84547225150796], [2.410767359384802, 48.84559840415085], [2.410803333229158, 48.84572167961103], [2.410841888264808, 48.845847832201684], [2.410877862467795, 48.84597110671256], [2.410916417868479, 48.84609725925095], [2.410952392409666, 48.84622053461112], [2.4109909481752902, 48.846346687097295], [2.411026923075115, 48.84646996150816], [2.411065479205682, 48.84659611394208], [2.411101454443924, 48.846719389202235], [2.411140010939339, 48.84684554158385], [2.411175986536226, 48.84696881589471], [2.411191039202358, 48.84700301505404], [2.41122287604592, 48.847020680353], [2.411420308847835, 48.847003132320076], [2.411615886714767, 48.846986567725644], [2.411813319255111, 48.84696901904366], [2.4120088982317203, 48.84695245381293], [2.412206329147864, 48.84693490447514], [2.41240190787152, 48.84691833860147], [2.412599339888692, 48.84690078862131], [2.412794918359385, 48.84688422210467], [2.412992348752342, 48.84686667146877], [2.413187926970063, 48.846850104309134], [2.413385357101412, 48.846832553024136], [2.413580935066153, 48.846815985221546], [2.413776512896424, 48.84679941799833], [2.413973944010251, 48.846781864848644], [2.414169521587534, 48.84676529698248], [2.414366951077108, 48.84674774317699], [2.414562528401395, 48.846731174667866], [2.414759957629322, 48.84671362021332], [2.414955534700602, 48.84669705106122], [2.415152965029485, 48.8466794959643], [2.41534854184775, 48.84666292616924], [2.415545970552356, 48.84664537041656], [2.415741547117595, 48.846628799978575], [2.415938975560527, 48.84661124357683], [2.415957245504158, 48.846611663729384], [2.415956127181812, 48.84659241480132], [2.41593746040468, 48.84649961650215], [2.415913466107541, 48.84637991319671], [2.415894800845089, 48.846287114879786], [2.415894665273536, 48.84628644509861], [2.415870672535336, 48.84616674176832], [2.415848936705159, 48.8460586861816], [2.415838803280892, 48.84600830615176], [2.415814809426376, 48.84588860367304], [2.415785472915405, 48.845742754240874], [2.415761479305739, 48.845623051722974], [2.415737487178854, 48.84550334829473], [2.415708151091051, 48.84535749969253], [2.415698744584397, 48.84531073317758], [2.415674751382808, 48.845191029696586], [2.415660648184061, 48.845120910968056], [2.415622267077909, 48.844992960243644], [2.415581168064699, 48.84485975567258], [2.415542787356189, 48.84473180399344], [2.41550169011462, 48.84459859937053], [2.415463309783369, 48.844470648535186], [2.415422211588318, 48.84433744384709], [2.415383831654699, 48.844209492057026], [2.4153427338687212, 48.84407628731047], [2.41530435568498, 48.8439483354716], [2.415275251715408, 48.84385400278901], [2.415246146488554, 48.84375967008471], [2.415207768765096, 48.84363171907787], [2.415180582051375, 48.84354360127308], [2.415142203295548, 48.84341564931444], [2.415115018157719, 48.843327532383675], [2.415110963484366, 48.84331438825335], [2.415096371099714, 48.843267088110025], [2.4150579927542433, 48.84313913609262], [2.415020974967868, 48.84301914910655], [2.414982596979871, 48.84289119793588], [2.414945579543169, 48.84277121089981], [2.414907203295538, 48.84264325878384], [2.414870184845998, 48.84252327169114], [2.414831808955923, 48.842395320421865], [2.414800232441979, 48.84229296751324], [2.414784801833026, 48.84224294982466], [2.41474642500657, 48.84211499758991], [2.414700029734232, 48.841964606699705], [2.414661653310736, 48.84183665530512], [2.414623339794832, 48.84171246080741], [2.41458496375536, 48.841584508460016], [2.4145339247876603, 48.841427305451674], [2.414495550540126, 48.84129935304959], [2.414494499605793, 48.84129611651259], [2.414457515770887, 48.84116970069582], [2.4144191405381292, 48.84104174823303], [2.414382158438959, 48.840915331471514], [2.414343783568376, 48.84078737985475], [2.41430680047011, 48.84066096303445], [2.414268427344258, 48.84053301047171], [2.414232622847419, 48.84041062309984], [2.414194248725627, 48.84028267047794], [2.414158445947484, 48.84016028216381], [2.414120072181888, 48.84003233038874], [2.414084269749879, 48.83990994202496], [2.414045896360892, 48.83978198929812], [2.4140100942648, 48.83965960178402], [2.413971721242206, 48.83953164900471], [2.413935919502451, 48.83940926054169], [2.413897546846247, 48.8392813077099], [2.413861744079983, 48.839158920089865], [2.413823373152578, 48.8390309672123], [2.413787570742648, 48.83890857864334], [2.413749200171399, 48.83878062661263], [2.413713398107586, 48.83865823799408], [2.41367502791292, 48.838530285011586], [2.413639226195218, 48.83840789634339], [2.413600854994304, 48.83827994420107], [2.413576578093169, 48.83819694911446], [2.413566662402399, 48.83819427077242], [2.413547523611145, 48.838197348986775], [2.4133465456581122, 48.838220597651734], [2.413150587647597, 48.83824364666673], [2.412954630815941, 48.838266696266174], [2.412753652331081, 48.838289943933546], [2.4127476910053502, 48.83828975817852], [2.4125583658555723, 48.83825541641341], [2.412368967877873, 48.838221151333634], [2.412179644589204, 48.8381868089737], [2.411990245747477, 48.83815254328545], [2.411800922947384, 48.83811820122333], [2.411611524613972, 48.83808393403405], [2.411422202312604, 48.838049591370414], [2.411232804477574, 48.838015323579405], [2.411043482674937, 48.83798098031425], [2.410854086690314, 48.83794671282748], [2.410664764034197, 48.83791236805482], [2.410475368547962, 48.837878099966346], [2.410468902421729, 48.83787798086033], [2.410288619041025, 48.83790357119106], [2.410082996474648, 48.837933292963726], [2.409902712723358, 48.83795888181222], [2.409697089718641, 48.83798860292008], [2.409516805576413, 48.83801419208503], [2.40931118077118, 48.83804391252135], [2.409130897610483, 48.8380695011101], [2.408925272367025, 48.838099220881574], [2.408770477403895, 48.83812072136495], [2.408564853115264, 48.83815044052221], [2.4084100578411523, 48.838171941437494], [2.408363433216961, 48.838174626567266]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 30, "zemmour_eric": 49.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-45", "circ_bv": "08", "num_bureau": 45, "roussel_fabien": 22.0, "nb_emargement": 942.0, "nb_procuration": 32.0, "nb_vote_blanc": 18.0, "jadot_yannick": 30.0, "le_pen_marine": 99.0, "nb_exprime": 921.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1329.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 942, "quartier_bv": "45", "geo_point_2d": [48.842259767658454, 2.4124861289774757], "melenchon_jean_luc": 410.0, "poutou_philippe": 7.0, "macron_emmanuel": 229.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.354674384387975, 48.84365717623916], [2.354638437799788, 48.84365310787768], [2.354486860071241, 48.84365576700958], [2.354301312958594, 48.84365985066509], [2.354301216187554, 48.84365985284089], [2.354101124163874, 48.84366431185751], [2.353915575616912, 48.84366839580674], [2.353715484889968, 48.84367285418572], [2.353529936282379, 48.84367693753678], [2.353329845489758, 48.84368139527075], [2.35314429682155, 48.843685478023616], [2.352958749497862, 48.843689559596775], [2.35275865723424, 48.8436940172673], [2.352754485207803, 48.843694546903194], [2.35255949044166, 48.84373837529004], [2.352353558637547, 48.843787507941784], [2.352310298002861, 48.8437972314645], [2.352301841750719, 48.84379602370648], [2.352270369735313, 48.843807216741325], [2.352118634863597, 48.84384132089738], [2.351953090591779, 48.84387854368834], [2.351758094463309, 48.84392237076173], [2.35159254831402, 48.84395959304371], [2.351427003279609, 48.843996816002054], [2.351232006266133, 48.844040642213315], [2.351066460727978, 48.844077863770735], [2.35087146174565, 48.84412168938371], [2.3508714439769802, 48.84412169378411], [2.350707264910637, 48.84415878195875], [2.350512266686045, 48.84420260699051], [2.350348087098006, 48.84423969556885], [2.350153088279863, 48.844283519112665], [2.349988908181333, 48.8443206071954], [2.349793908747221, 48.8443644310499], [2.34962972951197, 48.844401517745105], [2.349623990860584, 48.84440233734316], [2.34947852930377, 48.84444807221705], [2.349303537278025, 48.8445029438938], [2.349268864925785, 48.84450277418834], [2.349255759614278, 48.844511260324474], [2.349238946607863, 48.84452214827035], [2.349237981639249, 48.84454170052987], [2.349214514099274, 48.84466854377869], [2.349197133379814, 48.84479788886736], [2.349173665636294, 48.844924731179795], [2.349156284729915, 48.8450540762328], [2.349132816760385, 48.845180919407326], [2.3491154370298553, 48.84531026443212], [2.349115399774337, 48.84531150174958], [2.3491254441298652, 48.84540923144805], [2.349132774830335, 48.84550723326943], [2.349142819256067, 48.84560496294927], [2.349150150016742, 48.845702964752384], [2.349150156023086, 48.845704120463], [2.349131385597972, 48.845824135096905], [2.349115824424668, 48.84599267775727], [2.349108249509868, 48.846041112949614], [2.349112442269484, 48.84605847092429], [2.349166310206152, 48.84606266360797], [2.349332161606694, 48.84603168342943], [2.349535629423376, 48.845993781918935], [2.3497014790226842, 48.84596280121912], [2.349904946301848, 48.8459248990782], [2.350070796824883, 48.845893917871926], [2.350274263566522, 48.84585601510054], [2.350440112288314, 48.845825033372996], [2.3504483182275893, 48.84581201831937], [2.350356763019608, 48.845703046673655], [2.350265273741484, 48.845593626522394], [2.350173717948539, 48.84548465380852], [2.350082230800679, 48.84537523350326], [2.350088889545992, 48.845362595889426], [2.350227534240819, 48.845324202528346], [2.350311195224426, 48.84529803491808], [2.350327178921055, 48.84530076943545], [2.350345960029563, 48.84531531605279], [2.350467711697153, 48.8454175320189], [2.350585640694114, 48.84551632391935], [2.350707391950109, 48.845618538716394], [2.350825323218729, 48.845717330370164], [2.350947075403194, 48.8458195458042], [2.351065006229629, 48.84591833629716], [2.351186760716364, 48.84602055147621], [2.351304692440904, 48.8461193426144], [2.351426446515838, 48.846221556624414], [2.351544380512179, 48.84632034751592], [2.351558066678353, 48.84632355686408], [2.3516515431919363, 48.84630970879959], [2.3517119666588018, 48.84630103094978], [2.351722234308744, 48.84629434948526], [2.351766878554345, 48.846171266707216], [2.351811638638023, 48.8460459748008], [2.351856282470996, 48.84592289106265], [2.351901042126316, 48.845797599094844], [2.351945685535378, 48.845674515295904], [2.351990446125124, 48.84554922327412], [2.352035089098995, 48.8454261403137], [2.352079847909102, 48.8453008473239], [2.352124490459178, 48.84517776430269], [2.352169248829867, 48.84505247215078], [2.352213890967128, 48.84492938816952], [2.35225865027214, 48.844804095963624], [2.352303291974434, 48.84468101282088], [2.35234804949974, 48.84455571964696], [2.352367943455086, 48.844549927537024], [2.352536837945761, 48.844612039635926], [2.352699650473619, 48.84467225690634], [2.352868545767211, 48.84473436763082], [2.353031360422933, 48.84479458445057], [2.353200255134551, 48.84485669559189], [2.3533630705668482, 48.84491691105431], [2.353531967432871, 48.84497902172788], [2.353694782256865, 48.84503923762422], [2.353863679914536, 48.84510134782265], [2.3540264955150922, 48.845161562361646], [2.354031047441533, 48.84516260231769], [2.354199053455187, 48.84518072040935], [2.354398544757654, 48.84520135370845], [2.354414185193558, 48.84519353273432], [2.354437208681197, 48.84506600268253], [2.354458039978967, 48.84494284156776], [2.354481063248546, 48.84481531147887], [2.354501892979928, 48.84469215032137], [2.354524916031353, 48.844564620195364], [2.354545746921454, 48.84444145900992], [2.354568769754927, 48.84431392884681], [2.354589600441197, 48.844190767626074], [2.35461262305662, 48.84406323742586], [2.354633453539061, 48.84394007616979], [2.354654283923054, 48.84381691489647], [2.354677306203817, 48.843689385540365], [2.354674384387975, 48.84365717623916]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 96, "zemmour_eric": 90.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "5-25", "circ_bv": "02", "num_bureau": 25, "roussel_fabien": 21.0, "nb_emargement": 1303.0, "nb_procuration": 95.0, "nb_vote_blanc": 13.0, "jadot_yannick": 120.0, "le_pen_marine": 44.0, "nb_exprime": 1287.0, "nb_vote_nul": 3.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1616.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1303, "quartier_bv": "17", "geo_point_2d": [48.84477156465169, 2.351749108966399], "melenchon_jean_luc": 367.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.315519610919721, 48.88220577675691], [2.3155175761721543, 48.88220672920972], [2.315495118253096, 48.88222690687001], [2.315369082554826, 48.88233603893343], [2.315250637710832, 48.88244246321011], [2.315124599615122, 48.88255159498695], [2.31499902545425, 48.882661181642526], [2.314872987665463, 48.88277031314064], [2.314747412447723, 48.88287989951052], [2.314621372238769, 48.88298903071425], [2.314495795964249, 48.88309861679844], [2.314369756062108, 48.88320774772344], [2.31424417874254, 48.883317332622624], [2.314118136408459, 48.883426464152485], [2.313992558031891, 48.883536048766004], [2.313866514652993, 48.88364517911], [2.313740935207666, 48.883754764337084], [2.313737311928949, 48.88375694243745], [2.313693650912101, 48.88377492703991], [2.313671960532795, 48.88378021848476], [2.313648055805615, 48.88378921777124], [2.313647150403734, 48.883790040866344], [2.313645473463882, 48.883791566414054], [2.313680078290105, 48.883827299221785], [2.313828638881686, 48.88391367277427], [2.313976413701988, 48.883999589266146], [2.3141249752765782, 48.88408596243736], [2.314272752438166, 48.884171878557844], [2.314421313632293, 48.884258251340036], [2.314569091771702, 48.88434416708129], [2.314717653948844, 48.88443053948224], [2.314865433066078, 48.884516454844274], [2.31501399622624, 48.884602826864025], [2.31516177630948, 48.8846887427461], [2.315310341827987, 48.88477511349311], [2.315458121525576, 48.88486102898816], [2.315470413346151, 48.884869043961004], [2.3154850567844623, 48.88486632536348], [2.315620566917842, 48.88486838156992], [2.315755164948952, 48.88487042341702], [2.315766776807571, 48.88486646796614], [2.315874168435326, 48.884761677270006], [2.315980672809213, 48.884657750155625], [2.316088063587931, 48.884552958348486], [2.316194568459854, 48.88444903193119], [2.316301958377727, 48.8843442399123], [2.316408461032332, 48.88424031327722], [2.316515850089372, 48.88413552104665], [2.316622351890257, 48.88403159420155], [2.316729741449945, 48.883926801767004], [2.316836242397116, 48.883822874711925], [2.316942742919204, 48.88371894755234], [2.317050129825983, 48.88361415479283], [2.317156629494374, 48.88351022742327], [2.317264016903907, 48.883405434459846], [2.317370515718606, 48.883301506880265], [2.317477900903785, 48.88319671369736], [2.317584398876587, 48.883092785008564], [2.317691783189196, 48.88298799251318], [2.317698946939416, 48.882975039775566], [2.317691062292335, 48.882968391039114], [2.317514258451677, 48.88292886307545], [2.317342465148377, 48.88289045520775], [2.317165661825223, 48.882850927625725], [2.316993869036116, 48.88281251925517], [2.316817066253846, 48.88277299025634], [2.316645275330681, 48.88273458228989], [2.316641745547482, 48.88273339121082], [2.316464336807874, 48.88265010026133], [2.31628756966986, 48.88256711038285], [2.316110162063169, 48.88248381889598], [2.315933397417404, 48.88240082848981], [2.315755990943624, 48.8823175364656], [2.315579226075057, 48.88223454461694], [2.315519610919721, 48.88220577675691]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 102, "zemmour_eric": 100.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-10", "circ_bv": "03", "num_bureau": 10, "roussel_fabien": 12.0, "nb_emargement": 1198.0, "nb_procuration": 80.0, "nb_vote_blanc": 17.0, "jadot_yannick": 120.0, "le_pen_marine": 35.0, "nb_exprime": 1177.0, "nb_vote_nul": 5.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1501.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1199, "quartier_bv": "67", "geo_point_2d": [48.88353818554741, 2.3156305129220622], "melenchon_jean_luc": 183.0, "poutou_philippe": 7.0, "macron_emmanuel": 570.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.309763987954069, 48.874407575201516], [2.309791930214916, 48.87439610424437], [2.309919230676309, 48.87431381733471], [2.310050205258625, 48.8742383109091], [2.310177504926235, 48.87415602371302], [2.310308478725557, 48.87408051789328], [2.310435777599491, 48.87399823041077], [2.3105667520028472, 48.873922723406245], [2.310568022945851, 48.87392177652535], [2.310685831501581, 48.873820558737044], [2.310798304069435, 48.87372031376859], [2.310916110358705, 48.873619095727314], [2.311028582048244, 48.87351885052418], [2.311146388797668, 48.873417632245676], [2.3112588596091, 48.87331738680787], [2.311371329975625, 48.87321714215454], [2.311489134025225, 48.873115922603965], [2.3115176031768803, 48.87308627227645], [2.311507305343305, 48.873070205663176], [2.311320715291837, 48.87301737247956], [2.311118050235577, 48.872959895819655], [2.310931460974097, 48.87290706202399], [2.31072879676467, 48.87284958559856], [2.310727901956565, 48.87283334102794], [2.31091325729182, 48.87276990201357], [2.311090196768657, 48.87270961233604], [2.31127555121048, 48.87264617365279], [2.311452488484503, 48.872585883425145], [2.311637842056677, 48.87252244327457], [2.311814778490957, 48.87246215250463], [2.312000131169711, 48.87239871268521], [2.31217706812772, 48.872338421380846], [2.312362418573541, 48.87227498008625], [2.312539354691903, 48.87221468823963], [2.3125453058179772, 48.87220269641287], [2.312449554824806, 48.872075594596225], [2.312356446012593, 48.87195265653165], [2.312260695927916, 48.87182555543445], [2.312167589383515, 48.871702616303715], [2.31207183885604, 48.87157551501884], [2.31197873320431, 48.871452575713356], [2.311979176436049, 48.871443997629655], [2.3120701658725142, 48.871341927149004], [2.312163564623974, 48.871238256116015], [2.312254551976601, 48.87113618546837], [2.312347951355417, 48.87103251428003], [2.312438937987253, 48.870930443473206], [2.312532335266962, 48.87082677211387], [2.312623321178119, 48.87072470114789], [2.312716719085188, 48.870621029633206], [2.312807704275773, 48.870518958508065], [2.312901100083761, 48.870415286822364], [2.31289766398172, 48.87040354954805], [2.31273226700747, 48.87032008338747], [2.31258146295538, 48.87024314819525], [2.312416066997097, 48.870159681585676], [2.3122652625132822, 48.87008274597608], [2.312225184895946, 48.870055769199226], [2.312217401894202, 48.8700559744946], [2.312151993071434, 48.8700239381155], [2.312001189358751, 48.869947003063054], [2.311994758805409, 48.86992542590683], [2.311955619447592, 48.86991186185146], [2.311804817724388, 48.8698349256524], [2.311651277508019, 48.86975531504447], [2.31150047532442, 48.869678378443204], [2.311346937385815, 48.86959876834071], [2.311196136104915, 48.86952183134514], [2.311042597741651, 48.86944221993389], [2.310891798726541, 48.8693652825518], [2.310738261277926, 48.86928567163817], [2.310587461802418, 48.86920873385397], [2.310433925292143, 48.869129121639375], [2.310283128082511, 48.86905218346868], [2.310129592498877, 48.868972570852456], [2.310115162022056, 48.868971568547096], [2.309930478078673, 48.86903137518922], [2.3097542138266, 48.869088255966815], [2.309569529055213, 48.869148062045646], [2.309393264014168, 48.869204942285684], [2.309208578414576, 48.8692647478013], [2.3090323125846632, 48.869321627503794], [2.3088476261689, 48.86938143155684], [2.308671359537987, 48.86943831162109], [2.308486672294233, 48.86949811511087], [2.308310404874349, 48.86955499463757], [2.308134137069522, 48.86961187390172], [2.30794944859365, 48.869671676553196], [2.307773179999855, 48.86972855527982], [2.307588490695793, 48.86978835736807], [2.307412221313133, 48.86984523555708], [2.307227531180986, 48.86990503708204], [2.30705126100926, 48.86996191473353], [2.306866571412237, 48.87002171570311], [2.306690300451652, 48.87007859281699], [2.306505608663342, 48.87013839321541], [2.306433807784023, 48.870161560700424], [2.306409003172263, 48.87016285412039], [2.306385548594162, 48.870176200280504], [2.306281077675321, 48.87020990842998], [2.3061022718163002, 48.870266831139396], [2.30592599919173, 48.87032370711514], [2.305747192554063, 48.87038062928822], [2.305570919156599, 48.87043750473522], [2.305392110377171, 48.87049442636413], [2.305215836207018, 48.870551301282326], [2.305037028012066, 48.87060822238284], [2.304860753069123, 48.8706650967723], [2.304681944095533, 48.87072201733652], [2.304505668379805, 48.870778891197176], [2.304326858627578, 48.870835811225135], [2.304150582139065, 48.87089268455698], [2.303971770244972, 48.87094960404069], [2.303795492995697, 48.871006475944505], [2.303616681674182, 48.87106339579912], [2.303440403652132, 48.87112026717414], [2.303261591551981, 48.871177186492424], [2.30308531275716, 48.871234057338654], [2.302906499878374, 48.871290976120626], [2.302730220310783, 48.87134784643805], [2.302640306261103, 48.87137646676955], [2.302624232958129, 48.87138632166776], [2.302667906068711, 48.87143741691961], [2.302831342337883, 48.87151946549128], [2.302993691051932, 48.871600810506415], [2.303157128334806, 48.871682859520426], [2.303319478066883, 48.87176420408164], [2.303482915024376, 48.8718462517315], [2.30364526577448, 48.871927595838805], [2.303808705121067, 48.87200964303962], [2.303971056877186, 48.87209098759232], [2.304134497249726, 48.87217303433614], [2.304296850035901, 48.87225437753565], [2.304460290070924, 48.87233642381458], [2.3046226438751383, 48.87241776656018], [2.304786086299281, 48.872499812390046], [2.30494844110954, 48.872581155581], [2.305111884559546, 48.87266320095386], [2.305274240399857, 48.87274454279163], [2.305437684875827, 48.87282658770751], [2.305600041734191, 48.872907929091376], [2.305763485872642, 48.87298997354233], [2.305925843737079, 48.87307131537151], [2.306089290264687, 48.87315335937344], [2.3062516491591722, 48.87323469984937], [2.30625594713146, 48.873238338315446], [2.306327812376173, 48.87334968324264], [2.306396300326428, 48.873461373677074], [2.30646816619087, 48.87357271759821], [2.306536654723278, 48.873684408829064], [2.306547554753049, 48.87368995616057], [2.306763651344259, 48.87370828813825], [2.30696489172663, 48.873722691726044], [2.306972751274448, 48.87372507641733], [2.3071286923417382, 48.873821643910034], [2.30728768700304, 48.8739205401662], [2.307443627876101, 48.87401710722364], [2.307602623732026, 48.87411600304403], [2.307618600220212, 48.87411732035801], [2.307799455273401, 48.87405100565114], [2.307982187046906, 48.87398008879764], [2.308163041160791, 48.87391377353323], [2.308345771957821, 48.87384285611593], [2.308526625120361, 48.8737765411932], [2.308709353589551, 48.87370562230492], [2.308726082742928, 48.8737071317812], [2.308851004407197, 48.873792606165836], [2.308971553862464, 48.87387337050219], [2.309096476340181, 48.873958843718505], [2.309217025197605, 48.87403960778764], [2.309341949828127, 48.874125081642006], [2.309462499450921, 48.874205845451776], [2.309587424894896, 48.87429131813786], [2.309707975283062, 48.87437208168826], [2.309763987954069, 48.874407575201516]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 129, "zemmour_eric": 198.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-13", "circ_bv": "01", "num_bureau": 13, "roussel_fabien": 6.0, "nb_emargement": 1139.0, "nb_procuration": 63.0, "nb_vote_blanc": 12.0, "jadot_yannick": 40.0, "le_pen_marine": 66.0, "nb_exprime": 1124.0, "nb_vote_nul": 3.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1486.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1139, "quartier_bv": "30", "geo_point_2d": [48.87162500015712, 2.3084602710000657], "melenchon_jean_luc": 113.0, "poutou_philippe": 2.0, "macron_emmanuel": 544.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.28588364888986, 48.840291186649665], [2.285885070641868, 48.84029412258929], [2.2860015347855, 48.84033993922955], [2.286165593955569, 48.84040460369298], [2.286338343538886, 48.840472562003306], [2.286502404906695, 48.840537226005274], [2.28667515536872, 48.84060518382116], [2.286839216209508, 48.84066984734538], [2.28701196756244, 48.84073780376752], [2.287176029238533, 48.840802466822154], [2.287348781457969, 48.84087042364911], [2.287512843969269, 48.84093508623414], [2.2876855970674113, 48.84100304256662], [2.287849660414021, 48.84106770468206], [2.287836852742003, 48.84108295010183], [2.287851356203035, 48.84108778961563], [2.287859612311145, 48.84109104322116], [2.287869606095156, 48.841100447169616], [2.287919458578597, 48.84108648262461], [2.288041128345975, 48.841028170374734], [2.288213644400989, 48.84094763943061], [2.288335314877564, 48.84088932688236], [2.288335360144435, 48.84088930466741], [2.288507876647544, 48.840808773297056], [2.288702429213134, 48.84071552790172], [2.288773212930192, 48.840685534768845], [2.288800460180489, 48.840673989663706], [2.28881744385875, 48.840674502547856], [2.288828228980211, 48.84068073904499], [2.288903953298476, 48.840724531659504], [2.28897813273923, 48.84077021451087], [2.288994470460727, 48.84077133779994], [2.289176266095007, 48.840698869509254], [2.289356616442458, 48.84062653805262], [2.289538411068166, 48.84055406920217], [2.28971876041201, 48.84048173719012], [2.289900554016793, 48.84040926867923], [2.290080902369386, 48.84033693521258], [2.290262694965603, 48.84026446614197], [2.290443043664665, 48.84019213302731], [2.290492286988714, 48.84018246548366], [2.290488067742705, 48.84016541717381], [2.290429544071928, 48.84009594262186], [2.290346964109875, 48.83999805001191], [2.290334648546235, 48.83998343052856], [2.290334127843452, 48.83998274661587], [2.29025523763393, 48.8398668632232], [2.290174404041081, 48.83974773769235], [2.2900955145300212, 48.83963185506926], [2.290014681666781, 48.8395127294054], [2.289935792866521, 48.8393968466526], [2.289854959370376, 48.83927772084769], [2.289776072643309, 48.839161837973265], [2.289695239876658, 48.839042712035344], [2.289616352510231, 48.838926828123846], [2.289535521823201, 48.83880770296034], [2.28945663516755, 48.83869181891912], [2.289375803847603, 48.83857269361458], [2.289367965619123, 48.838569891373666], [2.289344958484705, 48.83856972680903], [2.289154789215214, 48.838518571090034], [2.288988200480029, 48.83847500922514], [2.288963009668845, 48.83846713118385], [2.288935976625058, 48.83849821647157], [2.288783921141548, 48.838587085996515], [2.288631889490214, 48.838676067887384], [2.28847983431952, 48.83876493791903], [2.288327801630312, 48.83885391940927], [2.288175744072204, 48.838942788132805], [2.288023710345016, 48.83903176922238], [2.287871653099709, 48.83912063845269], [2.287719618347027, 48.839209618242315], [2.287567558702007, 48.83929848706377], [2.287415522899043, 48.83938746735206], [2.287263462216695, 48.83947633577284], [2.287111425388232, 48.83956531476117], [2.28695936503096, 48.83965418278934], [2.286807327152196, 48.83974316227631], [2.286655264395177, 48.839832029895646], [2.286503225490911, 48.83992100808263], [2.286351161696547, 48.84000987530127], [2.286199121742056, 48.840098853986895], [2.286047058285082, 48.84018771991363], [2.28589501729257, 48.840276698198544], [2.28588364888986, 48.840291186649665]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 112, "zemmour_eric": 133.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "15-88", "circ_bv": "13", "num_bureau": 88, "roussel_fabien": 10.0, "nb_emargement": 1260.0, "nb_procuration": 87.0, "nb_vote_blanc": 18.0, "jadot_yannick": 76.0, "le_pen_marine": 84.0, "nb_exprime": 1239.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1543.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1260, "quartier_bv": "60", "geo_point_2d": [48.8398953784758, 2.288386799930862], "melenchon_jean_luc": 271.0, "poutou_philippe": 6.0, "macron_emmanuel": 492.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.335777464697759, 48.889690495270514], [2.335752140401136, 48.8896983983599], [2.335752140693535, 48.88969880305813], [2.335757426247189, 48.88985139938602], [2.3357626637421403, 48.890002633846876], [2.335767949357577, 48.890155230132095], [2.335773188277294, 48.89030646455819], [2.3357623114272172, 48.89031547751508], [2.335579239278769, 48.89034040287399], [2.335401736899847, 48.890364571058015], [2.335218665769932, 48.89038949587211], [2.335041163056294, 48.89041366352058], [2.334863658825728, 48.890437829998525], [2.334680587169183, 48.8904627548876], [2.33450308396756, 48.890486920837574], [2.334320010602067, 48.89051184516664], [2.334304608930919, 48.89050640765983], [2.334233656420393, 48.8903906576328], [2.334162689546358, 48.89027488228875], [2.334091736303069, 48.89015913214562], [2.334020770060141, 48.89004335669307], [2.3339498188114582, 48.88992760644899], [2.333878851835999, 48.88981183088031], [2.333807901229783, 48.88969607962849], [2.333736934885425, 48.88958030395126], [2.333665984898657, 48.88946455349022], [2.3335950191853883, 48.88934877770446], [2.333524069829566, 48.889233027134864], [2.333453104747278, 48.88911725124061], [2.333437424845871, 48.88911185433209], [2.333375251351538, 48.88912122093724], [2.3333334060789053, 48.88912752516995], [2.333322971491229, 48.88913489551021], [2.333300576923206, 48.88922882687521], [2.333278718389378, 48.8893205101994], [2.33325632365008, 48.889414442439495], [2.333234464960412, 48.889506125740105], [2.333233015596174, 48.889508973929345], [2.333141810386246, 48.8896205742215], [2.333040145765609, 48.889745804817416], [2.332948939738993, 48.88985740403935], [2.332847274180668, 48.889982635343735], [2.332830285818105, 48.88999653240128], [2.332823899128964, 48.89002069137788], [2.33289475785087, 48.89011867649744], [2.332963968499222, 48.89021438608365], [2.333034826373043, 48.890312371994696], [2.333104038911581, 48.890408080591335], [2.33317325169294, 48.8905037900389], [2.333244110354536, 48.89060177580032], [2.333250144432915, 48.8906058887385], [2.333354162304154, 48.89064143724279], [2.333460638098487, 48.89067782491712], [2.333467926195012, 48.89068487122832], [2.333489970871637, 48.890823391974926], [2.3335119751915903, 48.89096166516033], [2.333534018738826, 48.89110018585629], [2.333556023292728, 48.89123845899868], [2.333578067062822, 48.891376980550845], [2.333600071850676, 48.891515253650276], [2.333622115866651, 48.891653774260114], [2.333644120888358, 48.89179204731657], [2.333661935534969, 48.89182806995526], [2.333678302735913, 48.89182671851459], [2.333745981032633, 48.89181331474225], [2.3338573104738822, 48.89178810732065], [2.333859751322851, 48.89178771620302], [2.334046870151827, 48.891770176946906], [2.334263162429707, 48.89174916632414], [2.334450280984351, 48.89173162643703], [2.334666571575418, 48.89171061507726], [2.3348536898556222, 48.8916930745592], [2.334952657856663, 48.89168346008747], [2.334997530569917, 48.891686722029725], [2.335017458214007, 48.89167558484714], [2.335134780437681, 48.89166418806543], [2.335336676190726, 48.8916422295227], [2.335539763030551, 48.891621504826844], [2.335741658447294, 48.89159954560043], [2.335944744959434, 48.89157882021694], [2.336146640039864, 48.89155686030687], [2.336349726212847, 48.891536135135034], [2.336551620956958, 48.89151417454131], [2.336754706813703, 48.89149344778257], [2.33695660122138, 48.89147148650518], [2.337159686750511, 48.89145075905882], [2.337245270642668, 48.89144144902201], [2.337263603064736, 48.891437729256495], [2.337254426658067, 48.89139897785034], [2.33718587889725, 48.89128580969079], [2.337116586082386, 48.89117141067579], [2.337048040284512, 48.89105824242146], [2.336978748063886, 48.89094384420219], [2.336910201501517, 48.89083067583794], [2.336840909898026, 48.89071627661591], [2.336772365287017, 48.89060310905608], [2.336703074289199, 48.890488709730626], [2.336634528925047, 48.8903755411616], [2.336565238532898, 48.89026114173262], [2.336575154079898, 48.89024899822197], [2.33675466280783, 48.89022463346876], [2.336944838460813, 48.89019882024463], [2.33712434547903, 48.89017445492858], [2.337314520776917, 48.89014864021688], [2.33749402744925, 48.89012427434556], [2.337684202369141, 48.89009845994481], [2.337863708695384, 48.890074093518166], [2.33805388324872, 48.89004827852915], [2.338233389228967, 48.89002391154723], [2.338423563415739, 48.88999809596991], [2.338603070425142, 48.88997372754098], [2.338793242881708, 48.8899479113678], [2.338795477246698, 48.88993563262736], [2.33877305304011, 48.88991301307802], [2.338770236543354, 48.88989821171772], [2.338637365668776, 48.8898889361221], [2.338428623153753, 48.88987444241309], [2.33823258796016, 48.88986075601542], [2.338023847023079, 48.88984626250723], [2.337827812041978, 48.88983257544656], [2.33761906996671, 48.88981808122489], [2.33742303656184, 48.88980439350874], [2.33721429471233, 48.88978989858105], [2.337018261519971, 48.8897762102019], [2.336809519907479, 48.889761713668904], [2.336613486916186, 48.88974802552604], [2.3364174540394202, 48.889734336162796], [2.336208712762176, 48.88971983858192], [2.336012678722754, 48.88970614944737], [2.335803939034834, 48.8896916511681], [2.335777464697759, 48.889690495270514]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 64, "zemmour_eric": 65.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-37", "circ_bv": "18", "num_bureau": 37, "roussel_fabien": 23.0, "nb_emargement": 1306.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 155.0, "le_pen_marine": 67.0, "nb_exprime": 1292.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1606.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1306, "quartier_bv": "69", "geo_point_2d": [48.89068026165036, 2.3352008723489663], "melenchon_jean_luc": 370.0, "poutou_philippe": 5.0, "macron_emmanuel": 476.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.307864935850447, 48.83774609117021], [2.307865481994301, 48.83775985470156], [2.307984681637109, 48.83788356297514], [2.3080965278325642, 48.83800518071196], [2.308215728584747, 48.8381288887282], [2.308327575845706, 48.83825050622225], [2.308329437167216, 48.83825634310538], [2.308328123244967, 48.838263876727005], [2.308309320739906, 48.83837161957363], [2.308279886764086, 48.83851971591951], [2.308259768763158, 48.83863499234438], [2.308230334497823, 48.8387830886432], [2.308210216285751, 48.83889836503258], [2.308180781730792, 48.83904646128428], [2.308160663307472, 48.83916173763813], [2.308167169054957, 48.839170470369346], [2.308334988961195, 48.83923718566272], [2.308527437329039, 48.83931306016065], [2.308695256793199, 48.839379774932205], [2.308887706211851, 48.83945564884086], [2.309055526596234, 48.83952236309847], [2.309190414142491, 48.83957554209325], [2.3091978287004222, 48.83958305597097], [2.309220912368395, 48.83958806925212], [2.309253206625414, 48.83960109153412], [2.309310769604375, 48.839623785827996], [2.309330934392619, 48.83963191743432], [2.309336656118941, 48.83963639515208], [2.309409968730439, 48.83976157618247], [2.309483130013664, 48.8398838081474], [2.3095564419745402, 48.84000898815312], [2.309629603948546, 48.84013122000141], [2.30970291797153, 48.840256399897505], [2.309776079262087, 48.84037863252057], [2.309849393984872, 48.84050381229913], [2.309922555978028, 48.84062604390626], [2.309995871400722, 48.8407512235673], [2.310069035447124, 48.84087345506561], [2.310142350207089, 48.84099863460131], [2.310215514932404, 48.841120866882235], [2.310288831754746, 48.84124604630832], [2.310361995820336, 48.84136827756537], [2.310367077716811, 48.84137870624886], [2.310383898754279, 48.84138114067643], [2.310591390283558, 48.841381041558904], [2.310789024828936, 48.841380867304174], [2.3109866607354492, 48.84138069273076], [2.311194150899331, 48.84138059255989], [2.31139178679156, 48.841380418216495], [2.311599276953567, 48.841380317342974], [2.311796912855268, 48.84138014143096], [2.312004403015385, 48.84138003985473], [2.312008932269114, 48.84137662042737], [2.31200546374962, 48.84135810588895], [2.311883822784573, 48.841263805474355], [2.31177258977566, 48.841178135777916], [2.311661357132309, 48.84109246597145], [2.311539717421678, 48.84099816428519], [2.311539585222516, 48.840998063694514], [2.31140705518808, 48.84089850893474], [2.311283248352996, 48.84080536097149], [2.3111594405861062, 48.84071221376375], [2.311026913366944, 48.8406126585652], [2.310903106515897, 48.84051951107612], [2.310770578925886, 48.840419954669215], [2.310646774353108, 48.840326806906596], [2.310514247730695, 48.840227251097886], [2.310390444085637, 48.84013410215461], [2.310257918442908, 48.840034546044734], [2.310134114339348, 48.839941397711556], [2.310010756335429, 48.83985410670375], [2.309886953114075, 48.83976095720041], [2.30976359458872, 48.83967366591577], [2.309639792225756, 48.8395805170409], [2.309516435903789, 48.839493225495126], [2.309518099497762, 48.839479958611115], [2.309694069274847, 48.83939075671231], [2.30986374264035, 48.83930709341437], [2.310039711230295, 48.83921789189261], [2.310209383478282, 48.83913422809145], [2.31038534954271, 48.83904502514031], [2.310555022035578, 48.83896136084383], [2.310559249120111, 48.838957910043796], [2.310651421558759, 48.83882546228526], [2.3107459631776113, 48.83869587549838], [2.31083813467834, 48.83856342756486], [2.310932675357719, 48.83843384060005], [2.31102484590886, 48.83830139339093], [2.311119385648677, 48.838171806248184], [2.3111367084837102, 48.83815186624728], [2.311114891396177, 48.838139090963445], [2.311039976234658, 48.83803606115707], [2.310948640536464, 48.837907826286546], [2.310929268593706, 48.837881183270554], [2.31090723035396, 48.83787041136712], [2.310885000730503, 48.837877928850126], [2.310659568409043, 48.83788660932631], [2.310445502084648, 48.83789308668835], [2.310220069624547, 48.83790176633613], [2.310006001832829, 48.83790824200439], [2.3097919353383842, 48.8379147181967], [2.3095665026759082, 48.83792339661263], [2.309552816892712, 48.83791732691077], [2.309492372407195, 48.837800556297616], [2.30945035100284, 48.837680608397086], [2.309436189172624, 48.8376736608443], [2.309237279958649, 48.83768225162553], [2.309052201706585, 48.83768841272606], [2.308853292373032, 48.83769700286873], [2.308668214023105, 48.83770316337506], [2.308469305932348, 48.837711752886904], [2.308284227484771, 48.837717912799064], [2.30809914899345, 48.83772407242482], [2.307900239366771, 48.8377326609824], [2.307864935850447, 48.83774609117021]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 84, "zemmour_eric": 96.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-40", "circ_bv": "12", "num_bureau": 40, "roussel_fabien": 29.0, "nb_emargement": 1137.0, "nb_procuration": 65.0, "nb_vote_blanc": 12.0, "jadot_yannick": 53.0, "le_pen_marine": 99.0, "nb_exprime": 1120.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 6, "nb_inscrit": 1479.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "58", "geo_point_2d": [48.83920334074951, 2.3097722215954746], "melenchon_jean_luc": 321.0, "poutou_philippe": 9.0, "macron_emmanuel": 376.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323469218042102, 48.83623268930025], [2.323438655589936, 48.83621712910721], [2.323473283663984, 48.83613200709482], [2.323515001383203, 48.836028106734986], [2.323566879754414, 48.83590057888851], [2.323608597101858, 48.83579667847454], [2.323660475013658, 48.83566915056108], [2.32370219198933, 48.83556525009294], [2.323689211976895, 48.835553953452326], [2.323531650482885, 48.83555250664492], [2.32338500966249, 48.83555233555719], [2.323227446819609, 48.83555088834132], [2.323102317733762, 48.835550742388186], [2.323080807355294, 48.83555071778764], [2.323072580609669, 48.83555244748704], [2.322896226849806, 48.83563749121549], [2.322722758447439, 48.835723343364315], [2.322546402188148, 48.835808385657], [2.322372932640809, 48.83589423728537], [2.322196575232612, 48.835979279049276], [2.322023104528803, 48.8360651310565], [2.322005939952459, 48.83606469020476], [2.321866169086859, 48.83598361014503], [2.321724242106797, 48.83590220650481], [2.321584472115048, 48.83582112610412], [2.321442546017304, 48.835739722117815], [2.321302776899402, 48.83565864137623], [2.321160851695683, 48.83557723614459], [2.321021083451625, 48.83549615506201], [2.320879160480709, 48.835414750391344], [2.320739391748182, 48.835333668960146], [2.320597469671389, 48.8352522630441], [2.320556070789801, 48.83522824760564], [2.32054195460175, 48.83520435925692], [2.3205275425975, 48.83520285188336], [2.320429173687833, 48.83514578642427], [2.320365194539461, 48.83511198247346], [2.320352164391192, 48.83509111586307], [2.320315302000712, 48.83509513614223], [2.320300828036059, 48.83509598024553], [2.320297154594797, 48.835110644309616], [2.320175263174702, 48.83519879509765], [2.320051114828965, 48.835288961908894], [2.319929221213524, 48.83537711242439], [2.319805072005665, 48.835467279865235], [2.319683178919473, 48.83555543012367], [2.31955902887316, 48.83564559639546], [2.319437133591599, 48.83573374638138], [2.319312982694989, 48.83582391238338], [2.319191086580358, 48.835912062104526], [2.319066934821695, 48.836002228736106], [2.319069585671011, 48.83601581533471], [2.319233262602507, 48.83608613796909], [2.319394443406563, 48.83615567540856], [2.319558121203745, 48.83622599848891], [2.319719304235864, 48.83629553548974], [2.319882982910483, 48.83636585811674], [2.320044165446219, 48.83643539466335], [2.320056888373835, 48.836446616484054], [2.320070844394289, 48.83644655011849], [2.320232028792381, 48.83651608641468], [2.320402577243106, 48.83659055207629], [2.320563761155063, 48.836660088808095], [2.32073431191309, 48.83673455399488], [2.320895496724494, 48.83680408937136], [2.32106604706535, 48.83687855406788], [2.321227234115208, 48.83694808989545], [2.321397785401135, 48.837022554109325], [2.321558971988289, 48.8370920885739], [2.321729525581533, 48.83716655231294], [2.32172963124629, 48.83716659877998], [2.321873209809998, 48.837229812020254], [2.322043762940533, 48.83730427529435], [2.32218734226453, 48.83736748814984], [2.322357896294198, 48.837441950966834], [2.322501476378385, 48.837505163437434], [2.32267203130739, 48.83757962579741], [2.322815612151668, 48.837642837883166], [2.32289451568672, 48.837670692833385], [2.322906217586405, 48.83766031739623], [2.322936580730002, 48.83758817098082], [2.322965544490756, 48.83751697446126], [2.322981006320095, 48.83750263968826], [2.32298339746375, 48.8374876346527], [2.323006313647406, 48.837431303741916], [2.32305512999101, 48.837305393086496], [2.323107010758576, 48.83717786558515], [2.323155825259243, 48.837051954852384], [2.323207705528201, 48.836924427278426], [2.323256519548295, 48.83679851647605], [2.323308399318551, 48.83667098882954], [2.323357214220414, 48.83654507796523], [2.323409093492176, 48.836417550246104], [2.323457906551141, 48.83629163930445], [2.323475157276775, 48.83624923443261], [2.323469218042102, 48.83623268930025]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 74, "zemmour_eric": 85.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-16", "circ_bv": "11", "num_bureau": 16, "roussel_fabien": 20.0, "nb_emargement": 1175.0, "nb_procuration": 54.0, "nb_vote_blanc": 11.0, "jadot_yannick": 84.0, "le_pen_marine": 80.0, "nb_exprime": 1159.0, "nb_vote_nul": 6.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1492.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1176, "quartier_bv": "56", "geo_point_2d": [48.83629903726275, 2.321609454890086], "melenchon_jean_luc": 378.0, "poutou_philippe": 12.0, "macron_emmanuel": 373.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.322263719093833, 48.891902436302416], [2.322273773222733, 48.891894701451854], [2.3224581845862, 48.891835812183416], [2.322643106365953, 48.89177676004156], [2.322827516905674, 48.89171786929878], [2.323012436483894, 48.89165881657247], [2.323196847551835, 48.891599925262305], [2.3233817662924, 48.89154087195938], [2.323566175161111, 48.891481980066374], [2.323751094427688, 48.89142292619448], [2.323935502449262, 48.89136403462566], [2.324120419525986, 48.89130497927012], [2.324304826712107, 48.891246087126255], [2.324489744314826, 48.891187031201724], [2.324674150665489, 48.89112813848278], [2.324859066066672, 48.89106908197389], [2.324866449401928, 48.891061861547236], [2.324860011253403, 48.891050671810724], [2.324740330825724, 48.89095852295245], [2.324621926881081, 48.89086735783194], [2.324502247295998, 48.89077520872031], [2.324383844185061, 48.89068404334913], [2.324264165442671, 48.890591893984165], [2.324145763165431, 48.89050072836233], [2.324026085265829, 48.89040857874404], [2.323907683822281, 48.89031741287162], [2.323788005401518, 48.89022526299223], [2.323669606155392, 48.89013409687688], [2.323544508466153, 48.89003777292669], [2.323419386949969, 48.889941428914916], [2.323294288822768, 48.88984510467875], [2.323169168220947, 48.88974876128788], [2.323044072383234, 48.88965243678108], [2.322918952719042, 48.8895560922126], [2.322793857806979, 48.88945976742749], [2.322668737693305, 48.8893634234722], [2.322652224423197, 48.88935056410989], [2.322631707386777, 48.889360534003096], [2.322562781045418, 48.88939902288719], [2.3224348975686953, 48.88947043345305], [2.322276589927207, 48.88955883444523], [2.322148705653789, 48.88963024559433], [2.321990397052258, 48.88971864529606], [2.321862511993846, 48.88979005612905], [2.321861585385274, 48.88979062465199], [2.321742241546253, 48.88987093040499], [2.321585128311572, 48.88997664927289], [2.321465783619809, 48.89005695473674], [2.321308670626256, 48.89016267323172], [2.321189325081746, 48.8902429784064], [2.321032209590117, 48.89034869741227], [2.320912863192851, 48.89042900229778], [2.320893079506087, 48.89043559727655], [2.32089552482594, 48.89044845982385], [2.320896230992245, 48.8904494234102], [2.320928656516103, 48.89047948922598], [2.320929483945869, 48.89048035727188], [2.321031342447942, 48.89060041939275], [2.321128589570361, 48.890716668204355], [2.321230448993715, 48.890836730129976], [2.321327697013733, 48.89095297785562], [2.321429557346863, 48.89107304048526], [2.321526807616527, 48.8911892880319], [2.321628667507304, 48.89130935045856], [2.321725918662769, 48.89142559781849], [2.321827779474959, 48.89154566004993], [2.321925031516437, 48.89166190722305], [2.322026893261762, 48.891781968360036], [2.322124146177456, 48.89189821624565], [2.322119002657058, 48.8919154271939], [2.322148956945161, 48.89192235429027], [2.322157400467331, 48.89192225999296], [2.322202641209596, 48.89191198227939], [2.322248552201005, 48.89190155275901], [2.322263719093833, 48.891902436302416]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 83, "zemmour_eric": 73.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-33", "circ_bv": "03", "num_bureau": 33, "roussel_fabien": 16.0, "nb_emargement": 1200.0, "nb_procuration": 106.0, "nb_vote_blanc": 8.0, "jadot_yannick": 136.0, "le_pen_marine": 47.0, "nb_exprime": 1192.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1478.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1200, "quartier_bv": "68", "geo_point_2d": [48.8906968445971, 2.322719561729936], "melenchon_jean_luc": 336.0, "poutou_philippe": 6.0, "macron_emmanuel": 429.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355771192225159, 48.868973609020735], [2.355786990529972, 48.86896725207449], [2.355875121817454, 48.8689468868639], [2.356020728065027, 48.868914369569985], [2.356225317685882, 48.86886709281304], [2.35637092349171, 48.86883457509073], [2.356372412936472, 48.86883429171364], [2.356578158848776, 48.868803497395334], [2.356784544475372, 48.86877298585662], [2.356990289902003, 48.86874219082818], [2.35719667369212, 48.868711677670554], [2.357402418632963, 48.86868088193199], [2.357608803290858, 48.86865036896865], [2.357814547745907, 48.868619572519954], [2.358020930556413, 48.86858905883699], [2.3582266745255582, 48.86855826167818], [2.358433056862821, 48.8685277463836], [2.358638800346251, 48.86849694851466], [2.358845183551177, 48.8684664334144], [2.358848069092037, 48.86846536156837], [2.358831230292475, 48.86841497212639], [2.35879840470472, 48.86829448873313], [2.358765111066268, 48.86817228326898], [2.358732285773296, 48.86805180073039], [2.3586989910818, 48.86792959521375], [2.35866616610575, 48.86780911173132], [2.358632873087732, 48.867686906176786], [2.358600048406453, 48.86756642354903], [2.358566754335396, 48.86744421794199], [2.358569102169098, 48.86743455540566], [2.358556677900856, 48.86742735434252], [2.358440555080827, 48.867321995497434], [2.35832429253926, 48.867216508071515], [2.358208169296093, 48.86711114897359], [2.358091907684482, 48.867005662201095], [2.3580814170567352, 48.86700196450053], [2.357897541622617, 48.866997197342606], [2.357716404015889, 48.86699250125281], [2.357532528648579, 48.86698773353408], [2.357351391107665, 48.866983036891824], [2.357170253599414, 48.86697833997539], [2.35698637833208, 48.866973571417624], [2.356983189134928, 48.86697373595084], [2.35677977177119, 48.86700037234069], [2.356576823910027, 48.86702694615664], [2.356373406141845, 48.8670535809553], [2.356170456491848, 48.867080154972896], [2.355967039671264, 48.86710678908695], [2.3557640896178063, 48.86713336151493], [2.355561140709318, 48.86715993450477], [2.355357721902547, 48.867186567574045], [2.355154771227483, 48.86721313896692], [2.354951353357206, 48.867239772250876], [2.354748402267588, 48.867266342953414], [2.3545449826298013, 48.86729297463882], [2.354542584382486, 48.86729344375291], [2.354351926628568, 48.86734363565206], [2.354161377902672, 48.867393799955885], [2.353970719403117, 48.867443992142576], [2.353780168591052, 48.86749415492835], [2.353589510719954, 48.86754434651055], [2.353398959173826, 48.8675945086849], [2.353312119007659, 48.86761518574177], [2.353315271908598, 48.86762475738783], [2.353353935230823, 48.8676934179064], [2.353416686628849, 48.86781129552334], [2.353486405770137, 48.86793510411764], [2.3535491577590593, 48.86805298163932], [2.353618877549818, 48.8681767892301], [2.353681630129646, 48.86829466665659], [2.3537513505475642, 48.86841847504245], [2.353814103718306, 48.86853635237368], [2.353883824774552, 48.8686601606553], [2.353946578536217, 48.86877803789138], [2.354016300230799, 48.868901846068766], [2.354079054583393, 48.86901972320956], [2.354148778290661, 48.86914353039082], [2.354211531871001, 48.869261407429036], [2.354249265539085, 48.8692940736129], [2.3543057469848, 48.86931056285641], [2.354486763132481, 48.86926881605389], [2.35469135553758, 48.869221541934074], [2.354872369692448, 48.86917979543697], [2.355076961398066, 48.86913252065424], [2.355257976308882, 48.8690907726787], [2.355462567314905, 48.86904349723304], [2.355643580233017, 48.86900174956294], [2.355760039228591, 48.86897483864494], [2.355771192225159, 48.868973609020735]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 47, "zemmour_eric": 56.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "3-13", "circ_bv": "05", "num_bureau": 13, "roussel_fabien": 19.0, "nb_emargement": 1187.0, "nb_procuration": 85.0, "nb_vote_blanc": 13.0, "jadot_yannick": 111.0, "le_pen_marine": 57.0, "nb_exprime": 1171.0, "nb_vote_nul": 3.0, "arr_bv": "03", "arthaud_nathalie": 0, "nb_inscrit": 1558.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1187, "quartier_bv": "09", "geo_point_2d": [48.868019418233054, 2.3560801940124056], "melenchon_jean_luc": 384.0, "poutou_philippe": 6.0, "macron_emmanuel": 444.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.342492731636047, 48.874056518122714], [2.342503461284631, 48.87404098343801], [2.342643705174379, 48.873953569991855], [2.342784117919023, 48.87386948485483], [2.342924360887344, 48.87378207016698], [2.343064772716595, 48.87369798468769], [2.343069026221735, 48.87369292317323], [2.3431059477752543, 48.873557912994336], [2.343145991900864, 48.87341950063898], [2.343182913049734, 48.87328449130219], [2.343222955397222, 48.87314607887934], [2.343259877516086, 48.87301106949286], [2.343299919448965, 48.872872657009964], [2.343300080703373, 48.87287187007388], [2.343316833111593, 48.87274960872935], [2.343333326923853, 48.87262741430052], [2.343350079175415, 48.87250515292427], [2.343366572820939, 48.872382959363065], [2.343383324915846, 48.87226069795514], [2.343399818417409, 48.872138503463006], [2.343416570344328, 48.87201624292261], [2.343433063690395, 48.87189404839891], [2.343441329852181, 48.871886563569646], [2.343631893198034, 48.871833376702114], [2.343818268435072, 48.871779289715654], [2.344008830992256, 48.87172610314215], [2.344195205465388, 48.87167201466424], [2.344385767245335, 48.871618827485484], [2.344572139568655, 48.87156473930725], [2.344758512868176, 48.87151065084368], [2.344949073493809, 48.8714574618611], [2.345135446018089, 48.87140337280537], [2.345326005866366, 48.87135018321755], [2.345512376252155, 48.87129609356228], [2.345702935323175, 48.87124290336922], [2.345705259137083, 48.871242411542134], [2.34590669009354, 48.871211597572064], [2.346116041656602, 48.87118056662349], [2.346317472119509, 48.871149752859736], [2.346526823200578, 48.87111872029169], [2.346728253181423, 48.871087905834926], [2.346937603769195, 48.87105687254672], [2.347139033267764, 48.87102605739695], [2.347348384714201, 48.870995024295254], [2.347549812378718, 48.870964207545825], [2.347759163331743, 48.870933173723955], [2.347782763634948, 48.87094601359349], [2.34781872909649, 48.87093032991631], [2.347879690874669, 48.8709037475127], [2.347873974606949, 48.87089045650115], [2.347873961753634, 48.870832136031225], [2.347873597791883, 48.87078476400989], [2.347865697833232, 48.87071711127966], [2.347800357715543, 48.87071459235845], [2.347604704062284, 48.87074568202462], [2.347411166000703, 48.87077709947342], [2.347215511880377, 48.87080818850162], [2.347021971977312, 48.87083960621121], [2.346826317389922, 48.87087069460155], [2.346632778394393, 48.87090211078826], [2.346437123339951, 48.870933198540655], [2.346243582503039, 48.870964614988104], [2.346047928355976, 48.87099570121076], [2.345854387052002, 48.871027117027154], [2.345658731063477, 48.871058203503694], [2.345465190667085, 48.871089617797224], [2.345269534211532, 48.87112070363585], [2.345075991973756, 48.871152118190125], [2.344880335051077, 48.87118320339082], [2.344686793720916, 48.87121461642215], [2.344491136331225, 48.87124570098494], [2.344297594522822, 48.87127711428452], [2.344101936677448, 48.871308197310086], [2.343908393038877, 48.87133960997112], [2.343712734715181, 48.87137069325804], [2.343519191984273, 48.871402104396196], [2.343323533193588, 48.871433187045156], [2.343129989984442, 48.871464598451496], [2.343071572268657, 48.87147071173339], [2.343058791048957, 48.871478500918165], [2.342865246159787, 48.87150991098841], [2.342684601243984, 48.871539989515576], [2.34249105726396, 48.871571398986525], [2.342310410555592, 48.871601476939816], [2.34211686612147, 48.871632885803955], [2.341936218983793, 48.8716629631909], [2.3417426740955802, 48.87169437144828], [2.341562026528603, 48.87172444826878], [2.341368481186407, 48.871755855919375], [2.341187834553292, 48.871785932181], [2.341007186359787, 48.87181600726239], [2.340813640331359, 48.87184741491257], [2.340632991708574, 48.87187748942755], [2.340439445226073, 48.87190889647092], [2.340258796174017, 48.87193897041953], [2.340065249237451, 48.8719703768561], [2.340058669922661, 48.871970365763715], [2.340033362352637, 48.87196745896276], [2.3400147526176083, 48.87197005797217], [2.339811478343835, 48.87193636201246], [2.339628445872503, 48.87190480629075], [2.339425172103276, 48.87187110967303], [2.339242140095263, 48.871839553358804], [2.339038866830592, 48.87180585608308], [2.338855835285904, 48.87177429917623], [2.338672805314827, 48.87174274289552], [2.338469531433019, 48.87170904464246], [2.338286501936691, 48.87167748686989], [2.338083228559459, 48.87164378795882], [2.337900199526473, 48.871612229593744], [2.337696926653825, 48.87157853002464], [2.337513898072748, 48.87154697196629], [2.337310625704688, 48.87151327173923], [2.337217756727466, 48.87149725831286], [2.337151717203031, 48.87148794958249], [2.337118391471848, 48.87155806287769], [2.33716712105241, 48.87168906804402], [2.3372145183908, 48.871816149170186], [2.3372632484545672, 48.87194715426679], [2.337310646273766, 48.872074234425895], [2.3373593768207472, 48.87220523945276], [2.337406773734605, 48.87233232043584], [2.33745550612808, 48.8724633254005], [2.33750290352275, 48.87259040541655], [2.337551635036279, 48.872721410303924], [2.33759903425207, 48.87284849115901], [2.337647766248834, 48.87297949597662], [2.337695165945454, 48.87310657586469], [2.33774389842546, 48.87323758061253], [2.337791297216849, 48.873364661324516], [2.337838697614157, 48.873491741111366], [2.337887430815523, 48.87362274575507], [2.337934831670808, 48.87374982637346], [2.337983565355435, 48.8738808309474], [2.338030965328354, 48.87400791059116], [2.33807970085946, 48.87413891510286], [2.338097118118049, 48.87415844701167], [2.338149243437723, 48.8741536116973], [2.338345524245061, 48.874149640706186], [2.338540814507068, 48.874144650365686], [2.338737095250881, 48.874140678732445], [2.338932385430252, 48.874135688652416], [2.339128666110433, 48.874131716377086], [2.339323956230191, 48.8741267247589], [2.339520236846624, 48.874122751841526], [2.339715526895242, 48.87411775958442], [2.339911807448122, 48.874113786025006], [2.340107097414095, 48.87410879402834], [2.340303377903314, 48.87410481982682], [2.340498667809625, 48.874099826292074], [2.340694948235069, 48.87409585144842], [2.340890238070209, 48.874090857274815], [2.341085527856524, 48.874085863681834], [2.341281808184558, 48.874081887875946], [2.34147709791107, 48.87407689274484], [2.341673378175508, 48.87407291629681], [2.341868667830825, 48.87406792052689], [2.342064948031453, 48.874063943436816], [2.342260237604212, 48.8740589479273], [2.342456517741126, 48.87405497019513], [2.342492731636047, 48.874056518122714]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 70, "zemmour_eric": 88.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "9-1", "circ_bv": "01", "num_bureau": 1, "roussel_fabien": 17.0, "nb_emargement": 1087.0, "nb_procuration": 80.0, "nb_vote_blanc": 8.0, "jadot_yannick": 94.0, "le_pen_marine": 51.0, "nb_exprime": 1077.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 7, "nb_inscrit": 1347.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1087, "quartier_bv": "35", "geo_point_2d": [48.87271461110289, 2.3408242617606714], "melenchon_jean_luc": 221.0, "poutou_philippe": 6.0, "macron_emmanuel": 475.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.384971230562931, 48.86512653144118], [2.384975656722649, 48.86511740878503], [2.385055338806794, 48.86504784497906], [2.3851832515565903, 48.86493323086417], [2.385303583642242, 48.86482817723986], [2.38543149530653, 48.86471356283687], [2.3855518263842, 48.86460850894215], [2.385679736973595, 48.864493893351856], [2.385800067043392, 48.864388839186695], [2.385927976536594, 48.86427422420767], [2.38604830559843, 48.86416916977206], [2.386172040984569, 48.864063389822306], [2.386292369067175, 48.86395833512131], [2.386416103446412, 48.86385255579839], [2.38653643055, 48.86374750083202], [2.386660163943531, 48.86364172033731], [2.386780490067907, 48.863536665105634], [2.386904222454564, 48.863430885237754], [2.387024547599943, 48.863325829740674], [2.387148279000905, 48.86322004870109], [2.387268603167092, 48.86311499293862], [2.387269590519347, 48.863114025804244], [2.38736476858499, 48.86300624029148], [2.387426484214429, 48.86292380137418], [2.38743790382218, 48.86290180703948], [2.387383845758343, 48.86288331054663], [2.387311049895633, 48.862864997797516], [2.387310572939277, 48.8628648712464], [2.387135964213062, 48.86281721317277], [2.386910141203679, 48.86275385886185], [2.386772808369797, 48.862716373912015], [2.386751016002119, 48.86271388618094], [2.386735680614811, 48.86273768065977], [2.386686382872667, 48.862850484441076], [2.386631044965513, 48.862969200092586], [2.386621813049646, 48.86297519366303], [2.386427593893594, 48.86301235989734], [2.38623149477598, 48.86305033367789], [2.38603727506126, 48.86308749927625], [2.385841175376319, 48.8631254724147], [2.385646955092535, 48.863162638276414], [2.385450854840272, 48.863200610772715], [2.385256634008436, 48.863237775099165], [2.385060534551902, 48.86327574696038], [2.38486631179858, 48.86331291064389], [2.384670211774742, 48.863350881862964], [2.38447598846288, 48.863388044910515], [2.384279887871644, 48.863426015487455], [2.384085665364295, 48.86346317790609], [2.383889562842826, 48.86350114783383], [2.383690462738442, 48.86353967848247], [2.383494359640981, 48.863577647760074], [2.383295258962497, 48.86361617684929], [2.383099155289157, 48.86365414547672], [2.382900054015393, 48.86369267480511], [2.382703951129029, 48.86373064278934], [2.382504849281397, 48.86376917055837], [2.382308744456015, 48.86380713788538], [2.382109642013105, 48.86384566589354], [2.38191353662243, 48.863883631671094], [2.381714433594807, 48.86392215901914], [2.381518327617511, 48.8639601250458], [2.381322222717449, 48.86399809075684], [2.381123118825883, 48.864036616217916], [2.381101028725144, 48.86403988890961], [2.381097716616083, 48.8640508806331], [2.381105504112928, 48.86407268319364], [2.381110405582257, 48.86408590549149], [2.381114302503306, 48.86409694168888], [2.381129340802747, 48.864100356913276], [2.381293256616957, 48.86415807073589], [2.381453608819271, 48.86421481530654], [2.381613960007835, 48.864271559652316], [2.381777876886912, 48.8643292737016], [2.381938230143939, 48.864386017614095], [2.382102147753049, 48.86444373031399], [2.382262501715675, 48.86450047378618], [2.382426420044143, 48.864558186036014], [2.382586774701605, 48.86461492996716], [2.382750692386356, 48.86467264175987], [2.382756583108505, 48.86468444092786], [2.38267168690746, 48.86480211361179], [2.38258761739183, 48.8649187814283], [2.382502720427244, 48.86503645396747], [2.382418650155148, 48.86515312164063], [2.382333753790005, 48.86527079404204], [2.382249681387576, 48.865387462464064], [2.382164784269542, 48.86550513382145], [2.382080712473622, 48.865621802107086], [2.381995813218359, 48.86573947421196], [2.381911740676408, 48.86585614145494], [2.381826840657566, 48.865973813415046], [2.3817427673591123, 48.866090480514615], [2.38165786657658, 48.86620815232994], [2.381573792521512, 48.866324819286135], [2.381488890975484, 48.86644249095663], [2.381404816153014, 48.86655915866871], [2.381319913843376, 48.86667683019445], [2.381235838275053, 48.866793496863856], [2.3812262057180202, 48.86680958302695], [2.381228421569889, 48.866812281711375], [2.381344922964328, 48.866846137062936], [2.381546532959392, 48.86690490675083], [2.381722164020294, 48.866955943370506], [2.381923773502767, 48.86701471241009], [2.38209940529279, 48.86706574937044], [2.382301016988948, 48.86712451777576], [2.382476648166282, 48.86717555327117], [2.382678260712979, 48.8672343210352], [2.382853892630092, 48.86728535597195], [2.382904523226774, 48.867316333075394], [2.382918625475151, 48.867309439498875], [2.383003845645865, 48.86724447256515], [2.383084735239525, 48.867190971412754], [2.383087413060359, 48.8671878222373], [2.38310649866626, 48.86714839013013], [2.383125605275758, 48.86710879354775], [2.383143261659377, 48.86709289068887], [2.383135786461458, 48.867073845514014], [2.383174738870338, 48.86699311647035], [2.383226317392676, 48.86689221282835], [2.383284377253832, 48.86677188712915], [2.383335955334018, 48.86667098431908], [2.383394013332244, 48.86655065853559], [2.383445590981139, 48.86644975565809], [2.3834477044529, 48.86644706132981], [2.383568044898321, 48.86634200960115], [2.383692919080916, 48.866234167953095], [2.383813257177042, 48.86612911595069], [2.383938130341701, 48.86602127402607], [2.384058467451462, 48.86591622175689], [2.384183340950672, 48.86580838046199], [2.384303677074179, 48.865703327926035], [2.384428548202997, 48.865595485448296], [2.384548883340361, 48.86549043264562], [2.384673753451273, 48.86538258989123], [2.384794088965397, 48.86527753682885], [2.384918958047794, 48.86516969469722], [2.384959609081333, 48.865134205155286], [2.384971230562931, 48.86512653144118]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 49, "zemmour_eric": 78.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "11-33", "circ_bv": "06", "num_bureau": 33, "roussel_fabien": 16.0, "nb_emargement": 1541.0, "nb_procuration": 73.0, "nb_vote_blanc": 13.0, "jadot_yannick": 160.0, "le_pen_marine": 70.0, "nb_exprime": 1520.0, "nb_vote_nul": 8.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1908.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1541, "quartier_bv": "42", "geo_point_2d": [48.86482946158777, 2.3838331267662616], "melenchon_jean_luc": 617.0, "poutou_philippe": 6.0, "macron_emmanuel": 437.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347910556201139, 48.872566750824326], [2.347907914398134, 48.87255898952982], [2.347907953374301, 48.872523750956944], [2.347907274934809, 48.87239270462045], [2.347907416475697, 48.872264114333156], [2.347906738040834, 48.8721330679659], [2.347906879593602, 48.87200447674911], [2.347906201163471, 48.871873430351], [2.347906342716858, 48.87174483910397], [2.34790566429146, 48.871613792675085], [2.347905805834208, 48.871485202297094], [2.34790658774028, 48.87148383776209], [2.347900842534812, 48.87146272504597], [2.347899977294853, 48.87135019586744], [2.347900118862182, 48.871221604559516], [2.347899253639049, 48.87110907445713], [2.347899396559387, 48.87098048402784], [2.347898895315569, 48.87091532681784], [2.347879690874669, 48.8709037475127], [2.34781872909649, 48.87093032991631], [2.347782763634948, 48.87094601359349], [2.347784084017242, 48.87095804316432], [2.347717096251519, 48.8709883312362], [2.347688357527562, 48.87100097402719], [2.347684000874501, 48.871004092578204], [2.347585030127061, 48.87112175340848], [2.347486505866924, 48.87123997686946], [2.347387534225089, 48.871357637511316], [2.347289009070643, 48.87147586078449], [2.347190036534503, 48.87159352123793], [2.34709150912238, 48.87171174431586], [2.34699253569192, 48.87182940458093], [2.346894008748619, 48.87194762747847], [2.346795034423832, 48.87206528755506], [2.346696506585988, 48.87218351026479], [2.346687754525227, 48.87218792052039], [2.346526767853447, 48.87221351919584], [2.346366397831777, 48.87223798515713], [2.346205410847337, 48.87226358339922], [2.346045039168607, 48.87228804802214], [2.345884051871513, 48.87231364583085], [2.345723681251089, 48.87233811002956], [2.345723425814902, 48.87233814910361], [2.345587088785503, 48.872357999571975], [2.345440519286798, 48.8723778865629], [2.345304182045576, 48.87239773670829], [2.345157612327043, 48.87241762335209], [2.345146830320615, 48.8724275443311], [2.34516963610598, 48.872548264148975], [2.345195042303979, 48.87267849609073], [2.345217849685446, 48.87279921498019], [2.345243256126396, 48.872929446882125], [2.345266062354993, 48.873050166626754], [2.345291469038892, 48.87318039848886], [2.345314275489109, 48.87330111819691], [2.345339682415961, 48.87343135001916], [2.345362489099001, 48.87355206879125], [2.345387897632121, 48.87368230058114], [2.345410704525588, 48.87380302021589], [2.345436111938362, 48.87393325195845], [2.3454589190647592, 48.87405397065731], [2.345474209003935, 48.87413234069948], [2.345460678701642, 48.874144601131285], [2.345464616556069, 48.8741649674771], [2.345474734269417, 48.87421682913692], [2.345508896555298, 48.874356272031726], [2.34553430583549, 48.87448650459486], [2.34556846845773, 48.87462594743856], [2.345593876666494, 48.874756179050515], [2.345579384674288, 48.874766297407405], [2.3454999313488623, 48.87476255975084], [2.345424079430043, 48.87476104960726], [2.345410063266328, 48.87477062284943], [2.345423846865039, 48.87491038863821], [2.345438101785324, 48.875046613597476], [2.345451884168964, 48.87518637934062], [2.345466140601464, 48.87532260426991], [2.345479923133273, 48.87546236997487], [2.345494179714651, 48.875598594866766], [2.345478336642737, 48.8756233335236], [2.345506803150533, 48.87564236443665], [2.345652317587782, 48.87565042747538], [2.345833121334265, 48.87566015180396], [2.346035222529507, 48.87567134930762], [2.346216027772175, 48.875681073964394], [2.346418129131019, 48.87569227082136], [2.346598933154441, 48.875701994892225], [2.346801036040035, 48.87571319110996], [2.346981840207564, 48.87572291460234], [2.346983877024882, 48.87572292661269], [2.347151877927111, 48.87571562841804], [2.347318631901794, 48.875708386142726], [2.347486631346853, 48.875701087470766], [2.3476533852283312, 48.87569384472906], [2.347821385942935, 48.87568654559464], [2.347988139731404, 48.875679302386544], [2.348001995257055, 48.87568548344511], [2.348068298912732, 48.87581935368092], [2.348129795110473, 48.875949763119515], [2.34819609943116, 48.876083633252456], [2.348257594908806, 48.87621404168748], [2.3483238998943072, 48.87634791171755], [2.348385397356209, 48.87647832096233], [2.348389974075188, 48.87648271124854], [2.348439682097648, 48.87650870729933], [2.348521644560923, 48.87655133760184], [2.348589513303225, 48.87655165657156], [2.348598154067966, 48.87652839192038], [2.348551272312413, 48.87643928696788], [2.348478185542601, 48.87630677773604], [2.348410943975258, 48.87617897500446], [2.348337857938993, 48.87604646475646], [2.348270617051945, 48.87591866191588], [2.348269911361221, 48.87591676407261], [2.348252199742758, 48.87582822785293], [2.348264600907194, 48.87581433228072], [2.34824794537053, 48.875789258048336], [2.348237955838888, 48.87573932918515], [2.3482147622352523, 48.87561351169811], [2.348187061370237, 48.87547504746581], [2.348163868007227, 48.87534922993877], [2.348136167418065, 48.87521076566155], [2.348112974306935, 48.8750849471952], [2.348085273993622, 48.87494648287301], [2.348062081111857, 48.874820665265936], [2.34803438107439, 48.874682200898846], [2.348011187070011, 48.874556383244354], [2.347983488671614, 48.87441791883969], [2.347960294919112, 48.87429210024595], [2.347932596796547, 48.87415363579636], [2.347909403273404, 48.87402781806188], [2.347909285838943, 48.874026634793495], [2.347909428753779, 48.87389804380466], [2.347909402355624, 48.87377992736307], [2.347909375968846, 48.87366181000957], [2.347909518882458, 48.873533218978295], [2.347914368107593, 48.87350982933587], [2.3479063849569393, 48.873501055974586], [2.347906526514294, 48.873372464917104], [2.347905822514049, 48.87322527362533], [2.347905964072044, 48.87309668253576], [2.347905260077115, 48.87294949120722], [2.347905401635748, 48.87282090008548], [2.347904696282853, 48.87267370871275], [2.347904800238378, 48.87258035523927], [2.347910556201139, 48.872566750824326]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 63, "zemmour_eric": 91.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "9-4", "circ_bv": "01", "num_bureau": 4, "roussel_fabien": 24.0, "nb_emargement": 1205.0, "nb_procuration": 99.0, "nb_vote_blanc": 4.0, "jadot_yannick": 109.0, "le_pen_marine": 47.0, "nb_exprime": 1200.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1469.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1206, "quartier_bv": "35", "geo_point_2d": [48.873803346025845, 2.346794771213288], "melenchon_jean_luc": 289.0, "poutou_philippe": 8.0, "macron_emmanuel": 524.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37515814260252, 48.8474018569537], [2.375129973872377, 48.84741134104261], [2.374976221031834, 48.84748946183154], [2.374819977000023, 48.84756665115923], [2.374666223236571, 48.84764477153887], [2.374509979653393, 48.84772195955878], [2.374356223593601, 48.847800080421315], [2.374199979085533, 48.84787726802562], [2.374046222102916, 48.847955388478915], [2.373889976670057, 48.84803257566763], [2.373870566812814, 48.848037070698986], [2.3738623961205603, 48.848048745648946], [2.37370615013563, 48.848125932591124], [2.373540170659489, 48.84820645353691], [2.373383922351001, 48.8482836409395], [2.373217943237336, 48.848364161434006], [2.373061693989553, 48.84844134750556], [2.372895712513065, 48.848521867534494], [2.372739463666901, 48.848599054080736], [2.37261512798118, 48.848659370376375], [2.372592042898785, 48.848679679983874], [2.372612911920654, 48.848699236187315], [2.372773376288203, 48.84878733750699], [2.372929008755622, 48.84887409751979], [2.373089474206708, 48.848962197502395], [2.373245106360032, 48.84904895708325], [2.373405572873221, 48.849137057527344], [2.373561206074916, 48.84922381668344], [2.373716841157497, 48.849310575637425], [2.373877309284589, 48.849398674528864], [2.374032944052976, 48.84948543305092], [2.374193413242097, 48.849573532403845], [2.374195485015654, 48.849574974113814], [2.37431977217519, 48.849683300283786], [2.374445367332765, 48.849794868128754], [2.374569656888087, 48.84990319492415], [2.3746952531213132, 48.85001476158545], [2.374819542357953, 48.850123088092744], [2.374945141008055, 48.85023465537611], [2.375069431299399, 48.85034298070317], [2.375195029651783, 48.850454547695065], [2.375319322338874, 48.85056287364751], [2.375444921767133, 48.85067443945572], [2.37546440746503, 48.85067608086223], [2.375600006957122, 48.85060401826873], [2.375737673552095, 48.850531373629806], [2.375873270916272, 48.85045931160943], [2.37601093674812, 48.85038666664657], [2.376146534731343, 48.85031460341501], [2.3762841997891, 48.85024195902763], [2.376305020331639, 48.85024512446743], [2.376386196366016, 48.85035793986968], [2.376463013633064, 48.85046651002152], [2.376544191717054, 48.85057932530122], [2.376621008266257, 48.85068789622222], [2.376702187047925, 48.85080071047295], [2.376779004252652, 48.85090928127095], [2.376785871484141, 48.85091370948319], [2.376902909997075, 48.850947645489065], [2.377023510488545, 48.850984015588324], [2.377073718639918, 48.85098237126769], [2.377114497433617, 48.85096615687693], [2.377041497820836, 48.85085292324678], [2.376971589086529, 48.85074654613743], [2.376898590102675, 48.85063331149845], [2.376828681943855, 48.850526935183936], [2.3767556835781702, 48.85041370043541], [2.376685776005683, 48.85030732401642], [2.376612778258159, 48.850194089158315], [2.376542871271997, 48.850087712634824], [2.376541774601488, 48.850084721963654], [2.376528367467317, 48.849949549304434], [2.376514964047588, 48.84981703333928], [2.376501555678386, 48.84968186153672], [2.376488152395686, 48.84954934553671], [2.376474745538345, 48.84941417280644], [2.37646134238191, 48.84928165767084], [2.376447934300306, 48.849146484897986], [2.376434531280896, 48.849013969727494], [2.376433556250862, 48.84901117934308], [2.376365372473517, 48.84890057830899], [2.376279049003836, 48.8487605528849], [2.376210865882425, 48.84864995173782], [2.376124543242951, 48.84850992617075], [2.376056359414711, 48.848399324903646], [2.376023994872653, 48.84835278533924], [2.376014106759669, 48.84832959154896], [2.376000218634306, 48.84832555565509], [2.375944663655571, 48.848245668414805], [2.375871532129378, 48.848140337511396], [2.375783612065786, 48.84801391054744], [2.37571048117946, 48.84790858042296], [2.375622561908343, 48.847782152415036], [2.375549431672848, 48.847676822170214], [2.375547246559028, 48.84767460734244], [2.375453839906446, 48.84760496917367], [2.37527493815336, 48.84747907316699], [2.375181532215016, 48.847409434773404], [2.37515814260252, 48.8474018569537]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 57, "zemmour_eric": 84.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "12-55", "circ_bv": "07", "num_bureau": 55, "roussel_fabien": 27.0, "nb_emargement": 1231.0, "nb_procuration": 67.0, "nb_vote_blanc": 6.0, "jadot_yannick": 98.0, "le_pen_marine": 58.0, "nb_exprime": 1218.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1529.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "48", "geo_point_2d": [48.84904669401789, 2.3750249194137436], "melenchon_jean_luc": 437.0, "poutou_philippe": 5.0, "macron_emmanuel": 384.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.362614196105643, 48.87426986784615], [2.362617400190825, 48.87427052703258], [2.362662736809342, 48.874260520493095], [2.362844153331884, 48.87421419648721], [2.363034437292676, 48.8741721975324], [2.363083470638375, 48.87415967707521], [2.363086560382039, 48.87416009821611], [2.363114903220145, 48.87415636118828], [2.363248784447805, 48.87412431241964], [2.3633811667781712, 48.87409050901936], [2.363515047672733, 48.87405845995104], [2.36369646272248, 48.87401213554431], [2.363697273827015, 48.87401192131722], [2.363796890066092, 48.873983194502074], [2.363867525081658, 48.873965156888524], [2.363882854394979, 48.87396531569389], [2.363901191705267, 48.8739600854724], [2.364011972582745, 48.87393179642631], [2.364173954810807, 48.87388812361216], [2.3641740833555343, 48.873888091918836], [2.364373212910058, 48.87383875696939], [2.364535195909102, 48.873795083669975], [2.364734323402701, 48.8737457481084], [2.364896305809715, 48.873702074316654], [2.364917623747751, 48.873692555530845], [2.365066817513068, 48.87360402132122], [2.365207962207072, 48.87352034471974], [2.365349105084277, 48.87343666793829], [2.365498297394301, 48.8733481322711], [2.365639439338437, 48.873264455134276], [2.365788630650644, 48.87317591999069], [2.365929773025014, 48.873092242505685], [2.366078963361413, 48.87300370608718], [2.3662201034394252, 48.872920028239584], [2.366369292778233, 48.87283149234471], [2.36651043328648, 48.87274781414894], [2.366659621638445, 48.8726592778784], [2.366660991631282, 48.87264684639991], [2.36661866897084, 48.872613229186726], [2.366579218352713, 48.87258313546839], [2.366572731669385, 48.8725595825841], [2.366498751946031, 48.87256309329988], [2.366292680441727, 48.87254877056716], [2.36609323715758, 48.87253527129915], [2.36589379396576, 48.87252177259801], [2.365687722791388, 48.87250744882327], [2.365488279822149, 48.87249394854688], [2.3652822102325493, 48.87247962408089], [2.365082767475057, 48.87246612312847], [2.364876696743782, 48.87245179795684], [2.364867497740746, 48.87244848635187], [2.364732409862968, 48.87233756111924], [2.364593467423383, 48.8722233632549], [2.36445838071291, 48.872112437690404], [2.364319439474605, 48.871998239484746], [2.364303799997521, 48.87199550338198], [2.364098580742298, 48.87204895815125], [2.363895279521402, 48.87210362067863], [2.363690059409996, 48.87215707564153], [2.363486757338408, 48.8722117374698], [2.363281536392793, 48.872265190827775], [2.363078233470523, 48.87231985195684], [2.363062339737745, 48.87231705678236], [2.362958612060154, 48.87222937787705], [2.362850692684856, 48.87213934098139], [2.362746965717424, 48.87205166187855], [2.362659174309372, 48.87197841915875], [2.362636465126662, 48.871963613854554], [2.36260511630382, 48.871982695451784], [2.362553992033922, 48.87210651741323], [2.362506415739662, 48.87222247554266], [2.362502248565158, 48.87222688618377], [2.362375929127857, 48.87229999860887], [2.3622491333822833, 48.87237323426719], [2.362122814598173, 48.87244634642273], [2.361996018129455, 48.872519582702544], [2.361869697271872, 48.87259269457401], [2.361742901465321, 48.872665929683954], [2.361738595029294, 48.872670682202155], [2.361696397893174, 48.872791841632385], [2.361651300751552, 48.872922341373354], [2.361609103208505, 48.873043500745155], [2.361564006993688, 48.87317400043076], [2.361544344987813, 48.87318119547786], [2.361554108671213, 48.8732060584584], [2.361555162322481, 48.873207300666316], [2.361658830096634, 48.873309624292716], [2.361764100460323, 48.873412040900114], [2.36186776905232, 48.87351436432667], [2.361973040240629, 48.873616780731304], [2.36207670965058, 48.87371910395786], [2.362181983026832, 48.87382152016709], [2.362285653254748, 48.87392384319374], [2.362390926092326, 48.87402625919289], [2.362494597138212, 48.87412858201961], [2.362599870800436, 48.87423099781602], [2.362614196105643, 48.87426986784615]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 29, "zemmour_eric": 46.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "10-7", "circ_bv": "05", "num_bureau": 7, "roussel_fabien": 15.0, "nb_emargement": 1093.0, "nb_procuration": 68.0, "nb_vote_blanc": 8.0, "jadot_yannick": 123.0, "le_pen_marine": 40.0, "nb_exprime": 1081.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1383.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1093, "quartier_bv": "39", "geo_point_2d": [48.87306251397065, 2.363724968029399], "melenchon_jean_luc": 428.0, "poutou_philippe": 5.0, "macron_emmanuel": 331.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.387149383019345, 48.84687186724564], [2.38718826036188, 48.846865814966385], [2.3872729505380432, 48.8467966134084], [2.387363247124739, 48.84671460848562], [2.387479203686519, 48.84661985878601], [2.387569498279913, 48.84653785368756], [2.387588807187404, 48.84653600092623], [2.38766399524069, 48.84657400674422], [2.387680195627695, 48.84658342857375], [2.387683956857477, 48.84659477071654], [2.387666440335381, 48.84661664423794], [2.387654613286641, 48.84665356342405], [2.387659964609421, 48.84666271388078], [2.387802417445031, 48.846731759783026], [2.387980516939452, 48.84681668522449], [2.388122969257911, 48.84688573072855], [2.38830106981144, 48.8469706547818], [2.388443524327522, 48.84703970080088], [2.388621625929606, 48.847124624365186], [2.388764081291364, 48.8471936699931], [2.388942182579381, 48.84727859306151], [2.389084638797156, 48.84734763739888], [2.389094970221532, 48.847360229864485], [2.389125698229576, 48.8473591123774], [2.389339076239308, 48.8473734725689], [2.389554897027945, 48.84738846809616], [2.389768275276234, 48.84740282752181], [2.38998409767246, 48.8474178222814], [2.390197476159194, 48.8474321809412], [2.390413297427424, 48.84744717581851], [2.39062667616301, 48.84746153281314], [2.390842499038913, 48.84747652692279], [2.390854921520137, 48.84747289382298], [2.39097293554364, 48.84736644799295], [2.391079393579389, 48.84726932889455], [2.391185849855632, 48.84717220968602], [2.3913038625117933, 48.84706576440015], [2.391410319316612, 48.846968644981075], [2.391528331063823, 48.84686219855502], [2.391634785671787, 48.846765078911574], [2.391752796499553, 48.84665863224467], [2.391859251625602, 48.84656151328994], [2.391977261533932, 48.84645506638217], [2.392043472024429, 48.8463946612683], [2.3920619875684013, 48.846391296433936], [2.392076147811773, 48.84637521955531], [2.392116390222961, 48.84633850457914], [2.392157259320956, 48.84628357092305], [2.392152209791943, 48.84627196426187], [2.391991019811084, 48.84620598055323], [2.391831418230399, 48.84614077094739], [2.39167023042396, 48.84607478680571], [2.39151062964654, 48.846009576764196], [2.391349441299938, 48.845943591276345], [2.391189841325683, 48.84587838079925], [2.391028655143094, 48.84581239577765], [2.390869055972001, 48.845747184864955], [2.3907078692387502, 48.845681199396495], [2.390548270870718, 48.845615988048145], [2.390387084960014, 48.84555000124044], [2.390227487384624, 48.84548479035579], [2.390066303648325, 48.84541880311508], [2.389906706886717, 48.84535359089554], [2.3897455225892412, 48.84528760410724], [2.389585926630794, 48.84522239145211], [2.38942474450781, 48.845156404230764], [2.389265149352521, 48.84509119114008], [2.3892393193734582, 48.84507270879246], [2.389210905142883, 48.845085215884005], [2.389163077437881, 48.84512377625289], [2.389054164734883, 48.84521275920028], [2.38892098147412, 48.84532013493556], [2.38881206794742, 48.845409117646874], [2.388678883675619, 48.84551649399304], [2.38856996933576, 48.84560547556897], [2.388436784063256, 48.845712851626715], [2.388327868889129, 48.84580183386591], [2.3883213688158262, 48.84580475861628], [2.38817268291458, 48.845835718626816], [2.388034124737508, 48.84586116324128], [2.387885438504699, 48.84589212289329], [2.387746881400016, 48.84591756718079], [2.387739361889018, 48.845921082955776], [2.387607453135935, 48.84604577811727], [2.387475017863252, 48.8461703490138], [2.387343107846665, 48.84629504385597], [2.387210671308786, 48.84641961443202], [2.387193007684599, 48.84642234973407], [2.386992292974878, 48.84635031998758], [2.386788259150737, 48.8462790049605], [2.386587545541917, 48.846206975425005], [2.3863835128328352, 48.84613565969854], [2.386366358227336, 48.8461381042995], [2.386268751819963, 48.846221378680845], [2.386184036094773, 48.84629028534512], [2.386156339769204, 48.84632016016127], [2.386184815138018, 48.84633428225943], [2.386340402018583, 48.846419574044226], [2.386499982455961, 48.846507605749714], [2.386655570359192, 48.84659289801071], [2.386815151859677, 48.84668092928209], [2.386970740806751, 48.846766220220665], [2.38713032335977, 48.84685425195729], [2.387149383019345, 48.84687186724564]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 75, "zemmour_eric": 81.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "12-14", "circ_bv": "08", "num_bureau": 14, "roussel_fabien": 21.0, "nb_emargement": 1096.0, "nb_procuration": 43.0, "nb_vote_blanc": 11.0, "jadot_yannick": 92.0, "le_pen_marine": 72.0, "nb_exprime": 1080.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1380.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1096, "quartier_bv": "46", "geo_point_2d": [48.846398098971704, 2.3895408019628532], "melenchon_jean_luc": 291.0, "poutou_philippe": 1.0, "macron_emmanuel": 394.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.357370736444245, 48.852774739702326], [2.357413417142282, 48.85282936723505], [2.357512218607296, 48.85294153457251], [2.357611207292082, 48.853053915966726], [2.357710009608619, 48.85316608311822], [2.357809000520308, 48.853278463434116], [2.357907802325599, 48.85339063039233], [2.358006794090445, 48.853503010521905], [2.358105596747371, 48.85361517729412], [2.358204589354306, 48.85372755813664], [2.358303394225468, 48.85383972473017], [2.358402386333967, 48.85395210447976], [2.358501192056689, 48.85406427088735], [2.3586001850071963, 48.85417665134985], [2.35869899158149, 48.85428881757146], [2.358797986759062, 48.85440119695564], [2.358896792822232, 48.85451336298388], [2.358995788841946, 48.854625743081044], [2.35909459576766, 48.85473790802401], [2.359193592640695, 48.85485028793479], [2.359292401769761, 48.85496245359834], [2.359391398144159, 48.85507483241617], [2.359490208124834, 48.85518699789377], [2.359589206704339, 48.85529937743179], [2.359688016173804, 48.85541154271606], [2.3597870156175063, 48.85552392116847], [2.359793023303441, 48.85553612153472], [2.359810946008083, 48.855537186924984], [2.359956467597105, 48.855513409502784], [2.360105526057718, 48.85548905454787], [2.360121878356069, 48.85549525218591], [2.360166876265469, 48.85559644318651], [2.360212394262916, 48.855698802499944], [2.360230460150979, 48.8557046396503], [2.360383722171321, 48.855664856871805], [2.360534410762586, 48.85562574275188], [2.3606876709449223, 48.855585960473306], [2.360838359090886, 48.85554684506857], [2.36099162017193, 48.85550706240513], [2.361142307861549, 48.855467946614894], [2.361164373253614, 48.8554659428499], [2.361168461458888, 48.85546142565011], [2.361143302229409, 48.85534082771738], [2.361119698161258, 48.85522767840351], [2.361127876231042, 48.855218172753794], [2.3612608317452812, 48.855180947002125], [2.361383640956398, 48.855146561964595], [2.361506450005328, 48.855112176800006], [2.361639406341467, 48.855074950631405], [2.36165627285713, 48.855078449153126], [2.361739924660526, 48.85516642926261], [2.361823605001829, 48.85525443913594], [2.361907256018583, 48.855342418208], [2.3619909369251513, 48.85543042795038], [2.36200792117764, 48.85543389467175], [2.36216599146928, 48.85538848102762], [2.362372902241487, 48.855329035850176], [2.362530971896916, 48.85528362171967], [2.362737880473613, 48.85522417589826], [2.362895949492833, 48.855178761281316], [2.363102858599471, 48.855119314830475], [2.363260926971485, 48.855073900626394], [2.363304623255204, 48.85506023816122], [2.36330456019867, 48.855057144956305], [2.36328938335184, 48.8550362649003], [2.363206803350368, 48.85492484638626], [2.363122665849446, 48.854809085537035], [2.363040086564606, 48.85469766688521], [2.362955949800894, 48.85458190589508], [2.362932767983725, 48.854569473945936], [2.362895105199931, 48.85458293547258], [2.362831423265753, 48.854605349087365], [2.362737205887462, 48.8546388032734], [2.362719210597538, 48.8546356703229], [2.36262851296944, 48.85454047470314], [2.362539678775931, 48.854444383284665], [2.36244898180878, 48.85434918751241], [2.362360146909761, 48.85425309593685], [2.3623597113448422, 48.85425260526755], [2.362252085510526, 48.854122000650634], [2.362170219332099, 48.854023265083164], [2.362088354826716, 48.8539245294582], [2.361980730350066, 48.85379392455866], [2.361898865201358, 48.85369518877644], [2.361791241684351, 48.85356458278022], [2.361709377254903, 48.85346584684797], [2.36170676743818, 48.853463618719346], [2.361619702672197, 48.8534047097974], [2.361548124790682, 48.85336020474015], [2.361546737298425, 48.8533591019249], [2.361442743624676, 48.853261604831424], [2.361349709296086, 48.85317553125793], [2.361256676648544, 48.85308945671343], [2.3611526840556483, 48.852991959344216], [2.36105965068761, 48.85290588552432], [2.36095565882971, 48.85280838796777], [2.360955142359011, 48.85280794002945], [2.360812103659084, 48.85269173498561], [2.36069859255762, 48.85259907881318], [2.360585083233622, 48.85250642163335], [2.3604420461866082, 48.85239021611563], [2.360424962012088, 48.852387984334655], [2.360364207242248, 48.85240976568316], [2.360287941292432, 48.852434614508326], [2.360269900693248, 48.85243080552147], [2.360212720143916, 48.85236426237734], [2.36011169129828, 48.8522401041315], [2.360117307339026, 48.85222790654909], [2.3602178742809032, 48.85219266532883], [2.360326217647938, 48.85215195615519], [2.360331565016435, 48.8521399918571], [2.360258209841616, 48.85204689065511], [2.360145970304764, 48.85190226071538], [2.360072615796194, 48.8518091593797], [2.360036046855992, 48.851786698477], [2.360022940408331, 48.85178717158488], [2.359851702204841, 48.8518537709842], [2.359697689228128, 48.851917615861474], [2.359526450191344, 48.85198421388819], [2.359372436430598, 48.85204805833931], [2.359218422292355, 48.8521119025885], [2.359047181993634, 48.85217850081703], [2.358893167071353, 48.852242344640096], [2.358721925939351, 48.85230894149599], [2.358720997615879, 48.852309293564154], [2.358551527192839, 48.85236785044644], [2.358380348467327, 48.85242665334362], [2.358210875917051, 48.852485209729934], [2.358039696421601, 48.852544012133585], [2.3578702244696, 48.85260256803854], [2.35769904285254, 48.852661369042], [2.357529570124974, 48.852719925357626], [2.357393354819877, 48.85276671483216], [2.357370736444245, 48.852774739702326]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 52, "zemmour_eric": 85.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "4-4", "circ_bv": "07", "num_bureau": 4, "roussel_fabien": 23.0, "nb_emargement": 1064.0, "nb_procuration": 53.0, "nb_vote_blanc": 13.0, "jadot_yannick": 77.0, "le_pen_marine": 51.0, "nb_exprime": 1045.0, "nb_vote_nul": 6.0, "arr_bv": "04", "arthaud_nathalie": 2, "nb_inscrit": 1338.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "14", "geo_point_2d": [48.85385901871192, 2.3602038200012596], "melenchon_jean_luc": 309.0, "poutou_philippe": 6.0, "macron_emmanuel": 380.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.280546134494349, 48.831946869166174], [2.280573225964567, 48.83196062892738], [2.28071412199602, 48.83205814600781], [2.280845740809222, 48.832150067859615], [2.280986637850162, 48.83224758550185], [2.281118257622195, 48.83233950703823], [2.281259155697338, 48.83243702344363], [2.281390776428208, 48.83252894466455], [2.281531675512762, 48.83262646163173], [2.281663298564705, 48.8327183825454], [2.281794920718708, 48.83281030329856], [2.281935821319654, 48.8329078197651], [2.282067444432411, 48.8329997402028], [2.282208346067674, 48.83309725543247], [2.282339970139294, 48.83318917555471], [2.28248087278401, 48.833286691346174], [2.282612497814501, 48.83337861115295], [2.282753401481064, 48.83347612660688], [2.282885027470435, 48.83356804609815], [2.283025932171222, 48.83366556031524], [2.2831575604817322, 48.833757479499255], [2.283298464829754, 48.83385499426989], [2.283430094099163, 48.83394691313843], [2.283570999468949, 48.83404442757153], [2.283702629697366, 48.834136346124524], [2.283843536101379, 48.83423385932078], [2.283975167288708, 48.83432577755835], [2.283972021537161, 48.83433976650521], [2.28380497062146, 48.834402713763744], [2.283648473957459, 48.834460870967675], [2.283481422262859, 48.83452381776748], [2.283324924874311, 48.83458197454183], [2.283157872401015, 48.834644920882994], [2.283001374287818, 48.83470307722771], [2.282834321035724, 48.834766023110156], [2.282677823560265, 48.834824179033404], [2.282510769529376, 48.83488712445715], [2.282354269967189, 48.834945279942666], [2.282352880881553, 48.834945735686], [2.282188946840369, 48.834992091509974], [2.282019186449475, 48.83504115612995], [2.281855251811457, 48.835087511492624], [2.281685489433534, 48.83513657562663], [2.281521554198583, 48.83518293052801], [2.281351792558114, 48.8352319941924], [2.281187856726334, 48.83527834863249], [2.281018093098734, 48.8353274118109], [2.281010677538859, 48.83533857974783], [2.281066801704414, 48.835446100153526], [2.281126700099938, 48.83557553849274], [2.2811828247598402, 48.835683058821246], [2.281242723715758, 48.83581249707492], [2.281298850232427, 48.835920017334374], [2.2813044140990932, 48.835924674451526], [2.281340512353181, 48.835937811764204], [2.28138777104959, 48.83589425207426], [2.281597973569196, 48.83589164655169], [2.281803786925448, 48.8358891024443], [2.282013989403388, 48.83588649619057], [2.282219802718995, 48.835883951367364], [2.282430005155358, 48.835881344382535], [2.28263581979262, 48.83587879885169], [2.282846022187394, 48.835876191135824], [2.283051835421679, 48.83587364488093], [2.283262037774955, 48.835871036433964], [2.28346785096846, 48.83586848946327], [2.283678053280124, 48.835865880285205], [2.283883867795249, 48.83586333260685], [2.284094068702981, 48.835860722689546], [2.284299883177404, 48.83585817429537], [2.284510085405811, 48.83585556365513], [2.284715898477211, 48.83585301453695], [2.28472635707911, 48.835849578512686], [2.284841842822565, 48.835752515137685], [2.284957709102863, 48.83565379997021], [2.28507319398178, 48.83555673635485], [2.28518905802638, 48.83545802093786], [2.285304542053098, 48.83536095618285], [2.285420406574485, 48.83526224143192], [2.28543881712732, 48.835260304442315], [2.285604808601794, 48.835334555457635], [2.285756127197493, 48.83540317127399], [2.285907447553758, 48.83547178690283], [2.286073440369205, 48.83554603725372], [2.286079696271588, 48.8355531139989], [2.286101367563438, 48.835554923378226], [2.286249689130719, 48.83560033388508], [2.286395387399777, 48.83564511697922], [2.28654371084224, 48.83569052712599], [2.286689409615998, 48.83573530985838], [2.286837733571137, 48.83578071963689], [2.286983431487382, 48.83582550199942], [2.286986085338025, 48.835826106909465], [2.287177802631136, 48.83585564554458], [2.2873653032739583, 48.83588450400353], [2.287552805486802, 48.835913362176], [2.28774452205966, 48.835942899892345], [2.28774726548677, 48.835943132078484], [2.287965049279804, 48.83594662589093], [2.288204207761144, 48.83595072137651], [2.288217740427088, 48.83593945180587], [2.288169683872618, 48.835818382569656], [2.288122356268238, 48.83569941947587], [2.288074300156599, 48.83557835017536], [2.288026972975654, 48.83545938791761], [2.287978917319021, 48.83533831765349], [2.287931589211392, 48.835219355324384], [2.287883535347689, 48.835098285903385], [2.287836207687854, 48.83497932261169], [2.287788154266956, 48.834858253126384], [2.2877408270305413, 48.83473929067077], [2.28769277405234, 48.83461822112119], [2.287645447263813, 48.83449925770299], [2.287644145885794, 48.83448891343162], [2.287645051697393, 48.83447357278485], [2.287636345121027, 48.834474050662486], [2.286453409311551, 48.8337738451725], [2.28645427923115, 48.83376672460587], [2.287998106664408, 48.833110915267575], [2.287993950291822, 48.83308687177814], [2.286704263988864, 48.83278118336464], [2.286701750231, 48.83278070609335], [2.280676725706215, 48.8319067851131], [2.28064706355691, 48.83190625595446], [2.280586701976954, 48.83191550544424], [2.280583704798476, 48.83192854458769], [2.280546134494349, 48.831946869166174]]], "type": "Polygon"}, "properties": {"lassalle_jean": 26.0, "pecresse_valerie": 110, "zemmour_eric": 116.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-72", "circ_bv": "13", "num_bureau": 72, "roussel_fabien": 15.0, "nb_emargement": 1191.0, "nb_procuration": 54.0, "nb_vote_blanc": 13.0, "jadot_yannick": 69.0, "le_pen_marine": 97.0, "nb_exprime": 1178.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1515.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1191, "quartier_bv": "57", "geo_point_2d": [48.83415106413827, 2.284652018810453], "melenchon_jean_luc": 292.0, "poutou_philippe": 8.0, "macron_emmanuel": 410.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3448412091084, 48.859619601577386], [2.34484947858354, 48.85961688494846], [2.344887730205908, 48.859604521453186], [2.345069334483493, 48.859545581039875], [2.34524677755403, 48.85948823011625], [2.345428379668559, 48.85942928824512], [2.345605821947713, 48.85937193678313], [2.345787423239423, 48.85931299526028], [2.345964864738587, 48.859255642360594], [2.346146465218772, 48.85919670028673], [2.346323907278291, 48.85913934775536], [2.346505506946953, 48.85908040513047], [2.346682946863636, 48.85902305115403], [2.34686454572077, 48.858964107978125], [2.347041984834787, 48.858906754362614], [2.347223582891662, 48.85884780973638], [2.347401021214386, 48.85879045558248], [2.347582618448462, 48.85873151130455], [2.347760057342814, 48.858674156619706], [2.347941653776612, 48.85861521089149], [2.348119090516853, 48.858557855660834], [2.348200138179429, 48.85853067900081], [2.348175855273241, 48.858491786547944], [2.348134711548397, 48.85841766103845], [2.348075281145928, 48.85830473505125], [2.348005109282269, 48.85817831330507], [2.3479456807966033, 48.85806538723651], [2.347875509569753, 48.85793896538704], [2.347816080275078, 48.857826039222395], [2.3477566526121603, 48.85771311212488], [2.347686482318393, 48.85758669012444], [2.347627053835207, 48.85747376383008], [2.347556885541114, 48.857347341733835], [2.347552799581508, 48.85734351879851], [2.347427726299741, 48.85727490790685], [2.347286940740113, 48.857205034824254], [2.347161866777979, 48.857136423638714], [2.347021083323208, 48.857066549342754], [2.347016745825538, 48.857062900388755], [2.347007180896932, 48.85705342209308], [2.346924874298133, 48.8569265088345], [2.346842451024499, 48.85679219140408], [2.34680123388875, 48.85672863678201], [2.34680498857657, 48.85670701797934], [2.346763606144749, 48.85667231093877], [2.346722516234177, 48.856608951236204], [2.346647691763021, 48.85649380702258], [2.346565386923829, 48.85636689345274], [2.346490563158789, 48.856251748216515], [2.346408257721723, 48.85612483450353], [2.346333436014362, 48.85600968915137], [2.346251131342471, 48.85588277530261], [2.346176308967086, 48.85576762981968], [2.346094006422995, 48.85564071584266], [2.346019184731135, 48.85552557113568], [2.345936881589361, 48.85539865701546], [2.34586206196642, 48.85528351129331], [2.345860828189053, 48.855282019717116], [2.34574394957587, 48.85516788238382], [2.345624921077256, 48.85505318276072], [2.345508043505415, 48.854939044274246], [2.345389016048834, 48.85482434439284], [2.345272139495737, 48.854710206551744], [2.345153113092375, 48.85459550551278], [2.3450362375693032, 48.85448136741774], [2.344917212208057, 48.85436666612052], [2.344800337715001, 48.85425252777155], [2.344681313395757, 48.85413782621606], [2.344613829830763, 48.85405871188011], [2.344607032766805, 48.85405798934285], [2.344596464246878, 48.85405686572072], [2.344500057373998, 48.85409991221891], [2.344336229898618, 48.854179515792055], [2.344159805559884, 48.85426155749312], [2.343995975693783, 48.85434116058134], [2.343819550272026, 48.854423201768775], [2.3436557193777903, 48.85450280437963], [2.343479292873007, 48.854584845053466], [2.34331546231365, 48.85466444719431], [2.343139034725837, 48.854746487354525], [2.342975201775532, 48.85482608901046], [2.342860754145458, 48.854879306628035], [2.34284116507217, 48.85489035192852], [2.342837865096618, 48.854893519314864], [2.342775884026278, 48.854922341331736], [2.342667547014384, 48.85498497078178], [2.342665650621814, 48.85498631568959], [2.342549849511844, 48.8550877722787], [2.342426332392521, 48.855195724644396], [2.342310528988349, 48.85529718097535], [2.342187012250985, 48.85540513218186], [2.3420712079154278, 48.85550658826205], [2.341947688823008, 48.85561453919375], [2.34183188491889, 48.85571599503064], [2.341708364834235, 48.85582394569495], [2.341592559998718, 48.85592540128113], [2.341469038921717, 48.85603335167803], [2.341353233143524, 48.856134807912774], [2.341229711074266, 48.85624275804227], [2.3411139030131682, 48.85634421311948], [2.340990381314501, 48.856452162989086], [2.34087457232197, 48.85655361781553], [2.340872386140112, 48.85655512927624], [2.340722503501178, 48.85663782823184], [2.340570832444011, 48.8567208319139], [2.340420947486936, 48.85680353047193], [2.340269275467139, 48.85688653375938], [2.340119390917546, 48.85696923193489], [2.339967716572143, 48.857052234820216], [2.339817831067366, 48.85713493260567], [2.339666157133392, 48.857217934204634], [2.339516269310447, 48.85730063159248], [2.339364594402435, 48.8573836336961], [2.339214706987074, 48.85746633070142], [2.339063029753328, 48.85754933240292], [2.3389131413826663, 48.85763202901816], [2.338761464549051, 48.85771503033258], [2.338611573860294, 48.85779772655022], [2.3384598960639202, 48.85788072746999], [2.338310005782644, 48.857963423305094], [2.338158325660609, 48.85804642382269], [2.338008434424017, 48.858129119267716], [2.337856754702214, 48.858212119398225], [2.337706861158831, 48.85829481354632], [2.337555180474156, 48.85837781328218], [2.337550574350945, 48.85837946957017], [2.337356745271781, 48.858419741379436], [2.337146304579766, 48.858473027104516], [2.336952474828641, 48.858513299154886], [2.336742033345302, 48.85856658416452], [2.336649667583667, 48.858585775168876], [2.336612248133077, 48.85858599312783], [2.336582869585918, 48.85860424986857], [2.336481404872802, 48.858625330199345], [2.336283055639714, 48.85866689275642], [2.33608922451161, 48.85870716250223], [2.335890873279772, 48.858748725297936], [2.335697041544121, 48.85878899440557], [2.335498691062293, 48.8588305556564], [2.335304858707633, 48.858870825025114], [2.335106506238525, 48.85891238561532], [2.334912673287805, 48.85895265344654], [2.334714321557266, 48.85899421339119], [2.334520487987537, 48.85903448148351], [2.3343221356326502, 48.85907604077506], [2.334128301466889, 48.859116307329884], [2.333929947113242, 48.859157866860016], [2.333736112339967, 48.85919813277661], [2.333537758736409, 48.859239690761946], [2.333343923344024, 48.859279956939616], [2.33314556775331, 48.8593215142642], [2.332951731764932, 48.85936177890443], [2.332891605787661, 48.859364947609], [2.332881721662318, 48.85937204864209], [2.332692634189002, 48.8594213436341], [2.332505386829088, 48.85946911699672], [2.332316298647432, 48.85951841138977], [2.332129049230659, 48.8595661841518], [2.3319399603407662, 48.859615477945894], [2.331752710229972, 48.85966325011488], [2.331563620631746, 48.85971254331], [2.331376371189979, 48.85976031489357], [2.331187280883425, 48.85980960748977], [2.331000029384907, 48.85985737847268], [2.330810938369929, 48.85990667046987], [2.330623686177505, 48.85995444085974], [2.330434595817156, 48.86000373226563], [2.3302473429308312, 48.86005150206247], [2.330058250499321, 48.86010079286175], [2.329870996918999, 48.860148562065504], [2.329869087732605, 48.86014916563079], [2.329699576583317, 48.86021015903866], [2.329544910585305, 48.86026918485755], [2.329390245599801, 48.8603282104811], [2.329220731932881, 48.860389204092485], [2.329066066223824, 48.860448229290675], [2.328896551786899, 48.86050922243627], [2.328741883991328, 48.860568247201456], [2.328572370158951, 48.860629238989645], [2.328417701639828, 48.860688263329436], [2.328248187025865, 48.86074925555113], [2.328069155739024, 48.86080999714023], [2.327899638957982, 48.860870988853854], [2.327720606846474, 48.86093172991488], [2.327551090624294, 48.86099272113577], [2.327372057688221, 48.86105346166869], [2.327202539298858, 48.86111445238151], [2.327023505538118, 48.86117519238632], [2.326853986344747, 48.86123618259874], [2.32667495175924, 48.86129692207544], [2.326505433124744, 48.861357911795096], [2.326326397714575, 48.861418650743715], [2.32615687692462, 48.861479639055965], [2.326155925570813, 48.86147995027027], [2.326088552978284, 48.86149927205115], [2.326084514797459, 48.861503758650386], [2.325898905145302, 48.86155864024387], [2.325715702890899, 48.86161431664795], [2.325530093830893, 48.861669196772354], [2.325346890793596, 48.86172487260631], [2.325161280939579, 48.86177975305254], [2.324978077119389, 48.86183542831636], [2.324792465120107, 48.861890308177394], [2.324609260516924, 48.86194598287106], [2.324423649098271, 48.86200086216233], [2.324240443712199, 48.862056536285856], [2.324054830159848, 48.86211141409265], [2.3238716239909962, 48.86216708764604], [2.32368601100752, 48.8622219657823], [2.323502804055787, 48.86227763876552], [2.323317190289954, 48.86233251632434], [2.323133982555342, 48.862388188737384], [2.32294836665583, 48.86244306481168], [2.322765158138345, 48.86249873665457], [2.32257954280791, 48.862553613058346], [2.3223963335074522, 48.86260928433112], [2.322210716031651, 48.86266416014967], [2.322027505948423, 48.86271983085226], [2.3218418890649, 48.86277470520175], [2.321658678198808, 48.86283037533415], [2.321473060521241, 48.862885250005384], [2.321289848872285, 48.8629409195676], [2.321104229049353, 48.86299579365364], [2.320921016617536, 48.863051462645686], [2.320897579145885, 48.863075951128465], [2.320937853722636, 48.86311577349289], [2.321030423256002, 48.86323513865995], [2.32111969721071, 48.863350947008115], [2.321208971562213, 48.863466755277585], [2.321301543715164, 48.86358611930558], [2.321390817510951, 48.86370192740711], [2.321483390486713, 48.86382129216832], [2.321572666452778, 48.86393710011732], [2.321665238911738, 48.86405646380559], [2.321754515685044, 48.86417227159434], [2.321847088978542, 48.86429163511656], [2.321936366559, 48.86440744274509], [2.322028942038512, 48.864526807008325], [2.322118220426236, 48.86464261447659], [2.322210795388846, 48.86476197766679], [2.322300074583946, 48.86487778497481], [2.322392650369428, 48.8649971488983], [2.32248193037181, 48.86511295604605], [2.322574508366656, 48.86523231891194], [2.322663789176233, 48.86534812589943], [2.322756366630997, 48.86546748949088], [2.322845648247877, 48.865583296318114], [2.322938226548935, 48.86570265884422], [2.323027508973127, 48.865818465511204], [2.323120089471796, 48.86593782787898], [2.323209372703416, 48.866053634385686], [2.323301952661925, 48.866172997479005], [2.323298353092091, 48.86618323506923], [2.323351068952727, 48.866223947931665], [2.323443649550256, 48.86634330999771], [2.323533301993854, 48.866465750076145], [2.323566356910999, 48.86649030017954], [2.3236167824215572, 48.866482142103], [2.323796132081183, 48.866424826659426], [2.3239736220084293, 48.86636750673733], [2.324152970880886, 48.866310190753076], [2.32433046001326, 48.86625287119513], [2.324509808098346, 48.86619555467025], [2.324687297822285, 48.86613823368562], [2.324866645120097, 48.86608091662009], [2.3250441326860622, 48.86602359599195], [2.3252234791967012, 48.865966278385784], [2.325400965991107, 48.86590895632325], [2.325580311714366, 48.86585163817645], [2.3257577977139148, 48.86579431647816], [2.325937142649998, 48.86573699779073], [2.326114627877972, 48.865679674657976], [2.326293972026671, 48.865622355429906], [2.32647145782289, 48.865565032669096], [2.326650801184306, 48.86550771290039], [2.326828284834217, 48.8654503895968], [2.327007627420068, 48.865393068388215], [2.3271851102867602, 48.86533574454953], [2.327364452073603, 48.8652784236996], [2.327541934157078, 48.86522109932589], [2.327719417224649, 48.86516377379434], [2.327898756468591, 48.865106452127215], [2.328076238741229, 48.86504912695993], [2.328255578560961, 48.864991804759846], [2.328433058698989, 48.86493447815053], [2.328612397731323, 48.864877155409864], [2.328789877074529, 48.86481982916474], [2.32896921531967, 48.864762505883455], [2.329146693891231, 48.864705178204034], [2.329326031348969, 48.864647854382135], [2.329503510488784, 48.864590527074554], [2.329682845796154, 48.86453320270444], [2.329860324164304, 48.86447587396253], [2.330039660047538, 48.864418549059465], [2.330078801594294, 48.86440590570409], [2.330081351003498, 48.86440566725811], [2.330114948316673, 48.864391459469985], [2.33025328291083, 48.86434677439771], [2.330447123206025, 48.86428275436982], [2.330624598505309, 48.86422542537329], [2.330818439255746, 48.864161404744614], [2.330995913733023, 48.864104075191186], [2.331189753575639, 48.86404005395409], [2.331301394649994, 48.864003989823686], [2.331349871743551, 48.863993674460204], [2.331358178416079, 48.863985408203604], [2.33142400958728, 48.86396414218448], [2.33160641501697, 48.86390539132019], [2.331783889118027, 48.86384806059265], [2.33196629373544, 48.863789309173676], [2.332143765682073, 48.86373197789887], [2.332326169487207, 48.86367322592529], [2.332503640642261, 48.8636158941108], [2.332686043623595, 48.863557142481895], [2.332863513998689, 48.86349980922847], [2.333040985334695, 48.863442476615774], [2.33322338710288, 48.86338372415869], [2.333400856295873, 48.863326390099495], [2.333583257251778, 48.86326763708781], [2.33376072564188, 48.86321030338825], [2.333943125797004, 48.86315154892264], [2.334120593395518, 48.86309421468346], [2.33430299410138, 48.86303545967083], [2.334480460908404, 48.862978124891995], [2.334662859438943, 48.862919369317176], [2.334840325454478, 48.862862033998695], [2.335022723161242, 48.86280327876856], [2.33508902766346, 48.86278185687093], [2.335097130579169, 48.86278180386074], [2.335118607922728, 48.86277707210146], [2.335229769988449, 48.86274115722163], [2.335408028029057, 48.86268307810041], [2.335585492419712, 48.86262574166477], [2.335763749668856, 48.86256766200768], [2.335941213274776, 48.86251032503855], [2.336119469732556, 48.862452244845564], [2.336296932553839, 48.862394907343024], [2.336475189583061, 48.86233682662173], [2.336652651619704, 48.86227948858574], [2.336830906494546, 48.86222140732102], [2.33700836774655, 48.86216406875157], [2.33718662182992, 48.862105986950965], [2.337364082297281, 48.86204864784809], [2.337542335589077, 48.861990565511626], [2.337719796634793, 48.86193322588289], [2.337898049135214, 48.861875143010565], [2.338075508033282, 48.861817802840825], [2.338253759742125, 48.86175971943261], [2.338431217855544, 48.861702378729504], [2.338609468773008, 48.86164429478546], [2.338786926101779, 48.86158695354888], [2.3389651762277612, 48.861528869068984], [2.339059986924497, 48.86149823300763], [2.339106613320092, 48.86149467457424], [2.339129062266617, 48.86147323666688], [2.339211709401928, 48.861446530917505], [2.339386838251102, 48.86138889803286], [2.339564293865874, 48.8613315547311], [2.339739421938532, 48.86127392132457], [2.339916876762117, 48.86121657839334], [2.340092004069753, 48.86115894356559], [2.340269458113652, 48.86110160010563], [2.340444584644763, 48.861043964755915], [2.340622037908973, 48.86098662076722], [2.340797163652177, 48.86092898579487], [2.340974616148074, 48.86087164037811], [2.341149741114755, 48.86081400488388], [2.341327194182453, 48.86075665984519], [2.341502318383978, 48.860699022929715], [2.341679769309111, 48.860641677354764], [2.341854892734103, 48.860584039917384], [2.34203234287954, 48.86052669381371], [2.3422074655166423, 48.86046905675373], [2.342384914893736, 48.86041170922199], [2.342560036754308, 48.86035407164012], [2.342737485340349, 48.86029672447897], [2.342912606435632, 48.86023908547589], [2.343090054242074, 48.860181737785986], [2.343265174560817, 48.86012409826101], [2.343442622950403, 48.8600667500499], [2.3436177424813742, 48.860009110902325], [2.343795188739632, 48.85995176125572], [2.343970307494065, 48.85989412158621], [2.344147752961288, 48.85983677231019], [2.344322870950503, 48.85977913121953], [2.344500315638016, 48.85972178141477], [2.344675432850581, 48.85966413980225], [2.344814625126181, 48.85961915295284], [2.3448412091084, 48.859619601577386]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 67, "zemmour_eric": 77.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "1-1", "circ_bv": "01", "num_bureau": 1, "roussel_fabien": 7.0, "nb_emargement": 851.0, "nb_procuration": 47.0, "nb_vote_blanc": 9.0, "jadot_yannick": 91.0, "le_pen_marine": 56.0, "nb_exprime": 835.0, "nb_vote_nul": 7.0, "arr_bv": "01", "arthaud_nathalie": 1, "nb_inscrit": 1082.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 851, "quartier_bv": "01", "geo_point_2d": [48.860657643316806, 2.3349071599647497], "melenchon_jean_luc": 189.0, "poutou_philippe": 1.0, "macron_emmanuel": 322.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.351720451042658, 48.89148026062957], [2.351716236475269, 48.891461772017735], [2.35168945868885, 48.89141062644663], [2.351657146803099, 48.89128289603953], [2.35162993792989, 48.89116310098651], [2.351615429020121, 48.891105746337416], [2.351620488600371, 48.89108243809732], [2.351609433839987, 48.891071447865535], [2.351591629819688, 48.891001072052205], [2.351552111257524, 48.89085302909708], [2.351519798690968, 48.890725298580634], [2.351480280542439, 48.89057725556461], [2.351447968323228, 48.890449524996654], [2.35144785057815, 48.89044715284246], [2.351467238108304, 48.890318973816626], [2.351484794586446, 48.890189757828516], [2.351504183304756, 48.890061577874775], [2.351521739604325, 48.88993236185097], [2.351541126760914, 48.88980418275301], [2.351558682882122, 48.88967496669348], [2.351578071226856, 48.889546786667644], [2.351595627169498, 48.88941757057236], [2.35161501395253, 48.88928939140236], [2.351632571080427, 48.88916017527878], [2.351632611861062, 48.88915898119643], [2.351620378455732, 48.88902889148101], [2.351611699373821, 48.888897466611965], [2.35159946472967, 48.888767375956775], [2.351590785744235, 48.888635951054916], [2.351578552566278, 48.88850586127329], [2.351569873688308, 48.88837443543933], [2.35156914027127, 48.88837189357145], [2.351554030749232, 48.888343014448914], [2.351532672877681, 48.8882982256931], [2.351536947790044, 48.888279538379365], [2.351516903817853, 48.88826197122121], [2.3514811271943072, 48.888186944582024], [2.35141665440397, 48.88804579695814], [2.351359520503558, 48.887925981472314], [2.351295048377064, 48.887784832850166], [2.35123791503159, 48.887665018177145], [2.351173443557933, 48.887523869456], [2.351116310789694, 48.88740405379716], [2.351116027202542, 48.88740350097342], [2.351058894698481, 48.88728368527405], [2.350993447686505, 48.887168144829786], [2.350975261536089, 48.88713604102521], [2.35097398503259, 48.88713549810737], [2.350911962010172, 48.88715118699248], [2.350769286611686, 48.88720591538966], [2.350628207802372, 48.8872615219232], [2.350485531814666, 48.88731624907748], [2.350344452392195, 48.887371856170404], [2.350201775803856, 48.88742658298108], [2.3500606957907673, 48.8874821888348], [2.35005378073296, 48.88748346251665], [2.349822292381807, 48.88748436232252], [2.349570586173517, 48.88748966107725], [2.349557385822585, 48.887498561048425], [2.349555424580925, 48.88763122169322], [2.3495540143209013, 48.88776213252865], [2.349552053071857, 48.88789479224229], [2.349550642796218, 48.888025703046246], [2.349548681517423, 48.88815836362726], [2.349547272589862, 48.88828927440718], [2.349545311303788, 48.88842193405701], [2.349543900996922, 48.88855284479806], [2.349541939681199, 48.88868550531528], [2.349540529358617, 48.88881641602488], [2.34953856803561, 48.888949075610924], [2.3495371576974122, 48.88907998628903], [2.349535197708369, 48.88921264674982], [2.349533787354559, 48.88934355739651], [2.349524377639228, 48.88936655777138], [2.34954163759926, 48.88937945252069], [2.349541187009066, 48.889421308241694], [2.349519317696331, 48.88944900195543], [2.349535035398739, 48.889462538538176], [2.349534075624282, 48.88955159433986], [2.349532981055475, 48.88969041352226], [2.349531570671918, 48.889821325011184], [2.349530474715793, 48.88996014505125], [2.349529065693601, 48.890091055616146], [2.349527969725121, 48.890229875622076], [2.349526559325587, 48.890360786147326], [2.349525464708496, 48.89049960612656], [2.349524054295358, 48.890630516619574], [2.349522958302161, 48.89076933655726], [2.34952154922794, 48.890900247924755], [2.3495204532336222, 48.891039066929025], [2.349519042782036, 48.891169978256876], [2.349517948127894, 48.89130879813366], [2.349516537673937, 48.89143970853004], [2.349507579101044, 48.891463356127076], [2.34951732909484, 48.891471663077944], [2.349534372733125, 48.891566339255675], [2.34955308314672, 48.891656313823134], [2.349570126910461, 48.89175098997976], [2.349588838804844, 48.89184096543316], [2.349604394674832, 48.89186118396104], [2.349631819653704, 48.891861464215836], [2.349837141779008, 48.891824715003274], [2.350037843339123, 48.89178902134539], [2.350243163528301, 48.89175227142684], [2.350443864530833, 48.891716577086086], [2.350649184147865, 48.89167982646893], [2.350849884592805, 48.89164413144534], [2.351050584751356, 48.89160843698343], [2.35125590352492, 48.89157168442317], [2.351456603125874, 48.89153598927845], [2.351661921327163, 48.89149923601956], [2.351720451042658, 48.89148026062957]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 28, "zemmour_eric": 51.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-17", "circ_bv": "18", "num_bureau": 17, "roussel_fabien": 26.0, "nb_emargement": 1374.0, "nb_procuration": 102.0, "nb_vote_blanc": 14.0, "jadot_yannick": 139.0, "le_pen_marine": 49.0, "nb_exprime": 1357.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1870.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1376, "quartier_bv": "70", "geo_point_2d": [48.88958328770067, 2.3505246940863307], "melenchon_jean_luc": 705.0, "poutou_philippe": 9.0, "macron_emmanuel": 285.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.350719176343325, 48.82601140193585], [2.35074437154364, 48.8260175393618], [2.350878410353802, 48.82604131350308], [2.351006789665786, 48.82606355212377], [2.351010008672653, 48.82606385739318], [2.351194921175478, 48.82606668647779], [2.351380897872602, 48.82606926832365], [2.351565810414741, 48.826072096834764], [2.351751787149427, 48.826074678103865], [2.351936699730872, 48.8260775060415], [2.352122676503313, 48.82608008673379], [2.352307589124054, 48.82608291409791], [2.352493565934042, 48.82608549421349], [2.352678478594072, 48.82608832100409], [2.352864455441697, 48.82609090054287], [2.35304936814111, 48.82609372676002], [2.353235345026366, 48.82609630572197], [2.35342025776495, 48.82609913136566], [2.353606234687827, 48.826101709750844], [2.353614754308011, 48.826103839653605], [2.353713724347749, 48.82615921038113], [2.353822511566373, 48.826213148300404], [2.35383348950501, 48.82621475814061], [2.353965809970108, 48.82619641795741], [2.354100220843444, 48.82618019705448], [2.354232541126898, 48.82616185657556], [2.354366951828145, 48.82614563537235], [2.354377710450346, 48.826147356400604], [2.354534769093226, 48.82622719905238], [2.354689355930396, 48.82630605142999], [2.3548464155286, 48.826385893661204], [2.355001003307652, 48.826464745624826], [2.355155592905159, 48.82654359828974], [2.355312653933077, 48.82662343989171], [2.355467243121522, 48.826702291235996], [2.355624305104671, 48.826782132417364], [2.355778895223996, 48.82686098424695], [2.355935958173593, 48.826940824108455], [2.356090549234819, 48.827019675524014], [2.356247613128645, 48.827099515864234], [2.356402205142878, 48.82717836596649], [2.356559269992049, 48.82725820588612], [2.356564549534041, 48.8272659482259], [2.356560585275219, 48.827302730196095], [2.356555500796681, 48.82735158383582], [2.356545897165969, 48.827368940453916], [2.356568800475023, 48.827379990179814], [2.3567160007957693, 48.82741891912829], [2.3568459064301, 48.82744808661217], [2.356912703157349, 48.82745271874722], [2.356918934318606, 48.827425172943556], [2.356948681354495, 48.82732854134006], [2.356991603988042, 48.827198264816175], [2.357032061428866, 48.827066840897785], [2.357074983638609, 48.82693656431358], [2.3571154392929943, 48.82680514122834], [2.357158362452112, 48.82667486369183], [2.357198817693249, 48.82654344054771], [2.357241739066492, 48.82641316294359], [2.35728219525646, 48.826281739747955], [2.357315882793068, 48.82617948825832], [2.35732067418349, 48.82616484070128], [2.357318788164764, 48.82616059810589], [2.357328021572805, 48.8261325719304], [2.357339951767179, 48.82609340349579], [2.357334484481601, 48.826086968764216], [2.3572740398121113, 48.826094042182014], [2.357142398100902, 48.826084409203986], [2.3569828883932082, 48.82607390673989], [2.356970636118394, 48.82606451074029], [2.356972884034125, 48.82603465996873], [2.356977355966141, 48.826005057690594], [2.356965031662631, 48.82599520801726], [2.356761445360441, 48.825983027444764], [2.356558632501506, 48.82597054310013], [2.3563550464016823, 48.82595836093621], [2.356152235086973, 48.82594587680876], [2.355948649178428, 48.82593369395274], [2.355745836694929, 48.82592120912849], [2.355542250977677, 48.82590902558035], [2.355339440049518, 48.82589654007394], [2.355135854523569, 48.82588435583372], [2.354933043799829, 48.82587186873855], [2.3547294584540612, 48.825859684705556], [2.354526646561572, 48.82584719691355], [2.354323061407121, 48.82583501218844], [2.35412025107001, 48.8258225237143], [2.354107914052158, 48.82581308738598], [2.35411965632046, 48.82566866157856], [2.354130492598489, 48.82553249162737], [2.354141330170823, 48.825396322565325], [2.354153072252593, 48.825251896701], [2.354159199013846, 48.82524486069218], [2.354347977915066, 48.825163043015486], [2.354537020202437, 48.82508135686923], [2.354725799269649, 48.824999539490854], [2.354914840372235, 48.82491785273538], [2.355103616892506, 48.82483603474136], [2.355292658172341, 48.82475434738415], [2.355298792351003, 48.824746253688176], [2.355289849343207, 48.82465291314306], [2.355280473855569, 48.82456194461211], [2.355271530923201, 48.82446860315096], [2.355262156862787, 48.82437763461105], [2.355263211812071, 48.824373503165326], [2.355313257775745, 48.824295834776436], [2.35536246277937, 48.824217648284495], [2.355363302367977, 48.824212646878294], [2.355341922104383, 48.824131979822035], [2.355321469403687, 48.82405484421387], [2.355321287979576, 48.8240527728698], [2.355332819979924, 48.82392130293081], [2.355344138717977, 48.82379055222719], [2.355355670602606, 48.82365908225531], [2.355366987864432, 48.82352833151165], [2.355366832334494, 48.823526369130924], [2.35534533912904, 48.82343943635148], [2.355304379307385, 48.8232711083616], [2.355282886322404, 48.823184174651885], [2.355275506287378, 48.82317231164219], [2.355259999488818, 48.823171082228896], [2.355162497931566, 48.82318672640985], [2.355080067867511, 48.82320024742002], [2.35507542507411, 48.82320164159886], [2.35492612645918, 48.8232712773784], [2.354775837998135, 48.823340960691795], [2.354626537210923, 48.823410596980644], [2.354476247948004, 48.82348027990888], [2.354326947734862, 48.82354991492307], [2.354176657669868, 48.823619597466184], [2.354171658781862, 48.82362103465548], [2.353997340265355, 48.82364529544619], [2.353813331863359, 48.823671091023854], [2.35380173036709, 48.82366917291668], [2.353653887841394, 48.82358682555325], [2.353489809865251, 48.82349558801465], [2.353482023176491, 48.82348458430088], [2.353459032662457, 48.82348526044732], [2.353325681639273, 48.82349882690356], [2.353175758438093, 48.82351358878388], [2.353161558444529, 48.82351966371846], [2.353164006454203, 48.82353401573893], [2.353171107379731, 48.823669788223135], [2.353178242052341, 48.82381228551828], [2.353173344506634, 48.823819493619915], [2.353004262831312, 48.82391261964031], [2.35282027911868, 48.82401377895157], [2.3528191714546463, 48.82401446098063], [2.352673981270248, 48.82411445935266], [2.352533344020739, 48.824211492663835], [2.352388152739468, 48.8243114906713], [2.352247514437715, 48.82440852273001], [2.352106875601314, 48.824505555514214], [2.3519616826832133, 48.82460555297772], [2.351821041432536, 48.82470258450208], [2.351675847417539, 48.82480258160101], [2.351535206454272, 48.82489961367887], [2.35139001134237, 48.824999610413215], [2.351385868015089, 48.82501393749564], [2.351401444424198, 48.82502220001063], [2.351437015459263, 48.82502638976196], [2.351482801149145, 48.825032861753996], [2.351490140456112, 48.82504762255204], [2.351356213024497, 48.825147334977736], [2.35122151750351, 48.825243710890405], [2.351087589065752, 48.825343422098584], [2.350952892541625, 48.825439797691864], [2.350818961713075, 48.82553950947372], [2.350684264196998, 48.82563588384827], [2.350682092211004, 48.825646007126075], [2.350687485360559, 48.82566379369331], [2.350713701620918, 48.82569839743263], [2.350724844878063, 48.82570334154581], [2.3509202589333063, 48.825713212633836], [2.351116797553431, 48.82572346184564], [2.35131221175819, 48.82573333229301], [2.351508750520019, 48.82574358175983], [2.351704164874492, 48.82575345156656], [2.351900703800292, 48.82576369948972], [2.352096119666319, 48.82577356866317], [2.352292658733921, 48.825783816841316], [2.352488073398754, 48.82579368446743], [2.352684612619126, 48.825803932001286], [2.352696821975076, 48.82581090349686], [2.352715900327156, 48.82586737244868], [2.352745607886166, 48.82595364667844], [2.352731708630309, 48.825964624778464], [2.352532859784254, 48.82595867103365], [2.352335384554105, 48.825952782856625], [2.352136537160539, 48.82594682846015], [2.351939062020009, 48.82594093962862], [2.351740213354818, 48.82593498456577], [2.351542738304018, 48.82592909507973], [2.351343889729274, 48.825923139357776], [2.351146414768012, 48.82591724921726], [2.350947567645785, 48.82591129284368], [2.350750092774172, 48.82590540204863], [2.350735976660728, 48.825913197649086], [2.350725887866895, 48.825963142784516], [2.350719298018483, 48.825994850481415], [2.350719176343325, 48.82601140193585]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 65, "zemmour_eric": 73.0, "hidalgo_anne": 42.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-40", "circ_bv": "10", "num_bureau": 40, "roussel_fabien": 40.0, "nb_emargement": 1321.0, "nb_procuration": 70.0, "nb_vote_blanc": 20.0, "jadot_yannick": 120.0, "le_pen_marine": 70.0, "nb_exprime": 1290.0, "nb_vote_nul": 10.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1629.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1320, "quartier_bv": "51", "geo_point_2d": [48.82524386443187, 2.3540460841282242], "melenchon_jean_luc": 408.0, "poutou_philippe": 9.0, "macron_emmanuel": 441.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.284745328173253, 48.85858649593771], [2.2847207592153618, 48.85858716480035], [2.284695640292305, 48.858589272937856], [2.284675663939403, 48.85862086572572], [2.28452720600371, 48.85870219913924], [2.284381521772442, 48.85878032296223], [2.284233062935589, 48.85886165509985], [2.2840873764545, 48.85893977854538], [2.283938916704234, 48.8590211103064], [2.283793230699045, 48.859099233390786], [2.283644770022899, 48.8591805656745], [2.283499083143159, 48.85925868749025], [2.283350621553487, 48.859340019397365], [2.283204933786837, 48.859418140843786], [2.283059244208093, 48.85949626299848], [2.282910781254758, 48.859577594342504], [2.282765092164392, 48.85965571523675], [2.282616628297522, 48.85973704620417], [2.282470938320234, 48.85981516672908], [2.282322473539821, 48.85989649731987], [2.2821767826632158, 48.85997461837473], [2.282028315618807, 48.86005594768143], [2.282023143098779, 48.86005771445934], [2.2818563371501153, 48.86008625108912], [2.281677160968247, 48.860117988686376], [2.281510354637112, 48.86014652483233], [2.281331178049612, 48.86017826101056], [2.281232075014115, 48.86019521493212], [2.281173159425829, 48.86021337248446], [2.281193053603965, 48.8602399986787], [2.281373718950404, 48.8603019403893], [2.281542351777952, 48.86036052333925], [2.281723017957598, 48.86042246451577], [2.281891652930852, 48.86048104697537], [2.282072318580752, 48.86054298760965], [2.282240954336965, 48.860601569570626], [2.282421622183024, 48.86066350967902], [2.282590258721993, 48.86072209114145], [2.282770926038296, 48.86078403070763], [2.282939563372598, 48.86084261077218], [2.283120232872688, 48.860904550711744], [2.283288870989737, 48.860963130277725], [2.283469539960068, 48.86102506967499], [2.2836381788600653, 48.86108364874237], [2.283818850026568, 48.861145587613784], [2.283998909444013, 48.86120813320777], [2.284179581483514, 48.86127007062833], [2.284359641764233, 48.86133261567254], [2.284540314651811, 48.861394553440846], [2.284720377158888, 48.86145709794344], [2.284901049556367, 48.861519034252765], [2.28508111291438, 48.86158157910484], [2.28526178753537, 48.861643514870764], [2.285441850406015, 48.86170605826564], [2.285622525887529, 48.86176799347997], [2.285802589609017, 48.861830537224364], [2.285983265951157, 48.861892471887174], [2.286163330548245, 48.86195501418247], [2.286344007738487, 48.86201694919299], [2.286524074561943, 48.86207949094662], [2.286527131185685, 48.862080940939826], [2.286678988625768, 48.8621788791908], [2.2868339738767363, 48.86227639609271], [2.286985832451045, 48.86237433483636], [2.287140817494903, 48.8624718513156], [2.287292677228064, 48.86256978875331], [2.287447663427613, 48.862667304817975], [2.287497166014852, 48.86271402952323], [2.287546366913534, 48.86270098863459], [2.287609563295103, 48.86266069341657], [2.287752333193094, 48.86256845120423], [2.287876258316734, 48.86248943408393], [2.288019028636116, 48.8623971915473], [2.288142952947892, 48.86231817413867], [2.28817834667097, 48.86232607592934], [2.288164464881774, 48.86230602952657], [2.288185613161493, 48.862292366438716], [2.288307234188379, 48.86221378663085], [2.288449454780571, 48.862124356171684], [2.288592221721645, 48.86203211291277], [2.2887344413409823, 48.861942681201036], [2.288877208642724, 48.86185043759514], [2.289019425913938, 48.861761005521956], [2.289162192213158, 48.86166876156098], [2.289304409850068, 48.86157933004186], [2.289447175146873, 48.86148708572578], [2.2895893904478513, 48.86139765294594], [2.28973215474225, 48.86130540827479], [2.289874370421194, 48.86121597514978], [2.289907378035339, 48.861193794194264], [2.289864075429081, 48.86113886014461], [2.289735653819851, 48.86104874903485], [2.28959705067488, 48.860955836107266], [2.289468629978626, 48.86086572469613], [2.289330027784388, 48.8607728123432], [2.289201608001203, 48.860682700630676], [2.28906300677005, 48.86058978795316], [2.288934587912102, 48.860499675039925], [2.288795987644032, 48.86040676203786], [2.288667569686664, 48.86031664972247], [2.288528970381668, 48.86022373639582], [2.288400553337349, 48.86013362377903], [2.288261953644761, 48.8600407092204], [2.288133537513386, 48.85995059630228], [2.287994940134522, 48.859857682326435], [2.287866524916082, 48.85976756910691], [2.287865871080387, 48.859767139821145], [2.287727274666882, 48.859674225519946], [2.287599516532144, 48.8595959334303], [2.287460921049068, 48.85950301880629], [2.287333163722089, 48.859424727319514], [2.287194569181838, 48.859331811473425], [2.28706681267491, 48.859253519690185], [2.286928217689752, 48.85916060441243], [2.286800463365788, 48.85908231234094], [2.286795539393042, 48.8590803790589], [2.286590259182854, 48.85903473536026], [2.286388889734586, 48.85898640846534], [2.286183610250783, 48.85894076406526], [2.285982241542892, 48.85889243648195], [2.28577696279791, 48.85884679048118], [2.285575594830405, 48.858798462209556], [2.2853703154366922, 48.85875281639852], [2.285168949572485, 48.858704487446644], [2.284963670905382, 48.858658840934204], [2.284762305781468, 48.85861051129397], [2.284745328173253, 48.85858649593771]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 155, "zemmour_eric": 203.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-10", "circ_bv": "14", "num_bureau": 10, "roussel_fabien": 15.0, "nb_emargement": 1136.0, "nb_procuration": 88.0, "nb_vote_blanc": 4.0, "jadot_yannick": 33.0, "le_pen_marine": 44.0, "nb_exprime": 1129.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1455.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "62", "geo_point_2d": [48.8605376519999, 2.285936253781969], "melenchon_jean_luc": 63.0, "poutou_philippe": 1.0, "macron_emmanuel": 592.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.381022581296865, 48.86386147003907], [2.381035592485539, 48.863879347913254], [2.3810630436572042, 48.86395294728738], [2.381091448345031, 48.86403246116048], [2.381101028725144, 48.86403988890961], [2.381123118825883, 48.864036616217916], [2.381322222717449, 48.86399809075684], [2.381518327617511, 48.8639601250458], [2.381714433594807, 48.86392215901914], [2.38191353662243, 48.863883631671094], [2.382109642013105, 48.86384566589354], [2.382308744456015, 48.86380713788538], [2.382504849281397, 48.86376917055837], [2.382703951129029, 48.86373064278934], [2.382900054015393, 48.86369267480511], [2.383099155289157, 48.86365414547672], [2.383295258962497, 48.86361617684929], [2.383494359640981, 48.863577647760074], [2.383690462738442, 48.86353967848247], [2.383889562842826, 48.86350114783383], [2.384085665364295, 48.86346317790609], [2.384279887871644, 48.863426015487455], [2.38447598846288, 48.863388044910515], [2.384670211774742, 48.863350881862964], [2.38486631179858, 48.86331291064389], [2.385060534551902, 48.86327574696038], [2.385256634008436, 48.863237775099165], [2.385450854840272, 48.863200610772715], [2.385646955092535, 48.863162638276414], [2.385841175376319, 48.8631254724147], [2.38603727506126, 48.86308749927625], [2.38623149477598, 48.86305033367789], [2.386427593893594, 48.86301235989734], [2.386621813049646, 48.86297519366303], [2.386631044965513, 48.862969200092586], [2.386686382872667, 48.862850484441076], [2.386735680614811, 48.86273768065977], [2.386751016002119, 48.86271388618094], [2.386743428643895, 48.862708131976305], [2.38670615487518, 48.86269795736198], [2.3865227822292763, 48.862646512201536], [2.386348174955556, 48.862598852969136], [2.386164803011969, 48.86254740725564], [2.3859901977609, 48.86249974750368], [2.385815591466269, 48.862452087487945], [2.385632220565169, 48.862400640951584], [2.38545761629319, 48.862352980416325], [2.385274246094312, 48.862301533326864], [2.385272969713614, 48.862301232685304], [2.385144713689081, 48.862276065805084], [2.384937175380138, 48.862234780714495], [2.384808919681508, 48.862209613472906], [2.384601380550992, 48.86216832689118], [2.384436017446599, 48.86213642300244], [2.384228478903157, 48.86209513577134], [2.384063114896423, 48.862063231358206], [2.384060647303707, 48.86206257652664], [2.384050077362347, 48.86205894633415], [2.384045214507077, 48.86205797519597], [2.384042976547252, 48.86205738180194], [2.383871257943789, 48.86199933106549], [2.383699979386657, 48.861941792271764], [2.383528260183355, 48.86188374103009], [2.383356982385145, 48.86182620173954], [2.383185265308017, 48.86176815000663], [2.383013988268628, 48.86171061021919], [2.382842711618116, 48.86165306928434], [2.382670995674, 48.86159501770379], [2.382639240156498, 48.861584810913016], [2.382621709351214, 48.86159681755664], [2.382583894322654, 48.86164395046444], [2.382540276869632, 48.86170291307403], [2.382521758147193, 48.86170695360956], [2.382370959113389, 48.8616554056595], [2.382193999758305, 48.861595649953124], [2.382043201360289, 48.86154410248421], [2.381921006285863, 48.861502838164576], [2.381908024040154, 48.86150379996464], [2.381890362461885, 48.8615216470696], [2.381863682884668, 48.8616404763467], [2.381829680592413, 48.861781725306756], [2.381803000743607, 48.861900554542494], [2.381768999480001, 48.8620418034592], [2.381742319359605, 48.86216063265345], [2.381708316398729, 48.86230188151274], [2.381681636006735, 48.86242071066562], [2.381647634074613, 48.862561959481525], [2.38162095341102, 48.862680788592975], [2.381586949781707, 48.862822037351506], [2.381560268846508, 48.86294086642154], [2.381559563713296, 48.862942623691964], [2.381494399856311, 48.86305547108915], [2.381428962883405, 48.86317017327343], [2.381363797095867, 48.86328302056924], [2.381298359560282, 48.86339772175929], [2.38123319320532, 48.86351056896082], [2.381167755096373, 48.86362527005587], [2.381102589536829, 48.86373811717016], [2.38103715084383, 48.86385281906956], [2.381022581296865, 48.86386147003907]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 44, "zemmour_eric": 65.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-38", "circ_bv": "06", "num_bureau": 38, "roussel_fabien": 20.0, "nb_emargement": 1399.0, "nb_procuration": 71.0, "nb_vote_blanc": 17.0, "jadot_yannick": 155.0, "le_pen_marine": 69.0, "nb_exprime": 1377.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1746.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1399, "quartier_bv": "42", "geo_point_2d": [48.86279469017461, 2.3834170507172576], "melenchon_jean_luc": 488.0, "poutou_philippe": 9.0, "macron_emmanuel": 463.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.28151721178006, 48.84938027535259], [2.281555815918725, 48.849374438263055], [2.2817036372052852, 48.84928253753478], [2.281856534002938, 48.84918976142499], [2.28200435287267, 48.84909786030176], [2.282157248605507, 48.849005082893], [2.282305066408795, 48.848913182282274], [2.2824579610644298, 48.84882040447384], [2.282605777813472, 48.84872850347635], [2.282758671391909, 48.84863572526823], [2.282906488461829, 48.84854382299294], [2.283059379588061, 48.84845104527629], [2.28320719560394, 48.84835914261421], [2.283360087028003, 48.84826636360679], [2.2835079006146453, 48.84817446144905], [2.283660790961532, 48.84808168204197], [2.2838086034941583, 48.84798977949752], [2.283961492763776, 48.847896999690775], [2.284060997759063, 48.84783513158693], [2.284071881654429, 48.84780151190119], [2.284010083648527, 48.84778160607848], [2.283916953936266, 48.84766612333973], [2.283824811667785, 48.84755358375176], [2.283731681410949, 48.84743810083701], [2.283639539945621, 48.8473255610833], [2.283546410506822, 48.847210078000714], [2.283454269844839, 48.84709753808128], [2.283361141224068, 48.84698205483083], [2.283269001365219, 48.84686951474568], [2.2831758749250612, 48.84675403133554], [2.283083734506843, 48.84664149107655], [2.282990608884687, 48.846526007498525], [2.282898469269793, 48.846413467073845], [2.282887799820295, 48.84640879117075], [2.282682610854126, 48.84639563008272], [2.282478335480987, 48.84638084896634], [2.282273146728342, 48.84636768717571], [2.2820688729433503, 48.84635290536805], [2.28186368440414, 48.84633974287483], [2.281659409482341, 48.846324960359475], [2.281649205361278, 48.84632064148917], [2.281640687424567, 48.84631252572457], [2.281617514244779, 48.84629045013152], [2.281571528949508, 48.84623978249013], [2.2815733914200482, 48.84622893112577], [2.28171776545922, 48.846129734496955], [2.281842028211255, 48.84604283721794], [2.281966290536511, 48.84595594070237], [2.282110664434059, 48.84585674358327], [2.282234925867687, 48.84576984677419], [2.282379298738389, 48.84567064931441], [2.282380711172287, 48.84566980518694], [2.282544539306635, 48.84558318854781], [2.282721643048395, 48.84549143494808], [2.282885468680574, 48.84540481871935], [2.283062571228337, 48.84531306370095], [2.2832263957332, 48.84522644699149], [2.283403497062226, 48.84513469235302], [2.283403520398329, 48.84513467990165], [2.283567343775805, 48.845048062711506], [2.283772533274607, 48.844942229745804], [2.2838908810805, 48.84489075512799], [2.283943524842908, 48.844875503086065], [2.283934526847332, 48.844848764099545], [2.283931395025578, 48.84483908075204], [2.2839020994325763, 48.84480518901364], [2.283896519258816, 48.844784278595625], [2.283874203655809, 48.84479070769998], [2.283740907728657, 48.84484933811291], [2.283545393987148, 48.844938465669664], [2.283412098674628, 48.84499709571667], [2.283278801699753, 48.84505572560388], [2.283083286393719, 48.84514485238892], [2.28305138062436, 48.845144222294984], [2.283030554982865, 48.8451557397967], [2.282888156163158, 48.84523664418581], [2.282735128980776, 48.8453180899545], [2.28259273062142, 48.84539899398838], [2.282439702500656, 48.84548043936734], [2.282297303239097, 48.8455613430378], [2.282144274179945, 48.84564278802703], [2.282001872653712, 48.845723691325865], [2.281848844018633, 48.84580513593354], [2.281706441590183, 48.84588603886897], [2.28155341065424, 48.8459674830787], [2.281553016589484, 48.84596769925833], [2.281401746412719, 48.846047315539344], [2.28124871451464, 48.84612876024684], [2.281097443405403, 48.84620837613161], [2.280944410558829, 48.84628982043807], [2.280793138517317, 48.84636943592653], [2.280640106084831, 48.84645087984022], [2.280488831748249, 48.84653049492425], [2.280335798367264, 48.8466119384369], [2.280184523098396, 48.846691553124636], [2.280031488768906, 48.84677299623628], [2.279880212567646, 48.84685261052771], [2.279727177289547, 48.846934053238336], [2.27957590151849, 48.84701366714174], [2.279422863929381, 48.84709510944312], [2.279271587225927, 48.84717472295019], [2.279118548688296, 48.84725616485056], [2.278967271039896, 48.84733577886064], [2.278814231566184, 48.84741721946066], [2.278812720775594, 48.84743028353535], [2.278948450879083, 48.847528413019106], [2.279078422652273, 48.847621915477866], [2.279214153755176, 48.847720044643296], [2.279344125120497, 48.84781354678915], [2.279479858585343, 48.847911675644475], [2.279609830892887, 48.8480051783849], [2.279745564006968, 48.8481033060144], [2.279875538631808, 48.84819680845828], [2.280011272732999, 48.84829493666877], [2.280141246962204, 48.848388437900425], [2.280276983425477, 48.84848656580076], [2.280406958609359, 48.84858006672768], [2.280542694709446, 48.848678194301485], [2.280672672210758, 48.848771694931855], [2.280808409310205, 48.848869822187325], [2.280938386403562, 48.848963322504744], [2.281074125865232, 48.84906144945006], [2.281204103913186, 48.84915494946272], [2.281339844374339, 48.84925307608971], [2.281469823377001, 48.849346575797625], [2.28151721178006, 48.84938027535259]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 90, "zemmour_eric": 101.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-95", "circ_bv": "13", "num_bureau": 95, "roussel_fabien": 21.0, "nb_emargement": 1056.0, "nb_procuration": 53.0, "nb_vote_blanc": 25.0, "jadot_yannick": 56.0, "le_pen_marine": 67.0, "nb_exprime": 1028.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1406.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1056, "quartier_bv": "60", "geo_point_2d": [48.847540669513116, 2.281596596737658], "melenchon_jean_luc": 238.0, "poutou_philippe": 7.0, "macron_emmanuel": 390.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.316447888931375, 48.8813159829378], [2.316443916397432, 48.88135632238782], [2.316329187342046, 48.88146391476838], [2.31621074644349, 48.88157034007921], [2.316096016434899, 48.88167793221542], [2.315977574573207, 48.8817843572749], [2.315862843599588, 48.881891950066006], [2.315744400786363, 48.881998373974824], [2.315629667495992, 48.882105966513805], [2.315533681626171, 48.88219221250767], [2.315519610919721, 48.88220577675691], [2.315579226075057, 48.88223454461694], [2.315755990943624, 48.8823175364656], [2.315933397417404, 48.88240082848981], [2.316110162063169, 48.88248381889598], [2.31628756966986, 48.88256711038285], [2.316464336807874, 48.88265010026133], [2.316641745547482, 48.88273339121082], [2.316645275330681, 48.88273458228989], [2.316817066253846, 48.88277299025634], [2.316993869036116, 48.88281251925517], [2.317165661825223, 48.882850927625725], [2.317342465148377, 48.88289045520775], [2.317514258451677, 48.88292886307545], [2.317691062292335, 48.882968391039114], [2.317698946939416, 48.882975039775566], [2.317717468871489, 48.882974743326955], [2.317718235484134, 48.88297493205896], [2.317898159955915, 48.883023282866034], [2.318075399004762, 48.88307096338886], [2.318255324139934, 48.883119313654944], [2.318432562479071, 48.88316699363713], [2.318612488277631, 48.883215343362295], [2.31878972725884, 48.88326302371088], [2.318969653720788, 48.88331137289504], [2.319146893367595, 48.883359051811446], [2.319147181414137, 48.883359131691414], [2.319148531818049, 48.883359517989845], [2.319165541537588, 48.88336517169454], [2.319178576420598, 48.88335871396573], [2.319273817063555, 48.88325625944899], [2.319386520050045, 48.883135019931686], [2.319481759874696, 48.88303256522866], [2.319594460529525, 48.88291132548328], [2.319689699536085, 48.88280887059401], [2.319802400586153, 48.882687630635985], [2.319897638774528, 48.88258517556048], [2.320010337492866, 48.882463935374325], [2.320105574863065, 48.88236148011259], [2.320218273976757, 48.88224023971377], [2.32031351052879, 48.882137784265836], [2.320348225824229, 48.882082148925015], [2.320344551116603, 48.882080357276436], [2.320290622039939, 48.88206948844205], [2.320277836869326, 48.882065312196595], [2.320090373379668, 48.882027154720454], [2.319902259284642, 48.88198923966952], [2.319714796344007, 48.88195108160265], [2.319526681433789, 48.881913165951225], [2.319339219042186, 48.88187500729365], [2.319151104680203, 48.881837091049505], [2.318963642837536, 48.88179893180124], [2.318775529023796, 48.88176101496434], [2.3185880691055543, 48.88172285423388], [2.318399955828194, 48.88168493770347], [2.31821249509549, 48.88164677637458], [2.318024382378257, 48.8816088583522], [2.317836922182838, 48.88157069733187], [2.317648810013865, 48.881532778716775], [2.317461350367406, 48.88149461710573], [2.317273240110207, 48.88145669790568], [2.317085781012917, 48.88141853570398], [2.31689766994038, 48.881380615903446], [2.3168461793976682, 48.881370133539235], [2.316842473543886, 48.88136792251348], [2.316809368517605, 48.88136136811462], [2.31667340056645, 48.88133368674514], [2.316470053798175, 48.88130789316708], [2.316447888931375, 48.8813159829378]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 98, "zemmour_eric": 111.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-6", "circ_bv": "03", "num_bureau": 6, "roussel_fabien": 9.0, "nb_emargement": 1231.0, "nb_procuration": 107.0, "nb_vote_blanc": 9.0, "jadot_yannick": 99.0, "le_pen_marine": 34.0, "nb_exprime": 1221.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1465.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "67", "geo_point_2d": [48.88229141523285, 2.3179355375965813], "melenchon_jean_luc": 211.0, "poutou_philippe": 7.0, "macron_emmanuel": 613.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332253535343118, 48.889206503339764], [2.332285437983635, 48.88919632819811], [2.332442542978596, 48.8890886149877], [2.332595324337321, 48.88898386502831], [2.332752429413925, 48.88887615139802], [2.332905208150744, 48.88877140191467], [2.332907833615152, 48.888768831876526], [2.332984245668862, 48.88865590101009], [2.333060612901225, 48.88854303638568], [2.333063014029073, 48.888540624274995], [2.333201270451606, 48.888441145396506], [2.333345815143554, 48.888338859489394], [2.333484070478591, 48.88823938116534], [2.33362861405485, 48.88813709489806], [2.333640348775179, 48.888105371683864], [2.333618770899612, 48.888098483260286], [2.333519910636096, 48.88797872898772], [2.333434991936798, 48.8878760612109], [2.333350073583871, 48.88777339246504], [2.33325121454398, 48.88765363883446], [2.333253813388993, 48.887642811011496], [2.333372438492166, 48.88756870050646], [2.333540637902392, 48.88746316721855], [2.333659262188106, 48.88738905641718], [2.3338274604367673, 48.88728352270917], [2.333946085268688, 48.88720941161912], [2.333947790142838, 48.88720811617793], [2.334050645096422, 48.88711294582641], [2.334149218906524, 48.88701884335715], [2.334252073118114, 48.88692367281618], [2.334350646205916, 48.88682957016488], [2.334449220312491, 48.88673546653268], [2.334552072052419, 48.886640295701895], [2.334553929064274, 48.88663787064137], [2.334608622340575, 48.88652752662503], [2.334680010348815, 48.88639014979425], [2.334734703097765, 48.88627980569542], [2.334806091785932, 48.886142429665334], [2.334860784007434, 48.88603208548407], [2.334932170671244, 48.88589470844101], [2.334986862365513, 48.88578436417726], [2.334971135396092, 48.88575751908848], [2.334935866723128, 48.885757470679756], [2.334848914978145, 48.88578349718764], [2.334756077487829, 48.88581261430022], [2.334738895108716, 48.885809501582905], [2.334630475641663, 48.885702883515954], [2.334519638809206, 48.88559423650524], [2.334411220239147, 48.88548761821889], [2.33430038294731, 48.88537897187564], [2.334191965285835, 48.88527235247064], [2.334081130273228, 48.88516370591072], [2.333972713508834, 48.88505708628626], [2.333861878048229, 48.88494843949455], [2.333753462169402, 48.88484182054995], [2.3336426289994012, 48.88473317264231], [2.33353421265414, 48.88462655347074], [2.333423380399731, 48.884517905338896], [2.333314966315114, 48.88441128595553], [2.333204134976283, 48.88430263759943], [2.333095720425124, 48.88419601798907], [2.332984890001866, 48.88408736940877], [2.332876477711217, 48.88398074958663], [2.332765646828526, 48.883872101673745], [2.332753359330356, 48.883871969343026], [2.332724942812677, 48.88388203726356], [2.332680614081827, 48.8840081857414], [2.332636218459885, 48.88412793867675], [2.332591889293264, 48.88425408799285], [2.332547493257755, 48.884373840868484], [2.332503165041994, 48.88449998923185], [2.332458768592713, 48.88461974204781], [2.332414438589106, 48.88474589034253], [2.332370041714617, 48.884865643998054], [2.332368508653579, 48.88486811310373], [2.332270867846435, 48.88497587401662], [2.332173403324166, 48.88508368079137], [2.332075761697554, 48.88519144242326], [2.331978296367905, 48.88529924901802], [2.331880653944782, 48.885407009570436], [2.331783187807743, 48.88551481598521], [2.331685544565228, 48.885622577256676], [2.331588077620792, 48.88573038349149], [2.3314904335818563, 48.8858381436834], [2.331392965830014, 48.88594594973825], [2.331295320971458, 48.88605371064918], [2.331197852412199, 48.88616151652406], [2.3311002067573128, 48.88626927635548], [2.331002737390631, 48.886377082050394], [2.330905090927757, 48.88648484170154], [2.330807620753642, 48.88659264721646], [2.330709973471114, 48.88670040758662], [2.330612502489556, 48.886808212921565], [2.33051485441068, 48.88691597221219], [2.330417382621672, 48.88702377736716], [2.330319733723116, 48.88713153737674], [2.33022226112675, 48.88723934235172], [2.330124611431734, 48.887347101281826], [2.330027138027797, 48.88745490607681], [2.32999969841667, 48.887473329059574], [2.32999954733903, 48.88747987712166], [2.330128598878302, 48.887573967420586], [2.330262191655093, 48.88766258358056], [2.33026312044112, 48.88766862146757], [2.33029621522418, 48.887687121389774], [2.330429809940298, 48.8877757373612], [2.330563830865391, 48.887863377987536], [2.330697425137018, 48.88795199273927], [2.33083144832985, 48.888039633059606], [2.330965043497447, 48.888128248397784], [2.331099066230766, 48.8882158883969], [2.331232663681237, 48.88830450253067], [2.331366687318629, 48.88839214221614], [2.331500284301502, 48.888480756928715], [2.331634308842972, 48.88856839630062], [2.3317679081087332, 48.888657009808725], [2.331901933554287, 48.888744648867], [2.331904552027081, 48.88874709165971], [2.331920996310143, 48.888769635107096], [2.331920534751669, 48.888776909884996], [2.331947945883873, 48.88879227673392], [2.332014114553227, 48.88888298866132], [2.332101676097844, 48.88900407951834], [2.332184291186158, 48.88911733385572], [2.332246209471286, 48.889202963206436], [2.332253535343118, 48.889206503339764]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 66, "zemmour_eric": 76.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-29", "circ_bv": "18", "num_bureau": 29, "roussel_fabien": 23.0, "nb_emargement": 1331.0, "nb_procuration": 115.0, "nb_vote_blanc": 12.0, "jadot_yannick": 138.0, "le_pen_marine": 50.0, "nb_exprime": 1318.0, "nb_vote_nul": 1.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1657.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "69", "geo_point_2d": [48.88668235905259, 2.332573764002692], "melenchon_jean_luc": 387.0, "poutou_philippe": 10.0, "macron_emmanuel": 514.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.38705292203713, 48.8680307919529], [2.387062192365138, 48.86800179438345], [2.387135832299625, 48.86787098582558], [2.3872101973126663, 48.86773888407437], [2.38728383515117, 48.86760807448806], [2.38735819941368, 48.8674759726135], [2.387431837861469, 48.86734516381132], [2.387506201373253, 48.86721306181341], [2.387579837725291, 48.867082251982836], [2.387654200486465, 48.86695014986156], [2.387647180413466, 48.86693886770397], [2.387435930359314, 48.866873908408465], [2.387224469534909, 48.86681173021154], [2.3872169794635, 48.866800895290254], [2.387249987549928, 48.866734165099075], [2.387292559254509, 48.86664197408039], [2.387299457725554, 48.86663855053442], [2.387300758892963, 48.86662180249417], [2.38731607171743, 48.86658864308036], [2.387378719395487, 48.86645096364946], [2.387436601948127, 48.86632561311734], [2.387499248991324, 48.86618793359063], [2.3875571323353793, 48.866062582078094], [2.387615014037762, 48.86593723051638], [2.387677660131819, 48.865799551747294], [2.387675810327897, 48.86579027278102], [2.387660013742399, 48.865784839986766], [2.387471653415095, 48.86573933629133], [2.387282968708559, 48.865693739801806], [2.387094607676885, 48.86564823550222], [2.386905923630324, 48.86560263841456], [2.386717564620492, 48.86555713352483], [2.386528881233909, 48.86551153583899], [2.386340521519721, 48.86546603034514], [2.386151838793122, 48.86542043206115], [2.385963479737788, 48.86537492597022], [2.3857747976710773, 48.86532932708809], [2.385586440637594, 48.86528382040699], [2.385397759230876, 48.8652382209267], [2.38520940149306, 48.86519271364148], [2.385020720746342, 48.865147113563054], [2.384971230562931, 48.86512653144118], [2.384959609081333, 48.865134205155286], [2.384918958047794, 48.86516969469722], [2.384794088965397, 48.86527753682885], [2.384673753451273, 48.86538258989123], [2.384548883340361, 48.86549043264562], [2.384428548202997, 48.865595485448296], [2.384303677074179, 48.865703327926035], [2.384183340950672, 48.86580838046199], [2.384058467451462, 48.86591622175689], [2.383938130341701, 48.86602127402607], [2.383813257177042, 48.86612911595069], [2.383692919080916, 48.866234167953095], [2.383568044898321, 48.86634200960115], [2.3834477044529, 48.86644706132981], [2.383445590981139, 48.86644975565809], [2.383394013332244, 48.86655065853559], [2.383335955334018, 48.86667098431908], [2.383284377253832, 48.86677188712915], [2.383226317392676, 48.86689221282835], [2.383174738870338, 48.86699311647035], [2.383135786461458, 48.867073845514014], [2.383143261659377, 48.86709289068887], [2.383186557370336, 48.867098380356936], [2.383378316748181, 48.86714509177707], [2.383560365337843, 48.867188894770514], [2.383742412859872, 48.86723269837756], [2.383934173230573, 48.8672794089015], [2.384116222757118, 48.86732321104414], [2.384307982433037, 48.867369920958346], [2.384490032579476, 48.86741372342811], [2.384681792934379, 48.867460431840286], [2.384863843711441, 48.86750423373793], [2.385055606097843, 48.86755094155438], [2.385237657505626, 48.86759474287989], [2.385429419197216, 48.8676414500866], [2.385611471235513, 48.86768525083989], [2.385803233595439, 48.86773195744395], [2.385985286264446, 48.867775757625076], [2.386177050655863, 48.86782246363339], [2.386359103955373, 48.86786626324237], [2.386486846242523, 48.86789737601319], [2.386492913395768, 48.867901010763426], [2.386516542579465, 48.86790236127657], [2.386580563993324, 48.86791795478763], [2.386763522770064, 48.86796294374346], [2.386955287185139, 48.86800964848998], [2.387046193910984, 48.86803200218183], [2.38705292203713, 48.8680307919529]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 22, "zemmour_eric": 48.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "20-69", "circ_bv": "06", "num_bureau": 69, "roussel_fabien": 25.0, "nb_emargement": 1205.0, "nb_procuration": 86.0, "nb_vote_blanc": 15.0, "jadot_yannick": 87.0, "le_pen_marine": 47.0, "nb_exprime": 1187.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1550.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1205, "quartier_bv": "79", "geo_point_2d": [48.86657738253476, 2.385623740349854], "melenchon_jean_luc": 659.0, "poutou_philippe": 11.0, "macron_emmanuel": 236.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.353334003367725, 48.861274375257935], [2.353340058847075, 48.861270906820266], [2.353386687937771, 48.861260441252554], [2.353463633361138, 48.86123245558953], [2.353522445583153, 48.861211755563296], [2.3535409050217853, 48.86120848992282], [2.353549761223688, 48.86120241140882], [2.353649808512415, 48.86116719915023], [2.353834200510971, 48.86110555446377], [2.353993059273596, 48.861049641703815], [2.354177451801685, 48.860987997388655], [2.354336309848639, 48.86093208326783], [2.3545207001916593, 48.86087043840989], [2.354679557500547, 48.86081452472677], [2.354863948395486, 48.8607528784415], [2.355022804977552, 48.86069696429684], [2.355037123824084, 48.86068990694381], [2.35500473868506, 48.860649118763156], [2.354910588031285, 48.860595308744514], [2.354823099271104, 48.86054530642847], [2.354820623948749, 48.86054343952773], [2.354714714225723, 48.860436851578875], [2.354609942514953, 48.860331408235474], [2.354505171228264, 48.860225964790345], [2.35439926279605, 48.86011937653178], [2.354397465464098, 48.86011669667091], [2.354365056927618, 48.860033979654425], [2.354332133246019, 48.859949944995854], [2.354327767262572, 48.85994534465622], [2.354193309678605, 48.8598699039634], [2.354059881214774, 48.85979504065276], [2.354056366865386, 48.85979200257068], [2.353986853409906, 48.859694036336876], [2.353918306051666, 48.859597432385556], [2.353849758947518, 48.85950082838655], [2.353780246269002, 48.85940286200702], [2.353711699665767, 48.859306258811245], [2.353642187506431, 48.85920829233435], [2.353640993798323, 48.85920343569811], [2.35365802121913, 48.85910723257459], [2.353675024963394, 48.859011175007254], [2.3536739985740462, 48.85900656479647], [2.35359643627229, 48.85888811797407], [2.35352073763286, 48.858772518601995], [2.353445039329233, 48.85865691916997], [2.353367478057316, 48.85853847306118], [2.353291780433761, 48.85842287350781], [2.353214219858657, 48.85830442727469], [2.353138522926431, 48.85818882670075], [2.353060961685231, 48.85807038033591], [2.353049100940015, 48.8580643580203], [2.3530300087704292, 48.8580704801001], [2.352851245039338, 48.85813692695062], [2.352672489085484, 48.85820336907792], [2.352493724453688, 48.85826981448707], [2.352314967588007, 48.858336256072356], [2.352136200670349, 48.85840270183142], [2.3519574442557483, 48.85846914288206], [2.351778676437393, 48.8585355871998], [2.351599919110869, 48.8586020277084], [2.351596974508595, 48.85860283915499], [2.351444162053951, 48.85863165002226], [2.351290669063487, 48.85866058920977], [2.351286554383732, 48.85866188894804], [2.351104168959958, 48.85874683384814], [2.350921530700679, 48.8588318949104], [2.350739142723757, 48.85891683923379], [2.35055650327261, 48.85900189972593], [2.350551235904152, 48.85900338204642], [2.350420981010243, 48.85902002621591], [2.350288534929117, 48.85903695063579], [2.350280320661753, 48.85904029838362], [2.350255076350113, 48.85906196064953], [2.350231026530646, 48.859082596942635], [2.350226201821748, 48.8590851959462], [2.35005863495349, 48.859139176859095], [2.349890078316564, 48.85919347592528], [2.349722510751819, 48.8592474563623], [2.349553953414296, 48.859301754949804], [2.34954718771336, 48.85930664840771], [2.349519186986215, 48.85935538393093], [2.349491191826751, 48.85940410598579], [2.349484458951419, 48.85940898882608], [2.349334957476023, 48.85945746757371], [2.349189133040444, 48.859504752010125], [2.349043309691884, 48.85955203717349], [2.3488938060327103, 48.85960051535636], [2.3488224355068192, 48.85961790175027], [2.348823699339247, 48.859624310193844], [2.348897796568089, 48.85975323663294], [2.348970416290796, 48.859881755660346], [2.349044514248829, 48.860010681978665], [2.34911713332933, 48.86013920087982], [2.349191232016563, 48.86026812707737], [2.34926385318067, 48.86039664586704], [2.34932353648224, 48.86050226969116], [2.349397636196599, 48.86063119571868], [2.349410573119126, 48.86065409060719], [2.349397752655324, 48.86066793112625], [2.349428187055144, 48.86067062105116], [2.349500807990589, 48.86079914054228], [2.349568342730072, 48.86092119209815], [2.349635877785974, 48.86104324360253], [2.349708501127347, 48.86117176203256], [2.349776036825174, 48.861293814329485], [2.349848660861669, 48.861422332645404], [2.349916197223775, 48.86154438393641], [2.3499888219553, 48.861672902138174], [2.350056358970672, 48.86179495332252], [2.350128984385917, 48.86192347230948], [2.350159846514866, 48.861979245623544], [2.350192229143977, 48.861993989081085], [2.350248602595042, 48.86197031317653], [2.35044733702925, 48.86192571596756], [2.350637732559187, 48.86188248425693], [2.350836467688266, 48.861837886405624], [2.351026861211331, 48.86179465406513], [2.351217255781412, 48.86175142142738], [2.351415989925651, 48.86170682170922], [2.351606382488951, 48.86166358844162], [2.351805115953845, 48.86161898897301], [2.351995509236152, 48.8615757550903], [2.352194240669899, 48.86153115496458], [2.35238463330831, 48.86148792045942], [2.352583365436889, 48.861443319691354], [2.352773756068513, 48.86140008455633], [2.352972487528927, 48.8613554831386], [2.353162878879531, 48.861312247388476], [2.353314979217869, 48.861278109972226], [2.353334003367725, 48.861274375257935]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 93.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "4-13", "circ_bv": "07", "num_bureau": 13, "roussel_fabien": 21.0, "nb_emargement": 1253.0, "nb_procuration": 86.0, "nb_vote_blanc": 7.0, "jadot_yannick": 102.0, "le_pen_marine": 71.0, "nb_exprime": 1245.0, "nb_vote_nul": 1.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1646.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1253, "quartier_bv": "13", "geo_point_2d": [48.860128873834086, 2.351797626839907], "melenchon_jean_luc": 370.0, "poutou_philippe": 6.0, "macron_emmanuel": 479.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408246181469436, 48.85650286300952], [2.4082436853711853, 48.85651299529126], [2.40810343963333, 48.85657236270008], [2.407927383656367, 48.85664688122], [2.407787138560624, 48.856706248257716], [2.407687856867167, 48.85674826985846], [2.407686987558173, 48.856750406898534], [2.407702699185881, 48.856766010978475], [2.407804322388786, 48.856853139850706], [2.407949596342472, 48.856977231877636], [2.408051219007421, 48.8570643605169], [2.4081964941379352, 48.85718845222042], [2.408298118990597, 48.85727558064021], [2.408318327984643, 48.85727660239511], [2.4084165431132902, 48.85721476333101], [2.408525418450638, 48.85714708166491], [2.408548124035095, 48.857151848905445], [2.408589923411902, 48.857288543786105], [2.408630410055731, 48.857420233584826], [2.408672208500728, 48.85755692839699], [2.408712695550871, 48.8576886190353], [2.408754495790054, 48.857825313792425], [2.408794981904027, 48.85795700346504], [2.408836782574307, 48.85809369816031], [2.408877270467717, 48.858225387779974], [2.408883121036193, 48.85823745800754], [2.408897964063696, 48.85823995236306], [2.40910235653717, 48.85827762988724], [2.409314247923165, 48.85831702854781], [2.409518641000024, 48.858354705358344], [2.409730533014146, 48.85839410327912], [2.409740372670992, 48.85840381527137], [2.409718242984956, 48.85852741095264], [2.409695751014429, 48.85865374063502], [2.409673622479317, 48.85877733628694], [2.409651130292711, 48.85890366593251], [2.409629000172481, 48.85902726244085], [2.409606509132726, 48.859153592056295], [2.409584378810679, 48.859277187629296], [2.409561887554846, 48.859403517207866], [2.409539757020791, 48.85952711274477], [2.409517264185926, 48.85965344227981], [2.409495133429766, 48.85977703867987], [2.409472641741659, 48.85990336818476], [2.409450510783576, 48.86002696364944], [2.409428018879483, 48.86015329311748], [2.409405887699188, 48.86027688944535], [2.409383394226228, 48.86040321797048], [2.40936126283401, 48.86052681426226], [2.409342635438855, 48.86063143640953], [2.409350249727626, 48.86064173998864], [2.40937805496266, 48.860639625265776], [2.409557813290691, 48.86064762340248], [2.409739946469411, 48.86065606736494], [2.409919706272599, 48.86066406496465], [2.410101839567342, 48.86067250837623], [2.410281599482906, 48.860680505432235], [2.410463732893769, 48.860688948292875], [2.4106434929216, 48.86069694480518], [2.410825626448573, 48.86070538711494], [2.411005385225688, 48.860713383076835], [2.411187518868764, 48.860721824835714], [2.411202011620111, 48.86071389649009], [2.411225500636019, 48.86058123221171], [2.411248564957114, 48.860449954409304], [2.411272053735487, 48.8603172900902], [2.411295117832602, 48.860186011348276], [2.4113186063735452, 48.86005334698847], [2.411341670226358, 48.85992206910566], [2.411365158529674, 48.859789404705126], [2.41138822215851, 48.85965812588278], [2.411411710224301, 48.85952546144157], [2.411434773608846, 48.85939418347831], [2.411458261437218, 48.859261518996355], [2.411481324597793, 48.8591302400936], [2.411504810825615, 48.858997575564274], [2.411527875104838, 48.85886629752732], [2.411531165921626, 48.85885140348506], [2.4115136866410563, 48.85884407780933], [2.411293385595334, 48.858824376017154], [2.411071213437222, 48.85880466550919], [2.410850911372707, 48.858784961995745], [2.410628739550158, 48.8587652506656], [2.410616991035001, 48.85875545830105], [2.410634352974645, 48.85863891684744], [2.410651484486068, 48.858522617067614], [2.410668844897881, 48.85840607647714], [2.410685976255856, 48.85828977666796], [2.41070333788592, 48.85817323515541], [2.410720467727437, 48.858056935310174], [2.410737829192697, 48.8579403946675], [2.410754958880676, 48.857824094792946], [2.410772320201272, 48.85770755322153], [2.41078945109861, 48.857591253324344], [2.410777723138962, 48.857581471857415], [2.410646604303145, 48.85756970036446], [2.41051498678587, 48.8575580404877], [2.410503182206102, 48.85754877214191], [2.4105113971604712, 48.857411761387716], [2.410518237742425, 48.857284792232186], [2.410525079653924, 48.857157823068455], [2.410533294489073, 48.85702081226448], [2.410546206384057, 48.857012186390975], [2.410752911318876, 48.85700510941814], [2.410966912429569, 48.85699799245852], [2.411173617250934, 48.85699091475888], [2.411387618245957, 48.85698379704681], [2.411397961848421, 48.85696953394127], [2.411292572363055, 48.85687369835525], [2.411159527276894, 48.8567529711889], [2.411054138668113, 48.856657135374185], [2.410921093324513, 48.856536407912515], [2.410815705582139, 48.85644057276841], [2.410682661344068, 48.85631984501809], [2.410577274488328, 48.856224008746], [2.410568388117732, 48.85622040985779], [2.410365533490377, 48.85619908882951], [2.410164596581339, 48.85617861599911], [2.410144346862939, 48.85617448441267], [2.410131317381654, 48.856183517072935], [2.410041540336929, 48.85622498042585], [2.409960630290801, 48.856263433253254], [2.409959427738816, 48.85626407575224], [2.409840799088283, 48.856335239691234], [2.40972069817828, 48.856406642668034], [2.409602070250164, 48.85647780546869], [2.409481968684401, 48.85654920819675], [2.409363338732691, 48.85662037164412], [2.40924323651116, 48.856691774123405], [2.409228884221477, 48.85669339673585], [2.409095088875348, 48.856656710113334], [2.40896462758382, 48.85662049037904], [2.408830832610964, 48.85658380345864], [2.408700373058649, 48.85654758254133], [2.408697540415117, 48.85654702533896], [2.408520323998397, 48.85652563092146], [2.408318839927163, 48.8565013228795], [2.408278551341216, 48.85649645875276], [2.408246181469436, 48.85650286300952]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 23, "zemmour_eric": 65.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-34", "circ_bv": "15", "num_bureau": 34, "roussel_fabien": 15.0, "nb_emargement": 1031.0, "nb_procuration": 30.0, "nb_vote_blanc": 15.0, "jadot_yannick": 36.0, "le_pen_marine": 95.0, "nb_exprime": 1009.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1472.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "80", "geo_point_2d": [48.85836918135714, 2.4100058436085177], "melenchon_jean_luc": 520.0, "poutou_philippe": 12.0, "macron_emmanuel": 198.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389641997276682, 48.87527228488151], [2.389653658167048, 48.87527313305178], [2.389727439965252, 48.87530752377443], [2.389792998786232, 48.87533321286088], [2.38979645336295, 48.875334171172376], [2.389950046686924, 48.875361143472794], [2.39010801448709, 48.875387260113655], [2.390261606765599, 48.87541423200613], [2.390419574882999, 48.875440348234584], [2.3904227413278702, 48.87544064764857], [2.39059643597649, 48.87544351594195], [2.390822856801756, 48.87544614958533], [2.390996550127395, 48.875449017291224], [2.391222970996803, 48.875451650177794], [2.39139666573668, 48.87545451641078], [2.391623085286955, 48.87545714853366], [2.391796780056682, 48.875460015085324], [2.391798602169847, 48.87545996498707], [2.391940893796665, 48.87544971059831], [2.392162794924686, 48.87543645812543], [2.3922576295424562, 48.8754296235608], [2.392278871731363, 48.87542587326801], [2.392273903493549, 48.87539069674503], [2.3923537828273442, 48.87527504970784], [2.392433083510328, 48.875160238747235], [2.392512960774004, 48.87504459157273], [2.392592260755138, 48.87492978048272], [2.392672138675305, 48.874814133184756], [2.392751437944211, 48.874699322864615], [2.392831313794188, 48.874583675429356], [2.392910612371951, 48.8744688640805], [2.392912780555876, 48.874449647337556], [2.392887216340921, 48.8744466578064], [2.392767263508722, 48.8743776766845], [2.392593170482448, 48.87427762576481], [2.39247321842895, 48.874208644337706], [2.392299126532474, 48.874108592975055], [2.392179175257775, 48.874039611242736], [2.392177787317847, 48.8740389117085], [2.392003248222547, 48.87396208380978], [2.3918284112287083, 48.87388512463107], [2.3916538745272913, 48.87380829621915], [2.39147903720266, 48.87373133651252], [2.39147662215808, 48.87372997973158], [2.391351120904498, 48.87364095424879], [2.391220101906506, 48.87354801544107], [2.391094601529796, 48.873458989674695], [2.390963584821044, 48.87336604967853], [2.39096499384255, 48.8733529337652], [2.391125232893031, 48.87326743445331], [2.391285721110662, 48.87318180128991], [2.391445959108315, 48.87309630153541], [2.391606446260874, 48.87301066882804], [2.391766681842213, 48.87292516862405], [2.391927167950716, 48.872839534574105], [2.392087403842435, 48.87275403393448], [2.392247888885889, 48.87266840034056], [2.392408123724698, 48.872582899258326], [2.392568607724094, 48.872497264321886], [2.392569002734135, 48.87248350021156], [2.3924450128211863, 48.87241204025066], [2.392325156357643, 48.872342962792125], [2.392201165750484, 48.87227150256263], [2.392081311296979, 48.87220242485806], [2.391957321358889, 48.87213096436688], [2.391837466188967, 48.872061886402456], [2.391782130077558, 48.87203058717523], [2.391770043141423, 48.87203744614146], [2.391712777425221, 48.872080792677004], [2.391590903166128, 48.87217235601112], [2.391466346403599, 48.87226663685847], [2.391344471276485, 48.872358199926275], [2.391219912260321, 48.8724524804944], [2.39109803762836, 48.87254404330281], [2.390973477721733, 48.87263832359863], [2.390851602221741, 48.87272988614074], [2.390727041435161, 48.872824165264966], [2.390605165056612, 48.872915728440034], [2.390480603379559, 48.87301000729195], [2.390358724769661, 48.873101570193775], [2.390234163565427, 48.873195848780306], [2.390156290582661, 48.873254352163734], [2.390144141001651, 48.87326081313589], [2.39013799090393, 48.873268146450066], [2.390123517237898, 48.87327899332337], [2.390079512053758, 48.873312053468844], [2.390066605383817, 48.873314939319364], [2.390038949817166, 48.87331130808366], [2.390021476652025, 48.873319483026805], [2.3900094275248263, 48.873345885432904], [2.389871047295566, 48.87345006412278], [2.389731326763807, 48.873555252059994], [2.389592945422088, 48.873659430408615], [2.38945322376699, 48.87376461800127], [2.389314841312804, 48.87386879600864], [2.389175118534561, 48.87397398325674], [2.389172744709019, 48.87398329903262], [2.389272500941784, 48.874145005485154], [2.389389221582486, 48.87427945593007], [2.3893895662037252, 48.874287972576845], [2.389308960970598, 48.874393466883966], [2.389236232642402, 48.874488652690616], [2.389155626777606, 48.8745941477746], [2.389082897888979, 48.874689333470755], [2.389002291403049, 48.87479482843232], [2.388929561953986, 48.874890014018014], [2.388891679529742, 48.87492826351818], [2.38889253223472, 48.87492902780764], [2.388919121007667, 48.87494102844139], [2.389061767304145, 48.87500752026019], [2.389237955133102, 48.875087039903654], [2.389380602236484, 48.875153531333716], [2.389556792409376, 48.87523305050436], [2.389625658551257, 48.87526515080548], [2.389641997276682, 48.87527228488151]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 19, "zemmour_eric": 40.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-13", "circ_bv": "15", "num_bureau": 13, "roussel_fabien": 31.0, "nb_emargement": 1240.0, "nb_procuration": 84.0, "nb_vote_blanc": 11.0, "jadot_yannick": 120.0, "le_pen_marine": 50.0, "nb_exprime": 1218.0, "nb_vote_nul": 11.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1528.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1240, "quartier_bv": "77", "geo_point_2d": [48.87418114193242, 2.3909388601758397], "melenchon_jean_luc": 622.0, "poutou_philippe": 3.0, "macron_emmanuel": 281.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.399355427108769, 48.86589458923271], [2.399333761581784, 48.86587537943159], [2.399293774190014, 48.86582988710575], [2.399206174699943, 48.865731520126296], [2.399098083412403, 48.86560854858127], [2.399010484663924, 48.86551018143892], [2.398902392934564, 48.86538720968573], [2.3988147949277723, 48.865288842380494], [2.398800256857792, 48.86528459461689], [2.398648012455018, 48.86530556230559], [2.398506531398867, 48.865325348201786], [2.398501043081168, 48.865325370981964], [2.398380214739691, 48.86530835700824], [2.398247305937341, 48.86529089545716], [2.398200059579208, 48.865277282015114], [2.398194642295544, 48.86528036019633], [2.398176402250356, 48.86530369808304], [2.398084760228158, 48.8654160126564], [2.39801162103385, 48.86550959613622], [2.398005267567087, 48.86551382435188], [2.398000569012074, 48.865528075939274], [2.397912469821712, 48.86564103322303], [2.39782644090675, 48.86575174890216], [2.397738340960569, 48.865864706034884], [2.397652309942949, 48.86597542155961], [2.397564209240933, 48.866088378541356], [2.397478178846972, 48.86619909392542], [2.39739214809784, 48.86630980833728], [2.397304046255801, 48.86642276599264], [2.397218014767104, 48.866533480256976], [2.397129912179618, 48.866646436862034], [2.397112794613329, 48.866668464483816], [2.39711317200064, 48.86667107446772], [2.397155919974988, 48.86668440754878], [2.397329549616976, 48.86676309457027], [2.397498769423889, 48.86683957913547], [2.397667991080442, 48.866916064362286], [2.397841622278416, 48.866994749725144], [2.398010843589659, 48.86707123355037], [2.398184475812195, 48.86714991930407], [2.3983536994940162, 48.86722640264067], [2.398527332762103, 48.86730508698671], [2.398696556077831, 48.86738157072025], [2.398870190380978, 48.86746025455788], [2.398875752801482, 48.86747048638537], [2.398897919418281, 48.867474076353155], [2.398898243473503, 48.867474228170096], [2.399053397148137, 48.867549028207186], [2.399207080437666, 48.86762275763757], [2.399362234998135, 48.8676975572643], [2.3995159177998002, 48.867771286281396], [2.399671073246106, 48.86784608549772], [2.399824758296591, 48.867919813215906], [2.399979914628735, 48.86799461202184], [2.40013359918099, 48.86806834022601], [2.40015789263365, 48.868076913952756], [2.400160781573603, 48.86807629889475], [2.400252687757837, 48.86797835394097], [2.4003430530657512, 48.867882430095534], [2.400434958565238, 48.86778448498466], [2.400525323201216, 48.867688560984796], [2.400617228015967, 48.86759061571678], [2.400707591980014, 48.867494691562484], [2.400726499111429, 48.867487514184205], [2.40072523030774, 48.86747350154175], [2.400706820777052, 48.86745235676156], [2.4006048921937593, 48.867334959382994], [2.400510350732583, 48.867226373746355], [2.40041581101833, 48.867117788930535], [2.400313883745482, 48.86700039126859], [2.400219343498076, 48.8668918053693], [2.400117417099787, 48.86677440841538], [2.400022879035147, 48.8666658223455], [2.399920953532114, 48.866548424301016], [2.399826414924066, 48.86643983804701], [2.399718320702724, 48.86631686714084], [2.399623784300283, 48.866208280710865], [2.399515691048094, 48.866085308696725], [2.399421154114741, 48.86597672297643], [2.399353050601012, 48.86589924397807], [2.399355427108769, 48.86589458923271]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 36, "zemmour_eric": 52.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "20-5", "circ_bv": "15", "num_bureau": 5, "roussel_fabien": 36.0, "nb_emargement": 1138.0, "nb_procuration": 70.0, "nb_vote_blanc": 20.0, "jadot_yannick": 122.0, "le_pen_marine": 45.0, "nb_exprime": 1116.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 0, "nb_inscrit": 1375.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1140, "quartier_bv": "79", "geo_point_2d": [48.86665929451442, 2.398934428655571], "melenchon_jean_luc": 427.0, "poutou_philippe": 8.0, "macron_emmanuel": 351.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.310029781001381, 48.85096974555505], [2.3100483307179323, 48.85095887943487], [2.310108790247575, 48.850834479655425], [2.310170012241096, 48.850710728170924], [2.31023047119235, 48.850586328302235], [2.31029169260537, 48.85046257672791], [2.310352150978246, 48.85033817677001], [2.310413371810874, 48.85021442510579], [2.310473829605378, 48.85009002505866], [2.310535049857418, 48.84996627330463], [2.310595507073559, 48.84984187316828], [2.310656725382446, 48.84971812131651], [2.310717183382909, 48.8495937210988], [2.310778401111433, 48.84946996915724], [2.310838858533439, 48.849345568850296], [2.31090007568151, 48.84922181681884], [2.310960532525272, 48.84909741642271], [2.311021749092793, 48.84897366430143], [2.311082205358218, 48.848849263816106], [2.311143421345402, 48.84872551160498], [2.311157492733225, 48.84871933936143], [2.311336184759397, 48.84872904598717], [2.31151398253066, 48.84873970861697], [2.311692674704851, 48.848749413810815], [2.311870471255992, 48.84876007590282], [2.312049163554537, 48.848769781463346], [2.312226960248101, 48.84878044302541], [2.312405654057393, 48.8487901471619], [2.312583450893371, 48.84880080819397], [2.312762143464362, 48.84881051268934], [2.31293994044275, 48.84882117319148], [2.312953923389356, 48.848815389653765], [2.313027796673673, 48.848686107961925], [2.313097313452863, 48.848569090973555], [2.313171184669673, 48.84843980915676], [2.313240700810194, 48.84832279115988], [2.313310216638526, 48.84820577311033], [2.313384086812165, 48.848076491119926], [2.313453603340667, 48.84795947386831], [2.313527472809473, 48.84783019176073], [2.3135666025672093, 48.84776432125999], [2.313599160454583, 48.847761104869825], [2.313612958012023, 48.84772477785295], [2.313643342713153, 48.84767363007224], [2.313717231651515, 48.847548287137464], [2.313786745364871, 48.84743126962898], [2.313860634977215, 48.84730592658617], [2.313930148045297, 48.84718890896893], [2.314004035606604, 48.84706356580248], [2.314073548041261, 48.84694654717714], [2.3141474362648218, 48.846821204802], [2.314216948054218, 48.84670418606791], [2.314217794271823, 48.8467019083357], [2.314240233806633, 48.84656715861074], [2.314258296373434, 48.8464388259153], [2.314280735690244, 48.846304076150915], [2.314298799428715, 48.84617574342687], [2.314319325208662, 48.84613618296141], [2.314283236686987, 48.84612166545063], [2.314171653093543, 48.846087644169415], [2.314048646908056, 48.84604530653018], [2.313925639571683, 48.846002967855746], [2.313751540683167, 48.845949884491766], [2.313742975134629, 48.84594925436944], [2.313718091685864, 48.84595276844199], [2.313697175687949, 48.845960364096435], [2.3136909646967823, 48.845966364993956], [2.313549136479291, 48.84605760653654], [2.313402962489385, 48.846151517458495], [2.313261133275647, 48.84624275774519], [2.313114958235598, 48.84633666919893], [2.312973128013758, 48.84642790912907], [2.312826951947261, 48.84652181931606], [2.312685120705457, 48.846613059788886], [2.312538943600551, 48.84670696960838], [2.312397111362491, 48.84679820882534], [2.312250933207508, 48.8468921191766], [2.312207737336138, 48.84691990669239], [2.312197613099932, 48.84692410157528], [2.31218630788375, 48.846935488167944], [2.31208767181586, 48.84699893950176], [2.311953302665944, 48.847084408508316], [2.311811468375362, 48.847175647000086], [2.31167709969124, 48.84726111479143], [2.311535264424295, 48.84735235384058], [2.311400893468968, 48.847437821300325], [2.311259058612031, 48.84752905911611], [2.31112468673622, 48.847614527151364], [2.310982849552166, 48.847705764617395], [2.31084847813037, 48.84779123233674], [2.310706639981813, 48.847882469460856], [2.310572266300672, 48.847967935949285], [2.310520979557785, 48.84800798128857], [2.310521276926273, 48.84800970977757], [2.31037943761024, 48.84810094649586], [2.310245181729091, 48.84818803393592], [2.310103341444337, 48.84827927031226], [2.309969084642396, 48.848366357428525], [2.309827244739544, 48.84845759437013], [2.30969298565416, 48.84854468115476], [2.309551144794587, 48.84863591685514], [2.309416884788393, 48.84872300331602], [2.309275042960083, 48.848814238674485], [2.309140782033074, 48.84890132481157], [2.30899893923602, 48.84899255982808], [2.308864677376262, 48.849079646540666], [2.308722833610457, 48.84917088121523], [2.308588572204358, 48.84925796671265], [2.308446726107131, 48.8493492010374], [2.308312463780305, 48.84943628621101], [2.3081706167143112, 48.84952752019382], [2.308036353466648, 48.84961460504362], [2.307997999332544, 48.84963918849467], [2.308024416340514, 48.84966659012392], [2.308143580334693, 48.849767553513345], [2.308256534223552, 48.84986670373082], [2.308369489905019, 48.84996585384076], [2.308488655251988, 48.850066816859304], [2.308601611808863, 48.85016596673227], [2.3087207780631642, 48.850266929501494], [2.308833735495456, 48.85036607913748], [2.308952902657098, 48.85046704165738], [2.309065859602116, 48.8505661910485], [2.309185029033805, 48.850667153326924], [2.309189093576134, 48.85066946296798], [2.309387951999679, 48.850742173038704], [2.309592899383305, 48.85081831658783], [2.309791758938315, 48.850891025977695], [2.3099967061348, 48.85096716881706], [2.310029781001381, 48.85096974555505]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 154, "zemmour_eric": 141.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "7-14", "circ_bv": "12", "num_bureau": 14, "roussel_fabien": 13.0, "nb_emargement": 1127.0, "nb_procuration": 93.0, "nb_vote_blanc": 7.0, "jadot_yannick": 62.0, "le_pen_marine": 58.0, "nb_exprime": 1119.0, "nb_vote_nul": 1.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1367.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1127, "quartier_bv": "27", "geo_point_2d": [48.84846100912339, 2.311280678675644], "melenchon_jean_luc": 109.0, "poutou_philippe": 0.0, "macron_emmanuel": 550.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.290814669979866, 48.86635571950642], [2.2908378571299393, 48.86634786797885], [2.291009445503388, 48.866273330227415], [2.2911806826236463, 48.8661986228686], [2.291352270014991, 48.866124084615606], [2.291523504789937, 48.866049376748194], [2.291695091199184, 48.86597483799368], [2.291866326355022, 48.86590012963378], [2.29203791178217, 48.86582559037772], [2.292209144604925, 48.86575088060993], [2.292380729037759, 48.86567634175166], [2.292551962241297, 48.865601631491394], [2.292555777544837, 48.865599138562565], [2.292662880770998, 48.86549403325399], [2.292770202535857, 48.86538796053382], [2.292877303519956, 48.865282855904574], [2.292984624413179, 48.865176782971844], [2.2930917258936, 48.86507167813871], [2.293199045915094, 48.86496560499352], [2.293214411188536, 48.86496200660071], [2.293343843283029, 48.86498842306304], [2.293580038852279, 48.86503680668284], [2.293709471318013, 48.865063222747956], [2.29371109340123, 48.86506363073261], [2.293871869157224, 48.86511177101736], [2.294024746773524, 48.8651577177451], [2.294177623296615, 48.865203664267625], [2.294338399903598, 48.86525180481888], [2.294491278342402, 48.86529775094488], [2.294652055541874, 48.86534589017144], [2.294669787904723, 48.865341843277626], [2.294767945901226, 48.86521705865996], [2.2948621280723103, 48.86509632997689], [2.294875070299179, 48.86509146879804], [2.295066018470088, 48.865099084256514], [2.295271496205783, 48.8651072355403], [2.29546244449243, 48.86511485036617], [2.295667922352436, 48.86512300096922], [2.295858869391733, 48.86513061515453], [2.296064348738913, 48.86513876508489], [2.29625529589403, 48.86514637863758], [2.296460775353254, 48.86515452878655], [2.296651722623981, 48.865162141706705], [2.296857202219635, 48.86517029027559], [2.297048149606059, 48.86517790256319], [2.2972536279627, 48.865186050443405], [2.297444576827995, 48.865193662106435], [2.297650055308794, 48.86520180930593], [2.297841002926689, 48.86520942032834], [2.298046482894716, 48.865217566855144], [2.29823743062818, 48.865225177245], [2.298442910720345, 48.86523332309107], [2.298633858569571, 48.86524093284831], [2.298839338785864, 48.86524907801368], [2.299030286750639, 48.8652566871384], [2.29923576709115, 48.86526483162303], [2.299426715171567, 48.86527244011514], [2.299632194273002, 48.86528058391109], [2.299823143832235, 48.86528819177859], [2.299877844092862, 48.865307021284764], [2.29990771560988, 48.86530648104196], [2.299940450916901, 48.86527674308364], [2.300102268103829, 48.86514424495269], [2.300197872002462, 48.86505739174665], [2.300201415064743, 48.86505534665812], [2.300360735985361, 48.864989862975115], [2.300515301209168, 48.8649279774606], [2.300669866065856, 48.86486609174302], [2.300829185818853, 48.86480060742524], [2.300983749924673, 48.86473872129519], [2.301143068893595, 48.86467323655204], [2.301234120349473, 48.864608917897286], [2.301393438606619, 48.864543432813214], [2.30148448816346, 48.864479113952484], [2.301573456972186, 48.864466982034614], [2.301547902015804, 48.864360436226434], [2.301556603295435, 48.864219897940494], [2.301566205738245, 48.86408626021201], [2.301574906922705, 48.86394572188996], [2.301584507904985, 48.863812084118976], [2.301594110201049, 48.86367844633903], [2.301602811254177, 48.86353790706394], [2.3016141732220072, 48.86349090316266], [2.30160396856984, 48.86348116750056], [2.301415807920899, 48.86347027808769], [2.3012760719668712, 48.86346478661557], [2.301087911445633, 48.86345389668704], [2.300948175570107, 48.86344840483194], [2.30094764977366, 48.86344837747824], [2.300771125976237, 48.863436902992476], [2.300582965649289, 48.86342601316909], [2.300406442007967, 48.86341453814522], [2.300218281837925, 48.86340364774828], [2.300041759715746, 48.86339217219424], [2.299860372218312, 48.86336896736248], [2.299858376972076, 48.863368738046944], [2.299670330220926, 48.86333746546271], [2.299488943079405, 48.86331426006687], [2.299300896734561, 48.8632829877999], [2.29911950995937, 48.86325978094375], [2.298931464033029, 48.86322850809475], [2.29874940686515, 48.86318566211581], [2.298748040689884, 48.863185383406034], [2.298540395164608, 48.86313507184539], [2.298358340007893, 48.863092225275956], [2.29817628513862, 48.86304937932719], [2.297968640707572, 48.86299906676841], [2.297786586496355, 48.862956219323955], [2.297578944175977, 48.86290590609278], [2.29757759169981, 48.86290552222578], [2.297418267774614, 48.86284893602696], [2.297250434337762, 48.862794068667206], [2.297091112471767, 48.86273748203512], [2.296923279738405, 48.862682614211096], [2.296763958568591, 48.86262602713782], [2.296596126538925, 48.862571158849455], [2.296436806065291, 48.862514571335005], [2.296268974739122, 48.862459702582335], [2.296268030620772, 48.862459362471704], [2.29610870948238, 48.862402774506755], [2.29597549213418, 48.862350200808976], [2.295816171635205, 48.86229361334827], [2.295682954861441, 48.86224103931974], [2.295682149823254, 48.862240696425445], [2.295535925928925, 48.86217044175866], [2.295386105851878, 48.86210145270611], [2.295239882747572, 48.8620311976688], [2.295090063462966, 48.861962208236996], [2.294943839785687, 48.86189195282104], [2.294794021281349, 48.861822963909276], [2.294647799769256, 48.86175270723158], [2.294497982057247, 48.861683717940515], [2.294351761322995, 48.86161346179158], [2.294201944415699, 48.861544471222], [2.294199633147496, 48.861543126548575], [2.294134071945184, 48.861495261232704], [2.294133465340643, 48.861491742983766], [2.294102530981856, 48.86145891311077], [2.2940323728441028, 48.861407692113715], [2.293907157986785, 48.861323480838614], [2.293771439695186, 48.86122439419454], [2.293646225700159, 48.861140182632475], [2.293510508382301, 48.86104109567613], [2.293385293898888, 48.860956882919794], [2.293260081170926, 48.86087267093342], [2.293124365284309, 48.86077358351523], [2.293115961661671, 48.86076417160578], [2.293083494676486, 48.86075165328274], [2.292947779428746, 48.86065256655281], [2.292805128567932, 48.86054792743128], [2.292669414392489, 48.86044883946816], [2.292526765999185, 48.86034420090297], [2.292391052883823, 48.86024511260597], [2.2922484042444218, 48.86014047368171], [2.292112692189132, 48.86004138505083], [2.29197004604184, 48.859936744884315], [2.291940660877831, 48.859933008679214], [2.291882269274642, 48.85996436181704], [2.291747796232804, 48.86005024579555], [2.291605586964033, 48.8601396803416], [2.291471113013507, 48.86022556399562], [2.291328904141877, 48.86031499910607], [2.291194429282858, 48.86040088243564], [2.291052218107128, 48.86049031629581], [2.290917742339409, 48.86057619930088], [2.290775530197947, 48.860665633717396], [2.290641054884583, 48.86075151640607], [2.290498841789622, 48.86084095047962], [2.290364364216933, 48.86092683193646], [2.290222150168465, 48.86101626566709], [2.290087671674911, 48.86110214769869], [2.289945458035902, 48.86119158109445], [2.289907378035339, 48.861193794194264], [2.289874370421194, 48.86121597514978], [2.28973215474225, 48.86130540827479], [2.2895893904478513, 48.86139765294594], [2.289447175146873, 48.86148708572578], [2.289304409850068, 48.86157933004186], [2.289162192213158, 48.86166876156098], [2.289019425913938, 48.861761005521956], [2.288877208642724, 48.86185043759514], [2.2887344413409823, 48.861942681201036], [2.288592221721645, 48.86203211291277], [2.288449454780571, 48.862124356171684], [2.288307234188379, 48.86221378663085], [2.288185613161493, 48.862292366438716], [2.288164464881774, 48.86230602952657], [2.28817834667097, 48.86232607592934], [2.288227622220286, 48.86235402410616], [2.288351781707818, 48.86245204456981], [2.288476858065991, 48.86255063423844], [2.288601017115715, 48.86264865531732], [2.288726094417555, 48.86274724470801], [2.288850254417043, 48.86284526461164], [2.288975332650283, 48.86294385462366], [2.289099494950284, 48.86304187425941], [2.289224574139484, 48.86314046309415], [2.289348736013964, 48.863238482445844], [2.2894738161345902, 48.86333707190189], [2.289597978946578, 48.863435090977646], [2.289723060023168, 48.86353367925639], [2.289847223760413, 48.86363169895541], [2.289972305780711, 48.863730286956226], [2.289975171209769, 48.863737978122316], [2.289942406086895, 48.86383696150815], [2.289909099439936, 48.8639370622556], [2.2899123384445073, 48.86394504792749], [2.290023312151392, 48.86402538613736], [2.290138735034954, 48.864109658306944], [2.29013797487544, 48.86412222852591], [2.289996488600153, 48.86421030358432], [2.289855723624054, 48.864297728923056], [2.289714235044162, 48.86438580272643], [2.289573469120202, 48.86447322771939], [2.289431980937391, 48.86456130208248], [2.289291212714767, 48.86464872582222], [2.2891497235780323, 48.86473679983772], [2.289008955770603, 48.864824223239665], [2.289005379831309, 48.86483363978207], [2.289045185642932, 48.864913325786986], [2.289092802618863, 48.86500668692876], [2.289105065321306, 48.865012801605346], [2.289272097184155, 48.865018119515554], [2.289436044428899, 48.86502292423592], [2.289445612462457, 48.86502592191821], [2.289564468515438, 48.865113833926685], [2.289682750373554, 48.86520109756574], [2.28980160723853, 48.86528900842552], [2.289919889891702, 48.865376271816345], [2.290038747544259, 48.86546418332601], [2.290157030992394, 48.86555144646869], [2.290275890820142, 48.8656393568377], [2.290394175063144, 48.86572661973224], [2.290396503363718, 48.86572902220989], [2.290463841293444, 48.865831236825144], [2.290541943206534, 48.86594966571904], [2.290609280343832, 48.866051880224], [2.290687382918454, 48.86617030899934], [2.290754721989325, 48.8662725234102], [2.290808408653191, 48.86635392957341], [2.290814669979866, 48.86635571950642]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 151, "zemmour_eric": 172.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-64", "circ_bv": "04", "num_bureau": 64, "roussel_fabien": 2.0, "nb_emargement": 993.0, "nb_procuration": 56.0, "nb_vote_blanc": 10.0, "jadot_yannick": 25.0, "le_pen_marine": 56.0, "nb_exprime": 981.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 3, "nb_inscrit": 1298.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 992, "quartier_bv": "64", "geo_point_2d": [48.86343575928678, 2.293991110625479], "melenchon_jean_luc": 102.0, "poutou_philippe": 3.0, "macron_emmanuel": 450.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.357370736444245, 48.852774739702326], [2.357393354819877, 48.85276671483216], [2.357529570124974, 48.852719925357626], [2.35769904285254, 48.852661369042], [2.3578702244696, 48.85260256803854], [2.358039696421601, 48.852544012133585], [2.358210875917051, 48.852485209729934], [2.358380348467327, 48.85242665334362], [2.358551527192839, 48.85236785044644], [2.358720997615879, 48.852309293564154], [2.358721925939351, 48.85230894149599], [2.358893167071353, 48.852242344640096], [2.359047181993634, 48.85217850081703], [2.359218422292355, 48.8521119025885], [2.359372436430598, 48.85204805833931], [2.359526450191344, 48.85198421388819], [2.359697689228128, 48.851917615861474], [2.359851702204841, 48.8518537709842], [2.360022940408331, 48.85178717158488], [2.360036046855992, 48.851786698477], [2.360068136135933, 48.85175512649506], [2.360152089271941, 48.85167152541351], [2.360269201664453, 48.8515954807685], [2.360272271065576, 48.85159245286472], [2.360326106337272, 48.85150492232225], [2.3604100586453782, 48.85142132194014], [2.36041066949046, 48.85142007510256], [2.36043340827373, 48.851327649462156], [2.360491354086836, 48.851171197162884], [2.360514093981119, 48.85107877149372], [2.360514482410185, 48.85107654766647], [2.36051245338859, 48.8509409446781], [2.360508319861463, 48.85080315218703], [2.360506290866548, 48.85066754916522], [2.360503422529474, 48.85057191348652], [2.360507046667604, 48.85056021066022], [2.360504516760828, 48.85055215330463], [2.360503251608353, 48.85050999645742], [2.360503465509908, 48.85050822407197], [2.360533249032636, 48.850377058485456], [2.360565150261877, 48.85026020934363], [2.360594932124899, 48.85012904370524], [2.360626833075134, 48.85001219362165], [2.360658733871172, 48.84989534441657], [2.360688516652809, 48.849764178719155], [2.360720415796129, 48.84964732946433], [2.360771746234912, 48.84954369571929], [2.360772424177112, 48.84954208679589], [2.360838746527552, 48.849427294755365], [2.360909312481627, 48.84929891987392], [2.360975634221058, 48.84918412773244], [2.361046199508646, 48.84905575274227], [2.361112520637076, 48.848940960499824], [2.361183086620746, 48.848812585408155], [2.361249405775626, 48.84869779305747], [2.361319971092822, 48.84856941785704], [2.361386290999373, 48.84845462541272], [2.361456854287451, 48.848326250096214], [2.361425789089392, 48.848302737884964], [2.3613143302107362, 48.84833308081647], [2.361163453142528, 48.84841279382539], [2.361022931093069, 48.848491602330746], [2.360872053120183, 48.84857131496084], [2.360731530191468, 48.84865012401205], [2.360580651313999, 48.84872983626335], [2.360440128879809, 48.848808644968315], [2.36029960466898, 48.848887452596095], [2.360148724443709, 48.84896716428573], [2.360008199353702, 48.84904597245931], [2.359857318223634, 48.84912568377013], [2.359716793628254, 48.84920449159754], [2.359565910230818, 48.84928420252219], [2.359564622756749, 48.84928484226782], [2.3594422658696113, 48.849338441823456], [2.359291381664525, 48.84941815239232], [2.359169024172383, 48.84947175256142], [2.359110435263862, 48.84950270485916], [2.359108957947146, 48.84950326713762], [2.3589311649688662, 48.849561515662415], [2.358763312578664, 48.84961723784535], [2.358585517462515, 48.84967548584321], [2.358417664335724, 48.849731207535534], [2.35824981084987, 48.8497869289896], [2.35807201594349, 48.849845176222864], [2.357904161720949, 48.8499008971863], [2.357726364676699, 48.849959143892605], [2.357558509717472, 48.850014864365455], [2.357380711898037, 48.85007311055219], [2.357212856202225, 48.85012883053439], [2.357035058981297, 48.85018707530955], [2.356867202537708, 48.8502427957004], [2.356689403178911, 48.850301039948654], [2.356521545998634, 48.85035675984889], [2.356343747227365, 48.85041500358483], [2.356175889321514, 48.85047072209513], [2.355998088401363, 48.85052896620346], [2.355780162249546, 48.85059255742058], [2.355602361834103, 48.85065080094177], [2.355563500841131, 48.85065323304556], [2.355539877952233, 48.85066903429558], [2.355547372646207, 48.85068979671758], [2.355587032976679, 48.8507235616924], [2.355681284497488, 48.85083252437122], [2.355776714727579, 48.85094284953757], [2.3558709684042523, 48.85105181205288], [2.355966399448631, 48.85116213614683], [2.356060652555945, 48.8512710984839], [2.356156085755011, 48.851381423311516], [2.356250339655592, 48.85149038547768], [2.356345773657955, 48.851600710132175], [2.356440028351814, 48.851709672127456], [2.356535461805647, 48.85181999570235], [2.356530144176079, 48.851832353016626], [2.356350667402904, 48.85189684090093], [2.356174293457991, 48.85196021292326], [2.355994815803957, 48.852024700266384], [2.3558184409935192, 48.852088071756874], [2.355638962458828, 48.85215255855883], [2.355462586782763, 48.85221592951751], [2.355283107367315, 48.85228041577827], [2.355106730825727, 48.85234378620509], [2.354930355218007, 48.85240715637568], [2.354750873122514, 48.85247164181968], [2.354574496649172, 48.852535011458464], [2.3543950136840612, 48.852599495461895], [2.35421863633406, 48.85266286546812], [2.354039153850959, 48.85272734893771], [2.353862774272672, 48.85279071840471], [2.353683290908824, 48.85285520133315], [2.353664476472079, 48.852851178519884], [2.353614453972541, 48.8527820519516], [2.353563504399817, 48.85271164596384], [2.353543103583725, 48.85270829087442], [2.353480559432934, 48.85273881248547], [2.353437274161562, 48.85275993465812], [2.353431777661918, 48.8527677491237], [2.353444142075873, 48.85289333339274], [2.353456022353587, 48.85301400635609], [2.353467902686325, 48.85313467930518], [2.35348026727441, 48.853260263529016], [2.353487312523137, 48.85326756567629], [2.353605260403886, 48.85331025669307], [2.353837276414777, 48.85339423421244], [2.35395522486886, 48.853436924879404], [2.353959699551047, 48.85343952658663], [2.354063532681261, 48.853533928403785], [2.35416607110807, 48.85362715037585], [2.354268608527835, 48.85372037314418], [2.354372442788466, 48.853814773770154], [2.35441391410003, 48.853856720324806], [2.35442549082582, 48.85385359188002], [2.354526365906465, 48.853810437415454], [2.354664219443946, 48.85375009780873], [2.354837390871809, 48.85367601299692], [2.354975243693502, 48.85361567302453], [2.355113096195931, 48.85355533289008], [2.355286266338328, 48.85348124741567], [2.355287507050424, 48.853480764852534], [2.355458692717743, 48.8534219673351], [2.355628614854759, 48.85336513594873], [2.355799799757312, 48.85330633793719], [2.355969721134021, 48.85324950695982], [2.356140905282922, 48.85319070755482], [2.356310825910647, 48.853133876087185], [2.356482010646337, 48.85307507709472], [2.356651930524975, 48.85301824513676], [2.356823113144328, 48.852959444743576], [2.356993032273776, 48.85290261229529], [2.357164214117259, 48.85284381230726], [2.357334132497721, 48.85278697936872], [2.357369098227982, 48.85277496833319], [2.357370736444245, 48.852774739702326]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 88, "zemmour_eric": 85.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "4-9", "circ_bv": "07", "num_bureau": 9, "roussel_fabien": 22.0, "nb_emargement": 918.0, "nb_procuration": 72.0, "nb_vote_blanc": 6.0, "jadot_yannick": 55.0, "le_pen_marine": 44.0, "nb_exprime": 911.0, "nb_vote_nul": 1.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1128.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 918, "quartier_bv": "16", "geo_point_2d": [48.85132007246511, 2.3577817666186016], "melenchon_jean_luc": 162.0, "poutou_philippe": 1.0, "macron_emmanuel": 425.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.388367632499064, 48.86099808145293], [2.3883732734750662, 48.86099384109565], [2.388407045981393, 48.86092332433151], [2.388473149669099, 48.860787427647814], [2.388533552553911, 48.8606613082377], [2.388599655579203, 48.86052541145201], [2.388660056501601, 48.86039929104204], [2.388726158864491, 48.860263394154316], [2.388786560529212, 48.86013727455697], [2.38885266222981, 48.86000137756726], [2.388913061921595, 48.85987525786928], [2.388928882507698, 48.85984154755812], [2.38893891453657, 48.859835365422676], [2.38894395319524, 48.859822963998894], [2.388991853796004, 48.85972089276664], [2.38905113232271, 48.85959664238117], [2.389114852845068, 48.85946086163714], [2.389174130782499, 48.859336611161595], [2.38923784930336, 48.85920083031333], [2.389297126651731, 48.859076579747715], [2.389356403717379, 48.85895232913884], [2.389420122666735, 48.85881654725414], [2.389479397769769, 48.85869229744758], [2.389543116080488, 48.85855651546554], [2.38954719064871, 48.8585523902651], [2.389567331877246, 48.85854082938844], [2.389597863064381, 48.85851100362255], [2.389598673415337, 48.8585100094817], [2.389571045106789, 48.85848006241772], [2.389489736796479, 48.85844400563778], [2.389422272138974, 48.85841389576541], [2.389418702079555, 48.858412769555045], [2.389235518473449, 48.8583753275799], [2.389055876595807, 48.85833889178538], [2.388876234969517, 48.85830245572002], [2.388693052141085, 48.85826501291077], [2.388513411023144, 48.85822857629833], [2.388330228715196, 48.85819113293115], [2.3881505881058143, 48.858154695771624], [2.387967407681161, 48.85811725185354], [2.387787766217333, 48.85808081413999], [2.387604586313275, 48.85804336966401], [2.387587747532915, 48.85804888102377], [2.387516384869477, 48.85817809096899], [2.387444718202674, 48.858307275919316], [2.387373354830525, 48.858436485749166], [2.387301687453769, 48.85856567058372], [2.387230323362422, 48.85869488119749], [2.3871586552756012, 48.858824065916295], [2.3870872918491273, 48.8589532755224], [2.387015621689303, 48.85908246011848], [2.386944257554195, 48.85921166960915], [2.38687258668428, 48.85934085408953], [2.386854917004332, 48.85934616232968], [2.386699009019588, 48.85930679945548], [2.386547383892811, 48.859268354978525], [2.386391475010403, 48.859228991693904], [2.386239850336981, 48.85919054682463], [2.386216936517382, 48.85918862431363], [2.386207236931003, 48.859204055905224], [2.386084839929586, 48.85930828369593], [2.385961493012058, 48.859413386939515], [2.385839095027177, 48.85951761445916], [2.3857157471077333, 48.85962271832891], [2.385593348139578, 48.85972694557759], [2.38546999923931, 48.8598320482749], [2.385347599287772, 48.85993627525253], [2.385224249385561, 48.860041378576014], [2.385101848450628, 48.86014560528263], [2.384978497567786, 48.860250707433664], [2.384856095649351, 48.86035493386923], [2.384732743764537, 48.86046003664644], [2.384610340862789, 48.860564262810996], [2.384486987997131, 48.860669364415735], [2.384492560389637, 48.86068318273196], [2.384660736964222, 48.86072864880562], [2.384867758945755, 48.8607850857697], [2.385035936165981, 48.86083055221118], [2.385242958969472, 48.86088698762176], [2.385411136846159, 48.8609324535318], [2.385618160460979, 48.86098888828809], [2.38573873516655, 48.86102148433482], [2.385743060220355, 48.86102656085084], [2.385765144635744, 48.86102987946767], [2.38581274711443, 48.861042748781976], [2.385872674336483, 48.86105907994762], [2.385890637241901, 48.86105393074721], [2.385962760049083, 48.86092728550054], [2.386034420838673, 48.86080257231784], [2.386106542948389, 48.86067592695581], [2.3861782030586722, 48.86055121275948], [2.386195025043015, 48.86054582023296], [2.386373394154848, 48.860582710561715], [2.386548878259691, 48.86061922969275], [2.386727247862808, 48.86065612039097], [2.386902732462937, 48.86069263900068], [2.387081102578508, 48.86072952826977], [2.387256586310939, 48.86076604635124], [2.387434958280773, 48.86080293599672], [2.387610442508478, 48.860839453556885], [2.387788814980177, 48.860876342672526], [2.387964299713715, 48.86091285881213], [2.388142672687273, 48.86094974739789], [2.388318157905506, 48.86098626391544], [2.388367632499064, 48.86099808145293]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 25, "zemmour_eric": 74.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-41", "circ_bv": "06", "num_bureau": 41, "roussel_fabien": 38.0, "nb_emargement": 1352.0, "nb_procuration": 97.0, "nb_vote_blanc": 15.0, "jadot_yannick": 116.0, "le_pen_marine": 98.0, "nb_exprime": 1334.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1771.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1352, "quartier_bv": "43", "geo_point_2d": [48.85969256452953, 2.3873785418586295], "melenchon_jean_luc": 554.0, "poutou_philippe": 8.0, "macron_emmanuel": 360.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.28588364888986, 48.840291186649665], [2.28589501729257, 48.840276698198544], [2.286047058285082, 48.84018771991363], [2.286199121742056, 48.840098853986895], [2.286351161696547, 48.84000987530127], [2.286503225490911, 48.83992100808263], [2.286655264395177, 48.839832029895646], [2.286807327152196, 48.83974316227631], [2.28695936503096, 48.83965418278934], [2.287111425388232, 48.83956531476117], [2.287263462216695, 48.83947633577284], [2.287415522899043, 48.83938746735206], [2.287567558702007, 48.83929848706377], [2.287719618347027, 48.839209618242315], [2.287871653099709, 48.83912063845269], [2.288023710345016, 48.83903176922238], [2.288175744072204, 48.838942788132805], [2.288327801630312, 48.83885391940927], [2.28847983431952, 48.83876493791903], [2.288631889490214, 48.838676067887384], [2.288783921141548, 48.838587085996515], [2.288935976625058, 48.83849821647157], [2.288963009668845, 48.83846713118385], [2.288960237344043, 48.83846441299093], [2.288919094581784, 48.83845365386194], [2.288757896296041, 48.838412977423], [2.288550165606744, 48.838358656643784], [2.288388967902698, 48.83831797970424], [2.288181237988661, 48.83826365738043], [2.288070880223395, 48.838235809889994], [2.2880549057313813, 48.838229898572436], [2.2880406817655983, 48.83823018895071], [2.287989842409154, 48.83821735988741], [2.287820060143054, 48.83817143989441], [2.287658864937846, 48.8381307628716], [2.287599385993812, 48.83811467592664], [2.287577026453004, 48.8381185818397], [2.287561185376247, 48.83814936654369], [2.287413352750509, 48.838168532971764], [2.287323980977667, 48.83818078330953], [2.287315997752496, 48.838180227599935], [2.287155460507849, 48.83813490226273], [2.286994822320081, 48.838089307192476], [2.286834285622441, 48.83804398231982], [2.286673649358086, 48.837998386822676], [2.286664195588752, 48.83799806602978], [2.286480709649611, 48.838035992746725], [2.286298905022004, 48.838073598245074], [2.286115418563503, 48.83811152349984], [2.285933613409011, 48.83814912844047], [2.285750126406522, 48.83818705403165], [2.28556832073727, 48.838224657515255], [2.285384833203216, 48.83826258254355], [2.285203026994662, 48.83830018636873], [2.285019537578806, 48.83833810992664], [2.28483773084338, 48.838375713194075], [2.284655923845536, 48.83841331618392], [2.28447243499576, 48.83845123890694], [2.2842906274710533, 48.83848884133904], [2.284107138077287, 48.838526764398495], [2.283925330037974, 48.83856436537356], [2.283741840112569, 48.838602287870096], [2.283560031533848, 48.8386398891867], [2.28337654108917, 48.83867781022103], [2.283369270501305, 48.83868140912152], [2.283264778775721, 48.838785017627835], [2.28316224023168, 48.83888606463657], [2.283059699927578, 48.838987111540064], [2.282955206986164, 48.83909071884832], [2.2829453585300348, 48.83910431767734], [2.282948940452993, 48.83910937203535], [2.283107034276703, 48.83917044084004], [2.283260368427351, 48.83922949239972], [2.283418462967913, 48.83929056168558], [2.283571797824656, 48.83934961283971], [2.283729894469205, 48.83941068081625], [2.283883230032245, 48.83946973156485], [2.284041326031255, 48.83953080001438], [2.284194662300392, 48.83958985035743], [2.284195188027961, 48.83959006305694], [2.284346501481689, 48.839654560280835], [2.284497484520254, 48.83971873785287], [2.284648798721497, 48.83978323468697], [2.284799782505112, 48.83984741187008], [2.284951096091557, 48.83991190830617], [2.285102081994769, 48.83997608420921], [2.285253396316596, 48.8400405811548], [2.285404381602335, 48.84010475666075], [2.285404782652883, 48.840104920943325], [2.285577530250969, 48.840172880370574], [2.285801062074993, 48.840262502816664], [2.285857345263857, 48.84028464408702], [2.28588364888986, 48.840291186649665]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 112, "zemmour_eric": 109.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "15-87", "circ_bv": "13", "num_bureau": 87, "roussel_fabien": 13.0, "nb_emargement": 1217.0, "nb_procuration": 80.0, "nb_vote_blanc": 17.0, "jadot_yannick": 89.0, "le_pen_marine": 63.0, "nb_exprime": 1199.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1513.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1217, "quartier_bv": "60", "geo_point_2d": [48.839001529893906, 2.2859062064989066], "melenchon_jean_luc": 277.0, "poutou_philippe": 4.0, "macron_emmanuel": 477.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.325145239128845, 48.82981880993274], [2.325158358653006, 48.829827451411354], [2.325377856702126, 48.82982947220993], [2.325594906430456, 48.8298304705999], [2.325814403147044, 48.829832490589645], [2.326031452884771, 48.8298334890867], [2.326044535851528, 48.82984475913493], [2.325992391397448, 48.82997631368044], [2.32594699917579, 48.83009997735472], [2.325950884074588, 48.83010863325018], [2.3261152769802083, 48.830211153045305], [2.326275495156415, 48.830310727914885], [2.326435715306947, 48.83041030256868], [2.326600110117291, 48.830512821669785], [2.326760330158295, 48.83061239496377], [2.326924726244294, 48.830714913600204], [2.326939685577617, 48.83071657259129], [2.327128592024886, 48.830660261742075], [2.327306131212262, 48.83060734385412], [2.327483670027707, 48.83055442659946], [2.32767257531142, 48.8304981139836], [2.327850113382807, 48.8304451961798], [2.32803901651281, 48.83038888297203], [2.328216555202411, 48.83033596462678], [2.328405457540673, 48.83027965083473], [2.328582995497993, 48.83022673104108], [2.32877189703303, 48.83017041756411], [2.328823718124933, 48.8301549711331], [2.328849615252271, 48.83015130491316], [2.3288526254293282, 48.83014741941851], [2.328978340149513, 48.8301099454685], [2.3290825859135103, 48.83008188072678], [2.32910550279076, 48.83007543215561], [2.329097755675914, 48.830055642025144], [2.329070107721382, 48.83001880142924], [2.328963659459105, 48.82987964652786], [2.328888075513197, 48.829778930417596], [2.328887612800788, 48.829778366611094], [2.328780828518992, 48.8296584022912], [2.328669984258603, 48.82953534460365], [2.328563200986962, 48.829415379164125], [2.328452356394938, 48.82929232124051], [2.328345574110178, 48.82917235648001], [2.328234731910698, 48.829049298335704], [2.328127950636075, 48.82892933245555], [2.328017108104846, 48.82880627407521], [2.328018032419751, 48.828803997552214], [2.328000353495874, 48.828785095864006], [2.327999921527612, 48.82878457899379], [2.327909186966423, 48.828666920010974], [2.327817669040728, 48.82855003989836], [2.327726935310648, 48.82843237985333], [2.327635418205264, 48.82831549957681], [2.327544685294689, 48.828197839368954], [2.327453169009606, 48.828080958928496], [2.32736165448537, 48.82796407931283], [2.327270921442129, 48.827846418852744], [2.327270147111252, 48.82784519943906], [2.327226795020061, 48.827757213271106], [2.327161660984375, 48.82762908046404], [2.327118309256083, 48.82754109423982], [2.32709268090544, 48.827490678462965], [2.327084538232389, 48.82746827413342], [2.327077755209168, 48.82746643361507], [2.327038248727775, 48.827388717386164], [2.326986638321158, 48.82728682251916], [2.326921504101389, 48.82715868951993], [2.326869892788464, 48.82705679457398], [2.326804759142996, 48.82692866148491], [2.326753149636523, 48.826826767374634], [2.326752071278905, 48.82681396765774], [2.326737061897914, 48.82680825485454], [2.326569031674085, 48.82673634337414], [2.326389270796648, 48.82666065654217], [2.326221241528127, 48.82658874456365], [2.32604148165297, 48.82651305809827], [2.326022497602807, 48.82651599190681], [2.325912321986801, 48.82663648115503], [2.325795753136536, 48.826759297813815], [2.325685576482343, 48.82687978682707], [2.32556900655393, 48.827002603238235], [2.325547587918722, 48.82700660519256], [2.32554085924852, 48.82702521044197], [2.325536845190479, 48.827027930005805], [2.325388864710996, 48.827092720218346], [2.325236399828746, 48.82715865143663], [2.325235104940891, 48.8271615572141], [2.325248290115483, 48.827177284372986], [2.325416110020808, 48.827256051550975], [2.325583673370453, 48.82733436734962], [2.325751494288121, 48.82741313404596], [2.325919060020059, 48.8274914484721], [2.326086880587974, 48.82757021467911], [2.326254447316957, 48.82764852952369], [2.326422270259322, 48.827727295256736], [2.326589836646599, 48.827805608713426], [2.3265944771280083, 48.82781650740953], [2.326519066520329, 48.827932089772204], [2.326443082230774, 48.828041652016566], [2.326442182260438, 48.828043410625455], [2.326400795216976, 48.82816167398647], [2.326360800486256, 48.828278329884185], [2.326320805588172, 48.828394984857056], [2.326279417990374, 48.828513248139004], [2.326239422718347, 48.828629903959545], [2.326198034749338, 48.828748167188536], [2.326158039114981, 48.828864822957435], [2.326116650774859, 48.82898308613351], [2.326076654778273, 48.82909974185076], [2.32603526606703, 48.829218004973875], [2.326031608164291, 48.82922235172881], [2.32589518516628, 48.829313014288736], [2.325750476805491, 48.82940819341003], [2.325614054194308, 48.82949885564194], [2.325469344804409, 48.82959403440727], [2.325332919855952, 48.82968469629582], [2.325188209437034, 48.82977987470522], [2.325157980240595, 48.82979996346635], [2.325145239128845, 48.82981880993274]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 101, "zemmour_eric": 87.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-8", "circ_bv": "11", "num_bureau": 8, "roussel_fabien": 19.0, "nb_emargement": 1235.0, "nb_procuration": 72.0, "nb_vote_blanc": 12.0, "jadot_yannick": 115.0, "le_pen_marine": 63.0, "nb_exprime": 1223.0, "nb_vote_nul": 0.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1476.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1235, "quartier_bv": "55", "geo_point_2d": [48.82898057271805, 2.32701730514767], "melenchon_jean_luc": 277.0, "poutou_philippe": 10.0, "macron_emmanuel": 490.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.375057408421863, 48.8274444972208], [2.375044874769543, 48.82748270812028], [2.375009082039166, 48.827601937952245], [2.374965748159088, 48.82773786926591], [2.374929956434789, 48.8278570990542], [2.374886622136318, 48.82799303030827], [2.374850828693662, 48.82811226003865], [2.374807493976788, 48.82824819123315], [2.374771701540111, 48.82836742091979], [2.37472836640483, 48.82850335205472], [2.374692572249977, 48.828622581683426], [2.374649236696281, 48.82875851275877], [2.374613443547308, 48.82887774234382], [2.3745701075751953, 48.829013673359505], [2.374534312708021, 48.82913290288662], [2.374511043894019, 48.829151484517155], [2.374546112621279, 48.82917646538546], [2.374646217997311, 48.82922354571551], [2.374826612719927, 48.829307859644594], [2.374969238806877, 48.82937493643014], [2.375149633224385, 48.82945924895424], [2.37529226014122, 48.8295263253455], [2.375434886062918, 48.82959340155553], [2.375615283351609, 48.82967771336795], [2.375619388808137, 48.82968933848234], [2.375530565243396, 48.82979757716595], [2.375440552986186, 48.82990198814196], [2.375351727314983, 48.83001022756443], [2.375261714332429, 48.8301146383861], [2.375172889289663, 48.83022287766227], [2.375082875581763, 48.83032728832955], [2.374994048443279, 48.830435527445246], [2.374904034010021, 48.83053993795811], [2.37481520749997, 48.83064817692757], [2.374725192341348, 48.830752587286014], [2.374636363746339, 48.8308608251957], [2.374546347862347, 48.830965235399745], [2.374542135276389, 48.830968341377925], [2.374387600250694, 48.83103909957744], [2.374237725089805, 48.831109177749454], [2.374083189222647, 48.831179936446055], [2.373933313247751, 48.83125001422784], [2.3737787765607212, 48.83132077162291], [2.373628899771615, 48.83139084901441], [2.373474362253916, 48.83146160600727], [2.373324484650698, 48.8315316830085], [2.373169947653726, 48.831602440505584], [2.373016096176936, 48.83166577620095], [2.373015529223083, 48.83166602325356], [2.373007730535271, 48.831693517462575], [2.373061568152977, 48.83174434154157], [2.373106914741452, 48.83178893882404], [2.373103431072328, 48.83180131297331], [2.372936294418531, 48.831878766472514], [2.372771022377031, 48.83195518894382], [2.372603883373682, 48.83203264196076], [2.372438610357031, 48.83210906396222], [2.372271471728674, 48.83218651651114], [2.372106196374642, 48.83226293803564], [2.371939056759155, 48.83234039010937], [2.371773780419021, 48.832416812063364], [2.371606639816293, 48.83249426366194], [2.371441363874171, 48.83257068425391], [2.371438539162217, 48.832572433970626], [2.371324387044664, 48.83267484860288], [2.371191811661992, 48.83278429465817], [2.371077658584935, 48.83288670993486], [2.370945082156302, 48.83299615479659], [2.370944023747709, 48.8329971619189], [2.370944593293155, 48.83303418202097], [2.370974621412833, 48.833042759835216], [2.371123873509052, 48.833128933417875], [2.371272812846253, 48.833215213085175], [2.371422065929161, 48.83330138628246], [2.371571004901311, 48.833387664658694], [2.371720258970911, 48.8334738374706], [2.37186920028064, 48.83356011636867], [2.37201845533694, 48.83364628879521], [2.372167396281509, 48.83373256640221], [2.37231665368678, 48.83381873845052], [2.372465595606893, 48.8339050165722], [2.372614852636607, 48.83399118822796], [2.3727637969159963, 48.83407746507289], [2.372913054921604, 48.83416363724258], [2.373061998824999, 48.83424991369571], [2.373211257828149, 48.83433608458067], [2.3733602040693, 48.83442236155566], [2.373509464059179, 48.83450853205523], [2.373658409935251, 48.83459480773908], [2.37380767227415, 48.834680977860394], [2.373956619125616, 48.83476725405897], [2.374105881088963, 48.83485342378773], [2.374254830299832, 48.83493969870943], [2.37440409324992, 48.83502586805275], [2.374553042074006, 48.83511214348207], [2.374702306010843, 48.83519831243998], [2.374851257194443, 48.83528458659237], [2.375000522118035, 48.835370755164895], [2.375149472914762, 48.83545702982488], [2.375298740187428, 48.83554319801905], [2.375447691970488, 48.83562947229435], [2.375596958867606, 48.83571564009602], [2.375745913010093, 48.83580191309445], [2.375895180893981, 48.835888080510664], [2.376044134649818, 48.83597435401661], [2.376193403520482, 48.83606052104739], [2.376342359635653, 48.836146793276484], [2.376491629493099, 48.836232959921816], [2.376640585221532, 48.836319232658425], [2.376717338813709, 48.83634439575531], [2.376746977637751, 48.836328570271846], [2.376805616449898, 48.836274911183175], [2.376884909427789, 48.8362029856276], [2.377000303378889, 48.83609739054136], [2.377079595818102, 48.83602546484533], [2.377080029415075, 48.83602509296737], [2.3772010409221602, 48.8359265788553], [2.377329716511427, 48.835823066265746], [2.377450727077723, 48.83572455188327], [2.377579403034672, 48.8356210390135], [2.37770041265998, 48.83552252436064], [2.377829086260184, 48.835419011196514], [2.377950094933989, 48.83532049717253], [2.378078768901884, 48.835216983728195], [2.378199776645555, 48.83511846853457], [2.378328448256632, 48.835014954795874], [2.378449455059446, 48.834916439331835], [2.378578127038323, 48.834812925312946], [2.37869913153799, 48.834714409571475], [2.378827802522372, 48.83461089526529], [2.378948807443495, 48.83451237926054], [2.379077476071203, 48.83440886466001], [2.379077561345562, 48.83440879675081], [2.37920417293334, 48.834307747284875], [2.379332841911031, 48.83420423239775], [2.379459453858668, 48.83410318354948], [2.379588120472928, 48.833999667462486], [2.379714731428757, 48.8338986183255], [2.37984339702057, 48.833795102844306], [2.3799700069954, 48.83369405251933], [2.380098672937544, 48.83359053675165], [2.380225280558517, 48.833489486130965], [2.380353945488828, 48.8333859700698], [2.380480553480381, 48.83328491916743], [2.380609216036615, 48.83318140280568], [2.380735823036391, 48.83308035161472], [2.380864484580918, 48.83297683495946], [2.380955884554687, 48.83290388368278], [2.380989544481681, 48.8328863286582], [2.380992355690572, 48.832882822183045], [2.381027561680352, 48.83285472286811], [2.381151452066276, 48.83275756760806], [2.38127805698558, 48.832656515804864], [2.381401947795732, 48.832559360275205], [2.381528550385948, 48.832458308181906], [2.381652440258196, 48.8323611523756], [2.381779043243604, 48.83226010000633], [2.381902930815825, 48.83216294391633], [2.382029532834301, 48.83206189126399], [2.382153420830759, 48.83196473490435], [2.38228002188241, 48.831863681969054], [2.382403907578767, 48.83176652532574], [2.3825305076634002, 48.83166547210741], [2.382654393784204, 48.831568315194495], [2.382780991539716, 48.83146726168613], [2.382904876722553, 48.83137010449653], [2.383031474862834, 48.83126905161148], [2.3830314996162683, 48.83126903195307], [2.383163910722886, 48.831164582312304], [2.383290507872483, 48.831063528235205], [2.38342291792765, 48.83095907918788], [2.383549514076129, 48.83085802481812], [2.383681923090398, 48.83075357546486], [2.383808518237766, 48.830652520802445], [2.383940926211045, 48.8305480711433], [2.384067520357414, 48.8304470161882], [2.384199927300437, 48.83034256532383], [2.38432652043509, 48.830241510975355], [2.384380899442515, 48.830198612166825], [2.384387661635174, 48.83018787972224], [2.384318420764528, 48.83012730420981], [2.384165177214071, 48.83006090981194], [2.384015694575218, 48.82999156846086], [2.383862450447131, 48.82992517366005], [2.383712968589508, 48.829855832821536], [2.383559725256597, 48.82978943672547], [2.383410244190827, 48.82972009550022], [2.383257002993884, 48.829653699914594], [2.383107522730605, 48.829584357403235], [2.38295428095614, 48.82951796141465], [2.382804801484716, 48.829448618516594], [2.382635102204226, 48.829375090608046], [2.382471656243115, 48.82930556366174], [2.38230195789815, 48.82923203527111], [2.382138512829835, 48.829162507860715], [2.381968815420392, 48.829088978988004], [2.381805371244872, 48.82901945111342], [2.3816419275053082, 48.828949923011166], [2.381472231488223, 48.828876393419925], [2.381308788641451, 48.828806864853505], [2.381139093559886, 48.82873333478021], [2.380975651605904, 48.8286638057497], [2.380805957459855, 48.82859027519432], [2.380642516398665, 48.82852074569964], [2.380472823188129, 48.828447214662226], [2.380453822251078, 48.8284499429553], [2.380351940626026, 48.828556806346455], [2.380260798236864, 48.82866045338168], [2.380158917166905, 48.828767316595396], [2.3800677740152762, 48.82887096436338], [2.38004872500498, 48.82887405478926], [2.379876486063545, 48.82880231027489], [2.3797070099502, 48.82873275631322], [2.379534771956545, 48.82866101039837], [2.379365296758432, 48.8285914559437], [2.379193059691052, 48.828519710426974], [2.379023585408166, 48.828450155479366], [2.378851349288677, 48.8283784085622], [2.378681875921022, 48.82830885312155], [2.378509642089917, 48.82823710660963], [2.378340168275364, 48.828167550668965], [2.378167935392156, 48.828095802756565], [2.377998462492835, 48.82802624632293], [2.377826230535969, 48.82795449880872], [2.377656758551876, 48.82788494188212], [2.377648755405543, 48.82788360244095], [2.377634535131715, 48.82788421555929], [2.377458957725673, 48.82789114064704], [2.377299337330481, 48.82789802265161], [2.377125495256255, 48.827905516594505], [2.376949917700117, 48.82791244183408], [2.376944329613654, 48.82791190817374], [2.37675777330801, 48.82786660875753], [2.376572579487694, 48.827818804202956], [2.376386023827362, 48.82777350510242], [2.376200830678645, 48.827725699968234], [2.376014275685346, 48.827680399384704], [2.375829083208235, 48.827632593670906], [2.375642528860246, 48.82758729340307], [2.375457337054744, 48.82753948710965], [2.375270783373808, 48.82749418535885], [2.375085592239923, 48.82744637848582], [2.375057408421863, 48.8274444972208]]], "type": "Polygon"}, "properties": {"lassalle_jean": 31.0, "pecresse_valerie": 78, "zemmour_eric": 105.0, "hidalgo_anne": 59.0, "dupont_aignan_nicolas": 26.0, "date_tour": "2022-04-10", "id_bvote": "13-34", "circ_bv": "09", "num_bureau": 34, "roussel_fabien": 32.0, "nb_emargement": 1735.0, "nb_procuration": 67.0, "nb_vote_blanc": 23.0, "jadot_yannick": 113.0, "le_pen_marine": 85.0, "nb_exprime": 1706.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 2101.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1736, "quartier_bv": "50", "geo_point_2d": [48.83170185147815, 2.3775262236719406], "melenchon_jean_luc": 641.0, "poutou_philippe": 9.0, "macron_emmanuel": 520.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3711232160205, 48.88947551409239], [2.371142047420385, 48.88948983847836], [2.371198853481656, 48.88961574518359], [2.371254329082968, 48.88973981743675], [2.371311135699316, 48.88986572316074], [2.371366610470867, 48.88998979532651], [2.371423418995177, 48.89011570097569], [2.371478894300608, 48.89023977306116], [2.3715357033583, 48.890365679527704], [2.371591179208367, 48.890489750633606], [2.371647987446551, 48.890615657011026], [2.371703465183515, 48.89073972894306], [2.371760273976798, 48.89086563433929], [2.371815752247568, 48.89098970619105], [2.3718712307828342, 48.891113778003074], [2.37192804038989, 48.891239683276766], [2.3719835194590733, 48.891363755008506], [2.372040329610395, 48.89148966020021], [2.372095809213402, 48.89161373185167], [2.372152619898152, 48.89173963786069], [2.372208098671407, 48.891863709424676], [2.37226491127507, 48.891989614459575], [2.372320390582258, 48.89211368594329], [2.372377203730114, 48.89223959089623], [2.37237497948261, 48.89224760657113], [2.372257334253292, 48.89234940719373], [2.372139176619056, 48.8924524928335], [2.372021530454913, 48.89255429410469], [2.37190337188886, 48.89265737949251], [2.371785726164537, 48.89275918052016], [2.371667566666555, 48.892862265656014], [2.371549918665377, 48.89296406552658], [2.371431758224703, 48.89306715130978], [2.371314110663239, 48.89316895093683], [2.371195949301681, 48.893272035568835], [2.371078299441521, 48.89337383583727], [2.370960137148006, 48.893476920217346], [2.370842486363919, 48.89357872023505], [2.37072432313854, 48.89368180436319], [2.370606672805127, 48.893783603238106], [2.370488508637007, 48.89388668801355], [2.370370856015615, 48.893988486630576], [2.370252690926587, 48.8940915702548], [2.370257212772253, 48.89410494892012], [2.370483898243345, 48.89418372951547], [2.370696120067941, 48.894257207725076], [2.370703243965691, 48.89426373824259], [2.370720046191537, 48.894332447253426], [2.370729191743997, 48.894400565640765], [2.370752489105638, 48.89443326947462], [2.370772069494413, 48.894434062136376], [2.370827631397722, 48.894419508115234], [2.371014719654963, 48.89436896805227], [2.371193662975581, 48.89432209371901], [2.371380750527466, 48.894271553079726], [2.371559693183736, 48.89422467819537], [2.371746781383155, 48.89417413788615], [2.371925722022179, 48.89412726154429], [2.372104663691887, 48.89408038583946], [2.372291749479958, 48.894029844665084], [2.372470690496253, 48.89398296750989], [2.372657776942801, 48.89393242576634], [2.372836715930784, 48.8938855480529], [2.373023801672063, 48.89383500573303], [2.373202739984852, 48.893788128367774], [2.3733898250315812, 48.893737584572335], [2.373431545311992, 48.89373940365801], [2.373438450482027, 48.89368049122797], [2.373382545186105, 48.89355677796085], [2.373327569958048, 48.893436495026286], [2.373271665187575, 48.89331278167985], [2.373216690484124, 48.893192497768375], [2.373160786228268, 48.89306878524191], [2.373105812038593, 48.89294850125273], [2.3730508394667362, 48.89282821723225], [2.372994935995975, 48.89270450458728], [2.3729399625740673, 48.89258422048202], [2.372884059639661, 48.892460506858455], [2.372883505798329, 48.892457345546035], [2.37289905680123, 48.89229494772079], [2.37292403510843, 48.892148029775534], [2.372921925278528, 48.89214213627302], [2.372806850925941, 48.89202507792094], [2.372683489246785, 48.8919059579534], [2.372681539117579, 48.891903113078996], [2.372684011503543, 48.89188060974316], [2.372651964596953, 48.89186887749249], [2.372586574360967, 48.891700155998166], [2.372527747478141, 48.89154613675494], [2.37252678645659, 48.89154439872791], [2.3724417303252, 48.891429098933145], [2.372345780035269, 48.89129967388302], [2.372344428750509, 48.89129636988922], [2.372330534373523, 48.89116849543845], [2.372315961453145, 48.89103491661654], [2.3723020672048962, 48.89090704303128], [2.372287495794481, 48.89077346418122], [2.372273601696851, 48.890645589662896], [2.372259029068777, 48.890512010770415], [2.372245135110821, 48.89038413621829], [2.372230562618207, 48.89025055818975], [2.372216668799824, 48.89012268360392], [2.372202096464251, 48.8899891046408], [2.372188204149276, 48.88986123002833], [2.372177511350487, 48.88976321708521], [2.372173167792339, 48.88972950030098], [2.372171437045883, 48.88972871601049], [2.372167556287539, 48.889693150846036], [2.37203780234748, 48.88958389614907], [2.371919561649249, 48.88948971228185], [2.371801320015142, 48.88939552828269], [2.37167156758517, 48.88928627315923], [2.371553328225216, 48.88919208890487], [2.371423575458811, 48.88908283348529], [2.371400682899334, 48.889081152983195], [2.371370818894098, 48.88910430845165], [2.371350485732643, 48.8891427619705], [2.3713165633273112, 48.889191083452936], [2.371283459126775, 48.88920393992741], [2.371284511479185, 48.889227360222456], [2.371258653986187, 48.88926419381349], [2.371194653990132, 48.88937286285511], [2.37113487224985, 48.88945801783394], [2.3711232160205, 48.88947551409239]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 34, "zemmour_eric": 112.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-51", "circ_bv": "17", "num_bureau": 51, "roussel_fabien": 17.0, "nb_emargement": 1101.0, "nb_procuration": 43.0, "nb_vote_blanc": 18.0, "jadot_yannick": 50.0, "le_pen_marine": 89.0, "nb_exprime": 1075.0, "nb_vote_nul": 8.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1631.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1101, "quartier_bv": "73", "geo_point_2d": [48.8924275249649, 2.3719966883303685], "melenchon_jean_luc": 478.0, "poutou_philippe": 6.0, "macron_emmanuel": 254.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.316634938902151, 48.84680845285433], [2.316646913174566, 48.84679345782751], [2.316808528626192, 48.846712673754794], [2.316964172573748, 48.846632494815196], [2.317125787046203, 48.84655170940298], [2.317281428650658, 48.846471530930586], [2.317443043494649, 48.846390745085884], [2.317598684142068, 48.84631056528989], [2.317760297983325, 48.846229779904306], [2.317915937661931, 48.846149599684], [2.318077550524009, 48.846068812958876], [2.318233189222039, 48.84598863321355], [2.318394801093168, 48.845907846048206], [2.318550438822397, 48.84582766587862], [2.318712048340008, 48.84574687826528], [2.318867686474769, 48.84566669677991], [2.319029294989689, 48.84558590962563], [2.319184932155648, 48.84550572771595], [2.31918658749622, 48.845505018544834], [2.31934552320467, 48.84544726283198], [2.319527679682681, 48.84538290725242], [2.319686616003297, 48.845325151087856], [2.319868770282483, 48.84526079407483], [2.320027705840962, 48.84520303835009], [2.3201354707523523, 48.84516496379305], [2.320154407874964, 48.84515572882084], [2.320113856424088, 48.845102725519666], [2.319952866097339, 48.84505670651214], [2.31979536388491, 48.84501145718623], [2.319634374121423, 48.84496543774631], [2.319476872449601, 48.8449201888967], [2.319315883249275, 48.844874169024465], [2.319158382141544, 48.84482891885256], [2.318997393504383, 48.84478289854796], [2.318839892937151, 48.844737648852345], [2.318831721079408, 48.84472984441011], [2.318826999950593, 48.8446665346813], [2.318821864866792, 48.84460268297314], [2.318813875833004, 48.844594966807875], [2.318624020577792, 48.84453825096114], [2.31843554385397, 48.8444821209528], [2.31824568940979, 48.84442540539925], [2.318057213501626, 48.844369274789216], [2.317867359891906, 48.84431255773021], [2.31767888343677, 48.84425642651068], [2.317672793120566, 48.84425284468093], [2.317578542620684, 48.84414898268955], [2.317478545825461, 48.84403860790613], [2.31738429608833, 48.843934746641], [2.317284300115426, 48.843824371674046], [2.317190051164594, 48.84372050933667], [2.317090056002318, 48.843610135085434], [2.316995806463485, 48.843506272567296], [2.3168958121355, 48.8433958972332], [2.316801564733689, 48.84329203454986], [2.316701571216206, 48.84318165993153], [2.316691580236126, 48.843159250036265], [2.316660829586229, 48.84313845283775], [2.316542852778108, 48.84304017163969], [2.316429398305054, 48.842945876961466], [2.3163114223693633, 48.84284759551819], [2.316197970096618, 48.842753300612024], [2.316079995033245, 48.84265501892357], [2.31596654223601, 48.84256072377384], [2.315964425556586, 48.842559316753984], [2.315826562090212, 48.84248593783578], [2.315659821914426, 48.842397219457524], [2.31552195794319, 48.84232384016984], [2.315355218804486, 48.84223512135411], [2.315217357041538, 48.84216174261185], [2.315050618951622, 48.8420730224594], [2.314940416522766, 48.84201436519165], [2.314911979706466, 48.8420150090722], [2.314903508894809, 48.842032304843954], [2.314829629127432, 48.84214833168656], [2.314754697094934, 48.84226031968711], [2.3146797647404282, 48.84237230762948], [2.31460588264234, 48.842488333391444], [2.31453094964026, 48.84260032121774], [2.314457066887662, 48.842716346864115], [2.3143821332380012, 48.84282833457431], [2.314308249819054, 48.842944361004356], [2.314233315521803, 48.84305634859842], [2.3141594314601592, 48.84317237401356], [2.314084496515313, 48.843284361491534], [2.314010611799135, 48.84340038679104], [2.313991953789793, 48.84340494480841], [2.313820854522829, 48.843348436701305], [2.313648098099416, 48.843292285778055], [2.313476999575014, 48.843235777173454], [2.313304245257997, 48.84317962575579], [2.313133146113758, 48.84312311664589], [2.312960392540629, 48.843066964726], [2.312941140836395, 48.843077179779876], [2.3129869849341382, 48.84320029103984], [2.313030004415989, 48.843319177915156], [2.313075847574094, 48.843442289106534], [2.313118867470252, 48.84356117502482], [2.313164712413645, 48.843684286163274], [2.313207732700413, 48.84380317292314], [2.313253576704066, 48.84392628399298], [2.3132965973933, 48.844045170695054], [2.313342443182266, 48.844168281711966], [2.313385464285821, 48.84428716745698], [2.313431309123199, 48.84441027930463], [2.313474330629229, 48.84452916499191], [2.31346898916986, 48.8445385767686], [2.313303801551327, 48.84461632490164], [2.31313641533216, 48.8446948111503], [2.312971226722304, 48.844772558813226], [2.312803840874917, 48.844851043694106], [2.312638649899426, 48.8449287917784], [2.312471263049318, 48.84500727618295], [2.312306072456908, 48.84508502290567], [2.312138683229856, 48.84516350772539], [2.311973491646011, 48.845241253977996], [2.311806102790759, 48.845319737429925], [2.3118080534315553, 48.84533516285346], [2.311993869451133, 48.84539456796255], [2.3121777347885892, 48.84545313144929], [2.312363551650055, 48.8455125359779], [2.312547417831079, 48.845571097991], [2.312733234171957, 48.84563050193133], [2.312917102535184, 48.8456890642772], [2.313102919718144, 48.84574846763707], [2.313286788924823, 48.84580702850933], [2.313472606949657, 48.84586643128873], [2.313656476976182, 48.84592499248587], [2.313697175687949, 48.845960364096435], [2.313718091685864, 48.84595276844199], [2.313742975134629, 48.84594925436944], [2.313751540683167, 48.845949884491766], [2.313925639571683, 48.846002967855746], [2.314048646908056, 48.84604530653018], [2.314171653093543, 48.846087644169415], [2.314283236686987, 48.84612166545063], [2.314319325208662, 48.84613618296141], [2.314337428071056, 48.84613391329465], [2.314399945663271, 48.8461529738395], [2.314581888157913, 48.84620915451825], [2.314755988770138, 48.84626223576222], [2.314937932030042, 48.84631841589399], [2.315112033370017, 48.84637149661469], [2.315286136415318, 48.84642457798658], [2.315468080825293, 48.84648075640462], [2.315642183235755, 48.8465338372454], [2.315824128410982, 48.846590015116504], [2.315998232911587, 48.84664309544172], [2.316180178852063, 48.84669927276581], [2.31635428271782, 48.8467523525599], [2.316536229423541, 48.84680852933705], [2.316634938902151, 48.84680845285433]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 140, "zemmour_eric": 135.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "15-34", "circ_bv": "12", "num_bureau": 34, "roussel_fabien": 15.0, "nb_emargement": 1330.0, "nb_procuration": 90.0, "nb_vote_blanc": 14.0, "jadot_yannick": 102.0, "le_pen_marine": 60.0, "nb_exprime": 1313.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1648.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1329, "quartier_bv": "58", "geo_point_2d": [48.84472283058605, 2.3157433631202045], "melenchon_jean_luc": 248.0, "poutou_philippe": 3.0, "macron_emmanuel": 555.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.340142681373957, 48.901227184883005], [2.340193624165555, 48.90120132152488], [2.340194191982729, 48.90118837900064], [2.340200297702347, 48.90104922010985], [2.340206330904997, 48.900911690362584], [2.340212436571111, 48.90077253053673], [2.34021847107364, 48.90063500076155], [2.340224575299444, 48.90049584179159], [2.340230609737832, 48.900358311981], [2.340236713898744, 48.90021915297521], [2.340242748273093, 48.90008162312922], [2.340248853733009, 48.89994246409508], [2.340254886690619, 48.8998049333069], [2.34026099208574, 48.89966577423699], [2.340267024967721, 48.89952824431266], [2.340273059181808, 48.89939071437826], [2.340279163115798, 48.89925155524719], [2.340277617798951, 48.89924713018663], [2.340188600502276, 48.89913483484559], [2.340098685425346, 48.89902140493491], [2.340009668889197, 48.89890911033699], [2.339919754591982, 48.898795680268606], [2.339830738827746, 48.89868338551448], [2.339740823946379, 48.89856995528084], [2.339651810317905, 48.89845766037811], [2.33956189621624, 48.89834422998672], [2.339472883371167, 48.8982319340286], [2.339382970037684, 48.898118504378736], [2.339293956600548, 48.89800620825694], [2.339204045422104, 48.8978927775576], [2.339205552252174, 48.89785616471406], [2.339180968832622, 48.89785389318784], [2.339023847045965, 48.897850436077896], [2.338813036109412, 48.897846462028866], [2.338612811325386, 48.897842056842286], [2.338402000454245, 48.8978380820697], [2.338201774384723, 48.89783367528912], [2.337990964942847, 48.89782969980053], [2.337790738928921, 48.89782529323197], [2.337579928188438, 48.89782131701231], [2.33744659377334, 48.89781838150496], [2.337405078431434, 48.897835442128226], [2.337400921289065, 48.897846666010565], [2.337307620934857, 48.897953752378186], [2.337208072650837, 48.898068793635055], [2.337114772854368, 48.8981758807375], [2.337015223719462, 48.89829092181068], [2.336921921775728, 48.89839800783436], [2.336822371789924, 48.89851304872387], [2.336729070403916, 48.898620135482375], [2.336629519567206, 48.8987351761883], [2.336536216033909, 48.89884226186797], [2.336436664346384, 48.89895730239023], [2.336435803466419, 48.89895849281418], [2.336342500498394, 48.89906557832867], [2.336272254614869, 48.89918435677427], [2.336205771638319, 48.89930411289766], [2.336135525121076, 48.899422891237165], [2.336069041525377, 48.89954264725852], [2.335998795738191, 48.89966142549951], [2.335932310159347, 48.899781181411335], [2.33586206372686, 48.899899960445445], [2.33579557889284, 48.9000197162628], [2.33572533047409, 48.900138494283965], [2.3356588450208973, 48.900258249999325], [2.335588595968193, 48.900377027914416], [2.335522109895818, 48.9004967835277], [2.335451861573266, 48.900615561344246], [2.335385373517791, 48.900735316847985], [2.335315124561376, 48.90085409455839], [2.335248637250617, 48.900973849967656], [2.335213606638325, 48.90103307697249], [2.335184073822365, 48.90107335440772], [2.335259646093756, 48.901105624963584], [2.335468254238288, 48.90111049317746], [2.335670936506388, 48.901115382117446], [2.335879544717006, 48.90112025051417], [2.336082227061716, 48.90112513875812], [2.33629083534989, 48.90113000643844], [2.336493517771199, 48.901134893986324], [2.336641066433659, 48.90113782469203], [2.336843748918287, 48.901142711647225], [2.3369912976226193, 48.90114564192141], [2.337193980159109, 48.901150529183134], [2.337325875720983, 48.901153148489094], [2.3373378426786102, 48.90115338557099], [2.337359939601763, 48.901153824386945], [2.337562620852131, 48.90115871011801], [2.3377298868197522, 48.901162030920894], [2.337778586526036, 48.901162998068415], [2.337864083089356, 48.90116469563036], [2.338066765793386, 48.901169580515806], [2.338307914675525, 48.901174367315605], [2.338510597458955, 48.901179251449925], [2.338701354261268, 48.90118303697808], [2.338904037103942, 48.901187921345844], [2.339094793966631, 48.901191706247346], [2.339297475527253, 48.90119658904249], [2.339488232450406, 48.90120037331734], [2.339690915445699, 48.90120525545418], [2.339758160974449, 48.90120658933965], [2.339793296836255, 48.901207285742856], [2.339917876116724, 48.90120975664281], [2.34012055918884, 48.90121463805253], [2.340142681373957, 48.901227184883005]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 15, "zemmour_eric": 33.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "18-49", "circ_bv": "18", "num_bureau": 49, "roussel_fabien": 13.0, "nb_emargement": 772.0, "nb_procuration": 17.0, "nb_vote_blanc": 11.0, "jadot_yannick": 9.0, "le_pen_marine": 77.0, "nb_exprime": 757.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1170.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 772, "quartier_bv": "69", "geo_point_2d": [48.89972411630878, 2.3380680792518804], "melenchon_jean_luc": 442.0, "poutou_philippe": 2.0, "macron_emmanuel": 138.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323747450557006, 48.820166452400734], [2.323737652394414, 48.820164041502075], [2.3236378587521562, 48.82018628452692], [2.323450227702976, 48.82022817490207], [2.323277547455472, 48.820266661789006], [2.323089915816023, 48.82030855249514], [2.322917235048065, 48.82034703795965], [2.322729602829817, 48.820388928097394], [2.322556921518056, 48.820427413938205], [2.322369288721216, 48.82046930350755], [2.32219660688902, 48.82050778792591], [2.322008973513392, 48.82054967692692], [2.321836291137391, 48.82058816172154], [2.321648657194879, 48.82063004925486], [2.3214395551127103, 48.82067664975249], [2.321251920521257, 48.82071853755931], [2.321042816379451, 48.82076513645244], [2.320855181150864, 48.82080702363342], [2.320703455110545, 48.82084083570158], [2.320551728873554, 48.820874647576176], [2.320364092856385, 48.8209165339825], [2.320271306498264, 48.82093710789704], [2.3201989069045448, 48.82095316222256], [2.320011270321412, 48.82099504807233], [2.31996272426984, 48.821005811922554], [2.319948633071151, 48.82100893628538], [2.319940094481481, 48.8210108294922], [2.319801675248154, 48.82104152148718], [2.319614038027957, 48.82108340671034], [2.319581765861904, 48.821090562042386], [2.319394325928937, 48.82113212246694], [2.319206688055586, 48.82117400704753], [2.31901924752369, 48.82121556688108], [2.318831609048661, 48.821257450870014], [2.31864416655611, 48.82129901010477], [2.318456528841343, 48.82134089350979], [2.31826908574977, 48.821382452153514], [2.318081446071705, 48.82142433495912], [2.317915870355911, 48.821461044165154], [2.3177282314731382, 48.82150292642133], [2.317562655247434, 48.82153963603506], [2.317375014436178, 48.821581517726266], [2.317193044505117, 48.82162186028343], [2.317005403101077, 48.82166374139163], [2.316823433947147, 48.82170408429049], [2.316635791950329, 48.821745964815634], [2.316453820873414, 48.821786306241954], [2.316266178283823, 48.82182818618404], [2.316084207984041, 48.821868527952105], [2.315896564813481, 48.82191040641181], [2.315714592578832, 48.8219507476067], [2.315526948803711, 48.821992626382674], [2.315376178318294, 48.82202615835625], [2.315188533999977, 48.82206803659839], [2.315037763078869, 48.822101568143], [2.314850118217362, 48.8221434458513], [2.314699345486686, 48.82217697785852], [2.314633569760961, 48.822191606180134], [2.314613655765953, 48.82219603482229], [2.314599417630593, 48.8221992008833], [2.314411772065662, 48.822241077900124], [2.314252762933486, 48.822276441831455], [2.31420999263569, 48.82228903973136], [2.314230847877341, 48.822302629385796], [2.314336114347697, 48.822349353357154], [2.314393783016877, 48.822374950362615], [2.314551720252179, 48.82244424032346], [2.314714656279201, 48.82251656085394], [2.314872594381681, 48.82258584948298], [2.31503553129629, 48.822658169567156], [2.315193468892156, 48.822727457755825], [2.315356406694454, 48.82279977739373], [2.31551434649574, 48.82286906605696], [2.31567728518563, 48.82294138524852], [2.315835225854185, 48.82301067257994], [2.315998165431568, 48.823082991325165], [2.316156106943687, 48.82315227912335], [2.316319046058476, 48.82322459651514], [2.316476988425962, 48.823293883880815], [2.316639929778638, 48.82336620173337], [2.316797873013181, 48.823435487767156], [2.316960815253455, 48.82350780517337], [2.317118759331686, 48.82357709167397], [2.317281701097465, 48.823649408626046], [2.3174396460428452, 48.823718693794746], [2.317464432069777, 48.82373323615545], [2.3174682163024842, 48.82373403931655], [2.317546317983901, 48.823768885487404], [2.317704263642849, 48.823838170299226], [2.317709348973257, 48.8238486303333], [2.317816672587921, 48.82383947895119], [2.317890070026754, 48.82381612700264], [2.317957982654725, 48.82379566401609], [2.317960579572889, 48.8237950825381], [2.318127880412301, 48.82376940055688], [2.318298685468298, 48.823743424434454], [2.318465985963552, 48.82371774287834], [2.318636790693623, 48.82369176537247], [2.31880409085668, 48.82366608334217], [2.318974896599208, 48.82364010625929], [2.319142195079711, 48.82361442284774], [2.319313000484546, 48.82358844528073], [2.319315035528763, 48.82358801976548], [2.319452267484321, 48.82355125977901], [2.319588942215603, 48.82351292974283], [2.319726173780507, 48.82347616943957], [2.319862849487312, 48.82343783819621], [2.31988113814721, 48.823443360084816], [2.319940303656757, 48.82356470647464], [2.319999485138087, 48.82368505819623], [2.320058651197342, 48.82380640450141], [2.320117833238026, 48.82392675523923], [2.320176999835269, 48.82404810235907], [2.320236182423384, 48.82416845301241], [2.320253429028865, 48.82417421084863], [2.320461981780006, 48.8241284880574], [2.32066492433532, 48.82408491402956], [2.320873476368412, 48.8240391905171], [2.321076418220635, 48.823995616686766], [2.321082322237662, 48.82399524548499], [2.321120318875205, 48.82399838688416], [2.321158940408773, 48.8240021793725], [2.321168779703918, 48.8240006406256], [2.321221307283544, 48.82397624900375], [2.321270083546069, 48.823952596942746], [2.321273881511423, 48.82395130450436], [2.321459993740333, 48.82391079852161], [2.321642872928003, 48.82387106626358], [2.321825753198847, 48.82383133373216], [2.322011863208769, 48.82379082687847], [2.322194742916977, 48.82375109377994], [2.322380852353811, 48.82371058634911], [2.322563731499378, 48.823670852683456], [2.322749840351436, 48.82363034557481], [2.322932718934359, 48.82359061134203], [2.323118827225005, 48.82355010275691], [2.323135721902528, 48.823555278986845], [2.323193547561154, 48.823649902729024], [2.323250558705563, 48.823743072922696], [2.323266553651502, 48.82374841852081], [2.323305092061567, 48.823741926331294], [2.3233366422550352, 48.82373538739144], [2.323352164242659, 48.82373519551495], [2.323361441420914, 48.82372763295494], [2.323516371957349, 48.823695522928965], [2.3236943151258362, 48.82365864302944], [2.323880795307661, 48.82361999348612], [2.324058736598609, 48.82358311303419], [2.324245216240155, 48.823544462920026], [2.324423158377551, 48.823507581931004], [2.3246096361168203, 48.82346893123825], [2.324787577738662, 48.82343204970456], [2.324974054937742, 48.82339339844094], [2.325151996044026, 48.82335651636248], [2.325338474064701, 48.823317864535696], [2.325516413293432, 48.823280981904844], [2.325543213270416, 48.82327719107859], [2.325545524892929, 48.82326664628822], [2.325540502223431, 48.82324174918776], [2.325528402781206, 48.823211548996596], [2.325537713514827, 48.82320062367175], [2.325710926510157, 48.82316684933444], [2.325881607113625, 48.82313287160073], [2.326054821023094, 48.823099096770996], [2.326225501180563, 48.82306511854438], [2.326398713280199, 48.82303134320678], [2.326569392991869, 48.822997364487264], [2.3265790238030473, 48.82298958331932], [2.326592765482628, 48.822891621912085], [2.326621946509284, 48.822723486006815], [2.326635688038091, 48.82262552457146], [2.326617948786219, 48.82261613497303], [2.326443140018999, 48.822653323783115], [2.32627017563508, 48.82269079614109], [2.326095366357977, 48.82272798533962], [2.3259224014764452, 48.82276545719212], [2.32574759035053, 48.82280264497279], [2.325574626333368, 48.822840116327434], [2.325399814697464, 48.82287730449654], [2.325226848820721, 48.822914775338035], [2.325052038060181, 48.822951962104625], [2.324879071685842, 48.82298943244057], [2.324863240874812, 48.82298561692828], [2.324854723793737, 48.82297805451475], [2.3248261789719322, 48.8229475680253], [2.324824274942538, 48.82294408746336], [2.324796572968781, 48.82282727414827], [2.324773291354339, 48.82271768801773], [2.3247500098376612, 48.82260810187197], [2.324722308208794, 48.822491288504736], [2.324699026900361, 48.822381702326965], [2.324671324144137, 48.82226488891667], [2.324653564418873, 48.8222577473592], [2.324486737840351, 48.82229444776793], [2.324322142467528, 48.822328803272754], [2.324304613144291, 48.82232175200429], [2.324269772986084, 48.822187904344645], [2.324235400467006, 48.82205592641686], [2.324200559302142, 48.821922078697696], [2.324166187133493, 48.821790100718836], [2.324131346335585, 48.821656252048456], [2.324096974517363, 48.8215242740185], [2.324062134063092, 48.821390426195684], [2.324027762595289, 48.821258448114634], [2.323992922496307, 48.82112460023998], [2.323958551378918, 48.820992622107816], [2.323923711635321, 48.82085877418135], [2.32388934086834, 48.82072679599814], [2.323854502841836, 48.82059294802761], [2.323820131063342, 48.82046096978553], [2.323785760820756, 48.82032899152584], [2.323750923325922, 48.820195143477775], [2.323747450557006, 48.820166452400734]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 41, "zemmour_eric": 68.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-45", "circ_bv": "10", "num_bureau": 45, "roussel_fabien": 21.0, "nb_emargement": 1123.0, "nb_procuration": 48.0, "nb_vote_blanc": 10.0, "jadot_yannick": 49.0, "le_pen_marine": 89.0, "nb_exprime": 1102.0, "nb_vote_nul": 11.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1562.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1123, "quartier_bv": "55", "geo_point_2d": [48.82236463011968, 2.3205958784741236], "melenchon_jean_luc": 522.0, "poutou_philippe": 4.0, "macron_emmanuel": 249.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37167416180715, 48.895480104709335], [2.371716651475149, 48.89551717537596], [2.371845106779756, 48.89555786257034], [2.372017258223627, 48.89561705649825], [2.372145715373576, 48.89565774337366], [2.3722677400140872, 48.89569970040149], [2.3723087071801903, 48.89570245660545], [2.372326356430838, 48.89567080320552], [2.372405434467434, 48.89555593863584], [2.372490449134512, 48.895428082992], [2.372569525065709, 48.89531321918057], [2.372654540297267, 48.895185363399065], [2.372733615497903, 48.89507049945386], [2.372818628566296, 48.894942643520416], [2.372897704400047, 48.89482777944857], [2.372982716669265, 48.89469992337031], [2.373061791772366, 48.89458505916467], [2.373146803242216, 48.89445720294159], [2.37322587626175, 48.89434233769576], [2.373310888285371, 48.89421448223432], [2.373389960574177, 48.894099616854675], [2.373474971809471, 48.89397176034915], [2.373554043356838, 48.89385689573502], [2.373577979466088, 48.89385579517584], [2.373678711385452, 48.89396048745914], [2.373777988599132, 48.89406289676234], [2.37387872269602, 48.89416758796551], [2.373977999323445, 48.89426999797568], [2.374078734223204, 48.89437468899081], [2.374178011638839, 48.894477098815806], [2.374278747341477, 48.89458178964293], [2.3743780269092962, 48.894684199289856], [2.3744022678610612, 48.89468976860096], [2.374422019801989, 48.894679247240475], [2.374619466763741, 48.89465531074814], [2.374821403133936, 48.89463129754362], [2.375018849719536, 48.894607361290994], [2.37522078708341, 48.89458334741908], [2.37541823330345, 48.89455941050694], [2.375620168933272, 48.894535395953405], [2.375817614798628, 48.89451145748247], [2.376019551422105, 48.89448744226154], [2.3762169969113, 48.89446350403036], [2.376418931800608, 48.89443948812783], [2.376616376924318, 48.894415549237124], [2.376818312807365, 48.8943915326672], [2.377015757565478, 48.894367593116954], [2.377217691714442, 48.89434357586544], [2.3774151361179072, 48.894319634756464], [2.377617071260382, 48.89429561683753], [2.3776257705720543, 48.89428156074159], [2.37752315149985, 48.89418626711397], [2.377392211318405, 48.894066216301006], [2.377289593098114, 48.89397092245453], [2.377158653996772, 48.89385087136259], [2.377056036628384, 48.893755577297256], [2.3769250986179973, 48.89363552502711], [2.376822482090742, 48.89354023164219], [2.37680705884397, 48.89350926517419], [2.376770616345656, 48.89350783535835], [2.376685350281007, 48.89350449036809], [2.376677848341769, 48.89351159730701], [2.376489919697184, 48.893525184329256], [2.376295673456206, 48.89353842429057], [2.376107744615063, 48.89355201071269], [2.37591349817682, 48.893565250053804], [2.375725569149908, 48.8935788349766], [2.375531322514413, 48.89359207369745], [2.375343393280182, 48.89360565891944], [2.375149145083606, 48.89361889701293], [2.374961217016674, 48.893632481641966], [2.374766968622861, 48.89364571911521], [2.374579040359407, 48.893659303144155], [2.374384791768262, 48.89367253999718], [2.374196863308393, 48.893686123426036], [2.374002614520027, 48.893699359658825], [2.373814685863549, 48.89371294248763], [2.373620436878074, 48.89372617810016], [2.37343250803592, 48.8937397594296], [2.373431545311992, 48.89373940365801], [2.3733898250315812, 48.893737584572335], [2.373202739984852, 48.893788128367774], [2.373023801672063, 48.89383500573303], [2.372836715930784, 48.8938855480529], [2.372657776942801, 48.89393242576634], [2.372470690496253, 48.89398296750989], [2.372291749479958, 48.894029844665084], [2.372104663691887, 48.89408038583946], [2.371925722022179, 48.89412726154429], [2.371746781383155, 48.89417413788615], [2.371559693183736, 48.89422467819537], [2.371380750527466, 48.894271553079726], [2.371193662975581, 48.89432209371901], [2.371014719654963, 48.89436896805227], [2.370827631397722, 48.894419508115234], [2.370772069494413, 48.894434062136376], [2.370752489105638, 48.89443326947462], [2.37072470467861, 48.89444873205066], [2.370601322532691, 48.89448105176239], [2.370485177694631, 48.894513555980865], [2.370436532627646, 48.89453618251678], [2.370441730517688, 48.89455592290542], [2.370487108324173, 48.894612540630554], [2.370512419408573, 48.89464350052033], [2.370515231339705, 48.894645909287036], [2.370666984562312, 48.894738188248375], [2.370828585322, 48.894834803097154], [2.3709803396397, 48.894927082544804], [2.371141941578036, 48.895023696054814], [2.371293697001608, 48.89511597508945], [2.371455298743955, 48.895212588152795], [2.371607055273501, 48.89530486677445], [2.371768659536667, 48.89540148030469], [2.371770197689247, 48.89541371909476], [2.371716705533057, 48.895458331506475], [2.37167416180715, 48.895480104709335]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 24, "zemmour_eric": 73.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-43", "circ_bv": "16", "num_bureau": 43, "roussel_fabien": 14.0, "nb_emargement": 905.0, "nb_procuration": 26.0, "nb_vote_blanc": 12.0, "jadot_yannick": 23.0, "le_pen_marine": 75.0, "nb_exprime": 892.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1400.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 907, "quartier_bv": "74", "geo_point_2d": [48.89434524101644, 2.3738968266610696], "melenchon_jean_luc": 462.0, "poutou_philippe": 4.0, "macron_emmanuel": 179.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.293373028465064, 48.83581081155196], [2.293358198188093, 48.835824020278906], [2.2932945026226, 48.83595390833845], [2.293232073174755, 48.83608775927673], [2.293218557984935, 48.83609410004421], [2.29302669049986, 48.83608949097585], [2.29283674278182, 48.8360847733328], [2.292644876727156, 48.836080163660036], [2.292454927715347, 48.83607544540256], [2.292263061728787, 48.83607083511732], [2.292073114147852, 48.83606611626155], [2.291881246867087, 48.83606150535577], [2.291691299342599, 48.836056786792945], [2.29149943350439, 48.83605217438342], [2.291309484686153, 48.83604745520619], [2.291117618916183, 48.836042842184206], [2.290927671528737, 48.836038122408674], [2.290735804464595, 48.83603350876612], [2.290545857145735, 48.83602878838425], [2.290541485025363, 48.83602820034318], [2.290399962450254, 48.83599349491927], [2.290244636425512, 48.835954271707195], [2.29010311424876, 48.83591956592976], [2.28994778730537, 48.83588034232154], [2.289940682309066, 48.835872447709484], [2.289918173130917, 48.83587072039356], [2.289917383194828, 48.83587050165305], [2.28982869548603, 48.83584377725312], [2.289726889747153, 48.83581292410904], [2.289707660740213, 48.83582013262588], [2.289686523651157, 48.83594946569766], [2.289666062542969, 48.83607417548731], [2.289644925259942, 48.83620350762308], [2.289624463952511, 48.836328217377314], [2.289603326463256, 48.83645754947636], [2.2895828649564782, 48.83658225919512], [2.289561727248735, 48.83671159215673], [2.289541264192729, 48.83683630093268], [2.289520802388891, 48.836961010598586], [2.289499664373567, 48.83709034350547], [2.289479202382734, 48.837215052236616], [2.289458064161169, 48.83734438510673], [2.289469892957603, 48.83735427112735], [2.289640083533773, 48.83736854051638], [2.289804644444213, 48.837381921833355], [2.289974835202301, 48.837396190745814], [2.290139396285968, 48.837409571601924], [2.29030958722597, 48.83742384003772], [2.290474148482859, 48.83743722043297], [2.290480500811395, 48.8374388751852], [2.290621250857127, 48.837506509989865], [2.290757545012243, 48.83757282130703], [2.290898295791382, 48.837640454878276], [2.291034589286925, 48.83770676586374], [2.291170884491504, 48.83777307669807], [2.291311636335489, 48.837840710670164], [2.291326795864887, 48.83785056406993], [2.291347421262226, 48.837844204488626], [2.29137267827532, 48.83782537016844], [2.291522162940581, 48.83771324682042], [2.291658366872479, 48.837611676114314], [2.291794568911204, 48.83751010523577], [2.29194405177704, 48.83739798042963], [2.29196219906458, 48.837396604784864], [2.292117721175265, 48.837469952633434], [2.292260250147037, 48.83753888302419], [2.29240277813342, 48.83760781323277], [2.292558301482041, 48.83768116139396], [2.292700830251615, 48.83775009123864], [2.292856354456363, 48.83782343810369], [2.292857881231593, 48.83783723540358], [2.292801412775892, 48.8378731120821], [2.292747886902787, 48.837908403552504], [2.292749568003551, 48.83792207135641], [2.292919787864781, 48.838002775536594], [2.293083901919337, 48.838080250611206], [2.293254122814881, 48.838160954304215], [2.293418237864311, 48.83823842890916], [2.293588459794074, 48.83831913211498], [2.293752575838581, 48.83839660625026], [2.293774959285662, 48.838409512179105], [2.293797955105397, 48.838398841995456], [2.2938520819096713, 48.83837408795875], [2.2940455582884223, 48.83828819687874], [2.294201743929269, 48.83821676500002], [2.294395219147773, 48.83813087334234], [2.294551403838127, 48.838059440997064], [2.294569917725604, 48.83805907621374], [2.2945798140598432, 48.83804290811072], [2.294640642750565, 48.83794359843904], [2.2947033817569142, 48.83784023213365], [2.294703802047715, 48.8378343437257], [2.294665689389636, 48.83774902941333], [2.29462554937055, 48.837658794353445], [2.294587436956841, 48.83757348090202], [2.2945472972084078, 48.83748324580173], [2.294550564852667, 48.8374766645804], [2.294537338969359, 48.837463829882225], [2.294474810202992, 48.837327815956556], [2.294412523845695, 48.83719263892674], [2.294349995730234, 48.83705662490283], [2.294287711395191, 48.836921446883956], [2.294225183930726, 48.836785432761864], [2.294162900243408, 48.83665025464519], [2.294100373429929, 48.836514240424854], [2.294038090378142, 48.83637906310971], [2.293975564215638, 48.83624304879117], [2.293913281823733, 48.83610787047897], [2.293909087015535, 48.83610364384384], [2.293776626525503, 48.836029088028184], [2.293650650885473, 48.835959197631034], [2.293524675595548, 48.83588930619756], [2.293392214837688, 48.83581474993387], [2.293391976830612, 48.83581461901802], [2.293373028465064, 48.83581081155196]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 125, "zemmour_eric": 118.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-68", "circ_bv": "13", "num_bureau": 68, "roussel_fabien": 18.0, "nb_emargement": 1355.0, "nb_procuration": 81.0, "nb_vote_blanc": 16.0, "jadot_yannick": 95.0, "le_pen_marine": 79.0, "nb_exprime": 1333.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1714.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1355, "quartier_bv": "57", "geo_point_2d": [48.83696459924645, 2.2921726703139282], "melenchon_jean_luc": 257.0, "poutou_philippe": 5.0, "macron_emmanuel": 585.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.353334003367725, 48.861274375257935], [2.353314979217869, 48.861278109972226], [2.353162878879531, 48.861312247388476], [2.352972487528927, 48.8613554831386], [2.352773756068513, 48.86140008455633], [2.352583365436889, 48.861443319691354], [2.35238463330831, 48.86148792045942], [2.352194240669899, 48.86153115496458], [2.351995509236152, 48.8615757550903], [2.351805115953845, 48.86161898897301], [2.351606382488951, 48.86166358844162], [2.351415989925651, 48.86170682170922], [2.351217255781412, 48.86175142142738], [2.351026861211331, 48.86179465406513], [2.350836467688266, 48.861837886405624], [2.350637732559187, 48.86188248425693], [2.35044733702925, 48.86192571596756], [2.350248602595042, 48.86197031317653], [2.350192229143977, 48.861993989081085], [2.35019795198853, 48.86201874320298], [2.350234627604411, 48.86208502095247], [2.350301109001352, 48.86220403901453], [2.350368647436846, 48.86232608996414], [2.35043513081049, 48.86244510793323], [2.350502669861258, 48.86256715967993], [2.350569153848706, 48.86268617754868], [2.350636693537182, 48.86280822829388], [2.350703176775415, 48.86292724605491], [2.350770717079184, 48.863049297597215], [2.350837202294262, 48.86316831526531], [2.350904743235751, 48.86329036580612], [2.35097122906466, 48.86340938337383], [2.350963291802715, 48.863423049955564], [2.350978751254253, 48.86345824784887], [2.35105586015795, 48.86358668064936], [2.351122346710244, 48.8637056981013], [2.351188833566319, 48.86382471550351], [2.351265943530334, 48.863953148126214], [2.351332431019066, 48.86407216632132], [2.3514095417033483, 48.864200598822784], [2.351476029847241, 48.864319616012274], [2.351553141251799, 48.86444804839252], [2.351600217822997, 48.864470448018984], [2.351648759669097, 48.86446076694059], [2.351856302459189, 48.8645095437744], [2.352048757237059, 48.86455183882162], [2.352256300753291, 48.86460061585707], [2.352448756192342, 48.86464291025759], [2.352656300457075, 48.86469168569609], [2.352848757909101, 48.864733980356554], [2.353056302911146, 48.86478275509741], [2.353248759661374, 48.8648250491038], [2.35326064475418, 48.86483154184317], [2.353280587405309, 48.86481245040406], [2.353349977890827, 48.864792939942845], [2.353453371684127, 48.8647633480225], [2.35345763431215, 48.864760156793125], [2.353440669045358, 48.86473420179474], [2.353378440384721, 48.8646103055554], [2.353316370348891, 48.86448672219793], [2.353254142279475, 48.86436282586622], [2.353192072833463, 48.86423924241668], [2.353129845355258, 48.8641153459927], [2.353067776498854, 48.863991762451064], [2.3530671110982, 48.863990680539466], [2.352995154253564, 48.863892357363206], [2.352922375995172, 48.86379291450424], [2.352921381428836, 48.863791775951775], [2.3528872144905852, 48.863758553764775], [2.352851638806192, 48.86372396054166], [2.3528493439789813, 48.863719737397794], [2.352837980355126, 48.863638482150655], [2.352825325921578, 48.86354800792038], [2.352834248283423, 48.86353872725806], [2.353028792286569, 48.86349214257194], [2.353226004671062, 48.863444918166024], [2.353420546610556, 48.863398332831814], [2.3536177582848232, 48.86335110777636], [2.353812299523808, 48.86330452180141], [2.354009510487843, 48.863257296096414], [2.3540154905557, 48.86324321494458], [2.353887792809027, 48.863138201505464], [2.353764360807943, 48.86303669681606], [2.353636662699584, 48.862931683981365], [2.353513231676974, 48.86283017901403], [2.353510274632522, 48.86282384783264], [2.353524991503831, 48.862700087381], [2.353539659399949, 48.862576752939624], [2.353554376131654, 48.86245299245676], [2.353569043888642, 48.8623296579843], [2.353583760480745, 48.86220589747024], [2.353598428098707, 48.86208256296667], [2.353613144551209, 48.86195880242138], [2.353627812029943, 48.86183546788672], [2.353627124774297, 48.861831864089595], [2.353561705950596, 48.86170518308371], [2.353494036585969, 48.861574144223205], [2.353428618398423, 48.86144746401438], [2.353360949703271, 48.861316425048145], [2.353358079956737, 48.861310865965415], [2.353334003367725, 48.861274375257935]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 67, "zemmour_eric": 72.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "3-9", "circ_bv": "05", "num_bureau": 9, "roussel_fabien": 17.0, "nb_emargement": 1255.0, "nb_procuration": 104.0, "nb_vote_blanc": 13.0, "jadot_yannick": 111.0, "le_pen_marine": 51.0, "nb_exprime": 1237.0, "nb_vote_nul": 5.0, "arr_bv": "03", "arthaud_nathalie": 3, "nb_inscrit": 1640.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1255, "quartier_bv": "12", "geo_point_2d": [48.862913040524454, 2.3521921621269155], "melenchon_jean_luc": 351.0, "poutou_philippe": 3.0, "macron_emmanuel": 496.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3618871317521313, 48.83288296338113], [2.361861393164021, 48.83292150613705], [2.361687918107412, 48.83297666872626], [2.361515780766183, 48.833030027773745], [2.361342304993734, 48.83308518895701], [2.361170165578142, 48.83313854749467], [2.360996689078946, 48.833193708171294], [2.36082454894011, 48.83324706710565], [2.360816964026099, 48.83325691603525], [2.360849145579066, 48.8333667337022], [2.360881250501958, 48.83347159002004], [2.360913432311858, 48.83358140854795], [2.360945537507201, 48.83368626392909], [2.360942601412914, 48.833693842512076], [2.360808033605482, 48.83379923367245], [2.360676891612343, 48.833900841354684], [2.360542322722416, 48.834006233095955], [2.360411179690597, 48.83410784046801], [2.360276609740125, 48.83421323099156], [2.360145464307336, 48.83431483804621], [2.360014319725576, 48.83441644495514], [2.359879748165026, 48.834521835902414], [2.359748601193318, 48.83462344159463], [2.359614029923455, 48.834728832230745], [2.359482881901985, 48.83483043851211], [2.359348309560512, 48.83493582882978], [2.359217160511368, 48.835037433901704], [2.359082587098277, 48.83514282390094], [2.358951436999343, 48.83524442956199], [2.358816862525583, 48.83534981834348], [2.358791293666894, 48.83536962745357], [2.35878265772339, 48.83537925025976], [2.358799360215341, 48.83539809701044], [2.358893069086399, 48.835519453641275], [2.358992342929478, 48.83564829756134], [2.359086052688454, 48.8357696549132], [2.359185326133884, 48.83589849773763], [2.35927903679195, 48.83601985491112], [2.359378311190892, 48.83614869754662], [2.359472022748061, 48.83627005454176], [2.3595511882000553, 48.83637279761451], [2.359574009618185, 48.83639121832262], [2.359599182987887, 48.83638432095266], [2.35972859209776, 48.83628471814011], [2.359855755184971, 48.836186914486085], [2.359985163303457, 48.8360873122777], [2.36011232543873, 48.835989507434356], [2.360241732576984, 48.835889904930774], [2.360368893749278, 48.83579209979742], [2.360498299907107, 48.83569249699871], [2.360625460116433, 48.835594691575345], [2.360754866656257, 48.83549508848876], [2.360882024529284, 48.835397283667426], [2.361011430099822, 48.83529767938638], [2.36113858837221, 48.835199874282296], [2.361265744816146, 48.835102068127874], [2.3613951489095832, 48.83500246430474], [2.361522305752882, 48.83490465786762], [2.36165170750373, 48.83480505374213], [2.361778863373085, 48.83470724791429], [2.361908264154768, 48.83460764259436], [2.362035419061204, 48.83450983647655], [2.362164818862511, 48.83441023086143], [2.362291972806036, 48.834312424453664], [2.362421371616077, 48.83421281944275], [2.3625485246077, 48.83411501184567], [2.362677923799762, 48.83401540654695], [2.362805074466211, 48.833917598652626], [2.362934472678023, 48.833817993058766], [2.363061623743854, 48.83372018488174], [2.363191019613159, 48.833620578985524], [2.363186740166106, 48.833606669948246], [2.362987474046671, 48.833541316569864], [2.36279552236351, 48.833481232550184], [2.362596257213936, 48.83341587851269], [2.362404307805847, 48.833355793865714], [2.362205043626238, 48.83329043916917], [2.362013095130961, 48.83323035388764], [2.36200532108623, 48.833222615619135], [2.362005269985006, 48.83311915461691], [2.361995564425045, 48.83297081574161], [2.362041947811175, 48.83293914093867], [2.362030697558117, 48.83292268992437], [2.361939578982819, 48.83289111536491], [2.361913589274479, 48.83288540332181], [2.3618871317521313, 48.83288296338113]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 60, "zemmour_eric": 86.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-5", "circ_bv": "09", "num_bureau": 5, "roussel_fabien": 35.0, "nb_emargement": 1211.0, "nb_procuration": 54.0, "nb_vote_blanc": 17.0, "jadot_yannick": 98.0, "le_pen_marine": 71.0, "nb_exprime": 1188.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1527.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1211, "quartier_bv": "49", "geo_point_2d": [48.83455486387303, 2.3608667579947404], "melenchon_jean_luc": 368.0, "poutou_philippe": 9.0, "macron_emmanuel": 391.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.285573317280216, 48.84217243211359], [2.285584445670061, 48.842183541030444], [2.285612121129226, 48.84221730854374], [2.285639743074431, 48.842250807717775], [2.2856490741347733, 48.842262125340845], [2.285668254435716, 48.8422855272431], [2.285668257136021, 48.84228552905796], [2.285775272742048, 48.84241531205757], [2.285873303122512, 48.84253492160493], [2.285873688197328, 48.842535358298925], [2.285952328209665, 48.842619164152644], [2.286031076037078, 48.842701483933546], [2.286109825475638, 48.84278380366471], [2.2861884662425442, 48.84286760934455], [2.286190484079774, 48.84287140053227], [2.286209549191598, 48.84298263938696], [2.286228264955175, 48.843093027138714], [2.286247330216392, 48.84320426686461], [2.286266046139475, 48.843314654588504], [2.28628511157472, 48.84342589338697], [2.286303827645097, 48.843536281982324], [2.286303895340726, 48.84353681121469], [2.286309926767406, 48.84361109903286], [2.286315231018845, 48.843684061335786], [2.286317483525518, 48.84371181398286], [2.28631954972361, 48.84374023644624], [2.286321431891288, 48.843744385666994], [2.286368169364837, 48.84379652023961], [2.286414702421997, 48.84384866346472], [2.286427049670858, 48.843865732469915], [2.286430220002902, 48.84386636295046], [2.286497200236239, 48.84394141718249], [2.286595805466398, 48.844052012314684], [2.28670931983614, 48.84417920863733], [2.286807924603789, 48.84428980356294], [2.28692143999684, 48.84441700055649], [2.287020047026949, 48.84452759529181], [2.287044191912076, 48.844526759776194], [2.287133503857862, 48.84439725337538], [2.2872131642128872, 48.84428257122411], [2.2872288942982513, 48.84427021590074], [2.287226992804033, 48.84426428493458], [2.287306652750101, 48.844149602707375], [2.2873840853997462, 48.84403714477669], [2.287463744652968, 48.84392246242156], [2.287541176626077, 48.843810004366276], [2.287620835186562, 48.84369532188316], [2.287698266483247, 48.84358286370331], [2.28777792298829, 48.84346818108415], [2.287855353596375, 48.84335572367903], [2.2878552341323513, 48.843348112514306], [2.287818438257052, 48.843297485676096], [2.287777184119026, 48.843242566577565], [2.287782892472161, 48.84323066774421], [2.287951607269711, 48.843170220938426], [2.288121158754858, 48.84310954143939], [2.288289874130487, 48.843049094158104], [2.2884594248154793, 48.842988415072384], [2.288628139406584, 48.842927967307475], [2.288797689303708, 48.84286728773576], [2.288798290594694, 48.84286705927343], [2.288967883388763, 48.84279861186873], [2.289136073311181, 48.84273088797182], [2.2893056638560623, 48.842662440071805], [2.289473852887875, 48.84259471659101], [2.289474158482769, 48.84259458889701], [2.289485228957328, 48.842584026810236], [2.289473751827641, 48.8425712460668], [2.289341753647961, 48.84249461733145], [2.289208377440534, 48.84241685244655], [2.289076380042039, 48.8423402234078], [2.288943006000311, 48.84226245732507], [2.288811009382998, 48.8421858279829], [2.28867763475757, 48.8421080624848], [2.288545638921435, 48.84203143283921], [2.2884122664619, 48.84195366614326], [2.288412079743764, 48.841940296807955], [2.288530283645312, 48.841868779625365], [2.28865102880449, 48.84179533479707], [2.288769232037025, 48.8417238182684], [2.288889975173472, 48.84165037228198], [2.288886476042322, 48.841635600023615], [2.288680572273145, 48.841572560384876], [2.288476810147113, 48.841510176172854], [2.288270907368922, 48.84144713582189], [2.288067146235856, 48.84138475000582], [2.287861244448659, 48.84132170894268], [2.287657484283895, 48.84125932332111], [2.287640753854655, 48.8412439568891], [2.287612909144053, 48.84125560969137], [2.287458376304521, 48.84132291281914], [2.287300854497769, 48.841391847382276], [2.287146322213907, 48.84145915010682], [2.286988799582689, 48.84152808425062], [2.28683426512938, 48.84159538655576], [2.286676741673793, 48.841664320280245], [2.286522206413594, 48.84173162217405], [2.286364682133431, 48.841800555479175], [2.286210146066443, 48.84186785696164], [2.286052620961807, 48.841936789847495], [2.285898085450294, 48.842004090926736], [2.285740559521185, 48.842073023393226], [2.285720602106263, 48.842084157141066], [2.285712048418983, 48.842087900506975], [2.285710541849308, 48.842088664968955], [2.285647702358414, 48.84212372129513], [2.285579860113467, 48.842163401048026], [2.285573317280216, 48.84217243211359]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 99, "zemmour_eric": 111.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "15-92", "circ_bv": "13", "num_bureau": 92, "roussel_fabien": 18.0, "nb_emargement": 1231.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 71.0, "le_pen_marine": 97.0, "nb_exprime": 1210.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1566.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "60", "geo_point_2d": [48.84262154793023, 2.2873591038890506], "melenchon_jean_luc": 263.0, "poutou_philippe": 8.0, "macron_emmanuel": 460.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.370917982208525, 48.832601912522655], [2.370900632237673, 48.83258100447541], [2.370789945369528, 48.8324819053632], [2.370679055502584, 48.83238464787651], [2.370568369461719, 48.83228554944121], [2.370457479074581, 48.832188290825556], [2.370346793871744, 48.83208919216782], [2.370235905667042, 48.83199193423616], [2.370125016524745, 48.831894675286804], [2.370014332577325, 48.83179557629539], [2.369903445628308, 48.831698317130744], [2.369792762519096, 48.831599217916896], [2.369791538429856, 48.83159826712872], [2.369644144671537, 48.83149876297197], [2.369488418390165, 48.8313909305987], [2.369341027158842, 48.83129142605719], [2.369185300772604, 48.83118359236284], [2.369185544228481, 48.83117101595606], [2.369344016180412, 48.83106676208326], [2.369501238798291, 48.83095807470772], [2.369495831494225, 48.830943361284326], [2.369321894336205, 48.83090372271438], [2.369155538339879, 48.83086757835811], [2.368981601693558, 48.8308279392906], [2.368815246175001, 48.830791794458555], [2.368641308678091, 48.830752154886284], [2.368474953637306, 48.83071600957854], [2.368301018014193, 48.830676369515864], [2.368134663451183, 48.830640223732374], [2.368129875623917, 48.83063973436209], [2.367975804043, 48.8306422947084], [2.367822606316929, 48.83064558616681], [2.367668534703628, 48.83064814611729], [2.367515336940862, 48.830651437182105], [2.367505891015373, 48.830649198160145], [2.367438454213799, 48.83061326869713], [2.367346957237488, 48.830560071716285], [2.367344518270089, 48.83054844254182], [2.367413531387475, 48.83047792008019], [2.367481196791577, 48.83040494955517], [2.367477029528542, 48.83039272485173], [2.367273872239942, 48.830305101077876], [2.367091622250232, 48.830224406621845], [2.367062534311531, 48.83021330194462], [2.367058043922427, 48.83021446085354], [2.367041564391866, 48.83023447458228], [2.366937404358702, 48.830361271521845], [2.366833417481068, 48.830487565628125], [2.366729257798148, 48.83061436236504], [2.366625269922346, 48.83074065536249], [2.366521107865291, 48.83086745188227], [2.366417118980384, 48.83099374467018], [2.366415468717989, 48.83099782626496], [2.366414869084053, 48.83101443446133], [2.366412346749885, 48.83104352922452], [2.366383924042053, 48.83106520097567], [2.366413827887909, 48.8310839619736], [2.366404691313459, 48.8311893098883], [2.366391327972401, 48.83130807558966], [2.366379667568355, 48.8314425191258], [2.366366304105379, 48.83156128479755], [2.366354643591193, 48.83169572740158], [2.366341280006298, 48.83181449304365], [2.366346655591714, 48.83182233614819], [2.366522455505516, 48.83190998284301], [2.366711752837794, 48.83199903270449], [2.366716404819873, 48.83200835861736], [2.366741148674662, 48.83201548222974], [2.366932809301734, 48.83206333602716], [2.367133617156655, 48.8321175469927], [2.367325279881472, 48.83216540016406], [2.367526088537681, 48.832219610465714], [2.367541910115169, 48.832237357745825], [2.367556723325658, 48.83223839750245], [2.367652209535516, 48.83217850432759], [2.367772435632284, 48.83210022473493], [2.3679142934458, 48.83201124442189], [2.368034518763274, 48.83193296455414], [2.368176375663395, 48.83184398481628], [2.368296600201687, 48.831765704673394], [2.368315467080038, 48.831765537208284], [2.368433530694952, 48.83183837649477], [2.368591107504531, 48.83193709766696], [2.36870917189303, 48.83200993667016], [2.368866749743183, 48.832108657464104], [2.36898481490537, 48.83218149618406], [2.368985653051417, 48.83219407288957], [2.368871500517144, 48.83227807424655], [2.368751805365144, 48.83236694869878], [2.368637652075392, 48.83245094981958], [2.368517954765538, 48.83253982401688], [2.368527606594556, 48.832554786514905], [2.368731015253906, 48.83256000097059], [2.368921998701345, 48.83256496604925], [2.3691254060666402, 48.83257018072632], [2.369316389588935, 48.832575145175184], [2.369519797044374, 48.832580358282144], [2.369710780630535, 48.83258532300052], [2.369914189527362, 48.83259053544393], [2.370105173199232, 48.83259549863321], [2.370296156896606, 48.83260046241683], [2.370499564548793, 48.83260567385746], [2.370690548321095, 48.832610637011285], [2.370893956052406, 48.83261584778115], [2.3709036689518213, 48.83261350295112], [2.370917982208525, 48.832601912522655]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 61, "zemmour_eric": 88.0, "hidalgo_anne": 49.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-30", "circ_bv": "09", "num_bureau": 30, "roussel_fabien": 43.0, "nb_emargement": 1377.0, "nb_procuration": 55.0, "nb_vote_blanc": 20.0, "jadot_yannick": 113.0, "le_pen_marine": 110.0, "nb_exprime": 1352.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1718.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1377, "quartier_bv": "50", "geo_point_2d": [48.83154359631914, 2.368276385898395], "melenchon_jean_luc": 531.0, "poutou_philippe": 5.0, "macron_emmanuel": 323.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.348468766917066, 48.85259385136217], [2.348409621198294, 48.852520099665725], [2.348333713949498, 48.852416843243965], [2.348235262488148, 48.85228422862868], [2.348159355928443, 48.85218097207443], [2.348060905356359, 48.85204835728753], [2.347984999485734, 48.85194510060081], [2.347886549803107, 48.85181248564234], [2.347810644632812, 48.8517092279238], [2.347805779852683, 48.851705600387135], [2.347637894352093, 48.85163399939917], [2.347460021455642, 48.85155738375351], [2.347292136907658, 48.85148578227089], [2.347114265025491, 48.85140916610103], [2.346946381441278, 48.851337563224455], [2.346768510562123, 48.851260947429665], [2.34660062793062, 48.85118934405842], [2.34642275806574, 48.85111272773945], [2.34625487638674, 48.85104112387356], [2.346077006184804, 48.85096450612365], [2.345909125447125, 48.85089290266237], [2.345731257622082, 48.85081628439573], [2.345733469239697, 48.85080045162732], [2.345882479937012, 48.85075950744556], [2.34608771753076, 48.85070855117255], [2.346236729049653, 48.85066760655364], [2.346338414263419, 48.85063966601473], [2.346543650939336, 48.850588708954106], [2.346590976912907, 48.850575704605305], [2.346598836156707, 48.85056395696073], [2.346524897676082, 48.85044157791184], [2.3464553609631, 48.850324983225896], [2.346381424509899, 48.850202604968814], [2.34631188844819, 48.85008600927517], [2.346237951308289, 48.84996363089567], [2.346168415875185, 48.84984703599292], [2.346094479422457, 48.84972465659923], [2.346024944629232, 48.84960806158803], [2.3459510088413, 48.84948568297869], [2.345881474687944, 48.84936908785912], [2.345866373193013, 48.84933507433094], [2.345843390845989, 48.849336244651255], [2.345674228353723, 48.84938387775135], [2.345466491995477, 48.84944179419776], [2.345297328804682, 48.849489427659776], [2.345089590244124, 48.849547343438836], [2.344920427740277, 48.849594975471554], [2.344712688328782, 48.849652891490024], [2.34454352377513, 48.84970052297796], [2.344535488998399, 48.849710489708436], [2.34458389675648, 48.84987701639828], [2.344610590184585, 48.85001702886419], [2.344633874315004, 48.85011249096395], [2.344660568009317, 48.850252502489774], [2.344641175486463, 48.85026174148828], [2.344476747189374, 48.85020992812397], [2.344321436994102, 48.85015771931655], [2.344157009343147, 48.850105905507995], [2.344001699789556, 48.85005369538136], [2.343837274136107, 48.850001882035336], [2.343681965212882, 48.849949671488794], [2.343670301414088, 48.84994945101817], [2.343511950028347, 48.84999533265339], [2.343359366254188, 48.85004321442578], [2.343201014309765, 48.85008909564565], [2.343048429964031, 48.85013697791676], [2.342890077460927, 48.85018285872124], [2.3427374939289862, 48.850230739699974], [2.342641007660244, 48.850257399892506], [2.342639250700565, 48.850264881884904], [2.342671048281281, 48.85031705111862], [2.342690370137092, 48.85035827947515], [2.34269012933611, 48.8503638649586], [2.342710640436854, 48.850391410729245], [2.342748680452937, 48.85047258161919], [2.342808652666369, 48.850601438149376], [2.342866015118858, 48.850723837307456], [2.342925986548981, 48.85085269374225], [2.342983350927597, 48.8509750919246], [2.34304332293692, 48.851103948271515], [2.343100686505109, 48.851226346362495], [2.34316066045646, 48.85135520262896], [2.34321802457684, 48.851477600636066], [2.343277997744785, 48.851606456807126], [2.343335363768662, 48.85172885563706], [2.343395337516034, 48.851857711720214], [2.343452702740719, 48.85198010955949], [2.343512678430165, 48.8521089655622], [2.3435700442070653, 48.85223136331758], [2.343630019113107, 48.852360219224835], [2.343687386804982, 48.85248261690382], [2.343747362290375, 48.85261147272315], [2.343804729171725, 48.85273387031072], [2.343864706587912, 48.85286272694893], [2.343922074021502, 48.85298512445257], [2.3439820506656153, 48.853113980096026], [2.344039420014223, 48.853236377523224], [2.344096788269567, 48.853358774901956], [2.3441567657757982, 48.85348763041458], [2.344214134583396, 48.85361002770936], [2.344274114031798, 48.8537388831415], [2.344275734388952, 48.85374116379005], [2.344397816623101, 48.8538644156263], [2.3445288866827783, 48.85398177542415], [2.344596464246878, 48.85405686572072], [2.344607032766805, 48.85405798934285], [2.344613829830763, 48.85405871188011], [2.344710142303161, 48.85401969028095], [2.344899001413603, 48.853960927266954], [2.345086175413717, 48.85389838373956], [2.345275033660427, 48.853839620125704], [2.345462206773452, 48.85377707600328], [2.345651065519113, 48.85371831179693], [2.345838237745043, 48.85365576707948], [2.346027094264281, 48.853597002265815], [2.346214265603015, 48.85353445695335], [2.346403121258516, 48.85347569153973], [2.346590291710254, 48.85341314563223], [2.346779146502013, 48.85335437961876], [2.346966316066653, 48.85329183311627], [2.346967851330692, 48.85329123353171], [2.346971148176308, 48.85328883136228], [2.347117277666959, 48.85321923813045], [2.347266795488332, 48.85315176499326], [2.34741292283708, 48.853082171384344], [2.347562439882236, 48.85301469786941], [2.347708566451757, 48.852945103890875], [2.347858082720799, 48.8528776299982], [2.348004208511094, 48.85280803565005], [2.348153724004025, 48.85274056137963], [2.348299850377856, 48.852670966669265], [2.348449365094674, 48.85260349202112], [2.348468766917066, 48.85259385136217]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 112, "zemmour_eric": 127.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "5-3", "circ_bv": "02", "num_bureau": 3, "roussel_fabien": 18.0, "nb_emargement": 1286.0, "nb_procuration": 85.0, "nb_vote_blanc": 9.0, "jadot_yannick": 106.0, "le_pen_marine": 67.0, "nb_exprime": 1277.0, "nb_vote_nul": 0.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1651.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1286, "quartier_bv": "20", "geo_point_2d": [48.851762241047496, 2.345346059954658], "melenchon_jean_luc": 318.0, "poutou_philippe": 9.0, "macron_emmanuel": 459.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295592423782618, 48.8428607724781], [2.295566031281484, 48.842860823023386], [2.295378026363183, 48.8428536801471], [2.2951317546060412, 48.84286620100895], [2.295106280095529, 48.84286819410008], [2.295050939579329, 48.84288526807018], [2.295082470941481, 48.84293171915335], [2.295182780629346, 48.84303374987828], [2.2952935728898822, 48.843145872905126], [2.29539388475353, 48.84324790434078], [2.295504677923562, 48.84336002715059], [2.295604989262313, 48.843462057482355], [2.295715783341643, 48.84357418007512], [2.295771944939938, 48.843631303034556], [2.295838995291498, 48.843652820258235], [2.295868762379603, 48.84363519249565], [2.296062806994975, 48.84364159216564], [2.296249789353955, 48.84364667557234], [2.296443835433418, 48.84365307373292], [2.296630816496098, 48.84365815743533], [2.296824862665185, 48.84366455497782], [2.297011845180864, 48.84366963719338], [2.297205891427232, 48.84367603501703], [2.297392872658835, 48.84368111662902], [2.297586918994714, 48.84368751383459], [2.297773901667062, 48.84369259485897], [2.297967948092442, 48.843698991446466], [2.298154929480696, 48.84370407186728], [2.298348975995567, 48.84371046783665], [2.29853595882455, 48.84371554766988], [2.298541169768857, 48.843715015221015], [2.2987343476274003, 48.84366870797317], [2.298928184860697, 48.8436211685476], [2.299121362027628, 48.843574860670955], [2.29931519719636, 48.84352732060633], [2.299508375033984, 48.8434810121088], [2.299702209500762, 48.84343347141316], [2.299895385284149, 48.84338716227886], [2.300089220411376, 48.8433396209601], [2.300282395503033, 48.843293311197016], [2.300476229928091, 48.84324576924722], [2.300669404328114, 48.84319945885529], [2.300863236688595, 48.843151916266486], [2.300883406387012, 48.8431487163757], [2.300895431770183, 48.84314136147771], [2.301089263720574, 48.84309381762093], [2.301266032735483, 48.84305036124234], [2.301459863997315, 48.843002817680514], [2.301636631032078, 48.842959360742825], [2.301813399134662, 48.84291590355017], [2.302007229409065, 48.842868358196476], [2.30218399689389, 48.84282490045272], [2.302377826491876, 48.84277735449467], [2.30244813517711, 48.84276006943622], [2.302463673981149, 48.84274989016816], [2.302431682674858, 48.84271329634293], [2.302263782063881, 48.84266189684523], [2.302070406839793, 48.84260237829356], [2.3019025069424233, 48.84255097828376], [2.301709132542438, 48.842491459142174], [2.301541233358678, 48.842440058620234], [2.301347859782696, 48.84238053888875], [2.301179961312547, 48.842329137854634], [2.300986588560773, 48.84226961753327], [2.30081869216672, 48.842218215994976], [2.300625318876577, 48.84215869507578], [2.300457423196138, 48.84210729302537], [2.300438658709014, 48.84211282502924], [2.300384507880983, 48.842229857867956], [2.300330538613428, 48.842347253279044], [2.300276387287078, 48.84246428694355], [2.300222417533237, 48.842581682281185], [2.300203633618866, 48.842587225825184], [2.299999065277256, 48.8425244204907], [2.299799071516612, 48.84246334317962], [2.299594504148753, 48.84240053714636], [2.299394512700157, 48.84233945916013], [2.299189946318143, 48.84227665152885], [2.298989954456434, 48.84221557285154], [2.298936156191644, 48.84220697710199], [2.298928437987662, 48.84221735734334], [2.298899360082633, 48.842310908262824], [2.298857386021958, 48.842438239385444], [2.298817102120212, 48.84256784229647], [2.298775127651654, 48.84269517336094], [2.298734841972276, 48.84282477710574], [2.298692867107924, 48.842952107212746], [2.298678669348701, 48.8429591694533], [2.298472271580488, 48.842950305653595], [2.298271316917919, 48.84294319751358], [2.298064919282239, 48.84293433301095], [2.297863963374217, 48.842927224178545], [2.297863934774402, 48.842927223111296], [2.297657538633773, 48.84291835791369], [2.297473234421362, 48.84291209625818], [2.297288930253136, 48.84290583431869], [2.297082532932524, 48.84289696812086], [2.2968982288647393, 48.84289070557937], [2.296691833033003, 48.8428818387154], [2.296507529065771, 48.84287557557192], [2.296301131997927, 48.84286670802573], [2.296116829493548, 48.84286044428825], [2.295862723951462, 48.84287249605874], [2.295678420116813, 48.84286623163787], [2.295676660922427, 48.84286623926782], [2.295602767979087, 48.84286343166093], [2.295592423782618, 48.8428607724781]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 87, "zemmour_eric": 90.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-3", "circ_bv": "12", "num_bureau": 3, "roussel_fabien": 15.0, "nb_emargement": 1024.0, "nb_procuration": 50.0, "nb_vote_blanc": 11.0, "jadot_yannick": 80.0, "le_pen_marine": 79.0, "nb_exprime": 1011.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1309.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1023, "quartier_bv": "57", "geo_point_2d": [48.84303785838316, 2.2987266014090872], "melenchon_jean_luc": 227.0, "poutou_philippe": 6.0, "macron_emmanuel": 368.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.325145239128845, 48.82981880993274], [2.325129359679461, 48.829818905599616], [2.325023162886525, 48.82988947746536], [2.324896971792088, 48.8299760720633], [2.324760544848488, 48.830066733268005], [2.324634352888664, 48.8301533275752], [2.324497926386655, 48.8302439884737], [2.324371733561644, 48.83033058249006], [2.324235304776884, 48.830421243066986], [2.324109111086574, 48.83050783679255], [2.323972681381225, 48.830598497055576], [2.323846486837172, 48.83068508959103], [2.323799011839277, 48.83070128693545], [2.323798008230119, 48.8307068241078], [2.323818422501427, 48.830735851725976], [2.323895020977428, 48.83084645366891], [2.323976019192016, 48.83096162675741], [2.323997870797716, 48.83099317981087], [2.323997144386479, 48.83099929774732], [2.324006486157966, 48.831013424859925], [2.324061233716928, 48.83109247452015], [2.3241451088051193, 48.831211506750115], [2.324221708673121, 48.831322108436886], [2.324305584497194, 48.831441140529876], [2.324382186405186, 48.83155174209892], [2.3244660629535, 48.831670774954276], [2.3245426641771862, 48.83178137639019], [2.324626541473057, 48.83190040820928], [2.324703144736964, 48.832011009527406], [2.324787022768644, 48.83213004120958], [2.324841360791146, 48.83220849632089], [2.324847135495301, 48.83221986192372], [2.32485746188244, 48.83222573916131], [2.324879727807412, 48.83225788613852], [2.32490389467855, 48.83229335982994], [2.324921778167149, 48.832302046189504], [2.324962877594591, 48.83228593474775], [2.325045979743365, 48.832152587772775], [2.325110192422142, 48.8320344594647], [2.325117914417427, 48.83202915806081], [2.325298373353752, 48.83198104881967], [2.325477716511152, 48.83193323430359], [2.325658176145582, 48.831885124523176], [2.325837517280747, 48.831837309455786], [2.326017976251063, 48.83178919912837], [2.326197318088415, 48.83174138352508], [2.326377775032403, 48.83169327264299], [2.326557116209726, 48.83164545649611], [2.326737572489596, 48.83159734506705], [2.326916913006887, 48.83154952837658], [2.327097369984836, 48.83150141640822], [2.327276709842089, 48.83145359917415], [2.327457164793707, 48.83140548665114], [2.3276365039909193, 48.8313576688735], [2.327816958278407, 48.83130955580358], [2.327996296815575, 48.83126173748231], [2.328176751801123, 48.831213623873076], [2.328356089678242, 48.83116580500824], [2.328536542637456, 48.83111769084436], [2.328715879842944, 48.83106987233526], [2.328896332149594, 48.83102175672514], [2.329075668695033, 48.83097393767245], [2.329256121699719, 48.83092582152301], [2.329435457585104, 48.83087800192676], [2.32946307121139, 48.83086493055073], [2.3294548473208, 48.83084977945538], [2.329367415574289, 48.830751652274685], [2.32926991455089, 48.83063752264424], [2.329161927010833, 48.83051632527666], [2.329064426889, 48.830402194555404], [2.328956440314125, 48.83028099697683], [2.328858941070699, 48.83016686696341], [2.328849615252271, 48.83015130491316], [2.328823718124933, 48.8301549711331], [2.32877189703303, 48.83017041756411], [2.328582995497993, 48.83022673104108], [2.328405457540673, 48.83027965083473], [2.328216555202411, 48.83033596462678], [2.32803901651281, 48.83038888297203], [2.327850113382807, 48.8304451961798], [2.32767257531142, 48.8304981139836], [2.327483670027707, 48.83055442659946], [2.327306131212262, 48.83060734385412], [2.327128592024886, 48.830660261742075], [2.326939685577617, 48.83071657259129], [2.326924726244294, 48.830714913600204], [2.326760330158295, 48.83061239496377], [2.326600110117291, 48.830512821669785], [2.326435715306947, 48.83041030256868], [2.326275495156415, 48.830310727914885], [2.3261152769802083, 48.830211153045305], [2.325950884074588, 48.83010863325018], [2.32594699917579, 48.83009997735472], [2.325992391397448, 48.82997631368044], [2.326044535851528, 48.82984475913493], [2.326031452884771, 48.8298334890867], [2.325814403147044, 48.829832490589645], [2.325594906430456, 48.8298304705999], [2.325377856702126, 48.82982947220993], [2.325158358653006, 48.829827451411354], [2.325145239128845, 48.82981880993274]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 73, "zemmour_eric": 102.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-2", "circ_bv": "11", "num_bureau": 2, "roussel_fabien": 26.0, "nb_emargement": 1209.0, "nb_procuration": 56.0, "nb_vote_blanc": 8.0, "jadot_yannick": 114.0, "le_pen_marine": 69.0, "nb_exprime": 1190.0, "nb_vote_nul": 11.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1488.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "55", "geo_point_2d": [48.83092696330288, 2.326186081144419], "melenchon_jean_luc": 321.0, "poutou_philippe": 3.0, "macron_emmanuel": 420.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291686164198487, 48.87946962248362], [2.291679264154972, 48.879479286420185], [2.291564544519827, 48.87957238162904], [2.291456450815732, 48.87966010012266], [2.2913483567475152, 48.87974781851171], [2.291233635917217, 48.87984091428002], [2.291220445844594, 48.879844655679086], [2.291216764967314, 48.87985512376763], [2.2911002122515782, 48.879957747835974], [2.290985142702766, 48.88005906393698], [2.290868587710737, 48.88016168775276], [2.290753518611845, 48.88026300451968], [2.290751458941877, 48.880271165500716], [2.290809843709341, 48.8803901313439], [2.290868446374801, 48.88050953731168], [2.2909268330402153, 48.88062850308015], [2.290985436242033, 48.880747908964814], [2.291043823454174, 48.88086687375122], [2.291102427180216, 48.880986280452014], [2.291160814926845, 48.881105245155624], [2.291219419201601, 48.88122465087404], [2.291277807470489, 48.881343616394055], [2.291336410918324, 48.88146302202127], [2.291330733661252, 48.881473389247], [2.291136752189522, 48.88155441146059], [2.290938204733672, 48.881637340788544], [2.290935344211296, 48.88165093890642], [2.29105995257398, 48.8817426735382], [2.291174983058528, 48.88182872597323], [2.291290013935564, 48.881914777391735], [2.2914146235542843, 48.88200651163239], [2.291529655207754, 48.882092563705996], [2.2916542670374183, 48.88218429769047], [2.2916702335430488, 48.88218259348343], [2.291685787125131, 48.8821879888898], [2.291706337758042, 48.882180092888554], [2.291713948227778, 48.882172260626255], [2.291716095360424, 48.882167087755796], [2.291710162988603, 48.88205735431233], [2.291704233222045, 48.88194763166492], [2.291698300900218, 48.88183789819899], [2.291692371183538, 48.88172817552912], [2.291686440275212, 48.88161844204876], [2.291680509245105, 48.88150871934834], [2.29169190572085, 48.88149952720206], [2.291888198928301, 48.88147806105877], [2.292082029754658, 48.88145686422449], [2.292278322640396, 48.881435397440725], [2.292472153149175, 48.88141419997402], [2.292668445713392, 48.88139273254984], [2.292862275916793, 48.88137153355145], [2.29305856814707, 48.881350066386055], [2.29325239803297, 48.88132886675522], [2.293448689941614, 48.881307398949424], [2.293642520873299, 48.88128619869421], [2.29383635027148, 48.881264999016], [2.294032641710968, 48.88124352935228], [2.294226470791532, 48.88122232904165], [2.294422761909257, 48.88120085873748], [2.294432669291182, 48.8812022985079], [2.294598470099185, 48.8812767972108], [2.294773960849926, 48.8813560418973], [2.294939762635714, 48.88143054011718], [2.295115255799426, 48.88150978340109], [2.2952810585629, 48.88158428113791], [2.295456551400597, 48.88166352390244], [2.295468004116497, 48.88166060999953], [2.29547902951174, 48.88164452999511], [2.2954991975742542, 48.88154782882076], [2.295525907117478, 48.88145694346469], [2.29555261520408, 48.88136605808713], [2.29557278303428, 48.88126935597667], [2.295572103147895, 48.88126508192596], [2.29550711612393, 48.88114613367922], [2.295440178727405, 48.881023612530704], [2.29537519368173, 48.880904663295006], [2.295308256893757, 48.88078214294514], [2.295243271087317, 48.880663193603716], [2.295176334920056, 48.880540673153206], [2.295111349716132, 48.8804217237141], [2.295044414169577, 48.88029920316298], [2.294979430931736, 48.88018025363419], [2.29491249601815, 48.88005773208318], [2.29484751200726, 48.87993878334798], [2.294780577714262, 48.87981626169633], [2.294785583707838, 48.879811498613435], [2.294765737474579, 48.87978933173742], [2.294700449383759, 48.87967858845691], [2.294620202214046, 48.87954247209761], [2.294554914730071, 48.879431729612136], [2.294474668321088, 48.87929561312474], [2.29440938146821, 48.87918486963583], [2.294329135819946, 48.879048753020435], [2.29426384957379, 48.87893801032659], [2.294245149167899, 48.87890629102736], [2.294238075927538, 48.8788939625631], [2.294222768293073, 48.87889290912646], [2.294042334921293, 48.87893412945673], [2.293862695920558, 48.878975168937004], [2.29368226334215, 48.879016388729525], [2.293502623786154, 48.8790574267672], [2.293322189274447, 48.87909864600595], [2.293142549138798, 48.879139684399505], [2.292962115420579, 48.87918090310052], [2.292782474729689, 48.87922194005146], [2.292602040441522, 48.879263158206705], [2.292422399183196, 48.87930419461428], [2.292241962949416, 48.87934541311497], [2.292062321123654, 48.879386448979155], [2.291881885695603, 48.879427666042886], [2.291702243302413, 48.8794687013637], [2.291686164198487, 48.87946962248362]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 183, "zemmour_eric": 230.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "17-54", "circ_bv": "04", "num_bureau": 54, "roussel_fabien": 11.0, "nb_emargement": 1354.0, "nb_procuration": 89.0, "nb_vote_blanc": 15.0, "jadot_yannick": 59.0, "le_pen_marine": 73.0, "nb_exprime": 1339.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1649.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1354, "quartier_bv": "65", "geo_point_2d": [48.880413726273964, 2.293078900788082], "melenchon_jean_luc": 128.0, "poutou_philippe": 0.0, "macron_emmanuel": 615.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328937768481913, 48.82612986244041], [2.328906958337224, 48.826136524819695], [2.328845825522668, 48.82615578638573], [2.328671586970188, 48.82621020378132], [2.328503325502279, 48.826263217278374], [2.328329086233285, 48.82631763416974], [2.32816082543247, 48.82637064718749], [2.327986584084894, 48.826425063567015], [2.327818322577513, 48.82647807699713], [2.327644081875392, 48.826532492880034], [2.327475818322662, 48.826585504916224], [2.327301576904134, 48.82663992029493], [2.327133312656334, 48.82669293184413], [2.326938643301224, 48.82675402115602], [2.326770378316245, 48.8268070321892], [2.326752071278905, 48.82681396765774], [2.326753149636523, 48.826826767374634], [2.326804759142996, 48.82692866148491], [2.326869892788464, 48.82705679457398], [2.326921504101389, 48.82715868951993], [2.326986638321158, 48.82728682251916], [2.327038248727775, 48.827388717386164], [2.327077755209168, 48.82746643361507], [2.327084538232389, 48.82746827413342], [2.327111056250796, 48.82746115727443], [2.327288234878873, 48.82748527163541], [2.32750199523884, 48.827514530825724], [2.327679174229025, 48.82753864460638], [2.327892936389328, 48.82756790310416], [2.328070115741714, 48.8275920163045], [2.328283878340346, 48.827621274102164], [2.328461056692823, 48.82764538671451], [2.328674819729572, 48.82767464381199], [2.328851999817915, 48.827698754952365], [2.328854046280175, 48.82769893012358], [2.329078570246392, 48.82770675628007], [2.329305498842305, 48.827714451599945], [2.329307661112872, 48.8277144133612], [2.329478072772655, 48.82770242240929], [2.329644081252856, 48.82768951974825], [2.329814492742229, 48.82767752921603], [2.329980502433564, 48.82766462519606], [2.329985088208042, 48.827664783995644], [2.3301571400729593, 48.82769039250929], [2.33034343254348, 48.827718105011485], [2.330346882901459, 48.827718320395796], [2.330542049860985, 48.82771402130579], [2.330730497241436, 48.82770801774844], [2.330925664142299, 48.82770371713304], [2.331114110067582, 48.82769771386289], [2.331309278260328, 48.82769341262907], [2.331497724104291, 48.82768740875437], [2.331686171278379, 48.82768140369109], [2.331881337989237, 48.82767710241533], [2.331889965348759, 48.82767481673121], [2.331949426310863, 48.827639695481146], [2.332016944203157, 48.8276068271724], [2.332062855357628, 48.82760095075315], [2.332056983675935, 48.82757846592501], [2.331895113787319, 48.827504155530846], [2.331738158944165, 48.82743198051358], [2.331576289964895, 48.82735766967816], [2.331419336004117, 48.82728549423306], [2.331257467945626, 48.8272111820571], [2.331100514867223, 48.82713900618415], [2.330938647706337, 48.827064694466266], [2.330781695510305, 48.82699251816549], [2.330619830632288, 48.82691820511474], [2.330462879318727, 48.826846028386086], [2.330301013976315, 48.82677171578582], [2.330144063545018, 48.826699538629384], [2.330144037816262, 48.82669952679337], [2.329997114904856, 48.82663103639023], [2.329846053384947, 48.82656122930363], [2.329699132616907, 48.82649273853363], [2.329548070523054, 48.826422931953736], [2.329401150536195, 48.82635444080921], [2.329250089242028, 48.82628463384432], [2.329103170047822, 48.82621614142594], [2.328952110915405, 48.82614633408372], [2.328937768481913, 48.82612986244041]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 82, "zemmour_eric": 101.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-7", "circ_bv": "11", "num_bureau": 7, "roussel_fabien": 30.0, "nb_emargement": 1217.0, "nb_procuration": 77.0, "nb_vote_blanc": 15.0, "jadot_yannick": 120.0, "le_pen_marine": 56.0, "nb_exprime": 1195.0, "nb_vote_nul": 8.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1456.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1218, "quartier_bv": "55", "geo_point_2d": [48.82708816197212, 2.329108779237194], "melenchon_jean_luc": 329.0, "poutou_philippe": 6.0, "macron_emmanuel": 425.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.342705876352739, 48.8979083681067], [2.342678815135693, 48.89791791783077], [2.342483159294536, 48.897914051410865], [2.342278093804957, 48.897910672585354], [2.342082436645588, 48.89790680640258], [2.341877371210558, 48.89790342689088], [2.341681715483394, 48.89789955916168], [2.341476648738985, 48.897896178956344], [2.341280993068833, 48.89789231057246], [2.341075927743042, 48.89788892968845], [2.340880270754586, 48.897885061541615], [2.3406752054946622, 48.897881679072185], [2.340479549927175, 48.897877810278196], [2.340274483346616, 48.8978744280144], [2.340086235438032, 48.8978711245858], [2.339881170284606, 48.89786774075677], [2.339750825540604, 48.89786545291892], [2.339723050783323, 48.897857766199365], [2.339701671053576, 48.89786412611734], [2.339643767951976, 48.897863108985334], [2.339443543033644, 48.89785870518764], [2.339255293870809, 48.897855400445394], [2.339212192180761, 48.89785445217547], [2.339205552252174, 48.89785616471406], [2.339204045422104, 48.8978927775576], [2.339293956600548, 48.89800620825694], [2.339382970037684, 48.898118504378736], [2.339472883371167, 48.8982319340286], [2.33956189621624, 48.89834422998672], [2.339651810317905, 48.89845766037811], [2.339740823946379, 48.89856995528084], [2.339830738827746, 48.89868338551448], [2.339919754591982, 48.898795680268606], [2.340009668889197, 48.89890911033699], [2.340098685425346, 48.89902140493491], [2.340188600502276, 48.89913483484559], [2.340277617798951, 48.89924713018663], [2.340279163115798, 48.89925155524719], [2.340273059181808, 48.89939071437826], [2.340267024967721, 48.89952824431266], [2.34026099208574, 48.89966577423699], [2.340254886690619, 48.8998049333069], [2.340248853733009, 48.89994246409508], [2.340242748273093, 48.90008162312922], [2.340236713898744, 48.90021915297521], [2.340230609737832, 48.900358311981], [2.340224575299444, 48.90049584179159], [2.34021847107364, 48.90063500076155], [2.340212436571111, 48.90077253053673], [2.340206330904997, 48.900911690362584], [2.340200297702347, 48.90104922010985], [2.340194191982729, 48.90118837900064], [2.340193624165555, 48.90120132152488], [2.340142681373957, 48.901227184883005], [2.340146862779219, 48.9012371588501], [2.340232553207662, 48.90123885758687], [2.340423688810016, 48.90124108574078], [2.34063395727804, 48.90124525532634], [2.340825094285091, 48.90124748284718], [2.341035361458456, 48.901251650821195], [2.34122649850616, 48.90125387770145], [2.341436767090141, 48.90125804587753], [2.341627902814464, 48.90126027210971], [2.341844417995495, 48.90126463038812], [2.342035555125452, 48.901266855977234], [2.342252070356629, 48.90127121441793], [2.342443206164154, 48.901273439349], [2.342659721468192, 48.90127779615349], [2.34285085866998, 48.901280021340746], [2.343067374035507, 48.90128437740829], [2.3432585099262973, 48.90128660103824], [2.34328479496246, 48.9012871300734], [2.3434759322365712, 48.901289353363836], [2.343678072334581, 48.90129341908718], [2.343869208284544, 48.90129564174253], [2.3440797041656403, 48.90129987576896], [2.344094853165469, 48.901292138284866], [2.344097804479064, 48.90127183261605], [2.344100772821303, 48.9011428852281], [2.34410204820854, 48.90101676049877], [2.344103324942289, 48.900890636661586], [2.344106291896531, 48.9007616883218], [2.344107568613742, 48.90063556445514], [2.344110535542834, 48.90050661608519], [2.344111812243509, 48.90038049218909], [2.344114779147654, 48.900251543788954], [2.344116054467791, 48.900125419855904], [2.344119022710787, 48.899996471433035], [2.344120298014396, 48.899870347470504], [2.344123266232439, 48.899741399017515], [2.344124541519518, 48.89961527502551], [2.344127508348421, 48.89948632653485], [2.344128784982956, 48.899360202520896], [2.344131751786914, 48.899231254000036], [2.344133028404912, 48.89910512995663], [2.344135995183723, 48.89897618140561], [2.344137271785185, 48.89885005733275], [2.344140238539051, 48.898721108751545], [2.344141515123979, 48.89859498464926], [2.344144481852697, 48.89846603603787], [2.344145757057137, 48.898339911898645], [2.344148725124864, 48.89821096326461], [2.344149987861784, 48.898156096493445], [2.344151263056724, 48.89802997141918], [2.344152968355351, 48.89795589043175], [2.344146651247215, 48.89794141008918], [2.344104929420257, 48.897950777324176], [2.343878928880895, 48.8979468522139], [2.343651728321288, 48.89794193085021], [2.343425727854504, 48.89793800488465], [2.3431985273763543, 48.89793308266118], [2.342972526982161, 48.897929155840416], [2.342745326585485, 48.89792423275713], [2.342705876352739, 48.8979083681067]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 19, "zemmour_eric": 19.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-50", "circ_bv": "18", "num_bureau": 50, "roussel_fabien": 9.0, "nb_emargement": 755.0, "nb_procuration": 0.0, "nb_vote_blanc": 12.0, "jadot_yannick": 16.0, "le_pen_marine": 80.0, "nb_exprime": 720.0, "nb_vote_nul": 9.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1162.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 741, "quartier_bv": "69", "geo_point_2d": [48.899523360258875, 2.3420616268141403], "melenchon_jean_luc": 404.0, "poutou_philippe": 2.0, "macron_emmanuel": 146.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.36809244888894, 48.850876192765675], [2.36809303155216, 48.850876692286505], [2.368102799581707, 48.850897738402075], [2.368160231391387, 48.85102146728207], [2.368220583715197, 48.85115184517632], [2.368278016084597, 48.8512755739715], [2.368338367634673, 48.8514059517694], [2.368395800552896, 48.85152968137912], [2.368456152702761, 48.851660058188486], [2.368513586180719, 48.85178378771342], [2.368573940282425, 48.85191416444077], [2.3686313743201293, 48.8520378938809], [2.368691727648102, 48.85216827051188], [2.368749162245556, 48.85229199986716], [2.368809516162543, 48.85242237640899], [2.368866951319756, 48.85254610567943], [2.368927305825765, 48.85267648213203], [2.368984742905408, 48.85280021132486], [2.369045098000452, 48.85293058768825], [2.369074958335598, 48.85299491394888], [2.369074993844418, 48.85300244891157], [2.3690805152793812, 48.85301253008874], [2.369081142521519, 48.853015991406544], [2.369108717129449, 48.853075393337754], [2.369122527666558, 48.85315174832882], [2.369141721365925, 48.85317081506975], [2.369195144573883, 48.85316125331279], [2.369369568019454, 48.85317416109932], [2.369554328961803, 48.85319098851512], [2.3697287525958792, 48.85320389577775], [2.369913513759749, 48.85322072263851], [2.370087937582222, 48.85323362937715], [2.37027269759386, 48.85325045657496], [2.3702840214039362, 48.85325677476261], [2.3703192202402033, 48.85325660116072], [2.370346508714094, 48.85325702716026], [2.370499882679463, 48.85316295969499], [2.370630303496339, 48.85308060227802], [2.370760725263727, 48.85299824471998], [2.370914097719647, 48.852904176701905], [2.37091455898946, 48.85290389852907], [2.3710283916679202, 48.85283834958628], [2.371181763169916, 48.852744281211606], [2.371295595163564, 48.85267873200521], [2.37129715267564, 48.852677957752256], [2.371453944461098, 48.852607004166096], [2.371573625217959, 48.852555904735794], [2.371693307113595, 48.852504804291264], [2.371850097827887, 48.85243385107422], [2.371851855339407, 48.852433216364275], [2.372066242310104, 48.852368828309395], [2.372251722643194, 48.852315251325884], [2.3722731924142852, 48.852302018468244], [2.372249596440689, 48.85227273405903], [2.372191218407827, 48.85217289458432], [2.372112273276544, 48.85202983395876], [2.3720538957789072, 48.85192999439521], [2.371974951403557, 48.85178693274854], [2.371916574430299, 48.851687093995494], [2.371918504507307, 48.851678358815306], [2.372044110809066, 48.851571057919635], [2.37216942563666, 48.85146313480112], [2.372295029529504, 48.85135583451346], [2.37242034331986, 48.85124791111132], [2.372545947550725, 48.85114060964733], [2.372671260293123, 48.85103268686078], [2.3727968634885572, 48.85092538511264], [2.372922175193739, 48.85081746204243], [2.373047777353752, 48.850710160010124], [2.373173088032547, 48.850602235756966], [2.373171574384262, 48.85059019446922], [2.373030313484849, 48.85050310463591], [2.372884026592794, 48.85041481732425], [2.372742766638523, 48.85032772803704], [2.372596480725952, 48.85023944035991], [2.372455223101058, 48.85015234982735], [2.37230893680527, 48.85006406177757], [2.372167680125592, 48.84997697179111], [2.37202139480928, 48.849888683375895], [2.371880139096278, 48.849801592136934], [2.371733856122123, 48.849713303363394], [2.371592599991629, 48.849626212663374], [2.371446318007783, 48.8495379226251], [2.371305062833119, 48.84945083157191], [2.371200203139642, 48.84938754240067], [2.371177052195169, 48.84936806480326], [2.371159401203739, 48.849367339785886], [2.371117979917711, 48.84934233943809], [2.370961454504795, 48.849248515161115], [2.370815173276942, 48.84916022521337], [2.370668893907423, 48.84907193508694], [2.370512368741709, 48.84897811109181], [2.370504717310557, 48.848975830539764], [2.370304805568637, 48.84896111644136], [2.370107664946682, 48.848945903065314], [2.369907752058142, 48.848931189195206], [2.369710613038958, 48.84891597427241], [2.369510700377341, 48.84890125973849], [2.369313561576322, 48.848886045060354], [2.36911364915252, 48.84887132896333], [2.368916510580754, 48.84885611363053], [2.368719372124106, 48.84884089797277], [2.368519460041297, 48.84882618088233], [2.368322321813713, 48.84881096456993], [2.368122409946961, 48.84879624771498], [2.368118978192901, 48.84879628175327], [2.367898522874392, 48.84881699407734], [2.367682475138832, 48.84883742350898], [2.367466428596544, 48.8488578525573], [2.367245971384638, 48.84887856456993], [2.367191056222446, 48.8488883262316], [2.367188270252275, 48.848896563987054], [2.367244094903933, 48.84902064749237], [2.367301522606112, 48.849144376993216], [2.367357347803717, 48.849268459518726], [2.367414776036965, 48.84939218983701], [2.3674706031323822, 48.849516272289286], [2.367528031918543, 48.84964000162632], [2.367583858175614, 48.84976408489024], [2.367641287503775, 48.84988781414537], [2.367697114306809, 48.85001189642952], [2.367754544166065, 48.85013562650206], [2.367810372866956, 48.850259708712905], [2.367867803268233, 48.850383438703545], [2.367923631141693, 48.8505075208267], [2.367981062095904, 48.85063124983611], [2.368036890504433, 48.85075533187884], [2.368084553956242, 48.850858016488324], [2.36809244888894, 48.850876192765675]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 41, "zemmour_eric": 99.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-54", "circ_bv": "07", "num_bureau": 54, "roussel_fabien": 22.0, "nb_emargement": 988.0, "nb_procuration": 72.0, "nb_vote_blanc": 11.0, "jadot_yannick": 65.0, "le_pen_marine": 70.0, "nb_exprime": 973.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1385.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 988, "quartier_bv": "48", "geo_point_2d": [48.85084013652167, 2.3700582405440915], "melenchon_jean_luc": 276.0, "poutou_philippe": 10.0, "macron_emmanuel": 332.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.265968905756256, 48.84432524144052], [2.265986239573802, 48.84434488929971], [2.266093086761896, 48.84445202119351], [2.266198015929221, 48.84455827332259], [2.266302945524388, 48.84466452534952], [2.26640979536848, 48.84477165783741], [2.266514725825024, 48.84487790965823], [2.266621576554695, 48.84498504103719], [2.266726506510075, 48.84509129264362], [2.266833358099916, 48.84519842471221], [2.266938290279238, 48.84530467612085], [2.267045142754565, 48.845411807080524], [2.26715007579529, 48.84551805828309], [2.267256929130817, 48.84562518993236], [2.26736186167039, 48.8457314409205], [2.267468715891412, 48.845838571460845], [2.267573650654969, 48.84594482225122], [2.267680505736215, 48.846051953481165], [2.267785441361204, 48.846158204065425], [2.26789229732796, 48.846265334186405], [2.267997232451806, 48.846371584556266], [2.268104089278808, 48.84647871536686], [2.268209026626684, 48.846584965538916], [2.268315884326479, 48.84669209613985], [2.268420822535815, 48.84679834610579], [2.268527681121236, 48.84690547559774], [2.268632618829542, 48.847011725349255], [2.268739478275148, 48.847118855530795], [2.268844418207424, 48.8472251050845], [2.268951278538669, 48.847332234157065], [2.268969934773471, 48.847334893362316], [2.269152447894675, 48.84725883285742], [2.269306019154553, 48.847195140583295], [2.269459588676349, 48.847131448100065], [2.269642101720406, 48.84705538774194], [2.269795670419635, 48.84699169481932], [2.26997818113375, 48.84691563303136], [2.270073921230239, 48.84687592464382], [2.270086994232211, 48.846877040474276], [2.270109091435256, 48.846865571652394], [2.270166920550451, 48.84684158666905], [2.270338015416758, 48.8467681204115], [2.270491583781553, 48.84670442658752], [2.270662677727297, 48.84663096075591], [2.270816245291125, 48.84656726650737], [2.270829224278918, 48.84656672145228], [2.270998700722638, 48.84661855952753], [2.271192214584436, 48.846678239677544], [2.27136169175187, 48.84673007723341], [2.271555206443538, 48.84678975679035], [2.271724684334684, 48.846841593826824], [2.271918201218617, 48.84690127279893], [2.272087678470874, 48.84695310930773], [2.272281196184575, 48.847012787686765], [2.272450674160636, 48.84706462367616], [2.272644192704103, 48.847124301462095], [2.272813671403866, 48.84717613693208], [2.2730071907770952, 48.84723581412487], [2.273176670200454, 48.84728764907549], [2.273194657378409, 48.847298234170246], [2.273227398786621, 48.847287303409054], [2.273399936937047, 48.84723110942507], [2.273573188406992, 48.84717494110761], [2.273745725812554, 48.847118746619245], [2.273918976536369, 48.84706257779539], [2.274091513209491, 48.84700638190342], [2.274264763174547, 48.846950213472496], [2.2744372977403, 48.84689401706794], [2.274610548321622, 48.84683784813884], [2.274783082142503, 48.84678165122995], [2.2749563306151, 48.846725481786265], [2.2751288650537003, 48.846669284381285], [2.275302112779963, 48.84661311443119], [2.275353226559568, 48.84659217200143], [2.275350443724893, 48.846581311479305], [2.275287709137714, 48.84651709171413], [2.275227198994445, 48.846454704806824], [2.2751182736242033, 48.84634320058483], [2.275014294554095, 48.84623595594788], [2.274905371459151, 48.846124451518456], [2.274801393263596, 48.846017206675405], [2.274692469718787, 48.84590570202202], [2.274583075175453, 48.84579478348528], [2.274474153925079, 48.845683278619106], [2.274364760300744, 48.8455723607599], [2.274255839994945, 48.845460854773435], [2.274146447302115, 48.84534993669252], [2.274037526565709, 48.84523843047675], [2.273928136166929, 48.84512751218235], [2.273819216362361, 48.845016005745606], [2.273709826895061, 48.844905087229456], [2.273600908022526, 48.844793580571725], [2.273491518124156, 48.84468266182554], [2.273382601533543, 48.84457115585441], [2.2732732125791753, 48.844460235987206], [2.273164296920362, 48.84434872979504], [2.273054908897453, 48.84423780970612], [2.2730408060175, 48.844221088379946], [2.273040130957492, 48.844220738020745], [2.273026632472476, 48.84421373175207], [2.272970050242208, 48.844236257056515], [2.272798156887365, 48.84429750259175], [2.272619311641508, 48.84436153502537], [2.272447417461205, 48.844422780049776], [2.272268571354625, 48.844486811951874], [2.272096676348964, 48.84454805646544], [2.27191782938146, 48.844612087836026], [2.271745932188006, 48.84467333183046], [2.271567085722217, 48.844737362677805], [2.271549337510073, 48.84473452952173], [2.2714382223626, 48.844627158061705], [2.271326634241282, 48.84452012176721], [2.271215518647311, 48.84441275007143], [2.271103931442438, 48.84430571354862], [2.270992818126822, 48.84419834163364], [2.270881231838485, 48.84409130488257], [2.270770119438783, 48.843983932740095], [2.270658534066766, 48.84387689576073], [2.2705474225829683, 48.84376952339076], [2.270435838127467, 48.843662486183085], [2.270324726197053, 48.84355511357738], [2.270213142657858, 48.84344807614142], [2.270102033005942, 48.84334070331656], [2.269990450383142, 48.84323366565233], [2.269879341647, 48.84312629259999], [2.269767759953185, 48.843019253808166], [2.269751617118002, 48.84301596520192], [2.269555530776879, 48.843066057362286], [2.269368384482037, 48.84311533860867], [2.269354684247502, 48.84311393375881], [2.269201846539001, 48.84303104146734], [2.269040065869557, 48.84294645657439], [2.268887227802789, 48.84286356296092], [2.268725448163809, 48.842778977629784], [2.268713411848068, 48.84278047885027], [2.268697096560028, 48.84279842408593], [2.268595570013106, 48.84290302885626], [2.268495293970789, 48.84300772661997], [2.268393766611123, 48.84311233119941], [2.268293489760719, 48.84321702877429], [2.2681932138699388, 48.8433217262636], [2.268091683929902, 48.84342633054892], [2.267991407231028, 48.84353102784945], [2.267889876478117, 48.84363563194386], [2.267789598971142, 48.84374032905558], [2.267688067405451, 48.84384493295911], [2.267587789090364, 48.84394962988207], [2.267486256711885, 48.844054233594676], [2.267478202624499, 48.84405808754299], [2.267294289468301, 48.84408955172953], [2.267106457827746, 48.8441202928179], [2.266922542865089, 48.84415175642287], [2.266734712156259, 48.84418249603489], [2.266550796749674, 48.844213959066614], [2.266362965584749, 48.8442446989926], [2.266179049734241, 48.84427616145108], [2.265991218138645, 48.84430689989239], [2.2659856978187563, 48.84430876189319], [2.265968905756256, 48.84432524144052]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 167, "zemmour_eric": 160.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-32", "circ_bv": "14", "num_bureau": 32, "roussel_fabien": 8.0, "nb_emargement": 1259.0, "nb_procuration": 77.0, "nb_vote_blanc": 15.0, "jadot_yannick": 54.0, "le_pen_marine": 79.0, "nb_exprime": 1240.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1556.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1259, "quartier_bv": "61", "geo_point_2d": [48.84535463182648, 2.270505731413552], "melenchon_jean_luc": 183.0, "poutou_philippe": 1.0, "macron_emmanuel": 545.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376633617632594, 48.85799038428717], [2.37661914679415, 48.85800430275582], [2.376528249853533, 48.85812373924153], [2.376437671357678, 48.8582431818036], [2.376346773573555, 48.858362619024994], [2.376256194257056, 48.85848206052471], [2.376255477461027, 48.85848318816762], [2.376196855512398, 48.85859636944395], [2.376138194491256, 48.85870880851616], [2.376079573396721, 48.858821989719125], [2.376020911868457, 48.85893442871099], [2.375962288902472, 48.859047609826376], [2.375903626856303, 48.85916004963718], [2.375845003392453, 48.859273229772796], [2.375786340839143, 48.85938566950324], [2.375774491726236, 48.85940425834825], [2.3757885737397793, 48.85941203740586], [2.375828665110114, 48.85942545882474], [2.375829012702423, 48.859425570358], [2.376009047344688, 48.85948169136394], [2.37617328724333, 48.859532856199124], [2.376353322638015, 48.85958897578238], [2.376517561849989, 48.85964014013298], [2.376681801384534, 48.85969130425589], [2.376861837874361, 48.85974742306611], [2.376876835566207, 48.85975889228137], [2.376896155407082, 48.8597579361468], [2.376921422847988, 48.859756686312366], [2.376931201898266, 48.85973883843709], [2.377078129997897, 48.8596501696373], [2.377223413003202, 48.85956202450442], [2.377370340106812, 48.85947335533174], [2.377515622114077, 48.859385210729336], [2.377662548232517, 48.859296540284454], [2.377807827889357, 48.859208395306226], [2.377954753001251, 48.85911972538775], [2.3781000330336513, 48.85903158004777], [2.3782469571602762, 48.858942908857166], [2.378392236205403, 48.8588547631484], [2.3785391593254, 48.85876609248417], [2.378684436030964, 48.858677945500276], [2.378831358155073, 48.858589274463185], [2.378976635225372, 48.858501128016876], [2.37912355636442, 48.858412455707594], [2.37926883108445, 48.85832430888548], [2.379272451950779, 48.85832069430449], [2.379346812439053, 48.858182297215386], [2.379422780985036, 48.85804274284982], [2.379497140677318, 48.8579043456327], [2.379573109778192, 48.85776479114379], [2.379647467311701, 48.857626393791506], [2.379723435604674, 48.85748683917224], [2.379735263968665, 48.85747750859321], [2.379726449936625, 48.857465244365265], [2.379689795380038, 48.85740211349419], [2.379636886008226, 48.857314977480485], [2.379640571111937, 48.857310538516394], [2.379621650504175, 48.85728880570919], [2.379593760919692, 48.85724287530368], [2.379531119971447, 48.85713987193716], [2.379450323173097, 48.8570068044918], [2.379387681429447, 48.85690380102122], [2.3793068853634862, 48.85677073345071], [2.37924424553936, 48.856667730789546], [2.379244149343019, 48.85666756840774], [2.379177900267896, 48.85655202264721], [2.379108259366737, 48.85643165671441], [2.379042010893011, 48.85631611085406], [2.378972369247498, 48.85619574570881], [2.378906122737813, 48.85608019975578], [2.378836481721617, 48.85595983450585], [2.378770234450359, 48.85584428844598], [2.378700595426117, 48.8557239230985], [2.378671654409403, 48.85571635769094], [2.378670224298121, 48.85571662186866], [2.3786114059711663, 48.855826401308065], [2.37856564775084, 48.85591016110967], [2.378564779402573, 48.85591143277677], [2.378477715308227, 48.856016897856684], [2.378389175873834, 48.856123531549684], [2.378302112432505, 48.856228996488774], [2.378213572267495, 48.856335630930786], [2.3781265067534623, 48.85644109571489], [2.37803796587949, 48.856547729107305], [2.377950899655601, 48.85665319374344], [2.377862359413858, 48.85675982789198], [2.377842608723947, 48.85677264884496], [2.377843506450492, 48.85677713766502], [2.377755552236867, 48.856894466227814], [2.377671082697587, 48.85700745549486], [2.3775831263441303, 48.85712478389946], [2.377498656068298, 48.857237772122055], [2.377410698926923, 48.85735510127489], [2.377326229266678, 48.857468089359415], [2.377241757866441, 48.857581078265014], [2.37715379957788, 48.85769840629345], [2.377069327430325, 48.857811395053844], [2.376981368364566, 48.857928722931234], [2.376972620439426, 48.85793343223806], [2.376958133789066, 48.85793591635752], [2.376787320126873, 48.85796557233672], [2.376643461372284, 48.85799023591], [2.376633617632594, 48.85799038428717]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 38, "zemmour_eric": 67.0, "hidalgo_anne": 53.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-13", "circ_bv": "07", "num_bureau": 13, "roussel_fabien": 26.0, "nb_emargement": 1386.0, "nb_procuration": 87.0, "nb_vote_blanc": 14.0, "jadot_yannick": 166.0, "le_pen_marine": 49.0, "nb_exprime": 1371.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1726.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1387, "quartier_bv": "43", "geo_point_2d": [48.85799685991928, 2.377913267652235], "melenchon_jean_luc": 475.0, "poutou_philippe": 12.0, "macron_emmanuel": 464.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.310189682802023, 48.86002706936881], [2.310117215042361, 48.860030340765746], [2.309979214509545, 48.86003513910049], [2.3098240589704, 48.860037873253596], [2.309821550507748, 48.86003780752333], [2.309611747038396, 48.8600194592659], [2.309405966312067, 48.86000088203544], [2.309196161774925, 48.859982533040984], [2.3089903813307, 48.859963955994594], [2.308780578463392, 48.85994560537948], [2.308574798313202, 48.85992702761786], [2.308364995741078, 48.85990867627363], [2.308159215884932, 48.859890097796765], [2.3079494135958543, 48.85987174662259], [2.30774363404571, 48.859853166531266], [2.307741746928418, 48.85985291099076], [2.307558724283311, 48.85981906979716], [2.307378884309479, 48.85978586010062], [2.307195862123644, 48.85975201924927], [2.307016023975383, 48.85971880901331], [2.30683618469355, 48.85968559849825], [2.306653163224382, 48.859651755914584], [2.306473324405295, 48.859618544852204], [2.306290303407271, 48.85958470171154], [2.306257298919176, 48.859574394457724], [2.306242879586777, 48.859581047020605], [2.306202475512475, 48.85966335451294], [2.306139060492201, 48.85979307106778], [2.306080500097877, 48.859912360748005], [2.306017085833784, 48.86004207721698], [2.305958524868331, 48.86016136771001], [2.305895108634525, 48.86029108407733], [2.305836547121889, 48.86041037358464], [2.3057731316442602, 48.8605400898661], [2.3057145695604753, 48.86065938018619], [2.305651153488053, 48.86078909547456], [2.305592590845093, 48.86090838570821], [2.305529172790928, 48.86103810179421], [2.305470609600767, 48.861157391042084], [2.305469946713557, 48.86116008255288], [2.30546818390257, 48.861290474756466], [2.305466109246119, 48.86141971936075], [2.305464346416743, 48.861550111533745], [2.30546227310332, 48.86167935611561], [2.30546051025566, 48.86180974825802], [2.305458435559391, 48.86193899280161], [2.30545667269324, 48.862069384913404], [2.305454597977215, 48.86219862942667], [2.305452835080683, 48.86232902240715], [2.305450760344799, 48.86245826689004], [2.30544868696153, 48.862587511365774], [2.305446924049035, 48.86271790340113], [2.305444849283, 48.86284714783856], [2.3054430863521143, 48.86297753984331], [2.305441011566117, 48.86310678425039], [2.305439248616839, 48.86323717622452], [2.305437173811082, 48.86336642060128], [2.305435410843414, 48.863496812544746], [2.305451234853161, 48.863555123807345], [2.30546943106729, 48.86355574293604], [2.305556479884677, 48.863557381257586], [2.305757975369861, 48.86356103069146], [2.305954756511371, 48.86356473248841], [2.306156253403842, 48.86356838215887], [2.306353034601417, 48.863572083300944], [2.306554530187179, 48.86357573229298], [2.3067513128038453, 48.863579432788065], [2.306952808457888, 48.86358308021024], [2.307149591118635, 48.863586780949746], [2.3073510868289793, 48.86359042770131], [2.30754786955772, 48.86359412688668], [2.307749365312401, 48.86359777386698], [2.307946148097167, 48.86360147239743], [2.308147643908134, 48.8636051187072], [2.308344425385874, 48.863608816574875], [2.308545922628197, 48.86361246132265], [2.308742704150005, 48.863616159434756], [2.308944200085445, 48.863619803504065], [2.309140983026294, 48.86362350096915], [2.309342479017984, 48.86362714436792], [2.309539262026743, 48.86363084027882], [2.309740758062754, 48.86363448390634], [2.309937541127487, 48.86363817916237], [2.310139037231642, 48.86364182121999], [2.310335820340431, 48.863645516720446], [2.310406032157752, 48.863633663172074], [2.310392149411175, 48.86357172591799], [2.310400726976834, 48.863440677152134], [2.310409540683785, 48.86330228923831], [2.310418119536167, 48.863171239547974], [2.310426933151336, 48.86303285159923], [2.310435510540777, 48.862901802767155], [2.310444324064168, 48.862763414783494], [2.310444309338105, 48.86276246768291], [2.310432206124128, 48.862625521333406], [2.310420175100202, 48.86250032359589], [2.310408071998661, 48.862363378110814], [2.3103960410932682, 48.86223818034125], [2.310384010257501, 48.86211298165704], [2.310371907341106, 48.86197603612051], [2.310359876611964, 48.861850838303546], [2.310347773831808, 48.861713891832835], [2.3103357445841812, 48.86158869399172], [2.310323640565369, 48.861451747478355], [2.310311611436263, 48.861326549605195], [2.310299507541789, 48.86118960305698], [2.310287478531201, 48.86106440515179], [2.310275376112126, 48.86092745947592], [2.3102633458570843, 48.8608022615308], [2.310251243574241, 48.86066531492082], [2.310239213437721, 48.8605401169437], [2.310227111279203, 48.860403170298945], [2.310215081261202, 48.86027797228978], [2.310202979227007, 48.860141025610154], [2.310194012469311, 48.860047709282675], [2.310189682802023, 48.86002706936881]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 149, "zemmour_eric": 167.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-20", "circ_bv": "02", "num_bureau": 20, "roussel_fabien": 11.0, "nb_emargement": 1065.0, "nb_procuration": 73.0, "nb_vote_blanc": 13.0, "jadot_yannick": 41.0, "le_pen_marine": 57.0, "nb_exprime": 1052.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1298.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1067, "quartier_bv": "28", "geo_point_2d": [48.86178229478833, 2.307923135454572], "melenchon_jean_luc": 113.0, "poutou_philippe": 3.0, "macron_emmanuel": 473.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.286253108921799, 48.866279961958035], [2.286142150097949, 48.86626028434364], [2.285956264713167, 48.86631937886207], [2.285793337338871, 48.86637463406768], [2.285607451138047, 48.86643372893751], [2.285444521673128, 48.86648898365442], [2.285281593225593, 48.8665442381549], [2.285095705851406, 48.866603331321635], [2.284932776676365, 48.8666585853416], [2.284746888486127, 48.86671767885979], [2.28474653794119, 48.86671779278097], [2.284553048364873, 48.86677885061682], [2.284367159327095, 48.86683794263953], [2.284306866301548, 48.86685696759572], [2.284293344569686, 48.86685717003334], [2.284264394475437, 48.86686924605238], [2.284131195617317, 48.866911277356905], [2.283957968526213, 48.86696580563132], [2.283764475741437, 48.86702686217055], [2.283591247882123, 48.86708138990849], [2.283591138351496, 48.8670814243275], [2.283411790947568, 48.86713672279099], [2.283238562341396, 48.867191250912356], [2.283059215548223, 48.86724654885022], [2.28288598620779, 48.86730107645587], [2.282706638662247, 48.867356373859934], [2.282533408587555, 48.86741090094991], [2.28235405892651, 48.867466197811964], [2.282180828129951, 48.86752072348697], [2.282001479067283, 48.867576020722666], [2.281828247536477, 48.86763054588195], [2.281655015630632, 48.86768507168711], [2.281475665456389, 48.867740367227405], [2.281302431453147, 48.86779489250867], [2.281123080526544, 48.86785018751515], [2.281105929061456, 48.867871962062715], [2.281108010128756, 48.86790578828659], [2.2811903791700052, 48.868018447998395], [2.281271861974613, 48.868128277463526], [2.2813533464860702, 48.86823810687041], [2.281435716583371, 48.86835076637953], [2.281517201788216, 48.86846059565279], [2.281599571228532, 48.8685732550183], [2.281681057126872, 48.86868308415793], [2.281763428636535, 48.86879574339617], [2.281844915216086, 48.868905573301404], [2.2819272860687683, 48.86901823239606], [2.28200877335413, 48.86912806126838], [2.282091146276188, 48.86924072023575], [2.282172634255073, 48.86935054897438], [2.282255006520255, 48.86946320779819], [2.282273502937282, 48.86946730372148], [2.2824142639426492, 48.86941971873356], [2.282553037113079, 48.86936707992136], [2.282693797592369, 48.869319494600404], [2.282832570225707, 48.86926685456008], [2.282851591208572, 48.86927067294154], [2.2829279559760263, 48.8693727990215], [2.283031646472278, 48.86950147828261], [2.283108010555628, 48.86960360511751], [2.283211701956099, 48.86973228419579], [2.283288066730713, 48.86983441089447], [2.28339176039862, 48.869963089798034], [2.283468125876981, 48.87006521546123], [2.283484464258594, 48.87006952760796], [2.283657775082149, 48.870031507223395], [2.283829379093973, 48.86999366433907], [2.284002689413369, 48.869955643452506], [2.284174291573854, 48.8699177991637], [2.284347601389087, 48.86987977777506], [2.284519204412264, 48.86984193299735], [2.284532377832414, 48.86984362247306], [2.284681925780077, 48.86992785339743], [2.2848292184327432, 48.87001036189108], [2.284978767339096, 48.87009459243189], [2.285126060933419, 48.87017710054784], [2.2852165767119272, 48.87021954348262], [2.285217982196793, 48.8702187541553], [2.285231348527486, 48.87016695156238], [2.285263923012386, 48.87003869238004], [2.285295981687972, 48.86991443128948], [2.285328041573706, 48.869790170184494], [2.285360615572673, 48.869661911831386], [2.285395908058532, 48.869651987801404], [2.28537009716832, 48.86964005315092], [2.285376608177657, 48.86961441746234], [2.285402670969865, 48.86951179476902], [2.285435889763135, 48.869379637047345], [2.285468463239844, 48.86925137861731], [2.2855016817001292, 48.869119220846244], [2.285534254851904, 48.868990962368066], [2.285567474330048, 48.86885880545505], [2.285600047169327, 48.8687305460295], [2.285633264951322, 48.86859838905896], [2.285665837465878, 48.86847012958526], [2.285699054914904, 48.86833797256534], [2.28573162710464, 48.868209713043555], [2.285764844220702, 48.86807755597427], [2.285797416085524, 48.86794929640434], [2.285830634231774, 48.86781713929382], [2.285863205771884, 48.867688879675796], [2.285896422222029, 48.867556722507764], [2.285928993437234, 48.867428462841644], [2.285962209554431, 48.867296305624265], [2.285976031650176, 48.86724187494325], [2.285978761296865, 48.86723268998764], [2.285976402834643, 48.86722195567694], [2.28599515025858, 48.86714812663425], [2.286037212953728, 48.867023652218435], [2.286069783476671, 48.86689539335147], [2.286111844438626, 48.86677091797362], [2.286144414619907, 48.866642659057035], [2.286186476562591, 48.86651818363264], [2.286219046402111, 48.86638992466648], [2.286240165285704, 48.86632742709404], [2.286253108921799, 48.866279961958035]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 159, "zemmour_eric": 268.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "16-57", "circ_bv": "04", "num_bureau": 57, "roussel_fabien": 7.0, "nb_emargement": 1183.0, "nb_procuration": 71.0, "nb_vote_blanc": 12.0, "jadot_yannick": 34.0, "le_pen_marine": 65.0, "nb_exprime": 1172.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1544.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "63", "geo_point_2d": [48.868276812339815, 2.283961612612837], "melenchon_jean_luc": 91.0, "poutou_philippe": 3.0, "macron_emmanuel": 498.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.395315073059428, 48.87760948557096], [2.395307414802387, 48.877623544787895], [2.395307545743532, 48.87773510375549], [2.395306829731757, 48.8778416329777], [2.395306960672197, 48.87795319192321], [2.395306243282254, 48.87805972201673], [2.395307460115412, 48.87806342800603], [2.395386432808702, 48.878178334945304], [2.395467650679414, 48.878296133709235], [2.395546625442324, 48.87841104052544], [2.395627844038147, 48.87852883915581], [2.395706818154447, 48.87864374493595], [2.395788037475591, 48.878761543432745], [2.395867012287652, 48.87887644998221], [2.395948232334025, 48.87899424834543], [2.396027209215851, 48.87910915477184], [2.396108429987465, 48.8792269530015], [2.396106259169146, 48.87923154751393], [2.3961236651947573, 48.87924736007888], [2.3961238554558433, 48.879247649723126], [2.3961914573618373, 48.879355607976244], [2.396256111670946, 48.87946120856321], [2.3963237141283003, 48.87956916672072], [2.396388367607225, 48.87967476720892], [2.396389205774547, 48.87967668430646], [2.396419885949036, 48.87979497476409], [2.396451537214376, 48.8799116081376], [2.396483188621483, 48.88002824149033], [2.396513869216539, 48.8801465318861], [2.396545520895593, 48.88026316609681], [2.3965762017707233, 48.880381456451374], [2.396576506268194, 48.88040119013768], [2.396580873711772, 48.88040330848397], [2.3966339059449853, 48.880404270949754], [2.396735529582599, 48.880402643572026], [2.396748586717098, 48.88039194890897], [2.396714019910219, 48.880273844965956], [2.396679900484488, 48.880154918570334], [2.396645333990695, 48.88003681458208], [2.396611213524137, 48.879917887235074], [2.3965766473434282, 48.87979978320157], [2.396542528541961, 48.87968085671554], [2.39650796267433, 48.879562752636794], [2.396473842832044, 48.87944382519946], [2.396487339848883, 48.8794331606533], [2.396687054743028, 48.87943412591159], [2.396886063967298, 48.87943456567104], [2.397085778884627, 48.879435529364926], [2.397284788107215, 48.87943596936089], [2.397484503037302, 48.87943693238958], [2.397683512268617, 48.879437371722744], [2.397883227211449, 48.879438334086295], [2.39808223645148, 48.87943877275664], [2.398095678600026, 48.8794281077549], [2.398058278425291, 48.879297759894094], [2.398020596452707, 48.87916856892363], [2.397983196641871, 48.87903822190795], [2.39794551641706, 48.878909029991], [2.397908116980507, 48.87877868292116], [2.3978704357559693, 48.87864949184254], [2.397833036704094, 48.878519143819254], [2.39779535721691, 48.878389952693446], [2.3978003303029203, 48.87837635556802], [2.397790772712007, 48.87836876481484], [2.397668939772096, 48.878342879832424], [2.397458612340281, 48.878298121191435], [2.397299985010895, 48.87826441802322], [2.39708965821312, 48.87821965873083], [2.396931031361469, 48.87818595507133], [2.396928135888769, 48.87818508072604], [2.396777659063725, 48.8781247509952], [2.396627857685541, 48.8780649946495], [2.396477382929132, 48.8780046636422], [2.396327580877545, 48.877944906907395], [2.396177106815826, 48.87788457551611], [2.3960273054542682, 48.877824818399056], [2.395877505799783, 48.877765061098216], [2.39572703140517, 48.87770473002375], [2.3957248199217043, 48.87770401828274], [2.39553914446357, 48.8776590074335], [2.395336276851924, 48.87760816003928], [2.395315073059428, 48.87760948557096]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 41, "zemmour_eric": 70.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-34", "circ_bv": "16", "num_bureau": 34, "roussel_fabien": 21.0, "nb_emargement": 989.0, "nb_procuration": 31.0, "nb_vote_blanc": 10.0, "jadot_yannick": 77.0, "le_pen_marine": 48.0, "nb_exprime": 972.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1273.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 989, "quartier_bv": "75", "geo_point_2d": [48.87872763426256, 2.396669652897224], "melenchon_jean_luc": 401.0, "poutou_philippe": 7.0, "macron_emmanuel": 255.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.284517905923893, 48.87269535914887], [2.28445268324326, 48.87269601161636], [2.284254215004338, 48.87267315352881], [2.2840557015919822, 48.87264992431046], [2.283857232339505, 48.872627065555626], [2.283658719279839, 48.87260383567796], [2.283460250377295, 48.87258097626392], [2.283261737670328, 48.872557745726915], [2.28306326911752, 48.872534885653764], [2.282864756763262, 48.87251165445746], [2.282666288560404, 48.87248879372513], [2.282467776558864, 48.872465561869504], [2.282269310069028, 48.87244270048624], [2.282070798420214, 48.87241946797128], [2.281872330917079, 48.87239660592065], [2.281673819620899, 48.87237337274642], [2.281475352467639, 48.87235051003669], [2.281276841524305, 48.87232727620314], [2.28107837472093, 48.87230441283425], [2.280879864130249, 48.87228117834139], [2.280681397676767, 48.87225831431332], [2.280482887438951, 48.87223507916116], [2.280467257466804, 48.87223699164728], [2.280460761157412, 48.872256034910095], [2.280397461492999, 48.87239245922021], [2.280333184306612, 48.87253142455082], [2.280269883960966, 48.87266784965873], [2.280205606094478, 48.87280681488617], [2.280208913033749, 48.87281573648957], [2.280353728367524, 48.8729131357195], [2.280499586000722, 48.87301190623303], [2.280644403774295, 48.873109306001474], [2.280790261144726, 48.87320807613508], [2.280935080019567, 48.87330547463531], [2.281080939853807, 48.87340424440534], [2.281080865451129, 48.87341684557395], [2.2809445419315573, 48.87350772661015], [2.280809315851868, 48.87359778938127], [2.280672992735804, 48.8736886710008], [2.280537765716717, 48.873778733450415], [2.280401440290069, 48.87386961473759], [2.280266212331676, 48.873959676865645], [2.280129887320843, 48.87405055783689], [2.27999465842324, 48.87414061964344], [2.279858331101702, 48.87423150028229], [2.279723102627994, 48.8743215617755], [2.27958677437159, 48.87441244119095], [2.279451543582807, 48.87450250325367], [2.279315214378995, 48.87459338234494], [2.279179984026643, 48.87468344319505], [2.279179597479039, 48.87468369088498], [2.279030631348702, 48.87477544325404], [2.278882595159736, 48.87486665873116], [2.2787336293462452, 48.87495841072364], [2.278585592129576, 48.875049624919086], [2.278436623906368, 48.87514137651855], [2.278288587000419, 48.875232591239055], [2.278140548225088, 48.87532380486149], [2.277991578421154, 48.87541555678355], [2.277843538605651, 48.87550677002356], [2.277694569131022, 48.87559852066976], [2.277546528262974, 48.8756897344266], [2.277397556378483, 48.87578148467974], [2.277249514482622, 48.87587269715489], [2.277100542914968, 48.87596444703146], [2.277087767395665, 48.875974564831665], [2.277532388561819, 48.87789830026514], [2.278166205964376, 48.87812486259613], [2.279785174828691, 48.87860850759667], [2.279839567179537, 48.87863185882896], [2.279858814881195, 48.878620794914696], [2.279988374202973, 48.87857775474752], [2.280173235823884, 48.87852122321712], [2.280217777766925, 48.8785064261828], [2.280391878364088, 48.87844858762356], [2.280576739088546, 48.87839205546347], [2.280750838904745, 48.8783342163762], [2.280935698833615, 48.878277683655966], [2.28110979786885, 48.87821984404067], [2.28129465698972, 48.87816331165956], [2.281468755243993, 48.878105471516214], [2.281653613581784, 48.878048937675715], [2.281827709691676, 48.87799109699617], [2.282012568597183, 48.87793456260371], [2.2821866639261073, 48.877876721396156], [2.282371520660214, 48.87782018733464], [2.28254561657158, 48.877762345607266], [2.282730472522482, 48.87770581008636], [2.282904567652873, 48.877647967830974], [2.283089422808275, 48.87759143174991], [2.283202661768681, 48.87755380871329], [2.283225333341435, 48.877546813587536], [2.283228709425793, 48.87754512325537], [2.283289564794541, 48.8775249034952], [2.283379889480928, 48.87749356439531], [2.283397935739778, 48.877479159757925], [2.28336656619082, 48.877411563667565], [2.283399703586524, 48.877280614723624], [2.283432533040507, 48.87715013426811], [2.283465670091651, 48.87701918617414], [2.283498497852305, 48.876888705661464], [2.283531634583542, 48.876757756618865], [2.283564462014166, 48.87662727605716], [2.283597599776704, 48.87649632697346], [2.283630426864826, 48.876365847261965], [2.283663562931819, 48.876234898120806], [2.283696389702393, 48.876104417461015], [2.283729525437119, 48.875973468270566], [2.283762351865309, 48.875842988461066], [2.283795488631331, 48.87571203922943], [2.283828314741771, 48.87558155847163], [2.2838614498122842, 48.875450609182536], [2.283894275592818, 48.875320128375755], [2.283927410318717, 48.875189179936676], [2.283960237132586, 48.875058699089024], [2.283993371538802, 48.87492774970135], [2.284026196659335, 48.87479726879655], [2.284059330733311, 48.87466631935959], [2.284092155511491, 48.87453583930502], [2.284125289253333, 48.87440488981879], [2.284158115077203, 48.874274408824135], [2.284191248487013, 48.87414345928861], [2.284224072617583, 48.874012978236784], [2.28425720568281, 48.87388202955129], [2.284290029483402, 48.873751548450485], [2.284323162228867, 48.87362059881642], [2.284355987062782, 48.873490117674756], [2.284389119476231, 48.87335916799144], [2.284421942604526, 48.87322868769189], [2.284455074685765, 48.87309773795932], [2.284487897496452, 48.87296725671152], [2.284521029245586, 48.87283630692967], [2.28455385308959, 48.87270582564103], [2.284517905923893, 48.87269535914887]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 158, "zemmour_eric": 216.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-54", "circ_bv": "04", "num_bureau": 54, "roussel_fabien": 1.0, "nb_emargement": 1099.0, "nb_procuration": 56.0, "nb_vote_blanc": 5.0, "jadot_yannick": 20.0, "le_pen_marine": 48.0, "nb_exprime": 1092.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1470.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1100, "quartier_bv": "63", "geo_point_2d": [48.87559123568487, 2.281036984301944], "melenchon_jean_luc": 82.0, "poutou_philippe": 2.0, "macron_emmanuel": 543.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295592423782618, 48.8428607724781], [2.295602767979087, 48.84286343166093], [2.295676660922427, 48.84286623926782], [2.295678420116813, 48.84286623163787], [2.295862723951462, 48.84287249605874], [2.296116829493548, 48.84286044428825], [2.296301131997927, 48.84286670802573], [2.296507529065771, 48.84287557557192], [2.296691833033003, 48.8428818387154], [2.2968982288647393, 48.84289070557937], [2.297082532932524, 48.84289696812086], [2.297288930253136, 48.84290583431869], [2.297473234421362, 48.84291209625818], [2.297657538633773, 48.84291835791369], [2.297863934774402, 48.842927223111296], [2.297863963374217, 48.842927224178545], [2.298064919282239, 48.84293433301095], [2.298271316917919, 48.84294319751358], [2.298472271580488, 48.842950305653595], [2.298678669348701, 48.8429591694533], [2.298692867107924, 48.842952107212746], [2.298734841972276, 48.84282477710574], [2.298775127651654, 48.84269517336094], [2.298817102120212, 48.84256784229647], [2.298857386021958, 48.842438239385444], [2.298899360082633, 48.842310908262824], [2.298928437987662, 48.84221735734334], [2.298936156191644, 48.84220697710199], [2.298935555445504, 48.842197951121776], [2.298946761029991, 48.842161899071385], [2.298997499638234, 48.842013725128304], [2.29903778403758, 48.841884121200884], [2.299037866434013, 48.84188387075995], [2.299088605887151, 48.84173569585003], [2.29914713673073, 48.84157136262696], [2.299147224938679, 48.8415710852389], [2.2991847615393253, 48.84144281326951], [2.299227254275997, 48.84129928373903], [2.299264790483937, 48.841171011713364], [2.299307282778634, 48.84102748211949], [2.299344818593775, 48.84089921003748], [2.299387310446605, 48.84075568038024], [2.299412509734132, 48.84066956587439], [2.29940910322597, 48.840658532248824], [2.299351256380904, 48.84065617166394], [2.299209696252678, 48.840611853444415], [2.299003086873543, 48.84054829230647], [2.298861527322263, 48.84050397456994], [2.298861207075716, 48.84050387735975], [2.298654598549476, 48.84044031561376], [2.298476177466373, 48.840388148340125], [2.298285206212876, 48.84033236815687], [2.298106785881123, 48.84028019942791], [2.297915815418468, 48.840224418649534], [2.2977373958137512, 48.840172250263905], [2.297546427504361, 48.84011646889846], [2.29736800863899, 48.840064299956836], [2.29717703975802, 48.840008517988316], [2.296998621643927, 48.839956347591425], [2.296807654916227, 48.83990056503581], [2.29662923752936, 48.83984839498227], [2.296623044780469, 48.839844773679516], [2.296518518295652, 48.839728947895956], [2.296404769231877, 48.83959013291763], [2.29639440456761, 48.839588530432536], [2.296367581762046, 48.83959827382629], [2.296267785389291, 48.839701841038305], [2.296173713779473, 48.839801074501615], [2.296073915270787, 48.83990464152506], [2.295979842925944, 48.84000387481795], [2.295880045006153, 48.84010744166885], [2.29578597193823, 48.84020667389192], [2.295691898499951, 48.840305906931526], [2.295592098067374, 48.840409473506185], [2.29558540129874, 48.84042136960751], [2.295588613451407, 48.84042958447927], [2.295712106218324, 48.84047195603307], [2.295869422371827, 48.84052572280744], [2.29603917950183, 48.840583966797055], [2.296196496330707, 48.840637733135935], [2.296366254178876, 48.84069597755484], [2.296523571683231, 48.84074974345821], [2.296693328911409, 48.840807986499826], [2.296850647091336, 48.840861751967665], [2.297020406400129, 48.84091999544661], [2.29717772525543, 48.84097376047894], [2.2971832715677802, 48.84098622954139], [2.297084267687636, 48.84109986051156], [2.296985679633634, 48.84121283459704], [2.296886674904401, 48.841326464481284], [2.296788084630916, 48.841439438372994], [2.296689079040455, 48.84155306807069], [2.296590489260454, 48.84166604268388], [2.296491482808758, 48.84177967219495], [2.296392890821378, 48.8418926457151], [2.296293884870906, 48.842006275047574], [2.296195292026668, 48.84211924838193], [2.296096283840323, 48.84223287841908], [2.29599769013911, 48.84234585156767], [2.295898682466125, 48.84245948052691], [2.295800087907832, 48.84257245348966], [2.295701078011087, 48.842686082254325], [2.295602482595903, 48.84279905503131], [2.295592423782618, 48.8428607724781]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 121, "zemmour_eric": 120.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-64", "circ_bv": "13", "num_bureau": 64, "roussel_fabien": 17.0, "nb_emargement": 1130.0, "nb_procuration": 76.0, "nb_vote_blanc": 10.0, "jadot_yannick": 67.0, "le_pen_marine": 79.0, "nb_exprime": 1118.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1397.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1130, "quartier_bv": "57", "geo_point_2d": [48.84148447500612, 2.2975639971989326], "melenchon_jean_luc": 202.0, "poutou_philippe": 5.0, "macron_emmanuel": 461.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3122606743899112, 48.84127557518821], [2.312243317417086, 48.84127616611339], [2.312239249207752, 48.84127758710802], [2.312142371188169, 48.84132685683759], [2.312046933537601, 48.8413753775037], [2.312038630095033, 48.841377245403415], [2.312008932269114, 48.84137662042737], [2.312004403015385, 48.84138003985473], [2.311796912855268, 48.84138014143096], [2.311599276953567, 48.841380317342974], [2.31139178679156, 48.841380418216495], [2.311194150899331, 48.84138059255989], [2.3109866607354492, 48.84138069273076], [2.310789024828936, 48.841380867304174], [2.310591390283558, 48.841381041558904], [2.310383898754279, 48.84138114067643], [2.310367077716811, 48.84137870624886], [2.310355737697631, 48.8413871201103], [2.310201440058419, 48.841482522153726], [2.310046762546928, 48.84157816912834], [2.309892463776577, 48.84167357075692], [2.309737785119189, 48.84176921821494], [2.309583485217691, 48.84186461942866], [2.309428805426302, 48.841960266470835], [2.309424582910767, 48.84196581637271], [2.309403243743771, 48.84209005046825], [2.309382056367101, 48.842214338485704], [2.309360716996984, 48.84233857254603], [2.309339528067306, 48.84246285962108], [2.3093181884940632, 48.84258709364615], [2.309297000712507, 48.84271138159316], [2.309275660936139, 48.84283561558297], [2.309254472952137, 48.842959903494794], [2.30923313297264, 48.84308413744934], [2.309211943423785, 48.84320842531805], [2.309190603241052, 48.84333265923732], [2.309169414864166, 48.84345694617943], [2.3091480744783, 48.84358118006346], [2.309126884524521, 48.84370546786174], [2.309105545298037, 48.843829701718356], [2.3090843551417928, 48.84395398948141], [2.309063014349748, 48.8440782232949], [2.309041825353464, 48.84420251103062], [2.309020484358276, 48.84432674480882], [2.308999293796989, 48.84445103250145], [2.308991666067617, 48.84446447892044], [2.30900805770719, 48.84447367697308], [2.3091574246114313, 48.844517631797416], [2.309301234113343, 48.84455990491104], [2.309445042485905, 48.84460217784236], [2.309594411489617, 48.84464613212392], [2.309595231032874, 48.84464639497127], [2.309745815869586, 48.84469887935824], [2.30992163430733, 48.84476020146992], [2.310072219801573, 48.84481268544069], [2.310248039019101, 48.84487400616717], [2.310398626521524, 48.844926490628836], [2.3105162308810883, 48.8449675076771], [2.310521292645626, 48.844966818257156], [2.31053338363205, 48.84495093051398], [2.3105602237873972, 48.8448998124181], [2.310594589601593, 48.844837576566434], [2.310594904735106, 48.844836930839854], [2.310638115036551, 48.84473680443954], [2.310680003257081, 48.84463844214649], [2.310723213242264, 48.84453831479825], [2.310765101142754, 48.8444399524579], [2.31076535716559, 48.844439242535245], [2.310805703394294, 48.84430381565072], [2.310845057569648, 48.84417074835298], [2.3108854033834, 48.84403532140901], [2.310924757152525, 48.843902254053], [2.310964110720592, 48.843769186668204], [2.311004455914233, 48.84363375963529], [2.311043809076081, 48.84350069219224], [2.311084153854684, 48.84336526509989], [2.311123505247911, 48.84323219759073], [2.311163849611692, 48.84309677043888], [2.31120320196112, 48.842963702879345], [2.311243545909979, 48.842828275668026], [2.311282897853204, 48.84269520805026], [2.311323241387044, 48.842559780779524], [2.31134230022683, 48.84255334400812], [2.311558713993413, 48.842618985169835], [2.311773671981147, 48.84268378024783], [2.311990086832624, 48.842749420621494], [2.312205045906473, 48.84281421401753], [2.312222825386282, 48.84281014317913], [2.312315226925941, 48.84269140403825], [2.312404907762652, 48.8425760146066], [2.312497308472406, 48.84245727530019], [2.312586988503139, 48.8423418857078], [2.312676669499261, 48.84222649604415], [2.312769068958384, 48.84210775738993], [2.31285874778606, 48.841992367557715], [2.312951146427162, 48.84187362783865], [2.312949767911316, 48.84186398590376], [2.312836271182458, 48.84176799931221], [2.312723607209946, 48.84167264604425], [2.312610111302392, 48.84157666012095], [2.3124974495197, 48.84148130663149], [2.312383954445296, 48.84138532047721], [2.312271293489945, 48.841289966758424], [2.3122606743899112, 48.84127557518821]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 138, "zemmour_eric": 155.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-32", "circ_bv": "12", "num_bureau": 32, "roussel_fabien": 16.0, "nb_emargement": 1288.0, "nb_procuration": 76.0, "nb_vote_blanc": 13.0, "jadot_yannick": 107.0, "le_pen_marine": 73.0, "nb_exprime": 1273.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1517.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1288, "quartier_bv": "58", "geo_point_2d": [48.84284658038806, 2.310622779424324], "melenchon_jean_luc": 173.0, "poutou_philippe": 2.0, "macron_emmanuel": 545.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.350618118111718, 48.821323442543864], [2.350611761853609, 48.8213204706509], [2.350462500106281, 48.821322807789684], [2.350269636248478, 48.82132569838985], [2.350070689575757, 48.821328811940944], [2.349877827035868, 48.821331701916556], [2.349678880316849, 48.8213348148158], [2.349486016359984, 48.82133770505138], [2.349287069594569, 48.82134081729871], [2.349094206966956, 48.82134370601046], [2.348895258793321, 48.8213468175985], [2.348702396121809, 48.821349705678294], [2.348503449252609, 48.821352817521195], [2.348310585175366, 48.82135570496163], [2.348111638271139, 48.82135881525333], [2.3479187755118582, 48.82136170206925], [2.34771982719944, 48.82136481170164], [2.3475269643962893, 48.821367697885634], [2.347328017388314, 48.821370807772894], [2.347135153179359, 48.82137369331749], [2.34693620613651, 48.82137680165354], [2.346743343245647, 48.82137968657366], [2.346544396156473, 48.821382794257836], [2.346351531859828, 48.82138567853855], [2.346341904329428, 48.82138324615127], [2.346190114614496, 48.82128920995087], [2.346039197378638, 48.82119547961088], [2.345887408756237, 48.82110144301053], [2.345736491246061, 48.8210077122654], [2.345584703716187, 48.82091367526515], [2.345433788655548, 48.820819944129774], [2.345282002218192, 48.820725906729564], [2.34513108688333, 48.820632175189075], [2.344979301538487, 48.8205381373889], [2.344828388641737, 48.82044440635752], [2.344676604400696, 48.82035036725816], [2.344525691229612, 48.82025663582162], [2.344373908081074, 48.820162596322305], [2.344222997359474, 48.82006886449562], [2.344181723604957, 48.82004290683194], [2.344170038339151, 48.820047631947666], [2.344114482383252, 48.820110287515526], [2.344041530211677, 48.82018600377308], [2.343951370742694, 48.820287683345924], [2.343878418074754, 48.82036340039129], [2.343876756572853, 48.820364797906485], [2.343731011516899, 48.820464923042], [2.343581679985582, 48.820567736341935], [2.343435933795873, 48.820667861099736], [2.343286601101425, 48.820770674012586], [2.343140853777849, 48.820870798392676], [2.342991518558532, 48.820973610911], [2.342845771462912, 48.82107373492082], [2.342696435069202, 48.82117654795144], [2.342632264303796, 48.82118992963328], [2.342641330115797, 48.821220371339614], [2.3425609097027262, 48.82134475333168], [2.342476487079033, 48.8214732575957], [2.342483792721902, 48.82149120263124], [2.342543338271525, 48.821497281574715], [2.342553690576544, 48.82150001145134], [2.342563251512593, 48.82148265291381], [2.342763468140454, 48.821523999007596], [2.342947747140549, 48.82156077557847], [2.34294956604943, 48.82156105089014], [2.343143003705328, 48.82158105457501], [2.343337315756926, 48.821601287592635], [2.343530755072798, 48.82162129065704], [2.3437250674360213, 48.82164152214455], [2.343918507049911, 48.82166152458102], [2.344112819702208, 48.82168175633703], [2.344306258252161, 48.821701758138055], [2.344500571204847, 48.82172198926327], [2.344503088254224, 48.82172209479789], [2.344723085427546, 48.821718014909656], [2.344939104887155, 48.82171387235447], [2.3451551243124378, 48.82170972940903], [2.345375122755797, 48.82170564742929], [2.345591142112354, 48.8217015036962], [2.345811139124817, 48.82169742090681], [2.346027158401458, 48.82169327728535], [2.346247156707014, 48.82168919370124], [2.346261110830377, 48.82169743096252], [2.346276934738289, 48.8218219268763], [2.34629124946608, 48.82194219643303], [2.346307073520236, 48.822066692315744], [2.346321389746606, 48.822186961850136], [2.346322624408151, 48.82219005976648], [2.346386672372078, 48.82228069496477], [2.346449751143666, 48.822370323814056], [2.346513799561382, 48.8224609580304], [2.34657687876948, 48.82255058679831], [2.346585140283984, 48.82256302718433], [2.346605592317961, 48.82256208036838], [2.346732120472211, 48.82256991722784], [2.346857711707674, 48.82257904843846], [2.34686510306212, 48.822578214613095], [2.347025054292104, 48.82252744489934], [2.347195274946643, 48.82247341502305], [2.347202059826801, 48.82246858372345], [2.34726350427539, 48.82236478272529], [2.3473313927963693, 48.8222526697205], [2.347351258604162, 48.82224838288074], [2.347531617679785, 48.822322838310704], [2.347708927405399, 48.82239557250374], [2.347889287512158, 48.82247002648523], [2.348066598237342, 48.8225427601384], [2.348246959352736, 48.82261721446998], [2.3484242697153173, 48.82268994757584], [2.348604631861835, 48.82276440045889], [2.348781944585963, 48.82283713303234], [2.34878496634073, 48.82283805606202], [2.348963911071713, 48.822876010180494], [2.349145253820696, 48.82291435661824], [2.34932419908713, 48.82295230929571], [2.349505541004471, 48.82299065517709], [2.349684488145681, 48.823028608219545], [2.349865830604575, 48.82306695265263], [2.350044776908013, 48.823104905145996], [2.350226121259217, 48.823143249037514], [2.350405068086661, 48.82318120098914], [2.350586411606194, 48.82321954432428], [2.3506169975671662, 48.82322603125392], [2.350631412079577, 48.823223638039195], [2.350638393917305, 48.823209973925934], [2.3506370165469352, 48.82307581338755], [2.350635706900424, 48.822942777423826], [2.350634329543926, 48.82280861685348], [2.350633019910982, 48.822675580858096], [2.3506316425684552, 48.82254142025584], [2.350630332949078, 48.82240838422884], [2.350628955620626, 48.82227422359462], [2.350627646014815, 48.82214118753595], [2.350626268700232, 48.82200702686981], [2.35062495911919, 48.821873989880174], [2.350623581807378, 48.82173983008145], [2.350622272239902, 48.821606793060134], [2.350620962667907, 48.82147375692243], [2.350619585388253, 48.82133959617657], [2.350618118111718, 48.821323442543864]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 52, "zemmour_eric": 59.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "13-45", "circ_bv": "10", "num_bureau": 45, "roussel_fabien": 21.0, "nb_emargement": 1074.0, "nb_procuration": 46.0, "nb_vote_blanc": 8.0, "jadot_yannick": 52.0, "le_pen_marine": 75.0, "nb_exprime": 1059.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1486.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1074, "quartier_bv": "51", "geo_point_2d": [48.82171461516395, 2.3471114476083543], "melenchon_jean_luc": 445.0, "poutou_philippe": 7.0, "macron_emmanuel": 305.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.373061641202734, 48.828379050769165], [2.373058442716952, 48.82836942780969], [2.372931376097884, 48.828302736028675], [2.372782909645008, 48.82822530489501], [2.372620172752418, 48.82813988962918], [2.3724717058524503, 48.82806245899009], [2.372308969978148, 48.8279770432884], [2.372160505366244, 48.82789961225894], [2.37199777051002, 48.82781419612138], [2.371849305472882, 48.82773676378787], [2.371842850666582, 48.82773491045352], [2.371663472918262, 48.82771546085187], [2.371402933409189, 48.82768964675021], [2.371302299624631, 48.82767873540232], [2.371299582513622, 48.8276764412086], [2.371273968129024, 48.827674641811555], [2.371195224485096, 48.82766610377779], [2.370996779787348, 48.82763872927508], [2.37081740267475, 48.82761927930205], [2.370751893249731, 48.82761024219677], [2.370720949438279, 48.82761143203525], [2.370715280679045, 48.82763496847264], [2.3707172980289393, 48.827700537067514], [2.370720149749066, 48.827775413159955], [2.370709825368154, 48.82778436605154], [2.370511935933393, 48.82781692067173], [2.370312786563301, 48.82784933522377], [2.370114896634014, 48.827881889185086], [2.369915746768895, 48.827914303074074], [2.36971785634509, 48.82794685637655], [2.3695187059958283, 48.827979268703245], [2.36950869068094, 48.827990015569846], [2.369538513385055, 48.82807569502937], [2.369571017554624, 48.828175631971476], [2.369600840467348, 48.8282613114013], [2.369633343520969, 48.828361247403436], [2.369610548489723, 48.82836959484169], [2.369473705794, 48.82828206063898], [2.3693624182888993, 48.82820622785926], [2.3692255764387, 48.8281186933599], [2.369114289643146, 48.82804286033829], [2.369101175745374, 48.82804039792783], [2.3688968725179143, 48.82807441439813], [2.36871511509832, 48.828104559015685], [2.368533358830761, 48.828134703363425], [2.368329054852362, 48.82816871976015], [2.368147296775778, 48.828198863512235], [2.367942992304958, 48.828232878348246], [2.367738091947739, 48.82826692116334], [2.367533786943234, 48.82830093529824], [2.367522561796413, 48.82831738661544], [2.367552650124764, 48.828339146864444], [2.367620266677454, 48.828355866705], [2.367663924776552, 48.828367780397485], [2.367670986140415, 48.82837217968976], [2.367761926701287, 48.82849646539503], [2.367848123048077, 48.82861379537552], [2.367939063090569, 48.82873808091211], [2.368025260246398, 48.82885540984034], [2.368111457779307, 48.82897273959352], [2.3682023990757193, 48.82909702489006], [2.368204158419266, 48.829115848144035], [2.368221726347309, 48.829120273223936], [2.368248731017207, 48.829140827119545], [2.368270329110338, 48.829160255216514], [2.36828953433385, 48.82916210324075], [2.368385607446105, 48.82911405987539], [2.368476842836014, 48.82906716906344], [2.368493396137783, 48.829067078396044], [2.368666548861342, 48.82915304976516], [2.368839543838821, 48.82923848311663], [2.369012696351331, 48.829324453065], [2.369185693816104, 48.82940988680923], [2.369358847468724, 48.829495856243305], [2.369531846080315, 48.82958128857441], [2.369542765311841, 48.82958289395387], [2.369700186844401, 48.82956134284384], [2.369891943480717, 48.82953513381174], [2.369893964392245, 48.829534960087976], [2.370101578562492, 48.82952745574959], [2.370298710876285, 48.82952160196993], [2.370506324935069, 48.82951409692887], [2.370703455801594, 48.829508241575525], [2.370911071100206, 48.82950073673825], [2.371108201870749, 48.829494880717704], [2.37111495297844, 48.82949578860788], [2.371281367449566, 48.82954976064074], [2.371471908840267, 48.82961105600414], [2.371515608358946, 48.82962522950378], [2.371533312908143, 48.82963756837731], [2.371546426350695, 48.829636834147514], [2.37166914208064, 48.829676633045835], [2.371788921215388, 48.82971528678073], [2.371806494871165, 48.829711930000954], [2.371909958680043, 48.82960123469587], [2.37201247994961, 48.82949185012357], [2.372115942873613, 48.82938115551791], [2.372218463278197, 48.82927177074755], [2.372321923965922, 48.82916107593481], [2.372424444867681, 48.82905169097359], [2.372527904681188, 48.82894099596092], [2.372630424728901, 48.828831609902345], [2.372733883668301, 48.828720914689775], [2.372836402840129, 48.8286115293325], [2.372939860905534, 48.82850083392003], [2.373042379212412, 48.82839144836472], [2.373061641202734, 48.828379050769165]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 66, "zemmour_eric": 86.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-13", "circ_bv": "09", "num_bureau": 13, "roussel_fabien": 25.0, "nb_emargement": 1396.0, "nb_procuration": 69.0, "nb_vote_blanc": 20.0, "jadot_yannick": 127.0, "le_pen_marine": 71.0, "nb_exprime": 1365.0, "nb_vote_nul": 11.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1697.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1396, "quartier_bv": "50", "geo_point_2d": [48.828657962795944, 2.370491274187185], "melenchon_jean_luc": 500.0, "poutou_philippe": 9.0, "macron_emmanuel": 400.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.320352164391192, 48.83509111586307], [2.320358067433395, 48.83508349755187], [2.320503671255718, 48.83501408838264], [2.3206801743498042, 48.83492786719786], [2.320825777308519, 48.834858457626886], [2.321002279342861, 48.83477223595481], [2.32114788143797, 48.83470282598212], [2.321324383774853, 48.83461660383048], [2.321469985006358, 48.83454719345601], [2.321646484921218, 48.834460970809346], [2.321777175848844, 48.83439866687048], [2.321792085300823, 48.83439155913386], [2.321797602451791, 48.83438415440967], [2.3217945091471552, 48.834279816908264], [2.321791717991443, 48.834180633613336], [2.321788626072932, 48.834076296100555], [2.321785834939311, 48.833977112787494], [2.321783995023433, 48.83397277277613], [2.321684414827663, 48.83385957337954], [2.321576072636069, 48.833736628951364], [2.321476493342911, 48.833623429357786], [2.321368150781939, 48.833500483808294], [2.321268572391388, 48.83338728401775], [2.32116023079998, 48.83326433915332], [2.321060653311922, 48.833151139165786], [2.320980166375553, 48.833059802400776], [2.3209814268952202, 48.8330549628351], [2.320965806952315, 48.83304248529171], [2.320943922475804, 48.83301719028789], [2.320916068846664, 48.83298558196456], [2.320915457774229, 48.83298480323537], [2.320843736058688, 48.8328793833765], [2.320769273232823, 48.83277200974672], [2.320697552105675, 48.83266658978016], [2.320623091247098, 48.832559216046704], [2.320551370696611, 48.83245379687176], [2.320476909080851, 48.83234642301918], [2.320482652479535, 48.83233482764658], [2.320522673076503, 48.83232007054759], [2.320556882476364, 48.832306955056964], [2.320568632884913, 48.83229645956242], [2.32055417500408, 48.832282646690594], [2.320488538411237, 48.83214351570297], [2.320422428196839, 48.831999465090995], [2.320356792312165, 48.83186033399587], [2.320290681458729, 48.83171628326693], [2.320269887276214, 48.83171149733701], [2.320142220799217, 48.83176988218011], [2.320016319200559, 48.83182860788925], [2.320008926046045, 48.83182850469867], [2.319992276006698, 48.83183989954028], [2.319946606645278, 48.83186120237127], [2.319761973064437, 48.83194804644949], [2.319590402316179, 48.83202807444859], [2.319405767550915, 48.83211491796401], [2.319234194344401, 48.83219494543247], [2.319049558394707, 48.83228178838508], [2.318877985454371, 48.83236181533841], [2.318875967684466, 48.83236297753047], [2.318749834516959, 48.832451503124545], [2.318624777727181, 48.83253956703871], [2.318498643705832, 48.83262809235393], [2.318373587430415, 48.832716155999336], [2.318247452555222, 48.83280468103572], [2.318122394069495, 48.83289274439681], [2.317997336523579, 48.832980807628054], [2.317871200369078, 48.833069332246666], [2.317746140612837, 48.8331573951936], [2.317620003604474, 48.83324591953337], [2.317494944362588, 48.83333398221152], [2.317368806500359, 48.83342250627243], [2.317354163952143, 48.83343625506135], [2.317357289346269, 48.833442376945236], [2.3174802444936082, 48.83350870589935], [2.317623515925785, 48.83358641797702], [2.317782186635983, 48.83367201347635], [2.317925458978995, 48.8337497242817], [2.318084130670301, 48.83383532026732], [2.318227405274542, 48.83391303070736], [2.318231939223014, 48.833917712603885], [2.3182505820121992, 48.83396496668272], [2.318271024757243, 48.83401053389955], [2.318277435231984, 48.834023610441264], [2.318288594994454, 48.83402615451746], [2.318432033317538, 48.83410203450505], [2.318598255624759, 48.83418951111411], [2.318741694848099, 48.834265390719274], [2.318907916833489, 48.83435286687744], [2.319051356957088, 48.83442874610019], [2.319217581345404, 48.83451622182303], [2.3193610223692662, 48.83459210066333], [2.319527246435752, 48.83467957593528], [2.319670688348145, 48.83475545529249], [2.319836914829312, 48.83484292922977], [2.319980357641982, 48.834918808204506], [2.320146583801315, 48.83500628169093], [2.320290027514264, 48.83508216028323], [2.320300828036059, 48.83509598024553], [2.320315302000712, 48.83509513614223], [2.320352164391192, 48.83509111586307]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 52, "zemmour_eric": 62.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "14-19", "circ_bv": "11", "num_bureau": 19, "roussel_fabien": 22.0, "nb_emargement": 1329.0, "nb_procuration": 53.0, "nb_vote_blanc": 18.0, "jadot_yannick": 132.0, "le_pen_marine": 75.0, "nb_exprime": 1306.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1722.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1329, "quartier_bv": "56", "geo_point_2d": [48.833513317960666, 2.319790702091064], "melenchon_jean_luc": 503.0, "poutou_philippe": 13.0, "macron_emmanuel": 386.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.260221150948106, 48.83679617056114], [2.260189852434283, 48.836787494065774], [2.260040550095556, 48.83671221009413], [2.259893858943521, 48.83663642134615], [2.259744558827332, 48.83656113700332], [2.259597867168484, 48.83648534787368], [2.259586662523709, 48.836483629059614], [2.259376036021949, 48.836512913777234], [2.259165508366179, 48.8365432788883], [2.258954880024459, 48.836572562854386], [2.258744351882337, 48.83660292722253], [2.258533723075784, 48.83663220954613], [2.258323194434631, 48.83666257407076], [2.25811256515057, 48.836691855651196], [2.257902036023182, 48.83672221943294], [2.257889155363741, 48.83671956010648], [2.257740672552946, 48.83661423733999], [2.257590225358528, 48.836511427633305], [2.257441742382396, 48.8364061044677], [2.257291297753422, 48.836303293475055], [2.257286578241628, 48.83630119740157], [2.257093419044829, 48.836249489734335], [2.256900814024359, 48.836198404864135], [2.256707656953557, 48.83614669657769], [2.256515052690967, 48.83609561108167], [2.256321895021336, 48.83604390215903], [2.25612929151663, 48.835992816037184], [2.255936688389447, 48.83594172960282], [2.255743531863776, 48.83589001973917], [2.255550929494484, 48.83583893267895], [2.255357775094816, 48.835787222196075], [2.25516517348332, 48.835736134510086], [2.25497201848495, 48.83568442339101], [2.254779417631457, 48.83563333507917], [2.254586264758891, 48.83558162334093], [2.2545567913957782, 48.83557156988539], [2.254544093020886, 48.83557582035061], [2.254477844001865, 48.8356533421386], [2.254383029556171, 48.835763707377374], [2.25428743724643, 48.83587556334816], [2.254192623355594, 48.835985928422545], [2.254099144677566, 48.83609530972634], [2.254004329988358, 48.83620567462981], [2.253910850521137, 48.83631505576495], [2.253816035033549, 48.83642542049747], [2.253722554790002, 48.836534800564706], [2.253627737128922, 48.83664516601708], [2.253627588864319, 48.836645339571085], [2.253624950600428, 48.83664842685922], [2.253597606344695, 48.83668042245481], [2.25350292380646, 48.83679120954884], [2.253408105226717, 48.83690157390249], [2.253313421884005, 48.83701236082461], [2.253218603850195, 48.83712272591403], [2.253123918340658, 48.837233512655736], [2.253029099516308, 48.83734387667379], [2.252941525918831, 48.83744634076585], [2.252846706308258, 48.837556705517635], [2.252759133357022, 48.83765916946514], [2.252664311623643, 48.83776953314355], [2.252576737956294, 48.83787199693802], [2.25248191544956, 48.83798236045079], [2.252394341066091, 48.838084824092235], [2.252299519135356, 48.83819518834723], [2.252189876316745, 48.83832346986809], [2.252095052156677, 48.83843383392896], [2.251985408332755, 48.83856211523497], [2.251890584667882, 48.83867247911872], [2.251780939825932, 48.83880076110925], [2.251686113944602, 48.83891112389949], [2.251672094475161, 48.83904081518326], [2.251656096109715, 48.83919094316819], [2.251642076490421, 48.839320634416], [2.251628536160457, 48.839447685382545], [2.251614516403532, 48.83957737659726], [2.251600977302097, 48.83970442754002], [2.251586956045132, 48.83983411871321], [2.2515734168227413, 48.83996116872432], [2.251559395428134, 48.84009085986449], [2.251545856058956, 48.84021791074258], [2.251531835889025, 48.8403476018582], [2.251518295036565, 48.84047465179618], [2.251504274728995, 48.84060434287874], [2.25149073509217, 48.84073139369217], [2.251477194026901, 48.8408584444811], [2.25146317351382, 48.840988135514316], [2.251449633689922, 48.841115185380126], [2.251435611676856, 48.84124487637174], [2.25142207170616, 48.84137192710453], [2.251408049555441, 48.841501618063084], [2.251394509450861, 48.841628668763505], [2.251380488524945, 48.84175835969756], [2.251366946936937, 48.841885409457824], [2.2513529258733698, 48.84201510035881], [2.251349935351699, 48.842043156473935], [2.251365887332601, 48.84206152976667], [2.25138161554418, 48.842062470907265], [2.251559527561009, 48.842021646380964], [2.251755033877617, 48.841976660518974], [2.251932945309037, 48.841935835434185], [2.252128450994459, 48.841890848059215], [2.252306361827459, 48.84185002331521], [2.252501866868678, 48.84180503532654], [2.252679777116366, 48.841764210024095], [2.252875281513274, 48.84171922142168], [2.253053191175546, 48.84167839556073], [2.253248694928238, 48.84163340634461], [2.253426604017969, 48.84159257902592], [2.253622107113558, 48.841547590095374], [2.253800016980308, 48.84150676222669], [2.253995519444549, 48.841461771783166], [2.254173427350533, 48.841420944246785], [2.254368929170543, 48.84137595318957], [2.254546836491088, 48.841335125094766], [2.254742337666861, 48.84129013342383], [2.254920244414821, 48.841249303871216], [2.254925524410932, 48.841248817819206], [2.255117587800883, 48.84125622140005], [2.255318085563993, 48.84126437599101], [2.255510150429481, 48.84127177894997], [2.255710646951509, 48.84127993287437], [2.255902711930079, 48.841287335202956], [2.256103209935702, 48.84129548847782], [2.256114713666695, 48.84129006394503], [2.256114688639907, 48.841263082593706], [2.256136900002285, 48.841136647419354], [2.2561586879573072, 48.84101151728335], [2.256180899105645, 48.84088508207233], [2.256202686849977, 48.84075995190009], [2.256224897771546, 48.84063351755173], [2.256246683955496, 48.84050838643549], [2.256268471397263, 48.84038325530977], [2.256290681998732, 48.840256820906546], [2.256312469229714, 48.8401316897446], [2.256334679617256, 48.840005255304725], [2.256335167804453, 48.84000369882487], [2.256394233383487, 48.83987243269862], [2.256455438803335, 48.83973823078202], [2.256514505140947, 48.83960696457366], [2.256575709939398, 48.839472762563595], [2.256634775673283, 48.83934149626468], [2.256695979863171, 48.83920729326192], [2.256755043618125, 48.83907602776323], [2.256816248549022, 48.83894182467552], [2.2568753117131, 48.83881055818695], [2.256936514647416, 48.838676355896645], [2.256944003897605, 48.83867073725512], [2.257116734322776, 48.83861980734342], [2.257291843215369, 48.83856601394929], [2.257464572940814, 48.83851508442982], [2.25763968248498, 48.83846129052991], [2.257644621354764, 48.83845871389207], [2.257746420280966, 48.83837371789609], [2.257856790190153, 48.83828144687573], [2.257958588424072, 48.838196450685665], [2.258068957582319, 48.83810417945494], [2.258084587232748, 48.83810057816587], [2.258092126388826, 48.83807487940249], [2.258073049381423, 48.837939523765954], [2.258052643045142, 48.837799933697084], [2.258033566240897, 48.83766457802095], [2.2580131587428403, 48.83752498880182], [2.257994082154553, 48.83738963218681], [2.2579736762322202, 48.83725004293509], [2.257985097333764, 48.837240297093544], [2.25816592887544, 48.8372213131695], [2.258373331431991, 48.837198916001064], [2.258554164038156, 48.83717993239715], [2.258761566263233, 48.83715753455478], [2.258942398597227, 48.83713854946392], [2.259149800490818, 48.83711615094755], [2.259330632539938, 48.83709716526912], [2.259538034089156, 48.837074766978056], [2.259718865853297, 48.83705578071199], [2.259926267083789, 48.83703338084768], [2.260107098562938, 48.83701439399399], [2.260135918768288, 48.83702029859111], [2.260156081288596, 48.83700542980289], [2.260185780045836, 48.836906240514686], [2.260211528067456, 48.836821228828306], [2.260221150948106, 48.83679617056114]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 52, "zemmour_eric": 157.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-44", "circ_bv": "14", "num_bureau": 44, "roussel_fabien": 11.0, "nb_emargement": 939.0, "nb_procuration": 46.0, "nb_vote_blanc": 8.0, "jadot_yannick": 19.0, "le_pen_marine": 105.0, "nb_exprime": 923.0, "nb_vote_nul": 9.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1296.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 940, "quartier_bv": "61", "geo_point_2d": [48.83873511789801, 2.2547584398785516], "melenchon_jean_luc": 257.0, "poutou_philippe": 4.0, "macron_emmanuel": 269.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.33026312044112, 48.88766862146757], [2.33022448310777, 48.887691918275316], [2.330061527799948, 48.887770754536824], [2.329900654751821, 48.8878488252076], [2.329737698462699, 48.88792766101712], [2.3295768244443043, 48.88800573124169], [2.32941595129562, 48.888083802151485], [2.329252992185211, 48.88816263637758], [2.329092118066253, 48.88824070684113], [2.328929157974638, 48.888319540615264], [2.328768282885301, 48.88839761063257], [2.328605321812375, 48.88847644395469], [2.328444444389163, 48.88855451351816], [2.328281483686915, 48.8886333472952], [2.328120605305016, 48.88871141551311], [2.327957643621549, 48.88879024883816], [2.327796764269364, 48.888868316609845], [2.327633801604472, 48.88894714948289], [2.327472921281999, 48.88902521680832], [2.32730995763578, 48.889104049229374], [2.327149076343014, 48.88918211610854], [2.326986111715465, 48.88926094807761], [2.326825229452403, 48.889339014510476], [2.3266622624799043, 48.88941784601984], [2.326501380610261, 48.88949591201416], [2.326338412656319, 48.889574743071506], [2.3262755520575, 48.88958204806863], [2.326275458614029, 48.889608347454605], [2.326307117089387, 48.889701373865165], [2.326352120583902, 48.88983877256624], [2.326396861452852, 48.88997024049527], [2.326441864064458, 48.89010763822199], [2.326486605391022, 48.89023910608527], [2.326531609835457, 48.890376503752265], [2.326576350256, 48.89050797154215], [2.326621355169638, 48.89064536914175], [2.326666097411453, 48.890776836873556], [2.326711101430649, 48.89091423439809], [2.326755844130099, 48.89104570206415], [2.326800849982268, 48.89118309952895], [2.326833116065812, 48.89127790613904], [2.326850767885342, 48.89129808550609], [2.326900497982292, 48.89128930704985], [2.327086308342654, 48.891247592043726], [2.327271940392713, 48.89120550972221], [2.327457751508598, 48.89116379504347], [2.327643382959801, 48.89112171214294], [2.327829193490672, 48.891079995985386], [2.328014824342808, 48.89103791250584], [2.328200632901678, 48.890996196660325], [2.328386264518606, 48.89095411260941], [2.3283923240550592, 48.89095368793962], [2.328553702622613, 48.890966469443384], [2.32878957484164, 48.89098542040126], [2.328950953616647, 48.89099820047007], [2.329186827476169, 48.891017151551786], [2.329348205083366, 48.89102993107723], [2.3293521145854292, 48.89102987293311], [2.32959063370904, 48.891003449985654], [2.329845813224981, 48.890976599995504], [2.329860301682513, 48.890981651650655], [2.329890704156448, 48.89102426095057], [2.329919148586605, 48.891065357410724], [2.3299328984929693, 48.89107057309748], [2.330099625705817, 48.891059690619656], [2.330310451955673, 48.89104418380357], [2.33047717900521, 48.89103330079988], [2.330688005024208, 48.891017794217966], [2.33080049442363, 48.891010451306705], [2.330849155936596, 48.89100791375296], [2.330847703495616, 48.89097501281832], [2.330872099616366, 48.89085658840229], [2.330901255845041, 48.89073154815033], [2.330894792045755, 48.89072246931531], [2.330717049371771, 48.89065216318142], [2.3305342555768602, 48.890580265508916], [2.330356513886682, 48.89050995793157], [2.330173721088729, 48.89043805969932], [2.329995980370803, 48.8903677515777], [2.32981318857001, 48.89029585278581], [2.3296354488126543, 48.8902255450192], [2.329452658008917, 48.890153645667624], [2.329450915295373, 48.890139012867806], [2.329606384872799, 48.89005360474517], [2.329756275129159, 48.88997048634803], [2.329911743702526, 48.88988507781581], [2.330061631611017, 48.889801959915296], [2.330217100555629, 48.8897165500819], [2.330366987491564, 48.88963343178641], [2.330522454056835, 48.88954802243507], [2.330672341395503, 48.88946490285296], [2.330827806956732, 48.889379493092065], [2.33097769331129, 48.88929637401421], [2.331133157868483, 48.889210963843745], [2.331283041898336, 48.88912784346407], [2.3314385054514988, 48.88904243288407], [2.331588389860976, 48.88895931301626], [2.331743852410114, 48.88887390202673], [2.331893735858597, 48.888790780864724], [2.331920534751669, 48.888776909884996], [2.331920996310143, 48.888769635107096], [2.331904552027081, 48.88874709165971], [2.331901933554287, 48.888744648867], [2.3317679081087332, 48.888657009808725], [2.331634308842972, 48.88856839630062], [2.331500284301502, 48.888480756928715], [2.331366687318629, 48.88839214221614], [2.331232663681237, 48.88830450253067], [2.331099066230766, 48.8882158883969], [2.330965043497447, 48.888128248397784], [2.33083144832985, 48.888039633059606], [2.330697425137018, 48.88795199273927], [2.330563830865391, 48.887863377987536], [2.330429809940298, 48.8877757373612], [2.33029621522418, 48.887687121389774], [2.33026312044112, 48.88766862146757]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 75, "zemmour_eric": 91.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-32", "circ_bv": "18", "num_bureau": 32, "roussel_fabien": 24.0, "nb_emargement": 1345.0, "nb_procuration": 84.0, "nb_vote_blanc": 15.0, "jadot_yannick": 127.0, "le_pen_marine": 71.0, "nb_exprime": 1324.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1787.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1347, "quartier_bv": "69", "geo_point_2d": [48.8896119890391, 2.328939126194034], "melenchon_jean_luc": 392.0, "poutou_philippe": 6.0, "macron_emmanuel": 475.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.331920393034483, 48.85241972718718], [2.331778767337139, 48.8524229888308], [2.331732973818442, 48.8524354122056], [2.331674462690996, 48.852425498260274], [2.331665927659359, 48.85242589666755], [2.331489518403034, 48.85239634491282], [2.331351997742515, 48.85237304130865], [2.331175588854704, 48.852343488190435], [2.330979557608323, 48.85231026993819], [2.3308031477815, 48.85228071626155], [2.330607118371434, 48.85224749740489], [2.33043070896835, 48.85221794317751], [2.330234678669115, 48.85218472370116], [2.330233747447804, 48.8521845440133], [2.330178994673584, 48.85217257645231], [2.330042250782465, 48.852142687890876], [2.329868400574, 48.85210186022808], [2.329646483406598, 48.852053355016494], [2.329472633806359, 48.85201252677542], [2.32947129211502, 48.85201226204036], [2.329281864759834, 48.851981786855795], [2.329080644765158, 48.85194880528872], [2.328891217869215, 48.85191832948393], [2.328689996992512, 48.85188534814966], [2.328587775915583, 48.85186890182848], [2.328537697641594, 48.85187993382068], [2.328514210003601, 48.85191374375046], [2.328620835392853, 48.85200817292413], [2.328738270950981, 48.85211308169124], [2.328844897154045, 48.85220751064833], [2.328962333612602, 48.85231241917672], [2.329068960629586, 48.85240684791718], [2.329186399339555, 48.852511757113824], [2.329293025807818, 48.8526061856301], [2.329294733227653, 48.85260821335713], [2.329340248591807, 48.85268395597455], [2.329415780444965, 48.85280502798084], [2.32949448344761, 48.85293048317018], [2.32957001601637, 48.85305155505226], [2.329648719762699, 48.85317701011232], [2.329724253047173, 48.853298081870186], [2.3298029575373, 48.85342353680096], [2.329878491537498, 48.85354460843465], [2.3299571967712263, 48.85367006323617], [2.330032732849944, 48.85379113475328], [2.330111437464601, 48.853916589417864], [2.330186974259068, 48.8540376608107], [2.3302656809803413, 48.85416311535367], [2.330323957523423, 48.854256522986], [2.330334621038398, 48.854268793210494], [2.33038181955064, 48.85425738012472], [2.330562881356934, 48.85421229409902], [2.330745395173058, 48.85416714037473], [2.330926454976856, 48.85412205468695], [2.331108968173388, 48.85407689950516], [2.33129002871183, 48.85403181327114], [2.331472539902881, 48.85398665842283], [2.331472720388255, 48.85398661266478], [2.331638420502872, 48.85394356885595], [2.331802024755733, 48.853901123775756], [2.331967722963684, 48.85385807950002], [2.33213132667999, 48.85381563396631], [2.332294928766973, 48.8537731881997], [2.332460627523607, 48.85373014324408], [2.332624230425199, 48.85368769793082], [2.332789927286783, 48.85364465160897], [2.332791881517486, 48.853644021265616], [2.332963629219913, 48.85357712426106], [2.333132408751633, 48.85351114129888], [2.333301189207179, 48.853445159001616], [2.333472934249022, 48.85337826034718], [2.333477395289623, 48.85337716100269], [2.333609824678653, 48.85336107527195], [2.33374139677503, 48.853345094342664], [2.333872968790704, 48.85332911326842], [2.334005397924015, 48.85331302799849], [2.334006752589028, 48.85331281519645], [2.334097458303265, 48.85329532482516], [2.33419234471118, 48.85327712377439], [2.334193569671878, 48.85327692913498], [2.334366917968247, 48.853254874591165], [2.33455309748383, 48.85323109874179], [2.334726445475563, 48.85320904367621], [2.334912626037495, 48.85318526637474], [2.335085973724583, 48.8531632107874], [2.3352721525845572, 48.85313943381724], [2.335445499966998, 48.853117377708166], [2.335631679861826, 48.85309360018519], [2.335662045801379, 48.85304043789932], [2.335660352207178, 48.85303901560849], [2.335603591739591, 48.853025831569134], [2.335419851504819, 48.852983790664354], [2.335197386739329, 48.85293211896804], [2.335197172034337, 48.85293207010925], [2.335013432458079, 48.85289002857685], [2.334825050513298, 48.852848586902866], [2.334641311531643, 48.85280654479589], [2.334452930173234, 48.85276510343223], [2.334425877682574, 48.85278582160954], [2.334406305666209, 48.852797479011144], [2.334214053282426, 48.8527578063541], [2.334044108752116, 48.85272255556975], [2.333851856920519, 48.85268288232808], [2.3336819142422423, 48.85264763103456], [2.333678160802712, 48.85264722071117], [2.333524433878016, 48.852644742095706], [2.333366873736082, 48.85264244428142], [2.333213146828879, 48.852639966165356], [2.333055585352358, 48.85263766793352], [2.333052507562343, 48.85263738906513], [2.332887104740219, 48.85261036587032], [2.332678511576729, 48.85257512787979], [2.332513107783535, 48.85254810415888], [2.332304516473426, 48.85251286642125], [2.332139113071716, 48.85248584218187], [2.33193052091253, 48.85245060288338], [2.331920393034483, 48.85241972718718]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 86, "zemmour_eric": 72.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "6-7", "circ_bv": "02", "num_bureau": 7, "roussel_fabien": 9.0, "nb_emargement": 816.0, "nb_procuration": 63.0, "nb_vote_blanc": 10.0, "jadot_yannick": 44.0, "le_pen_marine": 25.0, "nb_exprime": 804.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1021.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 816, "quartier_bv": "24", "geo_point_2d": [48.85304807796169, 2.3315465917339027], "melenchon_jean_luc": 126.0, "poutou_philippe": 2.0, "macron_emmanuel": 408.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295844056095913, 48.8392611750742], [2.295846301792077, 48.83926558891437], [2.295980560979761, 48.839339340610955], [2.296111896004196, 48.839412130603826], [2.296246154582747, 48.839485881984615], [2.296377490347334, 48.8395586716764], [2.296380712847519, 48.83956128081815], [2.29639440456761, 48.839588530432536], [2.296404769231877, 48.83959013291763], [2.296518518295652, 48.839728947895956], [2.296623044780469, 48.839844773679516], [2.29662923752936, 48.83984839498227], [2.296807654916227, 48.83990056503581], [2.296998621643927, 48.839956347591425], [2.29717703975802, 48.840008517988316], [2.29736800863899, 48.840064299956836], [2.297546427504361, 48.84011646889846], [2.2977373958137512, 48.840172250263905], [2.297915815418468, 48.840224418649534], [2.298106785881123, 48.84028019942791], [2.298285206212876, 48.84033236815687], [2.298476177466373, 48.840388148340125], [2.298654598549476, 48.84044031561376], [2.298861207075716, 48.84050387735975], [2.298861527322263, 48.84050397456994], [2.299003086873543, 48.84054829230647], [2.299209696252678, 48.840611853444415], [2.299351256380904, 48.84065617166394], [2.29940910322597, 48.840658532248824], [2.299414561875172, 48.84064765756807], [2.29942689800325, 48.84060549993455], [2.299441102868162, 48.84054382433821], [2.299455007152114, 48.840532892989756], [2.299458363517019, 48.84052484890061], [2.299459852612182, 48.840521919381715], [2.299544770709327, 48.84041837041554], [2.299635329787653, 48.84029896524866], [2.299720247172941, 48.84019541613727], [2.299810805461899, 48.84007601081371], [2.299895722135334, 48.83997246155712], [2.29998628099725, 48.83985305608482], [2.300070065211823, 48.83973861408827], [2.300160621905739, 48.83961920845101], [2.300244405361626, 48.83950476630841], [2.300296319648924, 48.83943631404521], [2.300298867471119, 48.83942911060414], [2.300246131727353, 48.839407841402824], [2.3001649822889663, 48.83936762619933], [2.300164925443323, 48.839367597986275], [2.299992809104848, 48.83928116422019], [2.299841869581758, 48.83920554406617], [2.299669754326204, 48.83911910892342], [2.299518817091297, 48.83904348925805], [2.299346702906683, 48.838957053638], [2.299195765259435, 48.83888143264673], [2.299023652133564, 48.838794997448616], [2.298872715424281, 48.83871937603877], [2.298721780515349, 48.838643754441335], [2.298549668960197, 48.83855731854289], [2.298548908784391, 48.838556907569476], [2.298391526921279, 48.8384655483122], [2.29824354315702, 48.83837889731929], [2.298086163741103, 48.838287536754414], [2.2979381809898722, 48.83820088536994], [2.297780801272275, 48.83810952528007], [2.2976328208963333, 48.838022873512024], [2.297612924436276, 48.83801239952002], [2.297605980923968, 48.83801303957185], [2.29751320300729, 48.83807846723515], [2.2973694027113503, 48.838179838897084], [2.297237252169118, 48.83827303158924], [2.297093450799733, 48.83837440290177], [2.296961299270939, 48.838467595272824], [2.296817496828101, 48.83856896623599], [2.2966853456749208, 48.83866215829397], [2.296541542158622, 48.83876352890772], [2.296409388656381, 48.83885672063662], [2.296265584066612, 48.83895809090098], [2.296133429577786, 48.83905128230878], [2.295989623926685, 48.839152651324476], [2.295857468451068, 48.83924584241115], [2.295844056095913, 48.8392611750742]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 119, "zemmour_eric": 123.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-63", "circ_bv": "13", "num_bureau": 63, "roussel_fabien": 18.0, "nb_emargement": 1155.0, "nb_procuration": 70.0, "nb_vote_blanc": 14.0, "jadot_yannick": 90.0, "le_pen_marine": 53.0, "nb_exprime": 1140.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1421.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1155, "quartier_bv": "57", "geo_point_2d": [48.83938409970088, 2.2981348056530475], "melenchon_jean_luc": 197.0, "poutou_philippe": 2.0, "macron_emmanuel": 479.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389598673415337, 48.8585100094817], [2.3896261689796923, 48.85849963367372], [2.389777997603685, 48.85844692207734], [2.389935715347507, 48.8583986318184], [2.389961563355468, 48.85838822145255], [2.389931010432397, 48.858352763654516], [2.389907769883919, 48.858243510387226], [2.389892142413988, 48.85815036634177], [2.389893063110637, 48.8581456512655], [2.389907580871681, 48.8581243981793], [2.389903793158787, 48.85811962852008], [2.389964206845145, 48.858024154307834], [2.390009187160656, 48.85794745259302], [2.390009772977063, 48.857942235771255], [2.389965175646463, 48.85781126590194], [2.389921593499504, 48.857683010907145], [2.389878010214843, 48.85755475497546], [2.389833413536574, 48.85742378591059], [2.389789832048589, 48.85729552992377], [2.389745234450959, 48.85716456078849], [2.389701653396854, 48.8570363047396], [2.389657057605623, 48.856905335547836], [2.389643616825253, 48.8568983141364], [2.389453072723974, 48.85689963542514], [2.3892510566120553, 48.85690108852059], [2.38906051249078, 48.85690240918428], [2.388858497730383, 48.856903860724664], [2.388667953578472, 48.85690518166254], [2.3884994316424573, 48.85690639179868], [2.388482475503554, 48.856901271499666], [2.388467848124993, 48.85690699304336], [2.388434353915622, 48.8569072337691], [2.388223277236694, 48.85690842927523], [2.388021262429748, 48.85690987940221], [2.387810185730628, 48.85691107417969], [2.3876081708913652, 48.85691252450864], [2.387406156051429, 48.85691397359722], [2.387195079321629, 48.85691516728971], [2.387182373628454, 48.85692111256283], [2.387103590837945, 48.85706545548541], [2.387023750767733, 48.857211236376365], [2.386944967099115, 48.85735557915681], [2.386865126151209, 48.857501359004566], [2.386847644175233, 48.85750675274964], [2.386647327075942, 48.8574586075648], [2.386446187141126, 48.85741057653557], [2.386245870782552, 48.85736243067453], [2.386044731588992, 48.857314398966345], [2.385844415971141, 48.857266252429135], [2.385643277519047, 48.857218220042], [2.385626168801611, 48.85722304893753], [2.385549548996464, 48.85733774774142], [2.385474119911901, 48.857449108827154], [2.385397499439612, 48.85756380751032], [2.385322071065707, 48.85767516848457], [2.385245449926272, 48.85778986704703], [2.385170019537227, 48.85790122789575], [2.385169887644198, 48.85790143226923], [2.385103552681241, 48.85800776837973], [2.385037305315225, 48.85811451229897], [2.384970971173207, 48.858220848322574], [2.384904723254028, 48.8583275930472], [2.384838387207329, 48.85843392896989], [2.384772138756208, 48.858540672701345], [2.384705802167628, 48.85864700853012], [2.384639553163324, 48.858753753067], [2.384627537416029, 48.85876976709623], [2.384629528399497, 48.85877302667334], [2.3847392914792582, 48.8588005570659], [2.384950484625331, 48.85885262126324], [2.38513317276041, 48.85889844195583], [2.385344365333915, 48.858950505446444], [2.38552705552153, 48.85899632554069], [2.385738248885489, 48.859048388331594], [2.38592093838918, 48.859094208712776], [2.385921871740128, 48.85909446531917], [2.386057666183826, 48.859136026558545], [2.386211343887069, 48.85918274628249], [2.386216936517382, 48.85918862431363], [2.386239850336981, 48.85919054682463], [2.386391475010403, 48.859228991693904], [2.386547383892811, 48.859268354978525], [2.386699009019588, 48.85930679945548], [2.386854917004332, 48.85934616232968], [2.38687258668428, 48.85934085408953], [2.386944257554195, 48.85921166960915], [2.387015621689303, 48.85908246011848], [2.3870872918491273, 48.8589532755224], [2.3871586552756012, 48.858824065916295], [2.387230323362422, 48.85869488119749], [2.387301687453769, 48.85856567058372], [2.387373354830525, 48.858436485749166], [2.387444718202674, 48.858307275919316], [2.387516384869477, 48.85817809096899], [2.387587747532915, 48.85804888102377], [2.387604586313275, 48.85804336966401], [2.387787766217333, 48.85808081413999], [2.387967407681161, 48.85811725185354], [2.3881505881058143, 48.858154695771624], [2.388330228715196, 48.85819113293115], [2.388513411023144, 48.85822857629833], [2.388693052141085, 48.85826501291077], [2.388876234969517, 48.85830245572002], [2.389055876595807, 48.85833889178538], [2.389235518473449, 48.8583753275799], [2.389418702079555, 48.858412769555045], [2.389422272138974, 48.85841389576541], [2.389489736796479, 48.85844400563778], [2.389571045106789, 48.85848006241772], [2.389598673415337, 48.8585100094817]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 36, "zemmour_eric": 55.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-42", "circ_bv": "06", "num_bureau": 42, "roussel_fabien": 30.0, "nb_emargement": 1133.0, "nb_procuration": 33.0, "nb_vote_blanc": 21.0, "jadot_yannick": 96.0, "le_pen_marine": 96.0, "nb_exprime": 1111.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 9, "nb_inscrit": 1522.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1134, "quartier_bv": "43", "geo_point_2d": [48.85794761883589, 2.387342229395544], "melenchon_jean_luc": 460.0, "poutou_philippe": 8.0, "macron_emmanuel": 267.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294327533468581, 48.83294358921089], [2.294344027260697, 48.832945488873285], [2.2944816024364743, 48.832918930668534], [2.294685405372959, 48.832880183302606], [2.294858547870385, 48.83284675811268], [2.295062350244525, 48.832808010101985], [2.295235492260537, 48.83277458436427], [2.295439294072325, 48.83273583570879], [2.295612435606917, 48.832702409423256], [2.295816236856345, 48.832663660122996], [2.295989377909513, 48.83263023328968], [2.295991583349358, 48.832629941382834], [2.296189719340714, 48.832614817084746], [2.296392000608423, 48.83260010537532], [2.296590136370303, 48.83258498041346], [2.296792418771353, 48.8325702680345], [2.296990554303644, 48.83255514240894], [2.297192835113777, 48.832540429344334], [2.297390970416471, 48.832525303055114], [2.297593250997698, 48.83251058931294], [2.297610118540123, 48.83250234126348], [2.297599169294886, 48.8324829565682], [2.297510283724317, 48.83236258548641], [2.297420274954691, 48.83224077771722], [2.297331391584364, 48.83212040558519], [2.297241383638765, 48.831998598554335], [2.297152499732323, 48.83187822625532], [2.297062492634987, 48.83175641816418], [2.296973609542304, 48.831636046605546], [2.296883603281202, 48.83151423835347], [2.296794722388822, 48.83139386574455], [2.296704716951603, 48.83127205823081], [2.296615835522992, 48.83115168545495], [2.296525830934115, 48.83102987688096], [2.296532662464693, 48.83101768103611], [2.296706481313885, 48.830968006289865], [2.296873630207636, 48.83092024732441], [2.297047448407058, 48.83087057207831], [2.297214596676036, 48.83082281263224], [2.297388414225789, 48.83077313688632], [2.297555561857875, 48.830725377858826], [2.297722710557996, 48.83067761770446], [2.297896525777182, 48.83062794120564], [2.297897367879027, 48.83062772220421], [2.297921969622051, 48.83062706438094], [2.297928627437424, 48.83062045616563], [2.2981090810098372, 48.830578030433536], [2.298288065933923, 48.8305358962045], [2.298468517558941, 48.830493469918956], [2.298647501902298, 48.83045133514884], [2.2988279543042642, 48.83040890832573], [2.299006938066684, 48.830366773014546], [2.299187389883419, 48.83032434564595], [2.299366373064999, 48.8302822097937], [2.299546822934333, 48.830239781871605], [2.2997258055350702, 48.83019764547826], [2.2999062561813313, 48.83015521701862], [2.300085238201219, 48.830113080084246], [2.3002656869000733, 48.83007065107115], [2.3004446697012693, 48.83002851360367], [2.300625117814875, 48.82998608404508], [2.300804098673155, 48.82994394602854], [2.300813030831137, 48.829936637741156], [2.300835920232665, 48.829820059310485], [2.300864401568921, 48.829675847791286], [2.300887289378926, 48.82955926931567], [2.300915770430506, 48.82941505775072], [2.300938659373391, 48.82929847924617], [2.300955996668407, 48.82921068705278], [2.300953292604127, 48.8292082528193], [2.300924315830531, 48.82920608772369], [2.30073445221952, 48.829240192012676], [2.300544889148106, 48.82927421411622], [2.300355023678738, 48.829308317792815], [2.300165460099925, 48.829342340192206], [2.299975595496383, 48.829376443272366], [2.29978603143432, 48.82941046416896], [2.299596164972227, 48.82944456663676], [2.299406600402868, 48.8294785878292], [2.299216734806618, 48.82951268970052], [2.299027169754036, 48.829546709390215], [2.298837302299347, 48.82958081064914], [2.298647736739265, 48.82961483063467], [2.298457870150539, 48.82964893129713], [2.298268304107261, 48.82968294977987], [2.298078435660106, 48.82971704982992], [2.29788886910943, 48.82975106860852], [2.29769900152805, 48.82978516806213], [2.297509434494307, 48.829819185337946], [2.297319566416665, 48.82985328418709], [2.29712999751337, 48.82988730175073], [2.296940128939466, 48.82992139999547], [2.296750560915082, 48.82995541606431], [2.296560691845031, 48.82998951370464], [2.296371123313251, 48.83002353006929], [2.2963608213567612, 48.83002267081159], [2.296233513047641, 48.82997492203973], [2.29610381434879, 48.82992635771431], [2.295976505148007, 48.82987860865679], [2.295846806928189, 48.82983004404842], [2.295834556205452, 48.8298296481429], [2.29564340377364, 48.82988572297555], [2.295465057096028, 48.82993778616585], [2.295286710062197, 48.82998984908779], [2.295095556453712, 48.830045923036806], [2.294917208693097, 48.83009798450346], [2.294726055652839, 48.83015405786456], [2.294547707141122, 48.830206119674436], [2.294356551944766, 48.83026219243153], [2.29417820269411, 48.83031425368541], [2.293987046703719, 48.83037032584654], [2.293808698088477, 48.830422385653094], [2.293617541304263, 48.830478457218256], [2.29343919057574, 48.830530517360046], [2.2932480329976013, 48.83058658832922], [2.293069681530147, 48.830638647914974], [2.292949889955084, 48.83067378449118], [2.292948245761853, 48.83067629123018], [2.29295867181155, 48.830692614517915], [2.292991921981784, 48.83086537469341], [2.29302002200094, 48.83102876525161], [2.293021143457457, 48.831031454724034], [2.293102499945475, 48.831150279301106], [2.293183512123705, 48.831268502787914], [2.293264867977472, 48.83138732812066], [2.293345882266589, 48.83150555058123], [2.293427238860396, 48.83162437577838], [2.293508252511733, 48.831742598995184], [2.293589611219983, 48.831861423165485], [2.293670625607941, 48.83197964624732], [2.293751985056255, 48.83209847028201], [2.29383300018084, 48.83221669322882], [2.293914358994825, 48.832335518019214], [2.293995376218269, 48.83245374083902], [2.294076735784514, 48.8325725645945], [2.294157752382485, 48.832690787271275], [2.294239114050941, 48.8328096108992], [2.294320131385568, 48.83292783344097], [2.294327533468581, 48.83294358921089]]], "type": "Polygon"}, "properties": {"lassalle_jean": 29.0, "pecresse_valerie": 91, "zemmour_eric": 86.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-52", "circ_bv": "13", "num_bureau": 52, "roussel_fabien": 17.0, "nb_emargement": 1134.0, "nb_procuration": 57.0, "nb_vote_blanc": 7.0, "jadot_yannick": 66.0, "le_pen_marine": 117.0, "nb_exprime": 1122.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 9, "nb_inscrit": 1547.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1135, "quartier_bv": "57", "geo_point_2d": [48.83102525705923, 2.296195040399814], "melenchon_jean_luc": 366.0, "poutou_philippe": 5.0, "macron_emmanuel": 286.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.327110089853369, 48.881784717654924], [2.327105166909924, 48.88176712241347], [2.327101257155152, 48.88168029590671], [2.327096417368895, 48.88155981111574], [2.327090604648948, 48.8814307286119], [2.327085764910427, 48.881310243793195], [2.327079953608241, 48.881181161267214], [2.327075112554157, 48.88106067641304], [2.327069301306119, 48.88093159385734], [2.327064461663372, 48.8808111089831], [2.327062995373592, 48.88077853676068], [2.327067573536651, 48.88077035966964], [2.327050959603858, 48.880745368223884], [2.3270466147249182, 48.880648857857466], [2.327041715067546, 48.88051455704304], [2.327035903963225, 48.88038547442167], [2.327031005721833, 48.880251173582344], [2.32702519332159, 48.88012209002261], [2.327020295132487, 48.87998778915076], [2.327014482776667, 48.87985870645891], [2.327009584639956, 48.87972440555446], [2.327003773715056, 48.87959532193964], [2.326998874267376, 48.87946102099498], [2.326993063386788, 48.87933193824803], [2.326988163991505, 48.87919763727083], [2.326982353166848, 48.87906855449251], [2.32697745383548, 48.878934252583484], [2.326971643066857, 48.87880516977376], [2.326966743776261, 48.87867086873149], [2.326960933063468, 48.87854178589038], [2.3269560338369892, 48.878407483916284], [2.3269502231801242, 48.87827840104379], [2.326945325357738, 48.8781440999441], [2.326939513393482, 48.878015017032595], [2.326934615635103, 48.8778807150011], [2.326928803726781, 48.877751632058214], [2.326923906009165, 48.877617330893436], [2.326918094156676, 48.87748824791919], [2.326913196491545, 48.877353946721925], [2.32690738607001, 48.87722486282469], [2.32690248709376, 48.87709056158722], [2.32689667671663, 48.87696147855791], [2.326891777792771, 48.876827177287886], [2.326885967483086, 48.87669809332796], [2.326881068611716, 48.87656379202544], [2.326875258346333, 48.87643470893341], [2.326869448121371, 48.87630562492674], [2.326864549329512, 48.87617132357571], [2.326858739148851, 48.87604224043696], [2.326853840409378, 48.87590793905342], [2.326848030296261, 48.87577885498405], [2.326843131609072, 48.87564455356802], [2.326814621228703, 48.87559346911846], [2.326807633915939, 48.875591654530915], [2.326721668352579, 48.87559765258957], [2.326614372629533, 48.875582290031744], [2.326580807580767, 48.875563737628106], [2.326532217863935, 48.87556972906415], [2.326432641348668, 48.875555470989184], [2.326237871368993, 48.875528050370946], [2.326030998272412, 48.87549842896103], [2.325836230080849, 48.875471007695566], [2.3256293574392553, 48.87544138559006], [2.325434589672459, 48.87541396366969], [2.325227717485864, 48.87538434086856], [2.325032950143842, 48.8753569182933], [2.324826078412252, 48.87532729479657], [2.324631310131668, 48.87529987155875], [2.324424440230106, 48.875270246474805], [2.3242923299120752, 48.87525164535426], [2.324246654948643, 48.875248094145576], [2.324229503098901, 48.87530063471322], [2.324199474965244, 48.8754323037346], [2.324167813093612, 48.87556524866459], [2.324137783276418, 48.87569691853048], [2.324106121086462, 48.8758298634123], [2.324076090972414, 48.87596153233181], [2.324044428464129, 48.87609447716539], [2.324014399404926, 48.87622614604553], [2.323982736578309, 48.87635909083092], [2.323952705835532, 48.87649076055559], [2.323921042690576, 48.876623705292744], [2.32389101301432, 48.87675537407874], [2.3238593495510242, 48.87688831876765], [2.323829318202844, 48.87701998749891], [2.323797654421199, 48.87715293213959], [2.323767622764472, 48.87728460082378], [2.3237359586527973, 48.877417546315506], [2.323705928050925, 48.87754921496027], [2.323674263632573, 48.87768215950451], [2.32364423135874, 48.8778138280945], [2.323612566622025, 48.8779467725905], [2.323582534039633, 48.8780784411334], [2.32355086898455, 48.87821138558114], [2.32352083744534, 48.87834305498395], [2.323489172071785, 48.87847599938346], [2.323459138872362, 48.87860766783215], [2.323427473180431, 48.87874061218343], [2.323397441035874, 48.87887228059273], [2.323365775025564, 48.87900522489575], [2.323331753483813, 48.879022669472924], [2.32335356059732, 48.87904699385446], [2.3233696778084703, 48.8791659780181], [2.323383396309338, 48.87928005532484], [2.323399512297322, 48.87939903945157], [2.3234132309249302, 48.879513116730756], [2.323429348416654, 48.87963210083603], [2.323443067171008, 48.87974617808764], [2.3234567859855613, 48.87986025532593], [2.323472903684122, 48.87997923938778], [2.323470703115328, 48.879994654143054], [2.323501031687639, 48.88000720846882], [2.323555157138656, 48.88009585506844], [2.323648712547466, 48.880251912797334], [2.323702839867652, 48.880340559318185], [2.323701726306794, 48.880348713589555], [2.32360984883571, 48.880444854110344], [2.323514935934789, 48.88054139918999], [2.323516150491503, 48.880552240334815], [2.323638575323559, 48.88064378280314], [2.323755902905631, 48.880732331239095], [2.323759033285489, 48.88073992041627], [2.32372840201984, 48.88084671779854], [2.323694239796957, 48.880960171873], [2.323663608257213, 48.88106697011658], [2.323629445760274, 48.88118042325059], [2.323647882068012, 48.881203465816576], [2.323652751953869, 48.881204578824466], [2.32380667430611, 48.881130529280156], [2.323953457592422, 48.8810603899963], [2.324107377727545, 48.88098634004799], [2.324254160202378, 48.88091620038633], [2.32440808084728, 48.88084215004936], [2.324554862510839, 48.880772010009856], [2.3247087823019212, 48.880697959276645], [2.324855563154108, 48.880627818859246], [2.324871362618126, 48.88062772539272], [2.325051841051513, 48.88071074970772], [2.3252251050843302, 48.88079337874136], [2.325405584644066, 48.88087640340987], [2.325578849800899, 48.88095903101986], [2.325752115495988, 48.88104165927215], [2.325932595404438, 48.88112468222056], [2.326105862211795, 48.88120730994846], [2.326286344610115, 48.88129033325807], [2.326291837172808, 48.88129570440921], [2.326337857721542, 48.88142844239022], [2.326383117852487, 48.88155778916841], [2.326429138865477, 48.8816905270827], [2.32647439945091, 48.881819873795564], [2.326520420928163, 48.88195261164321], [2.326565681968091, 48.88208195829077], [2.326610943244477, 48.88221130400674], [2.32665696541567, 48.88234404175463], [2.3267022271349322, 48.882473388304604], [2.326748249770406, 48.8826061259858], [2.326793513307722, 48.88273547247811], [2.326839536407485, 48.8828682100926], [2.32688479903578, 48.8829975565119], [2.326930822599838, 48.88313029405971], [2.326976085682658, 48.88325964041366], [2.327022109710915, 48.88339237789473], [2.326976579030378, 48.883413392953805], [2.326978033115954, 48.88342897395621], [2.327119584434673, 48.883455436508314], [2.327140995332783, 48.88345846437843], [2.327160532976679, 48.88345375825674], [2.327175279127196, 48.883420529879885], [2.327168826469863, 48.88328606420106], [2.327163013377755, 48.883156981903234], [2.327156559409679, 48.88302251708311], [2.327150747752461, 48.88289343386218], [2.327144936112433, 48.88276435152506], [2.327138482239693, 48.88262988665602], [2.327132670671098, 48.88250080338812], [2.327126216862688, 48.88236633848621], [2.327120405353905, 48.88223725518677], [2.327113951609825, 48.882102790251984], [2.32710813878571, 48.88197370781267], [2.327101685117582, 48.88183924194574], [2.327099783464843, 48.88179698598715], [2.327110089853369, 48.881784717654924]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 110, "zemmour_eric": 117.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-8", "circ_bv": "01", "num_bureau": 8, "roussel_fabien": 16.0, "nb_emargement": 1216.0, "nb_procuration": 70.0, "nb_vote_blanc": 10.0, "jadot_yannick": 80.0, "le_pen_marine": 58.0, "nb_exprime": 1200.0, "nb_vote_nul": 6.0, "arr_bv": "08", "arthaud_nathalie": 3, "nb_inscrit": 1481.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "32", "geo_point_2d": [48.87854719993277, 2.3254039632622345], "melenchon_jean_luc": 217.0, "poutou_philippe": 7.0, "macron_emmanuel": 546.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406122738258313, 48.85268477560632], [2.4061217673707143, 48.85267298661082], [2.406140136641756, 48.852570643666596], [2.406152985002931, 48.85246615444191], [2.406151310339723, 48.85245620831637], [2.406092956868608, 48.85245265944356], [2.405936471614428, 48.852428031855084], [2.40570612647966, 48.85239153814658], [2.405549640229093, 48.85236691004412], [2.405319297008447, 48.85233041469639], [2.405162811114002, 48.85230578698593], [2.405162017841021, 48.85230567781836], [2.404959526674264, 48.852282092801815], [2.404762561350255, 48.85225915098576], [2.404560069192721, 48.852235564386156], [2.404363104220454, 48.85221262191155], [2.404361652792132, 48.852212505864834], [2.40419262776981, 48.8522049848487], [2.404009289684323, 48.85219682660909], [2.403996770856175, 48.85218634707948], [2.404027636917248, 48.85206649334026], [2.404058437250608, 48.85194689287033], [2.404089303028009, 48.851827039089464], [2.404120101715561, 48.851707438571104], [2.404150967209299, 48.8515875847485], [2.404181766976532, 48.851467984195324], [2.404212632186607, 48.85134813033103], [2.40424343030805, 48.851228529729426], [2.404232383485833, 48.85121816816395], [2.404045932564775, 48.85119627305982], [2.403859224588841, 48.8511743467046], [2.403672773981369, 48.85115245101814], [2.4034860676820893, 48.85113052408656], [2.403299617388209, 48.85110862781775], [2.40311291004034, 48.851086700296214], [2.40292646006006, 48.851064803445055], [2.402739753026233, 48.85104287534039], [2.402553303369875, 48.85102097700757], [2.402366596639685, 48.85099904921907], [2.402180148659671, 48.85097715031073], [2.401993442243634, 48.85095522193906], [2.401982724467982, 48.85094390039889], [2.402034036241762, 48.85082521583986], [2.4020849740060353, 48.85070739545376], [2.402136283951349, 48.85058871081886], [2.40218722126358, 48.85047088946492], [2.402238532095441, 48.850352205667], [2.402289468945317, 48.85023438424451], [2.402340777948838, 48.85011570037072], [2.402391714336367, 48.849997878879655], [2.402386818607371, 48.84994613269164], [2.402378411630819, 48.849945078029506], [2.402321997955074, 48.849943405836925], [2.402317989678232, 48.84994368080146], [2.402118123377487, 48.849953648019984], [2.401876592888072, 48.849994666307694], [2.401676724944661, 48.8500046327816], [2.40149812004995, 48.85000758961347], [2.401298251984594, 48.85001755545502], [2.401119645661423, 48.85002051171508], [2.401116795422605, 48.85002045607823], [2.400957508499115, 48.85000625112929], [2.400753058103025, 48.84997977385282], [2.400593771403039, 48.84996556841913], [2.40038932270362, 48.849939091426336], [2.400230036227141, 48.84992488550791], [2.400229290363019, 48.84992480532404], [2.400071758739553, 48.84990483864627], [2.399867310554085, 48.84987835986073], [2.399709779209718, 48.84985839270554], [2.399505330017345, 48.849831914192826], [2.399347798952081, 48.849811946560195], [2.399143350125859, 48.84978546742787], [2.399011045205349, 48.849802595713506], [2.3990042218457512, 48.849801894119615], [2.398935055078405, 48.84985758801478], [2.398893010571398, 48.84998419986174], [2.398852716488512, 48.85010459515924], [2.398810671571785, 48.85023120784845], [2.398770377117946, 48.850351602192205], [2.398728331801868, 48.850478214824385], [2.398688036966901, 48.850598609113675], [2.398647741945641, 48.850719003376426], [2.398605696035162, 48.850845615923674], [2.398565400632765, 48.85096601013196], [2.398523355685647, 48.85109262262901], [2.398483058539179, 48.85121301677599], [2.398448054159088, 48.85131842823405], [2.398441013192695, 48.851339629216], [2.398457127861982, 48.85134862640257], [2.398498377898041, 48.851349586538596], [2.398687213438163, 48.85138340429133], [2.398875865281221, 48.85141698249283], [2.399064702673282, 48.8514507996546], [2.399253355013937, 48.85148437635956], [2.399442191532456, 48.8515181929167], [2.399630845722958, 48.85155176903128], [2.399819682730665, 48.851585584990595], [2.400008337408478, 48.851619160508], [2.400197174895013, 48.85165297676877], [2.400385830059928, 48.851686551688935], [2.400574668045991, 48.85172036645262], [2.400763323698203, 48.851753940775566], [2.400952162173433, 48.85178775494143], [2.40114081831273, 48.85182132866714], [2.401329474695227, 48.85185490209438], [2.401518313893371, 48.85188871626299], [2.401550066323697, 48.85189436651563], [2.401550200612978, 48.851894539862585], [2.401579327770728, 48.85190094772016], [2.401736232245575, 48.851928870258945], [2.401913655216065, 48.85196035765503], [2.402102312599818, 48.85199392985953], [2.402279737375878, 48.85202541671772], [2.40246839523092, 48.85205898834308], [2.402645819086944, 48.852090474649806], [2.4028232431573793, 48.85212196069253], [2.403011901712103, 48.852155531458024], [2.403189327587997, 48.852187016962894], [2.403377986614097, 48.852220587149205], [2.4035554115699362, 48.8522520721026], [2.403744071067504, 48.85228564170973], [2.403921496465935, 48.852317126118436], [2.404110156434866, 48.85235069514642], [2.404110175472044, 48.852350698838606], [2.404296762157085, 48.852383612410904], [2.404485422608373, 48.8524171808452], [2.404672009768482, 48.852450093830335], [2.404860670702298, 48.852483661670945], [2.405047256974703, 48.852516574062236], [2.405235918390837, 48.85255014130919], [2.405422506501057, 48.852583053120114], [2.405611168399706, 48.8526166197734], [2.405797755622207, 48.85264953099039], [2.405946444394443, 48.85267598529551], [2.405952448438288, 48.85268081493273], [2.405975145042133, 48.85268008222521], [2.406015118658011, 48.85268719397009], [2.406061806921723, 48.852695500092416], [2.406122738258313, 48.85268477560632]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 58, "zemmour_eric": 78.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-50", "circ_bv": "15", "num_bureau": 50, "roussel_fabien": 25.0, "nb_emargement": 1392.0, "nb_procuration": 87.0, "nb_vote_blanc": 15.0, "jadot_yannick": 149.0, "le_pen_marine": 52.0, "nb_exprime": 1376.0, "nb_vote_nul": 1.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1727.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1392, "quartier_bv": "80", "geo_point_2d": [48.85110070325239, 2.4013799729281193], "melenchon_jean_luc": 512.0, "poutou_philippe": 8.0, "macron_emmanuel": 419.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346115444550245, 48.876591484363864], [2.346063506090334, 48.87659379343625], [2.345998091776424, 48.876578360519936], [2.3457928460977833, 48.87657472719622], [2.345594466032918, 48.87657137207413], [2.345389220398674, 48.87656773895762], [2.3451908390230463, 48.87656438315918], [2.344985593455813, 48.87656074845138], [2.344787213496206, 48.87655739199152], [2.344581967984694, 48.876553756591655], [2.344383588077732, 48.87655039946293], [2.34438213423256, 48.8765503231511], [2.344346715573894, 48.87653658427254], [2.344322449800312, 48.876534448545186], [2.34431506725492, 48.87653321289191], [2.344269087918095, 48.87653426237963], [2.344261940613009, 48.876536217955405], [2.344253437338926, 48.87657840507994], [2.344298647454027, 48.87671459269787], [2.344343201612955, 48.87685070114377], [2.344388412210455, 48.876986887794885], [2.344432966836897, 48.87712299617377], [2.344478177905482, 48.87725918275736], [2.344522734362851, 48.87739529107665], [2.344567945891111, 48.87753147849201], [2.344612501464026, 48.877667585837514], [2.344612600883192, 48.877667920034995], [2.344608184150194, 48.877688539184454], [2.344617427724367, 48.87769521608835], [2.3446490968038542, 48.877813479299036], [2.344679957465302, 48.87792491661002], [2.344711628189768, 48.878043179786985], [2.34474248912112, 48.878154617058634], [2.344771491664677, 48.878259340501316], [2.344803161437023, 48.8783776036107], [2.344805021328614, 48.878384317426686], [2.344804011384719, 48.87838959548736], [2.344726666604446, 48.87850209164552], [2.3446476460960612, 48.878607516100914], [2.344636547200442, 48.87862853213294], [2.344667334938626, 48.87864090823177], [2.34473324022979, 48.87865238925111], [2.344972158557446, 48.87869292479289], [2.345157873641266, 48.87872527898825], [2.345167826162943, 48.87872449974577], [2.345287207632927, 48.87868204222689], [2.345405212620326, 48.8786394079871], [2.3455245937017413, 48.87859695022825], [2.345642596938578, 48.878554315743735], [2.345654442647581, 48.87855391643521], [2.345856084459088, 48.87860996142068], [2.346055149771911, 48.87866632384131], [2.346256793813362, 48.87872236815359], [2.346455859989468, 48.87877872990219], [2.346657503533776, 48.87883477352637], [2.34685657057316, 48.87889113460291], [2.347058216347305, 48.878947177553876], [2.347257284249965, 48.879003537958376], [2.347289402034467, 48.8790127765565], [2.347311935134795, 48.87899518343989], [2.347357181006377, 48.87895740719325], [2.347516785855883, 48.87882987575237], [2.347643349602685, 48.878724203113165], [2.3476445354425, 48.87871422157602], [2.347554791112202, 48.87860892775612], [2.347464965371778, 48.87850036613343], [2.34737522178429, 48.87839507125919], [2.347285396787008, 48.87828650948071], [2.347195652567631, 48.87818121444398], [2.347105828313484, 48.87807265250971], [2.347016086177791, 48.87796735822467], [2.346926262666767, 48.87785879613455], [2.346934824968748, 48.877845780012535], [2.34708255763563, 48.8778206472394], [2.347220985233601, 48.8777962063954], [2.347231023873333, 48.877788430629764], [2.347253922413814, 48.87764013832159], [2.34727454588143, 48.8775006020978], [2.347295169238643, 48.87736106585279], [2.347318066056462, 48.877212772568136], [2.347338689183005, 48.877073236279216], [2.347361587102505, 48.8769249438542], [2.3473524866291102, 48.876915534859464], [2.347153464900392, 48.87687004228156], [2.3469815757734143, 48.876829492635316], [2.346809686914084, 48.87678894274083], [2.346610664791112, 48.87674344834858], [2.34643877650463, 48.876702897918314], [2.34623975638654, 48.87665740381259], [2.346133283066921, 48.876632284824986], [2.346115444550245, 48.876591484363864]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 56, "zemmour_eric": 99.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "9-21", "circ_bv": "01", "num_bureau": 21, "roussel_fabien": 21.0, "nb_emargement": 1257.0, "nb_procuration": 91.0, "nb_vote_blanc": 12.0, "jadot_yannick": 123.0, "le_pen_marine": 52.0, "nb_exprime": 1243.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1546.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "36", "geo_point_2d": [48.877673941202254, 2.3459323707052393], "melenchon_jean_luc": 302.0, "poutou_philippe": 7.0, "macron_emmanuel": 530.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358339994179588, 48.82295192099876], [2.358347531688007, 48.82294185603631], [2.358384932211815, 48.8228223207584], [2.358423804118876, 48.82269698516895], [2.358461204292177, 48.82257744984114], [2.358500075833336, 48.82245211419959], [2.358537475645069, 48.82233257972115], [2.358568950412828, 48.822231094537464], [2.358577691371384, 48.82220988282045], [2.358576817752454, 48.822208267347904], [2.358584215526149, 48.82218441594497], [2.358623086478604, 48.82205908021963], [2.3586667885838, 48.821925863043965], [2.358705659145118, 48.82180052726292], [2.35874936218459, 48.82166731003379], [2.358788232365631, 48.821541973297784], [2.3588319336154813, 48.82140875600049], [2.3588708033942343, 48.82128342010815], [2.358914505578462, 48.82115020275736], [2.3589533749659912, 48.82102486680935], [2.35899707536052, 48.82089164939047], [2.359035944367891, 48.82076631248744], [2.359079644334872, 48.82063309500778], [2.359118514301796, 48.820507758955706], [2.359147957708219, 48.820418001282576], [2.359147364788384, 48.82040662454988], [2.359082909124372, 48.820399070559375], [2.358899318333156, 48.820393707299075], [2.358714985134474, 48.82038813561588], [2.358531394408441, 48.820382772689946], [2.358347061298799, 48.820377199540204], [2.358163470649217, 48.82037183604929], [2.357979137617566, 48.82036626233234], [2.357795547044342, 48.82036089827651], [2.35761121409069, 48.820355323992324], [2.357427623593832, 48.82034995937157], [2.3572432907071, 48.82034438541945], [2.3570597002977, 48.82033901933447], [2.356875367488978, 48.82033344481518], [2.356867544899924, 48.820331515842575], [2.356745363792882, 48.82026773474764], [2.356618037579961, 48.820201512802356], [2.356495857082741, 48.82013773144514], [2.356368531504149, 48.82007150922651], [2.356350012307248, 48.820072535565785], [2.356207905433526, 48.820176088744844], [2.356068212143639, 48.82027781911143], [2.355926104150802, 48.820381371936705], [2.355786408410343, 48.82048310104887], [2.355644299298382, 48.820586653520316], [2.355504602447033, 48.82068838318404], [2.355498179590785, 48.82069100353461], [2.355330094077629, 48.82072201463959], [2.355163590186182, 48.820752650901966], [2.35499550562611, 48.820783662441585], [2.354829001341217, 48.82081429823638], [2.354662498222596, 48.82084493380586], [2.354494411716225, 48.820875943731885], [2.354490698892713, 48.8208762753464], [2.35430560339386, 48.82087584260823], [2.354121598119244, 48.82087557915938], [2.353936502626029, 48.82087514584988], [2.353752497355739, 48.82087488183307], [2.353567401879118, 48.820874447052894], [2.353383396613268, 48.82087418246811], [2.353199391338028, 48.82087391849954], [2.353014295869446, 48.82087348286323], [2.352830289247779, 48.82087321741996], [2.352645193773708, 48.82087278211164], [2.352461188518326, 48.820872516107784], [2.352276093049729, 48.8208720802281], [2.352250200595289, 48.820870178084824], [2.352242217168913, 48.82088010626302], [2.352241816544355, 48.8208845074568], [2.352270256483166, 48.82098339543792], [2.352298074469604, 48.82107885429662], [2.352326514632283, 48.8211777413479], [2.352354332825402, 48.82127320017702], [2.35235493395848, 48.82128917011856], [2.352366954200245, 48.82129351446919], [2.352532019169381, 48.82129117418365], [2.352729346890901, 48.8212884336095], [2.352932413104787, 48.82128555288064], [2.353129740772827, 48.82128281254512], [2.353332806942697, 48.82127993113629], [2.353530134568415, 48.82127719014002], [2.353733200694259, 48.82127430805123], [2.353930528277644, 48.82127156639423], [2.354133595721391, 48.821268683632866], [2.354330923262434, 48.82126594131511], [2.354533989300193, 48.82126305786643], [2.354731316798884, 48.82126031488794], [2.354934382792584, 48.82125743075932], [2.355131710248913, 48.821254687120096], [2.355145614737301, 48.82126351666352], [2.355148735932724, 48.82137776096086], [2.355152978170254, 48.821525366566014], [2.355156100759436, 48.82163961084391], [2.355160343028098, 48.82178721731373], [2.35516346428704, 48.82190146155748], [2.355167706608974, 48.82204906709335], [2.355170829261689, 48.82216331131764], [2.355168741356098, 48.82216826013166], [2.355064653636634, 48.82227759925709], [2.354960284141033, 48.82238699972015], [2.354856195547762, 48.822496338642864], [2.354751825165792, 48.822605739802036], [2.354647735698702, 48.82271507852197], [2.354543364452612, 48.822824478578625], [2.354439274111796, 48.82293381709586], [2.354334901979311, 48.823043217848564], [2.354332844361765, 48.823048681252466], [2.354336551965092, 48.82308145032126], [2.354340143265244, 48.823117782096304], [2.354333787098968, 48.82312598697822], [2.354194142648907, 48.823183801291414], [2.354052025743754, 48.82324271551454], [2.353912380668634, 48.82330052949272], [2.353770263127044, 48.823359443374834], [2.353630617438012, 48.82341725611866], [2.353488499248631, 48.82347617055914], [2.353482023176491, 48.82348458430088], [2.353489809865251, 48.82349558801465], [2.353653887841394, 48.82358682555325], [2.35380173036709, 48.82366917291668], [2.353813331863359, 48.823671091023854], [2.353997340265355, 48.82364529544619], [2.354171658781862, 48.82362103465548], [2.354176657669868, 48.823619597466184], [2.354326947734862, 48.82354991492307], [2.354476247948004, 48.82348027990888], [2.354626537210923, 48.823410596980644], [2.354775837998135, 48.823340960691795], [2.35492612645918, 48.8232712773784], [2.35507542507411, 48.82320164159886], [2.355080067867511, 48.82320024742002], [2.355162497931566, 48.82318672640985], [2.355259999488818, 48.823171082228896], [2.355275506287378, 48.82317231164219], [2.355286576543045, 48.82316387400557], [2.355343439173973, 48.8231413327682], [2.355396459662873, 48.82312141406403], [2.3554025542352433, 48.82311661725778], [2.355466321898435, 48.82299847783587], [2.3555322678509603, 48.8228778606304], [2.355545913877419, 48.822871938020164], [2.355721937168516, 48.82287908324306], [2.355955135976469, 48.82288914705327], [2.356131159381738, 48.82289629167369], [2.35636435835674, 48.822906353786415], [2.3565403805142893, 48.822913497797], [2.356540897892388, 48.82291351407172], [2.356720723509425, 48.82291674800141], [2.356934128269924, 48.822920603837076], [2.357113952573815, 48.82292383716816], [2.357327357381322, 48.822927693201414], [2.357507183096029, 48.82293092594842], [2.357720587972705, 48.82293478038056], [2.357900412374249, 48.82293801252894], [2.358113817297822, 48.822941867158626], [2.358293641748282, 48.82294509871567], [2.358339994179588, 48.82295192099876]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 57, "zemmour_eric": 78.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-43", "circ_bv": "10", "num_bureau": 43, "roussel_fabien": 36.0, "nb_emargement": 1368.0, "nb_procuration": 66.0, "nb_vote_blanc": 21.0, "jadot_yannick": 82.0, "le_pen_marine": 73.0, "nb_exprime": 1334.0, "nb_vote_nul": 12.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1748.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1367, "quartier_bv": "51", "geo_point_2d": [48.821665183035975, 2.3564494555346], "melenchon_jean_luc": 545.0, "poutou_philippe": 11.0, "macron_emmanuel": 374.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.343030253980965, 48.846091329779675], [2.343055541035506, 48.846122769081774], [2.343253672883908, 48.84616743180667], [2.343448042593551, 48.84621124254465], [2.343646175114679, 48.84625590461597], [2.343840545495566, 48.84629971381354], [2.344038677326918, 48.84634437522382], [2.344233048367709, 48.846388183780256], [2.344431182234262, 48.84643284454446], [2.344625553923643, 48.84647665335901], [2.344634185930953, 48.84648254378721], [2.344693785055041, 48.84661170806925], [2.344755193506929, 48.84674135347904], [2.344814793226908, 48.84687051767075], [2.344876202284892, 48.847000162988344], [2.344935802600768, 48.8471293270898], [2.344997212253352, 48.84725897321448], [2.345002821186204, 48.84726384337508], [2.3451786332978353, 48.84733882394944], [2.345339573541076, 48.8474085938349], [2.345500514215349, 48.847478363499505], [2.345676327766751, 48.84755334332806], [2.345837269327495, 48.84762311342988], [2.346013082489112, 48.8476980927464], [2.346174026321743, 48.84776786149432], [2.346349840456198, 48.84784284030621], [2.346510783812684, 48.847912609483906], [2.346686600282618, 48.84798758779864], [2.346847544548251, 48.84805735561497], [2.347023360628493, 48.84813233341763], [2.347095549745754, 48.84815988891379], [2.347097696202353, 48.84816063540323], [2.347261006894851, 48.84820562384663], [2.347447662442375, 48.84825584145399], [2.347447821328516, 48.84825588548981], [2.347611133984302, 48.848300873458854], [2.347769535032735, 48.848345042990715], [2.347932846871748, 48.84839003140893], [2.348091248463853, 48.84843420051136], [2.348254562233893, 48.848479187594904], [2.348412964369666, 48.84852335626787], [2.348424908322237, 48.84854365147539], [2.348441489771945, 48.84854246378939], [2.34847716708255, 48.84853974595716], [2.348491702272407, 48.84851606047194], [2.348499192533424, 48.84839609990827], [2.348507227745371, 48.84828127043952], [2.348514717936904, 48.84816130984958], [2.34852275307844, 48.8480464803556], [2.34853024320049, 48.8479265197394], [2.348538278260374, 48.847811691119475], [2.348538214324901, 48.847810374110324], [2.348513951216733, 48.84765909397269], [2.348484718426787, 48.847498337182195], [2.348485348600054, 48.84749436454827], [2.348507372674637, 48.84744954711467], [2.348534590498914, 48.84739683550369], [2.348550332078651, 48.84737799510924], [2.348549251650612, 48.84737165773905], [2.348564963641643, 48.847341229839984], [2.34860861906887, 48.84724603205161], [2.348651547219886, 48.847162891585945], [2.348654554833894, 48.84715960731217], [2.348765961992134, 48.84708200731566], [2.348871018659549, 48.84700997475842], [2.348874562953916, 48.847005506245445], [2.348908455418677, 48.84689393901212], [2.3489483268217253, 48.84675469323294], [2.348982218976694, 48.84664312505431], [2.349022089990764, 48.84650387921915], [2.349055981813375, 48.8463923118938], [2.3490561972715343, 48.8463913174749], [2.349074968073977, 48.84627130291389], [2.349092016907687, 48.84614088236816], [2.349103212613865, 48.846069302965304], [2.349112442269484, 48.84605847092429], [2.349108249509868, 48.846041112949614], [2.349115824424668, 48.84599267775727], [2.349131385597972, 48.845824135096905], [2.349150156023086, 48.845704120463], [2.349150150016742, 48.845702964752384], [2.349142819256067, 48.84560496294927], [2.349132774830335, 48.84550723326943], [2.3491254441298652, 48.84540923144805], [2.349115399774337, 48.84531150174958], [2.3491154370298553, 48.84531026443212], [2.349132816760385, 48.845180919407326], [2.349156284729915, 48.8450540762328], [2.349173665636294, 48.844924731179795], [2.349197133379814, 48.84479788886736], [2.349214514099274, 48.84466854377869], [2.349237981639249, 48.84454170052987], [2.349238946607863, 48.84452214827035], [2.349190653604027, 48.84450986110383], [2.349000806605765, 48.84449703664868], [2.348821282908286, 48.84448453609308], [2.348641757923141, 48.84447203615974], [2.3484519112089792, 48.8444592099339], [2.348272387762213, 48.84444670945346], [2.348082541219963, 48.844433883540454], [2.348076501397065, 48.844434376753696], [2.347896941800359, 48.84448010016803], [2.347692485218822, 48.84452911412918], [2.347512923607527, 48.84457483605649], [2.347308467644374, 48.844623850263915], [2.347128905369787, 48.84466957161103], [2.346924447311384, 48.844718585150524], [2.346924305157629, 48.84471862034897], [2.34674474221961, 48.84476434111554], [2.346535675998489, 48.844816211280396], [2.3463561123833, 48.8448619314597], [2.346147045372626, 48.844913801840164], [2.34596748108027, 48.84495952143216], [2.345758413302611, 48.84501139022966], [2.345578848321803, 48.84505711013363], [2.345578058020146, 48.845057325254636], [2.345364763959533, 48.84512058223817], [2.34518519963104, 48.84516630065498], [2.345160312699231, 48.84517962337285], [2.345158665987189, 48.84518292850477], [2.345014445665681, 48.84525756481341], [2.344842223298179, 48.84534668020343], [2.3446980020816532, 48.84542131522035], [2.344525779994501, 48.84551043014918], [2.344381557860341, 48.845585065672964], [2.344209333328388, 48.84567418012576], [2.344065110299215, 48.84574881435778], [2.34389288468503, 48.845837928341915], [2.343748660738202, 48.845912563080816], [2.343744890630401, 48.84591394180534], [2.343577810455898, 48.845953848958686], [2.343394863129914, 48.84599582186452], [2.343227782424982, 48.84603572852612], [2.343044835903587, 48.84607770000178], [2.343030253980965, 48.846091329779675]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 73, "zemmour_eric": 94.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "5-1", "circ_bv": "02", "num_bureau": 1, "roussel_fabien": 29.0, "nb_emargement": 1227.0, "nb_procuration": 89.0, "nb_vote_blanc": 15.0, "jadot_yannick": 92.0, "le_pen_marine": 48.0, "nb_exprime": 1205.0, "nb_vote_nul": 7.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1510.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "20", "geo_point_2d": [48.84628256793164, 2.346919090834383], "melenchon_jean_luc": 314.0, "poutou_philippe": 5.0, "macron_emmanuel": 509.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.378218025916038, 48.888724746697875], [2.378195980313863, 48.88869770469928], [2.378034360952927, 48.88860630350814], [2.377874241179498, 48.88851716448203], [2.377712622954426, 48.888425761942315], [2.377552504276187, 48.88833662337059], [2.377390887176229, 48.888245220381584], [2.377230769603917, 48.88815608136498], [2.37706915362917, 48.888064677926714], [2.376909037173538, 48.88797553756594], [2.376905656868865, 48.88797413411816], [2.3767370251448963, 48.88792514806239], [2.376568247113322, 48.8878753093442], [2.376399616026909, 48.88782632280888], [2.37623083727491, 48.887776483603496], [2.376062206825857, 48.88772749658856], [2.375893430091579, 48.88767765601097], [2.3757248002800893, 48.88762866851645], [2.375556022814623, 48.88757882835095], [2.375548720162896, 48.8875735831815], [2.375469275110593, 48.88742341881748], [2.3753846484614742, 48.887278246475134], [2.375379941658394, 48.8872742010436], [2.3751938667377512, 48.88718492467673], [2.37501898556014, 48.8871048813443], [2.374844104931062, 48.887024836851374], [2.374658031820159, 48.886935559631546], [2.374641748393077, 48.88693356442167], [2.374618635976016, 48.88694560527061], [2.3744837608749823, 48.88703530891615], [2.37435314768151, 48.887122682042104], [2.3742225340497223, 48.88721005501868], [2.374087656217707, 48.88729975818927], [2.373957041706997, 48.887387129962875], [2.37382216432264, 48.887476832827126], [2.373691548911587, 48.88756420519626], [2.373556669247537, 48.88765390773985], [2.373554068184883, 48.887664143726084], [2.373594171636118, 48.88771901893717], [2.373622160723759, 48.88776439685179], [2.373624402406089, 48.887766576848335], [2.373738542798086, 48.88784851772756], [2.373857507342918, 48.88793259532894], [2.373971648454831, 48.88801453687282], [2.374090615119031, 48.88809861423701], [2.374204756972491, 48.88818055464701], [2.374323724381571, 48.888264632666164], [2.374320204711364, 48.888278690483475], [2.374197770621882, 48.88832204105479], [2.373977013594169, 48.88840427863483], [2.37385457892358, 48.88844762885028], [2.37384890041199, 48.88845169557308], [2.373781716028272, 48.88855296055299], [2.373703256956428, 48.88866523718256], [2.373636072013949, 48.88876650206111], [2.373557613670016, 48.88887877858053], [2.373560238109546, 48.88888882245918], [2.373702801804956, 48.88898517433492], [2.373829698285157, 48.88907058028195], [2.373956595181731, 48.88915598608783], [2.3740991603420323, 48.88925233746824], [2.374226058123421, 48.88933774297443], [2.37436862428008, 48.889434094018085], [2.374368838392058, 48.88943409423744], [2.374407236919263, 48.889408350306894], [2.374511662760052, 48.88934006260082], [2.374628644146306, 48.88926988884569], [2.374733069419151, 48.889201600937874], [2.374850050195955, 48.889131426957654], [2.3748678092899382, 48.88913108979826], [2.375016498341791, 48.889210489245066], [2.375158040018943, 48.889290362916725], [2.375306729968266, 48.889369761991624], [2.375448272534355, 48.889449634409374], [2.375596963380947, 48.88952903311239], [2.375738506825184, 48.88960890517542], [2.375887198569151, 48.88968830350653], [2.3760287428916422, 48.88976817521495], [2.376057487260752, 48.889781634962446], [2.376085685919756, 48.88977360076295], [2.376240310393796, 48.88969789561741], [2.376389634207918, 48.88962473832208], [2.376544259161719, 48.889549032780856], [2.376693582111133, 48.88947587599582], [2.376842904651827, 48.88940271812046], [2.376997528287208, 48.88932701197864], [2.377146849963207, 48.88925385461356], [2.377301472714624, 48.889178148069], [2.377450793547446, 48.88910498941572], [2.3776054154149, 48.88902928246843], [2.377754735382942, 48.88895612432547], [2.37790935636654, 48.88888041697542], [2.378058675491401, 48.88880725754428], [2.378213294227334, 48.888731549784396], [2.378218025916038, 48.888724746697875]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 50, "zemmour_eric": 59.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-54", "circ_bv": "17", "num_bureau": 54, "roussel_fabien": 14.0, "nb_emargement": 1165.0, "nb_procuration": 57.0, "nb_vote_blanc": 9.0, "jadot_yannick": 83.0, "le_pen_marine": 73.0, "nb_exprime": 1147.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1586.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1165, "quartier_bv": "73", "geo_point_2d": [48.888453605474744, 2.375569438204224], "melenchon_jean_luc": 506.0, "poutou_philippe": 11.0, "macron_emmanuel": 295.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.279877702871793, 48.85627009049961], [2.27990033110274, 48.856265889968284], [2.280028863216441, 48.856186143813204], [2.280190274482963, 48.856082800971855], [2.280190666425986, 48.85608254701232], [2.280310896538796, 48.85600168036895], [2.280472306674417, 48.855898337129986], [2.280592534562341, 48.85581747018205], [2.280753943568738, 48.855714126546026], [2.280874171944834, 48.85563326020919], [2.280885742618078, 48.855630826830016], [2.2810018932304272, 48.855642668761284], [2.281063287861982, 48.85565476888749], [2.281072386830451, 48.85565851272607], [2.281181163858381, 48.85576146290156], [2.281283768472352, 48.855857014641124], [2.281386372087505, 48.855952567175564], [2.281495151712427, 48.85605551704656], [2.281597756118506, 48.856151068483406], [2.281706536575496, 48.85625401814384], [2.281706566173213, 48.85625404620161], [2.281844581778677, 48.85638153662698], [2.281953363216998, 48.85648448514237], [2.281956759382499, 48.85648668106904], [2.281991493137224, 48.856500185600254], [2.282055170254611, 48.85652892533042], [2.282092578048089, 48.85653135858822], [2.282117542621145, 48.8565158568312], [2.282233275459436, 48.856452720945306], [2.282374645387143, 48.85637509804581], [2.282490376226127, 48.856311962794344], [2.282631745388918, 48.85623433958129], [2.282633410469753, 48.85622160025997], [2.2825012796004343, 48.85611906994114], [2.282363738483035, 48.85600931214893], [2.282231607319861, 48.855906781504586], [2.282094067330887, 48.8557970233814], [2.282092585353838, 48.85579557461682], [2.281960456629058, 48.855693043661496], [2.2818748317212583, 48.85558868714684], [2.281877542472885, 48.85557781577616], [2.282019763017583, 48.8554906516552], [2.282157702314142, 48.8554073361164], [2.282299921912479, 48.85532017254838], [2.282437860309666, 48.855236856673834], [2.282580078974039, 48.855149692759504], [2.282718016484441, 48.85506637564991], [2.282860235577563, 48.854979211397406], [2.282998170813513, 48.85489589484321], [2.28313610697116, 48.85481257813198], [2.283278323309481, 48.85472541335446], [2.283416258580142, 48.8546420954082], [2.283558473984517, 48.854554930284344], [2.283591398317235, 48.85454157136718], [2.283598901302245, 48.85451894972913], [2.283480283989156, 48.85442725936761], [2.283360935602825, 48.854342973425716], [2.283242319121439, 48.85425128191451], [2.283122971522995, 48.85416699572191], [2.283004355848669, 48.85407530485954], [2.282885009038203, 48.853991018416274], [2.2827663941830982, 48.8538993273035], [2.282647048160606, 48.85381504060953], [2.282645834309161, 48.85381421491441], [2.282496869870898, 48.853725150260985], [2.282356353166074, 48.85364646163603], [2.282207389702275, 48.853557396608785], [2.282066875249741, 48.85347870764019], [2.281917912760298, 48.85338964223913], [2.281777397834509, 48.85331095291056], [2.281636883333007, 48.853232263411364], [2.281487922283039, 48.85314319745528], [2.281347410021504, 48.853064508511764], [2.281198449958281, 48.85297544128259], [2.281057937223485, 48.85289675197907], [2.280963520165967, 48.852840297423086], [2.280908978134606, 48.85280768437609], [2.280870723232375, 48.852813701427095], [2.280833356270194, 48.85285689170517], [2.280675422444024, 48.852947467636085], [2.280515735662358, 48.8530377315278], [2.280357800735888, 48.853128307024754], [2.28019811284984, 48.85321857047787], [2.280040176823267, 48.853309145540855], [2.279880487832728, 48.8533994085554], [2.279722550705945, 48.853489983184396], [2.279562860611112, 48.85358024576038], [2.279404922384009, 48.8536708199554], [2.279245231184775, 48.853761082092795], [2.27908729185755, 48.85385165585385], [2.278927599553808, 48.85394191755266], [2.278769659126352, 48.85403249087976], [2.278609965718296, 48.85412275213997], [2.278452024190502, 48.854213325033015], [2.278292329678027, 48.854303585854645], [2.278289681718027, 48.854304757938344], [2.278118837806463, 48.854362488866265], [2.277943668250468, 48.85442175473622], [2.277772823571947, 48.854479485164056], [2.277597654591887, 48.85453875052946], [2.277426807783611, 48.85459648044895], [2.277251638016691, 48.85465574530158], [2.27708079180426, 48.854713474729174], [2.276905621262863, 48.85477273816975], [2.276734772908297, 48.85483046798831], [2.276559601580151, 48.85488973091611], [2.276513052831387, 48.85490545988299], [2.276501853734869, 48.85491607206924], [2.276522645086145, 48.8549409796458], [2.276611938804285, 48.855047543249654], [2.276706070658562, 48.85515718934615], [2.276795365109866, 48.85526375369174], [2.276889496390381, 48.85537339871507], [2.276894444035021, 48.85537671757232], [2.277087962735877, 48.85545183670623], [2.277281398741524, 48.8555258829828], [2.277474918554232, 48.855601001480835], [2.277668355675996, 48.85567504622265], [2.277861875225263, 48.85575016497584], [2.278055313450769, 48.8558242090822], [2.278057714277608, 48.85582494395382], [2.278234396008447, 48.855865823527225], [2.278414675673543, 48.855908114042954], [2.278591357966556, 48.85594899308621], [2.27877163822148, 48.8559912821617], [2.278948321076557, 48.85603216067485], [2.279128601908947, 48.85607444920938], [2.279305283963245, 48.85611532718417], [2.279485565360761, 48.856157616077105], [2.279662249339955, 48.856198493529995], [2.279842531327266, 48.856240780982624], [2.279877702871793, 48.85627009049961]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 220, "zemmour_eric": 225.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-20", "circ_bv": "14", "num_bureau": 20, "roussel_fabien": 6.0, "nb_emargement": 1287.0, "nb_procuration": 78.0, "nb_vote_blanc": 8.0, "jadot_yannick": 48.0, "le_pen_marine": 58.0, "nb_exprime": 1276.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1587.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1288, "quartier_bv": "62", "geo_point_2d": [48.854747868229474, 2.2802891901257327], "melenchon_jean_luc": 76.0, "poutou_philippe": 1.0, "macron_emmanuel": 614.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.283896519258816, 48.844784278595625], [2.283913256041213, 48.84475693907742], [2.283913793287494, 48.84475671385391], [2.28394237194539, 48.84474390704144], [2.28405012045905, 48.84470117092805], [2.284231696188706, 48.84462925488381], [2.284382888389639, 48.84456928658818], [2.284564463200526, 48.84449737003044], [2.284715654635963, 48.84443740130717], [2.284726597995297, 48.844436498118505], [2.284837691193209, 48.84445855014845], [2.284949062483734, 48.84447960723712], [2.284960104572786, 48.844478559819], [2.285141198392028, 48.84440288465202], [2.285320745415919, 48.844327683828176], [2.285501838187252, 48.84425200810508], [2.285681384170995, 48.844176806729784], [2.285862477256846, 48.844101130458675], [2.286042020837916, 48.844025928523855], [2.286223112875959, 48.84395025169661], [2.286402655416889, 48.84387504921038], [2.286427049670858, 48.843865732469915], [2.286414702421997, 48.84384866346472], [2.286368169364837, 48.84379652023961], [2.286321431891288, 48.843744385666994], [2.28631954972361, 48.84374023644624], [2.286317483525518, 48.84371181398286], [2.286315231018845, 48.843684061335786], [2.286309926767406, 48.84361109903286], [2.286303895340726, 48.84353681121469], [2.286303827645097, 48.843536281982324], [2.28628511157472, 48.84342589338697], [2.286266046139475, 48.843314654588504], [2.286247330216392, 48.84320426686461], [2.286228264955175, 48.843093027138714], [2.286209549191598, 48.84298263938696], [2.286190484079774, 48.84287140053227], [2.2861884662425442, 48.84286760934455], [2.286109825475638, 48.84278380366471], [2.286031076037078, 48.842701483933546], [2.285952328209665, 48.842619164152644], [2.285873688197328, 48.842535358298925], [2.285873303122512, 48.84253492160493], [2.285775272742048, 48.84241531205757], [2.285668257136021, 48.84228552905796], [2.285668254435716, 48.8422855272431], [2.2856490741347733, 48.842262125340845], [2.285639743074431, 48.842250807717775], [2.285612121129226, 48.84221730854374], [2.285584445670061, 48.842183541030444], [2.285573317280216, 48.84217243211359], [2.285555004051517, 48.842174248292835], [2.285394520694692, 48.842246437240014], [2.285232824502508, 48.842319200615215], [2.285072340253014, 48.84239138912083], [2.284910643173678, 48.842464151151795], [2.284750158031618, 48.84253633921584], [2.284588460040451, 48.842609101701136], [2.2844279740059212, 48.84268128932361], [2.284266275115157, 48.842754051364], [2.2841057882004048, 48.84282623764556], [2.28394408977264, 48.842898999249186], [2.283783601952965, 48.84297118598845], [2.283621901263206, 48.843043947138966], [2.2834614125509543, 48.84311613343662], [2.283299710974059, 48.84318889324292], [2.283151866967252, 48.84325498250754], [2.282990164515159, 48.84332774278568], [2.282842321084463, 48.84339383166775], [2.28268061778171, 48.84346659061913], [2.28259535176615, 48.84350470630224], [2.282595601450293, 48.84351428427641], [2.282618980225466, 48.84352740236234], [2.282653238844166, 48.84357421757087], [2.282709386987277, 48.84364672856605], [2.282705689325978, 48.84365788374655], [2.282545409673097, 48.84374127887675], [2.282386924467968, 48.84382405049849], [2.282226643806394, 48.84390744428988], [2.282068158952244, 48.843990215485164], [2.282064769784303, 48.84400171515403], [2.282161104153842, 48.844113474038465], [2.282258382752025, 48.8442223982923], [2.282354717944653, 48.844334156998706], [2.282451997371879, 48.844443080174266], [2.282548333375224, 48.84455483960193], [2.282645613618914, 48.84466376259852], [2.282741950457747, 48.844775520948886], [2.282839231505739, 48.84488444466573], [2.282935569167687, 48.84499620283808], [2.283032851044538, 48.845105125476636], [2.28305138062436, 48.845144222294984], [2.283083286393719, 48.84514485238892], [2.283278801699753, 48.84505572560388], [2.283412098674628, 48.84499709571667], [2.283545393987148, 48.844938465669664], [2.283740907728657, 48.84484933811291], [2.283874203655809, 48.84479070769998], [2.283896519258816, 48.844784278595625]]], "type": "Polygon"}, "properties": {"lassalle_jean": 26.0, "pecresse_valerie": 117, "zemmour_eric": 110.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-84", "circ_bv": "13", "num_bureau": 84, "roussel_fabien": 13.0, "nb_emargement": 1136.0, "nb_procuration": 53.0, "nb_vote_blanc": 16.0, "jadot_yannick": 71.0, "le_pen_marine": 84.0, "nb_exprime": 1120.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1441.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "60", "geo_point_2d": [48.843686335345105, 2.284368532392307], "melenchon_jean_luc": 205.0, "poutou_philippe": 7.0, "macron_emmanuel": 455.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.373890963309799, 48.88094786761049], [2.373884816940093, 48.8809328481423], [2.373936866027377, 48.88082108637466], [2.373988276366921, 48.88071298600214], [2.374040323649056, 48.88060122416006], [2.374091733546011, 48.88049312462082], [2.374143780397211, 48.880381361812184], [2.374195189862392, 48.88027326220693], [2.374247236261049, 48.88016150023024], [2.374298645305264, 48.88005339965974], [2.374299231304958, 48.88005138372644], [2.374310103088419, 48.87992447581882], [2.37432509158498, 48.87979323395439], [2.374335963251638, 48.87966632601467], [2.374350951619541, 48.87953508321701], [2.374350986781153, 48.87953419935891], [2.374347509409911, 48.87943548505691], [2.374358379583804, 48.879308577066844], [2.3743549022136152, 48.87920986274485], [2.374333338201088, 48.879085351014474], [2.374333276768777, 48.87908467619528], [2.374315811744205, 48.8789680954851], [2.374294247936039, 48.87884358282108], [2.374276784432218, 48.878727002986075], [2.374255220817278, 48.87860249028778], [2.374237757481656, 48.87848591042163], [2.374237678028265, 48.87848548732057], [2.374216115970147, 48.87836097459506], [2.374200614681941, 48.878291388730425], [2.374200333092418, 48.878277717419344], [2.374136959663395, 48.87827257199953], [2.37398437362457, 48.87825419585104], [2.373829706060276, 48.87823465028067], [2.373677120240961, 48.87821627373996], [2.373522452904593, 48.878196727771936], [2.373512985492825, 48.878197804190684], [2.373333679830451, 48.878267222226796], [2.373156623333074, 48.87833551771233], [2.372977316732328, 48.878404934306715], [2.372800257925319, 48.878473230148806], [2.37262095037548, 48.878542646200785], [2.372443892007166, 48.87861094061515], [2.372266833174602, 48.8786792347634], [2.372087524193719, 48.878748650902736], [2.371910464425584, 48.878816944515414], [2.371731154495705, 48.87888636011226], [2.3715540937920983, 48.87895465318936], [2.371374782913123, 48.87902406824379], [2.371336936477543, 48.87905180093435], [2.371344309701044, 48.87905976365977], [2.371417738400566, 48.879134160580456], [2.371517592441418, 48.879240185355066], [2.371621623336174, 48.879350845525266], [2.371721478207538, 48.87945687010893], [2.371825509968437, 48.879567530080244], [2.371925365681169, 48.87967355357368], [2.372029398308015, 48.87978421334608], [2.372129254840432, 48.87989023754789], [2.372233288333439, 48.88000089712129], [2.372333145696396, 48.88010692113221], [2.372437180055372, 48.88021758050666], [2.372537038259713, 48.88032360342737], [2.372641073484765, 48.880434262602876], [2.372740932508931, 48.8805402862319], [2.37274263425, 48.880543001231395], [2.372790063832658, 48.88067798370907], [2.372839320323002, 48.880814820245384], [2.3728404092783872, 48.88081678918639], [2.372927720548291, 48.88092088797037], [2.373012690972209, 48.88103211779309], [2.373100002958307, 48.881136215531775], [2.373184974101508, 48.88124744521048], [2.373201763989875, 48.88126034315962], [2.373236710199148, 48.8812625639945], [2.37326826779806, 48.8812645692277], [2.373295337130674, 48.88123400333566], [2.373440448151859, 48.88116637606877], [2.373578962976177, 48.88110080864829], [2.373724073257931, 48.88103318102939], [2.373862586007402, 48.88096761326571], [2.373890963309799, 48.88094786761049]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 56, "zemmour_eric": 132.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "19-7", "circ_bv": "17", "num_bureau": 7, "roussel_fabien": 39.0, "nb_emargement": 1076.0, "nb_procuration": 50.0, "nb_vote_blanc": 10.0, "jadot_yannick": 76.0, "le_pen_marine": 43.0, "nb_exprime": 1065.0, "nb_vote_nul": 0.0, "arr_bv": "19", "arthaud_nathalie": 1, "nb_inscrit": 1410.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1075, "quartier_bv": "76", "geo_point_2d": [48.87955454610019, 2.373181134508738], "melenchon_jean_luc": 337.0, "poutou_philippe": 3.0, "macron_emmanuel": 338.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.364678733602595, 48.884365612276234], [2.364639824489734, 48.88437063449457], [2.364504468632477, 48.88437639038813], [2.364310650296762, 48.884378775330475], [2.364175293018371, 48.88438453084467], [2.364174544144896, 48.88438454935093], [2.363980725752622, 48.884386934658444], [2.363783272441768, 48.884388153694545], [2.363589454029253, 48.884390537469386], [2.363392002059174, 48.88439175586747], [2.363198183604247, 48.88439413990819], [2.363000731611359, 48.884395357661], [2.362806911772629, 48.88439774016184], [2.362609459756944, 48.88439895726938], [2.362415641239501, 48.884401340043354], [2.362218189201025, 48.88440255650564], [2.362024369299612, 48.88440493773969], [2.36182691723846, 48.88440615355674], [2.361633098658337, 48.88440853506392], [2.361435646574312, 48.884409750235704], [2.361241826610454, 48.88441213020296], [2.361044374503673, 48.88441334472948], [2.36085055586101, 48.884415724969884], [2.360653103731475, 48.88441693885115], [2.360459285068702, 48.88441931755888], [2.360261831552837, 48.88442053078761], [2.360068012847774, 48.8844229097612], [2.359870560672769, 48.884424122351945], [2.359676741936366, 48.88442650069219], [2.359479288386107, 48.88442771173112], [2.359370664773249, 48.88442904434109], [2.359313937261781, 48.884431427089865], [2.359301382010244, 48.88447321552121], [2.359306862107617, 48.884589186182986], [2.3593162586399963, 48.8847368593027], [2.35932173743464, 48.88485282992865], [2.359331134045712, 48.885000503911066], [2.359336614264832, 48.88511647451585], [2.3593460109767292, 48.885264147562395], [2.359351489893109, 48.88538011813141], [2.359351607961592, 48.885381051365364], [2.359370225309394, 48.88549087247485], [2.359396966984341, 48.885620363948014], [2.35941558451336, 48.88573018502657], [2.359442326423895, 48.885859676461415], [2.359460944134133, 48.88596949750898], [2.359477779856009, 48.88605102429156], [2.359488672613955, 48.88606458954776], [2.359552717154779, 48.88605585703361], [2.359656322894972, 48.88604909964868], [2.359780165337812, 48.8860440538822], [2.3597887007626372, 48.88604560499396], [2.359960261265576, 48.88612292628213], [2.360133998944446, 48.8862031170104], [2.360305560467987, 48.88628043869195], [2.360479299204123, 48.88636062890776], [2.360650863134011, 48.886437949191446], [2.360824601563768, 48.88651813888743], [2.360836469985743, 48.88651935877727], [2.360934984320877, 48.88649915965825], [2.3610463139708, 48.88648669200423], [2.361059627623704, 48.88649027042258], [2.361172753825891, 48.8865929151693], [2.361300438199658, 48.88670511814855], [2.3613162615635392, 48.88670810827586], [2.36150186940789, 48.88666081069571], [2.361685790541485, 48.88661413606171], [2.361871397726263, 48.886566837005404], [2.362055319549353, 48.88652016270631], [2.362240926063525, 48.8864728630732], [2.362424845859941, 48.88642618819521], [2.362610451703402, 48.88637888798524], [2.362794370836685, 48.88633221253567], [2.362979977373174, 48.88628491175606], [2.36316389584332, 48.88623823573493], [2.363349500345549, 48.886190934371214], [2.363533418152554, 48.886144257778454], [2.3637190233477963, 48.88609695584517], [2.363902940502638, 48.886050277781585], [2.36408854365263, 48.88600297616346], [2.364272460144317, 48.885956297528246], [2.364458062634762, 48.885908994434025], [2.364641979815838, 48.88586231613374], [2.364825895303567, 48.885815637541754], [2.365011496789933, 48.8857683335836], [2.365195412978125, 48.88572165442725], [2.365381013793849, 48.88567434989228], [2.365564927966204, 48.885627669257836], [2.365750528100324, 48.88558036504527], [2.365805974736978, 48.88556084478996], [2.365806390220326, 48.885554274713826], [2.365776062510489, 48.88552185973063], [2.365669060476963, 48.885409720652795], [2.365568105691418, 48.88530181606192], [2.365461104557855, 48.885189676775774], [2.365360150629806, 48.88508177198794], [2.365259198494701, 48.884973866212384], [2.365152197325633, 48.88486172750878], [2.365051246047905, 48.884753821536265], [2.364944247153343, 48.884641681732376], [2.364843295358622, 48.88453377645495], [2.3647362973639883, 48.884421636442795], [2.364724099405753, 48.88437569793107], [2.364689692224911, 48.884368048247545], [2.364678733602595, 48.884365612276234]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 27, "zemmour_eric": 39.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-59", "circ_bv": "17", "num_bureau": 59, "roussel_fabien": 25.0, "nb_emargement": 1203.0, "nb_procuration": 59.0, "nb_vote_blanc": 14.0, "jadot_yannick": 71.0, "le_pen_marine": 57.0, "nb_exprime": 1183.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 7, "nb_inscrit": 1734.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1204, "quartier_bv": "72", "geo_point_2d": [48.88534877202913, 2.3622089571178515], "melenchon_jean_luc": 705.0, "poutou_philippe": 13.0, "macron_emmanuel": 193.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3555863607667, 48.83148520800616], [2.355624066766794, 48.83150452549416], [2.35565310367796, 48.83151940193887], [2.355656122597717, 48.83151994343581], [2.355683339595905, 48.83163676546448], [2.355717494435759, 48.831771364038616], [2.355744711702845, 48.83188818602707], [2.355778866865785, 48.83202278455352], [2.355806085752782, 48.832139607408436], [2.35584024125003, 48.83227420498778], [2.355867459043611, 48.83239102779521], [2.355894676970294, 48.832507849684895], [2.355928832926444, 48.832642448094006], [2.355930225685651, 48.832645165396286], [2.356029308061879, 48.83275847992305], [2.356121403027501, 48.832873493421616], [2.356123223444448, 48.83287820602699], [2.356120064800991, 48.832964630162074], [2.356120095638085, 48.833044080659256], [2.356124390457592, 48.83305063320452], [2.356138783405247, 48.833059339239526], [2.356303922699511, 48.83316176425071], [2.356445508302512, 48.83324740146775], [2.356448834972283, 48.83325050060757], [2.356532802416928, 48.83338032938091], [2.356610269434217, 48.83350120316531], [2.356628820411381, 48.83352988761064], [2.356617542080424, 48.8335466343578], [2.356643860483125, 48.83356377670451], [2.356709277828203, 48.83366492087877], [2.356791280369607, 48.83379025279426], [2.356875249547651, 48.83392008036528], [2.356957254251764, 48.83404541214573], [2.357041224243098, 48.83417524046993], [2.357123228385491, 48.8343005721007], [2.357207200574593, 48.83443039938677], [2.357289205517344, 48.83455573087518], [2.357311957685126, 48.83455809255787], [2.3574001484441123, 48.83449166507185], [2.357488988119063, 48.834425625933704], [2.357577179790527, 48.834359198316605], [2.3576660190154453, 48.834293159039156], [2.357688686548173, 48.834295526492326], [2.357771651523778, 48.83442074769628], [2.357854258865522, 48.83454616836502], [2.357937224648755, 48.834671388526765], [2.35801983278607, 48.834796809053074], [2.358102799365965, 48.83492202907196], [2.358185408298861, 48.83504744945584], [2.358268375664457, 48.83517267023113], [2.358350986766323, 48.83529808958051], [2.358433953566196, 48.83542331020558], [2.358516565463668, 48.83554872941256], [2.35853937077282, 48.83555101919262], [2.358653145667418, 48.83546400211646], [2.358758729396256, 48.835382205013325], [2.35878265772339, 48.83537925025976], [2.358791293666894, 48.83536962745357], [2.358816862525583, 48.83534981834348], [2.358951436999343, 48.83524442956199], [2.359082587098277, 48.83514282390094], [2.359217160511368, 48.835037433901704], [2.359348309560512, 48.83493582882978], [2.359482881901985, 48.83483043851211], [2.359614029923455, 48.834728832230745], [2.359748601193318, 48.83462344159463], [2.359879748165026, 48.834521835902414], [2.360014319725576, 48.83441644495514], [2.360145464307336, 48.83431483804621], [2.360276609740125, 48.83421323099156], [2.360411179690597, 48.83410784046801], [2.360542322722416, 48.834006233095955], [2.360676891612343, 48.833900841354684], [2.360808033605482, 48.83379923367245], [2.360942601412914, 48.833693842512076], [2.360945537507201, 48.83368626392909], [2.360913432311858, 48.83358140854795], [2.360881250501958, 48.83347159002004], [2.360849145579066, 48.8333667337022], [2.360816964026099, 48.83325691603525], [2.36082454894011, 48.83324706710565], [2.360996689078946, 48.833193708171294], [2.361170165578142, 48.83313854749467], [2.361342304993734, 48.83308518895701], [2.361515780766183, 48.833030027773745], [2.361687918107412, 48.83297666872626], [2.361861393164021, 48.83292150613705], [2.3618871317521313, 48.83288296338113], [2.361871617549099, 48.832873188105104], [2.361702198919554, 48.83281448161093], [2.361525476009737, 48.83275510542207], [2.36135605815377, 48.83269639843144], [2.361179336038625, 48.832637021724906], [2.361009918956134, 48.832578314237765], [2.360898553148031, 48.83254089631401], [2.360864762230554, 48.83253859593376], [2.360859661023165, 48.83253976843331], [2.360794305528389, 48.832517809111565], [2.360621780804375, 48.832458409928236], [2.360445061683476, 48.83239903303075], [2.360272537750498, 48.83233963333742], [2.360095819441085, 48.83228025501829], [2.359923296299148, 48.832220854814864], [2.359746577427963, 48.832161475966195], [2.359574056439193, 48.832102075259975], [2.359397338357518, 48.83204269678832], [2.359224818159785, 48.83198329557209], [2.359048100889517, 48.83192391567882], [2.358875581482928, 48.83186451395253], [2.358698865013122, 48.83180513353694], [2.358646662928193, 48.83178759290077], [2.35847414443018, 48.83172819058824], [2.358349630717166, 48.831686351262064], [2.358336337433609, 48.83168005629929], [2.358297394807006, 48.83169459614604], [2.358120679560726, 48.8316352157665], [2.357947426662305, 48.83157635555629], [2.357770712226662, 48.8315169737541], [2.357597460105273, 48.83145811393001], [2.357424208386198, 48.83139925295258], [2.357247495146794, 48.83133987036796], [2.357074244215834, 48.83128100887739], [2.356897531764805, 48.83122162666873], [2.356724281621959, 48.83116276466498], [2.356547569981593, 48.83110338103371], [2.356374320626866, 48.831044518516805], [2.356197609774762, 48.830985135261514], [2.356147610322429, 48.83095505553995], [2.356125563768358, 48.83096319578145], [2.355997983655738, 48.831074486918844], [2.355877653130352, 48.83118576569144], [2.355750070592703, 48.83129705563563], [2.355629739024484, 48.83140833413676], [2.355597012349995, 48.83142493018507], [2.355593056185604, 48.831447311305276], [2.3555863607667, 48.83148520800616]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 75, "zemmour_eric": 72.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-3", "circ_bv": "09", "num_bureau": 3, "roussel_fabien": 42.0, "nb_emargement": 1284.0, "nb_procuration": 60.0, "nb_vote_blanc": 21.0, "jadot_yannick": 102.0, "le_pen_marine": 91.0, "nb_exprime": 1255.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1624.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1285, "quartier_bv": "49", "geo_point_2d": [48.833079550681525, 2.358358501080239], "melenchon_jean_luc": 407.0, "poutou_philippe": 10.0, "macron_emmanuel": 381.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.357920838853991, 48.8578796681479], [2.357923348001251, 48.857871378815524], [2.358069721679314, 48.857812562414004], [2.35820805465523, 48.857756976340845], [2.358354429053303, 48.85769815959234], [2.358492761421746, 48.857642573184336], [2.358639133825318, 48.857583755174936], [2.358777466949073, 48.857528168439394], [2.358779636448073, 48.85752708735463], [2.358889347553062, 48.85746006746806], [2.3590188225049, 48.85738097344974], [2.35916779195711, 48.85728997017122], [2.359297266063585, 48.85721087583952], [2.359298823090514, 48.85721005587477], [2.359438484850339, 48.85714692183822], [2.35957791738196, 48.85708389163403], [2.359717578465434, 48.85702075726456], [2.359857008958942, 48.85695772672069], [2.359857717806177, 48.856957384262905], [2.360002921714399, 48.85688223061361], [2.360149425541798, 48.856806402927994], [2.360294627245651, 48.85673124890725], [2.360441130224011, 48.85665542085419], [2.360586331086369, 48.85658026646927], [2.360732833204658, 48.856504438948065], [2.360878034599418, 48.85642928330696], [2.361024535868678, 48.85635345541834], [2.36116973504806, 48.856278300305064], [2.36131623547932, 48.856202471149714], [2.361321325536613, 48.85619416853183], [2.36129616559952, 48.85607357071074], [2.36127164563129, 48.85595603318031], [2.36124648593509, 48.855835434423675], [2.36122196619099, 48.85571789685781], [2.361197445194672, 48.85560035926725], [2.361172285830924, 48.85547976135564], [2.361164373253614, 48.8554659428499], [2.361142307861549, 48.855467946614894], [2.36099162017193, 48.85550706240513], [2.360838359090886, 48.85554684506857], [2.3606876709449223, 48.855585960473306], [2.360534410762586, 48.85562574275188], [2.360383722171321, 48.855664856871805], [2.360230460150979, 48.8557046396503], [2.360212394262916, 48.855698802499944], [2.360166876265469, 48.85559644318651], [2.360121878356069, 48.85549525218591], [2.360105526057718, 48.85548905454787], [2.359956467597105, 48.855513409502784], [2.359810946008083, 48.855537186924984], [2.359793023303441, 48.85553612153472], [2.359784427650213, 48.85554287374218], [2.35958925551498, 48.85559147534136], [2.359394252535493, 48.855640034358785], [2.359199079672392, 48.855688635317335], [2.359004075965672, 48.855737193694665], [2.358808902374707, 48.855785794012604], [2.3586138979407583, 48.85583435174987], [2.358418723622038, 48.85588295142712], [2.358223718460868, 48.855931508524286], [2.358028543414194, 48.85598010756088], [2.3578335375258073, 48.856028664017956], [2.357638361751286, 48.856077262413926], [2.357443355135688, 48.85612581823088], [2.357248178633326, 48.85617441598621], [2.357053172653375, 48.85622297117041], [2.356857995423179, 48.85627156828506], [2.3566629873531753, 48.85632012282181], [2.356655123051421, 48.85633184225257], [2.356743699550717, 48.85647976612221], [2.356832332637721, 48.85662778374044], [2.356831063936335, 48.856635718188116], [2.356826597705134, 48.85664145182579], [2.356835905273686, 48.85665369884701], [2.356938159222475, 48.85677649893223], [2.357039704534334, 48.8568984470188], [2.357141250321418, 48.85702039500582], [2.357243505698396, 48.857143195688835], [2.357345052439566, 48.857265143476], [2.35744730878819, 48.857387943058484], [2.357548856483353, 48.85750989064583], [2.357651113781655, 48.8576326909264], [2.357752662430726, 48.85775463831392], [2.357854920700792, 48.857877437493975], [2.357864197600701, 48.85788192556553], [2.35786825945055, 48.85788246089043], [2.357901542137121, 48.857886846640774], [2.357920838853991, 48.8578796681479]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 53, "zemmour_eric": 73.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "4-14", "circ_bv": "07", "num_bureau": 14, "roussel_fabien": 15.0, "nb_emargement": 985.0, "nb_procuration": 76.0, "nb_vote_blanc": 16.0, "jadot_yannick": 86.0, "le_pen_marine": 34.0, "nb_exprime": 970.0, "nb_vote_nul": 1.0, "arr_bv": "04", "arthaud_nathalie": 0, "nb_inscrit": 1241.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 987, "quartier_bv": "14", "geo_point_2d": [48.85652652806805, 2.3589430176515362], "melenchon_jean_luc": 214.0, "poutou_philippe": 9.0, "macron_emmanuel": 435.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.251276327244846, 48.84289030424618], [2.251309571891664, 48.84288753808753], [2.251503490367081, 48.84288058436651], [2.251695891824743, 48.84287365861576], [2.251889810196972, 48.84286670426846], [2.25208221017656, 48.8428597787871], [2.252274611480508, 48.84285285210546], [2.252468529698096, 48.842845896819945], [2.252660930886453, 48.842838970416224], [2.2528548490138283, 48.84283201360511], [2.253047250099592, 48.84282508658001], [2.253241168123638, 48.842818129142614], [2.253433567744412, 48.84281120148758], [2.253627485652344, 48.84280424432318], [2.253819886545872, 48.84279731515594], [2.254013804350565, 48.842790357365296], [2.254206205128493, 48.84278342847597], [2.254400122842911, 48.84277646915966], [2.254592522155722, 48.84276953964048], [2.254786439766775, 48.8427625796979], [2.254978840339533, 48.84275564956579], [2.255172757834461, 48.842748689896226], [2.255175767540088, 48.842748802169965], [2.255355513103622, 48.842768138845194], [2.255524743534375, 48.84278701228876], [2.255693974074847, 48.84280588639188], [2.255873720027505, 48.84282522228752], [2.255886842744016, 48.84282171542044], [2.256028507073804, 48.84269607106951], [2.256166233861506, 48.84256987952243], [2.256175866773316, 48.842566192634465], [2.256358283712482, 48.84254878887803], [2.256562722653835, 48.84253462273943], [2.256574500179465, 48.842537721419546], [2.256708151977007, 48.842640862694346], [2.256842968314565, 48.842745316030104], [2.256976621175637, 48.84284845698584], [2.257111439950719, 48.8429529100081], [2.257245093875437, 48.84305605064464], [2.257379912375888, 48.84316050243716], [2.257397166656009, 48.84316243257157], [2.2575270142833332, 48.84311227385175], [2.257645174272051, 48.84306712031513], [2.257679316421076, 48.84305814959561], [2.257680630109806, 48.84304618081587], [2.2576226513815962, 48.842968061360224], [2.257566230394812, 48.84288964575117], [2.257571197762888, 48.84287821138855], [2.257650315162777, 48.84284481404904], [2.257771189192933, 48.84279378993579], [2.257788283436641, 48.84279508586441], [2.25792128627179, 48.842885069303065], [2.258055816539886, 48.84297652263656], [2.258188820299944, 48.84306650576314], [2.258323351518611, 48.84315795788161], [2.2584563562036832, 48.84324794069616], [2.25859088834733, 48.84333939339817], [2.258723893957221, 48.843429375900634], [2.258858427038656, 48.8435208282869], [2.258877827707364, 48.84352092959162], [2.259000416422326, 48.84344018347706], [2.259103525887534, 48.84337509696144], [2.259206636444831, 48.84331001126091], [2.259329224154272, 48.843229264794175], [2.259331761356018, 48.84321871468923], [2.259310842692896, 48.843204627828875], [2.259222049575512, 48.8430869744817], [2.259140224892146, 48.842978061132015], [2.259058400537874, 48.84286914861498], [2.2589696072122942, 48.84275149413736], [2.258887783570359, 48.84264258148152], [2.258798992365513, 48.84252492776114], [2.25871716944859, 48.84241601406719], [2.2586283776523928, 48.84229836018783], [2.25854655544769, 48.8421894463551], [2.258457764422617, 48.842071792325186], [2.258375944292592, 48.841962878362125], [2.258309197429171, 48.841874433969984], [2.258312143853237, 48.84185706377058], [2.258294877427743, 48.841846153453766], [2.2582728340699862, 48.84181694276277], [2.25818084464842, 48.84169328332402], [2.258092055307042, 48.841575628071105], [2.258000066740293, 48.84145196846661], [2.257911279567629, 48.84133431396181], [2.257819291855784, 48.841210654191556], [2.257730504152631, 48.84109299861941], [2.25772956944017, 48.84108658928255], [2.257782899540621, 48.84095941154882], [2.257841554039949, 48.84083597402884], [2.257894883610623, 48.840708796216646], [2.257953538938049, 48.84058535772324], [2.257947204651468, 48.84057482363998], [2.257785788503791, 48.84051504905461], [2.257594493946948, 48.840442839346906], [2.257433078599705, 48.840383065177875], [2.257241785015812, 48.840310854897616], [2.257080370494625, 48.84025107934626], [2.256889077883888, 48.840178868493474], [2.256727664163123, 48.84011909335841], [2.256707452749857, 48.84012596310366], [2.256687988263465, 48.84024392456633], [2.256670183712458, 48.84036156625853], [2.256650719040908, 48.84047952858952], [2.256632914325402, 48.840597170251364], [2.256613449494343, 48.84071513165212], [2.256595644614133, 48.84083277328359], [2.256576178235471, 48.840950735544205], [2.256558374553093, 48.84106837715376], [2.256538908015015, 48.84118633848414], [2.256521102805587, 48.841303980054875], [2.256506708017467, 48.84131206319224], [2.256306209897797, 48.84130390969451], [2.256149738417271, 48.84129546932649], [2.256114713666695, 48.84129006394503], [2.256103209935702, 48.84129548847782], [2.255902711930079, 48.841287335202956], [2.255710646951509, 48.84127993287437], [2.255510150429481, 48.84127177894997], [2.255318085563993, 48.84126437599101], [2.255117587800883, 48.84125622140005], [2.254925524410932, 48.841248817819206], [2.254920244414821, 48.841249303871216], [2.254742337666861, 48.84129013342383], [2.254546836491088, 48.841335125094766], [2.254368929170543, 48.84137595318957], [2.254173427350533, 48.841420944246785], [2.253995519444549, 48.841461771783166], [2.253800016980308, 48.84150676222669], [2.253622107113558, 48.841547590095374], [2.253426604017969, 48.84159257902592], [2.253248694928238, 48.84163340634461], [2.253053191175546, 48.84167839556073], [2.252875281513274, 48.84171922142168], [2.252679777116366, 48.841764210024095], [2.252501866868678, 48.84180503532654], [2.252306361827459, 48.84185002331521], [2.252128450994459, 48.841890848059215], [2.251932945309037, 48.841935835434185], [2.251755033877617, 48.841976660518974], [2.251559527561009, 48.842021646380964], [2.25138161554418, 48.842062470907265], [2.251365887332601, 48.84206152976667], [2.2513454020673, 48.84207616837193], [2.251334852201328, 48.84217516288924], [2.251322742540049, 48.84230268113947], [2.251309202032329, 48.84242973083977], [2.251297092249143, 48.84255724905833], [2.251286756478918, 48.84265422667774], [2.251274646588655, 48.84278174486835], [2.251264310732147, 48.84287872246628], [2.251276327244846, 48.84289030424618]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 154, "zemmour_eric": 159.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-48", "circ_bv": "14", "num_bureau": 48, "roussel_fabien": 6.0, "nb_emargement": 1157.0, "nb_procuration": 76.0, "nb_vote_blanc": 10.0, "jadot_yannick": 51.0, "le_pen_marine": 68.0, "nb_exprime": 1141.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1469.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1158, "quartier_bv": "61", "geo_point_2d": [48.84205151258077, 2.2556021399215918], "melenchon_jean_luc": 129.0, "poutou_philippe": 5.0, "macron_emmanuel": 536.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.343510924753761, 48.88963142688041], [2.343533658653171, 48.88961989986258], [2.343586698887735, 48.889607286221704], [2.343803188847742, 48.88955342961762], [2.343999660747496, 48.88950670522003], [2.34401629929214, 48.88951090628891], [2.344058255805792, 48.88956237698068], [2.344102738067314, 48.889614071032724], [2.344118750235013, 48.88961819850828], [2.344275428480752, 48.8895851817334], [2.344427299561397, 48.88955115727127], [2.344583978773486, 48.889518140098104], [2.344735849445657, 48.88948411614179], [2.344741789956554, 48.889483696289695], [2.344913170638033, 48.88949597450272], [2.345136222370396, 48.88951284193769], [2.345307601877186, 48.889525119578394], [2.345530655225887, 48.88954198628568], [2.345702034932902, 48.889554262462276], [2.345925087159184, 48.88957112932618], [2.34609646841873, 48.8895834049454], [2.34611085329641, 48.88957735819831], [2.346166201593805, 48.889469942893804], [2.346215581666314, 48.889368288419945], [2.346270929525434, 48.88926087304661], [2.346320309195222, 48.88915921851021], [2.346369688672208, 48.88905756394406], [2.346425035883144, 48.88895014846903], [2.346429467996499, 48.888933755476216], [2.346410736334892, 48.888921926029454], [2.346217966190341, 48.888874252623204], [2.346025372919339, 48.88882794324612], [2.345832603475642, 48.88878026921542], [2.3456400108836792, 48.88873396011383], [2.345631752564158, 48.88872837064038], [2.345573994774132, 48.888614811894904], [2.345516238694327, 48.88850450058331], [2.345458481393231, 48.88839094265819], [2.345400727181442, 48.88828063037658], [2.345342969016883, 48.88816707236513], [2.345285215286797, 48.888056760904604], [2.345227461812717, 48.88794644850581], [2.345169705760367, 48.887832890383706], [2.3451587243353282, 48.887804302793896], [2.345129102067798, 48.88780421632937], [2.34494835816422, 48.88775224484225], [2.344760815805338, 48.887697498324606], [2.344580072651079, 48.88764552537722], [2.3443925324161112, 48.88759077918417], [2.344374074580047, 48.88759616041355], [2.344311109007229, 48.88772082741959], [2.344247675411518, 48.88784657370661], [2.344184710596861, 48.88797124062527], [2.344121275027278, 48.88809698680916], [2.344058309595872, 48.88822165453218], [2.343994873427309, 48.88834739972121], [2.343931907390474, 48.88847206734932], [2.343868470600164, 48.88859781334195], [2.343805503969322, 48.888722479975904], [2.343742066568688, 48.8888482258729], [2.343720089313579, 48.888852120908915], [2.343543677701377, 48.888749162249475], [2.343386354365202, 48.88865689125989], [2.343209945438002, 48.88855393209795], [2.343052623294406, 48.888461659754235], [2.343044150152797, 48.88845939462842], [2.342832966681028, 48.888453355121776], [2.342644190923257, 48.88844788522646], [2.342455413841454, 48.888442415025985], [2.342244230506942, 48.88843637448094], [2.342055453508889, 48.88843090364987], [2.341844270267364, 48.88842486239939], [2.341831343399141, 48.88843768048798], [2.341911069319778, 48.8885492421311], [2.341997826202233, 48.88867480348243], [2.342077552831255, 48.88878636588982], [2.342164310510241, 48.88891192709338], [2.342244039222734, 48.88902348937337], [2.342330796334552, 48.8891490504217], [2.342410525766821, 48.88926061256671], [2.342515027172022, 48.889398980162596], [2.342594756029334, 48.889510541252804], [2.3426992584255872, 48.88964890865642], [2.342778989412685, 48.889760470505294], [2.3427803236732743, 48.889783772145535], [2.342809867421248, 48.88979103356883], [2.34298326455712, 48.88975055501184], [2.343179737936417, 48.88970383196795], [2.343353134494266, 48.889663352872105], [2.343496566971007, 48.88962924194273], [2.343510924753761, 48.88963142688041]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 47, "zemmour_eric": 63.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-2", "circ_bv": "18", "num_bureau": 2, "roussel_fabien": 36.0, "nb_emargement": 1279.0, "nb_procuration": 87.0, "nb_vote_blanc": 13.0, "jadot_yannick": 144.0, "le_pen_marine": 55.0, "nb_exprime": 1264.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1572.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1282, "quartier_bv": "70", "geo_point_2d": [48.88887634675504, 2.3442277733251737], "melenchon_jean_luc": 417.0, "poutou_philippe": 8.0, "macron_emmanuel": 446.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.364678733602595, 48.884365612276234], [2.3646718590970552, 48.884307963982515], [2.364585018365185, 48.88418183021186], [2.364501991815461, 48.88405952525942], [2.364415151909319, 48.88393339133703], [2.364332126154634, 48.88381108623918], [2.364249100789934, 48.88368878107013], [2.364162262114553, 48.88356264692188], [2.364079237544877, 48.8834403416074], [2.363992398331634, 48.883314207300195], [2.363909374556974, 48.883191901840334], [2.363822537532989, 48.88306576738864], [2.36373951455333, 48.88294346178336], [2.363652678355025, 48.88281732718002], [2.363569656170359, 48.88269502142934], [2.36348282079772, 48.882568886674306], [2.363463585010253, 48.88256481746513], [2.36329109787328, 48.88263051807647], [2.363115677898291, 48.88269693938669], [2.362943189884692, 48.882762639488945], [2.362767767668478, 48.882829059374885], [2.362595278767452, 48.882894759867305], [2.362419857025912, 48.882961179242805], [2.362247367259267, 48.8830268783268], [2.362071944629059, 48.883093297184615], [2.361899453974874, 48.88315899665875], [2.361724030455893, 48.88322541499879], [2.361704014378743, 48.88321980349811], [2.3616655297668, 48.883118598313], [2.361626231790947, 48.88299587772284], [2.361587747495645, 48.88289467249214], [2.3615655468356, 48.88282534445258], [2.361560381218888, 48.88281958008734], [2.361505560878717, 48.88282671799846], [2.361333628137338, 48.88285005226126], [2.361160741744874, 48.8828729683969], [2.360988808696197, 48.88289630216357], [2.360815921987522, 48.88291921869964], [2.360643987268098, 48.88294255196283], [2.360471100265189, 48.88296546710076], [2.360467019935146, 48.882965608982914], [2.36026350468302, 48.88295243291893], [2.360052845345406, 48.88293860587941], [2.359849328940151, 48.88292542910377], [2.3596386698105842, 48.88291160223443], [2.359435154979212, 48.88289842476176], [2.359224496079917, 48.882884596264056], [2.359210396872115, 48.88289673729031], [2.359279665015311, 48.883017065911694], [2.359344473242294, 48.88312928834414], [2.359413742004505, 48.88324961686252], [2.359478550798761, 48.88336184009794], [2.359479442017444, 48.883364881898935], [2.35948359091939, 48.88348156410981], [2.359486839700701, 48.88360269226946], [2.359490988638168, 48.883719374454884], [2.359494237451522, 48.88384050258812], [2.359498385060931, 48.88395718474074], [2.359501635269909, 48.88407831285491], [2.359488149400053, 48.884087464219235], [2.359269136012589, 48.88408904430183], [2.359065825810394, 48.88409067207489], [2.358862515606461, 48.88409229860344], [2.358643502179691, 48.88409387754165], [2.358613461350347, 48.88408388246199], [2.358601550384985, 48.88408948711963], [2.358581948124179, 48.88422409426792], [2.358566709362223, 48.88433867155859], [2.358550752753721, 48.88438631250834], [2.358552719314868, 48.88438718460042], [2.358598313330682, 48.884390163718216], [2.358747677631789, 48.8843986782231], [2.358948829922029, 48.884411820783924], [2.3589501780371602, 48.88441186487442], [2.359099542458039, 48.88442037894024], [2.359210983620574, 48.884420356687954], [2.359296177397223, 48.88441931163682], [2.359313937261781, 48.884431427089865], [2.359370664773249, 48.88442904434109], [2.359479288386107, 48.88442771173112], [2.359676741936366, 48.88442650069219], [2.359870560672769, 48.884424122351945], [2.360068012847774, 48.8844229097612], [2.360261831552837, 48.88442053078761], [2.360459285068702, 48.88441931755888], [2.360653103731475, 48.88441693885115], [2.36085055586101, 48.884415724969884], [2.361044374503673, 48.88441334472948], [2.361241826610454, 48.88441213020296], [2.361435646574312, 48.884409750235704], [2.361633098658337, 48.88440853506392], [2.36182691723846, 48.88440615355674], [2.362024369299612, 48.88440493773969], [2.362218189201025, 48.88440255650564], [2.362415641239501, 48.884401340043354], [2.362609459756944, 48.88439895726938], [2.362806911772629, 48.88439774016184], [2.363000731611359, 48.884395357661], [2.363198183604247, 48.88439413990819], [2.363392002059174, 48.88439175586747], [2.363589454029253, 48.884390537469386], [2.363783272441768, 48.884388153694545], [2.363980725752622, 48.884386934658444], [2.364174544144896, 48.88438454935093], [2.364175293018371, 48.88438453084467], [2.364310650296762, 48.884378775330475], [2.364504468632477, 48.88437639038813], [2.364639824489734, 48.88437063449457], [2.364678733602595, 48.884365612276234]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 35, "zemmour_eric": 58.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-25", "circ_bv": "05", "num_bureau": 25, "roussel_fabien": 17.0, "nb_emargement": 1077.0, "nb_procuration": 57.0, "nb_vote_blanc": 16.0, "jadot_yannick": 91.0, "le_pen_marine": 55.0, "nb_exprime": 1055.0, "nb_vote_nul": 6.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1352.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1077, "quartier_bv": "37", "geo_point_2d": [48.883689522799145, 2.361758660315011], "melenchon_jean_luc": 456.0, "poutou_philippe": 8.0, "macron_emmanuel": 276.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.387458159729707, 48.874678963932524], [2.387493632157769, 48.87467402104115], [2.387647299684778, 48.87468293719713], [2.387822409134923, 48.874692344129194], [2.388036499649985, 48.87470476500436], [2.388211607880462, 48.87471417135999], [2.388214918147103, 48.87471464154188], [2.3883776490263022, 48.874748817682224], [2.388581409122945, 48.87479587297463], [2.388584025419711, 48.87479669214025], [2.388733623102882, 48.87486421183231], [2.3888695604743813, 48.87491912848872], [2.388891679529742, 48.87492826351818], [2.388929561953986, 48.874890014018014], [2.389002291403049, 48.87479482843232], [2.389082897888979, 48.874689333470755], [2.389155626777606, 48.8745941477746], [2.389236232642402, 48.874488652690616], [2.389308960970598, 48.874393466883966], [2.3893895662037252, 48.874287972576845], [2.389389221582486, 48.87427945593007], [2.389272500941784, 48.874145005485154], [2.389172744709019, 48.87398329903262], [2.389175118534561, 48.87397398325674], [2.389314841312804, 48.87386879600864], [2.38945322376699, 48.87376461800127], [2.389592945422088, 48.873659430408615], [2.389731326763807, 48.873555252059994], [2.389871047295566, 48.87345006412278], [2.3900094275248263, 48.873345885432904], [2.390021476652025, 48.873319483026805], [2.390016051243928, 48.87330125555449], [2.389995284314466, 48.873291259749756], [2.389870131601706, 48.87318966084443], [2.389735458181628, 48.87308767061184], [2.389610306454306, 48.872986072315406], [2.3894756340693633, 48.87288408177167], [2.389428860111511, 48.872868968202916], [2.389425719064728, 48.872867213767336], [2.389386315993849, 48.87285123664563], [2.389384119579635, 48.872851357643576], [2.389354263007398, 48.87288408141145], [2.389165951612254, 48.87289882299086], [2.388957645898881, 48.87291512957684], [2.388769334279242, 48.8729298705319], [2.388561028306885, 48.87294617732653], [2.38837271646276, 48.87296091765722], [2.388164408889445, 48.87297722285498], [2.387976098184141, 48.87299196256827], [2.387767790362521, 48.87300826707539], [2.387579479432751, 48.87302300616433], [2.387371171352258, 48.87303931088006], [2.387182858834731, 48.87305404933765], [2.386974551879822, 48.87307035247045], [2.386786239137847, 48.8730850903037], [2.386577931934664, 48.87310139274582], [2.386389618957554, 48.87311613085404], [2.386181310142904, 48.87313243259848], [2.385992998315256, 48.87314716919002], [2.385982994726702, 48.87315138521944], [2.385871462983917, 48.87327089491487], [2.38576069017509, 48.87338959089544], [2.385649157412183, 48.87350910035795], [2.385538383590275, 48.873627796107165], [2.385426849807132, 48.87374730533675], [2.385316074972029, 48.87386600085463], [2.385275783236315, 48.873902142334735], [2.385292949170311, 48.873911762529175], [2.385378257120701, 48.87395001217685], [2.385471960569157, 48.873997880970826], [2.385477740216804, 48.874003173544416], [2.385497362124774, 48.874009635264834], [2.385567173331281, 48.87404529787605], [2.385740925055918, 48.87413043021279], [2.385904439462411, 48.874213961117135], [2.386078192300929, 48.87429909295135], [2.386241709141118, 48.87438262338921], [2.386415463093523, 48.87446775472088], [2.386568361371625, 48.874523050550366], [2.386570136016959, 48.87452378720536], [2.386739059277842, 48.87458250145823], [2.3868919595996623, 48.87463779687565], [2.386896988379058, 48.874638791213954], [2.387031893845771, 48.87464748705767], [2.387245983987933, 48.87465990934712], [2.387380889567606, 48.874668604797364], [2.387441311004044, 48.87467211023234], [2.387458159729707, 48.874678963932524]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 35, "zemmour_eric": 47.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-12", "circ_bv": "15", "num_bureau": 12, "roussel_fabien": 14.0, "nb_emargement": 1097.0, "nb_procuration": 84.0, "nb_vote_blanc": 10.0, "jadot_yannick": 118.0, "le_pen_marine": 35.0, "nb_exprime": 1082.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1324.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1097, "quartier_bv": "77", "geo_point_2d": [48.87379835037492, 2.387742322240302], "melenchon_jean_luc": 514.0, "poutou_philippe": 12.0, "macron_emmanuel": 254.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.402325570533197, 48.84108872345737], [2.402328122358071, 48.84111309624972], [2.4023224918355393, 48.84123754931406], [2.4023140944788253, 48.841382752940284], [2.402308465256141, 48.84150720598069], [2.402300067816804, 48.84165240957086], [2.4022944371690222, 48.841776862573774], [2.402286041009641, 48.84192206613468], [2.402280410299234, 48.84204651910684], [2.402272012694944, 48.8421917226249], [2.402266383284403, 48.84231617557312], [2.402266386035122, 48.842316767364586], [2.402273769061166, 48.8424472732428], [2.402280630511698, 48.8425732428354], [2.402288013609843, 48.84270374868277], [2.40229487512857, 48.84282971824559], [2.402302258298614, 48.842960224062054], [2.402309119875221, 48.843086194494404], [2.402316503117267, 48.84321670028001], [2.402323364772383, 48.84334266978329], [2.402340030395678, 48.84335111167149], [2.402541756207965, 48.84332054376326], [2.402742353534078, 48.84329009759001], [2.402944078884644, 48.843259528102415], [2.403144675740887, 48.84322908125287], [2.4033464006089122, 48.843198511984504], [2.403546996995279, 48.84316806445869], [2.403748721401449, 48.84313749361096], [2.403949317317929, 48.84310704540888], [2.404151041241655, 48.84307647478042], [2.404351636688241, 48.84304602590207], [2.404553360150082, 48.84301545369421], [2.404753955116492, 48.84298500503887], [2.4047825170987522, 48.842992178329204], [2.404804592557203, 48.84298259039234], [2.404805257147907, 48.84298250106508], [2.405001639254527, 48.842955829920434], [2.405258752985956, 48.84292561924268], [2.405274481330577, 48.84293264317327], [2.405317283257316, 48.843068570780844], [2.405381200626783, 48.84322951010991], [2.405404692608243, 48.843233107386375], [2.405531961653227, 48.84313582416198], [2.405657062685299, 48.84303994741217], [2.405784330777286, 48.8429426648018], [2.405909430881365, 48.84284678777146], [2.406036698040872, 48.84274950397646], [2.406161797217064, 48.84265362666564], [2.406289063433845, 48.84255634258532], [2.406414161682258, 48.842460464994005], [2.406541426945978, 48.84236318152766], [2.406666524266522, 48.84226730365586], [2.406793788597874, 48.842170019004925], [2.406918884990453, 48.842074140852645], [2.407046148379103, 48.84197685591637], [2.407171243833699, 48.84188097838293], [2.407298506279551, 48.84178369316138], [2.407423600816532, 48.84168781444809], [2.407550862319799, 48.841590528941275], [2.407675955928837, 48.84149464994753], [2.407717141192955, 48.841487206623434], [2.407727953140697, 48.84146811731033], [2.407709242091887, 48.84142562531536], [2.407697183540188, 48.841419167574365], [2.407514919372638, 48.84141008712464], [2.407336067311994, 48.84139990360024], [2.407153801922585, 48.841390821694105], [2.40697495136098, 48.84138063763636], [2.406792686091634, 48.84137155607922], [2.406613834304333, 48.84136137147463], [2.406431570527655, 48.84135228937387], [2.406252718887279, 48.841342103329914], [2.406070453878539, 48.84133302067207], [2.405891603726977, 48.84132283499414], [2.40589042952293, 48.84132280937668], [2.405715540580272, 48.84132407035986], [2.405539535664585, 48.84132653068246], [2.405364648073684, 48.84132779026012], [2.405188643128874, 48.841330250066434], [2.405013755517016, 48.84133150913113], [2.40483774918072, 48.84133396841442], [2.404824216173789, 48.841327083944506], [2.404785313667896, 48.841220515122174], [2.4047445799558282, 48.84109952313794], [2.404705679145075, 48.84099295427477], [2.404675137688597, 48.84090223502532], [2.4046513722177663, 48.8408806895196], [2.404609671074382, 48.84089309998256], [2.4044216552232482, 48.840908711358914], [2.404219848992787, 48.84092553714459], [2.404031832897601, 48.84094114880716], [2.403830027788353, 48.84095797304223], [2.403642011459403, 48.84097358409166], [2.403440206098741, 48.8409904076686], [2.403252189536036, 48.84100601810489], [2.403050383923971, 48.84102284102377], [2.402862367127517, 48.841038450846916], [2.402660559901596, 48.841055273100864], [2.402472542871403, 48.841070882310895], [2.402337303558284, 48.8410821555992], [2.402325570533197, 48.84108872345737]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 69, "zemmour_eric": 102.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-34", "circ_bv": "08", "num_bureau": 34, "roussel_fabien": 18.0, "nb_emargement": 1179.0, "nb_procuration": 67.0, "nb_vote_blanc": 14.0, "jadot_yannick": 95.0, "le_pen_marine": 76.0, "nb_exprime": 1159.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1562.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1179, "quartier_bv": "45", "geo_point_2d": [48.84206631602654, 2.4044048537732916], "melenchon_jean_luc": 322.0, "poutou_philippe": 7.0, "macron_emmanuel": 420.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.322863239369851, 48.893613150533135], [2.32288019988891, 48.893624448413284], [2.322940644231892, 48.893637649605935], [2.322979612307059, 48.893660204626954], [2.323117064239077, 48.89373550949793], [2.323255325058803, 48.893811257644856], [2.323392777788372, 48.89388656218901], [2.323531039410245, 48.89396231000717], [2.323668492937371, 48.89403761422447], [2.323806755361595, 48.894113361713856], [2.323944209686279, 48.89418866560432], [2.324082471548914, 48.89426441275728], [2.324219926671158, 48.89433971632087], [2.324358190699793, 48.89441546315274], [2.324371312798796, 48.894417057042496], [2.324538382189509, 48.89437946172109], [2.324704930170974, 48.894341982836316], [2.32487200045539, 48.89430438615535], [2.325038547944784, 48.894266907703305], [2.325055227052096, 48.89426587755705], [2.325061604119401, 48.894255089246904], [2.325102058961942, 48.89414127588504], [2.325142907093752, 48.89402635944684], [2.325183362932923, 48.893912546940726], [2.325224210705835, 48.8937976304508], [2.325264666189657, 48.8936838178935], [2.325305513603571, 48.893568901351856], [2.325316487182173, 48.89356208964806], [2.325497039093087, 48.893541677672296], [2.325676316489969, 48.893521408434914], [2.325856866754913, 48.89350099590817], [2.326036143871734, 48.89348072613137], [2.326216695218254, 48.89346031306904], [2.326395972043271, 48.893440043652035], [2.326576523119268, 48.89341962914721], [2.326755799664116, 48.89339935919076], [2.326936350457943, 48.89337894414267], [2.327115626722615, 48.8933586736468], [2.327296177234366, 48.89333825805542], [2.327475453218754, 48.89331798702014], [2.3275287274215373, 48.893310245347855], [2.327527770630257, 48.89329836710474], [2.327494494840969, 48.89320001995877], [2.327455204193698, 48.89308395201245], [2.327465192460444, 48.893066174518054], [2.327433723865451, 48.89304301915772], [2.327394432108318, 48.89292695116716], [2.327361436780293, 48.89282751914012], [2.327353764718052, 48.8928085335836], [2.327305374028202, 48.89281582776927], [2.3271198987807082, 48.89277747725089], [2.326935544633056, 48.89273935937343], [2.326750068554937, 48.8927010091712], [2.3265657149487913, 48.89266289072169], [2.326380239427111, 48.892624539044725], [2.326195886362583, 48.89258642002322], [2.326010412737781, 48.89254806867774], [2.325826060226413, 48.892509948184966], [2.325640585782629, 48.892471596256335], [2.325456233801144, 48.89243347609084], [2.325270759902286, 48.892395123586695], [2.325086409837679, 48.89235700195768], [2.324900936483651, 48.892318648878046], [2.324716585585128, 48.892280527568595], [2.324531112775935, 48.89224217391354], [2.324346762430622, 48.89220405113284], [2.324335111631775, 48.89220515181893], [2.324245963411123, 48.892244379144785], [2.324157015333782, 48.89228351760072], [2.324145741343329, 48.89228469234108], [2.323967994863128, 48.892251619985856], [2.323783905579756, 48.89221736760553], [2.323606160911228, 48.892184295618144], [2.323422072104024, 48.892150042679496], [2.323244326543057, 48.89211696924603], [2.323060238211929, 48.89208271574901], [2.322882493098946, 48.89204964267574], [2.322698405255594, 48.89201538772113], [2.32252066060229, 48.891982314108745], [2.322336573223328, 48.89194805949508], [2.322328309909536, 48.891952540833955], [2.322340414193456, 48.89197789835869], [2.322441518996627, 48.8921003856915], [2.322543850124421, 48.89222436104861], [2.322644955884859, 48.89234684818217], [2.322747289356834, 48.89247082244603], [2.322848396062754, 48.892593310279544], [2.322950730503535, 48.89271728434169], [2.323051836814536, 48.89283977106896], [2.323154172212441, 48.89296374582863], [2.323255280844451, 48.893086232364304], [2.323357617222876, 48.89321020602299], [2.323458725436596, 48.893332693250905], [2.323561062783862, 48.89345666670785], [2.323550316243148, 48.89346992229116], [2.323494347356696, 48.89347327086385], [2.323460186460876, 48.89347531449222], [2.3234128230200772, 48.89347683205684], [2.32340981446165, 48.89348468773951], [2.323273754670732, 48.89351142744157], [2.323021896760275, 48.893560924508044], [2.322885835207187, 48.89358766375979], [2.322883460611163, 48.89358829604743], [2.322863239369851, 48.893613150533135]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 72, "zemmour_eric": 84.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "17-31", "circ_bv": "03", "num_bureau": 31, "roussel_fabien": 20.0, "nb_emargement": 1176.0, "nb_procuration": 57.0, "nb_vote_blanc": 12.0, "jadot_yannick": 108.0, "le_pen_marine": 61.0, "nb_exprime": 1160.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1463.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1176, "quartier_bv": "68", "geo_point_2d": [48.893105343631525, 2.324736718117036], "melenchon_jean_luc": 320.0, "poutou_philippe": 10.0, "macron_emmanuel": 431.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303172181186421, 48.879143622533704], [2.303199066352815, 48.87909100049399], [2.303361227561886, 48.87901151557407], [2.303525043412297, 48.8789259263601], [2.303687204973229, 48.878846440994614], [2.3038510197566913, 48.87876085222103], [2.304013178942815, 48.87868136639422], [2.30417699268328, 48.878595776262486], [2.304339150857935, 48.87851628998224], [2.304502963531574, 48.878430700290906], [2.304665122058092, 48.87835121356511], [2.304828933688831, 48.87826562251566], [2.304991089840462, 48.87818613532853], [2.305154900404295, 48.878100544719516], [2.305317055544574, 48.878021057078946], [2.305468180177782, 48.87794836897143], [2.305630334366145, 48.877868880895534], [2.305781458120668, 48.87779619238254], [2.305943611357117, 48.877716703871336], [2.306094734220773, 48.87764401585204], [2.306256886505314, 48.8775645269056], [2.306408008502175, 48.87749183758156], [2.306570159834808, 48.87741234819979], [2.306721280941022, 48.87733965936953], [2.3067238287030483, 48.877338064307956], [2.306853496718246, 48.87723492446387], [2.306965057526963, 48.87714436841881], [2.30707661658435, 48.877053812254495], [2.307206283193242, 48.87695067200168], [2.307317842779717, 48.87686011560456], [2.307447508428687, 48.87675697507237], [2.307559067180862, 48.876666418434496], [2.30767329383278, 48.87656129702928], [2.307784851773263, 48.87647074016491], [2.307844366500813, 48.876415969181046], [2.30786283216432, 48.876399832979665], [2.307866309971385, 48.876386830653665], [2.307921022322351, 48.87633647999475], [2.3079618996905342, 48.87629412719657], [2.307967429472824, 48.87628327895563], [2.307899080184074, 48.876249169373295], [2.307824505165025, 48.876142857149915], [2.307751945630791, 48.876037365029575], [2.307677371215331, 48.87593105269415], [2.30760481227417, 48.875825560464406], [2.307530239825649, 48.87571924802477], [2.307457681477552, 48.875613755685556], [2.307383108269246, 48.87550744312599], [2.307310550514209, 48.87540195067734], [2.3073043738442, 48.875397670049665], [2.307093325980116, 48.87532602217384], [2.306887209168623, 48.87525465698269], [2.306676162457878, 48.87518300836207], [2.306470048135183, 48.87511164335061], [2.306463019139403, 48.87511066101758], [2.306282941945983, 48.87511755425451], [2.306104013368492, 48.87512409054538], [2.305923937444573, 48.875130983250074], [2.3057450087759, 48.875137519004234], [2.305564931394708, 48.87514441116091], [2.305386002634859, 48.87515094637841], [2.305205926522981, 48.8751578380029], [2.305026996308623, 48.87516437267574], [2.304991339427038, 48.8751591059681], [2.304981509699149, 48.87518389228278], [2.304915732946423, 48.87531688706876], [2.304839194444815, 48.87546488685899], [2.3048245363461453, 48.87547090196174], [2.304687479850299, 48.875459173570256], [2.304550536708918, 48.875447129112096], [2.304413480349337, 48.875435399507396], [2.304276538697175, 48.87542335474348], [2.304267300793774, 48.87542473100474], [2.304093880101372, 48.875499155146414], [2.303922636027169, 48.87557309075885], [2.3037492143483, 48.875647514391225], [2.303577970660415, 48.875721449508575], [2.303406725123005, 48.875795384368075], [2.303233301966798, 48.87586980723809], [2.303062055452348, 48.87594374159458], [2.302888631309668, 48.87601816395522], [2.302717383818176, 48.87609209780873], [2.302543958676978, 48.876166520559316], [2.30237271020844, 48.876240453909816], [2.302199284092805, 48.87631487525184], [2.302028036010593, 48.87638880810727], [2.301854608908379, 48.87646322893991], [2.301683358485851, 48.876537161284396], [2.301509930397156, 48.87661158160769], [2.301338678997579, 48.87668551344917], [2.301165249922402, 48.87675993326308], [2.300993997545773, 48.87683386460155], [2.300820567484112, 48.87690828390615], [2.300649315481642, 48.87698221564882], [2.300475884433594, 48.877056634444024], [2.300469836828202, 48.877065510660636], [2.30049841776568, 48.87719080007749], [2.300526646855574, 48.87731559727669], [2.300555228054874, 48.8774408875508], [2.300583457416442, 48.87756568470834], [2.300612040265129, 48.87769097404915], [2.3006402698862, 48.8778157720642], [2.300668851645491, 48.87794106135509], [2.30069708155032, 48.87806585842916], [2.3007256635713462, 48.87819114857734], [2.300753895111386, 48.87831594561764], [2.3007824774184042, 48.878441234824535], [2.30081070785464, 48.87856603271442], [2.300782102012157, 48.878629761824875], [2.300794989236412, 48.878635706176226], [2.300872565617091, 48.878653136951534], [2.300967465356341, 48.878674034154706], [2.30095939703278, 48.878697428292035], [2.300995978021257, 48.87868072623937], [2.301000684795902, 48.87868195164026], [2.30101524815268, 48.878686652076674], [2.3010264779992, 48.878688181767124], [2.301115699238042, 48.87870782799256], [2.301304283843535, 48.87874894393638], [2.301488405449906, 48.87878948674173], [2.301676990645416, 48.87883060209542], [2.301861112830501, 48.87887114432454], [2.30204969861592, 48.87891225908806], [2.302233821379816, 48.87895280074097], [2.302422407755141, 48.87899391491435], [2.302606531097941, 48.87903445599105], [2.3027951180630613, 48.87907556957425], [2.302924291495479, 48.87910401149841], [2.302969887332706, 48.87911423804735], [2.302972229599636, 48.879114054729975], [2.303027178747107, 48.87912615327626], [2.303151143943973, 48.87915203299561], [2.303172181186421, 48.879143622533704]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 155, "zemmour_eric": 242.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "8-16", "circ_bv": "01", "num_bureau": 16, "roussel_fabien": 4.0, "nb_emargement": 1280.0, "nb_procuration": 87.0, "nb_vote_blanc": 7.0, "jadot_yannick": 38.0, "le_pen_marine": 68.0, "nb_exprime": 1271.0, "nb_vote_nul": 4.0, "arr_bv": "08", "arthaud_nathalie": 3, "nb_inscrit": 1626.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1282, "quartier_bv": "30", "geo_point_2d": [48.877049266555886, 2.304075629116256], "melenchon_jean_luc": 111.0, "poutou_philippe": 2.0, "macron_emmanuel": 617.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.374993917508826, 48.868335179290874], [2.375017295407286, 48.86834531011458], [2.375207711146143, 48.868398469539194], [2.375392340524776, 48.868450702718114], [2.375576970273666, 48.86850293560975], [2.375767388533895, 48.86855609324423], [2.375952019032278, 48.86860832555237], [2.376142436697288, 48.868661482578034], [2.376158967217239, 48.868658309532606], [2.376281620352286, 48.86854109034495], [2.3764037914518212, 48.86842389279272], [2.376526442110082, 48.86830667422151], [2.376648612109045, 48.86818947639458], [2.376771263038408, 48.86807225665545], [2.376893431936809, 48.86795505855383], [2.3770160817633452, 48.86783783853897], [2.377138248198139, 48.86772064015549], [2.37715449865008, 48.86771737378164], [2.3773591388232402, 48.86777081248247], [2.377554613289454, 48.86782252499454], [2.377750089507025, 48.86787423719212], [2.3779547309181153, 48.867927673967756], [2.378150207927344, 48.86797938550692], [2.378354850161938, 48.86803282159338], [2.378365911250734, 48.868040829203174], [2.378382613146495, 48.868040173991936], [2.378382890358249, 48.86804024827814], [2.378553954533708, 48.86808781410737], [2.378725961327938, 48.8681351246722], [2.378897026117492, 48.86818269090629], [2.37906903217351, 48.86823000096697], [2.379240097598501, 48.86827756580736], [2.379412105642537, 48.868324875378036], [2.379429548830646, 48.86832059053381], [2.379510504554264, 48.86821357788319], [2.37958794625229, 48.86811199964855], [2.379668901326351, 48.86800498687063], [2.379746342416125, 48.867903407615074], [2.379823783193178, 48.86780182919939], [2.379904737300848, 48.867694816231925], [2.379900738727768, 48.86768361492533], [2.379694658300174, 48.86758128050921], [2.379488120138131, 48.8674777292427], [2.379484896166113, 48.867465710838], [2.379593593175509, 48.86735399982962], [2.379700713492119, 48.867243578289866], [2.379809409575114, 48.867131867063065], [2.379916527625055, 48.86702144440164], [2.3800252227818612, 48.8669097329564], [2.380132341270015, 48.86679931098601], [2.380241035500541, 48.866687599322354], [2.38034815308518, 48.86657717623736], [2.380358803117511, 48.86656312701826], [2.3803505196443853, 48.8665553965699], [2.3801478840927413, 48.86650353365388], [2.379950612945314, 48.86645317040209], [2.379747978189441, 48.86640130680424], [2.379550707804934, 48.86635094378795], [2.379348073844837, 48.866299079508266], [2.379150805607996, 48.866248714935985], [2.379149594208571, 48.866248446943814], [2.378939483028334, 48.866209127653754], [2.3787307744816832, 48.8661702982188], [2.3785206639434833, 48.86613097729145], [2.378311956022004, 48.86609214712339], [2.378103247048646, 48.866053316583], [2.377893137445187, 48.86601399544911], [2.377892017094838, 48.866013752199585], [2.377722009590485, 48.865971353009236], [2.377554338488324, 48.86592989564427], [2.377386667663881, 48.86588843714349], [2.377216659605925, 48.865846038122754], [2.377193590851596, 48.86583872694737], [2.377179714062448, 48.86584885146783], [2.377157594821499, 48.865874086095474], [2.377062164962423, 48.86598327400317], [2.376970264090741, 48.86608812019049], [2.376874833457604, 48.86619730702843], [2.376782931831418, 48.866302153051606], [2.376687500402801, 48.86641134061835], [2.376595598021897, 48.86651618647742], [2.376500165808647, 48.86662537387369], [2.376408262683885, 48.866730218669325], [2.376408200482797, 48.86673029029253], [2.376329054831879, 48.86682252168381], [2.376233621498777, 48.8669317088373], [2.376154475243524, 48.86702393919706], [2.376059041175518, 48.867133126191504], [2.375979894294387, 48.86722535731834], [2.375884459491366, 48.86733454415365], [2.3758121932906793, 48.86741632472826], [2.375716757786408, 48.86752551141104], [2.375644492420683, 48.86760729187737], [2.375644420557062, 48.86760737334243], [2.375553462081565, 48.867707954066745], [2.37544647816825, 48.86782744425277], [2.375355520289465, 48.86792802481377], [2.375248535470147, 48.86804751479906], [2.375157575472632, 48.868148094283185], [2.375050589747199, 48.86826758406781], [2.37499310429378, 48.868331149600536], [2.374993917508826, 48.868335179290874]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 35, "zemmour_eric": 54.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-29", "circ_bv": "06", "num_bureau": 29, "roussel_fabien": 22.0, "nb_emargement": 1486.0, "nb_procuration": 102.0, "nb_vote_blanc": 14.0, "jadot_yannick": 144.0, "le_pen_marine": 48.0, "nb_exprime": 1467.0, "nb_vote_nul": 10.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1880.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1491, "quartier_bv": "41", "geo_point_2d": [48.867228077675335, 2.3777734181069783], "melenchon_jean_luc": 704.0, "poutou_philippe": 14.0, "macron_emmanuel": 388.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.359619368839235, 48.8189556379889], [2.359692516639907, 48.81896370233635], [2.359883463294052, 48.81898951883447], [2.360076630250691, 48.81901554567186], [2.360267577284854, 48.81904136155542], [2.360460744636297, 48.81906738687176], [2.360651692050467, 48.81909320214072], [2.360844859785664, 48.81911922683537], [2.361035807579831, 48.81914504148977], [2.361228975698775, 48.81917106556266], [2.361419923872933, 48.81919687960246], [2.361613092375616, 48.81922290305362], [2.361804040929758, 48.81924871647884], [2.3619972098161712, 48.81927473930828], [2.361999740831153, 48.81927525466723], [2.362193566646817, 48.81932886827251], [2.362381987401592, 48.81938425149699], [2.362575814015333, 48.81943786447744], [2.36276423556996, 48.81949324709423], [2.362958062992965, 48.81954685855057], [2.363146485347438, 48.81960224055964], [2.363147096026908, 48.81960242099004], [2.363335797438432, 48.81966197460663], [2.363524219259256, 48.819717355108224], [2.363712921517431, 48.8197769081236], [2.36390134551591, 48.81983228803257], [2.364090048631807, 48.81989183954737], [2.364278472073266, 48.81994721974851], [2.36446717739771, 48.820006770669345], [2.364655601655025, 48.82006215027056], [2.364736249581307, 48.82008629898969], [2.364750924507155, 48.82006922398867], [2.364808031695835, 48.819994350034655], [2.364899177041049, 48.81987631844215], [2.364985123635222, 48.81976363115574], [2.365076268165327, 48.81964560030331], [2.365162215358295, 48.81953291287377], [2.36525335773341, 48.8194148809556], [2.365339304152434, 48.81930219427494], [2.365430447085203, 48.81918416220486], [2.365516392752285, 48.8190714744745], [2.365607533519042, 48.818953442238005], [2.3656934784122052, 48.81884075525658], [2.365784619736726, 48.8187227228681], [2.365870562515884, 48.81861003482977], [2.365961703025463, 48.818492003181454], [2.366047646403533, 48.81837931499993], [2.366138786119844, 48.818261282293136], [2.366224727362271, 48.81814859485334], [2.366315866274495, 48.81803056198738], [2.366401808126671, 48.817917873505124], [2.366492944862136, 48.81779984137209], [2.366578885951381, 48.81768715273947], [2.366670023255453, 48.81756911955518], [2.366755963570951, 48.81745643167152], [2.366847098709123, 48.81733839832082], [2.366933038272629, 48.81722570938747], [2.366942305240288, 48.81721219847784], [2.366909730562096, 48.817195883905384], [2.366746445628497, 48.817144187080416], [2.36657239427597, 48.81708942905722], [2.366409111382904, 48.8170377308746], [2.366235060729006, 48.81698297325454], [2.36607177714189, 48.816931274599106], [2.365897728570309, 48.816876515590735], [2.365734445640041, 48.81682481736909], [2.365560396416193, 48.81677005785724], [2.365397115526473, 48.816718358278], [2.365223067012191, 48.81666359826998], [2.364991837438283, 48.816590384800165], [2.364817791138647, 48.816535624203226], [2.364663698924908, 48.816486833352585], [2.364489651953563, 48.81643207226573], [2.364335560352842, 48.816383280987694], [2.364161514071709, 48.816328519418164], [2.364143644417468, 48.81632286170691], [2.364129806703859, 48.816318480074194], [2.363933544761028, 48.81625633480606], [2.363759500687579, 48.81620157265241], [2.363563239625952, 48.81613942676998], [2.363389194969866, 48.81608466406437], [2.363195524418112, 48.81608245633378], [2.36299716068661, 48.81608048680485], [2.362803490155982, 48.8160782793386], [2.36260512645518, 48.81607630915924], [2.362411455967764, 48.816074100158616], [2.362213092297675, 48.81607212932888], [2.362019421831287, 48.81606992059258], [2.361821058191918, 48.81606794911246], [2.361627386406972, 48.816065738834574], [2.361429022798333, 48.81606376670404], [2.361235352407243, 48.81606155579836], [2.361036988829347, 48.816059583017456], [2.360903349478931, 48.81605805751925], [2.360704985926905, 48.81605608418756], [2.360601562277572, 48.81605490248208], [2.360539658949148, 48.81605419638124], [2.360527122456578, 48.816065451664855], [2.360526371779884, 48.81608235515068], [2.360483395401587, 48.81620449083505], [2.360441274774837, 48.816329456929914], [2.360398297993581, 48.81645159255686], [2.3603561756015923, 48.81657655858706], [2.360313198417268, 48.816698694156635], [2.360271076983563, 48.816823660136734], [2.360228099396371, 48.8169457956489], [2.360185976197199, 48.81707076156433], [2.360142998207027, 48.817192897019126], [2.360100875966142, 48.817317862884394], [2.360074893815634, 48.8173940831616], [2.360031915287668, 48.817516219440705], [2.360031835957429, 48.817516469044264], [2.360026049014942, 48.81753601491563], [2.359983258731019, 48.817677525753176], [2.359944875414595, 48.81781559393271], [2.359902086042713, 48.817957104713344], [2.359863702305567, 48.81809517283256], [2.3598243892986472, 48.81822238851007], [2.359786005160399, 48.81836045657177], [2.359746691752876, 48.81848767309307], [2.359708307213621, 48.81862574109728], [2.359668994778405, 48.81875295757038], [2.359630609838141, 48.81889102551711], [2.359615087880348, 48.81894125105127], [2.359619368839235, 48.8189556379889]]], "type": "Polygon"}, "properties": {"lassalle_jean": 25.0, "pecresse_valerie": 47, "zemmour_eric": 86.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 24.0, "date_tour": "2022-04-10", "id_bvote": "13-37", "circ_bv": "10", "num_bureau": 37, "roussel_fabien": 29.0, "nb_emargement": 1345.0, "nb_procuration": 54.0, "nb_vote_blanc": 22.0, "jadot_yannick": 70.0, "le_pen_marine": 105.0, "nb_exprime": 1318.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1786.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1345, "quartier_bv": "51", "geo_point_2d": [48.817866967134634, 2.3630837473569275], "melenchon_jean_luc": 568.0, "poutou_philippe": 11.0, "macron_emmanuel": 321.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347030400002883, 48.86567729401474], [2.347027669005305, 48.865696262474], [2.347051758842205, 48.86581024818223], [2.347074877020607, 48.86592073911743], [2.34707446392451, 48.865937601363996], [2.347082312366531, 48.86594581651969], [2.347090268411588, 48.86598384012088], [2.347120971200153, 48.86613427179795], [2.347152044430563, 48.866282787166064], [2.3471520992906703, 48.8662830869468], [2.347172680241169, 48.86640625641121], [2.347193372293642, 48.86653753764362], [2.347213953442353, 48.866660707072604], [2.347234647063037, 48.86679198827505], [2.347255557489555, 48.86692958313051], [2.347276249958758, 48.867060864286444], [2.347297161966329, 48.86719845910863], [2.347317854647182, 48.86732974022544], [2.34732263776545, 48.867372748603984], [2.347335547485745, 48.867385471857126], [2.347390429195616, 48.8673816575236], [2.347585311048046, 48.867338267258994], [2.347788659407546, 48.86729248739323], [2.347983540594689, 48.86724909647671], [2.348186888256138, 48.86720331593075], [2.348381768777986, 48.86715992436232], [2.34858511574138, 48.8671141431361], [2.348779995597927, 48.86707075091577], [2.348983341863258, 48.86702496900928], [2.349178221054497, 48.86698157613708], [2.349381566621759, 48.866935793550326], [2.34938169921403, 48.86693576459279], [2.349576577739737, 48.86689237106847], [2.349765113532337, 48.86685133502075], [2.34995999142292, 48.86680794086884], [2.350148527970952, 48.866766904221485], [2.350343405226301, 48.866723509442004], [2.350531939792491, 48.86668247307941], [2.350726816412506, 48.86663907767237], [2.350915350382302, 48.86659803980336], [2.351110226367174, 48.86655464376875], [2.351298761092377, 48.86651360530009], [2.3514936364419983, 48.86647020863788], [2.351682169196561, 48.86642916955475], [2.351877043910823, 48.86638577226494], [2.352065576046575, 48.86634473347405], [2.352260450125579, 48.86630133555668], [2.352448983028002, 48.86626029526682], [2.352534088752133, 48.86624257367389], [2.352529587978494, 48.86622191749063], [2.352485148814389, 48.86614268774798], [2.352425161458281, 48.8660315397959], [2.352353970277163, 48.865904614245856], [2.352293983463893, 48.86579346710344], [2.352222792938802, 48.86566654054882], [2.352162808042638, 48.86555539332411], [2.352091618151401, 48.86542846756347], [2.352031632457327, 48.86531731934244], [2.351991953570594, 48.865307679386085], [2.351933813018148, 48.86531505756649], [2.351694706021255, 48.86531861725501], [2.3514695617195303, 48.86532536115984], [2.351468054468949, 48.86532532871014], [2.351261831481893, 48.86531329661928], [2.351063801450438, 48.86530025726266], [2.350865771518118, 48.86528721757825], [2.350659547446639, 48.865275185341126], [2.350653188969106, 48.86527371099275], [2.350538381906231, 48.86522323559011], [2.350421069692675, 48.86517165827043], [2.350409671626334, 48.86517051359599], [2.350233315410871, 48.86520466577754], [2.350063273159482, 48.865238267413766], [2.34988691512448, 48.865272419075396], [2.349716872428516, 48.8653060202174], [2.34971554748096, 48.86530623515647], [2.349558723212733, 48.86532694654376], [2.349400317168768, 48.86534714279639], [2.349243492652072, 48.86536785376985], [2.3490850863614128, 48.8653880496045], [2.348928261585116, 48.86540876106345], [2.348769853684873, 48.86542895647274], [2.348768907154953, 48.86542910511028], [2.348579729258064, 48.865463516049324], [2.348390852326309, 48.86549847512961], [2.348201675279639, 48.86553288637567], [2.348012797842679, 48.86556784485716], [2.347823618942544, 48.86560225459681], [2.34763474100039, 48.86563721247947], [2.347445562950476, 48.86567162252611], [2.3472566845144, 48.8657065789107], [2.347248884165504, 48.865706493199575], [2.34717288073529, 48.865690601839724], [2.347087967247807, 48.865671481742865], [2.347030400002883, 48.86567729401474]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 52, "zemmour_eric": 47.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "2-10", "circ_bv": "01", "num_bureau": 10, "roussel_fabien": 18.0, "nb_emargement": 1125.0, "nb_procuration": 107.0, "nb_vote_blanc": 14.0, "jadot_yannick": 111.0, "le_pen_marine": 37.0, "nb_exprime": 1108.0, "nb_vote_nul": 3.0, "arr_bv": "02", "arthaud_nathalie": 3, "nb_inscrit": 1409.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1125, "quartier_bv": "08", "geo_point_2d": [48.86614790705705, 2.349528740189131], "melenchon_jean_luc": 309.0, "poutou_philippe": 5.0, "macron_emmanuel": 466.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.387454228794254, 48.88134607332557], [2.387433169397406, 48.88135537794015], [2.387337264041978, 48.881439155107564], [2.387217088555281, 48.88154432708537], [2.387096351366151, 48.88164979733411], [2.386976174917441, 48.88175496815067], [2.386855435388532, 48.881860438129294], [2.386735257967218, 48.88196560868393], [2.386614517462141, 48.88207107839939], [2.3864943390681113, 48.88217624869203], [2.386373597586755, 48.88228171814436], [2.386253418209502, 48.882386889074304], [2.386132677126002, 48.882492357371234], [2.386012496776114, 48.882597528039206], [2.385891753342173, 48.88270299696525], [2.385771572030345, 48.882808166471975], [2.385650827619993, 48.882913635134884], [2.385530645335513, 48.88301880437961], [2.385409899948844, 48.88312427277935], [2.385289718044652, 48.88322944266837], [2.38522399394302, 48.88328651820465], [2.385225961210087, 48.883300878858236], [2.385288241783694, 48.88331395738598], [2.3853591879124583, 48.88341625487193], [2.385451511965118, 48.883547324464075], [2.38552245736896, 48.88364962182461], [2.38561478224638, 48.88378069126302], [2.3856857282887702, 48.88388298850512], [2.385778055343736, 48.88401405869607], [2.385849002035496, 48.88411635492043], [2.385859174841352, 48.884121442426455], [2.386056597470961, 48.884142669077185], [2.386252460200761, 48.884164362248754], [2.386449883153387, 48.884185588250176], [2.386645746208336, 48.88420728077754], [2.386843169473481, 48.8842285070289], [2.387039032853676, 48.88425019891209], [2.387236456452311, 48.88427142361484], [2.387432318794248, 48.88429311484687], [2.38746144995788, 48.884296984396244], [2.387469253003431, 48.88427980673146], [2.387495445380316, 48.88421910945533], [2.387495483264947, 48.88421901881726], [2.387552479198104, 48.88408328829483], [2.387601275242448, 48.883965531979996], [2.387658270622333, 48.883829801375946], [2.387707064815787, 48.883712045883144], [2.387764059653189, 48.88357631429816], [2.387812854733493, 48.8834585587421], [2.387861649603595, 48.88334080225429], [2.387918643621216, 48.88320507144915], [2.387935987600483, 48.88319891699333], [2.387991882581961, 48.88321085979378], [2.388047871438282, 48.88322189472814], [2.388064972284742, 48.88321554205862], [2.388086151614875, 48.88316185081069], [2.388105333278897, 48.88311430343706], [2.388114264598141, 48.883108069986406], [2.388310504924108, 48.88306566227317], [2.388505440433237, 48.88302367745196], [2.388701680122641, 48.88298126909427], [2.388896615000498, 48.882939283632915], [2.389092854053331, 48.882896874630845], [2.389287786925909, 48.882854889421715], [2.389484025352714, 48.88281247887598], [2.389678958957465, 48.88277049303368], [2.389875196737146, 48.882728082742815], [2.390070129721146, 48.88268609536118], [2.390090641418031, 48.88268083087552], [2.390089906964945, 48.88266704675384], [2.390073328233179, 48.8825193000659], [2.390056665658911, 48.88236719389136], [2.390040087106275, 48.88221944805785], [2.390023424735569, 48.88206734093796], [2.390013209058936, 48.88205927768477], [2.389840447185444, 48.882030081132314], [2.389671355400868, 48.882001658473136], [2.389498593910074, 48.88197246142588], [2.38932950249926, 48.881944038282434], [2.389156741391273, 48.88191484074035], [2.388987651717552, 48.88188641711953], [2.388818560854427, 48.8818579941515], [2.38864580031834, 48.88182879586985], [2.388642183454967, 48.881827804328445], [2.388447842921344, 48.88175135371758], [2.388258735113137, 48.88167663644417], [2.388069627837094, 48.88160191976626], [2.387875288997483, 48.88152546731104], [2.387686182820392, 48.881450750017265], [2.387491846471418, 48.88137429693613], [2.387454228794254, 48.88134607332557]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 40, "zemmour_eric": 113.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-25", "circ_bv": "16", "num_bureau": 25, "roussel_fabien": 20.0, "nb_emargement": 1227.0, "nb_procuration": 71.0, "nb_vote_blanc": 13.0, "jadot_yannick": 117.0, "le_pen_marine": 50.0, "nb_exprime": 1210.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1622.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1226, "quartier_bv": "75", "geo_point_2d": [48.882816335152874, 2.38747501699791], "melenchon_jean_luc": 446.0, "poutou_philippe": 14.0, "macron_emmanuel": 362.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.289483442303964, 48.845050655168535], [2.289510851378823, 48.84504068928371], [2.289646577267245, 48.844987782391705], [2.289800913571469, 48.84492208980713], [2.289965675451305, 48.84485786371011], [2.290120012318869, 48.84479217161365], [2.29028477340699, 48.84472794417039], [2.29043910812506, 48.84466225164653], [2.290439690439893, 48.844662016768105], [2.290604450710343, 48.84459778977639], [2.290831413739742, 48.844511480407775], [2.290832191441389, 48.84451120621416], [2.290996950751373, 48.844446978673204], [2.291153596113239, 48.84439601166035], [2.291318354662968, 48.844331783670114], [2.291474998001861, 48.844280816223105], [2.291639755791337, 48.844216587783635], [2.291813505734089, 48.84414880048905], [2.2919782626890592, 48.844084571575785], [2.292152011751411, 48.8440167837816], [2.292316767871875, 48.843952554394555], [2.292422557111957, 48.84391128042852], [2.292435597735612, 48.84390662958516], [2.292445277105986, 48.843899045809735], [2.292513236020345, 48.84387253146875], [2.292666318397216, 48.843811972128364], [2.292840065655854, 48.84374418331831], [2.292993147263772, 48.84368362445207], [2.293099971028516, 48.84364194588588], [2.293113894319446, 48.843639718582914], [2.293126384865119, 48.843633721657966], [2.293193307482345, 48.84360761091666], [2.293378816817856, 48.84353508819055], [2.293552562226708, 48.8434672983289], [2.293738069188191, 48.84339477592787], [2.293911813662012, 48.843326985535946], [2.294097319624179, 48.843254462568716], [2.29427106316297, 48.843186671646514], [2.29445656812582, 48.843114148113116], [2.29463031072958, 48.843046356660636], [2.294815814693217, 48.84297383256108], [2.294989556361845, 48.84290604057833], [2.295047376129512, 48.84288468586583], [2.295013365617513, 48.84284251554206], [2.294946985439282, 48.842770654266886], [2.294857895443827, 48.84268126531201], [2.294854672181347, 48.84267900598686], [2.29469495076254, 48.84259998936322], [2.294537271334581, 48.84252215283911], [2.294377550889937, 48.84244313488137], [2.294219871048048, 48.84236529791993], [2.294060151553013, 48.84228628042657], [2.293902474034339, 48.8422084421446], [2.293742755501285, 48.84212942421638], [2.293585077556501, 48.84205158639639], [2.293427401457242, 48.84197374747191], [2.293267684363647, 48.84189472889279], [2.293110007850569, 48.84181688953097], [2.292950291718847, 48.841737870516994], [2.292792617504478, 48.84166003163326], [2.292632902346827, 48.84158101128512], [2.292475227718636, 48.841503171964085], [2.292315513510645, 48.8414241520804], [2.292157841205554, 48.841346311438855], [2.291998127959426, 48.84126729112032], [2.291991049883198, 48.84126195194225], [2.291972182591213, 48.841256651810475], [2.291812469901305, 48.84117763123775], [2.291660139946901, 48.841099810748936], [2.291500428210686, 48.84102078974852], [2.291348100543018, 48.84094296885944], [2.291312609747343, 48.84094594507339], [2.291274317710208, 48.84096664744725], [2.2912964655148143, 48.841079386945054], [2.291316735880571, 48.841185910553676], [2.291338885232454, 48.84129865002949], [2.291359154407826, 48.841405173601956], [2.291356222657905, 48.84141195546725], [2.291238058766715, 48.84150824790816], [2.291115595050999, 48.84160738553315], [2.290997430259948, 48.84170367861879], [2.290874966989705, 48.841802815988174], [2.290756799960884, 48.841899107911914], [2.29063433577375, 48.8419982450176], [2.290637645656525, 48.84201154292834], [2.290795051151992, 48.8420768314551], [2.2909522503337962, 48.84214249088444], [2.291109656618829, 48.842207778989604], [2.291266856579691, 48.842273438897095], [2.291424263666621, 48.84233872568136], [2.291581464418674, 48.84240438516777], [2.291738872295166, 48.842469671530395], [2.291896073838616, 48.84253533059568], [2.2919004972633292, 48.842547527931785], [2.291836466618742, 48.84261857224545], [2.291790280352606, 48.842667036496756], [2.291775067298218, 48.84267304504949], [2.291783133675845, 48.84269511023993], [2.291779981529904, 48.842817779799425], [2.291776398281345, 48.842937278319404], [2.291773246105006, 48.84305994785211], [2.291769662824254, 48.84317944634596], [2.291766079539392, 48.843298943927564], [2.291762927304672, 48.843421614319574], [2.291758510329406, 48.843428090598536], [2.291617028000106, 48.84351369742471], [2.2914761287514462, 48.84359897746522], [2.291334644131908, 48.84368458393626], [2.291193743946871, 48.843769864530394], [2.291052259774348, 48.843855469763135], [2.290911358665258, 48.84394075001165], [2.290769872202481, 48.84402635488923], [2.290628970169331, 48.84411163479204], [2.290487484129098, 48.84419724022995], [2.290346579821697, 48.844282518879744], [2.290205092853616, 48.844368123970504], [2.290064188972427, 48.84445340318204], [2.289922701088948, 48.84453900702646], [2.289781794921043, 48.84462428588424], [2.289778968671554, 48.84462669739648], [2.289669010799033, 48.844763409365925], [2.289558653825405, 48.84489986792757], [2.289554861149484, 48.84490280072388], [2.28950424594411, 48.844926799224226], [2.289446203937765, 48.84495582332242], [2.28941997041149, 48.84496332291689], [2.289418655719552, 48.84497229888222], [2.289436185608921, 48.84499321794559], [2.2894415234360412, 48.845001285490945], [2.289483442303964, 48.845050655168535]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 125, "zemmour_eric": 99.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "15-90", "circ_bv": "13", "num_bureau": 90, "roussel_fabien": 24.0, "nb_emargement": 1163.0, "nb_procuration": 67.0, "nb_vote_blanc": 8.0, "jadot_yannick": 88.0, "le_pen_marine": 65.0, "nb_exprime": 1154.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1402.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1166, "quartier_bv": "60", "geo_point_2d": [48.842833795603006, 2.2923918424263388], "melenchon_jean_luc": 172.0, "poutou_philippe": 3.0, "macron_emmanuel": 527.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.298116340505461, 48.87806936614475], [2.2980609092820092, 48.87808480384999], [2.297872851747132, 48.87811640998285], [2.2976866580329363, 48.87814770209377], [2.297498600043834, 48.87817930763693], [2.297312407243341, 48.878210599172], [2.297124348800022, 48.878242204125456], [2.2969381541864, 48.87827349506866], [2.29675009528887, 48.8783050994324], [2.2965639002134, 48.87833639069099], [2.29637584087381, 48.87836799356582], [2.296189645348637, 48.87839928424056], [2.296001586918282, 48.87843088653364], [2.295815390943414, 48.878462176624495], [2.295813577574767, 48.87846257245905], [2.29561952893266, 48.878515132184226], [2.295422254258125, 48.878568566550705], [2.295228204814018, 48.87862112653577], [2.29503092797308, 48.878674560244264], [2.294836879102466, 48.87872711959803], [2.294639601470838, 48.878780551757266], [2.294445550446962, 48.87883311046366], [2.294248273363528, 48.878886542880174], [2.294238075927538, 48.8788939625631], [2.294245149167899, 48.87890629102736], [2.29426384957379, 48.87893801032659], [2.294329135819946, 48.879048753020435], [2.29440938146821, 48.87918486963583], [2.294474668321088, 48.87929561312474], [2.294554914730071, 48.879431729612136], [2.294620202214046, 48.87954247209761], [2.294700449383759, 48.87967858845691], [2.294765737474579, 48.87978933173742], [2.294785583707838, 48.879811498613435], [2.294804373013839, 48.87980699479086], [2.294975885808642, 48.879875356378115], [2.295144902199191, 48.87994272453533], [2.295316414524503, 48.88001108561828], [2.295485433171557, 48.88007845239522], [2.29565694637868, 48.88014681388117], [2.295825965906807, 48.88021418016903], [2.295997480007808, 48.88028254115873], [2.296166500416911, 48.880349906957534], [2.296338015411995, 48.8804182674509], [2.296507035338593, 48.88048563275264], [2.296678552591035, 48.88055399275776], [2.296847573398605, 48.88062135757045], [2.297019090181649, 48.88068971707126], [2.297188113233679, 48.88075708140286], [2.297359630910705, 48.88082544040737], [2.297528654843609, 48.88089280424991], [2.297545188473128, 48.88089157024362], [2.29767353366653, 48.88080966699695], [2.297801973359773, 48.88072770300833], [2.297930317745503, 48.88064579947419], [2.298058757993856, 48.8805638352059], [2.298187101571915, 48.88048193138428], [2.298315541012001, 48.880399966828286], [2.298443883782394, 48.880318062719184], [2.298572322414214, 48.88023609787557], [2.298700664376947, 48.88015419347902], [2.298829100837141, 48.88007222833972], [2.298854776712221, 48.88006512646129], [2.298923173833395, 48.880100279209785], [2.299104743914999, 48.88019800581786], [2.299220536749246, 48.880257517410236], [2.299404727625164, 48.880352181352734], [2.299586299500716, 48.88044990630886], [2.299649490873129, 48.88046746501848], [2.299670444382576, 48.88044640191523], [2.299620687980218, 48.88032209587427], [2.29958281443934, 48.880206769051625], [2.299533059838551, 48.880082462955194], [2.299495186665982, 48.87996713607971], [2.299445432503277, 48.87984282991981], [2.299407559699012, 48.87972750299157], [2.299411292851237, 48.879719208664305], [2.299561268914151, 48.87962128411668], [2.299711988631846, 48.87952287268741], [2.299861962200537, 48.879424947737654], [2.300012682133114, 48.87932653681956], [2.300162654571052, 48.87922861147567], [2.300313372003916, 48.879130200153526], [2.300463344674553, 48.87903227442346], [2.300614060983137, 48.87893386180596], [2.3007640311475193, 48.87883593657306], [2.300914747683084, 48.87873752356745], [2.30095939703278, 48.878697428292035], [2.300967465356341, 48.878674034154706], [2.300872565617091, 48.878653136951534], [2.300794989236412, 48.878635706176226], [2.300782102012157, 48.878629761824875], [2.300746799406056, 48.87862629642525], [2.300623911149419, 48.87859868475828], [2.3004428153914542, 48.87856167650186], [2.300242351442277, 48.878516632486686], [2.300061256240651, 48.87847962365032], [2.299860792937301, 48.878434578992874], [2.29967969828013, 48.87839757047578], [2.299479235622508, 48.87835252517608], [2.2992981415338782, 48.87831551517988], [2.299117047702523, 48.878278504908444], [2.298916585977819, 48.87823345956098], [2.298735492703022, 48.87819644870965], [2.298535030272848, 48.87815140181267], [2.298353937554418, 48.8781143903814], [2.298153477121402, 48.878069343749424], [2.298116340505461, 48.87806936614475]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 148, "zemmour_eric": 212.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-66", "circ_bv": "04", "num_bureau": 66, "roussel_fabien": 8.0, "nb_emargement": 1378.0, "nb_procuration": 74.0, "nb_vote_blanc": 11.0, "jadot_yannick": 83.0, "le_pen_marine": 60.0, "nb_exprime": 1362.0, "nb_vote_nul": 5.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1763.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1378, "quartier_bv": "65", "geo_point_2d": [48.87931468624508, 2.2974736787009142], "melenchon_jean_luc": 168.0, "poutou_philippe": 3.0, "macron_emmanuel": 647.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291604429701444, 48.86910007338389], [2.291571672914416, 48.86909046514382], [2.291365410378523, 48.86910771852619], [2.291161578359062, 48.86912487532809], [2.290955315538854, 48.869142128902524], [2.290751481886498, 48.869159284997416], [2.290545218794214, 48.86917653786461], [2.290341386235238, 48.86919369326865], [2.290135122870989, 48.869210945428655], [2.28993128867914, 48.86922810012571], [2.289918193903654, 48.869224140858755], [2.289870315090187, 48.86917639556215], [2.28982399622052, 48.86912802995654], [2.289809993281863, 48.8691239897435], [2.289612309702553, 48.86914809187449], [2.289414271690686, 48.86917217898449], [2.289216587745309, 48.86919628046085], [2.289018548004078, 48.86922036690693], [2.288820865056026, 48.869244467736806], [2.288622824948626, 48.869268553527114], [2.28842514027144, 48.86929265369424], [2.288227099810163, 48.869316737929495], [2.288029416130227, 48.86934083745012], [2.287831375290512, 48.86936492192888], [2.287633689881457, 48.86938902078675], [2.287435650038786, 48.8694131046178], [2.287237964263809, 48.869437202821096], [2.2870399226918128, 48.86946128598822], [2.286842236550819, 48.86948538353687], [2.286644195975887, 48.869509466056336], [2.286446509469091, 48.86953356295039], [2.28624846716485, 48.869557644805916], [2.286050781655349, 48.86958174105344], [2.285852738985, 48.86960582225318], [2.285655051746418, 48.86962991783797], [2.285457008709969, 48.86965399838188], [2.285395908058532, 48.869651987801404], [2.285360615572673, 48.869661911831386], [2.285328041573706, 48.869790170184494], [2.285295981687972, 48.86991443128948], [2.285263923012386, 48.87003869238004], [2.285231348527486, 48.87016695156238], [2.285217982196793, 48.8702187541553], [2.2852165767119272, 48.87021954348262], [2.28520063690675, 48.87023485230299], [2.28516750352785, 48.87035891445607], [2.285148809402076, 48.87043137198351], [2.285116748694041, 48.870555632968404], [2.285083614923645, 48.87067969416297], [2.285051553907348, 48.870803955102474], [2.285018419811379, 48.8709280171504], [2.28498635849906, 48.87105227714523], [2.284953224089855, 48.8711763391472], [2.284921162456821, 48.871300599995934], [2.284888027746724, 48.87142466105271], [2.2848559658053142, 48.871548921856], [2.284822830781973, 48.87167298286686], [2.284790769895433, 48.871797243632926], [2.2847576345465, 48.87192130549709], [2.284725572000678, 48.87204556531032], [2.284692436338493, 48.87216962712855], [2.284660373471933, 48.87229388779565], [2.284627237508841, 48.872417948668684], [2.284606149985478, 48.872496900240314], [2.284574086711619, 48.872621160847494], [2.284559652753023, 48.87263883303959], [2.28466320649108, 48.87267608494109], [2.284871075487109, 48.872701610210115], [2.2850758258733013, 48.87272659756818], [2.285283693909835, 48.87275212211136], [2.285488444692519, 48.872777108762534], [2.285696314495998, 48.872802632596105], [2.285901064311888, 48.87282761853223], [2.286105815675163, 48.872852605024946], [2.286313684731589, 48.87287812687732], [2.286518436491337, 48.872903112663096], [2.286726307314779, 48.87292863380594], [2.286726376730113, 48.872928642313674], [2.286752292230287, 48.87292820047132], [2.286756962886722, 48.87291188991326], [2.286875020223472, 48.872814159166644], [2.287005744210577, 48.87270616308454], [2.287123800626571, 48.8726084311751], [2.287254523581456, 48.87250043480114], [2.28737257905219, 48.872402703527406], [2.287503300974967, 48.87229470686166], [2.287621356888113, 48.87219697443323], [2.287752076403335, 48.87208897836681], [2.287870131383436, 48.87199124567483], [2.288000849878872, 48.87188324841738], [2.288118903913643, 48.87178551636111], [2.288249621377007, 48.87167751881184], [2.28836767449104, 48.87157978559276], [2.288498392285478, 48.871471787759845], [2.288616443091067, 48.87137405516837], [2.288747159853447, 48.87126605704364], [2.288865209738211, 48.87116832328936], [2.288883312388376, 48.87116639202234], [2.289059598852615, 48.87124214784208], [2.289235307862092, 48.87131779743963], [2.289411595350659, 48.87139355273059], [2.289587304031091, 48.87146920089371], [2.289763593907226, 48.87154495566393], [2.289939303609578, 48.87162060330001], [2.290115593146899, 48.87169635753338], [2.290291305234322, 48.87177200465043], [2.2904675957959713, 48.871847758355], [2.290643307529922, 48.87192340583617], [2.290661145562227, 48.87192169846779], [2.290800538130887, 48.87181352294958], [2.290938142786712, 48.871705948225184], [2.291077532851752, 48.87159777145595], [2.291215136353331, 48.8714901972914], [2.291354526629012, 48.87138202018653], [2.291492128988597, 48.871274445682545], [2.2916315167484482, 48.871166268225906], [2.291769117966052, 48.871058693382544], [2.291789265192737, 48.87104895936263], [2.29178407917485, 48.871036021273746], [2.291784038816608, 48.87103598146377], [2.291667970666814, 48.87092274787392], [2.291551823879107, 48.87080901815208], [2.29143575673973, 48.870695784313796], [2.291319612340547, 48.870582053452075], [2.291203544848562, 48.87046881935732], [2.291087401450199, 48.87035508914619], [2.290971334968718, 48.87024185480297], [2.290855192595536, 48.87012812344391], [2.290739128487753, 48.87001488886037], [2.290622985752258, 48.8699011581438], [2.290623786610047, 48.86989040221052], [2.29074459088182, 48.86979404085781], [2.290869327380426, 48.86969380310773], [2.290990130729806, 48.86959744238938], [2.2911148662851533, 48.86949720436561], [2.291235668736633, 48.869400842482975], [2.291360403348827, 48.86930060418551], [2.291481204877838, 48.86920424293722], [2.291605938546789, 48.86910400436604], [2.291604429701444, 48.86910007338389]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 124, "zemmour_eric": 222.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-67", "circ_bv": "04", "num_bureau": 67, "roussel_fabien": 4.0, "nb_emargement": 1052.0, "nb_procuration": 55.0, "nb_vote_blanc": 6.0, "jadot_yannick": 20.0, "le_pen_marine": 56.0, "nb_exprime": 1043.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1384.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1053, "quartier_bv": "64", "geo_point_2d": [48.870836905780145, 2.2878859959232667], "melenchon_jean_luc": 77.0, "poutou_philippe": 2.0, "macron_emmanuel": 509.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.378360102696906, 48.87080356918667], [2.37836727464675, 48.870799259037625], [2.378406746954425, 48.87076823993739], [2.3785410300580923, 48.87066566270815], [2.378667256097433, 48.87056646997356], [2.378801536804725, 48.87046389242623], [2.3789277618697833, 48.87036469849952], [2.379062042896447, 48.870262121547604], [2.379188266976501, 48.87016292732807], [2.379217819035133, 48.87013946129412], [2.3792217009826713, 48.87013780236382], [2.379235762755034, 48.87012548781471], [2.379330854294625, 48.87004998061007], [2.379453011020257, 48.86995545055657], [2.379577653670423, 48.8698564770389], [2.379699809494404, 48.86976194671702], [2.379824451223342, 48.86966297202575], [2.379946606145778, 48.8695684414354], [2.3800712469319762, 48.8694694673691], [2.380193400952777, 48.86937493651039], [2.380318040807157, 48.869275962169745], [2.380440193936922, 48.8691814301433], [2.3805648328593882, 48.869082455528385], [2.380686985076835, 48.86898792413279], [2.38068726987199, 48.86898770526848], [2.380715653002164, 48.86896658636735], [2.380717237381531, 48.868965989310055], [2.380735902747029, 48.86895259490556], [2.380846389831526, 48.86887038328048], [2.380975776779045, 48.86877175294324], [2.381114644554864, 48.868668421175485], [2.381244031845435, 48.8685697914366], [2.38138289855064, 48.86846645933877], [2.381512283468497, 48.86836782928483], [2.381641669270155, 48.86826919819], [2.381780534385381, 48.86816586560274], [2.381909919166835, 48.868067235099204], [2.382048783211572, 48.86796390218184], [2.382178165620448, 48.8678652713633], [2.382317029957766, 48.86776193812291], [2.382446411367801, 48.86766330609711], [2.382585273260929, 48.86755997341887], [2.382714655024516, 48.86746134109211], [2.382853515847188, 48.86735800808383], [2.382897676369409, 48.867324343266304], [2.382904523226774, 48.867316333075394], [2.382853892630092, 48.86728535597195], [2.382678260712979, 48.8672343210352], [2.382476648166282, 48.86717555327117], [2.382301016988948, 48.86712451777576], [2.38209940529279, 48.86706574937044], [2.381923773502767, 48.86701471241009], [2.381722164020294, 48.866955943370506], [2.381546532959392, 48.86690490675083], [2.381344922964328, 48.866846137062936], [2.381228421569889, 48.866812281711375], [2.3812262057180202, 48.86680958302695], [2.381202304550666, 48.866805475379465], [2.381143175651017, 48.866788292640436], [2.380935769984052, 48.866727252028156], [2.380760140464607, 48.866676214244016], [2.38055273569279, 48.86661517296182], [2.380377106926476, 48.86656413461041], [2.380376484625064, 48.86656396321201], [2.380358803117511, 48.86656312701826], [2.38034815308518, 48.86657717623736], [2.380241035500541, 48.866687599322354], [2.380132341270015, 48.86679931098601], [2.3800252227818612, 48.8669097329564], [2.379916527625055, 48.86702144440164], [2.379809409575114, 48.867131867063065], [2.379700713492119, 48.867243578289866], [2.379593593175509, 48.86735399982962], [2.379484896166113, 48.867465710838], [2.379488120138131, 48.8674777292427], [2.379694658300174, 48.86758128050921], [2.379900738727768, 48.86768361492533], [2.379904737300848, 48.867694816231925], [2.379823783193178, 48.86780182919939], [2.379746342416125, 48.867903407615074], [2.379668901326351, 48.86800498687063], [2.37958794625229, 48.86811199964855], [2.379510504554264, 48.86821357788319], [2.379429548830646, 48.86832059053381], [2.379412105642537, 48.868324875378036], [2.379240097598501, 48.86827756580736], [2.37906903217351, 48.86823000096697], [2.378897026117492, 48.86818269090629], [2.378725961327938, 48.8681351246722], [2.378553954533708, 48.86808781410737], [2.378382890358249, 48.86804024827814], [2.378382613146495, 48.868040173991936], [2.378365911250734, 48.868040829203174], [2.378356906391211, 48.86805562783096], [2.378260578507378, 48.868181224766275], [2.378164740958251, 48.868306247683215], [2.378068412147555, 48.86843184443541], [2.377972573676141, 48.86855686717015], [2.377876243938772, 48.86868246373922], [2.377780404555697, 48.86880748539247], [2.377684563338756, 48.86893250784705], [2.377588232212326, 48.86905810414165], [2.377492391436251, 48.86918312642107], [2.377396059382916, 48.86930872253256], [2.377385111843259, 48.86932051706962], [2.377394486736127, 48.86933023282527], [2.377584383930542, 48.869415994805756], [2.377777555701871, 48.86950294893322], [2.377967455519702, 48.86958871029967], [2.378160627207763, 48.869675663788215], [2.378164884638838, 48.86968743126312], [2.37807853561885, 48.869790838196494], [2.377991217387708, 48.869895123172995], [2.377904866304727, 48.86999853085385], [2.377817548751608, 48.87010281479184], [2.377731196979674, 48.870206222328015], [2.377643878719981, 48.870310507018985], [2.3775575262696282, 48.87041391351113], [2.377470207314194, 48.87051819805586], [2.377476571059547, 48.870530754428486], [2.377685130813814, 48.87059232478601], [2.377884476004223, 48.87065222807476], [2.378093036726994, 48.870713797714814], [2.378292382851363, 48.87077370031765], [2.378360102696906, 48.87080356918667]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 29, "zemmour_eric": 42.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-32", "circ_bv": "06", "num_bureau": 32, "roussel_fabien": 32.0, "nb_emargement": 1457.0, "nb_procuration": 63.0, "nb_vote_blanc": 21.0, "jadot_yannick": 128.0, "le_pen_marine": 40.0, "nb_exprime": 1426.0, "nb_vote_nul": 10.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1934.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1457, "quartier_bv": "41", "geo_point_2d": [48.86853576565062, 2.3798437360940183], "melenchon_jean_luc": 761.0, "poutou_philippe": 10.0, "macron_emmanuel": 315.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.400726460523042, 48.8560225944138], [2.400720115136534, 48.85603311287806], [2.400625504825502, 48.856140796313966], [2.400531682500541, 48.856247360329625], [2.400437071411057, 48.85635504359577], [2.400343248304583, 48.8564616083424], [2.400249426177201, 48.85656817301209], [2.400154813921854, 48.85667585602394], [2.400060989660425, 48.856782420518506], [2.399966376626707, 48.8568901033606], [2.399966213728246, 48.85689028331243], [2.399865887079978, 48.85699889522042], [2.399765000672413, 48.85710779022018], [2.3996646731859, 48.8572164019382], [2.399563785926193, 48.85732529764628], [2.399463457601426, 48.857433909174325], [2.399362569500129, 48.85754280469142], [2.399322853104481, 48.85757271904093], [2.399336489935677, 48.857582959996684], [2.39945709810826, 48.85765124832387], [2.399598778864366, 48.857730922750946], [2.399756102072932, 48.85781999808602], [2.399897783755489, 48.85789967124769], [2.400055107974405, 48.85798874707541], [2.400196790572954, 48.858068419870946], [2.400338473594561, 48.85814809339227], [2.400495799327338, 48.858237167721434], [2.400637483265051, 48.85831684087664], [2.400794810018549, 48.85840591479915], [2.40093649487227, 48.85848558758822], [2.401093822646597, 48.85857466110406], [2.401235508426768, 48.85865433262773], [2.401337722447713, 48.85871220244972], [2.401350173137755, 48.8587161283227], [2.401390214995572, 48.85868229831298], [2.401515163167603, 48.85858145916153], [2.401640136630959, 48.85847944365575], [2.4017650838328253, 48.85837860422491], [2.401890056320279, 48.85827658843953], [2.401898262689258, 48.858273388215274], [2.402096474317768, 48.85825005593452], [2.402293414588735, 48.85822703894129], [2.402491625863965, 48.858203706005035], [2.402688567148082, 48.85818068836738], [2.4028867780699192, 48.85815735477563], [2.403083717641356, 48.858134336479914], [2.40309211918569, 48.85813098515805], [2.403200420372714, 48.85803864543355], [2.403308737362204, 48.857946558400165], [2.40341703778198, 48.857854218464276], [2.403525355378416, 48.85776213032699], [2.403633655030945, 48.85766979017971], [2.403741970487836, 48.857577702723574], [2.4037628459751432, 48.857565506387054], [2.403762395982243, 48.857561714301916], [2.403654815507961, 48.857491708259424], [2.4035153728865, 48.85740141863352], [2.403360137128078, 48.85730040273506], [2.403220695518939, 48.8572101136495], [2.403065462274968, 48.857109096458906], [2.402926020325657, 48.85701880700759], [2.402770788222946, 48.856917789417324], [2.40263134729614, 48.8568274996071], [2.40263129994687, 48.856827468792936], [2.402631230956968, 48.85682742348123], [2.4025337873196753, 48.8567646293689], [2.402433592712682, 48.856698816717895], [2.402336149543876, 48.85663602333665], [2.402235956796587, 48.856570210519415], [2.402234007434465, 48.85655907676211], [2.402265327217317, 48.856525947493054], [2.402293546314729, 48.85649602598601], [2.402298736798641, 48.85648624183774], [2.402287150711398, 48.85647732180264], [2.402145231480268, 48.85638820254133], [2.4020061461647852, 48.85630087077646], [2.401867059952778, 48.856213538836286], [2.401725142158633, 48.85612441905555], [2.40158605688862, 48.856037086774876], [2.401444140055594, 48.855947966646774], [2.401432526558526, 48.85594560802387], [2.401258157468726, 48.85596459145551], [2.401087087740743, 48.85598322871009], [2.400912719762151, 48.856002211644544], [2.400741649797441, 48.856020847505334], [2.400726460523042, 48.8560225944138]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 49, "zemmour_eric": 49.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-46", "circ_bv": "15", "num_bureau": 46, "roussel_fabien": 28.0, "nb_emargement": 1281.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 101.0, "le_pen_marine": 53.0, "nb_exprime": 1262.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 0, "nb_inscrit": 1643.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1281, "quartier_bv": "80", "geo_point_2d": [48.85734534904231, 2.401452699100269], "melenchon_jean_luc": 600.0, "poutou_philippe": 6.0, "macron_emmanuel": 324.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.383696277362706, 48.8585219333621], [2.383737785377929, 48.85854625501652], [2.38392047136175, 48.858592078472334], [2.384133182041007, 48.8586459182598], [2.384315868721917, 48.85869174110791], [2.384528580206008, 48.85874558108697], [2.384601505911982, 48.8587638720166], [2.384627537416029, 48.85876976709623], [2.384639553163324, 48.858753753067], [2.384705802167628, 48.85864700853012], [2.384772138756208, 48.858540672701345], [2.384838387207329, 48.85843392896989], [2.384904723254028, 48.8583275930472], [2.384970971173207, 48.858220848322574], [2.385037305315225, 48.85811451229897], [2.385103552681241, 48.85800776837973], [2.385169887644198, 48.85790143226923], [2.385170019537227, 48.85790122789575], [2.385245449926272, 48.85778986704703], [2.385322071065707, 48.85767516848457], [2.385397499439612, 48.85756380751032], [2.385474119911901, 48.857449108827154], [2.385549548996464, 48.85733774774142], [2.385626168801611, 48.85722304893753], [2.385643277519047, 48.857218220042], [2.385844415971141, 48.857266252429135], [2.386044731588992, 48.857314398966345], [2.386245870782552, 48.85736243067453], [2.386446187141126, 48.85741057653557], [2.386647327075942, 48.8574586075648], [2.386847644175233, 48.85750675274964], [2.386865126151209, 48.857501359004566], [2.386944967099115, 48.85735557915681], [2.387023750767733, 48.857211236376365], [2.387103590837945, 48.85706545548541], [2.387182373628454, 48.85692111256283], [2.387195079321629, 48.85691516728971], [2.387406156051429, 48.85691397359722], [2.3876081708913652, 48.85691252450864], [2.387810185730628, 48.85691107417969], [2.388021262429748, 48.85690987940221], [2.388223277236694, 48.85690842927523], [2.388434353915622, 48.8569072337691], [2.388467848124993, 48.85690699304336], [2.388482475503554, 48.856901271499666], [2.388481842439868, 48.85688681215063], [2.3885377685068763, 48.85676781925449], [2.388593379608323, 48.85664974474433], [2.3886493038033922, 48.85653075176372], [2.388704915751379, 48.856412678082776], [2.388760839447735, 48.856293684125376], [2.388816449527197, 48.85617561036043], [2.388872372714399, 48.85605661632543], [2.388927983650854, 48.85593854249043], [2.388983906329007, 48.85581954837795], [2.38903951539686, 48.855701474458954], [2.389095437565771, 48.85558248026894], [2.389151047490822, 48.85546440627985], [2.389162138891186, 48.855435213380645], [2.38915044315336, 48.855430160491224], [2.38900630927549, 48.85540803450304], [2.388809874646355, 48.85537799045154], [2.388609573800021, 48.85534724191701], [2.388462053262701, 48.85532467886866], [2.388444262763692, 48.85531718720376], [2.388427571121023, 48.855318373573986], [2.3883786574979182, 48.85531089190374], [2.388169064491175, 48.855276120908215], [2.387972630842005, 48.85524607547874], [2.387763039740329, 48.8552113028777], [2.3875666065696413, 48.85518125677996], [2.387370172252091, 48.85515121125124], [2.38716058193405, 48.85511643759196], [2.38709950997941, 48.8551142019836], [2.387090873337729, 48.85515255455973], [2.386993526938545, 48.85525131526295], [2.38687782424446, 48.85536424640029], [2.386780477045974, 48.85546300691137], [2.386664773420066, 48.855575937821214], [2.386567425422269, 48.855674698140156], [2.38645172086453, 48.85578762882249], [2.386354372067413, 48.8558863889493], [2.386354246556858, 48.8558865151138], [2.386238541066827, 48.85599944556846], [2.386120012357535, 48.856115394021835], [2.38600430585158, 48.85622832422676], [2.385885777463253, 48.85634427243122], [2.385885725050001, 48.85634432522378], [2.385785444938575, 48.85644368675815], [2.385666915573307, 48.85655963472337], [2.385566635993003, 48.85665899606213], [2.385448105651028, 48.8567749437881], [2.385347825228572, 48.856874305823524], [2.385229293909874, 48.85699025331027], [2.385129012666268, 48.85708961424376], [2.385128969908296, 48.857089657192724], [2.3850266872876222, 48.85719111312274], [2.384924851311339, 48.85729326195282], [2.384822567882801, 48.85739471858905], [2.38472073247129, 48.85749686723369], [2.384618448245699, 48.85759832367683], [2.384516610673173, 48.85770047212204], [2.384414325650314, 48.85780192837209], [2.384312488642555, 48.85790407663188], [2.384210202833256, 48.85800553178953], [2.384108363664458, 48.858107679849844], [2.384006078410158, 48.85820913572074], [2.383904238443213, 48.85831128358858], [2.383801951028917, 48.85841273925937], [2.383700110263813, 48.85851488693481], [2.383696277362706, 48.8585219333621]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 54, "zemmour_eric": 49.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-43", "circ_bv": "06", "num_bureau": 43, "roussel_fabien": 34.0, "nb_emargement": 1413.0, "nb_procuration": 86.0, "nb_vote_blanc": 18.0, "jadot_yannick": 156.0, "le_pen_marine": 87.0, "nb_exprime": 1389.0, "nb_vote_nul": 6.0, "arr_bv": "11", "arthaud_nathalie": 7, "nb_inscrit": 1802.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1413, "quartier_bv": "43", "geo_point_2d": [48.856616280195574, 2.3867572132074426], "melenchon_jean_luc": 556.0, "poutou_philippe": 6.0, "macron_emmanuel": 393.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.411636122114187, 48.86721187819719], [2.411611570887943, 48.86720632460886], [2.411564196444163, 48.86720347193597], [2.411362430072706, 48.86719132351796], [2.4111643160340073, 48.86717939597813], [2.410962549859227, 48.867167245986465], [2.410764437366804, 48.867155317791244], [2.410562671368376, 48.86714316802446], [2.410364557706122, 48.86713123826108], [2.410162791894224, 48.86711908782002], [2.409964679768086, 48.86710715830045], [2.409762914152915, 48.86709500628574], [2.409564800846791, 48.867083076097295], [2.409363036771127, 48.86707092431426], [2.409164923658367, 48.86705899256441], [2.408963158406119, 48.86704684010027], [2.408765046829484, 48.8670349085943], [2.408563281773913, 48.86702275455648], [2.408365169017423, 48.867010822381644], [2.408354065924949, 48.86701357073225], [2.408222822243633, 48.86710434405928], [2.4080861869627093, 48.86719760871848], [2.4079549423407283, 48.86728838263595], [2.407818306107718, 48.86738164607453], [2.4077988195468363, 48.86738172503], [2.40765190736243, 48.86728385609805], [2.4075032323704972, 48.86718509329965], [2.407356322659092, 48.86708722399421], [2.407207648788738, 48.86698846081107], [2.407060738813799, 48.866890592017974], [2.406912067438388, 48.866791827557606], [2.40676515857318, 48.866693958384325], [2.406616486946057, 48.86659519443177], [2.406469580564049, 48.86649732398577], [2.406320910058477, 48.86639855964851], [2.406312514767361, 48.866398273384874], [2.406295234951689, 48.8664090507773], [2.406232541848623, 48.86652055270544], [2.406171761703626, 48.866630081940706], [2.406109068070276, 48.86674158378189], [2.406048287407786, 48.866851112932544], [2.405985593254502, 48.86696261378751], [2.4059248120745123, 48.86707214285359], [2.405862117380575, 48.86718364452087], [2.405801335683079, 48.86729317350236], [2.405740555093141, 48.867402702448906], [2.405677859606984, 48.86751420398635], [2.405671402962656, 48.86752834548448], [2.405679454252825, 48.86753573844735], [2.405665971715496, 48.86764581605485], [2.40565265363592, 48.86775139148481], [2.405639170986142, 48.86786146906784], [2.405625851433947, 48.86796704446747], [2.405612368671617, 48.86807712202597], [2.405599050373135, 48.86818269740883], [2.405602683791671, 48.86818958998479], [2.40566300695938, 48.868232093627235], [2.405714748485307, 48.868268282652394], [2.405719919151784, 48.86827055846654], [2.405770112244108, 48.86828295591486], [2.405820864831883, 48.868294827309306], [2.405826171923459, 48.86829709480268], [2.405994747002584, 48.86841430301897], [2.406170025451721, 48.86853549412625], [2.406173794426992, 48.86854174522839], [2.406173629200447, 48.86856449043077], [2.40617479585136, 48.868587953615815], [2.406178469871913, 48.8685938049409], [2.40621570349184, 48.868620038945885], [2.406253319347001, 48.868646349479526], [2.4062546283813813, 48.86864715818138], [2.4064217731097672, 48.86873753954101], [2.40657961962752, 48.868823023537225], [2.406737465300141, 48.86890850731191], [2.4069046117047472, 48.86899888797594], [2.407062458443585, 48.86908437130843], [2.407229605976463, 48.86917475150423], [2.407387455144725, 48.869260234401295], [2.407529986176853, 48.86933730351561], [2.407559467515042, 48.869345254778224], [2.407572431468691, 48.86933116519686], [2.40756223138836, 48.86925794474076], [2.407553065825336, 48.86919553132405], [2.407555673514929, 48.86918931722897], [2.407666839106531, 48.86909012925156], [2.407776453534086, 48.86899256398551], [2.407887618295744, 48.86889337488611], [2.407997231895771, 48.86879580940051], [2.408106845085296, 48.86869824380599], [2.408218008579452, 48.86859905527258], [2.40832762094136, 48.86850148945846], [2.408438783605479, 48.86840229980313], [2.408548395139979, 48.86830473376948], [2.4086595583270283, 48.868205543898156], [2.408669818339504, 48.86820190910644], [2.408784297919407, 48.8681971172902], [2.408924040249863, 48.86819237368078], [2.408938372305505, 48.86820146480407], [2.408935609648741, 48.86835038939996], [2.408932402405773, 48.86849572342792], [2.408929639716235, 48.86864464798405], [2.408926432448697, 48.8687899810739], [2.4089236697265872, 48.86893890559024], [2.408920462414071, 48.869084239540506], [2.408919902824959, 48.869105682342315], [2.408951180185176, 48.869106256785976], [2.409153017455019, 48.869111561120796], [2.409358749205855, 48.86911641667838], [2.40956058654637, 48.86912172122511], [2.409766318385508, 48.86912657518285], [2.409968155806983, 48.86913187904228], [2.4101738877241132, 48.8691367322994], [2.410375725226438, 48.86914203547155], [2.410581457221647, 48.86914688802808], [2.41059555216602, 48.86913842903582], [2.410606679310447, 48.86901370278136], [2.410617734721431, 48.868889769373155], [2.410628861759629, 48.86876504308858], [2.410639917065065, 48.868641109650525], [2.410651042633855, 48.86851638332913], [2.410662099196927, 48.868392449867784], [2.410673224649324, 48.86826772441558], [2.410684279753847, 48.86814379001837], [2.4106954064632, 48.86801906454275], [2.410706461462178, 48.86789513011561], [2.410713342336528, 48.86788783709675], [2.410871438919652, 48.86782865029563], [2.411019178514009, 48.8677726229514], [2.411027495776024, 48.86777151272851], [2.411164498091801, 48.86778304451176], [2.411427809957861, 48.86780344245186], [2.411564812435967, 48.867814974675795], [2.411580140656921, 48.86780662864427], [2.411594492424803, 48.86765880325705], [2.411607267633579, 48.8675168247823], [2.41162161924454, 48.86736899935311], [2.411634392935107, 48.86722702173086], [2.411636122114187, 48.86721187819719]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 45, "zemmour_eric": 69.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-31", "circ_bv": "15", "num_bureau": 31, "roussel_fabien": 22.0, "nb_emargement": 1204.0, "nb_procuration": 33.0, "nb_vote_blanc": 11.0, "jadot_yannick": 89.0, "le_pen_marine": 96.0, "nb_exprime": 1191.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1645.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1204, "quartier_bv": "78", "geo_point_2d": [48.867928536324925, 2.408372633017654], "melenchon_jean_luc": 560.0, "poutou_philippe": 10.0, "macron_emmanuel": 247.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352043078785564, 48.84218421463849], [2.3520415603104, 48.84218338529544], [2.35202143375316, 48.842053319241295], [2.352001407304824, 48.841932086354774], [2.3519812809561103, 48.84180201936527], [2.3519612560601, 48.84168078645205], [2.351949468017139, 48.8416728432718], [2.351761556292463, 48.84165670865068], [2.3515761869550422, 48.84164113972344], [2.351388275460125, 48.84162500451553], [2.351202906335772, 48.841609435908765], [2.3510149950819192, 48.841593299214736], [2.350829626181833, 48.84157773002911], [2.350641715146759, 48.84156159364758], [2.350456346470943, 48.841546023883105], [2.3502684343143923, 48.841529886008075], [2.350083065862857, 48.84151431566473], [2.349895155287558, 48.841498178109596], [2.349709787060308, 48.841482607187416], [2.349668202400693, 48.84146448468708], [2.349641397136881, 48.84146776823343], [2.349655439604466, 48.84155336326173], [2.349676251632836, 48.84168282286393], [2.349699853161407, 48.841826675732726], [2.349720665409333, 48.841956135295476], [2.349736311414258, 48.84205803815048], [2.349757123845027, 48.8421874976801], [2.349772771364395, 48.84228939961734], [2.349772682121408, 48.84229174736892], [2.34974027887512, 48.84242762505994], [2.349708124697451, 48.84256416691078], [2.349675721113491, 48.842700044551094], [2.349643567949805, 48.84283658725797], [2.349611164028272, 48.84297246484765], [2.349579009176109, 48.843109006597146], [2.349546604916894, 48.843244884136155], [2.349514451078818, 48.843381426741644], [2.349482046481816, 48.843517304230005], [2.349449892317865, 48.8436538458855], [2.349417487383174, 48.84378972332317], [2.349385331508159, 48.843926265819874], [2.34935292623587, 48.84406214320685], [2.349320771397399, 48.844198684760954], [2.349288365787308, 48.8443345620973], [2.349256209237948, 48.84447110449259], [2.349268864925785, 48.84450277418834], [2.349303537278025, 48.8445029438938], [2.34947852930377, 48.84444807221705], [2.349623990860584, 48.84440233734316], [2.34962972951197, 48.844401517745105], [2.349793908747221, 48.8443644310499], [2.349988908181333, 48.8443206071954], [2.350153088279863, 48.844283519112665], [2.350348087098006, 48.84423969556885], [2.350512266686045, 48.84420260699051], [2.350707264910637, 48.84415878195875], [2.3508714439769802, 48.84412169378411], [2.35087146174565, 48.84412168938371], [2.351066460727978, 48.844077863770735], [2.351232006266133, 48.844040642213315], [2.351427003279609, 48.843996816002054], [2.35159254831402, 48.84395959304371], [2.351758094463309, 48.84392237076173], [2.351953090591779, 48.84387854368834], [2.352118634863597, 48.84384132089738], [2.352270369735313, 48.843807216741325], [2.352301841750719, 48.84379602370648], [2.352284147273374, 48.84376519941996], [2.352264019499986, 48.84363513359098], [2.352244550603707, 48.84350633131634], [2.352224423029108, 48.84337626545054], [2.352204954327387, 48.843247463139576], [2.352184826951575, 48.84311739723693], [2.352165358455585, 48.8429885939903], [2.3521452312785582, 48.84285852805086], [2.352125762965941, 48.84272972566725], [2.352105635987694, 48.84259965969092], [2.352086167869624, 48.842470857270975], [2.352066041090054, 48.84234079125781], [2.352046573166631, 48.842211988801544], [2.352043078785564, 48.84218421463849]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 78, "zemmour_eric": 95.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-13", "circ_bv": "02", "num_bureau": 13, "roussel_fabien": 21.0, "nb_emargement": 1045.0, "nb_procuration": 45.0, "nb_vote_blanc": 12.0, "jadot_yannick": 104.0, "le_pen_marine": 80.0, "nb_exprime": 1032.0, "nb_vote_nul": 1.0, "arr_bv": "05", "arthaud_nathalie": 4, "nb_inscrit": 1314.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "18", "geo_point_2d": [48.84293348682637, 2.350777385968138], "melenchon_jean_luc": 251.0, "poutou_philippe": 7.0, "macron_emmanuel": 348.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376398457101918, 48.86281064218306], [2.376334520768619, 48.86279019518554], [2.376166334452126, 48.86283220921905], [2.376008872090015, 48.862871767962574], [2.375840685258241, 48.86291378063606], [2.375683222402317, 48.86295333894819], [2.375670207011114, 48.86295213517922], [2.375505661355872, 48.86287092298749], [2.375343131655674, 48.86279032634183], [2.375178587021342, 48.86270911368857], [2.375016059705738, 48.862628515694766], [2.3748515147185, 48.86254730347216], [2.374688988413676, 48.86246670502243], [2.374524444458136, 48.86238549143895], [2.37436191915329, 48.86230489343256], [2.374199392999198, 48.86222429429319], [2.37403485193538, 48.86214308002595], [2.374016993531499, 48.862133162174544], [2.373997492623447, 48.86214230273519], [2.373873266994373, 48.86225349986219], [2.373751077641144, 48.86236296547718], [2.3736268509598712, 48.862474162326286], [2.373504660571457, 48.86258362766784], [2.373380432838079, 48.86269482423902], [2.373258240040523, 48.86280429019935], [2.373136048103225, 48.86291375513196], [2.373011818796001, 48.86302495128738], [2.372889625812565, 48.863134416845895], [2.372765395453206, 48.86324561272335], [2.372643200082228, 48.86335507710205], [2.372518968670722, 48.863466272701565], [2.3723967736274503, 48.86357573681396], [2.3722725411637873, 48.86368693213554], [2.372150345074333, 48.86379639687382], [2.372026111558399, 48.863907591917474], [2.372029859286102, 48.86392055403323], [2.372181087428803, 48.86398291739234], [2.372331783287397, 48.86404480021201], [2.372483013515248, 48.86410716318978], [2.372633710080946, 48.86416904652164], [2.372784941030996, 48.86423140911082], [2.372935638325562, 48.86429329115632], [2.373086869997604, 48.86435565335702], [2.373237567999491, 48.864417535914676], [2.373242117321901, 48.86442972694909], [2.373174719919659, 48.86450540532047], [2.373106716822309, 48.86458144561027], [2.373039317664019, 48.8646571238879], [2.37297131417109, 48.86473316409034], [2.372979388281012, 48.864746396150885], [2.373185427093116, 48.86478435027188], [2.3733884123606632, 48.86482165760894], [2.373594451757599, 48.864859611922554], [2.373797437611405, 48.86489691856339], [2.374003477603989, 48.86493487217024], [2.374206464043842, 48.864972178114805], [2.374412504642864, 48.865010130115685], [2.37461549030587, 48.865047435356864], [2.374678075128464, 48.865069245856915], [2.374691398775263, 48.865053101228945], [2.374715076166839, 48.86502441090822], [2.374714910812652, 48.86502353678297], [2.3748086609889603, 48.864900439827295], [2.374894013689464, 48.86478598297713], [2.37498776300419, 48.86466288675403], [2.375073114922003, 48.86454842975166], [2.375166863396941, 48.86442533246255], [2.375252214532072, 48.86431087530784], [2.375337565292167, 48.86419641808046], [2.375431312497915, 48.8640733214444], [2.375516662475344, 48.86395886406471], [2.375610408841322, 48.86383576636267], [2.375695759399043, 48.86372130883784], [2.375789504903599, 48.86359821186841], [2.375887333388165, 48.86347583489642], [2.375981077998253, 48.86335273774965], [2.376078906934904, 48.86323036060109], [2.376172650661402, 48.86310726237767], [2.376270478676233, 48.86298488594466], [2.3763642215084833, 48.86286178754391], [2.376396361942451, 48.8628215816772], [2.376398457101918, 48.86281064218306]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 51, "zemmour_eric": 55.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "11-25", "circ_bv": "07", "num_bureau": 25, "roussel_fabien": 20.0, "nb_emargement": 1392.0, "nb_procuration": 87.0, "nb_vote_blanc": 9.0, "jadot_yannick": 140.0, "le_pen_marine": 62.0, "nb_exprime": 1381.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1791.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1392, "quartier_bv": "42", "geo_point_2d": [48.863634000751304, 2.37418131156752], "melenchon_jean_luc": 483.0, "poutou_philippe": 11.0, "macron_emmanuel": 496.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.359574009618185, 48.83639121832262], [2.35956876177301, 48.83640074419822], [2.359588871692861, 48.83642684356837], [2.359597822236339, 48.83643996468447], [2.359600235200518, 48.83646656648158], [2.359622230160263, 48.836470311384545], [2.359779933656675, 48.836408100080575], [2.359938097683285, 48.8363435247975], [2.360095800430067, 48.83628131217067], [2.360253965042991, 48.8362167364699], [2.360411665655831, 48.83615452431162], [2.360569829492739, 48.836089948185865], [2.360727530718369, 48.83602773471209], [2.3608856924169332, 48.835963158154094], [2.361043392870963, 48.8359009451561], [2.361201553793618, 48.83583636817313], [2.361359253498099, 48.835774153852334], [2.361517415006956, 48.835709576451684], [2.361519007092193, 48.83570884207288], [2.361673755685924, 48.835625998984554], [2.361825059541852, 48.83554528230443], [2.361979807163726, 48.83546243880802], [2.362131108697677, 48.83538172262097], [2.362285856709805, 48.83529887872381], [2.362437157306209, 48.83521816123853], [2.362591904346383, 48.835135316933304], [2.3627432039830403, 48.83505459994842], [2.362897950051266, 48.83497175523513], [2.363049248750376, 48.834891036951994], [2.363203993846656, 48.834808191830696], [2.363355291586138, 48.83472747404796], [2.363510034348189, 48.83464462851131], [2.363661332512208, 48.83456390943765], [2.363679925711727, 48.834564818685415], [2.36381162257415, 48.83465940514798], [2.363942900043776, 48.83475434807242], [2.364074597862208, 48.834848934229406], [2.364205876288119, 48.8349438768492], [2.3643375750625673, 48.83503846270058], [2.364468854444769, 48.835133405015654], [2.364600554175239, 48.83522799056145], [2.36473183451374, 48.83532293257183], [2.364863535189283, 48.83541751871137], [2.364994816495048, 48.835512459517695], [2.365126518126633, 48.83560704535167], [2.365257800388708, 48.83570198585325], [2.365389502976343, 48.83579657138164], [2.365520786194736, 48.835891511578545], [2.365652489738427, 48.83598609680135], [2.365783773913144, 48.836081036693514], [2.365915478412901, 48.8361756216107], [2.366046763543951, 48.83627056119812], [2.36617846899978, 48.83636514580972], [2.366309755087168, 48.836460085092405], [2.366441461499078, 48.836554669398396], [2.366572748531885, 48.83664960927565], [2.366704455910809, 48.836744192376734], [2.366835743899976, 48.83683913194924], [2.366967452234991, 48.83693371474471], [2.367098741180526, 48.83702865401246], [2.367230450471638, 48.83712323650235], [2.367361740373546, 48.837218175465324], [2.367493450609852, 48.83731275854888], [2.367624741479055, 48.837407696307814], [2.367756452671478, 48.83750227908575], [2.367887744497065, 48.83759721653989], [2.368019456645612, 48.83769179901224], [2.368150749427592, 48.83778673616161], [2.368195621921522, 48.83779511423317], [2.3682143510468032, 48.837763890976426], [2.368241190142665, 48.837671341483066], [2.368274162171666, 48.83755861023762], [2.368310723696402, 48.83743253066437], [2.368343696786217, 48.837319799382854], [2.368380257986154, 48.837193718862125], [2.368413230763624, 48.83708098843668], [2.368449791627866, 48.836954907867764], [2.368486026883067, 48.83682555096505], [2.368522588754411, 48.83669947035227], [2.3685588236513873, 48.83657011339797], [2.368595383805146, 48.83644403272695], [2.368631618354901, 48.83631467482175], [2.368668179504762, 48.836188595006185], [2.368704413696301, 48.83605923704939], [2.368740973139595, 48.83593315627627], [2.368777206962037, 48.8358037991672], [2.368813767412325, 48.83567771835024], [2.368850000876562, 48.83554836118955], [2.368886559609413, 48.83542228031436], [2.368922794077662, 48.83529292310931], [2.3689595704629482, 48.83526440845074], [2.368946776500313, 48.835243584464386], [2.368940346124472, 48.83523311788265], [2.368889241423716, 48.835223171957686], [2.368709358690386, 48.835163509322534], [2.3685249791817, 48.83510204822004], [2.368345097283271, 48.8350423850306], [2.368160719994802, 48.834980923367134], [2.367980837568977, 48.83492125961626], [2.367796461138425, 48.83485979738467], [2.367616579547509, 48.834800133079554], [2.367432203974876, 48.834738670279826], [2.367252324570245, 48.834679006326944], [2.367067949866448, 48.83461754205979], [2.366888069934431, 48.83455787754545], [2.366703696077636, 48.83449641360946], [2.366523816991454, 48.834436747641554], [2.3663394439925822, 48.83437528313747], [2.366276060229913, 48.83435425826998], [2.366260010367139, 48.83434339250953], [2.366238200164946, 48.834340846855305], [2.366121705734385, 48.83430220516332], [2.365957460040153, 48.834247088336824], [2.365777582657533, 48.83418742213277], [2.36561333632654, 48.83413230482083], [2.36543346110701, 48.83407263720103], [2.36526921550164, 48.834017519410935], [2.3650893397098143, 48.83395785126029], [2.364925096192239, 48.833902732999206], [2.364745221190393, 48.83384306432493], [2.364580977035971, 48.83378794557849], [2.36453872756449, 48.833773930202916], [2.364537313156331, 48.83377250258553], [2.364500837869585, 48.833760896703495], [2.364363213196897, 48.833715242837], [2.364168648869787, 48.83365026268677], [2.363988776967248, 48.83359059286872], [2.363794212209766, 48.8335256120949], [2.363614341166045, 48.8334659417071], [2.363419777340562, 48.83340096031701], [2.363314270597487, 48.83336595919969], [2.363299232425847, 48.83335721822537], [2.363271452321499, 48.833355292287614], [2.363197090277205, 48.83333062242777], [2.363027667306055, 48.83327191782782], [2.362847798015052, 48.83321224627373], [2.362678377184235, 48.83315354118009], [2.362498507339266, 48.83309386908715], [2.362329087286531, 48.83303516349254], [2.362149218249852, 48.83297549086803], [2.362070917630632, 48.83294835840124], [2.362041947811175, 48.83293914093867], [2.361995564425045, 48.83297081574161], [2.362005269985006, 48.83311915461691], [2.36200532108623, 48.833222615619135], [2.362013095130961, 48.83323035388764], [2.362205043626238, 48.83329043916917], [2.362404307805847, 48.833355793865714], [2.362596257213936, 48.83341587851269], [2.36279552236351, 48.833481232550184], [2.362987474046671, 48.833541316569864], [2.363186740166106, 48.833606669948246], [2.363191019613159, 48.833620578985524], [2.363061623743854, 48.83372018488174], [2.362934472678023, 48.833817993058766], [2.362805074466211, 48.833917598652626], [2.362677923799762, 48.83401540654695], [2.3625485246077, 48.83411501184567], [2.362421371616077, 48.83421281944275], [2.362291972806036, 48.834312424453664], [2.362164818862511, 48.83441023086143], [2.362035419061204, 48.83450983647655], [2.361908264154768, 48.83460764259436], [2.361778863373085, 48.83470724791429], [2.36165170750373, 48.83480505374213], [2.361522305752882, 48.83490465786762], [2.3613951489095832, 48.83500246430474], [2.361265744816146, 48.835102068127874], [2.36113858837221, 48.835199874282296], [2.361011430099822, 48.83529767938638], [2.360882024529284, 48.835397283667426], [2.360754866656257, 48.83549508848876], [2.360625460116433, 48.835594691575345], [2.360498299907107, 48.83569249699871], [2.360368893749278, 48.83579209979742], [2.360241732576984, 48.835889904930774], [2.36011232543873, 48.835989507434356], [2.359985163303457, 48.8360873122777], [2.359855755184971, 48.836186914486085], [2.35972859209776, 48.83628471814011], [2.359599182987887, 48.83638432095266], [2.359574009618185, 48.83639121832262]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 41, "zemmour_eric": 64.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-4", "circ_bv": "09", "num_bureau": 4, "roussel_fabien": 19.0, "nb_emargement": 987.0, "nb_procuration": 55.0, "nb_vote_blanc": 5.0, "jadot_yannick": 59.0, "le_pen_marine": 78.0, "nb_exprime": 979.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1280.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 988, "quartier_bv": "49", "geo_point_2d": [48.835263939908224, 2.365383230141178], "melenchon_jean_luc": 385.0, "poutou_philippe": 5.0, "macron_emmanuel": 274.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376162978727478, 48.886759186191064], [2.376204006470681, 48.88672398454957], [2.376355796659564, 48.88665278702936], [2.376506595038409, 48.88658079004606], [2.37665838303242, 48.886509592125876], [2.3768091819311152, 48.88643759565847], [2.376960969104875, 48.886366396446164], [2.377111765806892, 48.88629439958118], [2.377263553513078, 48.88622319998313], [2.377414349382068, 48.88615120272769], [2.377566134893497, 48.886080002729685], [2.377716931293099, 48.88600800509089], [2.377720262751616, 48.886005727328225], [2.377834143729909, 48.88589284861669], [2.377946711757154, 48.88578207368245], [2.378059279294737, 48.88567129953053], [2.378173160170425, 48.88555842046931], [2.378285726742837, 48.88544764608192], [2.378399606649296, 48.8853347658831], [2.378512172256542, 48.88522399126031], [2.378626049808803, 48.88511111171532], [2.378630662864856, 48.88510827580071], [2.378836815211983, 48.88503096657754], [2.379039651087961, 48.88496184164664], [2.379104235332145, 48.884942556896334], [2.3790880270288, 48.88491325645004], [2.378905455803014, 48.88486494022652], [2.378731115709963, 48.884817905702626], [2.378548545160354, 48.884769588031396], [2.378374205708792, 48.88472255298373], [2.378191637177502, 48.8846742356705], [2.378017298367531, 48.88462720009907], [2.3778347291380912, 48.88457888223031], [2.377660390969714, 48.884531846135104], [2.377477822416582, 48.88448352681866], [2.37730348488981, 48.8844364901997], [2.377120916991287, 48.88438817123412], [2.3769465801061163, 48.88434113409141], [2.376764014236648, 48.884292814584576], [2.376589677993083, 48.88424577691812], [2.376415340711741, 48.88419873808939], [2.376232775834306, 48.884150417766236], [2.376225911223865, 48.88414984870178], [2.376002455486166, 48.8841693121614], [2.375782806917349, 48.88419116208118], [2.375563158164315, 48.88421301159753], [2.375339700533412, 48.88423247471131], [2.375120051420216, 48.88425432341396], [2.3748965948208243, 48.884273784807874], [2.374887871487685, 48.884276969644006], [2.374769520090089, 48.88437135202198], [2.374631846772537, 48.88448195792973], [2.374513494434239, 48.88457634093632], [2.374375818667259, 48.88468694652193], [2.374257465399044, 48.88478132925784], [2.374119788546421, 48.88489193452847], [2.37400143435909, 48.88498631609441], [2.3738637564207172, 48.88509692104998], [2.373745401292644, 48.885191303244525], [2.373607723632021, 48.885301907892234], [2.373489367574007, 48.8853962898161], [2.373460833505177, 48.88542624363534], [2.373476324905951, 48.885440981010504], [2.373530637066469, 48.885467669402885], [2.373695235714576, 48.88554834297139], [2.373855022439048, 48.885626859739354], [2.374019620729344, 48.88570753284315], [2.374179409805721, 48.885786048274696], [2.374344009101729, 48.88586672092086], [2.374503797781342, 48.88594523680024], [2.3746683994466, 48.88602590899593], [2.374828189114588, 48.886104423531755], [2.37499279178557, 48.886185095269816], [2.37515258242034, 48.88626361026063], [2.375317184744196, 48.88634428063465], [2.375476977720193, 48.88642279518834], [2.375641581038987, 48.88650346600396], [2.375801375003357, 48.88658197921408], [2.375965979327881, 48.886662649572095], [2.376125772895411, 48.886741163230056], [2.376162407613483, 48.88675916253102], [2.376162978727478, 48.886759186191064]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 40, "zemmour_eric": 78.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "19-62", "circ_bv": "17", "num_bureau": 62, "roussel_fabien": 17.0, "nb_emargement": 1164.0, "nb_procuration": 59.0, "nb_vote_blanc": 7.0, "jadot_yannick": 88.0, "le_pen_marine": 50.0, "nb_exprime": 1150.0, "nb_vote_nul": 8.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1612.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1165, "quartier_bv": "73", "geo_point_2d": [48.88531670632417, 2.3761550620316747], "melenchon_jean_luc": 578.0, "poutou_philippe": 6.0, "macron_emmanuel": 249.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.321003804424643, 48.82759052669807], [2.3210174528308922, 48.82759737200354], [2.321057653169396, 48.82763682388572], [2.32115619728242, 48.827731286394446], [2.321271440025934, 48.827840348740885], [2.321369983537302, 48.82793481194792], [2.321485228539945, 48.8280438740763], [2.32158377282338, 48.82813833709002], [2.321628386885376, 48.82818055869273], [2.321636419017082, 48.82819066378495], [2.321648080187948, 48.82819656958423], [2.3217187107105532, 48.82826340986379], [2.321829551847832, 48.82836335933999], [2.321944797397174, 48.82847242097612], [2.322014132198872, 48.82853494030372], [2.322021220228849, 48.82854118708435], [2.322072789972678, 48.828532635851154], [2.322247116205003, 48.8284566840274], [2.322410644167036, 48.82838552380436], [2.3225741716709702, 48.82831436425255], [2.322748495092564, 48.82823841077621], [2.322912021673809, 48.82816725075307], [2.323086345473399, 48.828091296782006], [2.32324987113216, 48.82802013628759], [2.32342419257385, 48.82794418270573], [2.3235877173216988, 48.827873020840755], [2.3237620391413882, 48.82779706676419], [2.323925562966648, 48.82772590442791], [2.324099882440125, 48.82764994984124], [2.324263405342697, 48.827578787033715], [2.324437725194171, 48.82750283195235], [2.324601247174258, 48.82743166867359], [2.324775564679531, 48.82735571308215], [2.324939085737038, 48.82728454933209], [2.325052696746392, 48.82723504489639], [2.3250538235542, 48.82723123429811], [2.325040429677782, 48.82721637473902], [2.324881077906741, 48.827147162151725], [2.324685108013989, 48.82706192701788], [2.324525758560463, 48.82699271305599], [2.324329789817612, 48.82690747822749], [2.32417044130786, 48.82683826378265], [2.324000406658098, 48.826764251690996], [2.323841057661311, 48.82669503679077], [2.3236710253200012, 48.8266210233297], [2.323511677186592, 48.82655180888109], [2.32334164441792, 48.826477794934604], [2.323182298521619, 48.82640858004595], [2.323012266687658, 48.82633456562173], [2.322852921666389, 48.82626535028541], [2.322682890767136, 48.82619133538342], [2.322523546620897, 48.826122119599404], [2.322353516656351, 48.82604810421967], [2.322194172023083, 48.82597888798024], [2.3220241443553, 48.825904872130515], [2.321864800597063, 48.82583565544337], [2.3216947725019272, 48.825761639108215], [2.32153543098077, 48.82569242198111], [2.321505012180214, 48.82566100407345], [2.321502281200369, 48.825660997572626], [2.321373019499537, 48.825710490836116], [2.321246326748561, 48.825764047544034], [2.321117063198921, 48.825813539619276], [2.320990371296664, 48.82586709605889], [2.320987280244772, 48.82586806602614], [2.320811804571524, 48.825907824011985], [2.320601349515577, 48.82595350149644], [2.320425874622541, 48.825993258920654], [2.320215418883612, 48.8260389357225], [2.320039942046781, 48.82607869256971], [2.319829485624878, 48.82612436868889], [2.319654009556434, 48.826164125873845], [2.319640179567349, 48.82617750010148], [2.319655032735942, 48.82621066375442], [2.319692241622613, 48.826250178283004], [2.319789135212602, 48.82635382612298], [2.319884141806617, 48.82645471643905], [2.319981034796165, 48.82655836409695], [2.320076042134259, 48.82665925424219], [2.320172937235788, 48.82676290263276], [2.3202679453295962, 48.82686379170786], [2.320268195342349, 48.82686404855226], [2.320372513821137, 48.82696642765763], [2.320489400272615, 48.82708164294373], [2.3205937196211748, 48.82718402183626], [2.320710607049445, 48.827299236883825], [2.320814927255967, 48.82740161646284], [2.320931815672655, 48.82751683037255], [2.320995936440431, 48.82757975784876], [2.321003804424643, 48.82759052669807]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 66, "zemmour_eric": 77.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-10", "circ_bv": "11", "num_bureau": 10, "roussel_fabien": 27.0, "nb_emargement": 1102.0, "nb_procuration": 41.0, "nb_vote_blanc": 9.0, "jadot_yannick": 86.0, "le_pen_marine": 83.0, "nb_exprime": 1086.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1429.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "55", "geo_point_2d": [48.827030166283016, 2.32217879754579], "melenchon_jean_luc": 346.0, "poutou_philippe": 10.0, "macron_emmanuel": 337.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.270086994232211, 48.846877040474276], [2.27010238169095, 48.84689980919791], [2.270149987788014, 48.84704221851763], [2.270193134107411, 48.84717674102601], [2.27023627929944, 48.84731126259499], [2.270283886125665, 48.84745367270816], [2.270276071716164, 48.84746384095169], [2.270099649111983, 48.84751511778861], [2.269919092209857, 48.84756820654235], [2.269742668901022, 48.84761948284804], [2.269562111286256, 48.84767257015879], [2.269556627954603, 48.847686068550985], [2.269695565773342, 48.84781238646039], [2.269832189654302, 48.847936907523916], [2.2699711274472, 48.848063225076544], [2.270107754019433, 48.84818774490633], [2.270112068197441, 48.84820439690787], [2.270145843789591, 48.84820854667669], [2.270363876267866, 48.848242366156484], [2.270589433465676, 48.848274471052775], [2.270807466507635, 48.848308289722205], [2.271033024276527, 48.848340392881035], [2.271042916409451, 48.84834603641636], [2.271106685047644, 48.84845867658288], [2.271171123058429, 48.84857336323953], [2.271234892251905, 48.84868600331477], [2.271299332175902, 48.84880069078656], [2.2713631005747033, 48.848913329862874], [2.271427541061957, 48.84902801724219], [2.271491310003476, 48.84914065712643], [2.271555751066567, 48.849255343513995], [2.271619521925947, 48.849367983315226], [2.271683962177078, 48.8494826705013], [2.271700759673226, 48.84948890012566], [2.27173703798455, 48.84947346840723], [2.271862765484622, 48.849387480891956], [2.27200908902029, 48.84928619175377], [2.272134815632096, 48.84920020303887], [2.272281139475797, 48.84909891355922], [2.272406865174422, 48.84901292544326], [2.2725531866008533, 48.84891163560557], [2.272678911398664, 48.84882564718928], [2.272825233145685, 48.84872435611085], [2.272950957042889, 48.84863836739426], [2.273097276360115, 48.84853707685707], [2.273222999356519, 48.84845108784013], [2.273226818156018, 48.8484447057561], [2.273224424878635, 48.84834135050905], [2.273232230324475, 48.84823671894931], [2.273237747336632, 48.84822992627651], [2.273389422734427, 48.848156031995295], [2.273548995664584, 48.848078253445614], [2.273700670179502, 48.84800435875975], [2.273860240805547, 48.84792658067535], [2.273863106073629, 48.847914002445535], [2.27375124066372, 48.84781407390883], [2.273640355977139, 48.84771313132888], [2.273528491412998, 48.84761320346515], [2.273417608960421, 48.84751225976957], [2.27330574525457, 48.84741233167957], [2.273194863660835, 48.84731138775933], [2.273194657378409, 48.847298234170246], [2.273176670200454, 48.84728764907549], [2.2730071907770952, 48.84723581412487], [2.272813671403866, 48.84717613693208], [2.272644192704103, 48.847124301462095], [2.272450674160636, 48.84706462367616], [2.272281196184575, 48.847012787686765], [2.272087678470874, 48.84695310930773], [2.271918201218617, 48.84690127279893], [2.271724684334684, 48.846841593826824], [2.271555206443538, 48.84678975679035], [2.27136169175187, 48.84673007723341], [2.271192214584436, 48.846678239677544], [2.270998700722638, 48.84661855952753], [2.270829224278918, 48.84656672145228], [2.270816245291125, 48.84656726650737], [2.270662677727297, 48.84663096075591], [2.270491583781553, 48.84670442658752], [2.270338015416758, 48.8467681204115], [2.270166920550451, 48.84684158666905], [2.270109091435256, 48.846865571652394], [2.270086994232211, 48.846877040474276]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 194, "zemmour_eric": 167.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "16-31", "circ_bv": "14", "num_bureau": 31, "roussel_fabien": 7.0, "nb_emargement": 1128.0, "nb_procuration": 68.0, "nb_vote_blanc": 7.0, "jadot_yannick": 43.0, "le_pen_marine": 73.0, "nb_exprime": 1118.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1417.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1129, "quartier_bv": "61", "geo_point_2d": [48.8478538787108, 2.2717151487195224], "melenchon_jean_luc": 80.0, "poutou_philippe": 0.0, "macron_emmanuel": 524.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37515814260252, 48.8474018569537], [2.37515598029721, 48.84737637588432], [2.375089626554904, 48.84729152397862], [2.374979306359755, 48.847141658985876], [2.374912953214741, 48.84705680606504], [2.374903659941071, 48.84705213211741], [2.374725993931937, 48.84702737344895], [2.374542499430163, 48.84700061175516], [2.374364833768251, 48.84697585254928], [2.374181340995856, 48.84694909030744], [2.374170686306773, 48.846940914279394], [2.374157426272927, 48.84681120530019], [2.374145082665351, 48.84668779659834], [2.374131824122134, 48.84655808759397], [2.374119480624334, 48.84643467976074], [2.374107137185095, 48.84631127191254], [2.37409387883211, 48.84618156286019], [2.374081535524144, 48.846058154082], [2.374068275936786, 48.84592844499022], [2.374081099688326, 48.84590508471161], [2.374062998575882, 48.845892352232035], [2.3740089285549892, 48.845886011251146], [2.373811831265455, 48.84586308581879], [2.37361438671657, 48.845839929805386], [2.373417291137352, 48.84581700372927], [2.373219846938458, 48.84579384706374], [2.373022750344501, 48.84577092032957], [2.372825306495506, 48.845747763011936], [2.372628211611984, 48.84572483563401], [2.372430768112796, 48.84570167766432], [2.372233672214655, 48.845678749628284], [2.372036229065383, 48.84565559100652], [2.371839133515115, 48.8456326623196], [2.371641692078348, 48.84560950305288], [2.371444596875958, 48.84558657371503], [2.371247154426547, 48.84556341378907], [2.371234646609215, 48.84556624938267], [2.371113149957023, 48.845654631058025], [2.37097107114635, 48.84575873489193], [2.370849573598431, 48.84584711628435], [2.370707493736496, 48.84595121978728], [2.370585995281983, 48.846039601796015], [2.370443914368775, 48.846143704967965], [2.370322416391873, 48.846232085801674], [2.370180334427388, 48.84633618864259], [2.370058834192249, 48.84642456918619], [2.369916751176476, 48.846528671696106], [2.369795250034707, 48.84661705285602], [2.369752477071936, 48.84664839229158], [2.369739275253223, 48.84668323220825], [2.369755582528949, 48.846693017686135], [2.369899162925082, 48.8466543623232], [2.36998909960556, 48.84663030778196], [2.370003430568987, 48.846632016480996], [2.370158667059802, 48.84672605044298], [2.37031634086883, 48.84682254057495], [2.370471578480905, 48.84691657501415], [2.370629252083109, 48.84701306471002], [2.37078449083828, 48.847107097827845], [2.370942165596168, 48.84720358709486], [2.371097405483478, 48.84729761979059], [2.37125508139726, 48.84739410862868], [2.371410322416613, 48.8474881409023], [2.371568000848826, 48.84758462931869], [2.371590333761062, 48.847580582602795], [2.371639974448521, 48.84746967204735], [2.371689590212953, 48.84735775944693], [2.371739230476925, 48.84724684882815], [2.371788845805231, 48.84713493706351], [2.371838485645725, 48.84702402638134], [2.371888100559592, 48.84691211365383], [2.371937739976611, 48.84680120290833], [2.371987355816971, 48.84668929102376], [2.372010511916514, 48.84668576388126], [2.37214373138332, 48.846782399328795], [2.372272833733808, 48.84687628706348], [2.372406054174064, 48.84697292220238], [2.372535156106604, 48.84706680963088], [2.372668377520312, 48.847163444461145], [2.37279748175994, 48.84725733159762], [2.372930704147112, 48.847353966119265], [2.373059809320505, 48.84744785385592], [2.373193032691967, 48.84754448716967], [2.373322137447323, 48.84763837460003], [2.373455361781445, 48.847735008504415], [2.373584468854845, 48.84782889474347], [2.373717694162452, 48.84792552833927], [2.373846800817817, 48.84801941427204], [2.373870566812814, 48.848037070698986], [2.373889976670057, 48.84803257566763], [2.374046222102916, 48.847955388478915], [2.374199979085533, 48.84787726802562], [2.374356223593601, 48.847800080421315], [2.374509979653393, 48.84772195955878], [2.374666223236571, 48.84764477153887], [2.374819977000023, 48.84756665115923], [2.374976221031834, 48.84748946183154], [2.375129973872377, 48.84741134104261], [2.37515814260252, 48.8474018569537]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 54, "zemmour_eric": 47.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "12-52", "circ_bv": "07", "num_bureau": 52, "roussel_fabien": 13.0, "nb_emargement": 1035.0, "nb_procuration": 71.0, "nb_vote_blanc": 12.0, "jadot_yannick": 102.0, "le_pen_marine": 42.0, "nb_exprime": 1020.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1248.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1035, "quartier_bv": "48", "geo_point_2d": [48.84665924676916, 2.3725525930141145], "melenchon_jean_luc": 292.0, "poutou_philippe": 8.0, "macron_emmanuel": 406.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.35489554894409, 48.83591008132773], [2.354895560690439, 48.835926305083376], [2.3549340303288933, 48.83605281163926], [2.35497166671144, 48.83617873987762], [2.355010136720899, 48.83630524638047], [2.355047773469574, 48.836431174566485], [2.355086243850045, 48.83655768101632], [2.355123879591384, 48.83668361004191], [2.355162350354095, 48.836810115539386], [2.3551999878239123, 48.836936044519945], [2.355238458946419, 48.837062550863706], [2.35527609543115, 48.83718847888523], [2.35531456692468, 48.83731498517595], [2.355352205137911, 48.837440913152435], [2.355390677002573, 48.837567419390155], [2.355428314219591, 48.83769334730691], [2.35542651866521, 48.83769983645089], [2.355365548776683, 48.83776457073077], [2.355295524500348, 48.83782815984888], [2.355284993199261, 48.8378818833761], [2.355304775596512, 48.83788697068713], [2.355383522494087, 48.83791226794601], [2.355576286992759, 48.837975352055466], [2.355748160756648, 48.83803056630344], [2.355940926134219, 48.83809364981862], [2.356112800674336, 48.8381488635368], [2.356305566930703, 48.83821194645768], [2.356477442236148, 48.8382671605454], [2.356670209371211, 48.83833024287199], [2.3568420868264752, 48.838385455537974], [2.356879922086128, 48.838397609731004], [2.356880167344967, 48.838397608351556], [2.356911104273371, 48.83834440903066], [2.35702350225649, 48.83824414941015], [2.357134391696559, 48.838145316058075], [2.357246788820871, 48.838045056209886], [2.357357677425198, 48.837946221733915], [2.357470073690711, 48.83784596165807], [2.357580962799295, 48.837747127864134], [2.357691850125095, 48.837648293951325], [2.357804245105413, 48.837548033534766], [2.357915131595278, 48.83744919849809], [2.358027525716817, 48.83734893785389], [2.358138412711055, 48.83725010349923], [2.358250805973822, 48.83714984262736], [2.3583616907589082, 48.837051008040824], [2.358474083162914, 48.836950746941305], [2.358584967112178, 48.836851911230895], [2.358697358657428, 48.83675164990375], [2.358703368759959, 48.83674861888375], [2.358848653351266, 48.83671153168954], [2.358998299226167, 48.836673080867264], [2.35914358339709, 48.836635993312356], [2.359293230188756, 48.83659754302512], [2.359295216188559, 48.83659690971652], [2.359449019575365, 48.83653727443251], [2.359585307052999, 48.83647180181407], [2.359585396034319, 48.8364717672152], [2.359600235200518, 48.83646656648158], [2.359597822236339, 48.83643996468447], [2.359588871692861, 48.83642684356837], [2.35956876177301, 48.83640074419822], [2.359574009618185, 48.83639121832262], [2.3595511882000553, 48.83637279761451], [2.359472022748061, 48.83627005454176], [2.359378311190892, 48.83614869754662], [2.35927903679195, 48.83601985491112], [2.359185326133884, 48.83589849773763], [2.359086052688454, 48.8357696549132], [2.358992342929478, 48.83564829756134], [2.358893069086399, 48.835519453641275], [2.358799360215341, 48.83539809701044], [2.35878265772339, 48.83537925025976], [2.358758729396256, 48.835382205013325], [2.358653145667418, 48.83546400211646], [2.35853937077282, 48.83555101919262], [2.358516565463668, 48.83554872941256], [2.358433953566196, 48.83542331020558], [2.358350986766323, 48.83529808958051], [2.358268375664457, 48.83517267023113], [2.358185408298861, 48.83504744945584], [2.358102799365965, 48.83492202907196], [2.35801983278607, 48.834796809053074], [2.357937224648755, 48.834671388526765], [2.357854258865522, 48.83454616836502], [2.357771651523778, 48.83442074769628], [2.357688686548173, 48.834295526492326], [2.3576660190154453, 48.834293159039156], [2.357577179790527, 48.834359198316605], [2.357488988119063, 48.834425625933704], [2.3574001484441123, 48.83449166507185], [2.357311957685126, 48.83455809255787], [2.357289205517344, 48.83455573087518], [2.357207200574593, 48.83443039938677], [2.357123228385491, 48.8343005721007], [2.357041224243098, 48.83417524046993], [2.356957254251764, 48.83404541214573], [2.356875249547651, 48.83392008036528], [2.356791280369607, 48.83379025279426], [2.356709277828203, 48.83366492087877], [2.356643860483125, 48.83356377670451], [2.356617542080424, 48.8335466343578], [2.3565982026215853, 48.83355037513014], [2.356494993477866, 48.83365371233597], [2.3563787012992172, 48.833768756284265], [2.356275492650265, 48.83387209328789], [2.356159199511116, 48.833987136100966], [2.356055989994662, 48.83409047289502], [2.35593969587279, 48.83420551637156], [2.355836485488822, 48.834308852956056], [2.355720190406438, 48.83442389529743], [2.355616979143832, 48.834527232571645], [2.355500683089914, 48.834642274677165], [2.355397470970793, 48.83474561084249], [2.355281173945232, 48.83486065271211], [2.355177959585148, 48.834963989559846], [2.355180977978793, 48.83497604297799], [2.355335946763621, 48.8350554894012], [2.355485146706118, 48.835132375507115], [2.355640117781591, 48.83521182153254], [2.355789318620193, 48.83528870724829], [2.355944289261711, 48.835368152861136], [2.356093490996317, 48.83544503818676], [2.35609484580686, 48.83544565075474], [2.356272624828938, 48.83551595162287], [2.356454228926006, 48.83558798609538], [2.356632007555786, 48.835658286413086], [2.356813612634375, 48.83573032123012], [2.356991393596596, 48.83580062101204], [2.357172999678703, 48.83587265437498], [2.3573507802488223, 48.83594295360651], [2.357532387312363, 48.83601498731392], [2.357710170214829, 48.83608528600964], [2.357891778271001, 48.836157319162275], [2.358069560781263, 48.83622761730757], [2.358251169840933, 48.83629964900609], [2.358256347064051, 48.83631137035235], [2.358190827738342, 48.836410301728364], [2.358100555509508, 48.83652984952069], [2.358084383099355, 48.83653443853939], [2.357887276161101, 48.836494696121584], [2.357689133695952, 48.836455538699276], [2.357492027357403, 48.83641579562732], [2.35729388548899, 48.83637663754758], [2.357096779750154, 48.83633689382153], [2.356898638478688, 48.83629773508425], [2.35670153335067, 48.83625798980482], [2.356503392664857, 48.83621883130939], [2.3563062894989, 48.83617908538318], [2.356108148058822, 48.836139925323636], [2.355911045481394, 48.836100179642614], [2.355712904638185, 48.83606101892564], [2.355515802660598, 48.83602127259053], [2.355317663776487, 48.83598211122338], [2.355120561036322, 48.83594236422688], [2.354922422749195, 48.83590320220225], [2.35489554894409, 48.83591008132773]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 37, "zemmour_eric": 78.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-7", "circ_bv": "09", "num_bureau": 7, "roussel_fabien": 34.0, "nb_emargement": 1253.0, "nb_procuration": 71.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 76.0, "nb_exprime": 1231.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1665.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1253, "quartier_bv": "49", "geo_point_2d": [48.836161966417926, 2.356963171059211], "melenchon_jean_luc": 454.0, "poutou_philippe": 7.0, "macron_emmanuel": 359.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339053792798781, 48.87594358301681], [2.33906686508871, 48.87597186918246], [2.339087040812426, 48.876031860206865], [2.339128193393223, 48.876143731944346], [2.339174553454359, 48.876281585452325], [2.339215707783716, 48.87639345714194], [2.339262068310274, 48.87653130968552], [2.339303221661645, 48.87664318131221], [2.339318957487404, 48.87667218900916], [2.339365519484728, 48.87667026238839], [2.339524702658742, 48.87665686829149], [2.33975820430897, 48.87663955629335], [2.339917387299548, 48.87662616077458], [2.340150890044966, 48.87660884801751], [2.3403100728293, 48.87659545287554], [2.34031065274747, 48.87659541739987], [2.340515831258148, 48.87658603557006], [2.340712418935308, 48.87657834719073], [2.340909006554325, 48.87657065848855], [2.341114184859679, 48.87656127563302], [2.341310772366421, 48.87655358537164], [2.341515950532135, 48.876544201827365], [2.34171253790364, 48.8765365118054], [2.341917715929708, 48.87652712757239], [2.342114303177546, 48.87651943689051], [2.342319481075312, 48.87651005106946], [2.342321575206181, 48.87651006167522], [2.342540273324619, 48.87651825802587], [2.34274002852684, 48.87652941221163], [2.342939783803272, 48.87654056696316], [2.343158482158421, 48.87654876128496], [2.343159499123002, 48.876548774959026], [2.343332878644353, 48.87654672687214], [2.3435293734614, 48.876542245787775], [2.343702751582983, 48.8765401971577], [2.343899246343672, 48.87653571546623], [2.344072625792349, 48.87653366630793], [2.344223141173595, 48.87653023258011], [2.344261940613009, 48.876536217955405], [2.344269087918095, 48.87653426237963], [2.34431506725492, 48.87653321289191], [2.344322449800312, 48.876534448545186], [2.344346715573894, 48.87653658427254], [2.34438213423256, 48.8765503231511], [2.344383588077732, 48.87655039946293], [2.344581967984694, 48.876553756591655], [2.344787213496206, 48.87655739199152], [2.344985593455813, 48.87656074845138], [2.3451908390230463, 48.87656438315918], [2.345389220398674, 48.87656773895762], [2.345594466032918, 48.87657137207413], [2.3457928460977833, 48.87657472719622], [2.345998091776424, 48.876578360519936], [2.346063506090334, 48.87659379343625], [2.346115444550245, 48.876591484363864], [2.346128094500193, 48.87658150788287], [2.346333338865656, 48.87658514062432], [2.346534240040525, 48.87658871333203], [2.346739485837269, 48.87659234448537], [2.346940387067782, 48.87659591651145], [2.347145632910051, 48.876599547867684], [2.347346534207469, 48.87660311831286], [2.34755178010633, 48.876606748972705], [2.347752681448101, 48.876610319635574], [2.347957927403648, 48.87661394959907], [2.348158828812391, 48.87661751868101], [2.34836407482461, 48.87662114794818], [2.348564976277597, 48.87662471724778], [2.348614986831003, 48.876622508117784], [2.348618135063789, 48.87660233876966], [2.348597774557991, 48.87656364110078], [2.348589513303225, 48.87655165657156], [2.348521644560923, 48.87655133760184], [2.348439682097648, 48.87650870729933], [2.348389974075188, 48.87648271124854], [2.348385397356209, 48.87647832096233], [2.3483238998943072, 48.87634791171755], [2.348257594908806, 48.87621404168748], [2.34819609943116, 48.876083633252456], [2.348129795110473, 48.875949763119515], [2.348068298912732, 48.87581935368092], [2.348001995257055, 48.87568548344511], [2.347988139731404, 48.875679302386544], [2.347821385942935, 48.87568654559464], [2.3476533852283312, 48.87569384472906], [2.347486631346853, 48.875701087470766], [2.347318631901794, 48.875708386142726], [2.347151877927111, 48.87571562841804], [2.346983877024882, 48.87572292661269], [2.346981840207564, 48.87572291460234], [2.346801036040035, 48.87571319110996], [2.346598933154441, 48.875701994892225], [2.346418129131019, 48.87569227082136], [2.346216027772175, 48.875681073964394], [2.346035222529507, 48.87567134930762], [2.345833121334265, 48.87566015180396], [2.345652317587782, 48.87565042747538], [2.345506803150533, 48.87564236443665], [2.345478336642737, 48.8756233335236], [2.345450870665176, 48.875626779791496], [2.345394282727626, 48.875623644646005], [2.345225952684747, 48.87565690870974], [2.345071908513055, 48.875686156917745], [2.344903576698898, 48.87571942051883], [2.344749533535869, 48.8757486674185], [2.344581201302589, 48.87578193146368], [2.344427157773658, 48.87581117794687], [2.344413821505052, 48.87580894380583], [2.344339571869868, 48.875760723036706], [2.3442697652167412, 48.875712981620566], [2.344261540750982, 48.87571029341898], [2.344064926379238, 48.87569507597125], [2.343876638107548, 48.87567968080032], [2.343688349958499, 48.87566428443376], [2.343491735927911, 48.875649066043955], [2.34330344662862, 48.875633669963364], [2.343106832826063, 48.87561845094098], [2.342918545114586, 48.875603054262044], [2.342721931539968, 48.87558783460708], [2.342719270548466, 48.875587801110235], [2.342515876858529, 48.87559817048588], [2.342310635838241, 48.875608847732], [2.342107241984765, 48.875619216413156], [2.34190200079778, 48.87562989295844], [2.341698606780778, 48.8756402609451], [2.341493365438476, 48.87565093589032], [2.341289971258063, 48.875661303182504], [2.341084729737617, 48.87567197832621], [2.340881335393698, 48.8756823449239], [2.340676095069948, 48.87569301937428], [2.340472699199173, 48.87570338526999], [2.34026745872016, 48.87571405812034], [2.340064062685904, 48.875724423321486], [2.339858822028861, 48.87573509637032], [2.339655425831131, 48.87574546087698], [2.339450185007457, 48.87575613322501], [2.3392467886462622, 48.87576649703718], [2.339041547667379, 48.8757771677851], [2.3390291428906282, 48.875787501022025], [2.339043776849104, 48.87585022872451], [2.339069962090019, 48.87592809038387], [2.339053792798781, 48.87594358301681]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 77, "zemmour_eric": 74.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "9-5", "circ_bv": "01", "num_bureau": 5, "roussel_fabien": 17.0, "nb_emargement": 1256.0, "nb_procuration": 106.0, "nb_vote_blanc": 11.0, "jadot_yannick": 117.0, "le_pen_marine": 45.0, "nb_exprime": 1242.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1523.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1256, "quartier_bv": "35", "geo_point_2d": [48.87612987634869, 2.3437045630758186], "melenchon_jean_luc": 277.0, "poutou_philippe": 3.0, "macron_emmanuel": 557.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.353354576214497, 48.89029098387023], [2.353337368974973, 48.89027802702005], [2.353360393048771, 48.89014963710544], [2.3533787011915033, 48.890043302803335], [2.353397009259459, 48.88993696848808], [2.353420031682827, 48.8898085776155], [2.353425694472735, 48.889802294039384], [2.353513460493081, 48.8897613207752], [2.353600936482613, 48.88971579530048], [2.353606101785714, 48.88970926531312], [2.353618584169805, 48.88956967035759], [2.353630954573598, 48.88943414691929], [2.353643436813946, 48.88929455282545], [2.353655807087796, 48.88915902935063], [2.353668178649704, 48.889023506764396], [2.353680660702985, 48.88888391171521], [2.3536930307824, 48.88874838818583], [2.3537055127031072, 48.88860879309907], [2.353705443641754, 48.88860721531032], [2.353688449519829, 48.88851175286472], [2.353674644151187, 48.88838243364002], [2.35368425806284, 48.88837633055246], [2.353681015734192, 48.888353750781626], [2.353680985703536, 48.888353313547505], [2.353677528871377, 48.88824781393359], [2.353673152222151, 48.88813808251525], [2.353669695409091, 48.88803258377968], [2.353665318805624, 48.88792285144032], [2.353663651115189, 48.88791877209086], [2.35362213373665, 48.88786609661053], [2.353552752322697, 48.887782445395594], [2.353510439422695, 48.887777276049924], [2.353491938305706, 48.88781905685201], [2.353498995605674, 48.88795098195088], [2.353500560343358, 48.888087251696156], [2.353507617701519, 48.888219176762284], [2.353509182469826, 48.88835544647422], [2.353493430329141, 48.88836439874292], [2.353312685951913, 48.88834568981344], [2.35313390278946, 48.88832599295426], [2.352953158674722, 48.88830728348142], [2.352774374416442, 48.888287586077396], [2.3525936305642, 48.8882688760612], [2.352414846573792, 48.888249178119665], [2.352234102984155, 48.888230467560135], [2.352055319261628, 48.88821076908111], [2.351874575945592, 48.888192057078975], [2.351695793854645, 48.88817235806982], [2.351682051538238, 48.88817638908401], [2.351641161144296, 48.888218623933675], [2.351590902492141, 48.88826933364229], [2.351536947790044, 48.888279538379365], [2.351532672877681, 48.8882982256931], [2.351554030749232, 48.888343014448914], [2.35156914027127, 48.88837189357145], [2.351569873688308, 48.88837443543933], [2.351578552566278, 48.88850586127329], [2.351590785744235, 48.888635951054916], [2.35159946472967, 48.888767375956775], [2.351611699373821, 48.888897466611965], [2.351620378455732, 48.88902889148101], [2.351632611861062, 48.88915898119643], [2.351632571080427, 48.88916017527878], [2.35161501395253, 48.88928939140236], [2.351595627169498, 48.88941757057236], [2.351578071226856, 48.889546786667644], [2.351558682882122, 48.88967496669348], [2.351541126760914, 48.88980418275301], [2.351521739604325, 48.88993236185097], [2.351504183304756, 48.890061577874775], [2.351484794586446, 48.890189757828516], [2.351467238108304, 48.890318973816626], [2.35144785057815, 48.89044715284246], [2.351447968323228, 48.890449524996654], [2.351480280542439, 48.89057725556461], [2.351519798690968, 48.890725298580634], [2.351552111257524, 48.89085302909708], [2.351591629819688, 48.891001072052205], [2.351609433839987, 48.891071447865535], [2.351620488600371, 48.89108243809732], [2.351678858656475, 48.891078001215455], [2.35183915700031, 48.891004695519605], [2.352000521329679, 48.890931067122374], [2.352160817404546, 48.89085776097873], [2.352322180823709, 48.89078413213821], [2.352482477357129, 48.89071082556155], [2.352643839866083, 48.8906371962777], [2.352804134130648, 48.89056388925328], [2.352965495740575, 48.89049025862687], [2.353125790463586, 48.89041695116942], [2.353287151152132, 48.890343320998966], [2.353337272335008, 48.89032039902915], [2.353354576214497, 48.89029098387023]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 16, "zemmour_eric": 35.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "18-68", "circ_bv": "17", "num_bureau": 68, "roussel_fabien": 13.0, "nb_emargement": 1027.0, "nb_procuration": 63.0, "nb_vote_blanc": 6.0, "jadot_yannick": 87.0, "le_pen_marine": 43.0, "nb_exprime": 1016.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1350.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1028, "quartier_bv": "71", "geo_point_2d": [48.889448816456365, 2.3525149819238287], "melenchon_jean_luc": 593.0, "poutou_philippe": 8.0, "macron_emmanuel": 188.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.365297658844149, 48.86541717152226], [2.365330098298347, 48.865418710551516], [2.365342787949257, 48.86540987165126], [2.36534873949558, 48.865401592384174], [2.365418643096814, 48.86528481194806], [2.36549380614037, 48.8651633845591], [2.365563710459664, 48.86504660402038], [2.365638872821407, 48.8649251765142], [2.365708776495979, 48.864808395865616], [2.365783936812843, 48.864686968234984], [2.365853839831655, 48.864570188375836], [2.365929000840751, 48.86444875973591], [2.365998903214757, 48.86433197976692], [2.366074063542067, 48.86421055100976], [2.3661439652712772, 48.864093770930936], [2.366219123553748, 48.86397234204935], [2.3662890246381743, 48.86385556186067], [2.366364183590998, 48.863734133768354], [2.366434084041582, 48.86361735257057], [2.366509242312646, 48.86349592436106], [2.366579140755415, 48.86337914304624], [2.366654298344733, 48.863257714719516], [2.366694558778695, 48.8631904517584], [2.366695542280765, 48.86317974127326], [2.366616269831988, 48.863167626681296], [2.366543701137783, 48.863129392781985], [2.366475439619336, 48.863093427300726], [2.366462443911668, 48.86309196362252], [2.366453236300161, 48.86309408319958], [2.366444080635512, 48.863096190460126], [2.366431151300017, 48.86309476130502], [2.366282135746757, 48.863017233050336], [2.366131046882579, 48.86293862430018], [2.365982032222511, 48.86286109566092], [2.365830942900935, 48.86278248651359], [2.365681930508028, 48.862704956597696], [2.365530842092082, 48.86262634706043], [2.365381830581307, 48.8625488176592], [2.365230743070983, 48.86247020773205], [2.365081732453485, 48.86239267794625], [2.364930645848782, 48.862314067629114], [2.364781636124456, 48.862236537458756], [2.36463055042537, 48.862157926751706], [2.364608641965757, 48.86216360671708], [2.36458059173493, 48.86228270020309], [2.364553225655877, 48.86239888702161], [2.364525173808675, 48.86251798046214], [2.364497807482342, 48.86263416724335], [2.364481492213431, 48.8626415811438], [2.364254421557253, 48.862609581535324], [2.364031329987103, 48.862578143145285], [2.363804259872939, 48.862546143580126], [2.363581170220094, 48.86251470345712], [2.363570064211847, 48.862516344159296], [2.363407934494315, 48.86259780702353], [2.363244064422699, 48.862680541072706], [2.363081933673445, 48.86276200438252], [2.362918062578757, 48.86284473707372], [2.362755930808768, 48.86292619992986], [2.362592058679812, 48.863008932162465], [2.362570523315342, 48.863011811381526], [2.36256739111036, 48.86302672382564], [2.362577175862297, 48.86309041269199], [2.362582827743088, 48.863146857802185], [2.362585903662195, 48.863151697371514], [2.362688741491609, 48.8632333704531], [2.362793632959777, 48.8633166758914], [2.362896470077362, 48.86339834877505], [2.363001362209856, 48.86348165401893], [2.363104199978856, 48.86356332671192], [2.363209092775683, 48.86364663176129], [2.363206983820592, 48.86365947397047], [2.363098398928118, 48.863715268863956], [2.362935637066064, 48.8637989013752], [2.362827051592377, 48.86385469601547], [2.36278069908804, 48.86387851388036], [2.362764268569242, 48.86388972575837], [2.36277898363359, 48.863902192575466], [2.362893239243386, 48.86400104342645], [2.36300837473961, 48.86410065518874], [2.363122631209028, 48.86419950670229], [2.363237767582475, 48.864299118226064], [2.363352024933311, 48.86439796860363], [2.363467160820915, 48.864497579881615], [2.363474430541425, 48.86450080582016], [2.363650341696995, 48.86453229378189], [2.3638264108385503, 48.8645638102025], [2.364002322419607, 48.86459529764509], [2.3641783919869273, 48.8646268135461], [2.364354303993463, 48.86465830046958], [2.364530375349823, 48.864689815858185], [2.364538150625514, 48.864693510275316], [2.364654576624737, 48.864808848640216], [2.364773656488664, 48.86492681535365], [2.364890082167603, 48.865042153457935], [2.365009163087242, 48.86516012081149], [2.365125591171978, 48.865275458669565], [2.365244671806072, 48.86539342485743], [2.365297658844149, 48.86541717152226]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 28, "zemmour_eric": 49.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "3-3", "circ_bv": "05", "num_bureau": 3, "roussel_fabien": 19.0, "nb_emargement": 966.0, "nb_procuration": 75.0, "nb_vote_blanc": 5.0, "jadot_yannick": 104.0, "le_pen_marine": 25.0, "nb_exprime": 956.0, "nb_vote_nul": 6.0, "arr_bv": "03", "arthaud_nathalie": 1, "nb_inscrit": 1278.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 967, "quartier_bv": "10", "geo_point_2d": [48.86364253635951, 2.3646622591031514], "melenchon_jean_luc": 222.0, "poutou_philippe": 4.0, "macron_emmanuel": 468.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.333660255123128, 48.86750790926318], [2.333670854284221, 48.867510669901144], [2.333853524284858, 48.86746994996665], [2.334048350535794, 48.86742458752731], [2.3342310199278993, 48.867383867912785], [2.33442584552817, 48.867338504855496], [2.334608514334827, 48.867297783762425], [2.334803339284424, 48.86725242008712], [2.334986007482652, 48.86721169931406], [2.335180833144708, 48.867166335028315], [2.335363500757466, 48.86712561277665], [2.335558324405699, 48.86708024786535], [2.3357409914101313, 48.867039525933684], [2.3358215315786133, 48.86702077190289], [2.335860769784214, 48.86701288475083], [2.335869510215408, 48.866997843153506], [2.335983792969659, 48.86697123160864], [2.336182002558481, 48.86692590515199], [2.336376826110175, 48.86688053890776], [2.336575035012047, 48.8668352117965], [2.336769857882283, 48.866789844908816], [2.336968066096996, 48.866744517142976], [2.337162888285769, 48.8666991496118], [2.337235805226841, 48.866682473964026], [2.337253120630074, 48.8666726105074], [2.337225433667806, 48.86664489408301], [2.337211556857025, 48.86662610277924], [2.337192746560636, 48.86660121177859], [2.3371758256093242, 48.8665967886266], [2.336972062813853, 48.86664642440533], [2.336767285357332, 48.8666961711292], [2.336563521783873, 48.86674580620796], [2.33635874354656, 48.866795552228325], [2.336154979195224, 48.86684518660706], [2.335950200165661, 48.86689493282331], [2.335932514179508, 48.866889248868006], [2.335874634303125, 48.86677063964119], [2.335819206142221, 48.8666564876392], [2.33576132815702, 48.86653787744092], [2.335705900492059, 48.86642372536242], [2.335650471695426, 48.866309574138185], [2.335592594479831, 48.866190963821104], [2.335591942939597, 48.86618796628485], [2.335595047729558, 48.866138843310765], [2.3355971437206122, 48.86608737194051], [2.335596892810932, 48.866085240898585], [2.335559907745123, 48.86596269946326], [2.335523478234393, 48.865840113421086], [2.335486493515202, 48.86571757193592], [2.335450064348638, 48.865594985844226], [2.335413078613172, 48.865472444301695], [2.335376649790673, 48.865349858160556], [2.335339665765011, 48.865227316575755], [2.33530323728667, 48.8651047303851], [2.3352662536077142, 48.864982188750474], [2.335229825473525, 48.86485960251034], [2.335192842152745, 48.86473705992663], [2.335156414351228, 48.86461447453631], [2.33515682633379, 48.864609963905274], [2.33521709391627, 48.8644876305432], [2.335279813701729, 48.864359832839405], [2.335340080706047, 48.86423749938781], [2.335402799888673, 48.86410970159067], [2.3353935413909452, 48.864098277938], [2.335244951389636, 48.86407055593257], [2.3351020592898513, 48.86404433942607], [2.334953469597592, 48.864016617057416], [2.334810579166972, 48.86399039930993], [2.334802925350994, 48.863986758482426], [2.334671376400001, 48.863855505925585], [2.33452347348319, 48.86371058752474], [2.3345263349875, 48.86369850451988], [2.334658355822006, 48.86362977028088], [2.334788720585645, 48.86356131987615], [2.334920740726434, 48.86349258533922], [2.3350511048020453, 48.86342413464018], [2.335183124248915, 48.863355399805265], [2.335313487636502, 48.86328694881198], [2.335318043551066, 48.863277301634554], [2.335267419010543, 48.86316716517363], [2.33521881000083, 48.86305975500521], [2.335168184518456, 48.8629496184731], [2.335119575916313, 48.86284220824329], [2.335097130579169, 48.86278180386074], [2.33508902766346, 48.86278185687093], [2.335022723161242, 48.86280327876856], [2.334840325454478, 48.862862033998695], [2.334662859438943, 48.862919369317176], [2.334480460908404, 48.862978124891995], [2.33430299410138, 48.86303545967083], [2.334120593395518, 48.86309421468346], [2.333943125797004, 48.86315154892264], [2.33376072564188, 48.86321030338825], [2.333583257251778, 48.86326763708781], [2.333400856295873, 48.863326390099495], [2.33322338710288, 48.86338372415869], [2.333040985334695, 48.863442476615774], [2.332863513998689, 48.86349980922847], [2.332686043623595, 48.863557142481895], [2.332503640642261, 48.8636158941108], [2.332326169487207, 48.86367322592529], [2.332143765682073, 48.86373197789887], [2.33196629373544, 48.863789309173676], [2.331783889118027, 48.86384806059265], [2.33160641501697, 48.86390539132019], [2.33142400958728, 48.86396414218448], [2.331358178416079, 48.863985408203604], [2.331349871743551, 48.863993674460204], [2.331385177859107, 48.8640406386606], [2.331463256037634, 48.86416028148841], [2.331544377550518, 48.86428296934954], [2.331622456457846, 48.86440261204733], [2.33170357734839, 48.864525300665335], [2.33178165699616, 48.86464494233379], [2.331862780001943, 48.864767630824666], [2.331940860378529, 48.864887272363106], [2.332021982773619, 48.86500996071157], [2.332100065230478, 48.86512960302685], [2.332181188389388, 48.865252290341274], [2.332259270212001, 48.86537193251887], [2.332340395474771, 48.86549462060547], [2.332418478037757, 48.86561426175373], [2.332499602689743, 48.86573694969789], [2.332577685981681, 48.8658565907161], [2.332658812748987, 48.865979278533125], [2.3327368967582682, 48.866098920320525], [2.332818022926317, 48.86622160709588], [2.332896107664471, 48.86634124875323], [2.332977235936557, 48.86646393630068], [2.3330553214150083, 48.866583576928676], [2.333136449076325, 48.86670626433373], [2.33319545159268, 48.86678513464266], [2.333196083712784, 48.86678612474551], [2.333214957677535, 48.866821447334615], [2.333296086096769, 48.86694413370584], [2.333358931887894, 48.86704208063394], [2.333440062352945, 48.86716476689065], [2.333502908680949, 48.86726271372363], [2.333584038465558, 48.86738539985072], [2.3336468853303423, 48.86748334658858], [2.333660255123128, 48.86750790926318]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 69, "zemmour_eric": 93.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "1-8", "circ_bv": "01", "num_bureau": 8, "roussel_fabien": 10.0, "nb_emargement": 750.0, "nb_procuration": 41.0, "nb_vote_blanc": 10.0, "jadot_yannick": 42.0, "le_pen_marine": 38.0, "nb_exprime": 738.0, "nb_vote_nul": 2.0, "arr_bv": "01", "arthaud_nathalie": 1, "nb_inscrit": 959.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 750, "quartier_bv": "03", "geo_point_2d": [48.865187854192285, 2.333897729210184], "melenchon_jean_luc": 111.0, "poutou_philippe": 3.0, "macron_emmanuel": 342.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.262102448924176, 48.8450665842468], [2.262129177525273, 48.84505837867379], [2.262319089477316, 48.845048820378764], [2.262512519809812, 48.84503858016502], [2.26270243299467, 48.84502902037044], [2.262895863178354, 48.84501877953672], [2.263085774845476, 48.84500922002433], [2.263279204893054, 48.84499897767137], [2.263469116417803, 48.8449894175503], [2.263662546303737, 48.844979175476645], [2.263674509881078, 48.8449676310575], [2.263619870520073, 48.84484719564732], [2.263566362798905, 48.84472817827467], [2.263511723938854, 48.844607742789286], [2.263458215360675, 48.84448872443503], [2.263403577001576, 48.844368288874385], [2.2633500689035, 48.844249271345504], [2.263295432407867, 48.844128835717974], [2.2632419248025952, 48.844009818115175], [2.263187287445373, 48.84388938240405], [2.263133780345716, 48.84377036382802], [2.26314284954896, 48.84375920723853], [2.263274443896273, 48.84373257522609], [2.2634982439886953, 48.84369189420029], [2.263629837997148, 48.84366526089604], [2.263645541412943, 48.84366925902486], [2.263741273274304, 48.84377541274234], [2.263837231251171, 48.843881117177666], [2.263932963904815, 48.84398726982229], [2.264028922660533, 48.84409297408378], [2.264124656081064, 48.844199127454154], [2.264220615615643, 48.844304831541784], [2.264316351190897, 48.8444109838477], [2.264412311504346, 48.84451668776153], [2.264508046484086, 48.84462284078475], [2.264604007576412, 48.84472854452473], [2.264699743348456, 48.84483469647511], [2.264795705219666, 48.844940400041224], [2.2648185187986822, 48.84494975068088], [2.264837559656677, 48.84494390577213], [2.264973312566341, 48.84486768105393], [2.26511376409443, 48.84478928428505], [2.265249516209947, 48.84471305834361], [2.265389966905863, 48.844634661239546], [2.265525719564515, 48.84455843588176], [2.265666169428362, 48.84448003844263], [2.265801919930432, 48.844403811853205], [2.265942368962012, 48.84432541407893], [2.265968905756256, 48.84432524144052], [2.2659856978187563, 48.84430876189319], [2.265991218138645, 48.84430689989239], [2.266179049734241, 48.84427616145108], [2.266362965584749, 48.8442446989926], [2.266550796749674, 48.844213959066614], [2.266734712156259, 48.84418249603489], [2.266922542865089, 48.84415175642287], [2.267106457827746, 48.8441202928179], [2.267294289468301, 48.84408955172953], [2.267478202624499, 48.84405808754299], [2.267486256711885, 48.844054233594676], [2.267587789090364, 48.84394962988207], [2.267688067405451, 48.84384493295911], [2.267789598971142, 48.84374032905558], [2.267889876478117, 48.84363563194386], [2.267991407231028, 48.84353102784945], [2.268091683929902, 48.84342633054892], [2.2681932138699388, 48.8433217262636], [2.268293489760719, 48.84321702877429], [2.268393766611123, 48.84311233119941], [2.268495293970789, 48.84300772661997], [2.268595570013106, 48.84290302885626], [2.268697096560028, 48.84279842408593], [2.268713411848068, 48.84278047885027], [2.26868719777123, 48.84276382774022], [2.268684344268996, 48.84276268068654], [2.268543994034833, 48.842720850876134], [2.268412913676837, 48.84268367876951], [2.268281834880826, 48.84264650562706], [2.268141485282657, 48.84260467534012], [2.2681288239632043, 48.84260517797404], [2.267966677786429, 48.84266993796884], [2.267805342737455, 48.842733768260956], [2.267643195758792, 48.842798527809876], [2.2674818599156, 48.84286235765842], [2.267319712147487, 48.84292711586214], [2.267158375510179, 48.84299094526704], [2.266996226927437, 48.84305570392413], [2.266834889495908, 48.84311953288544], [2.266672738748777, 48.843184291088264], [2.266511401885425, 48.84324811961428], [2.266349250336197, 48.84331287737122], [2.26618791267873, 48.843376705453615], [2.266180339160161, 48.84337797747408], [2.26598457432562, 48.84337258180628], [2.2657967066387448, 48.84336818941692], [2.265608840345939, 48.8433637967409], [2.265413075623937, 48.84335840013785], [2.265403187673353, 48.843355179931514], [2.265303963524924, 48.84327677324051], [2.265210879969089, 48.843196885139925], [2.265111656398649, 48.84311847917756], [2.265018573420399, 48.843038590916], [2.2650160133386, 48.843035483150295], [2.264958474728062, 48.84291272614841], [2.264901981918737, 48.8427922572343], [2.264844443857981, 48.842669499251514], [2.264787951563178, 48.84254903115657], [2.264730414039513, 48.84242627309221], [2.26467392227191, 48.8423058049172], [2.2646163866477, 48.842183046779574], [2.264559895419974, 48.842062577625136], [2.264502358957778, 48.841939820296886], [2.264445868257239, 48.84181935106235], [2.264389377805148, 48.84169888268747], [2.26433184215875, 48.84157612433784], [2.264325697943018, 48.8415565620836], [2.264305372741892, 48.8415515445009], [2.2641272118141202, 48.84153836381292], [2.263962175506601, 48.8415254407902], [2.263797137905865, 48.841512518430605], [2.263618977252733, 48.84149933608593], [2.263609809320889, 48.84150083196645], [2.263452640210009, 48.84157124033241], [2.263277127287386, 48.84165201140586], [2.263119958633569, 48.84172241933357], [2.262944444699116, 48.841803189008665], [2.262787275140008, 48.84187359648982], [2.262660915787774, 48.84193174456525], [2.262640083250054, 48.84193465783358], [2.262626426743275, 48.84194666481225], [2.262577271120096, 48.8419692849991], [2.262423717959929, 48.84203999579456], [2.262248201877082, 48.842120764425154], [2.262094647824186, 48.84219147478862], [2.261919130721273, 48.842272242925496], [2.261765575775644, 48.84234295285694], [2.261590057652662, 48.842423720500044], [2.261480538749221, 48.8424741521275], [2.261452328896747, 48.84249399168746], [2.261479199834668, 48.84251931120447], [2.261576050937796, 48.84263881499089], [2.26167449264391, 48.842769089479134], [2.261675462977914, 48.84277542524376], [2.261622180234736, 48.84290701436831], [2.261567508632087, 48.843037553410404], [2.2615142267108608, 48.843169142464404], [2.261459554562857, 48.843299681426494], [2.261406270738584, 48.84343127039303], [2.261351598045314, 48.84356180927512], [2.261298315055636, 48.84369339727182], [2.261243641816997, 48.843823936073896], [2.261244384636073, 48.84383007436845], [2.261324273423123, 48.84394532466186], [2.261405771647067, 48.844065778688396], [2.261485662514825, 48.844181028858124], [2.261567161467509, 48.844301483648515], [2.26164705305347, 48.844416733686124], [2.261728552760591, 48.844537187441844], [2.261808445064661, 48.844652437347285], [2.261889945500646, 48.844772891866874], [2.261969837160498, 48.84488814163179], [2.262051339713273, 48.845008595125115], [2.262078092419102, 48.84504718840547], [2.262102448924176, 48.8450665842468]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 190, "zemmour_eric": 168.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-38", "circ_bv": "14", "num_bureau": 38, "roussel_fabien": 12.0, "nb_emargement": 1265.0, "nb_procuration": 68.0, "nb_vote_blanc": 12.0, "jadot_yannick": 64.0, "le_pen_marine": 61.0, "nb_exprime": 1251.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1581.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1265, "quartier_bv": "61", "geo_point_2d": [48.84340530708204, 2.2641612673227], "melenchon_jean_luc": 118.0, "poutou_philippe": 2.0, "macron_emmanuel": 601.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.373061641202734, 48.828379050769165], [2.373042379212412, 48.82839144836472], [2.372939860905534, 48.82850083392003], [2.372836402840129, 48.8286115293325], [2.372733883668301, 48.828720914689775], [2.372630424728901, 48.828831609902345], [2.372527904681188, 48.82894099596092], [2.372424444867681, 48.82905169097359], [2.372321923965922, 48.82916107593481], [2.372218463278197, 48.82927177074755], [2.372115942873613, 48.82938115551791], [2.37201247994961, 48.82949185012357], [2.371909958680043, 48.82960123469587], [2.371806494871165, 48.829711930000954], [2.371788921215388, 48.82971528678073], [2.37166914208064, 48.829676633045835], [2.371546426350695, 48.829636834147514], [2.371533312908143, 48.82963756837731], [2.371519279614275, 48.82965381192367], [2.371493605673423, 48.82969212422001], [2.371454108105155, 48.82973911294182], [2.3714536276705243, 48.82974721195126], [2.37153800155532, 48.829869225124554], [2.37162131251895, 48.829991189468444], [2.371705685829, 48.830113202489706], [2.371788997563884, 48.830235167589606], [2.3718733730342763, 48.830357179573866], [2.37195668418929, 48.830479144523245], [2.372041060446918, 48.83060115636262], [2.372124373746332, 48.83072312117578], [2.372208749429121, 48.83084513286318], [2.372292063510761, 48.83096709753299], [2.372376441343103, 48.831089109082626], [2.372459756206983, 48.83121107360904], [2.3725441334537702, 48.83133308590601], [2.372627449110621, 48.831455049389774], [2.372630776716023, 48.83145802756934], [2.3727812867407, 48.831546608029456], [2.372940290452956, 48.831638296973736], [2.3729456214636713, 48.831656834844736], [2.372974774397852, 48.8316606670054], [2.373015529223083, 48.83166602325356], [2.373016096176936, 48.83166577620095], [2.373169947653726, 48.831602440505584], [2.373324484650698, 48.8315316830085], [2.373474362253916, 48.83146160600727], [2.373628899771615, 48.83139084901441], [2.3737787765607212, 48.83132077162291], [2.373933313247751, 48.83125001422784], [2.374083189222647, 48.831179936446055], [2.374237725089805, 48.831109177749454], [2.374387600250694, 48.83103909957744], [2.374542135276389, 48.830968341377925], [2.374546347862347, 48.830965235399745], [2.374636363746339, 48.8308608251957], [2.374725192341348, 48.830752587286014], [2.37481520749997, 48.83064817692757], [2.374904034010021, 48.83053993795811], [2.374994048443279, 48.830435527445246], [2.375082875581763, 48.83032728832955], [2.375172889289663, 48.83022287766227], [2.375261714332429, 48.8301146383861], [2.375351727314983, 48.83001022756443], [2.375440552986186, 48.82990198814196], [2.375530565243396, 48.82979757716595], [2.375619388808137, 48.82968933848234], [2.375615283351609, 48.82967771336795], [2.375434886062918, 48.82959340155553], [2.37529226014122, 48.8295263253455], [2.375149633224385, 48.82945924895424], [2.374969238806877, 48.82937493643014], [2.374826612719927, 48.829307859644594], [2.374646217997311, 48.82922354571551], [2.374546112621279, 48.82917646538546], [2.374511043894019, 48.829151484517155], [2.374502250633643, 48.82915252227034], [2.374459733502167, 48.829132526318084], [2.3744578055534022, 48.82913142619607], [2.374315418618712, 48.82903340985733], [2.374166207245314, 48.82893405893384], [2.3740238213979072, 48.82883604223073], [2.373874612507225, 48.828736690933084], [2.373732227747089, 48.82863867386553], [2.37358301861494, 48.82853932217949], [2.373440634941967, 48.82844130474757], [2.373291428292508, 48.82834195268733], [2.373270418024573, 48.828343300467495], [2.373227938576361, 48.82838541308588], [2.373186801372514, 48.828423174366485], [2.373168435432681, 48.82842551270605], [2.37311806379174, 48.82840437156045], [2.373082392469513, 48.82838564941823], [2.373061641202734, 48.828379050769165]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 55, "zemmour_eric": 84.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-27", "circ_bv": "09", "num_bureau": 27, "roussel_fabien": 37.0, "nb_emargement": 1451.0, "nb_procuration": 60.0, "nb_vote_blanc": 24.0, "jadot_yannick": 113.0, "le_pen_marine": 77.0, "nb_exprime": 1422.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1826.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1454, "quartier_bv": "50", "geo_point_2d": [48.83002147233658, 2.373452936300069], "melenchon_jean_luc": 548.0, "poutou_philippe": 14.0, "macron_emmanuel": 416.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294327533468581, 48.83294358921089], [2.294313830805521, 48.83295167199873], [2.294278262994268, 48.832958538427], [2.294234355576718, 48.83296667322018], [2.2942265385847183, 48.83298015550524], [2.294336695647159, 48.83309460170315], [2.29444309513073, 48.83320588320035], [2.294553254519921, 48.833320328284465], [2.294659654914347, 48.83343161046585], [2.29476981525599, 48.83354605532747], [2.294876215211303, 48.83365733728575], [2.294986376505406, 48.83377178192482], [2.295092778758079, 48.83388306277678], [2.295199181452876, 48.8339943444223], [2.295309342805958, 48.83410878872142], [2.295326756765869, 48.83412700113005], [2.295324695367848, 48.83413356341528], [2.295346186368095, 48.83414637031492], [2.2954351760939, 48.83423943932067], [2.295532857318459, 48.834342839294465], [2.295639260541196, 48.83445411959545], [2.29573694256071, 48.834557520282004], [2.295752186267317, 48.83456526821059], [2.295771583625639, 48.834557299741476], [2.295947839201556, 48.83450072613691], [2.296122111384215, 48.83444481513095], [2.296296383192931, 48.834388903868266], [2.296472636267734, 48.83433232947386], [2.296646907324527, 48.834276417694845], [2.296823161000738, 48.83421984278628], [2.296997431305503, 48.83416393049094], [2.297173682858784, 48.83410735505218], [2.29734795241142, 48.8340514422405], [2.297524204566201, 48.83399486628753], [2.297698472004645, 48.83393895295154], [2.297874723398556, 48.833882376476375], [2.298048991447229, 48.83382646263209], [2.298225240718112, 48.83376988562672], [2.298399508014751, 48.83371397126612], [2.298575757887221, 48.833657393746556], [2.2985932051438738, 48.83366065017154], [2.298685373712002, 48.83375617541574], [2.298778151811867, 48.833852797791984], [2.29887032242091, 48.83394832288528], [2.298963101217563, 48.834044944202155], [2.298982534207527, 48.83404744414111], [2.299078161308814, 48.83400227857251], [2.299158878191115, 48.83396404248111], [2.299177931443783, 48.83395496251447], [2.299174711841326, 48.83394374283832], [2.299053070844421, 48.83383167485859], [2.298944139269294, 48.833730473733645], [2.298835209479274, 48.833629272508304], [2.298713569946151, 48.83351720415182], [2.298604641049405, 48.833416002697206], [2.298495288062245, 48.83331445778127], [2.298386360013023, 48.83321325610955], [2.2982770092386122, 48.83311171098363], [2.298168082036702, 48.8330105090948], [2.2980587307505482, 48.8329089637429], [2.297949804408158, 48.83280776073768], [2.297840455334727, 48.83270621517587], [2.297731528465497, 48.83260501284484], [2.297622180242545, 48.83250346706506], [2.297610118540123, 48.83250234126348], [2.297593250997698, 48.83251058931294], [2.297390970416471, 48.832525303055114], [2.297192835113777, 48.832540429344334], [2.296990554303644, 48.83255514240894], [2.296792418771353, 48.8325702680345], [2.296590136370303, 48.83258498041346], [2.296392000608423, 48.83260010537532], [2.296189719340714, 48.832614817084746], [2.295991583349358, 48.832629941382834], [2.295989377909513, 48.83263023328968], [2.295816236856345, 48.832663660122996], [2.295612435606917, 48.832702409423256], [2.295439294072325, 48.83273583570879], [2.295235492260537, 48.83277458436427], [2.295062350244525, 48.832808010101985], [2.294858547870385, 48.83284675811268], [2.294685405372959, 48.832880183302606], [2.2944816024364743, 48.832918930668534], [2.294344027260697, 48.832945488873285], [2.294327533468581, 48.83294358921089]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 132, "zemmour_eric": 94.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-54", "circ_bv": "13", "num_bureau": 54, "roussel_fabien": 15.0, "nb_emargement": 1249.0, "nb_procuration": 79.0, "nb_vote_blanc": 12.0, "jadot_yannick": 125.0, "le_pen_marine": 76.0, "nb_exprime": 1230.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1550.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1247, "quartier_bv": "57", "geo_point_2d": [48.83341938160625, 2.2965325953340057], "melenchon_jean_luc": 263.0, "poutou_philippe": 7.0, "macron_emmanuel": 455.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.294458479574836, 48.884378342392495], [2.294408231727809, 48.88435716733533], [2.294312394339123, 48.88424297611117], [2.294217516892151, 48.88412992811281], [2.29412167897629, 48.88401573670437], [2.294026802345146, 48.883902689430755], [2.293930966629242, 48.88378849785411], [2.293836090826099, 48.88367545040603], [2.293740255958866, 48.88356125775383], [2.293645380983615, 48.88344821013129], [2.293549545576997, 48.88333401819409], [2.293454671429834, 48.88322097039706], [2.293358838235227, 48.883106777392435], [2.293263964916036, 48.88299372942093], [2.293260272178898, 48.88299091788405], [2.293104792114982, 48.882913184136505], [2.292949890854453, 48.88283573958577], [2.292794411717128, 48.88275800542419], [2.29263951002842, 48.88268055955363], [2.292484031817688, 48.882602824978036], [2.292329132403446, 48.88252537960232], [2.2921736551192993, 48.882447644612704], [2.29201875527699, 48.882370197917155], [2.2918638572464918, 48.882292751923124], [2.291708381351358, 48.88221501631286], [2.291688602409632, 48.882205675704625], [2.291672275761062, 48.88221751600094], [2.291650632987391, 48.88223552756384], [2.291624990453437, 48.882256867283054], [2.291605717467156, 48.88226566656868], [2.291605911634179, 48.88227274459424], [2.291473096078475, 48.88238327309479], [2.291343823231038, 48.88249085190297], [2.291211006562933, 48.88260138009091], [2.291081732644913, 48.882708957695506], [2.290948914864297, 48.88281948557077], [2.2908196412147452, 48.88292706377842], [2.290816726762363, 48.88293329959632], [2.290830245391958, 48.88305629278144], [2.290843616079769, 48.88317793786995], [2.2908571361998282, 48.88330093103277], [2.290870505662056, 48.88342257518392], [2.290884025909135, 48.88354556831632], [2.290897396860439, 48.88366721244549], [2.290910766510746, 48.88378885655163], [2.29092428694801, 48.883911849638565], [2.290925858129785, 48.88391543649813], [2.290996982508731, 48.884003258667725], [2.291068257323166, 48.88409126694035], [2.291069859851553, 48.88409525688497], [2.291074925530345, 48.88421678430264], [2.29107995051212, 48.884337296116804], [2.291085016238005, 48.884458823507316], [2.291090039902902, 48.88457933528649], [2.291095063603192, 48.884699846153], [2.291100130763307, 48.884821373510874], [2.291105154498057, 48.88494188524968], [2.291110221705172, 48.88506341258033], [2.291115245486725, 48.88518392429218], [2.291120311377336, 48.88530545158761], [2.291118212226606, 48.885315600731595], [2.2911308045007353, 48.885322116313844], [2.291287206439952, 48.88541799834575], [2.291441435645604, 48.88551254618247], [2.291595664047791, 48.88560709380435], [2.291752069062462, 48.885702975212226], [2.29190629859254, 48.88579752241762], [2.292062704751122, 48.88589340340312], [2.292216935409201, 48.88598795019199], [2.292373342711703, 48.886083830755105], [2.292418772564132, 48.88610265967479], [2.292454284138793, 48.88610764049358], [2.292589381993229, 48.886010647091354], [2.29271772727905, 48.88590785611179], [2.2928528241245862, 48.88581086239472], [2.292981168410194, 48.8857080702148], [2.293116264246633, 48.885611076182876], [2.293244606156212, 48.885508283693845], [2.293379700983767, 48.885411289347026], [2.293508043244549, 48.88530849656502], [2.293630507834885, 48.88520668431021], [2.2937588490963208, 48.8851038912402], [2.293881311351635, 48.88500207870188], [2.2940096516137363, 48.88489928534391], [2.294132114261032, 48.88479747253815], [2.294260453523807, 48.88469467889223], [2.29438291383611, 48.88459286580298], [2.29451125209957, 48.88449007186911], [2.294519192543918, 48.884457876629995], [2.294481255417309, 48.884448002330764], [2.294446038517778, 48.88442003415769], [2.294443025552731, 48.88441303487125], [2.2944473150460762, 48.88439295013759], [2.294458479574836, 48.884378342392495]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 144, "zemmour_eric": 143.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-56", "circ_bv": "04", "num_bureau": 56, "roussel_fabien": 5.0, "nb_emargement": 1262.0, "nb_procuration": 64.0, "nb_vote_blanc": 12.0, "jadot_yannick": 82.0, "le_pen_marine": 69.0, "nb_exprime": 1247.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1598.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1263, "quartier_bv": "65", "geo_point_2d": [48.884159829105734, 2.292403640208534], "melenchon_jean_luc": 149.0, "poutou_philippe": 3.0, "macron_emmanuel": 611.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.343071572268657, 48.87147071173339], [2.343039989746122, 48.87140032872314], [2.342999195267786, 48.871281531324634], [2.342950249330836, 48.87114395949362], [2.342909453905947, 48.87102516113021], [2.342860508446907, 48.8708875892306], [2.342819714779456, 48.870768791715804], [2.342770769809661, 48.870631218848295], [2.342729975184317, 48.870512421267854], [2.34268103069242, 48.870374848331714], [2.342640237835834, 48.870256050700675], [2.342591292447259, 48.87011847858766], [2.34253057733923, 48.86998571891401], [2.34253038041029, 48.86998522769131], [2.342476018010222, 48.8698637383382], [2.342415303492899, 48.86973097857544], [2.342360940263354, 48.869609489134604], [2.342300226335658, 48.869476729282944], [2.342245865003136, 48.86935523976938], [2.342185151665054, 48.86922247982879], [2.342130790866138, 48.86910099023506], [2.342070078117665, 48.86896823020555], [2.34201571648927, 48.868846740524134], [2.341955004330398, 48.86871398040573], [2.341900644598983, 48.86859249065158], [2.341900082179466, 48.86858942170097], [2.341904493820449, 48.86853405186006], [2.341895775478586, 48.86848423071378], [2.341895351655592, 48.86848281641573], [2.341840654406018, 48.86834890393033], [2.341786503607341, 48.868222474240696], [2.341731806910937, 48.868088561674064], [2.341677658010222, 48.867962131912925], [2.341622961866876, 48.867828219265], [2.341568813512313, 48.86770178852561], [2.341514665409218, 48.86757535864652], [2.341459970091068, 48.867441445877326], [2.341405821159606, 48.867315015911736], [2.341351126394598, 48.86718110306121], [2.341296979372417, 48.8670546721249], [2.341242285160543, 48.866920759193164], [2.341188138661748, 48.8667943290771], [2.3411334450029972, 48.86666041606412], [2.341079299038953, 48.86653398586907], [2.3410246045701992, 48.86640007276735], [2.341040248359989, 48.866384675788446], [2.341041143426298, 48.866378361024196], [2.341047672581298, 48.8663681642327], [2.341177421209887, 48.86632049379757], [2.341277183645212, 48.86628327674534], [2.341282251448198, 48.866279976163995], [2.341372694348231, 48.866181137722485], [2.341482961748429, 48.86605630211182], [2.34148237100267, 48.86604663540472], [2.341346360287512, 48.86591775196258], [2.341221044893861, 48.86578634519944], [2.341203584597329, 48.865749757277676], [2.3411867422059602, 48.86574698631921], [2.341174447450702, 48.86574496256572], [2.3411345045861722, 48.86576063500642], [2.340962385551638, 48.865801319826666], [2.340780293876952, 48.86584443346063], [2.340608174289026, 48.8658851177684], [2.340426082016906, 48.86592823175947], [2.3402539618867753, 48.86596891465552], [2.340071869028705, 48.86601202810444], [2.339899748345097, 48.866052710487985], [2.339766699384699, 48.866084211814595], [2.339735967554379, 48.866092515006045], [2.339751232874858, 48.866129911229145], [2.339814311136088, 48.86625890323158], [2.339880132885784, 48.86639474533299], [2.339943213161376, 48.86652373634488], [2.340009035570428, 48.866659579242175], [2.3400837801906142, 48.866805774164874], [2.3401496033339733, 48.866941616050944], [2.340215426820619, 48.86707745788416], [2.340290172619701, 48.86722365262272], [2.340290883680059, 48.86722670891446], [2.3402871715542553, 48.86734792177187], [2.340284385775909, 48.86748683700262], [2.340280673627735, 48.86760804893205], [2.340277887818251, 48.867746964130006], [2.340274175625032, 48.86786817693], [2.340271389784208, 48.868007092095105], [2.340267677557433, 48.86812830486639], [2.340264891685369, 48.868267219998735], [2.340261179424936, 48.868388432741284], [2.340258393521632, 48.86852734784076], [2.340254681238931, 48.86864855965532], [2.340251895304386, 48.86878747472198], [2.340248181613453, 48.868908687399546], [2.3402383695523, 48.8689171392935], [2.340064556254851, 48.86895057462269], [2.339892836640833, 48.86898347624513], [2.3397190229002582, 48.869016911070545], [2.339547302838022, 48.869049813094605], [2.3393734886543243, 48.869083247416235], [2.339201768166472, 48.8691161480433], [2.339027953539659, 48.869149581861166], [2.338856233966674, 48.86918248289732], [2.338855229859033, 48.86918264912529], [2.338854598352478, 48.869182781437665], [2.338815210959206, 48.8691882602997], [2.338757746145891, 48.869201299877815], [2.338749185571455, 48.869212519543495], [2.338807945746578, 48.86933489297861], [2.338869982867073, 48.869464727424536], [2.338928743621886, 48.869587099873165], [2.33899078270693, 48.86971693423442], [2.33904954403003, 48.86983930659579], [2.33911158371654, 48.86996914086476], [2.339170344244821, 48.87009151313144], [2.339232384532801, 48.870221347308174], [2.339291146981086, 48.87034372039441], [2.339346973702668, 48.87046046174709], [2.339405736701302, 48.87058283385127], [2.339461563935863, 48.87069957512524], [2.339520326098911, 48.87082194803847], [2.339576153846556, 48.87093868923374], [2.339634917923092, 48.87106106117245], [2.339690746183933, 48.87117780228904], [2.339749510788032, 48.87130017504427], [2.339805338198727, 48.87141691607459], [2.339864103353192, 48.87153928784783], [2.339919932640137, 48.87165602880696], [2.339978698333581, 48.871778400497426], [2.340034528133743, 48.87189514137783], [2.340033362352637, 48.87196745896276], [2.340058669922661, 48.871970365763715], [2.340065249237451, 48.8719703768561], [2.340258796174017, 48.87193897041953], [2.340439445226073, 48.87190889647092], [2.340632991708574, 48.87187748942755], [2.340813640331359, 48.87184741491257], [2.341007186359787, 48.87181600726239], [2.341187834553292, 48.871785932181], [2.341368481186407, 48.871755855919375], [2.341562026528603, 48.87172444826878], [2.3417426740955802, 48.87169437144828], [2.341936218983793, 48.8716629631909], [2.34211686612147, 48.871632885803955], [2.342310410555592, 48.871601476939816], [2.34249105726396, 48.871571398986525], [2.342684601243984, 48.871539989515576], [2.342865246159787, 48.87150991098841], [2.343058791048957, 48.871478500918165], [2.343071572268657, 48.87147071173339]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 64, "zemmour_eric": 103.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "2-1", "circ_bv": "01", "num_bureau": 1, "roussel_fabien": 16.0, "nb_emargement": 924.0, "nb_procuration": 70.0, "nb_vote_blanc": 9.0, "jadot_yannick": 79.0, "le_pen_marine": 49.0, "nb_exprime": 913.0, "nb_vote_nul": 2.0, "arr_bv": "02", "arthaud_nathalie": 1, "nb_inscrit": 1128.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 924, "quartier_bv": "06", "geo_point_2d": [48.86945299943515, 2.340922428534746], "melenchon_jean_luc": 162.0, "poutou_philippe": 2.0, "macron_emmanuel": 405.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.327556354793607, 48.89304537339333], [2.327559677663815, 48.89303995384155], [2.327746432511352, 48.893002008618126], [2.327941353454384, 48.892963580131465], [2.3281281077497162, 48.89292563431022], [2.328323026761415, 48.89288720519196], [2.328509781868447, 48.89284925878049], [2.328704700312416, 48.89281082903833], [2.328891453503625, 48.89277288202131], [2.329086372743762, 48.892734451662896], [2.32927312538285, 48.89269650404802], [2.329468042691538, 48.89265807305806], [2.329654796142199, 48.89262012485295], [2.329849712883339, 48.89258169323908], [2.330036464418064, 48.892543744428465], [2.330231381955245, 48.89250531219828], [2.330418132937931, 48.89246736278985], [2.330493398174274, 48.89245252209046], [2.330519272382751, 48.89244476528872], [2.330511932523956, 48.89240664777313], [2.330556791872121, 48.892269367629076], [2.330595684159211, 48.89215149388883], [2.330634574918082, 48.892033619216384], [2.330679434973728, 48.89189633988658], [2.330718325352418, 48.8917784651595], [2.330763183603643, 48.89164118575874], [2.330802074965931, 48.891523310984695], [2.330846932776526, 48.89138603152063], [2.330885823758535, 48.891268156691936], [2.330930681128503, 48.89113087716462], [2.330969570366682, 48.89101300227367], [2.330954652954514, 48.89100215940081], [2.330906071128152, 48.89100592592078], [2.330851835021289, 48.8910094656708], [2.330849155936596, 48.89100791375296], [2.33080049442363, 48.891010451306705], [2.330688005024208, 48.891017794217966], [2.33047717900521, 48.89103330079988], [2.330310451955673, 48.89104418380357], [2.330099625705817, 48.891059690619656], [2.3299328984929693, 48.89107057309748], [2.329919148586605, 48.891065357410724], [2.329890704156448, 48.89102426095057], [2.329860301682513, 48.890981651650655], [2.329845813224981, 48.890976599995504], [2.32959063370904, 48.891003449985654], [2.3293521145854292, 48.89102987293311], [2.329348205083366, 48.89102993107723], [2.329186827476169, 48.891017151551786], [2.328950953616647, 48.89099820047007], [2.32878957484164, 48.89098542040126], [2.328553702622613, 48.890966469443384], [2.3283923240550592, 48.89095368793962], [2.328386264518606, 48.89095411260941], [2.328200632901678, 48.890996196660325], [2.328014824342808, 48.89103791250584], [2.327829193490672, 48.891079995985386], [2.327643382959801, 48.89112171214294], [2.327457751508598, 48.89116379504347], [2.327271940392713, 48.89120550972221], [2.327086308342654, 48.891247592043726], [2.326900497982292, 48.89128930704985], [2.326850767885342, 48.89129808550609], [2.326846137937533, 48.89130998273349], [2.32685861502804, 48.89134664372127], [2.326898823132281, 48.8914678145942], [2.326943566781413, 48.89159928212378], [2.326956770044336, 48.89163907232689], [2.326954827597477, 48.89165175807972], [2.326965247484257, 48.891663887385526], [2.326992252744486, 48.89174526799516], [2.32704077576726, 48.891884149143486], [2.327080984710398, 48.89200531989591], [2.327129506836789, 48.89214420186692], [2.32716971618735, 48.89226537256078], [2.327218238804387, 48.89240425356366], [2.327258448562274, 48.892525424199], [2.327306973010526, 48.89266430603989], [2.327347183175747, 48.89278547661673], [2.327354396874118, 48.89280721422887], [2.327353764718052, 48.8928085335836], [2.327361436780293, 48.89282751914012], [2.327394432108318, 48.89292695116716], [2.327433723865451, 48.89304301915772], [2.327465192460444, 48.893066174518054], [2.32749793365377, 48.893058703350036], [2.327556354793607, 48.89304537339333]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 53, "zemmour_eric": 68.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "18-33", "circ_bv": "18", "num_bureau": 33, "roussel_fabien": 22.0, "nb_emargement": 1301.0, "nb_procuration": 83.0, "nb_vote_blanc": 18.0, "jadot_yannick": 126.0, "le_pen_marine": 72.0, "nb_exprime": 1279.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1682.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1301, "quartier_bv": "69", "geo_point_2d": [48.89187328634454, 2.328831670741358], "melenchon_jean_luc": 407.0, "poutou_philippe": 6.0, "macron_emmanuel": 476.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3862948844937533, 48.85286993782607], [2.3863205499911633, 48.85287034106659], [2.386504717780552, 48.85291462881276], [2.386682194346844, 48.85295729821746], [2.386866362751033, 48.8530015854036], [2.387043839909627, 48.85304425426853], [2.387221317358974, 48.853086922868606], [2.3874054866793992, 48.85313120921973], [2.387582964721041, 48.853173877280064], [2.387767136018932, 48.853218163078104], [2.387782729133772, 48.85322922303459], [2.38779609507937, 48.85322894067479], [2.387916037933591, 48.85316053452801], [2.38805588957002, 48.85308115097751], [2.388210741417606, 48.85299283426074], [2.38835059215499, 48.85291345035384], [2.38850544435695, 48.85282513414866], [2.388645294195193, 48.852745749885294], [2.388664152683765, 48.85274124426049], [2.38866855862519, 48.85273346759969], [2.388785818974627, 48.85265746982427], [2.3888961095792682, 48.85258506881301], [2.389013370636199, 48.85250906991209], [2.389123660600139, 48.852436669580655], [2.389126208945564, 48.85243435507018], [2.389199011281838, 48.85233942968042], [2.389270867904185, 48.8522457540076], [2.389343669702905, 48.85215082941303], [2.38941552716788, 48.85205715364439], [2.389488328450024, 48.8519622280464], [2.38956018538444, 48.85186855307428], [2.38956331710579, 48.85186587729247], [2.389717436180308, 48.851775949479595], [2.389870271968293, 48.85168838021485], [2.390024391350963, 48.85159845199923], [2.39017722611295, 48.85151088142913], [2.390180991943291, 48.851507350880745], [2.390231037782522, 48.85142245170589], [2.3903039000488793, 48.851298582934675], [2.390353946850094, 48.85121368369946], [2.390379027609442, 48.85117104370145], [2.390393857919806, 48.8511544596637], [2.390392011681524, 48.85115116942068], [2.390439792566005, 48.851069940542715], [2.390504538323289, 48.85096030118627], [2.390577399293336, 48.85083643219704], [2.3906421430977423, 48.850726793635495], [2.390715003424726, 48.850602923637176], [2.390779748012212, 48.8504932849851], [2.390767274821957, 48.85048102805071], [2.390553516741373, 48.85047870371443], [2.390351114289109, 48.85047687214458], [2.390137354881532, 48.85047454705785], [2.389934953812222, 48.85047271569026], [2.389732551394433, 48.85047088397335], [2.389518793401634, 48.850468557788474], [2.389316391014626, 48.85046672536756], [2.389102633057466, 48.85046439843917], [2.3889002307012532, 48.85046256531428], [2.388686471417139, 48.850460237635424], [2.388484070454437, 48.85045840381347], [2.388270311205886, 48.85045607539118], [2.388219056231045, 48.85045561097073], [2.388196434906515, 48.85045126654399], [2.388186117438481, 48.850455326527], [2.388034971483127, 48.850453956379894], [2.387850761464339, 48.850452409686575], [2.387648360561464, 48.850450574450925], [2.387464150555641, 48.850449028061625], [2.387463650397905, 48.85044902999783], [2.387238876711851, 48.85045115899445], [2.38702336554799, 48.85045457702944], [2.386798593182733, 48.85045670520592], [2.386583081956576, 48.85046012334717], [2.386569822788905, 48.850468412156474], [2.386553567475204, 48.85060549452882], [2.386537970616052, 48.85073687746258], [2.386521715134815, 48.85087395979756], [2.386506118115105, 48.85100534269545], [2.386490521016646, 48.851136725575806], [2.386474265285857, 48.85127380785508], [2.386458668026835, 48.85140519069954], [2.386442410765769, 48.851542272934445], [2.386426813345977, 48.85167365574307], [2.386410557280098, 48.85181073794752], [2.386394959699738, 48.85194212072029], [2.386378703466313, 48.8520792028873], [2.38636310572518, 48.85221058562423], [2.386346849324206, 48.852347667753804], [2.386331251433092, 48.852479049555576], [2.386314994853974, 48.85261613254704], [2.386299396802083, 48.85274751431291], [2.386286229967778, 48.85285853013534], [2.3862948844937533, 48.85286993782607]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 68, "zemmour_eric": 73.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "11-51", "circ_bv": "06", "num_bureau": 51, "roussel_fabien": 25.0, "nb_emargement": 1347.0, "nb_procuration": 93.0, "nb_vote_blanc": 17.0, "jadot_yannick": 152.0, "le_pen_marine": 56.0, "nb_exprime": 1326.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1711.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1347, "quartier_bv": "44", "geo_point_2d": [48.85160759979788, 2.388156899116647], "melenchon_jean_luc": 407.0, "poutou_philippe": 10.0, "macron_emmanuel": 475.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.342705876352739, 48.8979083681067], [2.342711510723665, 48.89788257690172], [2.342636562442516, 48.897766006870135], [2.342555510806208, 48.897640992844735], [2.342480564586074, 48.8975244226973], [2.342399512336635, 48.89739940853124], [2.342324566813566, 48.89728283826041], [2.342243515314826, 48.89715782396124], [2.342168570488711, 48.897041253567046], [2.342087519740658, 48.896916239134725], [2.342012575600326, 48.89679966951647], [2.341931525614318, 48.89667465405167], [2.341856582171022, 48.896558084310115], [2.341775532935582, 48.89643306871217], [2.341700590189312, 48.89631649884725], [2.341619541704635, 48.89619148311618], [2.341544599655383, 48.89607491312791], [2.341463551921357, 48.89594989726374], [2.341388610569112, 48.89583332715213], [2.341307563585625, 48.89570831115476], [2.341232622930379, 48.89559174091987], [2.341151576686247, 48.89546672568861], [2.341076636739371, 48.89535015443115], [2.340995591245858, 48.89522513906676], [2.340920651995965, 48.895108567685995], [2.340845713070263, 48.89499199714514], [2.34076466870004, 48.89486698068434], [2.34075614569528, 48.8948400341735], [2.340745403530421, 48.89483484980671], [2.340734989423991, 48.894829824626086], [2.3406810432364082, 48.89484338616865], [2.340549240338117, 48.89494615430459], [2.34042835913698, 48.895042694390824], [2.340296553871495, 48.89514546222247], [2.3401756717390683, 48.89524200203611], [2.340140911658806, 48.89526976319862], [2.340137807950283, 48.895269928659], [2.340106109835062, 48.895291129949975], [2.340019987253285, 48.89535990844416], [2.339911061125571, 48.895452310442465], [2.339790177566001, 48.895548849839926], [2.339681250635126, 48.89564125161331], [2.339560366210636, 48.895737790762134], [2.339451438476595, 48.89583019231052], [2.339449164992609, 48.89583834380082], [2.339473315570915, 48.895890353403026], [2.339493988047001, 48.89594172148482], [2.339492510338576, 48.89594864439605], [2.3393890273584, 48.896062730634085], [2.339284154246859, 48.896177982716516], [2.3391806703543683, 48.896292068750576], [2.339075796308202, 48.896407321525665], [2.338972311503284, 48.89652140735579], [2.338867436545312, 48.89663665902501], [2.338763949464045, 48.8967507446437], [2.338659074935331, 48.8968659970131], [2.338555586941507, 48.896980082427845], [2.33845071150098, 48.89709533369136], [2.338347222583364, 48.89720941980141], [2.338242346219589, 48.89732467085834], [2.338138856400926, 48.89743875586515], [2.338033979102459, 48.897554007614744], [2.338032477357319, 48.89758254010441], [2.338070061183685, 48.89758779661792], [2.338275629344905, 48.89759068271632], [2.338487419304806, 48.89759374042464], [2.338692987512629, 48.897596625806614], [2.338904777509796, 48.89759968367613], [2.3391103457756293, 48.89760256744247], [2.339322135821476, 48.8976056245739], [2.339527704122471, 48.897608508523085], [2.339739494228395, 48.897611564017176], [2.339752793085536, 48.89762126004743], [2.339739078947518, 48.89773626307603], [2.3397249256103843, 48.89782759989688], [2.339723050783323, 48.897857766199365], [2.339750825540604, 48.89786545291892], [2.339881170284606, 48.89786774075677], [2.340086235438032, 48.8978711245858], [2.340274483346616, 48.8978744280144], [2.340479549927175, 48.897877810278196], [2.3406752054946622, 48.897881679072185], [2.340880270754586, 48.897885061541615], [2.341075927743042, 48.89788892968845], [2.341280993068833, 48.89789231057246], [2.341476648738985, 48.897896178956344], [2.341681715483394, 48.89789955916168], [2.341877371210558, 48.89790342689088], [2.342082436645588, 48.89790680640258], [2.342278093804957, 48.897910672585354], [2.342483159294536, 48.897914051410865], [2.342678815135693, 48.89791791783077], [2.342705876352739, 48.8979083681067]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 45, "zemmour_eric": 40.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-48", "circ_bv": "03", "num_bureau": 48, "roussel_fabien": 22.0, "nb_emargement": 1027.0, "nb_procuration": 65.0, "nb_vote_blanc": 14.0, "jadot_yannick": 106.0, "le_pen_marine": 46.0, "nb_exprime": 1008.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1315.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1028, "quartier_bv": "69", "geo_point_2d": [48.89676274261439, 2.3404795465747026], "melenchon_jean_luc": 462.0, "poutou_philippe": 5.0, "macron_emmanuel": 225.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.272031383195794, 48.86394755543648], [2.272065194699719, 48.86390012325797], [2.272096915814191, 48.86378259265384], [2.272128456198522, 48.8636691089201], [2.272160177029718, 48.86355157827471], [2.272191717136389, 48.863438094500616], [2.272223439047238, 48.86332056382225], [2.272254978876249, 48.86320708000781], [2.272286518555294, 48.86309359707275], [2.272318238692057, 48.86297606542509], [2.272318729161196, 48.862974814708004], [2.272386710652302, 48.86284175582041], [2.272458070555078, 48.86270745472546], [2.272526051341437, 48.862574395726604], [2.272597410506254, 48.86244009541543], [2.272665390600432, 48.86230703540607], [2.272736747676963, 48.86217273497117], [2.272736959326859, 48.8621699743396], [2.272711739179797, 48.86214568149856], [2.272619996402465, 48.86209414220876], [2.2724969319628983, 48.86202929175869], [2.272486922262423, 48.862027380037055], [2.272315368753492, 48.86203994695504], [2.2721401174796982, 48.86204995046063], [2.271968563812794, 48.86206251688119], [2.271793313759485, 48.862072519887064], [2.271621758571623, 48.862085085801915], [2.271446508375811, 48.86209508829972], [2.271435687838566, 48.86209248174884], [2.271300196876469, 48.86200293097173], [2.2711610222289, 48.86191560238662], [2.271152491014975, 48.861913143755714], [2.270945346088246, 48.86190447581783], [2.270757339979624, 48.86189758075834], [2.270569335296345, 48.86189068451244], [2.270362189180361, 48.86188201645602], [2.270174184605556, 48.861875119589286], [2.269967039980295, 48.861866450857114], [2.269779034138382, 48.861859554260455], [2.269571889653268, 48.86185088394492], [2.26938388391984, 48.86184398672745], [2.269176739562488, 48.861835315727845], [2.268988733937557, 48.86182841788951], [2.268781589707775, 48.86181974620581], [2.268593585554334, 48.86181284775498], [2.268386440089349, 48.86180417537889], [2.268198436044422, 48.86179727630722], [2.267991290707026, 48.86178860324706], [2.267803286770623, 48.86178170355451], [2.26779049820261, 48.861771725205784], [2.267812596706586, 48.86164125781471], [2.267836008556705, 48.86151344794155], [2.267858106849903, 48.8613829796124], [2.267881519822548, 48.86125517060814], [2.267903617892229, 48.8611247022402], [2.267927030637264, 48.86099689319728], [2.267949128483327, 48.860866424790515], [2.267972539650332, 48.86073861480132], [2.267994637260252, 48.86060814725505], [2.268018049562512, 48.86048033723549], [2.268040146948926, 48.860349869650406], [2.2680635590234832, 48.86022205959221], [2.268085656186392, 48.86009159196834], [2.268109068033251, 48.85996378187145], [2.268131163622357, 48.8598333133012], [2.268154575228891, 48.859705504064905], [2.2681538645304062, 48.85970137166985], [2.268080834019086, 48.85956784085894], [2.268009987082728, 48.859435984454514], [2.26793695731214, 48.85930245352383], [2.267866111088027, 48.859170597901986], [2.267793082070797, 48.85903706595226], [2.267722236571652, 48.8589052102137], [2.267649208295136, 48.85877167814427], [2.267578363520949, 48.858639822288985], [2.267507519105337, 48.858507966376074], [2.267434491935897, 48.85837443412782], [2.267433852864017, 48.85837345261322], [2.267353865565351, 48.85826830100737], [2.267278094204278, 48.85816112101639], [2.267198107545822, 48.858055969286355], [2.267122338164175, 48.857948790083874], [2.2670423507832362, 48.85784363822124], [2.266966582030662, 48.85773645889964], [2.266886596652899, 48.857631306921135], [2.266810827166716, 48.85752412747209], [2.266746884822129, 48.857433675665455], [2.266666900352551, 48.85732852351142], [2.266655074947647, 48.85731179491023], [2.266647905354636, 48.85730746642485], [2.266498621818901, 48.85726851845001], [2.266294305811822, 48.857220793282785], [2.266145022776067, 48.85718184576308], [2.265940707432743, 48.857134119988395], [2.265791424909631, 48.85709517202453], [2.2657815768040432, 48.857095127787844], [2.265605466036801, 48.85713924529047], [2.2654168166336373, 48.857196060062705], [2.265240705216398, 48.85724017702453], [2.2650520564128263, 48.85729699122489], [2.264875944333007, 48.85734110854518], [2.264687293416085, 48.85739792125771], [2.264650717890405, 48.85739166899472], [2.264612133636963, 48.85740326205335], [2.26442645729111, 48.85745584586049], [2.264237805456057, 48.85751265875783], [2.264052128342583, 48.85756524197898], [2.263863477066153, 48.857622054288974], [2.263677799185063, 48.857674636924116], [2.263489145741512, 48.85773144863002], [2.26330346709291, 48.85778403067915], [2.263114812845013, 48.8578408417893], [2.262929133428799, 48.85789342325245], [2.262740479739547, 48.85795023377525], [2.262735766952224, 48.858030055225626], [2.266981972387125, 48.86398550399353], [2.26702990233459, 48.86401665257386], [2.267168900448336, 48.863920214402484], [2.267296336222322, 48.86382269080616], [2.267435333338011, 48.8637262514092], [2.267562768138789, 48.86362872751214], [2.2677017642311332, 48.86353228868811], [2.267829198058716, 48.86343476449026], [2.267968193140371, 48.863338325339946], [2.268095625994766, 48.863240800841346], [2.268260659615007, 48.86315067216383], [2.268388091462913, 48.86305314733729], [2.268399471913206, 48.863050053879206], [2.268588411794453, 48.86305974811584], [2.268824890164455, 48.86305731242192], [2.26901383015108, 48.86306700598683], [2.269202768845098, 48.863076699245056], [2.26943924862633, 48.863074262345584], [2.269441290371756, 48.863074470868526], [2.269663090109495, 48.8631086402583], [2.2698118391680833, 48.86314769222268], [2.269815365222626, 48.86314859060644], [2.269964115872343, 48.86318764238849], [2.270140971966423, 48.863252541044844], [2.270315828607159, 48.863326990971345], [2.270492685624909, 48.8633918882005], [2.270667541872927, 48.86346633759549], [2.270844401164879, 48.86353123430502], [2.270845122333321, 48.8635315210959], [2.271026660681834, 48.86359872949602], [2.271203519494959, 48.8636636265581], [2.271385060141774, 48.863730833515596], [2.271561919849919, 48.86379573004031], [2.271743461406845, 48.863862937345395], [2.271920322022481, 48.863927832433504], [2.271922140776341, 48.86392839390221], [2.272002868397546, 48.86394868065245], [2.272031383195794, 48.86394755543648]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 154, "zemmour_eric": 250.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-3", "circ_bv": "14", "num_bureau": 3, "roussel_fabien": 8.0, "nb_emargement": 1192.0, "nb_procuration": 77.0, "nb_vote_blanc": 8.0, "jadot_yannick": 33.0, "le_pen_marine": 53.0, "nb_exprime": 1184.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1557.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1196, "quartier_bv": "62", "geo_point_2d": [48.86064270459376, 2.2670669639739773], "melenchon_jean_luc": 64.0, "poutou_philippe": 0.0, "macron_emmanuel": 601.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3722731924142852, 48.852302018468244], [2.372290507442659, 48.85230164164311], [2.372475988668667, 48.852248064315845], [2.372661466871639, 48.85219300814853], [2.372846947318731, 48.852139431140316], [2.373032426105841, 48.85208437439971], [2.37321790443292, 48.852030795904774], [2.373403382430597, 48.85197573948307], [2.373588859989686, 48.85192216040789], [2.373774337208648, 48.85186710340577], [2.373775105628723, 48.8518668933815], [2.373952199312718, 48.85182288394614], [2.3741310023454663, 48.851778249145916], [2.374308094064891, 48.8517342391732], [2.374486896488526, 48.85168960383755], [2.37466398761691, 48.85164559243528], [2.374842789420738, 48.85160095746357], [2.375019879947279, 48.85155694553102], [2.375198682504827, 48.85151231003105], [2.375375772429621, 48.851468297568296], [2.375554573026195, 48.8514236606265], [2.375731662338259, 48.85137964853279], [2.375868519692849, 48.85134548198884], [2.375894696142989, 48.85133649549177], [2.375895861922005, 48.85133553566721], [2.37593780590419, 48.8513250647315], [2.3761166055172, 48.8512804278434], [2.376316900253912, 48.85123190421063], [2.376495700595926, 48.8511872658601], [2.376695994621549, 48.8511387415886], [2.376874792945689, 48.85109410356006], [2.377075086260322, 48.85104557864996], [2.377094696480285, 48.851022568261946], [2.377083146633887, 48.85099694041333], [2.377073718639918, 48.85098237126769], [2.377023510488545, 48.850984015588324], [2.376902909997075, 48.850947645489065], [2.376785871484141, 48.85091370948319], [2.376779004252652, 48.85090928127095], [2.376702187047925, 48.85080071047295], [2.376621008266257, 48.85068789622222], [2.376544191717054, 48.85057932530122], [2.376463013633064, 48.85046651002152], [2.376386196366016, 48.85035793986968], [2.376305020331639, 48.85024512446743], [2.3762841997891, 48.85024195902763], [2.376146534731343, 48.85031460341501], [2.37601093674812, 48.85038666664657], [2.375873270916272, 48.85045931160943], [2.375737673552095, 48.850531373629806], [2.375600006957122, 48.85060401826873], [2.37546440746503, 48.85067608086223], [2.375444921767133, 48.85067443945572], [2.375319322338874, 48.85056287364751], [2.375195029651783, 48.850454547695065], [2.375069431299399, 48.85034298070317], [2.374945141008055, 48.85023465537611], [2.374819542357953, 48.850123088092744], [2.3746952531213132, 48.85001476158545], [2.374569656888087, 48.84990319492415], [2.374445367332765, 48.849794868128754], [2.37431977217519, 48.849683300283786], [2.374195485015654, 48.849574974113814], [2.374193413242097, 48.849573532403845], [2.374032944052976, 48.84948543305092], [2.373877309284589, 48.849398674528864], [2.373716841157497, 48.849310575637425], [2.373561206074916, 48.84922381668344], [2.373405572873221, 48.849137057527344], [2.373245106360032, 48.84904895708325], [2.373089474206708, 48.848962197502395], [2.372929008755622, 48.84887409751979], [2.372773376288203, 48.84878733750699], [2.372612911920654, 48.848699236187315], [2.372592042898785, 48.848679679983874], [2.372572452676343, 48.8486792058172], [2.372530807226384, 48.84869940818474], [2.3723651672520862, 48.84878006236321], [2.372199183620571, 48.848860581401375], [2.372033542620633, 48.84894123510907], [2.371867557963376, 48.8490217536755], [2.371701915937898, 48.849102406912436], [2.371535930254896, 48.84918292500714], [2.371370287214822, 48.84926357687399], [2.371204300505971, 48.84934409449698], [2.371177052195169, 48.84936806480326], [2.371200203139642, 48.84938754240067], [2.371305062833119, 48.84945083157191], [2.371446318007783, 48.8495379226251], [2.371592599991629, 48.849626212663374], [2.371733856122123, 48.849713303363394], [2.371880139096278, 48.849801592136934], [2.37202139480928, 48.849888683375895], [2.372167680125592, 48.84997697179111], [2.37230893680527, 48.85006406177757], [2.372455223101058, 48.85015234982735], [2.372596480725952, 48.85023944035991], [2.372742766638523, 48.85032772803704], [2.372884026592794, 48.85041481732425], [2.373030313484849, 48.85050310463591], [2.373171574384262, 48.85059019446922], [2.373173088032547, 48.850602235756966], [2.373047777353752, 48.850710160010124], [2.372922175193739, 48.85081746204243], [2.3727968634885572, 48.85092538511264], [2.372671260293123, 48.85103268686078], [2.372545947550725, 48.85114060964733], [2.37242034331986, 48.85124791111132], [2.372295029529504, 48.85135583451346], [2.37216942563666, 48.85146313480112], [2.372044110809066, 48.851571057919635], [2.371918504507307, 48.851678358815306], [2.371916574430299, 48.851687093995494], [2.371974951403557, 48.85178693274854], [2.3720538957789072, 48.85192999439521], [2.372112273276544, 48.85202983395876], [2.372191218407827, 48.85217289458432], [2.372249596440689, 48.85227273405903], [2.3722731924142852, 48.852302018468244]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 44, "zemmour_eric": 52.0, "hidalgo_anne": 51.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-62", "circ_bv": "07", "num_bureau": 62, "roussel_fabien": 13.0, "nb_emargement": 1231.0, "nb_procuration": 92.0, "nb_vote_blanc": 17.0, "jadot_yannick": 164.0, "le_pen_marine": 51.0, "nb_exprime": 1212.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1466.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "48", "geo_point_2d": [48.85057182466477, 2.373764760344564], "melenchon_jean_luc": 367.0, "poutou_philippe": 12.0, "macron_emmanuel": 441.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.301488231655742, 48.84786220089448], [2.301483560249067, 48.847856307074814], [2.3014393974108502, 48.8478266328525], [2.301304499018402, 48.84773371435561], [2.301160882910565, 48.847637210276524], [2.301025985505029, 48.847544291449864], [2.300882369084297, 48.847447786112774], [2.300747472653604, 48.847354867855564], [2.300603858633349, 48.84725836217573], [2.300468961826939, 48.84716544358072], [2.300325348844333, 48.847068937550155], [2.300190454399496, 48.84697601773403], [2.300046841080055, 48.84687951224405], [2.2999119476221033, 48.846786592098105], [2.299768336702892, 48.846690086265426], [2.299633444231815, 48.846597165789646], [2.299489832987834, 48.846500659598306], [2.299354941503526, 48.84640773879271], [2.299230044683999, 48.84632137787545], [2.299095154127029, 48.84622845676203], [2.2989702581555562, 48.846142096459], [2.298835367163236, 48.84604917502972], [2.2987104720640072, 48.845962813542286], [2.298575583361491, 48.84586989181318], [2.298450689110296, 48.84578353093992], [2.298315801334894, 48.84569060890297], [2.298190907955936, 48.845604246845355], [2.298056021107845, 48.84551132450058], [2.2979311285769, 48.84542496305714], [2.297904101933578, 48.845406344972865], [2.297901744292627, 48.84540373466842], [2.297882322874202, 48.845394198935324], [2.297774462290263, 48.84531989433855], [2.297674973307434, 48.84525090546973], [2.297656846318698, 48.84523845076142], [2.297605193176572, 48.84526803432699], [2.297465804469487, 48.84532079017959], [2.29729199084717, 48.84538952145706], [2.297152600123323, 48.84544227783025], [2.29697878569501, 48.84551100774591], [2.296839395691748, 48.845563763756466], [2.296665580445112, 48.845632493209614], [2.296526019100081, 48.845684266638074], [2.296352203038276, 48.84575299562849], [2.296212641059234, 48.84580476868583], [2.296189615512568, 48.845812490984706], [2.296186291346123, 48.84581687741952], [2.296244720949217, 48.84588527701838], [2.296286084709479, 48.84593400061751], [2.29628752772204, 48.84594026059329], [2.296243230713316, 48.846078274723396], [2.296199498910333, 48.846216394674045], [2.296155201433779, 48.84635440873736], [2.296111469153531, 48.846492529520866], [2.296067172571732, 48.84663054352541], [2.296023438476115, 48.84676866333523], [2.295979141426479, 48.84690667727298], [2.295935408216175, 48.84704479792369], [2.295933167952685, 48.84705982660904], [2.295948738377724, 48.84706575331527], [2.296131214004187, 48.847094671333046], [2.29631377497421, 48.84712374246452], [2.296496250994132, 48.847152660823355], [2.296678812370822, 48.84718173139629], [2.29686128880848, 48.84721064829754], [2.297043850591928, 48.847239718311975], [2.297226327423045, 48.847268635554265], [2.297408888250738, 48.84729770500215], [2.297591366862076, 48.84732662079493], [2.297773928096513, 48.84735568968426], [2.297783785932324, 48.84736185242719], [2.297844913620725, 48.8474965824561], [2.29790359599016, 48.847627943458896], [2.297909998798549, 48.847633243210154], [2.298090604868587, 48.84770011836865], [2.298270354180115, 48.84776659430139], [2.298450961174822, 48.84783346890793], [2.298630710043337, 48.84789994428333], [2.298811317962609, 48.8479668183379], [2.298991069113365, 48.84803329317191], [2.299003179984042, 48.848040353084265], [2.299020591454129, 48.84803660042895], [2.299219773733839, 48.8480254783795], [2.299422013021705, 48.84801421561175], [2.2996211964928133, 48.84800309290175], [2.299823435619029, 48.847991828555934], [2.300022617556262, 48.84798070516945], [2.300224856496852, 48.8479694410442], [2.300424039625462, 48.847958316997165], [2.300626278404469, 48.847947051293836], [2.300825461349647, 48.847935927477614], [2.301027699954985, 48.84792466109549], [2.301226881378428, 48.8479135357035], [2.301429119798029, 48.84790226954194], [2.301488231655742, 48.84786220089448]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 118, "zemmour_eric": 135.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-5", "circ_bv": "12", "num_bureau": 5, "roussel_fabien": 13.0, "nb_emargement": 1308.0, "nb_procuration": 82.0, "nb_vote_blanc": 14.0, "jadot_yannick": 92.0, "le_pen_marine": 81.0, "nb_exprime": 1293.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1646.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1308, "quartier_bv": "59", "geo_point_2d": [48.84680984577738, 2.29833138221647], "melenchon_jean_luc": 278.0, "poutou_philippe": 2.0, "macron_emmanuel": 515.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.40219892928073, 48.83710969438446], [2.402194345421409, 48.8371294745363], [2.402201610015305, 48.83717257950795], [2.40221596821389, 48.83721763017379], [2.402213554776711, 48.837226829381365], [2.402225173906515, 48.83724793792213], [2.402245307968935, 48.83728438896415], [2.402265173903601, 48.837346718708886], [2.402263874023226, 48.83735278920367], [2.402162531610029, 48.83747870877746], [2.402067027971961, 48.83760190539259], [2.401965685971585, 48.83772782387904], [2.401870181401414, 48.83785102120881], [2.401768837078884, 48.83797693949366], [2.401673331587007, 48.838100136638815], [2.401577825654094, 48.83822333279485], [2.401476479890989, 48.83834925168934], [2.401380973036356, 48.83847244766075], [2.401279627675734, 48.83859836636722], [2.40127886741005, 48.838599198068515], [2.401176736349136, 48.83869645549786], [2.401077127494912, 48.83879329826539], [2.400974995677246, 48.83889055550559], [2.400875384714856, 48.83898739808148], [2.40077577474473, 48.83908424057282], [2.400673641805018, 48.83918149663111], [2.400675234775407, 48.83920920222868], [2.400705348329608, 48.839235724158925], [2.400893823023118, 48.83923690479433], [2.40107109629334, 48.83923860823705], [2.401259572357542, 48.83923978920234], [2.401436845649627, 48.83924149210306], [2.401614118953192, 48.8392431947411], [2.401802595056597, 48.83924437395147], [2.401979868382009, 48.839246076047495], [2.402168344493791, 48.8392472555809], [2.40234561647853, 48.839248957128035], [2.402534092619312, 48.83925013518588], [2.4025478386992, 48.83924085408893], [2.402544944305036, 48.83918134872194], [2.402542822958954, 48.8391181130669], [2.402556892199723, 48.8391089253168], [2.402754628187317, 48.839113224192154], [2.4029693319940693, 48.83911862640465], [2.403167068052478, 48.83912292459821], [2.403381770589913, 48.839128325164275], [2.403579506708832, 48.83913262357533], [2.403794209328948, 48.83913802340109], [2.403916183905352, 48.83914067372691], [2.403930438738871, 48.839149428985955], [2.403966699903572, 48.83914617321341], [2.404042461536862, 48.83914781968556], [2.404115160577128, 48.83915421296788], [2.404152457589764, 48.83915247322495], [2.404165680060856, 48.839124846874995], [2.404131897284377, 48.838988780701854], [2.404100343806415, 48.83886461965428], [2.404068789106196, 48.83874045947712], [2.404035006842062, 48.83860439233048], [2.40400345381731, 48.838480232113994], [2.403969671882106, 48.83834416581651], [2.403938117818507, 48.83822000464778], [2.403904336222513, 48.83808393830014], [2.403872783834359, 48.83795977709207], [2.403839002577568, 48.83782371069433], [2.403838977875656, 48.83782360714461], [2.403805289314732, 48.83768088140769], [2.403771508425065, 48.837544814057665], [2.403737821591335, 48.83740208827297], [2.403704041058566, 48.83726602086988], [2.403670353227388, 48.837123295023794], [2.403636573041127, 48.83698722846707], [2.403602886947506, 48.836844501673895], [2.40356910711803, 48.83670843506421], [2.4035659440804222, 48.836703989032124], [2.403421544836542, 48.83659347113356], [2.403269668603743, 48.83647814012916], [2.403125270613682, 48.83636762185063], [2.402973394321914, 48.836252291339235], [2.402927661024323, 48.836238063576566], [2.402905658180169, 48.83624842952396], [2.402850476502959, 48.83631948792829], [2.402766843343634, 48.836425778889925], [2.402676390075841, 48.83654225878413], [2.402592756204104, 48.83664854960287], [2.402502300798369, 48.83676502933544], [2.40241866621421, 48.83687132001127], [2.402328210032866, 48.836987799588954], [2.402244574736275, 48.83709409012188], [2.40219892928073, 48.83710969438446]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 83, "zemmour_eric": 61.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-41", "circ_bv": "08", "num_bureau": 41, "roussel_fabien": 26.0, "nb_emargement": 1077.0, "nb_procuration": 53.0, "nb_vote_blanc": 17.0, "jadot_yannick": 102.0, "le_pen_marine": 54.0, "nb_exprime": 1057.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1310.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1077, "quartier_bv": "45", "geo_point_2d": [48.83811024485814, 2.40272463294792], "melenchon_jean_luc": 293.0, "poutou_philippe": 6.0, "macron_emmanuel": 381.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.322263719093833, 48.891902436302416], [2.322271144708091, 48.891914322442965], [2.322276071586474, 48.89192244785199], [2.322283385764664, 48.891934513225856], [2.322286275786125, 48.89193744699322], [2.322310060437244, 48.891953561711446], [2.322328309909536, 48.891952540833955], [2.322336573223328, 48.89194805949508], [2.32252066060229, 48.891982314108745], [2.322698405255594, 48.89201538772113], [2.322882493098946, 48.89204964267574], [2.323060238211929, 48.89208271574901], [2.323244326543057, 48.89211696924603], [2.323422072104024, 48.892150042679496], [2.323606160911228, 48.892184295618144], [2.323783905579756, 48.89221736760553], [2.323967994863128, 48.892251619985856], [2.324145741343329, 48.89228469234108], [2.324157015333782, 48.89228351760072], [2.324245963411123, 48.892244379144785], [2.324335111631775, 48.89220515181893], [2.324346762430622, 48.89220405113284], [2.324531112775935, 48.89224217391354], [2.324716585585128, 48.892280527568595], [2.324900936483651, 48.892318648878046], [2.325086409837679, 48.89235700195768], [2.325270759902286, 48.892395123586695], [2.325456233801144, 48.89243347609084], [2.325640585782629, 48.892471596256335], [2.325826060226413, 48.892509948184966], [2.326010412737781, 48.89254806867774], [2.326195886362583, 48.89258642002322], [2.326380239427111, 48.892624539044725], [2.3265657149487913, 48.89266289072169], [2.326750068554937, 48.8927010091712], [2.326935544633056, 48.89273935937343], [2.3271198987807082, 48.89277747725089], [2.327305374028202, 48.89281582776927], [2.327353764718052, 48.8928085335836], [2.327354396874118, 48.89280721422887], [2.327347183175747, 48.89278547661673], [2.327306973010526, 48.89266430603989], [2.327258448562274, 48.892525424199], [2.327218238804387, 48.89240425356366], [2.32716971618735, 48.89226537256078], [2.327129506836789, 48.89214420186692], [2.327080984710398, 48.89200531989591], [2.32704077576726, 48.891884149143486], [2.326992252744486, 48.89174526799516], [2.326965247484257, 48.891663887385526], [2.326954827597477, 48.89165175807972], [2.326901674392332, 48.89165965396403], [2.326743761060619, 48.89159381156999], [2.32658955554295, 48.89152951416917], [2.326431643000515, 48.8914636713557], [2.326277436889928, 48.89139937353767], [2.326119525148515, 48.89133352940552], [2.325965321172654, 48.8912692311856], [2.325807410208983, 48.891203387533324], [2.325653205640109, 48.891139088896175], [2.325495295477467, 48.891073243925256], [2.325341093043207, 48.891008944886224], [2.32533130995623, 48.8910077044551], [2.325109076926695, 48.89103496255812], [2.324886171597829, 48.891062301894856], [2.324866449401928, 48.891061861547236], [2.324859066066672, 48.89106908197389], [2.324674150665489, 48.89112813848278], [2.324489744314826, 48.891187031201724], [2.324304826712107, 48.891246087126255], [2.324120419525986, 48.89130497927012], [2.323935502449262, 48.89136403462566], [2.323751094427688, 48.89142292619448], [2.323566175161111, 48.891481980066374], [2.3233817662924, 48.89154087195938], [2.323196847551835, 48.891599925262305], [2.323012436483894, 48.89165881657247], [2.322827516905674, 48.89171786929878], [2.322643106365953, 48.89177676004156], [2.3224581845862, 48.891835812183416], [2.322273773222733, 48.891894701451854], [2.322263719093833, 48.891902436302416]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 88, "zemmour_eric": 59.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-32", "circ_bv": "03", "num_bureau": 32, "roussel_fabien": 19.0, "nb_emargement": 1198.0, "nb_procuration": 69.0, "nb_vote_blanc": 10.0, "jadot_yannick": 115.0, "le_pen_marine": 57.0, "nb_exprime": 1187.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1482.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1198, "quartier_bv": "68", "geo_point_2d": [48.89187344768119, 2.3252029725865366], "melenchon_jean_luc": 318.0, "poutou_philippe": 7.0, "macron_emmanuel": 475.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.327793961205971, 48.83618509354181], [2.327782647594997, 48.836193140478684], [2.327667284372543, 48.836230045279464], [2.327560043365439, 48.83626612593976], [2.327553365086299, 48.83627117792999], [2.327486235664386, 48.83639829429294], [2.32742208882409, 48.836522408192344], [2.327354958758493, 48.8366495244531], [2.327290811296346, 48.83677363825423], [2.327226663528821, 48.83689775200718], [2.327159532503253, 48.837024868115584], [2.327095384113865, 48.837148981770234], [2.327028252456203, 48.83727609687709], [2.326964103445147, 48.83740021043347], [2.326896971132161, 48.837527326337394], [2.326832821499224, 48.837651439795465], [2.326765688542618, 48.837778555597154], [2.326701538287892, 48.83790266895692], [2.326634404687451, 48.83802978465634], [2.326570253810929, 48.838153897917806], [2.326503120929127, 48.83828101352268], [2.32648778877771, 48.83831067560369], [2.326468449655675, 48.83832673375835], [2.32647888590474, 48.83834129753431], [2.326430065150738, 48.838435748602556], [2.326368713914585, 48.8385541098329], [2.326304561760204, 48.83867822289365], [2.326243208591261, 48.83879658402628], [2.326179055839601, 48.83892069699278], [2.326117703462646, 48.83903905804302], [2.326053550113702, 48.83916317091528], [2.325992195804032, 48.839281531867776], [2.32592804185769, 48.83940564464581], [2.325866688351637, 48.83952400461663], [2.32580253244558, 48.83964811729271], [2.325741178357469, 48.83976647807277], [2.325677023216515, 48.83989059066229], [2.325615667195546, 48.84000895134464], [2.325551511457272, 48.8401330638399], [2.325490156228285, 48.840251424439785], [2.325432174082056, 48.84036327461542], [2.325368017459073, 48.84048738787219], [2.325364642730813, 48.84049389734297], [2.325359269447205, 48.84049849248233], [2.325207128753313, 48.840564976235186], [2.325056705530196, 48.840630639367774], [2.324904564064635, 48.840697122727946], [2.324754140078863, 48.8407627854723], [2.324748034267387, 48.84077049005571], [2.324751901564535, 48.840883299643124], [2.324757696382299, 48.841036635655], [2.324761563720108, 48.84114944521524], [2.32476735724508, 48.8413027802831], [2.3247705718648772, 48.841396561841336], [2.3247769974814823, 48.841412661688054], [2.324803757309198, 48.84141090607472], [2.324977985336931, 48.84136648754081], [2.325149783949116, 48.8413224678568], [2.325324011386325, 48.841278048815404], [2.325495809426392, 48.841234027731716], [2.325670036261433, 48.84118960908215], [2.3258418337177362, 48.84114558749804], [2.326013630883835, 48.84110156566547], [2.326187856834683, 48.841057146256446], [2.326359653417012, 48.841013123923474], [2.326533878789049, 48.8409687031077], [2.32653789568094, 48.840967108661665], [2.32667857715789, 48.84088658528981], [2.326821868734676, 48.840804061856865], [2.326962550695268, 48.84072353814699], [2.327105841374191, 48.84064101436184], [2.327246521093439, 48.84056049029857], [2.327389812225336, 48.84047796706821], [2.327530491065894, 48.84039744265925], [2.327673779949107, 48.84031491816972], [2.327693697693843, 48.84031635128336], [2.327814581405482, 48.840424385309504], [2.327932272553975, 48.840529302946294], [2.3280531586164512, 48.84063733671838], [2.328170850737631, 48.840742253201135], [2.328291736426176, 48.84085028670388], [2.328409430859311, 48.84095520383889], [2.328530317536174, 48.84106323707994], [2.328648011579558, 48.841168153053225], [2.328765706085183, 48.841273069800174], [2.328886595600225, 48.8413811026581], [2.32900429106708, 48.84148601915029], [2.32912518021968, 48.84159405083953], [2.329242878010036, 48.84169896708464], [2.329363768139513, 48.841806999411524], [2.329358707607156, 48.84182044982905], [2.329187414966259, 48.84187475091427], [2.329012393425459, 48.84192856946379], [2.328841098705943, 48.84198287004027], [2.328666077806849, 48.84203668808556], [2.328494782371191, 48.8420909881609], [2.328319759389052, 48.842144805686615], [2.328148464599736, 48.84219910526847], [2.3279734408968302, 48.84225292228233], [2.32780214539138, 48.84230722136298], [2.327627120967912, 48.84236103786498], [2.327455824746329, 48.842415336444496], [2.3272807996022, 48.84246915243458], [2.327109501301996, 48.84252345050528], [2.326934476799598, 48.84257726599114], [2.326763177783263, 48.84263156356068], [2.326588152560312, 48.84268537853464], [2.326416852827848, 48.84273967560302], [2.326241825521648, 48.842793490057396], [2.326235606626563, 48.84280593551705], [2.326316048786259, 48.842903662942575], [2.326370674081309, 48.842981494884896], [2.326426182438248, 48.84304857716645], [2.3264340217490522, 48.84304770395375], [2.326497181149885, 48.84302695506417], [2.326555510826873, 48.843007630527], [2.32655977385956, 48.84300703486323], [2.326582969968526, 48.84299958199912], [2.326701291804611, 48.842960381865076], [2.326878048952478, 48.84290250775382], [2.327054699643383, 48.84284398344046], [2.327231457378167, 48.84278610790936], [2.327408107277809, 48.84272758306806], [2.327584862851189, 48.84266970790039], [2.327761511971067, 48.84261118163183], [2.327938266757354, 48.84255330593598], [2.328114915074165, 48.84249478003875], [2.328291670447336, 48.84243690292308], [2.328468317972879, 48.84237837649792], [2.328645071184668, 48.84232049974567], [2.328821717918843, 48.84226197279257], [2.328998471717595, 48.842204094620506], [2.329175117660295, 48.842145567139454], [2.329351869309355, 48.84208768843158], [2.329420277783173, 48.84206502299375], [2.329426806646819, 48.842063473111814], [2.329446021081022, 48.84205523650853], [2.329554257720595, 48.842019373913764], [2.329729908581427, 48.841962052378115], [2.329906552882528, 48.84190352380434], [2.330082204327848, 48.84184620175309], [2.33025884785225, 48.84178767175374], [2.330434497157306, 48.841730349171634], [2.330611139881896, 48.84167181954534], [2.330786789771429, 48.84161449644765], [2.330963431719306, 48.841555965395784], [2.331139079468578, 48.84149864176727], [2.33131572061665, 48.84144011108843], [2.3314243664074112, 48.84140465379776], [2.3314468574794702, 48.8413963938134], [2.3313873624881323, 48.841318102500345], [2.331364966537919, 48.84118045443692], [2.331342783333585, 48.84104481852263], [2.331320386256079, 48.84090717040961], [2.331298204646515, 48.84077153446143], [2.331275807804172, 48.840633886306385], [2.331253626426918, 48.84049825031677], [2.331231229819732, 48.84036060211968], [2.331209048674784, 48.84022496608859], [2.331186867645279, 48.84008933003695], [2.331164471401648, 48.83995168087763], [2.331142289242022, 48.83981604477693], [2.331119894584421, 48.83967839648253], [2.331097712657201, 48.839542760340365], [2.331075316872328, 48.83940511199629], [2.331053136539718, 48.83926947582031], [2.331030740989986, 48.839131827434265], [2.331031144761907, 48.83912849933527], [2.331082819439653, 48.83899834317573], [2.33113483721328, 48.83887253913911], [2.3311868533849562, 48.83874673415877], [2.33123852864636, 48.8386165787944], [2.331238971558339, 48.8386141277956], [2.331235505381493, 48.83849392860553], [2.33123153359319, 48.83836811362058], [2.33123352673509, 48.83836323939766], [2.331364310617837, 48.838221857797166], [2.331500924348147, 48.83807235315105], [2.33149704843273, 48.83806032942259], [2.331333446362211, 48.83798507052024], [2.331166358435736, 48.83790799315887], [2.3311588968413632, 48.83789584863868], [2.331132760508373, 48.8378961036118], [2.331096384659853, 48.83790650195455], [2.331079242454732, 48.837913289857795], [2.331071412641432, 48.837919434624645], [2.331024560452188, 48.838047700416766], [2.33097767712745, 48.838176781729786], [2.330930824476122, 48.83830504745565], [2.330883940687778, 48.8384341287022], [2.330837087563014, 48.838562395261114], [2.330790203311056, 48.83869147644122], [2.330775290635388, 48.83869830555072], [2.330516750266796, 48.83867731376889], [2.330282327466517, 48.83865777762935], [2.33027197572005, 48.838653091525345], [2.330177281598446, 48.83853615703347], [2.330082816198968, 48.83841778474421], [2.329988122940873, 48.83830084917868], [2.329893658397427, 48.83818247671518], [2.329798965979609, 48.83806554187454], [2.329704502292181, 48.83794716923673], [2.329609810726191, 48.83783023422175], [2.329515349268704, 48.83771186051798], [2.329420657192164, 48.83759492532104], [2.329326196579101, 48.837476552342274], [2.329231505354375, 48.837359616970964], [2.329137045597293, 48.83724124381791], [2.329042356586615, 48.8371243082799], [2.328947896334832, 48.837005934045614], [2.328853208175941, 48.836888998333286], [2.328758748768548, 48.83677062482401], [2.32866406146143, 48.836653688937346], [2.328569602909992, 48.8365353152538], [2.328474916454639, 48.83641837919281], [2.328380460132959, 48.836300004443345], [2.328285773167134, 48.83618306820038], [2.328191317689797, 48.836064694175946], [2.328172694920917, 48.83606100648852], [2.327988377809085, 48.83612798055248], [2.327841192817159, 48.83617506477897], [2.327809369371572, 48.83618524488722], [2.327793961205971, 48.83618509354181]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 82, "zemmour_eric": 85.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-30", "circ_bv": "11", "num_bureau": 30, "roussel_fabien": 21.0, "nb_emargement": 1118.0, "nb_procuration": 77.0, "nb_vote_blanc": 13.0, "jadot_yannick": 98.0, "le_pen_marine": 55.0, "nb_exprime": 1103.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1410.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1118, "quartier_bv": "53", "geo_point_2d": [48.83950940201273, 2.328454503332543], "melenchon_jean_luc": 203.0, "poutou_philippe": 5.0, "macron_emmanuel": 499.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.306425990321979, 48.84365165425851], [2.306406257166062, 48.84368062894655], [2.30640521206823, 48.84368216350127], [2.306418272394823, 48.84370531785354], [2.306599059522544, 48.84376113455678], [2.306775361421307, 48.843815511188154], [2.306956147963132, 48.8438713264391], [2.307132451969632, 48.84392570254673], [2.30731323927611, 48.843981517252544], [2.3074895426655, 48.84403589282065], [2.30767033208721, 48.8440917078885], [2.307846636221913, 48.84414608292501], [2.3080274264201233, 48.844201896548384], [2.308203731300133, 48.8442562710533], [2.308204346201435, 48.84425644908599], [2.30839191326148, 48.84430755358738], [2.308591814079071, 48.844361508112044], [2.308779380534612, 48.844412611993285], [2.308979283518826, 48.84446656587327], [2.308991666067617, 48.84446447892044], [2.308999293796989, 48.84445103250145], [2.309020484358276, 48.84432674480882], [2.309041825353464, 48.84420251103062], [2.309063014349748, 48.8440782232949], [2.3090843551417928, 48.84395398948141], [2.309105545298037, 48.843829701718356], [2.309126884524521, 48.84370546786174], [2.3091480744783, 48.84358118006346], [2.309169414864166, 48.84345694617943], [2.309190603241052, 48.84333265923732], [2.309211943423785, 48.84320842531805], [2.30923313297264, 48.84308413744934], [2.309254472952137, 48.842959903494794], [2.309275660936139, 48.84283561558297], [2.309297000712507, 48.84271138159316], [2.3093181884940632, 48.84258709364615], [2.309339528067306, 48.84246285962108], [2.309360716996984, 48.84233857254603], [2.309382056367101, 48.842214338485704], [2.309403243743771, 48.84209005046825], [2.309424582910767, 48.84196581637271], [2.309428805426302, 48.841960266470835], [2.309583485217691, 48.84186461942866], [2.309737785119189, 48.84176921821494], [2.309892463776577, 48.84167357075692], [2.310046762546928, 48.84157816912834], [2.310201440058419, 48.841482522153726], [2.310355737697631, 48.8413871201103], [2.310367077716811, 48.84137870624886], [2.310361995820336, 48.84136827756537], [2.310288831754746, 48.84124604630832], [2.310215514932404, 48.841120866882235], [2.310142350207089, 48.84099863460131], [2.310069035447124, 48.84087345506561], [2.309995871400722, 48.8407512235673], [2.309922555978028, 48.84062604390626], [2.309849393984872, 48.84050381229913], [2.309776079262087, 48.84037863252057], [2.30970291797153, 48.840256399897505], [2.309629603948546, 48.84013122000141], [2.3095564419745402, 48.84000898815312], [2.309483130013664, 48.8398838081474], [2.309409968730439, 48.83976157618247], [2.309336656118941, 48.83963639515208], [2.309330934392619, 48.83963191743432], [2.309310769604375, 48.839623785827996], [2.309253206625414, 48.83960109153412], [2.309220912368395, 48.83958806925212], [2.3091978287004222, 48.83958305597097], [2.30917414534162, 48.83960817707897], [2.309089394272297, 48.83972041001401], [2.309003504624104, 48.83983514913944], [2.308918752818286, 48.83994738193079], [2.308832862420533, 48.84006212091036], [2.30874810987811, 48.84017435355802], [2.308662218730685, 48.84028909239174], [2.308577465451751, 48.84040132489568], [2.308491573554647, 48.84051606358358], [2.308406818176752, 48.84062829593593], [2.3083209268924, 48.84074303448587], [2.308236170777969, 48.84085526669448], [2.308150278743926, 48.840970005098605], [2.308065521893051, 48.84108223716349], [2.307979629109207, 48.84119697542173], [2.307894871521778, 48.84130920734291], [2.30782353739137, 48.84140953279183], [2.307798311226255, 48.841431289127065], [2.307802802644046, 48.84144017838499], [2.307781856087393, 48.841469637381635], [2.30769781983415, 48.84160843253915], [2.307605538162707, 48.84173821590304], [2.307603757026312, 48.841740083473105], [2.307470006068817, 48.841848194763045], [2.307334406069443, 48.841957806126864], [2.307200653994514, 48.84206591709459], [2.307065052862126, 48.842175528131705], [2.306931299669753, 48.84228363877719], [2.306795698767026, 48.84239324949555], [2.3066619444572, 48.84250135981873], [2.306526341059055, 48.84261097020249], [2.306392585631763, 48.84271908020344], [2.30625698110057, 48.84282869026049], [2.306260544268736, 48.842842097997604], [2.306400262531271, 48.84289721911506], [2.306543258054884, 48.84295111433898], [2.306682976908764, 48.84300623512085], [2.306825971661327, 48.843060129993724], [2.306831684119556, 48.84307156616138], [2.306761996214103, 48.8431759439348], [2.306663954847916, 48.84330933907383], [2.306594266288622, 48.84341371672728], [2.306496224045854, 48.8435471117004], [2.306426534832712, 48.843651489233935], [2.306425990321979, 48.84365165425851]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 151, "zemmour_eric": 140.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-30", "circ_bv": "12", "num_bureau": 30, "roussel_fabien": 15.0, "nb_emargement": 1293.0, "nb_procuration": 82.0, "nb_vote_blanc": 7.0, "jadot_yannick": 109.0, "le_pen_marine": 39.0, "nb_exprime": 1281.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1556.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "58", "geo_point_2d": [48.84227322718995, 2.3084119063393698], "melenchon_jean_luc": 200.0, "poutou_philippe": 5.0, "macron_emmanuel": 565.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.283422729557035, 48.840229016686024], [2.283422180459575, 48.84022069241477], [2.283327861748399, 48.84012953731017], [2.283193636317135, 48.83999988283919], [2.283099318405225, 48.83990872753635], [2.282965094111097, 48.839779072783266], [2.282870778360959, 48.83968791729042], [2.282864767851562, 48.839684687588345], [2.282677139812107, 48.83963308176169], [2.282484590375196, 48.83958012134171], [2.282296963100949, 48.83952851401464], [2.282104415798923, 48.83947555298596], [2.281916789277515, 48.839423945057746], [2.281724242748072, 48.839370983412195], [2.281714488680845, 48.83936198598338], [2.281694931495844, 48.839361589740655], [2.281692902797171, 48.839360894035735], [2.281524370806822, 48.839290719283646], [2.281357438298068, 48.83922157108616], [2.281188907222252, 48.83915139495338], [2.281021974242356, 48.839082246270955], [2.280853445431174, 48.83901206966498], [2.2806865133424292, 48.8389429205058], [2.280517985420966, 48.838872744317776], [2.280351054223571, 48.83880359468184], [2.280346509197275, 48.838802396354765], [2.280156156803589, 48.83877690228117], [2.279967664837077, 48.83875176895767], [2.27977917306477, 48.83872663443725], [2.279588819850446, 48.83870114035023], [2.279400328443913, 48.83867600523172], [2.279209976974605, 48.83865050964957], [2.279021485921415, 48.83862537483232], [2.278831133459935, 48.83859987863798], [2.278642642784973, 48.83857474232328], [2.278452292043645, 48.838549246432464], [2.27844906613264, 48.83854852726115], [2.278234720873956, 48.838480249701796], [2.2780265616400213, 48.838413752073066], [2.277818404312047, 48.838347253187095], [2.27760406070717, 48.838278974485405], [2.277590965238657, 48.83827942782708], [2.277429693398382, 48.83834535812369], [2.277273277023048, 48.83840892700406], [2.277112004380262, 48.83847485686473], [2.276955587228872, 48.83853842532233], [2.276799171058439, 48.83860199358001], [2.276637895856228, 48.83866792278186], [2.276631595358282, 48.838674236053855], [2.276601808485251, 48.83880552087777], [2.276572522133072, 48.838935876057064], [2.276542736336605, 48.83906715994445], [2.276513449689682, 48.83919751507878], [2.276483662232512, 48.839328798912476], [2.27645437529084, 48.83945915400182], [2.276424587522866, 48.83959043868933], [2.276395300298923, 48.83972079283441], [2.276391697815419, 48.83973414201015], [2.27640309353985, 48.839741029085836], [2.276492681217701, 48.83986761349639], [2.276582084048303, 48.83999370564788], [2.276671672582678, 48.84012029079504], [2.276761076279705, 48.84024638278422], [2.276850665683099, 48.84037296776871], [2.276940070246561, 48.84049905959561], [2.276953382735112, 48.840504217914535], [2.277152404440689, 48.84049481982367], [2.27735003794054, 48.84048530329242], [2.2775490608523308, 48.840475905449], [2.277746694208139, 48.840466388262286], [2.277945716976079, 48.8404569897588], [2.278143350187731, 48.84044747191661], [2.278342372812014, 48.84043807275304], [2.278540005879397, 48.84042855425537], [2.278541054714648, 48.84042847783887], [2.278744794839005, 48.84040830230856], [2.278941634699382, 48.84038883851194], [2.279138474412847, 48.84036937439111], [2.27934221407491, 48.84034919784225], [2.279539053489077, 48.84032973306157], [2.279742792841116, 48.84030955582971], [2.279762913963445, 48.840301507988414], [2.27976297197664, 48.84029109811278], [2.279652525789159, 48.84017708527611], [2.279546722344486, 48.84006838139577], [2.279436278464385, 48.83995436834491], [2.279330475922806, 48.839845664251634], [2.279328322045707, 48.83984111394414], [2.279325594679792, 48.83980167174635], [2.279322907490192, 48.839750357179824], [2.279330007902661, 48.83974214821955], [2.279386063718901, 48.83972127153565], [2.279465268366896, 48.83969280596114], [2.279483331413012, 48.8396959321556], [2.27958651940237, 48.83980472920612], [2.279686638733637, 48.83991071962361], [2.279695928743056, 48.839914828133516], [2.279835751440787, 48.83993043498725], [2.279975176663803, 48.83994690807742], [2.279983887184315, 48.839950556195774], [2.280104984157625, 48.84006320194595], [2.280225943104187, 48.84017502740106], [2.28023266249696, 48.84017832085886], [2.2804298679248642, 48.840222376728384], [2.28062556931734, 48.84026575229311], [2.28082277404562, 48.840309807503274], [2.281018476093344, 48.84035318242186], [2.281215682846946, 48.84039723698901], [2.281411384187586, 48.840440611253236], [2.281607085853842, 48.84048398519557], [2.2818042935998513, 48.840528038787255], [2.281999995921337, 48.84057141208343], [2.282197204317943, 48.84061546592325], [2.282392907307038, 48.84065883767395], [2.282590116366423, 48.84070289086258], [2.282603448198817, 48.840701144194036], [2.282738395643216, 48.84062331242772], [2.282870252435528, 48.840546771462115], [2.283005197719396, 48.84046893937593], [2.283137053741742, 48.84039239720638], [2.283271999577579, 48.84031456571593], [2.283403854817588, 48.8402380232417], [2.283422729557035, 48.840229016686024]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 59, "zemmour_eric": 62.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-78", "circ_bv": "13", "num_bureau": 78, "roussel_fabien": 11.0, "nb_emargement": 845.0, "nb_procuration": 26.0, "nb_vote_blanc": 6.0, "jadot_yannick": 54.0, "le_pen_marine": 67.0, "nb_exprime": 837.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1078.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 845, "quartier_bv": "60", "geo_point_2d": [48.83959117351086, 2.279389678598105], "melenchon_jean_luc": 273.0, "poutou_philippe": 4.0, "macron_emmanuel": 269.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358915492101666, 48.85861836358391], [2.35896201219875, 48.858647931568456], [2.359090871733682, 48.8587349952431], [2.359220809059233, 48.858822785818695], [2.359349669459171, 48.85890984920089], [2.359479609008726, 48.85899764038826], [2.3596084702846323, 48.8590847025788], [2.359738409343408, 48.85917249346399], [2.359867271473075, 48.859259556261435], [2.359997211415152, 48.85934734595252], [2.36000902388447, 48.85934995248333], [2.360204438522358, 48.859330222464], [2.360399450423416, 48.859310533142235], [2.360594864765502, 48.85929080248472], [2.360789877734302, 48.85927111253324], [2.360985290417848, 48.8592513812302], [2.361180303091649, 48.859231690641856], [2.36137571684231, 48.85921195870786], [2.36157072785807, 48.859192267475265], [2.361766141313006, 48.85917253490304], [2.361961153396577, 48.85915284304084], [2.362156565192848, 48.85913310982311], [2.362351576981292, 48.85911341732395], [2.362360066248097, 48.85911437629632], [2.362524590528597, 48.859172429794], [2.362691865381127, 48.859231958250305], [2.362856390402722, 48.85929001128567], [2.363023664648808, 48.85934953926461], [2.363188191763339, 48.85940759274424], [2.363355466766018, 48.85946712025309], [2.363376517934661, 48.85947674914303], [2.363387359419765, 48.85947071373659], [2.363409123297518, 48.8594549209504], [2.36344437546808, 48.859440465291705], [2.363454869758114, 48.859437075712165], [2.363460522841397, 48.859422068686335], [2.363545237901421, 48.85931091379721], [2.363627896824696, 48.85920079384654], [2.363712612530791, 48.859089638824024], [2.363795270749264, 48.85897951873577], [2.363879984375576, 48.858868363565335], [2.363962641889157, 48.85875824333954], [2.364045299053441, 48.858648123045654], [2.364130012970442, 48.85853696767232], [2.364212669429946, 48.858426847240885], [2.364297381267199, 48.85831569171965], [2.364380037021932, 48.85820557115064], [2.3644647495051663, 48.858094415496026], [2.364473663298848, 48.85808972416726], [2.36458698999231, 48.858071287660216], [2.364706019667277, 48.858051923516264], [2.364716268694604, 48.858042014940665], [2.364694501671084, 48.857933178892885], [2.364669203295819, 48.85780668335002], [2.364647436468923, 48.85769784727064], [2.364622136970262, 48.85757135078445], [2.3646192810854982, 48.85756692071521], [2.364597738884904, 48.85754909634543], [2.364575972314895, 48.857440260227804], [2.364583263820952, 48.85738909808747], [2.364592921295103, 48.85737929519722], [2.364781422792119, 48.85734262043507], [2.364959352457252, 48.85730800274434], [2.36513728188595, 48.85727338478796], [2.365325782616738, 48.85723670916484], [2.365503711569468, 48.85720208976209], [2.365692210410568, 48.85716541445148], [2.365870138876367, 48.85713079450169], [2.366058638564492, 48.85709411861873], [2.3662365665433542, 48.85705949812192], [2.366425065715616, 48.85702282165938], [2.366602993207536, 48.85698820061548], [2.366791490501055, 48.85695152356624], [2.36704464683609, 48.85690226459844], [2.3672331435187512, 48.85686558595132], [2.367242912044967, 48.85685668997733], [2.367236782767117, 48.85672180548627], [2.367230647962747, 48.8565868175239], [2.367224517385532, 48.856451932992194], [2.367218382655633, 48.85631694409705], [2.367212253504776, 48.85618205953917], [2.367206118827502, 48.856047071509906], [2.367216448582756, 48.85603807507495], [2.367417517024578, 48.85600503752402], [2.367610594872341, 48.85597331272754], [2.36780367248509, 48.85594158761859], [2.368004740182239, 48.8559085490781], [2.368197817325823, 48.85587682243206], [2.368398884512231, 48.855843784126655], [2.368473189612423, 48.85585486238755], [2.368477642698406, 48.85584931441444], [2.368487172239701, 48.85583356492181], [2.368499256274113, 48.8557824718513], [2.368492498835251, 48.85576089315106], [2.368435183862373, 48.85575408745413], [2.368237610239396, 48.855785884276216], [2.368050164474732, 48.855816867286514], [2.367852590389564, 48.85584866257179], [2.36766514417012, 48.8558796449772], [2.3674776977168452, 48.85591062798743], [2.367280122926937, 48.85594242232483], [2.367092674666959, 48.8559734038237], [2.366895100756, 48.8560051984301], [2.366895063883195, 48.85600520453044], [2.3666906107408963, 48.856038598320644], [2.366493034985478, 48.856070391354834], [2.366288581329743, 48.85610378445621], [2.366091005070904, 48.85613557772405], [2.365893428581795, 48.85616736976545], [2.36568897416126, 48.85620076183941], [2.3654913971688343, 48.85623255411444], [2.365286942245835, 48.85626594460025], [2.365089364760943, 48.856297736209605], [2.364884909313582, 48.856331126905836], [2.3648839817896112, 48.856331299154924], [2.364746909847733, 48.8563602609005], [2.364542453935574, 48.856393651009725], [2.364405381628865, 48.85642261326176], [2.364340173558554, 48.85644319296443], [2.3642890652829323, 48.8564437461629], [2.364275939344624, 48.85646248004303], [2.36415039782932, 48.85650210120386], [2.363971826574198, 48.856557637675515], [2.363781076077585, 48.856617838807956], [2.363602502680385, 48.856673373816136], [2.36341175133336, 48.856733574353655], [2.363233178497647, 48.856789109711464], [2.363042426300211, 48.856849309653924], [2.362863852685304, 48.85690484355551], [2.36267309963736, 48.856965042902985], [2.362494523858294, 48.85702057713968], [2.362303769960046, 48.85708077589221], [2.362125194764575, 48.857136308679856], [2.361934440015824, 48.85719650683736], [2.361755862656182, 48.85725203996018], [2.361754322456889, 48.85725260193302], [2.361578242360807, 48.8573238705413], [2.361408275913603, 48.85739570033205], [2.361232193497718, 48.857466968414705], [2.36106222610666, 48.857538797704656], [2.36088614272282, 48.85761006616822], [2.360716174387899, 48.85768189495744], [2.360715532979092, 48.8576821838194], [2.360573167743002, 48.857750385294516], [2.360407553636719, 48.85782950455029], [2.3602651889468182, 48.85789770655651], [2.360099573904493, 48.857976825375594], [2.359957208419967, 48.85804502610705], [2.359791592441702, 48.85812414448938], [2.35964922477755, 48.85819234573741], [2.359483607874494, 48.858271462783726], [2.359349495994695, 48.85833813759599], [2.359348252893466, 48.85833880815068], [2.359228252136322, 48.85841175398575], [2.359050023865745, 48.85853394826139], [2.358930020878814, 48.85860689377725], [2.358915492101666, 48.85861836358391]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 77, "zemmour_eric": 87.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "3-8", "circ_bv": "05", "num_bureau": 8, "roussel_fabien": 14.0, "nb_emargement": 1082.0, "nb_procuration": 78.0, "nb_vote_blanc": 8.0, "jadot_yannick": 85.0, "le_pen_marine": 45.0, "nb_exprime": 1068.0, "nb_vote_nul": 6.0, "arr_bv": "03", "arthaud_nathalie": 0, "nb_inscrit": 1327.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1082, "quartier_bv": "11", "geo_point_2d": [48.85781506818422, 2.3630394114141278], "melenchon_jean_luc": 207.0, "poutou_philippe": 5.0, "macron_emmanuel": 493.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355495726112641, 48.83138338298704], [2.355475040313477, 48.83138820726329], [2.355302190254232, 48.83133353822748], [2.355119585603904, 48.83127543470548], [2.354946736280108, 48.831220766049796], [2.354764133794304, 48.83116266108724], [2.354591285217284, 48.8311079919124], [2.3544086821492503, 48.83104988729331], [2.354235834330043, 48.83099521669995], [2.354053232053313, 48.830937111532315], [2.353880384980794, 48.83088244041976], [2.3536977848573573, 48.830824334710975], [2.353524938531522, 48.8307696630792], [2.353342337837205, 48.83071155681453], [2.353169492246801, 48.83065688556294], [2.352986892354851, 48.830598777850454], [2.352814047511234, 48.83054410607964], [2.352749437893553, 48.83052354575033], [2.352721686911827, 48.83052008317587], [2.352696088724028, 48.83055048551307], [2.352644271272616, 48.83064440348557], [2.352594803502218, 48.83073470338312], [2.352545335560449, 48.83082500325299], [2.352493518926773, 48.83091892114451], [2.352492743954676, 48.83092274737357], [2.3525103093094, 48.83106156876914], [2.352527361679968, 48.83119025954356], [2.352544415507995, 48.83131894940878], [2.352561981133814, 48.83145777074775], [2.352579035123647, 48.83158646147663], [2.352596600931797, 48.831725282777306], [2.352612365120088, 48.83173341028463], [2.352805113930334, 48.831712698559684], [2.35299448712199, 48.83169295307509], [2.353187236993139, 48.831672240740964], [2.35337660988193, 48.83165249554994], [2.353569358100505, 48.831631781692565], [2.3537587306976873, 48.831612035895844], [2.353951479977038, 48.83159132142926], [2.3541408522824, 48.83157157502677], [2.354155998395169, 48.831577816609176], [2.35420445491035, 48.831681926846414], [2.35424278754748, 48.83177126778399], [2.354281120315997, 48.83186060870216], [2.354329575981705, 48.83196471885503], [2.354322783987427, 48.831975357720296], [2.354150108437715, 48.832033980839896], [2.353981270082598, 48.83208875534232], [2.353808593773323, 48.83214737796293], [2.3536397546921, 48.83220215197771], [2.353467077623162, 48.83226077409931], [2.353298237815837, 48.83231554762645], [2.353125559998294, 48.832374168349745], [2.352956719453808, 48.832428942288566], [2.352950682753803, 48.832432811999496], [2.352875223457899, 48.83252709217573], [2.352797711759813, 48.83261976660815], [2.352722253290133, 48.83271404578019], [2.352644741042119, 48.832806720098006], [2.352569280651751, 48.83290100004976], [2.352491767853801, 48.83299367425299], [2.352481878215719, 48.83299821919255], [2.352287008210524, 48.833017666089475], [2.352097418401245, 48.83303755048574], [2.351902546754536, 48.833056995848885], [2.351712956655571, 48.83307687963502], [2.351523366411874, 48.83309676312031], [2.351328495692036, 48.833116207554546], [2.3513249626061112, 48.83311691238604], [2.351165125568341, 48.83316521397754], [2.351008056475487, 48.833213733631816], [2.350848218847209, 48.83326203479563], [2.350691150541118, 48.83331055313766], [2.350531312322237, 48.83335885387382], [2.3503742420561062, 48.833407372687354], [2.350214403246721, 48.833455672995846], [2.350057332393901, 48.83350419138904], [2.350021247599103, 48.833515073737836], [2.350020691091019, 48.83352922230037], [2.349917882772698, 48.833632907735], [2.3498167788289113, 48.83373611577977], [2.349713969685745, 48.83383980191929], [2.3496128649481802, 48.83394300887331], [2.349510054991375, 48.834046694818376], [2.3494089494375823, 48.834149902480306], [2.3493061386783562, 48.8342535873316], [2.349205032319448, 48.83435679480204], [2.349102222097625, 48.83446048036565], [2.349001113582742, 48.83456368673793], [2.348999355713165, 48.83456633930328], [2.348997798643532, 48.83461421954163], [2.349024274129074, 48.83461928228843], [2.349092808960052, 48.834732303056256], [2.349176836152045, 48.8348652409554], [2.34924537163718, 48.834978261610935], [2.349329399614726, 48.835111199373664], [2.349397937127554, 48.835224219025065], [2.349481965879442, 48.83535715755072], [2.349550502684142, 48.83547017708244], [2.349634532221604, 48.83560311547169], [2.3497030696804853, 48.83571613489114], [2.349715734911371, 48.835721664712004], [2.3499229570996523, 48.83572074236219], [2.350134002968623, 48.83571920637342], [2.350341225139728, 48.83571828329897], [2.350552270986412, 48.83571674657223], [2.350759493140326, 48.83571582277316], [2.350970538964714, 48.83571428530843], [2.351177761101427, 48.83571336078474], [2.35138880555238, 48.835711821675325], [2.351596029034192, 48.8357108964344], [2.351807073451631, 48.835709357486344], [2.352014295553901, 48.83570843151341], [2.352225341311323, 48.8357068918347], [2.352237894365789, 48.835719605830704], [2.352146765124079, 48.83585196421991], [2.352059645409415, 48.83598011991554], [2.351968515259654, 48.83611247813814], [2.351881393309217, 48.8362406336667], [2.351790262251286, 48.836372991722655], [2.351703140789415, 48.836501147098936], [2.351711644615442, 48.83651344077443], [2.35184042265177, 48.83653902326033], [2.351950702851778, 48.83655434973287], [2.352011488359354, 48.83656823970548], [2.3520191460162723, 48.836562795048515], [2.352040904643114, 48.836531371206235], [2.352125174008293, 48.83641021520981], [2.352207256581755, 48.83629166985573], [2.352291523810544, 48.83617051370871], [2.352373606990562, 48.83605196822248], [2.3524578734451023, 48.83593081193232], [2.352539954507032, 48.83581226629913], [2.3526242215497533, 48.83569110987323], [2.352706301855929, 48.83557256410048], [2.352790566762309, 48.83545140752406], [2.352872646301579, 48.83533286251108], [2.352956911807211, 48.835211704899564], [2.353038990590751, 48.83509315974706], [2.353121069012232, 48.834974613626336], [2.353205333350186, 48.83485345670029], [2.353287411015846, 48.834734910440055], [2.353371673217412, 48.83461375336353], [2.353453750127366, 48.83449520696374], [2.353538012917133, 48.83437404975147], [2.353620089060338, 48.83425550411146], [2.353704351087178, 48.83413434585674], [2.353786426474593, 48.83401580007722], [2.353870686365091, 48.83389464167199], [2.353952760996933, 48.83377609575295], [2.354037021464496, 48.83365493811131], [2.354119095351713, 48.833536391153395], [2.354203353682972, 48.83341523336127], [2.354285428176783, 48.83329668627119], [2.354369685734008, 48.83317552833595], [2.354451758110016, 48.83305698109901], [2.354536016255464, 48.83293582302803], [2.3546180878757292, 48.832817275651585], [2.35470234388492, 48.83269611743015], [2.35478441610066, 48.832577570820874], [2.354868671347079, 48.83245641155701], [2.354950741444965, 48.83233786480088], [2.355034997268388, 48.83221670630057], [2.35511706662179, 48.832098158505595], [2.355201320309106, 48.83197699985486], [2.355283388906908, 48.83185845192042], [2.355367643182365, 48.831737293133926], [2.355449711024573, 48.83161874505999], [2.3555339645260602, 48.83149758613042], [2.3555863607667, 48.83148520800616], [2.355593056185604, 48.831447311305276], [2.355597012349995, 48.83142493018507], [2.355539635587149, 48.83140139476936], [2.355495726112641, 48.83138338298704]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 66, "zemmour_eric": 75.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-67", "circ_bv": "09", "num_bureau": 67, "roussel_fabien": 21.0, "nb_emargement": 1192.0, "nb_procuration": 69.0, "nb_vote_blanc": 17.0, "jadot_yannick": 101.0, "le_pen_marine": 51.0, "nb_exprime": 1172.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1490.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1192, "quartier_bv": "52", "geo_point_2d": [48.833669774580414, 2.3522607719973703], "melenchon_jean_luc": 401.0, "poutou_philippe": 7.0, "macron_emmanuel": 377.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.300953292604127, 48.8292082528193], [2.300959726546338, 48.8291889385047], [2.300970868647509, 48.82913251907788], [2.300986673288183, 48.82904737197491], [2.30100153741031, 48.82904211924296], [2.301010410623708, 48.8290289322545], [2.301015747903268, 48.829020999453405], [2.301004262027524, 48.8290021784847], [2.301010731226419, 48.828967328507545], [2.301033004921025, 48.82884733140469], [2.301061808012011, 48.82868473020661], [2.301044098656633, 48.82867512567158], [2.300870982683318, 48.828711974032174], [2.300665348775005, 48.82875565254605], [2.300492232278658, 48.828792499456476], [2.300286597735303, 48.828836177315964], [2.300113479329771, 48.82887302456683], [2.299907844151477, 48.82891670177198], [2.299734726584965, 48.828953547580596], [2.299529090771844, 48.82899722413142], [2.299355972658174, 48.82903407028844], [2.299182854311886, 48.82907091529436], [2.298977217573474, 48.82911459089171], [2.298959756642495, 48.82910405485098], [2.298996573317539, 48.82899606732242], [2.299032462777467, 48.82889259371627], [2.299069279152577, 48.82878460614492], [2.2991051669484133, 48.828681133388784], [2.29914198438572, 48.82857314578265], [2.299177871903779, 48.82846967208586], [2.299174231470574, 48.828461308113205], [2.299073700540446, 48.828394868219824], [2.298973029454431, 48.828328334778895], [2.298872500399143, 48.82826189471647], [2.298771829826669, 48.828195361098295], [2.298768607524477, 48.82819197043158], [2.298724423041154, 48.82810844681337], [2.29863863281314, 48.827947700393125], [2.298594448745066, 48.82786417670862], [2.298594841153079, 48.82785758835682], [2.298675034798687, 48.827737271085404], [2.298756011206252, 48.82761544378393], [2.298836202757449, 48.827495125471216], [2.298917178412201, 48.82737329803427], [2.298997370581189, 48.82725297959551], [2.299078345483236, 48.82713115202317], [2.299158535533654, 48.827010834341664], [2.299239509683011, 48.82688900663392], [2.299319700363115, 48.826768687927085], [2.299400673759787, 48.826646860083905], [2.299480862333546, 48.82652654123509], [2.299561834977545, 48.82640471325653], [2.299642024156926, 48.82628439518094], [2.29972299606034, 48.826162566167646], [2.299803183133308, 48.82604224795007], [2.299884154271991, 48.82592041970072], [2.299964341974647, 48.8258001004578], [2.300045312360684, 48.825678272073006], [2.3001254979570582, 48.825557952688136], [2.300206467590462, 48.825436124167986], [2.300191604071693, 48.82540801606417], [2.300152339893157, 48.82541549578442], [2.300013464704613, 48.82544571882552], [2.299825052865881, 48.82548751002338], [2.2996438507876062, 48.825526944498606], [2.299455438359078, 48.82556873511109], [2.2992742343448143, 48.82560816991479], [2.299085822688535, 48.82564995994989], [2.298904618124502, 48.825689393291334], [2.298716204516491, 48.82573118273316], [2.298535000752556, 48.825770615519694], [2.298346586554664, 48.82581240437613], [2.298173282612131, 48.8258501165806], [2.297984867837113, 48.82589190486416], [2.297811563356465, 48.825929617441076], [2.297623149366173, 48.82597140515985], [2.297449844371839, 48.82600911631058], [2.297261428442278, 48.82605090344849], [2.297172988098034, 48.826070148510674], [2.297111429431896, 48.82608354274451], [2.297084462227847, 48.82608956928347], [2.297031930951003, 48.826101308612635], [2.296843514353418, 48.82614309508866], [2.296674032267035, 48.826180969696175], [2.2964856150946122, 48.826222755605365], [2.29631613250152, 48.82626062880367], [2.296127714754369, 48.826302414146056], [2.29595823164234, 48.82634028683444], [2.295769813320467, 48.826382071609956], [2.295600329677355, 48.826419944687785], [2.295411910780762, 48.82646172889645], [2.295242426630869, 48.82649960056507], [2.295079986790772, 48.826535897329066], [2.294891567058107, 48.82657768071363], [2.294729128080377, 48.826613977905886], [2.294540707784343, 48.82665576073473], [2.294378266969272, 48.82669205654057], [2.294189846109875, 48.826733838813766], [2.2940274061570722, 48.82677013504784], [2.293838984734314, 48.82681191676528], [2.293788032803091, 48.82682330154591], [2.2937381260728, 48.82683445234284], [2.293722402715018, 48.82683796600152], [2.293584189344601, 48.82686884743548], [2.293395767210001, 48.82691062845097], [2.293247176383669, 48.82694382794113], [2.293058753707906, 48.82698560842285], [2.292910162441073, 48.82701880839137], [2.292882731078496, 48.82702493826546], [2.292694307817535, 48.827066718170016], [2.292654283153156, 48.82707565962211], [2.292594593149396, 48.8270889960313], [2.292517736781562, 48.827106167447496], [2.292329312934537, 48.8271479467739], [2.292237555359617, 48.827168447478996], [2.292128218995206, 48.82721442245194], [2.291961521224648, 48.82728317271233], [2.291953469740998, 48.82728655887861], [2.291820556542018, 48.827342447254765], [2.29165385794408, 48.82741119797772], [2.291440330082538, 48.827500983641315], [2.291273629114292, 48.82756973381656], [2.291092533727527, 48.82764588127805], [2.290925833211562, 48.8277146300684], [2.290868078623358, 48.82773891355656], [2.290701377501807, 48.827807662927626], [2.290521417575467, 48.8278833314864], [2.2903547141851393, 48.82795207945804], [2.29017475325725, 48.828027747485415], [2.290008050310016, 48.828096494973074], [2.289828088380477, 48.82817216246911], [2.289661383152223, 48.8282409094566], [2.28948142022103, 48.8283165764212], [2.289314715423718, 48.82838532382402], [2.289233739605233, 48.828419369797736], [2.28912145918092, 48.8284665782405], [2.28895475344166, 48.82853532423308], [2.288883025090792, 48.828565482066246], [2.288872389234268, 48.82858233975855], [2.291122163317581, 48.831355586917205], [2.291125184955413, 48.831356380989334], [2.291136784299235, 48.83134659795708], [2.291159355669369, 48.831339102314274], [2.291321515658338, 48.83127760061514], [2.291497158631168, 48.83121192181387], [2.291659317826105, 48.83115041964979], [2.291834959944842, 48.831084740344984], [2.291997118357858, 48.831023236816584], [2.292172759622498, 48.83095755700829], [2.292334915866982, 48.83089605390621], [2.29251055627753, 48.830830373594345], [2.292672713089962, 48.83076887003535], [2.292848352646517, 48.83070318921999], [2.2928496075481872, 48.83070276853596], [2.292920974367815, 48.8306818347564], [2.292948245761853, 48.83067629123018], [2.292949889955084, 48.83067378449118], [2.293069681530147, 48.830638647914974], [2.2932480329976013, 48.83058658832922], [2.29343919057574, 48.830530517360046], [2.293617541304263, 48.830478457218256], [2.293808698088477, 48.830422385653094], [2.293987046703719, 48.83037032584654], [2.29417820269411, 48.83031425368541], [2.294356551944766, 48.83026219243153], [2.294547707141122, 48.830206119674436], [2.294726055652839, 48.83015405786456], [2.294917208693097, 48.83009798450346], [2.295095556453712, 48.830045923036806], [2.295286710062197, 48.82998984908779], [2.295465057096028, 48.82993778616585], [2.29564340377364, 48.82988572297555], [2.295834556205452, 48.8298296481429], [2.295846806928189, 48.82983004404842], [2.295976505148007, 48.82987860865679], [2.29610381434879, 48.82992635771431], [2.296233513047641, 48.82997492203973], [2.2963608213567612, 48.83002267081159], [2.296371123313251, 48.83002353006929], [2.296560691845031, 48.82998951370464], [2.296750560915082, 48.82995541606431], [2.296940128939466, 48.82992139999547], [2.29712999751337, 48.82988730175073], [2.297319566416665, 48.82985328418709], [2.297509434494307, 48.829819185337946], [2.29769900152805, 48.82978516806213], [2.29788886910943, 48.82975106860852], [2.298078435660106, 48.82971704982992], [2.298268304107261, 48.82968294977987], [2.298457870150539, 48.82964893129713], [2.298647736739265, 48.82961483063467], [2.298837302299347, 48.82958081064914], [2.299027169754036, 48.829546709390215], [2.299216734806618, 48.82951268970052], [2.299406600402868, 48.8294785878292], [2.299596164972227, 48.82944456663676], [2.29978603143432, 48.82941046416896], [2.299975595496383, 48.829376443272366], [2.300165460099925, 48.829342340192206], [2.300355023678738, 48.829308317792815], [2.300544889148106, 48.82927421411622], [2.30073445221952, 48.829240192012676], [2.300924315830531, 48.82920608772369], [2.300953292604127, 48.8292082528193]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 78, "zemmour_eric": 84.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-49", "circ_bv": "13", "num_bureau": 49, "roussel_fabien": 13.0, "nb_emargement": 1154.0, "nb_procuration": 29.0, "nb_vote_blanc": 14.0, "jadot_yannick": 53.0, "le_pen_marine": 117.0, "nb_exprime": 1134.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1645.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1155, "quartier_bv": "57", "geo_point_2d": [48.828453709320705, 2.2947591572166286], "melenchon_jean_luc": 421.0, "poutou_philippe": 11.0, "macron_emmanuel": 303.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.320568806865964, 48.8484405218138], [2.32058335458203, 48.84844078519902], [2.320738333013432, 48.84851981423499], [2.320898236287368, 48.84860066074361], [2.321053215671739, 48.84867968936034], [2.321213121275676, 48.84876053634355], [2.321368100250369, 48.84883956453332], [2.321528006845092, 48.84892041018477], [2.321682986772757, 48.84899943795536], [2.321842894334849, 48.84908028407362], [2.3219978765781573, 48.849159311432686], [2.322157783768367, 48.84924015621151], [2.322312766964559, 48.84931918315131], [2.322472675122254, 48.84940002839697], [2.322627659271436, 48.84947905491752], [2.322787569782583, 48.849559898839125], [2.322942553522081, 48.849638924932755], [2.323102465000635, 48.84971976932117], [2.323257449693128, 48.84979879499556], [2.323335461030223, 48.84983823334467], [2.323353438390207, 48.84984643104906], [2.323399181938817, 48.84981453764168], [2.323515362787826, 48.849705866662326], [2.323632619942768, 48.84959665393683], [2.323748799807653, 48.849487983608846], [2.323866054620447, 48.849378770625535], [2.323982233512694, 48.84927010004962], [2.324099488720358, 48.849160885924576], [2.324215666640173, 48.849052215100734], [2.324332920856714, 48.848943001624804], [2.324449097803909, 48.848834330553004], [2.324566349690107, 48.84872511592], [2.324682525664792, 48.84861644460032], [2.324799777922451, 48.848507230624115], [2.324815117274028, 48.84850087867014], [2.324815951634153, 48.84849043730847], [2.324912385720108, 48.84838474813583], [2.325008171517511, 48.84827984216057], [2.325104604812286, 48.848174153712314], [2.32520038983567, 48.84806924756333], [2.325296822350925, 48.84796355894015], [2.325392606600297, 48.84785865261744], [2.3254890383360403, 48.847752963819374], [2.3255848218114092, 48.84764805732295], [2.325681252779285, 48.84754236745067], [2.325777035480658, 48.84743746078051], [2.3258734656574003, 48.84733177163265], [2.325969247584786, 48.847226864788794], [2.326065676982042, 48.84712117546603], [2.326161458135347, 48.84701626844844], [2.32616269784292, 48.84701450278953], [2.326195228963069, 48.84695160210109], [2.326233396568607, 48.84687696230052], [2.326232587814789, 48.84686995351845], [2.326224667903101, 48.84686131191883], [2.326193862658783, 48.84686398490589], [2.326009528238187, 48.84687877894695], [2.325823472738585, 48.84689367092927], [2.325639138107845, 48.846908464399256], [2.325453083770672, 48.8469233549136], [2.325268748929801, 48.84693814781249], [2.325082693006576, 48.84695303864203], [2.324898357955576, 48.846967830969895], [2.324712301832201, 48.84698272032374], [2.324527966571186, 48.846997512080534], [2.324341911586874, 48.84701240176496], [2.324330658174843, 48.84701842059321], [2.3242617345836782, 48.84715149387397], [2.324192044441626, 48.8472866969556], [2.324123120141703, 48.847419770124496], [2.324053429292944, 48.847554972193535], [2.323984504284254, 48.847688045250514], [2.323914812705347, 48.847823248105556], [2.3238458869879812, 48.8479563210506], [2.323776194690681, 48.84809152379235], [2.323754577648797, 48.84809553956757], [2.323593304229819, 48.84800696360011], [2.323441137799681, 48.84792273245389], [2.323279865459901, 48.84783415515085], [2.3231276986783262, 48.84774992358523], [2.322975532388543, 48.84766569181968], [2.32281426299821, 48.847577113876376], [2.322799091215022, 48.84756260314449], [2.322783913349471, 48.847563136891765], [2.322619070823947, 48.84748111907503], [2.322455493780983, 48.847399595642806], [2.322290650927112, 48.84731757735382], [2.322127076285438, 48.84723605256904], [2.321962234454038, 48.847154034714826], [2.321798660839439, 48.847072509469065], [2.321633820053903, 48.84699049025103], [2.321470246092167, 48.84690896543586], [2.321450398812175, 48.84691146281852], [2.321349964141064, 48.84702025285342], [2.321250689959504, 48.84712737656666], [2.321150254443574, 48.84723616731209], [2.3210509794402983, 48.84734329083888], [2.320950544465685, 48.84745208050403], [2.3208512686287692, 48.84755920474361], [2.320750831458516, 48.847667994212316], [2.320651554799864, 48.84777511826544], [2.320551116796578, 48.84788390754535], [2.320451839327705, 48.8479910305127], [2.320351401842285, 48.84809982051091], [2.320252123551564, 48.84820694329176], [2.320207549064037, 48.84824455312975], [2.320224297001298, 48.84825509346734], [2.320373891558809, 48.84832785623627], [2.320528869336624, 48.848406885551576], [2.320568806865964, 48.8484405218138]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 93, "zemmour_eric": 100.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "6-15", "circ_bv": "11", "num_bureau": 15, "roussel_fabien": 6.0, "nb_emargement": 1010.0, "nb_procuration": 75.0, "nb_vote_blanc": 6.0, "jadot_yannick": 70.0, "le_pen_marine": 40.0, "nb_exprime": 1002.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1257.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1010, "quartier_bv": "23", "geo_point_2d": [48.8481845702576, 2.3230725431617003], "melenchon_jean_luc": 145.0, "poutou_philippe": 5.0, "macron_emmanuel": 506.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389940400511669, 48.84448091678009], [2.389938135390956, 48.84449690390041], [2.389842588389773, 48.844576116788275], [2.389709408369775, 48.844683494361824], [2.389584347348115, 48.84478717367826], [2.389451167629919, 48.84489455005164], [2.38932610558807, 48.844998229078534], [2.38924075109152, 48.845067045655014], [2.3892393193734582, 48.84507270879246], [2.389265149352521, 48.84509119114008], [2.38942474450781, 48.845156404230764], [2.389585926630794, 48.84522239145211], [2.3897455225892412, 48.84528760410724], [2.389906706886717, 48.84535359089554], [2.390066303648325, 48.84541880311508], [2.390227487384624, 48.84548479035579], [2.390387084960014, 48.84555000124044], [2.390548270870718, 48.845615988048145], [2.3907078692387502, 48.845681199396495], [2.390869055972001, 48.845747184864955], [2.391028655143094, 48.84581239577765], [2.391189841325683, 48.84587838079925], [2.391349441299938, 48.845943591276345], [2.39151062964654, 48.846009576764196], [2.39167023042396, 48.84607478680571], [2.391831418230399, 48.84614077094739], [2.391991019811084, 48.84620598055323], [2.392152209791943, 48.84627196426187], [2.392157259320956, 48.84628357092305], [2.392116390222961, 48.84633850457914], [2.392076147811773, 48.84637521955531], [2.3920619875684013, 48.846391296433936], [2.39209202972363, 48.846413290844204], [2.392254518021471, 48.846489414936094], [2.392410290511968, 48.84656200799847], [2.392566062073819, 48.84663460084638], [2.392728551754194, 48.84671072427937], [2.392884325566385, 48.846783316710145], [2.393046816164852, 48.846859440600014], [2.393202589502371, 48.846932032599796], [2.393365082402395, 48.84700815515484], [2.393520856627751, 48.84708074673052], [2.393683350456451, 48.84715686884319], [2.393702976600982, 48.84715410205969], [2.393795032194027, 48.847051027582324], [2.393903205454942, 48.84692800603996], [2.393995260242237, 48.846824932286914], [2.394103432571553, 48.846701909639215], [2.394195486563463, 48.84659883571123], [2.394303657940378, 48.84647581375686], [2.394395711147367, 48.84637273875456], [2.394428562919461, 48.846335377632904], [2.394451035954097, 48.84632458040023], [2.394454143403128, 48.84631479585001], [2.394529461994224, 48.84622913479364], [2.394605842350012, 48.84614518963205], [2.39461052185924, 48.84613285886096], [2.394568614718309, 48.84611469115559], [2.39438735140325, 48.84603020917274], [2.394204084914761, 48.84594496400158], [2.394022821418461, 48.845860481446636], [2.393839556123082, 48.84577523570414], [2.393658295170515, 48.845690752590954], [2.393475031068237, 48.84560550627705], [2.3934472468027073, 48.845597785639036], [2.393430190396993, 48.84560928197201], [2.393411022777196, 48.84563802894362], [2.393384707043861, 48.845675060511375], [2.393364385139732, 48.84567852881097], [2.393210806559486, 48.84560522497161], [2.393057387858573, 48.8455315682921], [2.392903811505681, 48.84545826405592], [2.392750392319274, 48.845384606066844], [2.392596816831254, 48.84531130142689], [2.39244339851126, 48.8452376430344], [2.392289823888111, 48.84516433799071], [2.392136407797294, 48.84509067920181], [2.391982832676446, 48.845017373747424], [2.391829417452032, 48.84494371455512], [2.391675843196052, 48.844870408697055], [2.39152242883824, 48.84479674910135], [2.391368855447127, 48.84472344283953], [2.39121544195571, 48.84464978284048], [2.391061869429563, 48.844576476174936], [2.390908456804642, 48.84450281577251], [2.390754885143254, 48.8444295087032], [2.390601473384926, 48.84435584789744], [2.390447903950943, 48.84428254043137], [2.390294491696457, 48.84420887921528], [2.390275840156136, 48.844210530709084], [2.390150781396228, 48.844314210661565], [2.389988064400653, 48.84444833597669], [2.389958551423595, 48.84447280270041], [2.389940400511669, 48.84448091678009]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 96, "zemmour_eric": 78.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "12-18", "circ_bv": "08", "num_bureau": 18, "roussel_fabien": 19.0, "nb_emargement": 1151.0, "nb_procuration": 82.0, "nb_vote_blanc": 17.0, "jadot_yannick": 145.0, "le_pen_marine": 44.0, "nb_exprime": 1130.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1432.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "46", "geo_point_2d": [48.845662280944055, 2.3920041059342076], "melenchon_jean_luc": 322.0, "poutou_philippe": 4.0, "macron_emmanuel": 360.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.396791362821551, 48.89609517260848], [2.396784383584798, 48.89609339458206], [2.396600714117372, 48.89605445076022], [2.3964160351020602, 48.89601625519176], [2.396232367556625, 48.89597730990994], [2.396047689085182, 48.89593911377077], [2.395864020723526, 48.89590016791438], [2.395679342795958, 48.89586197120449], [2.39549567633544, 48.895823025686596], [2.39531099895175, 48.895784828406], [2.395127331685463, 48.895745881414314], [2.39494265620955, 48.895707683569924], [2.394758989490959, 48.89566873601057], [2.394574313195045, 48.895630537588595], [2.394390648377582, 48.895591590367744], [2.394205972625563, 48.895553391375074], [2.394022307002375, 48.89551444268042], [2.393837633158145, 48.89547624312395], [2.393653968072194, 48.89543729476095], [2.393469293418561, 48.89539909372759], [2.393285630244101, 48.89536014480384], [2.393100956123906, 48.89532194409908], [2.393096582015605, 48.895320419174936], [2.392941890854176, 48.895239822630764], [2.392787433616133, 48.895160728023036], [2.392632743407741, 48.8950801310678], [2.392478287123593, 48.89500103515054], [2.392323597868236, 48.89492043778424], [2.392169142516992, 48.89484134235603], [2.392014454214665, 48.89476074457865], [2.391859999806812, 48.89468164874017], [2.391705312457508, 48.89460105055173], [2.391550859003654, 48.894521953403746], [2.391396171243415, 48.89444135479733], [2.391241720086297, 48.894362258145314], [2.391087033279079, 48.89428165912783], [2.390932581712003, 48.89420256115938], [2.390777897211134, 48.894121962637065], [2.39062344658744, 48.894042864258374], [2.390468996422504, 48.89396376657402], [2.390314313359257, 48.89388316653608], [2.390159864148224, 48.89380406754229], [2.390005182037982, 48.893723467093274], [2.389850733759786, 48.89364436858849], [2.389696052602542, 48.8935637677285], [2.389541605278251, 48.893484667914265], [2.389386925063459, 48.893404067542434], [2.389232478682531, 48.89332496731799], [2.389077799431275, 48.89324436563592], [2.388923353983155, 48.893165265900514], [2.388768675684887, 48.8930846638074], [2.388614231190677, 48.893005562762546], [2.388459552481676, 48.89292496025148], [2.388305108920156, 48.89284585969566], [2.3881504325279552, 48.8927652567805], [2.387995989909776, 48.892686155814545], [2.387841314470549, 48.89260555248839], [2.387686872806286, 48.89252645021295], [2.387532198320031, 48.892445846475795], [2.38737775758853, 48.89236674468943], [2.387223084055241, 48.89228614054126], [2.387218226996914, 48.892277131490715], [2.387252952089089, 48.892174234641445], [2.387294384529638, 48.89204803835974], [2.387329109318523, 48.89194514146689], [2.387358959119156, 48.891854221928725], [2.3873429519077343, 48.8918354207025], [2.387317788118744, 48.89183351669899], [2.387161532880739, 48.891756500708816], [2.3870066216531782, 48.89168016587664], [2.386850367335639, 48.89160314946966], [2.386695458384296, 48.891526814231256], [2.386539204987217, 48.891449797407496], [2.386384295584521, 48.89137346174894], [2.386228044471678, 48.891296444515355], [2.386073135981409, 48.891220108443605], [2.385916884425244, 48.89114309078626], [2.3857619768474, 48.89106675430129], [2.385605727575455, 48.890989736234175], [2.385450820910032, 48.890913399336036], [2.385294571194767, 48.89083638084516], [2.385139665441762, 48.89076004353382], [2.384983418010703, 48.89068302463317], [2.384828513170111, 48.89060668690868], [2.384672265295734, 48.89052966758424], [2.384517361367555, 48.89045332944657], [2.384361115777368, 48.89037630971241], [2.384206212761597, 48.89029997116156], [2.384049966728093, 48.890222951003615], [2.383895065988472, 48.8901466120466], [2.38385292493042, 48.890133891054944], [2.383829371157407, 48.8901509055161], [2.383796143312996, 48.89016289874331], [2.383783272141423, 48.89016297819683], [2.383699828548431, 48.890141245638134], [2.383572239463769, 48.8900972137351], [2.383566386453093, 48.89008519655411], [2.383592936042711, 48.89005048453787], [2.383615553431541, 48.890012343846635], [2.383611014654221, 48.890001864076496], [2.383427654784418, 48.88991153024484], [2.383250158141372, 48.88982030631564], [2.383215754067362, 48.88978803412899], [2.383194902707396, 48.88979151231701], [2.383136540411443, 48.88984193519075], [2.382983703048017, 48.8899740017625], [2.382876826818519, 48.89006634007815], [2.382860348206879, 48.8900724199966], [2.382851421078227, 48.89008804105964], [2.382861158111063, 48.890108336759646], [2.382893789649449, 48.89012538429102], [2.383047184322315, 48.89019978954806], [2.383191476769014, 48.89027297949734], [2.383335768257503, 48.890346169260816], [2.383489165565472, 48.890420574843006], [2.38363345788151, 48.89049376423794], [2.38378685606023, 48.89056816852951], [2.383931149203716, 48.890641357555836], [2.384084548242643, 48.89071576145605], [2.38422884221358, 48.89078895011387], [2.384382242102083, 48.890863354521954], [2.384385654612406, 48.89086575796277], [2.384401238860686, 48.89089368733311], [2.384411257937995, 48.8908971121905], [2.384519131839408, 48.89100849353443], [2.384621535469022, 48.891113331980854], [2.384729410257579, 48.89122471401269], [2.384831813372154, 48.89132955225163], [2.384939689069016, 48.8914409331728], [2.385042094396008, 48.891545771218205], [2.385144500135283, 48.89165060916606], [2.385252377166304, 48.89176198977296], [2.385354782390445, 48.89186682751332], [2.385462660308654, 48.8919782088081], [2.385565067745251, 48.89208304635492], [2.38567294657189, 48.89219442653904], [2.385775354857162, 48.892299263885384], [2.385883234571017, 48.89241064475737], [2.385879215385843, 48.89242300686737], [2.385691784062375, 48.89250400042269], [2.385522188857686, 48.892582333291564], [2.385334755041384, 48.89266332626926], [2.385165158769972, 48.89274165952039], [2.385159479783888, 48.89274776551449], [2.3851295229708382, 48.89288745215279], [2.385097356599367, 48.89302620741798], [2.385067399459447, 48.89316589400522], [2.385035234103605, 48.89330465012477], [2.385005276647329, 48.89344433576178], [2.384973109590179, 48.893583091822364], [2.384966324099734, 48.89358956713595], [2.384776579100453, 48.89366008465314], [2.384597141990959, 48.893726212209856], [2.384417703072559, 48.89379233858742], [2.384227956591162, 48.89386285522227], [2.384048518086156, 48.8939289819447], [2.383858770606763, 48.89399949798583], [2.383841161437521, 48.89399705926414], [2.383758506988409, 48.8939243809615], [2.383665442139626, 48.893847206385715], [2.383582789526987, 48.893774528858145], [2.3834897252065153, 48.893697354135256], [2.383466140125329, 48.8937000502745], [2.383416143747702, 48.893796788807094], [2.38338323545663, 48.89386474269886], [2.383384314243352, 48.893872118164175], [2.383492051205535, 48.89399597564193], [2.383609513978706, 48.89412266016036], [2.383607553039173, 48.89413368919186], [2.383456448616909, 48.89423397574938], [2.3833194803096722, 48.89432818267486], [2.383182512881282, 48.894422388543376], [2.383031406791785, 48.89452267543741], [2.382894438330503, 48.894616880959724], [2.38274333112165, 48.89471716747247], [2.382724411601127, 48.89471744137064], [2.382563588344027, 48.89461969645863], [2.382402608946045, 48.89452113753061], [2.3822417868886783, 48.89442339306818], [2.382080808706814, 48.89432483368992], [2.382075707857555, 48.89432286394416], [2.381947208584781, 48.89429558551188], [2.381805895343431, 48.89426728481729], [2.381677396349193, 48.89424000609413], [2.381536083394774, 48.894211705979], [2.381529498835214, 48.894208801350246], [2.381391464885581, 48.89409773668441], [2.381253193755154, 48.8939877426067], [2.381115162334041, 48.89387667850623], [2.380976892374398, 48.89376668408736], [2.380953771552471, 48.89374993527454], [2.380912604704095, 48.893770145076665], [2.380789205587458, 48.89383209242253], [2.380668338633374, 48.89389716167803], [2.3805449389250732, 48.893959108765], [2.380424071370753, 48.89402417776638], [2.380396456832899, 48.89403685826699], [2.380406866107511, 48.89406024403235], [2.380446235731413, 48.89409115493694], [2.380581267826798, 48.89419688121445], [2.380704752907599, 48.894293834121946], [2.380711719240031, 48.89429674616621], [2.380880164835127, 48.89432603738663], [2.381078617032354, 48.894360812812764], [2.381247063041034, 48.8943901035154], [2.381445515727514, 48.89442487833151], [2.38145080418739, 48.89444044495729], [2.381289023625215, 48.89453038094343], [2.381148571100713, 48.89460853345118], [2.380986789483473, 48.89469846991453], [2.380846334687987, 48.894776622048795], [2.380705879481534, 48.89485477311348], [2.38054409633444, 48.89494470895854], [2.380403641573933, 48.89502286056308], [2.380241857382547, 48.89511279598605], [2.380101400361739, 48.89519094631782], [2.379939615125954, 48.895280881318676], [2.379799157187402, 48.89535903218323], [2.379637370917823, 48.89544896586268], [2.379496913435912, 48.895527116367795], [2.3793992089512512, 48.89558142884311], [2.379385042976216, 48.895580056817515], [2.379356693697776, 48.89559936122369], [2.379292610806674, 48.89563498288173], [2.379185401118415, 48.89567517700018], [2.379169641448073, 48.89570622335428], [2.379181314136344, 48.89572063606315], [2.379372299727729, 48.89572718825845], [2.379575065952333, 48.895733843449676], [2.37976605301622, 48.89574039412478], [2.379968819342585, 48.895747048649234], [2.380159805129956, 48.895753599588495], [2.380362571558073, 48.895760253446184], [2.380553557454022, 48.89576680285818], [2.380756323973184, 48.89577345694841], [2.38094731133109, 48.895780005739454], [2.381150077962682, 48.895786658263646], [2.38134106404386, 48.89579320731888], [2.381543830777175, 48.89579985917629], [2.381734816967085, 48.895806406704224], [2.381937583802111, 48.89581305789494], [2.382128571443073, 48.89581960570118], [2.382331338379904, 48.8958262562251], [2.382522324765571, 48.895832802497], [2.38272509180399, 48.89583945235418], [2.382916078277014, 48.895845998897336], [2.3831188454171173, 48.89585264808777], [2.383309833362499, 48.89585919311063], [2.383500819981458, 48.89586573872111], [2.38370358727311, 48.89587238692141], [2.383713932889989, 48.895876072500386], [2.383793148865143, 48.89594969346584], [2.38390740365309, 48.89605306414974], [2.383986620160484, 48.89612668587458], [2.38406361144659, 48.89619634180388], [2.384067906935646, 48.896222712055334], [2.3841036729315, 48.896231578895744], [2.384140935903891, 48.89626529252924], [2.384259236663561, 48.896371048847634], [2.384373491937801, 48.89647441904009], [2.384491793655792, 48.896580174209305], [2.384606049850611, 48.89668354416015], [2.384724352516194, 48.896789299079444], [2.384838609631805, 48.896892668788645], [2.384956913234366, 48.89699842435731], [2.385071171270577, 48.89710179382488], [2.385189474467546, 48.897207548237326], [2.385303734788396, 48.897310917470314], [2.385417995562975, 48.897414286584535], [2.385536300174451, 48.89752004062421], [2.385650560505918, 48.89762340948975], [2.385768867418353, 48.89772916418575], [2.385883128670453, 48.89783253280967], [2.386001436541143, 48.89793828635643], [2.386055899986467, 48.89796431563725], [2.386072323672078, 48.89795728985101], [2.386268710150409, 48.897963840688256], [2.386469477049577, 48.897970114172146], [2.386665863626355, 48.89797666435801], [2.386866630622829, 48.897982937176074], [2.387063018661895, 48.897989486717634], [2.3872637857556662, 48.897995758869854], [2.387460172539587, 48.898002306853826], [2.387660939720166, 48.89800857923943], [2.3878573266023952, 48.8980151265721], [2.388058095254677, 48.89802139739957], [2.388254482224739, 48.89802794498018], [2.388455249610336, 48.89803421513485], [2.388651636678693, 48.898040762064156], [2.388852404161546, 48.89804703155298], [2.389048792692042, 48.898053577837864], [2.3892495602722432, 48.89805984666084], [2.389445947537063, 48.89806639228749], [2.389646715214501, 48.898072660444605], [2.3898431025775873, 48.898079205419904], [2.390043871716103, 48.89808547291814], [2.390240259188082, 48.89809201634286], [2.390441027049326, 48.898098284067544], [2.390637414619545, 48.89810482684095], [2.39083818395248, 48.89811109300746], [2.391034571610306, 48.89811763602876], [2.391235339676584, 48.89812390152249], [2.391431727432637, 48.898130443892526], [2.391632495596099, 48.898136708720415], [2.39182888345037, 48.898143250439105], [2.392029653074864, 48.898149514608036], [2.392226041027445, 48.8981560556754], [2.392426809385148, 48.898162319171576], [2.392623197446418, 48.898168858688315], [2.392823967254741, 48.89817512242484], [2.393020355414091, 48.89818166129027], [2.393221123955712, 48.89818792435399], [2.393417512213234, 48.89819446256809], [2.393618280862369, 48.898200724066726], [2.393814669207679, 48.89820726252877], [2.394015439317896, 48.89821352336844], [2.394211827761366, 48.89822006117914], [2.394412596604742, 48.898226321346044], [2.394608985146258, 48.89823285850543], [2.394809755450798, 48.8982391180134], [2.395006144090454, 48.89824565452142], [2.395206913128029, 48.89825191335665], [2.395403301876359, 48.898258448314124], [2.395417345446784, 48.89826869583843], [2.395441712244767, 48.8982719835273], [2.395488009930854, 48.89824588443623], [2.395494519081986, 48.898235306294154], [2.395567108048955, 48.89811886625536], [2.395662101739528, 48.89796448746982], [2.395734689964518, 48.89784804640137], [2.395787702117896, 48.89776189162648], [2.395840715449425, 48.8976757377275], [2.395913302872333, 48.89755929652006], [2.395928814857915, 48.89753408785735], [2.396001401886284, 48.897417646581495], [2.396071254059502, 48.89730412142453], [2.3961411072920162, 48.897190596221925], [2.396213693366667, 48.897074154780846], [2.396283544616106, 48.89696062946448], [2.396356130051665, 48.89684418791259], [2.396425982045889, 48.896730662496196], [2.396498566842157, 48.896614220833506], [2.396568416853334, 48.896500695303295], [2.396641001000003, 48.89638425442909], [2.396710851766392, 48.89627072789956], [2.39678343527389, 48.89615428691458], [2.396800556226788, 48.89612645931635], [2.396791362821551, 48.89609517260848]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 23, "zemmour_eric": 67.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-45", "circ_bv": "16", "num_bureau": 45, "roussel_fabien": 25.0, "nb_emargement": 1148.0, "nb_procuration": 35.0, "nb_vote_blanc": 19.0, "jadot_yannick": 63.0, "le_pen_marine": 64.0, "nb_exprime": 1121.0, "nb_vote_nul": 8.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1634.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1148, "quartier_bv": "74", "geo_point_2d": [48.89547483389237, 2.388428973589931], "melenchon_jean_luc": 606.0, "poutou_philippe": 4.0, "macron_emmanuel": 225.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3729456214636713, 48.831656834844736], [2.372940290452956, 48.831638296973736], [2.3727812867407, 48.831546608029456], [2.372630776716023, 48.83145802756934], [2.372627449110621, 48.831455049389774], [2.3725441334537702, 48.83133308590601], [2.372459756206983, 48.83121107360904], [2.372376441343103, 48.831089109082626], [2.372292063510761, 48.83096709753299], [2.372208749429121, 48.83084513286318], [2.372124373746332, 48.83072312117578], [2.372041060446918, 48.83060115636262], [2.37195668418929, 48.830479144523245], [2.3718733730342763, 48.830357179573866], [2.371788997563884, 48.830235167589606], [2.371705685829, 48.830113202489706], [2.37162131251895, 48.829991189468444], [2.37153800155532, 48.829869225124554], [2.3714536276705243, 48.82974721195126], [2.371454108105155, 48.82973911294182], [2.371493605673423, 48.82969212422001], [2.371519279614275, 48.82965381192367], [2.371533312908143, 48.82963756837731], [2.371515608358946, 48.82962522950378], [2.371471908840267, 48.82961105600414], [2.371281367449566, 48.82954976064074], [2.37111495297844, 48.82949578860788], [2.371108201870749, 48.829494880717704], [2.370911071100206, 48.82950073673825], [2.370703455801594, 48.829508241575525], [2.370506324935069, 48.82951409692887], [2.370298710876285, 48.82952160196993], [2.370101578562492, 48.82952745574959], [2.369893964392245, 48.829534960087976], [2.369891943480717, 48.82953513381174], [2.369700186844401, 48.82956134284384], [2.369542765311841, 48.82958289395387], [2.369531846080315, 48.82958128857441], [2.369358847468724, 48.829495856243305], [2.369185693816104, 48.82940988680923], [2.369012696351331, 48.829324453065], [2.368839543838821, 48.82923848311663], [2.368666548861342, 48.82915304976516], [2.368493396137783, 48.829067078396044], [2.368476842836014, 48.82906716906344], [2.368385607446105, 48.82911405987539], [2.36828953433385, 48.82916210324075], [2.368270329110338, 48.829160255216514], [2.368248731017207, 48.829140827119545], [2.368221726347309, 48.829120273223936], [2.368204158419266, 48.829115848144035], [2.368188176242491, 48.82912164020866], [2.368065894194296, 48.829204277773016], [2.367905933441979, 48.82931057550608], [2.367783650503231, 48.82939321276793], [2.367623688595614, 48.82949951010561], [2.367501404766309, 48.82958214706493], [2.367341441692671, 48.82968844490651], [2.367219156983715, 48.82977108066403], [2.367215359466623, 48.82977834458062], [2.367231867067876, 48.829877881707326], [2.367250776728346, 48.82997211264957], [2.36724938286185, 48.829977412464764], [2.367162074364249, 48.83008931345572], [2.367074566740464, 48.83019559315009], [2.367062534311531, 48.83021330194462], [2.367091622250232, 48.830224406621845], [2.367273872239942, 48.830305101077876], [2.367477029528542, 48.83039272485173], [2.367481196791577, 48.83040494955517], [2.367413531387475, 48.83047792008019], [2.367344518270089, 48.83054844254182], [2.367346957237488, 48.830560071716285], [2.367438454213799, 48.83061326869713], [2.367505891015373, 48.830649198160145], [2.367515336940862, 48.830651437182105], [2.367668534703628, 48.83064814611729], [2.367822606316929, 48.83064558616681], [2.367975804043, 48.8306422947084], [2.368129875623917, 48.83063973436209], [2.368134663451183, 48.830640223732374], [2.368301018014193, 48.830676369515864], [2.368474953637306, 48.83071600957854], [2.368641308678091, 48.830752154886284], [2.368815246175001, 48.830791794458555], [2.368981601693558, 48.8308279392906], [2.369155538339879, 48.83086757835811], [2.369321894336205, 48.83090372271438], [2.369495831494225, 48.830943361284326], [2.369501238798291, 48.83095807470772], [2.369344016180412, 48.83106676208326], [2.369185544228481, 48.83117101595606], [2.369185300772604, 48.83118359236284], [2.369341027158842, 48.83129142605719], [2.369488418390165, 48.8313909305987], [2.369644144671537, 48.83149876297197], [2.369791538429856, 48.83159826712872], [2.369792762519096, 48.831599217916896], [2.369903445628308, 48.831698317130744], [2.370014332577325, 48.83179557629539], [2.370125016524745, 48.831894675286804], [2.370235905667042, 48.83199193423616], [2.370346793871744, 48.83208919216782], [2.370457479074581, 48.832188290825556], [2.370568369461719, 48.83228554944121], [2.370679055502584, 48.83238464787651], [2.370789945369528, 48.8324819053632], [2.370900632237673, 48.83258100447541], [2.370917982208525, 48.832601912522655], [2.370937966091881, 48.83260109847515], [2.370995125732302, 48.83256664658415], [2.371015607284513, 48.83254998916165], [2.371019145573592, 48.83254013359861], [2.370951623118552, 48.83242363488947], [2.370883283704493, 48.832310851621585], [2.370815761850054, 48.8321943528119], [2.370747421668383, 48.832081569436156], [2.370679901776659, 48.831965070533066], [2.370611562189494, 48.831852287056584], [2.370615696461728, 48.83184192739108], [2.370756571170868, 48.831767455265265], [2.370867297818724, 48.831714016233384], [2.370883347066266, 48.831713543945014], [2.371034058427359, 48.83177960924236], [2.371184359959288, 48.83184557505734], [2.371335070732188, 48.831911639061126], [2.371485373025581, 48.83197760449004], [2.371636085923976, 48.83204366811391], [2.371786388968101, 48.832109634056096], [2.371804422284316, 48.83210787967155], [2.371955708242993, 48.83198724945197], [2.372103915804055, 48.831868453772614], [2.372255199012659, 48.83174782314129], [2.372403405199723, 48.83162902796475], [2.372415636140215, 48.83162582383589], [2.372551803314069, 48.83163570643683], [2.372795757460938, 48.83165615516354], [2.372931924775362, 48.83166603823075], [2.3729456214636713, 48.831656834844736]]], "type": "Polygon"}, "properties": {"lassalle_jean": 23.0, "pecresse_valerie": 75, "zemmour_eric": 83.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "13-28", "circ_bv": "09", "num_bureau": 28, "roussel_fabien": 31.0, "nb_emargement": 1459.0, "nb_procuration": 53.0, "nb_vote_blanc": 23.0, "jadot_yannick": 104.0, "le_pen_marine": 92.0, "nb_exprime": 1427.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 10, "nb_inscrit": 1778.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1459, "quartier_bv": "50", "geo_point_2d": [48.830568010216496, 2.370037714546719], "melenchon_jean_luc": 481.0, "poutou_philippe": 16.0, "macron_emmanuel": 451.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323298353092091, 48.86618323506923], [2.323241337846547, 48.86620715816203], [2.323062480297958, 48.866263539348815], [2.322884769436145, 48.86632008144257], [2.322705912476958, 48.8663764620985], [2.322528200843021, 48.86643300365699], [2.322349341735414, 48.866489384665904], [2.32217162932925, 48.866545925689245], [2.321992769459732, 48.86660230526024], [2.321815057644364, 48.86665884575607], [2.321636197001345, 48.866715224788486], [2.321458483050638, 48.86677176474142], [2.321279621634015, 48.86682814323518], [2.32110190691109, 48.86688468265286], [2.320923046072275, 48.86694106151506], [2.320745330577133, 48.866997600397546], [2.320566467613311, 48.86705397781411], [2.320388751345955, 48.86711051616136], [2.320209888971673, 48.867166893047035], [2.320032171932108, 48.867223430859084], [2.319853307421099, 48.86727980719837], [2.319675589597581, 48.86733634537447], [2.319496724312978, 48.86739272117514], [2.319319007092135, 48.86744925792447], [2.319140141033947, 48.8675056331865], [2.318962421677759, 48.86756216939284], [2.318784701935817, 48.86761870533244], [2.318605834717594, 48.86767507978737], [2.318428114191684, 48.867731616090964], [2.318249247563025, 48.86778799001502], [2.318071526276682, 48.86784452488412], [2.317892657511292, 48.86790089826176], [2.317714935452752, 48.86795743259562], [2.317536067276839, 48.86801380544239], [2.317358344446208, 48.86807033924098], [2.317179474121777, 48.868126712440606], [2.317001750518949, 48.868183245703925], [2.316822879432729, 48.86823961746562], [2.316645156420774, 48.86829615020151], [2.316466284561084, 48.86835252142452], [2.316458791018349, 48.86835333660473], [2.316308204793589, 48.86834146314124], [2.316070530744927, 48.86831836179664], [2.315919944697959, 48.868306488743535], [2.31591761205252, 48.868306395369686], [2.315778919327121, 48.86830871612853], [2.31564556932361, 48.86831392809215], [2.315506876554321, 48.868316249435026], [2.315373526504309, 48.86832146109553], [2.315368697266738, 48.86832213136399], [2.315169524677196, 48.8683760534307], [2.315057708129514, 48.86840688258337], [2.315052536290728, 48.8684093468708], [2.314972870158722, 48.868455640699416], [2.314844800652209, 48.86855415217515], [2.31477030271522, 48.86863419099508], [2.314768326842989, 48.86863619961203], [2.314675806907171, 48.868765216040536], [2.314614305563427, 48.86884630135801], [2.3146146067739872, 48.868854388192915], [2.314675464716527, 48.86892945333424], [2.3147402245411772, 48.86902565469305], [2.314733703599173, 48.869037399673665], [2.314563632551655, 48.869091687881124], [2.314396700393687, 48.8691453813725], [2.314226630005496, 48.86919966910366], [2.314059697165968, 48.86925336122052], [2.31388962471094, 48.869307648459724], [2.313722692529362, 48.8693613410084], [2.31355261937048, 48.86941562776345], [2.313385685132312, 48.869469319829065], [2.313215612632975, 48.869523606107805], [2.313048677713269, 48.86957729679887], [2.312878603146991, 48.869631582585605], [2.312711668885231, 48.86968527370853], [2.312541593615104, 48.86973955901113], [2.312374658671825, 48.8697932487595], [2.312204582698057, 48.869847533577946], [2.312037645686316, 48.86990122374253], [2.311994758805409, 48.86992542590683], [2.312001189358751, 48.869947003063054], [2.312151993071434, 48.8700239381155], [2.312217401894202, 48.8700559744946], [2.312225184895946, 48.870055769199226], [2.312261895006274, 48.87002720831767], [2.312456636774757, 48.87002802582884], [2.312632030584818, 48.87002999279518], [2.31282677100631, 48.87003080969631], [2.313002164839718, 48.87003277612027], [2.313196905277416, 48.870033592419176], [2.313372299134062, 48.870035558300756], [2.313381307489373, 48.87003785294111], [2.313537378770042, 48.87013007831177], [2.313693582471623, 48.870223366352384], [2.313849653486041, 48.87031559219183], [2.314005858303176, 48.87040887980927], [2.314161930438047, 48.87050110432682], [2.31431813637074, 48.870594391521074], [2.314474209602593, 48.87068661651526], [2.314630416650853, 48.87077990328632], [2.314786492366395, 48.87087212696632], [2.314942699166997, 48.8709654133064], [2.315098775979448, 48.871057637463004], [2.315254983895627, 48.87115092337989], [2.315411061816929, 48.8712431471138], [2.315567272211935, 48.87133643261527], [2.31558190736264, 48.87133799751633], [2.315782663403382, 48.871279770649245], [2.315980883851807, 48.871222741269136], [2.316181639014159, 48.87116451282751], [2.316379857212228, 48.87110748367227], [2.316580611484375, 48.87104925455546], [2.316778828806935, 48.870992224733534], [2.316789016599283, 48.87099203556535], [2.316974220607973, 48.871037314130966], [2.317151756228337, 48.871078021368156], [2.317329292126185, 48.8711187283405], [2.317514497043277, 48.87116400696427], [2.317692033517662, 48.87120471339546], [2.317877239067463, 48.87124999055513], [2.317884372595674, 48.87125400180456], [2.317968797170669, 48.87135262993175], [2.318055233004782, 48.87145333793486], [2.318139658226476, 48.87155196592369], [2.318226093346786, 48.871652674676795], [2.318310520578232, 48.871751302535145], [2.318396956371331, 48.87185201024738], [2.318481382886235, 48.871950637959614], [2.318567820691953, 48.872051346437345], [2.318581455393372, 48.872055832631226], [2.318775383519469, 48.87203906834104], [2.318969438982454, 48.87202246094713], [2.319163368222591, 48.87200569603563], [2.31935742206253, 48.87198908890373], [2.319551351053545, 48.87197232336317], [2.319745406020458, 48.87195571471028], [2.319939333399177, 48.87193894853288], [2.320133388106302, 48.871922340149794], [2.320327316599038, 48.8719055733511], [2.320521369706586, 48.87188896343148], [2.320715297950268, 48.87187219600367], [2.320909350798025, 48.87185558635388], [2.321103278792446, 48.871838818296986], [2.321297332755391, 48.87182220802547], [2.321491259149104, 48.8718054384325], [2.321685312863969, 48.87178882753151], [2.321879240360143, 48.87177205821645], [2.322073292463668, 48.871755446678236], [2.322102130120342, 48.87176274447891], [2.32212236289565, 48.87174339820763], [2.322151628700925, 48.871702291351134], [2.3221767900062282, 48.87165999119965], [2.322183890146662, 48.871655073334644], [2.322370715076968, 48.87159965875721], [2.322551317504911, 48.871545912024025], [2.322738141652704, 48.87149049686766], [2.32291874331135, 48.87143675047401], [2.323099344608987, 48.87138300290606], [2.323286166226319, 48.871327586878465], [2.3234667667663462, 48.87127383875078], [2.323653588964503, 48.871218422151955], [2.323834188735242, 48.8711646743639], [2.3240210101625483, 48.87110925628689], [2.324201609175675, 48.87105550793917], [2.324388429820651, 48.87100008928324], [2.324406444877745, 48.87100458964812], [2.324486245361365, 48.87112114329649], [2.32456511920868, 48.87124032042489], [2.324583843203927, 48.871244722237016], [2.324737853553893, 48.87119253360021], [2.324892341030949, 48.87114137540341], [2.325046352129605, 48.87108918637249], [2.325200838997066, 48.87103802777277], [2.325218995211339, 48.87104184620996], [2.325311591805789, 48.87115685801065], [2.325402283957458, 48.87126915557075], [2.325494881372227, 48.87138416630669], [2.3255855756781623, 48.871496463712525], [2.325678172526821, 48.8716114751746], [2.325768867635329, 48.87172377151917], [2.325861466656032, 48.871838782823495], [2.325952162543742, 48.87195107990534], [2.326044761021727, 48.87206609013722], [2.326135457700386, 48.87217838705704], [2.326140203495361, 48.872181759322665], [2.326291223221193, 48.8722409280741], [2.326479323534175, 48.87231939378926], [2.326541268305974, 48.872315088233165], [2.326536506572186, 48.87227878203187], [2.326502397326522, 48.87214685645673], [2.326467094318553, 48.87201290062048], [2.326432986785957, 48.87188097500146], [2.326397684136691, 48.87174701911248], [2.326363575602366, 48.87161509253497], [2.326328274663419, 48.871481137500204], [2.32629416647899, 48.871349210871166], [2.326258865910358, 48.87121525488442], [2.326224758064289, 48.87108332910313], [2.326189456491103, 48.87094937305601], [2.326155350358051, 48.870817447230834], [2.326120049143546, 48.87068349113102], [2.326085941997142, 48.87055156524667], [2.326050642504536, 48.870417609101814], [2.326016535708107, 48.87028568316597], [2.325981236574062, 48.8701517269684], [2.325947130127503, 48.870019800981], [2.325911829989011, 48.86988584472308], [2.325877725255418, 48.86975391869185], [2.325842425475586, 48.869619962381265], [2.325858813652172, 48.86958792115501], [2.325820941104605, 48.86956491308954], [2.3257015261230363, 48.86954419225748], [2.325532766922583, 48.86951741408178], [2.325337733700482, 48.86948357162286], [2.325168974895086, 48.869456792033425], [2.325158969275355, 48.86944578701545], [2.32520334346288, 48.86933310215188], [2.325235280983522, 48.86923173733551], [2.325279654823631, 48.869119052421816], [2.325311592064544, 48.86901768756548], [2.325310611011616, 48.869012071030305], [2.325223873780524, 48.86888882255142], [2.325135842404579, 48.86875743033265], [2.325049107362605, 48.86863418260564], [2.324961075506278, 48.868502789321106], [2.324874341301779, 48.86837954143913], [2.3247863116680962, 48.86824814890276], [2.324699578312613, 48.868124899966425], [2.324611548186886, 48.86799350726358], [2.324524815657297, 48.86787025907154], [2.324435159829216, 48.86774781989899], [2.324348428125905, 48.867624571551744], [2.324258771760439, 48.86750213311143], [2.324172040895267, 48.86737888370971], [2.32408238536722, 48.86725644511008], [2.323995655316642, 48.867133196452464], [2.323906002000804, 48.867010756801946], [2.323819271413548, 48.86688750798143], [2.323729618923431, 48.86676506907089], [2.323642890537215, 48.86664181920363], [2.323553237521357, 48.866519380126086], [2.323566356910999, 48.86649030017954], [2.323533301993854, 48.866465750076145], [2.323443649550256, 48.86634330999771], [2.323351068952727, 48.866223947931665], [2.323298353092091, 48.86618323506923]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 99, "zemmour_eric": 103.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "8-10", "circ_bv": "01", "num_bureau": 10, "roussel_fabien": 4.0, "nb_emargement": 768.0, "nb_procuration": 43.0, "nb_vote_blanc": 5.0, "jadot_yannick": 35.0, "le_pen_marine": 54.0, "nb_exprime": 763.0, "nb_vote_nul": 0.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1031.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 768, "quartier_bv": "31", "geo_point_2d": [48.86951383502914, 2.3202931580992603], "melenchon_jean_luc": 94.0, "poutou_philippe": 3.0, "macron_emmanuel": 355.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358836628169636, 48.901601965962804], [2.358830155631311, 48.90159065661599], [2.358841583728401, 48.901460443185805], [2.358850823807086, 48.90133033583665], [2.358862251784255, 48.90120012327276], [2.35887149176508, 48.90107001589103], [2.35888291964438, 48.9009398023949], [2.35889215951627, 48.90080969587984], [2.35890358728683, 48.90067948235073], [2.358912828435951, 48.90054937491114], [2.358924254722582, 48.90041916224101], [2.358933495773738, 48.90028905476887], [2.358944921962613, 48.90015884116652], [2.358954162916008, 48.9000287336618], [2.358965588984979, 48.89989852092575], [2.358974829840413, 48.89976841338847], [2.3589862571756193, 48.89963819972748], [2.358995496558232, 48.89950809304959], [2.359006923784604, 48.899377879355654], [2.359016163080439, 48.899247771745955], [2.359027590186806, 48.899117558918306], [2.359036829384793, 48.898987451276035], [2.359048256393502, 48.8988572375162], [2.359057495493642, 48.89872712984138], [2.359066735911564, 48.89859702215766], [2.359078161384744, 48.89846680924046], [2.359087401704714, 48.89833670152423], [2.359098828444097, 48.89820648768209], [2.359108067291294, 48.89807638082524], [2.359119493921853, 48.89794616695019], [2.359128732682176, 48.897816059161585], [2.359140159192842, 48.89768584615277], [2.359149397855426, 48.897555738331626], [2.35916082426834, 48.897425524390684], [2.359163567518475, 48.89740012886158], [2.359158394423906, 48.897393878804245], [2.359169820778794, 48.89726366484317], [2.359181833442059, 48.897133906359805], [2.359193258317344, 48.897003692358254], [2.359205270862208, 48.896873933841725], [2.359216696974671, 48.89674372071363], [2.359228709412201, 48.89661396126464], [2.359240134045079, 48.89648374809609], [2.359252146364212, 48.89635398861397], [2.359263572245327, 48.896223775419564], [2.359275584434994, 48.8960940168035], [2.3592870088476072, 48.8959638026694], [2.359299020918883, 48.89583404402021], [2.359310446579721, 48.895703829860246], [2.359322458532602, 48.89557407117793], [2.359333882713889, 48.89544385697751], [2.359345894548381, 48.89531409826202], [2.35935731997778, 48.89518388403577], [2.359369331693982, 48.89505412528715], [2.359360496876791, 48.89504076180597], [2.359292299183646, 48.89503662071425], [2.359094513263703, 48.89503762899585], [2.358897094923269, 48.89503813799789], [2.35869931035368, 48.895039145634115], [2.358501892014715, 48.895039653085384], [2.358304107431826, 48.89504066006893], [2.358106689083271, 48.895041166868715], [2.357908904486891, 48.895042173199556], [2.35771148611766, 48.895042680247116], [2.357513700144128, 48.89504368591792], [2.3573162817764173, 48.89504419141475], [2.357118497153282, 48.89504519644017], [2.356921078776112, 48.89504570128549], [2.356723294139616, 48.89504670565823], [2.356525875741679, 48.89504721075133], [2.356328089727959, 48.89504821446405], [2.356130671331693, 48.89504871800637], [2.355932886668501, 48.89504972107371], [2.355735468262603, 48.89505022396455], [2.355537683586081, 48.89505122637919], [2.355340265159627, 48.895051729517824], [2.355142480480918, 48.89505273038048], [2.354945062044845, 48.895053232867625], [2.354747275977918, 48.89505423396949], [2.354549857543482, 48.89505473490589], [2.354352072827022, 48.89505573536243], [2.354154654371939, 48.895056236546594], [2.353956869653444, 48.89505723545115], [2.353759451188871, 48.89505773598383], [2.353561665081966, 48.89505873512761], [2.35336424661908, 48.895059234109524], [2.353166461862873, 48.89506023260794], [2.352969043390526, 48.89506073093837], [2.3529221763994332, 48.895060788872286], [2.35291171739295, 48.89508133667224], [2.352920127727293, 48.895179531168964], [2.352929519671591, 48.895292029241574], [2.352931070391514, 48.89538432938597], [2.352940462385223, 48.895496828335965], [2.352942013130747, 48.895589128462944], [2.3529514051961202, 48.89570162649178], [2.35294307121895, 48.89579437771135], [2.352942982807574, 48.89579600410196], [2.352917556440277, 48.89592819882234], [2.352909222366537, 48.89602095002036], [2.352883756358862, 48.89615105087903], [2.352858329667785, 48.896283245544026], [2.352832863393557, 48.896413347259966], [2.352807435081145, 48.89654554187507], [2.352781968562613, 48.89667564264977], [2.352756541356877, 48.89680783722982], [2.352731074571579, 48.89693793886178], [2.352705647119691, 48.89707013250009], [2.352680180079008, 48.89720023409005], [2.352654752358499, 48.89733242858515], [2.352629285073505, 48.89746252923388], [2.352603855731823, 48.89759472367911], [2.352578388180046, 48.89772482518508], [2.352552959956132, 48.89785701869595], [2.352552385821931, 48.897857557880535], [2.352550757837045, 48.897885693219386], [2.3525323993490233, 48.897997471752575], [2.3525191603217612, 48.89811854181707], [2.352500803047739, 48.89823032032896], [2.3524875638767, 48.89835139126349], [2.352487537088937, 48.898351570982086], [2.352470955009898, 48.89847579122216], [2.352457715718105, 48.89859686122698], [2.352441133489781, 48.89872108143506], [2.352427894055071, 48.898842152308696], [2.352411311688646, 48.898966371585594], [2.352398072122203, 48.89908744242878], [2.352381489595302, 48.8992116625729], [2.352368249908312, 48.89933273248641], [2.352351667232119, 48.899456952598555], [2.352338427402205, 48.89957802338084], [2.352338347303981, 48.89957854095378], [2.35231210482739, 48.899711043655735], [2.3522851849896282, 48.89984283131446], [2.352258940880501, 48.899975333965365], [2.352232020782781, 48.90010712068104], [2.352205777757818, 48.900239624194896], [2.352178857388847, 48.90037141086679], [2.352152614106531, 48.90050391343772], [2.352125693455115, 48.900635700965076], [2.352099448540333, 48.90076820348494], [2.352072527617554, 48.900899990968476], [2.352045606569766, 48.90103177753081], [2.352019362604192, 48.90116428089179], [2.35199244128514, 48.90129606741029], [2.351966197051109, 48.90142857072759], [2.351963078761914, 48.90144982444414], [2.352011201561123, 48.90146539474308], [2.352055409034892, 48.90146619957879], [2.352058852621833, 48.90146626227466], [2.352061633409948, 48.90146631239163], [2.352067973692677, 48.901466428529154], [2.352098910062599, 48.901466991583455], [2.352144470428351, 48.90146782079176], [2.35234004868009, 48.90147224108533], [2.352555806867141, 48.90147616760773], [2.352751383809944, 48.90148058812144], [2.352967143437825, 48.901484513010935], [2.353162720446906, 48.901488932852985], [2.353378478776344, 48.90149285699412], [2.353574057215731, 48.90149727617178], [2.353789815599689, 48.901501200471166], [2.353985392752458, 48.90150561807051], [2.354201151201893, 48.90150954162887], [2.354396729773788, 48.901513959463145], [2.354612392829997, 48.901517879967464], [2.354807971479259, 48.901522296230894], [2.355003548786523, 48.90152671306685], [2.35521921194126, 48.901530632478526], [2.3554147906787692, 48.90153504865028], [2.355630453898996, 48.901538967321436], [2.355826032702804, 48.90154338282161], [2.356052674598884, 48.901547499173255], [2.356248253470453, 48.901551913983994], [2.356474896789879, 48.901556030443174], [2.356670474365364, 48.90156044455713], [2.356867702573198, 48.90156463519193], [2.357063280225319, 48.90156904776515], [2.357260509861406, 48.90157323776035], [2.357456087568039, 48.9015776505914], [2.357653315904292, 48.90158183993247], [2.357848895040576, 48.90158625212931], [2.357851742555543, 48.90158631236201], [2.357996463811324, 48.90158938594523], [2.358192041640999, 48.901593797574456], [2.358336762937781, 48.901596870746474], [2.358359637139445, 48.901597356614545], [2.35846061748381, 48.901599501026766], [2.358656196765939, 48.90160391100606], [2.358729146579694, 48.901605459930664], [2.358782387454684, 48.90160659033484], [2.358836628169636, 48.901601965962804]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 26, "zemmour_eric": 43.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "18-51", "circ_bv": "17", "num_bureau": 51, "roussel_fabien": 29.0, "nb_emargement": 1308.0, "nb_procuration": 29.0, "nb_vote_blanc": 16.0, "jadot_yannick": 31.0, "le_pen_marine": 74.0, "nb_exprime": 1271.0, "nb_vote_nul": 14.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1973.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1301, "quartier_bv": "71", "geo_point_2d": [48.89833369102627, 2.355810976817785], "melenchon_jean_luc": 770.0, "poutou_philippe": 16.0, "macron_emmanuel": 231.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408031929812628, 48.847300992569174], [2.408018206861663, 48.847299259964686], [2.407941059327611, 48.847305442594234], [2.4077410027965263, 48.847323070832935], [2.407553550591562, 48.847338091871826], [2.40735349244154, 48.8473557194553], [2.407166039997219, 48.84737074078597], [2.40696598295332, 48.84738836772772], [2.40677853029011, 48.84740338755144], [2.406578472989921, 48.847421013844695], [2.406391018724729, 48.84743603395346], [2.406354083845668, 48.84743920438104], [2.406342601865186, 48.847445424896776], [2.406142544256084, 48.84746305046044], [2.405944050947571, 48.84748102790973], [2.405743993067005, 48.84749865280643], [2.405545499485305, 48.847516629593954], [2.405345441333284, 48.84753425382362], [2.405146947478611, 48.84755222994936], [2.404946889055145, 48.84756985351205], [2.404748396289939, 48.847587828982775], [2.404548337595037, 48.847605451878444], [2.404349843194244, 48.8476234266806], [2.404149784227915, 48.84764104890929], [2.403951289553973, 48.84765902304963], [2.403751230316229, 48.84767664461133], [2.403552735369352, 48.84769461808989], [2.4034941023344603, 48.847699782150634], [2.403477098791983, 48.847698342946316], [2.40344833701718, 48.84770924630039], [2.403306910516593, 48.847721702180856], [2.403114678144032, 48.847738131398664], [2.40291461833003, 48.84775575066091], [2.4027223857081053, 48.84777217924791], [2.402522325620458, 48.84778979875292], [2.402330092759588, 48.84780622580988], [2.402130032408611, 48.84782384465837], [2.401937799298603, 48.84784027108448], [2.401737738684304, 48.84785788927646], [2.401545505314639, 48.847874315971055], [2.401345444447355, 48.84789193260725], [2.4011532108284612, 48.84790835867103], [2.400953149687644, 48.84792597555], [2.40076091582987, 48.84794240008373], [2.400560854425659, 48.847960016306196], [2.400368620318681, 48.84797644020905], [2.400168557288542, 48.84799405576816], [2.399976322922118, 48.848010479939504], [2.3997762610017013, 48.84802809394966], [2.399584026385983, 48.84804451749018], [2.399383964191944, 48.84806213174309], [2.399191729337408, 48.848078553753524], [2.399149181868327, 48.848081729748685], [2.3991326678881713, 48.848098104987905], [2.399132261258475, 48.84809850675559], [2.399137831431774, 48.84813223801388], [2.399156729257308, 48.84822313887001], [2.399178849723055, 48.848337816821825], [2.39918187304632, 48.84846267666927], [2.399203993669074, 48.84857735459175], [2.399207017066581, 48.84870221441174], [2.399229137846243, 48.84881689230486], [2.399257129851449, 48.848829747015515], [2.399323001314658, 48.848835638445884], [2.39952531400459, 48.848911182493595], [2.399730015510725, 48.84898583432637], [2.399736325657923, 48.848986954202296], [2.399935221091283, 48.84898966068309], [2.400134140855564, 48.84899238584152], [2.400333036330311, 48.84899509166104], [2.400531957498691, 48.84899781616491], [2.400730853014815, 48.84900052132308], [2.400929772862148, 48.84900324515872], [2.40112866841964, 48.84900594965551], [2.4013275883084813, 48.84900867282976], [2.401526483907329, 48.849011376665246], [2.401725405200342, 48.849014099184906], [2.40192430084054, 48.849016802359074], [2.402123220802053, 48.84901952510981], [2.40232211648359, 48.84902222762262], [2.402521036496905, 48.849024948812605], [2.40271993358244, 48.84902765067096], [2.402918853637224, 48.84903037119955], [2.403117749401404, 48.84903307238973], [2.403316669497649, 48.84903579225693], [2.4035155653031373, 48.84903849278577], [2.403714486803401, 48.84904121199833], [2.403913382650185, 48.84904391186588], [2.404112302829318, 48.84904663041024], [2.404311198717389, 48.849049329616435], [2.404510118937951, 48.849052047499406], [2.404709016229971, 48.84905474605105], [2.404907936481683, 48.84905746417188], [2.405106832452302, 48.84906016205544], [2.405305752755695, 48.849062878615584], [2.40550464876757, 48.849065575837784], [2.405703570475036, 48.8490682917433], [2.405902466528157, 48.84907098830414], [2.4061013869143393, 48.84907370354146], [2.406300283008696, 48.849076399441], [2.406499203436256, 48.8490791140169], [2.40669809957184, 48.84908180925512], [2.406897021403342, 48.84908452317638], [2.407095917580141, 48.84908721775326], [2.407294838090429, 48.84908993100635], [2.407493734308435, 48.84909262492186], [2.407692654860071, 48.84909533751354], [2.407711974262753, 48.84909605550588], [2.40772093752448, 48.849085930901175], [2.407721008788394, 48.849085415925096], [2.4077255534454842, 48.849038058744775], [2.407728514054707, 48.848989671157206], [2.40774257047218, 48.848981045801], [2.40783259198715, 48.848982969923874], [2.40791006714539, 48.8489843930067], [2.407935807918658, 48.84898340968887], [2.407936841057958, 48.84896624076888], [2.407944706288771, 48.84883181930974], [2.407952784384319, 48.84869724959486], [2.407960649543726, 48.84856282720286], [2.407968727556408, 48.848428257454394], [2.4079765926237773, 48.84829383592816], [2.40798467192646, 48.848159265253535], [2.407992536912106, 48.84802484369383], [2.408000614759054, 48.84789027387818], [2.408008479673299, 48.84775585138568], [2.40801655879992, 48.84762128154316], [2.408024423632442, 48.84748685901713], [2.408032501313664, 48.84735228913434], [2.408031929812628, 48.847300992569174]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 44, "zemmour_eric": 69.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-57", "circ_bv": "08", "num_bureau": 57, "roussel_fabien": 28.0, "nb_emargement": 1101.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 85.0, "le_pen_marine": 69.0, "nb_exprime": 1081.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1391.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "80", "geo_point_2d": [48.848340346723056, 2.404087396260957], "melenchon_jean_luc": 387.0, "poutou_philippe": 15.0, "macron_emmanuel": 329.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.33042225389913, 48.82240469177225], [2.330378562029502, 48.82240599045187], [2.330193582847874, 48.822446102931195], [2.330011279900228, 48.82248567699999], [2.329826301515308, 48.82252578891595], [2.329643997998725, 48.82256536332132], [2.32945901768658, 48.8226054746587], [2.329276713624187, 48.82264504760201], [2.329091732746792, 48.82268515836838], [2.328909428127033, 48.82272473074897], [2.328724446684395, 48.822764840944366], [2.3285421428576702, 48.822804413669196], [2.328357160849793, 48.822844523293554], [2.328174855115317, 48.8228840945487], [2.327989872542207, 48.822924203602064], [2.327807566250381, 48.82296377429448], [2.327625259670242, 48.82300334560684], [2.327440277613256, 48.8230434538135], [2.32725797048727, 48.823083023663806], [2.327072986503185, 48.82312313129178], [2.326890678819863, 48.82316270057934], [2.32670569425885, 48.82320280853561], [2.326523386018295, 48.82324237726045], [2.326338400903683, 48.82328248374639], [2.326156093467793, 48.82332205191616], [2.325971107787979, 48.82336215783108], [2.325788798421151, 48.82340172632975], [2.325603812176137, 48.82344183167365], [2.32558614284943, 48.82343482118506], [2.32556652027258, 48.82336000348031], [2.325551254053329, 48.82328431095673], [2.325543213270416, 48.82327719107859], [2.325516413293432, 48.823280981904844], [2.325338474064701, 48.823317864535696], [2.325151996044026, 48.82335651636248], [2.324974054937742, 48.82339339844094], [2.324787577738662, 48.82343204970456], [2.3246096361168203, 48.82346893123825], [2.324423158377551, 48.823507581931004], [2.324245216240155, 48.823544462920026], [2.324058736598609, 48.82358311303419], [2.323880795307661, 48.82361999348612], [2.3236943151258362, 48.82365864302944], [2.323516371957349, 48.823695522928965], [2.323361441420914, 48.82372763295494], [2.323352164242659, 48.82373519551495], [2.323362045720063, 48.82374897417387], [2.323420891140071, 48.823865616788254], [2.323488458711463, 48.82399954352592], [2.323556834811416, 48.82413542913394], [2.323624403069893, 48.8242693566619], [2.323692781239909, 48.82440524216721], [2.323760350197356, 48.82453916958624], [2.323828727725282, 48.824675054074184], [2.323896297381502, 48.82480898138423], [2.32388749307568, 48.82484162135196], [2.32390342049686, 48.82484653297473], [2.323907194785054, 48.82484769652519], [2.3239409960972592, 48.82484050191701], [2.324122873831239, 48.82480100036424], [2.324314293213438, 48.82475799989921], [2.324496169014869, 48.82471849776813], [2.324687587786291, 48.82467549670241], [2.324869463005348, 48.824635994900035], [2.325060881165992, 48.82459299323364], [2.325242757188085, 48.824553489968984], [2.325434173376023, 48.82451048769424], [2.325616048827476, 48.82447098385895], [2.325807464392892, 48.82442798188289], [2.325825248713127, 48.82443487066315], [2.325859774892204, 48.82455897821933], [2.325894446753667, 48.824684999552055], [2.32590969776326, 48.82469230214179], [2.3261156376409042, 48.82467366838991], [2.32631030481626, 48.82465818246255], [2.326516244415956, 48.82463954802022], [2.326710909971288, 48.82462406233193], [2.326916850655054, 48.82460542720684], [2.32711151597561, 48.82458993996664], [2.327317456381407, 48.8245713041511], [2.327512121443959, 48.82455581715767], [2.327706786402461, 48.82454032894781], [2.327912726399422, 48.8245216921063], [2.3281073910999153, 48.82450620414322], [2.328313330818989, 48.82448756661129], [2.328343381627812, 48.824481413660905], [2.328350479402133, 48.82448131592093], [2.3283714898883803, 48.824469883196635], [2.3285305647639643, 48.824437315104426], [2.328709254120795, 48.824401848485145], [2.32889837789095, 48.82436312684356], [2.329077066743217, 48.824327659672335], [2.329266191321544, 48.82428893835345], [2.329444879669343, 48.82425347063029], [2.32963400371696, 48.824214747827845], [2.329812691560284, 48.82417927955275], [2.329991379160598, 48.824143811009556], [2.330180501030891, 48.82410508823073], [2.330359188126725, 48.82406961913557], [2.330548310828389, 48.82403089488084], [2.330726997419633, 48.82399542523377], [2.330916118205445, 48.82395670128652], [2.330970661265161, 48.82396488321505], [2.330988108526419, 48.82395254150809], [2.330993737581507, 48.82393739507181], [2.3309674444797412, 48.82391188097385], [2.330926163412469, 48.823786463571295], [2.330877778679164, 48.823648573365894], [2.330836498035948, 48.823523155903004], [2.330788115157658, 48.82338526473728], [2.330746834938592, 48.823259847214025], [2.330698451168238, 48.823121956871425], [2.330657171373316, 48.82299653928784], [2.330608788095974, 48.822858647977355], [2.330608778874077, 48.822858623642446], [2.33060543634693, 48.82284897346689], [2.33056415699187, 48.82272355582077], [2.330559095161294, 48.82270895212302], [2.330530497613378, 48.8226264222559], [2.330489218614768, 48.82250100455904], [2.330457955137191, 48.82241078171832], [2.33042225389913, 48.82240469177225]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 89, "zemmour_eric": 110.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-42", "circ_bv": "10", "num_bureau": 42, "roussel_fabien": 25.0, "nb_emargement": 1474.0, "nb_procuration": 74.0, "nb_vote_blanc": 10.0, "jadot_yannick": 125.0, "le_pen_marine": 103.0, "nb_exprime": 1459.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1857.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1474, "quartier_bv": "55", "geo_point_2d": [48.823743431181, 2.3274258539918917], "melenchon_jean_luc": 495.0, "poutou_philippe": 2.0, "macron_emmanuel": 451.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.38533686448769, 48.874090646134405], [2.385330262468885, 48.87409045844777], [2.385206332712614, 48.87415070872142], [2.385044597920489, 48.874229266651355], [2.384877419249521, 48.87431054205165], [2.384715684828346, 48.87438909953284], [2.384548503767796, 48.87447037445496], [2.384386768364866, 48.87454893058108], [2.384219587630664, 48.8746302059384], [2.384057849872117, 48.87470876160172], [2.383890668111654, 48.874790036487894], [2.383728930723962, 48.874868591702466], [2.38356174658463, 48.87494986521122], [2.383400008193906, 48.875028420869256], [2.383232824391657, 48.87510969391386], [2.383071083645185, 48.8751882491091], [2.382903898816666, 48.87526952168258], [2.382742158441149, 48.87534807642905], [2.382574971222898, 48.87542934852432], [2.3824132298657412, 48.87550790191572], [2.382246042973911, 48.875589174446155], [2.382084299260988, 48.87566772737475], [2.38208389598433, 48.87566793213964], [2.3820372049287473, 48.87569245335077], [2.381983398487058, 48.87572073389318], [2.381962820192441, 48.875717868498505], [2.3819205204656573, 48.875664507620286], [2.381872713167296, 48.875604664671435], [2.381858180161875, 48.87560170007044], [2.381837798083422, 48.87561309369254], [2.381761252663863, 48.87571268173693], [2.381680616693762, 48.875817090604485], [2.381604070673861, 48.87591667852991], [2.381523434062169, 48.876021088171555], [2.3814468874526, 48.87612067507878], [2.381366250209984, 48.87622508459525], [2.381365967406722, 48.87622547704144], [2.381347274639077, 48.87625302502247], [2.381346537015511, 48.876254402585225], [2.381295351282096, 48.876382212886675], [2.381236113500904, 48.87652855364495], [2.381184927227092, 48.87665636386741], [2.381125687460433, 48.87680270452761], [2.381074500646212, 48.87693051467107], [2.381028377320383, 48.87704583315937], [2.380977190017733, 48.877173644132334], [2.38093106489773, 48.877288962550615], [2.380879877117326, 48.8774167734538], [2.380833752929954, 48.87753209181621], [2.380787627164323, 48.87764741104103], [2.380736438690221, 48.877775220942], [2.380740872640661, 48.87778176492985], [2.380762040795585, 48.87778565521693], [2.3810136270438322, 48.8777601274774], [2.381243427215238, 48.87773713603689], [2.381253060587476, 48.87773285734652], [2.381336526577718, 48.87764064050119], [2.381420294546883, 48.87754822909761], [2.381503759955724, 48.877456011220936], [2.381587527331315, 48.87736359968485], [2.381670992137499, 48.877271382575415], [2.381754760282725, 48.87717897091386], [2.381760611648663, 48.87717546316177], [2.381949013695742, 48.877116428087604], [2.382135533374626, 48.87705788302903], [2.38232205128145, 48.87699933677042], [2.382510452044379, 48.87694030170252], [2.382696970472082, 48.87688175486059], [2.382885370384617, 48.87682271919633], [2.382888238647275, 48.87682206667805], [2.383062705725512, 48.876795887948134], [2.3832652445442912, 48.87676593070383], [2.383439711255636, 48.87673975052386], [2.383604839170383, 48.876715326064264], [2.383616412939963, 48.87671791008237], [2.383632736325062, 48.87671133277785], [2.383670146788109, 48.87670579934509], [2.383890821858881, 48.876672933346086], [2.384093358359805, 48.87664297469043], [2.384314032907962, 48.87661010701012], [2.384516568921138, 48.87658014763672], [2.384526516180777, 48.87657418764463], [2.3845907249508382, 48.876445540943756], [2.384654304598861, 48.87631841622859], [2.384718512737975, 48.8761897694293], [2.384782091761977, 48.87606264461679], [2.38484629927005, 48.875933997719144], [2.384909877669941, 48.87580687280927], [2.3849740859105513, 48.87567822582028], [2.385037663686234, 48.87555110081305], [2.385101241141049, 48.87542397665666], [2.385165447084243, 48.87529532861411], [2.385229023914869, 48.87516820436039], [2.385293229227154, 48.875039556219456], [2.3853568054338012, 48.87491243186839], [2.385421010115084, 48.874783783629105], [2.385484585708272, 48.874656658281445], [2.385548789748154, 48.87452801084308], [2.385612364717177, 48.87440088539808], [2.3856765681261782, 48.874272237861355], [2.385671802465283, 48.874262233497085], [2.385510471608546, 48.874182353989994], [2.385352051237032, 48.87410300721805], [2.38533686448769, 48.874090646134405]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 40, "zemmour_eric": 60.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-13", "circ_bv": "16", "num_bureau": 13, "roussel_fabien": 33.0, "nb_emargement": 1295.0, "nb_procuration": 81.0, "nb_vote_blanc": 14.0, "jadot_yannick": 156.0, "le_pen_marine": 46.0, "nb_exprime": 1278.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1703.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1295, "quartier_bv": "76", "geo_point_2d": [48.87591702524546, 2.3832915440161724], "melenchon_jean_luc": 523.0, "poutou_philippe": 14.0, "macron_emmanuel": 339.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.297610118540123, 48.83250234126348], [2.297622180242545, 48.83250346706506], [2.297731528465497, 48.83260501284484], [2.297840455334727, 48.83270621517587], [2.297949804408158, 48.83280776073768], [2.2980587307505482, 48.8329089637429], [2.298168082036702, 48.8330105090948], [2.2982770092386122, 48.83311171098363], [2.298386360013023, 48.83321325610955], [2.298495288062245, 48.83331445778127], [2.298604641049405, 48.833416002697206], [2.298713569946151, 48.83351720415182], [2.298835209479274, 48.833629272508304], [2.298944139269294, 48.833730473733645], [2.299053070844421, 48.83383167485859], [2.299174711841326, 48.83394374283832], [2.299177931443783, 48.83395496251447], [2.299192335107179, 48.833959858564135], [2.299313976714585, 48.83407192549011], [2.29943505642082, 48.83418356987845], [2.299556700422361, 48.834295637442445], [2.299677781168073, 48.83440728156278], [2.299799424863188, 48.83451934795022], [2.2999205066484842, 48.83463099180251], [2.300042152737676, 48.83474305882803], [2.300163235562369, 48.83485470241229], [2.3001753173530712, 48.8348584353526], [2.300303548709983, 48.83485217224003], [2.300433465394506, 48.83484762675803], [2.300446047020562, 48.83485218462194], [2.300531453826323, 48.834951999246435], [2.300623050718763, 48.835060306803356], [2.300633353877978, 48.835062881695634], [2.300654536027289, 48.835054153912864], [2.30086374821939, 48.8349806875954], [2.301069786908542, 48.834908944453225], [2.30127582503055, 48.83483720095152], [2.30148503683847, 48.834763733541095], [2.301496020518006, 48.83476320499791], [2.30163927290124, 48.83479700893321], [2.301781216585253, 48.834830481280804], [2.301924469338315, 48.83486428487256], [2.302066413388652, 48.83489775687971], [2.302076082475579, 48.83489762982734], [2.302187667908803, 48.83486798368344], [2.302308361556738, 48.834837048699505], [2.302325653821949, 48.834841650930436], [2.302424874276984, 48.834983022061444], [2.302520327200499, 48.83511928246542], [2.302619548711952, 48.835260653399885], [2.302715001302468, 48.8353969127074], [2.302726886486626, 48.83541414382998], [2.302735168440401, 48.83541505910524], [2.302879915438207, 48.835374685446745], [2.303049778966383, 48.83532708670371], [2.303243452531632, 48.83527306549359], [2.303413315384787, 48.835225467129256], [2.303606989570038, 48.835171444434266], [2.303776850397695, 48.83512384554141], [2.303795844029278, 48.83511746622086], [2.303796791093073, 48.835104393947645], [2.30373140246164, 48.83502616627756], [2.30366558980181, 48.834948079996266], [2.303666268609064, 48.83493724380116], [2.303647277836249, 48.83492903348397], [2.303530525084631, 48.83482310902802], [2.303414392881161, 48.83471757748805], [2.303297642438559, 48.834611652792695], [2.303181509815472, 48.83450612099875], [2.30306476031969, 48.83440019605607], [2.3029486300014312, 48.834294664024014], [2.30283188009019, 48.83418873882608], [2.302715750702442, 48.83408320744731], [2.3025990031123023, 48.83397728111066], [2.302482874667081, 48.833871749485844], [2.302366126649442, 48.83376582379328], [2.302249999158774, 48.83366029102311], [2.302133253450176, 48.83355436509118], [2.302017125539769, 48.83344883206703], [2.301900380777945, 48.83334290588779], [2.301784255172191, 48.833237372625575], [2.30166751135723, 48.83313144619904], [2.301551385331729, 48.833025912682835], [2.301434642463523, 48.832919986008996], [2.301318518742745, 48.83281445225473], [2.301201775459051, 48.83270852532566], [2.30108565268075, 48.83260299132539], [2.301083961344641, 48.83260172321557], [2.300940965490121, 48.8325129996429], [2.300797223473799, 48.83242357271238], [2.300654228583913, 48.83233484968207], [2.300510487550805, 48.83224542239277], [2.300367493649572, 48.832156698106225], [2.300223753599572, 48.83206727045812], [2.300080760675125, 48.83197854581462], [2.299937021596049, 48.831889118707], [2.299794029648279, 48.83180039370663], [2.299650291564474, 48.831710965340875], [2.299507300593277, 48.83162223998362], [2.29936356349256, 48.83153281125905], [2.299220573486043, 48.83144408644419], [2.299076837368305, 48.831354657360855], [2.298933849712727, 48.83126593129774], [2.298790113215976, 48.8311765018476], [2.298647126536946, 48.83108777542766], [2.298503391011168, 48.83099834651802], [2.298360405308779, 48.83090961974114], [2.29821667077817, 48.830820189573444], [2.2980736860525193, 48.83073146243969], [2.297929952504972, 48.830642031913214], [2.297921969622051, 48.83062706438094], [2.297897367879027, 48.83062772220421], [2.297896525777182, 48.83062794120564], [2.297722710557996, 48.83067761770446], [2.297555561857875, 48.830725377858826], [2.297388414225789, 48.83077313688632], [2.297214596676036, 48.83082281263224], [2.297047448407058, 48.83087057207831], [2.296873630207636, 48.83092024732441], [2.296706481313885, 48.830968006289865], [2.296532662464693, 48.83101768103611], [2.296525830934115, 48.83102987688096], [2.296615835522992, 48.83115168545495], [2.296704716951603, 48.83127205823081], [2.296794722388822, 48.83139386574455], [2.296883603281202, 48.83151423835347], [2.296973609542304, 48.831636046605546], [2.297062492634987, 48.83175641816418], [2.297152499732323, 48.83187822625532], [2.297241383638765, 48.831998598554335], [2.297331391584364, 48.83212040558519], [2.297420274954691, 48.83224077771722], [2.297510283724317, 48.83236258548641], [2.297599169294886, 48.8324829565682], [2.297610118540123, 48.83250234126348]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 116, "zemmour_eric": 113.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-51", "circ_bv": "13", "num_bureau": 51, "roussel_fabien": 24.0, "nb_emargement": 1245.0, "nb_procuration": 56.0, "nb_vote_blanc": 11.0, "jadot_yannick": 90.0, "le_pen_marine": 68.0, "nb_exprime": 1225.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 7, "nb_inscrit": 1601.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1242, "quartier_bv": "57", "geo_point_2d": [48.83308716300564, 2.299944088620587], "melenchon_jean_luc": 264.0, "poutou_philippe": 1.0, "macron_emmanuel": 469.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.344342047524063, 48.82405368491445], [2.344308003680122, 48.82403819533377], [2.344245650329537, 48.824028448628816], [2.344236607022806, 48.82402371957359], [2.344157973768735, 48.82391990392102], [2.344080444011511, 48.82382010188798], [2.344002915901781, 48.82372030070264], [2.343924283570618, 48.823616484868346], [2.343846756073784, 48.823516682664355], [2.343768124360635, 48.82341286670853], [2.343766946638759, 48.823407094328815], [2.34380291264672, 48.82328734515087], [2.343837971333938, 48.8231664073891], [2.343873937012749, 48.82304665816415], [2.343908995373389, 48.82292572035564], [2.343944960723057, 48.82280597108367], [2.343980018757125, 48.822685033228446], [2.343977206205865, 48.82267766627271], [2.34385765989826, 48.822580655374914], [2.343740080654575, 48.82248473979376], [2.343620535230497, 48.82238772864223], [2.34350295821994, 48.82229181281893], [2.343383413679379, 48.82219480141377], [2.34326583754007, 48.822098885340836], [2.343146293883019, 48.82200187368195], [2.343028717264432, 48.8219059564526], [2.342911142428942, 48.82181004000634], [2.342791600094059, 48.82171302796793], [2.342674024767955, 48.82161711126453], [2.342554483316564, 48.821520098972435], [2.342553690576544, 48.82150001145134], [2.342543338271525, 48.821497281574715], [2.342483792721902, 48.82149120263124], [2.342467720184115, 48.821510703655754], [2.342397286067095, 48.821605429395994], [2.342312862629421, 48.821733932615395], [2.342242429291475, 48.82182865825311], [2.342158005099263, 48.821957162236984], [2.342087569827827, 48.82205188685788], [2.342003146254472, 48.822180390714394], [2.34192731331781, 48.82232351622406], [2.341842887559166, 48.82245201902956], [2.341767055149507, 48.82259514441055], [2.341766197454061, 48.822596947442136], [2.341731202121609, 48.8227116532308], [2.34169400679772, 48.82283748030404], [2.341659011144908, 48.82295218604702], [2.341621816837196, 48.82307801307839], [2.341586819513596, 48.82319271786889], [2.341549624848621, 48.823318545750155], [2.341514628566742, 48.82343325050248], [2.34147743220532, 48.82355907742757], [2.341442435591812, 48.82367378303347], [2.341442197300163, 48.8236761497853], [2.341455419412101, 48.8238088593646], [2.341469408415206, 48.823937796659365], [2.341482630662756, 48.824070506204805], [2.341496621154009, 48.82419944437317], [2.341510611714358, 48.82432838252509], [2.341523834165838, 48.8244610920198], [2.34153782351313, 48.82459002923167], [2.341551046100228, 48.824722738692465], [2.341565036935692, 48.82485167677794], [2.341578259658415, 48.8249843862048], [2.341592250642647, 48.82511332335775], [2.3416054735009952, 48.82524603275067], [2.341619464611485, 48.8253749707697], [2.341632687605461, 48.825507680128695], [2.341632712177153, 48.82550789161762], [2.341646703436632, 48.82563682870407], [2.341664854368187, 48.825770754133316], [2.34167884576634, 48.82589969208512], [2.341696998234035, 48.82603361748568], [2.341697030646132, 48.826034394725625], [2.3416948111626033, 48.826132283263696], [2.34169578680955, 48.82623236407427], [2.341697560205179, 48.82623388299029], [2.341757752343685, 48.826234484128825], [2.341892122184655, 48.826127200424345], [2.342021673489624, 48.82602359548228], [2.342156043606057, 48.82591631146859], [2.342285593862543, 48.825812706221186], [2.342419961530225, 48.82570542188332], [2.342549512100291, 48.82560181633802], [2.342683878681497, 48.825494531683475], [2.342813426841049, 48.82539092582536], [2.34294779369773, 48.8252836408616], [2.3430773408088292, 48.825180034698136], [2.343077594060148, 48.82517982653437], [2.343208494539377, 48.82506876372344], [2.343337756054382, 48.8249590902935], [2.3434686554365483, 48.8248480262766], [2.343597917218969, 48.82473835255139], [2.343727177095653, 48.82462867866824], [2.343858074807419, 48.82451761509177], [2.343987334951529, 48.82440794091335], [2.344118231555036, 48.82429687703026], [2.344247489242639, 48.82418720254163], [2.344378384737698, 48.82407613835198], [2.344342047524063, 48.82405368491445]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 89, "zemmour_eric": 85.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-51", "circ_bv": "10", "num_bureau": 51, "roussel_fabien": 47.0, "nb_emargement": 1366.0, "nb_procuration": 59.0, "nb_vote_blanc": 15.0, "jadot_yannick": 125.0, "le_pen_marine": 70.0, "nb_exprime": 1348.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1695.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1369, "quartier_bv": "51", "geo_point_2d": [48.82377793791669, 2.342658178793837], "melenchon_jean_luc": 428.0, "poutou_philippe": 8.0, "macron_emmanuel": 422.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3832776231006942, 48.8448640911662], [2.38326289575138, 48.84493042742153], [2.383163561559098, 48.84504489907792], [2.383067377061437, 48.845156860589256], [2.382968042008125, 48.84527133206009], [2.38287185531006, 48.845383293384465], [2.3827725193957052, 48.84549776466966], [2.382676333211513, 48.84560972672043], [2.382576996436106, 48.84572419782003], [2.382480809424715, 48.84583615879157], [2.382381471788247, 48.84595062970556], [2.382285283928133, 48.84606259139647], [2.382189095665495, 48.846174552099434], [2.382089756743165, 48.84628902273648], [2.38199356627995, 48.846400983252494], [2.381894226496634, 48.84651545370396], [2.381798036547261, 48.84662741494632], [2.381698695902847, 48.84674188521217], [2.381694907241384, 48.84674467881892], [2.3815819844483412, 48.84679908721578], [2.381466227218521, 48.84686071527317], [2.381353303935204, 48.846915123448476], [2.381237546166643, 48.84697675217753], [2.381234083528541, 48.84697951327993], [2.381152260610868, 48.84708058422114], [2.381065879887366, 48.847188252579784], [2.380984057678266, 48.847289323394016], [2.380897676261265, 48.84739699161108], [2.380815852046273, 48.84749806138502], [2.380729469935765, 48.84760572946042], [2.380647645056226, 48.84770679999967], [2.380561262252201, 48.847814467933475], [2.38051974580266, 48.84782654716779], [2.380516773894998, 48.84783066252028], [2.380595373045181, 48.84795481900297], [2.380660711315107, 48.84805897525656], [2.380660199888684, 48.84806657755894], [2.380570562251845, 48.84817987297298], [2.380478064344029, 48.84829599636165], [2.380388425927201, 48.848409290716575], [2.380295927206328, 48.848525413940514], [2.380206287988218, 48.848638709034944], [2.380113789816939, 48.848754832101186], [2.380024148456369, 48.84886812612946], [2.379931649471915, 48.84898424903098], [2.379842007310033, 48.84909754379873], [2.379749507512498, 48.849213666535505], [2.379659864559992, 48.84932696114347], [2.379567363949465, 48.84944308371552], [2.379477720216932, 48.849556377264335], [2.379385218793305, 48.8496724996716], [2.379295574259523, 48.84978579395991], [2.379203072022682, 48.84990191620245], [2.379165614250542, 48.84994925450543], [2.379137075683373, 48.84996433428078], [2.37913465376145, 48.84997797120968], [2.379082466141212, 48.85004392701998], [2.379047986812408, 48.8501077613996], [2.379048836061353, 48.85011505956776], [2.37913040918256, 48.85021458540027], [2.3792078258067493, 48.850309681867735], [2.379289399536161, 48.85040920757447], [2.379366816739623, 48.85050430392244], [2.379382101442356, 48.850540470668534], [2.379410729912804, 48.85054097710525], [2.379557058547058, 48.850521294587836], [2.37973574663488, 48.85049674956617], [2.379945864682096, 48.850468486452414], [2.380124552416401, 48.85044393994964], [2.3801263655073, 48.85044377396904], [2.380298704210675, 48.85043570644494], [2.38051259554546, 48.850426213402756], [2.380684934141651, 48.850418144422946], [2.380898826696793, 48.85040865069724], [2.381071163801709, 48.85040058205323], [2.381285056224974, 48.850391086737616], [2.381457393211999, 48.85038301753716], [2.381457916865799, 48.85038298786759], [2.381642008975532, 48.850370097480706], [2.381834745100449, 48.85035478634315], [2.38201883701734, 48.850341895376175], [2.382211572916566, 48.8503265845305], [2.3823956646406073, 48.850313692983406], [2.382588400324806, 48.850298381530386], [2.382772493218694, 48.850285489410204], [2.382965228687856, 48.85027017734973], [2.383149320026176, 48.85025728464242], [2.383342055290936, 48.850241971075285], [2.383526146436381, 48.850229077787844], [2.383527745674967, 48.85022890166037], [2.383720480713008, 48.85021358838257], [2.383888005200833, 48.8501883105473], [2.384093778030956, 48.8501558870536], [2.384261303514904, 48.85013060870136], [2.384327962955263, 48.85011352496086], [2.384326197475962, 48.85008198094497], [2.384302565378452, 48.849953654687425], [2.384280789615714, 48.84983154350356], [2.384259015328339, 48.84970943141004], [2.384235383565314, 48.84958110509625], [2.3842136081263, 48.84945899295998], [2.38418997658866, 48.84933066660839], [2.384168202723265, 48.849208554443365], [2.3841445714110012, 48.84908022805392], [2.384122796394074, 48.84895811584618], [2.3840991653071892, 48.848829789418886], [2.384077391853335, 48.84870767808177], [2.384053761002448, 48.848579350717344], [2.384031986396968, 48.84845723933744], [2.384008355771351, 48.848328911935226], [2.383986582739553, 48.8482068005266], [2.383962952328771, 48.84807847398584], [2.383962948464189, 48.8480784550795], [2.383939650946131, 48.8479453789389], [2.383916020769457, 48.847817052358735], [2.383892722125559, 48.847683976170785], [2.38386909218297, 48.84755564955124], [2.383845795127666, 48.84742257422921], [2.383822164067166, 48.847294246664], [2.383798867248651, 48.847161171301636], [2.383775237784855, 48.84703284370404], [2.383751941202921, 48.84689976830129], [2.3837283105999543, 48.84677144155659], [2.383705014265437, 48.84663836521421], [2.383681385259153, 48.846510038437145], [2.383658089161209, 48.8463769620544], [2.383634459026394, 48.846248635230985], [2.3836111631652273, 48.84611555880787], [2.383587534627074, 48.84598723195209], [2.383564237629251, 48.84585415638093], [2.383540609335798, 48.84572582858647], [2.383517313937328, 48.845592752982], [2.38349368587783, 48.84546442514818], [2.3834700579241552, 48.8453360981942], [2.383446761517469, 48.845203022522426], [2.383423133808486, 48.84507469462984], [2.383399839000925, 48.84494161892477], [2.383406699303316, 48.84489812626655], [2.383402619847566, 48.84489488194271], [2.383375269106144, 48.84487313390191], [2.383340676020848, 48.84486993015535], [2.3832776231006942, 48.8448640911662]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 42, "zemmour_eric": 60.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-57", "circ_bv": "07", "num_bureau": 57, "roussel_fabien": 31.0, "nb_emargement": 1260.0, "nb_procuration": 64.0, "nb_vote_blanc": 11.0, "jadot_yannick": 134.0, "le_pen_marine": 41.0, "nb_exprime": 1245.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1544.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1260, "quartier_bv": "48", "geo_point_2d": [48.84845270104996, 2.3821231179759113], "melenchon_jean_luc": 471.0, "poutou_philippe": 8.0, "macron_emmanuel": 390.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355556543236465, 48.87652927552366], [2.355532337040073, 48.87653815744259], [2.35546811751069, 48.87654715578129], [2.355268674494746, 48.87657479125065], [2.355081105998346, 48.876601072110205], [2.354881662559457, 48.87662870783275], [2.354694093673506, 48.87665498808464], [2.354494649822913, 48.87668262316103], [2.354307081910911, 48.87670890281261], [2.354107636285029, 48.876736537235544], [2.353920067983697, 48.87676281627945], [2.353732498118437, 48.87678909592075], [2.3535330532551653, 48.87681672849247], [2.35334548436387, 48.87684300753345], [2.353146037725536, 48.876870639451745], [2.352958468444822, 48.876896917885055], [2.352759021394725, 48.87692454915716], [2.352571451735778, 48.87695082608355], [2.352372004262644, 48.87697845760879], [2.352184434214403, 48.877004733927485], [2.351984987692912, 48.87703236481397], [2.351797415891783, 48.87705864051764], [2.35159796895865, 48.877086270758014], [2.351410396768138, 48.87711254585396], [2.351210949423167, 48.87714017544819], [2.351210837435865, 48.87714019012993], [2.351032616096606, 48.8771641212839], [2.350833167001634, 48.877191749340746], [2.350654946675717, 48.87721567993871], [2.350455497182968, 48.87724330736508], [2.350277276507203, 48.87726723739965], [2.350077826616585, 48.8772948641955], [2.349899605590877, 48.87731879366675], [2.349700155302599, 48.87734641983209], [2.349521933926855, 48.87737034873994], [2.349343711024043, 48.87739427737457], [2.349144261515252, 48.87742190261926], [2.349098090997859, 48.87743590514102], [2.349094901857978, 48.877442121088414], [2.349114072446882, 48.87747767978638], [2.349124382707556, 48.87760372180579], [2.349133411552918, 48.8777362932042], [2.349143723263666, 48.87786233609909], [2.349152752203192, 48.877994907464945], [2.349163062648525, 48.87812095032116], [2.349172091682111, 48.87825352165442], [2.349182403588875, 48.87837956448685], [2.349191432716426, 48.878512135787545], [2.349191558089948, 48.878513014218775], [2.34921364101483, 48.878653262129], [2.34924310505368, 48.87878813885064], [2.34926518687058, 48.87892838670896], [2.349294651187332, 48.87906326428354], [2.349294839082667, 48.879063940704015], [2.34934421978493, 48.879194185216896], [2.34938526559426, 48.87931547200632], [2.349434646761053, 48.87944571645216], [2.349475691615845, 48.87956700317545], [2.349490050115221, 48.87958901412326], [2.349550270319047, 48.87957833439494], [2.349717745840649, 48.879554015228976], [2.34989241002738, 48.87952814394672], [2.35005988386446, 48.87950382429358], [2.350234549087483, 48.879477951619116], [2.350402022603392, 48.879453631486264], [2.350576687476898, 48.879427759210735], [2.350744160671635, 48.87940343859814], [2.350918823854589, 48.87937756491563], [2.350929369564359, 48.879369891427565], [2.350955057427799, 48.87923244266796], [2.350981616793151, 48.87909518477306], [2.351007305735452, 48.878957736874675], [2.351033864823119, 48.878820478933946], [2.351059553492035, 48.87868303099006], [2.351086112301818, 48.878545773003516], [2.3511118006973533, 48.87840832501417], [2.35113835922946, 48.87827106698184], [2.351154567406582, 48.878247843202985], [2.351116866190619, 48.87823102996335], [2.3510950619665563, 48.87813072240191], [2.3510756318247372, 48.878042877174444], [2.351053827758758, 48.87794256958838], [2.351034397745476, 48.8778547252385], [2.351035937352167, 48.877849126237216], [2.351101816121775, 48.87776985451458], [2.3512242950848172, 48.877625827177795], [2.351290173285391, 48.87754655533542], [2.351300874300494, 48.87754192329482], [2.35144444589893, 48.87753305853622], [2.351605622362475, 48.877523234040794], [2.351749195220829, 48.87751436892395], [2.351910370216931, 48.8775045431114], [2.351919865012634, 48.87750633382568], [2.351940619118975, 48.877516147297406], [2.35207338087538, 48.87758257667593], [2.352192336165424, 48.877638826272886], [2.352325097192187, 48.87770525535753], [2.352464807329893, 48.87777131897591], [2.352597569053091, 48.87783774685112], [2.352737279880642, 48.87790381104288], [2.352746770005769, 48.87790543708706], [2.352935620664153, 48.87789122688077], [2.353130927110621, 48.877876595298744], [2.353319778911859, 48.87786238539279], [2.353515085142247, 48.877847753183644], [2.35370393538183, 48.87783354176461], [2.35389924138497, 48.87781890982766], [2.354088092778558, 48.87780469780964], [2.3542833972133392, 48.877790064338946], [2.354296369824072, 48.87779410037276], [2.354382435470114, 48.87788145638351], [2.354501550384089, 48.877988887387325], [2.354524131229989, 48.87798833104444], [2.354622062753864, 48.87788455702386], [2.354730262571271, 48.87776744448649], [2.354828191905783, 48.87766367026916], [2.354936390811843, 48.87754655662274], [2.355034319320319, 48.87744278221601], [2.355142518656269, 48.87732566926645], [2.355240446338716, 48.87722189467028], [2.355278337686371, 48.87718088046302], [2.355291535599481, 48.87716858209947], [2.3552914001037912, 48.87716124370234], [2.355361705760722, 48.877085144733904], [2.355458698692455, 48.87697970833398], [2.355566894748864, 48.87686259494431], [2.355663885487381, 48.87675715834951], [2.355772081983386, 48.876640044758126], [2.355869071892092, 48.87653460797579], [2.3558641615109392, 48.876515142436006], [2.355844071265173, 48.876506636345546], [2.3557057689880683, 48.87651704201471], [2.35558242042497, 48.87653432609415], [2.355556543236465, 48.87652927552366]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 55, "zemmour_eric": 60.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-31", "circ_bv": "05", "num_bureau": 31, "roussel_fabien": 19.0, "nb_emargement": 936.0, "nb_procuration": 74.0, "nb_vote_blanc": 10.0, "jadot_yannick": 86.0, "le_pen_marine": 33.0, "nb_exprime": 924.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1226.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 936, "quartier_bv": "37", "geo_point_2d": [48.87782179427075, 2.3517934048142286], "melenchon_jean_luc": 231.0, "poutou_philippe": 10.0, "macron_emmanuel": 395.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.340137807950283, 48.895269928659], [2.34010022621761, 48.895243316615996], [2.340027906763483, 48.89513714895809], [2.339953226242033, 48.89503047360467], [2.339880907383207, 48.894924305837385], [2.339806228832003, 48.89481763037907], [2.339733910568673, 48.894711462502414], [2.33965923127159, 48.89460478602494], [2.339586913603549, 48.894498618038895], [2.339512236265284, 48.894391942355774], [2.339496697533759, 48.89438696254407], [2.339287318574521, 48.89441978478629], [2.339085910644364, 48.8944522432625], [2.338876529788267, 48.894485065676264], [2.338675122713339, 48.8945175234672], [2.338483809804043, 48.89454751228492], [2.338282402242624, 48.89457996941354], [2.338264333752212, 48.89458280225889], [2.338255824368456, 48.89458236043504], [2.338087751428287, 48.894535926791086], [2.337930215414651, 48.89449129224957], [2.337762143058857, 48.89444485814477], [2.337604607600015, 48.89440022317122], [2.337447072411182, 48.89435558798859], [2.33727900092435, 48.89430915319998], [2.337121467654057, 48.89426451759289], [2.336953395387761, 48.89421808233589], [2.336946016664546, 48.894213150068936], [2.336858142583683, 48.894069411384365], [2.336772381327448, 48.893929126920746], [2.336686619180984, 48.893788841470936], [2.336598746532369, 48.893645102540376], [2.336588136242574, 48.89361666833841], [2.336566047457889, 48.89361295227327], [2.336484121957677, 48.893620549102764], [2.336336159000185, 48.8936418408191], [2.336326679477897, 48.8936543904886], [2.33641121475409, 48.89377537715845], [2.336493507063156, 48.8938938808873], [2.336578044468137, 48.89401486831974], [2.336660337535448, 48.894133371908076], [2.336744874353115, 48.8942543591888], [2.336827168178677, 48.894372862636565], [2.336911707148183, 48.894493848881346], [2.336994001732007, 48.89461235218857], [2.337078540102854, 48.894733339180846], [2.337160835444948, 48.89485184234753], [2.33724537596756, 48.894972828303864], [2.33732767205649, 48.895091332229256], [2.337329211381299, 48.89511773762239], [2.337342934638289, 48.895123366868546], [2.33742523119877, 48.89524186981136], [2.337475845065204, 48.89532081614262], [2.337485971863833, 48.89533661208276], [2.337484448965278, 48.89534578032881], [2.33736515322114, 48.895449792257565], [2.337243287290736, 48.895554770095885], [2.337123990585944, 48.89565878176452], [2.337002122316104, 48.895763759329846], [2.336882824650646, 48.8958677707384], [2.33676095540544, 48.89597274803828], [2.336641656779305, 48.89607675918677], [2.336519786558522, 48.8961817362212], [2.336400486971805, 48.89628574710958], [2.336278615775535, 48.89639072387857], [2.336286811136834, 48.89640501363156], [2.336499657855341, 48.89643264927031], [2.3367096970731, 48.89646012239], [2.336922544241376, 48.89648775727576], [2.337132582529253, 48.896515230544104], [2.3373454301472902, 48.89654286467688], [2.337555470255988, 48.896570336310475], [2.337768318323771, 48.896597969690234], [2.337978358866486, 48.89662544148004], [2.338191207384009, 48.89665307410688], [2.338401247019796, 48.8966805442468], [2.338410471134391, 48.89669378552778], [2.33831858204181, 48.89680112788207], [2.338228782993427, 48.89690712013687], [2.338136893149607, 48.89701446233086], [2.3380470920108722, 48.89712045352196], [2.337955201404572, 48.897227796454885], [2.337865399527959, 48.897333787489096], [2.337773508181835, 48.897441129362434], [2.337683705555899, 48.89754712113901], [2.337686449495127, 48.89757964220362], [2.3376874797059832, 48.89758014792242], [2.33781788214631, 48.89758384396567], [2.338023450277842, 48.897586730496926], [2.338032477357319, 48.89758254010441], [2.338033979102459, 48.897554007614744], [2.338138856400926, 48.89743875586515], [2.338242346219589, 48.89732467085834], [2.338347222583364, 48.89720941980141], [2.33845071150098, 48.89709533369136], [2.338555586941507, 48.896980082427845], [2.338659074935331, 48.8968659970131], [2.338763949464045, 48.8967507446437], [2.338867436545312, 48.89663665902501], [2.338972311503284, 48.89652140735579], [2.339075796308202, 48.896407321525665], [2.3391806703543683, 48.896292068750576], [2.339284154246859, 48.896177982716516], [2.3393890273584, 48.896062730634085], [2.339492510338576, 48.89594864439605], [2.339493988047001, 48.89594172148482], [2.339473315570915, 48.895890353403026], [2.339449164992609, 48.89583834380082], [2.339451438476595, 48.89583019231052], [2.339560366210636, 48.895737790762134], [2.339681250635126, 48.89564125161331], [2.339790177566001, 48.895548849839926], [2.339911061125571, 48.895452310442465], [2.340019987253285, 48.89535990844416], [2.340106109835062, 48.895291129949975], [2.340137807950283, 48.895269928659]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 30, "zemmour_eric": 49.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "18-67", "circ_bv": "03", "num_bureau": 67, "roussel_fabien": 28.0, "nb_emargement": 1148.0, "nb_procuration": 56.0, "nb_vote_blanc": 8.0, "jadot_yannick": 116.0, "le_pen_marine": 60.0, "nb_exprime": 1138.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1448.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "69", "geo_point_2d": [48.895553332819524, 2.338247377255136], "melenchon_jean_luc": 447.0, "poutou_philippe": 16.0, "macron_emmanuel": 333.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.378703797998635, 48.89253576231712], [2.378704038260656, 48.89253574377864], [2.378737259438015, 48.892518935186786], [2.378851000781116, 48.89246141210488], [2.379002821919001, 48.892384599040504], [2.379003081292954, 48.892384464588325], [2.379116820674203, 48.892326942139064], [2.379213859682343, 48.89227533776178], [2.379233849580896, 48.89225064714775], [2.379206285939074, 48.89222548338487], [2.379261390982472, 48.89209773110092], [2.379315548990751, 48.89197274557315], [2.379370654862371, 48.891844993216566], [2.379424810981699, 48.89172000760351], [2.379479916317753, 48.89159225516719], [2.379534071901217, 48.891467270375216], [2.379589176701714, 48.89133951785918], [2.379643333134528, 48.891214532096775], [2.379698436035701, 48.89108677949395], [2.379752591943375, 48.890961793653354], [2.379807695672774, 48.89083404097791], [2.379861849691655, 48.89070905505207], [2.379916952885417, 48.89058130229686], [2.379971106368472, 48.89045631719207], [2.380026209026808, 48.89032856435721], [2.380080363359106, 48.89020357828201], [2.380135464118176, 48.89007582536037], [2.380189617925365, 48.889950839207], [2.380185271072998, 48.8899414799515], [2.380152543157712, 48.88992127006013], [2.380081329580111, 48.889881869948944], [2.3800665601168842, 48.88988068462141], [2.379887299551108, 48.889938642185896], [2.379706097585278, 48.889995366346966], [2.379526836223567, 48.890053323365784], [2.37934563347658, 48.89011004607623], [2.379166371318836, 48.89016800254934], [2.378985166405617, 48.89022472560057], [2.378969832496968, 48.89022306236952], [2.378810237598425, 48.890121158017784], [2.378662304707814, 48.890024323175695], [2.37851437373117, 48.88992748814934], [2.378354780629936, 48.889825583163145], [2.37820685078982, 48.889728747739376], [2.378047258899468, 48.88962684232486], [2.378045363178594, 48.88961542907654], [2.378147448978066, 48.889513410500236], [2.378249486293376, 48.8894123349666], [2.3783515713054832, 48.889310315298175], [2.37845360782658, 48.8892092395719], [2.378450162579687, 48.88919692885309], [2.3782941120958663, 48.889123702597296], [2.378139293143264, 48.88905039529253], [2.378135969961884, 48.88903803393505], [2.378270210329669, 48.888907849941795], [2.378412297459607, 48.88876438845238], [2.378404940191792, 48.88875088560172], [2.378363505297615, 48.88873804940316], [2.3782568423200092, 48.88871611151318], [2.378218025916038, 48.888724746697875], [2.378213294227334, 48.888731549784396], [2.378058675491401, 48.88880725754428], [2.37790935636654, 48.88888041697542], [2.377754735382942, 48.88895612432547], [2.3776054154149, 48.88902928246843], [2.377450793547446, 48.88910498941572], [2.377301472714624, 48.889178148069], [2.377146849963207, 48.88925385461356], [2.376997528287208, 48.88932701197864], [2.376842904651827, 48.88940271812046], [2.376693582111133, 48.88947587599582], [2.376544259161719, 48.889549032780856], [2.376389634207918, 48.88962473832208], [2.376240310393796, 48.88969789561741], [2.376085685919756, 48.88977360076295], [2.376057487260752, 48.889781634962446], [2.376052494078863, 48.889804423842484], [2.376127072824115, 48.88992887388404], [2.376195346081778, 48.89004407116834], [2.376269925511601, 48.89016852109376], [2.376338199399534, 48.89028371827147], [2.376406473578792, 48.89039891629743], [2.37648105403235, 48.8905233651518], [2.376549328841893, 48.89063856307117], [2.376623909980042, 48.89076301180943], [2.376645955443322, 48.890800209179005], [2.376639869439459, 48.89082555094101], [2.37666184674624, 48.890837116402196], [2.3767080754157073, 48.89091511682949], [2.376767046374007, 48.89100326583931], [2.376835322456321, 48.89111846264594], [2.376894293849585, 48.89120661247604], [2.376896647789193, 48.89120900882411], [2.377022693597827, 48.8913010850872], [2.377148808188056, 48.8913932631885], [2.377274854877891, 48.891485340069906], [2.377400968997037, 48.891577517883086], [2.377527016578736, 48.89166959448361], [2.377653131590681, 48.89176177201575], [2.377779180075099, 48.89185384743615], [2.377905295969001, 48.89194602558644], [2.378031345345396, 48.892038100725934], [2.378157463495707, 48.892130278602274], [2.378283512400392, 48.892222353453775], [2.37840963144343, 48.89231453104906], [2.378535682603902, 48.892406605626725], [2.37866180117587, 48.89249878293389], [2.378703797998635, 48.89253576231712]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 40, "zemmour_eric": 95.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-64", "circ_bv": "17", "num_bureau": 64, "roussel_fabien": 8.0, "nb_emargement": 1217.0, "nb_procuration": 54.0, "nb_vote_blanc": 11.0, "jadot_yannick": 70.0, "le_pen_marine": 40.0, "nb_exprime": 1198.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1672.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1218, "quartier_bv": "73", "geo_point_2d": [48.89064534174295, 2.378115259224674], "melenchon_jean_luc": 580.0, "poutou_philippe": 8.0, "macron_emmanuel": 295.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.412608548373612, 48.87587789135702], [2.412592839051553, 48.87587764160145], [2.412402050048495, 48.87586390868442], [2.41221247706588, 48.87585031903102], [2.412021688273351, 48.87583658460814], [2.411832116852909, 48.87582299435875], [2.411642544167921, 48.87580940380234], [2.411451755675561, 48.875795668470644], [2.411262184552759, 48.875782077318206], [2.411071396260705, 48.87576834137997], [2.410881823973249, 48.87575474961818], [2.410691035881714, 48.87574101307339], [2.410501463792984, 48.87572742070891], [2.410310677265142, 48.87571368356434], [2.410121105375148, 48.87570009059723], [2.40993031768447, 48.87568635283937], [2.409740745993119, 48.87567275926957], [2.409549958492688, 48.87565902180446], [2.409360388363556, 48.875645427638744], [2.409169601073665, 48.87563168866784], [2.409166680027553, 48.8756312605586], [2.408982296048792, 48.87558995513293], [2.408794967277088, 48.87554781738514], [2.408610583878195, 48.875506512283096], [2.40842325570743, 48.87546437395046], [2.408238871535454, 48.87542306826603], [2.408051543965431, 48.87538092934855], [2.4078671617469, 48.87533962309519], [2.407679834777827, 48.87529748359286], [2.407671341202455, 48.87528605153838], [2.407736604850327, 48.87516065336735], [2.407800477325965, 48.875038269119344], [2.40786574171581, 48.874912870856505], [2.407929613594385, 48.87479048561283], [2.407994875999508, 48.874665087244686], [2.408058747260585, 48.87454270280389], [2.408059199947634, 48.87454161954918], [2.408096465197496, 48.874423479654645], [2.408134663487882, 48.87430324261162], [2.408171928396034, 48.874185102668065], [2.408210126327184, 48.87406486647426], [2.408247392256953, 48.87394672648841], [2.408285589849305, 48.8738264893453], [2.408322854074045, 48.873708349303726], [2.408361051317388, 48.87358811211055], [2.40835115035414, 48.873577566166915], [2.408148043270249, 48.873542594325926], [2.407949195152597, 48.87350838245409], [2.407746088608362, 48.8734734099289], [2.407547239655637, 48.87343919738044], [2.4073441336510673, 48.87340422417108], [2.407145286589696, 48.87337001095954], [2.406942179761593, 48.87333503705922], [2.406743333228376, 48.87330082317782], [2.406544486956387, 48.873266608965054], [2.406341382298104, 48.873231634048814], [2.406142535190976, 48.87319741915944], [2.405939431072489, 48.87316244355904], [2.40574058585684, 48.87312822800657], [2.405537480924915, 48.87309325081593], [2.4053386362271842, 48.873059035492936], [2.40513553319828, 48.87302405762486], [2.405099819441152, 48.873017912163654], [2.405084762135083, 48.87300744553616], [2.405063757765916, 48.873011074274714], [2.404900626041422, 48.87298300278771], [2.404733231172494, 48.87294921529891], [2.404723620488576, 48.872951160427625], [2.404713246526902, 48.872970743079186], [2.404759894001781, 48.87309275464765], [2.404806289940507, 48.87321365155846], [2.404852939224459, 48.87333566217134], [2.4048993355955153, 48.8734565590195], [2.404945983941384, 48.873578570461746], [2.4049923821182633, 48.87369946635472], [2.405039030899637, 48.87382147773388], [2.40508542813537, 48.87394237445667], [2.40513207872585, 48.874064384880214], [2.405178476393931, 48.87418528154035], [2.40522512604633, 48.87430729279327], [2.405271525510101, 48.874428189397506], [2.405318175608291, 48.874550199687995], [2.405364574141085, 48.87467109622278], [2.405411224664533, 48.87479310734949], [2.405457625003204, 48.87491400292905], [2.4054579390370723, 48.87491730773343], [2.405433831465568, 48.87504664496176], [2.405410251595658, 48.87517560797199], [2.405386672972338, 48.87530457096931], [2.405362563681361, 48.87543390813116], [2.405338984822933, 48.87556287108885], [2.4053148752939713, 48.87569220821081], [2.405291294837259, 48.87582117112213], [2.405267186433583, 48.87595050821097], [2.40524360574185, 48.87607947108272], [2.40521949710029, 48.87620880813163], [2.405195916173532, 48.87633777096375], [2.405171807293884, 48.876467107972786], [2.405148226132097, 48.87659607076535], [2.405124117014457, 48.876725407734476], [2.405112671369277, 48.87675496579602], [2.405121565887955, 48.876759080363634], [2.405159793450716, 48.87677014142312], [2.405324061099531, 48.87681560838768], [2.405512527772284, 48.87687014003427], [2.405676797417973, 48.87691560561816], [2.405865263448225, 48.87697013759695], [2.405865605953064, 48.87697023282713], [2.406029876222659, 48.8770156979224], [2.406255853526104, 48.87707629340959], [2.406420124470872, 48.87712175796498], [2.406429793482207, 48.87712875412829], [2.406445655829435, 48.877132476861696], [2.406687001000554, 48.87717661714296], [2.406923144693696, 48.87722389410673], [2.406925537014223, 48.87722454178471], [2.407126022977221, 48.8772941698865], [2.407320356027889, 48.877365006459236], [2.407520843059407, 48.87743463389095], [2.407715177181389, 48.87750546891448], [2.4079095131953983, 48.87757630362471], [2.408110001827901, 48.87764593005638], [2.408111138842549, 48.87764630080569], [2.408301395800865, 48.87770110574222], [2.408492807106034, 48.877757551954666], [2.408683064872367, 48.87781235627912], [2.408874477000046, 48.87786880187564], [2.409064734210963, 48.87792360558123], [2.409256148514274, 48.87798005146781], [2.4094464065435, 48.87803485366206], [2.409637820305991, 48.87809129892596], [2.409828080506544, 48.87814610051481], [2.410019495091438, 48.878202545162765], [2.410209756089903, 48.87825734703876], [2.410401171507483, 48.878313790171504], [2.410591433313845, 48.878368591435375], [2.410782849554016, 48.878425033952134], [2.410801364258189, 48.87842468890295], [2.410832328810688, 48.87841086393787], [2.410832558342613, 48.878410581779114], [2.410843212421826, 48.878397467147636], [2.410903299790959, 48.8783234918203], [2.411000774078123, 48.878202961416385], [2.411033502134509, 48.87816266974581], [2.411086466467018, 48.878097465493575], [2.411183939897003, 48.87797693581505], [2.4112091677701, 48.87794587657884], [2.411316118620956, 48.877814209340734], [2.411413590989461, 48.87769367944431], [2.411491358801447, 48.87759793612059], [2.411588830369816, 48.877477405158544], [2.411617738487742, 48.877441816007256], [2.411620434754436, 48.87743849634627], [2.411639968133429, 48.8774144489654], [2.411643039118624, 48.87741066709174], [2.411693885032898, 48.87734806737098], [2.411791355654802, 48.877227537116], [2.411809508970188, 48.87720518715129], [2.411916025405591, 48.87707404867281], [2.412013495000613, 48.876953518206975], [2.412110964144509, 48.876832987648655], [2.412217480433251, 48.87670184796509], [2.412229317393874, 48.87668727399356], [2.412234560435982, 48.876680819168065], [2.412355258021857, 48.87652568831057], [2.41242185334354, 48.87644369506273], [2.41242562104024, 48.87643905772613], [2.412430062110503, 48.87643358911651], [2.4124406614711003, 48.87642053970579], [2.412460322688383, 48.87639633271936], [2.412464664199303, 48.87639098682783], [2.412468470459995, 48.87637809563078], [2.41250841293688, 48.87625306988232], [2.412536417415747, 48.876158226390636], [2.412571386362173, 48.87603979615857], [2.412611326979344, 48.875914769431475], [2.412617628104335, 48.87589342777001], [2.412608548373612, 48.87587789135702]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 23, "zemmour_eric": 67.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-21", "circ_bv": "15", "num_bureau": 21, "roussel_fabien": 26.0, "nb_emargement": 1168.0, "nb_procuration": 28.0, "nb_vote_blanc": 13.0, "jadot_yannick": 57.0, "le_pen_marine": 102.0, "nb_exprime": 1146.0, "nb_vote_nul": 9.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1619.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1168, "quartier_bv": "78", "geo_point_2d": [48.87591307669715, 2.4081925483137816], "melenchon_jean_luc": 525.0, "poutou_philippe": 11.0, "macron_emmanuel": 280.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.284517905923893, 48.87269535914887], [2.28455385308959, 48.87270582564103], [2.284521029245586, 48.87283630692967], [2.284487897496452, 48.87296725671152], [2.284455074685765, 48.87309773795932], [2.284421942604526, 48.87322868769189], [2.284389119476231, 48.87335916799144], [2.284355987062782, 48.873490117674756], [2.284323162228867, 48.87362059881642], [2.284290029483402, 48.873751548450485], [2.28425720568281, 48.87388202955129], [2.284224072617583, 48.874012978236784], [2.284191248487013, 48.87414345928861], [2.284158115077203, 48.874274408824135], [2.284125289253333, 48.87440488981879], [2.284092155511491, 48.87453583930502], [2.284059330733311, 48.87466631935959], [2.284026196659335, 48.87479726879655], [2.283993371538802, 48.87492774970135], [2.283960237132586, 48.875058699089024], [2.283927410318717, 48.875189179936676], [2.283894275592818, 48.875320128375755], [2.2838614498122842, 48.875450609182536], [2.283828314741771, 48.87558155847163], [2.283795488631331, 48.87571203922943], [2.283762351865309, 48.875842988461066], [2.283729525437119, 48.875973468270566], [2.283696389702393, 48.876104417461015], [2.283663562931819, 48.876234898120806], [2.283630426864826, 48.876365847261965], [2.283597599776704, 48.87649632697346], [2.283564462014166, 48.87662727605716], [2.283531634583542, 48.876757756618865], [2.283498497852305, 48.876888705661464], [2.283465670091651, 48.87701918617414], [2.283432533040507, 48.87715013426811], [2.283399703586524, 48.877280614723624], [2.28336656619082, 48.877411563667565], [2.283397935739778, 48.877479159757925], [2.283479957038862, 48.877473361624354], [2.283540247808056, 48.877452443166625], [2.28372489890616, 48.87739418534128], [2.283875513610505, 48.87734192728051], [2.284026128012607, 48.877289669027796], [2.284171827581118, 48.87724369996646], [2.284195341468934, 48.87723621235774], [2.284196667687581, 48.87723545135117], [2.28423561807231, 48.87722316272023], [2.284414507863664, 48.87716552679933], [2.284599156966738, 48.87710726761036], [2.284778045957728, 48.877049631140174], [2.284962694243272, 48.87699137138433], [2.285141583797281, 48.876933734373004], [2.285326231265291, 48.876875474050316], [2.285505118655545, 48.87681783648155], [2.28568976530602, 48.87675957559202], [2.285868653259282, 48.8767019374821], [2.286053299092118, 48.87664367602572], [2.286232184869302, 48.87658603825763], [2.286416829884703, 48.87652777623446], [2.28659571487384, 48.87647013701782], [2.28678036043507, 48.87641187443594], [2.2869592446238283, 48.87635423467], [2.287143888004141, 48.87629597151318], [2.287229185659581, 48.87626848651909], [2.287239677917422, 48.876260980133225], [2.287183522579116, 48.87621376398623], [2.287119386864245, 48.87614315247733], [2.287049312502285, 48.8760662389464], [2.28704775112089, 48.87605948278543], [2.2870936059053832, 48.87593502706278], [2.287138810159733, 48.875811464079796], [2.287184664520595, 48.87568700739502], [2.2872298683436663, 48.87556344434988], [2.287275722268594, 48.87543898760223], [2.287320925660393, 48.875315424494914], [2.287366780512731, 48.875190967692525], [2.287411982109925, 48.87506740451494], [2.287457184855986, 48.87494384131454], [2.287503039055605, 48.874819384418025], [2.287548240007078, 48.87469582114736], [2.2875940937707773, 48.87457136418801], [2.287639294291006, 48.874447800855194], [2.287683386131427, 48.87432673106918], [2.287727476415958, 48.87420566034631], [2.287772677665718, 48.874082096930294], [2.287816767523324, 48.87396102704693], [2.287861968348965, 48.8738374635698], [2.287906057804243, 48.873716392727474], [2.287951258205772, 48.873592829189235], [2.287995347234038, 48.87347175918643], [2.288040547223752, 48.87334819468786], [2.288084635837508, 48.873227124625345], [2.288129835390829, 48.87310356096491], [2.288118940595445, 48.87309259432371], [2.287949704705751, 48.87307298299951], [2.287778648684411, 48.87305258537052], [2.287609411677253, 48.8730329744557], [2.287438355920666, 48.873012576339704], [2.287269120534905, 48.87299296495118], [2.287098065042873, 48.872972566348146], [2.286928828564262, 48.87295295357042], [2.286757773336997, 48.87293255448038], [2.286752292230287, 48.87292820047132], [2.286726376730113, 48.872928642313674], [2.286726307314779, 48.87292863380594], [2.286518436491337, 48.872903112663096], [2.286313684731589, 48.87287812687732], [2.286105815675163, 48.872852605024946], [2.285901064311888, 48.87282761853223], [2.285696314495998, 48.872802632596105], [2.285488444692519, 48.872777108762534], [2.285283693909835, 48.87275212211136], [2.2850758258733013, 48.87272659756818], [2.284871075487109, 48.872701610210115], [2.28466320649108, 48.87267608494109], [2.284559652753023, 48.87263883303959], [2.284559231473264, 48.8726391309028], [2.284547182789705, 48.872684241069784], [2.284517905923893, 48.87269535914887]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 129, "zemmour_eric": 200.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-66", "circ_bv": "04", "num_bureau": 66, "roussel_fabien": 9.0, "nb_emargement": 944.0, "nb_procuration": 57.0, "nb_vote_blanc": 5.0, "jadot_yannick": 40.0, "le_pen_marine": 40.0, "nb_exprime": 936.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1246.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 944, "quartier_bv": "64", "geo_point_2d": [48.874880189371446, 2.285641455581752], "melenchon_jean_luc": 81.0, "poutou_philippe": 3.0, "macron_emmanuel": 410.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291588479585692, 48.851641440526855], [2.291601155371271, 48.851625781253404], [2.291642517500214, 48.85158391445024], [2.291729488001573, 48.851495372766266], [2.29183679558256, 48.851386757126036], [2.2919237640743733, 48.85129821437783], [2.292031070844425, 48.851189598544124], [2.292118038664876, 48.85110105653828], [2.292115583175153, 48.85108939977611], [2.292022039702638, 48.85103531989897], [2.291931034073408, 48.85098243402686], [2.291919703001268, 48.850969054619064], [2.291909212801191, 48.85096810936409], [2.291735079956363, 48.851030920780296], [2.29156118750277, 48.85109366141646], [2.291387053818904, 48.85115647231911], [2.291213160515091, 48.85121921334173], [2.291039025992184, 48.851282023730775], [2.29086513322533, 48.85134476334923], [2.290690997863387, 48.85140757322471], [2.290517102883487, 48.851470313221554], [2.290342966682605, 48.85153312258341], [2.290169070876961, 48.85159586116808], [2.289994933837045, 48.85165867001633], [2.289821038556141, 48.85172140809618], [2.289646900677191, 48.85178421643088], [2.289473003183317, 48.85184695488901], [2.28929886446533, 48.85190976271009], [2.2891249661457342, 48.851972499756016], [2.288950826588712, 48.85203530706348], [2.2887769287815942, 48.85209804450393], [2.288602788385435, 48.85216085129777], [2.288428888389975, 48.852223587317916], [2.288254747154784, 48.852286393598135], [2.288080846309056, 48.85234913000467], [2.288062475914697, 48.85234569846092], [2.2879868286201512, 48.85225828192231], [2.287909811325528, 48.852170112503124], [2.287890951358274, 48.852166909154214], [2.287724137767155, 48.852233489727716], [2.2875600176704, 48.852298902546146], [2.287393201871159, 48.852365482642284], [2.28722908094326, 48.852430894999024], [2.287062265661379, 48.85249747463404], [2.286898142539592, 48.852562886520936], [2.286731326400018, 48.852629466585974], [2.28656720380983, 48.8526948780193], [2.28640038547443, 48.85276145670761], [2.2862362620530963, 48.85282686767929], [2.286069444235065, 48.85289344590642], [2.285905318619831, 48.852958856408286], [2.285741193955308, 48.85302426668928], [2.285574374872791, 48.853090844214364], [2.285410248014362, 48.85315625402554], [2.285243428074123, 48.853222831980666], [2.285079300396879, 48.85328824043082], [2.284912479611351, 48.85335481791663], [2.284748352453287, 48.853420226812524], [2.284581529471939, 48.85348680292161], [2.2845130030251832, 48.85355095555644], [2.284519232406645, 48.85355524228309], [2.284570300607623, 48.85359134307683], [2.284705340773519, 48.853689561928384], [2.284839980259045, 48.853784739283334], [2.284975021434467, 48.85388295781344], [2.285109663262738, 48.85397813575583], [2.285244704097249, 48.8540763530571], [2.285379346917737, 48.85417153067946], [2.285514390124571, 48.854269747667374], [2.285649032574695, 48.85436492496159], [2.285784076778748, 48.854463142527365], [2.285918720233527, 48.85455831860229], [2.286053765447139, 48.8546565358466], [2.286188411256953, 48.854751711609595], [2.286323456117428, 48.85484992852431], [2.286458102919587, 48.8549451039673], [2.286593150152342, 48.8550433205687], [2.286727796584143, 48.85513849568347], [2.28686284482648, 48.85523671196341], [2.286997493601152, 48.855331887665585], [2.287132541502566, 48.85543010271666], [2.287267191269508, 48.85552527809876], [2.28740224153104, 48.855623493735735], [2.287536890939937, 48.855718667890386], [2.287537655015341, 48.855718905373585], [2.28760134796219, 48.855673571110906], [2.287712542545211, 48.85556103623254], [2.287819866872323, 48.85545242459219], [2.287927190739825, 48.855343813744234], [2.288038385290514, 48.85523127763849], [2.28814570824693, 48.85512266657291], [2.288256900490937, 48.855010130233616], [2.288364222536382, 48.85490151895045], [2.288475413836641, 48.85478898238569], [2.288582734983402, 48.85468036998566], [2.288693925327442, 48.85456783409475], [2.288801245563249, 48.85445922147711], [2.288912434963564, 48.854346685360746], [2.289019754288426, 48.85423807252553], [2.289130944107611, 48.8541255361918], [2.289238262521535, 48.854016923139], [2.289349450034123, 48.85390438657179], [2.289456767537224, 48.853795773301364], [2.289567954106018, 48.85368323650873], [2.289675270698102, 48.85357462302076], [2.28978645632311, 48.853462086002644], [2.2898937720043913, 48.85335347229712], [2.290004956685625, 48.853240935053634], [2.290112271455908, 48.85313232113049], [2.290223456556138, 48.85301978366967], [2.290330770415533, 48.852911169528994], [2.290441953209348, 48.852798631834645], [2.290549266157868, 48.852690017476405], [2.290660448007837, 48.85257747955665], [2.290767760045492, 48.85246886498086], [2.29087894095183, 48.85235632683574], [2.2909862520786293, 48.85224771204232], [2.29109743340388, 48.85213517367989], [2.291170931226755, 48.85206078139893], [2.291176763861006, 48.852059697147446], [2.291187598526245, 48.852043449625626], [2.291221409534495, 48.85200922688238], [2.291316038915093, 48.85191338671231], [2.291423348218763, 48.851804771483664], [2.291517976868898, 48.85170893023698], [2.291583921812093, 48.85164218159582], [2.291588479585692, 48.851641440526855]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 139, "zemmour_eric": 168.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "15-15", "circ_bv": "12", "num_bureau": 15, "roussel_fabien": 16.0, "nb_emargement": 1227.0, "nb_procuration": 44.0, "nb_vote_blanc": 9.0, "jadot_yannick": 71.0, "le_pen_marine": 82.0, "nb_exprime": 1215.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1586.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1228, "quartier_bv": "59", "geo_point_2d": [48.85335410953603, 2.288091184537117], "melenchon_jean_luc": 203.0, "poutou_philippe": 0.0, "macron_emmanuel": 483.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.313561952845777, 48.8838310746207], [2.313566949907999, 48.88382657692892], [2.313605693267694, 48.8838077970494], [2.31362323560607, 48.88380011389343], [2.313645473463882, 48.883791566414054], [2.313647150403734, 48.883790040866344], [2.313648055805615, 48.88378921777124], [2.313615117904388, 48.88375303315134], [2.313464764860734, 48.88367131927403], [2.313316380919346, 48.88359067500764], [2.313166028813202, 48.88350896074314], [2.313017645797046, 48.88342831609461], [2.312867294628406, 48.88334660144288], [2.312718912537375, 48.883265956412245], [2.312716227531689, 48.88326399394249], [2.312614589519344, 48.88316312758721], [2.312513397422586, 48.883062703468696], [2.312411760195953, 48.88296183692275], [2.312310568869584, 48.88286141351369], [2.312208932428654, 48.882760546777135], [2.312107741884536, 48.882660123178276], [2.312006553106095, 48.88255969859332], [2.311904916479306, 48.88245883156316], [2.311903926829035, 48.88245767113041], [2.31183615119753, 48.88236231819863], [2.311764330338249, 48.8822537316448], [2.311696553864229, 48.88215837860847], [2.311624733577274, 48.88204979195074], [2.311556957636255, 48.88195443791846], [2.311503319410722, 48.88187334135217], [2.311492522538888, 48.8818663202106], [2.311461790590688, 48.88187378601606], [2.311334796173397, 48.8819818318941], [2.311209490655129, 48.88208844031745], [2.311082493827421, 48.88219648589898], [2.310957187276078, 48.88230309403749], [2.3108301894015613, 48.88241113933025], [2.310704881817235, 48.88251774718391], [2.310577884259335, 48.88262579219587], [2.31045257427848, 48.8827323997568], [2.3103255756736543, 48.882840444480024], [2.310200264671701, 48.88294705085683], [2.310073265008028, 48.88305509619062], [2.309947954336612, 48.88316170229037], [2.309822641776677, 48.88326830914007], [2.309695640558001, 48.88337635314249], [2.309693517054139, 48.883378948966055], [2.30961553354192, 48.88352910438253], [2.309537349502267, 48.88367964258918], [2.309534459871998, 48.883682835645004], [2.309419123134751, 48.883765063782334], [2.30930379704897, 48.88384728377195], [2.309188459571361, 48.88392951257404], [2.309073134120787, 48.8840117323371], [2.308957795926669, 48.88409396000542], [2.308842469735695, 48.884176180433236], [2.308839610869063, 48.884179310695565], [2.308774413740039, 48.884301914482144], [2.3087093127893272, 48.884424338010795], [2.308644115058708, 48.88454694079988], [2.30857901349536, 48.88466936423041], [2.308513815139257, 48.88479196782049], [2.30844871159967, 48.884914391145024], [2.308446897507807, 48.884916680259714], [2.308310560407687, 48.88504115350714], [2.308173952549662, 48.88516655763198], [2.308037614142919, 48.885291030540316], [2.307901006347647, 48.885416433433846], [2.307891771952289, 48.885429013870194], [2.307898304392417, 48.88543555380119], [2.308061840137534, 48.88548776182443], [2.308223830883737, 48.88553947595343], [2.308387367281473, 48.88559168352712], [2.308549357298671, 48.8856433981022], [2.308712894349128, 48.88569560522629], [2.308874886388432, 48.885747318464695], [2.309038424079676, 48.885799526038525], [2.3092004154020103, 48.88585123882375], [2.309363955121526, 48.88590344505663], [2.309525947078378, 48.88595515829579], [2.309569795727632, 48.88598076420599], [2.309582975553121, 48.88597410871089], [2.309671097556524, 48.885907915210346], [2.309793992118033, 48.885812214480865], [2.309919734826839, 48.885717761219915], [2.310004920455958, 48.88565142463276], [2.310017856652759, 48.88564420830038], [2.310022807840592, 48.8856377544506], [2.310060515835277, 48.88560839092976], [2.310204119515407, 48.88549703301764], [2.310308428335893, 48.885415804623996], [2.310327013479266, 48.885401332612446], [2.310331861890409, 48.885394602961256], [2.310334193709018, 48.88539316846876], [2.310499375356794, 48.885313108017115], [2.310658978707105, 48.88523574918696], [2.310824159356213, 48.885155688275816], [2.31098376174157, 48.88507832900165], [2.311143362301031, 48.88500096860217], [2.311308542812421, 48.884920907912786], [2.31146814239494, 48.88484354796858], [2.311633321919563, 48.8847634859204], [2.311792920537242, 48.8846861255322], [2.311958099063204, 48.88460606302453], [2.312117696715946, 48.88452870219234], [2.312282874243253, 48.88444863922511], [2.3124424709310603, 48.88437127794894], [2.3126076474597133, 48.88429121452223], [2.31276724318259, 48.884213852802084], [2.312932418712594, 48.88413378891586], [2.313092013470542, 48.88405642675174], [2.313257187990041, 48.88397636330528], [2.313416781794824, 48.88389899979789], [2.313543211939142, 48.8838377157636], [2.313561952845777, 48.8838310746207]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 108, "zemmour_eric": 137.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "17-46", "circ_bv": "04", "num_bureau": 46, "roussel_fabien": 14.0, "nb_emargement": 1250.0, "nb_procuration": 72.0, "nb_vote_blanc": 9.0, "jadot_yannick": 90.0, "le_pen_marine": 66.0, "nb_exprime": 1239.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1530.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1249, "quartier_bv": "66", "geo_point_2d": [48.88407301365639, 2.310695623401222], "melenchon_jean_luc": 190.0, "poutou_philippe": 4.0, "macron_emmanuel": 597.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.368461751970471, 48.82729287911847], [2.368438105606591, 48.82729258965925], [2.368369317082883, 48.82728308783582], [2.368160457202817, 48.827254497898245], [2.367962425388002, 48.82722714210023], [2.367753565944188, 48.82719855234993], [2.367555533193285, 48.82717119586964], [2.367346675569739, 48.82714260451517], [2.367148643244856, 48.82711524735974], [2.366939786057668, 48.82708665619258], [2.366741754169735, 48.82705929746274], [2.366532896067735, 48.82703070557634], [2.3663348659570103, 48.82700334707789], [2.366319468247965, 48.82699930464861], [2.366300672859175, 48.82700594676063], [2.366234126370515, 48.82711607318097], [2.366182693660392, 48.82721906847973], [2.366172272099841, 48.827225091212924], [2.365982014070909, 48.82724868416853], [2.365794200559075, 48.827273316870006], [2.365603942172121, 48.82729691012249], [2.3654161283079302, 48.82732154222921], [2.365225869584846, 48.82734513397987], [2.365038056730409, 48.82736976549897], [2.365029890525605, 48.82737312267227], [2.364950956544581, 48.827443844891626], [2.364863631826416, 48.82751922711625], [2.364784697398652, 48.827589949216666], [2.364697372206328, 48.82766533041077], [2.364696275841581, 48.827675152038935], [2.364802097257933, 48.827801293628994], [2.364906003468178, 48.827927363780546], [2.365011825903807, 48.828053505156674], [2.365115733134834, 48.82817957419832], [2.365221555216879, 48.828305716252615], [2.365325463457741, 48.82843178508372], [2.365324915494454, 48.82844098995292], [2.365211271420141, 48.82855624937714], [2.365102309268619, 48.828663410407], [2.365087425528196, 48.82867842735935], [2.365112059984323, 48.82869282038639], [2.365276275253304, 48.82876425499724], [2.36544917713299, 48.82883764213487], [2.36564362138748, 48.828922226246], [2.365816524308184, 48.828995612842256], [2.365829845977019, 48.82899623209974], [2.365995532934167, 48.82894446041431], [2.36615567016639, 48.828895022635955], [2.366321357840357, 48.82884325050171], [2.3664814931015092, 48.828793811376116], [2.366641629421184, 48.82874437204113], [2.3668073161337713, 48.82869259922667], [2.366967450471337, 48.828643159443736], [2.367133136527878, 48.82859138707256], [2.36729327160771, 48.82854194685611], [2.367458955667706, 48.828490173122354], [2.367466734523814, 48.82848247876273], [2.367471423035397, 48.82841849702203], [2.367487376359746, 48.82833041681028], [2.36749757119749, 48.82832276490468], [2.367522561796413, 48.82831738661544], [2.367533786943234, 48.82830093529824], [2.367738091947739, 48.82826692116334], [2.367942992304958, 48.828232878348246], [2.368147296775778, 48.828198863512235], [2.368329054852362, 48.82816871976015], [2.368533358830761, 48.828134703363425], [2.36871511509832, 48.828104559015685], [2.3688968725179143, 48.82807441439813], [2.369101175745374, 48.82804039792783], [2.369114289643146, 48.82804286033829], [2.3692255764387, 48.8281186933599], [2.3693624182888993, 48.82820622785926], [2.369473705794, 48.82828206063898], [2.369610548489723, 48.82836959484169], [2.369633343520969, 48.828361247403436], [2.369600840467348, 48.8282613114013], [2.369571017554624, 48.828175631971476], [2.369538513385055, 48.82807569502937], [2.36950869068094, 48.827990015569846], [2.3695187059958283, 48.827979268703245], [2.36971785634509, 48.82794685637655], [2.369915746768895, 48.827914303074074], [2.370114896634014, 48.827881889185086], [2.370312786563301, 48.82784933522377], [2.370511935933393, 48.82781692067173], [2.370709825368154, 48.82778436605154], [2.370720149749066, 48.827775413159955], [2.3707172980289393, 48.827700537067514], [2.370715280679045, 48.82763496847264], [2.370720949438279, 48.82761143203525], [2.370712738236183, 48.827606131095166], [2.37057980200222, 48.82758779301893], [2.370381766289926, 48.82756044122804], [2.370183322421502, 48.82753306537296], [2.369985288487206, 48.82750571293139], [2.369786843662315, 48.82747833730928], [2.36958881015479, 48.82745098331051], [2.369390365746511, 48.827423607029175], [2.3691923326548032, 48.82739625237256], [2.368993890025143, 48.82736887543918], [2.368795855987361, 48.82734152011755], [2.3685974137741272, 48.827314142524976], [2.368468168675353, 48.82729628925085], [2.368461751970471, 48.82729287911847]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 37, "zemmour_eric": 88.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-14", "circ_bv": "09", "num_bureau": 14, "roussel_fabien": 25.0, "nb_emargement": 1063.0, "nb_procuration": 33.0, "nb_vote_blanc": 15.0, "jadot_yannick": 51.0, "le_pen_marine": 117.0, "nb_exprime": 1036.0, "nb_vote_nul": 12.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1436.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1063, "quartier_bv": "50", "geo_point_2d": [48.827877857063704, 2.3671464096821837], "melenchon_jean_luc": 396.0, "poutou_philippe": 8.0, "macron_emmanuel": 254.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.275835782564283, 48.85292682420487], [2.27583057451131, 48.85293971471317], [2.275824904907113, 48.852953749113794], [2.275884243232232, 48.85297974094053], [2.276013653215397, 48.85306051056007], [2.276166347102493, 48.8531543878822], [2.276295756593898, 48.85323515717566], [2.276448451501102, 48.85332903412312], [2.276577863226278, 48.85340980310704], [2.276730557778142, 48.85350368057075], [2.276859970386814, 48.853584448337564], [2.2770126659586962, 48.853678325426586], [2.277142079425908, 48.853759093774904], [2.27713787054505, 48.85377395277062], [2.276951534271806, 48.85382419751507], [2.276772258855606, 48.85387217059194], [2.276585923241375, 48.85392241477084], [2.276406647150761, 48.853970387295654], [2.276220309469987, 48.85402063089251], [2.276041032704859, 48.854068602865325], [2.275854695683112, 48.854118845896664], [2.275675418230873, 48.854166818216726], [2.275666995907215, 48.85417415188329], [2.275649744079269, 48.85427585327685], [2.275629279443567, 48.854371506795665], [2.275620284716846, 48.8543787389623], [2.275462077055128, 48.854413822065], [2.275259236404703, 48.854460634798166], [2.275237268744569, 48.854455096584196], [2.2752155604664432, 48.85446324460698], [2.275094935261656, 48.85455906473677], [2.274974380229894, 48.85465362965746], [2.274853754128343, 48.85474945042698], [2.274733198218496, 48.8548440150885], [2.274612571245101, 48.85493983469919], [2.274492014457062, 48.855034399101505], [2.2743713865869832, 48.85513021935193], [2.274250828920641, 48.85522478349506], [2.274130200166284, 48.85532060348594], [2.274009641634366, 48.855415166470564], [2.273889013358447, 48.85551098621016], [2.273768453935788, 48.855605549834884], [2.273765151338072, 48.855607425641075], [2.273625646272379, 48.85566390496221], [2.27347579742286, 48.85572509601716], [2.273336291728478, 48.855781574994985], [2.273186442200745, 48.85584276568108], [2.273182868770368, 48.85585594477625], [2.273271996503452, 48.855931331711865], [2.273385493841822, 48.85602449130468], [2.273474622156373, 48.85609987807792], [2.273546294807693, 48.8561587077259], [2.273545320503547, 48.85616895810457], [2.2735662613161702, 48.85618288500325], [2.273608086765093, 48.856217214734045], [2.2736657596568293, 48.856256490887624], [2.273681589533862, 48.85625829395728], [2.2738363897436358, 48.85620776943574], [2.273982357588605, 48.856159709330896], [2.274137157213846, 48.85610918441583], [2.2742831244927952, 48.85606112483908], [2.274429091502473, 48.85601306508225], [2.274583891634115, 48.855962538691564], [2.274588418401794, 48.85596015405241], [2.27471315601468, 48.85585901995824], [2.274840207250715, 48.8557570138797], [2.274867521082735, 48.85574088840602], [2.274866769303546, 48.8557344831085], [2.274993819935089, 48.85563247685546], [2.275106927118613, 48.855547148257706], [2.275109691621053, 48.855543878744875], [2.275156310871603, 48.85544418923082], [2.27521191098725, 48.85533963908825], [2.275218558325183, 48.85533461145947], [2.275389410000091, 48.85527688473127], [2.275544370823118, 48.8552268284218], [2.275699332723629, 48.85517677101835], [2.275870181985643, 48.8551190435872], [2.276025143240209, 48.85506898665625], [2.2761959918002432, 48.855011257855054], [2.276350952421262, 48.854961200497335], [2.276475251494567, 48.854919200177314], [2.276501853734869, 48.85491607206924], [2.276513052831387, 48.85490545988299], [2.276559601580151, 48.85488973091611], [2.276734772908297, 48.85483046798831], [2.276905621262863, 48.85477273816975], [2.27708079180426, 48.854713474729174], [2.277251638016691, 48.85465574530158], [2.277426807783611, 48.85459648044895], [2.277597654591887, 48.85453875052946], [2.277772823571947, 48.854479485164056], [2.277943668250468, 48.85442175473622], [2.278118837806463, 48.854362488866265], [2.278289681718027, 48.854304757938344], [2.278292329678027, 48.854303585854645], [2.278452024190502, 48.854213325033015], [2.278609965718296, 48.85412275213997], [2.278769659126352, 48.85403249087976], [2.278927599553808, 48.85394191755266], [2.27908729185755, 48.85385165585385], [2.279245231184775, 48.853761082092795], [2.279404922384009, 48.8536708199554], [2.279562860611112, 48.85358024576038], [2.279722550705945, 48.853489983184396], [2.279880487832728, 48.8533994085554], [2.280040176823267, 48.853309145540855], [2.28019811284984, 48.85321857047787], [2.280357800735888, 48.853128307024754], [2.280515735662358, 48.8530377315278], [2.280675422444024, 48.852947467636085], [2.280833356270194, 48.85285689170517], [2.280870723232375, 48.852813701427095], [2.280869836608013, 48.852776529094115], [2.280720878184319, 48.85268746124733], [2.280573144473049, 48.8525965892547], [2.28042418705844, 48.852507521923435], [2.280276453024592, 48.85241664864234], [2.280127496631375, 48.8523275809273], [2.279979763625077, 48.85223670726517], [2.279830809616084, 48.852147639174596], [2.279683077624792, 48.85205676603076], [2.279534123287075, 48.85196769664892], [2.279386392323416, 48.85187682312409], [2.279237438994639, 48.85178775425779], [2.2790897104335652, 48.85169687946088], [2.278940758126354, 48.85160781021083], [2.278793029217632, 48.85151693592396], [2.27864407794433, 48.85142786539093], [2.278496350063222, 48.85133699072306], [2.278453320329711, 48.851301500501734], [2.278407094896508, 48.85130901560523], [2.278268768470615, 48.85138353349288], [2.278120863689706, 48.85146219345269], [2.277982536447889, 48.851536710999135], [2.277834630800043, 48.85161537059428], [2.2776963027298303, 48.85168988869887], [2.277595715913662, 48.85174338258108], [2.277561229403085, 48.85175599836736], [2.277556037631563, 48.851761856044945], [2.277508717897109, 48.85178702137706], [2.277351863131599, 48.85187379523647], [2.2772039555749872, 48.851952454028165], [2.2770470984411793, 48.852039227466875], [2.276899189942585, 48.85211788676945], [2.276751281009834, 48.852196544984345], [2.2765944223874692, 48.85228331781059], [2.276446512512621, 48.85236197653631], [2.276289654247613, 48.85244874895834], [2.276141743455636, 48.85252740639637], [2.275984882822296, 48.852614178397715], [2.275980382781448, 48.852618980741326], [2.27593179315544, 48.85275317369079], [2.275854989973744, 48.85291489979666], [2.275835782564283, 48.85292682420487]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 158, "zemmour_eric": 170.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-16", "circ_bv": "14", "num_bureau": 16, "roussel_fabien": 3.0, "nb_emargement": 1094.0, "nb_procuration": 63.0, "nb_vote_blanc": 11.0, "jadot_yannick": 45.0, "le_pen_marine": 57.0, "nb_exprime": 1078.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1333.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1094, "quartier_bv": "62", "geo_point_2d": [48.8534834981454, 2.2774473926593397], "melenchon_jean_luc": 78.0, "poutou_philippe": 1.0, "macron_emmanuel": 537.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.312197613099932, 48.84692410157528], [2.312207737336138, 48.84691990669239], [2.312250933207508, 48.8468921191766], [2.312397111362491, 48.84679820882534], [2.312538943600551, 48.84670696960838], [2.312685120705457, 48.846613059788886], [2.312826951947261, 48.84652181931606], [2.312973128013758, 48.84642790912907], [2.313114958235598, 48.84633666919893], [2.313261133275647, 48.84624275774519], [2.313402962489385, 48.846151517458495], [2.313549136479291, 48.84605760653654], [2.3136909646967823, 48.845966364993956], [2.313697175687949, 48.845960364096435], [2.313656476976182, 48.84592499248587], [2.313472606949657, 48.84586643128873], [2.313286788924823, 48.84580702850933], [2.313102919718144, 48.84574846763707], [2.312917102535184, 48.8456890642772], [2.312733234171957, 48.84563050193133], [2.312547417831079, 48.845571097991], [2.312363551650055, 48.8455125359779], [2.3121777347885892, 48.84545313144929], [2.311993869451133, 48.84539456796255], [2.3118080534315553, 48.84533516285346], [2.311806102790759, 48.845319737429925], [2.311973491646011, 48.845241253977996], [2.312138683229856, 48.84516350772539], [2.312306072456908, 48.84508502290567], [2.312471263049318, 48.84500727618295], [2.312638649899426, 48.8449287917784], [2.312803840874917, 48.844851043694106], [2.312971226722304, 48.844772558813226], [2.31313641533216, 48.8446948111503], [2.313303801551327, 48.84461632490164], [2.31346898916986, 48.8445385767686], [2.313474330629229, 48.84452916499191], [2.313431309123199, 48.84441027930463], [2.313385464285821, 48.84428716745698], [2.313342443182266, 48.844168281711966], [2.3132965973933, 48.844045170695054], [2.313253576704066, 48.84392628399298], [2.313207732700413, 48.84380317292314], [2.313164712413645, 48.843684286163274], [2.313118867470252, 48.84356117502482], [2.313075847574094, 48.843442289106534], [2.313030004415989, 48.843319177915156], [2.3129869849341382, 48.84320029103984], [2.312941140836395, 48.843077179779876], [2.312960392540629, 48.843066964726], [2.313133146113758, 48.84312311664589], [2.313304245257997, 48.84317962575579], [2.313476999575014, 48.843235777173454], [2.313648098099416, 48.843292285778055], [2.313820854522829, 48.843348436701305], [2.313991953789793, 48.84340494480841], [2.314010611799135, 48.84340038679104], [2.314084496515313, 48.843284361491534], [2.3141594314601592, 48.84317237401356], [2.314233315521803, 48.84305634859842], [2.314308249819054, 48.842944361004356], [2.3143821332380012, 48.84282833457431], [2.314457066887662, 48.842716346864115], [2.31453094964026, 48.84260032121774], [2.31460588264234, 48.842488333391444], [2.3146797647404282, 48.84237230762948], [2.314754697094934, 48.84226031968711], [2.314829629127432, 48.84214833168656], [2.314903508894809, 48.842032304843954], [2.314911979706466, 48.8420150090722], [2.314902152921952, 48.84200620105905], [2.314874494460712, 48.8419914792139], [2.314873703860265, 48.84199108885772], [2.314725705160254, 48.84191870822404], [2.314582414617762, 48.84185315538754], [2.314434416714047, 48.841780774384596], [2.314291126905297, 48.841715222090386], [2.314147837468817, 48.8416496687214], [2.313999840746424, 48.84157728716761], [2.313997580914243, 48.84157589368014], [2.313836599964917, 48.8414517355422], [2.313672609959279, 48.841324678333], [2.31367115236023, 48.84132330922769], [2.313606659642937, 48.84124972890023], [2.313529918270993, 48.84116112266359], [2.3135309458331133, 48.84115883067668], [2.313513619282675, 48.84114180605181], [2.313466598103979, 48.84108751390107], [2.313413445389016, 48.841027655426615], [2.313397441992926, 48.84102365851989], [2.313204279390427, 48.841065498069284], [2.313021481875593, 48.8411050162065], [2.312838684071708, 48.84114453496229], [2.312645520572702, 48.84118637360493], [2.312462722198423, 48.841225891783296], [2.31226955809611, 48.84126772981588], [2.3122606743899112, 48.84127557518821], [2.312271293489945, 48.841289966758424], [2.312383954445296, 48.84138532047721], [2.3124974495197, 48.84148130663149], [2.312610111302392, 48.84157666012095], [2.312723607209946, 48.84167264604425], [2.312836271182458, 48.84176799931221], [2.312949767911316, 48.84186398590376], [2.312951146427162, 48.84187362783865], [2.31285874778606, 48.841992367557715], [2.312769068958384, 48.84210775738993], [2.312676669499261, 48.84222649604415], [2.312586988503139, 48.8423418857078], [2.312497308472406, 48.84245727530019], [2.312404907762652, 48.8425760146066], [2.312315226925941, 48.84269140403825], [2.312222825386282, 48.84281014317913], [2.312205045906473, 48.84281421401753], [2.311990086832624, 48.842749420621494], [2.311773671981147, 48.84268378024783], [2.311558713993413, 48.842618985169835], [2.31134230022683, 48.84255334400812], [2.311323241387044, 48.842559780779524], [2.311282897853204, 48.84269520805026], [2.311243545909979, 48.842828275668026], [2.31120320196112, 48.842963702879345], [2.311163849611692, 48.84309677043888], [2.311123505247911, 48.84323219759073], [2.311084153854684, 48.84336526509989], [2.311043809076081, 48.84350069219224], [2.311004455914233, 48.84363375963529], [2.310964110720592, 48.843769186668204], [2.310924757152525, 48.843902254053], [2.3108854033834, 48.84403532140901], [2.310845057569648, 48.84417074835298], [2.310805703394294, 48.84430381565072], [2.31076535716559, 48.844439242535245], [2.310765101142754, 48.8444399524579], [2.310723213242264, 48.84453831479825], [2.310680003257081, 48.84463844214649], [2.310638115036551, 48.84473680443954], [2.310594904735106, 48.844836930839854], [2.310594589601593, 48.844837576566434], [2.3105602237873972, 48.8448998124181], [2.31053338363205, 48.84495093051398], [2.310521292645626, 48.844966818257156], [2.310541153147087, 48.844975769873095], [2.310599367429313, 48.844996073045266], [2.310664680696851, 48.845018877754725], [2.3106715585258852, 48.84502892731213], [2.310614065316706, 48.84518691294868], [2.31056059640053, 48.8453318629594], [2.310552600174073, 48.84533806116404], [2.310358559081235, 48.84539156115006], [2.310168695665338, 48.845443913038636], [2.309974655135054, 48.845497413304045], [2.309784789585325, 48.845549764570535], [2.309594925016722, 48.84560211554114], [2.309400883308308, 48.84565561486834], [2.309211016617897, 48.845707964317555], [2.309016974121283, 48.84576146301702], [2.308988629486567, 48.845769278460715], [2.3089827276040182, 48.845775872684776], [2.3089920779529542, 48.845789452228736], [2.309038454696246, 48.845887797535966], [2.309086177526373, 48.845987406101386], [2.30913255461147, 48.84608575225395], [2.309180276440137, 48.84618536075629], [2.309188654189853, 48.846191111097966], [2.309373170949903, 48.84623494384454], [2.309558337919777, 48.84627888618041], [2.309742855301525, 48.846322718353385], [2.309928022894969, 48.84636666011361], [2.310112540910317, 48.84641049081371], [2.3102977091273242, 48.846454431998296], [2.310482227752451, 48.84649826302407], [2.3106673965930202, 48.846542203633035], [2.310851915839832, 48.8465860340852], [2.311037085303955, 48.846629974118564], [2.311221605184333, 48.846673803097794], [2.311406775272003, 48.846717742555484], [2.311591295762166, 48.84676157186039], [2.311776466473281, 48.84680551074246], [2.311960986222613, 48.846849339465905], [2.31214615891987, 48.8468932777802], [2.312197613099932, 48.84692410157528]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 127, "zemmour_eric": 150.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-33", "circ_bv": "12", "num_bureau": 33, "roussel_fabien": 21.0, "nb_emargement": 1282.0, "nb_procuration": 103.0, "nb_vote_blanc": 11.0, "jadot_yannick": 97.0, "le_pen_marine": 59.0, "nb_exprime": 1271.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1512.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1283, "quartier_bv": "58", "geo_point_2d": [48.8442306958186, 2.312166134152105], "melenchon_jean_luc": 214.0, "poutou_philippe": 3.0, "macron_emmanuel": 537.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305383134290451, 48.84680203802523], [2.305352350279898, 48.846809680155495], [2.305213637882004, 48.84685226717175], [2.305048329128328, 48.84690011190742], [2.304879593255335, 48.846951915286596], [2.304714283879002, 48.84699975955643], [2.304545547351322, 48.84705156245982], [2.304380237352131, 48.84709940626383], [2.304363961367371, 48.84709665131136], [2.304267963072129, 48.8470142447159], [2.304183734457052, 48.84694797361999], [2.304182314078181, 48.84693851664475], [2.304260467519047, 48.84683384274322], [2.304339104467529, 48.84672855103303], [2.304417257278507, 48.84662387700938], [2.3044958922309062, 48.846518585168376], [2.304574045774695, 48.846413911030474], [2.304652680093414, 48.84630861906662], [2.304730833007524, 48.84620394480657], [2.30480946669267, 48.84609865271981], [2.304802225326179, 48.846086305539224], [2.304611701162585, 48.84603692938223], [2.304426829001135, 48.84598903285616], [2.30423630556082, 48.84593965519773], [2.304051434077432, 48.84589175898672], [2.303860911348504, 48.84584238072618], [2.303676041917652, 48.84579448393882], [2.303491171476156, 48.845746585956526], [2.303300649808679, 48.84569720679738], [2.30311578004524, 48.8456493091301], [2.302925259089163, 48.84559992936881], [2.302740390015699, 48.84555203111731], [2.302549869770922, 48.84550265075391], [2.302365002762141, 48.84545475102683], [2.30217448321663, 48.845405370960634], [2.302155914642957, 48.845414412789275], [2.302162651456851, 48.84547385065003], [2.302166839750048, 48.84551561011339], [2.302167985146896, 48.84551860538434], [2.302252093542296, 48.84564295649785], [2.302336400538139, 48.845766854515], [2.302420508373455, 48.845891205474466], [2.302504816171169, 48.84601510334531], [2.302588924808976, 48.846139454158696], [2.302673233408775, 48.84626335188328], [2.302757344211571, 48.8463877025585], [2.302841653613368, 48.84651160013677], [2.302925763856194, 48.84663595065795], [2.3030100740598938, 48.84675984808997], [2.303011208371243, 48.84676439108976], [2.302993299203691, 48.84688763000695], [2.302975793413967, 48.8470045442348], [2.30295828753367, 48.84712145934715], [2.302940378118368, 48.84724469821692], [2.302930787467524, 48.84725244161829], [2.302776649150856, 48.847283805408836], [2.302549768388427, 48.84732943876307], [2.30239562961472, 48.847360802060614], [2.302168749546066, 48.84740643469708], [2.302014610315224, 48.84743779750154], [2.3020050702852313, 48.84744581812766], [2.302009919488336, 48.84745807506317], [2.302104767530807, 48.84752014033948], [2.302200275104236, 48.84758293606808], [2.3022951236125992, 48.84764500028722], [2.302390630281707, 48.847707795848876], [2.302388317535805, 48.84772175936672], [2.302234467396346, 48.847786226096275], [2.302086464424328, 48.847848645609446], [2.301932613536871, 48.847913111943505], [2.301784611217527, 48.847975530184804], [2.301721469541685, 48.848015626717924], [2.301725201003935, 48.848019871905095], [2.301767082406589, 48.84804877543664], [2.301905992015576, 48.8481466434911], [2.302042360560724, 48.84824075519955], [2.302181271198305, 48.84833862291753], [2.302317639380308, 48.848432734288], [2.302456552397196, 48.84853060257676], [2.302592921578701, 48.84862471361725], [2.302731834273798, 48.84872258066228], [2.302868205817457, 48.84881669138075], [2.303007119541174, 48.848914558089284], [2.303143492084352, 48.849008668477715], [2.303282406824875, 48.849106535749065], [2.303418780367481, 48.84920064580752], [2.303557696148765, 48.84929851184306], [2.303694069328341, 48.84939262156355], [2.303758500733415, 48.849439699477216], [2.30380637882562, 48.84942017503867], [2.303887503983839, 48.849368305117494], [2.304032190452463, 48.84927570855756], [2.30417774939715, 48.849182641129694], [2.304322434834564, 48.84909004420341], [2.304467992754315, 48.848996975507596], [2.304612677148524, 48.848904379114124], [2.30475823403134, 48.84881131004976], [2.304902917394358, 48.84871871328984], [2.305048473240245, 48.84862564385685], [2.30519315557208, 48.848533046730545], [2.305338710381147, 48.84843997692895], [2.305483391681703, 48.848347379436234], [2.305628945453857, 48.848254309266004], [2.305773625735224, 48.84816171050759], [2.305861039079826, 48.84810581597752], [2.305872789394726, 48.84809551180249], [2.305794957340627, 48.848048804199955], [2.305662978188941, 48.847936217876025], [2.305535040908607, 48.847827758645806], [2.305407105523321, 48.84771929927604], [2.30527512805601, 48.847606711591716], [2.305272362518325, 48.84760021562239], [2.305293677740129, 48.847473575972856], [2.305315316912138, 48.847343991872926], [2.305336633287273, 48.84721735219448], [2.305358272246081, 48.84708776805695], [2.305379588424119, 48.84696112744246], [2.305401227157745, 48.84683154416669], [2.305383134290451, 48.84680203802523]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 167, "zemmour_eric": 143.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-23", "circ_bv": "12", "num_bureau": 23, "roussel_fabien": 11.0, "nb_emargement": 1253.0, "nb_procuration": 101.0, "nb_vote_blanc": 6.0, "jadot_yannick": 77.0, "le_pen_marine": 55.0, "nb_exprime": 1246.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1522.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "58", "geo_point_2d": [48.84754008442802, 2.303758276731331], "melenchon_jean_luc": 154.0, "poutou_philippe": 4.0, "macron_emmanuel": 584.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.380953771552471, 48.89374993527454], [2.380976892374398, 48.89376668408736], [2.381115162334041, 48.89387667850623], [2.381253193755154, 48.8939877426067], [2.381391464885581, 48.89409773668441], [2.381529498835214, 48.894208801350246], [2.381536083394774, 48.894211705979], [2.381677396349193, 48.89424000609413], [2.381805895343431, 48.89426728481729], [2.381947208584781, 48.89429558551188], [2.382075707857555, 48.89432286394416], [2.382080808706814, 48.89432483368992], [2.3822417868886783, 48.89442339306818], [2.382402608946045, 48.89452113753061], [2.382563588344027, 48.89461969645863], [2.382724411601127, 48.89471744137064], [2.38274333112165, 48.89471716747247], [2.382894438330503, 48.894616880959724], [2.383031406791785, 48.89452267543741], [2.383182512881282, 48.894422388543376], [2.3833194803096722, 48.89432818267486], [2.383456448616909, 48.89423397574938], [2.383607553039173, 48.89413368919186], [2.383609513978706, 48.89412266016036], [2.383492051205535, 48.89399597564193], [2.383384314243352, 48.893872118164175], [2.38338323545663, 48.89386474269886], [2.383416143747702, 48.893796788807094], [2.383466140125329, 48.8937000502745], [2.3834897252065153, 48.893697354135256], [2.383582789526987, 48.893774528858145], [2.383665442139626, 48.893847206385715], [2.383758506988409, 48.8939243809615], [2.383841161437521, 48.89399705926414], [2.383858770606763, 48.89399949798583], [2.384048518086156, 48.8939289819447], [2.384227956591162, 48.89386285522227], [2.384417703072559, 48.89379233858742], [2.384597141990959, 48.893726212209856], [2.384776579100453, 48.89366008465314], [2.384966324099734, 48.89358956713595], [2.384973109590179, 48.893583091822364], [2.385005276647329, 48.89344433576178], [2.385035234103605, 48.89330465012477], [2.385067399459447, 48.89316589400522], [2.385097356599367, 48.89302620741798], [2.3851295229708382, 48.89288745215279], [2.385159479783888, 48.89274776551449], [2.385165158769972, 48.89274165952039], [2.385334755041384, 48.89266332626926], [2.385522188857686, 48.892582333291564], [2.385691784062375, 48.89250400042269], [2.385879215385843, 48.89242300686737], [2.385883234571017, 48.89241064475737], [2.385775354857162, 48.892299263885384], [2.38567294657189, 48.89219442653904], [2.385565067745251, 48.89208304635492], [2.385462660308654, 48.8919782088081], [2.385354782390445, 48.89186682751332], [2.385252377166304, 48.89176198977296], [2.385144500135283, 48.89165060916606], [2.385042094396008, 48.891545771218205], [2.384939689069016, 48.8914409331728], [2.384831813372154, 48.89132955225163], [2.384729410257579, 48.89122471401269], [2.384621535469022, 48.891113331980854], [2.384519131839408, 48.89100849353443], [2.384411257937995, 48.8908971121905], [2.384401238860686, 48.89089368733311], [2.3843491676358752, 48.89091217675048], [2.3841941384021093, 48.890991672700004], [2.384037234698991, 48.891071407015716], [2.383882203151115, 48.89115090254282], [2.383725298501241, 48.89123063553894], [2.383570265992371, 48.891310131549936], [2.383413360384893, 48.8913898641258], [2.383258326925665, 48.89146935972138], [2.383101420360784, 48.8915490918769], [2.382946387325534, 48.89162858616486], [2.382789479792487, 48.891708318799346], [2.382776357882995, 48.891709613633715], [2.38266317606007, 48.89168157486021], [2.382559477454004, 48.89165454714865], [2.382547039025721, 48.89165536614465], [2.382430500210877, 48.89170524039877], [2.382343122232784, 48.89174333367902], [2.382337048436559, 48.891749591293205], [2.382318462592327, 48.89183437861735], [2.382300615466142, 48.891925295009], [2.3822955812566082, 48.89193117757057], [2.382142394385471, 48.89201154726946], [2.38198766351044, 48.892094184978134], [2.38183447568443, 48.89217455427125], [2.381679743836174, 48.892257191569755], [2.381526555055286, 48.89233756045697], [2.381371822234005, 48.89242019734532], [2.381218632498236, 48.89250056582668], [2.381063898703824, 48.89258320230488], [2.380910708013166, 48.892663570380414], [2.380755973245618, 48.89274620644843], [2.38060278160007, 48.8928265741181], [2.3804480458592803, 48.892909209775965], [2.380294853248234, 48.89298957793903], [2.380140116534299, 48.893072213186706], [2.380138038045086, 48.89308480907985], [2.38027150788182, 48.893195127749216], [2.380409773469583, 48.89330512303284], [2.380543244457543, 48.8934154404779], [2.380681512568271, 48.89352543543276], [2.380814983322133, 48.89363575344498], [2.380953252592013, 48.893745748063964], [2.380953771552471, 48.89374993527454]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 33, "zemmour_eric": 92.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "19-49", "circ_bv": "16", "num_bureau": 49, "roussel_fabien": 22.0, "nb_emargement": 1196.0, "nb_procuration": 42.0, "nb_vote_blanc": 9.0, "jadot_yannick": 75.0, "le_pen_marine": 65.0, "nb_exprime": 1183.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1657.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1196, "quartier_bv": "74", "geo_point_2d": [48.89284543652078, 2.3831518995220176], "melenchon_jean_luc": 606.0, "poutou_philippe": 7.0, "macron_emmanuel": 235.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328891937821672, 48.89737249864748], [2.328897915693826, 48.89738957696017], [2.328931565853073, 48.89749453091349], [2.328969323817756, 48.897607795096185], [2.328969359252419, 48.897607903213135], [2.328980465662645, 48.8976405523], [2.328987482641769, 48.89764527437474], [2.329039947187639, 48.89763982526301], [2.329250318870055, 48.89764359103298], [2.329447169739328, 48.897647417425965], [2.329644020649114, 48.89765124259611], [2.329854392409676, 48.897655008204204], [2.33005124337808, 48.897658832704984], [2.330261616562797, 48.897662597605326], [2.330458466225876, 48.897666421429136], [2.3306688394706, 48.89767018561416], [2.33086569055621, 48.89767400877626], [2.3310760624972, 48.897677772238275], [2.331272913641396, 48.897681594730976], [2.331483287006307, 48.8976853574853], [2.331680138197535, 48.8976891802079], [2.331890510270232, 48.89769294134002], [2.332009659592209, 48.897695254433046], [2.332023233759803, 48.897689868577416], [2.332022300589765, 48.89765926672203], [2.332002049601543, 48.897551651797166], [2.3319718096569853, 48.89739644939053], [2.331951558875463, 48.89728883443128], [2.33192131924562, 48.89713363107537], [2.331901068670692, 48.89702601608174], [2.331892851291908, 48.897018842227915], [2.3317548459966853, 48.89698031878896], [2.3316180718921062, 48.896942061963436], [2.331480068379194, 48.89690353731354], [2.331343293314331, 48.89686528016385], [2.33133562528485, 48.896859733509864], [2.331276103821919, 48.89673664123276], [2.331219186707393, 48.89662266277956], [2.331162271205882, 48.89650868429502], [2.331102750542599, 48.89638559279158], [2.331045834191262, 48.89627161421941], [2.330986314085852, 48.89614852173219], [2.330929399612585, 48.896034543087616], [2.330869878678037, 48.895911451407514], [2.330885184058988, 48.89589985654139], [2.331094855346294, 48.89592362419788], [2.3312962317624, 48.89594692248756], [2.331505903426793, 48.89597068942337], [2.331707280220527, 48.895993986121645], [2.331916952262097, 48.89601775233676], [2.332118329410156, 48.89604104924211], [2.332328000465104, 48.89606481472897], [2.332529379354549, 48.89608811005045], [2.3327390507866532, 48.896111874816604], [2.332940430030519, 48.89613517034521], [2.332962015444673, 48.89613661347736], [2.33297879794175, 48.89612371446674], [2.33310802000934, 48.89602449981376], [2.333239624175157, 48.89592423977709], [2.333368845250606, 48.89582502482458], [2.333500448409919, 48.895724764483035], [2.333629668493236, 48.895625549231056], [2.333761270646056, 48.8955252885846], [2.333890489737248, 48.895426073033114], [2.3340220908835843, 48.895325812081836], [2.33415130898266, 48.89522659623087], [2.33428290912252, 48.89512633497465], [2.334412126229489, 48.8950271188242], [2.334543723999017, 48.89492685725559], [2.334672941477751, 48.894827640813226], [2.334804538240828, 48.89472737893973], [2.334813040388867, 48.8947115198629], [2.334791292782729, 48.89469473822615], [2.334790974530231, 48.89469466721053], [2.334613321979818, 48.894656290047166], [2.334408615895536, 48.89461334568659], [2.334230963892844, 48.89457496885243], [2.334026257079824, 48.894532023827544], [2.333848605648059, 48.89449364552405], [2.33364390083402, 48.894450699849976], [2.333466249949973, 48.894412321875684], [2.333261544407318, 48.894369375537224], [2.333083894094119, 48.894330996093636], [2.332879190550352, 48.89428804910601], [2.332701540785074, 48.894249669991645], [2.332685163266949, 48.894254105918236], [2.332602709655429, 48.89435991214007], [2.332526394799612, 48.894460181212104], [2.332508502236811, 48.89446841909765], [2.332514458897983, 48.89449126090777], [2.332493642533829, 48.894518611075696], [2.332392261509252, 48.894646703847656], [2.332295130620754, 48.894774322894015], [2.332193748598324, 48.8949024163673], [2.332096615382417, 48.89503003521523], [2.3319952337490513, 48.89515812759892], [2.331898099569379, 48.89528574625604], [2.331796716949674, 48.89541383844177], [2.331699581806326, 48.8955414569081], [2.331694449989108, 48.89554511818514], [2.331569023684111, 48.89559514348807], [2.33145597216987, 48.89564454256712], [2.3313429204411, 48.89569394153718], [2.331217492064372, 48.89574396735677], [2.3312062705221432, 48.89574483638582], [2.331037034507597, 48.89570906942394], [2.330868962374097, 48.895671695341186], [2.3306997268290273, 48.89563592790029], [2.330531655185245, 48.89559855244235], [2.330362420098091, 48.89556278542168], [2.330194348932574, 48.89552540948787], [2.330186713472099, 48.895525201306455], [2.329993377495176, 48.89555538200192], [2.329773008433678, 48.8955913331267], [2.329768002057854, 48.89559149036798], [2.329584899691319, 48.89557482716231], [2.329405022173921, 48.895557819307356], [2.329221920041978, 48.89554115554622], [2.329042042747801, 48.89552414804484], [2.328858942214334, 48.89550748373583], [2.328679063802784, 48.895490474781816], [2.328495963503924, 48.895473809917334], [2.328316085327402, 48.89545680041765], [2.328253248123047, 48.8954651470985], [2.328251669388171, 48.89546826248664], [2.328261973060504, 48.89549952404935], [2.328269407959411, 48.89552183026108], [2.328269088865289, 48.89552319903747], [2.328275321467979, 48.89553953060567], [2.328312112745495, 48.895649903868474], [2.328356133187285, 48.8957794120465], [2.328400359816275, 48.89591209145599], [2.328444380699367, 48.89604159957057], [2.328488609139869, 48.89617427892331], [2.328532630475667, 48.896303786075194], [2.328576857988403, 48.896436466255196], [2.328620879765413, 48.89656597334363], [2.3286651090896893, 48.896698653466906], [2.32870913130792, 48.89682816049191], [2.3287533597159262, 48.89696084054318], [2.328797382375383, 48.89709034750474], [2.328841612594854, 48.89722302749928], [2.328885634331721, 48.897352534389704], [2.328892107209017, 48.89737195011205], [2.328891937821672, 48.89737249864748]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 50, "zemmour_eric": 55.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-42", "circ_bv": "03", "num_bureau": 42, "roussel_fabien": 17.0, "nb_emargement": 1224.0, "nb_procuration": 48.0, "nb_vote_blanc": 17.0, "jadot_yannick": 70.0, "le_pen_marine": 78.0, "nb_exprime": 1195.0, "nb_vote_nul": 13.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1715.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1225, "quartier_bv": "69", "geo_point_2d": [48.896112183600444, 2.331131894855708], "melenchon_jean_luc": 524.0, "poutou_philippe": 8.0, "macron_emmanuel": 339.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.286079696271588, 48.8355531139989], [2.286073440369205, 48.83554603725372], [2.285907447553758, 48.83547178690283], [2.285756127197493, 48.83540317127399], [2.285604808601794, 48.835334555457635], [2.28543881712732, 48.835260304442315], [2.285420406574485, 48.83526224143192], [2.285304542053098, 48.83536095618285], [2.28518905802638, 48.83545802093786], [2.28507319398178, 48.83555673635485], [2.284957709102863, 48.83565379997021], [2.284841842822565, 48.835752515137685], [2.28472635707911, 48.835849578512686], [2.284715898477211, 48.83585301453695], [2.284510085405811, 48.83585556365513], [2.284299883177404, 48.83585817429537], [2.284094068702981, 48.835860722689546], [2.283883867795249, 48.83586333260685], [2.283678053280124, 48.835865880285205], [2.28346785096846, 48.83586848946327], [2.283262037774955, 48.835871036433964], [2.283051835421679, 48.83587364488093], [2.282846022187394, 48.835876191135824], [2.28263581979262, 48.83587879885169], [2.282430005155358, 48.835881344382535], [2.282219802718995, 48.835883951367364], [2.282013989403388, 48.83588649619057], [2.281803786925448, 48.8358891024443], [2.281597973569196, 48.83589164655169], [2.28138777104959, 48.83589425207426], [2.281340512353181, 48.835937811764204], [2.281345960822534, 48.83594431730061], [2.281527025752458, 48.836020397610035], [2.281663350080702, 48.83607500529577], [2.281695348945436, 48.836085381981455], [2.281695407499209, 48.836085384131884], [2.281732658484938, 48.83610030630922], [2.281888827280876, 48.836162584943814], [2.2820624048965428, 48.83623211429136], [2.282218573119026, 48.83629439247992], [2.282392151625929, 48.83636392044146], [2.282548320637272, 48.836426198192164], [2.282721900010546, 48.836495726566284], [2.282878071172977, 48.83655800388732], [2.28305165007515, 48.836627530867275], [2.2832078220264442, 48.83668980775045], [2.283381403157228, 48.83675933515117], [2.283537574535158, 48.836821611588306], [2.283537814403586, 48.83682170476121], [2.283711396413756, 48.836891231674834], [2.283895813441415, 48.836961414085515], [2.284069396394346, 48.837030940470946], [2.284253815748302, 48.83710112322837], [2.284427398293999, 48.83717064817817], [2.284611818624371, 48.83724083037485], [2.284785403475167, 48.8373103548046], [2.2849698234194022, 48.83738053643243], [2.285160074890904, 48.837441494470966], [2.285161020018636, 48.83744182209479], [2.285332837723082, 48.8374958515403], [2.28552309004011, 48.83755680899518], [2.285694909861242, 48.83761083792318], [2.2856957634782082, 48.83761108315326], [2.285865542059911, 48.83765700528509], [2.286042974564031, 48.8377032696499], [2.286212753751795, 48.83774919128511], [2.286390185515633, 48.837795455122965], [2.286559965309658, 48.837841376261586], [2.286737399057629, 48.83788763958872], [2.286907179457808, 48.83793356023075], [2.2870846138278518, 48.83797982303902], [2.287254394834185, 48.83802574318446], [2.287431828463828, 48.83807200546577], [2.287542132526863, 48.838101838149086], [2.287577026453004, 48.8381185818397], [2.287599385993812, 48.83811467592664], [2.287658864937846, 48.8381307628716], [2.287820060143054, 48.83817143989441], [2.287989842409154, 48.83821735988741], [2.2880406817655983, 48.83823018895071], [2.2880549057313813, 48.838229898572436], [2.288069052172953, 48.83819678064209], [2.288147870252731, 48.83805812850934], [2.288227902184551, 48.837915461538984], [2.2882261194629008, 48.83790702740786], [2.288111160348435, 48.83780334534431], [2.2879959803443928, 48.837699509849095], [2.287881020770836, 48.83759582843631], [2.287765843046051, 48.83749199270834], [2.2876508844002252, 48.83738831015582], [2.28753570759253, 48.83728447418701], [2.287420749849746, 48.837180792293374], [2.28730557395903, 48.8370769560837], [2.287190617144069, 48.83697327305033], [2.287075442170223, 48.8368694365998], [2.28696048625838, 48.83676575422534], [2.286845312201595, 48.83666191753394], [2.286730357217361, 48.836558234019826], [2.286615184077531, 48.83645439708755], [2.28650022999649, 48.836350714232324], [2.2863850577735, 48.836246877059196], [2.286270104620161, 48.83614319306427], [2.286154933314107, 48.83603935565035], [2.286039981063833, 48.83593567231428], [2.285924810687125, 48.8358318337602], [2.285923081506769, 48.83582330276361], [2.285999038698495, 48.835692454721936], [2.28606937464667, 48.835567249919805], [2.286079696271588, 48.8355531139989]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 120, "zemmour_eric": 116.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-73", "circ_bv": "13", "num_bureau": 73, "roussel_fabien": 18.0, "nb_emargement": 1071.0, "nb_procuration": 68.0, "nb_vote_blanc": 12.0, "jadot_yannick": 64.0, "le_pen_marine": 64.0, "nb_exprime": 1056.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1319.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1071, "quartier_bv": "57", "geo_point_2d": [48.8366960813694, 2.2852434700891133], "melenchon_jean_luc": 171.0, "poutou_philippe": 2.0, "macron_emmanuel": 450.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346329094620138, 48.834629364543694], [2.346301497560164, 48.834621742658754], [2.346175555475373, 48.834590160939925], [2.346045259991176, 48.834552129289634], [2.346041940054732, 48.83455092486958], [2.345880230022626, 48.83447111194014], [2.345730636026143, 48.83439823354647], [2.345581043810124, 48.83432535496844], [2.34541933382128, 48.83424554139232], [2.345414246786568, 48.8342404447039], [2.345368111679555, 48.834114001618275], [2.345320816913564, 48.83398705839771], [2.345274682257532, 48.8338606152474], [2.345227387937552, 48.83373367286047], [2.34518125373239, 48.833607229645516], [2.34513395988111, 48.833480286293586], [2.345087826126814, 48.83335384301396], [2.345040534083881, 48.83322690050314], [2.344994399418193, 48.83310045715143], [2.3449471078439412, 48.83297351367563], [2.344900973629112, 48.83284707025925], [2.344853682500935, 48.832720127617094], [2.344807550099193, 48.832593684143546], [2.344760258077454, 48.83246674052894], [2.344714126126551, 48.83234029699074], [2.344666834550876, 48.832213354209806], [2.344620703050806, 48.832086910606954], [2.3445734119438, 48.831959966861035], [2.344527280894556, 48.83183352319358], [2.344479990233599, 48.83170658028132], [2.344463119336381, 48.831688521059334], [2.344448533452676, 48.83168884133389], [2.344426053335805, 48.831684597193295], [2.344362589116117, 48.83152317986825], [2.344311870065704, 48.83136376330976], [2.344293048816444, 48.831357380707594], [2.344121657033379, 48.831407203307265], [2.343930425906906, 48.8314637529627], [2.343759033427555, 48.83151357503795], [2.3435678001439912, 48.831570125000056], [2.343396406968352, 48.83161994655099], [2.343205174274756, 48.83167649503605], [2.343033780402837, 48.83172631606262], [2.342842546925687, 48.831782863962516], [2.342671152357591, 48.83183268446472], [2.342479916734675, 48.831889231771974], [2.342308521470203, 48.83193905174976], [2.342117286414603, 48.83199559937864], [2.341945890453855, 48.83204541883205], [2.341754654626056, 48.83210196497643], [2.341583257969041, 48.832151783905466], [2.341411860984432, 48.83220160258668], [2.341220622642195, 48.83225814786183], [2.341148983354215, 48.83225611639161], [2.341147019575435, 48.83225789712254], [2.3411476584103372, 48.83229584423959], [2.341145049627134, 48.83240696973459], [2.341146835636396, 48.83251313600973], [2.341146929726601, 48.83251409885572], [2.341166379554262, 48.83262262434167], [2.341188817267224, 48.83274708244813], [2.34120826725765, 48.832855608804], [2.341230703808657, 48.83298006686921], [2.341250153973316, 48.8330885931957], [2.3412657758971163, 48.8331752509015], [2.341271258498326, 48.83319115679555], [2.3413309132514852, 48.833190071518665], [2.341511021504818, 48.83324065725879], [2.341689315582606, 48.833291667134475], [2.341869424534746, 48.833342252330326], [2.342047720672977, 48.83339326167462], [2.342227830312575, 48.83344384722553], [2.342406125797984, 48.833494855124144], [2.342586236136388, 48.83354544013073], [2.342764533682334, 48.83359644749794], [2.342944644719544, 48.83364703196026], [2.34312294159007, 48.833698039680364], [2.343303053337414, 48.83374862269908], [2.343481352268277, 48.833799629887814], [2.343661463352146, 48.83385021235476], [2.3438397629812853, 48.83390121900453], [2.344019876114892, 48.83395180183397], [2.344198175091249, 48.83400280703809], [2.344378288923647, 48.83405338932323], [2.3445565899490273, 48.83410439489519], [2.344736704491519, 48.83415497573671], [2.344915004852891, 48.83420598076233], [2.344915884247545, 48.83420625179221], [2.345079340106456, 48.834258831005386], [2.34524675093557, 48.83431544372981], [2.34541020883288, 48.83436802249317], [2.345577620372, 48.83442463474894], [2.345581149124969, 48.83442635026723], [2.345720498568252, 48.83451970451629], [2.345860203109833, 48.834614004872485], [2.345999554928085, 48.83470735788893], [2.346139260466129, 48.834801658802725], [2.346171031396555, 48.83482658851819], [2.346193208400204, 48.8348200346248], [2.346200487117801, 48.834815286169174], [2.346259907649712, 48.834744156060886], [2.346331330910157, 48.83463452655457], [2.346329094620138, 48.834629364543694]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 49, "zemmour_eric": 64.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-64", "circ_bv": "09", "num_bureau": 64, "roussel_fabien": 23.0, "nb_emargement": 1102.0, "nb_procuration": 58.0, "nb_vote_blanc": 6.0, "jadot_yannick": 100.0, "le_pen_marine": 62.0, "nb_exprime": 1091.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1391.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "52", "geo_point_2d": [48.83284917416526, 2.3434321402711342], "melenchon_jean_luc": 347.0, "poutou_philippe": 6.0, "macron_emmanuel": 376.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.32420249910148, 48.84317461911384], [2.324196558126205, 48.8431730512364], [2.324157878717393, 48.84314161307746], [2.324025877685116, 48.84303567216809], [2.323895726942034, 48.8429298845563], [2.32376372697897, 48.8428239433376], [2.323633577308379, 48.84271815452121], [2.323501578414317, 48.84261221299312], [2.323371429792969, 48.842506424770804], [2.323239431967999, 48.84240048293338], [2.323109283044966, 48.842294694398056], [2.322977286300762, 48.84218875135199], [2.322847139801008, 48.84208296251913], [2.322715144114195, 48.841977020063005], [2.3225849986751212, 48.84187123092487], [2.322453004057471, 48.84176528815947], [2.322322859690859, 48.841659497816764], [2.32219086614216, 48.84155355474202], [2.322060721462257, 48.84144776498567], [2.321928728982602, 48.84134182160157], [2.321798586725913, 48.8412360315477], [2.321668445009129, 48.84113024044296], [2.321536454130945, 48.841024296595904], [2.321498887053822, 48.84099536674488], [2.321463630534895, 48.84099922021241], [2.321441584110425, 48.841055161677154], [2.321325886482977, 48.84115193732132], [2.321183534654827, 48.84125864170008], [2.32106783747073, 48.84135541618548], [2.320925483196183, 48.84146212023], [2.320809785069546, 48.8415588953475], [2.320667429710842, 48.841665599065465], [2.320551730653371, 48.84176237391575], [2.320409375573174, 48.841869077314904], [2.320293674234116, 48.8419658509909], [2.320277437613291, 48.84196849640504], [2.320093427029126, 48.84191443037822], [2.319912988027232, 48.84186318679343], [2.319728976818816, 48.84180912109245], [2.319548538539824, 48.84175787695313], [2.31936452944373, 48.84170381069425], [2.319184090525177, 48.84165256599261], [2.319000082190587, 48.84159849826873], [2.31881964534566, 48.841547253919636], [2.318635636398572, 48.84149318562229], [2.318455200276551, 48.84144194071865], [2.318440885311885, 48.84144340876933], [2.3182958628212083, 48.8415264771396], [2.318164510562918, 48.841598691447864], [2.318019487199693, 48.84168175947152], [2.317888134155368, 48.84175397436558], [2.317756780758823, 48.84182618821143], [2.317611756112758, 48.84190925572387], [2.317607148715836, 48.84191502585778], [2.31758727585698, 48.842029706709745], [2.31756395511448, 48.842153688908915], [2.317544082069583, 48.842268369729176], [2.317520761129319, 48.84239235099411], [2.317518452321624, 48.84239635259191], [2.317418117955481, 48.84248992396434], [2.317316926761229, 48.84258667501154], [2.317216590304399, 48.84268024619117], [2.317115398378307, 48.84277699615211], [2.317015062543984, 48.842870568053854], [2.316913869874166, 48.84296731782782], [2.316845280539289, 48.84303289462274], [2.316744943727367, 48.84312646627646], [2.316712338535782, 48.84315763912378], [2.316691580236126, 48.843159250036265], [2.316701571216206, 48.84318165993153], [2.316801564733689, 48.84329203454986], [2.3168958121355, 48.8433958972332], [2.316995806463485, 48.843506272567296], [2.317090056002318, 48.843610135085434], [2.317190051164594, 48.84372050933667], [2.317284300115426, 48.843824371674046], [2.31738429608833, 48.843934746641], [2.317478545825461, 48.84403860790613], [2.317578542620684, 48.84414898268955], [2.317672793120566, 48.84425284468093], [2.31767888343677, 48.84425642651068], [2.317867359891906, 48.84431255773021], [2.318057213501626, 48.844369274789216], [2.31824568940979, 48.84442540539925], [2.31843554385397, 48.8444821209528], [2.318624020577792, 48.84453825096114], [2.318813875833004, 48.844594966807875], [2.318821864866792, 48.84460268297314], [2.318826999950593, 48.8446665346813], [2.318831721079408, 48.84472984441011], [2.318839892937151, 48.844737648852345], [2.318997393504383, 48.84478289854796], [2.319158382141544, 48.84482891885256], [2.319315883249275, 48.844874169024465], [2.319476872449601, 48.8449201888967], [2.319634374121423, 48.84496543774631], [2.31979536388491, 48.84501145718623], [2.319952866097339, 48.84505670651214], [2.320113856424088, 48.845102725519666], [2.320154407874964, 48.84515572882084], [2.320170473725115, 48.84515329830211], [2.320244862210604, 48.84512701529776], [2.32032396477212, 48.84510046223917], [2.320342844469031, 48.84509823834866], [2.32036224596914, 48.84508912469753], [2.320454411942659, 48.84505818582099], [2.320631570060855, 48.844998758353164], [2.320802839153037, 48.84494126589535], [2.320979996488308, 48.84488183700609], [2.32115126344934, 48.84482434403571], [2.321328419989857, 48.84476491462423], [2.32149968754484, 48.84470742115676], [2.321676843278895, 48.84464799212241], [2.321848110076982, 48.84459049725086], [2.3220252650161832, 48.844531067694355], [2.322196529671524, 48.84447357320952], [2.322373683827669, 48.84441414223156], [2.322544949076844, 48.84435664724966], [2.32272210243833, 48.8442972157495], [2.322893365556364, 48.84423972025507], [2.323070518111406, 48.844180289132055], [2.32324178183505, 48.84412279224126], [2.323418933595333, 48.844063360596074], [2.323590196538689, 48.84400586409976], [2.323767347515783, 48.843946431033146], [2.323911859759257, 48.843897914103344], [2.323938608328103, 48.84388893402431], [2.323962774471304, 48.84390329583252], [2.323963900425999, 48.84387910120582], [2.324135162162654, 48.84382160391984], [2.324318742392551, 48.84376129889798], [2.324490001988217, 48.843703801090264], [2.324673581380932, 48.84364349641682], [2.324713524963893, 48.84361706743699], [2.324665737794959, 48.84356866370199], [2.324559596378514, 48.84347777817761], [2.324429443448187, 48.84337199118838], [2.324323301493479, 48.84328110453134], [2.324231827626503, 48.84320675540528], [2.32420249910148, 48.84317461911384]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 95, "zemmour_eric": 130.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-35", "circ_bv": "12", "num_bureau": 35, "roussel_fabien": 18.0, "nb_emargement": 1292.0, "nb_procuration": 76.0, "nb_vote_blanc": 14.0, "jadot_yannick": 106.0, "le_pen_marine": 65.0, "nb_exprime": 1274.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1665.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1292, "quartier_bv": "58", "geo_point_2d": [48.84317262832417, 2.3204676310758625], "melenchon_jean_luc": 254.0, "poutou_philippe": 6.0, "macron_emmanuel": 543.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3111367084837102, 48.83815186624728], [2.311147008610135, 48.8381512501374], [2.311201594001254, 48.838131867369285], [2.311250573615505, 48.838113251838436], [2.311267436968074, 48.83811498488978], [2.31140124363192, 48.83821181785594], [2.311534746542827, 48.838308166850695], [2.3116685528250303, 48.83840500039257], [2.311802056736717, 48.83850134817303], [2.311935865373721, 48.838598181407015], [2.312069368912032, 48.838694528864636], [2.312203178541566, 48.83879136178289], [2.312336684419216, 48.83888770983264], [2.3123479521390102, 48.83889059682865], [2.312532403167154, 48.83887969992343], [2.312719449114463, 48.83887059839464], [2.312903900006025, 48.83885970001707], [2.313090945804738, 48.83885059880655], [2.313275396547949, 48.83883969985595], [2.313462442210021, 48.83883059806437], [2.313646892804771, 48.838819698540725], [2.313833938342034, 48.83881059526881], [2.314018388776476, 48.838799696071455], [2.314205434177075, 48.838790592218494], [2.314389884474877, 48.838779691548815], [2.314576929726973, 48.83877058801413], [2.3145914689799563, 48.83877854080443], [2.3146169436785993, 48.838926455813336], [2.314641900465005, 48.839070975409456], [2.314667375449689, 48.839218890368954], [2.31469233115354, 48.83936340990889], [2.314717807786677, 48.83951132482672], [2.314742763770375, 48.8396558443183], [2.314742857395898, 48.83965628824331], [2.314772059443553, 48.83977155309661], [2.314802097805889, 48.83989182230871], [2.3148313001282332, 48.84000708622392], [2.314861337388755, 48.84012735628732], [2.314890539974168, 48.840242620163785], [2.314920578869455, 48.84036289019472], [2.314939342241684, 48.84037479465951], [2.314948586821346, 48.840374488753746], [2.315078809227661, 48.84026694784631], [2.315204879244645, 48.84016305873593], [2.315335100582106, 48.840055518428464], [2.315461168214333, 48.83995162902052], [2.3155913898690033, 48.83984408752219], [2.315717456467204, 48.83974019872377], [2.315847675702439, 48.83963265691835], [2.315973742652753, 48.839528766938635], [2.316103960830978, 48.83942122483386], [2.316230026747188, 48.83931733546373], [2.3162305602301663, 48.83931686274727], [2.316350968087469, 48.839202833795255], [2.316474773266576, 48.839085804945455], [2.316595180055858, 48.83897177572405], [2.316718984137729, 48.838854746597356], [2.316839389870788, 48.838740716207234], [2.316963192843852, 48.83862368770287], [2.317083597508907, 48.8385096570434], [2.317207399384866, 48.838392628262085], [2.317295500753363, 48.83837573102647], [2.317294789116475, 48.83836671438582], [2.317170905852902, 48.838266062160706], [2.317047899557903, 48.838164233031144], [2.31692401861469, 48.83806358053992], [2.316801013279737, 48.83796175113802], [2.3166771319322272, 48.83786109836511], [2.316554127557519, 48.83775926869089], [2.316430247167875, 48.83765861564404], [2.316307245115559, 48.837556785705345], [2.316183365695774, 48.837456131485276], [2.316060363229421, 48.83735430216576], [2.315936484767592, 48.837253647671794], [2.315813483273156, 48.837151817180626], [2.315689607119815, 48.83705116331988], [2.315566606585484, 48.83694933255644], [2.315442730027728, 48.83684867841399], [2.315319730453494, 48.836746847378244], [2.315195856215899, 48.8366461929697], [2.315072857601853, 48.83654436166169], [2.314948982959836, 48.836443706971465], [2.314825985305871, 48.83634187539111], [2.314780849967387, 48.83630519949966], [2.3147685008249432, 48.83629693098711], [2.314721387374719, 48.836317249480935], [2.314548792477516, 48.836367482419924], [2.314376595713306, 48.83641756269983], [2.314203998789353, 48.836467795128996], [2.314031802736666, 48.83651787401659], [2.313859205148195, 48.83656810594373], [2.3136870070706452, 48.83661818432265], [2.313514410180095, 48.836668415755604], [2.313342211439816, 48.836718493633626], [2.31316961252262, 48.83676872455679], [2.312997413107861, 48.83681880283324], [2.312993466333099, 48.83682054832808], [2.312857085125253, 48.836907070469856], [2.31272434508068, 48.836990710204475], [2.312591603247774, 48.83707434977766], [2.312455220708824, 48.837160871441654], [2.312451083137093, 48.83716809208969], [2.312463927234861, 48.83727134441487], [2.312476687140436, 48.837378194626346], [2.312489532691189, 48.837481447836545], [2.312502292700685, 48.837588298025224], [2.312488613926082, 48.83759799825864], [2.312359677813715, 48.837597395610885], [2.312255301559406, 48.837597373828444], [2.312253286582398, 48.8375972651111], [2.3120412481356363, 48.83757542051938], [2.31183598029111, 48.83755415952119], [2.311630712625916, 48.83753289727105], [2.311418674701917, 48.837511051574495], [2.311407074009027, 48.83751349133878], [2.311279715830218, 48.83759527265028], [2.3111545331337853, 48.83767591515659], [2.311145639497134, 48.83767846311998], [2.310990543927114, 48.837683144140236], [2.310801035259623, 48.83768683164098], [2.31078943600952, 48.837700079088066], [2.310854132739398, 48.83777954697186], [2.310909673879177, 48.83785593389064], [2.31090723035396, 48.83787041136712], [2.310929268593706, 48.837881183270554], [2.310948640536464, 48.837907826286546], [2.311039976234658, 48.83803606115707], [2.311114891396177, 48.838139090963445], [2.3111367084837102, 48.83815186624728]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 92, "zemmour_eric": 80.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 23.0, "date_tour": "2022-04-10", "id_bvote": "15-38", "circ_bv": "12", "num_bureau": 38, "roussel_fabien": 17.0, "nb_emargement": 1138.0, "nb_procuration": 53.0, "nb_vote_blanc": 13.0, "jadot_yannick": 51.0, "le_pen_marine": 77.0, "nb_exprime": 1117.0, "nb_vote_nul": 8.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1487.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1138, "quartier_bv": "58", "geo_point_2d": [48.83807344217925, 2.3143577452027615], "melenchon_jean_luc": 366.0, "poutou_philippe": 5.0, "macron_emmanuel": 346.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.402237766441933, 48.844953937936474], [2.4021760872267253, 48.84497058799366], [2.40197902523898, 48.844988386145566], [2.401786539682632, 48.84500491987856], [2.401589477421617, 48.84502271828756], [2.401396992977457, 48.84503925140011], [2.401199930463929, 48.84505704826763], [2.401007445759067, 48.845073581652244], [2.400814959579852, 48.84509011382078], [2.40061789667536, 48.84510790972877], [2.400425411597911, 48.845124442176164], [2.400228348430604, 48.84514223744196], [2.400035863113256, 48.84515876836281], [2.399838799683045, 48.84517656298642], [2.399646312742432, 48.84519309417245], [2.399449249049524, 48.845210888153844], [2.399256763221045, 48.84522741871945], [2.39905969926535, 48.84524521205863], [2.398867213197018, 48.8452617410977], [2.398670148978447, 48.84527953379465], [2.398477661286853, 48.84529606309893], [2.398280596805613, 48.84531385515367], [2.398221371333313, 48.84531894080301], [2.398208572176943, 48.84532342266635], [2.398211685142209, 48.84536796634596], [2.398131869524438, 48.84547989440336], [2.3980433534622962, 48.84560583195709], [2.397963537129102, 48.845717758979006], [2.397875021618672, 48.84584369638817], [2.397795203186782, 48.84595562416635], [2.397706686865574, 48.846081561424086], [2.39762686908084, 48.846193488173654], [2.397538350586246, 48.84631942527311], [2.397458532075675, 48.84643135188646], [2.397370014122484, 48.84655728974067], [2.397290194885969, 48.846669216217826], [2.397201674769859, 48.84679515301441], [2.397121854807492, 48.846907079355375], [2.397033335232667, 48.847033016906686], [2.396953513181919, 48.847144943104574], [2.396873692150926, 48.84725686924481], [2.396785171392669, 48.847382805673696], [2.396790249138239, 48.84739419192238], [2.396963305532449, 48.84746641641674], [2.3971320908583422, 48.84753801026889], [2.397305146841251, 48.84761023425258], [2.397473933102453, 48.84768182761325], [2.397479876042474, 48.84768746411718], [2.39749938635115, 48.84774610493762], [2.397523566107599, 48.84781269077731], [2.397539092050926, 48.84781946195411], [2.397721589557497, 48.84779907329468], [2.39789753748668, 48.84777953815934], [2.398080034713203, 48.84775914895242], [2.398255982373223, 48.84773961328928], [2.398431931263968, 48.847720077373864], [2.398614428073082, 48.84769968735073], [2.39879037533212, 48.84768015090062], [2.398972871861169, 48.84765976033001], [2.399036454241378, 48.84763702208292], [2.399030217817046, 48.847624207336125], [2.399010376011133, 48.84751901542417], [2.398981667075645, 48.84738643048668], [2.398985369114751, 48.847378900802454], [2.399124216289044, 48.84728430082935], [2.399262554292277, 48.84719020716759], [2.399401401812939, 48.8470956077629], [2.399539738814926, 48.84700151376469], [2.399678583977451, 48.8469069131162], [2.399816919977996, 48.84681281878158], [2.399955765497261, 48.8467182178022], [2.40009410048622, 48.84662412403047], [2.400232943637008, 48.846529522706575], [2.400371277634894, 48.846435427699085], [2.400510121142426, 48.84634082604435], [2.40064845412875, 48.846246731599784], [2.400787295267832, 48.84615212960051], [2.400925627263191, 48.8460580339202], [2.40106446875892, 48.84596343159009], [2.401202799752974, 48.84586933557339], [2.401341638870044, 48.84577473379806], [2.401479970225287, 48.845680637451764], [2.401618808346861, 48.845586034439485], [2.401757137338331, 48.845491937749976], [2.401895974443764, 48.84539733529936], [2.402034303796428, 48.84530323828025], [2.40217313990637, 48.845208634592666], [2.402311466895287, 48.84511453723039], [2.402333739833379, 48.84510412603814], [2.402308492569278, 48.845086234927685], [2.402289584293044, 48.845046953721656], [2.402266044683617, 48.8449822317708], [2.402237766441933, 48.844953937936474]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 89, "zemmour_eric": 102.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "12-17", "circ_bv": "08", "num_bureau": 17, "roussel_fabien": 23.0, "nb_emargement": 1120.0, "nb_procuration": 65.0, "nb_vote_blanc": 13.0, "jadot_yannick": 91.0, "le_pen_marine": 61.0, "nb_exprime": 1106.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1335.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1120, "quartier_bv": "46", "geo_point_2d": [48.846272663688, 2.3991778498390857], "melenchon_jean_luc": 261.0, "poutou_philippe": 7.0, "macron_emmanuel": 424.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3810970876223, 48.861092703068394], [2.381133319082747, 48.861075689567976], [2.381239191664863, 48.86096945959753], [2.3813468442330112, 48.86086217210399], [2.381452715945871, 48.860755941924175], [2.381560368996008, 48.86064865422496], [2.3816662398290482, 48.86054242473509], [2.381773892008978, 48.860435135923844], [2.38187976197278, 48.86032890622464], [2.381987413271835, 48.860221617200665], [2.38209328236641, 48.860115387292076], [2.382200932784598, 48.86000809805538], [2.382306801009954, 48.859901867937474], [2.382414449173676, 48.859794579380285], [2.382520316540487, 48.85968834815375], [2.382627965186317, 48.85958105939088], [2.382659760483005, 48.859549155438394], [2.382664689821651, 48.859540007538186], [2.382618304099711, 48.859517230628676], [2.382452160051269, 48.85947072255769], [2.38228693397998, 48.85942418211786], [2.382120790524052, 48.859377673583], [2.381955565054613, 48.85933113178242], [2.381789422191102, 48.859284622783605], [2.381624197302081, 48.85923808142096], [2.381458055031089, 48.859191571958114], [2.381292830743834, 48.859145029234774], [2.381126689065468, 48.85909851930803], [2.380961465358523, 48.859051977022546], [2.380956955198513, 48.859049913973564], [2.380844903052866, 48.85897243384522], [2.380730477056832, 48.85889436843648], [2.380725208354238, 48.858892138671195], [2.380529333039727, 48.85884700740974], [2.380326387877541, 48.85879984536261], [2.380130513255363, 48.858754713444604], [2.379927570176603, 48.85870755072426], [2.379731696246864, 48.85866241814974], [2.37952875388861, 48.85861525474913], [2.379510950180904, 48.85862170248747], [2.379468431161544, 48.85874250713698], [2.37942716822268, 48.8588605986482], [2.3793846488140042, 48.85898140324197], [2.379343384122402, 48.8590994955911], [2.379336141450877, 48.85910553671095], [2.379158696205096, 48.85916340654189], [2.378977286314767, 48.859222703482196], [2.378799840271467, 48.85928057277493], [2.378618428201838, 48.8593398691579], [2.378440981360918, 48.859397737912396], [2.378259569837759, 48.85945703375216], [2.378082122199224, 48.859514901968474], [2.377900708496862, 48.85957419725087], [2.37772326006071, 48.859632064928945], [2.3775418455312423, 48.859691360560404], [2.37736439630812, 48.85974922680092], [2.377182982325233, 48.859808521889185], [2.377173344476279, 48.859828132337746], [2.377187278483515, 48.85983988196894], [2.377229727108701, 48.85985285381314], [2.377397992269059, 48.85990613066428], [2.377563554258773, 48.85995672395528], [2.377731820095847, 48.86001000033203], [2.377897382739795, 48.860060593156454], [2.378065649253786, 48.86011386905883], [2.378231213914924, 48.86016446142378], [2.378399479753498, 48.86021773594539], [2.378565045068763, 48.860268327843734], [2.378633764108034, 48.86029008550477], [2.3786347070882172, 48.860306219267635], [2.378665173614121, 48.860323803177515], [2.378764721152201, 48.86035532133524], [2.378938284095784, 48.86041094739071], [2.379106551453412, 48.86046422090634], [2.379280115124835, 48.86051984646051], [2.379448384535955, 48.860573120396644], [2.379621947572146, 48.86062874544258], [2.379790217684509, 48.860682018892824], [2.379963782811306, 48.86073764344461], [2.380158806587075, 48.86079865354647], [2.380332372496048, 48.86085427755783], [2.380527397129336, 48.8609152879519], [2.380700962457403, 48.86097091141577], [2.380895989321891, 48.861031921209836], [2.381069555432026, 48.8610875441333], [2.3810970876223, 48.861092703068394]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 75, "zemmour_eric": 74.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-2", "circ_bv": "07", "num_bureau": 2, "roussel_fabien": 25.0, "nb_emargement": 1333.0, "nb_procuration": 99.0, "nb_vote_blanc": 21.0, "jadot_yannick": 146.0, "le_pen_marine": 50.0, "nb_exprime": 1308.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1622.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1334, "quartier_bv": "43", "geo_point_2d": [48.859841456342636, 2.3801851089935395], "melenchon_jean_luc": 387.0, "poutou_philippe": 8.0, "macron_emmanuel": 466.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.28151721178006, 48.84938027535259], [2.281492877134025, 48.84941298747854], [2.28134505648082, 48.84950488704457], [2.281200364079034, 48.84959472049211], [2.281052541031806, 48.849686619673506], [2.280907847621273, 48.84977645275261], [2.280760024892841, 48.84986835246511], [2.280615330473453, 48.84995818517581], [2.280467505363486, 48.85005008360443], [2.280322809935234, 48.85013991594671], [2.280174983793788, 48.850231813998896], [2.280030287344241, 48.85032164687203], [2.279975405022352, 48.85036567320603], [2.280027900720452, 48.85040364095608], [2.280162524535505, 48.8504988238634], [2.28029691913601, 48.85059494956061], [2.280431543924249, 48.85069013304814], [2.2805659395144913, 48.85078625842665], [2.28070056530066, 48.850881440695865], [2.280834961880541, 48.850977565755684], [2.280969588652331, 48.85107274770583], [2.281103986221858, 48.85116887244695], [2.281238613966971, 48.85126405497731], [2.281373013901173, 48.851360178508614], [2.281507641269209, 48.851455360711725], [2.281642042180677, 48.85155148482361], [2.281776670546753, 48.85164666580833], [2.281911072447998, 48.85174278960149], [2.282045703149954, 48.85183797117463], [2.282180104690548, 48.851934093741576], [2.282205446194003, 48.851952009965814], [2.2822064685964962, 48.8519523848377], [2.282271228362019, 48.85191192340723], [2.282421646734009, 48.851812964063235], [2.282572405986286, 48.85171345525979], [2.282722823225708, 48.851614494620215], [2.282873581316289, 48.851514986318875], [2.283023997410869, 48.851416025283], [2.28317475436452, 48.85131651568516], [2.2833251693018948, 48.851217555152296], [2.283475925106247, 48.851118045157236], [2.283626338911268, 48.851019083328865], [2.283777093553966, 48.85091957383587], [2.28392750621407, 48.85082061161123], [2.284078258357149, 48.85072110081357], [2.2840881079750748, 48.85071846705775], [2.284263354139684, 48.850720262890334], [2.284437552229355, 48.85072196675861], [2.284612797055073, 48.850723762071226], [2.284786995180106, 48.85072546453143], [2.284962241392424, 48.85072725934039], [2.285136439528225, 48.85072896219113], [2.285311685764237, 48.85073075648826], [2.285485883935577, 48.85073245793095], [2.285494609690761, 48.85073048287648], [2.285598324616309, 48.85067561422638], [2.285692884557774, 48.850624293675224], [2.285697494093721, 48.850619676886495], [2.285748468696855, 48.8504982066055], [2.285798874763029, 48.85037683722327], [2.285849848892304, 48.85025536687256], [2.285900253137209, 48.85013399651372], [2.2859512267925313, 48.8500125260933], [2.286001631916793, 48.849891156572724], [2.286052605098268, 48.8497696860826], [2.286103009763851, 48.84964831559352], [2.286109526619709, 48.849642834186376], [2.286282626568837, 48.84957928632747], [2.286455447040911, 48.84951591462414], [2.28662854614672, 48.849452366257516], [2.2868013657772233, 48.84938899404737], [2.286974462676949, 48.849325445164915], [2.287147282828544, 48.849262072456], [2.287320378872554, 48.84919852396509], [2.287493198182474, 48.84913515074936], [2.287505252038239, 48.8491278477514], [2.287502939468161, 48.84911698315825], [2.28740602284826, 48.849003940542104], [2.287308165668632, 48.84889015115495], [2.287211249893083, 48.84877710835798], [2.287113392202146, 48.848663318780204], [2.287016477258538, 48.848550276701715], [2.286918621781471, 48.848436486949595], [2.286821707694599, 48.84832344379103], [2.286723853068645, 48.84820965385643], [2.286626938451155, 48.84809661140824], [2.286529084676508, 48.84798282129117], [2.286432172278274, 48.84786977777102], [2.28633431935472, 48.84775598747148], [2.286341683373427, 48.84774305626261], [2.286396320283543, 48.84773048527084], [2.28643803653024, 48.84772095798868], [2.28645648650562, 48.84771347469043], [2.286455567398882, 48.84770217588481], [2.286375847001249, 48.84762141589537], [2.286300344220167, 48.8475456455], [2.286220624290209, 48.84746488629504], [2.28614512196159, 48.84738911579109], [2.286144307607778, 48.847388180988546], [2.286044213546931, 48.84725546786745], [2.285942899518606, 48.84712102777589], [2.285842806483664, 48.846988314454485], [2.28574149349437, 48.84685387416013], [2.285688528485501, 48.84681371874025], [2.285679836993303, 48.846816523231524], [2.285633238274301, 48.84684487899793], [2.285485432194442, 48.846936784790365], [2.285334663931935, 48.847028530601186], [2.28518685545429, 48.84712043510215], [2.285036086134845, 48.84721218052164], [2.284888277972494, 48.84730408464672], [2.284737507596005, 48.8473958296748], [2.284589697011273, 48.847487734307], [2.28443892559028, 48.84757947804445], [2.284291115320627, 48.84767138230076], [2.284140341467708, 48.84776312653792], [2.2840920350289178, 48.84779316227815], [2.284071881654429, 48.84780151190119], [2.284060997759063, 48.84783513158693], [2.283961492763776, 48.847896999690775], [2.2838086034941583, 48.84798977949752], [2.283660790961532, 48.84808168204197], [2.2835079006146453, 48.84817446144905], [2.283360087028003, 48.84826636360679], [2.28320719560394, 48.84835914261421], [2.283059379588061, 48.84845104527629], [2.282906488461829, 48.84854382299294], [2.282758671391909, 48.84863572526823], [2.282605777813472, 48.84872850347635], [2.2824579610644298, 48.84882040447384], [2.282305066408795, 48.848913182282274], [2.282157248605507, 48.849005082893], [2.28200435287267, 48.84909786030176], [2.281856534002938, 48.84918976142499], [2.2817036372052852, 48.84928253753478], [2.281555815918725, 48.849374438263055], [2.28151721178006, 48.84938027535259]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 105, "zemmour_eric": 120.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-10", "circ_bv": "12", "num_bureau": 10, "roussel_fabien": 15.0, "nb_emargement": 1252.0, "nb_procuration": 46.0, "nb_vote_blanc": 10.0, "jadot_yannick": 72.0, "le_pen_marine": 70.0, "nb_exprime": 1241.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1651.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1254, "quartier_bv": "59", "geo_point_2d": [48.8495021152391, 2.2838992934668774], "melenchon_jean_luc": 236.0, "poutou_philippe": 5.0, "macron_emmanuel": 560.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.40219892928073, 48.83710969438446], [2.402159877521826, 48.83708553749635], [2.402151463707539, 48.837035608707836], [2.402127946566972, 48.836921508656935], [2.402112266963424, 48.83682847486381], [2.40211029844925, 48.836824897252654], [2.4020036143128802, 48.836712984173616], [2.401899903341023, 48.83660297541388], [2.401793220100251, 48.83649106302429], [2.401689510013961, 48.83638105406025], [2.401582827689416, 48.83626914056152], [2.401479118488687, 48.836159131393266], [2.401375408363371, 48.83604912211745], [2.4012687273822, 48.835937209204666], [2.401165019504762, 48.83582719973145], [2.401058339439802, 48.83571528570952], [2.4009546324479, 48.83560527603205], [2.400847953288812, 48.83549336180027], [2.400744247182435, 48.83538335191859], [2.400637568918869, 48.83527143837627], [2.400533862335697, 48.835161428283534], [2.400427184988326, 48.83504951363207], [2.4004094844231982, 48.83504188193516], [2.400389980052604, 48.835045387013935], [2.400295165441927, 48.835148385317176], [2.400180468998718, 48.83527640307514], [2.400085653553865, 48.83537940119106], [2.399970956087802, 48.835507418721676], [2.399876139808663, 48.83561041665022], [2.399761441319736, 48.83573843395351], [2.399666624206502, 48.83584143169471], [2.3996691785125153, 48.835852801678804], [2.399836647043602, 48.83595180401869], [2.39998957721309, 48.83604733898704], [2.399992166100552, 48.83604955721276], [2.400078611245763, 48.836153107322815], [2.400170350862898, 48.836263890507425], [2.400168638967338, 48.83627413556323], [2.4000442143424072, 48.8363677612087], [2.399917701594063, 48.83646178365494], [2.399793276070492, 48.83655540902372], [2.399666761051628, 48.83664943118193], [2.399542334619047, 48.836743057173244], [2.399415820054551, 48.83683707905712], [2.399291392733672, 48.8369307038724], [2.399164877260989, 48.83702472547507], [2.39904044903108, 48.83711835091291], [2.398913932650403, 48.837212372234355], [2.398789503532191, 48.83730599649613], [2.398662986243314, 48.83740001753641], [2.398538556216049, 48.83749364242072], [2.398412038019063, 48.837587663179804], [2.398413101828967, 48.83760031536332], [2.398584107225048, 48.837702079229246], [2.39874590337881, 48.8377976889799], [2.398916911434437, 48.83789945235889], [2.399078708821677, 48.8379950607432], [2.399085091392448, 48.83803102591445], [2.3991040445991683, 48.83803832591536], [2.39918448417827, 48.83808585923626], [2.399321759801781, 48.83813112283726], [2.399403119923167, 48.83817919934582], [2.3994266177034023, 48.8382012167842], [2.399431500496567, 48.83820135282033], [2.3996010928049962, 48.83814072740202], [2.399769241255926, 48.83808086704866], [2.399938832779512, 48.838020241144996], [2.4001069804538933, 48.83796038031044], [2.400276571192634, 48.83789975392141], [2.400444718090465, 48.837839892605636], [2.40061430804436, 48.837779265731214], [2.40078245416564, 48.83771940393426], [2.400952043334689, 48.83765877657451], [2.401120188669085, 48.83759891519563], [2.401289777063618, 48.83753828645125], [2.401457921621468, 48.83747842459118], [2.401627509231148, 48.83741779536142], [2.401795653012451, 48.83735793302016], [2.401965239837275, 48.837297303305064], [2.40213338284203, 48.8372374404826], [2.402213554776711, 48.837226829381365], [2.40221596821389, 48.83721763017379], [2.402201610015305, 48.83717257950795], [2.402194345421409, 48.8371294745363], [2.40219892928073, 48.83710969438446]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 53, "zemmour_eric": 70.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "12-23", "circ_bv": "08", "num_bureau": 23, "roussel_fabien": 16.0, "nb_emargement": 990.0, "nb_procuration": 45.0, "nb_vote_blanc": 11.0, "jadot_yannick": 86.0, "le_pen_marine": 49.0, "nb_exprime": 976.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1331.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 991, "quartier_bv": "46", "geo_point_2d": [48.836857011096626, 2.400412880741546], "melenchon_jean_luc": 300.0, "poutou_philippe": 5.0, "macron_emmanuel": 356.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.377025171339645, 48.85328518670084], [2.377022500990891, 48.85328340826991], [2.376821822734876, 48.8532879590381], [2.3766271201485862, 48.85329231126738], [2.376426443186538, 48.85329686137948], [2.376231740533864, 48.85330121296539], [2.376031062140232, 48.853305762407274], [2.3758363594212852, 48.85331011334975], [2.375635680958859, 48.85331466212852], [2.375440978173748, 48.85331901242762], [2.375436333297719, 48.85331858347439], [2.37534774304038, 48.85330096768819], [2.375250426884969, 48.85328025657386], [2.375247735251095, 48.853279462782034], [2.375177261457053, 48.85325229231381], [2.37508981250686, 48.85321725555452], [2.375073285824369, 48.85321846610564], [2.374927510321241, 48.853311117633865], [2.374783883398731, 48.85340207413613], [2.374638105504586, 48.85349472528932], [2.374494477560129, 48.853585682328486], [2.374348700000522, 48.85367833312095], [2.374205071044697, 48.85376928979768], [2.374059291094047, 48.85386194021517], [2.373915661137752, 48.85395289563017], [2.373769881521639, 48.85404554568685], [2.373626250543262, 48.85413650163875], [2.373482619074367, 48.85422745651153], [2.373336836557333, 48.8543201060106], [2.373336697823902, 48.85432019611849], [2.373220538571671, 48.85439615576495], [2.373053048969074, 48.85450678704299], [2.37293688888739, 48.8545827464014], [2.372769399445602, 48.85469337727095], [2.372653238534462, 48.85476933634124], [2.372655532900104, 48.854783319784325], [2.372844040280255, 48.854862198913914], [2.373018407367606, 48.85493481251725], [2.373037568712343, 48.854945980325354], [2.373043782365341, 48.85494550564866], [2.373218149999003, 48.85501811985479], [2.373388507507068, 48.8550894564073], [2.373562876113659, 48.855162069202414], [2.373733235927035, 48.85523340526208], [2.3739076054958392, 48.855306017545395], [2.374077966241003, 48.855377354004304], [2.37425233677182, 48.855449965775925], [2.3744226984704833, 48.85552130083551], [2.374423208480887, 48.85552150405685], [2.374587558465465, 48.85558435805288], [2.374754898452456, 48.8556478300053], [2.374919249235496, 48.85571068353864], [2.3750865900430203, 48.8557741541207], [2.375250941624722, 48.85583700719132], [2.375418283231205, 48.855900478201605], [2.375582635611369, 48.85596333080949], [2.375749978038373, 48.856026800449435], [2.375750305068415, 48.85602691997029], [2.375909912227379, 48.856083429432644], [2.376080937115031, 48.856144244038944], [2.376240545002726, 48.85620075215507], [2.376411570661365, 48.85626156628242], [2.376571179266912, 48.85631807395155], [2.376742205696639, 48.85637888759991], [2.376748717831545, 48.85637614522759], [2.376742186965512, 48.85633932153748], [2.376646457264358, 48.85626215427259], [2.376541487865791, 48.856176850036526], [2.376412170746818, 48.85607260802799], [2.376307202113669, 48.855987303571844], [2.376302490997592, 48.85598487325676], [2.376133238883467, 48.855931966287024], [2.3759585352912422, 48.85587782281722], [2.375789283863322, 48.85582491625523], [2.375614580987434, 48.855770772278035], [2.375607845048354, 48.85575909594728], [2.375683100335014, 48.85564298594491], [2.375758353998408, 48.85552755218746], [2.37583360861537, 48.85541144206623], [2.375908862973657, 48.85529600819714], [2.375984116920824, 48.85517989795708], [2.3760593692376792, 48.85506446486149], [2.376134622515064, 48.85494835450256], [2.376209874174869, 48.854832920388965], [2.376285128145296, 48.85471680991831], [2.376360379137287, 48.85460137568598], [2.376435631075127, 48.85448526508937], [2.376510881388553, 48.85436983163766], [2.376586134030201, 48.85425372003001], [2.376661383675831, 48.85413828645961], [2.3767366342741623, 48.85402217562529], [2.376811883262868, 48.853906741036916], [2.376887133191354, 48.85379063008378], [2.376962382864319, 48.853675196283085], [2.3770376321338222, 48.85355908431182], [2.377112879776227, 48.853443650385344], [2.377112795895127, 48.85343641646506], [2.377068610307353, 48.85337138906467], [2.37702478432666, 48.853303764389906], [2.377025171339645, 48.85328518670084]]], "type": "Polygon"}, "properties": {"lassalle_jean": 23.0, "pecresse_valerie": 47, "zemmour_eric": 63.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-9", "circ_bv": "07", "num_bureau": 9, "roussel_fabien": 23.0, "nb_emargement": 1359.0, "nb_procuration": 112.0, "nb_vote_blanc": 14.0, "jadot_yannick": 150.0, "le_pen_marine": 40.0, "nb_exprime": 1342.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1653.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1359, "quartier_bv": "43", "geo_point_2d": [48.854499711910826, 2.375090772524976], "melenchon_jean_luc": 470.0, "poutou_philippe": 8.0, "macron_emmanuel": 470.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.271413926259588, 48.85061399360973], [2.2714451163873752, 48.850613796810755], [2.271563639247491, 48.85053980829233], [2.2717016776588013, 48.85045259638138], [2.27185786720577, 48.8503550918271], [2.271995905985489, 48.85026788046979], [2.272152093065714, 48.85017037550698], [2.272290130876188, 48.85008316289648], [2.272446318202384, 48.84998565844092], [2.272584355031154, 48.849898445476484], [2.272602831242891, 48.849882058065496], [2.272597216182649, 48.84987066855167], [2.272481944502853, 48.84982347143412], [2.272334859554478, 48.84976425137915], [2.2721714175855983, 48.849697331104316], [2.2720243347087052, 48.849638110669154], [2.271860893546782, 48.8495711890633], [2.271713810016236, 48.8495119682314], [2.271708130948447, 48.849507417951074], [2.271700759673226, 48.84948890012566], [2.271683962177078, 48.8494826705013], [2.271619521925947, 48.849367983315226], [2.271555751066567, 48.849255343513995], [2.271491310003476, 48.84914065712643], [2.271427541061957, 48.84902801724219], [2.2713631005747033, 48.848913329862874], [2.271299332175902, 48.84880069078656], [2.271234892251905, 48.84868600331477], [2.271171123058429, 48.84857336323953], [2.271106685047644, 48.84845867658288], [2.271042916409451, 48.84834603641636], [2.271033024276527, 48.848340392881035], [2.270807466507635, 48.848308289722205], [2.270589433465676, 48.848274471052775], [2.270363876267866, 48.848242366156484], [2.270145843789591, 48.84820854667669], [2.270112068197441, 48.84820439690787], [2.270100439631734, 48.84821367127866], [2.269894011091894, 48.848259702200345], [2.269697351935579, 48.84830317884211], [2.269490922697753, 48.84834920816532], [2.269294262867287, 48.84839268414106], [2.26909760270869, 48.84843615979187], [2.268891172401863, 48.848482188974025], [2.268694511569222, 48.84852566395878], [2.268488080551721, 48.8485716924418], [2.268479768019652, 48.848571779220165], [2.268294582709338, 48.848534753108815], [2.268093408668687, 48.84849559633076], [2.2679082239036, 48.848458569618856], [2.267707051809883, 48.84841941219684], [2.267521867590129, 48.84838238488444], [2.267320696080715, 48.8483432268101], [2.26730338187245, 48.848353262930864], [2.267331701534669, 48.848470970037354], [2.26735757552794, 48.848582645388355], [2.267385894061935, 48.8487003533487], [2.267411768285228, 48.848812028664945], [2.267440087078918, 48.84892973568894], [2.267465961519593, 48.84904141186978], [2.267459992052096, 48.84905027904112], [2.267339024984324, 48.849102920183846], [2.267212843993398, 48.849158163511305], [2.267196513021371, 48.849179952247724], [2.267212822112316, 48.84919557608833], [2.267396571483991, 48.849259150616625], [2.267570705104268, 48.849321119982186], [2.267754455355214, 48.84938469395374], [2.267928591183236, 48.84944666279977], [2.268112342313453, 48.8495102362145], [2.268286477623894, 48.84957220452435], [2.268291772869007, 48.849573206424274], [2.268525810867407, 48.8495849316358], [2.268738971435063, 48.84959345475848], [2.2687448642099, 48.84959460598753], [2.268918509562277, 48.84965951579248], [2.269081416880561, 48.849721113931686], [2.26925506444897, 48.849786022349875], [2.269417972560548, 48.84984762002386], [2.269580881057251, 48.84990921747259], [2.269754529874575, 48.84997412515495], [2.269917439164573, 48.850035722138465], [2.270091087447367, 48.85010063021592], [2.270253998905832, 48.85016222584324], [2.270427648029374, 48.850227133424866], [2.27042770632168, 48.85022715536504], [2.270590618560987, 48.850288751426284], [2.270751345847684, 48.85034952811217], [2.270914258864787, 48.850411122826664], [2.271074988269064, 48.85047189907938], [2.271237900676004, 48.85053349423743], [2.271398630835178, 48.85059427004874], [2.271413926259588, 48.85061399360973]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 180, "zemmour_eric": 153.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-28", "circ_bv": "14", "num_bureau": 28, "roussel_fabien": 5.0, "nb_emargement": 1064.0, "nb_procuration": 73.0, "nb_vote_blanc": 10.0, "jadot_yannick": 49.0, "le_pen_marine": 43.0, "nb_exprime": 1047.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1289.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "61", "geo_point_2d": [48.849276426489915, 2.2699567224731876], "melenchon_jean_luc": 75.0, "poutou_philippe": 0.0, "macron_emmanuel": 506.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.310189682802023, 48.86002706936881], [2.310191508066813, 48.86002355622729], [2.310188444916069, 48.85999167541216], [2.310181118939865, 48.859951916877534], [2.310194036892395, 48.85993385859532], [2.310188741706864, 48.8599155217517], [2.31015123714295, 48.85990159402919], [2.310088144810334, 48.85990020504724], [2.309879357542899, 48.85988451080659], [2.309685678188171, 48.85986943037263], [2.309491997582724, 48.859854349617116], [2.309283210666709, 48.85983865523502], [2.309089531655002, 48.859823573835584], [2.308880744995482, 48.85980787785168], [2.308868863692146, 48.85979738573513], [2.308905689182715, 48.8596591241576], [2.30893967165371, 48.85953079837483], [2.308976495405125, 48.85939253673437], [2.309010477539775, 48.85926421000136], [2.309044458144208, 48.85913588323598], [2.309081282689335, 48.85899762242125], [2.309115262945409, 48.85886929560488], [2.309152087126255, 48.85873103383589], [2.309186068385061, 48.85860270787578], [2.309222890826696, 48.85846444604388], [2.30925687174917, 48.85833611913354], [2.309293695165388, 48.858197858153794], [2.30931156144998, 48.858130384713135], [2.309305560611932, 48.85812490898493], [2.309265351813701, 48.85812498177831], [2.309058181245396, 48.85811445046709], [2.308853150914848, 48.858104411413116], [2.308648120663209, 48.858094372007756], [2.308440951704276, 48.858083839635576], [2.308235921613119, 48.858073799523794], [2.308028751468361, 48.85806326553069], [2.307823722888444, 48.858053225619656], [2.307616552908935, 48.85804269091271], [2.307411523126518, 48.85803265028741], [2.307204354674959, 48.85802211487457], [2.30699932506501, 48.85801207264355], [2.3067921554037643, 48.85800153740833], [2.306787922816482, 48.85800086175664], [2.306628612978305, 48.857956611476396], [2.30647234163279, 48.85791327075035], [2.306316070547255, 48.857869929818555], [2.306156761510152, 48.85782567890493], [2.306000490949838, 48.857782337557595], [2.305841182436593, 48.85773808711966], [2.305831146056763, 48.857737946158636], [2.30565701650788, 48.85778065983979], [2.305477138558198, 48.85782484002809], [2.305303008428605, 48.85786755319077], [2.305123129878763, 48.857911732843476], [2.304948999168566, 48.85795444548765], [2.304769120030569, 48.857998623705484], [2.304750880375971, 48.85799149827208], [2.304723677154596, 48.85786890476969], [2.304695439043963, 48.85774573774081], [2.304668236093245, 48.85762314329941], [2.304639996871981, 48.85749997712148], [2.304612794180124, 48.857377382640344], [2.304584556585986, 48.857254216430015], [2.304570915453691, 48.85724722111256], [2.304550345420638, 48.85724836785892], [2.304419577444187, 48.85728465583892], [2.304261881187724, 48.857331774536924], [2.304254517814341, 48.85733723487959], [2.304195377335607, 48.85745963320577], [2.304135678197941, 48.85758189693629], [2.30407653716233, 48.85770429517675], [2.304016836102579, 48.85782655881312], [2.30395769587287, 48.857948956975804], [2.30389799425391, 48.85807122052592], [2.303838852104521, 48.858193618594946], [2.303779151289139, 48.85831588206675], [2.303720008582851, 48.85843828005005], [2.303660305845446, 48.8585605434277], [2.303601162582247, 48.85868294132526], [2.303541460648418, 48.85880520462459], [2.303524697028979, 48.85882295564071], [2.303527893590816, 48.85882966004331], [2.303633221913792, 48.858919499730206], [2.303721145105021, 48.859000769728745], [2.303726201740687, 48.859003428861314], [2.303898886074295, 48.85905615173071], [2.304062100243776, 48.85910614639259], [2.304225314714575, 48.859156141728874], [2.304398001422208, 48.85920886387871], [2.304561216549001, 48.85925885785296], [2.3047339039370778, 48.85931157951323], [2.304744896204332, 48.859311711728225], [2.304916724318664, 48.859264177187846], [2.30508810366671, 48.85921797263658], [2.305097319701143, 48.85921771227946], [2.305303619389962, 48.85926020209102], [2.305494862679466, 48.859298978868985], [2.305686104890608, 48.85933775533209], [2.305892406909809, 48.85938024323266], [2.306083649715205, 48.8594190190576], [2.306289951005462, 48.85946150716112], [2.306298994557129, 48.859472565871236], [2.306278614718708, 48.85951955675363], [2.306260460341782, 48.8595565390394], [2.306257298919176, 48.859574394457724], [2.306290303407271, 48.85958470171154], [2.306473324405295, 48.859618544852204], [2.306653163224382, 48.859651755914584], [2.30683618469355, 48.85968559849825], [2.307016023975383, 48.85971880901331], [2.307195862123644, 48.85975201924927], [2.307378884309479, 48.85978586010062], [2.307558724283311, 48.85981906979716], [2.307741746928418, 48.85985291099076], [2.30774363404571, 48.859853166531266], [2.3079494135958543, 48.85987174662259], [2.308159215884932, 48.859890097796765], [2.308364995741078, 48.85990867627363], [2.308574798313202, 48.85992702761786], [2.308780578463392, 48.85994560537948], [2.3089903813307, 48.859963955994594], [2.309196161774925, 48.859982533040984], [2.309405966312067, 48.86000088203544], [2.309611747038396, 48.8600194592659], [2.309821550507748, 48.86003780752333], [2.3098240589704, 48.860037873253596], [2.309979214509545, 48.86003513910049], [2.310117215042361, 48.860030340765746], [2.310189682802023, 48.86002706936881]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 137, "zemmour_eric": 150.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "7-18", "circ_bv": "02", "num_bureau": 18, "roussel_fabien": 4.0, "nb_emargement": 1146.0, "nb_procuration": 81.0, "nb_vote_blanc": 11.0, "jadot_yannick": 56.0, "le_pen_marine": 62.0, "nb_exprime": 1132.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 5, "nb_inscrit": 1430.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1146, "quartier_bv": "28", "geo_point_2d": [48.85874967636126, 2.3065967598548163], "melenchon_jean_luc": 147.0, "poutou_philippe": 10.0, "macron_emmanuel": 515.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.319948405697291, 48.854969219236025], [2.319955891028185, 48.85497264065615], [2.320040386329615, 48.85508115141926], [2.320134390020888, 48.85520351944091], [2.320218886068436, 48.85531203005547], [2.320312890583703, 48.85543439881076], [2.320397387377481, 48.855542909276686], [2.320491392740214, 48.85566527696705], [2.320575890280028, 48.855773787284384], [2.320669896478505, 48.85589615480903], [2.320754394752741, 48.856004665877045], [2.3208484017869733, 48.856127033236085], [2.320932900819089, 48.85623554325619], [2.321026908689188, 48.85635791044955], [2.321111408455749, 48.85646642122036], [2.321112143039068, 48.856467260888074], [2.321215374092131, 48.85657189190378], [2.321324799673112, 48.856682206794225], [2.321428030227817, 48.85678683669928], [2.32153745807341, 48.85689715138162], [2.321640689481005, 48.85700178108296], [2.32175011822816, 48.857112095549496], [2.321853350477054, 48.85721672594639], [2.321962780137585, 48.8573270392978], [2.322066013239291, 48.85743166949096], [2.322175443789802, 48.85754198352585], [2.322278677756232, 48.85764661261601], [2.322388107845545, 48.857756926427335], [2.322491344027691, 48.857861555321485], [2.322600775018699, 48.85797186891696], [2.3227040120421982, 48.85807649850668], [2.322771779824002, 48.858144811960614], [2.322775359485213, 48.85816050344031], [2.322797436955055, 48.858172983689315], [2.322839101109177, 48.85821498360499], [2.322949991105312, 48.858330292903126], [2.323059425414775, 48.85844060604034], [2.3230965100309042, 48.858479169603356], [2.323113624581028, 48.858489065756295], [2.323167846811611, 48.85846976296966], [2.323269477568187, 48.85836158715201], [2.3233705630077273, 48.85825443791514], [2.323472192923316, 48.858146261904295], [2.323573278891217, 48.85803911248316], [2.323674907965927, 48.85793093627916], [2.323775991736304, 48.85782378665825], [2.323877619958476, 48.85771561116043], [2.323978704268688, 48.85760846045595], [2.324080330287119, 48.85750028475727], [2.324181413762816, 48.857393133860754], [2.324283040303283, 48.85728495797666], [2.324384121581496, 48.85717780688042], [2.324485747281126, 48.85706963080319], [2.32458682908751, 48.85696247952265], [2.324588451365095, 48.856961083889125], [2.324721502243197, 48.85686768327219], [2.324869449565055, 48.85676344929472], [2.325002498083673, 48.8566700474418], [2.325150444282131, 48.85656581309838], [2.325283493155237, 48.85647241092408], [2.3254314368675493, 48.85636817620701], [2.325564484732291, 48.85627477370367], [2.325712428684276, 48.85617053862833], [2.325800575103193, 48.856108657003105], [2.325801848996777, 48.856099105845324], [2.325774906204523, 48.85608408681691], [2.32567104736582, 48.85596699204715], [2.325574225658421, 48.85585832601215], [2.325477402992029, 48.855749659880495], [2.325373546851218, 48.85563256482501], [2.325276725022849, 48.85552389850887], [2.3251728684202693, 48.85540680324768], [2.325076048792742, 48.855298136754804], [2.324972193091114, 48.85518104129568], [2.324875374289932, 48.85507237551762], [2.3247715195009, 48.85495527896125], [2.324674700174891, 48.85484661299106], [2.324563557391935, 48.85472963517804], [2.324466738930549, 48.854620968118226], [2.3243879559256992, 48.85453804882294], [2.324389832628049, 48.85452312202379], [2.324355873806408, 48.85450819074171], [2.324323515004213, 48.854474132896826], [2.324200108636449, 48.8543420725032], [2.324088967983433, 48.8542250950956], [2.323965562799905, 48.854093034430456], [2.323854423204608, 48.85397605677877], [2.323852403807581, 48.85397214216256], [2.323831342325363, 48.85382802994548], [2.3238076761742, 48.85368457570437], [2.323786614931914, 48.85354046344215], [2.323762949034391, 48.85339700915508], [2.323741888032036, 48.8532528968477], [2.323718223751117, 48.853109442522396], [2.323707766845279, 48.85310165704578], [2.323516283770488, 48.8530722196905], [2.323326564900528, 48.85304295568688], [2.323135082268483, 48.85301351682071], [2.322945365177416, 48.852984253118166], [2.322753881613687, 48.852954813632714], [2.322564164962121, 48.8529255484249], [2.322372681817889, 48.85289610922717], [2.322182965594147, 48.85286684341341], [2.321991482892604, 48.85283740270482], [2.321801767084993, 48.85280813718439], [2.321612051502188, 48.8527788704631], [2.321420569446584, 48.85274942883857], [2.321230854279912, 48.85272016241062], [2.321039372655321, 48.852690720174515], [2.320849657916491, 48.852661453140655], [2.320658176723021, 48.85263201029294], [2.32046846242377, 48.85260274175387], [2.320276983012455, 48.85257329920163], [2.320087267778416, 48.85254403004886], [2.319895788809966, 48.852514585985745], [2.319706073991962, 48.85248531712636], [2.319514595454655, 48.85245587245167], [2.3193248824390222, 48.852426602094816], [2.319133402958367, 48.85239715770012], [2.319070834846115, 48.85239992781263], [2.319066615565198, 48.85241588179039], [2.319071025761944, 48.85246916685204], [2.31908720738294, 48.85263305534488], [2.319097860311964, 48.85276177895093], [2.319098283974305, 48.85276356568704], [2.319146196029409, 48.852884330634886], [2.319191985742552, 48.85300576878361], [2.31923989687485, 48.85312653365996], [2.319285687019198, 48.85324797174637], [2.319333599965772, 48.85336873566727], [2.319379389178556, 48.85349017368362], [2.319427302553352, 48.85361093844003], [2.319473093560129, 48.853732376401815], [2.319521006023661, 48.85385314018733], [2.319566797461658, 48.853974578086806], [2.319614711716212, 48.854095342715496], [2.3196605035853413, 48.85421678055264], [2.319708416928728, 48.854337544210495], [2.319754209229191, 48.85445898198527], [2.319802124363426, 48.8545797464863], [2.319847915732324, 48.85470118419105], [2.319895831306559, 48.85482194862821], [2.31994162446951, 48.854943386278364], [2.319948405697291, 48.854969219236025]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 126, "zemmour_eric": 168.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "7-6", "circ_bv": "02", "num_bureau": 6, "roussel_fabien": 5.0, "nb_emargement": 1181.0, "nb_procuration": 96.0, "nb_vote_blanc": 13.0, "jadot_yannick": 63.0, "le_pen_marine": 58.0, "nb_exprime": 1166.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 2, "nb_inscrit": 1451.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1181, "quartier_bv": "25", "geo_point_2d": [48.85511443205686, 2.3223681471978503], "melenchon_jean_luc": 105.0, "poutou_philippe": 1.0, "macron_emmanuel": 608.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323313424692168, 48.88267735664509], [2.323321757187508, 48.882682018216514], [2.323386681940152, 48.882695018977266], [2.323586152254813, 48.88273657470269], [2.323776852192494, 48.88277476111968], [2.323976323135603, 48.88281631529276], [2.32416702365138, 48.88285450108553], [2.324366495211245, 48.88289605460556], [2.32455719630511, 48.88293423977412], [2.324747896315089, 48.8829724246299], [2.324947370142016, 48.88301397808469], [2.325138070730075, 48.883052162316254], [2.325337545185406, 48.88309371421866], [2.325528246351535, 48.88313189782599], [2.3257277214236, 48.88317344907534], [2.325918424531347, 48.88321163206616], [2.326117898856585, 48.88325318265475], [2.326308602542392, 48.88329136502128], [2.326508077472718, 48.8833329158561], [2.326698781736582, 48.88337109759838], [2.326849925147949, 48.88340257962557], [2.326872377519068, 48.88340911269954], [2.326881260718766, 48.88340875974197], [2.326929592877864, 48.88341882698458], [2.326976579030378, 48.883413392953805], [2.327022109710915, 48.88339237789473], [2.326976085682658, 48.88325964041366], [2.326930822599838, 48.88313029405971], [2.32688479903578, 48.8829975565119], [2.326839536407485, 48.8828682100926], [2.326793513307722, 48.88273547247811], [2.326748249770406, 48.8826061259858], [2.3267022271349322, 48.882473388304604], [2.32665696541567, 48.88234404175463], [2.326610943244477, 48.88221130400674], [2.326565681968091, 48.88208195829077], [2.326520420928163, 48.88195261164321], [2.32647439945091, 48.881819873795564], [2.326429138865477, 48.8816905270827], [2.326383117852487, 48.88155778916841], [2.326337857721542, 48.88142844239022], [2.326291837172808, 48.88129570440921], [2.326286344610115, 48.88129033325807], [2.326105862211795, 48.88120730994846], [2.325932595404438, 48.88112468222056], [2.325752115495988, 48.88104165927215], [2.325578849800899, 48.88095903101986], [2.325405584644066, 48.88087640340987], [2.3252251050843302, 48.88079337874136], [2.325051841051513, 48.88071074970772], [2.324871362618126, 48.88062772539272], [2.324855563154108, 48.880627818859246], [2.3247087823019212, 48.880697959276645], [2.324554862510839, 48.880772010009856], [2.32440808084728, 48.88084215004936], [2.324254160202378, 48.88091620038633], [2.324107377727545, 48.88098634004799], [2.323953457592422, 48.8810603899963], [2.32380667430611, 48.881130529280156], [2.323652751953869, 48.881204578824466], [2.323647882068012, 48.881203465816576], [2.323608691892992, 48.8812199135621], [2.323424467421225, 48.8813203120623], [2.323230671916858, 48.88142800282783], [2.323225850268085, 48.88143545353155], [2.32323735097202, 48.881554320522945], [2.323249311630177, 48.88167326384546], [2.323260812428495, 48.88179213170817], [2.323272771843019, 48.881911074095655], [2.323284272747402, 48.88202994193043], [2.323296233633648, 48.882148884297564], [2.3233077346441, 48.88226775210442], [2.32331969563855, 48.88238669444348], [2.323331196755073, 48.88250556222243], [2.32334315785773, 48.88262450453346], [2.323313424692168, 48.88267735664509]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 127, "zemmour_eric": 138.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "8-7", "circ_bv": "01", "num_bureau": 7, "roussel_fabien": 16.0, "nb_emargement": 1256.0, "nb_procuration": 72.0, "nb_vote_blanc": 17.0, "jadot_yannick": 89.0, "le_pen_marine": 46.0, "nb_exprime": 1234.0, "nb_vote_nul": 4.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1505.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1255, "quartier_bv": "32", "geo_point_2d": [48.8820525851276, 2.3250633463592827], "melenchon_jean_luc": 192.0, "poutou_philippe": 3.0, "macron_emmanuel": 572.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408363433216961, 48.838174626567266], [2.4084100578411523, 48.838171941437494], [2.408564853115264, 48.83815044052221], [2.408770477403895, 48.83812072136495], [2.408925272367025, 48.838099220881574], [2.409130897610483, 48.8380695011101], [2.40931118077118, 48.83804391252135], [2.409516805576413, 48.83801419208503], [2.409697089718641, 48.83798860292008], [2.409902712723358, 48.83795888181222], [2.410082996474648, 48.837933292963726], [2.410288619041025, 48.83790357119106], [2.410468902421729, 48.83787798086033], [2.410475368547962, 48.837878099966346], [2.410664764034197, 48.83791236805482], [2.410854086690314, 48.83794671282748], [2.411043482674937, 48.83798098031425], [2.411232804477574, 48.838015323579405], [2.411422202312604, 48.838049591370414], [2.411611524613972, 48.83808393403405], [2.411800922947384, 48.83811820122333], [2.411990245747477, 48.83815254328545], [2.412179644589204, 48.8381868089737], [2.412368967877873, 48.838221151333634], [2.4125583658555723, 48.83825541641341], [2.4127476910053502, 48.83828975817852], [2.412753652331081, 48.838289943933546], [2.412954630815941, 48.838266696266174], [2.413150587647597, 48.83824364666673], [2.4133465456581122, 48.838220597651734], [2.413547523611145, 48.838197348986775], [2.413566662402399, 48.83819427077242], [2.413565829151887, 48.83816782188905], [2.413554306058279, 48.83812842826246], [2.413506771604526, 48.83800010556262], [2.413476591106988, 48.837896930409464], [2.413429058407929, 48.83776860855816], [2.41338195253352, 48.83764172594418], [2.413334420300169, 48.83751340402597], [2.413287314886761, 48.837386521345785], [2.413255634627127, 48.83730118474668], [2.413208101652921, 48.83717286273249], [2.413168963821027, 48.83706743644505], [2.413121431273242, 48.836939114369585], [2.413082293782027, 48.83683368893109], [2.413034761660858, 48.83670536679438], [2.413010188228211, 48.83663917009247], [2.412978522104761, 48.836553868502946], [2.412930990494114, 48.8364255462929], [2.412899323267803, 48.83634024465946], [2.412851793409259, 48.83621192240008], [2.412817770202304, 48.83612027045716], [2.412766560378678, 48.83598232398177], [2.412719029811099, 48.835854001621875], [2.412671499487667, 48.83572567832908], [2.412620291801102, 48.83558773174907], [2.412572761953295, 48.83545940928584], [2.412521554799735, 48.8353214617314], [2.412507925346058, 48.83528474484785], [2.412460396051234, 48.835156422305204], [2.412445189271899, 48.83511545716354], [2.412419238210348, 48.835045550793275], [2.412403125804701, 48.83500214391867], [2.412355597025436, 48.83487382130195], [2.41230028821765, 48.83472482452933], [2.412252761316931, 48.834596500947356], [2.412239998225917, 48.834562121213985], [2.412165379584592, 48.8345134514934], [2.412037929898434, 48.83442910419164], [2.41200608644547, 48.834408334237814], [2.411936960300168, 48.83436324655173], [2.411927538189266, 48.834357101641245], [2.411800087918186, 48.834272753168236], [2.411622680989935, 48.83415703812371], [2.411495231701287, 48.83407268931077], [2.4113979730362702, 48.834009250749084], [2.411270524462392, 48.8339249025849], [2.411263988484553, 48.83392063800565], [2.411249527623754, 48.83391120534325], [2.411201580825992, 48.83387993136443], [2.411165706173132, 48.83386827167455], [2.411162655405351, 48.833869281930674], [2.41099257103256, 48.83393128215165], [2.410820433020396, 48.833993661437944], [2.410650347834749, 48.83405566116535], [2.410478210364622, 48.834118039958916], [2.410308124355947, 48.83418004009211], [2.410135986065475, 48.834242418386225], [2.409965897891931, 48.83430441711987], [2.40979375878132, 48.834366794914544], [2.409623671157107, 48.83442879316137], [2.409451531226156, 48.83449117045655], [2.409281441416706, 48.83455316910241], [2.409109300665512, 48.83461554589817], [2.4089392114156922, 48.83467754315794], [2.408767069844259, 48.83473991945423], [2.408596979781588, 48.8348019162204], [2.408424836027617, 48.83486429201051], [2.408254745152092, 48.83492628828311], [2.408082601940186, 48.83498866358049], [2.407912510241596, 48.83505066025888], [2.407740366209451, 48.835113035056786], [2.407570272345913, 48.835175030335584], [2.40739812749353, 48.83523740463397], [2.407228034179451, 48.83529939942594], [2.407055888506835, 48.83536177322488], [2.406885793017592, 48.83542376751652], [2.406713646524739, 48.83548614081595], [2.40669467007515, 48.83548194918985], [2.40661182295181, 48.83536047221354], [2.406536285961352, 48.835235347642026], [2.40645344097159, 48.83511386963666], [2.40640307095375, 48.83503043213037], [2.406377904718759, 48.83498874493754], [2.406359605423699, 48.83497942214835], [2.406332147487915, 48.83499433941874], [2.406195369137209, 48.83498826068174], [2.406049012426067, 48.83498537912964], [2.405912234131892, 48.83497930006884], [2.40576587610961, 48.83497641726424], [2.405756137420098, 48.834978855622126], [2.405737784502579, 48.83498954241632], [2.405597962029914, 48.83507635394952], [2.405479386114727, 48.83514540236401], [2.405475213585955, 48.835153132340906], [2.405502275040601, 48.83528828021612], [2.405527513481883, 48.83541425629265], [2.405552752045053, 48.8355402323496], [2.405579815264018, 48.8356753801673], [2.405605054069764, 48.83580135708314], [2.405632116207831, 48.83593650395138], [2.405634643837335, 48.835940649984], [2.405745246256838, 48.83604150817956], [2.405858396979214, 48.8361431847487], [2.40596900162384, 48.83624404272585], [2.406082153232565, 48.83634571816562], [2.406192757377445, 48.836446575910834], [2.406305911214376, 48.83654825202661], [2.406416516221957, 48.83664910954664], [2.406529670945252, 48.83675078453302], [2.406640276815643, 48.836851641827906], [2.406753431042474, 48.83695331747672], [2.406759441355001, 48.83695636644423], [2.406909262054281, 48.836995113743015], [2.4070624689105222, 48.83703586702594], [2.407212290063661, 48.83707461394243], [2.407365498752747, 48.83711536684108], [2.407515318997284, 48.83715411336855], [2.407668528156955, 48.83719486587617], [2.407677060277759, 48.837203199343584], [2.407677139306688, 48.83725870834772], [2.4076730285021912, 48.83731401223228], [2.407681848930811, 48.83732287325268], [2.407892413741072, 48.8373750336709], [2.408103470293351, 48.83742675905752], [2.408112005241374, 48.837433173267875], [2.408154061498109, 48.837553793289885], [2.408193265800617, 48.837678424714866], [2.408235322443275, 48.83779904468185], [2.408274527114436, 48.83792367695213], [2.408316584153233, 48.83804429596474], [2.40835578920306, 48.83816892818108], [2.408363433216961, 48.838174626567266]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 60, "zemmour_eric": 106.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-44", "circ_bv": "08", "num_bureau": 44, "roussel_fabien": 20.0, "nb_emargement": 1139.0, "nb_procuration": 52.0, "nb_vote_blanc": 22.0, "jadot_yannick": 90.0, "le_pen_marine": 75.0, "nb_exprime": 1115.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1480.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1139, "quartier_bv": "45", "geo_point_2d": [48.836249708395215, 2.40990676273231], "melenchon_jean_luc": 375.0, "poutou_philippe": 7.0, "macron_emmanuel": 322.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.364581351717725, 48.82029398896275], [2.364569670259062, 48.820307379801655], [2.3645095260398, 48.82038128773968], [2.364414676751311, 48.820498226344625], [2.364322056578122, 48.82061203968068], [2.364227206449347, 48.820728978112946], [2.364134585446104, 48.82084279217978], [2.364039734477234, 48.82095973043931], [2.363947112654889, 48.82107354433759], [2.363852260845711, 48.82119048242445], [2.363759638204254, 48.82130429615417], [2.36366478555496, 48.8214212340683], [2.363572162094382, 48.821535047629446], [2.363477307242911, 48.821651985363594], [2.36338468433603, 48.82176579786411], [2.363289828644318, 48.82188273542556], [2.363197204907425, 48.821996548656784], [2.36310234837546, 48.82211348604556], [2.363009723819321, 48.822227299108214], [2.362914866447093, 48.82234423632421], [2.3628222410719, 48.822458049218284], [2.362727382859398, 48.82257498626159], [2.362634756665041, 48.822688798987095], [2.362539897612155, 48.82280573585762], [2.362507780221198, 48.82284519840562], [2.362508476146861, 48.82285422826709], [2.362518162627721, 48.82286907736174], [2.362457651630254, 48.82294342736708], [2.362425364477852, 48.8229847309085], [2.362423096844923, 48.82299685681383], [2.362481198908473, 48.823011698723185], [2.362681871647935, 48.823058697789605], [2.362891813695399, 48.823108915305944], [2.36309248582825, 48.82315591277266], [2.363302428662628, 48.82320612956382], [2.363310343442876, 48.82321807495968], [2.3633040041875972, 48.82322802159407], [2.363294279210145, 48.823247977355244], [2.363325958992646, 48.82325525380434], [2.363495637904947, 48.82329492922401], [2.363668541197398, 48.82333526371317], [2.363838219268869, 48.82337493863663], [2.364011123080588, 48.82341527352689], [2.364180803046084, 48.823454947069415], [2.364353707388148, 48.82349528146147], [2.364523387874693, 48.823534954515026], [2.364696292747197, 48.82357528840888], [2.364865973743734, 48.823614961872856], [2.365038879157528, 48.82365529436916], [2.365051748259995, 48.82365392909472], [2.365211429948812, 48.8235724047521], [2.36536127801683, 48.82349493995498], [2.365511125639482, 48.82341747496478], [2.365670807258793, 48.823335949099494], [2.365820653964732, 48.82325848371044], [2.365980334613036, 48.82317695742033], [2.3661301804021653, 48.82309949163243], [2.366289860079668, 48.82301796491748], [2.366439704951992, 48.82294049873082], [2.366599382285588, 48.82285897248311], [2.366749226241114, 48.82278150589763], [2.3668708577744573, 48.822719404006634], [2.36688094645037, 48.822709419473775], [2.366861882935136, 48.82268948367778], [2.366704554656124, 48.82264351443284], [2.366498315531957, 48.82258478632737], [2.36634098790043, 48.82253881570051], [2.366134748237825, 48.82248008695532], [2.365977421242766, 48.822434115845866], [2.36577118376588, 48.82237538647536], [2.365613857396247, 48.82232941578266], [2.365606113633371, 48.82232353234431], [2.365552236981404, 48.82219358324007], [2.365498446161507, 48.822060184537484], [2.365444570049992, 48.8219302353543], [2.365390778415176, 48.82179683656482], [2.365336902844108, 48.8216668873027], [2.365283113118482, 48.82153348844078], [2.365229238087848, 48.821403539099684], [2.365175448909242, 48.82127014015809], [2.3651215730572, 48.82114019073084], [2.365067784425711, 48.821006791709564], [2.365013910475929, 48.82087684221058], [2.364960122391647, 48.82074344310962], [2.364906248982275, 48.820613493531724], [2.364852460083171, 48.820480094343914], [2.364798587214104, 48.82035014468707], [2.364744800224012, 48.82021674542679], [2.364671547778451, 48.82019537911841], [2.364654736016856, 48.82020360995023], [2.364619863817124, 48.820250562023666], [2.364587388684448, 48.82029046939434], [2.364581351717725, 48.82029398896275]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 57, "zemmour_eric": 79.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-19", "circ_bv": "09", "num_bureau": 19, "roussel_fabien": 29.0, "nb_emargement": 1333.0, "nb_procuration": 32.0, "nb_vote_blanc": 12.0, "jadot_yannick": 53.0, "le_pen_marine": 91.0, "nb_exprime": 1310.0, "nb_vote_nul": 11.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1841.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1333, "quartier_bv": "50", "geo_point_2d": [48.82231582385739, 2.3645001504201253], "melenchon_jean_luc": 488.0, "poutou_philippe": 5.0, "macron_emmanuel": 456.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.377334278375316, 48.86566626738982], [2.377358896623019, 48.865672582935424], [2.3774526690551703, 48.86569480062769], [2.377630491059144, 48.865736466520545], [2.377824973074811, 48.865782545485374], [2.378002797039171, 48.865824210828876], [2.378197279722451, 48.865870288285755], [2.378375104273354, 48.86591195397208], [2.378569587613499, 48.86595803082039], [2.378747412761682, 48.86599969595022], [2.378941896758688, 48.86604577218988], [2.379119722504144, 48.866087436763294], [2.379136983735638, 48.86608223098699], [2.379205282545796, 48.86596672855486], [2.379272763635778, 48.865852558253266], [2.379341061843781, 48.86573705571969], [2.379408542338688, 48.86562288531787], [2.379476839944543, 48.86550738268284], [2.37954431984428, 48.86539321218075], [2.379612616837286, 48.86527771034357], [2.379680096152773, 48.86516353884196], [2.379748392543649, 48.8650480369033], [2.3798158712640802, 48.8649338653015], [2.379884167052833, 48.86481836326142], [2.379951645178216, 48.86470419155935], [2.379955905170815, 48.864700396821846], [2.380099583397671, 48.86462565482421], [2.380242071086826, 48.864551494655856], [2.38038574849246, 48.86447675230461], [2.380528235377685, 48.86440259088631], [2.380671911961996, 48.86432784818148], [2.380814398032595, 48.86425368641255], [2.380958073795789, 48.864178943354155], [2.381100559051765, 48.86410478123453], [2.381114302503306, 48.86409694168888], [2.381110405582257, 48.86408590549149], [2.381105504112928, 48.86407268319364], [2.381097716616083, 48.8640508806331], [2.381101028725144, 48.86403988890961], [2.381091448345031, 48.86403246116048], [2.3810630436572042, 48.86395294728738], [2.381035592485539, 48.863879347913254], [2.381022581296865, 48.86386147003907], [2.381010793910427, 48.86386116895012], [2.380840509841233, 48.86378152007961], [2.38067241613438, 48.863703762819135], [2.3805021330969103, 48.86362411345583], [2.380334039050727, 48.86354635480268], [2.380163757045085, 48.863466704946624], [2.379995664001131, 48.863388946706465], [2.37982538302731, 48.86330929635769], [2.379657290996276, 48.863231537631236], [2.379487011054276, 48.86315188678967], [2.379318921399094, 48.863074127584], [2.379294095579778, 48.86306621141302], [2.37928610453887, 48.86306946246369], [2.379188059726307, 48.86318911068467], [2.379089618685752, 48.86330822704584], [2.378991572972593, 48.863427875080056], [2.3788931296793, 48.8635469903476], [2.378795083054809, 48.86366663909437], [2.378696640224143, 48.863785754181684], [2.378598592709655, 48.86390540184239], [2.378500148967936, 48.864024517641674], [2.378402099189754, 48.86414416510853], [2.378303654547588, 48.86426328072051], [2.378205605231825, 48.86438292800767], [2.378107159699939, 48.86450204253306], [2.378089347019359, 48.86450586121259], [2.377973434236881, 48.864469557631544], [2.377863550788666, 48.86443701754983], [2.377854080612602, 48.86443660228832], [2.377663481922902, 48.86447403124339], [2.377474589940341, 48.864511317683046], [2.377283990715392, 48.86454874513198], [2.377095098179471, 48.86458603186948], [2.376904498408641, 48.8646234587115], [2.376715605340968, 48.86466074394829], [2.376526712002915, 48.86469802888566], [2.37633611140323, 48.864735455718005], [2.376147217522683, 48.864772740053915], [2.375956616377024, 48.864810166279405], [2.37576772195399, 48.86484745001387], [2.37557711889928, 48.86488487562534], [2.375388223933763, 48.86492215875833], [2.375197621706856, 48.86495958287076], [2.375008726198971, 48.86499686540227], [2.374818123415327, 48.865034289807085], [2.374784436734105, 48.86504841967104], [2.374794612794644, 48.865063854280145], [2.374976116207615, 48.86510668286048], [2.375170593535062, 48.86515276526536], [2.375352097566898, 48.865195593272055], [2.375546575558733, 48.865241675062336], [2.375728080220208, 48.86528450159608], [2.375922558876625, 48.86533058277171], [2.376104064146177, 48.865373409631154], [2.376298543466973, 48.86541949019211], [2.376480049366138, 48.86546231557864], [2.376674529351507, 48.865508395524984], [2.376856035858752, 48.86555122123716], [2.37705051787159, 48.86559730057593], [2.377232023634575, 48.86564012570738], [2.377332735269563, 48.86566398672565], [2.377334278375316, 48.86566626738982]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 42, "zemmour_eric": 74.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-35", "circ_bv": "06", "num_bureau": 35, "roussel_fabien": 20.0, "nb_emargement": 1353.0, "nb_procuration": 77.0, "nb_vote_blanc": 14.0, "jadot_yannick": 157.0, "le_pen_marine": 63.0, "nb_exprime": 1337.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1696.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1353, "quartier_bv": "42", "geo_point_2d": [48.86472004345908, 2.3785133781071868], "melenchon_jean_luc": 445.0, "poutou_philippe": 7.0, "macron_emmanuel": 467.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.407310294362036, 48.83202054604215], [2.40714611768917, 48.83194304520842], [2.40697180306235, 48.83198580568402], [2.406797623915479, 48.8320259728055], [2.4066233073632812, 48.83206873276331], [2.406449127670914, 48.83210889937428], [2.406274810555569, 48.83215165882098], [2.406100630317507, 48.83219182492149], [2.406098181422974, 48.832192259746215], [2.405924934670083, 48.8322118131595], [2.405735030842085, 48.83222744596585], [2.405561783836147, 48.832246998852504], [2.405371879771073, 48.832262631081804], [2.405198632501733, 48.83228218434114], [2.405008729561821, 48.832297816000114], [2.405007604587789, 48.83229791113269], [2.404778742441029, 48.83231094820251], [2.404588837908195, 48.83232657918762], [2.404359975520475, 48.83233961635511], [2.40417007211988, 48.832355246681715], [2.404167262194614, 48.832355681467156], [2.404041717239805, 48.83238967437054], [2.403842927564793, 48.83243554065492], [2.403839834386878, 48.83243656130689], [2.40371428766164, 48.83247055385733], [2.403604081117255, 48.83251935078646], [2.403472683143837, 48.8325978523059], [2.403362476114468, 48.83264664810761], [2.403360143898484, 48.832647954044525], [2.403228745233567, 48.83272645528702], [2.403095045815092, 48.83282025390377], [2.402963646326964, 48.83289875394358], [2.402829947351833, 48.8329925522564], [2.402687875958419, 48.83309293692707], [2.40255417598905, 48.833186734915344], [2.402412103525054, 48.83328712014039], [2.402278401199173, 48.83338091779733], [2.402240607723051, 48.833407654123164], [2.402260188955472, 48.83343563680621], [2.402442882733282, 48.83350206755173], [2.402601560674931, 48.83355898149498], [2.402784253957682, 48.833625411704915], [2.402942932647492, 48.833682325189024], [2.403101611683791, 48.83373923845971], [2.403284306235521, 48.83380566789523], [2.403442986019981, 48.83386258070676], [2.40358119566453, 48.83391283396229], [2.403621882804179, 48.83392095215009], [2.403646833859964, 48.83388177790937], [2.403742730831584, 48.833776865726335], [2.403860501036926, 48.83364942726066], [2.4038806844599963, 48.83364711216162], [2.4040337791851423, 48.83372866324394], [2.404178102993699, 48.833806821195296], [2.40433119865318, 48.83388837188529], [2.404475521987564, 48.833966529459886], [2.40462861994366, 48.83404807976432], [2.404772944166149, 48.83412623696886], [2.4049260416943072, 48.834207786874195], [2.405070368167188, 48.8342859437155], [2.405076741138571, 48.834287858683396], [2.405268829586152, 48.83430925201699], [2.405440565069874, 48.83432799417273], [2.4056123006874452, 48.83434673518225], [2.405804388199232, 48.83436812854719], [2.405816560108748, 48.83436543426165], [2.405921201634706, 48.834292278120564], [2.406033295576626, 48.83421499393648], [2.406137937858709, 48.83414183760271], [2.406250031155901, 48.83406455320512], [2.4062698587547082, 48.83406465702639], [2.406343200950006, 48.834116852346085], [2.406380816758264, 48.8341430207798], [2.406381970126756, 48.83415431262819], [2.406303599496064, 48.834227828917506], [2.406224604700092, 48.834299191673054], [2.406146233629651, 48.83437270784975], [2.406067237036507, 48.8344440704854], [2.40606558015115, 48.834452703349285], [2.406141634923875, 48.83457881749005], [2.406217170015561, 48.834703942384216], [2.406293226894241, 48.83483005550769], [2.406368762703619, 48.83495518117739], [2.406359605423699, 48.83497942214835], [2.406377904718759, 48.83498874493754], [2.40640307095375, 48.83503043213037], [2.40645344097159, 48.83511386963666], [2.406536285961352, 48.835235347642026], [2.40661182295181, 48.83536047221354], [2.40669467007515, 48.83548194918985], [2.406713646524739, 48.83548614081595], [2.406885793017592, 48.83542376751652], [2.407055888506835, 48.83536177322488], [2.407228034179451, 48.83529939942594], [2.40739812749353, 48.83523740463397], [2.407570272345913, 48.835175030335584], [2.407740366209451, 48.835113035056786], [2.407912510241596, 48.83505066025888], [2.408082601940186, 48.83498866358049], [2.408254745152092, 48.83492628828311], [2.408424836027617, 48.83486429201051], [2.408596979781588, 48.8348019162204], [2.408767069844259, 48.83473991945423], [2.4089392114156922, 48.83467754315794], [2.409109300665512, 48.83461554589817], [2.409281441416706, 48.83455316910241], [2.409451531226156, 48.83449117045655], [2.409623671157107, 48.83442879316137], [2.40979375878132, 48.834366794914544], [2.409965897891931, 48.83430441711987], [2.410135986065475, 48.834242418386225], [2.410308124355947, 48.83418004009211], [2.410478210364622, 48.834118039958916], [2.410650347834749, 48.83405566116535], [2.410820433020396, 48.833993661437944], [2.41099257103256, 48.83393128215165], [2.411162655405351, 48.833869281930674], [2.411165706173132, 48.83386827167455], [2.411177926822401, 48.833848804840116], [2.411189994424514, 48.833840112534055], [2.407310294362036, 48.83202054604215]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 39, "zemmour_eric": 72.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "12-43", "circ_bv": "08", "num_bureau": 43, "roussel_fabien": 15.0, "nb_emargement": 889.0, "nb_procuration": 38.0, "nb_vote_blanc": 13.0, "jadot_yannick": 49.0, "le_pen_marine": 91.0, "nb_exprime": 868.0, "nb_vote_nul": 8.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1157.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 889, "quartier_bv": "45", "geo_point_2d": [48.83352324684886, 2.4067683188990223], "melenchon_jean_luc": 287.0, "poutou_philippe": 9.0, "macron_emmanuel": 260.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.30779564622692, 48.837707499342294], [2.30780835464701, 48.83768742518099], [2.307891086037082, 48.83762177586827], [2.307976121827611, 48.837555456305786], [2.307977621734533, 48.83755444059993], [2.308127890575183, 48.83746761221814], [2.308279149410676, 48.83738201521131], [2.308429417251966, 48.837295186437316], [2.308580673717672, 48.8372095899274], [2.308730940559614, 48.83712276076125], [2.308882196029932, 48.83703716385691], [2.309032463234772, 48.836950334306415], [2.309183717721523, 48.836864736108275], [2.309333982552762, 48.836777907057076], [2.309485236044028, 48.83669230846449], [2.309635501250185, 48.83660547812967], [2.309786753734061, 48.836519880041934], [2.309889652531842, 48.836461645873975], [2.310039916399484, 48.83637481501325], [2.310069360648848, 48.83636823686741], [2.31004156466552, 48.83631287220879], [2.309979941914495, 48.836236178071], [2.309916867685157, 48.83615974263454], [2.309915513735183, 48.83615354714554], [2.309934705403335, 48.83609472023647], [2.309953730290491, 48.8360382999777], [2.309952519528389, 48.83603219705046], [2.309859973023751, 48.83591469080028], [2.309771620056662, 48.83580327942435], [2.309683268829563, 48.835691867979904], [2.309590723524197, 48.835574362385], [2.30950237172134, 48.835462949877005], [2.309409827230176, 48.83534544411806], [2.309390330246047, 48.83534204613986], [2.30934071167115, 48.83536327532761], [2.309292387384033, 48.835384088364194], [2.3092729794491422, 48.83538085816455], [2.309182602346641, 48.83527132957679], [2.309090408004956, 48.83515996648315], [2.309000031657126, 48.83505043863514], [2.3089078394584472, 48.834939075386636], [2.308817462526835, 48.834829546471845], [2.308725271108857, 48.83471818306064], [2.308634894931998, 48.834608654885656], [2.308542704294612, 48.83449729131177], [2.3084432308416423, 48.83448235592069], [2.308432289271757, 48.83450919201165], [2.308366683862943, 48.83457620989619], [2.30826185886644, 48.83468016302478], [2.308151475290662, 48.834792921141535], [2.3080466494292953, 48.83489687406141], [2.307936264929088, 48.83500963195766], [2.307831439552997, 48.835113585575996], [2.307721052777999, 48.83522634234466], [2.307616226536926, 48.83533029575425], [2.307511398527502, 48.83543424815508], [2.307401011731513, 48.835547005503265], [2.307296184219299, 48.83565095770326], [2.307185795136539, 48.835763714823095], [2.307080966759426, 48.83586766681431], [2.306970576752187, 48.83598042371367], [2.306865747509961, 48.83608437549621], [2.306755357940555, 48.83619713218295], [2.3067537941591922, 48.83620469313403], [2.306790686944992, 48.83628273770289], [2.306802079641582, 48.83639622801657], [2.30679882625648, 48.83640267834382], [2.30672818298709, 48.836457040664286], [2.306663289470884, 48.8365056281268], [2.306660070516814, 48.83650743968971], [2.306585452713666, 48.8365376388465], [2.306540389712205, 48.83654612489134], [2.306533202404716, 48.83654801147569], [2.306534071133412, 48.83660314260405], [2.30664221691959, 48.8367234875974], [2.306749661116758, 48.83683720723788], [2.306857806524063, 48.836957552003334], [2.306965251662091, 48.83707127232562], [2.307072697280896, 48.8371849916406], [2.307180845517933, 48.83730533608436], [2.307288292089575, 48.83741905518186], [2.307396439947551, 48.83753939939764], [2.307503887460191, 48.83765311917694], [2.307612037663931, 48.837773463180504], [2.307658504506676, 48.83779587824395], [2.307684109254331, 48.83778764970376], [2.307728434482097, 48.837750456446926], [2.307773597256765, 48.83771461887457], [2.30779564622692, 48.837707499342294]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 152, "zemmour_eric": 107.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-43", "circ_bv": "12", "num_bureau": 43, "roussel_fabien": 17.0, "nb_emargement": 1149.0, "nb_procuration": 59.0, "nb_vote_blanc": 11.0, "jadot_yannick": 89.0, "le_pen_marine": 68.0, "nb_exprime": 1138.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1377.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "57", "geo_point_2d": [48.83620183381766, 2.308262099951946], "melenchon_jean_luc": 197.0, "poutou_philippe": 3.0, "macron_emmanuel": 449.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.352043078785564, 48.84218421463849], [2.352046573166631, 48.842211988801544], [2.352066041090054, 48.84234079125781], [2.352086167869624, 48.842470857270975], [2.352105635987694, 48.84259965969092], [2.352125762965941, 48.84272972566725], [2.3521452312785582, 48.84285852805086], [2.352165358455585, 48.8429885939903], [2.352184826951575, 48.84311739723693], [2.352204954327387, 48.843247463139576], [2.352224423029108, 48.84337626545054], [2.352244550603707, 48.84350633131634], [2.352264019499986, 48.84363513359098], [2.352284147273374, 48.84376519941996], [2.352301841750719, 48.84379602370648], [2.352310298002861, 48.8437972314645], [2.352353558637547, 48.843787507941784], [2.35255949044166, 48.84373837529004], [2.352754485207803, 48.843694546903194], [2.35275865723424, 48.8436940172673], [2.352958749497862, 48.843689559596775], [2.35314429682155, 48.843685478023616], [2.353329845489758, 48.84368139527075], [2.353529936282379, 48.84367693753678], [2.353715484889968, 48.84367285418572], [2.353915575616912, 48.84366839580674], [2.354101124163874, 48.84366431185751], [2.354301216187554, 48.84365985284089], [2.354301312958594, 48.84365985066509], [2.354486860071241, 48.84365576700958], [2.354638437799788, 48.84365310787768], [2.354674384387975, 48.84365717623916], [2.3546872329452873, 48.843651179355], [2.354753455571568, 48.84364903633049], [2.354905033267037, 48.84364637686081], [2.354919012267753, 48.84365506002792], [2.354921877637732, 48.843710446459106], [2.354923811915555, 48.84376542855033], [2.3549291086329482, 48.84377233902379], [2.354947769836397, 48.843785512762196], [2.3550072192155582, 48.84376255603088], [2.355123070686031, 48.843700374593624], [2.355250949130681, 48.84363370529491], [2.355255649501326, 48.84362901527585], [2.355308776229089, 48.84350052562521], [2.355360477550112, 48.84337522099025], [2.355413603760634, 48.84324673126388], [2.355465304588988, 48.843121425655795], [2.355518430271257, 48.84299293675292], [2.355570130595825, 48.842867631071], [2.355621830660678, 48.842742326251994], [2.355674955581763, 48.842613836336646], [2.35572665515396, 48.84248853054454], [2.355779779558031, 48.84236004055346], [2.355831478615244, 48.842234735586835], [2.355884602502208, 48.84210624551995], [2.355936301055765, 48.841980940479566], [2.355989424425528, 48.84185245033694], [2.3560411224864453, 48.84172714432346], [2.356094245328107, 48.84159865500435], [2.356145942885178, 48.84147334891707], [2.356199065220865, 48.841344858622904], [2.356189223061529, 48.84133376597144], [2.356053136694605, 48.84131133455601], [2.355944981398192, 48.841291844091295], [2.355913233089534, 48.841284786731904], [2.355894867882207, 48.8413018485973], [2.355865469823284, 48.84138663695197], [2.355831024361733, 48.841486897736615], [2.355792175104257, 48.841598948819644], [2.355757729361501, 48.84169920956411], [2.35574170195461, 48.841706030354786], [2.35555354640241, 48.84168053531849], [2.355365961350013, 48.841654977405504], [2.355177804814569, 48.84162948087039], [2.354990221481517, 48.84160392327367], [2.35480206531419, 48.841578426146434], [2.354614482349136, 48.84155286795935], [2.354426326549934, 48.841527370239966], [2.354238743952886, 48.84150181146256], [2.354050588521816, 48.84147631315106], [2.353863006303929, 48.84145075288399], [2.353846820189327, 48.84145805192663], [2.353812623144953, 48.8415907094469], [2.353779886507086, 48.84172337213361], [2.353745689129521, 48.8418560287039], [2.353712952154638, 48.84198869134074], [2.353678755783857, 48.84212134876704], [2.353646018483107, 48.84225401045473], [2.353631517550435, 48.84226153081921], [2.353436027634502, 48.84225152843168], [2.353244997696074, 48.842241395146345], [2.3530495079299483, 48.842231392127], [2.352858478140376, 48.84222125822428], [2.352662988523965, 48.84221125457312], [2.352471958883357, 48.84220112005303], [2.352276470779055, 48.842191115777446], [2.352085439925037, 48.842180980632584], [2.352043078785564, 48.84218421463849]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 74, "zemmour_eric": 67.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "5-14", "circ_bv": "02", "num_bureau": 14, "roussel_fabien": 26.0, "nb_emargement": 1113.0, "nb_procuration": 88.0, "nb_vote_blanc": 18.0, "jadot_yannick": 93.0, "le_pen_marine": 61.0, "nb_exprime": 1089.0, "nb_vote_nul": 6.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1352.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1113, "quartier_bv": "18", "geo_point_2d": [48.84267680303196, 2.3540782301559897], "melenchon_jean_luc": 329.0, "poutou_philippe": 5.0, "macron_emmanuel": 385.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.396576506268194, 48.88040119013768], [2.3965762017707233, 48.880381456451374], [2.396545520895593, 48.88026316609681], [2.396513869216539, 48.8801465318861], [2.396483188621483, 48.88002824149033], [2.396451537214376, 48.8799116081376], [2.396419885949036, 48.87979497476409], [2.396389205774547, 48.87967668430646], [2.396388367607225, 48.87967476720892], [2.3963237141283003, 48.87956916672072], [2.396256111670946, 48.87946120856321], [2.3961914573618373, 48.879355607976244], [2.3961238554558433, 48.879247649723126], [2.3961236651947573, 48.87924736007888], [2.396106259169146, 48.87923154751393], [2.396083186084089, 48.87923904214241], [2.395894483561896, 48.87923174171183], [2.395706865644422, 48.879224628122735], [2.395518161863647, 48.87921732709205], [2.395330544049505, 48.87921021291307], [2.39514184173728, 48.87920291129601], [2.394954224026478, 48.87919579652723], [2.394765521808697, 48.87918849521618], [2.39457790283778, 48.879181379850635], [2.394389200735452, 48.87917407704705], [2.394201583231454, 48.87916696109856], [2.394012881234138, 48.879159657701756], [2.393825262469945, 48.879152541156515], [2.393636560567182, 48.8791452380657], [2.393448943269818, 48.879138120937526], [2.393260241482654, 48.87913081635416], [2.393072622925213, 48.87912369862924], [2.392883921242988, 48.87911639345267], [2.392696304152395, 48.879109275144806], [2.392690043778309, 48.879110017709074], [2.392564752441977, 48.87914608367636], [2.392332929045198, 48.87921314559071], [2.39220763585001, 48.87924921117394], [2.392166270706374, 48.879243727493034], [2.392159574914881, 48.879248829565164], [2.392014282411781, 48.879291817161686], [2.391807184495025, 48.87935729669593], [2.391661891387961, 48.87940028475985], [2.391454793970813, 48.879465762785685], [2.391309500270286, 48.8795087504177], [2.391308333696845, 48.879509165372326], [2.391150722526528, 48.87957412194446], [2.39099194183471, 48.87963749583427], [2.390834329881515, 48.87970245198231], [2.390675548402826, 48.87976582634438], [2.390517934313695, 48.879830781162106], [2.390359152058853, 48.879894155097176], [2.390340126318469, 48.879901870679824], [2.390353938729943, 48.87992693156538], [2.390444442939715, 48.88000852444828], [2.390534914568237, 48.88008814845919], [2.390625419352327, 48.88016974029405], [2.390715892900985, 48.88024936416342], [2.390717734251967, 48.88025071443328], [2.390849301264942, 48.880330807228724], [2.391022974506552, 48.880434736716694], [2.391154542453841, 48.88051482916334], [2.391328216918258, 48.88061875819113], [2.391459785799869, 48.8806988502889], [2.391510540559168, 48.88073137075818], [2.391514225967763, 48.880735129794616], [2.39154104763525, 48.88078807285311], [2.391566287026963, 48.88083955005094], [2.391569626640535, 48.88084314634817], [2.391676372639551, 48.88091344695634], [2.391782700792767, 48.8809834728443], [2.391889447367034, 48.88105377325354], [2.3919957747402423, 48.88112379803709], [2.391996504996755, 48.88112431795975], [2.392102449413442, 48.88120614796914], [2.392214455003668, 48.88129255474795], [2.392215067543506, 48.881292996729414], [2.392328280074214, 48.88136948724129], [2.39244402402985, 48.88144782241509], [2.392557237233309, 48.88152431269968], [2.392672981877434, 48.88160264764112], [2.392786195743264, 48.88167913859771], [2.39290194243931, 48.881757473313726], [2.3928968673829383, 48.8817721938437], [2.392748527802937, 48.88180803605023], [2.392616127074165, 48.881840479439596], [2.392607723548037, 48.88184653694098], [2.392571966621384, 48.88193090844956], [2.392531428347822, 48.882028647557355], [2.392533757233501, 48.88203649071194], [2.392598568536259, 48.88209227383027], [2.392660477392298, 48.88214742884549], [2.392663076925171, 48.88215182714957], [2.392681653251706, 48.88226687601523], [2.392698815685685, 48.88237922870728], [2.39271739081933, 48.88249427663743], [2.392734553405352, 48.8826066293011], [2.392751716065427, 48.88271898195089], [2.3927702927900922, 48.88283403074352], [2.3927683647781492, 48.88285132669784], [2.39279386226745, 48.882856181974], [2.392945149889684, 48.88292201989696], [2.393096537235622, 48.88298810904033], [2.39324782562387, 48.88305394657294], [2.393399212363396, 48.88312003621802], [2.393550501517457, 48.88318587336028], [2.393701890398647, 48.88325196172237], [2.393853180318624, 48.88331779847429], [2.394004569967443, 48.88338388644572], [2.394155860642976, 48.88344972370653], [2.394307249695855, 48.88351581128046], [2.394458541147666, 48.88358164725162], [2.394609932331747, 48.88364773444176], [2.394641373085694, 48.88365294222733], [2.394645671586408, 48.88365091979466], [2.394683161638794, 48.88350935048292], [2.394716149770201, 48.88338869737905], [2.394718509164818, 48.88338503286432], [2.39480102247339, 48.88330956219633], [2.394877595893306, 48.88324016876656], [2.394878758698689, 48.88323890929248], [2.394970765991475, 48.88311793743571], [2.395063213003028, 48.88299734363705], [2.39515521806665, 48.882876372504334], [2.395247665585802, 48.88275577854371], [2.395252007546223, 48.88275247117077], [2.3953936559258002, 48.88268699168131], [2.39553991565269, 48.88261939850503], [2.395681563308313, 48.88255391866704], [2.395827822298214, 48.88248632423158], [2.395969469229882, 48.882420844045036], [2.396115728835897, 48.88235324925657], [2.396120875310652, 48.88234311462709], [2.396063162078062, 48.88222555675709], [2.396009600606311, 48.882106760733535], [2.395951886523405, 48.88198920277776], [2.395898325548469, 48.881870406678935], [2.39590125172028, 48.88186183287417], [2.396011998765014, 48.88178053491537], [2.396169546599055, 48.88166569688617], [2.396280292818295, 48.881584397765394], [2.396437839467368, 48.88146955936269], [2.396548584840267, 48.88138826087852], [2.396556459673781, 48.88138683196996], [2.396566828973238, 48.881374181240766], [2.396568245238843, 48.88137328185752], [2.396665469091933, 48.8813198724873], [2.3967601493008193, 48.881272382181315], [2.396760861431938, 48.881271999058846], [2.396779737060859, 48.88125954495566], [2.396759410771409, 48.88124290751137], [2.39666585323701, 48.8811387670283], [2.3965763264912843, 48.8810391227285], [2.396486800088247, 48.880939478352765], [2.396393243643968, 48.88083533762795], [2.396303717951968, 48.88073569219758], [2.396210162229552, 48.880631552209685], [2.396120637238055, 48.880531906624], [2.396027082247814, 48.880427766473765], [2.396038292558284, 48.880414195513424], [2.3961725908837233, 48.880410809784216], [2.396345766387487, 48.88040803722689], [2.396480066050968, 48.88040465026036], [2.396551616515596, 48.88040350455926], [2.396576506268194, 48.88040119013768]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 58, "zemmour_eric": 64.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-28", "circ_bv": "16", "num_bureau": 28, "roussel_fabien": 24.0, "nb_emargement": 1378.0, "nb_procuration": 177.0, "nb_vote_blanc": 11.0, "jadot_yannick": 134.0, "le_pen_marine": 46.0, "nb_exprime": 1361.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1738.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1378, "quartier_bv": "75", "geo_point_2d": [48.88093261241505, 2.3939770252781996], "melenchon_jean_luc": 586.0, "poutou_philippe": 6.0, "macron_emmanuel": 387.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.299877844092862, 48.865307021284764], [2.299823143832235, 48.86528819177859], [2.299632194273002, 48.86528058391109], [2.299426715171567, 48.86527244011514], [2.29923576709115, 48.86526483162303], [2.299030286750639, 48.8652566871384], [2.298839338785864, 48.86524907801368], [2.298633858569571, 48.86524093284831], [2.298442910720345, 48.86523332309107], [2.29823743062818, 48.865225177245], [2.298046482894716, 48.865217566855144], [2.297841002926689, 48.86520942032834], [2.297650055308794, 48.86520180930593], [2.297444576827995, 48.865193662106435], [2.2972536279627, 48.865186050443405], [2.297048149606059, 48.86517790256319], [2.296857202219635, 48.86517029027559], [2.296651722623981, 48.865162141706705], [2.296460775353254, 48.86515452878655], [2.29625529589403, 48.86514637863758], [2.296064348738913, 48.86513876508489], [2.295858869391733, 48.86513061515453], [2.295667922352436, 48.86512300096922], [2.29546244449243, 48.86511485036617], [2.295271496205783, 48.8651072355403], [2.295066018470088, 48.865099084256514], [2.294875070299179, 48.86509146879804], [2.2948621280723103, 48.86509632997689], [2.294767945901226, 48.86521705865996], [2.294669787904723, 48.865341843277626], [2.294652055541874, 48.86534589017144], [2.294491278342402, 48.86529775094488], [2.294338399903598, 48.86525180481888], [2.294177623296615, 48.865203664267625], [2.294024746773524, 48.8651577177451], [2.293871869157224, 48.86511177101736], [2.29371109340123, 48.86506363073261], [2.293709471318013, 48.865063222747956], [2.293580038852279, 48.86503680668284], [2.293343843283029, 48.86498842306304], [2.293214411188536, 48.86496200660071], [2.293199045915094, 48.86496560499352], [2.2930917258936, 48.86507167813871], [2.292984624413179, 48.865176782971844], [2.292877303519956, 48.865282855904574], [2.292770202535857, 48.86538796053382], [2.292662880770998, 48.86549403325399], [2.292555777544837, 48.865599138562565], [2.292551962241297, 48.865601631491394], [2.292380729037759, 48.86567634175166], [2.292209144604925, 48.86575088060993], [2.29203791178217, 48.86582559037772], [2.291866326355022, 48.86590012963378], [2.291695091199184, 48.86597483799368], [2.291523504789937, 48.866049376748194], [2.291352270014991, 48.866124084615606], [2.2911806826236463, 48.8661986228686], [2.291009445503388, 48.866273330227415], [2.2908378571299393, 48.86634786797885], [2.290814669979866, 48.86635571950642], [2.290822217484951, 48.86637167821353], [2.290846634075279, 48.866408700703765], [2.290878590057917, 48.86645797652292], [2.290873117985511, 48.866469206650955], [2.2907322983029, 48.86652546829997], [2.290597202668225, 48.866581609921454], [2.29045638238368, 48.86663787124012], [2.2903212861480062, 48.866694013443734], [2.290180465273878, 48.86675027353275], [2.290045369812474, 48.8668064154273], [2.29002024836262, 48.86681523651543], [2.290027629149541, 48.866830812054786], [2.290100075217, 48.866935165143644], [2.290189850574644, 48.867062040816364], [2.29026229728863, 48.867166393785205], [2.290332173262871, 48.8672651429038], [2.290341761189676, 48.86726821526948], [2.290363171326461, 48.867261954141554], [2.290551660803119, 48.867236940096014], [2.290734544974229, 48.86721189433582], [2.29091742895714, 48.86718684919496], [2.291105917895899, 48.86716183427485], [2.29111324572725, 48.86716219514677], [2.291271923867331, 48.867200089999876], [2.291424239398964, 48.8672364324691], [2.291576555143121, 48.86727277474326], [2.2917352339570582, 48.867310668978405], [2.291887550135233, 48.867347010854374], [2.292046229389301, 48.86738490557392], [2.2920548545873682, 48.86739543130147], [2.292023618202493, 48.86748255886158], [2.291992166358921, 48.86756767778769], [2.291960931128955, 48.86765480532593], [2.291929479091182, 48.867739923322986], [2.291935531267668, 48.867749693670255], [2.292124972010742, 48.86782729658456], [2.292304547102244, 48.86790021820896], [2.292484121321234, 48.86797314045039], [2.292673563706344, 48.86805074158145], [2.2926862186921992, 48.868051341587154], [2.292863874040167, 48.86800007537351], [2.293042815090183, 48.86794877062338], [2.293220469737406, 48.86789750387571], [2.29339941008388, 48.86784619858773], [2.293577064030354, 48.86779493130602], [2.29375600503643, 48.867743625488195], [2.293933658269963, 48.867692358571745], [2.294112597209347, 48.86764105220798], [2.294290249754316, 48.867589783858236], [2.294469189353291, 48.86753847696465], [2.2946468398343622, 48.86748720807283], [2.29482577872978, 48.86743590064137], [2.2948435029908483, 48.86744025808442], [2.29491568899412, 48.86753951899579], [2.294986767287334, 48.867638655513645], [2.295058953850783, 48.86773791542157], [2.295130034050493, 48.86783705184459], [2.295202221161751, 48.86793631164827], [2.2952733005295, 48.868035448859686], [2.295287965221942, 48.868040462728956], [2.295508023539385, 48.86801514740996], [2.2957263602001943, 48.8679903117008], [2.295946416717425, 48.867964996465915], [2.296164752959124, 48.867940159955964], [2.296177547175935, 48.86794326959054], [2.296312717769601, 48.86805042209638], [2.296444599310767, 48.86815485706058], [2.296579769627581, 48.86826201013557], [2.296711652251949, 48.86836644388628], [2.296843534041946, 48.86847087747378], [2.296978707362451, 48.868578030075646], [2.297110590223614, 48.86868246334893], [2.297245764642495, 48.8687896156287], [2.2973776485625, 48.86889404948699], [2.297512824091898, 48.869001200545355], [2.297513291050515, 48.869001551333106], [2.297639435536673, 48.869091511286165], [2.297758547477647, 48.86917620373497], [2.297884694173579, 48.869266163423354], [2.298003805537358, 48.86935085650596], [2.29812291866366, 48.8694355485723], [2.298249066616893, 48.86952550785555], [2.298339810747454, 48.86955169818825], [2.298340066889351, 48.86955150722977], [2.29835409618423, 48.86952753556579], [2.298424605160636, 48.86940706508587], [2.29849683221222, 48.86928279859003], [2.298567340527157, 48.869162327999405], [2.298639568262082, 48.86903806139793], [2.298710074552479, 48.86891759068852], [2.298782301607568, 48.8687933239734], [2.29885280859979, 48.86867285316128], [2.298925033623985, 48.86854858542523], [2.298925687528856, 48.868547099937366], [2.298963214141506, 48.86842257765502], [2.299003979027009, 48.86828908534205], [2.299041506641897, 48.86816456211475], [2.299082271112859, 48.86803107064324], [2.299119798354623, 48.86790654736236], [2.299160562435152, 48.867773054933764], [2.299198089303997, 48.8676485315993], [2.299238852969796, 48.86751504001219], [2.299276379465628, 48.86739051662415], [2.299317142741104, 48.867257024079926], [2.299354668863826, 48.86713250063828], [2.29939543172469, 48.866999008935544], [2.299432957474512, 48.86687448544033], [2.299473719944858, 48.866740992780514], [2.299511243958564, 48.86661646922371], [2.299552007377531, 48.86648297741338], [2.299589531018253, 48.866358453803024], [2.299630292683598, 48.866224961027676], [2.299667817314447, 48.86610043737167], [2.29970857856531, 48.86596694543779], [2.299746102823076, 48.865842421728246], [2.299786863683542, 48.86570892883731], [2.299824387568434, 48.86558440507416], [2.299861911261852, 48.86545988218454], [2.299902671526151, 48.86532638920803], [2.299877844092862, 48.865307021284764]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 126, "zemmour_eric": 215.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "16-65", "circ_bv": "04", "num_bureau": 65, "roussel_fabien": 8.0, "nb_emargement": 1115.0, "nb_procuration": 60.0, "nb_vote_blanc": 8.0, "jadot_yannick": 41.0, "le_pen_marine": 60.0, "nb_exprime": 1108.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1432.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1116, "quartier_bv": "64", "geo_point_2d": [48.86674583875008, 2.2957166698030083], "melenchon_jean_luc": 92.0, "poutou_philippe": 2.0, "macron_emmanuel": 542.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.372672374048178, 48.855115785584175], [2.372671588567817, 48.855118993046744], [2.372578898620826, 48.85516866564355], [2.372472440930738, 48.85522622881432], [2.372322161816637, 48.855306763469535], [2.372215703560673, 48.85536432640467], [2.372205585021156, 48.85536628246653], [2.37210222022497, 48.85535859387779], [2.371992979233183, 48.855350743953814], [2.371980230187867, 48.855354631485746], [2.371867778603651, 48.855463876197334], [2.371761380585233, 48.85556701451259], [2.37165498079371, 48.85567015181718], [2.371542527846633, 48.855779396192105], [2.371436128540125, 48.85588253418883], [2.371323674675842, 48.855991778337206], [2.371209591561896, 48.856103740638964], [2.371097136734284, 48.856212985451954], [2.370983054012086, 48.85632494752257], [2.370870596880087, 48.85643419119447], [2.370756513186774, 48.85654615302684], [2.370644056454382, 48.856655397370524], [2.370641776118518, 48.85666139033328], [2.370663391188596, 48.85679710521372], [2.370686839367678, 48.85693080168105], [2.370708454677655, 48.85706651562111], [2.370731904456491, 48.85720021205438], [2.370755354355668, 48.857333908466934], [2.370776970000576, 48.85746962324464], [2.370800418784612, 48.85760331870945], [2.37082203602146, 48.85773903345325], [2.370830988129945, 48.85776260657957], [2.37084317907424, 48.8577657140714], [2.371013505608413, 48.85782304628369], [2.371197390991599, 48.85788751567712], [2.371367719676603, 48.85794484738614], [2.371551605938784, 48.858009315328886], [2.371656491075242, 48.8580460873593], [2.371826819420892, 48.858103418399544], [2.371905821168291, 48.85813111481095], [2.371920229338548, 48.85814059311936], [2.371957547632245, 48.85813933203918], [2.372112501758254, 48.85819048799268], [2.372295718703676, 48.85825183051897], [2.372450673496279, 48.858302986029436], [2.37262204272152, 48.8583598150412], [2.372776998155762, 48.858410970124126], [2.372948368092094, 48.85846779866303], [2.373103324167773, 48.85851895331843], [2.373274694804479, 48.85857578228378], [2.373440687609855, 48.858631354332616], [2.373612058984123, 48.85868818280913], [2.373778052507424, 48.85874375438437], [2.373949424630265, 48.858800581472735], [2.374115418860582, 48.85885615347367], [2.374286793084004, 48.85891298008021], [2.374452786669423, 48.858968551600476], [2.3746241616304022, 48.859025377718154], [2.3747901559445372, 48.85908094786551], [2.37496153163238, 48.85913777439358], [2.375127526664431, 48.859193344067336], [2.375298903090036, 48.85925017010653], [2.375464898840001, 48.8593057393067], [2.375636276003164, 48.85936256485698], [2.375762181113245, 48.85940471215575], [2.375774491726236, 48.85940425834825], [2.375786340839143, 48.85938566950324], [2.375845003392453, 48.859273229772796], [2.375903626856303, 48.85916004963718], [2.375962288902472, 48.859047609826376], [2.376020911868457, 48.85893442871099], [2.376079573396721, 48.858821989719125], [2.376138194491256, 48.85870880851616], [2.376196855512398, 48.85859636944395], [2.376255477461027, 48.85848318816762], [2.376256194257056, 48.85848206052471], [2.376346773573555, 48.858362619024994], [2.376437671357678, 48.8582431818036], [2.376528249853533, 48.85812373924153], [2.37661914679415, 48.85800430275582], [2.376633617632594, 48.85799038428717], [2.376618267144801, 48.85797883044238], [2.376465540133725, 48.85790879663921], [2.376291739316726, 48.85782932296151], [2.376139013172022, 48.85775928963147], [2.375965211988893, 48.857679815461715], [2.375812486732194, 48.85760978080622], [2.375638687908623, 48.85753030615865], [2.375485963529059, 48.857460271076995], [2.375312165702251, 48.857380795944486], [2.375159442189035, 48.85731076133596], [2.374985645358982, 48.85723128571852], [2.374832922733678, 48.857161249784575], [2.374659126900382, 48.85708177368221], [2.3745064051522062, 48.85701173732208], [2.374332608952891, 48.85693226072768], [2.374179888070937, 48.85686222484073], [2.374175905749905, 48.85685029573429], [2.374205026489139, 48.85681747789671], [2.374235542876194, 48.85678522404674], [2.3742314150848842, 48.85677292364886], [2.374054536811899, 48.85669699193188], [2.3738758696042153, 48.856621620772465], [2.37369899235208, 48.85654568941891], [2.373520327540382, 48.856470317725545], [2.373516158808688, 48.85645792445114], [2.373615733927035, 48.85635431636478], [2.373714898564582, 48.856250468611314], [2.373814474254142, 48.85614686034736], [2.373913638111677, 48.85604301151051], [2.374013211635941, 48.855939403953954], [2.3741123760653062, 48.85583555494018], [2.37421194880885, 48.85573194629959], [2.37431111107366, 48.85562809799386], [2.374306468509595, 48.855615543075686], [2.374204075963966, 48.855575974040015], [2.374123720551674, 48.855544554074996], [2.374116766845919, 48.855543321568064], [2.373898970919991, 48.85554402944514], [2.373675894040456, 48.85554357880127], [2.373458099470307, 48.85554428588303], [2.373235021230553, 48.85554383441011], [2.373222020995911, 48.8555374501797], [2.373173792959568, 48.85543246642802], [2.373126908393699, 48.855330132874634], [2.373078680740778, 48.85522514906497], [2.3730317965482453, 48.85512281545522], [2.373025638381322, 48.85511765779018], [2.372975911567695, 48.85509843981779], [2.372918279079558, 48.85507590406006], [2.372911865447746, 48.85506660803778], [2.372893303180498, 48.85506420752123], [2.372862838815206, 48.85505229514677], [2.372830154253177, 48.85503936925109], [2.3728144195324, 48.85504017713602], [2.3727504345671, 48.855075396667075], [2.37269284623258, 48.85510625816922], [2.372672374048178, 48.855115785584175]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 63, "zemmour_eric": 78.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-14", "circ_bv": "07", "num_bureau": 14, "roussel_fabien": 12.0, "nb_emargement": 1485.0, "nb_procuration": 88.0, "nb_vote_blanc": 8.0, "jadot_yannick": 147.0, "le_pen_marine": 59.0, "nb_exprime": 1479.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 9, "nb_inscrit": 1849.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1489, "quartier_bv": "43", "geo_point_2d": [48.857321902222154, 2.3733681399080355], "melenchon_jean_luc": 508.0, "poutou_philippe": 5.0, "macron_emmanuel": 529.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.397301825358641, 48.85687542299192], [2.397282026715104, 48.8569170736511], [2.397261968165286, 48.8570344425994], [2.397242020260123, 48.85715178241129], [2.3972219615299313, 48.857269151328126], [2.397202013444815, 48.85738649110849], [2.397181954534043, 48.857503859993805], [2.39716200626897, 48.85762119974274], [2.397141948540617, 48.857738568603345], [2.397122000105993, 48.85785590742152], [2.397101940823959, 48.85797327714302], [2.3970819922093742, 48.85809061592975], [2.397081970215493, 48.85809074982142], [2.397062806242151, 48.85822024900363], [2.397043837339931, 48.85834642786726], [2.397024868345735, 48.85847260671356], [2.397005705452936, 48.85860210584888], [2.396986736273309, 48.85872828466006], [2.396967571828768, 48.85885778375256], [2.396948602463806, 48.85898396252861], [2.396929437830339, 48.85911346158516], [2.396910468290346, 48.85923963942679], [2.396891303468151, 48.859369138447384], [2.396872333732206, 48.859495317153204], [2.396853168721179, 48.85962481613784], [2.39683419879989, 48.85975099480853], [2.396815034962883, 48.85988049376409], [2.396796064856149, 48.86000667239963], [2.396776899467453, 48.86013617131235], [2.396780985147456, 48.8601388170929], [2.3968115236386, 48.86013657337124], [2.39700119589524, 48.86018625571644], [2.397189101924352, 48.860235476489954], [2.397378774890695, 48.86028515913157], [2.397566681643715, 48.86033437840856], [2.397756355330062, 48.860384060447295], [2.397944262786085, 48.86043328002632], [2.398133937203029, 48.86048296056293], [2.398321845372346, 48.86053217954467], [2.398511520509381, 48.860581859478394], [2.3986994293920922, 48.8606310778629], [2.398889105249212, 48.86068075719375], [2.39907701484531, 48.86072997498095], [2.399266691422512, 48.8607796537089], [2.399454601731994, 48.86082887089887], [2.399642512396499, 48.86087808779163], [2.399839338481029, 48.86092924671118], [2.399847808474639, 48.860936221326774], [2.39987720943715, 48.86105997541155], [2.399904848019339, 48.86118255508853], [2.399934250619341, 48.86130630913868], [2.399961888113777, 48.86142888786909], [2.399991290988391, 48.86155264187772], [2.400018930100249, 48.86167522147388], [2.400018784447524, 48.8616785186335], [2.399975308710167, 48.86181092223321], [2.399926050270584, 48.86196394840954], [2.399882574059265, 48.862096351941474], [2.399833315077429, 48.86224937804021], [2.3997898383923433, 48.86238178150434], [2.399748678822002, 48.862504356857855], [2.39970520035627, 48.86263675935469], [2.3996640403854532, 48.862759334650896], [2.399620562844498, 48.8628917379926], [2.399579402483363, 48.86301431233222], [2.39953592451462, 48.863146715612714], [2.399494763742536, 48.86326929079433], [2.3995032020451053, 48.86327963509142], [2.399582649574684, 48.86329968611039], [2.399654630180606, 48.863315471815476], [2.39970065523062, 48.86333428397665], [2.399701793845201, 48.86333389217897], [2.399719471346335, 48.86331051702857], [2.399737598444242, 48.86328372933063], [2.399733941775974, 48.86327835990832], [2.399772718124847, 48.86316795427105], [2.399825992912366, 48.863042812760796], [2.39986476889095, 48.86293240707024], [2.399918043216389, 48.8628072654924], [2.3999568188245872, 48.86269685974852], [2.399957127722, 48.86269595835799], [2.399966058982104, 48.862661845231536], [2.3999980274916632, 48.86255010848004], [2.4000368027389642, 48.862439702684654], [2.400068770960487, 48.86232796589184], [2.4000940820228243, 48.8622114750616], [2.400094228358876, 48.86221084085949], [2.400116187090148, 48.86208562757382], [2.40014149792863, 48.861969136708105], [2.40016345644432, 48.86184392338646], [2.400188765696785, 48.861727432478496], [2.400188877010104, 48.86172699865387], [2.40023085732641, 48.861591002694645], [2.400270792211872, 48.861454943393525], [2.400312772105492, 48.8613189464729], [2.400352706568498, 48.86118288711105], [2.4003532310157, 48.861181612671665], [2.400421433799141, 48.86106233456047], [2.400489579004763, 48.86093452943681], [2.400557781142354, 48.86081525212061], [2.400625925690334, 48.86068744689083], [2.400626580798448, 48.860686424920345], [2.400699569634279, 48.86058962808304], [2.4007987622492672, 48.860453496502835], [2.40087175043889, 48.860356699540205], [2.400970942150192, 48.860220568688], [2.401043929693617, 48.86012377160003], [2.401044882496345, 48.86012269985416], [2.401159065998108, 48.86000700500387], [2.401289875623055, 48.8598808178296], [2.401404058050792, 48.859765122720326], [2.401534867848369, 48.85963893435829], [2.401634002632632, 48.85955531711457], [2.401634937322153, 48.85955451507627], [2.401763188011095, 48.859456549467275], [2.401862322081903, 48.859372932020676], [2.401990571896325, 48.85927496615192], [2.402089705256812, 48.85919134850325], [2.402128606701743, 48.85915343403579], [2.4021078494770602, 48.859137657450745], [2.402034847287295, 48.85909814601778], [2.401877516333915, 48.8590090728818], [2.401725069099837, 48.858926562182184], [2.401567739183844, 48.85883748952446], [2.401415292942481, 48.858754978417515], [2.401360178153013, 48.85872377424169], [2.401350173137755, 48.8587161283227], [2.401337722447713, 48.85871220244972], [2.401235508426768, 48.85865433262773], [2.401093822646597, 48.85857466110406], [2.40093649487227, 48.85848558758822], [2.400794810018549, 48.85840591479915], [2.400637483265051, 48.85831684087664], [2.400495799327338, 48.858237167721434], [2.400338473594561, 48.85814809339227], [2.400196790572954, 48.858068419870946], [2.400055107974405, 48.85798874707541], [2.399897783755489, 48.85789967124769], [2.399756102072932, 48.85781999808602], [2.399598778864366, 48.857730922750946], [2.39945709810826, 48.85765124832387], [2.399336489935677, 48.857582959996684], [2.399322853104481, 48.85757271904093], [2.399314869076555, 48.85757046117581], [2.399278155078706, 48.85754967375441], [2.39908062620064, 48.85744207528401], [2.398923305287964, 48.857352999030574], [2.398920957901324, 48.85735197007881], [2.398787050741399, 48.85730548287733], [2.398606775938089, 48.857243105779865], [2.398472869338261, 48.85719661822225], [2.398292593924859, 48.85713424063847], [2.398159386919407, 48.857088473919084], [2.397979112255366, 48.857026095857016], [2.397845904428474, 48.85698032967665], [2.397843585194712, 48.85697969835615], [2.397713251170427, 48.85695499389905], [2.397546633926048, 48.856921154535215], [2.397416301551877, 48.8568964497603], [2.3973173465999, 48.856876351048555], [2.397301825358641, 48.85687542299192]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 47, "zemmour_eric": 67.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "20-59", "circ_bv": "06", "num_bureau": 59, "roussel_fabien": 32.0, "nb_emargement": 1395.0, "nb_procuration": 79.0, "nb_vote_blanc": 13.0, "jadot_yannick": 131.0, "le_pen_marine": 64.0, "nb_exprime": 1380.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 9, "nb_inscrit": 1725.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1395, "quartier_bv": "79", "geo_point_2d": [48.85922760983899, 2.399096346981652], "melenchon_jean_luc": 597.0, "poutou_philippe": 6.0, "macron_emmanuel": 359.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.363495610355337, 48.870038132374475], [2.363475976625378, 48.870054511953846], [2.363337023876896, 48.87015402586915], [2.363205419809971, 48.87024687054326], [2.363066466031489, 48.87034638412716], [2.362934859644214, 48.8704392275811], [2.362795904835624, 48.87053874083358], [2.362664298832344, 48.87063158488043], [2.36252534299384, 48.8707310978015], [2.362393734669991, 48.87082394062814], [2.362262127229323, 48.870916784208845], [2.362123169861595, 48.87101629663735], [2.361991560089434, 48.87110913989716], [2.361852601691769, 48.8712086519942], [2.3618514294647133, 48.8712198730853], [2.361948659273041, 48.87131227051752], [2.362073886329528, 48.87143084212478], [2.362171116915141, 48.87152324025797], [2.36229634499622, 48.87164181071056], [2.362393576370344, 48.87173420864536], [2.362518805464905, 48.871852778842566], [2.362616036264183, 48.87194517657175], [2.362636166221048, 48.87196197007228], [2.362636465126662, 48.871963613854554], [2.362659174309372, 48.87197841915875], [2.362746965717424, 48.87205166187855], [2.362850692684856, 48.87213934098139], [2.362958612060154, 48.87222937787705], [2.363062339737745, 48.87231705678236], [2.363078233470523, 48.87231985195684], [2.363281536392793, 48.872265190827775], [2.363486757338408, 48.8722117374698], [2.363690059409996, 48.87215707564153], [2.363895279521402, 48.87210362067863], [2.364098580742298, 48.87204895815125], [2.364303799997521, 48.87199550338198], [2.364319439474605, 48.871998239484746], [2.36445838071291, 48.872112437690404], [2.364593467423383, 48.8722233632549], [2.364732409862968, 48.87233756111924], [2.364867497740746, 48.87244848635187], [2.364876696743782, 48.87245179795684], [2.365082767475057, 48.87246612312847], [2.3652822102325493, 48.87247962408089], [2.365488279822149, 48.87249394854688], [2.365687722791388, 48.87250744882327], [2.36589379396576, 48.87252177259801], [2.36609323715758, 48.87253527129915], [2.366292680441727, 48.87254877056716], [2.366498751946031, 48.87256309329988], [2.366572731669385, 48.8725595825841], [2.366576021809521, 48.872553833446695], [2.366738248281658, 48.87246172824207], [2.366897744610867, 48.87236907506619], [2.367059968564592, 48.87227697030221], [2.367219463755795, 48.872184316682166], [2.367381687939422, 48.87209221057472], [2.367541180618435, 48.87199955740261], [2.367703403657667, 48.871907450843715], [2.367862896561962, 48.87181479723463], [2.36786651471659, 48.87181143663249], [2.367878266375323, 48.871785616662564], [2.367820527609366, 48.87176454243512], [2.367605065613427, 48.8717958101178], [2.367389948573457, 48.871827165572604], [2.367174484696859, 48.87185843247124], [2.366959367128048, 48.87188978804975], [2.366743904097117, 48.87192105417876], [2.366528786021436, 48.8719524080824], [2.3663133211098613, 48.87198367342742], [2.366098202516392, 48.87201502655548], [2.3660816295097042, 48.87200620442251], [2.366082422001822, 48.87189291818553], [2.366085838963814, 48.87174702776168], [2.366086631442835, 48.871633741498094], [2.366090049739291, 48.871487851047114], [2.366090842205211, 48.87137456475693], [2.366094259109617, 48.87122867426437], [2.3660950515624393, 48.871115387947604], [2.366089256042707, 48.87110789005058], [2.365881064315037, 48.87101142597051], [2.365693185850042, 48.87093573325941], [2.365673260120019, 48.87093022084367], [2.365644955011646, 48.87093952738047], [2.365507085189538, 48.87104832973587], [2.365375192901915, 48.871151761293305], [2.365237321954597, 48.871260563317065], [2.365105428582968, 48.87136399545668], [2.364983720107476, 48.87146004125444], [2.364851827090437, 48.87156347310318], [2.36483566343996, 48.871576228079256], [2.364827985211872, 48.87157924688263], [2.364591831321794, 48.87161138052738], [2.364408195327043, 48.87163198517982], [2.36439236054825, 48.87162571095443], [2.364338230603122, 48.87150410192633], [2.364286581171434, 48.871385700481774], [2.364232451722572, 48.87126409137943], [2.364180802769309, 48.871145689863525], [2.364126673816911, 48.8710240806869], [2.364075025342064, 48.87090567909962], [2.36402089688592, 48.87078406984878], [2.363969248889485, 48.87066566819014], [2.36391512092969, 48.870544058865036], [2.363863473400778, 48.870425658034335], [2.363862051872531, 48.87042350555624], [2.363777056020761, 48.87033946654685], [2.363684214078812, 48.87023773623013], [2.36359921882806, 48.870153696181035], [2.363506377564521, 48.87005196570926], [2.363495610355337, 48.870038132374475]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 37, "zemmour_eric": 48.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "10-10", "circ_bv": "05", "num_bureau": 10, "roussel_fabien": 23.0, "nb_emargement": 1149.0, "nb_procuration": 97.0, "nb_vote_blanc": 10.0, "jadot_yannick": 153.0, "le_pen_marine": 37.0, "nb_exprime": 1135.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 8, "nb_inscrit": 1418.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1150, "quartier_bv": "39", "geo_point_2d": [48.87156580608642, 2.3643604014108006], "melenchon_jean_luc": 391.0, "poutou_philippe": 9.0, "macron_emmanuel": 370.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4025469179788193, 48.87594107790101], [2.402548668002516, 48.87594077546668], [2.402601746118364, 48.87581836082445], [2.402657947435855, 48.875687994556706], [2.4027110264005263, 48.87556557984477], [2.402767227171734, 48.87543521349583], [2.402820304248392, 48.87531279959987], [2.402876504473328, 48.875182433169755], [2.4029295824092243, 48.8750600183048], [2.4029857820878933, 48.87492965179353], [2.403038858146013, 48.87480723684528], [2.403095057278426, 48.874676870252834], [2.403148134185474, 48.87455445523485], [2.403204332771633, 48.87442408856128], [2.40325740779063, 48.874301674359295], [2.40331360583055, 48.87417130760452], [2.403366681708678, 48.874048892433564], [2.403422879202361, 48.87391852559766], [2.403475953202869, 48.87379611034341], [2.403532150150327, 48.873665743426315], [2.403585224989469, 48.87354332900166], [2.403641421390706, 48.87341296200344], [2.403694494362455, 48.87329054659623], [2.403750690217481, 48.87316017951683], [2.403803762674861, 48.87303776403318], [2.403859959346981, 48.872907396879405], [2.403913031279706, 48.87278498221856], [2.40392262761122, 48.87277166321379], [2.403907424631302, 48.87276072895486], [2.403749289930706, 48.872711905267785], [2.4035950228711522, 48.872663836293434], [2.40343688875754, 48.87261501218932], [2.403282622273149, 48.872566942808135], [2.403277238844689, 48.872563931982235], [2.403176491970949, 48.87246719740441], [2.403052642685241, 48.87234925994246], [2.402951898007094, 48.87225252516359], [2.402828049740434, 48.87213458744632], [2.40272730453131, 48.872037852452834], [2.402603457273271, 48.87191991537957], [2.402502714270028, 48.87182317928577], [2.402378868030806, 48.8717052419572], [2.402278124496688, 48.87160850564879], [2.402267814627339, 48.871604625698396], [2.402255287799471, 48.87160397138095], [2.402237907232983, 48.87162354133905], [2.4021563397588, 48.87175112814621], [2.402073951228528, 48.87188013442981], [2.4019923829406142, 48.87200772199488], [2.401909993598417, 48.872136728135644], [2.401828424507081, 48.87226431555934], [2.401746032989664, 48.87239332155046], [2.401664463094891, 48.8725209088328], [2.401582072128705, 48.872649914687905], [2.401500501430588, 48.87277750182883], [2.401418109652442, 48.8729065075411], [2.401336538161205, 48.873034093641394], [2.401254145560754, 48.87316310011009], [2.401235983308991, 48.87316780900357], [2.401046326878271, 48.87311146573207], [2.400854021838266, 48.873056664744894], [2.400835412387392, 48.87306267897042], [2.400803244416252, 48.8731451289167], [2.4007683470818693, 48.87323289553382], [2.400764764769395, 48.87323450269592], [2.400760710720769, 48.873250924012105], [2.40074207988188, 48.873297776838506], [2.400699167130606, 48.87340402776162], [2.400645638435598, 48.873538647129024], [2.400602725289047, 48.873644897994346], [2.4005491974502142, 48.87377951819537], [2.400506282555615, 48.873885768096834], [2.400508266392054, 48.8738932200109], [2.400627298180733, 48.87400606089488], [2.4007459410480703, 48.87411874051757], [2.400864975230261, 48.874231581149004], [2.400983617772476, 48.87434425960698], [2.401102652974626, 48.8744571008783], [2.401221297908049, 48.8745697790845], [2.401340332787613, 48.87468261919032], [2.401458978738484, 48.874795298037185], [2.401578016011713, 48.87490813789039], [2.401696661637568, 48.87502081557256], [2.4018156999307, 48.87513365606566], [2.4019343479478152, 48.87524633349602], [2.402053385907938, 48.87535917372289], [2.4021720349529723, 48.87547185089462], [2.402291075317136, 48.87558468996957], [2.402409724026732, 48.875697366875926], [2.402411611134168, 48.875699969967435], [2.402458228534447, 48.87580497564565], [2.402513189293811, 48.87592813546356], [2.4025469179788193, 48.87594107790101]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 40, "zemmour_eric": 80.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "20-19", "circ_bv": "15", "num_bureau": 19, "roussel_fabien": 26.0, "nb_emargement": 1211.0, "nb_procuration": 50.0, "nb_vote_blanc": 13.0, "jadot_yannick": 114.0, "le_pen_marine": 67.0, "nb_exprime": 1192.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1507.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1211, "quartier_bv": "78", "geo_point_2d": [48.87367068140319, 2.402261270916857], "melenchon_jean_luc": 449.0, "poutou_philippe": 9.0, "macron_emmanuel": 334.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.302487375088198, 48.839914723856204], [2.302507168663419, 48.83985950286531], [2.302509586252607, 48.83974074891651], [2.302512733868799, 48.83962211612981], [2.302515151434298, 48.83950336215566], [2.302518299035521, 48.83938472844428], [2.3025207165773303, 48.83926597444477], [2.302523864139417, 48.839147341607365], [2.302526281657536, 48.839028587582526], [2.302529429204756, 48.838909953820455], [2.3025345268709883, 48.83889565117897], [2.302522205747388, 48.83888823777755], [2.302335131266132, 48.838817377277394], [2.302155402297924, 48.83874784543031], [2.301975673809229, 48.838678313308876], [2.301788600824409, 48.83860745194071], [2.3017757424555922, 48.83860720330717], [2.301588048453445, 48.8386689519883], [2.30139988143766, 48.83873159968031], [2.301212186542299, 48.838793347764835], [2.301024018625688, 48.8388559948586], [2.300836322837115, 48.83891774234651], [2.300648152669353, 48.838980387934775], [2.300460455987573, 48.83904213482606], [2.300272286269318, 48.83910478072339], [2.300255705188544, 48.839102524341], [2.300173591047956, 48.83903779204561], [2.300110122190962, 48.83898729699423], [2.300109458965273, 48.83897631629731], [2.3001870574509002, 48.8389041731154], [2.300265894674595, 48.83883169086833], [2.30034349274036, 48.83875954667625], [2.300422330890155, 48.83868706432468], [2.300419551440151, 48.838674680823246], [2.300329742358194, 48.83862924726932], [2.300240772217081, 48.838584865420586], [2.30023451907637, 48.83857609415098], [2.300215672968241, 48.838573286686874], [2.300215038488445, 48.83857295020786], [2.300052730555778, 48.83848142853144], [2.299896845992705, 48.83839354709912], [2.299734539165299, 48.83830202587559], [2.299578655675134, 48.83821414401454], [2.299422772710714, 48.83812626194345], [2.299260467560087, 48.83803473915546], [2.299104585668568, 48.837946856655584], [2.298942281623173, 48.83785533432047], [2.298941222245617, 48.83784232319991], [2.299073883729541, 48.83774952823053], [2.299206331994733, 48.83765654568997], [2.299338991183606, 48.83756374950392], [2.299471438491837, 48.83747076755368], [2.299604096735834, 48.83737797105817], [2.299736544461453, 48.83728498880693], [2.29986920176078, 48.83719219200198], [2.3000016471789912, 48.8370992094338], [2.300001985103637, 48.837087133744966], [2.299862423823033, 48.83698161204062], [2.299724574352086, 48.83687669556634], [2.299585014208483, 48.83677117261916], [2.299447165852421, 48.836666255805426], [2.299307606821845, 48.83656073341405], [2.299169759580655, 48.836455816260866], [2.299159540651212, 48.836440375316144], [2.299147434350524, 48.836438949926716], [2.299117136652197, 48.83644759074674], [2.298947745171522, 48.836495204653836], [2.298777143156963, 48.83654386079196], [2.298607749690445, 48.83659147420554], [2.298437148417878, 48.836640128963225], [2.298267754328053, 48.83668774189119], [2.298097151060722, 48.83673639615182], [2.298081052580257, 48.8367504685985], [2.29808265538778, 48.83675558374156], [2.298260666056851, 48.83686956600016], [2.298432602730246, 48.83698221096069], [2.298432778536764, 48.836994859863495], [2.29829985799632, 48.83708519647485], [2.298167437627805, 48.83717558803218], [2.298034514804293, 48.83726592432608], [2.297902093516508, 48.83735631557507], [2.297769171134512, 48.83744665156746], [2.297636748927553, 48.837537042508096], [2.297503824262466, 48.83762737818305], [2.297371401136223, 48.837717768815324], [2.297372336502836, 48.83773085387298], [2.297542023481288, 48.837826707230015], [2.297712794641892, 48.83792273218419], [2.297713709068964, 48.83793586118258], [2.2976664221858583, 48.83796783410862], [2.297627050559336, 48.83799560036523], [2.297612924436276, 48.83801239952002], [2.2976328208963333, 48.838022873512024], [2.297780801272275, 48.83810952528007], [2.2979381809898722, 48.83820088536994], [2.298086163741103, 48.838287536754414], [2.29824354315702, 48.83837889731929], [2.298391526921279, 48.8384655483122], [2.298548908784391, 48.838556907569476], [2.298549668960197, 48.83855731854289], [2.298721780515349, 48.838643754441335], [2.298872715424281, 48.83871937603877], [2.299023652133564, 48.838794997448616], [2.299195765259435, 48.83888143264673], [2.299346702906683, 48.838957053638], [2.299518817091297, 48.83904348925805], [2.299669754326204, 48.83911910892342], [2.299841869581758, 48.83920554406617], [2.299992809104848, 48.83928116422019], [2.300164925443323, 48.839367597986275], [2.3001649822889663, 48.83936762619933], [2.300246131727353, 48.839407841402824], [2.300298867471119, 48.83942911060414], [2.300313116141646, 48.83941816767176], [2.300351757700749, 48.839367215033775], [2.300405426594263, 48.83929531130318], [2.300423376299221, 48.839291126284735], [2.300624191838104, 48.83935255385467], [2.30082113851968, 48.839414884819135], [2.301021955004143, 48.83947631171453], [2.301218903991414, 48.839538642025175], [2.301419721433406, 48.83960006734675], [2.301616670001552, 48.83966239698761], [2.301832306746698, 48.83972444414729], [2.302029256278193, 48.83978677310198], [2.302029815404108, 48.839786939150265], [2.302245451793897, 48.839848985550354], [2.302422816638534, 48.83989876851987], [2.302480867341755, 48.839915061845716], [2.302487375088198, 48.839914723856204]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 139, "zemmour_eric": 118.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-62", "circ_bv": "13", "num_bureau": 62, "roussel_fabien": 20.0, "nb_emargement": 1276.0, "nb_procuration": 69.0, "nb_vote_blanc": 12.0, "jadot_yannick": 116.0, "le_pen_marine": 84.0, "nb_exprime": 1263.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1555.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1276, "quartier_bv": "57", "geo_point_2d": [48.83825265410368, 2.2997785910536837], "melenchon_jean_luc": 212.0, "poutou_philippe": 2.0, "macron_emmanuel": 504.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.348997798643532, 48.83461421954163], [2.348999355713165, 48.83456633930328], [2.349001113582742, 48.83456368673793], [2.349102222097625, 48.83446048036565], [2.349205032319448, 48.83435679480204], [2.3493061386783562, 48.8342535873316], [2.3494089494375823, 48.834149902480306], [2.349510054991375, 48.834046694818376], [2.3496128649481802, 48.83394300887331], [2.349713969685745, 48.83383980191929], [2.3498167788289113, 48.83373611577977], [2.349917882772698, 48.833632907735], [2.350020691091019, 48.83352922230037], [2.350021247599103, 48.833515073737836], [2.350002721561965, 48.833503253369585], [2.349813924302198, 48.833453920243194], [2.349625677739288, 48.833404262438435], [2.34943687983261, 48.83335492870515], [2.34924863398635, 48.833305270302596], [2.3490598381460472, 48.83325593687646], [2.348871593016435, 48.83320627787615], [2.348682796540463, 48.83315694294379], [2.34849455212751, 48.83310728334564], [2.348305757729146, 48.83305794782124], [2.348117514032855, 48.833008287625326], [2.347928720349853, 48.83295895150142], [2.347740476007985, 48.83290929070027], [2.347551683040352, 48.83285995397687], [2.347363440777397, 48.83281029258536], [2.347174648525135, 48.83276095526249], [2.34698640696759, 48.83271129417253], [2.346981292560179, 48.83270892608574], [2.346951953735971, 48.83268512503284], [2.346945323167729, 48.832685033967664], [2.346817936436, 48.83259067605761], [2.346693702983027, 48.83249932563442], [2.346566317160547, 48.832404967440716], [2.3464420845909713, 48.83231361674107], [2.346314699677736, 48.83221925826375], [2.346190467991651, 48.83212790728756], [2.346063082625535, 48.83203354851917], [2.345938851822937, 48.831942197266486], [2.3458114687394582, 48.83184783732261], [2.345687238809052, 48.83175648669278], [2.3455598566347993, 48.83166212646527], [2.345435627587962, 48.831570775558944], [2.3454230212652343, 48.83156793919789], [2.345259072555756, 48.831587891938945], [2.345032726921346, 48.83161231710976], [2.34486877791162, 48.83163227021431], [2.34464243190166, 48.8316566946456], [2.344478481240777, 48.83167664720689], [2.344463119336381, 48.831688521059334], [2.344479990233599, 48.83170658028132], [2.344527280894556, 48.83183352319358], [2.3445734119438, 48.831959966861035], [2.344620703050806, 48.832086910606954], [2.344666834550876, 48.832213354209806], [2.344714126126551, 48.83234029699074], [2.344760258077454, 48.83246674052894], [2.344807550099193, 48.832593684143546], [2.344853682500935, 48.832720127617094], [2.344900973629112, 48.83284707025925], [2.3449471078439412, 48.83297351367563], [2.344994399418193, 48.83310045715143], [2.345040534083881, 48.83322690050314], [2.345087826126814, 48.83335384301396], [2.34513395988111, 48.833480286293586], [2.34518125373239, 48.833607229645516], [2.345227387937552, 48.83373367286047], [2.345274682257532, 48.8338606152474], [2.345320816913564, 48.83398705839771], [2.345368111679555, 48.834114001618275], [2.345414246786568, 48.8342404447039], [2.34541933382128, 48.83424554139232], [2.345581043810124, 48.83432535496844], [2.345730636026143, 48.83439823354647], [2.345880230022626, 48.83447111194014], [2.346041940054732, 48.83455092486958], [2.346045259991176, 48.834552129289634], [2.346175555475373, 48.834590160939925], [2.346301497560164, 48.834621742658754], [2.346329094620138, 48.834629364543694], [2.346344588770244, 48.83461360682636], [2.346370328664154, 48.8345740978881], [2.346388712414033, 48.834528564340346], [2.346406576109611, 48.83452244011825], [2.346600159501577, 48.834569424986476], [2.346785109829141, 48.83461663939631], [2.3469786925498273, 48.834663623640516], [2.347163644905489, 48.83471083836783], [2.347357228317181, 48.83475782199546], [2.347542179987734, 48.83480503612599], [2.347706779277011, 48.834847053943236], [2.3479003636840963, 48.83489403668611], [2.347920717800242, 48.83489923268576], [2.347929005610326, 48.83490496098155], [2.347986620439599, 48.835025169947926], [2.348041009540828, 48.83514090491699], [2.348098626251378, 48.835261113811484], [2.348153015847371, 48.83537684870526], [2.348160576770116, 48.835382426423536], [2.348368916598444, 48.83543585181668], [2.348609663227209, 48.83550523814788], [2.348628279321366, 48.835499308362515], [2.348685683555729, 48.835356883069565], [2.3487296673130142, 48.83524352600569], [2.348773650878902, 48.83513016891415], [2.348831054309563, 48.83498774350449], [2.348875037439252, 48.83487438634972], [2.348932440299995, 48.83473196175814], [2.348976422993289, 48.834618604540196], [2.348997798643532, 48.83461421954163]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 82, "zemmour_eric": 80.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-61", "circ_bv": "09", "num_bureau": 61, "roussel_fabien": 25.0, "nb_emargement": 1326.0, "nb_procuration": 62.0, "nb_vote_blanc": 9.0, "jadot_yannick": 129.0, "le_pen_marine": 51.0, "nb_exprime": 1306.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1583.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1324, "quartier_bv": "52", "geo_point_2d": [48.83353206028309, 2.347019326788085], "melenchon_jean_luc": 433.0, "poutou_philippe": 10.0, "macron_emmanuel": 421.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.268915618631627, 48.85325364741423], [2.268920947996344, 48.85328245416923], [2.268967550069264, 48.85340831142917], [2.269012109658623, 48.85352812955319], [2.269056670815578, 48.85364794765601], [2.2691032721805158, 48.85377380481334], [2.26914783375719, 48.85389362285573], [2.269194436912101, 48.8540194808574], [2.269197877677187, 48.854023597564485], [2.269339212933102, 48.85412004483285], [2.269489422487708, 48.85422805612777], [2.269493008927748, 48.85423422785595], [2.2694916491859862, 48.85432295233611], [2.269490415270584, 48.85441183946239], [2.269489054144369, 48.85450056481929], [2.269487820220334, 48.854589451931304], [2.269516525299605, 48.85461483446516], [2.269551934103743, 48.854623521706365], [2.269700109643084, 48.8545807936614], [2.269866799940894, 48.854530079663924], [2.270014974956321, 48.85448735122543], [2.270181664648657, 48.85443663678505], [2.270183450569, 48.85443601452772], [2.270347302369922, 48.85436817310157], [2.27047289283184, 48.854314495153474], [2.270598483035004, 48.85426081707102], [2.270762333744654, 48.854192975065814], [2.270763303955997, 48.8541925969515], [2.270932180031105, 48.854132875093484], [2.271089775452646, 48.85407790755214], [2.271258650781974, 48.85401818522715], [2.271416245499675, 48.85396321814946], [2.271585120083124, 48.85390349535755], [2.271742714109567, 48.853848527844214], [2.271745518353665, 48.85384778675009], [2.271948299266059, 48.85381077272547], [2.272152978606656, 48.85377130205801], [2.272355758931965, 48.85373428734034], [2.272560437650923, 48.85369481687248], [2.272763217389143, 48.853657801461736], [2.272967895511466, 48.85361832939491], [2.272970804135867, 48.85361801700236], [2.273067901327978, 48.8536146074748], [2.273140484561563, 48.85361335401986], [2.273144765959243, 48.85361281972575], [2.273334343697944, 48.85356753716279], [2.273516424742979, 48.85352356951722], [2.273706001846527, 48.85347828546254], [2.273888082266189, 48.853434317247896], [2.2740701637412393, 48.85339034876276], [2.274259738516114, 48.85334506381706], [2.274441819365682, 48.8533010947628], [2.274631393480329, 48.85325581012397], [2.274813473716927, 48.85321183960132], [2.2750030471838683, 48.85316655437003], [2.275185125419798, 48.853122584169355], [2.275374699601687, 48.85307729835386], [2.275556777224628, 48.85303332668483], [2.275746350758798, 48.852988040276884], [2.275778904942814, 48.852971775406374], [2.275804436460868, 48.85296570095956], [2.275824904907113, 48.852953749113794], [2.27583057451131, 48.85293971471317], [2.275835782564283, 48.85292682420487], [2.275775183309569, 48.85290085979536], [2.275617698330406, 48.85281252808224], [2.27546257463819, 48.85272505585025], [2.275305089345013, 48.852636724602725], [2.275149968076064, 48.852549251060616], [2.274994845952754, 48.85246177820161], [2.274837363623379, 48.85237344542653], [2.274682242548074, 48.85228597214837], [2.274524761267403, 48.852197639847205], [2.27436964125282, 48.85211016525068], [2.274212161033362, 48.85202183252418], [2.274057042066778, 48.851934357508576], [2.273899562908528, 48.85184602435661], [2.273898270398814, 48.85184537976413], [2.273737938537053, 48.851774806782814], [2.273576531461105, 48.85170269723531], [2.273416200473988, 48.851632123813836], [2.273254795648036, 48.851560013831346], [2.273094464172941, 48.851489439961405], [2.272933060234056, 48.85141732953567], [2.272772729633807, 48.85134675522557], [2.272611326582088, 48.85127464435659], [2.272571661975811, 48.85125718400212], [2.272542000610937, 48.85125639929336], [2.272528004904369, 48.85126975248684], [2.272491787330118, 48.8513932109228], [2.272458004617603, 48.85151630101193], [2.272421786706149, 48.85163975939932], [2.272388002293166, 48.85176285033246], [2.272351784057161, 48.851886307771984], [2.272318000681602, 48.85200939866634], [2.272281782095829, 48.85213285695663], [2.272247997044995, 48.85225594689635], [2.272211778122003, 48.85237940513808], [2.272177994096037, 48.85250249593833], [2.272141774848386, 48.85262595323219], [2.272107989134565, 48.852749043977084], [2.272100607645101, 48.852755506857285], [2.271912334614484, 48.852816786985734], [2.271737852501137, 48.85287518735805], [2.271549578599031, 48.852936467808405], [2.271375095678283, 48.85299486764546], [2.2712006137292953, 48.8530532672333], [2.271012337189204, 48.85311454682017], [2.270998618161255, 48.853113904732], [2.270849410620035, 48.85304658847218], [2.270708044304549, 48.852979829751455], [2.270558837522721, 48.85291251312119], [2.270417471943241, 48.85284575404918], [2.270268264557849, 48.85277843704015], [2.270126899714373, 48.85271167761673], [2.269985535233118, 48.85264491802229], [2.269836330343543, 48.85257760047083], [2.269812285635519, 48.85256409280639], [2.269775556655167, 48.852576381489655], [2.26963849767042, 48.85268798056191], [2.269498762628691, 48.85280008026509], [2.269361702462859, 48.852911678997806], [2.269221967575935, 48.8530237792628], [2.269084906228803, 48.85313537765602], [2.268945170159148, 48.85324747667591], [2.268915618631627, 48.85325364741423]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 155, "zemmour_eric": 168.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-35", "circ_bv": "14", "num_bureau": 35, "roussel_fabien": 3.0, "nb_emargement": 1012.0, "nb_procuration": 73.0, "nb_vote_blanc": 9.0, "jadot_yannick": 38.0, "le_pen_marine": 43.0, "nb_exprime": 1001.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1233.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1012, "quartier_bv": "61", "geo_point_2d": [48.853041359686806, 2.272142878724743], "melenchon_jean_luc": 56.0, "poutou_philippe": 2.0, "macron_emmanuel": 507.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.277791925817521, 48.85768774509809], [2.277790248114774, 48.85767495420113], [2.277913967376468, 48.8575692546471], [2.278026214412336, 48.85747887375416], [2.2780277164609473, 48.8574777873988], [2.278150980879031, 48.85740209461502], [2.278287493141193, 48.85731753029353], [2.278410756790209, 48.85724183813052], [2.278547269573751, 48.85715727350869], [2.278670532466263, 48.85708158106715], [2.278807043045559, 48.856997016128595], [2.278916536757733, 48.85692289166231], [2.279053046509563, 48.85683832733028], [2.279162540901152, 48.856764202636505], [2.279163650100602, 48.85676353030279], [2.279300159046194, 48.85667896477746], [2.279423681682008, 48.85661202206329], [2.279425056953059, 48.856611032057145], [2.27950460087662, 48.85654421563906], [2.279607120945106, 48.8564583793571], [2.279607703798456, 48.85645792149517], [2.279733281874068, 48.85636576112403], [2.279861814489797, 48.85628601515555], [2.279877702871793, 48.85627009049961], [2.279842531327266, 48.856240780982624], [2.279662249339955, 48.856198493529995], [2.279485565360761, 48.856157616077105], [2.279305283963245, 48.85611532718417], [2.279128601908947, 48.85607444920938], [2.278948321076557, 48.85603216067485], [2.27877163822148, 48.8559912821617], [2.278591357966556, 48.85594899308621], [2.278414675673543, 48.855908114042954], [2.278234396008447, 48.855865823527225], [2.278057714277608, 48.85582494395382], [2.278055313450769, 48.8558242090822], [2.277861875225263, 48.85575016497584], [2.277668355675996, 48.85567504622265], [2.277474918554232, 48.855601001480835], [2.277281398741524, 48.8555258829828], [2.277087962735877, 48.85545183670623], [2.276894444035021, 48.85537671757232], [2.276889496390381, 48.85537339871507], [2.276795365109866, 48.85526375369174], [2.276706070658562, 48.85515718934615], [2.276611938804285, 48.855047543249654], [2.276522645086145, 48.8549409796458], [2.276501853734869, 48.85491607206924], [2.276475251494567, 48.854919200177314], [2.276350952421262, 48.854961200497335], [2.2761959918002432, 48.855011257855054], [2.276025143240209, 48.85506898665625], [2.275870181985643, 48.8551190435872], [2.275699332723629, 48.85517677101835], [2.275544370823118, 48.8552268284218], [2.275389410000091, 48.85527688473127], [2.275218558325183, 48.85533461145947], [2.27521191098725, 48.85533963908825], [2.275156310871603, 48.85544418923082], [2.275109691621053, 48.855543878744875], [2.275106927118613, 48.855547148257706], [2.274993819935089, 48.85563247685546], [2.274866769303546, 48.8557344831085], [2.274867521082735, 48.85574088840602], [2.274893614502891, 48.85575428330224], [2.274930995222332, 48.85576281180244], [2.274975501094638, 48.85577752608815], [2.274982643244333, 48.85578768086136], [2.274932586430666, 48.85592426725442], [2.274880724235015, 48.85605746917441], [2.274830666894998, 48.85619405549161], [2.274778804170267, 48.85632725733508], [2.274778652508836, 48.85633129903486], [2.274818092452603, 48.85646198108898], [2.274861969610691, 48.85660338967476], [2.274862180885373, 48.856604367658726], [2.274881316154692, 48.85674973365289], [2.274901192458639, 48.85689827075618], [2.27492032932011, 48.85704363581458], [2.274940205834875, 48.857192173771395], [2.274949215760739, 48.85719985582205], [2.27513756014827, 48.85724404825843], [2.275320075871402, 48.857288995632224], [2.275508422246065, 48.85733318838892], [2.2756909372511, 48.85737813428591], [2.275879284262535, 48.857422326455335], [2.276061799887129, 48.85746727268238], [2.276244317201976, 48.85751221773817], [2.276432663804574, 48.85755640902303], [2.276434847438852, 48.85755679006414], [2.276641038374329, 48.85758095229264], [2.276853726073379, 48.85760545920704], [2.277059917395701, 48.857629620712764], [2.277272605490332, 48.85765412688156], [2.277478797199487, 48.857678287664484], [2.277691485677421, 48.85770279398701], [2.277741336956754, 48.857711009233434], [2.277778191766217, 48.857703335313545], [2.277791925817521, 48.85768774509809]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 140, "zemmour_eric": 186.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-12", "circ_bv": "14", "num_bureau": 12, "roussel_fabien": 6.0, "nb_emargement": 1079.0, "nb_procuration": 81.0, "nb_vote_blanc": 8.0, "jadot_yannick": 32.0, "le_pen_marine": 70.0, "nb_exprime": 1069.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1330.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1079, "quartier_bv": "62", "geo_point_2d": [48.85643273394723, 2.276882622279649], "melenchon_jean_luc": 71.0, "poutou_philippe": 1.0, "macron_emmanuel": 541.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3250538235542, 48.82723123429811], [2.325085450485736, 48.82722217528404], [2.325146157339685, 48.827195722717356], [2.32520724094703, 48.82716930911987], [2.325235104940891, 48.8271615572141], [2.325236399828746, 48.82715865143663], [2.325388864710996, 48.827092720218346], [2.325536845190479, 48.827027930005805], [2.32554085924852, 48.82702521044197], [2.325547587918722, 48.82700660519256], [2.325528427455663, 48.82699620465531], [2.325438396974696, 48.82687196318847], [2.32534802628499, 48.826748676656344], [2.325257996661366, 48.826624435026304], [2.325167628189383, 48.82650114833837], [2.325077599423087, 48.82637690654509], [2.324987230444666, 48.826253619685986], [2.324897203897652, 48.82612937773721], [2.324806835774956, 48.82600609071457], [2.324716808723186, 48.82588184859489], [2.324626442818159, 48.825758561416485], [2.324536416623682, 48.8256343191336], [2.324446050212205, 48.82551103178399], [2.324356024875014, 48.825386789337934], [2.32426566068117, 48.825263501832545], [2.324175636201252, 48.8251392592233], [2.324085272862879, 48.82501597155439], [2.324083746477722, 48.82501435393751], [2.324007223019629, 48.824949651744404], [2.323917023493901, 48.82487439530906], [2.323907194785054, 48.82484769652519], [2.32390342049686, 48.82484653297473], [2.32388749307568, 48.82484162135196], [2.323872324751918, 48.82484287566756], [2.323688367572669, 48.824885358214225], [2.32350818356508, 48.82492633737468], [2.323324227168353, 48.82496881846643], [2.323144041224094, 48.82500979706747], [2.322960084224524, 48.82505227849526], [2.322779899067662, 48.82509325655231], [2.322599712265629, 48.82513423432865], [2.322415754383496, 48.825176714914406], [2.322235568368768, 48.82521769214677], [2.322051608545128, 48.82526017126217], [2.32187142195578, 48.825301147942824], [2.32168746289133, 48.825343627401985], [2.321687304405883, 48.825343664276964], [2.321630640325556, 48.82543452731903], [2.321449077045954, 48.825478120840664], [2.321443022602232, 48.82549213029257], [2.321553203017658, 48.82558468546181], [2.321590769645145, 48.82562295310756], [2.321535665052362, 48.82564690663651], [2.321505012180214, 48.82566100407345], [2.32153543098077, 48.82569242198111], [2.3216947725019272, 48.825761639108215], [2.321864800597063, 48.82583565544337], [2.3220241443553, 48.825904872130515], [2.322194172023083, 48.82597888798024], [2.322353516656351, 48.82604810421967], [2.322523546620897, 48.826122119599404], [2.322682890767136, 48.82619133538342], [2.322852921666389, 48.82626535028541], [2.323012266687658, 48.82633456562173], [2.323182298521619, 48.82640858004595], [2.32334164441792, 48.826477794934604], [2.323511677186592, 48.82655180888109], [2.3236710253200012, 48.8266210233297], [2.323841057661311, 48.82669503679077], [2.324000406658098, 48.826764251690996], [2.32417044130786, 48.82683826378265], [2.324329789817612, 48.82690747822749], [2.324525758560463, 48.82699271305599], [2.324685108013989, 48.82706192701788], [2.324881077906741, 48.827147162151725], [2.325040429677782, 48.82721637473902], [2.3250538235542, 48.82723123429811]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 85, "zemmour_eric": 72.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-11", "circ_bv": "11", "num_bureau": 11, "roussel_fabien": 24.0, "nb_emargement": 1194.0, "nb_procuration": 51.0, "nb_vote_blanc": 12.0, "jadot_yannick": 104.0, "le_pen_marine": 65.0, "nb_exprime": 1179.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 6, "nb_inscrit": 1432.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1194, "quartier_bv": "55", "geo_point_2d": [48.825934690852534, 2.3236266044950544], "melenchon_jean_luc": 282.0, "poutou_philippe": 6.0, "macron_emmanuel": 480.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303133881011982, 48.83208742668051], [2.303157491696263, 48.83207973068396], [2.303317768270897, 48.83205478936073], [2.303481191396946, 48.83202925097445], [2.303641469023716, 48.83200430922426], [2.303804890458713, 48.83197877128591], [2.303806181299151, 48.83197861331468], [2.303861499540977, 48.83197364877392], [2.303907762856833, 48.83196999136382], [2.303929884897299, 48.831964807501066], [2.303928308204298, 48.83194842069303], [2.303895406776733, 48.83190460318642], [2.303809998175134, 48.831783599596186], [2.303733537129105, 48.83167363659422], [2.30364813065595, 48.83155263197211], [2.303571670290121, 48.83144266884399], [2.30348626319687, 48.83132166497272], [2.303409803523253, 48.831211700819146], [2.303333345534286, 48.83110173661382], [2.303247939552769, 48.83098073253556], [2.303252046144475, 48.83096977327249], [2.303384857106066, 48.83090315212533], [2.30351289049714, 48.83083936842073], [2.303645702167358, 48.83077274608481], [2.303773734919114, 48.83070896209354], [2.303901767357571, 48.83064517796157], [2.3040345766619152, 48.83057855607367], [2.304043401209405, 48.830576731324804], [2.304226596588923, 48.830581914561726], [2.304409863101091, 48.83058728230376], [2.304593057191942, 48.83059246497144], [2.304776325141206, 48.8305978321598], [2.304959519305559, 48.83060301426612], [2.305142787329534, 48.83060838089292], [2.30532598156738, 48.83061356243788], [2.305509249654178, 48.830618929402405], [2.305692443977491, 48.83062410948667], [2.305875710777015, 48.830629475881686], [2.306058906535977, 48.830634655412496], [2.306242173410194, 48.83064002124594], [2.306251627475881, 48.830637872613224], [2.306411565459921, 48.83054762504673], [2.306570825983529, 48.83045828889986], [2.30673076286404, 48.830368040892054], [2.306890022292036, 48.83027870430584], [2.307049958068923, 48.83018845585672], [2.307209216401413, 48.83009911883118], [2.307267353505037, 48.83007006394957], [2.307257327168186, 48.83005808643257], [2.307176794551888, 48.82999254911706], [2.307054101605994, 48.82989630827068], [2.306934686877184, 48.829799128448265], [2.306811996195502, 48.82970288734481], [2.306811940934199, 48.82970284295502], [2.306681997424786, 48.829598464373994], [2.306559307669872, 48.82950222389341], [2.306429365166323, 48.829397845019194], [2.306306676361986, 48.82930160336296], [2.306176734864292, 48.82919722419557], [2.30605404698639, 48.82910098316225], [2.3059241064945413, 48.82899660370175], [2.305801419567208, 48.82890036149271], [2.3056714800811973, 48.82879598173905], [2.305548794092253, 48.82869973925368], [2.305418855600089, 48.82859536010619], [2.305296169187605, 48.828499117336534], [2.305173484590112, 48.828402874440656], [2.305043547601255, 48.828298493958485], [2.304920863930241, 48.828202251685575], [2.304790927947292, 48.828097870910234], [2.304736826419062, 48.82805440870328], [2.30461414253854, 48.82795816518756], [2.304612879459895, 48.82794859025089], [2.304494822171952, 48.82794076086555], [2.304294681994238, 48.82798336862945], [2.304103463889863, 48.82802393152343], [2.303903321711016, 48.828066538621314], [2.303712102997099, 48.82810710088656], [2.303520883985635, 48.82814766284461], [2.303320740855677, 48.82819026896285], [2.303129521234679, 48.82823083029215], [2.302929377465609, 48.828273435752294], [2.302920035926898, 48.828283082901955], [2.302945099748731, 48.82841893444508], [2.302962944644038, 48.8285553500726], [2.30295222694062, 48.828564917251505], [2.30276433669242, 48.82859149137622], [2.302573564893049, 48.82861717060874], [2.302385674275551, 48.82864374323802], [2.302194902098364, 48.82866942186527], [2.302007009725484, 48.8286959947898], [2.301816238532712, 48.82872167281985], [2.301628345790562, 48.82874824424891], [2.30143757422009, 48.82877392167371], [2.301427034909548, 48.82878479025934], [2.30145106609415, 48.8288523642275], [2.301472644779389, 48.828923640992855], [2.301463200446562, 48.82893401772023], [2.301245415933076, 48.8289771333952], [2.301055017530043, 48.82901706573934], [2.301015747903268, 48.829020999453405], [2.301010410623708, 48.8290289322545], [2.30100153741031, 48.82904211924296], [2.30103742882978, 48.829062259236345], [2.301201092302642, 48.82917254496164], [2.301363778810115, 48.8292800546563], [2.301526464614385, 48.82938756501078], [2.301690130155077, 48.829497849135514], [2.301693793488598, 48.82950250501964], [2.301725524474012, 48.82961555501533], [2.301757465715355, 48.829728681765644], [2.301789195614451, 48.8298417317137], [2.301821137132535, 48.829954858424195], [2.301852868669426, 48.83006790834045], [2.301884809102094, 48.83018103500319], [2.301916540914727, 48.83029408487974], [2.301948481624139, 48.8304072115026], [2.301949124699058, 48.830408730706544], [2.302018809920777, 48.8305295658056], [2.3020871778746113, 48.83064950637663], [2.3021568623759903, 48.830770341361294], [2.302225230951275, 48.83089028272696], [2.302294917468717, 48.83101111671391], [2.302363286677402, 48.831131057974886], [2.302365623198953, 48.83113368789033], [2.302490901639716, 48.83123175180182], [2.3026155963752952, 48.83132898294224], [2.302740875755607, 48.831427046574824], [2.302865571424454, 48.831524277437715], [2.302868233448119, 48.83152752801023], [2.302929063855822, 48.831662689149056], [2.302992496330756, 48.83180194227409], [2.303053328730938, 48.83193710422383], [2.303116761883747, 48.83207635634956], [2.303118028899529, 48.8320782865973], [2.303133881011982, 48.83208742668051]]], "type": "Polygon"}, "properties": {"lassalle_jean": 22.0, "pecresse_valerie": 82, "zemmour_eric": 89.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-47", "circ_bv": "13", "num_bureau": 47, "roussel_fabien": 28.0, "nb_emargement": 1303.0, "nb_procuration": 50.0, "nb_vote_blanc": 10.0, "jadot_yannick": 110.0, "le_pen_marine": 97.0, "nb_exprime": 1287.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1658.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1303, "quartier_bv": "57", "geo_point_2d": [48.829705876305916, 2.3039766197392386], "melenchon_jean_luc": 383.0, "poutou_philippe": 5.0, "macron_emmanuel": 420.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.360399440208453, 48.822359383449275], [2.36040497320829, 48.822348690659496], [2.36032973310791, 48.822223234180214], [2.360254854328471, 48.82209988501502], [2.360179614937392, 48.8219744293128], [2.360104736881427, 48.82185107912703], [2.360029498210465, 48.8217256233026], [2.359954620855893, 48.82160227389483], [2.359879384278129, 48.82147681705616], [2.3598045062740303, 48.82135346751979], [2.359729270405521, 48.821228011458246], [2.359654393124881, 48.82110466090129], [2.359579157976456, 48.820979204717496], [2.359504282770155, 48.82085585404655], [2.359429046980077, 48.82073039773328], [2.3593541724751192, 48.82060704784034], [2.35935342909525, 48.82060203791141], [2.359385405554865, 48.82048987852391], [2.359415392467849, 48.82038389079474], [2.3594453792588252, 48.820277903048044], [2.359477355321879, 48.82016574360367], [2.359507341861554, 48.820059755820886], [2.359539319019456, 48.819947596345415], [2.359554320496394, 48.81994033055961], [2.359772028812738, 48.819957537763095], [2.359988124039936, 48.81997446522184], [2.360205831280144, 48.81999167162772], [2.360421926789626, 48.820008598302024], [2.360639634315389, 48.820025803917545], [2.360855730107143, 48.820042729807376], [2.360859750276143, 48.82004264966593], [2.36100488089324, 48.820025869428086], [2.361150448592901, 48.820008534633516], [2.361295577659686, 48.819991754035144], [2.361441145167465, 48.81997441888613], [2.361451428579343, 48.81996881580379], [2.361521611108736, 48.819849128761135], [2.361591507953455, 48.81972749748024], [2.361661689825504, 48.819607811228984], [2.361731586020092, 48.81948617984015], [2.36174968458324, 48.819481104112015], [2.361923520928103, 48.81953030521009], [2.362094135399996, 48.819578376330234], [2.36226797239416, 48.81962757692333], [2.362438587501777, 48.819675647547825], [2.36261242514534, 48.81972484763592], [2.36278304089977, 48.81977291686544], [2.362956880543438, 48.81982211735509], [2.36312749557188, 48.819870186081715], [2.36330133586485, 48.81991938606633], [2.363471951528997, 48.81996745429735], [2.363645792471365, 48.820016653776925], [2.363816408771318, 48.82006472151228], [2.363987025385938, 48.82011278900219], [2.364160867298736, 48.82016198772658], [2.364331484549054, 48.82021005472084], [2.364505327111244, 48.820259252940225], [2.364581351717725, 48.82029398896275], [2.364587388684448, 48.82029046939434], [2.364619863817124, 48.820250562023666], [2.364654736016856, 48.82020360995023], [2.364671547778451, 48.82019537911841], [2.364682855510298, 48.82016157307026], [2.364706436838158, 48.82012982165695], [2.364735278392521, 48.82009200848668], [2.364736249581307, 48.82008629898969], [2.364655601655025, 48.82006215027056], [2.36446717739771, 48.820006770669345], [2.364278472073266, 48.81994721974851], [2.364090048631807, 48.81989183954737], [2.36390134551591, 48.81983228803257], [2.363712921517431, 48.8197769081236], [2.363524219259256, 48.819717355108224], [2.363335797438432, 48.81966197460663], [2.363147096026908, 48.81960242099004], [2.363146485347438, 48.81960224055964], [2.362958062992965, 48.81954685855057], [2.36276423556996, 48.81949324709423], [2.362575814015333, 48.81943786447744], [2.362381987401592, 48.81938425149699], [2.362193566646817, 48.81932886827251], [2.361999740831153, 48.81927525466723], [2.3619972098161712, 48.81927473930828], [2.361804040929758, 48.81924871647884], [2.361613092375616, 48.81922290305362], [2.361419923872933, 48.81919687960246], [2.361228975698775, 48.81917106556266], [2.361035807579831, 48.81914504148977], [2.360844859785664, 48.81911922683537], [2.360651692050467, 48.81909320214072], [2.360460744636297, 48.81906738687176], [2.360267577284854, 48.81904136155542], [2.360076630250691, 48.81901554567186], [2.359883463294052, 48.81898951883447], [2.359692516639907, 48.81896370233635], [2.359619368839235, 48.8189556379889], [2.359606593463713, 48.81897484869396], [2.359582801206974, 48.81905183956604], [2.359539103850765, 48.81918505741689], [2.359499789219167, 48.819312273763785], [2.359456091432527, 48.81944549155344], [2.359416776413087, 48.819572706944314], [2.359373078196211, 48.81970592467276], [2.35933376276683, 48.819833140906205], [2.35929006413056, 48.81996635767417], [2.359250748302279, 48.82009357385083], [2.359207047862797, 48.820226791449656], [2.359167732997421, 48.82035400757692], [2.3591534768857763, 48.82039746654636], [2.359147364788384, 48.82040662454988], [2.359147957708219, 48.820418001282576], [2.359118514301796, 48.820507758955706], [2.359079644334872, 48.82063309500778], [2.359035944367891, 48.82076631248744], [2.35899707536052, 48.82089164939047], [2.3589533749659912, 48.82102486680935], [2.358914505578462, 48.82115020275736], [2.3588708033942343, 48.82128342010815], [2.3588319336154813, 48.82140875600049], [2.358788232365631, 48.821541973297784], [2.35874936218459, 48.82166731003379], [2.358705659145118, 48.82180052726292], [2.3586667885838, 48.821925863043965], [2.358623086478604, 48.82205908021963], [2.358584215526149, 48.82218441594497], [2.358576817752454, 48.822208267347904], [2.358577691371384, 48.82220988282045], [2.358627353198803, 48.822217346920006], [2.358801406526273, 48.8221800783512], [2.358962852684313, 48.82214602017942], [2.358970083352019, 48.82214582690159], [2.359144381579175, 48.82217259038208], [2.359324219157749, 48.82220036810467], [2.359498517760151, 48.82222713016833], [2.359678357077466, 48.82225490736426], [2.359852656032909, 48.82228166980982], [2.3600324957270002, 48.82230944647179], [2.360206795057462, 48.82233620750053], [2.360386633766449, 48.822363983621294], [2.360399440208453, 48.822359383449275]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 81, "zemmour_eric": 72.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-38", "circ_bv": "10", "num_bureau": 38, "roussel_fabien": 16.0, "nb_emargement": 1064.0, "nb_procuration": 40.0, "nb_vote_blanc": 13.0, "jadot_yannick": 44.0, "le_pen_marine": 69.0, "nb_exprime": 1047.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1445.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "51", "geo_point_2d": [48.82035667613191, 2.3605072557520206], "melenchon_jean_luc": 300.0, "poutou_philippe": 6.0, "macron_emmanuel": 413.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.31080211931362, 48.83301668710698], [2.310797455989394, 48.83303441747915], [2.310793901456739, 48.83304793347722], [2.310834837853679, 48.83308080494976], [2.310961615878747, 48.83318590684065], [2.311088835159267, 48.83328940844156], [2.311216054933091, 48.8333929107969], [2.311342834485813, 48.833498012254395], [2.311470055273051, 48.83360151432032], [2.311596835845222, 48.833706615489014], [2.31172405902002, 48.833810116373975], [2.311850840599778, 48.83391521815318], [2.311978063425748, 48.834018718740836], [2.312104846024977, 48.83412382023119], [2.312232069864388, 48.834227320529415], [2.312358853494963, 48.834332420831664], [2.312486078335959, 48.83443592173969], [2.312612864348301, 48.83454102176094], [2.31274009021462, 48.83464452148022], [2.312866875872325, 48.83474962210407], [2.312900916110049, 48.83475250318109], [2.312948196038747, 48.83474296441729], [2.313119579114971, 48.83464938151426], [2.313298116973578, 48.83455350196926], [2.3134695001491288, 48.83445991945614], [2.313648036715211, 48.8343640393726], [2.313666506790264, 48.83436481988839], [2.313713118677765, 48.834397188660276], [2.313759554969249, 48.83443037843193], [2.313777850051268, 48.834431414247604], [2.313941318095555, 48.834348695935496], [2.314100108086501, 48.83426809197709], [2.314263575107256, 48.834185373212485], [2.314422365452741, 48.834104769721606], [2.314585831461793, 48.834022049605245], [2.314744619449316, 48.83394144566697], [2.314903408319764, 48.8338608406206], [2.315066872788732, 48.833778120728084], [2.31508132401293, 48.833765611359354], [2.315069457882112, 48.83375369956306], [2.315038143925479, 48.83373611916654], [2.315006878836927, 48.833720316202694], [2.315005313421688, 48.833719389876784], [2.314875497690036, 48.8336296164855], [2.314743116985688, 48.83353819588548], [2.31461330353088, 48.833448421303586], [2.314480922384348, 48.83335700039077], [2.314351109820471, 48.83326722640912], [2.3142187295938, 48.83317580519129], [2.314088917944506, 48.83308603001122], [2.313956538637794, 48.83299460848843], [2.31382672787941, 48.83290483390859], [2.313694349492647, 48.83281341208083], [2.313564539648943, 48.832723636302596], [2.313432163544253, 48.83263221417767], [2.313302353229207, 48.832542438991865], [2.313169978044551, 48.83245101656196], [2.313040168643981, 48.83236124017776], [2.312907794379252, 48.832269817442906], [2.312908563204978, 48.83222967827488], [2.312887412030076, 48.8322237953706], [2.3127101018885208, 48.83228785984472], [2.312546818453413, 48.832352581177155], [2.312369507455251, 48.83241664513897], [2.312206223205763, 48.83248136509965], [2.312028911350997, 48.832545428549196], [2.311865626263399, 48.83261014893681], [2.3116883135638, 48.83267421097476], [2.31152502765006, 48.83273893088992], [2.311347714081985, 48.83280299331488], [2.311184427353879, 48.83286771185831], [2.311021138846213, 48.83293243106657], [2.31084382536297, 48.83299649274128], [2.31080211931362, 48.83301668710698]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 44, "zemmour_eric": 70.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "14-21", "circ_bv": "11", "num_bureau": 21, "roussel_fabien": 24.0, "nb_emargement": 1047.0, "nb_procuration": 32.0, "nb_vote_blanc": 8.0, "jadot_yannick": 32.0, "le_pen_marine": 101.0, "nb_exprime": 1030.0, "nb_vote_nul": 9.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1444.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1047, "quartier_bv": "56", "geo_point_2d": [48.83347138255964, 2.3129165280852737], "melenchon_jean_luc": 459.0, "poutou_philippe": 10.0, "macron_emmanuel": 241.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.387149383019345, 48.84687186724564], [2.38714221118471, 48.84688751797171], [2.387110943984549, 48.84691306678518], [2.387021245713559, 48.847027553905946], [2.386936277019279, 48.84713774558022], [2.386846577977757, 48.847252232547], [2.386761608547832, 48.84736242407498], [2.386671907373347, 48.847476910880694], [2.386586938559813, 48.847587103168706], [2.386497236625461, 48.8477015889211], [2.386412267076268, 48.84781178106282], [2.386322564360868, 48.84792626756044], [2.386237594086495, 48.84803645865661], [2.386152622079656, 48.8481466505738], [2.386062919590681, 48.84826113595007], [2.385977946848155, 48.848371327721], [2.385888242215453, 48.848485813835445], [2.385889674325979, 48.848495536015356], [2.385990917401451, 48.84857971720386], [2.386081610558875, 48.84864944549913], [2.386083581068007, 48.84865916054486], [2.386005416538441, 48.848767792677904], [2.385925371076922, 48.84887561916841], [2.385847207255555, 48.84898425118397], [2.385767159771529, 48.84909207754064], [2.385688995295793, 48.84920070943173], [2.385608948525094, 48.84930853476936], [2.385530782021601, 48.84941716742826], [2.385450734591152, 48.84952499263902], [2.385372568806355, 48.84963362428111], [2.385292519342756, 48.849741450257376], [2.385214352903567, 48.84985008177503], [2.385134304142686, 48.849957907631456], [2.385139206333206, 48.85000857901805], [2.385187300598113, 48.850011587179544], [2.385375130743676, 48.84998232584231], [2.385571998760596, 48.849952460391165], [2.38575982983972, 48.84992319845544], [2.385956697423387, 48.84989333147041], [2.386144528073366, 48.849864068929236], [2.386341395213064, 48.84983420130966], [2.386529225433891, 48.849804938163004], [2.386726092129817, 48.849775069908866], [2.386913921921483, 48.84974580615673], [2.38711078816295, 48.84971593816732], [2.387298617525453, 48.84968667380971], [2.387429658462935, 48.84966679186814], [2.387447490984741, 48.84966624282742], [2.38745927349919, 48.84966251417357], [2.387525096996098, 48.849652526568605], [2.387725003819699, 48.84962176029078], [2.387921869138125, 48.84959189006421], [2.388121775494967, 48.84956112312176], [2.388318640356893, 48.84953125224074], [2.388518546246865, 48.8495004846337], [2.388715410641731, 48.84947061399751], [2.388915316064828, 48.84943984572589], [2.389112180013729, 48.849409973535955], [2.38931208496994, 48.84937920459974], [2.389508948462314, 48.84934933175534], [2.389583223416663, 48.84933789951129], [2.389598430849504, 48.849328419666065], [2.389569485696389, 48.84928554729483], [2.389482722496093, 48.849180796648106], [2.389395201814973, 48.84907431440217], [2.389308439316688, 48.848969563609195], [2.389220919335897, 48.848863082114875], [2.389134157539614, 48.84875833117559], [2.389046638280223, 48.84865184863435], [2.388959877185937, 48.8485470975488], [2.388872358637299, 48.84844061485984], [2.388785598245, 48.848335863628094], [2.38869808040731, 48.84822938079146], [2.388611320716992, 48.84812462941343], [2.388523803590142, 48.848018146429105], [2.388524023066934, 48.848009313188534], [2.388618869888976, 48.84790244641215], [2.38871160399992, 48.847797218174755], [2.388806450051289, 48.84769035122937], [2.388899182043428, 48.847585122819574], [2.388994028686767, 48.84747825571205], [2.389086759922747, 48.84737302713685], [2.389094970221532, 48.847360229864485], [2.389084638797156, 48.84734763739888], [2.388942182579381, 48.84727859306151], [2.388764081291364, 48.8471936699931], [2.388621625929606, 48.847124624365186], [2.388443524327522, 48.84703970080088], [2.38830106981144, 48.8469706547818], [2.388122969257911, 48.84688573072855], [2.387980516939452, 48.84681668522449], [2.387802417445031, 48.846731759783026], [2.387659964609421, 48.84666271388078], [2.387654613286641, 48.84665356342405], [2.387666440335381, 48.84661664423794], [2.387683956857477, 48.84659477071654], [2.387680195627695, 48.84658342857375], [2.38766399524069, 48.84657400674422], [2.387588807187404, 48.84653600092623], [2.387569498279913, 48.84653785368756], [2.387479203686519, 48.84661985878601], [2.387363247124739, 48.84671460848562], [2.3872729505380432, 48.8467966134084], [2.38718826036188, 48.846865814966385], [2.387149383019345, 48.84687186724564]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 75, "zemmour_eric": 58.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-13", "circ_bv": "08", "num_bureau": 13, "roussel_fabien": 16.0, "nb_emargement": 1237.0, "nb_procuration": 81.0, "nb_vote_blanc": 10.0, "jadot_yannick": 141.0, "le_pen_marine": 45.0, "nb_exprime": 1224.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1490.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1238, "quartier_bv": "46", "geo_point_2d": [48.848484103192284, 2.387441104225086], "melenchon_jean_luc": 389.0, "poutou_philippe": 9.0, "macron_emmanuel": 427.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3664188731038, 48.82674171554213], [2.366430824427496, 48.8267320899037], [2.366431019436957, 48.82673162326237], [2.366479344850438, 48.826602113100215], [2.366527005225854, 48.82647406626131], [2.366575331513317, 48.8263445569372], [2.366622991417545, 48.82621651003063], [2.366671315876698, 48.826086999731494], [2.366718975309749, 48.825958952757304], [2.366767300642886, 48.82582944329619], [2.3668149596046613, 48.825701396254395], [2.366863283109614, 48.82557188581824], [2.366910941600225, 48.82544383870876], [2.366959265979065, 48.82531432911064], [2.367006923998618, 48.8251862819336], [2.3670545817840782, 48.825058234722896], [2.367102905459634, 48.82492872412297], [2.367103296882321, 48.82492677544951], [2.367107282544082, 48.82480973025041], [2.367112787114277, 48.8246674224249], [2.367116772734906, 48.82455037719843], [2.3671222772518172, 48.824408069339675], [2.367126262831317, 48.824291024085845], [2.367131768656961, 48.824148716200966], [2.367135754184412, 48.824031671819135], [2.367141258605667, 48.82388936299443], [2.36714524409199, 48.823772318585284], [2.3671299902678, 48.823758852441955], [2.367103124118052, 48.82376608873772], [2.366959525620353, 48.823823144153266], [2.366793095830062, 48.823889499468486], [2.366617766493774, 48.8239591620866], [2.366451335823434, 48.82402551781746], [2.366276005584158, 48.824095179026756], [2.366109574044691, 48.824161534273934], [2.365934242880364, 48.82423119587301], [2.365767810471765, 48.8242975506365], [2.365601377639541, 48.824363905164454], [2.365426045126632, 48.824433565106645], [2.365424789221592, 48.82443412954585], [2.3653980031076483, 48.82445343010952], [2.365413767905783, 48.82446809175055], [2.365394696407742, 48.824598421616635], [2.365376298184904, 48.824725577543994], [2.365357226499012, 48.82485590737421], [2.365338828104979, 48.82498306236731], [2.365319756220187, 48.825113393060995], [2.365301359005952, 48.82524054802643], [2.365282286933307, 48.82537087868421], [2.365263888174782, 48.825498033607474], [2.365244815914381, 48.82562836422942], [2.36522641833556, 48.82575551912499], [2.365207345887302, 48.82588584971107], [2.365188946764172, 48.82601300456445], [2.365170547551397, 48.826140159400616], [2.365151474822763, 48.82627048993316], [2.365133076789703, 48.82639764474159], [2.365114003884157, 48.82652797433892], [2.365105852221698, 48.82654301176906], [2.3651318723817383, 48.82655270305814], [2.365184528008931, 48.8265604851597], [2.365394228059348, 48.82659086645412], [2.365588552254284, 48.82661958471279], [2.365798251426602, 48.82664996439062], [2.36599257606446, 48.82667868199128], [2.366202277061046, 48.82670906186564], [2.366396600779534, 48.826737778801075], [2.3664188731038, 48.82674171554213]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 44, "zemmour_eric": 69.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "13-18", "circ_bv": "09", "num_bureau": 18, "roussel_fabien": 33.0, "nb_emargement": 1122.0, "nb_procuration": 22.0, "nb_vote_blanc": 15.0, "jadot_yannick": 46.0, "le_pen_marine": 91.0, "nb_exprime": 1100.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1520.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1122, "quartier_bv": "50", "geo_point_2d": [48.8253121414411, 2.366145511771737], "melenchon_jean_luc": 489.0, "poutou_philippe": 8.0, "macron_emmanuel": 261.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376893693204376, 48.88351412494778], [2.37686911428515, 48.883535389317935], [2.376681941899954, 48.883532440091116], [2.376477985403314, 48.88352908030487], [2.37629081306305, 48.88352613046663], [2.376086857979828, 48.883522770021166], [2.375899685684302, 48.88351981957146], [2.375695730651141, 48.88351645845972], [2.375508558400463, 48.883513507398504], [2.3753046020537, 48.88351014561334], [2.375117429847879, 48.88350719394071], [2.374913474914667, 48.88350383149637], [2.374726302753712, 48.88350087921227], [2.374522346506919, 48.883497516094536], [2.374335174401645, 48.883494562299646], [2.374131219568424, 48.88349119852274], [2.373944047497234, 48.88348824501572], [2.373756875447273, 48.88348529121605], [2.373552919324156, 48.883481926446855], [2.373548100030528, 48.883481264507], [2.373368831720276, 48.883433087409564], [2.373190169727545, 48.88338531881083], [2.373010900704315, 48.88333714206542], [2.372832239379901, 48.883289372029154], [2.372652972381649, 48.88324119475077], [2.372474311703797, 48.883193425075476], [2.37229504401434, 48.88314524635053], [2.372116383993986, 48.883097476137024], [2.371937116965857, 48.883049296871974], [2.371758458966664, 48.883001526127295], [2.371579192589114, 48.88295334722142], [2.371400533883766, 48.88290557593136], [2.371221268178603, 48.882857395586065], [2.371042611494316, 48.882809623764906], [2.370863346450491, 48.88276144287947], [2.370684689060266, 48.88271367051292], [2.370505424677884, 48.8826654890874], [2.370326767945178, 48.88261771618254], [2.370246197305219, 48.8826150431862], [2.370243035049172, 48.8826195573688], [2.370243788855062, 48.88265859488084], [2.370197872758152, 48.8827293400306], [2.370193031302803, 48.882733225741006], [2.370050812697992, 48.88280418186131], [2.369934131286929, 48.88285678561525], [2.369817449651025, 48.88290938835369], [2.36967523005349, 48.88298034401653], [2.36967494764199, 48.88298046843562], [2.369483526869913, 48.883062233755915], [2.3693413050364303, 48.883133189005086], [2.369338678223551, 48.88313491716654], [2.369189800736218, 48.88326402279154], [2.369036340379106, 48.88340215940004], [2.369034450495647, 48.88340440135707], [2.368957693316847, 48.88353728258692], [2.368919075417118, 48.88363493578035], [2.368880457383355, 48.883732588053434], [2.368829289113236, 48.88382116828], [2.36881998853736, 48.88384562682243], [2.368890193479021, 48.88386639635302], [2.369064469886244, 48.88386480665049], [2.369237193864596, 48.88386292792553], [2.369411470249516, 48.883861337717924], [2.369584195567421, 48.883859458499536], [2.36975847193013, 48.883857867786865], [2.369931197224, 48.88385598806788], [2.370105473564597, 48.88385439685006], [2.370278197470748, 48.88385251662332], [2.370286619323625, 48.883854320902394], [2.370443343928573, 48.88393204837507], [2.370603267024401, 48.884012686483636], [2.370759993942164, 48.884090413537834], [2.370919918014651, 48.88417105121185], [2.371076644507304, 48.88424877873244], [2.371236569556454, 48.88432941597189], [2.371393298372699, 48.88440714217468], [2.371553223035021, 48.88448777897239], [2.371709952789661, 48.88456550564878], [2.371869879792147, 48.88464614201908], [2.372026610506889, 48.8847238673705], [2.372186537122547, 48.88480450329908], [2.372343268786441, 48.884882228224775], [2.372503197731539, 48.88496286462517], [2.372659928981185, 48.885040589118006], [2.372819858913701, 48.88512122418458], [2.372874829002349, 48.885148483806816], [2.37288831043394, 48.885160022624525], [2.372908125418829, 48.88516403487837], [2.373009888955353, 48.88521449930139], [2.373169673622096, 48.885293017007804], [2.373326408223788, 48.88537074061201], [2.3734318817285462, 48.88542256947187], [2.373460833505177, 48.88542624363534], [2.373489367574007, 48.8853962898161], [2.373607723632021, 48.885301907892234], [2.373745401292644, 48.885191303244525], [2.3738637564207172, 48.88509692104998], [2.37400143435909, 48.88498631609441], [2.374119788546421, 48.88489193452847], [2.374257465399044, 48.88478132925784], [2.374375818667259, 48.88468694652193], [2.374513494434239, 48.88457634093632], [2.374631846772537, 48.88448195792973], [2.374769520090089, 48.88437135202198], [2.374887871487685, 48.884276969644006], [2.3748965948208243, 48.884273784807874], [2.375120051420216, 48.88425432341396], [2.375339700533412, 48.88423247471131], [2.375563158164315, 48.88421301159753], [2.375782806917349, 48.88419116208118], [2.376002455486166, 48.8841693121614], [2.376225911223865, 48.88414984870178], [2.376232775834306, 48.884150417766236], [2.376415340711741, 48.88419873808939], [2.376589677993083, 48.88424577691812], [2.376764014236648, 48.884292814584576], [2.3769465801061163, 48.88434113409141], [2.377120916991287, 48.88438817123412], [2.37730348488981, 48.8844364901997], [2.377477822416582, 48.88448352681866], [2.377660390969714, 48.884531846135104], [2.3778347291380912, 48.88457888223031], [2.378017298367531, 48.88462720009907], [2.378191637177502, 48.8846742356705], [2.378374205708792, 48.88472255298373], [2.378548545160354, 48.884769588031396], [2.378731115709963, 48.884817905702626], [2.378905455803014, 48.88486494022652], [2.3790880270288, 48.88491325645004], [2.379104235332145, 48.884942556896334], [2.379109796295841, 48.88494496534982], [2.379312630110972, 48.884875839943994], [2.3794139394659912, 48.88484015824272], [2.379438966701756, 48.884801949706784], [2.379397379796583, 48.88478529088263], [2.379298942061936, 48.88474846942726], [2.379132642178315, 48.88468221900104], [2.378976642358344, 48.88462386568397], [2.3788771370194812, 48.88458422434481], [2.378868981363138, 48.8845783606984], [2.378850141416228, 48.88457398486558], [2.378783347706346, 48.88454737530802], [2.378734020112628, 48.88452771190604], [2.37873221532338, 48.88452685357736], [2.378585403201209, 48.88444417387624], [2.378435208277386, 48.884360126536365], [2.37828839709681, 48.88427744645854], [2.378138204496797, 48.88419339874038], [2.377991394257807, 48.88411071828587], [2.377841201254423, 48.88402667017534], [2.377694391946271, 48.88394399024335], [2.377544199913844, 48.88385994084827], [2.377397391547267, 48.88377726053959], [2.377247200475054, 48.883693210759176], [2.377100393050047, 48.8836105300738], [2.376950202938041, 48.883526479908106], [2.376893693204376, 48.88351412494778]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 34, "zemmour_eric": 64.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-59", "circ_bv": "17", "num_bureau": 59, "roussel_fabien": 32.0, "nb_emargement": 1189.0, "nb_procuration": 59.0, "nb_vote_blanc": 11.0, "jadot_yannick": 100.0, "le_pen_marine": 58.0, "nb_exprime": 1158.0, "nb_vote_nul": 20.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1576.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "73", "geo_point_2d": [48.88393826198988, 2.373274930657029], "melenchon_jean_luc": 465.0, "poutou_philippe": 2.0, "macron_emmanuel": 345.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.315226109111446, 48.83156260976371], [2.315222163079183, 48.831566305186605], [2.315159450268226, 48.83158156015563], [2.314964527490241, 48.831624522228154], [2.314783117943106, 48.831668647848296], [2.314588194529347, 48.831711609304215], [2.314406784360514, 48.83175573435011], [2.314381881089201, 48.83176282796445], [2.3144093688654, 48.83181206441854], [2.314566705864768, 48.831898512040425], [2.314723165835656, 48.83198435543708], [2.31488050387539, 48.832070802632835], [2.315036964880112, 48.8321566456058], [2.315194302598, 48.832243092367676], [2.315350764636559, 48.83232893491699], [2.315508104757042, 48.83241538126056], [2.315664567829445, 48.832501223386124], [2.315821908990312, 48.83258766930359], [2.315978373096566, 48.832673511005446], [2.316135713935588, 48.83275995648902], [2.316292179063899, 48.832845798666504], [2.31644952230555, 48.832932243731754], [2.3166059884794192, 48.83301808458616], [2.316763332761469, 48.83310452922532], [2.316919799969304, 48.83319036965604], [2.317077143929512, 48.83327681386128], [2.317233613533466, 48.833362653876016], [2.31723725773134, 48.833365776617185], [2.317238683848397, 48.833368291311366], [2.317244269160425, 48.83337621429562], [2.31724818958864, 48.83338851491846], [2.317261424385672, 48.833392069242315], [2.317296368216839, 48.83341141096486], [2.317332084131751, 48.833430677938644], [2.317354163952143, 48.83343625506135], [2.317368806500359, 48.83342250627243], [2.317494944362588, 48.83333398221152], [2.317620003604474, 48.83324591953337], [2.317746140612837, 48.8331573951936], [2.317871200369078, 48.833069332246666], [2.317997336523579, 48.832980807628054], [2.318122394069495, 48.83289274439681], [2.318247452555222, 48.83280468103572], [2.318373587430415, 48.832716155999336], [2.318498643705832, 48.83262809235393], [2.318624777727181, 48.83253956703871], [2.318749834516959, 48.832451503124545], [2.318875967684466, 48.83236297753047], [2.318877985454371, 48.83236181533841], [2.319049558394707, 48.83228178838508], [2.319234194344401, 48.83219494543247], [2.319405767550915, 48.83211491796401], [2.319590402316179, 48.83202807444859], [2.319761973064437, 48.83194804644949], [2.319946606645278, 48.83186120237127], [2.319992276006698, 48.83183989954028], [2.320008926046045, 48.83182850469867], [2.319993111975614, 48.831813827836854], [2.319908064588525, 48.831686939003774], [2.319824416992452, 48.831560756868065], [2.319739370428838, 48.831433867886346], [2.319655723647255, 48.8313076856042], [2.319655635457379, 48.831307553793856], [2.319571439038958, 48.83118687877896], [2.319487392117883, 48.8310654256815], [2.319403196479971, 48.83094475052208], [2.319319151703504, 48.83082329728792], [2.3192349568460893, 48.830702621983974], [2.319150911489748, 48.83058116859759], [2.319117348330079, 48.83054893278282], [2.31909733254982, 48.83055489051325], [2.319017859860469, 48.830579612446726], [2.318856849512235, 48.830630065185446], [2.318677796654102, 48.830685763510154], [2.318516785660766, 48.830736214886954], [2.318337733436802, 48.83079191270503], [2.318176721774654, 48.83084236451862], [2.317997668834648, 48.83089806092296], [2.317836656515547, 48.83094851227397], [2.317656723256127, 48.830991477887075], [2.3174837306896, 48.83104753546879], [2.317303796785748, 48.831090501446475], [2.317130803511115, 48.831146558512785], [2.317126855851662, 48.83114737509011], [2.316946921309078, 48.83119034052708], [2.316686954942051, 48.83121652301924], [2.31650701843605, 48.83125948778398], [2.316325611464738, 48.831303615758074], [2.316145674372117, 48.83134657907653], [2.315964265429778, 48.831390706491334], [2.315784329100853, 48.83143366927062], [2.315602919549584, 48.83147779613392], [2.315422982610555, 48.83152075926554], [2.315304285205311, 48.831549631464384], [2.315264438039824, 48.83154447836292], [2.315243024783565, 48.83155460774158], [2.315226109111446, 48.83156260976371]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 64, "zemmour_eric": 71.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-24", "circ_bv": "11", "num_bureau": 24, "roussel_fabien": 19.0, "nb_emargement": 1251.0, "nb_procuration": 75.0, "nb_vote_blanc": 12.0, "jadot_yannick": 129.0, "le_pen_marine": 54.0, "nb_exprime": 1235.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1619.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1251, "quartier_bv": "56", "geo_point_2d": [48.83192653247228, 2.3174727190221107], "melenchon_jean_luc": 329.0, "poutou_philippe": 10.0, "macron_emmanuel": 498.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.380322790995355, 48.87883363358004], [2.380315278465591, 48.87883623512747], [2.380183703711785, 48.87883819981391], [2.380000505193457, 48.87884004360155], [2.379801101497042, 48.878843019951574], [2.379617902948217, 48.87884486315367], [2.379418499222203, 48.87884783796718], [2.379235299279445, 48.878849680576714], [2.379035895502414, 48.87885265565219], [2.378852696892626, 48.878854497683335], [2.378653293075299, 48.87885747212151], [2.378470094435039, 48.878859313567155], [2.378467562445989, 48.87885919520009], [2.378305782527467, 48.878841558371924], [2.3781609419647642, 48.87883268335849], [2.378133270495975, 48.87882769312796], [2.378124515505732, 48.878831681147794], [2.378085851710946, 48.87882746658517], [2.377879739317271, 48.87880488547453], [2.377679294684914, 48.878783032250745], [2.377478851573469, 48.87876117959726], [2.377272739705413, 48.8787385974402], [2.377072295582883, 48.878716743198765], [2.376866184056106, 48.878694161240134], [2.376665740275297, 48.878672306317156], [2.376459630464103, 48.87864972366474], [2.376259187024824, 48.878627868060185], [2.3760530762131102, 48.87860528380058], [2.3758526331048, 48.8785834284137], [2.375646522645253, 48.878560843453215], [2.375630707412774, 48.87857050792148], [2.375648577013775, 48.878703619382605], [2.375664861364435, 48.87883351104641], [2.375682731143069, 48.878966622470664], [2.37569901429769, 48.87909651409169], [2.375716885617313, 48.879229625486204], [2.375733168939345, 48.879359517071585], [2.375751040436411, 48.879492628429205], [2.375767323936635, 48.879622519079646], [2.375785194247876, 48.87975563039327], [2.375801479268208, 48.879885521914424], [2.375801487885397, 48.879885599301744], [2.375809567836415, 48.87997334409398], [2.375819908470274, 48.88006542014678], [2.375813997342244, 48.880073512075334], [2.375691259725682, 48.88012876903595], [2.375568644242156, 48.88018166486609], [2.37555251577708, 48.88019421182948], [2.375566696863085, 48.88020829555657], [2.375717656532903, 48.88028335758887], [2.375872280732929, 48.88036022009971], [2.37602324263627, 48.88043528264268], [2.376177866385644, 48.88051214384188], [2.376328829169804, 48.880587205989166], [2.376483453821236, 48.88066406678308], [2.37663441748622, 48.880739128534714], [2.37678904303961, 48.880815988923324], [2.376940007585522, 48.88089105027927], [2.37709463403022, 48.880967911161896], [2.377095008231973, 48.88096809027666], [2.377255774418215, 48.88104251423013], [2.377413989128834, 48.88111539943001], [2.377574756225658, 48.881189822945174], [2.377732973204473, 48.88126270682159], [2.377893739848469, 48.88133712989137], [2.378051957710383, 48.88141001423575], [2.378212725264961, 48.88148443686725], [2.378370944031661, 48.88155731988103], [2.37853171249672, 48.881631742074205], [2.378689932146634, 48.881704625556026], [2.378850701522382, 48.881779047310864], [2.379008922076872, 48.88185192946207], [2.379169692363208, 48.881926350778656], [2.3793279138010313, 48.88199923339781], [2.379488684997858, 48.88207365427607], [2.37964690732964, 48.88214653646389], [2.379807679447872, 48.88222095600459], [2.3799659026735123, 48.88229383776112], [2.380112794220935, 48.88236149938927], [2.380273567657847, 48.882435919189064], [2.380284899811335, 48.882441139087916], [2.380293801422118, 48.882442742799356], [2.380486174644286, 48.88243276119823], [2.380675405982461, 48.8824228997334], [2.380867777694643, 48.8824129175119], [2.381057010262578, 48.882403054551524], [2.381249381828303, 48.88239307171669], [2.381438612877728, 48.88238320904526], [2.381464034219118, 48.88238426669068], [2.381469940437043, 48.88236781073197], [2.381470191015842, 48.88233144411996], [2.3814672642428922, 48.882303701831006], [2.381468446144171, 48.882299367782174], [2.381485005751431, 48.88227525332695], [2.381485062627435, 48.882275171782005], [2.381578263962901, 48.88214294665407], [2.381660506338443, 48.88202628076828], [2.381661238365563, 48.88202538072454], [2.381765710155709, 48.88191268857915], [2.381870931967866, 48.88179937966942], [2.381975404225081, 48.88168668642567], [2.382080625124374, 48.881573377308364], [2.382185096474459, 48.88146068385851], [2.382290316460898, 48.88134737453368], [2.382394785529687, 48.88123468176991], [2.382500004613949, 48.88112137133825], [2.382604474139147, 48.881008678375416], [2.382709692299912, 48.88089536863553], [2.382814160928674, 48.880782674567264], [2.382919378176616, 48.88066936461985], [2.383023844534796, 48.8805566703385], [2.383129060869927, 48.880443360183506], [2.383233527673876, 48.88033066660235], [2.383338743106855, 48.88021735534058], [2.383443207640257, 48.88010466154631], [2.383548423513278, 48.87999135098327], [2.383652887150276, 48.87987865608366], [2.383758100747035, 48.8797653453061], [2.383862564840468, 48.87965265020739], [2.383967777524454, 48.87953933922232], [2.38407223933675, 48.87942664480981], [2.384177451118614, 48.87931333271793], [2.384179951099413, 48.87929817208559], [2.384164923039719, 48.87929108180683], [2.383932945423132, 48.879257810968305], [2.38371756279497, 48.879224137670576], [2.383714602799642, 48.87922342904955], [2.383559708552485, 48.879172269996474], [2.383405773084197, 48.87911962009139], [2.383250879449041, 48.879068460633924], [2.3830969445997843, 48.87901581032676], [2.382942051566178, 48.87896465136418], [2.382788117346507, 48.8789119997557], [2.382633224925001, 48.87886084038871], [2.38247929132447, 48.87880818837818], [2.382472757069868, 48.878807180698026], [2.382273353640548, 48.87881016116599], [2.382060884929848, 48.878812806762035], [2.381861481455522, 48.878815786543925], [2.381649012711633, 48.87881843050975], [2.381449609192215, 48.87882140960561], [2.381237140393797, 48.87882405373969], [2.381037736829192, 48.87882703214956], [2.380825269350379, 48.8788296755597], [2.380625865740802, 48.87883265328352], [2.380413396854708, 48.87883529595562], [2.380345567952915, 48.87883630827371], [2.380322790995355, 48.87883363358004]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 35, "zemmour_eric": 73.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-5", "circ_bv": "16", "num_bureau": 5, "roussel_fabien": 12.0, "nb_emargement": 1021.0, "nb_procuration": 56.0, "nb_vote_blanc": 7.0, "jadot_yannick": 87.0, "le_pen_marine": 44.0, "nb_exprime": 1008.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 1, "nb_inscrit": 1348.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1021, "quartier_bv": "76", "geo_point_2d": [48.88022341832237, 2.379747282712506], "melenchon_jean_luc": 357.0, "poutou_philippe": 6.0, "macron_emmanuel": 354.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37167416180715, 48.895480104709335], [2.37167301200805, 48.89548010407254], [2.371585561328112, 48.895548347681654], [2.371426968535352, 48.8956741752545], [2.371339517206927, 48.89574241867185], [2.371289958854494, 48.89574968669154], [2.371278281042891, 48.8957651305161], [2.371263052971316, 48.8957763855649], [2.371294183070252, 48.89579474848548], [2.371262225298511, 48.89587191391085], [2.371235396936746, 48.89591669485727], [2.371233150778297, 48.895919720958126], [2.371123291080278, 48.89601093382509], [2.371020465291377, 48.89610132827825], [2.370917637770745, 48.89619172352776], [2.370807778320771, 48.89628293519054], [2.3707049500720743, 48.89637333024245], [2.370595089866267, 48.896464541694996], [2.370492260900572, 48.89655493565005], [2.370382399928054, 48.896646147791614], [2.370379448157045, 48.896651458926485], [2.3703732311478243, 48.896782624866766], [2.370368413774578, 48.896907795211334], [2.370362196707047, 48.897038961120344], [2.370357379283552, 48.89716413143516], [2.370351162157508, 48.89729529731284], [2.370346343319932, 48.89742046759076], [2.37034012749941, 48.89755163344434], [2.370335308611475, 48.8976768036925], [2.370330491064414, 48.89780197393333], [2.370324273794455, 48.89793313973318], [2.370319454833091, 48.89805830993704], [2.370313238868771, 48.898189475712805], [2.370308419857147, 48.89831464588694], [2.370302202470357, 48.89844581162421], [2.370297384772536, 48.89857098177576], [2.370291167327329, 48.89870214748171], [2.370299217233379, 48.89871550416809], [2.3703877356507093, 48.89871542366991], [2.370589161369683, 48.898719549087524], [2.370791170905237, 48.89872356302043], [2.370992596687567, 48.89872768775951], [2.371194606285802, 48.89873170101187], [2.371396032131579, 48.898735825072436], [2.3715980431456, 48.89873983855073], [2.3717994677018, 48.898743961026284], [2.372001478778489, 48.89874797382407], [2.3722029047619753, 48.89875209562827], [2.372404914537353, 48.8987561077384], [2.372606340584246, 48.89876022886406], [2.372808350422271, 48.89876424029368], [2.373009776532664, 48.8987683607408], [2.373211786433325, 48.8987723714899], [2.373413212607003, 48.89877649125845], [2.37361522393426, 48.89878050133421], [2.37381664879653, 48.89878462131638], [2.374018660197217, 48.89878862981233], [2.374220086486932, 48.89879274912307], [2.374422096586248, 48.89879675693137], [2.374623522939222, 48.898800875563595], [2.374825533101126, 48.898804882691394], [2.375026959517454, 48.89880900064509], [2.375228969742034, 48.89881300709238], [2.375430396221704, 48.89881712436748], [2.375632407861935, 48.89882113104067], [2.37583383305175, 48.898825246730866], [2.376035844754545, 48.89882925272354], [2.376237270007673, 48.898833367735186], [2.37643928177302, 48.89883737304735], [2.3766407084535253, 48.898841487387536], [2.376842718917441, 48.898845492012065], [2.377044145661138, 48.89884960567377], [2.377246156187585, 48.89885360961777], [2.37744758298381, 48.89885772350015], [2.377649594947504, 48.89886172587151], [2.377851020443138, 48.89886583906826], [2.378053032469335, 48.898869840759055], [2.378254458028134, 48.89887395327731], [2.378456470116824, 48.898877954287606], [2.378657897102854, 48.89888206613437], [2.378859907890054, 48.89888606645708], [2.379061334939433, 48.89889017762527], [2.379263345778381, 48.898894178166735], [2.379464772901619, 48.89889828775715], [2.379666785167009, 48.89890228762516], [2.379868210989491, 48.89890639652996], [2.38007022331734, 48.89891039571742], [2.380271649203133, 48.898914503943665], [2.380473661593427, 48.898918502450655], [2.380675088906291, 48.89892261000543], [2.380877099995049, 48.898926607824826], [2.3810785273711, 48.898930714701045], [2.381280538522385, 48.89893471183993], [2.381481965950931, 48.89893881893686], [2.381683978539189, 48.89894281450303], [2.381885404666932, 48.89894692091437], [2.382087417317588, 48.89895091580002], [2.382288843508495, 48.8989550215328], [2.382490856221539, 48.898959015737944], [2.382692283839677, 48.8989631207992], [2.382894295251122, 48.898967114316775], [2.382898879381202, 48.89896668738104], [2.383082335977373, 48.898927389133355], [2.38326910911506, 48.898887788427], [2.383452565153722, 48.89884848960936], [2.383639337715975, 48.89880888922206], [2.383822793197127, 48.89876958983448], [2.384009565205438, 48.89872998796769], [2.38419302012907, 48.89869068801017], [2.384379791561949, 48.89865108646245], [2.3845632459281623, 48.89861178593499], [2.384750016806974, 48.89857218290778], [2.384933470615554, 48.89853288181038], [2.385120240919036, 48.898493279102226], [2.385303694170185, 48.8984539774349], [2.385490463919576, 48.89841437324728], [2.385673916613083, 48.898375071010015], [2.385860685787247, 48.89833546714146], [2.386044137923209, 48.898296164334276], [2.386230906543157, 48.89825655898623], [2.386239107885987, 48.89824422105918], [2.386146959992599, 48.898112956128315], [2.386044786297887, 48.897982336680435], [2.386055899986467, 48.89796431563725], [2.386001436541143, 48.89793828635643], [2.385883128670453, 48.89783253280967], [2.385768867418353, 48.89772916418575], [2.385650560505918, 48.89762340948975], [2.385536300174451, 48.89752004062421], [2.385417995562975, 48.897414286584535], [2.385303734788396, 48.897310917470314], [2.385189474467546, 48.897207548237326], [2.385071171270577, 48.89710179382488], [2.384956913234366, 48.89699842435731], [2.384838609631805, 48.896892668788645], [2.384724352516194, 48.896789299079444], [2.384606049850611, 48.89668354416015], [2.384491793655792, 48.896580174209305], [2.384373491937801, 48.89647441904009], [2.384259236663561, 48.896371048847634], [2.384140935903891, 48.89626529252924], [2.3841036729315, 48.896231578895744], [2.384067906935646, 48.896222712055334], [2.3840409844385, 48.89623601835884], [2.383844313527799, 48.896252457868854], [2.383650254051779, 48.89626904899107], [2.383453582903476, 48.89628548695965], [2.383259523179833, 48.89630207744822], [2.383062850408938, 48.896318515666884], [2.382868791801481, 48.89633510552885], [2.382672118782454, 48.89635154310535], [2.382478058563481, 48.89636813232661], [2.382281386670909, 48.8963845683687], [2.382087326204339, 48.896401156956344], [2.381890654052989, 48.89641759325555], [2.381696593338825, 48.89643418120955], [2.381499920950056, 48.89645061596732], [2.381305859977627, 48.89646720418692], [2.38110918597686, 48.89648363829548], [2.380915126131454, 48.89650022498923], [2.380718451871914, 48.89651665935485], [2.380524390415135, 48.89653324540794], [2.380327717282032, 48.896549678239204], [2.380133655577699, 48.89656626365857], [2.379936982185932, 48.896582696746925], [2.379742920233952, 48.89659928153268], [2.379546245230213, 48.896615713971805], [2.37935218439461, 48.89663229813097], [2.379155509153545, 48.896648729028655], [2.378961446706501, 48.8966653125471], [2.378767385499847, 48.89668189575789], [2.378570709876029, 48.8966983265937], [2.378376647057944, 48.89671490916378], [2.378179972550118, 48.896731339364514], [2.377985909484424, 48.89674792130092], [2.377789234739331, 48.896764349960215], [2.377595171426144, 48.89678093126297], [2.377398495058381, 48.89679736017224], [2.377204432861624, 48.896813940848396], [2.377007756256622, 48.896830368216264], [2.376813692437708, 48.89684694915095], [2.376617016948642, 48.896863375883726], [2.376422952893124, 48.896879955285456], [2.376226277145213, 48.896896382275344], [2.376032212842234, 48.89691296104342], [2.375835536857135, 48.896929386491834], [2.375827515715888, 48.89692843907541], [2.375655355592984, 48.89686925159487], [2.375481762648662, 48.8968085581289], [2.375309603315251, 48.896749370144875], [2.37513601116293, 48.89668867707036], [2.37496385262981, 48.89662948768359], [2.37479026128028, 48.89656879410124], [2.374618103525859, 48.8965096051102], [2.374444511626015, 48.89644891011368], [2.374272356025001, 48.8963897206263], [2.374098764917146, 48.89632902602123], [2.373926608752535, 48.896269835123945], [2.373753019811381, 48.89620914001824], [2.373580864436278, 48.89614994861742], [2.373407276297919, 48.89608925300392], [2.373235121701495, 48.89603006199893], [2.373061534376758, 48.89596936497836], [2.372889380569837, 48.89591017346989], [2.372715792673175, 48.89584947683367], [2.372543641030487, 48.895790283929564], [2.372370053936626, 48.89572958678555], [2.372319926421032, 48.895712351244285], [2.3723087071801903, 48.89570245660545], [2.3722677400140872, 48.89569970040149], [2.372145715373576, 48.89565774337366], [2.372017258223627, 48.89561705649825], [2.371845106779756, 48.89555786257034], [2.371716651475149, 48.89551717537596], [2.37167416180715, 48.895480104709335]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 18, "zemmour_eric": 37.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-50", "circ_bv": "16", "num_bureau": 50, "roussel_fabien": 21.0, "nb_emargement": 954.0, "nb_procuration": 43.0, "nb_vote_blanc": 13.0, "jadot_yannick": 54.0, "le_pen_marine": 46.0, "nb_exprime": 934.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1235.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 954, "quartier_bv": "74", "geo_point_2d": [48.89761530827116, 2.3776883430765765], "melenchon_jean_luc": 506.0, "poutou_philippe": 8.0, "macron_emmanuel": 217.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.380396456832899, 48.89403685826699], [2.380378160176392, 48.8940330629039], [2.380294047125859, 48.89396702060178], [2.380156362186043, 48.8938597936678], [2.380032880519679, 48.89376284016348], [2.379895196657666, 48.8936556129093], [2.379771715961872, 48.893558659117616], [2.379634033177756, 48.8934514315432], [2.379510553452522, 48.89335447746412], [2.37937287174609, 48.89324724956948], [2.379249392991408, 48.8931502952031], [2.379111712362751, 48.89304306698822], [2.378988234578611, 48.89294611233451], [2.378864757254336, 48.892849157544866], [2.378727078214115, 48.8927419288583], [2.378708439382548, 48.89274056861268], [2.3785509053219283, 48.89281917096173], [2.37839869269984, 48.892896168458975], [2.3782411577009253, 48.89297477038943], [2.37808894552971, 48.89305176748915], [2.3779314082284753, 48.893130368993845], [2.377779195144313, 48.89320736568895], [2.377621658268598, 48.8932859667821], [2.3774694429076613, 48.89336296306543], [2.377311905093438, 48.89344156373998], [2.377159688819543, 48.893518559618656], [2.37713618415453, 48.89353047294869], [2.377136917963091, 48.89354472107551], [2.377248811906345, 48.893646318993966], [2.3773720953375452, 48.89375734241744], [2.377483990186003, 48.89385894099572], [2.3776072732583042, 48.893969964148475], [2.377719170397123, 48.89407156159514], [2.377842454463628, 48.89418258538348], [2.377954351154476, 48.89428418258361], [2.37807763760054, 48.89439520521614], [2.37818953519653, 48.89449680307604], [2.378312822647571, 48.89460782544488], [2.378424721170195, 48.89470942216605], [2.378548009615589, 48.89482044517053], [2.378659909054117, 48.89492204165221], [2.378783197151268, 48.89503306348666], [2.378895097494974, 48.895134660628166], [2.379018387961002, 48.89524568220598], [2.379130289231359, 48.89534727820877], [2.37925358069168, 48.89545830042217], [2.379365482877967, 48.89555989618545], [2.379385042976216, 48.895580056817515], [2.3793992089512512, 48.89558142884311], [2.379496913435912, 48.895527116367795], [2.379637370917823, 48.89544896586268], [2.379799157187402, 48.89535903218323], [2.379939615125954, 48.895280881318676], [2.380101400361739, 48.89519094631782], [2.380241857382547, 48.89511279598605], [2.380403641573933, 48.89502286056308], [2.38054409633444, 48.89494470895854], [2.380705879481534, 48.89485477311348], [2.380846334687987, 48.894776622048795], [2.380986789483473, 48.89469846991453], [2.381148571100713, 48.89460853345118], [2.381289023625215, 48.89453038094343], [2.38145080418739, 48.89444044495729], [2.381445515727514, 48.89442487833151], [2.381247063041034, 48.8943901035154], [2.381078617032354, 48.894360812812764], [2.380880164835127, 48.89432603738663], [2.380711719240031, 48.89429674616621], [2.380704752907599, 48.894293834121946], [2.380581267826798, 48.89419688121445], [2.380446235731413, 48.89409115493694], [2.380406866107511, 48.89406024403235], [2.380396456832899, 48.89403685826699]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 41, "zemmour_eric": 112.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-44", "circ_bv": "16", "num_bureau": 44, "roussel_fabien": 25.0, "nb_emargement": 1016.0, "nb_procuration": 17.0, "nb_vote_blanc": 10.0, "jadot_yannick": 30.0, "le_pen_marine": 83.0, "nb_exprime": 998.0, "nb_vote_nul": 8.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1573.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1016, "quartier_bv": "74", "geo_point_2d": [48.894146621853, 2.3791462952490803], "melenchon_jean_luc": 414.0, "poutou_philippe": 10.0, "macron_emmanuel": 228.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.251276327244846, 48.84289030424618], [2.251269457063979, 48.842905670194526], [2.251331997624025, 48.84303302690108], [2.251390766524705, 48.84315490256599], [2.251453309042751, 48.843282259189245], [2.251512078508146, 48.8434041347673], [2.251574620246191, 48.84353149218942], [2.251633390289219, 48.84365336678139], [2.251692160594194, 48.84377524223044], [2.251754704593154, 48.8439025986253], [2.2518134754628623, 48.844024473987545], [2.251871553125943, 48.84414273579366], [2.251930324539693, 48.84426461107222], [2.2519884027355213, 48.84438287279616], [2.252046481194926, 48.8445011344793], [2.252105252059367, 48.84462300962429], [2.25216333106453, 48.844741270326], [2.252222103835458, 48.84486314539579], [2.252224170530513, 48.844867353878286], [2.252282943586001, 48.84498922890445], [2.252346721766877, 48.84511909279674], [2.252405495405744, 48.8452409668359], [2.252469274200064, 48.84537083063351], [2.252513177557212, 48.84546022625011], [2.252571951957151, 48.84558210106946], [2.252574039916223, 48.845586351046684], [2.252574490061752, 48.84558726851839], [2.252554317451831, 48.8455982766885], [2.252560830265515, 48.8456080161857], [2.252599357205468, 48.845624610129796], [2.252730868770829, 48.845681252857524], [2.252897698202488, 48.84575347723464], [2.253067737642896, 48.845826714317376], [2.253234568019927, 48.84589893731605], [2.253404609770895, 48.84597217391895], [2.2535714397050572, 48.84604439732926], [2.253741482416799, 48.8461176325445], [2.253908313283444, 48.846189855475636], [2.254078356930406, 48.846263091101804], [2.254245188742307, 48.84633531265445], [2.254415233337268, 48.846408547792294], [2.254582066068889, 48.846480769765016], [2.254752111611752, 48.846554004414465], [2.254918945288721, 48.84662622500874], [2.2550889917796892, 48.846699459169834], [2.255255826376289, 48.84677168018421], [2.25542266281063, 48.846843900070425], [2.255592709357104, 48.846917133492816], [2.255759546711092, 48.84698935379908], [2.255929594218413, 48.84706258583381], [2.256096432505001, 48.84713480566089], [2.256266482309987, 48.847208038114964], [2.256433320179306, 48.847280256555145], [2.256603370932404, 48.847353488520795], [2.256611350620256, 48.84735494291695], [2.256793653743375, 48.84735021975227], [2.256974309278283, 48.84734549956808], [2.257154964780465, 48.84734077911107], [2.257337267804763, 48.847336055118], [2.257517923254139, 48.84733133321364], [2.257700224849986, 48.84732660865902], [2.2578808802209203, 48.84732188710582], [2.258063183113318, 48.84731716200661], [2.258069993265326, 48.84731816386522], [2.258244082437522, 48.847377726546256], [2.258418248121481, 48.847438930789124], [2.258592338095232, 48.847498492956966], [2.258766503216389, 48.84755969757708], [2.258940593991595, 48.84761925923172], [2.259114759925357, 48.847680463338264], [2.259131087271549, 48.847678689264946], [2.259188082513512, 48.84763872893651], [2.259226830793573, 48.84761412022988], [2.259230141753997, 48.847605809886886], [2.259184094593843, 48.84748213870022], [2.259138596208745, 48.84736196132606], [2.259092550843797, 48.847238290085514], [2.259047052882793, 48.847118112650264], [2.259001006575149, 48.846994442238255], [2.258955509050923, 48.84687426384257], [2.258910013086337, 48.84675408632438], [2.258863967425528, 48.846630415819234], [2.25886391091993, 48.846630268872126], [2.258807218003817, 48.84648874105958], [2.258751491115924, 48.84634925445727], [2.258694800173378, 48.84620772656424], [2.25863907251149, 48.84606824076525], [2.258638712854734, 48.8460669893129], [2.258616519547668, 48.84594204902955], [2.258594204095552, 48.845817943484555], [2.25857201100114, 48.845693003165046], [2.258549697137008, 48.84556889669316], [2.25854966402819, 48.8455670096108], [2.258565411513246, 48.84545624462517], [2.258585520731576, 48.84535132557973], [2.258575661417118, 48.84533124900608], [2.258549864833009, 48.8453187192001], [2.258549384966465, 48.84531873421341], [2.258388432337973, 48.84532767101223], [2.258175408504169, 48.84533700242063], [2.258014455755133, 48.84534593871623], [2.257801431779702, 48.84535526945855], [2.25764047891013, 48.84536420525088], [2.257627326720973, 48.84535099553738], [2.257722481871496, 48.845233809902155], [2.257810962319752, 48.84512303755074], [2.257906116641159, 48.84500585174551], [2.2579945963121952, 48.84489507923559], [2.258089749804393, 48.84477789326037], [2.258178228698117, 48.844667120591986], [2.258273381361218, 48.84454993444677], [2.25836185947764, 48.844439161619924], [2.2584570113116538, 48.844321975304666], [2.258545488650783, 48.844211202319435], [2.258545671380058, 48.8442030515571], [2.258464514686688, 48.844093709399104], [2.2583801066145828, 48.84398258425047], [2.258298950611971, 48.84387324195855], [2.25821454324994, 48.84376211667114], [2.258133387937978, 48.843652774245285], [2.258048981298813, 48.8435416479198], [2.257967825302186, 48.843432306250875], [2.257883420735583, 48.84332117979506], [2.257802265442399, 48.84321183709291], [2.257717860210538, 48.843100711389184], [2.257694685745685, 48.843069488008815], [2.257679316421076, 48.84305814959561], [2.257645174272051, 48.84306712031513], [2.2575270142833332, 48.84311227385175], [2.257397166656009, 48.84316243257157], [2.257379912375888, 48.84316050243716], [2.257245093875437, 48.84305605064464], [2.257111439950719, 48.8429529100081], [2.256976621175637, 48.84284845698584], [2.256842968314565, 48.842745316030104], [2.256708151977007, 48.842640862694346], [2.256574500179465, 48.842537721419546], [2.256562722653835, 48.84253462273943], [2.256358283712482, 48.84254878887803], [2.256175866773316, 48.842566192634465], [2.256166233861506, 48.84256987952243], [2.256028507073804, 48.84269607106951], [2.255886842744016, 48.84282171542044], [2.255873720027505, 48.84282522228752], [2.255693974074847, 48.84280588639188], [2.255524743534375, 48.84278701228876], [2.255355513103622, 48.842768138845194], [2.255175767540088, 48.842748802169965], [2.255172757834461, 48.842748689896226], [2.254978840339533, 48.84275564956579], [2.254786439766775, 48.8427625796979], [2.254592522155722, 48.84276953964048], [2.254400122842911, 48.84277646915966], [2.254206205128493, 48.84278342847597], [2.254013804350565, 48.842790357365296], [2.253819886545872, 48.84279731515594], [2.253627485652344, 48.84280424432318], [2.253433567744412, 48.84281120148758], [2.253241168123638, 48.842818129142614], [2.253047250099592, 48.84282508658001], [2.2528548490138283, 48.84283201360511], [2.252660930886453, 48.842838970416224], [2.252468529698096, 48.842845896819945], [2.252274611480508, 48.84285285210546], [2.25208221017656, 48.8428597787871], [2.251889810196972, 48.84286670426846], [2.251695891824743, 48.84287365861576], [2.251503490367081, 48.84288058436651], [2.251309571891664, 48.84288753808753], [2.251276327244846, 48.84289030424618]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 191, "zemmour_eric": 181.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "16-49", "circ_bv": "14", "num_bureau": 49, "roussel_fabien": 9.0, "nb_emargement": 1314.0, "nb_procuration": 76.0, "nb_vote_blanc": 5.0, "jadot_yannick": 44.0, "le_pen_marine": 95.0, "nb_exprime": 1309.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1638.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1314, "quartier_bv": "61", "geo_point_2d": [48.84484113161123, 2.2554875394466074], "melenchon_jean_luc": 167.0, "poutou_philippe": 4.0, "macron_emmanuel": 573.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.415411366734103, 48.854339557370096], [2.415390529192079, 48.854343994571856], [2.415192942445508, 48.85430781960509], [2.415003495660682, 48.85427558997186], [2.414805908079487, 48.854239414357146], [2.4146164617928623, 48.854207183209866], [2.414427015730599, 48.854174952660976], [2.41422943029395, 48.85413877609777], [2.414039983367101, 48.85410654402818], [2.413842398458459, 48.85407036682367], [2.413652953372421, 48.854038135045315], [2.413455367629188, 48.85400195719279], [2.413265923041398, 48.85396972390039], [2.41306833918909, 48.85393354541326], [2.412878895079202, 48.85390131240547], [2.412681310392221, 48.85386513327032], [2.412491866780713, 48.85383289874847], [2.412294283984668, 48.85379671897876], [2.412104839488368, 48.85376448473477], [2.411907257220466, 48.85372830432374], [2.411717814585164, 48.853696068572425], [2.411578889743212, 48.85367062911258], [2.4115665923870733, 48.853666319217545], [2.411552500011179, 48.853666005291345], [2.411493843123923, 48.85365526368586], [2.41129898243551, 48.85362024411622], [2.411101401274089, 48.853584062369805], [2.410906541125752, 48.85354904125953], [2.410708960506816, 48.85351285886282], [2.410647207537503, 48.853501759838686], [2.410629981470563, 48.85350089345768], [2.410614316392507, 48.853533836774695], [2.410589217443908, 48.853672103072455], [2.41056406234428, 48.853810863713264], [2.410538964491595, 48.85394912997273], [2.4105138091244083, 48.85408789056844], [2.410488709642136, 48.85422615677619], [2.410463555380368, 48.85436491643412], [2.410438455621232, 48.85450318349613], [2.410413301091803, 48.854641943108945], [2.410388201076047, 48.854780209226654], [2.410363044906154, 48.854918969686864], [2.410337945986324, 48.855057235766274], [2.410312789548853, 48.85519599618134], [2.41028768899949, 48.855334262209034], [2.410262533657177, 48.855473022585635], [2.410251627217166, 48.85548077876163], [2.410017110670431, 48.85551116639824], [2.409776719444843, 48.855542183820305], [2.4097666761924432, 48.85555434201592], [2.409828980095334, 48.85565742037967], [2.409904565679304, 48.85577963664373], [2.409966870124369, 48.85588271491478], [2.410022612205025, 48.85597160867096], [2.410084917113168, 48.85607468686272], [2.41014065822755, 48.85616358144114], [2.410144346862939, 48.85617448441267], [2.410164596581339, 48.85617861599911], [2.410365533490377, 48.85619908882951], [2.410568388117732, 48.85622040985779], [2.410577274488328, 48.856224008746], [2.410682661344068, 48.85631984501809], [2.410815705582139, 48.85644057276841], [2.410921093324513, 48.856536407912515], [2.411054138668113, 48.856657135374185], [2.411159527276894, 48.8567529711889], [2.411292572363055, 48.85687369835525], [2.411397961848421, 48.85696953394127], [2.411387618245957, 48.85698379704681], [2.411173617250934, 48.85699091475888], [2.410966912429569, 48.85699799245852], [2.410752911318876, 48.85700510941814], [2.410546206384057, 48.857012186390975], [2.410533294489073, 48.85702081226448], [2.410525079653924, 48.857157823068455], [2.410518237742425, 48.857284792232186], [2.4105113971604712, 48.857411761387716], [2.410503182206102, 48.85754877214191], [2.41051498678587, 48.8575580404877], [2.410646604303145, 48.85756970036446], [2.410777723138962, 48.857581471857415], [2.41078945109861, 48.857591253324344], [2.410772320201272, 48.85770755322153], [2.410754958880676, 48.857824094792946], [2.410737829192697, 48.8579403946675], [2.410720467727437, 48.858056935310174], [2.41070333788592, 48.85817323515541], [2.410685976255856, 48.85828977666796], [2.410668844897881, 48.85840607647714], [2.410651484486068, 48.858522617067614], [2.410634352974645, 48.85863891684744], [2.410616991035001, 48.85875545830105], [2.410628739550158, 48.8587652506656], [2.410850911372707, 48.858784961995745], [2.411071213437222, 48.85880466550919], [2.411293385595334, 48.858824376017154], [2.4115136866410563, 48.85884407780933], [2.411531165921626, 48.85885140348506], [2.411546248337255, 48.85884721026471], [2.411736665936492, 48.8588575176373], [2.411923567102841, 48.85886758438852], [2.412113984851282, 48.858877891160525], [2.4123008861635142, 48.858887957322274], [2.412491304061049, 48.858898263493685], [2.412678205519358, 48.85890832906596], [2.412868623565876, 48.8589186346368], [2.413055525170151, 48.85892869961961], [2.413245943365748, 48.85893900458985], [2.413432845115981, 48.85894906898315], [2.413619746928297, 48.85895913398378], [2.413810165356828, 48.858969437156645], [2.4139970673150972, 48.85897950156778], [2.414187485892677, 48.858989804140094], [2.414374387996889, 48.858999867961735], [2.414564806723511, 48.85901016993346], [2.414593777755645, 48.85901883564], [2.41460931887099, 48.85900606723864], [2.414618228305751, 48.85895454605169], [2.414623258871254, 48.858925449910025], [2.4146456528237312, 48.85879817729811], [2.414662739779711, 48.85869936632766], [2.414685132175551, 48.858572093675754], [2.414702218982517, 48.85847328267953], [2.414709591911272, 48.85843064126546], [2.414709934467338, 48.8584286598871], [2.414732326641755, 48.85830138629602], [2.414743691933021, 48.85823566564112], [2.414766322016236, 48.85810479131164], [2.414788715276632, 48.85797751767955], [2.414811345144837, 48.85784664241183], [2.414833738174106, 48.85771936964098], [2.4148561297412803, 48.857592095945385], [2.414878759262553, 48.85746122151877], [2.414901151971706, 48.8573339477918], [2.414923781277873, 48.85720307242694], [2.414946173756009, 48.8570757995613], [2.414968802837075, 48.85694492415747], [2.414991195094196, 48.85681765125377], [2.415013823950063, 48.85668677581103], [2.4150362146234032, 48.85655950286266], [2.415058844616947, 48.85642862738762], [2.4150812350795823, 48.856301353501934], [2.41510386483773, 48.85617047888728], [2.415126255079466, 48.85604320496359], [2.415148884622514, 48.8559123294107], [2.415171274633261, 48.85578505634831], [2.415193902588372, 48.85565418074979], [2.415216293740972, 48.85552690765607], [2.415232909570015, 48.855431630251616], [2.4152495267012313, 48.85533635284338], [2.415271916228644, 48.85520907879687], [2.415276714687618, 48.855181533671335], [2.415277472103236, 48.855177192628574], [2.41527801224039, 48.85517411770352], [2.41530006817794, 48.855047653214555], [2.4153224574579513, 48.85492037912552], [2.415344513180125, 48.85479391459944], [2.415366902232459, 48.85466664137232], [2.415388957749554, 48.854540175909904], [2.415411346584304, 48.85441290264539], [2.415418941113275, 48.85436935647718], [2.415411366734103, 48.854339557370096]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 21, "zemmour_eric": 55.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-35", "circ_bv": "15", "num_bureau": 35, "roussel_fabien": 18.0, "nb_emargement": 961.0, "nb_procuration": 10.0, "nb_vote_blanc": 21.0, "jadot_yannick": 29.0, "le_pen_marine": 107.0, "nb_exprime": 928.0, "nb_vote_nul": 12.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1436.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 961, "quartier_bv": "80", "geo_point_2d": [48.85628285191557, 2.4127267611991523], "melenchon_jean_luc": 456.0, "poutou_philippe": 3.0, "macron_emmanuel": 193.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.369345844018825, 48.86946508549708], [2.369328943127544, 48.86944778579283], [2.369233539224939, 48.86941130050348], [2.369037065697579, 48.869338025525586], [2.368871331629664, 48.86927464226049], [2.368674857764053, 48.86920136667178], [2.368509124560756, 48.86913798379658], [2.368508737768999, 48.86913784055959], [2.368369921895647, 48.869088668765734], [2.368173449447701, 48.869015391442396], [2.368034634217254, 48.86896621925426], [2.367956155824923, 48.86894026811664], [2.36792817021484, 48.86893201818115], [2.367906092504648, 48.86893593782693], [2.367797775154607, 48.86890012062776], [2.367624434385123, 48.86884638850184], [2.367437640878711, 48.868784619570825], [2.367335367901616, 48.868752916892205], [2.367326129974688, 48.86875296339196], [2.367307495781142, 48.868781581714565], [2.367217540156263, 48.86889877130055], [2.367125369245482, 48.86901727382267], [2.367035412803763, 48.86913446324683], [2.366943241061626, 48.86925296560344], [2.366853285166356, 48.86937015487298], [2.366761112592857, 48.86948865706405], [2.366671154517631, 48.8696058461645], [2.3665789811236912, 48.86972434729077], [2.366489023583972, 48.86984153713585], [2.36639684935865, 48.86996003809661], [2.366306889638941, 48.87007722777254], [2.366214714582226, 48.87019572856783], [2.36612475541989, 48.87031291718987], [2.366032579520831, 48.870431418718866], [2.365942618178475, 48.870548607171735], [2.365850441447996, 48.87066710853522], [2.365760479288932, 48.87078429682623], [2.365668303090164, 48.87090279803141], [2.365673260120019, 48.87093022084367], [2.365693185850042, 48.87093573325941], [2.365881064315037, 48.87101142597051], [2.366089256042707, 48.87110789005058], [2.3660950515624393, 48.871115387947604], [2.366094259109617, 48.87122867426437], [2.366090842205211, 48.87137456475693], [2.366090049739291, 48.871487851047114], [2.366086631442835, 48.871633741498094], [2.366085838963814, 48.87174702776168], [2.366082422001822, 48.87189291818553], [2.3660816295097042, 48.87200620442251], [2.366098202516392, 48.87201502655548], [2.3663133211098613, 48.87198367342742], [2.366528786021436, 48.8719524080824], [2.366743904097117, 48.87192105417876], [2.366959367128048, 48.87188978804975], [2.367174484696859, 48.87185843247124], [2.367389948573457, 48.871827165572604], [2.367605065613427, 48.8717958101178], [2.367820527609366, 48.87176454243512], [2.367878266375323, 48.871785616662564], [2.367893693234263, 48.871779033140676], [2.367964764568578, 48.871663775224974], [2.3680433278048643, 48.87153845275356], [2.36811439847983, 48.87142319472391], [2.368192962356403, 48.871297872134186], [2.368264031008879, 48.87118261398339], [2.368342594162592, 48.87105729126816], [2.36841366351888, 48.870942033010635], [2.368492224586607, 48.870816710162735], [2.368563293283571, 48.870701451791255], [2.368641854991592, 48.87057612882502], [2.368712921666009, 48.87046087033243], [2.368791482651303, 48.87033554724073], [2.368862550029639, 48.870220288641384], [2.368941108928789, 48.870094965416996], [2.369012175647828, 48.869979706703724], [2.3690907338242733, 48.86985438335387], [2.369161799884022, 48.86973912452666], [2.369232865629284, 48.86962386564526], [2.369311422738141, 48.86949854211021], [2.369345844018825, 48.86946508549708]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 54, "zemmour_eric": 63.0, "hidalgo_anne": 47.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-6", "circ_bv": "05", "num_bureau": 6, "roussel_fabien": 21.0, "nb_emargement": 1210.0, "nb_procuration": 90.0, "nb_vote_blanc": 10.0, "jadot_yannick": 129.0, "le_pen_marine": 45.0, "nb_exprime": 1198.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1473.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1210, "quartier_bv": "39", "geo_point_2d": [48.87041007598641, 2.36744230873153], "melenchon_jean_luc": 425.0, "poutou_philippe": 3.0, "macron_emmanuel": 387.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3009246422709, 48.88680146012378], [2.300933983040734, 48.88679024243833], [2.301065961560033, 48.88669294260959], [2.301197358322845, 48.88659607271217], [2.301329335845838, 48.886498773475175], [2.3014607316288602, 48.88640190327166], [2.301592709543217, 48.88630460283586], [2.3017241029827202, 48.8862077323182], [2.301856079900792, 48.88611043247419], [2.301987472360424, 48.88601356165043], [2.302119448306434, 48.885916260599664], [2.30225084114972, 48.88581938947771], [2.302382814735849, 48.885722089010756], [2.3025142065993762, 48.885625217582735], [2.302646179213252, 48.88552791590902], [2.302777570096926, 48.88543104417488], [2.302908960491657, 48.88533417228799], [2.303040931618401, 48.885236871052705], [2.303052046417568, 48.88522907198777], [2.303047343755863, 48.88521913666593], [2.3029545771090563, 48.885090093681576], [2.302862223258115, 48.8849616240875], [2.302769457528674, 48.884832580929476], [2.302677104591217, 48.88470411116248], [2.30258433977923, 48.88457506783086], [2.3024919877671888, 48.8844465969917], [2.302399223872645, 48.884317553486405], [2.302306872761815, 48.88418908337364], [2.302227045685736, 48.884078034309205], [2.302141548202143, 48.8839590982455], [2.302061721843205, 48.883848048148316], [2.301976226478243, 48.88372911194958], [2.301896399448767, 48.88361806261027], [2.301810904838956, 48.883499126268646], [2.301731079878112, 48.88338807680387], [2.301645584659886, 48.88326914031132], [2.301565760416165, 48.88315808981386], [2.3014802659531792, 48.88303915317844], [2.301400442402453, 48.88292810344679], [2.301314950058035, 48.88280916667638], [2.30124291938818, 48.88270895790563], [2.301157426411812, 48.882590020091826], [2.301085397711814, 48.8824898112143], [2.300999905442894, 48.8823708741636], [2.300927875985473, 48.882270665163354], [2.300908615403261, 48.88226575834154], [2.300900283478474, 48.88226770801218], [2.300829697238946, 48.882387781555785], [2.300759834322328, 48.88250798877536], [2.30068924608173, 48.8826280613027], [2.300619382518675, 48.882748268414076], [2.300548793616475, 48.88286834173166], [2.3004789294068733, 48.882988548734815], [2.300408341230768, 48.88310862105206], [2.3003384750109612, 48.88322882793906], [2.300267886173338, 48.88334890104651], [2.300198020682605, 48.88346910693399], [2.300127429831778, 48.88358917992446], [2.300057563682489, 48.88370938660298], [2.300042578670279, 48.88371384153399], [2.300048611210506, 48.883739121111766], [2.300047123383064, 48.88380618745047], [2.300045455689904, 48.88388146095533], [2.3000386354070113, 48.883889118482], [2.299877730176163, 48.883950352230194], [2.299716470933238, 48.88401172038906], [2.299555563581181, 48.884072953689476], [2.299394303578852, 48.88413432140759], [2.2992333968449348, 48.88419555337695], [2.299072134719728, 48.88425692064635], [2.298911227216074, 48.88431815307513], [2.298749964331562, 48.88437951990377], [2.29858905607017, 48.884440751892775], [2.298427793789937, 48.884502118288594], [2.298266884783128, 48.88456334893856], [2.298105620380007, 48.884624714885675], [2.298099178638882, 48.8846346111608], [2.298140106585351, 48.88474661127287], [2.298180769071304, 48.884857882241754], [2.298221697368732, 48.88496988230319], [2.298262360215484, 48.88508115232249], [2.298258448425631, 48.88508980886041], [2.2981342938511258, 48.88516684916185], [2.298009535217722, 48.885244262610264], [2.29788537991885, 48.88532130174354], [2.29776062190899, 48.885398714929686], [2.297636465861502, 48.88547575469329], [2.297511705747962, 48.88555316760121], [2.297503948519504, 48.88556371892738], [2.29751032432952, 48.88557146361896], [2.297538435765742, 48.88558287381053], [2.297557294731523, 48.885590528058756], [2.297563003069538, 48.88559518591822], [2.297625331392482, 48.885711315489516], [2.297689289586605, 48.885830480829355], [2.297751618472809, 48.88594661031008], [2.297815577232795, 48.886065776456185], [2.297877906682266, 48.88618190584631], [2.29794186603248, 48.88630107100016], [2.298004196045123, 48.88641720029969], [2.298068155973341, 48.886536365360584], [2.298130486549368, 48.886652494569525], [2.298185094898884, 48.88675423412557], [2.298195186991492, 48.88677068989802], [2.298219777379574, 48.88676494970045], [2.298394643706775, 48.886753651848], [2.298569496309854, 48.88674235455934], [2.298744362485299, 48.88673105619587], [2.29891921493663, 48.886719758396275], [2.299094080960315, 48.886708459521856], [2.299268933259791, 48.88669716121134], [2.299443799131809, 48.886685861825896], [2.299618651279525, 48.88667456300449], [2.2996288712022652, 48.88667039412732], [2.299718130640033, 48.886576633857565], [2.2998101715005452, 48.88647995076398], [2.299827367428652, 48.8864765466265], [2.300007639025056, 48.8865306198901], [2.300187081101315, 48.88658444431019], [2.300367353444777, 48.886638517026945], [2.300546796264655, 48.88669234090266], [2.300727070718816, 48.886746413080445], [2.300906512918666, 48.88680023640385], [2.3009246422709, 48.88680146012378]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 193, "zemmour_eric": 200.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-50", "circ_bv": "04", "num_bureau": 50, "roussel_fabien": 5.0, "nb_emargement": 1283.0, "nb_procuration": 96.0, "nb_vote_blanc": 7.0, "jadot_yannick": 65.0, "le_pen_marine": 39.0, "nb_exprime": 1274.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1515.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1283, "quartier_bv": "66", "geo_point_2d": [48.88505280034467, 2.300350770107931], "melenchon_jean_luc": 74.0, "poutou_philippe": 0.0, "macron_emmanuel": 667.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345025005390149, 48.83515941302548], [2.345036107493764, 48.835148451150836], [2.345077671623921, 48.83513688531361], [2.345267202426097, 48.835084785506254], [2.345439473859931, 48.83503684856206], [2.34561174361462, 48.834988911360306], [2.345801273344876, 48.83493681069977], [2.345973542436243, 48.834888872972655], [2.346163072803547, 48.83483677174163], [2.346171031396555, 48.83482658851819], [2.346139260466129, 48.834801658802725], [2.345999554928085, 48.83470735788893], [2.345860203109833, 48.834614004872485], [2.345720498568252, 48.83451970451629], [2.345581149124969, 48.83442635026723], [2.345577620372, 48.83442463474894], [2.34541020883288, 48.83436802249317], [2.34524675093557, 48.83431544372981], [2.345079340106456, 48.834258831005386], [2.344915884247545, 48.83420625179221], [2.344915004852891, 48.83420598076233], [2.344736704491519, 48.83415497573671], [2.3445565899490273, 48.83410439489519], [2.344378288923647, 48.83405338932323], [2.344198175091249, 48.83400280703809], [2.344019876114892, 48.83395180183397], [2.3438397629812853, 48.83390121900453], [2.343661463352146, 48.83385021235476], [2.343481352268277, 48.833799629887814], [2.343303053337414, 48.83374862269908], [2.34312294159007, 48.833698039680364], [2.342944644719544, 48.83364703196026], [2.342764533682334, 48.83359644749794], [2.342586236136388, 48.83354544013073], [2.342406125797984, 48.833494855124144], [2.342227830312575, 48.83344384722553], [2.342047720672977, 48.83339326167462], [2.341869424534746, 48.833342252330326], [2.341689315582606, 48.833291667134475], [2.341511021504818, 48.83324065725879], [2.3413309132514852, 48.833190071518665], [2.341271258498326, 48.83319115679555], [2.341266797906052, 48.833199701436314], [2.341273611386593, 48.83323750085423], [2.341297393852601, 48.8333649000233], [2.341319830835602, 48.833489358015186], [2.341343613540835, 48.83361675624707], [2.341366050742588, 48.833741214202256], [2.341389833664322, 48.83386861329563], [2.341412271084832, 48.83399307121415], [2.341436054245796, 48.83412046937034], [2.341458491885067, 48.83424492725217], [2.341482275273901, 48.834372325370516], [2.341504713131934, 48.83449678321569], [2.341530552930468, 48.8346250137406], [2.341552991012434, 48.8347494715486], [2.341555528070129, 48.834766269554116], [2.341557420671894, 48.834768512208605], [2.341562897385538, 48.83479568983407], [2.341562970705896, 48.83479614082196], [2.3415675415402353, 48.834832910634184], [2.341588409719219, 48.83496680225112], [2.3416127399153, 48.83509712441994], [2.341633608316154, 48.8352310159973], [2.341657938748557, 48.83536133812614], [2.34167880738254, 48.835495228764735], [2.341703138039911, 48.835625551752926], [2.341703189816496, 48.835625874911386], [2.341724058672716, 48.83575976551043], [2.341741981259881, 48.835896207573164], [2.341762851686191, 48.836030098140576], [2.341780774479204, 48.83616653926524], [2.341801643739811, 48.83630043068531], [2.341819566727314, 48.83643687177119], [2.341840436195692, 48.836570763152125], [2.34185835937769, 48.836707204199236], [2.341875628239589, 48.83684368119854], [2.341893551607547, 48.83698012220707], [2.341910820652005, 48.837116599168006], [2.341928744205824, 48.8372530401379], [2.341946013432846, 48.83738951706044], [2.341963937172732, 48.8375259579918], [2.341981206582318, 48.83766243487595], [2.341999130508173, 48.83779887576871], [2.342016400100226, 48.83793535261446], [2.3420343242007, 48.83807179436792], [2.342041973008171, 48.838132234334815], [2.342055363961157, 48.838152246958174], [2.34211931670003, 48.83814452868714], [2.342279184857749, 48.838069086649575], [2.342431852730379, 48.83799650437361], [2.34259171999319, 48.837921061009055], [2.342744385623352, 48.83784847921642], [2.342904251979708, 48.837773035424185], [2.343056918114829, 48.83770045233124], [2.343209582462511, 48.83762786903127], [2.343369447457607, 48.83755242550176], [2.343522110936445, 48.837479841793304], [2.343681976387558, 48.837404397843585], [2.343687344908318, 48.83739905267998], [2.34373140928113, 48.83726958226719], [2.343777249629878, 48.83713981938], [2.343821313571557, 48.83701034800473], [2.343867153457195, 48.836880585952365], [2.343911216956323, 48.83675111451394], [2.3439570564015, 48.836621351497705], [2.344001119446967, 48.836491880895494], [2.344046958440368, 48.83636211781475], [2.344091021043403, 48.83623264714936], [2.344136860947259, 48.83610288401156], [2.344180921745539, 48.835973413275596], [2.344226761197727, 48.83584365007325], [2.344270821564906, 48.835714178374865], [2.34431666055402, 48.835584416007336], [2.344360721840995, 48.83545494425327], [2.344406559016045, 48.83532518181375], [2.344414535260791, 48.83531893624385], [2.344551251633656, 48.83528096856854], [2.344723523011938, 48.835233032656454], [2.344860238945743, 48.83519506372575], [2.344990945607632, 48.8351586931864], [2.345025005390149, 48.83515941302548]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 105, "zemmour_eric": 68.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-63", "circ_bv": "09", "num_bureau": 63, "roussel_fabien": 27.0, "nb_emargement": 1118.0, "nb_procuration": 65.0, "nb_vote_blanc": 10.0, "jadot_yannick": 98.0, "le_pen_marine": 37.0, "nb_exprime": 1107.0, "nb_vote_nul": 1.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1345.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1118, "quartier_bv": "52", "geo_point_2d": [48.835400439070604, 2.3430882435267564], "melenchon_jean_luc": 278.0, "poutou_philippe": 10.0, "macron_emmanuel": 440.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3317447380596352, 48.856418916679374], [2.331699097725012, 48.85643846195069], [2.331541260447374, 48.85650478720333], [2.331382975779685, 48.85657100182384], [2.331225136335294, 48.85663732664396], [2.3310668508747883, 48.856703539939176], [2.3309090106265, 48.8567698643344], [2.330750725712953, 48.85683607811047], [2.330592884660767, 48.85690240208079], [2.330434597591549, 48.85696861452388], [2.330276755735463, 48.85703493806935], [2.330118467850325, 48.85710115098561], [2.329960625190337, 48.857167474106156], [2.3298023378752752, 48.857233685704735], [2.329801480403098, 48.85723401726023], [2.329629519557694, 48.85729514265154], [2.329449295410135, 48.8573599205281], [2.329277333747621, 48.8574210445071], [2.329097110078023, 48.85748582275282], [2.328925146223946, 48.85754694621116], [2.328744921692589, 48.85761172301984], [2.328572956998241, 48.85767284686446], [2.328392731593647, 48.857737623135336], [2.3282207660821053, 48.857798745567614], [2.328040539804177, 48.857863521300764], [2.327868574815247, 48.85792464412694], [2.327688346301088, 48.857989419314634], [2.327516380495083, 48.858050540728456], [2.327336152458875, 48.858115316285335], [2.327164184461294, 48.85817643717846], [2.3269839555633602, 48.858241211298285], [2.326811986737104, 48.85830233167835], [2.3266278973274153, 48.85836697472027], [2.32645592765676, 48.858428095480996], [2.326271837360865, 48.858492737967836], [2.3260998668691633, 48.8585538573107], [2.325915775687168, 48.85861849924249], [2.325743804362696, 48.85867961806675], [2.3255597122946012, 48.85874425944342], [2.325387740137259, 48.85880537774905], [2.325203647183168, 48.85887001857073], [2.325031674181405, 48.85893113725703], [2.324847580341113, 48.85899577752356], [2.3246756065183343, 48.85905689479197], [2.324491511791943, 48.85912153450346], [2.324319538499222, 48.85918265126094], [2.324135441523914, 48.85924729040962], [2.323963467386761, 48.85930840754777], [2.323908624578301, 48.8593224459703], [2.323920736847136, 48.85934970989514], [2.3240316316520753, 48.859465018073045], [2.324137877725638, 48.85957160404948], [2.324244125596743, 48.85967818992905], [2.324355021804879, 48.85979349867243], [2.324461269209865, 48.85990008433019], [2.324572166370877, 48.86001539284924], [2.324572388373889, 48.860015616241974], [2.324678924977786, 48.86011794128825], [2.324781831307023, 48.860218235695626], [2.32488836872503, 48.86032056143601], [2.324991275869304, 48.860420854745676], [2.325097814112884, 48.86052318028091], [2.325200722060649, 48.86062347339215], [2.325307261129911, 48.86072579872224], [2.3254101698809713, 48.86082609163504], [2.325516709776025, 48.86092841675998], [2.325619619330489, 48.861028709474354], [2.325722530632495, 48.861129002998084], [2.32582907176036, 48.86123132781702], [2.325931982514449, 48.861331620235354], [2.326038524468126, 48.86143394484909], [2.326088552978284, 48.86149927205115], [2.326155925570813, 48.86147995027027], [2.32615687692462, 48.861479639055965], [2.326326397714575, 48.861418650743715], [2.326505433124744, 48.861357911795096], [2.32667495175924, 48.86129692207544], [2.326853986344747, 48.86123618259874], [2.327023505538118, 48.86117519238632], [2.327202539298858, 48.86111445238151], [2.327372057688221, 48.86105346166869], [2.327551090624294, 48.86099272113577], [2.327720606846474, 48.86093172991488], [2.327899638957982, 48.860870988853854], [2.328069155739024, 48.86080999714023], [2.328248187025865, 48.86074925555113], [2.328417701639828, 48.860688263329436], [2.328572370158951, 48.860629238989645], [2.328741883991328, 48.860568247201456], [2.328896551786899, 48.86050922243627], [2.329066066223824, 48.860448229290675], [2.329220731932881, 48.860389204092485], [2.329390245599801, 48.8603282104811], [2.329544910585305, 48.86026918485755], [2.329699576583317, 48.86021015903866], [2.329869087732605, 48.86014916563079], [2.329870996918999, 48.860148562065504], [2.330058250499321, 48.86010079286175], [2.3302473429308312, 48.86005150206247], [2.330434595817156, 48.86000373226563], [2.330623686177505, 48.85995444085974], [2.330810938369929, 48.85990667046987], [2.331000029384907, 48.85985737847268], [2.331187280883425, 48.85980960748977], [2.331376371189979, 48.85976031489357], [2.331563620631746, 48.85971254331], [2.331752710229972, 48.85966325011488], [2.3319399603407662, 48.859615477945894], [2.332129049230659, 48.8595661841518], [2.332316298647432, 48.85951841138977], [2.332505386829088, 48.85946911699672], [2.332692634189002, 48.8594213436341], [2.332881721662318, 48.85937204864209], [2.332891605787661, 48.859364947609], [2.332874837446899, 48.85931518028866], [2.332804729731761, 48.85918640799643], [2.332731782318567, 48.859048980646165], [2.332661673963685, 48.85892020733238], [2.332588727289003, 48.85878278076124], [2.332518621008796, 48.85865400734031], [2.3324456750956513, 48.858516579749654], [2.332452857729304, 48.85850543278435], [2.332650034660846, 48.85844577506593], [2.332849959110635, 48.85838503692946], [2.333047135131869, 48.85832537855029], [2.333247060019567, 48.85826463975142], [2.333253349954923, 48.85825219449507], [2.333153505738215, 48.85813031560448], [2.333063091212443, 48.85801928229144], [2.332963247887111, 48.857897403216484], [2.332872835545257, 48.85778636884469], [2.332772993111388, 48.85766448958548], [2.332682580204732, 48.85755345593833], [2.332592169046301, 48.85744242221938], [2.332492327928034, 48.8573205426882], [2.33240191622783, 48.85720950789534], [2.332302076000903, 48.85708762817983], [2.332211666461629, 48.85697659412684], [2.332111827126024, 48.856854714227055], [2.332021417033449, 48.856743679999376], [2.33192157860069, 48.85662179901601], [2.331831170680533, 48.85651076462897], [2.331763486836687, 48.856428137226125], [2.3317447380596352, 48.856418916679374]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 106, "zemmour_eric": 135.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-4", "circ_bv": "02", "num_bureau": 4, "roussel_fabien": 13.0, "nb_emargement": 1036.0, "nb_procuration": 86.0, "nb_vote_blanc": 8.0, "jadot_yannick": 50.0, "le_pen_marine": 79.0, "nb_exprime": 1021.0, "nb_vote_nul": 6.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1310.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1035, "quartier_bv": "25", "geo_point_2d": [48.85903569826358, 2.3288252526755344], "melenchon_jean_luc": 139.0, "poutou_philippe": 4.0, "macron_emmanuel": 471.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295365715238077, 48.85451450961388], [2.295365604527043, 48.85450969559575], [2.295277319053902, 48.85444393170795], [2.295134254312546, 48.85433745307914], [2.29501165859895, 48.85424612944575], [2.294868594943543, 48.85413965048034], [2.2947460001609272, 48.854048326558505], [2.294602937591459, 48.853941847256586], [2.29448034238931, 48.853850522139005], [2.2943372808936022, 48.853744043399786], [2.294214687985103, 48.85365271800176], [2.294215248797153, 48.85364039289358], [2.294349921607346, 48.85355151657671], [2.29448351101332, 48.85346360772196], [2.294618181546288, 48.85337473108101], [2.294751770046468, 48.8532868219128], [2.294886441027658, 48.853197944963824], [2.295020028622047, 48.853110035482125], [2.295154698688897, 48.85302115821708], [2.295288285377503, 48.85293324842193], [2.295422954529918, 48.85284437084083], [2.295556538949991, 48.85275646072417], [2.295691207187876, 48.85266758282706], [2.295824792064935, 48.85257967240498], [2.295959459388498, 48.85249079419184], [2.296093043359792, 48.85240288345628], [2.296227709768937, 48.85231400492708], [2.296361292834471, 48.85222609387809], [2.296365033309789, 48.852221486868196], [2.296381960095524, 48.8521655364842], [2.296402067290109, 48.85209084144463], [2.296420467822785, 48.85208460465987], [2.296414434921527, 48.852058642426684], [2.296411746835266, 48.852055861086896], [2.296283216479, 48.8519652429266], [2.29615814954548, 48.85187714251584], [2.296029620071135, 48.8517865240686], [2.295904554007353, 48.85169842247932], [2.295776025414824, 48.851607803745075], [2.295650961571551, 48.85151970188461], [2.295525896776188, 48.85143160077772], [2.295397369500252, 48.851340981614996], [2.295272305574824, 48.85125287932962], [2.295143779180587, 48.85116225987994], [2.295138718196821, 48.8511600104419], [2.295112981362483, 48.851154902441316], [2.29510022527913, 48.851171446584814], [2.2949247246724562, 48.8512526905578], [2.2947509939297213, 48.85133291763252], [2.294575492234753, 48.85141416108145], [2.294401759065477, 48.85149438673013], [2.294226257644933, 48.851575629663046], [2.294052523399663, 48.85165585479296], [2.294046726323876, 48.85166367740567], [2.294053613506885, 48.8517536424297], [2.294060881198914, 48.85184167696478], [2.29405676134389, 48.85184862270275], [2.293912173308501, 48.85194115914697], [2.293772100982873, 48.85203048976362], [2.293632028164803, 48.85211982110841], [2.2934874386226722, 48.85221235701679], [2.2933473648277323, 48.85230168801372], [2.293202775638201, 48.85239422357105], [2.293062700866386, 48.85248355422012], [2.292918109316167, 48.85257608851099], [2.292897228183948, 48.852574565707506], [2.292768894927902, 48.85244547841041], [2.29264661622469, 48.85232229687607], [2.29251828557339, 48.85219320928896], [2.292396008066778, 48.85207002657129], [2.29239318773183, 48.852067967443894], [2.292261894405978, 48.85199776385893], [2.292132397150557, 48.85192920039102], [2.292001104525582, 48.85185899651113], [2.291871607958146, 48.85179043275246], [2.291742111743706, 48.8517218679501], [2.291610820167022, 48.85165166362888], [2.291588479585692, 48.851641440526855], [2.291583921812093, 48.85164218159582], [2.291517976868898, 48.85170893023698], [2.291423348218763, 48.851804771483664], [2.291316038915093, 48.85191338671231], [2.291221409534495, 48.85200922688238], [2.291187598526245, 48.852043449625626], [2.291176763861006, 48.852059697147446], [2.291198404835886, 48.85206876049883], [2.291330470933023, 48.85215309878769], [2.291472844609944, 48.85224374401953], [2.291604910219773, 48.85232808288345], [2.291747284852185, 48.852418727774456], [2.291879352712324, 48.852503066330215], [2.292021728300236, 48.852593710880434], [2.29215379569762, 48.85267804821271], [2.292296172241033, 48.852768692422075], [2.292428241876631, 48.85285303034548], [2.292570619375555, 48.85294367421404], [2.292702688548288, 48.85302801091391], [2.292845067002727, 48.85311865444163], [2.292845522511388, 48.8531189323378], [2.292994171728036, 48.85320557371365], [2.293129042409423, 48.853283818917376], [2.293277692567861, 48.853370459928115], [2.293412562738983, 48.85344870479265], [2.29356121382702, 48.85353534633762], [2.293696086213326, 48.85361359087897], [2.293844738255357, 48.853700231159614], [2.293979610131502, 48.85377847536174], [2.293982769619776, 48.8537811642015], [2.294032728523101, 48.853846222720065], [2.294086838903755, 48.85391580429904], [2.294088940781708, 48.853917791691615], [2.294215656365293, 48.85400924853564], [2.294344219991617, 48.85410134298705], [2.294470936469522, 48.854192799545594], [2.294599500987831, 48.85428489460681], [2.2947262170095453, 48.85437634997263], [2.294854783794719, 48.85446844475238], [2.2949815006986922, 48.85455990073202], [2.295110068387849, 48.854651995222284], [2.295129033153775, 48.85465268792653], [2.295245378204075, 48.854585931251485], [2.29534822060358, 48.854524836449194], [2.295365715238077, 48.85451450961388]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 133, "zemmour_eric": 176.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-18", "circ_bv": "12", "num_bureau": 18, "roussel_fabien": 12.0, "nb_emargement": 1171.0, "nb_procuration": 73.0, "nb_vote_blanc": 14.0, "jadot_yannick": 53.0, "le_pen_marine": 71.0, "nb_exprime": 1152.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1399.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1171, "quartier_bv": "59", "geo_point_2d": [48.85254254929442, 2.2941522005916757], "melenchon_jean_luc": 182.0, "poutou_philippe": 4.0, "macron_emmanuel": 473.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.392166270706374, 48.879243727493034], [2.39220763585001, 48.87924921117394], [2.392332929045198, 48.87921314559071], [2.392564752441977, 48.87914608367636], [2.392690043778309, 48.879110017709074], [2.392696304152395, 48.879109275144806], [2.392883921242988, 48.87911639345267], [2.393072622925213, 48.87912369862924], [2.393260241482654, 48.87913081635416], [2.393448943269818, 48.879138120937526], [2.393636560567182, 48.8791452380657], [2.393825262469945, 48.879152541156515], [2.394012881234138, 48.879159657701756], [2.394201583231454, 48.87916696109856], [2.394389200735452, 48.87917407704705], [2.39457790283778, 48.879181379850635], [2.394765521808697, 48.87918849521618], [2.394954224026478, 48.87919579652723], [2.39514184173728, 48.87920291129601], [2.395330544049505, 48.87921021291307], [2.395518161863647, 48.87921732709205], [2.395706865644422, 48.879224628122735], [2.395894483561896, 48.87923174171183], [2.396083186084089, 48.87923904214241], [2.396106259169146, 48.87923154751393], [2.396108429987465, 48.8792269530015], [2.396027209215851, 48.87910915477184], [2.395948232334025, 48.87899424834543], [2.395867012287652, 48.87887644998221], [2.395788037475591, 48.878761543432745], [2.395706818154447, 48.87864374493595], [2.395627844038147, 48.87852883915581], [2.395546625442324, 48.87841104052544], [2.395467650679414, 48.878296133709235], [2.395386432808702, 48.878178334945304], [2.395307460115412, 48.87806342800603], [2.395306243282254, 48.87805972201673], [2.395306960672197, 48.87795319192321], [2.395306829731757, 48.8778416329777], [2.395307545743532, 48.87773510375549], [2.395307414802387, 48.877623544787895], [2.395315073059428, 48.87760948557096], [2.39530410826975, 48.87760053670952], [2.395303977325764, 48.877488978627554], [2.395303861118203, 48.877389186548065], [2.39530312585994, 48.87738628069496], [2.395243945432469, 48.87727182883413], [2.395184282844432, 48.8771568861584], [2.39512510293877, 48.877042434215], [2.39506544086534, 48.87692749235539], [2.395006261481478, 48.876813040329445], [2.39494660130693, 48.87669809749427], [2.394887422444862, 48.87658364538579], [2.394827761421505, 48.876468703359876], [2.394768583081225, 48.87635425116881], [2.3947089225933462, 48.87623930816049], [2.394697059445565, 48.87622451442998], [2.394675890718272, 48.87622779696975], [2.394636689845111, 48.876242280324306], [2.394466033021108, 48.87630530390235], [2.39430317101939, 48.87636547622461], [2.394132513388157, 48.87642849932015], [2.393969650615905, 48.87648867118197], [2.393798992177441, 48.87655169379503], [2.393636128634655, 48.87661186519634], [2.393465469388961, 48.8766748873269], [2.393302605065164, 48.87673505916705], [2.393139740375533, 48.8767952298831], [2.3929690799283803, 48.87685825129551], [2.392806214468215, 48.87691842155106], [2.392635553213834, 48.87698144248096], [2.392612746620752, 48.87698132676768], [2.392605667760843, 48.87698633519818], [2.392599390387952, 48.87699077841843], [2.392600180085994, 48.87700537047231], [2.392494115991166, 48.87714194785231], [2.39239231879335, 48.87726790679952], [2.392391113974058, 48.87727429312713], [2.392443059159718, 48.87741304559646], [2.392492952392403, 48.87754608765463], [2.392492913095908, 48.87755050856393], [2.392442320309189, 48.877678937001974], [2.392387590775824, 48.877805936956804], [2.392336997481269, 48.87793436532061], [2.392282268786198, 48.878061365204765], [2.392231674983804, 48.87818979349429], [2.392176944410455, 48.87831679239472], [2.392126350100213, 48.87844522060996], [2.3920716203546633, 48.87857222033896], [2.392071161760428, 48.878575530241385], [2.392086883366535, 48.87868459533958], [2.392102972946189, 48.87879227912432], [2.392118694684342, 48.87890134419687], [2.392134785749587, 48.87900902886234], [2.392150507630289, 48.87911809300999], [2.392166598828379, 48.87922577765001], [2.392166270706374, 48.879243727493034]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 36, "zemmour_eric": 67.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-33", "circ_bv": "16", "num_bureau": 33, "roussel_fabien": 27.0, "nb_emargement": 1040.0, "nb_procuration": 36.0, "nb_vote_blanc": 6.0, "jadot_yannick": 41.0, "le_pen_marine": 61.0, "nb_exprime": 1023.0, "nb_vote_nul": 11.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1459.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1040, "quartier_bv": "75", "geo_point_2d": [48.877989985396944, 2.3939348183144458], "melenchon_jean_luc": 503.0, "poutou_philippe": 7.0, "macron_emmanuel": 241.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.394116980208429, 48.872810002202804], [2.394114339472205, 48.87280202613119], [2.3941708973077622, 48.87273808823805], [2.394218937555646, 48.87268276150374], [2.3942158089284993, 48.87267136909135], [2.394047633205376, 48.872579389214096], [2.3938803792706, 48.87248814851382], [2.393712203357712, 48.87239616904243], [2.3935449505988142, 48.87230492785833], [2.393376777243449, 48.87221294700804], [2.393209525649946, 48.872121706239405], [2.393208852650277, 48.872121313415796], [2.393073388243987, 48.872037160258515], [2.392939965544769, 48.87195402814653], [2.392804502018421, 48.87186987377296], [2.392671080166351, 48.871786742247934], [2.392535618872726, 48.871702587564236], [2.392402196525504, 48.87161945482072], [2.39235560117633, 48.871589173294716], [2.392338427567671, 48.87159874677258], [2.392243106383509, 48.8716708994426], [2.392111373004567, 48.871774737762074], [2.391986816771732, 48.871869019177986], [2.3918550823809293, 48.87197285719677], [2.391787792260142, 48.872023791791484], [2.391782130077558, 48.87203058717523], [2.391837466188967, 48.872061886402456], [2.391957321358889, 48.87213096436688], [2.392081311296979, 48.87220242485806], [2.392201165750484, 48.87227150256263], [2.392325156357643, 48.872342962792125], [2.3924450128211863, 48.87241204025066], [2.392569002734135, 48.87248350021156], [2.392568607724094, 48.872497264321886], [2.392408123724698, 48.872582899258326], [2.392247888885889, 48.87266840034056], [2.392087403842435, 48.87275403393448], [2.391927167950716, 48.872839534574105], [2.391766681842213, 48.87292516862405], [2.391606446260874, 48.87301066882804], [2.391445959108315, 48.87309630153541], [2.391285721110662, 48.87318180128991], [2.391125232893031, 48.87326743445331], [2.39096499384255, 48.8733529337652], [2.390963584821044, 48.87336604967853], [2.391094601529796, 48.873458989674695], [2.391220101906506, 48.87354801544107], [2.391351120904498, 48.87364095424879], [2.39147662215808, 48.87372997973158], [2.39147903720266, 48.87373133651252], [2.3916538745272913, 48.87380829621915], [2.3918284112287083, 48.87388512463107], [2.392003248222547, 48.87396208380978], [2.392177787317847, 48.8740389117085], [2.392179175257775, 48.874039611242736], [2.392299126532474, 48.874108592975055], [2.39247321842895, 48.874208644337706], [2.392593170482448, 48.87427762576481], [2.392767263508722, 48.8743776766845], [2.392887216340921, 48.8744466578064], [2.392912780555876, 48.874449647337556], [2.392916197751219, 48.87444808094254], [2.393000246162735, 48.87433149944141], [2.393084578666993, 48.87421601200107], [2.393168627690383, 48.874099430364154], [2.393252959445459, 48.87398394278086], [2.393337007717597, 48.87386736100122], [2.3934213373708593, 48.873751872368835], [2.393505384881083, 48.873635291345714], [2.3935897151484973, 48.87351980257738], [2.393673761907492, 48.87340322141153], [2.393758091425849, 48.873287732500295], [2.393842136070222, 48.8731711511848], [2.393926464839535, 48.873055662130646], [2.3940105100959013, 48.872939080679345], [2.394094838116176, 48.87282359148232], [2.394095345790296, 48.87282296182014], [2.394116980208429, 48.872810002202804]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 17, "zemmour_eric": 47.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-10", "circ_bv": "15", "num_bureau": 10, "roussel_fabien": 24.0, "nb_emargement": 965.0, "nb_procuration": 44.0, "nb_vote_blanc": 9.0, "jadot_yannick": 40.0, "le_pen_marine": 70.0, "nb_exprime": 952.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1394.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 965, "quartier_bv": "77", "geo_point_2d": [48.87306997380229, 2.3926799433589387], "melenchon_jean_luc": 527.0, "poutou_philippe": 5.0, "macron_emmanuel": 181.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346741570126894, 48.891206622365154], [2.346723897967845, 48.89122245657097], [2.346662570968062, 48.891321198646494], [2.346598291145134, 48.891425798950536], [2.346536963656361, 48.891524541842685], [2.346472683330166, 48.89162914205993], [2.34641135537497, 48.89172788397016], [2.346347075909082, 48.89183248410803], [2.346347004900975, 48.89183259973312], [2.346274522540153, 48.89195406861276], [2.346210241156455, 48.89205866864819], [2.346201349451849, 48.89206393779723], [2.346117800761995, 48.892079682008095], [2.346022889701615, 48.892098465872174], [2.34601394840998, 48.89211006956629], [2.346082086440548, 48.89223748899987], [2.346150322798031, 48.892360146102455], [2.3462184628533, 48.8924875654368], [2.346286698484798, 48.89261022332556], [2.346354839201087, 48.892737642553264], [2.346423076856592, 48.8928602994445], [2.3464912168702, 48.892987718558075], [2.346559455174728, 48.89311037534363], [2.346560258398857, 48.89311407863772], [2.346548580725211, 48.89322807950767], [2.346536719713184, 48.893341252887716], [2.346525041936946, 48.8934552537317], [2.346513182174442, 48.89356842799269], [2.346501504307102, 48.8936824279115], [2.346489643077954, 48.89379560213927], [2.346494266492332, 48.8938206123165], [2.346518046111839, 48.8938267045846], [2.346639418228075, 48.893800990653524], [2.346843692624553, 48.893757760359065], [2.347021259287025, 48.89372013974432], [2.347225533038074, 48.893676909694605], [2.347403099160177, 48.89363928761162], [2.347607370913139, 48.89359605689999], [2.347784937836151, 48.89355843515471], [2.347793173557835, 48.89355360478822], [2.347875801211694, 48.89343415723852], [2.347960074992432, 48.89331076606548], [2.348042701889277, 48.89319131747492], [2.348126974881424, 48.89306792615706], [2.348146598821791, 48.89306397703963], [2.348271981446554, 48.893115251737576], [2.348374659291413, 48.89315969021596], [2.348417789964298, 48.89317164486687], [2.348431747145734, 48.89316353968018], [2.348458014430778, 48.89313388267501], [2.348554147833262, 48.89302740438078], [2.348650655657332, 48.89291843871472], [2.348746789620633, 48.89281196115158], [2.348843296642209, 48.89270299530886], [2.348877694089341, 48.892664895508354], [2.3489234143958, 48.8926454444494], [2.348911232242242, 48.89261828883352], [2.348972966514806, 48.89254990996847], [2.349081852271342, 48.892431792258336], [2.349177983090426, 48.892325314294354], [2.349286867912183, 48.89220719637368], [2.349382997908581, 48.89210071732405], [2.349491881795567, 48.89198259919272], [2.3495880109469143, 48.89187612085602], [2.349604394674832, 48.89186118396104], [2.349588838804844, 48.89184096543316], [2.349570126910461, 48.89175098997976], [2.34955308314672, 48.891656313823134], [2.349534372733125, 48.891566339255675], [2.34951732909484, 48.891471663077944], [2.349507579101044, 48.891463356127076], [2.349469395871946, 48.89146376743319], [2.349280563385402, 48.89149542013324], [2.349092745220259, 48.891526648173084], [2.3489039122766, 48.89155830027735], [2.348716093658743, 48.891589527724676], [2.348527260258178, 48.891621179233184], [2.348339441187612, 48.89165240608796], [2.348330738690326, 48.891651952234504], [2.348135052478916, 48.89159670202223], [2.347935804548306, 48.89154034390923], [2.347740117811651, 48.89148509303852], [2.347540872099282, 48.89142873427011], [2.347345186201263, 48.891373482748385], [2.347145939979694, 48.8913171233097], [2.346950256283987, 48.89126187114442], [2.346751010916994, 48.891205511042884], [2.346741570126894, 48.891206622365154]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 41, "zemmour_eric": 37.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-8", "circ_bv": "18", "num_bureau": 8, "roussel_fabien": 20.0, "nb_emargement": 1157.0, "nb_procuration": 78.0, "nb_vote_blanc": 14.0, "jadot_yannick": 123.0, "le_pen_marine": 45.0, "nb_exprime": 1141.0, "nb_vote_nul": 1.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1472.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1156, "quartier_bv": "70", "geo_point_2d": [48.892400549612354, 2.3476304130534937], "melenchon_jean_luc": 424.0, "poutou_philippe": 8.0, "macron_emmanuel": 392.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.339740860663706, 48.85196142190459], [2.339717545809296, 48.8519585079398], [2.3396883662621732, 48.85197574585419], [2.339562022659666, 48.85205434836158], [2.339467031825634, 48.852110465444234], [2.339342860997574, 48.85218382117482], [2.339216516380807, 48.85226242240336], [2.33909234483799, 48.852335777863985], [2.338965999463498, 48.85241437971659], [2.338961384143829, 48.85241626894695], [2.338918710314614, 48.85242462652429], [2.338907807973162, 48.85243362999554], [2.338714081208824, 48.852480983485485], [2.338517288520138, 48.85252977756778], [2.338323562394807, 48.8525771313282], [2.338126768977338, 48.852625924764006], [2.337933040788345, 48.85267327698121], [2.3377362466421, 48.8527220697705], [2.337542519103549, 48.852769421358914], [2.337345724217099, 48.85281821440101], [2.337151994603473, 48.852865565345496], [2.337031734763015, 48.85289538183281], [2.336955198999691, 48.85291435684178], [2.33694051327118, 48.85293351177794], [2.336981071448453, 48.852960706399855], [2.336974268885467, 48.85310899041324], [2.336972211024179, 48.853257328578295], [2.336965408408801, 48.853405611652335], [2.336963349147895, 48.853553949770095], [2.336956546468474, 48.853702232804046], [2.336954488533304, 48.85385057088962], [2.336954782702759, 48.85385251512614], [2.336964266855664, 48.853893643013485], [2.336975491538395, 48.853928655037606], [2.336975593789854, 48.85393079426986], [2.336959369046759, 48.854052772882284], [2.336940133914556, 48.8541844766065], [2.336923909009461, 48.854306455186276], [2.336904672331281, 48.854438158867204], [2.336888447264184, 48.85456013741429], [2.336869210402615, 48.854691841059456], [2.336852985184955, 48.854813818674586], [2.3368337495029152, 48.85494552229153], [2.3368263556770428, 48.85500110905246], [2.336820125503579, 48.85501463228331], [2.336822026223512, 48.85502099045751], [2.336813194649386, 48.85508738217691], [2.336794094326854, 48.85522128452691], [2.336777868768487, 48.85534326207374], [2.336771773848395, 48.85538598626123], [2.336770277532095, 48.855397431235836], [2.336823744703581, 48.85540991831289], [2.337040927306199, 48.85540177480917], [2.337248496383288, 48.85539380969896], [2.337456065385379, 48.85538584512794], [2.337673247800256, 48.85537769957712], [2.337682087959569, 48.855375096314624], [2.33784219385935, 48.855269961209075], [2.338007523722991, 48.85516413260292], [2.338014674043872, 48.85516172771757], [2.338191466778117, 48.8551413972711], [2.338371808955148, 48.85512091171522], [2.338548602774279, 48.85510058074788], [2.338728944669631, 48.85508009465304], [2.338905738211023, 48.855059763157335], [2.339086079824588, 48.85503927652348], [2.339262871725312, 48.85501894449181], [2.339443214420106, 48.85499845732648], [2.339454453196985, 48.85498864446496], [2.339434713932739, 48.85486602283426], [2.3394143013889392, 48.8547449146793], [2.33939456231141, 48.854622293015105], [2.339374149967814, 48.854501183927454], [2.339382603700286, 48.85449184763915], [2.339537315432647, 48.854450730637176], [2.339691512029278, 48.854409591705846], [2.339846223273652, 48.85436847430141], [2.340000418020179, 48.85432733496145], [2.340155128776567, 48.85428621715456], [2.340309324398591, 48.85424507742102], [2.340321149031117, 48.85423826704946], [2.340319352686397, 48.854226647382525], [2.340253638882851, 48.85408889162226], [2.340187920373872, 48.85395013569876], [2.3401222072552192, 48.85381238073133], [2.340056489444862, 48.853673624701145], [2.340057037033373, 48.85366729806306], [2.340126917475613, 48.85356323330292], [2.3401962183157963, 48.85345928491192], [2.340266098189731, 48.8533552209503], [2.340335398475622, 48.853251272459254], [2.340405277804032, 48.8531472074976], [2.340474577535739, 48.85304325890647], [2.340475730231931, 48.85303951135169], [2.340473319705944, 48.85292556594931], [2.340471082637079, 48.8528134220007], [2.340468672143096, 48.85269947567575], [2.34046643509394, 48.852587331704186], [2.34046419669176, 48.852475187713786], [2.340461786216997, 48.85236124225336], [2.340461014293607, 48.85235837984594], [2.340405624978294, 48.85225298929484], [2.340346121012751, 48.85214150447063], [2.340338387942889, 48.85213615743575], [2.340196330805217, 48.852098157012904], [2.340054959212535, 48.85206006127095], [2.339912903840351, 48.852022061415816], [2.339771532672716, 48.8519839644371], [2.339740860663706, 48.85196142190459]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 87, "zemmour_eric": 99.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "6-5", "circ_bv": "02", "num_bureau": 5, "roussel_fabien": 6.0, "nb_emargement": 1014.0, "nb_procuration": 96.0, "nb_vote_blanc": 1.0, "jadot_yannick": 95.0, "le_pen_marine": 45.0, "nb_exprime": 1008.0, "nb_vote_nul": 5.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1238.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1014, "quartier_bv": "21", "geo_point_2d": [48.85372608220962, 2.3385917951237114], "melenchon_jean_luc": 191.0, "poutou_philippe": 3.0, "macron_emmanuel": 434.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.318558221008657, 48.891595010160515], [2.318545114681031, 48.89158467156886], [2.318432121043711, 48.89147349323371], [2.318319639553933, 48.891362818618106], [2.318206646891276, 48.89125163914842], [2.318094166360021, 48.891140964298636], [2.317981176012228, 48.891029785500784], [2.317868696451263, 48.890919109517554], [2.3177562173566812, 48.89080843431677], [2.317643227100118, 48.89069725425927], [2.317530748964033, 48.890586578824355], [2.317417759658538, 48.890475399430926], [2.317416548762596, 48.89047392932344], [2.317401928165732, 48.89044691293671], [2.317382372068173, 48.89041676393517], [2.317381282077906, 48.890415226167654], [2.317352567225985, 48.89038305182503], [2.317324676857099, 48.89038306998774], [2.317306567843559, 48.89040087234387], [2.317205754551766, 48.89046106145723], [2.317054328672734, 48.890532439938745], [2.316899691523056, 48.89060561654746], [2.316748264803968, 48.8906769946325], [2.316739923842808, 48.89068123952586], [2.3167397110609302, 48.89068134533159], [2.316585074390619, 48.890754521531846], [2.316432258593632, 48.89082921069954], [2.3162776210520972, 48.890902386492904], [2.316124804380222, 48.89097707525818], [2.315970165967358, 48.89105025064462], [2.315817348420492, 48.891124939007454], [2.3156627091363973, 48.89119811398699], [2.315509889350772, 48.89127280193963], [2.315355249195544, 48.89134597651222], [2.315170982133573, 48.89143861464218], [2.315016339645932, 48.891511788758315], [2.315016172192042, 48.89151186963908], [2.314831902564198, 48.89160450812472], [2.314677621481197, 48.89167988901361], [2.314565950175933, 48.89173605758784], [2.314411668318109, 48.891811438125046], [2.314318923700259, 48.89185800480199], [2.31423157582666, 48.89190300960606], [2.314077292978205, 48.89197839060024], [2.3140571362067233, 48.89199145296209], [2.314055902131442, 48.89199216085711], [2.3140243657407282, 48.892008189654845], [2.313971449853501, 48.89203505245139], [2.313817166249037, 48.8921104322021], [2.31368430531692, 48.89218223021141], [2.313530020860639, 48.89225760958203], [2.313397159168866, 48.8923294063639], [2.313396516466056, 48.892329740825254], [2.313396337919107, 48.89232983513006], [2.313246828420109, 48.89241248827565], [2.31310109694119, 48.89248858613401], [2.312955365036184, 48.89256468380971], [2.312805854162805, 48.89264733638701], [2.312660121382061, 48.89272343369238], [2.3125106109598272, 48.89280608499775], [2.312364877291265, 48.89288218283204], [2.312215364580696, 48.89296483374894], [2.312069630048264, 48.8930409303137], [2.311920116401277, 48.893123581749286], [2.3117743809928912, 48.8931996779437], [2.3116248664214583, 48.89328232899866], [2.311479130137217, 48.893358424822765], [2.311329614653129, 48.893441074597895], [2.311300905146641, 48.89345236958851], [2.311323196615491, 48.89346001074922], [2.311482316323092, 48.893525290423696], [2.311641846270696, 48.89358948765293], [2.311800966773513, 48.893654766896304], [2.311960496146899, 48.89371896368559], [2.312119617444932, 48.893784242497894], [2.312279148971758, 48.89384843886292], [2.312438271065008, 48.893913717244125], [2.312597803369576, 48.893977914076345], [2.312756926269917, 48.89404319112711], [2.312916459364105, 48.894107387527264], [2.31307558169582, 48.8941726641391], [2.313235115579626, 48.894236860107135], [2.313394240070395, 48.894302136295686], [2.313553774743822, 48.89436633183167], [2.3135654259657112, 48.89438490940605], [2.313644149149769, 48.894376831440894], [2.313649067613138, 48.89435974909075], [2.3138447506647912, 48.89429936120071], [2.3140403524653, 48.89423899770586], [2.3142360346210262, 48.89417860827057], [2.314431635514334, 48.89411824412999], [2.314627318114275, 48.894057854955726], [2.314822918100281, 48.89399749016939], [2.314846325028984, 48.89399328575324], [2.314874778875004, 48.89397567789974], [2.31488703497722, 48.89397433338196], [2.31490038672422, 48.89396259174775], [2.3150149251203382, 48.89389171561244], [2.31514376829849, 48.8938079520176], [2.31528675960171, 48.89371946678474], [2.315415601916282, 48.893635702884275], [2.315558593648189, 48.89354721732073], [2.315687433735364, 48.893463453106854], [2.315863748519706, 48.89334882266571], [2.316042972005989, 48.89323230110282], [2.316046666370425, 48.89322797306868], [2.31609971095501, 48.893080533139475], [2.31615290386988, 48.89293268032625], [2.316157413400984, 48.89292786411272], [2.316306643289026, 48.89284538475936], [2.316452186161947, 48.89276581147366], [2.316597727226304, 48.89268623799752], [2.316746957088111, 48.89260375808506], [2.316892497248886, 48.89252418423887], [2.317041724827279, 48.892441703039864], [2.317187265448372, 48.89236212883145], [2.317336492083664, 48.892279648152204], [2.317482031801282, 48.89220007357381], [2.317631257505073, 48.89211759251498], [2.317776794955435, 48.89203801755882], [2.317926021103395, 48.891955535229044], [2.317934038810202, 48.8919556726287], [2.317950660769848, 48.89194781996398], [2.3180842119026073, 48.8918684344618], [2.318233437065777, 48.891785952635445], [2.318366988715993, 48.89170656681391], [2.318516211603626, 48.891624084615245], [2.3185509657825643, 48.89160487404784], [2.318558221008657, 48.891595010160515]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 56, "zemmour_eric": 96.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-25", "circ_bv": "03", "num_bureau": 25, "roussel_fabien": 30.0, "nb_emargement": 1580.0, "nb_procuration": 57.0, "nb_vote_blanc": 18.0, "jadot_yannick": 102.0, "le_pen_marine": 90.0, "nb_exprime": 1555.0, "nb_vote_nul": 11.0, "arr_bv": "17", "arthaud_nathalie": 5, "nb_inscrit": 2085.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1584, "quartier_bv": "68", "geo_point_2d": [48.89252175548412, 2.3150897829838577], "melenchon_jean_luc": 666.0, "poutou_philippe": 3.0, "macron_emmanuel": 446.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.334971135396092, 48.88575751908848], [2.334986988961651, 48.885744445462336], [2.335040244394039, 48.88572850565345], [2.335057635592026, 48.885723487753985], [2.335093926444729, 48.88571717275488], [2.335101788701399, 48.885708158373546], [2.33524199551258, 48.88566619088149], [2.335384038298964, 48.885622674878796], [2.335390255045377, 48.885610199718805], [2.335296502324752, 48.88549729370368], [2.335205182405725, 48.8853918979186], [2.3351114318314172, 48.88527899264297], [2.335020112681265, 48.88517359579657], [2.335024654990602, 48.885161537632676], [2.335179022142804, 48.88509703790206], [2.335362983345795, 48.88502293013913], [2.3355173483045633, 48.884958429956676], [2.335701308536431, 48.88488432166461], [2.335855674028873, 48.8848198210454], [2.336039633289615, 48.88474571222416], [2.336193997952025, 48.88468121116061], [2.336377954878153, 48.88460710180269], [2.336532318710636, 48.88454260029482], [2.336686682149268, 48.88447809948345], [2.3368706390317913, 48.88440398846315], [2.33687635308597, 48.884393255130895], [2.336827132868505, 48.88430354234091], [2.336779348340209, 48.88421578902169], [2.336730128469045, 48.8841260752781], [2.336682344267055, 48.884038321905955], [2.336690865830257, 48.884026751568065], [2.3368148018887602, 48.883999505827944], [2.336932390453143, 48.88396719305315], [2.336939813612366, 48.883955562654194], [2.336867182328191, 48.88383535249751], [2.336795362947174, 48.88371780340161], [2.336722732328148, 48.88359759313126], [2.336650913601086, 48.88348004392331], [2.336578283646996, 48.88335983353936], [2.336506464210427, 48.8832422842118], [2.336433836284924, 48.88312207372183], [2.336362017502301, 48.88300452428217], [2.336289388878265, 48.88288431367104], [2.336217572113024, 48.88276676412688], [2.336195696826763, 48.88273008052474], [2.336173543252111, 48.88273031382901], [2.336057837106944, 48.88276468409869], [2.335868528244083, 48.88282224534818], [2.335683367027338, 48.88287724643216], [2.335494058704941, 48.88293480709128], [2.335308896703964, 48.88298980669121], [2.335119586194941, 48.88304736674478], [2.334934423386883, 48.88310236665923], [2.3347451120546783, 48.88315992611481], [2.334559949825965, 48.883214924552796], [2.334370637670689, 48.88327248341037], [2.334185473271231, 48.883327482155295], [2.333996160292982, 48.88338504041486], [2.333810995109229, 48.88344003767573], [2.333621682671479, 48.88349759534486], [2.333436516680531, 48.88355259292026], [2.333247202056152, 48.8836101499838], [2.333062035281131, 48.88366514607513], [2.332872719833591, 48.883722702540666], [2.332736093214988, 48.883763281612985], [2.332698043280204, 48.88377340285876], [2.332726375233381, 48.88382388552171], [2.332753359330356, 48.883871969343026], [2.332765646828526, 48.883872101673745], [2.332876477711217, 48.88398074958663], [2.332984890001866, 48.88408736940877], [2.333095720425124, 48.88419601798907], [2.333204134976283, 48.88430263759943], [2.333314966315114, 48.88441128595553], [2.333423380399731, 48.884517905338896], [2.33353421265414, 48.88462655347074], [2.3336426289994012, 48.88473317264231], [2.333753462169402, 48.88484182054995], [2.333861878048229, 48.88494843949455], [2.333972713508834, 48.88505708628626], [2.334081130273228, 48.88516370591072], [2.334191965285835, 48.88527235247064], [2.33430038294731, 48.88537897187564], [2.334411220239147, 48.88548761821889], [2.334519638809206, 48.88559423650524], [2.334630475641663, 48.885702883515954], [2.334738895108716, 48.885809501582905], [2.334756077487829, 48.88581261430022], [2.334848914978145, 48.88578349718764], [2.334935866723128, 48.885757470679756], [2.334971135396092, 48.88575751908848]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 34, "zemmour_eric": 45.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-26", "circ_bv": "18", "num_bureau": 26, "roussel_fabien": 19.0, "nb_emargement": 1188.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 109.0, "le_pen_marine": 46.0, "nb_exprime": 1172.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 0, "nb_inscrit": 1481.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1188, "quartier_bv": "69", "geo_point_2d": [48.88412747837965, 2.3349926592172463], "melenchon_jean_luc": 441.0, "poutou_philippe": 9.0, "macron_emmanuel": 411.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.356009055994515, 48.840987142104765], [2.356022185434939, 48.840970476531616], [2.356040321550792, 48.84092430371215], [2.356095560494548, 48.84078735728848], [2.356145078434903, 48.8406612911119], [2.3562003168357792, 48.84052434370828], [2.356249834272987, 48.840398277458654], [2.356305072108773, 48.840261330873695], [2.356354589042639, 48.84013526455104], [2.356404107110608, 48.8400091973017], [2.356459344128717, 48.83987225059781], [2.356508860319818, 48.83974618416735], [2.356564096783968, 48.83960923738287], [2.35657874356971, 48.83960261050475], [2.356727243565421, 48.839613326460984], [2.356985884920897, 48.83963293907099], [2.35713438509781, 48.83964365362219], [2.357138025002179, 48.83964425956925], [2.357301831481812, 48.839688117702906], [2.357475134467506, 48.8397322226796], [2.3576389415184282, 48.83977607944888], [2.357812245081845, 48.83982018393379], [2.357976052692857, 48.839864040237984], [2.358149355471566, 48.83990814422367], [2.358167329408287, 48.83990228687421], [2.358218126900848, 48.83978812342605], [2.358266065362336, 48.839676640902034], [2.358316862418727, 48.83956247738886], [2.35836480045043, 48.83945099570207], [2.358415597070555, 48.83933683212389], [2.358463534694621, 48.83922534947574], [2.358514330878688, 48.83911118583257], [2.358562268084051, 48.838999703122326], [2.358602586078861, 48.83894757268422], [2.358568414520954, 48.83893468772252], [2.358439559781662, 48.83889378519665], [2.358267678958144, 48.838838574851124], [2.358091060824012, 48.83878251051718], [2.357919182109946, 48.83872729877341], [2.35774256472782, 48.83867123391932], [2.357570686738753, 48.83861602256864], [2.357394070119517, 48.83855995629507], [2.357222191504245, 48.83850474443083], [2.357045575625829, 48.83844867853651], [2.356911534392963, 48.83840561945699], [2.356880167344967, 48.838397608351556], [2.356879922086128, 48.838397609731004], [2.3568420868264752, 48.838385455537974], [2.356670209371211, 48.83833024287199], [2.356477442236148, 48.8382671605454], [2.356305566930703, 48.83821194645768], [2.356112800674336, 48.8381488635368], [2.355940926134219, 48.83809364981862], [2.355748160756648, 48.83803056630344], [2.355576286992759, 48.837975352055466], [2.355383522494087, 48.83791226794601], [2.355304775596512, 48.83788697068713], [2.355284993199261, 48.8378818833761], [2.3552629315512, 48.83788339591539], [2.355169805491624, 48.83785347836382], [2.354986466894496, 48.83779493944712], [2.354814593352148, 48.83773972408572], [2.354631255554059, 48.83768118461866], [2.354459382774218, 48.837625967841994], [2.354411962752887, 48.83761082650654], [2.354402235353492, 48.83760969566561], [2.354366738792557, 48.83764904831273], [2.354274581748154, 48.83775214075808], [2.354180832202219, 48.83785617785496], [2.354088673050394, 48.8379592710299], [2.353994922771999, 48.83806330706248], [2.353902764248635, 48.838166400082514], [2.3538090132266323, 48.838270435950086], [2.353716852606962, 48.83837352880041], [2.353623100841343, 48.838477564503016], [2.353530940850025, 48.83858065719832], [2.353437188340885, 48.838684692735946], [2.353345026253336, 48.83878778526154], [2.353251273000462, 48.83889182063421], [2.353242034829243, 48.838916247813174], [2.353252909927826, 48.838923724577526], [2.353472718101542, 48.8389534047075], [2.353685154521997, 48.83898481635094], [2.353904963210515, 48.839014494785694], [2.354117400140439, 48.839045905659795], [2.354128002409251, 48.839055400843904], [2.354112013036496, 48.83918696087573], [2.354095841229329, 48.839317403793416], [2.354079851706067, 48.83944896289075], [2.354063679725978, 48.8395794066728], [2.3540476900412672, 48.83971096573502], [2.3540315178993962, 48.83984140948213], [2.35401552805313, 48.839972968509166], [2.353999355760622, 48.84010341132203], [2.353983365741552, 48.84023497121323], [2.353967193287258, 48.84036541399111], [2.35395120310673, 48.84049697384715], [2.353935030490649, 48.840627416590074], [2.353943395547547, 48.840651881296495], [2.353955202270628, 48.84065447587102], [2.354145634850396, 48.84059514517062], [2.354311905651187, 48.84054240829533], [2.354324033558423, 48.84054217247034], [2.354488609732904, 48.84058597112074], [2.354693043269179, 48.840640705874236], [2.354857620076102, 48.84068450311376], [2.355062054386355, 48.840739237231865], [2.35522663180335, 48.84078303485918], [2.355431066898705, 48.8408377674425], [2.355595644936797, 48.84088156455828], [2.355800080795102, 48.84093629740548], [2.355964659465506, 48.84098009311039], [2.356009055994515, 48.840987142104765]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 67, "zemmour_eric": 86.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "5-18", "circ_bv": "02", "num_bureau": 18, "roussel_fabien": 15.0, "nb_emargement": 1147.0, "nb_procuration": 75.0, "nb_vote_blanc": 8.0, "jadot_yannick": 107.0, "le_pen_marine": 67.0, "nb_exprime": 1136.0, "nb_vote_nul": 5.0, "arr_bv": "05", "arthaud_nathalie": 4, "nb_inscrit": 1442.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "18", "geo_point_2d": [48.83923792096113, 2.355668239098709], "melenchon_jean_luc": 335.0, "poutou_philippe": 5.0, "macron_emmanuel": 383.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.370243044122336, 48.87360334656603], [2.370251044678558, 48.87361110405759], [2.370334788244654, 48.87368127728517], [2.3704349301653203, 48.87376300322313], [2.370446725056209, 48.87376523355436], [2.370464807492394, 48.87375564910516], [2.370529465495011, 48.873677371914845], [2.37059386072647, 48.87359916165292], [2.370658518330023, 48.87352088528108], [2.37072291317424, 48.87344267493862], [2.37072301693064, 48.87344255047641], [2.370823429126466, 48.87332505396593], [2.370924030527257, 48.87320731913211], [2.371024441827033, 48.873089821528716], [2.371125042319142, 48.872972086500866], [2.371225454064449, 48.872854589610256], [2.371326052295553, 48.87273685348193], [2.371426463133962, 48.8726193563977], [2.371527060445458, 48.872501620974674], [2.371543533539849, 48.87249756961657], [2.371740655487325, 48.87254413330157], [2.37193578996412, 48.872590475785245], [2.372132912613845, 48.872637038820365], [2.3723280477876783, 48.8726833806607], [2.372525171139744, 48.872729943045925], [2.372720307010507, 48.87277628424292], [2.372917431075635, 48.872822845079014], [2.373112567643519, 48.87286918563263], [2.373309692399947, 48.87291574671813], [2.373504831028143, 48.87296208663556], [2.373511756130167, 48.872962488909835], [2.373672249643442, 48.87294430153697], [2.37389701989827, 48.872918279702155], [2.374057513140903, 48.87290009181207], [2.374282283001576, 48.8728740701521], [2.37444277461017, 48.87285588173761], [2.374461078346877, 48.87284174540039], [2.374460749037908, 48.872836585088585], [2.374297803512211, 48.87275648486202], [2.374142378313206, 48.87267993563312], [2.373979432403858, 48.872599834954705], [2.373824008140164, 48.87252328530155], [2.373661064573633, 48.87244318418553], [2.373505639881969, 48.87236663410103], [2.373342697295166, 48.87228653254025], [2.373187274902087, 48.872209982038626], [2.373031851613387, 48.872133430423496], [2.372868910484685, 48.8720533282009], [2.372857305989776, 48.87205184015438], [2.372688269822497, 48.872080985950895], [2.372473328621869, 48.872118167455085], [2.372304293387767, 48.8721473127148], [2.372089350286925, 48.87218449262083], [2.371920314622639, 48.87221363733654], [2.371705372337409, 48.872250816558], [2.37153633487977, 48.872279960722615], [2.371521143771004, 48.872266693090424], [2.371628817748084, 48.872146204962036], [2.371730050545425, 48.87203184517432], [2.371837723553813, 48.87191135683236], [2.371938956799347, 48.87179699685084], [2.371933593897767, 48.871784524585166], [2.371895492256228, 48.87177113498024], [2.371858258532133, 48.87175654660456], [2.371852847220958, 48.87174503816997], [2.371930566471301, 48.87163421868159], [2.372008485686413, 48.871523069226384], [2.372086202911296, 48.871412249607474], [2.372164121462266, 48.871301100028624], [2.372241839398941, 48.87119027939432], [2.372319755911694, 48.87107913058394], [2.372397473186076, 48.870968309826324], [2.372475390397849, 48.87085716089944], [2.372553107009943, 48.87074634001852], [2.372631022194467, 48.87063519096083], [2.372629320025755, 48.8706187295516], [2.372619719910713, 48.87061441097562], [2.3724689399262, 48.870625689688204], [2.372285935587985, 48.87063923642868], [2.372086132109887, 48.870654182268964], [2.371903127571919, 48.87066772842383], [2.371703325237934, 48.87068267363188], [2.371520320500423, 48.87069621920116], [2.371320516584091, 48.87071116376268], [2.3711375116468423, 48.8707247087463], [2.3709545066145212, 48.87073825344998], [2.370754703737867, 48.87075319707363], [2.370744165196549, 48.870757956727246], [2.370637530941951, 48.87089209172999], [2.370530353880745, 48.87102721394067], [2.370423718513486, 48.87116134961952], [2.370316540343522, 48.87129647160582], [2.370316175803171, 48.87129696702177], [2.370249928600558, 48.871394371094716], [2.370154705015489, 48.871533504797384], [2.370088457199226, 48.87163090965935], [2.369993232750334, 48.871770043203796], [2.369926984342264, 48.87186744705622], [2.369926465649506, 48.87187392315062], [2.369980140177952, 48.87198221785416], [2.370033861936733, 48.87209124752874], [2.370087536912407, 48.87219954216284], [2.370194934543032, 48.87241686633235], [2.370248655836518, 48.87252589586044], [2.370249189559768, 48.87252742034589], [2.3702809247581262, 48.872674758325616], [2.370312548363256, 48.87282277109091], [2.370344283920883, 48.87297010901444], [2.370375906522074, 48.8731181217162], [2.37040764243877, 48.873265459583536], [2.3704392653993143, 48.873413472228975], [2.370436823940151, 48.873419986767814], [2.370343035313723, 48.87350579192347], [2.3702505851908793, 48.87359159864639], [2.370243044122336, 48.87360334656603]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 17, "zemmour_eric": 40.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "10-14", "circ_bv": "05", "num_bureau": 14, "roussel_fabien": 16.0, "nb_emargement": 1242.0, "nb_procuration": 100.0, "nb_vote_blanc": 9.0, "jadot_yannick": 143.0, "le_pen_marine": 42.0, "nb_exprime": 1226.0, "nb_vote_nul": 8.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1642.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1243, "quartier_bv": "40", "geo_point_2d": [48.87201401115808, 2.371540376833685], "melenchon_jean_luc": 634.0, "poutou_philippe": 9.0, "macron_emmanuel": 272.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.38424633185356, 48.888417658224], [2.384236677329533, 48.888443299516176], [2.384195507003815, 48.88852180906511], [2.384136861267316, 48.88862926063225], [2.384076128024537, 48.88874507231348], [2.3840174831644863, 48.88885252290802], [2.383956748032077, 48.88896833449813], [2.383898102663588, 48.88907578591165], [2.383837368368967, 48.88919159742467], [2.383778721149593, 48.88929904785157], [2.3837767115352753, 48.88930153222775], [2.383635706531955, 48.88942452616338], [2.383528832586409, 48.889516865107225], [2.383421958272561, 48.8896092030486], [2.383280951598012, 48.88973219653201], [2.383232438642612, 48.889774111341225], [2.383215754067362, 48.88978803412899], [2.383250158141372, 48.88982030631564], [2.383427654784418, 48.88991153024484], [2.383611014654221, 48.890001864076496], [2.383615553431541, 48.890012343846635], [2.383592936042711, 48.89005048453787], [2.383566386453093, 48.89008519655411], [2.383572239463769, 48.8900972137351], [2.383699828548431, 48.890141245638134], [2.383783272141423, 48.89016297819683], [2.383796143312996, 48.89016289874331], [2.383829371157407, 48.8901509055161], [2.38385292493042, 48.890133891054944], [2.3838508350979533, 48.890119986691865], [2.384002726017885, 48.889997334559354], [2.384142147911962, 48.88988740554144], [2.384143238250145, 48.88987685671631], [2.384072501878327, 48.88980251652289], [2.384009425034525, 48.88972515709326], [2.383938689059833, 48.8896508168105], [2.383875612598704, 48.88957345729966], [2.383876384693497, 48.88956410563167], [2.383888513948532, 48.889550529832064], [2.383972334779632, 48.88947010219842], [2.384022865287009, 48.88941354391612], [2.384039713383559, 48.88941044069218], [2.384171760917795, 48.88944973135525], [2.38430569356933, 48.88949281410931], [2.384437740149433, 48.8895321044691], [2.384571674585915, 48.88957518782871], [2.38458830654042, 48.88957271923725], [2.384701913301123, 48.88947897774249], [2.384816621531472, 48.88938547201926], [2.384930227472505, 48.88929173029189], [2.385044934890983, 48.88919822343473], [2.385158540012556, 48.88910448147473], [2.385273245234209, 48.88901097527523], [2.385386849536129, 48.888917233082665], [2.385501555309737, 48.88882372575617], [2.385517466061703, 48.888821097751546], [2.385658252920349, 48.88886033092264], [2.385817749214406, 48.88889369828943], [2.385834294546034, 48.88888883778379], [2.3859209523253773, 48.8887627071811], [2.386011044613142, 48.888630711649434], [2.386097701545371, 48.88850457998996], [2.38618779293849, 48.88837258429428], [2.38620588295486, 48.888368092282626], [2.386383448192622, 48.8884214544374], [2.3865500524204553, 48.888471066653295], [2.386727618351474, 48.888524429191946], [2.386894221873094, 48.888574040917305], [2.387071788518549, 48.88862740204128], [2.387238394061256, 48.888677013290135], [2.387404998557724, 48.88872662429796], [2.38758256624693, 48.88877998465705], [2.387749172764485, 48.8888295951883], [2.387926741157529, 48.88888295503207], [2.388093346968748, 48.88893256507283], [2.388270916055062, 48.88898592530046], [2.388278590173211, 48.888996010826375], [2.388237162546351, 48.88912220779963], [2.388196651984996, 48.889249148672874], [2.388155223958152, 48.88937534558868], [2.388114712989532, 48.88950228730418], [2.388073284573368, 48.88962848326329], [2.388032773207942, 48.88975542492181], [2.387991344381215, 48.88988162172271], [2.387950832629648, 48.89000856242493], [2.38790940340292, 48.890134759168426], [2.387868891254638, 48.890261699813635], [2.387827461627904, 48.890387896499604], [2.387786949072329, 48.89051483798713], [2.387745519045583, 48.89064103461568], [2.387705006103854, 48.890767975146915], [2.387663575677089, 48.89089417171796], [2.3876230623387302, 48.891021112192185], [2.387581631511841, 48.891147308705804], [2.387541117766166, 48.89127425002224], [2.387499686549825, 48.89140044557911], [2.387459173771187, 48.89152738684554], [2.387417740780451, 48.8916535832372], [2.387377227615649, 48.89178052354734], [2.38736564536627, 48.89181579944625], [2.3873429519077343, 48.8918354207025], [2.387358959119156, 48.891854221928725], [2.387329109318523, 48.89194514146689], [2.387294384529638, 48.89204803835974], [2.387252952089089, 48.892174234641445], [2.387218226996914, 48.892277131490715], [2.387223084055241, 48.89228614054126], [2.38737775758853, 48.89236674468943], [2.387532198320031, 48.892445846475795], [2.387686872806286, 48.89252645021295], [2.387841314470549, 48.89260555248839], [2.387995989909776, 48.892686155814545], [2.3881504325279552, 48.8927652567805], [2.388305108920156, 48.89284585969566], [2.388459552481676, 48.89292496025148], [2.388614231190677, 48.893005562762546], [2.388768675684887, 48.8930846638074], [2.388923353983155, 48.893165265900514], [2.389077799431275, 48.89324436563592], [2.389232478682531, 48.89332496731799], [2.389386925063459, 48.893404067542434], [2.389541605278251, 48.893484667914265], [2.389696052602542, 48.8935637677285], [2.389850733759786, 48.89364436858849], [2.390005182037982, 48.893723467093274], [2.390159864148224, 48.89380406754229], [2.390314313359257, 48.89388316653608], [2.390468996422504, 48.89396376657402], [2.39062344658744, 48.894042864258374], [2.390777897211134, 48.894121962637065], [2.390932581712003, 48.89420256115938], [2.391087033279079, 48.89428165912783], [2.391241720086297, 48.894362258145314], [2.391396171243415, 48.89444135479733], [2.391550859003654, 48.894521953403746], [2.391705312457508, 48.89460105055173], [2.391859999806812, 48.89468164874017], [2.392014454214665, 48.89476074457865], [2.392169142516992, 48.89484134235603], [2.392323597868236, 48.89492043778424], [2.392478287123593, 48.89500103515054], [2.392632743407741, 48.8950801310678], [2.392787433616133, 48.895160728023036], [2.392941890854176, 48.895239822630764], [2.393096582015605, 48.895320419174936], [2.393100956123906, 48.89532194409908], [2.393285630244101, 48.89536014480384], [2.393469293418561, 48.89539909372759], [2.393653968072194, 48.89543729476095], [2.393837633158145, 48.89547624312395], [2.394022307002375, 48.89551444268042], [2.394205972625563, 48.895553391375074], [2.394390648377582, 48.895591590367744], [2.394574313195045, 48.895630537588595], [2.394758989490959, 48.89566873601057], [2.39494265620955, 48.895707683569924], [2.395127331685463, 48.895745881414314], [2.39531099895175, 48.895784828406], [2.39549567633544, 48.895823025686596], [2.395679342795958, 48.89586197120449], [2.395864020723526, 48.89590016791438], [2.396047689085182, 48.89593911377077], [2.396232367556625, 48.89597730990994], [2.3964160351020602, 48.89601625519176], [2.396600714117372, 48.89605445076022], [2.396784383584798, 48.89609339458206], [2.396791362821551, 48.89609517260848], [2.3968228045250193, 48.896088486288015], [2.396875532270092, 48.896002788129444], [2.396950961431016, 48.89588071005349], [2.397019901699815, 48.89576866168412], [2.397095330183023, 48.89564658349119], [2.397164268467317, 48.89553453500789], [2.397239696262412, 48.89541245759715], [2.397308635300194, 48.8953004081144], [2.3973840624175953, 48.89517833058671], [2.397453000834772, 48.89506628099687], [2.3975284272744872, 48.894944203352175], [2.397597363696589, 48.8948321545477], [2.397672789469035, 48.894710075886714], [2.397741726634424, 48.894598026982045], [2.397775832936517, 48.89446724908092], [2.397808724983951, 48.89434120534541], [2.397841615508378, 48.89421516157956], [2.3978757213087682, 48.89408438360426], [2.3979086128726133, 48.8939583397973], [2.397942718336385, 48.893827561772255], [2.397975609575798, 48.8937015179174], [2.39800971470306, 48.89357073984261], [2.398042605618045, 48.8934446959398], [2.398074671049085, 48.89332173432126], [2.398107561649522, 48.89319569037197], [2.398139626763413, 48.893072729607375], [2.398172517049305, 48.89294668561161], [2.39820458323066, 48.89282372390927], [2.398237471838196, 48.892697679860184], [2.3982695377024053, 48.8925747190118], [2.398302427369613, 48.892448674023825], [2.398334491563271, 48.89232571312326], [2.398366556969283, 48.892202752207176], [2.398399446166664, 48.89207670714981], [2.39843150990214, 48.89195374618157], [2.398464398774606, 48.891827701977014], [2.398496462213743, 48.891704740064206], [2.39852935077169, 48.891578695813216], [2.398561415257494, 48.89145573476118], [2.398594302147532, 48.89132968955758], [2.398617512950079, 48.89120254263443], [2.398637273824988, 48.8910761643717], [2.398660484409587, 48.890949017410804], [2.398680245083982, 48.89082263911179], [2.398703455450637, 48.89069549211321], [2.39872321592452, 48.89056911377788], [2.398746426083616, 48.8904419658423], [2.398766186357092, 48.89031558747074], [2.398773186268143, 48.89027724595538], [2.398742984534809, 48.8902519925025], [2.398737812705789, 48.89025142604244], [2.398551067780404, 48.890202578748315], [2.398352612176847, 48.89015113893586], [2.39816586933625, 48.89010229104343], [2.397967414495366, 48.8900508505879], [2.397780671001668, 48.890002002982676], [2.397582216934069, 48.88995056098477], [2.397395475525155, 48.889901712781224], [2.397197022220246, 48.88985027014027], [2.397010281532376, 48.889801421331555], [2.396829643387782, 48.88975358142815], [2.396642903391327, 48.88970473204224], [2.3964622672833302, 48.88965689158731], [2.39627552661456, 48.88960804161728], [2.3960948911796303, 48.88956020060396], [2.395908152566016, 48.889511350063565], [2.395727516440224, 48.88946350848498], [2.395540778518037, 48.88941465736736], [2.395360144418608, 48.889366816136516], [2.395173407198293, 48.889317963542425], [2.39499277240801, 48.88927012174631], [2.3949363348194552, 48.88925535661151], [2.394930697628681, 48.88925177760786], [2.394909381366237, 48.88924582520612], [2.394779081103795, 48.88921173713309], [2.394600620288266, 48.88916617651027], [2.394413884500089, 48.88911732272281], [2.394235422963968, 48.88907176154494], [2.394048687857021, 48.88902290718375], [2.393870228327752, 48.88897734546455], [2.393683492538424, 48.888928490522765], [2.393505033652292, 48.88888292825535], [2.393318299907816, 48.888834072746754], [2.393139840301112, 48.88878850992432], [2.392953107237878, 48.88873965384199], [2.392774649638029, 48.88869409047824], [2.392596190997376, 48.888648525940475], [2.392409458935737, 48.88859966990339], [2.392231002301846, 48.888554104824344], [2.392044270921454, 48.888505248213576], [2.391865813567021, 48.88845968257942], [2.39167908286788, 48.88841082539492], [2.391500627520315, 48.88836525921952], [2.391313896138831, 48.88831640145445], [2.391135441434435, 48.888270834730875], [2.390948712097808, 48.88822197639903], [2.390770256672891, 48.88817640912036], [2.390583528017528, 48.88812755021483], [2.390405074599585, 48.88808198239493], [2.390267627423552, 48.88804601834392], [2.390249817966951, 48.88803847047384], [2.390237790103571, 48.8880379703536], [2.390188509320412, 48.88802507491299], [2.3900376010637903, 48.887985254092925], [2.389850873781366, 48.887936394036345], [2.389699966039951, 48.88789657278755], [2.389513239392346, 48.88784771220053], [2.3893623321661392, 48.88780789052296], [2.389362292746549, 48.887807879530044], [2.389175566733845, 48.88775901841249], [2.388988091552748, 48.88770999489607], [2.388801366242179, 48.887661133190576], [2.388613893129474, 48.88761210909085], [2.388427168521145, 48.88756324679752], [2.388239694749476, 48.88751422210059], [2.38805297084319, 48.88746535921935], [2.387865499139916, 48.88741633393913], [2.387678774572105, 48.88736747046304], [2.387491303573553, 48.88731844459259], [2.387304581071669, 48.88726958053561], [2.387117110777843, 48.88722055407493], [2.386930387614347, 48.88717168942302], [2.386742918025253, 48.887122662372136], [2.386556196927586, 48.88707379713936], [2.386368728043226, 48.88702476949827], [2.386182006284064, 48.88697590367061], [2.385994538104544, 48.88692687543926], [2.385807818421822, 48.88687800813149], [2.385620350936339, 48.8868289802092], [2.385433630592139, 48.88678011230657], [2.3852461638114, 48.88673108379403], [2.385059445533043, 48.88668221531055], [2.384871979457049, 48.88663318620782], [2.3848387219772222, 48.88664258864609], [2.384826120739567, 48.886671607133685], [2.384799256826137, 48.886790969438636], [2.384767402407507, 48.886913262159126], [2.38474053824544, 48.88703262352537], [2.3847086835410822, 48.887154916203315], [2.384681819119749, 48.88727427753017], [2.384649965493333, 48.88739657017256], [2.384623100802004, 48.88751593235925], [2.384591245526282, 48.88763822495214], [2.38456438058631, 48.887757586200074], [2.384532525024848, 48.887879878750475], [2.384524027087484, 48.887896530096874], [2.384522130265853, 48.8878997480161], [2.384464093898146, 48.888013449624715], [2.384403362101407, 48.88812926153685], [2.384342630034523, 48.88824507340599], [2.384276093431479, 48.8883754262064], [2.384256532429638, 48.888412728434076], [2.38424633185356, 48.888417658224]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 42, "zemmour_eric": 143.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-46", "circ_bv": "16", "num_bureau": 46, "roussel_fabien": 19.0, "nb_emargement": 1300.0, "nb_procuration": 66.0, "nb_vote_blanc": 4.0, "jadot_yannick": 96.0, "le_pen_marine": 59.0, "nb_exprime": 1292.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1941.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1299, "quartier_bv": "74", "geo_point_2d": [48.891412936742846, 2.3923339631983205], "melenchon_jean_luc": 572.0, "poutou_philippe": 7.0, "macron_emmanuel": 299.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.363863178922768, 48.86750003402926], [2.363914046528337, 48.867532248078334], [2.364068886121788, 48.86759979749509], [2.364253334101615, 48.86767771599687], [2.36440817320425, 48.867745264958565], [2.36459262358076, 48.8678231820352], [2.364645423814335, 48.867846216554774], [2.36465411627564, 48.867851424914015], [2.364673066861675, 48.86785586212979], [2.364775105271561, 48.8679003769922], [2.364957688299784, 48.867973329110725], [2.365112529183571, 48.868040878042436], [2.3651830369656652, 48.86806904884861], [2.365199393664297, 48.868074698922484], [2.365236224033953, 48.86804281567297], [2.365305166998135, 48.86792843710299], [2.365372632660272, 48.86781567665822], [2.365441573661284, 48.867701297978975], [2.365509038734089, 48.86758853743419], [2.365577979145852, 48.86747415775358], [2.36564544362923, 48.86736139710873], [2.365712906457401, 48.86724863640714], [2.365781847323907, 48.867134257480465], [2.365849309562669, 48.86702149667885], [2.365918249829087, 48.86690711765014], [2.365918415799315, 48.86690076198345], [2.365877070058337, 48.866824605228345], [2.36583157438462, 48.86674255376322], [2.365840851160113, 48.866730776573554], [2.366040252952312, 48.86669555979195], [2.366235400167586, 48.86666122128995], [2.36643480142692, 48.8666260038488], [2.366629946758433, 48.86659166469413], [2.366829347484793, 48.86655644659348], [2.3670244936697182, 48.866522105901296], [2.367223893852068, 48.866486888040384], [2.367419039516335, 48.866452546702774], [2.3676141835601943, 48.86641820503872], [2.367813582946285, 48.86638298619207], [2.367822122095936, 48.866383310092054], [2.367976758856388, 48.86642366454412], [2.368139846126594, 48.866467288446316], [2.368157639327853, 48.866462270523], [2.368233260512969, 48.86633651185684], [2.368308845968861, 48.86621040939337], [2.368384467797267, 48.866084649711006], [2.368460052510807, 48.86595854802258], [2.3685356722455833, 48.86583278820887], [2.36861125622769, 48.8657066863963], [2.368686876594858, 48.8655809264656], [2.36876245984564, 48.86545482452883], [2.368780258202368, 48.86544979754432], [2.368939774938035, 48.86549247075667], [2.369107748974717, 48.865537734373206], [2.369267264884908, 48.86558040713856], [2.369435240852773, 48.8656256702991], [2.369594757300381, 48.86566834262454], [2.369731378237035, 48.86570515726259], [2.369748844703977, 48.86570570340949], [2.369759409893271, 48.86568998818071], [2.369851595596824, 48.86556589759949], [2.369945101169826, 48.86543982723664], [2.370037285988392, 48.86531573648435], [2.3701307892999273, 48.865189665940726], [2.370222973233521, 48.86506557501737], [2.3703164756468, 48.86493950430023], [2.370408658695332, 48.86481541320581], [2.370502160210266, 48.86468934231516], [2.370594342373849, 48.86456525104967], [2.370687842990452, 48.86443917998546], [2.3707800242692, 48.86431508854892], [2.3708735253613042, 48.86418901641903], [2.370868431143181, 48.86417740789702], [2.370760904002153, 48.86413370020408], [2.370639157771894, 48.86408619885386], [2.370635650571101, 48.8640806602407], [2.3706052892484, 48.864075169267224], [2.370552064802631, 48.86405440230577], [2.37040463278257, 48.863996819776496], [2.370229663019332, 48.86392855005157], [2.370082231722651, 48.8638709662193], [2.369907262793706, 48.86380269691457], [2.369759830846588, 48.86374511267143], [2.369584864125755, 48.863676842894755], [2.369437432891151, 48.863619258247965], [2.369418883891882, 48.863622279440364], [2.369324067453184, 48.86372381757519], [2.369229758449819, 48.863824395104835], [2.369134939911705, 48.863925933064124], [2.36904063018812, 48.864026509527086], [2.368945810913533, 48.86412804731798], [2.368851501811106, 48.86422862452007], [2.368756681800039, 48.86433016214258], [2.368662370614425, 48.86443073827076], [2.368567549866869, 48.86453227572495], [2.368473237939325, 48.86463285258501], [2.368456145408998, 48.86463634897149], [2.368384602631255, 48.86461553115594], [2.368320162834531, 48.86459688133087], [2.368305158696455, 48.86459868626176], [2.368154579582276, 48.864695794785035], [2.368004012179882, 48.86479380161891], [2.367853431940391, 48.864890909746244], [2.367702863407536, 48.864988916183954], [2.367552282042725, 48.86508602391526], [2.367401712379298, 48.86518402995683], [2.36738700235143, 48.86518595773859], [2.367230988215705, 48.86514408337999], [2.36707147866638, 48.86510057061347], [2.366915465039989, 48.865058695840325], [2.366755954663598, 48.86501518174345], [2.366738545397841, 48.865019482919486], [2.366670255939636, 48.86510994891138], [2.366603668304094, 48.86519630937115], [2.366535378390811, 48.86528677437235], [2.366468791668757, 48.86537313475048], [2.366460957972598, 48.865377587298894], [2.366289227883083, 48.865415408321674], [2.366125004561436, 48.86545232544569], [2.365960781007141, 48.86548924234316], [2.365789050197383, 48.865527061745155], [2.365780347954675, 48.865527046208655], [2.365608396375767, 48.865489280724276], [2.365422272913448, 48.86544754479617], [2.365342787949257, 48.86540987165126], [2.365330098298347, 48.865418710551516], [2.365297658844149, 48.86541717152226], [2.365318206472753, 48.865439378240225], [2.365247703723357, 48.86555909088058], [2.365171892387221, 48.86568831913404], [2.365101388964797, 48.865808031661246], [2.365025576903435, 48.86593725979295], [2.364955072807872, 48.86605697220707], [2.364879260021274, 48.866186200217044], [2.364808755252565, 48.866305912518015], [2.364732943103841, 48.86643514041349], [2.364732888835283, 48.866435230959006], [2.364667958097471, 48.86654203840346], [2.364592145255846, 48.86667126618216], [2.364527213946241, 48.86677807262826], [2.3644513990488383, 48.866907300283025], [2.3643864685195, 48.8670141066372], [2.36431065292954, 48.8671433341752], [2.364245721817435, 48.86725014043025], [2.364242338233378, 48.86725338796599], [2.364072881642818, 48.86735703705953], [2.363893051866114, 48.86746256885744], [2.363863178922768, 48.86750003402926]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 61, "zemmour_eric": 72.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "11-21", "circ_bv": "07", "num_bureau": 21, "roussel_fabien": 22.0, "nb_emargement": 1262.0, "nb_procuration": 91.0, "nb_vote_blanc": 9.0, "jadot_yannick": 126.0, "le_pen_marine": 49.0, "nb_exprime": 1250.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1551.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1262, "quartier_bv": "41", "geo_point_2d": [48.865733678603355, 2.367361750006272], "melenchon_jean_luc": 429.0, "poutou_philippe": 7.0, "macron_emmanuel": 423.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.289858944480748, 48.858234719607346], [2.289865860989075, 48.858257365963965], [2.289915874416232, 48.858297661604134], [2.290041208925009, 48.85839779577458], [2.290162420530723, 48.858495453701906], [2.290287756001375, 48.85859558669703], [2.290408968517097, 48.85869324525653], [2.290534304937377, 48.85879337797554], [2.29065551837537, 48.858891036267885], [2.290780855745389, 48.85899116871087], [2.29090207010566, 48.85908882673607], [2.2910274084252222, 48.85918895890293], [2.291148623707781, 48.85928661666101], [2.291273962976997, 48.859386748551785], [2.291395179194082, 48.859484405143434], [2.29152051940083, 48.859584537657426], [2.291641736540213, 48.85968219398192], [2.291762952758843, 48.859779851066236], [2.291905599435816, 48.859884490603186], [2.291940660877831, 48.859933008679214], [2.29197004604184, 48.859936744884315], [2.292112692189132, 48.86004138505083], [2.2922484042444218, 48.86014047368171], [2.292391052883823, 48.86024511260597], [2.292526765999185, 48.86034420090297], [2.292669414392489, 48.86044883946816], [2.292805128567932, 48.86054792743128], [2.292947779428746, 48.86065256655281], [2.293083494676486, 48.86075165328274], [2.293115961661671, 48.86076417160578], [2.293175436013052, 48.86071591463662], [2.293317961869356, 48.860623856733135], [2.293460232235053, 48.86053250943494], [2.293602755735658, 48.86044045026974], [2.293745025101305, 48.86034910261791], [2.293887547584792, 48.860257043997585], [2.294029815962381, 48.86016569509278], [2.294172337440949, 48.86007363611808], [2.294314604818396, 48.85998228685961], [2.294457126655094, 48.85989022753856], [2.294599393032404, 48.859798877926416], [2.294741912501152, 48.859706818242934], [2.294884177878334, 48.85961546827717], [2.295026442744477, 48.85952411903401], [2.295168960719347, 48.85943205791987], [2.295311224585376, 48.85934070832308], [2.295453741543091, 48.85924864775383], [2.295596004421175, 48.85915729690413], [2.295738521736927, 48.859065235988524], [2.29588078225209, 48.85897388477715], [2.296023298562964, 48.8588818235072], [2.296165559440843, 48.85879047195019], [2.296308073383934, 48.85869841031785], [2.296450333261723, 48.85860705840724], [2.296592846200056, 48.858514996420546], [2.296735105065622, 48.858423645055574], [2.296877617011138, 48.858331581815264], [2.297019874876633, 48.85824023009665], [2.297162387180295, 48.85814816651002], [2.297304644045721, 48.85805681443778], [2.297447153969414, 48.8579647513881], [2.297589409846909, 48.85787339806294], [2.297731918765769, 48.85778133465892], [2.297874173643309, 48.85768998098017], [2.298016681557344, 48.85759791722181], [2.2981589354347323, 48.85750656318945], [2.298301443706824, 48.857414499084776], [2.298443696584168, 48.85732314469878], [2.298586202488671, 48.857231080231784], [2.298728454353875, 48.85713972639153], [2.298870959265577, 48.85704766067092], [2.299013210130757, 48.85695630647701], [2.299155714025662, 48.85686424130138], [2.29929796390292, 48.85677288585464], [2.299440468155788, 48.85668082033266], [2.299582717033029, 48.85658946453233], [2.299725218918254, 48.856497398648095], [2.299867466795488, 48.85640604249419], [2.300009967676036, 48.856313976255635], [2.3001522145532682, 48.85622261974813], [2.300294714428946, 48.856130553155296], [2.300436960306183, 48.85603919629423], [2.300579460539935, 48.855947129355066], [2.300721705405214, 48.85585577303973], [2.300864203283439, 48.855763704839], [2.30100644714864, 48.85567234817012], [2.301148944010049, 48.855580280514424], [2.301291186887444, 48.85548892259267], [2.30143368274411, 48.85539685458268], [2.301575924621437, 48.85530549630736], [2.301718420836186, 48.85521342795109], [2.30186066171355, 48.855122069322206], [2.302003155560852, 48.855030000603655], [2.302145395438261, 48.854938641621274], [2.3022878882807403, 48.85484657254846], [2.302430127158202, 48.85475521321253], [2.3025726189960682, 48.85466314378546], [2.302714856861555, 48.85457178499527], [2.302857349069446, 48.854479714322615], [2.302999585935003, 48.85438835517889], [2.303142075763358, 48.85429628504332], [2.303284311641022, 48.85420492464677], [2.303426800464784, 48.85411285415699], [2.303569035342529, 48.85402149340692], [2.303711523161502, 48.85392942256287], [2.303853757039334, 48.85383806145926], [2.303996245216408, 48.853745990268926], [2.304138476731654, 48.85365462880387], [2.3042809639040502, 48.853562557259295], [2.304363937285587, 48.853540010704606], [2.304365419918291, 48.853516032539275], [2.304225134265483, 48.85342100369236], [2.30408487523011, 48.8533265710993], [2.303944590598995, 48.853231541907284], [2.303804332594024, 48.85313710807], [2.3036640489846, 48.853042078532845], [2.303523791998014, 48.85294764435066], [2.303383510761007, 48.85285261537563], [2.303243254792794, 48.852758180848504], [2.303102973226723, 48.85266315062116], [2.30296271827688, 48.85256871574913], [2.302822437732476, 48.85247368517671], [2.30268218378896, 48.85237925085903], [2.302541905628957, 48.85228421994949], [2.302401651353086, 48.852189784379604], [2.302261374214731, 48.85209475312498], [2.302121122319948, 48.85200031721822], [2.3019808448284502, 48.85190528650982], [2.301840593952004, 48.851810850258126], [2.301700317494187, 48.851715818305415], [2.301560067636075, 48.85162138170879], [2.30141979356261, 48.85152634941895], [2.30127954334804, 48.851431913368764], [2.30113927029619, 48.85133688073388], [2.301077300582528, 48.8512951526746], [2.300999022474714, 48.85124244344745], [2.30098952655104, 48.85121927620501], [2.300927222372468, 48.851209710837786], [2.300893304389505, 48.85118954685594], [2.300874717084549, 48.85118975842106], [2.30074200976446, 48.851274316040566], [2.300598205665553, 48.851366418132216], [2.300465497458954, 48.85145097453232], [2.30032169238371, 48.851543076277025], [2.300188983266554, 48.85162763325633], [2.300045175852338, 48.85171973464612], [2.299912465848567, 48.851804290405966], [2.299768658820931, 48.851896391456776], [2.299635947906479, 48.85198094779576], [2.299492139902485, 48.85207304849961], [2.299359428089428, 48.85215760451852], [2.29930857800083, 48.85219017025388], [2.299294755211049, 48.852195212958115], [2.29928465130595, 48.85220453141208], [2.299191692361436, 48.85226406601425], [2.299047332220463, 48.85235576002211], [2.298903520779082, 48.852447859979485], [2.298759159609747, 48.85253955452379], [2.298615348514442, 48.852631654127585], [2.298470986340945, 48.85272334740976], [2.298327172866417, 48.852815446643966], [2.298182809664535, 48.85290714046262], [2.298038996536079, 48.852999239343255], [2.29789463095515, 48.85309093279105], [2.297750816810205, 48.85318303131009], [2.2976064515878702, 48.853274723503745], [2.297462636426232, 48.8533668216612], [2.297318268812706, 48.85345851438331], [2.297174452634466, 48.85355061217917], [2.297030085379538, 48.85364230364714], [2.296886268184794, 48.85373440108141], [2.296741898538642, 48.85382609307779], [2.29659808032718, 48.85391819015043], [2.296453711027489, 48.854009881791974], [2.296309891799508, 48.854101978503024], [2.296165520132848, 48.854193668874366], [2.296021699888137, 48.85428576522379], [2.295877328555788, 48.85437745613959], [2.295733507294441, 48.85446955212741], [2.295589133583054, 48.85456124267228], [2.295536186357124, 48.85459514705088], [2.295527436210305, 48.85460223374202], [2.295522143675004, 48.85461295171281], [2.295431268588369, 48.85467114204959], [2.295291381417927, 48.85476054189605], [2.295147556700869, 48.85485263713982], [2.295007668556408, 48.85494203663995], [2.294863842836836, 48.855034131527674], [2.294723952355637, 48.85512353067354], [2.294580126996461, 48.85521562521324], [2.294440235553401, 48.85530502311351], [2.2942964091918068, 48.85539711729716], [2.294156516762428, 48.85548651575042], [2.294012689398507, 48.85557860957798], [2.293872795995077, 48.855668007685], [2.293728967628721, 48.855760101156505], [2.293589073251236, 48.85584949891718], [2.293445243894531, 48.85594159113335], [2.293305348543087, 48.85603098854771], [2.293161518171742, 48.85612308130707], [2.293021621846227, 48.85621247837516], [2.292877790472426, 48.85630457077845], [2.292737893172836, 48.85639396750022], [2.2925940607965742, 48.8564860595474], [2.292454162535011, 48.85657545502356], [2.292310329156384, 48.85666754671468], [2.292170429908523, 48.85675694274381], [2.292026595527318, 48.85684903407884], [2.291886695305462, 48.856938429761655], [2.29174285855891, 48.857030520732515], [2.291602958725818, 48.85711991607704], [2.291459120976774, 48.85721200669182], [2.291319220181808, 48.85730140079072], [2.291175381430265, 48.85739349104938], [2.291035478286082, 48.857482885693194], [2.290891639894908, 48.85757497560381], [2.290751735776503, 48.857664369901244], [2.290607896382921, 48.857756459455736], [2.290467991290387, 48.85784585340686], [2.290324150894289, 48.85793794260526], [2.290184244839871, 48.85802733531072], [2.290040403441151, 48.85811942415299], [2.289900496400443, 48.858208817411374], [2.289858944480748, 48.858234719607346]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 168, "zemmour_eric": 154.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "7-25", "circ_bv": "02", "num_bureau": 25, "roussel_fabien": 5.0, "nb_emargement": 1018.0, "nb_procuration": 65.0, "nb_vote_blanc": 9.0, "jadot_yannick": 42.0, "le_pen_marine": 45.0, "nb_exprime": 1006.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1246.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1018, "quartier_bv": "28", "geo_point_2d": [48.855939727684714, 2.297038423571086], "melenchon_jean_luc": 76.0, "poutou_philippe": 2.0, "macron_emmanuel": 491.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.369281320050499, 48.88670453578762], [2.369300643235615, 48.8866991876638], [2.369414471729625, 48.88668226025336], [2.369522253299442, 48.88667108805101], [2.369529942467701, 48.88666845304697], [2.369665174325634, 48.88657615863965], [2.369801561508961, 48.88648605641476], [2.369936792411804, 48.8863937616853], [2.370073178636552, 48.886303660035374], [2.37020840859519, 48.886211364084545], [2.370344793872248, 48.88612126211026], [2.370480022875805, 48.88602896583737], [2.370616407205181, 48.88593886353879], [2.370751635253663, 48.8858465669438], [2.370888017271735, 48.885756464313666], [2.370899286584844, 48.88575388760215], [2.37110019765951, 48.885769716290625], [2.3713019529732913, 48.8857869007605], [2.37150286429772, 48.88580272877282], [2.37170461986133, 48.88581991346298], [2.371905531446363, 48.88583573989986], [2.372107288634481, 48.88585292391816], [2.372143781259894, 48.88584974281413], [2.372149861824544, 48.88583256340748], [2.372269864381791, 48.8857242824897], [2.372384918994595, 48.88561871575273], [2.372504919206753, 48.88551043457114], [2.3726199728814, 48.8854048666885], [2.37273997347552, 48.88529658525742], [2.372855024826832, 48.8851910180205], [2.37288831043394, 48.885160022624525], [2.372874829002349, 48.885148483806816], [2.372819858913701, 48.88512122418458], [2.372659928981185, 48.885040589118006], [2.372503197731539, 48.88496286462517], [2.372343268786441, 48.884882228224775], [2.372186537122547, 48.88480450329908], [2.372026610506889, 48.8847238673705], [2.371869879792147, 48.88464614201908], [2.371709952789661, 48.88456550564878], [2.371553223035021, 48.88448777897239], [2.371393298372699, 48.88440714217468], [2.371236569556454, 48.88432941597189], [2.371076644507304, 48.88424877873244], [2.370919918014651, 48.88417105121185], [2.370759993942164, 48.884090413537834], [2.370603267024401, 48.884012686483636], [2.370443343928573, 48.88393204837507], [2.370286619323625, 48.883854320902394], [2.370278197470748, 48.88385251662332], [2.370105473564597, 48.88385439685006], [2.369931197224, 48.88385598806788], [2.36975847193013, 48.883857867786865], [2.369584195567421, 48.883859458499536], [2.369411470249516, 48.883861337717924], [2.369237193864596, 48.88386292792553], [2.369064469886244, 48.88386480665049], [2.368890193479021, 48.88386639635302], [2.36881998853736, 48.88384562682243], [2.368807795567446, 48.88385276795446], [2.368782205748387, 48.88389706881349], [2.368713539410048, 48.883954218764615], [2.368658869677618, 48.88396151722182], [2.368645321246917, 48.88397517760805], [2.368642328924699, 48.88397701714112], [2.368512720453001, 48.88403544459859], [2.368417279839941, 48.88408764085501], [2.3684127624081412, 48.88408896241845], [2.368267321901862, 48.88411194184277], [2.368148576032671, 48.88414526394001], [2.368146937346182, 48.88414545404334], [2.367970121312169, 48.88415868968631], [2.367756572857933, 48.884168528598465], [2.367662590549136, 48.8841755632405], [2.367608553717039, 48.88415485591165], [2.36756787045416, 48.88417474008636], [2.36748503655234, 48.884180939545736], [2.367285562421828, 48.884193674060405], [2.367108746016002, 48.884206907531414], [2.366909271694006, 48.88421964141891], [2.366732455104493, 48.884232874333904], [2.366685987889804, 48.88423876735892], [2.366701173225769, 48.88429339907813], [2.366803728039282, 48.884419577506854], [2.366901393028986, 48.88453859651227], [2.36699905710152, 48.88465761541795], [2.367101614728512, 48.88478379265768], [2.367199279707584, 48.88490281227272], [2.367301836939104, 48.88502898930557], [2.367303118073728, 48.885030283011965], [2.367424850567843, 48.885134561024365], [2.367547208844476, 48.88523765599454], [2.367668942312142, 48.88534193373913], [2.367791301559177, 48.8854450284404], [2.367913037374945, 48.88554930502504], [2.368035397581679, 48.8856524003567], [2.368157133007394, 48.8857566766663], [2.368279494195563, 48.88585977082977], [2.368401230583946, 48.885964047770806], [2.368523592742544, 48.88606714166538], [2.368645330115419, 48.88617141743925], [2.368767693233755, 48.88627451196419], [2.368889431580226, 48.88637878747025], [2.369011795680013, 48.88648188082697], [2.36913353635284, 48.88658615697162], [2.369255901423086, 48.88668925005944], [2.369281320050499, 48.88670453578762]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 28, "zemmour_eric": 49.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "19-70", "circ_bv": "17", "num_bureau": 70, "roussel_fabien": 14.0, "nb_emargement": 963.0, "nb_procuration": 43.0, "nb_vote_blanc": 13.0, "jadot_yannick": 46.0, "le_pen_marine": 52.0, "nb_exprime": 945.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1370.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 963, "quartier_bv": "73", "geo_point_2d": [48.88507095106924, 2.3697151789431463], "melenchon_jean_luc": 517.0, "poutou_philippe": 3.0, "macron_emmanuel": 201.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.374131231575129, 48.877163830293284], [2.374129232425539, 48.87717009628248], [2.374124361001201, 48.877278203842216], [2.374111634660895, 48.877424768039084], [2.3741067631761092, 48.87753287557311], [2.37409403673486, 48.87767943883495], [2.374089165189724, 48.877787546343335], [2.3740893280582442, 48.87778953741643], [2.374120995372682, 48.877914988006886], [2.374154533157345, 48.878065546901844], [2.37418620080747, 48.878190996544355], [2.374204239034428, 48.87827196952501], [2.374200333092418, 48.878277717419344], [2.374200614681941, 48.878291388730425], [2.374216115970147, 48.87836097459506], [2.374237678028265, 48.87848548732057], [2.374237757481656, 48.87848591042163], [2.374255220817278, 48.87860249028778], [2.374276784432218, 48.878727002986075], [2.374294247936039, 48.87884358282108], [2.374315811744205, 48.8789680954851], [2.374333276768777, 48.87908467619528], [2.374333338201088, 48.879085351014474], [2.3743549022136152, 48.87920986274485], [2.374358379583804, 48.879308577066844], [2.374347509409911, 48.87943548505691], [2.374350986781153, 48.87953419935891], [2.374350951619541, 48.87953508321701], [2.374335963251638, 48.87966632601467], [2.37432509158498, 48.87979323395439], [2.374310103088419, 48.87992447581882], [2.374299231304958, 48.88005138372644], [2.374298645305264, 48.88005339965974], [2.374247236261049, 48.88016150023024], [2.374195189862392, 48.88027326220693], [2.374143780397211, 48.880381361812184], [2.374091733546011, 48.88049312462082], [2.374040323649056, 48.88060122416006], [2.373988276366921, 48.88071298600214], [2.373936866027377, 48.88082108637466], [2.373884816940093, 48.8809328481423], [2.373890963309799, 48.88094786761049], [2.373923174816926, 48.88095682790825], [2.374086972688982, 48.88087971701408], [2.374241000064717, 48.880806698934634], [2.374404795630611, 48.88072958758802], [2.374558822116623, 48.880656569089695], [2.374722618103149, 48.88057945730485], [2.374876643699641, 48.88050643838774], [2.375040437380018, 48.880429326150434], [2.375194462086792, 48.88035630681444], [2.375348486361762, 48.880283287275475], [2.375512278641577, 48.88020617437703], [2.375512773568218, 48.88020595032758], [2.375540845551245, 48.88019384068877], [2.37555251577708, 48.88019421182948], [2.375568644242156, 48.88018166486609], [2.375691259725682, 48.88012876903595], [2.375813997342244, 48.880073512075334], [2.375819908470274, 48.88006542014678], [2.375809567836415, 48.87997334409398], [2.375801487885397, 48.879885599301744], [2.375801479268208, 48.879885521914424], [2.375785194247876, 48.87975563039327], [2.375767323936635, 48.879622519079646], [2.375751040436411, 48.879492628429205], [2.375733168939345, 48.879359517071585], [2.375716885617313, 48.879229625486204], [2.37569901429769, 48.87909651409169], [2.375682731143069, 48.878966622470664], [2.375664861364435, 48.87883351104641], [2.375648577013775, 48.878703619382605], [2.375630707412774, 48.87857050792148], [2.375646522645253, 48.878560843453215], [2.3758526331048, 48.8785834284137], [2.3760530762131102, 48.87860528380058], [2.376259187024824, 48.878627868060185], [2.376459630464103, 48.87864972366474], [2.376665740275297, 48.878672306317156], [2.376866184056106, 48.878694161240134], [2.377072295582883, 48.878716743198765], [2.377272739705413, 48.8787385974402], [2.377478851573469, 48.87876117959726], [2.377679294684914, 48.878783032250745], [2.377879739317271, 48.87880488547453], [2.378085851710946, 48.87882746658517], [2.378124515505732, 48.878831681147794], [2.378133270495975, 48.87882769312796], [2.378134549501933, 48.87880747832041], [2.378075537080775, 48.87870389621424], [2.378020357100678, 48.87860241952798], [2.377961343775538, 48.878498837339166], [2.377906164235194, 48.87839736058139], [2.3779054444768812, 48.87839335122048], [2.377925502294727, 48.87827182810664], [2.377945974281007, 48.87814838435833], [2.377966031920685, 48.87802686031145], [2.377986503703874, 48.87790341742804], [2.377982860027226, 48.87789626230056], [2.377833803109159, 48.8777922318717], [2.377690287088838, 48.87769192630123], [2.377546771621312, 48.877591620549595], [2.377397716435408, 48.87748759044826], [2.377387270362596, 48.87748478056673], [2.377207672254871, 48.87748944829682], [2.377026795123641, 48.877493778147524], [2.376847196952586, 48.877498445336755], [2.376666319771009, 48.87750277374348], [2.376486721536534, 48.87750744039192], [2.376305844282994, 48.87751176915325], [2.376126245995976, 48.87751643436154], [2.375945368681244, 48.877520762578236], [2.375765770320249, 48.87752542814499], [2.375584892955009, 48.8775297549177], [2.375571164155631, 48.87752292842528], [2.375523789275236, 48.87739666869383], [2.375478225441842, 48.87727449145165], [2.375430852386915, 48.8771482307628], [2.375385288988873, 48.87702605345774], [2.375339727157309, 48.87690387702817], [2.375292353411731, 48.87677761623495], [2.375292638787398, 48.87676553249199], [2.3752798996413, 48.87675976694123], [2.375146889442898, 48.87671643897592], [2.375022011525668, 48.87667557522001], [2.374897132430211, 48.87663471222448], [2.374764122869593, 48.876591383828966], [2.374748943228015, 48.8765927749552], [2.3746321758810742, 48.87666238402534], [2.374520409417069, 48.876729151136075], [2.374518460091855, 48.87673059247403], [2.374407527158599, 48.87683293963475], [2.374303087022423, 48.87692775993246], [2.37430140119511, 48.87692985196203], [2.374244622080967, 48.87703044230701], [2.374176741253476, 48.87715147036697], [2.374131231575129, 48.877163830293284]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 45, "zemmour_eric": 88.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-6", "circ_bv": "16", "num_bureau": 6, "roussel_fabien": 27.0, "nb_emargement": 1110.0, "nb_procuration": 56.0, "nb_vote_blanc": 10.0, "jadot_yannick": 107.0, "le_pen_marine": 44.0, "nb_exprime": 1097.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1405.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1110, "quartier_bv": "76", "geo_point_2d": [48.87849782747433, 2.375538630936622], "melenchon_jean_luc": 414.0, "poutou_philippe": 10.0, "macron_emmanuel": 311.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.32420249910148, 48.84317461911384], [2.324231827626503, 48.84320675540528], [2.324323301493479, 48.84328110453134], [2.324429443448187, 48.84337199118838], [2.324559596378514, 48.84347777817761], [2.324665737794959, 48.84356866370199], [2.324713524963893, 48.84361706743699], [2.324737582192934, 48.843615969304366], [2.324921161001452, 48.84355566334697], [2.325081005976564, 48.84350123186298], [2.32526458398356, 48.84344092537239], [2.325424428248107, 48.84338649342393], [2.325584272178774, 48.843332061259254], [2.32576784899593, 48.84327175488655], [2.325927692216034, 48.843217322257416], [2.326111268243301, 48.84315701445225], [2.32627111075284, 48.84310258135867], [2.326391526530743, 48.843063022786446], [2.326426182438248, 48.84304857716645], [2.326370674081309, 48.842981494884896], [2.326316048786259, 48.842903662942575], [2.326235606626563, 48.84280593551705], [2.326241825521648, 48.842793490057396], [2.326416852827848, 48.84273967560302], [2.326588152560312, 48.84268537853464], [2.326763177783263, 48.84263156356068], [2.326934476799598, 48.84257726599114], [2.327109501301996, 48.84252345050528], [2.3272807996022, 48.84246915243458], [2.327455824746329, 48.842415336444496], [2.327627120967912, 48.84236103786498], [2.32780214539138, 48.84230722136298], [2.3279734408968302, 48.84225292228233], [2.328148464599736, 48.84219910526847], [2.328319759389052, 48.842144805686615], [2.328494782371191, 48.8420909881609], [2.328666077806849, 48.84203668808556], [2.328841098705943, 48.84198287004027], [2.329012393425459, 48.84192856946379], [2.329187414966259, 48.84187475091427], [2.329358707607156, 48.84182044982905], [2.329363768139513, 48.841806999411524], [2.329242878010036, 48.84169896708464], [2.32912518021968, 48.84159405083953], [2.32900429106708, 48.84148601915029], [2.328886595600225, 48.8413811026581], [2.328765706085183, 48.841273069800174], [2.328648011579558, 48.841168153053225], [2.328530317536174, 48.84106323707994], [2.328409430859311, 48.84095520383889], [2.328291736426176, 48.84085028670388], [2.328170850737631, 48.840742253201135], [2.3280531586164512, 48.84063733671838], [2.327932272553975, 48.840529302946294], [2.327814581405482, 48.840424385309504], [2.327693697693843, 48.84031635128336], [2.327673779949107, 48.84031491816972], [2.327530491065894, 48.84039744265925], [2.327389812225336, 48.84047796706821], [2.327246521093439, 48.84056049029857], [2.327105841374191, 48.84064101436184], [2.326962550695268, 48.84072353814699], [2.326821868734676, 48.840804061856865], [2.32667857715789, 48.84088658528981], [2.32653789568094, 48.840967108661665], [2.326533878789049, 48.8409687031077], [2.326359653417012, 48.841013123923474], [2.326187856834683, 48.841057146256446], [2.326013630883835, 48.84110156566547], [2.3258418337177362, 48.84114558749804], [2.325670036261433, 48.84118960908215], [2.325495809426392, 48.841234027731716], [2.325324011386325, 48.841278048815404], [2.325149783949116, 48.8413224678568], [2.324977985336931, 48.84136648754081], [2.324803757309198, 48.84141090607472], [2.3247769974814823, 48.841412661688054], [2.324773523973426, 48.841416163099915], [2.324774176733419, 48.84143519107433], [2.32473835338731, 48.84155998274852], [2.324702139020204, 48.84167929055687], [2.324666316684657, 48.84180408308919], [2.324630101982944, 48.841923390849615], [2.324593887115534, 48.84204269858634], [2.324558062920195, 48.84216749013865], [2.324521849069097, 48.842286798734456], [2.324486024533494, 48.842411590237894], [2.324449808997048, 48.84253089787879], [2.324413985483566, 48.84265568934103], [2.324377769600941, 48.84277499783336], [2.32434194438479, 48.842899789239034], [2.324305729541796, 48.84301909679187], [2.324269903985266, 48.84314388814867], [2.32420249910148, 48.84317461911384]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 70, "zemmour_eric": 100.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "14-32", "circ_bv": "11", "num_bureau": 32, "roussel_fabien": 24.0, "nb_emargement": 1190.0, "nb_procuration": 63.0, "nb_vote_blanc": 19.0, "jadot_yannick": 101.0, "le_pen_marine": 58.0, "nb_exprime": 1170.0, "nb_vote_nul": 0.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1403.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "53", "geo_point_2d": [48.841943864744465, 2.326507402408206], "melenchon_jean_luc": 287.0, "poutou_philippe": 8.0, "macron_emmanuel": 476.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37048459660303, 48.818361244369875], [2.370462963431012, 48.81838394235347], [2.37037322721514, 48.81849165900039], [2.370268288559975, 48.81861235630471], [2.370178551559735, 48.818720071884364], [2.370073611994282, 48.81884076899331], [2.369983874187942, 48.81894848530431], [2.369878935074074, 48.81906918222511], [2.369789196472487, 48.81917689836814], [2.369684255086427, 48.81929759508638], [2.369594515689581, 48.81940531106139], [2.369489573393099, 48.81952600758433], [2.369399833211862, 48.819633722492085], [2.369294891367054, 48.81975441882681], [2.369205150379666, 48.81986213446591], [2.369100206262616, 48.81998283059807], [2.369010464479943, 48.82009054606921], [2.369009444085319, 48.82009765926935], [2.369070966028194, 48.82022640981893], [2.369138682181165, 48.820364085158374], [2.369144651869064, 48.82036902816096], [2.369269962467869, 48.820418448129466], [2.369398596406306, 48.820468217360244], [2.36952390612225, 48.82051763705114], [2.36965254054777, 48.82056740600435], [2.369658860990199, 48.8205773648644], [2.369616038152246, 48.82068950566855], [2.369568099202392, 48.820815750506874], [2.369525275973459, 48.82092789125472], [2.36947733658458, 48.821054136029936], [2.369425013770472, 48.82121092302149], [2.369377075240562, 48.821337167731876], [2.369384092911914, 48.82134736501412], [2.3695532036312033, 48.82140437881697], [2.369709814886414, 48.82145840531292], [2.369866426455403, 48.82151243250047], [2.370035538237461, 48.82156944561284], [2.370192150488237, 48.82162347146915], [2.370361264348541, 48.82168048412241], [2.37037920436883, 48.82167702514341], [2.370476902758761, 48.82156706716577], [2.370577289977054, 48.821457056699096], [2.370595068417459, 48.821453661592166], [2.370765119916079, 48.821510052651895], [2.370925435208493, 48.82156380923266], [2.371095487423636, 48.82162019981709], [2.371255803395313, 48.82167395594968], [2.371416118335701, 48.821727711857605], [2.371586172967079, 48.82178410264249], [2.371592440588028, 48.82179588774476], [2.371513618198491, 48.82190941740846], [2.371447168266257, 48.821995704254405], [2.37142855538106, 48.821999953106676], [2.371249564424429, 48.82193912076646], [2.37107244052008, 48.821878910448675], [2.370893450394445, 48.821818077568835], [2.370716327323263, 48.82175786581774], [2.370697830873719, 48.82176194878497], [2.370619013138847, 48.82186963194363], [2.370541772673827, 48.8219743509023], [2.370524218234652, 48.82197869422421], [2.370332722713053, 48.82192515878068], [2.370159931109307, 48.821876788636644], [2.369987139826254, 48.82182841824085], [2.369795645418883, 48.8217748810308], [2.369622854811487, 48.82172651010421], [2.369431361152325, 48.82167297230597], [2.3692585712205902, 48.82162460084862], [2.36906707966081, 48.82157106336864], [2.368894289042788, 48.821522691373374], [2.368702798242202, 48.82146915240587], [2.368530009661796, 48.82142077988703], [2.368338518247687, 48.82136724032415], [2.368165730332053, 48.82131886817386], [2.367974239666165, 48.821265328022804], [2.367801452437102, 48.82121695444244], [2.367609963881482, 48.82116341371039], [2.367437175966159, 48.82111503959209], [2.367418490636001, 48.821125033568414], [2.36745261659657, 48.82124114935048], [2.367496496892934, 48.82138301913361], [2.367530624547105, 48.82149913577329], [2.367574505272731, 48.821641005495245], [2.367608631918438, 48.82175712117948], [2.367652514435385, 48.821898990847465], [2.367686641412763, 48.82201510738213], [2.367720768553148, 48.82213122299571], [2.3677646516900612, 48.82227309257535], [2.36775930321555, 48.822282172291544], [2.3676219007669053, 48.8223507292722], [2.367434581540278, 48.82244043622115], [2.367297178247505, 48.82250899281904], [2.367109859255594, 48.8225986992539], [2.367009017241141, 48.822649012682035], [2.367001781636821, 48.82266497969596], [2.367019474811741, 48.82267774917444], [2.367171915732543, 48.822753291535506], [2.367313584847915, 48.82283173745205], [2.367372799271106, 48.82286108082204], [2.3673976541430273, 48.82285252972603], [2.3674035162944502, 48.8228472616087], [2.36761732600539, 48.82287154335642], [2.367807958190337, 48.82289209748677], [2.368021768273381, 48.822916378510364], [2.368212400781684, 48.8229369319952], [2.368426211237023, 48.82296121229471], [2.368616844068574, 48.82298176513398], [2.368649828239653, 48.822983164235396], [2.368653726855981, 48.82298020428432], [2.368664827562653, 48.82295433296117], [2.368687671636271, 48.82293151586103], [2.368695301558493, 48.82292782642649], [2.368873769967132, 48.822894251301676], [2.369058008556745, 48.822859485901645], [2.369236476497796, 48.82282591023348], [2.36942071596606, 48.82279114427969], [2.36959918343972, 48.82275756806815], [2.369783422424543, 48.822722801553425], [2.369961889430705, 48.82268922479857], [2.370146127932284, 48.82265445772294], [2.370324594470942, 48.82262088042472], [2.370508832489069, 48.82258611278816], [2.370687298560217, 48.82255253494658], [2.370871536095089, 48.82251776674912], [2.371050001687872, 48.82248418926352], [2.37123423875013, 48.82244941960578], [2.3714127038753983, 48.82241584157685], [2.37159693909241, 48.82238107135106], [2.371600821128348, 48.82237167167744], [2.371579468462641, 48.822350544624186], [2.371582510181934, 48.82225638504532], [2.371588123515819, 48.82209034276473], [2.371591165204304, 48.82199618316386], [2.371591870247463, 48.821993511221734], [2.371650365870374, 48.82187850585348], [2.371707260420196, 48.821763650324264], [2.371765755530824, 48.821648644876134], [2.371822648224539, 48.82153378836207], [2.371881142822789, 48.82141878283392], [2.371938035000691, 48.821303927140804], [2.371938470307453, 48.821299448727174], [2.371912463295719, 48.82120929430138], [2.371888692711366, 48.82111767573058], [2.371862685876362, 48.82102752127942], [2.371838914100408, 48.82093590267677], [2.37184447291337, 48.82092704242549], [2.372027703612953, 48.82084143429121], [2.372211969398784, 48.820757248727155], [2.372217142618513, 48.8207526926559], [2.37227376892936, 48.82064034011534], [2.37233195044343, 48.82052594601825], [2.372388576271579, 48.82041359250139], [2.372446757280768, 48.820299198325365], [2.372503382604473, 48.82018684563077], [2.372561563108788, 48.82007245137587], [2.372618187938779, 48.81996009860424], [2.372676367949148, 48.819845703371094], [2.372681221663713, 48.81984131648251], [2.372825388601201, 48.81977145710576], [2.372980747068507, 48.81969961734749], [2.373124913213031, 48.819629757600744], [2.373280270856191, 48.81955791654496], [2.373424434834946, 48.81948805732054], [2.373579791643353, 48.81941621586655], [2.373593670695605, 48.819395522810936], [2.373570283185641, 48.819375344133285], [2.373557218914669, 48.81937106929373], [2.37346504874592, 48.81934090686411], [2.373297792407141, 48.81928562241229], [2.373185301792689, 48.81924881027362], [2.373018046045917, 48.81919352542598], [2.372896946774725, 48.819153895983426], [2.37282832241767, 48.81913134657024], [2.372661068788144, 48.819076061224656], [2.372473803392495, 48.819014525157726], [2.372306549151573, 48.81895923930337], [2.372119285955724, 48.81889770268203], [2.371952032465395, 48.81884241632604], [2.371764768734752, 48.81878088003522], [2.371597517356993, 48.81872559318478], [2.371410254475105, 48.81866405543309], [2.371243003847837, 48.818608768081035], [2.371055741803874, 48.81854722976776], [2.370888490565433, 48.81849194190692], [2.370846422478642, 48.81847811743699], [2.370770946607186, 48.81845331379677], [2.370603697333706, 48.81839802554011], [2.370488822119664, 48.81836027459997], [2.37048459660303, 48.818361244369875]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 65, "zemmour_eric": 114.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "13-21", "circ_bv": "09", "num_bureau": 21, "roussel_fabien": 10.0, "nb_emargement": 1247.0, "nb_procuration": 39.0, "nb_vote_blanc": 23.0, "jadot_yannick": 52.0, "le_pen_marine": 137.0, "nb_exprime": 1221.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1660.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1247, "quartier_bv": "50", "geo_point_2d": [48.82078608549312, 2.370355016676002], "melenchon_jean_luc": 347.0, "poutou_philippe": 12.0, "macron_emmanuel": 425.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.309276153859508, 48.888651834356054], [2.309261162001961, 48.88865192683962], [2.309083880786058, 48.88871152510536], [2.308907637556451, 48.8887707729643], [2.308730354179534, 48.88883036979304], [2.308554110145526, 48.88888961712523], [2.308376825959361, 48.88894921342411], [2.308200581108802, 48.889008461128796], [2.308023297477096, 48.8890680569057], [2.307847051833982, 48.88912730318436], [2.307669766029328, 48.88918689842348], [2.307493519581716, 48.88924614417541], [2.307316234319568, 48.889305739791816], [2.307139987067457, 48.88936498501694], [2.30696269964432, 48.889424579196344], [2.306786451587814, 48.88948382389467], [2.306609163343361, 48.88954341844343], [2.306432914482358, 48.889602662615054], [2.306255626804462, 48.88966225574253], [2.306079377138868, 48.88972149938733], [2.305902087288017, 48.889781091977056], [2.305725836817931, 48.88984033509505], [2.305548546145851, 48.88989992805415], [2.305372296235002, 48.889959170653285], [2.305195004765682, 48.89001876218323], [2.30501875268672, 48.890078004247684], [2.305017842634897, 48.89007833981123], [2.304874893028796, 48.890133915028], [2.304702609447101, 48.89020322695987], [2.304559657797946, 48.8902588017861], [2.304421808095475, 48.89031425948719], [2.304420622363052, 48.890324307089955], [2.304430073004269, 48.89033201167462], [2.304597758221953, 48.89040864970413], [2.304765271319963, 48.89048279175494], [2.304932957516586, 48.89055942930448], [2.305100472940614, 48.89063357088413], [2.3052681601041822, 48.89071020885303], [2.305435676502693, 48.89078434905431], [2.305603364645211, 48.89086098654326], [2.305770880642347, 48.89093512625747], [2.305938569763716, 48.89101176326654], [2.306106088086984, 48.89108590250956], [2.306273606887304, 48.89116004151322], [2.306441297472961, 48.891236677802574], [2.306608815871901, 48.891310816319184], [2.306776507436618, 48.891387452128555], [2.306944028161706, 48.891461590173975], [2.307111720705284, 48.89153822550339], [2.307279242392762, 48.89161236306967], [2.307446935915407, 48.89168899791911], [2.307614458565275, 48.89176313500625], [2.307782153066785, 48.89183976937574], [2.307792068433228, 48.89184755820509], [2.307810983532732, 48.89183106237572], [2.307943925569082, 48.89174170563606], [2.308087389483495, 48.89164597126091], [2.308220330573007, 48.89155661419928], [2.308363793457281, 48.89146088037607], [2.308496733599763, 48.89137152299254], [2.308640195477795, 48.891275787922744], [2.308773133309692, 48.89118643020945], [2.308916595533204, 48.89109069480025], [2.309049532406254, 48.89100133766426], [2.309192993611693, 48.890905601907775], [2.309325929549773, 48.890816243550596], [2.309469389736939, 48.89072050744683], [2.309602324716194, 48.89063114966701], [2.309745783885302, 48.890535413216], [2.30987871792949, 48.89044605421499], [2.31002217608044, 48.89035031741667], [2.310155109165929, 48.89026095899304], [2.310298566298633, 48.89016522184743], [2.31043149844916, 48.89007586220264], [2.310574953200093, 48.889980124701964], [2.310707885755573, 48.88989076564236], [2.310708141525866, 48.88987834739432], [2.310571095851111, 48.8897810623052], [2.310435936798835, 48.8896851180188], [2.310298892129212, 48.889587833500315], [2.310163735443782, 48.889491888897645], [2.310026690439589, 48.889394603143366], [2.309891534757278, 48.889298658216575], [2.309754490758195, 48.889201373032904], [2.309619336090915, 48.889105426882736], [2.309617116628156, 48.889103310555974], [2.309534084677071, 48.8889931955086], [2.30945134928598, 48.888883471510376], [2.309368318047927, 48.88877335542677], [2.309285581991849, 48.888663631284146], [2.309276153859508, 48.888651834356054]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 64, "zemmour_eric": 69.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "17-16", "circ_bv": "03", "num_bureau": 16, "roussel_fabien": 14.0, "nb_emargement": 1067.0, "nb_procuration": 20.0, "nb_vote_blanc": 15.0, "jadot_yannick": 36.0, "le_pen_marine": 87.0, "nb_exprime": 1042.0, "nb_vote_nul": 11.0, "arr_bv": "17", "arthaud_nathalie": 5, "nb_inscrit": 1492.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1068, "quartier_bv": "67", "geo_point_2d": [48.89023059793377, 2.3078139991256137], "melenchon_jean_luc": 448.0, "poutou_philippe": 8.0, "macron_emmanuel": 260.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.361560381218888, 48.88281958008734], [2.361559646755296, 48.88280563387371], [2.361542549815406, 48.88275224037157], [2.361495845226867, 48.88259226595724], [2.361456549422616, 48.882469544360724], [2.36145007793807, 48.88246363452709], [2.361275772295838, 48.882396584249626], [2.361101143094197, 48.88232893483055], [2.360926838352167, 48.882261884036865], [2.360752210066516, 48.8821942332013], [2.360577906224592, 48.882127181891406], [2.360403278832855, 48.88205953143792], [2.36022897589093, 48.88199247961184], [2.3600543494152992, 48.88192482774185], [2.359880047373478, 48.881857775399546], [2.359705421791749, 48.88179012391161], [2.359531120650029, 48.881723071053145], [2.359356495984214, 48.881655418148725], [2.359182195742698, 48.88158836477407], [2.359007571970773, 48.881520712251714], [2.358833272629358, 48.881453658360876], [2.358658649773459, 48.88138600442209], [2.358484351332045, 48.88131895001506], [2.358309729370127, 48.881251296458295], [2.358303335517064, 48.88124156200855], [2.358348395446165, 48.88110992747676], [2.35839229048322, 48.88098505863122], [2.358437351317968, 48.88085342494189], [2.358481244573126, 48.88072855512806], [2.358525138970114, 48.88060368619057], [2.358570197775718, 48.88047205239833], [2.35861409174324, 48.88034718339912], [2.358659151476545, 48.880215548650746], [2.358703043651223, 48.880090679582516], [2.358748102937771, 48.879959044770054], [2.358752751026141, 48.87995529787015], [2.358737523190842, 48.87992538277773], [2.358728408841452, 48.879907479526665], [2.358707319243319, 48.879905352954495], [2.358567438369338, 48.87984064850254], [2.358432245426132, 48.87977563265409], [2.358292363890027, 48.87971092696652], [2.358157171626956, 48.87964591079984], [2.358017292133303, 48.87958120568982], [2.357882100561446, 48.8795161883056], [2.357869586215001, 48.8795149610443], [2.357683023614494, 48.87955777208429], [2.357494742254647, 48.87960006278869], [2.357308177677697, 48.87964287323391], [2.357119897069277, 48.87968516335284], [2.356933331879354, 48.87972797321066], [2.356745049295435, 48.87977026272949], [2.356558484856014, 48.87981307200715], [2.356370201660066, 48.87985536093319], [2.356183635244212, 48.8798981696161], [2.355995352799715, 48.87994045795667], [2.355808785770904, 48.87998326605212], [2.3556205013509173, 48.88002555379257], [2.355433935072631, 48.880068361307885], [2.355245650040632, 48.880110648455556], [2.355059081786024, 48.88015345537607], [2.354870796141917, 48.880195741930955], [2.35482804737725, 48.88020555080255], [2.354808712597005, 48.88021630963243], [2.354819182853348, 48.88023109351468], [2.354925006604991, 48.88033808977503], [2.355036341020387, 48.880450582653154], [2.355142165652933, 48.880557579599525], [2.355253501017753, 48.88067007135399], [2.355359326542452, 48.88077706808708], [2.3554706628455673, 48.880889559617174], [2.355576489262531, 48.88099655613698], [2.355687826503849, 48.88110904744268], [2.355793653812986, 48.881216043749234], [2.355904991981598, 48.8813285357298], [2.356010820193939, 48.88143553092379], [2.356122159300879, 48.88154802267997], [2.356227988394393, 48.88165501855995], [2.3563393284506873, 48.881767509192485], [2.356445158436404, 48.88187450485911], [2.356556499431146, 48.881986995267255], [2.356662330308972, 48.88209399072059], [2.35677367224207, 48.88220648090433], [2.356879504012117, 48.88231347614435], [2.356990846872477, 48.88242596700299], [2.357096679545961, 48.88253296113043], [2.3572080233447, 48.88264545176462], [2.3573138568992222, 48.88275244657802], [2.357425201647449, 48.88286493608854], [2.357531036094221, 48.88297193068865], [2.357642381780844, 48.88308441997472], [2.357748217119978, 48.8831914143615], [2.357859563733919, 48.88330390432244], [2.35796539997631, 48.883410897596605], [2.358076747528671, 48.88352338733311], [2.358182584652255, 48.88363038129324], [2.35829393315413, 48.88374286990607], [2.358399771170104, 48.88384986365281], [2.358511120610417, 48.88396235204122], [2.358616959518589, 48.88406934557463], [2.358613461350347, 48.88408388246199], [2.358643502179691, 48.88409387754165], [2.358862515606461, 48.88409229860344], [2.359065825810394, 48.88409067207489], [2.359269136012589, 48.88408904430183], [2.359488149400053, 48.884087464219235], [2.359501635269909, 48.88407831285491], [2.359498385060931, 48.88395718474074], [2.359494237451522, 48.88384050258812], [2.359490988638168, 48.883719374454884], [2.359486839700701, 48.88360269226946], [2.35948359091939, 48.88348156410981], [2.359479442017444, 48.883364881898935], [2.359478550798761, 48.88336184009794], [2.359413742004505, 48.88324961686252], [2.359344473242294, 48.88312928834414], [2.359279665015311, 48.883017065911694], [2.359210396872115, 48.88289673729031], [2.359224496079917, 48.882884596264056], [2.359435154979212, 48.88289842476176], [2.3596386698105842, 48.88291160223443], [2.359849328940151, 48.88292542910377], [2.360052845345406, 48.88293860587941], [2.36026350468302, 48.88295243291893], [2.360467019935146, 48.882965608982914], [2.360471100265189, 48.88296546710076], [2.360643987268098, 48.88294255196283], [2.360815921987522, 48.88291921869964], [2.360988808696197, 48.88289630216357], [2.361160741744874, 48.8828729683969], [2.361333628137338, 48.88285005226126], [2.361505560878717, 48.88282671799846], [2.361560381218888, 48.88281958008734]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 32, "zemmour_eric": 36.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-26", "circ_bv": "05", "num_bureau": 26, "roussel_fabien": 22.0, "nb_emargement": 980.0, "nb_procuration": 74.0, "nb_vote_blanc": 9.0, "jadot_yannick": 81.0, "le_pen_marine": 44.0, "nb_exprime": 967.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1249.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 980, "quartier_bv": "37", "geo_point_2d": [48.88167708723461, 2.358002401077562], "melenchon_jean_luc": 428.0, "poutou_philippe": 2.0, "macron_emmanuel": 275.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332294626482992, 48.88285878300268], [2.332324834606229, 48.88284975670238], [2.332475710456798, 48.88278757373742], [2.332624866047947, 48.882727654502375], [2.332775741186614, 48.882665471152436], [2.332924896082837, 48.88260555153696], [2.333074050635929, 48.882545631732434], [2.333224924710796, 48.882483447806145], [2.333374077205427, 48.88242352761363], [2.33352495193183, 48.882361343309924], [2.3335297432607582, 48.88235796421191], [2.33362412274217, 48.88224180302994], [2.3337194546485422, 48.882123534532816], [2.33381383329335, 48.88200737227724], [2.333909162976334, 48.88188910359626], [2.334003540761644, 48.88177294206569], [2.334098870959593, 48.8816546723168], [2.334193247897017, 48.88153851061195], [2.3342885758600103, 48.88142024157852], [2.334382951960955, 48.881304078800085], [2.334478280427525, 48.88118580959797], [2.3345726556689073, 48.88106964754458], [2.334667981912155, 48.88095137815866], [2.334762356317074, 48.88083521503169], [2.334857683063805, 48.88071694547713], [2.334952056609392, 48.88060078307515], [2.335047381144217, 48.88048251243751], [2.335079952624643, 48.880472354607534], [2.335077327301907, 48.880446333103706], [2.335078966201943, 48.880444738694756], [2.3351667952026682, 48.880376416667715], [2.335253442751205, 48.880308979252646], [2.335253500553791, 48.880296225225976], [2.335230158648149, 48.88028452119391], [2.335163293691667, 48.88017517674262], [2.335095587337427, 48.880062977580025], [2.3350287229594002, 48.87995363213232], [2.33496101718309, 48.87984143287105], [2.33489415200857, 48.87973208731861], [2.334826448173648, 48.87961988796626], [2.334759583554612, 48.87951054321594], [2.334691878945731, 48.87939834285804], [2.334689544003255, 48.879397640991826], [2.334650539795757, 48.879408773822895], [2.33446736869679, 48.87945165487583], [2.33427305016963, 48.87949679484155], [2.33408987981374, 48.879539675321055], [2.333895560630986, 48.87958481467048], [2.333850644139364, 48.879581105008256], [2.333839314516831, 48.8795921919111], [2.333644994932468, 48.87963732995235], [2.333452135621942, 48.87968308645653], [2.333257815362873, 48.87972822386566], [2.33306495401223, 48.87977397973471], [2.332870633078359, 48.87981911651167], [2.332677771050964, 48.879864871753256], [2.332483449442399, 48.87991000789802], [2.332290586738259, 48.87995576251206], [2.332096264455107, 48.880000898024676], [2.331903401074226, 48.88004665201123], [2.331709078116289, 48.880091786891676], [2.33151621542215, 48.88013754025832], [2.331507307937329, 48.88014716105865], [2.331533114876025, 48.88027822029887], [2.331557287850938, 48.880400929972765], [2.331583095029516, 48.8805319900713], [2.33160726823998, 48.88065469970678], [2.331631442916309, 48.88077741023068], [2.331657249116209, 48.8809084693615], [2.331681424028002, 48.88103117984695], [2.33170723047943, 48.88116223893684], [2.331714403382311, 48.88119864800774], [2.331705168465485, 48.881215602846595], [2.331718732151085, 48.88123004090912], [2.331735733061021, 48.88131634137537], [2.3317689905653, 48.88146375410656], [2.331793164646275, 48.881586463600705], [2.331826423849037, 48.88173387628739], [2.331850598179189, 48.88185658663905], [2.331883856365048, 48.88200399836675], [2.331908030955918, 48.882126708676715], [2.33190304457878, 48.88214794196641], [2.331918945782189, 48.88215504549162], [2.331934419308832, 48.88218517672929], [2.33197891759905, 48.88227182747039], [2.332036014553764, 48.882382812459085], [2.3320959855320043, 48.882499594347465], [2.33215308298593, 48.88261057925735], [2.332213054488882, 48.88272736106289], [2.332270152442125, 48.88283834589401], [2.332294626482992, 48.88285878300268]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 84, "zemmour_eric": 85.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "9-14", "circ_bv": "01", "num_bureau": 14, "roussel_fabien": 19.0, "nb_emargement": 1335.0, "nb_procuration": 97.0, "nb_vote_blanc": 18.0, "jadot_yannick": 130.0, "le_pen_marine": 44.0, "nb_exprime": 1312.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 0, "nb_inscrit": 1612.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1332, "quartier_bv": "33", "geo_point_2d": [48.88095499157956, 2.3332126886033335], "melenchon_jean_luc": 295.0, "poutou_philippe": 2.0, "macron_emmanuel": 595.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.374131231575129, 48.877163830293284], [2.37411200001363, 48.8771424893126], [2.374035073010008, 48.87704948731889], [2.373948859620532, 48.87695207224073], [2.373871933189464, 48.87685907012612], [2.373785719057025, 48.87676165490647], [2.373782313996322, 48.8767590892845], [2.373644534505697, 48.876690235010805], [2.373494173223701, 48.87661312450085], [2.373356394500123, 48.87654426988642], [2.373206034066112, 48.876467159004335], [2.373187033087576, 48.87646862885098], [2.373099225778438, 48.87654077490715], [2.373012014898246, 48.876608546965585], [2.372924207110887, 48.87668069288422], [2.372836994405281, 48.87674846479944], [2.3728194152399, 48.87675028738066], [2.372653735945522, 48.8766825124749], [2.372490016261831, 48.87660863483888], [2.37232433784669, 48.8765408594685], [2.372160619086341, 48.87646698047324], [2.372090537755092, 48.8764659698754], [2.37207651124355, 48.87647914797631], [2.371946602859046, 48.87658489537061], [2.371819976440365, 48.87669510973854], [2.371690066996349, 48.87680085683373], [2.371563439520609, 48.876911070009434], [2.371433527653674, 48.87701681679839], [2.371306900462564, 48.877127030587594], [2.371176987536089, 48.8772327770774], [2.371050359287914, 48.87734298967441], [2.370920445301892, 48.877448735865116], [2.370793815985787, 48.877558948169174], [2.370663900929341, 48.87766469496004], [2.370537270545194, 48.87777490697111], [2.370407354440146, 48.87788065256355], [2.370280721624723, 48.87799086427452], [2.370277954927251, 48.877996179163134], [2.370276816194544, 48.87805382125903], [2.370281257939034, 48.878056005718555], [2.370338594173865, 48.87805667333367], [2.370423746818208, 48.878133376444204], [2.370533762740918, 48.87824484978992], [2.37061891596949, 48.87832155364779], [2.370619468512518, 48.87832209075581], [2.370729485252673, 48.87843356390256], [2.370841049225604, 48.87855097345991], [2.370951066923513, 48.8786624463799], [2.371062633249701, 48.87877985571353], [2.371172651905376, 48.878891328406745], [2.371284217857946, 48.87900873750228], [2.37132081019942, 48.879045812140546], [2.371336936477543, 48.87905180093435], [2.371374782913123, 48.87902406824379], [2.3715540937920983, 48.87895465318936], [2.371731154495705, 48.87888636011226], [2.371910464425584, 48.878816944515414], [2.372087524193719, 48.878748650902736], [2.372266833174602, 48.8786792347634], [2.372443892007166, 48.87861094061515], [2.37262095037548, 48.878542646200785], [2.372800257925319, 48.878473230148806], [2.372977316732328, 48.878404934306715], [2.373156623333074, 48.87833551771233], [2.373333679830451, 48.878267222226796], [2.373512985492825, 48.878197804190684], [2.373522452904593, 48.878196727771936], [2.373677120240961, 48.87821627373996], [2.373829706060276, 48.87823465028067], [2.37398437362457, 48.87825419585104], [2.374136959663395, 48.87827257199953], [2.374200333092418, 48.878277717419344], [2.374204239034428, 48.87827196952501], [2.37418620080747, 48.878190996544355], [2.374154533157345, 48.878065546901844], [2.374120995372682, 48.877914988006886], [2.3740893280582442, 48.87778953741643], [2.374089165189724, 48.877787546343335], [2.37409403673486, 48.87767943883495], [2.3741067631761092, 48.87753287557311], [2.374111634660895, 48.877424768039084], [2.374124361001201, 48.877278203842216], [2.374129232425539, 48.87717009628248], [2.374131231575129, 48.877163830293284]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 29, "zemmour_eric": 63.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-8", "circ_bv": "17", "num_bureau": 8, "roussel_fabien": 21.0, "nb_emargement": 904.0, "nb_procuration": 31.0, "nb_vote_blanc": 8.0, "jadot_yannick": 42.0, "le_pen_marine": 58.0, "nb_exprime": 887.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 6, "nb_inscrit": 1343.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 904, "quartier_bv": "76", "geo_point_2d": [48.87769811257919, 2.372341514758213], "melenchon_jean_luc": 432.0, "poutou_philippe": 8.0, "macron_emmanuel": 197.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.396732701622734, 48.83401787000693], [2.396718457210975, 48.83403692586389], [2.396730586181754, 48.834179589501375], [2.396744405400089, 48.83432253055419], [2.396756534508336, 48.83446519415264], [2.396770353863233, 48.83460813606528], [2.396764240032209, 48.834616224697236], [2.396615353182032, 48.83468080987092], [2.396471831468417, 48.8347421698259], [2.396322943896226, 48.83480675462833], [2.396179421491651, 48.83486811422551], [2.396178602411977, 48.83486849321999], [2.396015768141045, 48.83494984873234], [2.395853160386616, 48.83503112871782], [2.395690325089401, 48.835112484674646], [2.395527714957877, 48.83519376419902], [2.3953648786445862, 48.83527511970095], [2.395202267498367, 48.835356398771076], [2.3950394301690983, 48.835437753818155], [2.394876818007977, 48.83551903243404], [2.39471397967327, 48.83560038612689], [2.394551366486903, 48.8356816651878], [2.394388527136216, 48.83576301842577], [2.394225914307811, 48.83584429614], [2.394063072568363, 48.83592564981549], [2.393900458725049, 48.83600692707547], [2.393737617331933, 48.836088280303], [2.393575001111577, 48.8361695571018], [2.393412158702465, 48.83625090987439], [2.393249541467288, 48.836332186218925], [2.393249126141999, 48.836332402657575], [2.393152743593052, 48.836384583150945], [2.393040081322467, 48.83644462233938], [2.393024080534281, 48.836445157209134], [2.392890383237577, 48.836387578643894], [2.392692956193088, 48.83630356423938], [2.3925592596253162, 48.83624598529678], [2.392361833650806, 48.836161970335084], [2.392228137801482, 48.836104391914375], [2.392168686083068, 48.83608462577831], [2.392156516848117, 48.836095990358736], [2.392088129355437, 48.83618543981581], [2.391993673588508, 48.836312263797254], [2.391899615870503, 48.83643529170216], [2.3918051591920593, 48.8365621155064], [2.391711099226524, 48.83668514232935], [2.391616641636652, 48.83681196595641], [2.391577567946992, 48.83686307320599], [2.391570357180359, 48.8368736544139], [2.391630093484806, 48.836900495771296], [2.3916933806615672, 48.83693267579035], [2.391763843397148, 48.83696768748371], [2.391776786796866, 48.836968930566265], [2.391958752803696, 48.83692424447996], [2.392135470154392, 48.83687970412168], [2.392317435542242, 48.83683501748617], [2.392494150921696, 48.83679047658744], [2.3926708659991442, 48.836745935425924], [2.392852830461025, 48.836701247970616], [2.393029546291722, 48.83665670628257], [2.393211510134614, 48.836612018278004], [2.393388223994065, 48.8365674760496], [2.393570187228425, 48.83652278659656], [2.393746900468409, 48.836478244734046], [2.3939288644460053, 48.83643355473871], [2.39410557708744, 48.83638901144344], [2.394287539073333, 48.83634432179132], [2.394464251105755, 48.836299777962566], [2.394646213834877, 48.83625508776819], [2.394692261478156, 48.83624311194009], [2.394718571213671, 48.836243532875045], [2.394732878202895, 48.836230701200996], [2.394869182966322, 48.836195252618296], [2.395054461444512, 48.836146770670496], [2.395236813161043, 48.83609934567941], [2.395422090956407, 48.836050863158036], [2.395604442002949, 48.83600343760242], [2.39578971911538, 48.835954954507436], [2.395972069491932, 48.83590752838733], [2.396157345921631, 48.835859044718745], [2.396339695628185, 48.835811618034136], [2.396524971374943, 48.835763133791986], [2.39670732177382, 48.83571570654975], [2.396892595475513, 48.83566722172712], [2.397074945204283, 48.83561979392038], [2.39726021822313, 48.83557130852416], [2.39744256728199, 48.835523880152934], [2.397627839617988, 48.83547539418314], [2.39781018800673, 48.8354279652474], [2.397995459659875, 48.83537947870406], [2.398177807378699, 48.835332049203835], [2.398363079711298, 48.835283562093785], [2.398545425397685, 48.8352361320222], [2.398666318935779, 48.835204493160965], [2.398671550418691, 48.835194691209246], [2.398658521500288, 48.835177267077626], [2.398531836741649, 48.83506520426084], [2.398401777932006, 48.834952671945295], [2.398275092908844, 48.83484060882723], [2.3981450352034432, 48.83472807710926], [2.398018351278054, 48.83461601369678], [2.397888294687362, 48.83450348167706], [2.397761613232311, 48.834391417077725], [2.39763155639393, 48.83427888474939], [2.397631595662287, 48.83426794147281], [2.397701322685931, 48.83420819073744], [2.397775365737696, 48.83415265902751], [2.397775996206475, 48.83414478376298], [2.397740087863654, 48.83412649334276], [2.39762264944682, 48.83404946579877], [2.397504684394352, 48.83397064934006], [2.397493892563724, 48.83396800660487], [2.397306548339769, 48.833978042192356], [2.39712653483428, 48.83398807126725], [2.396939189105319, 48.83399810627227], [2.396759176811739, 48.83400813570025], [2.396732701622734, 48.83401787000693]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 63, "zemmour_eric": 52.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "12-27", "circ_bv": "08", "num_bureau": 27, "roussel_fabien": 16.0, "nb_emargement": 1118.0, "nb_procuration": 37.0, "nb_vote_blanc": 8.0, "jadot_yannick": 130.0, "le_pen_marine": 58.0, "nb_exprime": 1106.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1418.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1118, "quartier_bv": "46", "geo_point_2d": [48.83547682866424, 2.395736548507575], "melenchon_jean_luc": 362.0, "poutou_philippe": 6.0, "macron_emmanuel": 354.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.319948405697291, 48.854969219236025], [2.319904790794807, 48.854978481136854], [2.319714887819063, 48.85502577797561], [2.319526764448321, 48.85507276086519], [2.319338640738327, 48.85511974345713], [2.319148735371141, 48.85516703938358], [2.318960610991561, 48.85521402047788], [2.318770706300465, 48.855261315808185], [2.318582581228004, 48.85530829720347], [2.318392674487256, 48.855355591922], [2.318204548733566, 48.855402572718994], [2.318014642669023, 48.85544986684137], [2.317826516234009, 48.85549684704002], [2.317636608119921, 48.85554414055065], [2.31744848101557, 48.85559111925171], [2.31725857221477, 48.855638412158385], [2.317070444417328, 48.85568539116039], [2.316880536292654, 48.85573268347088], [2.316872878040646, 48.85573746838907], [2.316789840736253, 48.85586170969271], [2.316708178649498, 48.8559840476504], [2.316625140559429, 48.856108288812145], [2.316543476336671, 48.85623062662249], [2.316460438823663, 48.856354867650175], [2.316378773827734, 48.85647720532094], [2.316295734166279, 48.8566014461989], [2.316214069760025, 48.856723783737905], [2.316131029312865, 48.856848024474004], [2.316049362770558, 48.85697036186569], [2.315967697195819, 48.85709270009518], [2.315884655584936, 48.85721693971974], [2.315802987874116, 48.857339277801884], [2.315719946840482, 48.85746351729236], [2.315638278368253, 48.85758585433562], [2.315555235174187, 48.857710094575644], [2.3154735672916162, 48.85783243148715], [2.315390523311693, 48.85795667158528], [2.315389444641391, 48.85796127819877], [2.31540495693566, 48.85810927822537], [2.3154316817344602, 48.85827061862761], [2.315435996459009, 48.85827625617493], [2.315573578465038, 48.858359880786786], [2.3157078354313683, 48.85844027282908], [2.315842094163001, 48.858520665621974], [2.315979677477908, 48.858604288849264], [2.316113935688815, 48.858684681317506], [2.31625152122424, 48.858768305126965], [2.31629025791878, 48.85878260582229], [2.316300777260487, 48.85877971604617], [2.316328899320984, 48.85875587028855], [2.316454440656615, 48.85865248825816], [2.316574285643816, 48.85855086686685], [2.31669982463559, 48.85844748455213], [2.316819668660858, 48.85834586379563], [2.316939512230431, 48.8582442420105], [2.317065051121626, 48.85814085929186], [2.317184893741069, 48.85803923724222], [2.317310430288644, 48.857935854239265], [2.317430271957968, 48.85783423192514], [2.31755580752463, 48.857730848645694], [2.317560158994364, 48.85772849197373], [2.317708075875307, 48.85767803901547], [2.317869982830241, 48.85762251952172], [2.31801789911033, 48.85757206617562], [2.318179804054814, 48.85751654535033], [2.318198328555641, 48.85752056848248], [2.318283288196751, 48.85763498263985], [2.318367888224095, 48.85774888833846], [2.318452848609841, 48.85786330235188], [2.318537449378593, 48.8579772079072], [2.318622410508984, 48.8580916217767], [2.318707010656356, 48.85820552718097], [2.3187919738942, 48.85831994091431], [2.318876574782991, 48.85843384617526], [2.318961537402696, 48.858548259756915], [2.319046140395724, 48.858662164882304], [2.319131103760101, 48.85877657832003], [2.319215707494575, 48.858890483302126], [2.319300671603632, 48.8590048965959], [2.319385276079559, 48.85911880143466], [2.319470240933307, 48.8592332145845], [2.319554846150696, 48.85934711927994], [2.319573734305302, 48.85935101205127], [2.31975084730145, 48.859285688161705], [2.319923991802242, 48.859220912544345], [2.320101103916887, 48.85915558812879], [2.320274247549977, 48.85909081199703], [2.320451358783222, 48.85902548705545], [2.320624501548406, 48.85896071040934], [2.320801611888526, 48.85889538584099], [2.32097475378601, 48.85883060868057], [2.321151863256455, 48.85876528268688], [2.321325004286032, 48.858700505012095], [2.3215021128751783, 48.85863517849243], [2.32167525303695, 48.85857040030327], [2.321852360732886, 48.85850507415684], [2.32202549866405, 48.85844029544563], [2.3222026068532, 48.85837496788164], [2.322375743916459, 48.85831018865613], [2.322552849861403, 48.858244860558365], [2.32272598741976, 48.85818008082625], [2.322775359485213, 48.85816050344031], [2.322771779824002, 48.858144811960614], [2.3227040120421982, 48.85807649850668], [2.322600775018699, 48.85797186891696], [2.322491344027691, 48.857861555321485], [2.322388107845545, 48.857756926427335], [2.322278677756232, 48.85764661261601], [2.322175443789802, 48.85754198352585], [2.322066013239291, 48.85743166949096], [2.321962780137585, 48.8573270392978], [2.321853350477054, 48.85721672594639], [2.32175011822816, 48.857112095549496], [2.321640689481005, 48.85700178108296], [2.32153745807341, 48.85689715138162], [2.321428030227817, 48.85678683669928], [2.321324799673112, 48.856682206794225], [2.321215374092131, 48.85657189190378], [2.321112143039068, 48.856467260888074], [2.321111408455749, 48.85646642122036], [2.321026908689188, 48.85635791044955], [2.320932900819089, 48.85623554325619], [2.3208484017869733, 48.856127033236085], [2.320754394752741, 48.856004665877045], [2.320669896478505, 48.85589615480903], [2.320575890280028, 48.855773787284384], [2.320491392740214, 48.85566527696705], [2.320397387377481, 48.855542909276686], [2.320312890583703, 48.85543439881076], [2.320218886068436, 48.85531203005547], [2.320134390020888, 48.85520351944091], [2.320040386329615, 48.85508115141926], [2.319955891028185, 48.85497264065615], [2.319948405697291, 48.854969219236025]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 112, "zemmour_eric": 103.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-1", "circ_bv": "02", "num_bureau": 1, "roussel_fabien": 6.0, "nb_emargement": 831.0, "nb_procuration": 54.0, "nb_vote_blanc": 11.0, "jadot_yannick": 42.0, "le_pen_marine": 28.0, "nb_exprime": 818.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1011.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 831, "quartier_bv": "26", "geo_point_2d": [48.857178133921266, 2.319040633017609], "melenchon_jean_luc": 79.0, "poutou_philippe": 0.0, "macron_emmanuel": 425.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.396700021932774, 48.83957708691555], [2.3966992884272442, 48.83955358741243], [2.396694939716265, 48.83946516009699], [2.396684068205251, 48.83929251068416], [2.396679718179462, 48.839204083340576], [2.396686744906633, 48.839195921103176], [2.396856407602086, 48.83913401116809], [2.39702600458816, 48.83907338854512], [2.3971956678442092, 48.83901147812895], [2.397365264026504, 48.83895085591762], [2.397534926480739, 48.83888894501347], [2.397704521880255, 48.838828321415185], [2.397874182170268, 48.838766410016234], [2.398043778128418, 48.83870578683647], [2.39821343761672, 48.83864387494957], [2.398383032791973, 48.83858325038287], [2.398552691478357, 48.83852133800799], [2.398722285850051, 48.83846071385299], [2.398891943734621, 48.838398800990156], [2.399061537323304, 48.838338175448264], [2.399231194406057, 48.838276262097466], [2.399400785828803, 48.83821563696039], [2.3994266177034023, 48.8382012167842], [2.399403119923167, 48.83817919934582], [2.399321759801781, 48.83813112283726], [2.39918448417827, 48.83808585923626], [2.3991040445991683, 48.83803832591536], [2.399085091392448, 48.83803102591445], [2.399072519414897, 48.83805968927602], [2.398935244206323, 48.83801442448676], [2.398840050480237, 48.83798466648233], [2.3988371131631823, 48.837983358437704], [2.398698841383467, 48.83790263461187], [2.398563564210835, 48.83782289428818], [2.398425293269948, 48.83774217103386], [2.398290016932342, 48.837662430389365], [2.3981517468407523, 48.83758170680724], [2.398016471338066, 48.83750196584198], [2.397878202106157, 48.83742124103277], [2.397742928790261, 48.83734150065288], [2.397716985357157, 48.83732560060272], [2.3976994820335022, 48.83732810263408], [2.397599630123863, 48.83741593340447], [2.397491744533991, 48.837514059994064], [2.39735281791891, 48.837636260716316], [2.397244930056503, 48.83773438615772], [2.397244620230516, 48.837734669694356], [2.397139796714582, 48.837834742305894], [2.397031909392209, 48.83793286844393], [2.396927085069409, 48.8380329408513], [2.396819195573973, 48.83813106677324], [2.396714370444095, 48.83823113897645], [2.396606480138068, 48.83832926468916], [2.396501654201205, 48.8384293366882], [2.396393764446774, 48.83852746219852], [2.396392824558727, 48.838528503413485], [2.396292987257154, 48.83865820647621], [2.396186442492448, 48.8387941063624], [2.396166452223281, 48.83879730431229], [2.396006495389134, 48.83872228952372], [2.395848777195816, 48.838647891090886], [2.395688821277381, 48.83857287586751], [2.395531105351995, 48.83849847701277], [2.395371150338836, 48.838423462253886], [2.395213433956685, 48.83834906296348], [2.395053481232052, 48.83827404687734], [2.394895765755331, 48.838199647158156], [2.39473581258401, 48.838124630630354], [2.394578099364755, 48.838050231388586], [2.394418147109131, 48.837975214425946], [2.394260433443562, 48.8379008138492], [2.39424269398214, 48.83789406063908], [2.394226251282139, 48.837900930341185], [2.394075102110549, 48.837930621695534], [2.393926395286115, 48.837960341422324], [2.393775245771441, 48.837990032396206], [2.393626538606647, 48.83801975174863], [2.393618808185884, 48.83802372821403], [2.393502636765394, 48.838151378427696], [2.393389996442203, 48.838277957296214], [2.393273823894738, 48.83840560725862], [2.393161182466494, 48.83853218588291], [2.393149621824548, 48.83854343940976], [2.393163607088029, 48.83855645667552], [2.393302858039044, 48.83865337497208], [2.393440552245044, 48.83874888579461], [2.3935798042251, 48.83884580375208], [2.393717500809324, 48.83894131424633], [2.393855196535771, 48.83903682456695], [2.393994450056081, 48.839133742016756], [2.394132148160671, 48.839229252009034], [2.394271402710042, 48.8393261691198], [2.394277905085793, 48.83932869237742], [2.39445463979522, 48.839358592477616], [2.39464007802338, 48.83938932869796], [2.394816813146268, 48.83941922826143], [2.395002251793181, 48.83944996481801], [2.395178987329425, 48.83947986384477], [2.395364426416171, 48.83951059893891], [2.395541162365662, 48.83954049742897], [2.395726601881687, 48.83957123196], [2.395738619310015, 48.83958612672611], [2.395779819330849, 48.83958236775777], [2.395981652664032, 48.83958263790211], [2.396203450803746, 48.83958252192705], [2.396405284139718, 48.83958279135664], [2.396627082279138, 48.83958267459608], [2.396678317561709, 48.83958274235272], [2.396700021932774, 48.83957708691555]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 83, "zemmour_eric": 93.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "12-21", "circ_bv": "08", "num_bureau": 21, "roussel_fabien": 30.0, "nb_emargement": 1324.0, "nb_procuration": 80.0, "nb_vote_blanc": 23.0, "jadot_yannick": 102.0, "le_pen_marine": 94.0, "nb_exprime": 1300.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1650.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1325, "quartier_bv": "46", "geo_point_2d": [48.83858836605196, 2.3961201370284484], "melenchon_jean_luc": 360.0, "poutou_philippe": 3.0, "macron_emmanuel": 463.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358602586078861, 48.83894757268422], [2.358607212043556, 48.838947762971635], [2.358654976213562, 48.83896292424394], [2.358829949796237, 48.839018093939906], [2.3590065695123332, 48.8390741580704], [2.359181543851614, 48.83912932634729], [2.359358164322699, 48.83918538995309], [2.359533139407517, 48.83924055771018], [2.359709760633794, 48.83929662079128], [2.359884736464147, 48.839351788028615], [2.360061358445408, 48.83940785058498], [2.36023633638371, 48.8394630173098], [2.360412959120159, 48.83951907934149], [2.360587936430545, 48.83957424643851], [2.36076455993301, 48.839630307046214], [2.36093953798893, 48.839685473623426], [2.36111616224657, 48.83974153370636], [2.361291141048022, 48.839796699763845], [2.361467766060634, 48.839852759322014], [2.361642745607616, 48.839907924859695], [2.3618193713754, 48.83996398389314], [2.361825729315899, 48.83996816837598], [2.361831525640164, 48.839976825995464], [2.361880031851395, 48.84004927218486], [2.361967247067455, 48.84016810893584], [2.362021550031365, 48.84024921266595], [2.362069538242214, 48.840314596892135], [2.362076095698697, 48.840333210011565], [2.362088037696288, 48.84034303538536], [2.36212726677254, 48.84039648688621], [2.362213571308806, 48.840515459758485], [2.362300788065411, 48.84063429621664], [2.362387093391535, 48.84075326893836], [2.36247431095271, 48.84087210434538], [2.362560617068598, 48.84099107691658], [2.362647835423348, 48.841109912171795], [2.362734142329214, 48.841228884592475], [2.362821361466554, 48.841347720595174], [2.362907669162307, 48.84146669286531], [2.362994889104239, 48.84158552781687], [2.363081197589889, 48.84170449993647], [2.363168418314436, 48.84182333563549], [2.363254726227513, 48.8419423075973], [2.363341949119145, 48.84206114225239], [2.363428257822132, 48.84218011406367], [2.363515481496413, 48.842298949466276], [2.363601790989322, 48.84241792112696], [2.363689015468228, 48.842536755478406], [2.363775325751066, 48.84265572698856], [2.363862551012646, 48.84277456208745], [2.363948862096401, 48.84289353254777], [2.364036088151544, 48.843012367494794], [2.364122400014273, 48.84313133870384], [2.364209626874164, 48.84325017259971], [2.364295939526854, 48.84336914365819], [2.364383167169458, 48.843487978301525], [2.364383215407798, 48.84348804511049], [2.364471616221904, 48.843607360770115], [2.364558843312198, 48.84372619435344], [2.364647244921457, 48.843845510757134], [2.364734472810781, 48.84396434418698], [2.364778289899585, 48.84402348404894], [2.364810706512178, 48.84404715735081], [2.364902412725741, 48.84401257098609], [2.364968496484963, 48.843888411666285], [2.365033886894798, 48.843765439370834], [2.36509997002746, 48.84364127995087], [2.365165359827975, 48.84351830665704], [2.365231442334085, 48.84339414713694], [2.36529683151433, 48.843271173744], [2.365362913393897, 48.84314701412378], [2.365428301943032, 48.84302404153103], [2.365494383195963, 48.842899881810695], [2.365559771135796, 48.842776908219555], [2.3656258517622, 48.8426527483991], [2.365691239081789, 48.84252977470887], [2.365757319081676, 48.84240561478829], [2.365822705781028, 48.84228264099893], [2.365888785154404, 48.84215848097829], [2.36595417122259, 48.842035507989166], [2.3660202499694662, 48.841911347868354], [2.366085635428374, 48.84178837388088], [2.366151713548757, 48.84166421365999], [2.366217098387455, 48.841541239573395], [2.366283175881354, 48.841417079252416], [2.36634856009985, 48.841294105066744], [2.366414636956342, 48.841169945544955], [2.366480020554644, 48.84104697126025], [2.3665460967956022, 48.84092281073903], [2.366611479773721, 48.84079983635524], [2.366677554025874, 48.84067567572676], [2.366742937746161, 48.840552701251084], [2.366809011371871, 48.84042854052253], [2.36687439446106, 48.8403055668471], [2.366940467460336, 48.84018140601844], [2.367005849940284, 48.840058431344644], [2.367071922313134, 48.839934270415945], [2.367137304172923, 48.83981129564307], [2.367203375919356, 48.83968713461428], [2.367268755796578, 48.83956415973517], [2.367334828268104, 48.839439999512784], [2.367400207525192, 48.83931702453462], [2.367466279381229, 48.83919286331289], [2.367531658018191, 48.839069888235684], [2.367597729247829, 48.83894572691387], [2.367663107264673, 48.83882275173762], [2.367729177867921, 48.83869859031577], [2.367794555253749, 48.83857561593978], [2.367860625230617, 48.838451454417815], [2.367926002007253, 48.83832847904349], [2.367992071357747, 48.8382043174215], [2.368057447514393, 48.83808134194814], [2.368123516238422, 48.83795718022609], [2.368188891774984, 48.83783420465372], [2.368189418321229, 48.837832915047635], [2.368199142464581, 48.837799385025406], [2.368195621921522, 48.83779511423317], [2.368150749427592, 48.83778673616161], [2.368019456645612, 48.83769179901224], [2.367887744497065, 48.83759721653989], [2.367756452671478, 48.83750227908575], [2.367624741479055, 48.837407696307814], [2.367493450609852, 48.83731275854888], [2.367361740373546, 48.837218175465324], [2.367230450471638, 48.83712323650235], [2.367098741180526, 48.83702865401246], [2.366967452234991, 48.83693371474471], [2.366835743899976, 48.83683913194924], [2.366704455910809, 48.836744192376734], [2.366572748531885, 48.83664960927565], [2.366441461499078, 48.836554669398396], [2.366309755087168, 48.836460085092405], [2.36617846899978, 48.83636514580972], [2.366046763543951, 48.83627056119812], [2.365915478412901, 48.8361756216107], [2.365783773913144, 48.836081036693514], [2.365652489738427, 48.83598609680135], [2.365520786194736, 48.835891511578545], [2.365389502976343, 48.83579657138164], [2.365257800388708, 48.83570198585325], [2.365126518126633, 48.83560704535167], [2.364994816495048, 48.835512459517695], [2.364863535189283, 48.83541751871137], [2.36473183451374, 48.83532293257183], [2.364600554175239, 48.83522799056145], [2.364468854444769, 48.835133405015654], [2.3643375750625673, 48.83503846270058], [2.364205876288119, 48.8349438768492], [2.364074597862208, 48.834848934229406], [2.363942900043776, 48.83475434807242], [2.36381162257415, 48.83465940514798], [2.363679925711727, 48.834564818685415], [2.363661332512208, 48.83456390943765], [2.363510034348189, 48.83464462851131], [2.363355291586138, 48.83472747404796], [2.363203993846656, 48.834808191830696], [2.363049248750376, 48.834891036951994], [2.362897950051266, 48.83497175523513], [2.3627432039830403, 48.83505459994842], [2.362591904346383, 48.835135316933304], [2.362437157306209, 48.83521816123853], [2.362285856709805, 48.83529887872381], [2.362131108697677, 48.83538172262097], [2.361979807163726, 48.83546243880802], [2.361825059541852, 48.83554528230443], [2.361673755685924, 48.835625998984554], [2.361519007092193, 48.83570884207288], [2.361517415006956, 48.835709576451684], [2.361359253498099, 48.835774153852334], [2.361201553793618, 48.83583636817313], [2.361043392870963, 48.8359009451561], [2.3608856924169332, 48.835963158154094], [2.360727530718369, 48.83602773471209], [2.360569829492739, 48.836089948185865], [2.360411665655831, 48.83615452431162], [2.360253965042991, 48.8362167364699], [2.360095800430067, 48.83628131217067], [2.359938097683285, 48.8363435247975], [2.359779933656675, 48.836408100080575], [2.359622230160263, 48.836470311384545], [2.359600235200518, 48.83646656648158], [2.359585396034319, 48.8364717672152], [2.359585307052999, 48.83647180181407], [2.359449019575365, 48.83653727443251], [2.359295216188559, 48.83659690971652], [2.359293230188756, 48.83659754302512], [2.35914358339709, 48.836635993312356], [2.358998299226167, 48.836673080867264], [2.358848653351266, 48.83671153168954], [2.358703368759959, 48.83674861888375], [2.358697358657428, 48.83675164990375], [2.358584967112178, 48.836851911230895], [2.358474083162914, 48.836950746941305], [2.3583616907589082, 48.837051008040824], [2.358250805973822, 48.83714984262736], [2.358138412711055, 48.83725010349923], [2.358027525716817, 48.83734893785389], [2.357915131595278, 48.83744919849809], [2.357804245105413, 48.837548033534766], [2.357691850125095, 48.837648293951325], [2.357580962799295, 48.837747127864134], [2.357470073690711, 48.83784596165807], [2.357357677425198, 48.837946221733915], [2.357246788820871, 48.838045056209886], [2.357134391696559, 48.838145316058075], [2.35702350225649, 48.83824414941015], [2.356911104273371, 48.83834440903066], [2.356880167344967, 48.838397608351556], [2.356911534392963, 48.83840561945699], [2.357045575625829, 48.83844867853651], [2.357222191504245, 48.83850474443083], [2.357394070119517, 48.83855995629507], [2.357570686738753, 48.83861602256864], [2.35774256472782, 48.83867123391932], [2.357919182109946, 48.83872729877341], [2.358091060824012, 48.83878251051718], [2.358267678958144, 48.838838574851124], [2.358439559781662, 48.83889378519665], [2.358568414520954, 48.83893468772252], [2.358602586078861, 48.83894757268422]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 54, "zemmour_eric": 76.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-6", "circ_bv": "09", "num_bureau": 6, "roussel_fabien": 12.0, "nb_emargement": 961.0, "nb_procuration": 56.0, "nb_vote_blanc": 13.0, "jadot_yannick": 70.0, "le_pen_marine": 53.0, "nb_exprime": 943.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1201.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 961, "quartier_bv": "49", "geo_point_2d": [48.83858338520985, 2.3633647723276585], "melenchon_jean_luc": 283.0, "poutou_philippe": 9.0, "macron_emmanuel": 310.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.387149383019345, 48.84687186724564], [2.38713032335977, 48.84685425195729], [2.386970740806751, 48.846766220220665], [2.386815151859677, 48.84668092928209], [2.386655570359192, 48.84659289801071], [2.386499982455961, 48.846507605749714], [2.386340402018583, 48.846419574044226], [2.386184815138018, 48.84633428225943], [2.386156339769204, 48.84632016016127], [2.386149967402945, 48.84632020930676], [2.385994381130691, 48.84623491726666], [2.38584617364621, 48.84615637299339], [2.385690588360262, 48.846071080545705], [2.38554238315154, 48.84599253679088], [2.385386798862496, 48.84590724303624], [2.385238593215048, 48.845828698886535], [2.385227367216424, 48.84582689554851], [2.3850915092023532, 48.845844992099885], [2.384963772312485, 48.845871876492645], [2.384951203284402, 48.845870373804495], [2.384819186513036, 48.845801764809714], [2.384709071468633, 48.845749922599055], [2.384699203550844, 48.845745277032904], [2.384694633073242, 48.84574090603473], [2.384628501782899, 48.84560192280977], [2.384572123779748, 48.845461277326194], [2.3845499163270523, 48.84543928801861], [2.384521949062219, 48.84544233416103], [2.384345611271939, 48.84535356412921], [2.384173280618928, 48.845261530900395], [2.383996944044919, 48.84517275944096], [2.383824614594745, 48.84508072659433], [2.383648277863918, 48.84499195459954], [2.383475949627302, 48.84489992123573], [2.383406699303316, 48.84489812626655], [2.383399839000925, 48.84494161892477], [2.383423133808486, 48.84507469462984], [2.383446761517469, 48.845203022522426], [2.3834700579241552, 48.8453360981942], [2.38349368587783, 48.84546442514818], [2.383517313937328, 48.845592752982], [2.383540609335798, 48.84572582858647], [2.383564237629251, 48.84585415638093], [2.383587534627074, 48.84598723195209], [2.3836111631652273, 48.84611555880787], [2.383634459026394, 48.846248635230985], [2.383658089161209, 48.8463769620544], [2.383681385259153, 48.846510038437145], [2.383705014265437, 48.84663836521421], [2.3837283105999543, 48.84677144155659], [2.383751941202921, 48.84689976830129], [2.383775237784855, 48.84703284370404], [2.383798867248651, 48.847161171301636], [2.383822164067166, 48.847294246664], [2.383845795127666, 48.84742257422921], [2.38386909218297, 48.84755564955124], [2.383892722125559, 48.847683976170785], [2.383916020769457, 48.847817052358735], [2.383939650946131, 48.8479453789389], [2.383962948464189, 48.8480784550795], [2.383962952328771, 48.84807847398584], [2.383986582739553, 48.8482068005266], [2.384008355771351, 48.848328911935226], [2.384031986396968, 48.84845723933744], [2.384053761002448, 48.848579350717344], [2.384077391853335, 48.84870767808177], [2.3840991653071892, 48.848829789418886], [2.384122796394074, 48.84895811584618], [2.3841445714110012, 48.84908022805392], [2.384168202723265, 48.849208554443365], [2.38418997658866, 48.84933066660839], [2.3842136081263, 48.84945899295998], [2.384235383565314, 48.84958110509625], [2.384259015328339, 48.84970943141004], [2.384280789615714, 48.84983154350356], [2.384302565378452, 48.849953654687425], [2.384326197475962, 48.85008198094497], [2.384327962955263, 48.85011352496086], [2.384353489270195, 48.850128361639165], [2.384364269612659, 48.85013462714513], [2.384423138155114, 48.85013230842063], [2.384610970527584, 48.850103048293214], [2.384774681611848, 48.850073235748994], [2.384938392519411, 48.850043422080724], [2.385126224282179, 48.85001416114206], [2.385139206333206, 48.85000857901805], [2.385134304142686, 48.849957907631456], [2.385214352903567, 48.84985008177503], [2.385292519342756, 48.849741450257376], [2.385372568806355, 48.84963362428111], [2.385450734591152, 48.84952499263902], [2.385530782021601, 48.84941716742826], [2.385608948525094, 48.84930853476936], [2.385688995295793, 48.84920070943173], [2.385767159771529, 48.84909207754064], [2.385847207255555, 48.84898425118397], [2.385925371076922, 48.84887561916841], [2.386005416538441, 48.848767792677904], [2.386083581068007, 48.84865916054486], [2.386081610558875, 48.84864944549913], [2.385990917401451, 48.84857971720386], [2.385889674325979, 48.848495536015356], [2.385888242215453, 48.848485813835445], [2.385977946848155, 48.848371327721], [2.386062919590681, 48.84826113595007], [2.386152622079656, 48.8481466505738], [2.386237594086495, 48.84803645865661], [2.386322564360868, 48.84792626756044], [2.386412267076268, 48.84781178106282], [2.386497236625461, 48.8477015889211], [2.386586938559813, 48.847587103168706], [2.386671907373347, 48.847476910880694], [2.386761608547832, 48.84736242407498], [2.386846577977757, 48.847252232547], [2.386936277019279, 48.84713774558022], [2.387021245713559, 48.847027553905946], [2.387110943984549, 48.84691306678518], [2.38714221118471, 48.84688751797171], [2.387149383019345, 48.84687186724564]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 84, "zemmour_eric": 86.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "12-12", "circ_bv": "08", "num_bureau": 12, "roussel_fabien": 24.0, "nb_emargement": 1552.0, "nb_procuration": 76.0, "nb_vote_blanc": 17.0, "jadot_yannick": 130.0, "le_pen_marine": 91.0, "nb_exprime": 1528.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1876.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1551, "quartier_bv": "46", "geo_point_2d": [48.84748208213486, 2.3850004624297885], "melenchon_jean_luc": 541.0, "poutou_philippe": 12.0, "macron_emmanuel": 491.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376914452547419, 48.82412118264585], [2.376938533131494, 48.82412194756957], [2.377109345128172, 48.824181303990215], [2.377277585017164, 48.82423925183727], [2.377448397784235, 48.824298607767396], [2.377616637055711, 48.824356556023666], [2.377787450603805, 48.824415910564014], [2.377955690630728, 48.82447385833721], [2.378126504938276, 48.824533213286394], [2.378294747093299, 48.824591159684275], [2.378465562171134, 48.82465051414298], [2.378633803708748, 48.82470846095005], [2.378804619567688, 48.824767814018934], [2.3789728618605412, 48.82482576034296], [2.379143678479049, 48.824885113820635], [2.379311922900094, 48.82494305876937], [2.379482740288784, 48.82500241175656], [2.379650984092423, 48.82506035711444], [2.379819228280729, 48.825118301333326], [2.379990046821074, 48.82517765358665], [2.380158293126758, 48.82523559732954], [2.380329112437386, 48.8252949490923], [2.380497358125669, 48.82535289324441], [2.380668178217362, 48.82541224361734], [2.380724086876941, 48.825441076572744], [2.380737318707454, 48.8254368110107], [2.3808244974749933, 48.82531963872986], [2.3809110573388, 48.825204082044124], [2.380998233964799, 48.825086909605325], [2.381084793046484, 48.8249713536692], [2.381171968892905, 48.824854181079424], [2.381258527203057, 48.82473862499364], [2.381345702269908, 48.824621452252906], [2.381432259808738, 48.82450589601746], [2.381519435458055, 48.82438872313284], [2.381605990874013, 48.824273165841326], [2.381693165743771, 48.824155992805814], [2.381779720377765, 48.82404043626389], [2.381866894467977, 48.823923263077475], [2.381953449692491, 48.82380770639293], [2.382040621641157, 48.823690533048534], [2.382127176105044, 48.823574975315], [2.382214347274188, 48.8234578018197], [2.382300900956041, 48.82334224483583], [2.382388071345674, 48.8232250711896], [2.382474624256059, 48.82310951405602], [2.3825617952281792, 48.82299234026592], [2.382648346015969, 48.822876782076314], [2.382676246866709, 48.82286050171839], [2.382677231063436, 48.82284559425305], [2.382590774453432, 48.82281483804319], [2.382408007215566, 48.82275228612591], [2.382232306112209, 48.82268978212011], [2.382049538380878, 48.82262722964093], [2.381873839490634, 48.82256472510853], [2.381691072627719, 48.82250217207452], [2.381515374588608, 48.82243966700849], [2.381510527491388, 48.822436879055466], [2.381380276160662, 48.822315424493056], [2.3812542594328843, 48.822197000097354], [2.381124010671075, 48.82207554433758], [2.3809979950944182, 48.82195712054589], [2.380867747528665, 48.821835664481114], [2.380741733124465, 48.82171723949473], [2.380739227734542, 48.821714885442695], [2.380562247039855, 48.821657368307875], [2.380353145141704, 48.82158861043395], [2.38017616393967, 48.82153109271425], [2.380001500269292, 48.821473658693996], [2.379824519845339, 48.821416140447994], [2.379649856958068, 48.821358705008905], [2.379472877312099, 48.82130118623659], [2.37929821518654, 48.82124375117732], [2.3792274854233, 48.82122049216493], [2.379050506723197, 48.82116297186108], [2.3790157171739, 48.821151531894124], [2.3790056396945243, 48.82114821841761], [2.378988411125342, 48.821142552804915], [2.378860207010784, 48.82110039414879], [2.378683230474601, 48.82104287420161], [2.378643782247691, 48.821029901662094], [2.378461882708429, 48.82097008487167], [2.378284905692011, 48.820912564321226], [2.3781030083463452, 48.82085274608642], [2.377926032124186, 48.820795224998854], [2.377826979078101, 48.82076265043546], [2.377650004828171, 48.82070512894185], [2.377494801231895, 48.82065408901439], [2.377317826354853, 48.820596567016516], [2.377162623417617, 48.82054552575369], [2.37698565063752, 48.82048800326575], [2.376830448337841, 48.82043696246616], [2.37665347629256, 48.82037943948107], [2.376498274651932, 48.82032839734606], [2.376321301979655, 48.82027087385668], [2.376096042416934, 48.8201971665773], [2.375919071995711, 48.82013964249302], [2.37579998024123, 48.82010067497625], [2.375784352881421, 48.82009556137554], [2.375773719385977, 48.82009208193138], [2.375596749677097, 48.82003455736471], [2.375423949842192, 48.81997801484815], [2.375246979544311, 48.819920489750864], [2.375074180477483, 48.819863945823805], [2.37490138042352, 48.81980740163706], [2.374724412643205, 48.819749875764785], [2.374551613346554, 48.81969333106686], [2.374374646339153, 48.81963580467111], [2.37422406808026, 48.819586531210895], [2.374047101796683, 48.81952900432493], [2.374004055947813, 48.81951491774719], [2.3738620807563953, 48.8194684589487], [2.3736851139110042, 48.81941093151388], [2.373627533401384, 48.8193920882964], [2.373593670695605, 48.819395522810936], [2.373579791643353, 48.81941621586655], [2.373424434834946, 48.81948805732054], [2.373280270856191, 48.81955791654496], [2.373124913213031, 48.819629757600744], [2.372980747068507, 48.81969961734749], [2.372825388601201, 48.81977145710576], [2.372681221663713, 48.81984131648251], [2.372676367949148, 48.819845703371094], [2.372618187938779, 48.81996009860424], [2.372561563108788, 48.82007245137587], [2.372503382604473, 48.82018684563077], [2.372446757280768, 48.820299198325365], [2.372388576271579, 48.82041359250139], [2.37233195044343, 48.82052594601825], [2.37227376892936, 48.82064034011534], [2.372217142618513, 48.8207526926559], [2.372211969398784, 48.820757248727155], [2.372027703612953, 48.82084143429121], [2.37184447291337, 48.82092704242549], [2.371838914100408, 48.82093590267677], [2.371862685876362, 48.82102752127942], [2.371888692711366, 48.82111767573058], [2.371912463295719, 48.82120929430138], [2.371938470307453, 48.821299448727174], [2.371938035000691, 48.821303927140804], [2.371881142822789, 48.82141878283392], [2.371822648224539, 48.82153378836207], [2.371765755530824, 48.821648644876134], [2.371707260420196, 48.821763650324264], [2.371650365870374, 48.82187850585348], [2.371591870247463, 48.821993511221734], [2.371591165204304, 48.82199618316386], [2.371588123515819, 48.82209034276473], [2.371582510181934, 48.82225638504532], [2.371579468462641, 48.822350544624186], [2.371600821128348, 48.82237167167744], [2.371641054017128, 48.822361631998696], [2.371766997736742, 48.82239843609308], [2.371927144651999, 48.8224512172583], [2.371927713218005, 48.8224513938243], [2.37211712773497, 48.82251380338436], [2.372277275348178, 48.82256658497456], [2.372466689340038, 48.822628993967406], [2.372626837671733, 48.822681774184744], [2.372786986316838, 48.8227345550845], [2.372976402890874, 48.82279696326774], [2.372982563611151, 48.82280895278155], [2.372897325395216, 48.8229243544851], [2.372812672164685, 48.82303989589136], [2.372727433195281, 48.82315529745008], [2.37264277920249, 48.82327083961168], [2.37264951428453, 48.82328297605111], [2.3727092514000843, 48.82330267458132], [2.3728107211072382, 48.82333241405533], [2.372828742484708, 48.823327773358294], [2.37285489623493, 48.82328795574171], [2.372882894404273, 48.82324630676788], [2.372901045045271, 48.82324178725409], [2.373041714140059, 48.82328460306375], [2.373181636805174, 48.82332630676122], [2.373322306358406, 48.8233691222376], [2.373462230836767, 48.82341082561074], [2.3734800191681202, 48.823406646773655], [2.373522249268659, 48.82335081081572], [2.373547298818079, 48.82331896293286], [2.373542687412587, 48.823307469932196], [2.3734097359475532, 48.82324873033008], [2.373276532375999, 48.823188552950526], [2.373143581514039, 48.8231298130463], [2.373010378553474, 48.82306963536391], [2.373005577561436, 48.823058628807125], [2.373062436675104, 48.82297206515766], [2.3731359005172292, 48.82286044825301], [2.373154472550197, 48.822855985771014], [2.373326908500371, 48.82291279839189], [2.373511333946888, 48.82297422801466], [2.373683770676953, 48.82303104011499], [2.373868198334939, 48.823092468288706], [2.374040634472002, 48.823149280760646], [2.374225062968665, 48.823210708377545], [2.37439749989651, 48.82326751942965], [2.374581929221057, 48.82332894738898], [2.374754368290681, 48.82338575792762], [2.374938797102791, 48.823447184423706], [2.375111236941517, 48.82350399534105], [2.375295666592295, 48.823565421280314], [2.375468107221682, 48.823622230777765], [2.375652539062256, 48.82368365706662], [2.375824979109619, 48.82374046603635], [2.376009411799629, 48.82380189086901], [2.376181852626764, 48.823858699318194], [2.376366286144679, 48.82392012449331], [2.376538729113803, 48.823976932429005], [2.376538990934744, 48.82397702103344], [2.376723425291951, 48.82403844565127], [2.376894236770282, 48.82409780238358], [2.376914452547419, 48.82412118264585]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 38, "zemmour_eric": 72.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "13-22", "circ_bv": "09", "num_bureau": 22, "roussel_fabien": 15.0, "nb_emargement": 1163.0, "nb_procuration": 9.0, "nb_vote_blanc": 20.0, "jadot_yannick": 30.0, "le_pen_marine": 138.0, "nb_exprime": 1130.0, "nb_vote_nul": 13.0, "arr_bv": "13", "arthaud_nathalie": 9, "nb_inscrit": 1669.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1163, "quartier_bv": "50", "geo_point_2d": [48.82234577709151, 2.3769585453432205], "melenchon_jean_luc": 462.0, "poutou_philippe": 8.0, "macron_emmanuel": 292.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.371263052971316, 48.8957763855649], [2.371216693461894, 48.89576927677255], [2.371023283414997, 48.895795583276275], [2.37082579494963, 48.895822227767965], [2.370632384508518, 48.89584853363914], [2.370434897006144, 48.89587517749212], [2.370241484817911, 48.89590148182426], [2.370043996914551, 48.89592812503134], [2.369850585685036, 48.89595442963732], [2.369653096017001, 48.89598107219135], [2.369459684393397, 48.89600737616474], [2.369262195688285, 48.896034018080044], [2.369068782317499, 48.896060320514444], [2.368871293211526, 48.896086961783844], [2.368677880799569, 48.896113264492094], [2.3684803899289433, 48.89613990510836], [2.36828697712272, 48.89616620718406], [2.368089485851245, 48.89619284715442], [2.367896072661781, 48.89621914769825], [2.367698582353373, 48.89624578702989], [2.367505167394943, 48.896272087833225], [2.367307676685704, 48.89629872651894], [2.367114262697036, 48.89632502669688], [2.366916770223071, 48.8963516647295], [2.366723355851209, 48.89637796337559], [2.3665258629654913, 48.89640460166154], [2.3663324481995103, 48.89643089967504], [2.366134956287836, 48.89645753642303], [2.36594153975289, 48.89648383469597], [2.365744047440421, 48.89651047079804], [2.365550631886233, 48.896536767546344], [2.365353137798106, 48.896563403894525], [2.365159721849929, 48.8965897000102], [2.364962227371882, 48.89661633481321], [2.364768811018649, 48.89664263119557], [2.364571317503743, 48.896669265359876], [2.364377900767408, 48.89669556021041], [2.364180405476949, 48.89672219462078], [2.363986988346443, 48.89674848883871], [2.363789492666211, 48.89677512170392], [2.363596075130657, 48.896801416188424], [2.363398580413595, 48.89682804841499], [2.363205161131065, 48.896854341360424], [2.363007666002266, 48.89688097384027], [2.362881854222789, 48.896898075996084], [2.362859284338874, 48.896892059997725], [2.362826468163939, 48.89690610810806], [2.362758861599446, 48.89691529914023], [2.362561114968482, 48.8969426049337], [2.36236769620145, 48.8969688965311], [2.362169950525675, 48.8969962016846], [2.361976531350865, 48.897022493548256], [2.36177878390244, 48.89704979804728], [2.361585364342, 48.897076088378604], [2.361387617848783, 48.89710339223768], [2.361194196516847, 48.89712968282796], [2.3609964496148192, 48.89715698603984], [2.360803029261207, 48.89718327510509], [2.360605281950583, 48.8972105776697], [2.360411859825272, 48.89723686699393], [2.360214112105955, 48.89726416891137], [2.360020690959002, 48.89729045671054], [2.359822941467074, 48.89731775797345], [2.359629519912555, 48.89734404603885], [2.359431771375779, 48.89737134666182], [2.359238349435721, 48.89739763319491], [2.359163567518475, 48.89740012886158], [2.35916082426834, 48.897425524390684], [2.359149397855426, 48.897555738331626], [2.359140159192842, 48.89768584615277], [2.359128732682176, 48.897816059161585], [2.359119493921853, 48.89794616695019], [2.359108067291294, 48.89807638082524], [2.359098828444097, 48.89820648768209], [2.359087401704714, 48.89833670152423], [2.359078161384744, 48.89846680924046], [2.359066735911564, 48.89859702215766], [2.359057495493642, 48.89872712984138], [2.359048256393502, 48.8988572375162], [2.359036829384793, 48.898987451276035], [2.359027590186806, 48.899117558918306], [2.359016163080439, 48.899247771745955], [2.359006923784604, 48.899377879355654], [2.358995496558232, 48.89950809304959], [2.3589862571756193, 48.89963819972748], [2.358974829840413, 48.89976841338847], [2.358965588984979, 48.89989852092575], [2.358954162916008, 48.9000287336618], [2.358944921962613, 48.90015884116652], [2.358933495773738, 48.90028905476887], [2.358924254722582, 48.90041916224101], [2.358912828435951, 48.90054937491114], [2.35890358728683, 48.90067948235073], [2.35889215951627, 48.90080969587984], [2.35888291964438, 48.9009398023949], [2.35887149176508, 48.90107001589103], [2.358862251784255, 48.90120012327276], [2.358850823807086, 48.90133033583665], [2.358841583728401, 48.901460443185805], [2.358830155631311, 48.90159065661599], [2.358836628169636, 48.901601965962804], [2.3588973400633613, 48.90160865090237], [2.359028305264653, 48.901611431970366], [2.3592284952044222, 48.901615518554145], [2.359287356127093, 48.90161676783295], [2.359367499772584, 48.901618469064644], [2.35956768976604, 48.90162255508147], [2.359753325181295, 48.90162649461326], [2.359953515235892, 48.9016305799852], [2.360139152073, 48.901634518926265], [2.360324787574157, 48.90163845757229], [2.360524977708553, 48.901642542888275], [2.360752022308949, 48.90164735845411], [2.360952213886079, 48.90165144216399], [2.361152404130675, 48.901655525531964], [2.361379448834692, 48.90166034080762], [2.361579639146913, 48.90166442346151], [2.361748832063681, 48.90166801145208], [2.361918025003771, 48.901671599203674], [2.362118216765564, 48.901675680964566], [2.362221881922209, 48.90167771599481], [2.362422072367406, 48.90168179724053], [2.36263037647196, 48.90168588625619], [2.36283056834454, 48.901689966826375], [2.363038871149822, 48.90169405512425], [2.363239063085934, 48.90169813501169], [2.363447367319921, 48.90170222260635], [2.363647557955407, 48.90170630180369], [2.363679310927464, 48.90170692465937], [2.363910496794511, 48.90171146036228], [2.364110687501706, 48.901715538785545], [2.364252736524853, 48.90171832442084], [2.3644529286493, 48.901722402279276], [2.364665732196138, 48.90172657637939], [2.364865924384768, 48.901730653547475], [2.365078728009415, 48.901734826014554], [2.36527892026201, 48.901738902492326], [2.365491723953476, 48.90174307422556], [2.365691916270228, 48.90174715001302], [2.365693820118055, 48.90174718707522], [2.365745339842331, 48.90174819734974], [2.365948197516541, 48.901752173509756], [2.366148389903918, 48.90175624853423], [2.366351249004329, 48.90176022401876], [2.366551440090268, 48.90176429836233], [2.366751631207542, 48.90176837237123], [2.366954490401257, 48.90177234683404], [2.367154682944967, 48.90177642017647], [2.367357540836765, 48.901780393949416], [2.367374509077757, 48.90178072639084], [2.367574700322606, 48.90178479902406], [2.367761998651748, 48.901788818553115], [2.367962189958028, 48.90179289053862], [2.368149488335384, 48.90179691036101], [2.368336786752477, 48.90180092899126], [2.368536978150281, 48.90180500001597], [2.368724276615484, 48.90180901893947], [2.368924468074699, 48.901813089316526], [2.369120733312777, 48.90181729965488], [2.36932092483473, 48.901821369369245], [2.3695031093353123, 48.90182527650928], [2.369703302281879, 48.90182934559168], [2.369885486839072, 48.90183325215004], [2.370085678482246, 48.90183732058614], [2.370224633276366, 48.901840300495145], [2.370265534579417, 48.901833556673374], [2.370251577251595, 48.901820566460756], [2.370200832804423, 48.90171701628034], [2.370152495576638, 48.90161599860105], [2.370151870117001, 48.901613012291435], [2.37015808826084, 48.901481846941806], [2.370164541343116, 48.90135189328703], [2.370170759423838, 48.901220727905404], [2.370177212442115, 48.901090774218936], [2.370183665439053, 48.90096081961738], [2.370189883413898, 48.90082965508709], [2.370196337710857, 48.90069970046099], [2.37020255426955, 48.9005685349923], [2.370209008491627, 48.90043858123377], [2.370215224987212, 48.90030741573311], [2.370221679145286, 48.90017746194282], [2.370227896941667, 48.90004629641735], [2.370234349671736, 48.89991634258821], [2.370240567405109, 48.899785177030736], [2.370247020071183, 48.89965522316989], [2.370253237741446, 48.899524057580464], [2.370259690354405, 48.89939410278863], [2.37026590795068, 48.89926293806653], [2.370272360499646, 48.899132983243], [2.3702785780327122, 48.89900181848889], [2.370285030517687, 48.89887186363365], [2.370291247998623, 48.898740697948355], [2.370299217233379, 48.89871550416809], [2.370291167327329, 48.89870214748171], [2.370297384772536, 48.89857098177576], [2.370302202470357, 48.89844581162421], [2.370308419857147, 48.89831464588694], [2.370313238868771, 48.898189475712805], [2.370319454833091, 48.89805830993704], [2.370324273794455, 48.89793313973318], [2.370330491064414, 48.89780197393333], [2.370335308611475, 48.8976768036925], [2.37034012749941, 48.89755163344434], [2.370346343319932, 48.89742046759076], [2.370351162157508, 48.89729529731284], [2.370357379283552, 48.89716413143516], [2.370362196707047, 48.897038961120344], [2.370368413774578, 48.896907795211334], [2.3703732311478243, 48.896782624866766], [2.370379448157045, 48.896651458926485], [2.370382399928054, 48.896646147791614], [2.370492260900572, 48.89655493565005], [2.370595089866267, 48.896464541694996], [2.3707049500720743, 48.89637333024245], [2.370807778320771, 48.89628293519054], [2.370917637770745, 48.89619172352776], [2.371020465291377, 48.89610132827825], [2.371123291080278, 48.89601093382509], [2.371233150778297, 48.895919720958126], [2.371235396936746, 48.89591669485727], [2.371262225298511, 48.89587191391085], [2.371294183070252, 48.89579474848548], [2.371263052971316, 48.8957763855649]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 34, "zemmour_eric": 61.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "18-65", "circ_bv": "17", "num_bureau": 65, "roussel_fabien": 10.0, "nb_emargement": 1132.0, "nb_procuration": 15.0, "nb_vote_blanc": 14.0, "jadot_yannick": 24.0, "le_pen_marine": 130.0, "nb_exprime": 1103.0, "nb_vote_nul": 15.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1802.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1132, "quartier_bv": "72", "geo_point_2d": [48.89914936040919, 2.3650050517517984], "melenchon_jean_luc": 547.0, "poutou_philippe": 9.0, "macron_emmanuel": 251.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.335620871081666, 48.830375879159895], [2.335651203833549, 48.83036907121345], [2.335827201361822, 48.83034208268754], [2.336009272105906, 48.83031312921187], [2.336185269259946, 48.83028614015771], [2.336367339609785, 48.83025718613549], [2.3365433363895862, 48.8302301965531], [2.336725406345172, 48.83020124198433], [2.336901402750728, 48.83017425187371], [2.3370834723120533, 48.830145296758374], [2.337099626691223, 48.83013269073651], [2.337090879600842, 48.83011363308579], [2.337124404829708, 48.82998910810938], [2.337158809126533, 48.829864322667284], [2.337192334044249, 48.829739796744875], [2.337226738013949, 48.82961501125548], [2.337260262597653, 48.829490486185605], [2.337294666240335, 48.82936570064894], [2.337328190512795, 48.829241174633005], [2.337362593828361, 48.82911638904905], [2.337396117766821, 48.828991863885705], [2.337430520766706, 48.828867077355135], [2.337464044382701, 48.82874255214507], [2.337498447043948, 48.82861776646657], [2.337531970337384, 48.82849324120978], [2.337566372682957, 48.828368454584684], [2.337599895653837, 48.82824392928112], [2.337634297660885, 48.828119143508054], [2.337667820309214, 48.827994618157824], [2.337702222000595, 48.827869831438164], [2.337735742964272, 48.82774530603369], [2.337770145679348, 48.82762052017361], [2.3378036663203883, 48.8274959947224], [2.337838068719797, 48.827371207915725], [2.3378347267116872, 48.82736353392224], [2.337703430728305, 48.82726857924068], [2.33757942205938, 48.82717636289811], [2.33744812701225, 48.827081407920396], [2.337324119251637, 48.8269891903984], [2.337200111918179, 48.82689697363952], [2.337068818265483, 48.826802018221784], [2.336944813202309, 48.826709800291034], [2.336813519112534, 48.82661484546893], [2.33679768791949, 48.826609407283264], [2.336770781996933, 48.82661685420574], [2.336674342226175, 48.82666307072743], [2.33656925352484, 48.82671392584254], [2.336524977840311, 48.82671951446964], [2.336517661987108, 48.82673319387351], [2.336474721282134, 48.82675397316604], [2.336319798117255, 48.82682855591474], [2.336171769140906, 48.826900190798675], [2.33601684510815, 48.826974773145196], [2.33586881531184, 48.82704640674552], [2.335720785108749, 48.82711804015802], [2.335565859783485, 48.82719262190581], [2.335417828737619, 48.827264255833335], [2.335262902544469, 48.827338837178964], [2.335114870678549, 48.82741046982283], [2.334959943617514, 48.82748505076624], [2.334954706283518, 48.82749026590472], [2.334911467020162, 48.82761208248882], [2.334865544291607, 48.827735589337664], [2.334822304616452, 48.82785740586291], [2.334776381460475, 48.82798091265053], [2.334733141373516, 48.828102729116885], [2.334687217790316, 48.82822623584323], [2.334643977291546, 48.82834805225069], [2.334598053280915, 48.82847155891583], [2.334554812370329, 48.82859337526445], [2.3345088879324623, 48.828716881868246], [2.334465646610054, 48.828838698157966], [2.334419720382708, 48.828962204693], [2.334404657838776, 48.82896897140519], [2.334247676626937, 48.82895488851655], [2.3341031715256593, 48.828940841610944], [2.334088602481267, 48.828946296144956], [2.33399944282629, 48.829088344328504], [2.333905316639007, 48.82923183794522], [2.333816155996284, 48.82937388595593], [2.333722028789069, 48.82951737939184], [2.333673751450219, 48.82953102555303], [2.333672057549097, 48.82954226729352], [2.333714216704967, 48.829604969143645], [2.333745477234268, 48.82964951394391], [2.333753664347491, 48.82966474729208], [2.333767640013628, 48.82967099305761], [2.333800051193128, 48.829717177514574], [2.333792155344134, 48.82973841813017], [2.333830831336917, 48.82975903048147], [2.333860292620651, 48.829801010998956], [2.333933831674381, 48.82991304733835], [2.334026965653445, 48.8300457578272], [2.334070130044353, 48.830111518492146], [2.334084891974033, 48.83011978319344], [2.334131440106556, 48.83010781177153], [2.334176113252024, 48.83011518622541], [2.334218930889595, 48.83011787898351], [2.334233289064707, 48.83011146722897], [2.334287196597546, 48.829990638678375], [2.334335304194075, 48.829861646566236], [2.334355562047282, 48.82985609415782], [2.334517560246061, 48.82992055626877], [2.334666663405458, 48.82998238859831], [2.334828662392841, 48.83004684938132], [2.334977764908794, 48.83010868220779], [2.335139764673299, 48.830173142562145], [2.335288869281724, 48.83023497500134], [2.3354379728930352, 48.83029680634437], [2.335599973799708, 48.83036126696387], [2.335620871081666, 48.830375879159895]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 63, "zemmour_eric": 84.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-36", "circ_bv": "11", "num_bureau": 36, "roussel_fabien": 12.0, "nb_emargement": 1031.0, "nb_procuration": 44.0, "nb_vote_blanc": 12.0, "jadot_yannick": 67.0, "le_pen_marine": 65.0, "nb_exprime": 1012.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 6, "nb_inscrit": 1333.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "54", "geo_point_2d": [48.828646767060725, 2.335982837537], "melenchon_jean_luc": 374.0, "poutou_philippe": 8.0, "macron_emmanuel": 286.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.365945624925106, 48.83067573867637], [2.365927769840553, 48.830686494925395], [2.365857585841622, 48.83081388742402], [2.365787269609335, 48.83093879600539], [2.365717083565198, 48.83106618838566], [2.365646766655951, 48.831191096856266], [2.365576581280044, 48.831318490031975], [2.3655062637047752, 48.83144339749253], [2.365436076283628, 48.83157079054983], [2.365365758020534, 48.831695698799], [2.365295571289502, 48.83182309085308], [2.365225252349322, 48.83194799899148], [2.365222560365522, 48.83195091664982], [2.365088097994303, 48.83204851214584], [2.364951057384297, 48.83214613066949], [2.364816594012214, 48.83224372494397], [2.364679551018381, 48.83234134313231], [2.364545087996706, 48.83243893709178], [2.364408043981364, 48.832536554952036], [2.364273579947864, 48.83263414858923], [2.364136534910803, 48.83273176612138], [2.364002069865469, 48.832829359436296], [2.363865023806782, 48.832926976640366], [2.363730557749605, 48.83302456963305], [2.363593510669284, 48.83312218650896], [2.363459043589276, 48.83321978007871], [2.363321995498395, 48.83331739572721], [2.363299232425847, 48.83335721822537], [2.363314270597487, 48.83336595919969], [2.363419777340562, 48.83340096031701], [2.363614341166045, 48.8334659417071], [2.363794212209766, 48.8335256120949], [2.363988776967248, 48.83359059286872], [2.364168648869787, 48.83365026268677], [2.364363213196897, 48.833715242837], [2.364500837869585, 48.833760896703495], [2.364537313156331, 48.83377250258553], [2.364570084776992, 48.83373098197249], [2.364703373066924, 48.83362418939462], [2.364835598443418, 48.83351782361266], [2.364968885633532, 48.833411031617906], [2.365101111289844, 48.83330466552942], [2.365234397401858, 48.83319787231913], [2.365366620602634, 48.83309150680897], [2.365499905625707, 48.832984713282485], [2.365632127754913, 48.83287834655927], [2.365765411678111, 48.83277155361587], [2.365897634087251, 48.83266518658613], [2.366030916932467, 48.83255839242722], [2.36616313688593, 48.83245202597578], [2.366296418642337, 48.83234523150073], [2.366428637524349, 48.83223886383625], [2.366561918191752, 48.832132069044995], [2.366694137342682, 48.832025701973315], [2.366716404819873, 48.83200835861736], [2.366711752837794, 48.83199903270449], [2.366522455505516, 48.83190998284301], [2.366346655591714, 48.83182233614819], [2.366341280006298, 48.83181449304365], [2.366354643591193, 48.83169572740158], [2.366366304105379, 48.83156128479755], [2.366379667568355, 48.8314425191258], [2.366391327972401, 48.83130807558966], [2.366404691313459, 48.8311893098883], [2.366413827887909, 48.8310839619736], [2.366383924042053, 48.83106520097567], [2.366381088625749, 48.83106524621206], [2.366299251522027, 48.83098427310179], [2.366168285382284, 48.830854407008204], [2.366036775129748, 48.83073595538015], [2.366035893679185, 48.83073517724899], [2.365973287503371, 48.83068564979425], [2.365945624925106, 48.83067573867637]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 39, "zemmour_eric": 56.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-29", "circ_bv": "09", "num_bureau": 29, "roussel_fabien": 28.0, "nb_emargement": 926.0, "nb_procuration": 24.0, "nb_vote_blanc": 10.0, "jadot_yannick": 27.0, "le_pen_marine": 101.0, "nb_exprime": 908.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1311.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 926, "quartier_bv": "50", "geo_point_2d": [48.83243481500621, 2.3652101216261823], "melenchon_jean_luc": 374.0, "poutou_philippe": 7.0, "macron_emmanuel": 229.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.34650232061075, 48.82492502158622], [2.346505506540324, 48.824909484267266], [2.346509594942393, 48.82477999897904], [2.346513664442525, 48.82464952065988], [2.346517752804051, 48.824520035341415], [2.346521820912729, 48.82438955608506], [2.346525909233614, 48.824260070736315], [2.346529978663609, 48.82412959145686], [2.34653406694385, 48.824000106077904], [2.346538134971134, 48.82386962676059], [2.346542223210735, 48.82374014135138], [2.346546292548052, 48.82360966291031], [2.34655038074701, 48.82348017747084], [2.346554448692903, 48.82334969809256], [2.346558536851222, 48.823220212622886], [2.346562604756422, 48.82308973321414], [2.346566694235983, 48.822960247721625], [2.346570762100588, 48.82282976828243], [2.346574850177526, 48.822700282752265], [2.3465789179901693, 48.8225698041819], [2.346585140283984, 48.82256302718433], [2.34657687876948, 48.82255058679831], [2.346513799561382, 48.8224609580304], [2.346449751143666, 48.822370323814056], [2.346386672372078, 48.82228069496477], [2.346322624408151, 48.82219005976648], [2.346321389746606, 48.822186961850136], [2.346307073520236, 48.822066692315744], [2.34629124946608, 48.82194219643303], [2.346276934738289, 48.8218219268763], [2.346261110830377, 48.82169743096252], [2.346247156707014, 48.82168919370124], [2.346027158401458, 48.82169327728535], [2.345811139124817, 48.82169742090681], [2.345591142112354, 48.8217015036962], [2.345375122755797, 48.82170564742929], [2.3451551243124378, 48.82170972940903], [2.344939104887155, 48.82171387235447], [2.344723085427546, 48.821718014909656], [2.344503088254224, 48.82172209479789], [2.344500571204847, 48.82172198926327], [2.344306258252161, 48.821701758138055], [2.344112819702208, 48.82168175633703], [2.343918507049911, 48.82166152458102], [2.3437250674360213, 48.82164152214455], [2.343530755072798, 48.82162129065704], [2.343337315756926, 48.821601287592635], [2.343143003705328, 48.82158105457501], [2.34294956604943, 48.82156105089014], [2.342947747140549, 48.82156077557847], [2.342763468140454, 48.821523999007596], [2.342563251512593, 48.82148265291381], [2.342553690576544, 48.82150001145134], [2.342554483316564, 48.821520098972435], [2.342674024767955, 48.82161711126453], [2.342791600094059, 48.82171302796793], [2.342911142428942, 48.82181004000634], [2.343028717264432, 48.8219059564526], [2.343146293883019, 48.82200187368195], [2.34326583754007, 48.822098885340836], [2.343383413679379, 48.82219480141377], [2.34350295821994, 48.82229181281893], [2.343620535230497, 48.82238772864223], [2.343740080654575, 48.82248473979376], [2.34385765989826, 48.822580655374914], [2.343977206205865, 48.82267766627271], [2.343980018757125, 48.822685033228446], [2.343944960723057, 48.82280597108367], [2.343908995373389, 48.82292572035564], [2.343873937012749, 48.82304665816415], [2.343837971333938, 48.8231664073891], [2.34380291264672, 48.82328734515087], [2.343766946638759, 48.823407094328815], [2.343768124360635, 48.82341286670853], [2.343846756073784, 48.823516682664355], [2.343924283570618, 48.823616484868346], [2.344002915901781, 48.82372030070264], [2.344080444011511, 48.82382010188798], [2.344157973768735, 48.82391990392102], [2.344236607022806, 48.82402371957359], [2.344245650329537, 48.824028448628816], [2.344308003680122, 48.82403819533377], [2.344342047524063, 48.82405368491445], [2.344339755542347, 48.824046721054366], [2.344497098741023, 48.82407459196625], [2.3445479181324558, 48.824080000576735], [2.344554619618668, 48.82408682311573], [2.344582245802336, 48.8240877641873], [2.34463278366761, 48.82409671656683], [2.344672071942015, 48.824102322748146], [2.344679162691323, 48.82410537722036], [2.344784756870118, 48.82419218819413], [2.344887164134628, 48.82427802197116], [2.344992757636081, 48.82436483363981], [2.345095166944139, 48.824450667232966], [2.34519757522736, 48.824536500724435], [2.345303169769146, 48.82462331209896], [2.345313570350664, 48.82463299687585], [2.345336376662782, 48.82463142010805], [2.345516546209143, 48.82468028016952], [2.345692088854766, 48.82472774398847], [2.345872259067333, 48.82477660350987], [2.346047802349806, 48.82482406770188], [2.346227973228578, 48.82487292668322], [2.346403517170463, 48.8249203894497], [2.346406883677866, 48.82492098165199], [2.346438416188609, 48.82492317039189], [2.34648103449653, 48.824926909974295], [2.34650232061075, 48.82492502158622]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 79, "zemmour_eric": 74.0, "hidalgo_anne": 53.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-47", "circ_bv": "10", "num_bureau": 47, "roussel_fabien": 33.0, "nb_emargement": 1513.0, "nb_procuration": 87.0, "nb_vote_blanc": 28.0, "jadot_yannick": 134.0, "le_pen_marine": 95.0, "nb_exprime": 1479.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1818.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1513, "quartier_bv": "51", "geo_point_2d": [48.823019287086666, 2.345139561315075], "melenchon_jean_luc": 498.0, "poutou_philippe": 16.0, "macron_emmanuel": 469.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323352164242659, 48.82373519551495], [2.3233366422550352, 48.82373538739144], [2.323305092061567, 48.823741926331294], [2.323266553651502, 48.82374841852081], [2.323250558705563, 48.823743072922696], [2.323193547561154, 48.823649902729024], [2.323135721902528, 48.823555278986845], [2.323118827225005, 48.82355010275691], [2.322932718934359, 48.82359061134203], [2.322749840351436, 48.82363034557481], [2.322563731499378, 48.823670852683456], [2.322380852353811, 48.82371058634911], [2.322194742916977, 48.82375109377994], [2.322011863208769, 48.82379082687847], [2.321825753198847, 48.82383133373216], [2.321642872928003, 48.82387106626358], [2.321459993740333, 48.82391079852161], [2.321273881511423, 48.82395130450436], [2.321270083546069, 48.823952596942746], [2.321221307283544, 48.82397624900375], [2.321168779703918, 48.8240006406256], [2.321158940408773, 48.8240021793725], [2.321120318875205, 48.82399838688416], [2.321082322237662, 48.82399524548499], [2.321076418220635, 48.823995616686766], [2.320873476368412, 48.8240391905171], [2.32066492433532, 48.82408491402956], [2.320461981780006, 48.8241284880574], [2.320253429028865, 48.82417421084863], [2.320236182423384, 48.82416845301241], [2.320176999835269, 48.82404810235907], [2.320117833238026, 48.82392675523923], [2.320058651197342, 48.82380640450141], [2.319999485138087, 48.82368505819623], [2.319940303656757, 48.82356470647464], [2.31988113814721, 48.823443360084816], [2.319862849487312, 48.82343783819621], [2.319726173780507, 48.82347616943957], [2.319588942215603, 48.82351292974283], [2.319452267484321, 48.82355125977901], [2.319315035528763, 48.82358801976548], [2.319313000484546, 48.82358844528073], [2.319142195079711, 48.82361442284774], [2.318974896599208, 48.82364010625929], [2.31880409085668, 48.82366608334217], [2.318636790693623, 48.82369176537247], [2.318465985963552, 48.82371774287834], [2.318298685468298, 48.823743424434454], [2.318127880412301, 48.82376940055688], [2.317960579572889, 48.8237950825381], [2.317957982654725, 48.82379566401609], [2.317890070026754, 48.82381612700264], [2.317816672587921, 48.82383947895119], [2.317709348973257, 48.8238486303333], [2.317708984765206, 48.82386230603916], [2.31780527743976, 48.82390526840733], [2.317964506179953, 48.82397658918533], [2.318138901769605, 48.82405439801764], [2.318298131421597, 48.824125718341946], [2.318472529369958, 48.82420352668517], [2.31863175857174, 48.824274846547986], [2.318806157516806, 48.82435265439432], [2.318965387630388, 48.82442397380345], [2.319139787583903, 48.82450178025367], [2.319299018609285, 48.82457309920909], [2.31929571955457, 48.82458906511277], [2.319127259050293, 48.82462652129912], [2.318973383262596, 48.824663070989985], [2.318804920925614, 48.824700526712036], [2.318651046055564, 48.82473707599348], [2.318482583259656, 48.824774530359704], [2.318328706571454, 48.82481108011553], [2.318321774732064, 48.82482431724952], [2.3184202320600003, 48.82492807330712], [2.318519008024175, 48.825036243444984], [2.318617466144819, 48.82513999932062], [2.3187162429198, 48.82524816927514], [2.318814701833158, 48.82535192496881], [2.3189134794187503, 48.82546009474002], [2.319011937774534, 48.825563849344626], [2.319110717521147, 48.8256720198396], [2.319209176669756, 48.825775774262226], [2.319307955876793, 48.82588394366681], [2.319406417168346, 48.825987698814515], [2.319475167643268, 48.826062984046075], [2.3194741539010533, 48.82607041704017], [2.319494855451094, 48.826083791687], [2.319524885018453, 48.82611667567111], [2.319582680498335, 48.826178051658395], [2.319640179567349, 48.82617750010148], [2.319654009556434, 48.826164125873845], [2.319829485624878, 48.82612436868889], [2.320039942046781, 48.82607869256971], [2.320215418883612, 48.8260389357225], [2.320425874622541, 48.825993258920654], [2.320601349515577, 48.82595350149644], [2.320811804571524, 48.825907824011985], [2.320987280244772, 48.82586806602614], [2.320990371296664, 48.82586709605889], [2.321117063198921, 48.825813539619276], [2.321246326748561, 48.825764047544034], [2.321373019499537, 48.825710490836116], [2.321502281200369, 48.825660997572626], [2.321505012180214, 48.82566100407345], [2.321535665052362, 48.82564690663651], [2.321590769645145, 48.82562295310756], [2.321553203017658, 48.82558468546181], [2.321443022602232, 48.82549213029257], [2.321449077045954, 48.825478120840664], [2.321630640325556, 48.82543452731903], [2.321687304405883, 48.825343664276964], [2.32168746289133, 48.825343627401985], [2.32187142195578, 48.825301147942824], [2.322051608545128, 48.82526017126217], [2.322235568368768, 48.82521769214677], [2.322415754383496, 48.825176714914406], [2.322599712265629, 48.82513423432865], [2.322779899067662, 48.82509325655231], [2.322960084224524, 48.82505227849526], [2.323144041224094, 48.82500979706747], [2.323324227168353, 48.82496881846643], [2.32350818356508, 48.82492633737468], [2.323688367572669, 48.824885358214225], [2.323872324751918, 48.82484287566756], [2.32388749307568, 48.82484162135196], [2.323896297381502, 48.82480898138423], [2.323828727725282, 48.824675054074184], [2.323760350197356, 48.82453916958624], [2.323692781239909, 48.82440524216721], [2.323624403069893, 48.8242693566619], [2.323556834811416, 48.82413542913394], [2.323488458711463, 48.82399954352592], [2.323420891140071, 48.823865616788254], [2.323362045720063, 48.82374897417387], [2.323352164242659, 48.82373519551495]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 74, "zemmour_eric": 87.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "14-43", "circ_bv": "10", "num_bureau": 43, "roussel_fabien": 25.0, "nb_emargement": 1216.0, "nb_procuration": 48.0, "nb_vote_blanc": 11.0, "jadot_yannick": 116.0, "le_pen_marine": 52.0, "nb_exprime": 1204.0, "nb_vote_nul": 1.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1509.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "55", "geo_point_2d": [48.824689288243505, 2.3208259078366504], "melenchon_jean_luc": 347.0, "poutou_philippe": 5.0, "macron_emmanuel": 437.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.412092244394048, 48.84884091715108], [2.412096217556038, 48.848835286944464], [2.412126838562868, 48.84882797817938], [2.412311876161629, 48.848783812596466], [2.412514048030358, 48.84873555696963], [2.412522415418238, 48.84872440921557], [2.412467672428483, 48.848609214880454], [2.412412654135103, 48.84849344087149], [2.412357912983111, 48.84837824736824], [2.412302895177413, 48.8482624732848], [2.412248154510649, 48.84814727970745], [2.412193137192627, 48.84803150554953], [2.412204028996815, 48.848019929530665], [2.412463746041056, 48.84799307077884], [2.412713094243035, 48.847967282958884], [2.41272166050309, 48.84796398750986], [2.412830200191787, 48.84787368831039], [2.412939315881085, 48.8477829088808], [2.413047854815505, 48.84769260946923], [2.413156969736495, 48.847601830725694], [2.413265509279278, 48.84751153110865], [2.413374623452118, 48.847420751252564], [2.413387642541668, 48.84741748118554], [2.413572046997749, 48.84743872587314], [2.4137528914404722, 48.84745955981374], [2.413937297556973, 48.84748080394424], [2.414118142291729, 48.84750163733196], [2.414298987171176, 48.847522470445995], [2.41448339237026, 48.84754371372688], [2.414664237541627, 48.84756454628802], [2.414848644411113, 48.847585788112546], [2.4150294898645, 48.84760662102009], [2.415213897031743, 48.84762786228083], [2.415225057418103, 48.84763551546258], [2.415254771534354, 48.84778033597422], [2.415284660274541, 48.84792600360306], [2.415314376074612, 48.84807082496809], [2.4153442651581, 48.848216491644706], [2.415373979926798, 48.848361312950495], [2.4154038693334092, 48.84850698047355], [2.415419422975406, 48.84851466408972], [2.415642757164683, 48.84849223164931], [2.415859518232165, 48.84847045830205], [2.416082852042548, 48.848448025039254], [2.416299611369545, 48.84842625178648], [2.416326245505095, 48.84842394088184], [2.41632825722855, 48.848421839916625], [2.416312829128831, 48.848345147943945], [2.41628878594985, 48.8482195584215], [2.416263435463164, 48.84809353530871], [2.416239392519302, 48.847967945747946], [2.416214040911814, 48.847841922589566], [2.416189999565709, 48.847716332997145], [2.416164648200064, 48.84759030979984], [2.416140607089066, 48.847464720169135], [2.416115698743887, 48.84734089441443], [2.41609165786591, 48.84721530474574], [2.416085728000786, 48.84718582828626], [2.416059295506912, 48.847054425192766], [2.416035253534392, 48.846928835473825], [2.41602899206918, 48.84689770437364], [2.416014310940093, 48.84682471943657], [2.415990270544561, 48.846699129689334], [2.41597663242558, 48.84663133190075], [2.415957245504158, 48.846611663729384], [2.415938975560527, 48.84661124357683], [2.415741547117595, 48.846628799978575], [2.415545970552356, 48.84664537041656], [2.41534854184775, 48.84666292616924], [2.415152965029485, 48.8466794959643], [2.414955534700602, 48.84669705106122], [2.414759957629322, 48.84671362021332], [2.414562528401395, 48.846731174667866], [2.414366951077108, 48.84674774317699], [2.414169521587534, 48.84676529698248], [2.413973944010251, 48.846781864848644], [2.413776512896424, 48.84679941799833], [2.413580935066153, 48.846815985221546], [2.413385357101412, 48.846832553024136], [2.413187926970063, 48.846850104309134], [2.412992348752342, 48.84686667146877], [2.412794918359385, 48.84688422210467], [2.412599339888692, 48.84690078862131], [2.41240190787152, 48.84691833860147], [2.412206329147864, 48.84693490447514], [2.4120088982317203, 48.84695245381293], [2.411813319255111, 48.84696901904366], [2.411615886714767, 48.846986567725644], [2.411420308847835, 48.847003132320076], [2.41122287604592, 48.847020680353], [2.411191039202358, 48.84700301505404], [2.411174255040172, 48.84701954890717], [2.411118813520776, 48.8470244769913], [2.410976822083052, 48.84703709743312], [2.410775832684438, 48.847055344903026], [2.410578399457548, 48.847072892770925], [2.410377409781383, 48.84709113957091], [2.410179976284735, 48.84710868678073], [2.409978986320847, 48.847126933810124], [2.409781552564632, 48.847144479462614], [2.409580562323204, 48.84716272582212], [2.409383128297256, 48.84718027081655], [2.409182137778298, 48.84719851650613], [2.408984703482627, 48.84721606084253], [2.408783712686048, 48.84723430586219], [2.408707707604901, 48.84724105942518], [2.408687035356161, 48.847239774605455], [2.408664536854978, 48.847246919391274], [2.408543107348148, 48.847257709462745], [2.408355655599375, 48.847272732658574], [2.408158220744315, 48.84729027562993], [2.408047916297665, 48.84729911557359], [2.408031929812628, 48.847300992569174], [2.408032501313664, 48.84735228913434], [2.408024423632442, 48.84748685901713], [2.40801655879992, 48.84762128154316], [2.408008479673299, 48.84775585138568], [2.408000614759054, 48.84789027387818], [2.407992536912106, 48.84802484369383], [2.40798467192646, 48.848159265253535], [2.4079765926237773, 48.84829383592816], [2.407968727556408, 48.848428257454394], [2.407960649543726, 48.84856282720286], [2.407952784384319, 48.84869724959486], [2.407944706288771, 48.84883181930974], [2.407936841057958, 48.84896624076888], [2.407935807918658, 48.84898340968887], [2.407938496025658, 48.848985137156646], [2.408057477936897, 48.84898732223322], [2.4082893007040322, 48.84899222915152], [2.40848575647437, 48.8489958365825], [2.40870235869236, 48.84899981306476], [2.408898814519878, 48.8490034198175], [2.409115416800799, 48.849007395551936], [2.409311872685486, 48.84901100162642], [2.4095284750295303, 48.84901497661306], [2.409724930971376, 48.849018582009286], [2.409747056106153, 48.849020513251105], [2.409755331777999, 48.84901198505071], [2.40977362628861, 48.84896133834882], [2.409793420062385, 48.84890837870915], [2.4098076000846422, 48.8489015614193], [2.409998462756398, 48.848910364013975], [2.410183736365912, 48.84891897866646], [2.410374599154816, 48.8489277815603], [2.4105598728986, 48.84893639473088], [2.41074514669346, 48.848945008513816], [2.4109360096724233, 48.84895381051189], [2.410937492294375, 48.84895393292855], [2.411156324879336, 48.84898013264392], [2.411381061181591, 48.84900667847363], [2.411388113708031, 48.84900627878304], [2.411557611645155, 48.84896565151263], [2.4117426502150723, 48.848921486815534], [2.411912147600009, 48.8488808590398], [2.412066564552273, 48.848844002548454], [2.412092244394048, 48.84884091715108]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 39, "zemmour_eric": 54.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-56", "circ_bv": "08", "num_bureau": 56, "roussel_fabien": 20.0, "nb_emargement": 965.0, "nb_procuration": 21.0, "nb_vote_blanc": 9.0, "jadot_yannick": 44.0, "le_pen_marine": 79.0, "nb_exprime": 954.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1367.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 965, "quartier_bv": "80", "geo_point_2d": [48.84781679982843, 2.4116575037833146], "melenchon_jean_luc": 409.0, "poutou_philippe": 5.0, "macron_emmanuel": 252.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.363902290395071, 48.82885133873582], [2.363895606857625, 48.8288548458156], [2.363801745637868, 48.82896713144656], [2.363707977793779, 48.82907731385981], [2.363614114407324, 48.82918959931403], [2.363520347128697, 48.82929978156553], [2.363426482926594, 48.82941206774953], [2.363332714862156, 48.82952224893279], [2.363238849855374, 48.82963453494724], [2.363145080983355, 48.82974471686081], [2.36305121518287, 48.82985700180639], [2.362957445514042, 48.82996718355102], [2.362952907292732, 48.82997035574472], [2.362813000688584, 48.83002940606222], [2.362670158709477, 48.830089747359146], [2.362530251464549, 48.8301487973396], [2.362387410182214, 48.83020913919898], [2.362247502296708, 48.830268188842375], [2.362104660370973, 48.830328529458306], [2.362102826331224, 48.83032945772061], [2.361976223332533, 48.83040349318151], [2.361856547326528, 48.830475498710584], [2.361729943623419, 48.83054953390116], [2.361610266941991, 48.830621539174444], [2.361608693434563, 48.83062266038574], [2.361520467173345, 48.83070386222341], [2.361395480551747, 48.83080983245854], [2.361307253652673, 48.83089103322609], [2.361227030550519, 48.830959050521926], [2.361226093109646, 48.830965181923474], [2.361253845870762, 48.830981459464454], [2.361451752295342, 48.831025389266955], [2.3616451841680632, 48.831068305548186], [2.361843089900918, 48.831112233793164], [2.362036523780232, 48.83115514944539], [2.36223443017253, 48.83119907703945], [2.362427864696134, 48.831241992055425], [2.362621298176112, 48.83128490674971], [2.36281920691596, 48.83132883337827], [2.363012641040216, 48.83137174743631], [2.363210550428508, 48.8314156743132], [2.363403985197243, 48.831458587734986], [2.363601895255946, 48.83150251306161], [2.36361534425858, 48.83150067525954], [2.363720814618954, 48.831434343937445], [2.3638727130804043, 48.83134416443399], [2.363978182796756, 48.831277832875614], [2.364078267342041, 48.83121841393058], [2.364080541767979, 48.831209525852934], [2.36405854694001, 48.83119219135434], [2.36407537269895, 48.83106619085891], [2.36409279556487, 48.83096103104301], [2.364093589594423, 48.830958699599], [2.364158640646703, 48.830842620106814], [2.364224479246959, 48.830727173415525], [2.36428952971889, 48.830611093828175], [2.364355369099071, 48.83049564704822], [2.364420418990658, 48.83037956736571], [2.364486256426407, 48.830264120482596], [2.364551307099832, 48.83014804071214], [2.364617143953337, 48.830032593733144], [2.364682192684159, 48.8299165138603], [2.364748030317594, 48.82980106679266], [2.364813078468195, 48.82968498682464], [2.364878914157237, 48.82956953965384], [2.364943961727526, 48.82945345959067], [2.365009798196502, 48.82933801233127], [2.365010662302613, 48.82933450756978], [2.365007461242886, 48.82922165266402], [2.365000246486705, 48.82909408789001], [2.36499093619217, 48.82908589014443], [2.364810206750776, 48.82904616566186], [2.364637357867828, 48.829008572011524], [2.364456628974856, 48.82896884609259], [2.364283780603229, 48.82893125192862], [2.364110932491756, 48.828893656614284], [2.363930204387325, 48.82885393079513], [2.363902290395071, 48.82885133873582]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 54, "zemmour_eric": 65.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-11", "circ_bv": "09", "num_bureau": 11, "roussel_fabien": 23.0, "nb_emargement": 1123.0, "nb_procuration": 19.0, "nb_vote_blanc": 16.0, "jadot_yannick": 55.0, "le_pen_marine": 97.0, "nb_exprime": 1107.0, "nb_vote_nul": 1.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1512.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1124, "quartier_bv": "50", "geo_point_2d": [48.83029544185357, 2.363413587117874], "melenchon_jean_luc": 450.0, "poutou_philippe": 6.0, "macron_emmanuel": 300.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.266766355811822, 48.84905702843451], [2.266818912722564, 48.849056554580116], [2.26698118940844, 48.8491163692316], [2.267164939580904, 48.84917994412852], [2.267196513021371, 48.849179952247724], [2.267212843993398, 48.849158163511305], [2.267339024984324, 48.849102920183846], [2.267459992052096, 48.84905027904112], [2.267465961519593, 48.84904141186978], [2.267440087078918, 48.84892973568894], [2.267411768285228, 48.848812028664945], [2.267385894061935, 48.8487003533487], [2.26735757552794, 48.848582645388355], [2.267331701534669, 48.848470970037354], [2.26730338187245, 48.848353262930864], [2.267320696080715, 48.8483432268101], [2.267521867590129, 48.84838238488444], [2.267707051809883, 48.84841941219684], [2.2679082239036, 48.848458569618856], [2.268093408668687, 48.84849559633076], [2.268294582709338, 48.848534753108815], [2.268479768019652, 48.848571779220165], [2.268488080551721, 48.8485716924418], [2.268694511569222, 48.84852566395878], [2.268891172401863, 48.848482188974025], [2.26909760270869, 48.84843615979187], [2.269294262867287, 48.84839268414106], [2.269490922697753, 48.84834920816532], [2.269697351935579, 48.84830317884211], [2.269894011091894, 48.848259702200345], [2.270100439631734, 48.84821367127866], [2.270112068197441, 48.84820439690787], [2.270107754019433, 48.84818774490633], [2.2699711274472, 48.848063225076544], [2.269832189654302, 48.847936907523916], [2.269695565773342, 48.84781238646039], [2.269556627954603, 48.847686068550985], [2.269562111286256, 48.84767257015879], [2.269742668901022, 48.84761948284804], [2.269919092209857, 48.84756820654235], [2.270099649111983, 48.84751511778861], [2.270276071716164, 48.84746384095169], [2.270283886125665, 48.84745367270816], [2.27023627929944, 48.84731126259499], [2.270193134107411, 48.84717674102601], [2.270149987788014, 48.84704221851763], [2.27010238169095, 48.84689980919791], [2.270086994232211, 48.846877040474276], [2.270073921230239, 48.84687592464382], [2.26997818113375, 48.84691563303136], [2.269795670419635, 48.84699169481932], [2.269642101720406, 48.84705538774194], [2.269459588676349, 48.847131448100065], [2.269306019154553, 48.847195140583295], [2.269152447894675, 48.84725883285742], [2.268969934773471, 48.847334893362316], [2.268951278538669, 48.847332234157065], [2.268844418207424, 48.8472251050845], [2.268739478275148, 48.847118855530795], [2.268632618829542, 48.847011725349255], [2.268527681121236, 48.84690547559774], [2.268420822535815, 48.84679834610579], [2.268315884326479, 48.84669209613985], [2.268209026626684, 48.846584965538916], [2.268104089278808, 48.84647871536686], [2.267997232451806, 48.846371584556266], [2.26789229732796, 48.846265334186405], [2.267785441361204, 48.846158204065425], [2.267680505736215, 48.846051953481165], [2.267573650654969, 48.84594482225122], [2.267468715891412, 48.845838571460845], [2.26736186167039, 48.8457314409205], [2.267256929130817, 48.84562518993236], [2.26715007579529, 48.84551805828309], [2.267045142754565, 48.845411807080524], [2.266938290279238, 48.84530467612085], [2.266833358099916, 48.84519842471221], [2.266726506510075, 48.84509129264362], [2.266621576554695, 48.84498504103719], [2.266514725825024, 48.84487790965823], [2.26640979536848, 48.84477165783741], [2.266302945524388, 48.84466452534952], [2.266198015929221, 48.84455827332259], [2.266093086761896, 48.84445202119351], [2.265986239573802, 48.84434488929971], [2.265968905756256, 48.84432524144052], [2.265942368962012, 48.84432541407893], [2.265801919930432, 48.844403811853205], [2.265666169428362, 48.84448003844263], [2.265525719564515, 48.84455843588176], [2.265389966905863, 48.844634661239546], [2.265249516209947, 48.84471305834361], [2.26511376409443, 48.84478928428505], [2.264973312566341, 48.84486768105393], [2.264837559656677, 48.84494390577213], [2.2648185187986822, 48.84494975068088], [2.264815039584952, 48.84496784169819], [2.264821267887041, 48.845068806290236], [2.264827447232918, 48.84516368004412], [2.264833627963948, 48.845258553798004], [2.264839854986918, 48.84535951745507], [2.264843277941499, 48.8453651217719], [2.264962769155825, 48.84545397885548], [2.265082444566366, 48.84554304109838], [2.265201936596399, 48.84563189792893], [2.265321612836996, 48.84572095901907], [2.265441105670063, 48.84580981649586], [2.265560782727841, 48.845898877332516], [2.2656802750268312, 48.84598773364859], [2.2657999542644642, 48.84607679424019], [2.265919447366403, 48.84616565120245], [2.266039126058856, 48.846254711532225], [2.266042211402727, 48.84625866069924], [2.266087385510467, 48.846388119460215], [2.266131497234349, 48.846513010076954], [2.2661756105322413, 48.8466379006718], [2.26622078530009, 48.846767359338365], [2.266264897664659, 48.84689224986339], [2.266310072874787, 48.8470217084667], [2.266354187031227, 48.847146598938636], [2.266399362670982, 48.847276058377986], [2.266443475894098, 48.84740094878013], [2.266488651988805, 48.84753040725692], [2.266475360501071, 48.84754141855875], [2.266373567141501, 48.847541356511016], [2.266372307189156, 48.847541317307154], [2.266194764834012, 48.84753081660997], [2.266051734405249, 48.847521964561906], [2.265874190805352, 48.84751146427976], [2.2657311604841572, 48.84750261184831], [2.2657262095106923, 48.84750292052371], [2.265544314357943, 48.84753713026402], [2.265336694306384, 48.847578260682035], [2.265290844327671, 48.84758688375854], [2.265268890106423, 48.84759632899355], [2.26527160310485, 48.8476153807595], [2.265255170956527, 48.84775073531524], [2.265239052953946, 48.84788806229502], [2.265222620635099, 48.84802341681319], [2.265206502462408, 48.84816074375494], [2.265190069960356, 48.84829609913478], [2.265173951617548, 48.848433426038525], [2.265180715203918, 48.84844190543566], [2.2653511425762902, 48.848506950066415], [2.265513415853443, 48.84856676763744], [2.265683842686772, 48.84863181177864], [2.265846116747184, 48.84869162799244], [2.266008391167553, 48.84875144488225], [2.266178820585283, 48.84881648831597], [2.266341095788903, 48.8488763038485], [2.266511524654922, 48.84894134769193], [2.266577981597091, 48.84896584371418], [2.26659660401541, 48.84900812104062], [2.266655003104463, 48.84900511987795], [2.26667271955647, 48.84901165084017], [2.266750823611015, 48.84904043977498], [2.266766355811822, 48.84905702843451]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 172, "zemmour_eric": 202.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-33", "circ_bv": "14", "num_bureau": 33, "roussel_fabien": 14.0, "nb_emargement": 1311.0, "nb_procuration": 100.0, "nb_vote_blanc": 6.0, "jadot_yannick": 75.0, "le_pen_marine": 49.0, "nb_exprime": 1299.0, "nb_vote_nul": 6.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1555.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1311, "quartier_bv": "61", "geo_point_2d": [48.847066125981314, 2.267158262016439], "melenchon_jean_luc": 138.0, "poutou_philippe": 1.0, "macron_emmanuel": 614.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.359819946980962, 48.887758405822275], [2.359828433750029, 48.88776637784824], [2.359833570806074, 48.88790138950249], [2.359835276419796, 48.88803464799633], [2.3598404121564602, 48.88816965961003], [2.359842117807533, 48.88830291717197], [2.35984725357734, 48.88843792965166], [2.359848959254708, 48.888571187180936], [2.359854095079768, 48.88870619872809], [2.359855800772379, 48.888839457123964], [2.359860936641637, 48.88897446863783], [2.359862642360441, 48.88910772700103], [2.359867778273901, 48.889242738481634], [2.359869484030158, 48.889375995912935], [2.359874621340488, 48.88951100826675], [2.359876327123047, 48.88964426566541], [2.359881463124911, 48.88977927707942], [2.359883168922712, 48.88991253534466], [2.359888304968676, 48.89004754672535], [2.359890010792776, 48.890180804957936], [2.35989632354429, 48.890197804433924], [2.359988847519221, 48.89019888086168], [2.360181984796037, 48.890181232263785], [2.360374673335784, 48.890163132195596], [2.360567811712965, 48.89014548298213], [2.360760499975358, 48.89012738319174], [2.360953638100193, 48.89010973245611], [2.361146326096066, 48.89009163204428], [2.361339463946469, 48.890073981585054], [2.361532151687048, 48.89005587965251], [2.361725287910308, 48.89003822856311], [2.361917976737061, 48.890020126915694], [2.362111112707931, 48.89000247430417], [2.362303801268239, 48.88998437203531], [2.362496936975681, 48.88996671880092], [2.362689623905901, 48.889948615903336], [2.362882760702642, 48.889930962952626], [2.363075447377302, 48.889912858534295], [2.363076513383155, 48.889912786862766], [2.363099555942766, 48.88991235994054], [2.363103652473556, 48.88991093741689], [2.363309482518182, 48.88990237779732], [2.36351471781493, 48.889893376692584], [2.363720547733548, 48.88988481546704], [2.363925781526376, 48.88987581365039], [2.364131612660629, 48.889867252624654], [2.364336846324143, 48.88985824920401], [2.364542677321375, 48.889849687471525], [2.364747910844573, 48.88984068334625], [2.364953741704773, 48.88983212090707], [2.365158975076681, 48.88982311697637], [2.365364805810802, 48.88981455293119], [2.365570039042381, 48.88980554829581], [2.365775869639541, 48.88979698354392], [2.365981102730677, 48.889787978203856], [2.36618693317982, 48.88977941364449], [2.366392166141551, 48.889770406700514], [2.366597996453617, 48.88976184143444], [2.366803229264043, 48.88975283468502], [2.367009058086225, 48.88974426780571], [2.36721429212011, 48.88973526035887], [2.367420120805086, 48.889726692772854], [2.367625354698586, 48.8897176846213], [2.367831183235529, 48.88970911722786], [2.36803641699955, 48.88970010747239], [2.368093080223761, 48.889682780685604], [2.36808940413386, 48.88966328195492], [2.368063185953903, 48.88961220235106], [2.367999583510118, 48.8894860711873], [2.367939629508185, 48.88936926452758], [2.367876027660436, 48.88924313327025], [2.367816074215388, 48.88912632652282], [2.367752472963665, 48.889000195171974], [2.367692520086414, 48.88888338743756], [2.367628919419789, 48.88875725689243], [2.36756896709941, 48.888640449070294], [2.367568706819334, 48.88863987122915], [2.367533612936628, 48.88854780826055], [2.367484083716694, 48.888421955168376], [2.367448988755849, 48.88832989304876], [2.367416479284974, 48.88824728657243], [2.367419587654645, 48.88822705021772], [2.367408615579368, 48.888215204811566], [2.367391596259131, 48.88817195813339], [2.367338377408281, 48.8880375760355], [2.367288849145533, 48.88791172280408], [2.3672356308258102, 48.887777340628666], [2.3671861030590162, 48.887651487324945], [2.367132886634086, 48.88751710507922], [2.367083357999358, 48.887391251696], [2.367033830956778, 48.88726539918433], [2.366980615319381, 48.88713101682372], [2.366931087419901, 48.88700516333326], [2.366877872313597, 48.88687078089514], [2.366828346273704, 48.88674492733956], [2.366775130334831, 48.88661054481673], [2.36677354139976, 48.8866080947451], [2.366679574350001, 48.886504402857554], [2.366578616722839, 48.8863964983341], [2.366484650442952, 48.88629280627362], [2.3663836922553543, 48.886184902457096], [2.36628972810907, 48.88608121023088], [2.366188770735608, 48.88597330622925], [2.366094806006591, 48.88586961292359], [2.36599385081089, 48.88576170874407], [2.365899886840875, 48.88565801616478], [2.365829258836091, 48.885582526769426], [2.365805974736978, 48.88556084478996], [2.365750528100324, 48.88558036504527], [2.365564927966204, 48.885627669257836], [2.365381013793849, 48.88567434989228], [2.365195412978125, 48.88572165442725], [2.365011496789933, 48.8857683335836], [2.364825895303567, 48.885815637541754], [2.364641979815838, 48.88586231613374], [2.364458062634762, 48.885908994434025], [2.364272460144317, 48.885956297528246], [2.36408854365263, 48.88600297616346], [2.363902940502638, 48.886050277781585], [2.3637190233477963, 48.88609695584517], [2.363533418152554, 48.886144257778454], [2.363349500345549, 48.886190934371214], [2.36316389584332, 48.88623823573493], [2.362979977373174, 48.88628491175606], [2.362794370836685, 48.88633221253567], [2.362610451703402, 48.88637888798524], [2.362424845859941, 48.88642618819521], [2.362240926063525, 48.8864728630732], [2.362055319549353, 48.88652016270631], [2.361871397726263, 48.886566837005404], [2.361685790541485, 48.88661413606171], [2.36150186940789, 48.88666081069571], [2.3613162615635392, 48.88670810827586], [2.361300438199658, 48.88670511814855], [2.361172753825891, 48.8865929151693], [2.361059627623704, 48.88649027042258], [2.3610463139708, 48.88648669200423], [2.360934984320877, 48.88649915965825], [2.360836469985743, 48.88651935877727], [2.360824601563768, 48.88651813888743], [2.360650863134011, 48.886437949191446], [2.360479299204123, 48.88636062890776], [2.360305560467987, 48.88628043869195], [2.360133998944446, 48.8862031170104], [2.359960261265576, 48.88612292628213], [2.3597887007626372, 48.88604560499396], [2.359780165337812, 48.8860440538822], [2.359656322894972, 48.88604909964868], [2.359552717154779, 48.88605585703361], [2.359488672613955, 48.88606458954776], [2.359486540213319, 48.88607896736441], [2.359496446651157, 48.886126931976406], [2.3595244118121412, 48.88626432777156], [2.359551152903959, 48.88639381911188], [2.3595791183527153, 48.88653121486088], [2.359605861070219, 48.88666070706407], [2.359633826817611, 48.8867981018677], [2.359660569808224, 48.88692759402721], [2.359688535832343, 48.88706498968393], [2.359715277743465, 48.887194480893186], [2.359743245418833, 48.88733187651104], [2.359769987592109, 48.8874613685759], [2.359796731273017, 48.88759085972757], [2.359824698012522, 48.887728255269515], [2.359824814266887, 48.887729226262884], [2.359819946980962, 48.887758405822275]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 40, "zemmour_eric": 47.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "18-60", "circ_bv": "17", "num_bureau": 60, "roussel_fabien": 24.0, "nb_emargement": 1309.0, "nb_procuration": 86.0, "nb_vote_blanc": 16.0, "jadot_yannick": 134.0, "le_pen_marine": 60.0, "nb_exprime": 1287.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1691.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1310, "quartier_bv": "72", "geo_point_2d": [48.888077255778306, 2.3635823297519263], "melenchon_jean_luc": 631.0, "poutou_philippe": 14.0, "macron_emmanuel": 271.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.259705798921595, 48.84834777055074], [2.259682634497933, 48.84835089281775], [2.259484456170797, 48.8483884353808], [2.259291509304189, 48.848425195177974], [2.259098563527913, 48.84846195467123], [2.258900384370554, 48.84849949536382], [2.258707438043298, 48.848536254223816], [2.258509258321535, 48.848573794266045], [2.258316310080767, 48.848610552484445], [2.258118131157345, 48.84864809188473], [2.257925182365611, 48.84868484946989], [2.257727001502451, 48.84872238911064], [2.257534053522292, 48.848759146071046], [2.257335872107758, 48.848796684162146], [2.2571429235766463, 48.848833440489365], [2.256944741597737, 48.84887097793009], [2.256751792515782, 48.84890773362407], [2.256553609959775, 48.8489452713137], [2.2563606589642298, 48.84898202636603], [2.256162477219439, 48.84901956251443], [2.255969525672961, 48.84905631693352], [2.255771342001268, 48.8490938524231], [2.255781347295044, 48.84911150627657], [2.258339376453303, 48.85073816684975], [2.260097129672542, 48.85345291939474], [2.260126495400239, 48.8534624129842], [2.260307676573693, 48.853416659279155], [2.260492333101078, 48.853370686649136], [2.260673513634368, 48.853324932386386], [2.260858169501179, 48.85327896008732], [2.261039349394303, 48.85323320526686], [2.2612240046260492, 48.85318723150012], [2.261405183879, 48.853141476121934], [2.261589838462919, 48.853095501786875], [2.26177101843845, 48.85304974585939], [2.261955670999042, 48.85300377184685], [2.262136850347126, 48.85295801446236], [2.262321503622641, 48.8529120398899], [2.262502680955051, 48.85286628283859], [2.2626873335954603, 48.85282030679847], [2.262689235932276, 48.85281993539225], [2.262856923552493, 48.85279688723959], [2.263014465333198, 48.852774175677595], [2.263182152662203, 48.852751127068224], [2.26333969553837, 48.852728414186195], [2.263497238264385, 48.85270570199556], [2.263664925159599, 48.85268265270819], [2.263671834370455, 48.852680173412864], [2.263814420439722, 48.85258505636263], [2.263958935380649, 48.85249131713593], [2.264101520409087, 48.85239619972741], [2.26424603294705, 48.85230246012971], [2.264273805347118, 48.85229305448228], [2.26426770139065, 48.852269491400406], [2.26424083543555, 48.85223246129009], [2.264130631718302, 48.852085279946614], [2.264036260187579, 48.851955201931595], [2.26401426659787, 48.851942683308266], [2.263999562157467, 48.85194342566874], [2.263911078943274, 48.85199778210974], [2.263747815631553, 48.85210125487938], [2.263614415613457, 48.852183204177805], [2.263451152494445, 48.85228667653372], [2.26331775017228, 48.85236862547938], [2.263313730752778, 48.85237039046533], [2.2631644130453, 48.85241309645173], [2.262962825251221, 48.85247340729642], [2.262813508323607, 48.852516112849415], [2.262611919712242, 48.852576423996624], [2.262462600851938, 48.852619128200054], [2.262443603881869, 48.85261164171689], [2.2624250639527093, 48.85246826963047], [2.262409310898046, 48.852333770735164], [2.262390771162103, 48.85219039860757], [2.262375016904496, 48.85205590056504], [2.262360179555094, 48.85192922542766], [2.2623416414609823, 48.851785853248714], [2.262340724652138, 48.85177802942476], [2.262342713119004, 48.85177253397856], [2.262457295406531, 48.851650307163204], [2.262572680210771, 48.85152757343592], [2.262574459568389, 48.85152105861573], [2.262538018188653, 48.851401541434875], [2.2625028718420648, 48.85128441732595], [2.262467725666196, 48.85116729229508], [2.262431283403218, 48.85104777593462], [2.262396137547857, 48.85093065085779], [2.262359696977355, 48.850811134458525], [2.262324551442393, 48.850694009335754], [2.262288109838864, 48.85057449288084], [2.262252964624502, 48.85045736771214], [2.262216524713225, 48.85033785121843], [2.262214609055521, 48.85033474199187], [2.262108149051739, 48.850225863945006], [2.26200246564564, 48.850117992473365], [2.261896781301761, 48.85001012178872], [2.261790323987872, 48.84990124343576], [2.2616846405354423, 48.849793371643514], [2.261578184107575, 48.84968449308054], [2.261472502883664, 48.84957662198761], [2.261366045979245, 48.849467743206276], [2.261260365646763, 48.84935987100569], [2.261153909628352, 48.84925099201441], [2.261048230161795, 48.84914312050471], [2.260941776392032, 48.84903424131193], [2.260939602867418, 48.8490291446666], [2.260943296849061, 48.84892943583906], [2.260950636250917, 48.84882558815176], [2.260954328834377, 48.84872587929723], [2.260961668172827, 48.848622032489565], [2.260952184292444, 48.848613042295185], [2.260746421285379, 48.84856986688809], [2.26054325376378, 48.84852800045459], [2.260337490068658, 48.848484824332544], [2.260134323207033, 48.84844295720146], [2.259928561561907, 48.84839977948195], [2.259725393997836, 48.848357911644825], [2.259705798921595, 48.84834777055074]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 192, "zemmour_eric": 187.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "16-24", "circ_bv": "14", "num_bureau": 24, "roussel_fabien": 3.0, "nb_emargement": 1141.0, "nb_procuration": 63.0, "nb_vote_blanc": 5.0, "jadot_yannick": 47.0, "le_pen_marine": 90.0, "nb_exprime": 1141.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1505.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "61", "geo_point_2d": [48.85070435886961, 2.260053745493981], "melenchon_jean_luc": 85.0, "poutou_philippe": 2.0, "macron_emmanuel": 506.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.354054930285193, 48.872254593994036], [2.354073069510852, 48.87226405039306], [2.354087731974589, 48.87228814904052], [2.35416749155799, 48.87241712451107], [2.354236747956877, 48.87253095235654], [2.354306006021738, 48.87264478015758], [2.35438576532842, 48.87277375543367], [2.35440909166174, 48.872780628075915], [2.35443024942174, 48.87275830910303], [2.35460329877159, 48.87268996267587], [2.354772641470526, 48.8726239765641], [2.354945689913786, 48.872555630532936], [2.355115030378966, 48.87248964392144], [2.355288079300988, 48.87242129649504], [2.355457418895691, 48.872355309391125], [2.355626759424619, 48.87228932205109], [2.355799805635366, 48.87222097476447], [2.355867051103591, 48.872204098134695], [2.355862377195785, 48.87218990750776], [2.355815270385625, 48.872107510250025], [2.355742659028104, 48.87198141894215], [2.355673666201488, 48.87186073588823], [2.355601054167491, 48.87173464445893], [2.355532061995914, 48.87161396129642], [2.3554594506486, 48.87148786975308], [2.355390459131953, 48.87136718648197], [2.355317849834659, 48.871241094831916], [2.3552488589840612, 48.87112041055295], [2.355176248999252, 48.87099431968074], [2.355107258803467, 48.870873635293236], [2.355034649505413, 48.87074754430698], [2.354965659964531, 48.87062685981088], [2.354893052716448, 48.87050076871795], [2.35482406383046, 48.8703800841133], [2.354751455905883, 48.870253992898924], [2.354682467674884, 48.87013330818572], [2.354609860437032, 48.87000721685731], [2.354540872860809, 48.86988653203552], [2.354468266309675, 48.869760440593076], [2.3543992793883213, 48.86963975566274], [2.354326674887095, 48.8695136641136], [2.3542576886205993, 48.86939297907476], [2.354195810076205, 48.86933920190737], [2.354163473403087, 48.86934382361321], [2.353978388079322, 48.869385294350074], [2.353794945066266, 48.869425126974754], [2.353609859171392, 48.86946659623941], [2.353426414227126, 48.86950642828901], [2.353241329102032, 48.86954789788741], [2.353057883600721, 48.86958772846997], [2.352872796530273, 48.86962919748811], [2.352689351812893, 48.86966902840956], [2.35264955594884, 48.869648340596044], [2.352646525492274, 48.86967608594862], [2.352599380343051, 48.869686321764846], [2.352463080447935, 48.86971591562233], [2.352270392537153, 48.86975790377716], [2.3520869469059003, 48.86979773377073], [2.351894259763683, 48.86983972042505], [2.35171081219349, 48.86987954983186], [2.351518124434261, 48.8699215367768], [2.351334676299538, 48.86996136470494], [2.351141987934493, 48.87000335104126], [2.350958540576063, 48.87004317929663], [2.350765850253198, 48.87008516411771], [2.350582402319057, 48.87012499179364], [2.350389711379074, 48.87016697690536], [2.350206262869221, 48.87020680400189], [2.350013571334757, 48.87024878760569], [2.349830122249204, 48.87028861412277], [2.349637430097722, 48.87033059801726], [2.3494539804477013, 48.87037042305563], [2.34926128769043, 48.87041240634147], [2.349077837453487, 48.870452231699716], [2.3488851441016703, 48.870494213477635], [2.348701693289041, 48.87053403825645], [2.348509000683434, 48.870576020332415], [2.348325547931895, 48.870615844524366], [2.348132854731769, 48.87065782509245], [2.347949401404555, 48.870697648704954], [2.34790656477507, 48.87069854851033], [2.347880171149339, 48.87071053681509], [2.347865697833232, 48.87071711127966], [2.347873597791883, 48.87078476400989], [2.347873961753634, 48.870832136031225], [2.347873974606949, 48.87089045650115], [2.347879690874669, 48.8709037475127], [2.347898895315569, 48.87091532681784], [2.347899396559387, 48.87098048402784], [2.347899253639049, 48.87110907445713], [2.347900118862182, 48.871221604559516], [2.347899977294853, 48.87135019586744], [2.347900842534812, 48.87146272504597], [2.34790658774028, 48.87148383776209], [2.347963565397183, 48.871478362702916], [2.34811446206567, 48.87141244191515], [2.348295281691823, 48.87133399957262], [2.348446177522406, 48.87126807835813], [2.348626996147886, 48.87118963550427], [2.348777891140466, 48.87112371386295], [2.348958708754034, 48.871045271397044], [2.349109602908615, 48.870979349328955], [2.349290418169518, 48.87090090544506], [2.349441312849236, 48.87083498295761], [2.349622127109576, 48.870756538562354], [2.349773019576835, 48.87069061654], [2.349787741874643, 48.870690505855485], [2.349943968943173, 48.87075498360996], [2.350099937090937, 48.87081981139075], [2.350256164944937, 48.87088428783099], [2.350412133868304, 48.870949115197384], [2.350568362496551, 48.871013591222564], [2.350724332195626, 48.87107841817458], [2.350731201063578, 48.871079799046754], [2.35091372497872, 48.87108331251623], [2.351095028031493, 48.871086883841066], [2.351276332461166, 48.87109045579796], [2.351458855087274, 48.87109396842876], [2.351640159577645, 48.871097538935295], [2.351822682253104, 48.87110105101128], [2.352003986781977, 48.87110462186598], [2.352186509506679, 48.87110813338718], [2.352191061423261, 48.87110770925229], [2.352410959595342, 48.87106130611781], [2.352637703040053, 48.87101365624413], [2.352857600417299, 48.870967252285205], [2.353084344396089, 48.87091960246799], [2.353101414164047, 48.87092532548711], [2.353107827787345, 48.87093800845936], [2.353115329613286, 48.87095011993621], [2.353130889016931, 48.87095550023404], [2.353194199628636, 48.87094627698959], [2.353257527350804, 48.87093743062739], [2.353273004112855, 48.870942879709375], [2.353342256596958, 48.8710567082243], [2.353419159512032, 48.87118432800957], [2.353488413988615, 48.871298157321704], [2.353565317618246, 48.8714257769852], [2.353634572746401, 48.87153960528861], [2.353711477079441, 48.87166722572956], [2.353780732848016, 48.87178105392354], [2.353857637906791, 48.87190867334341], [2.353926894304639, 48.87202250232722], [2.354003800078001, 48.872150121625275], [2.354058393314032, 48.87223985094321], [2.354054930285193, 48.872254593994036]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 38, "zemmour_eric": 61.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "10-39", "circ_bv": "05", "num_bureau": 39, "roussel_fabien": 23.0, "nb_emargement": 1330.0, "nb_procuration": 98.0, "nb_vote_blanc": 11.0, "jadot_yannick": 134.0, "le_pen_marine": 51.0, "nb_exprime": 1314.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1662.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1330, "quartier_bv": "38", "geo_point_2d": [48.87081587553064, 2.352734891225214], "melenchon_jean_luc": 519.0, "poutou_philippe": 7.0, "macron_emmanuel": 415.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.279021578393965, 48.83247862046566], [2.279008609616578, 48.83246647443605], [2.278887140909827, 48.83236727554564], [2.278756385077129, 48.83226084437877], [2.278634915954822, 48.83216164610507], [2.278504162515159, 48.832055214651184], [2.278382694351941, 48.83195601610309], [2.278251941942881, 48.83184958435392], [2.278130474738747, 48.83175038553152], [2.277999723360384, 48.83164395348705], [2.277878257127779, 48.831544753490945], [2.277747506767746, 48.831438322050595], [2.277626041494209, 48.83133912178016], [2.277495292164747, 48.83123269004449], [2.27737382785027, 48.83113348949971], [2.277243078189288, 48.83102705746057], [2.277121616196044, 48.83092785664968], [2.2769908675658233, 48.83082142431532], [2.276869406531615, 48.830722223230104], [2.276738658944418, 48.83061578970118], [2.276617198856761, 48.83051658924091], [2.276488013525762, 48.830411425791866], [2.2763665530415063, 48.83031222415146], [2.276237368722546, 48.83020706041251], [2.276093434752561, 48.830098345530494], [2.275964251514539, 48.82999318147648], [2.2758203173424523, 48.82988446623685], [2.2757222429512662, 48.829804626142355], [2.275578309804439, 48.82969591059315], [2.2754802361511, 48.82961606938751], [2.275464623400181, 48.829606670712316], [2.275345078124608, 48.82953469929677], [2.275201146509437, 48.82942598326751], [2.275095812334124, 48.82936256807873], [2.274943338491966, 48.829270747871966], [2.274838004931291, 48.82920733334669], [2.274685530635182, 48.82911551279027], [2.274550138730195, 48.829034000027555], [2.2743976654480402, 48.82894217908994], [2.274262274443394, 48.82886066598877], [2.274126883874545, 48.82877915182913], [2.273974412083196, 48.82868733033104], [2.273839022402161, 48.82860581673222], [2.273686552986765, 48.82851399486125], [2.273551164205954, 48.828432480923944], [2.273398694442372, 48.82834065866351], [2.273298891057741, 48.828280568043795], [2.273146422182859, 48.82818874544932], [2.2730862454344383, 48.82815251414359], [2.2730839368183178, 48.82815112405691], [2.273060772290322, 48.828137177741745], [2.272980963688642, 48.828089125188484], [2.272828495933595, 48.82799730217301], [2.272735434581069, 48.82794127049038], [2.272734428168236, 48.82794125267818], [2.27256319989116, 48.82793816428689], [2.272361283492797, 48.827935219010826], [2.2721900552703023, 48.82793212918596], [2.271988140265939, 48.827929184187525], [2.271796013130787, 48.82792571654702], [2.271594098186088, 48.82792276998396], [2.271401972450319, 48.82791930261805], [2.271200056190634, 48.82791635538141], [2.27100793051729, 48.82791288648314], [2.270806015654255, 48.827909939488855], [2.270613888668676, 48.82790646994923], [2.270411973865356, 48.827903521390354], [2.270219846929655, 48.82790005121771], [2.270017932160891, 48.82789710289284], [2.269825806637177, 48.82789363209546], [2.269623890566162, 48.82789068219769], [2.269431765079641, 48.827887211666614], [2.269229850417791, 48.827884261111855], [2.269037723631778, 48.827880789040115], [2.268835809004595, 48.82787783871942], [2.2686436822684968, 48.827874366014605], [2.26844176770101, 48.82787141412932], [2.268249642364213, 48.82786794169913], [2.268047726481925, 48.82786498914021], [2.267855601207784, 48.82786151517771], [2.267847029827013, 48.82786668901623], [2.267756683679144, 48.827918968313405], [2.267668116020368, 48.827972436622986], [2.267665399630975, 48.8279740973376], [2.267653307088522, 48.82811143006097], [2.267641342412057, 48.82824634690908], [2.267629249742982, 48.828383679596655], [2.267617284941881, 48.82851859640966], [2.26760519213365, 48.82865592996076], [2.26759322722034, 48.828790845839265], [2.267581134285583, 48.82892817935464], [2.267569169247635, 48.82906309519795], [2.267557440845714, 48.829196289258206], [2.267545475672177, 48.82933120596621], [2.267533747162042, 48.829464399093], [2.267521781865754, 48.82959931576636], [2.267510053222131, 48.82973250975824], [2.267498087815523, 48.82986742549769], [2.267486359051044, 48.8300006194554], [2.267474393509045, 48.830135536059494], [2.267462664623709, 48.830268729983], [2.267450698971389, 48.83040364565318], [2.267438969965194, 48.83053683954249], [2.267427004177476, 48.830671756077344], [2.267415275063058, 48.830804949033144], [2.267403309152378, 48.8309398655333], [2.267391579904459, 48.831073059354296], [2.267379613883655, 48.83120797492049], [2.267367884514872, 48.83134116870726], [2.267355918358462, 48.831476085138135], [2.267354650726137, 48.83149048094152], [2.267354346065984, 48.831493935392004], [2.267361723929405, 48.83150878617798], [2.267364479527671, 48.83151433334456], [2.267364601396948, 48.8315145796218], [2.267386372013167, 48.83152970923882], [2.267531199153402, 48.831613511009344], [2.267642381435043, 48.83169077404936], [2.267787208072185, 48.83177457548947], [2.267953304138826, 48.831868409998634], [2.268098131756661, 48.831952211948284], [2.268264230311148, 48.83204604601913], [2.268409058922318, 48.832129847578976], [2.268575158602459, 48.83222368120316], [2.268575403278676, 48.83222381670695], [2.26872023289657, 48.8323076169774], [2.268848595022147, 48.832378329363586], [2.268993425508376, 48.83246212929166], [2.269121788384993, 48.832532841374906], [2.2691637857078533, 48.83255597550623], [2.269308618544026, 48.83263977594701], [2.269429325226309, 48.83270626959144], [2.269495314689725, 48.832742620818635], [2.269640147227778, 48.83282641993638], [2.269679476370135, 48.83284808508819], [2.269838252029268, 48.83290442113039], [2.270038691832038, 48.832975461558696], [2.27007400092339, 48.83298798864021], [2.270077505377673, 48.83300205651861], [2.270077329226621, 48.83300218315532], [2.2700769081339702, 48.83300248457536], [2.270073110039057, 48.833005203600884], [2.2700334255483128, 48.833033604807845], [2.269893749808476, 48.83313216414409], [2.269841459787607, 48.833169588245624], [2.269740972150702, 48.83324150600757], [2.269601295288274, 48.833340065883256], [2.269500808353755, 48.83341198344083], [2.269361129218216, 48.833510543012785], [2.269208958965727, 48.83361944808795], [2.269069280097347, 48.83371800640987], [2.268917108629525, 48.833826911093574], [2.268777428653447, 48.83392546905635], [2.268625255970278, 48.834034373348565], [2.268485574873875, 48.83413293185157], [2.268372366227129, 48.83421394877074], [2.2682326841714, 48.83431250696259], [2.268119476103891, 48.834393523637736], [2.2679797930888332, 48.834492081518455], [2.267866582876017, 48.834573097932875], [2.2678656993524022, 48.83457324541889], [2.267856544629262, 48.83457476958745], [2.267835557264834, 48.8345969870471], [2.267843472339709, 48.834603215119365], [2.268041367799458, 48.834606478709965], [2.2682378832218753, 48.834609740724986], [2.268435778731188, 48.83461300366303], [2.268632294202882, 48.83461626503], [2.268830189774162, 48.83461952641617], [2.269026703932843, 48.8346227871268], [2.269224600903325, 48.83462604876802], [2.269421115111262, 48.83462930883066], [2.269619010768901, 48.83463256981101], [2.269815526388259, 48.83463582923394], [2.2700134221079162, 48.83463908866243], [2.270209937776609, 48.834642347437324], [2.270407833532981, 48.83464560711253], [2.270604349250901, 48.83464886523948], [2.270802245056778, 48.834652124262114], [2.270998760823915, 48.83465538174098], [2.271196656691659, 48.83465863921179], [2.271393172508, 48.83466189604264], [2.271591068412652, 48.834665153760156], [2.271787584278191, 48.834668409942985], [2.271985480232116, 48.83467166700793], [2.272181994797122, 48.83467492163519], [2.272379892162787, 48.83467817805585], [2.27257640676441, 48.8346814329344], [2.272774304179328, 48.83468468870249], [2.27297081883012, 48.834687942932995], [2.273168714932207, 48.83469119804025], [2.273365231006971, 48.83469445073174], [2.273563127158288, 48.83469770518641], [2.273759643269661, 48.8347009581292], [2.273957539470404, 48.8347042119313], [2.274154055630916, 48.83470746422605], [2.274351951880873, 48.83471071737557], [2.2745484681030312, 48.834713968123005], [2.274746364402391, 48.83471722061997], [2.274942880661148, 48.83472047161871], [2.275140777009702, 48.83472372346311], [2.275337293317569, 48.8347269738138], [2.275535189715511, 48.83473022500562], [2.275731704722693, 48.83473347380076], [2.275929602532085, 48.834736724348254], [2.276126117575858, 48.83473997339469], [2.276324014072338, 48.83474322328138], [2.276520530527471, 48.834746471688014], [2.276539551628328, 48.83474845834189], [2.276550086037662, 48.83473840587504], [2.276659587395372, 48.83463860151109], [2.276771156663577, 48.83453691275961], [2.276880657174861, 48.834437108175344], [2.276992225580557, 48.83433541919934], [2.27710172524532, 48.83423561439469], [2.277213291413781, 48.83413392608526], [2.277215152742426, 48.83412574581022], [2.277170260456839, 48.83403889421652], [2.277125007374239, 48.833949777585616], [2.277080115390284, 48.83386292594445], [2.277034862627025, 48.83377380836614], [2.277040759632809, 48.83376324215442], [2.277216108749835, 48.83369365945399], [2.277387198628154, 48.83362595024687], [2.277562545458673, 48.83355636702183], [2.277733635811014, 48.83348865641976], [2.277908981704819, 48.83341907357762], [2.278080071156563, 48.83335136247173], [2.278084153111773, 48.833348874249715], [2.278202565754577, 48.83323937741813], [2.278318086588576, 48.83313217621147], [2.27843649824777, 48.833022679127104], [2.278552018120488, 48.832915477673744], [2.278667537505538, 48.83280827699786], [2.278785946332858, 48.83269877952764], [2.278901466131315, 48.83259157771398], [2.279019873974957, 48.83248207999099], [2.279021578393965, 48.83247862046566]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 32, "zemmour_eric": 52.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "15-76", "circ_bv": "13", "num_bureau": 76, "roussel_fabien": 16.0, "nb_emargement": 843.0, "nb_procuration": 20.0, "nb_vote_blanc": 10.0, "jadot_yannick": 27.0, "le_pen_marine": 88.0, "nb_exprime": 824.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 6, "nb_inscrit": 1214.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 843, "quartier_bv": "60", "geo_point_2d": [48.831479450215035, 2.272507313527235], "melenchon_jean_luc": 363.0, "poutou_philippe": 6.0, "macron_emmanuel": 202.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.408954394868334, 48.84443759277247], [2.408991079949434, 48.84443654189142], [2.408991347311143, 48.84443651623157], [2.409184349047364, 48.84441696152611], [2.409374528641262, 48.84439849248917], [2.409567531455447, 48.84437893717161], [2.409757710774799, 48.84436046752491], [2.409947889959458, 48.84434199757556], [2.410140892349289, 48.844322441332054], [2.410331071269463, 48.844303969873614], [2.410524072012135, 48.84428441300457], [2.410714252010111, 48.84426594184241], [2.410907252468168, 48.84424638435448], [2.411097432191568, 48.844227912582596], [2.411290432365, 48.84420835447587], [2.411480610451372, 48.8441898820875], [2.411673611702718, 48.844170323368644], [2.411691555709425, 48.84416441290814], [2.411697401657678, 48.84414759851856], [2.411672864896845, 48.84402331366726], [2.411646015697802, 48.84388613504653], [2.4116214791826023, 48.84376185015556], [2.411594628890975, 48.84362467148446], [2.41157009262151, 48.84350038655383], [2.411543242599834, 48.84336320783905], [2.411518706575898, 48.843238922868736], [2.411491856824171, 48.84310174411029], [2.411467321045964, 48.84297745910031], [2.411440472926693, 48.84284028030487], [2.411415937394002, 48.842715995255226], [2.411389088182157, 48.842578816409414], [2.411364552895086, 48.84245453132011], [2.411337703953279, 48.8423173524306], [2.411313168901665, 48.84219306820095], [2.411295920512006, 48.84218558160798], [2.411055743023272, 48.842230806269754], [2.410819050663576, 48.842272522132824], [2.410802265672122, 48.84226587145565], [2.410751156087792, 48.84212092477353], [2.410714191035018, 48.841997936295456], [2.410714165424608, 48.84199393492669], [2.410766818297777, 48.841838568510376], [2.410816917522353, 48.84167765302581], [2.410816785601986, 48.84167365383045], [2.410769931854344, 48.84154364119378], [2.4107188393829633, 48.84140930241467], [2.410715661022178, 48.84140540962463], [2.410590973635343, 48.84131576157102], [2.410470169463429, 48.84123012386769], [2.410349364336301, 48.841144485129874], [2.410224678203703, 48.84105483667353], [2.410218268219353, 48.84105224999318], [2.410040582530887, 48.84101985850165], [2.409875056561704, 48.84098971666856], [2.409709532146432, 48.840959574612334], [2.409531845727614, 48.84092718235576], [2.40936632170942, 48.840897039822984], [2.409188637089642, 48.84086464616218], [2.409171468868057, 48.84086746090183], [2.409163136205974, 48.84087294900414], [2.409204724568028, 48.84099636025607], [2.409247769015271, 48.84111670286331], [2.409289357782305, 48.84124011315957], [2.409332402626266, 48.84136045571013], [2.409373991778105, 48.84148386684932], [2.409417035656311, 48.841604209336396], [2.409458625213237, 48.841727619519936], [2.409501670850649, 48.84184796195701], [2.409543260802481, 48.84197137208419], [2.409586306836626, 48.842091714464495], [2.409627897173182, 48.84221512543457], [2.409670942241571, 48.842335467751454], [2.409712532983125, 48.8424588777659], [2.409755579810754, 48.84257922003271], [2.409797170937146, 48.84270263089008], [2.409840218161527, 48.842822973100176], [2.409838413264804, 48.842829908132735], [2.40973679628506, 48.842934072169015], [2.409620095463299, 48.84305529892001], [2.409518477607778, 48.843159462749796], [2.409401775763239, 48.84328069016265], [2.409300157031928, 48.84338485378597], [2.409183454174988, 48.843506080961355], [2.409081834567878, 48.84361024437819], [2.408965129345987, 48.84373147041003], [2.408863510225706, 48.843835633627116], [2.408846696547788, 48.84384614496295], [2.408823840482686, 48.84385323046746], [2.408824739426782, 48.843879809991925], [2.40885494501141, 48.84401246232045], [2.408884556642055, 48.84414247297905], [2.408914167057888, 48.8442724836084], [2.408944374470466, 48.844405134975084], [2.408954394868334, 48.84443759277247]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 55, "zemmour_eric": 71.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "12-37", "circ_bv": "08", "num_bureau": 37, "roussel_fabien": 19.0, "nb_emargement": 1040.0, "nb_procuration": 43.0, "nb_vote_blanc": 11.0, "jadot_yannick": 64.0, "le_pen_marine": 93.0, "nb_exprime": 1020.0, "nb_vote_nul": 9.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1365.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1040, "quartier_bv": "45", "geo_point_2d": [48.84293354362654, 2.4102826337476113], "melenchon_jean_luc": 393.0, "poutou_philippe": 10.0, "macron_emmanuel": 274.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.405177604119349, 48.858459794436065], [2.405156415493012, 48.8584485597194], [2.405099980086971, 48.85841216687801], [2.404962291440356, 48.858323368079205], [2.4048299082801012, 48.85823799862191], [2.40469222055403, 48.85814919949848], [2.404559838278808, 48.858063829729], [2.40442215012065, 48.8579750293748], [2.404289768730458, 48.85788965929318], [2.404289542743736, 48.85788951697095], [2.404187907335504, 48.85782691206635], [2.404070401859241, 48.85775513745402], [2.403968766986632, 48.85769253145642], [2.403901847531082, 48.8576516556204], [2.403901487748579, 48.85764819764271], [2.40387937394823, 48.85763758762201], [2.403828788559437, 48.857606688611966], [2.403781133472993, 48.85757567917036], [2.4037628459751432, 48.857565506387054], [2.403741970487836, 48.857577702723574], [2.403633655030945, 48.85766979017971], [2.403525355378416, 48.85776213032699], [2.40341703778198, 48.857854218464276], [2.403308737362204, 48.857946558400165], [2.403200420372714, 48.85803864543355], [2.40309211918569, 48.85813098515805], [2.403083717641356, 48.858134336479914], [2.4028867780699192, 48.85815735477563], [2.402688567148082, 48.85818068836738], [2.402491625863965, 48.858203706005035], [2.402293414588735, 48.85822703894129], [2.402096474317768, 48.85825005593452], [2.401898262689258, 48.858273388215274], [2.401890056320279, 48.85827658843953], [2.4017650838328253, 48.85837860422491], [2.401640136630959, 48.85847944365575], [2.401515163167603, 48.85858145916153], [2.401390214995572, 48.85868229831298], [2.401350173137755, 48.8587161283227], [2.401360178153013, 48.85872377424169], [2.401415292942481, 48.858754978417515], [2.401567739183844, 48.85883748952446], [2.401725069099837, 48.858926562182184], [2.401877516333915, 48.8590090728818], [2.402034847287295, 48.85909814601778], [2.4021078494770602, 48.859137657450745], [2.402128606701743, 48.85915343403579], [2.402150319300591, 48.85915662816281], [2.402229765391184, 48.859199627892416], [2.402394852038901, 48.8592865232902], [2.402547301386801, 48.85936903310978], [2.402712389090665, 48.85945592895551], [2.402864839437106, 48.85953843835802], [2.403029928217542, 48.85962533285311], [2.403182379562529, 48.8597078418385], [2.403347469399133, 48.8597947367816], [2.403499921742672, 48.85987724534987], [2.403665012655848, 48.85996413894231], [2.4038174659876512, 48.860046647992704], [2.403821863216004, 48.86006545539098], [2.40384126434348, 48.860058548852855], [2.403868491448713, 48.860070502762], [2.404016651302751, 48.86013554918853], [2.404179268459055, 48.86020732254979], [2.40418298224186, 48.8602097449854], [2.404293860382765, 48.860317093118034], [2.404398957887647, 48.860421504788185], [2.404509838297459, 48.860528851807686], [2.404614936662434, 48.86063326326825], [2.404725817957638, 48.86074061096644], [2.404830917182513, 48.86084502221736], [2.404941798020789, 48.86095236878884], [2.405046898105671, 48.861056779830164], [2.405157781192245, 48.86116412708711], [2.405262882137248, 48.86126853791882], [2.405367983503408, 48.86137294864838], [2.405478866571717, 48.861480294671146], [2.405509407126763, 48.86151063371558], [2.40551396045979, 48.861511883037586], [2.405566750039701, 48.86147963493142], [2.405608789784042, 48.861376964357504], [2.405650328237126, 48.861277836479], [2.40569236765393, 48.86117516585704], [2.40573390441396, 48.86107603882401], [2.40574517061102, 48.86106952776787], [2.405873460246608, 48.86105779428176], [2.405999945517609, 48.861046029218784], [2.406011148107088, 48.86103959426601], [2.406071521411472, 48.86090016661619], [2.4061331808436313, 48.86075920652651], [2.40619355350688, 48.860619777880565], [2.406255212277044, 48.86047881769239], [2.406271302111719, 48.86047253826456], [2.406498127702014, 48.86050623761256], [2.406723115806897, 48.860539973285206], [2.406737714688812, 48.86053594735234], [2.406848768151894, 48.86041794642692], [2.406964524624454, 48.86028320493575], [2.406966038580084, 48.86028096138197], [2.407027845163022, 48.86014008783446], [2.407085573509343, 48.860009613826705], [2.407147379457314, 48.85986873928367], [2.407205105840686, 48.85973826517961], [2.407216516913483, 48.85972688565023], [2.407205027744314, 48.859716258751476], [2.407057714489976, 48.85964676420786], [2.406908899435556, 48.85957692477962], [2.40676158697016, 48.85950742986273], [2.406612772710759, 48.859437590057475], [2.40646546240739, 48.8593680938748], [2.406316648942804, 48.85929825369256], [2.406169338055288, 48.85922875802916], [2.406020525385717, 48.85915891746991], [2.405873215287035, 48.85908942143329], [2.4057244034226333, 48.85901957959769], [2.405722024668234, 48.85900634562309], [2.405787731067177, 48.858956552340445], [2.405850701862423, 48.858909146687694], [2.405849998967035, 48.85889680059393], [2.405717612895286, 48.85881143216281], [2.40555187773254, 48.858704095106454], [2.40541949264916, 48.85861872543137], [2.405253758713463, 48.85851138794351], [2.405177808670991, 48.85846241164719], [2.405177604119349, 48.858459794436065]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 40, "zemmour_eric": 84.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-42", "circ_bv": "15", "num_bureau": 42, "roussel_fabien": 22.0, "nb_emargement": 1180.0, "nb_procuration": 59.0, "nb_vote_blanc": 20.0, "jadot_yannick": 86.0, "le_pen_marine": 75.0, "nb_exprime": 1158.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1530.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1180, "quartier_bv": "80", "geo_point_2d": [48.859374839031524, 2.404489525037539], "melenchon_jean_luc": 538.0, "poutou_philippe": 7.0, "macron_emmanuel": 239.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305474074261746, 48.854322070293854], [2.305555034059246, 48.85432406099972], [2.305717717484563, 48.85429056145743], [2.305924330319654, 48.85424130435745], [2.306087013249175, 48.85420780431058], [2.306293625418993, 48.85415854567002], [2.306456306489918, 48.85412504511069], [2.3064597148535793, 48.8541245468361], [2.306654552705008, 48.85411296266681], [2.30684195949746, 48.854102959372874], [2.307036797183188, 48.854091374580904], [2.307224203824612, 48.854081370688135], [2.307411610406028, 48.85407136560244], [2.307606447835017, 48.854059780781874], [2.30779385426549, 48.85404977509733], [2.30798869152866, 48.854038189654155], [2.308176097808076, 48.85402818337075], [2.308370934905623, 48.85401659730497], [2.308558341033873, 48.854006590422685], [2.308753177965686, 48.853995003734276], [2.308940583942863, 48.85398499625319], [2.309135420708931, 48.85397340894215], [2.309322826535028, 48.85396340086218], [2.309517661772556, 48.85395181292067], [2.309561137163643, 48.85396406032071], [2.309597543730177, 48.853951594846414], [2.309792380225253, 48.853940006465315], [2.309991168156269, 48.85392888933331], [2.310186004478902, 48.853917300311046], [2.31038479222741, 48.85390618342418], [2.310579628389493, 48.85389459286145], [2.310778415967391, 48.85388347532044], [2.310973251945115, 48.85387188501585], [2.311172039352398, 48.85386076682065], [2.31136687516954, 48.8538491749756], [2.311565663768976, 48.85383805613412], [2.31176049803897, 48.85382646453937], [2.311959286479645, 48.85381534414443], [2.312154120577149, 48.8538037519085], [2.312352908835302, 48.85379263175869], [2.312547742772175, 48.85378103798236], [2.312746530859669, 48.85376991717841], [2.31294136461217, 48.853758323660145], [2.313140152528999, 48.85374720220203], [2.31333498748362, 48.853735607151215], [2.313533773866988, 48.8537244850311], [2.31372860863723, 48.853712890238384], [2.313927394861858, 48.853701766564875], [2.314122229459461, 48.85369017113097], [2.314321015501553, 48.853679047702606], [2.314515849938545, 48.853667450728295], [2.314714635809828, 48.853656326645755], [2.314727062231162, 48.85364659572013], [2.314710071316887, 48.85351614197795], [2.314695246345884, 48.85338846434803], [2.3146782542326623, 48.85325801056326], [2.314663429413158, 48.85313033289974], [2.314646438814598, 48.85299987998723], [2.314631612783728, 48.852872202282356], [2.314614622360814, 48.85274174843572], [2.314599797844098, 48.85261407070505], [2.314582807584998, 48.85248361682369], [2.314567981856924, 48.85235593905159], [2.314550991749809, 48.85222548603468], [2.314536167535872, 48.85209780823685], [2.314519177604395, 48.85196735428587], [2.314504352179108, 48.85183967644666], [2.314521026956872, 48.851819105615704], [2.314499238264496, 48.8517836809575], [2.314369413070026, 48.85177786200875], [2.3141357498154242, 48.851769773131245], [2.313909167761083, 48.85175961630499], [2.313675506022475, 48.851751526536404], [2.31344892277456, 48.851741368830574], [2.313435121155508, 48.851747401678615], [2.313371322829774, 48.851869111842305], [2.313305919501688, 48.85198880448112], [2.313242121929415, 48.852110515456616], [2.313176718013424, 48.85223020709954], [2.313112918481178, 48.852351917971895], [2.313047513953463, 48.85247161041753], [2.31298371383573, 48.85259332029526], [2.312918308708337, 48.852713012644244], [2.312854509344052, 48.8528347233338], [2.312789103616876, 48.85295441558622], [2.312777527451642, 48.852960319936514], [2.312575655777076, 48.85297039599987], [2.312328021910908, 48.85298537014116], [2.312313165135687, 48.85297683168968], [2.312303692924163, 48.85284241766113], [2.312295337259669, 48.852708287934355], [2.312285866505597, 48.85257387387978], [2.312277510941918, 48.85243974322012], [2.312268038919993, 48.85230532912383], [2.312259683433396, 48.85217119932978], [2.31225021150627, 48.85203678519962], [2.312241856108619, 48.851902655372], [2.312232384276291, 48.85176824120797], [2.312224028979456, 48.85163411044739], [2.312208665787575, 48.85162556096499], [2.312025915906348, 48.85164116194196], [2.311845258121148, 48.8516566370708], [2.311662508022139, 48.85167223749229], [2.311481851384013, 48.85168771207984], [2.311299101067231, 48.85170331194584], [2.31111844285073, 48.851718785976466], [2.3109356936789123, 48.85173438529479], [2.310755035246771, 48.85174985877629], [2.310572284494464, 48.8517654575313], [2.310391627209423, 48.85178093047152], [2.310376812998988, 48.85177458015261], [2.310317668371765, 48.851643606429256], [2.310264861487867, 48.851516411428726], [2.310205717434942, 48.85138543761969], [2.31015291109793, 48.851258241640906], [2.310093767619398, 48.8511272677461], [2.310040961805252, 48.85100007258772], [2.310029781001381, 48.85096974555505], [2.3099967061348, 48.85096716881706], [2.309791758938315, 48.850891025977695], [2.309592899383305, 48.85081831658783], [2.309387951999679, 48.850742173038704], [2.309189093576134, 48.85066946296798], [2.309185029033805, 48.850667153326924], [2.309065859602116, 48.8505661910485], [2.308952902657098, 48.85046704165738], [2.308833735495456, 48.85036607913748], [2.3087207780631642, 48.850266929501494], [2.308601611808863, 48.85016596673227], [2.308488655251988, 48.850066816859304], [2.308369489905019, 48.84996585384076], [2.308256534223552, 48.84986670373082], [2.308143580334693, 48.849767553513345], [2.308024416340514, 48.84966659012392], [2.307997999332544, 48.84963918849467], [2.307981691083484, 48.84963755806107], [2.307862526337543, 48.84953659449077], [2.307746319476264, 48.84943940723421], [2.307627155627605, 48.849338444310796], [2.307510949647043, 48.849241256808305], [2.307391788082109, 48.8491402927411], [2.307275581607745, 48.849043105884114], [2.307156420951913, 48.848942141564564], [2.307040215370413, 48.84884495356239], [2.306921055611617, 48.848743989889705], [2.306804850910917, 48.84864680164164], [2.306685692073167, 48.84854583681734], [2.306569488241296, 48.84844864922267], [2.306450330312725, 48.848347684146], [2.306334127361533, 48.848250496305425], [2.3062149703420323, 48.84814953097636], [2.306098769646218, 48.84805234199855], [2.306029456786891, 48.848003000259574], [2.306010810184175, 48.8480095941494], [2.3059389655836, 48.84805427861981], [2.305880826222994, 48.84809145463866], [2.305872789394726, 48.84809551180249], [2.305861039079826, 48.84810581597752], [2.305773625735224, 48.84816171050759], [2.305628945453857, 48.848254309266004], [2.305483391681703, 48.848347379436234], [2.305338710381147, 48.84843997692895], [2.30519315557208, 48.848533046730545], [2.305048473240245, 48.84862564385685], [2.304902917394358, 48.84871871328984], [2.30475823403134, 48.84881131004976], [2.304612677148524, 48.848904379114124], [2.304467992754315, 48.848996975507596], [2.304322434834564, 48.84909004420341], [2.30417774939715, 48.849182641129694], [2.304032190452463, 48.84927570855756], [2.303887503983839, 48.849368305117494], [2.30380637882562, 48.84942017503867], [2.303758500733415, 48.849439699477216], [2.303750855612954, 48.849453271323334], [2.303686420692709, 48.849494469329564], [2.303551110093937, 48.849582071021615], [2.303405550265095, 48.84967513856093], [2.303270238736979, 48.849762739021855], [2.303124676539197, 48.849855806196445], [2.302989364057884, 48.84994340722477], [2.302843802216508, 48.850036474050476], [2.302708488793916, 48.850124074746915], [2.302562924583472, 48.85021714120787], [2.302427610231629, 48.85030474067318], [2.302282046377693, 48.85039780678526], [2.302146729709824, 48.85048540681005], [2.302001164849494, 48.85057847256525], [2.301865848603018, 48.85066607226612], [2.30172028137379, 48.85075913765659], [2.3015849641980592, 48.85084673612623], [2.30143939732523, 48.85093980116781], [2.3013040791961368, 48.85102740020489], [2.301273033008735, 48.85104724856389], [2.301269031993292, 48.851049981738754], [2.301257845788216, 48.851065967300684], [2.3011433226711873, 48.85113918360266], [2.30104233615836, 48.85120567520833], [2.30098952655104, 48.85121927620501], [2.300999022474714, 48.85124244344745], [2.301077300582528, 48.8512951526746], [2.30113927029619, 48.85133688073388], [2.30127954334804, 48.851431913368764], [2.30141979356261, 48.85152634941895], [2.301560067636075, 48.85162138170879], [2.301700317494187, 48.851715818305415], [2.301840593952004, 48.851810850258126], [2.3019808448284502, 48.85190528650982], [2.302121122319948, 48.85200031721822], [2.302261374214731, 48.85209475312498], [2.302401651353086, 48.852189784379604], [2.302541905628957, 48.85228421994949], [2.30268218378896, 48.85237925085903], [2.302822437732476, 48.85247368517671], [2.30296271827688, 48.85256871574913], [2.303102973226723, 48.85266315062116], [2.303243254792794, 48.852758180848504], [2.303383510761007, 48.85285261537563], [2.303523791998014, 48.85294764435066], [2.3036640489846, 48.853042078532845], [2.303804332594024, 48.85313710807], [2.303944590598995, 48.853231541907284], [2.30408487523011, 48.8533265710993], [2.304225134265483, 48.85342100369236], [2.304365419918291, 48.853516032539275], [2.304363937285587, 48.853540010704606], [2.304396387919896, 48.853565663789276], [2.304521415004618, 48.85365390171405], [2.30466170183677, 48.85374892929445], [2.304786728435817, 48.85383716781879], [2.304927016245216, 48.85393219507245], [2.305052043745167, 48.85402043240576], [2.305192332519828, 48.854115460231974], [2.305205744696865, 48.85412454607916], [2.305330774493236, 48.85421278311388], [2.305457650660822, 48.854298724772974], [2.305474074261746, 48.854322070293854]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 166, "zemmour_eric": 147.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "7-12", "circ_bv": "12", "num_bureau": 12, "roussel_fabien": 7.0, "nb_emargement": 1050.0, "nb_procuration": 74.0, "nb_vote_blanc": 3.0, "jadot_yannick": 40.0, "le_pen_marine": 46.0, "nb_exprime": 1047.0, "nb_vote_nul": 0.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1283.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1050, "quartier_bv": "27", "geo_point_2d": [48.8517759409495, 2.3073124862413055], "melenchon_jean_luc": 71.0, "poutou_philippe": 2.0, "macron_emmanuel": 545.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.333753664347491, 48.82966474729208], [2.333709489400578, 48.82968461570926], [2.333480640991114, 48.82967965041174], [2.333270976591194, 48.829675987792896], [2.333061312220837, 48.82967232480649], [2.332832463915461, 48.829667359167985], [2.332819290089415, 48.82965828833282], [2.332820855527703, 48.829544271634404], [2.332826251465302, 48.829429940826245], [2.332827816881508, 48.829315924104506], [2.332833211418164, 48.82920159326516], [2.332834776812292, 48.82908757652012], [2.332840171309955, 48.82897324565716], [2.332827047852458, 48.828963978134055], [2.332627783077721, 48.82895922657968], [2.332432191342041, 48.82895464988819], [2.332232926638952, 48.828949897675905], [2.332037334961417, 48.82894532123797], [2.33183807032998, 48.82894056836774], [2.33164247873364, 48.82893599038469], [2.331443212811734, 48.82893123684896], [2.331247622647217, 48.8289266582277], [2.331048356785547, 48.828921904933374], [2.330852766690621, 48.82891732566635], [2.330653500912175, 48.82891257081477], [2.3304579095249203, 48.82890799089437], [2.330258645168651, 48.82890323629179], [2.330063053851108, 48.8288986557256], [2.330062453413877, 48.82889863257583], [2.329862972938725, 48.82888812369648], [2.3296596169551, 48.82887762244076], [2.329460136641648, 48.82886711288925], [2.329256779458992, 48.828856610940726], [2.329057299307047, 48.82884610071716], [2.328853943649638, 48.82883559809113], [2.328654463659312, 48.82882508719545], [2.328451108165027, 48.82881458388427], [2.32825162833643, 48.82880407231646], [2.328048271643148, 48.828793568312484], [2.328018032419751, 48.828803997552214], [2.328017108104846, 48.82880627407521], [2.328127950636075, 48.82892933245555], [2.328234731910698, 48.829049298335704], [2.328345574110178, 48.82917235648001], [2.328452356394938, 48.82929232124051], [2.328563200986962, 48.829415379164125], [2.328669984258603, 48.82953534460365], [2.328780828518992, 48.8296584022912], [2.328887612800788, 48.829778366611094], [2.328888075513197, 48.829778930417596], [2.328963659459105, 48.82987964652786], [2.329070107721382, 48.83001880142924], [2.329097755675914, 48.830055642025144], [2.32910550279076, 48.83007543215561], [2.329111509860471, 48.83007694622345], [2.329159446587639, 48.83014082159449], [2.32920035405466, 48.830193278628755], [2.329211747931339, 48.83019814339576], [2.3293957657109052, 48.83020489177648], [2.329600601884555, 48.83021202278645], [2.329784621125514, 48.83021877057643], [2.329989457406984, 48.83022590092038], [2.330173476747259, 48.830232648111945], [2.330378313136336, 48.830239777789814], [2.330562332575918, 48.83024652438304], [2.330767169072797, 48.83025365339481], [2.330951188611678, 48.83026039938967], [2.331156025216145, 48.830267527735366], [2.331367660919992, 48.83027539345475], [2.331562394498325, 48.83028289632056], [2.331774030325871, 48.83029076132075], [2.331968764031513, 48.83029826262553], [2.332180399982744, 48.8303061269065], [2.332375133792834, 48.83031362844888], [2.332586769867742, 48.83032149201065], [2.332781503793598, 48.83032899289127], [2.332993141354344, 48.83033685574145], [2.333187874045486, 48.830344355053384], [2.333399511729783, 48.83035221718442], [2.333594244525263, 48.8303597167339], [2.333616614900865, 48.83036380222343], [2.333628186908533, 48.83035487295932], [2.333628396904277, 48.8303543237124], [2.333665130087466, 48.830243791136056], [2.333700586500301, 48.83013711064024], [2.333737319388872, 48.83002657712098], [2.333772775494759, 48.82991989748243], [2.333773078959661, 48.82991757698813], [2.3337687090982753, 48.82985168785692], [2.333762430911805, 48.82974794690695], [2.333792155344134, 48.82973841813017], [2.333800051193128, 48.829717177514574], [2.333767640013628, 48.82967099305761], [2.333753664347491, 48.82966474729208]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 87, "zemmour_eric": 54.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-5", "circ_bv": "11", "num_bureau": 5, "roussel_fabien": 23.0, "nb_emargement": 1148.0, "nb_procuration": 86.0, "nb_vote_blanc": 7.0, "jadot_yannick": 102.0, "le_pen_marine": 42.0, "nb_exprime": 1135.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1387.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "55", "geo_point_2d": [48.82959047977778, 2.330965914154471], "melenchon_jean_luc": 308.0, "poutou_philippe": 4.0, "macron_emmanuel": 459.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376893693204376, 48.88351412494778], [2.376950202938041, 48.883526479908106], [2.377100393050047, 48.8836105300738], [2.377247200475054, 48.883693210759176], [2.377397391547267, 48.88377726053959], [2.377544199913844, 48.88385994084827], [2.377694391946271, 48.88394399024335], [2.377841201254423, 48.88402667017534], [2.377991394257807, 48.88411071828587], [2.378138204496797, 48.88419339874038], [2.37828839709681, 48.88427744645854], [2.378435208277386, 48.884360126536365], [2.378585403201209, 48.88444417387624], [2.37873221532338, 48.88452685357736], [2.378734020112628, 48.88452771190604], [2.378783347706346, 48.88454737530802], [2.378850141416228, 48.88457398486558], [2.378868981363138, 48.8845783606984], [2.378898098248233, 48.88454497408328], [2.3789910370464042, 48.88443245585806], [2.379084529232161, 48.884319124732336], [2.379177467235168, 48.884206605440035], [2.379270958609833, 48.88409327414544], [2.37936389579624, 48.883980755584616], [2.3794573877232, 48.88386742412825], [2.379550322750874, 48.88375490449323], [2.379643813866652, 48.88364157286804], [2.3797367480777583, 48.88352905396452], [2.379830238393075, 48.88341572127123], [2.379923173161902, 48.88330320220692], [2.380016661291884, 48.88318987023698], [2.380109595265578, 48.883077350105594], [2.380203082584311, 48.88296401796686], [2.380296015741467, 48.882851498566914], [2.380389503612614, 48.88273816626642], [2.38040416984657, 48.88273364660482], [2.38055522967115, 48.882753680168044], [2.380700892996378, 48.88277378095422], [2.380851953051419, 48.88279381414233], [2.380997616603433, 48.882813914566775], [2.381008121985464, 48.88281252905833], [2.3811291291278502, 48.882757787537045], [2.381245217485686, 48.882703962966126], [2.381366224115798, 48.88264922209905], [2.381482311986677, 48.88259539729293], [2.3815006657270272, 48.88258773990839], [2.381498968220555, 48.8825752098043], [2.381481565475776, 48.882555151235], [2.38146889104579, 48.88254284231295], [2.381460179393687, 48.88253144059946], [2.381439452201358, 48.88253147290923], [2.381247200309553, 48.88254029563745], [2.381044668615638, 48.88254965037501], [2.380852416600643, 48.88255847156988], [2.38064988611798, 48.88256782654577], [2.380457633969017, 48.88257664710659], [2.380255103355356, 48.88258600051524], [2.380062849698187, 48.88259482133421], [2.379860318943045, 48.88260417407488], [2.379668066515468, 48.882612994266815], [2.3794655356186523, 48.882622346339545], [2.379273283067848, 48.88263116499813], [2.379070750655306, 48.88264051729505], [2.378878497970571, 48.88264933531961], [2.378675966790646, 48.88265868605636], [2.378483713961262, 48.88266750434609], [2.378281181276348, 48.8826768544078], [2.378088928323787, 48.88268567116418], [2.377886396850149, 48.88269502146428], [2.377694143763688, 48.88270383758657], [2.377491610795619, 48.88271318631232], [2.377299357564516, 48.88272200269982], [2.377096825818587, 48.882731350764665], [2.376904572464354, 48.88274016561882], [2.3767020405660633, 48.88274951391498], [2.376509785714406, 48.882758328127956], [2.376307253685486, 48.88276767485687], [2.376115000052748, 48.882776489342135], [2.375912467882245, 48.88278583540306], [2.375720214126425, 48.88279464835496], [2.375687522644424, 48.882829471627545], [2.375702911368526, 48.882844230697934], [2.375849257466382, 48.88292305625426], [2.375999442697656, 48.88300710783999], [2.37614578970207, 48.88308593302223], [2.376295975881667, 48.88316998422356], [2.37644232379264, 48.88324880903165], [2.376592510920566, 48.88333285984855], [2.376738859738104, 48.88341168428249], [2.37688904917793, 48.88349573472212], [2.376893693204376, 48.88351412494778]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 28, "zemmour_eric": 58.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-3", "circ_bv": "16", "num_bureau": 3, "roussel_fabien": 19.0, "nb_emargement": 819.0, "nb_procuration": 25.0, "nb_vote_blanc": 3.0, "jadot_yannick": 73.0, "le_pen_marine": 51.0, "nb_exprime": 811.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1081.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 819, "quartier_bv": "76", "geo_point_2d": [48.88329541656554, 2.3784415690491314], "melenchon_jean_luc": 326.0, "poutou_philippe": 3.0, "macron_emmanuel": 209.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.32390556737661, 48.89875644591104], [2.3239005466465033, 48.898748020621646], [2.323926318988697, 48.89862511581808], [2.323952072415413, 48.898502292727215], [2.323977844514321, 48.898379387884965], [2.324003599061868, 48.89825656476313], [2.324029369553542, 48.898133659874496], [2.324055123857971, 48.89801083671398], [2.32408089410637, 48.89788793178671], [2.324106648167684, 48.89776510858753], [2.324132419536746, 48.89764220362925], [2.324158171991014, 48.89751938038371], [2.324145522390837, 48.8975091736559], [2.323923725452879, 48.897499928599956], [2.323707627056216, 48.89749092035797], [2.323485831637615, 48.89748167449862], [2.3232697333925962, 48.897472665466374], [2.323254149732898, 48.897470768872715], [2.323243795775214, 48.8974789373483], [2.3232420632815423, 48.89748042222891], [2.323228219964621, 48.897492280682236], [2.323205430584377, 48.897491093395445], [2.323188165548008, 48.897470172056785], [2.323180914165576, 48.897461384283886], [2.32308770586172, 48.89734843160945], [2.322994162273294, 48.897235070460184], [2.322900954779787, 48.89712211761704], [2.322807412004628, 48.89700875629845], [2.322714206685373, 48.896895803294335], [2.322620663347858, 48.89678244269799], [2.322527458850626, 48.89666948862597], [2.322433917690268, 48.896556127868024], [2.322340712639449, 48.89644317361957], [2.322247172292326, 48.89632981269235], [2.322153968040213, 48.89621685917451], [2.322060428517923, 48.896103497178736], [2.321967225076112, 48.895990543492196], [2.321873686355429, 48.89587718222638], [2.321866761130611, 48.89587312753876], [2.321842759907357, 48.89586681058615], [2.321800698983891, 48.89585574096042], [2.321752525188858, 48.895850399554995], [2.321730125887486, 48.895857855776434], [2.321539317335704, 48.8958591878112], [2.321332524667068, 48.89586071494418], [2.321141716082811, 48.89586204724469], [2.320934923391159, 48.895863573691145], [2.320744114798089, 48.895864904458875], [2.320537322083435, 48.89586643021877], [2.320346513469634, 48.895867760353056], [2.320139720731989, 48.89586928542637], [2.319948912085926, 48.8958706158264], [2.319742119325296, 48.89587214021318], [2.319551310670365, 48.89587346908049], [2.319344517886664, 48.895874992780676], [2.319153709211135, 48.89587632101449], [2.318946916404575, 48.89587784402809], [2.318756107708456, 48.895879171628444], [2.318565297626952, 48.89588049981623], [2.318358506150373, 48.895882021821606], [2.318345375666568, 48.895888970791034], [2.318311666980131, 48.89598425996806], [2.318282694618524, 48.89606615910148], [2.318289191892439, 48.89607600229678], [2.318452319775969, 48.89613769438913], [2.31861448847335, 48.89619902286592], [2.318777617127794, 48.896260714508244], [2.318939787955449, 48.89632204254541], [2.31910291738081, 48.89638373373772], [2.319265087611047, 48.89644506131974], [2.319428217807324, 48.896506752061995], [2.319590390167741, 48.89656807920435], [2.319753521146684, 48.89662976859735], [2.319915692897826, 48.89669109618381], [2.320078824647677, 48.896752785126736], [2.320240998540852, 48.89681411137434], [2.320245865335566, 48.89681723895953], [2.320344325536508, 48.89692396626882], [2.320453790657808, 48.89704262067491], [2.320552251723077, 48.89714934689203], [2.320661716416485, 48.89726800197514], [2.320760178334248, 48.8973747279993], [2.32086964535109, 48.89749338197645], [2.320968108109626, 48.89760010870697], [2.321077576074258, 48.8977187624696], [2.321176039696935, 48.89782548810794], [2.321285508597745, 48.89794414255535], [2.321383973072947, 48.89805086800078], [2.321493441557624, 48.89816952222596], [2.321591906885359, 48.898276247478385], [2.321701377693521, 48.8983949005976], [2.321799843862083, 48.898501626556346], [2.321909315617978, 48.898620279461014], [2.322007782650909, 48.89872700432761], [2.322000857196101, 48.89874011407459], [2.32180638420441, 48.898787488100226], [2.321611887601602, 48.89883486707221], [2.321417415265972, 48.89888224046987], [2.321222916579388, 48.89892961969762], [2.321028443535959, 48.898976992459566], [2.320833944141385, 48.899024371051524], [2.320639470389959, 48.89907174317778], [2.3204449702875, 48.8991191211339], [2.320250495828187, 48.89916649262446], [2.320055995017747, 48.89921386994481], [2.319861519850549, 48.89926124079965], [2.319667019696011, 48.89930861749196], [2.319472542457059, 48.89935598770335], [2.319278041594556, 48.899403363759816], [2.319083563647628, 48.89945073333546], [2.318889062077265, 48.89949810875617], [2.318694583422468, 48.8995454776961], [2.3185000811440473, 48.89959285248101], [2.318488436203809, 48.89960264275678], [2.318491620046113, 48.89961128174894], [2.318520839347924, 48.89962015972018], [2.318566019214678, 48.89964730014206], [2.31872268287768, 48.899741030836694], [2.318777529137614, 48.899773977306715], [2.318794364422128, 48.89978409057998], [2.318809325212113, 48.89979307803343], [2.3188096419207422, 48.8997932677925], [2.318975435861349, 48.89989286146833], [2.3191321010122268, 48.8999865907071], [2.319249796163405, 48.90005729150488], [2.319406463667182, 48.90015102037845], [2.319524159562611, 48.900221720895985], [2.3196808266912, 48.9003154493888], [2.319798523331084, 48.900386149626094], [2.319833724119752, 48.90040729376849], [2.319844990324494, 48.900414061269785], [2.320001658609554, 48.90050778932645], [2.320161680494656, 48.90060391130275], [2.320318349909401, 48.900697639828174], [2.320379937157184, 48.90073463293952], [2.320396357535272, 48.90074449720758], [2.320564585803508, 48.90075032597867], [2.320760857266413, 48.90075582882538], [2.320929084248163, 48.900761657076714], [2.321125357167956, 48.900767158434526], [2.321275560424998, 48.900772362429876], [2.321471833421764, 48.90077786321984], [2.321622036744428, 48.90078306678062], [2.3218183084541453, 48.900788566995004], [2.321934161757181, 48.90079258010827], [2.322154180689711, 48.90080020080766], [2.322350453884261, 48.900805700157655], [2.322570472933175, 48.90081332009223], [2.32276674622116, 48.90081881875999], [2.322963018186692, 48.900824317098326], [2.323183037403842, 48.900831935907505], [2.323199506870014, 48.900832506514156], [2.323207983624287, 48.900832799929134], [2.323225871106259, 48.900833419913795], [2.323422144539243, 48.900838917507386], [2.323511613371565, 48.900842015622594], [2.3235555119849662, 48.900843535203265], [2.3235716703466, 48.900840754042875], [2.323572956507362, 48.9008193521473], [2.32359314551057, 48.90068399742316], [2.323613305957481, 48.9005488376702], [2.323633493386864, 48.90041348289805], [2.323653653636045, 48.90027832220563], [2.3236738422078362, 48.900142968300145], [2.323694000883506, 48.90000780755975], [2.323714189257172, 48.899872452714774], [2.323734347711656, 48.89973729283342], [2.323754535875517, 48.89960193794812], [2.323774694132185, 48.899466777127316], [2.323794853636478, 48.89933161719334], [2.323815041485709, 48.89919626224767], [2.323835199416528, 48.89906110226578], [2.32385538705596, 48.898925747279854], [2.323855512449068, 48.89892512475945], [2.323874971665599, 48.89884941839818], [2.32389641627429, 48.89876598549243], [2.32390556737661, 48.89875644591104]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 27, "zemmour_eric": 41.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "17-19", "circ_bv": "03", "num_bureau": 19, "roussel_fabien": 11.0, "nb_emargement": 863.0, "nb_procuration": 24.0, "nb_vote_blanc": 11.0, "jadot_yannick": 35.0, "le_pen_marine": 70.0, "nb_exprime": 848.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1277.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 863, "quartier_bv": "68", "geo_point_2d": [48.89851774596766, 2.3216929624951455], "melenchon_jean_luc": 421.0, "poutou_philippe": 5.0, "macron_emmanuel": 202.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.279679494323125, 48.859912634764996], [2.279688513270377, 48.85989135543682], [2.279761842488599, 48.859808360872535], [2.279834437765842, 48.85973121305033], [2.279907034178602, 48.85965406608617], [2.279980362714764, 48.859571071370226], [2.279991838304534, 48.85956660946098], [2.280173667474382, 48.85956397280591], [2.280354594941485, 48.85956198068638], [2.280536425439747, 48.859559343488286], [2.2807173528769003, 48.85955735082034], [2.280730732669425, 48.85954784410761], [2.280719277567368, 48.85941606278853], [2.280706141247554, 48.859281763942356], [2.280694686266195, 48.85914998258934], [2.280681550076753, 48.85901568370821], [2.280670096579003, 48.858883902329424], [2.28065696052013, 48.858749603413436], [2.2806709788403072, 48.858740035786276], [2.280866162932432, 48.8587439807192], [2.2810580731837238, 48.85874663757212], [2.281253257317582, 48.85875058277289], [2.281445167612927, 48.85875323900509], [2.281640353163629, 48.85875718358266], [2.28183226214011, 48.85875983918585], [2.282027447744941, 48.85876378313203], [2.282219358128365, 48.8587664381226], [2.2822320632409863, 48.85876115056846], [2.28231917171865, 48.85863395632397], [2.282397950122393, 48.858511442666384], [2.2824850564023302, 48.85838424916359], [2.282563834050946, 48.858261734469984], [2.282586663344684, 48.85822555711321], [2.282550932581654, 48.85821170954731], [2.282396603228008, 48.85818529190296], [2.282216508364458, 48.85815173960399], [2.282013522571835, 48.85811699204512], [2.281833428191056, 48.85808343916761], [2.281630442919899, 48.85804869095678], [2.281450349022, 48.858015137500665], [2.2813589971069588, 48.857999003068294], [2.281358296487097, 48.85799950070194], [2.2811782043096738, 48.85796594594371], [2.280976762219312, 48.857929265072244], [2.280796669167584, 48.857895709729505], [2.280595227617475, 48.85785902821341], [2.280415135041714, 48.85782547319367], [2.280213694044187, 48.85778879013374], [2.280033603319796, 48.85775523454589], [2.279832162850012, 48.85771855174067], [2.279652071263663, 48.85768499466902], [2.279646343972844, 48.8576828323122], [2.279540433883451, 48.857615841010286], [2.279431397873693, 48.8575451704005], [2.279419766431676, 48.857542698175656], [2.279224585572314, 48.85756259463978], [2.27902809899137, 48.8575817904138], [2.278832917836007, 48.857601686238446], [2.278636432326229, 48.85762088137691], [2.278441249511998, 48.85764077655382], [2.278244763710519, 48.85765997104851], [2.278049581975646, 48.8576798646948], [2.277853094507135, 48.857699059436804], [2.277791925817521, 48.85768774509809], [2.277778191766217, 48.857703335313545], [2.277741336956754, 48.857711009233434], [2.277754332070137, 48.85772689837466], [2.2776911481700672, 48.857810116788166], [2.277567092958215, 48.85792837179525], [2.277557975548382, 48.857932139920244], [2.277393707980926, 48.85794895806151], [2.277207349972504, 48.85796935239946], [2.277043082174552, 48.85798617005887], [2.276899859548891, 48.858001843873126], [2.276864281835512, 48.858009297702644], [2.276876562649972, 48.858044919018845], [2.276908918147898, 48.85816485228117], [2.276941958451837, 48.858287012869845], [2.276974315601055, 48.85840694699588], [2.277007356211846, 48.858529107539894], [2.277039712311523, 48.858649040714546], [2.27707275322917, 48.85877120121384], [2.277105110980159, 48.85889113525216], [2.277138152204567, 48.85901329570674], [2.277146246839748, 48.85901999444593], [2.277352247028806, 48.85908016446507], [2.277588969906487, 48.859146429266474], [2.277603801730186, 48.85914459328052], [2.277716356958841, 48.859072280917275], [2.277833258802648, 48.85899778315856], [2.277945814758602, 48.858925470578164], [2.27806271593236, 48.85885097348476], [2.278082560571285, 48.85885161123342], [2.278215871825715, 48.858954902473045], [2.2783309422257743, 48.85904758536062], [2.278338937803353, 48.85905072106958], [2.278517351828688, 48.859073120616884], [2.278691517083685, 48.859093877244106], [2.278701098184385, 48.85909846685189], [2.278798054567673, 48.8592173984216], [2.278892942255721, 48.85933840393795], [2.27898989952343, 48.85945733532651], [2.279084788094012, 48.85957834066458], [2.279181746246051, 48.85969727187198], [2.279276637062114, 48.85981827703996], [2.2792843701739782, 48.85982266300499], [2.279456276763666, 48.85986107542626], [2.2796246083765173, 48.85990668430584], [2.27966583936113, 48.85991589817435], [2.279679494323125, 48.859912634764996]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 166, "zemmour_eric": 202.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-13", "circ_bv": "14", "num_bureau": 13, "roussel_fabien": 5.0, "nb_emargement": 1182.0, "nb_procuration": 65.0, "nb_vote_blanc": 4.0, "jadot_yannick": 51.0, "le_pen_marine": 58.0, "nb_exprime": 1176.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1459.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1182, "quartier_bv": "62", "geo_point_2d": [48.85853309115004, 2.2794680325193504], "melenchon_jean_luc": 89.0, "poutou_philippe": 3.0, "macron_emmanuel": 571.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.377334278375316, 48.86566626738982], [2.377321110264845, 48.865683710858605], [2.377262112353362, 48.865751912131955], [2.377192331519722, 48.86583152386436], [2.377193590851596, 48.86583872694737], [2.377216659605925, 48.865846038122754], [2.377386667663881, 48.86588843714349], [2.377554338488324, 48.86592989564427], [2.377722009590485, 48.865971353009236], [2.377892017094838, 48.866013752199585], [2.377893137445187, 48.86601399544911], [2.378103247048646, 48.866053316583], [2.378311956022004, 48.86609214712339], [2.3785206639434833, 48.86613097729145], [2.3787307744816832, 48.8661702982188], [2.378939483028334, 48.866209127653754], [2.379149594208571, 48.866248446943814], [2.379150805607996, 48.866248714935985], [2.379348073844837, 48.866299079508266], [2.379550707804934, 48.86635094378795], [2.379747978189441, 48.86640130680424], [2.379950612945314, 48.86645317040209], [2.3801478840927413, 48.86650353365388], [2.3803505196443853, 48.8665553965699], [2.380358803117511, 48.86656312701826], [2.380376484625064, 48.86656396321201], [2.380377106926476, 48.86656413461041], [2.38055273569279, 48.86661517296182], [2.380760140464607, 48.866676214244016], [2.380935769984052, 48.866727252028156], [2.381143175651017, 48.866788292640436], [2.381202304550666, 48.866805475379465], [2.3812262057180202, 48.86680958302695], [2.381235838275053, 48.866793496863856], [2.381319913843376, 48.86667683019445], [2.381404816153014, 48.86655915866871], [2.381488890975484, 48.86644249095663], [2.381573792521512, 48.866324819286135], [2.38165786657658, 48.86620815232994], [2.3817427673591123, 48.866090480514615], [2.381826840657566, 48.865973813415046], [2.381911740676408, 48.86585614145494], [2.381995813218359, 48.86573947421196], [2.382080712473622, 48.865621802107086], [2.382164784269542, 48.86550513382145], [2.382249681387576, 48.865387462464064], [2.382333753790005, 48.86527079404204], [2.382418650155148, 48.86515312164063], [2.382502720427244, 48.86503645396747], [2.38258761739183, 48.8649187814283], [2.38267168690746, 48.86480211361179], [2.382756583108505, 48.86468444092786], [2.382750692386356, 48.86467264175987], [2.382586774701605, 48.86461492996716], [2.382426420044143, 48.864558186036014], [2.382262501715675, 48.86450047378618], [2.382102147753049, 48.86444373031399], [2.381938230143939, 48.864386017614095], [2.381777876886912, 48.8643292737016], [2.381613960007835, 48.864271559652316], [2.381453608819271, 48.86421481530654], [2.381293256616957, 48.86415807073589], [2.381129340802747, 48.864100356913276], [2.381114302503306, 48.86409694168888], [2.381100559051765, 48.86410478123453], [2.380958073795789, 48.864178943354155], [2.380814398032595, 48.86425368641255], [2.380671911961996, 48.86432784818148], [2.380528235377685, 48.86440259088631], [2.38038574849246, 48.86447675230461], [2.380242071086826, 48.864551494655856], [2.380099583397671, 48.86462565482421], [2.379955905170815, 48.864700396821846], [2.379951645178216, 48.86470419155935], [2.379884167052833, 48.86481836326142], [2.3798158712640802, 48.8649338653015], [2.379748392543649, 48.8650480369033], [2.379680096152773, 48.86516353884196], [2.379612616837286, 48.86527771034357], [2.37954431984428, 48.86539321218075], [2.379476839944543, 48.86550738268284], [2.379408542338688, 48.86562288531787], [2.379341061843781, 48.86573705571969], [2.379272763635778, 48.865852558253266], [2.379205282545796, 48.86596672855486], [2.379136983735638, 48.86608223098699], [2.379119722504144, 48.866087436763294], [2.378941896758688, 48.86604577218988], [2.378747412761682, 48.86599969595022], [2.378569587613499, 48.86595803082039], [2.378375104273354, 48.86591195397208], [2.378197279722451, 48.865870288285755], [2.378002797039171, 48.865824210828876], [2.377824973074811, 48.865782545485374], [2.377630491059144, 48.865736466520545], [2.3774526690551703, 48.86569480062769], [2.377358896623019, 48.865672582935424], [2.377334278375316, 48.86566626738982]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 29, "zemmour_eric": 73.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-34", "circ_bv": "06", "num_bureau": 34, "roussel_fabien": 25.0, "nb_emargement": 1307.0, "nb_procuration": 81.0, "nb_vote_blanc": 10.0, "jadot_yannick": 120.0, "le_pen_marine": 71.0, "nb_exprime": 1295.0, "nb_vote_nul": 1.0, "arr_bv": "11", "arthaud_nathalie": 8, "nb_inscrit": 1764.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1306, "quartier_bv": "42", "geo_point_2d": [48.86546361125782, 2.3807340638198236], "melenchon_jean_luc": 562.0, "poutou_philippe": 9.0, "macron_emmanuel": 336.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.396732701622734, 48.83401787000693], [2.396720473551772, 48.83400854936499], [2.396717792349571, 48.833977013084606], [2.396708343296601, 48.83386588479848], [2.396698662597869, 48.83373687234662], [2.3966865338279773, 48.833594207750146], [2.396676853233673, 48.833465195265205], [2.396672434733228, 48.83345899973021], [2.396597419052047, 48.83341376543596], [2.396554675826557, 48.83339085789259], [2.396535093818586, 48.83339168544156], [2.396399847275098, 48.83349707239949], [2.3962668907941103, 48.83360464722189], [2.396131643145461, 48.833710034755825], [2.395998686930095, 48.833817609266525], [2.395863436834836, 48.83392299557094], [2.395730479512392, 48.83403057066235], [2.395711493018926, 48.8340319487994], [2.395586729490312, 48.83396704974121], [2.395468330051017, 48.833904236864676], [2.395343568493177, 48.83383933755233], [2.395225168274685, 48.833776524421], [2.395225096513716, 48.833776486284805], [2.395074655881522, 48.833697131738624], [2.3949432742923102, 48.833627430072404], [2.394902060131402, 48.833601706565716], [2.394875240033221, 48.833612270633964], [2.394816779982423, 48.833649937086314], [2.394699138747239, 48.833726578427914], [2.394554863469871, 48.83381953693065], [2.394437221466862, 48.83389617800303], [2.394292945242579, 48.83398913707503], [2.394175302471735, 48.83406577787824], [2.394173954298329, 48.83406678643334], [2.394058936205458, 48.83416711800795], [2.393941883961651, 48.834270355800186], [2.393897812487401, 48.834281931255994], [2.393891656096286, 48.834309345093324], [2.393774601839529, 48.83441258270184], [2.393664995484045, 48.83450852362106], [2.393547940341695, 48.83461176009005], [2.3934383331397733, 48.83470770168381], [2.39332127710116, 48.83481093791263], [2.393211667700952, 48.83490687927464], [2.3931020592700403, 48.835002819635655], [2.392985001892261, 48.83510605640746], [2.392875392625356, 48.83520199654362], [2.392758334351391, 48.83530523307523], [2.392757048742884, 48.835306596280866], [2.392662993289373, 48.83542962399045], [2.392570123049734, 48.83555238422688], [2.392476066701073, 48.83567541266173], [2.392383194231464, 48.835798171819896], [2.392289138360445, 48.83592120008764], [2.392196265002109, 48.83604395997295], [2.392170594349353, 48.83607753679458], [2.392168686083068, 48.83608462577831], [2.392228137801482, 48.836104391914375], [2.392361833650806, 48.836161970335084], [2.3925592596253162, 48.83624598529678], [2.392692956193088, 48.83630356423938], [2.392890383237577, 48.836387578643894], [2.393024080534281, 48.836445157209134], [2.393040081322467, 48.83644462233938], [2.393152743593052, 48.836384583150945], [2.393249126141999, 48.836332402657575], [2.393249541467288, 48.836332186218925], [2.393412158702465, 48.83625090987439], [2.393575001111577, 48.8361695571018], [2.393737617331933, 48.836088280303], [2.393900458725049, 48.83600692707547], [2.394063072568363, 48.83592564981549], [2.394225914307811, 48.83584429614], [2.394388527136216, 48.83576301842577], [2.394551366486903, 48.8356816651878], [2.39471397967327, 48.83560038612689], [2.394876818007977, 48.83551903243404], [2.3950394301690983, 48.835437753818155], [2.395202267498367, 48.835356398771076], [2.3953648786445862, 48.83527511970095], [2.395527714957877, 48.83519376419902], [2.395690325089401, 48.835112484674646], [2.395853160386616, 48.83503112871782], [2.396015768141045, 48.83494984873234], [2.396178602411977, 48.83486849321999], [2.396179421491651, 48.83486811422551], [2.396322943896226, 48.83480675462833], [2.396471831468417, 48.8347421698259], [2.396615353182032, 48.83468080987092], [2.396764240032209, 48.834616224697236], [2.396770353863233, 48.83460813606528], [2.396756534508336, 48.83446519415264], [2.396744405400089, 48.83432253055419], [2.396730586181754, 48.834179589501375], [2.396718457210975, 48.83403692586389], [2.396732701622734, 48.83401787000693]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 58, "zemmour_eric": 60.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-28", "circ_bv": "08", "num_bureau": 28, "roussel_fabien": 29.0, "nb_emargement": 1042.0, "nb_procuration": 51.0, "nb_vote_blanc": 16.0, "jadot_yannick": 71.0, "le_pen_marine": 91.0, "nb_exprime": 1020.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 7, "nb_inscrit": 1405.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1042, "quartier_bv": "46", "geo_point_2d": [48.83490468131336, 2.3945604133615235], "melenchon_jean_luc": 362.0, "poutou_philippe": 10.0, "macron_emmanuel": 285.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.384971230562931, 48.86512653144118], [2.385020720746342, 48.865147113563054], [2.38520940149306, 48.86519271364148], [2.385397759230876, 48.8652382209267], [2.385586440637594, 48.86528382040699], [2.3857747976710773, 48.86532932708809], [2.385963479737788, 48.86537492597022], [2.386151838793122, 48.86542043206115], [2.386340521519721, 48.86546603034514], [2.386528881233909, 48.86551153583899], [2.386717564620492, 48.86555713352483], [2.386905923630324, 48.86560263841456], [2.387094607676885, 48.86564823550222], [2.387282968708559, 48.865693739801806], [2.387471653415095, 48.86573933629133], [2.387660013742399, 48.865784839986766], [2.387675810327897, 48.86579027278102], [2.387691438138817, 48.86578211477559], [2.387754590903197, 48.86574917574227], [2.387822791953359, 48.86571410048225], [2.387827206413689, 48.86571011110374], [2.387897435718771, 48.86558408326925], [2.387968097306596, 48.86545743254971], [2.3880383272933, 48.86533140461073], [2.388108988195872, 48.86520475377912], [2.388179216138013, 48.86507872572175], [2.388249876366006, 48.86495207387874], [2.388255026854549, 48.86494773390399], [2.388436305088975, 48.86486676275309], [2.38862087316908, 48.864784763995196], [2.388802150267797, 48.864703792278235], [2.388986718547114, 48.86462179385037], [2.388987705663117, 48.8646213114469], [2.388998042520645, 48.86461095074627], [2.388983708189006, 48.86459766714032], [2.388928421415689, 48.864518589973194], [2.38887480211457, 48.864442284965], [2.388872950570929, 48.86444034462432], [2.388718325770417, 48.86431668512338], [2.388553108389803, 48.864184819654824], [2.388556374357587, 48.86417147032398], [2.388703176890671, 48.86411075743127], [2.38884822978297, 48.86404996347495], [2.388995030270578, 48.86398925021061], [2.389140083846947, 48.86392845590085], [2.389144091981703, 48.86391585229692], [2.389096557201391, 48.86386913527346], [2.3890616209357622, 48.86383411373171], [2.389060684513371, 48.86383329684568], [2.388916003701893, 48.86372113421362], [2.388763247159459, 48.86360373734552], [2.388618567625864, 48.863491574330624], [2.388465813800376, 48.86337417616622], [2.388467531881587, 48.86336135402749], [2.388515431747769, 48.86333553673329], [2.388569042355932, 48.86330477703068], [2.38856653109425, 48.863290063549286], [2.388401176137312, 48.8632316490299], [2.388230310571182, 48.86317183910736], [2.388064956355907, 48.86311342501649], [2.387894090200575, 48.863053614600595], [2.387728736737416, 48.862995200038945], [2.387557872718856, 48.86293538914366], [2.387512338283151, 48.86291930249967], [2.387504521172494, 48.86291742873275], [2.387471160080744, 48.86289732315612], [2.387447077798647, 48.86289760190264], [2.38743790382218, 48.86290180703948], [2.387426484214429, 48.86292380137418], [2.38736476858499, 48.86300624029148], [2.387269590519347, 48.863114025804244], [2.387268603167092, 48.86311499293862], [2.387148279000905, 48.86322004870109], [2.387024547599943, 48.863325829740674], [2.386904222454564, 48.863430885237754], [2.386780490067907, 48.863536665105634], [2.386660163943531, 48.86364172033731], [2.38653643055, 48.86374750083202], [2.386416103446412, 48.86385255579839], [2.386292369067175, 48.86395833512131], [2.386172040984569, 48.864063389822306], [2.38604830559843, 48.86416916977206], [2.385927976536594, 48.86427422420767], [2.385800067043392, 48.864388839186695], [2.385679736973595, 48.864493893351856], [2.3855518263842, 48.86460850894215], [2.38543149530653, 48.86471356283687], [2.385303583642242, 48.86482817723986], [2.3851832515565903, 48.86493323086417], [2.385055338806794, 48.86504784497906], [2.384975656722649, 48.86511740878503], [2.384971230562931, 48.86512653144118]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 19, "zemmour_eric": 66.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-62", "circ_bv": "06", "num_bureau": 62, "roussel_fabien": 27.0, "nb_emargement": 1102.0, "nb_procuration": 48.0, "nb_vote_blanc": 19.0, "jadot_yannick": 61.0, "le_pen_marine": 61.0, "nb_exprime": 1082.0, "nb_vote_nul": 1.0, "arr_bv": "20", "arthaud_nathalie": 13, "nb_inscrit": 1505.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "79", "geo_point_2d": [48.864436733864835, 2.3872609054679588], "melenchon_jean_luc": 575.0, "poutou_philippe": 8.0, "macron_emmanuel": 215.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.388367632499064, 48.86099808145293], [2.388363139138455, 48.86101231219584], [2.388336509492688, 48.86106791475192], [2.388271969687244, 48.86120022824222], [2.388211565544502, 48.86132634745895], [2.388147026464702, 48.861458660858005], [2.388086621719776, 48.861584779982294], [2.388022080650086, 48.861717092376836], [2.387961676655609, 48.86184321231491], [2.387897134948454, 48.86197552461121], [2.387836728999336, 48.862101643550574], [2.387772188007151, 48.862233956654926], [2.387711781456026, 48.86236007550177], [2.387647238473811, 48.86249238760165], [2.387586832673018, 48.8626185072623], [2.387522289053413, 48.86275081926388], [2.387461882660972, 48.86287693793274], [2.387471160080744, 48.86289732315612], [2.387504521172494, 48.86291742873275], [2.387512338283151, 48.86291930249967], [2.387557872718856, 48.86293538914366], [2.387728736737416, 48.862995200038945], [2.387894090200575, 48.863053614600595], [2.388064956355907, 48.86311342501649], [2.388230310571182, 48.86317183910736], [2.388401176137312, 48.8632316490299], [2.38856653109425, 48.863290063549286], [2.388569042355932, 48.86330477703068], [2.388515431747769, 48.86333553673329], [2.388467531881587, 48.86336135402749], [2.388465813800376, 48.86337417616622], [2.388618567625864, 48.863491574330624], [2.388763247159459, 48.86360373734552], [2.388916003701893, 48.86372113421362], [2.389060684513371, 48.86383329684568], [2.3890616209357622, 48.86383411373171], [2.389096557201391, 48.86386913527346], [2.389144091981703, 48.86391585229692], [2.389140083846947, 48.86392845590085], [2.388995030270578, 48.86398925021061], [2.38884822978297, 48.86404996347495], [2.388703176890671, 48.86411075743127], [2.388556374357587, 48.86417147032398], [2.388553108389803, 48.864184819654824], [2.388718325770417, 48.86431668512338], [2.388872950570929, 48.86444034462432], [2.38887480211457, 48.864442284965], [2.388928421415689, 48.864518589973194], [2.388983708189006, 48.86459766714032], [2.388998042520645, 48.86461095074627], [2.389011940778442, 48.86460992810031], [2.38920966287733, 48.86450384196531], [2.389409414674908, 48.86439722175118], [2.389430432006675, 48.86440054412174], [2.389505942252689, 48.86451200878074], [2.389579132485197, 48.86462000717652], [2.389654643367367, 48.8647314717196], [2.389727835579551, 48.86483947000998], [2.389736972126768, 48.86484452412906], [2.389961101677696, 48.86488150550508], [2.3901749297984862, 48.86491654715197], [2.390388756833323, 48.86495158930805], [2.390612888670533, 48.86498856946689], [2.39061444570777, 48.86498889126483], [2.39075925609813, 48.86502519563928], [2.390897321237437, 48.86506003555589], [2.391042132022684, 48.86509633958575], [2.3911801975291063, 48.8651311800731], [2.391185988309629, 48.86513175273215], [2.391239912631582, 48.86512934519377], [2.391294982611979, 48.865127584687876], [2.391320524990081, 48.86513006097341], [2.391325742180515, 48.86512687506177], [2.39146506851596, 48.86512241954328], [2.391631791267593, 48.86511727393461], [2.3918261888696453, 48.86511105641712], [2.39199291154924, 48.865105910305346], [2.392187309065786, 48.86509969220125], [2.392354031683827, 48.86509454468708], [2.392354123040823, 48.86509454245291], [2.392567441646514, 48.86508849893732], [2.392780571439567, 48.86508262765657], [2.392993889946993, 48.86507658338089], [2.393207019643131, 48.86507071134066], [2.393420336689292, 48.86506466629792], [2.393633466278136, 48.865058794397505], [2.393846784589001, 48.86505274860155], [2.394059914091578, 48.86504687504241], [2.394061587779984, 48.86504689700621], [2.394222006384551, 48.86505550276427], [2.394386285320147, 48.865064121545586], [2.3943884295391102, 48.865064122502936], [2.394576329201069, 48.86505455536922], [2.394762565106706, 48.86504492646599], [2.3949488009329523, 48.86503529817218], [2.395136700398473, 48.865025729259145], [2.395322936086941, 48.86501610038303], [2.395510834041072, 48.86500653177481], [2.395512056929905, 48.86500651906519], [2.395512916005339, 48.86500649372594], [2.395513232288747, 48.86500649082675], [2.395764598053955, 48.86500422124587], [2.396024901893857, 48.865001602332256], [2.396025545490071, 48.865001585794666], [2.396227125353329, 48.86499329202221], [2.396425251050361, 48.86498510639837], [2.396626830796633, 48.864976811053324], [2.396824956368076, 48.8649686247677], [2.3970230818669442, 48.86496043905329], [2.397224662785652, 48.86495214270802], [2.39742278816933, 48.86494395543252], [2.397624367597512, 48.864935658407056], [2.397822492845384, 48.8649274713691], [2.39802407214612, 48.86491917367028], [2.398222197278766, 48.86491098507122], [2.398423776452043, 48.86490268669909], [2.3984712624924622, 48.86491594152737], [2.398478515562919, 48.86491123755899], [2.398500446240623, 48.86488369126848], [2.39855816990018, 48.864810127537176], [2.398539669568632, 48.864803380346224], [2.398491472139422, 48.864808889402276], [2.398287035663076, 48.864809681117436], [2.398086211002094, 48.86481063364343], [2.397881773149765, 48.86481142465949], [2.3976809484745543, 48.864812376505476], [2.397678978915415, 48.864812479010894], [2.397464116876905, 48.86483403298478], [2.397257410076705, 48.864855490945374], [2.397255238688377, 48.864855600521416], [2.397076198068793, 48.864855148370204], [2.396898883963597, 48.86485451129321], [2.396719841977353, 48.8648540595013], [2.396542527880225, 48.86485342189633], [2.396365212413933, 48.86485278492112], [2.396186171811763, 48.86485233143843], [2.39600885636407, 48.864851693035966], [2.395829815758329, 48.8648512399195], [2.39565250031862, 48.8648506009891], [2.395473459730169, 48.86485014644025], [2.395467931793571, 48.86484935857515], [2.395287127229216, 48.86479583104366], [2.395109237723392, 48.864743334222716], [2.394931347213105, 48.86469083712804], [2.394750543750145, 48.86463730877826], [2.394572653963354, 48.86458481114539], [2.394391852610553, 48.864531281356214], [2.394213963536704, 48.86447878408448], [2.39403316155736, 48.86442525374144], [2.393855273217472, 48.86437275503224], [2.3936744733272732, 48.864319225048405], [2.393496585710889, 48.86426672580106], [2.393315785194153, 48.86421319526334], [2.393137898301379, 48.86416069547782], [2.392957099894723, 48.86410716350077], [2.392951198353207, 48.86409411200271], [2.393053079178947, 48.86398906762497], [2.3931594045961, 48.86387970366812], [2.393261284582835, 48.86377465909281], [2.393367609125228, 48.863665294929824], [2.393469486909814, 48.86356025015002], [2.39357581057756, 48.863450885780914], [2.39367768888611, 48.86334584081047], [2.393784011679317, 48.86323647623526], [2.393885887785749, 48.8631314310603], [2.393992209714687, 48.86302206537966], [2.394094086334629, 48.862917020913365], [2.39420040738894, 48.862807655026586], [2.394302283180279, 48.86270260946348], [2.3944086033496212, 48.86259324426984], [2.394510476938884, 48.86248819850228], [2.394616796233525, 48.86237883310257], [2.394718670346769, 48.86227378714431], [2.394824988766816, 48.86216442153849], [2.394926862041025, 48.8620593753827], [2.39498021746589, 48.86200448933296], [2.394999506414698, 48.861985223094436], [2.394977514292994, 48.86197281699703], [2.394800929786955, 48.86191045134502], [2.394624944721896, 48.8618480309011], [2.394448362423859, 48.86178566472874], [2.394272378192273, 48.86172324465864], [2.394095796749686, 48.861660877059784], [2.393919813362026, 48.86159845646425], [2.393743232764439, 48.861536088338134], [2.393567250220705, 48.86147366721711], [2.393390670468119, 48.86141129856376], [2.393214688768212, 48.861348876917276], [2.393038108487263, 48.86128650862909], [2.392862129004751, 48.86122408556476], [2.392685549568802, 48.86116171674939], [2.392509570919736, 48.8610992940589], [2.392332992339174, 48.861036923817], [2.392157014534135, 48.86097450060109], [2.391980436798582, 48.86091212983198], [2.391804458474493, 48.860849706083656], [2.391627882946928, 48.860787334794274], [2.391451905466771, 48.86072491052052], [2.391275330773704, 48.86066253960325], [2.391099354147988, 48.86060011390473], [2.390922780299925, 48.86053774246027], [2.390746804507632, 48.8604753171356], [2.390570231515089, 48.86041294426466], [2.390394256566629, 48.86035051841462], [2.390217683056232, 48.86028814500951], [2.390041710314673, 48.860225718640955], [2.389865137649291, 48.860163344708674], [2.389689165751665, 48.860100917814705], [2.38951259392066, 48.860038544254536], [2.389336622877607, 48.859976115935815], [2.389160051891612, 48.859913741848494], [2.388984080319001, 48.85985131389671], [2.38893891453657, 48.859835365422676], [2.388928882507698, 48.85984154755812], [2.388913061921595, 48.85987525786928], [2.38885266222981, 48.86000137756726], [2.388786560529212, 48.86013727455697], [2.388726158864491, 48.860263394154316], [2.388660056501601, 48.86039929104204], [2.388599655579203, 48.86052541145201], [2.388533552553911, 48.8606613082377], [2.388473149669099, 48.860787427647814], [2.388407045981393, 48.86092332433151], [2.3883732734750662, 48.86099384109565], [2.388367632499064, 48.86099808145293]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 22, "zemmour_eric": 47.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-61", "circ_bv": "06", "num_bureau": 61, "roussel_fabien": 29.0, "nb_emargement": 1182.0, "nb_procuration": 67.0, "nb_vote_blanc": 12.0, "jadot_yannick": 104.0, "le_pen_marine": 38.0, "nb_exprime": 1170.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1492.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1185, "quartier_bv": "79", "geo_point_2d": [48.86277971303473, 2.3911906882268377], "melenchon_jean_luc": 588.0, "poutou_philippe": 11.0, "macron_emmanuel": 286.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.375894696142989, 48.85133649549177], [2.37592890231595, 48.85137744878726], [2.375998619091532, 48.85149110031844], [2.376067907681635, 48.85160366134583], [2.376137623700397, 48.85171731276578], [2.376206912891449, 48.851829873689766], [2.376276201029962, 48.85194243365583], [2.376345919318898, 48.85205608492692], [2.376415209410451, 48.85216864569599], [2.37648492694257, 48.852282296855876], [2.376554217635089, 48.852394857521546], [2.376623937146562, 48.852508507685116], [2.376624918036577, 48.852512295470966], [2.376620303110855, 48.852578515912725], [2.376615268516284, 48.85265247488773], [2.376624232147791, 48.852661332540244], [2.376676091649337, 48.852673756555276], [2.376724416433184, 48.85268534732217], [2.376732411032635, 48.85269045231836], [2.376816634533569, 48.85282905935691], [2.376903422066179, 48.852969025998554], [2.376987646472263, 48.853107632882], [2.377074434917446, 48.85324760026382], [2.377068870302674, 48.85326642170342], [2.377076716909154, 48.853267956376364], [2.377208902368087, 48.85326492294899], [2.377384282267225, 48.85325933065124], [2.377563061137103, 48.853251677376605], [2.377738439580233, 48.853246085451886], [2.377917218363384, 48.853238430748696], [2.378092596723921, 48.85323283830486], [2.37809589196178, 48.85323296155547], [2.378260283282035, 48.85325247921251], [2.378403103030043, 48.853265425439176], [2.378545924201072, 48.853278372401604], [2.378710314481094, 48.85329788853321], [2.3787207892376783, 48.85330966506793], [2.378650177414543, 48.8534451211496], [2.378581531205082, 48.85357628578647], [2.378510920021327, 48.85371174176052], [2.378442271758119, 48.85384290537967], [2.37844981771934, 48.85385411631546], [2.378626381409811, 48.853903692728494], [2.378798856879839, 48.853952352798736], [2.378975421246084, 48.8540019277931], [2.379147897367218, 48.85405058735594], [2.379324462398404, 48.854100161830864], [2.37949693917064, 48.854148820886294], [2.379673504866765, 48.854198394841816], [2.379845982290099, 48.85424705338981], [2.379870847369093, 48.85425372952965], [2.37987758559151, 48.85425119230834], [2.379952845957254, 48.85415852292271], [2.380037927516244, 48.85405399786584], [2.380137834467415, 48.85393098064723], [2.380222913921102, 48.85382645543031], [2.380307994396148, 48.853721930150215], [2.380407900073058, 48.85359891266935], [2.380401684230819, 48.853586525198196], [2.380361775908946, 48.85357415031811], [2.380309435847463, 48.853563253428376], [2.380299296537302, 48.85355051017372], [2.3802849862685163, 48.85354641595964], [2.380155297256721, 48.8535194157014], [2.379989840655358, 48.853490453752364], [2.379807813463774, 48.853452555170435], [2.379642357267747, 48.85342359273916], [2.379476901255747, 48.85339463007836], [2.379294873398478, 48.85335673160506], [2.379286559425583, 48.85335186525503], [2.379184955445764, 48.85320579070415], [2.379078736359561, 48.85305100346001], [2.379077786524222, 48.85304905413287], [2.379039716290943, 48.85292321084847], [2.3789998326968362, 48.852790474486774], [2.378961762840632, 48.8526646311483], [2.37892188100577, 48.85253189473682], [2.378883810164078, 48.85240605133719], [2.378843928725588, 48.85227331486887], [2.378805859623817, 48.85214747142228], [2.378765977219143, 48.85201473489001], [2.378727908494531, 48.85188889138937], [2.378688026486222, 48.85175615480027], [2.378649958138766, 48.85163031124558], [2.3786100765377443, 48.85149757370034], [2.378610069949386, 48.851497554779684], [2.378572001979106, 48.85137171117092], [2.378537298822094, 48.85125753073498], [2.378499231202797, 48.8511316870759], [2.3784645297278, 48.85101750660126], [2.378426461096961, 48.850891662884834], [2.378391759941147, 48.850777482364435], [2.378369694835437, 48.850737647780164], [2.378355253114356, 48.85073825265868], [2.37826521487801, 48.85076027495402], [2.378064923768228, 48.850808801868844], [2.377898835611074, 48.85084942379898], [2.377698543817563, 48.85089795009657], [2.377532455079928, 48.85093857241417], [2.377366366083348, 48.85097919449971], [2.377166073295209, 48.85102771990032], [2.377094696480285, 48.851022568261946], [2.377075086260322, 48.85104557864996], [2.376874792945689, 48.85109410356006], [2.376695994621549, 48.8511387415886], [2.376495700595926, 48.8511872658601], [2.376316900253912, 48.85123190421063], [2.3761166055172, 48.8512804278434], [2.37593780590419, 48.8513250647315], [2.375895861922005, 48.85133553566721], [2.375894696142989, 48.85133649549177]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 39, "zemmour_eric": 65.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-7", "circ_bv": "07", "num_bureau": 7, "roussel_fabien": 27.0, "nb_emargement": 1220.0, "nb_procuration": 66.0, "nb_vote_blanc": 17.0, "jadot_yannick": 124.0, "le_pen_marine": 51.0, "nb_exprime": 1199.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1542.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1220, "quartier_bv": "44", "geo_point_2d": [48.85238315926177, 2.3779614605750194], "melenchon_jean_luc": 420.0, "poutou_philippe": 4.0, "macron_emmanuel": 411.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.357370736444245, 48.852774739702326], [2.357369098227982, 48.85277496833319], [2.357334132497721, 48.85278697936872], [2.357164214117259, 48.85284381230726], [2.356993032273776, 48.85290261229529], [2.356823113144328, 48.852959444743576], [2.356651930524975, 48.85301824513676], [2.356482010646337, 48.85307507709472], [2.356310825910647, 48.853133876087185], [2.356140905282922, 48.85319070755482], [2.355969721134021, 48.85324950695982], [2.355799799757312, 48.85330633793719], [2.355628614854759, 48.85336513594873], [2.355458692717743, 48.8534219673351], [2.355287507050424, 48.853480764852534], [2.355286266338328, 48.85348124741567], [2.355113096195931, 48.85355533289008], [2.354975243693502, 48.85361567302453], [2.354837390871809, 48.85367601299692], [2.354664219443946, 48.85375009780873], [2.354526365906465, 48.853810437415454], [2.35442549082582, 48.85385359188002], [2.35441391410003, 48.853856720324806], [2.354402635048201, 48.85386343249823], [2.354330337795962, 48.853894361472975], [2.354158144256715, 48.85396739138442], [2.353984970906019, 48.85404147429446], [2.353812775033783, 48.85411450369184], [2.353639602065847, 48.854188586099625], [2.353467405223518, 48.85426161499033], [2.35329423127565, 48.85433569688848], [2.353122033463023, 48.8544087252725], [2.352948858535217, 48.85448280666099], [2.352776659752393, 48.85455583453833], [2.35260348248194, 48.85462991540986], [2.352507750853757, 48.85467051402963], [2.352487307873652, 48.85468902989994], [2.352517355194923, 48.854726548906], [2.352582720935619, 48.854845734949826], [2.35264969135435, 48.8549654485512], [2.352715057686269, 48.855084635396395], [2.352782028716095, 48.85520434889799], [2.352847395661591, 48.855323534745956], [2.352914365939786, 48.855443248140396], [2.352979733476419, 48.855562434789725], [2.353046705728556, 48.855682148091745], [2.353112073878776, 48.855801333743834], [2.353179045379186, 48.85592104693865], [2.353244414120664, 48.85604023339213], [2.353311387595044, 48.85615994649446], [2.3533767569501203, 48.85627913195071], [2.353443729672775, 48.85639884494589], [2.353509099619235, 48.85651803120349], [2.353576074315786, 48.856637744106166], [2.353641444875853, 48.856756929366576], [2.353708418820787, 48.85687664216206], [2.353702764167097, 48.85689552676734], [2.353723712559626, 48.85689178888768], [2.353751973676154, 48.85690855432528], [2.35385653153928, 48.85696273734512], [2.353948850006792, 48.8570175017233], [2.353952330219074, 48.85702074918153], [2.354025948222533, 48.85713804240847], [2.354083469244832, 48.857246502505845], [2.354140989154871, 48.857354961658345], [2.354214608044097, 48.85747225563319], [2.354216179838799, 48.857474320030356], [2.354244528267039, 48.857502003923514], [2.354250170108948, 48.85750602658473], [2.354311229522871, 48.85748509722654], [2.354480561351359, 48.85740799845544], [2.354648753649056, 48.85733141761779], [2.354818083115781, 48.85725431835109], [2.3549862744213153, 48.85717773702845], [2.354987474405378, 48.85717724885391], [2.355124906087986, 48.85712678234778], [2.355323448408843, 48.85705511627591], [2.355452479347352, 48.8570089695802], [2.355651019405957, 48.85693730294989], [2.355780051125364, 48.856891155903405], [2.355781918439646, 48.856890597566796], [2.355953621463316, 48.856849245155004], [2.356123507480554, 48.85680832879783], [2.356293393231077, 48.85676741219794], [2.356465095453879, 48.85672605814843], [2.356634980667916, 48.856685141060574], [2.356806682348496, 48.85664378651785], [2.356826597705134, 48.85664145182579], [2.356831063936335, 48.856635718188116], [2.356832332637721, 48.85662778374044], [2.356743699550717, 48.85647976612221], [2.356655123051421, 48.85633184225257], [2.3566629873531753, 48.85632012282181], [2.356857995423179, 48.85627156828506], [2.357053172653375, 48.85622297117041], [2.357248178633326, 48.85617441598621], [2.357443355135688, 48.85612581823088], [2.357638361751286, 48.856077262413926], [2.3578335375258073, 48.856028664017956], [2.358028543414194, 48.85598010756088], [2.358223718460868, 48.855931508524286], [2.358418723622038, 48.85588295142712], [2.3586138979407583, 48.85583435174987], [2.358808902374707, 48.855785794012604], [2.359004075965672, 48.855737193694665], [2.359199079672392, 48.855688635317335], [2.359394252535493, 48.855640034358785], [2.35958925551498, 48.85559147534136], [2.359784427650213, 48.85554287374218], [2.359793023303441, 48.85553612153472], [2.3597870156175063, 48.85552392116847], [2.359688016173804, 48.85541154271606], [2.359589206704339, 48.85529937743179], [2.359490208124834, 48.85518699789377], [2.359391398144159, 48.85507483241617], [2.359292401769761, 48.85496245359834], [2.359193592640695, 48.85485028793479], [2.35909459576766, 48.85473790802401], [2.358995788841946, 48.854625743081044], [2.358896792822232, 48.85451336298388], [2.358797986759062, 48.85440119695564], [2.35869899158149, 48.85428881757146], [2.3586001850071963, 48.85417665134985], [2.358501192056689, 48.85406427088735], [2.358402386333967, 48.85395210447976], [2.358303394225468, 48.85383972473017], [2.358204589354306, 48.85372755813664], [2.358105596747371, 48.85361517729412], [2.358006794090445, 48.853503010521905], [2.357907802325599, 48.85339063039233], [2.357809000520308, 48.853278463434116], [2.357710009608619, 48.85316608311822], [2.357611207292082, 48.853053915966726], [2.357512218607296, 48.85294153457251], [2.357413417142282, 48.85282936723505], [2.357370736444245, 48.852774739702326]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 71, "zemmour_eric": 97.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "4-1", "circ_bv": "07", "num_bureau": 1, "roussel_fabien": 23.0, "nb_emargement": 951.0, "nb_procuration": 70.0, "nb_vote_blanc": 5.0, "jadot_yannick": 52.0, "le_pen_marine": 68.0, "nb_exprime": 941.0, "nb_vote_nul": 5.0, "arr_bv": "04", "arthaud_nathalie": 4, "nb_inscrit": 1268.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 951, "quartier_bv": "14", "geo_point_2d": [48.85509426907016, 2.3559369291338337], "melenchon_jean_luc": 256.0, "poutou_philippe": 14.0, "macron_emmanuel": 316.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.2705804494630533, 48.8416822759823], [2.2705641578884173, 48.84167338258983], [2.270466218892702, 48.84157312240882], [2.2703544927412462, 48.841457477934625], [2.270256555916899, 48.841357217570874], [2.270144830680862, 48.841241573777815], [2.270046893315769, 48.84114131231542], [2.269935170370176, 48.841025668312476], [2.269837233801489, 48.84092540755831], [2.269837069980241, 48.840925235677716], [2.269725346613524, 48.84080959054884], [2.269636377276845, 48.84071382904626], [2.269524654808574, 48.84059818370801], [2.269416038187818, 48.840481360154556], [2.269374012625503, 48.84043596397675], [2.26935166957181, 48.840428705377754], [2.269306073621572, 48.84046246901741], [2.2691256713317562, 48.8405340047371], [2.268949100485105, 48.84060540620818], [2.268768697210516, 48.84067694138035], [2.268592124015663, 48.84074834320637], [2.268411719769019, 48.840819876931725], [2.268235146963347, 48.84089127823001], [2.268054741719406, 48.840962812307176], [2.267878166590666, 48.841034212161794], [2.267701592340492, 48.841105611759524], [2.267521185622399, 48.841177145018314], [2.267344609036629, 48.84124854407165], [2.267164201333858, 48.84132007678296], [2.266987625137284, 48.84139147530856], [2.266807215087383, 48.84146300746395], [2.2667926133043332, 48.84146276777204], [2.266662171198841, 48.84140504604164], [2.266515689067219, 48.8413399966626], [2.266494356979502, 48.841342713273555], [2.266487203653404, 48.841348713191024], [2.266509015450503, 48.84142993071583], [2.266524665148307, 48.84148496120972], [2.266529483332767, 48.84149036809681], [2.266664294670237, 48.84156275043103], [2.266800528969011, 48.84163696705259], [2.266935341062081, 48.84170934907184], [2.267071577492461, 48.841783565383295], [2.267074808477804, 48.84179487589026], [2.267021472886071, 48.84185714895999], [2.266953370298711, 48.84193788554873], [2.266933104744261, 48.841940611471465], [2.266783985928099, 48.84186410899751], [2.266636597703895, 48.84178656197616], [2.266487478401336, 48.84171005911366], [2.26634009242904, 48.841632510825356], [2.266190974002344, 48.8415560075827], [2.266043588894171, 48.841478459817715], [2.265894471343536, 48.841401956194886], [2.265747087124808, 48.8413244071546], [2.265597970450028, 48.841247903151675], [2.265450587095406, 48.84117035463466], [2.265435804598161, 48.841169408559], [2.265250751708272, 48.84123296302659], [2.265073594122441, 48.84129479125172], [2.264888538995949, 48.84135834424423], [2.264711380554272, 48.84142017192601], [2.264534220329835, 48.84148199933365], [2.264349165243431, 48.84154555148948], [2.264325697943018, 48.8415565620836], [2.26433184215875, 48.84157612433784], [2.264389377805148, 48.84169888268747], [2.264445868257239, 48.84181935106235], [2.264502358957778, 48.841939820296886], [2.264559895419974, 48.842062577625136], [2.2646163866477, 48.842183046779574], [2.26467392227191, 48.8423058049172], [2.264730414039513, 48.84242627309221], [2.264787951563178, 48.84254903115657], [2.264844443857981, 48.842669499251514], [2.264901981918737, 48.8427922572343], [2.264958474728062, 48.84291272614841], [2.2650160133386, 48.843035483150295], [2.265018573420399, 48.843038590916], [2.265111656398649, 48.84311847917756], [2.265210879969089, 48.843196885139925], [2.265303963524924, 48.84327677324051], [2.265403187673353, 48.843355179931514], [2.265413075623937, 48.84335840013785], [2.265608840345939, 48.8433637967409], [2.2657967066387448, 48.84336818941692], [2.26598457432562, 48.84337258180628], [2.266180339160161, 48.84337797747408], [2.26618791267873, 48.843376705453615], [2.266349250336197, 48.84331287737122], [2.266511401885425, 48.84324811961428], [2.266672738748777, 48.843184291088264], [2.266834889495908, 48.84311953288544], [2.266996226927437, 48.84305570392413], [2.267158375510179, 48.84299094526704], [2.267319712147487, 48.84292711586214], [2.2674818599156, 48.84286235765842], [2.267643195758792, 48.842798527809876], [2.267805342737455, 48.842733768260956], [2.267966677786429, 48.84266993796884], [2.2681288239632043, 48.84260517797404], [2.268141485282657, 48.84260467534012], [2.268281834880826, 48.84264650562706], [2.268412913676837, 48.84268367876951], [2.268543994034833, 48.842720850876134], [2.268684344268996, 48.84276268068654], [2.26868719777123, 48.84276382774022], [2.268713411848068, 48.84278047885027], [2.268725448163809, 48.842778977629784], [2.268887227802789, 48.84286356296092], [2.269040065869557, 48.84294645657439], [2.269201846539001, 48.84303104146734], [2.269354684247502, 48.84311393375881], [2.269368384482037, 48.84311533860867], [2.269555530776879, 48.843066057362286], [2.269751617118002, 48.84301596520192], [2.269767759953185, 48.843019253808166], [2.269879341647, 48.84312629259999], [2.269990450383142, 48.84323366565233], [2.270102033005942, 48.84334070331656], [2.270213142657858, 48.84344807614142], [2.270324726197053, 48.84355511357738], [2.270435838127467, 48.843662486183085], [2.2705474225829683, 48.84376952339076], [2.270658534066766, 48.84387689576073], [2.270770119438783, 48.843983932740095], [2.270881231838485, 48.84409130488257], [2.270992818126822, 48.84419834163364], [2.271103931442438, 48.84430571354862], [2.271215518647311, 48.84441275007143], [2.271326634241282, 48.84452012176721], [2.2714382223626, 48.844627158061705], [2.271549337510073, 48.84473452952173], [2.271567085722217, 48.844737362677805], [2.271745932188006, 48.84467333183046], [2.27191782938146, 48.844612087836026], [2.272096676348964, 48.84454805646544], [2.272268571354625, 48.844486811951874], [2.272447417461205, 48.844422780049776], [2.272619311641508, 48.84436153502537], [2.272798156887365, 48.84429750259175], [2.272970050242208, 48.844236257056515], [2.273026632472476, 48.84421373175207], [2.273017737473052, 48.84419623353697], [2.27290574593162, 48.84408093193355], [2.272808280546144, 48.843980165977975], [2.272710815537553, 48.84387939993391], [2.272598825355944, 48.84376409801044], [2.272501361156381, 48.84366333177622], [2.272389371902433, 48.84354802963432], [2.272291908511891, 48.84344726320993], [2.272179920185593, 48.84333196084961], [2.2720729737789718, 48.843225645874234], [2.271960987763153, 48.8431103441937], [2.271854042257876, 48.84300402900146], [2.271742055852751, 48.84288872618545], [2.271635111236142, 48.84278241167569], [2.27163487617283, 48.842782169213265], [2.271522890729266, 48.84266686616917], [2.271420366295251, 48.842557498013605], [2.271308381808879, 48.84244219474549], [2.271205858266943, 48.842332826384045], [2.27109387610043, 48.84221752290028], [2.27099135345056, 48.842108154333], [2.270991184679109, 48.84210804358121], [2.270885979277963, 48.84199840403937], [2.270788039065012, 48.84189814325172], [2.270682834514889, 48.841788503510635], [2.27058489507456, 48.84168824343711], [2.2705804494630533, 48.8416822759823]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 139, "zemmour_eric": 169.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-39", "circ_bv": "14", "num_bureau": 39, "roussel_fabien": 6.0, "nb_emargement": 1201.0, "nb_procuration": 62.0, "nb_vote_blanc": 8.0, "jadot_yannick": 72.0, "le_pen_marine": 61.0, "nb_exprime": 1193.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 3, "nb_inscrit": 1527.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1202, "quartier_bv": "61", "geo_point_2d": [48.842424874587216, 2.268639220791697], "melenchon_jean_luc": 141.0, "poutou_philippe": 2.0, "macron_emmanuel": 556.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.372450360997428, 48.84015615094252], [2.37250601811843, 48.840202289716814], [2.372664699892184, 48.840282919731166], [2.372823570998281, 48.84036404786667], [2.372982253755639, 48.84044467744814], [2.373141124486723, 48.840525805143045], [2.373299808238602, 48.84060643339226], [2.373458681319359, 48.840687560660776], [2.373617366044238, 48.840768189376405], [2.373776238749879, 48.84084931620435], [2.373934924458475, 48.840929944487016], [2.374093798151453, 48.84101107088145], [2.374252484854566, 48.841091697831885], [2.374411360897344, 48.84117282379995], [2.374570048573382, 48.841253451216765], [2.374728924241044, 48.8413345767442], [2.374887612900812, 48.84141520372807], [2.375046490918292, 48.841496328829145], [2.375205180572475, 48.84157695448074], [2.375364058204159, 48.841658080040446], [2.375522748842071, 48.84173870525917], [2.375681628834268, 48.84181982949316], [2.375840320445247, 48.84190045517823], [2.375999200062327, 48.8419815789716], [2.376157892657049, 48.84206220422367], [2.376316773261495, 48.84214332758351], [2.376317220302862, 48.8421435448614], [2.376475358252457, 48.842217311857695], [2.376645214849587, 48.842292767544215], [2.376803353716166, 48.84236653409706], [2.376973211274462, 48.84244198930779], [2.377131349695532, 48.84251575541012], [2.377301209577392, 48.842591210152165], [2.377459348915448, 48.84266497581106], [2.377629208406819, 48.8427404291709], [2.377787350013629, 48.84281419529271], [2.377957210466064, 48.842889648176744], [2.378115351638199, 48.84296341294875], [2.378285214403582, 48.84303886626333], [2.378443356492609, 48.843112630591854], [2.378444511639508, 48.84311311415362], [2.378614374017528, 48.84318856608436], [2.37878729478365, 48.843253135209224], [2.378965510259309, 48.843319935894705], [2.379138431896211, 48.84338450450444], [2.379316649644365, 48.84345130376671], [2.379489572152148, 48.8435158718613], [2.379667789426432, 48.843582671484874], [2.379783202776344, 48.84362576461216], [2.379813384725685, 48.84363693373674], [2.379861783857589, 48.84359124357303], [2.380006266818582, 48.843499754175056], [2.380150710082474, 48.8434085809665], [2.380295190667384, 48.84331709119762], [2.380439634271435, 48.843225918531665], [2.3805841138427972, 48.8431344283988], [2.380728556445876, 48.84304325446977], [2.380873035003794, 48.84295176397301], [2.381017475232705, 48.84286058967319], [2.381161954128812, 48.842769099718886], [2.381306393346077, 48.842677925055284], [2.381450869876829, 48.84258643383071], [2.381595309444953, 48.8424952588104], [2.381739784962179, 48.84240376722198], [2.381884223518663, 48.84231259183789], [2.382028698011811, 48.84222110078487], [2.382173134194176, 48.84212992503001], [2.382317609046865, 48.8420384327208], [2.382462044217609, 48.841947256602225], [2.382606516694307, 48.841855763922126], [2.3827509522159183, 48.84176458744683], [2.382895423668573, 48.84167309530217], [2.383039858178471, 48.84158191846312], [2.383184328628285, 48.84149042505529], [2.383328760764211, 48.8413992478455], [2.383473231562909, 48.84130775408077], [2.383617662676604, 48.84121657740658], [2.383762131099362, 48.841125083270995], [2.38390656257457, 48.84103390534082], [2.384051029983958, 48.84094241084135], [2.384195460447478, 48.84085123254742], [2.384339926843403, 48.84075973768415], [2.384484354922376, 48.840668559918804], [2.384628821667194, 48.84057706469867], [2.384773248745224, 48.84048588567032], [2.3849177131141452, 48.84039439007932], [2.385062140543056, 48.84030321069429], [2.385206603898636, 48.84021171473946], [2.385351030305384, 48.84012053589002], [2.385495492647428, 48.84002903957136], [2.385639916690801, 48.8399378594519], [2.385784379381847, 48.83984636277639], [2.385928802413678, 48.83975518229329], [2.386073262728975, 48.83966368524695], [2.386217686101006, 48.83957250530644], [2.386362145402888, 48.839481007896296], [2.386506567774082, 48.83938982669281], [2.386651026062454, 48.83929832891884], [2.386795447422124, 48.83920714735167], [2.3868315320967453, 48.83918448043473], [2.386831213196435, 48.839180665504834], [2.386830770201563, 48.83917535429965], [2.386789939710176, 48.83915624310372], [2.386650990310212, 48.83906355205829], [2.386509844453554, 48.838970337839186], [2.386370897398988, 48.838877647359276], [2.3862297525466483, 48.83878443279418], [2.386090806496334, 48.83869174107419], [2.385949662637715, 48.83859852706242], [2.385810716218767, 48.838505834994685], [2.385669573364349, 48.838412620636916], [2.385530629301447, 48.838319928235414], [2.385389487451424, 48.83822671353166], [2.385250544382065, 48.838134020789425], [2.385109402184554, 48.838040804833426], [2.384970460098225, 48.8379481126497], [2.384829320267383, 48.83785489635471], [2.384690379185395, 48.83776220293099], [2.384549240348111, 48.837668987189325], [2.384410298897377, 48.83757629341783], [2.384269161064461, 48.837483077330184], [2.384130221969612, 48.83739038322501], [2.383989085140955, 48.83729716679138], [2.383850147039713, 48.837204472345455], [2.383709011215305, 48.837111255565894], [2.383691715848982, 48.83711017445558], [2.383652960620819, 48.83712756452758], [2.383611997742268, 48.83714799295403], [2.383594386818603, 48.83714732750851], [2.383452799115011, 48.83705827124649], [2.383322178421213, 48.83697723701695], [2.383180591644709, 48.83688818041915], [2.3830499718109612, 48.83680714498072], [2.382919352383243, 48.83672610939378], [2.382777768339445, 48.83663705230622], [2.382647148398889, 48.83655601640266], [2.382505565282163, 48.83646695897936], [2.382504837664734, 48.83645443157029], [2.382635188048073, 48.83635884182189], [2.382764593155294, 48.83626365266139], [2.382894942585209, 48.8361680626136], [2.383024345382135, 48.83607287314886], [2.383154695220864, 48.835977282808756], [2.3832840970698372, 48.83588209304673], [2.383414445955254, 48.83578650240728], [2.383543846856284, 48.835691312348025], [2.383674194788296, 48.83559572140919], [2.383803594741388, 48.83550053105269], [2.383933941719901, 48.835404939814524], [2.384063340725065, 48.8353097491608], [2.384193685387981, 48.835214157616214], [2.384323084807531, 48.83511896667234], [2.38445342851707, 48.83502337482842], [2.3845828269887, 48.83492818358728], [2.384612606258869, 48.83487872509257], [2.384579340489042, 48.834866813616614], [2.384486378628924, 48.834816737945275], [2.384339994753143, 48.83473529885433], [2.384188355532447, 48.834653615771565], [2.384041973942535, 48.834572176310985], [2.383890335663354, 48.83449049283853], [2.383743954997213, 48.834409053001416], [2.383592317670077, 48.83432736823991], [2.383445936554685, 48.83424592891849], [2.383294301531444, 48.83416424377429], [2.383147921339711, 48.83408280407625], [2.3829962858957, 48.834001118535355], [2.382849907989794, 48.83391967846777], [2.382698273487287, 48.833837992537156], [2.38255189514286, 48.83375655208596], [2.382400262944019, 48.833674865772636], [2.3822538855232382, 48.83359342494492], [2.382102254265988, 48.83351173824191], [2.381955877768848, 48.83343029703756], [2.381804246090724, 48.83334860993784], [2.38165787187948, 48.83326716836402], [2.381506241142942, 48.83318548087458], [2.381359866493073, 48.83310403891716], [2.381208238060168, 48.83302235104507], [2.381061864333926, 48.832940908711066], [2.380989544481681, 48.8328863286582], [2.380955884554687, 48.83290388368278], [2.380864484580918, 48.83297683495946], [2.380735823036391, 48.83308035161472], [2.380609216036615, 48.83318140280568], [2.380480553480381, 48.83328491916743], [2.380353945488828, 48.8333859700698], [2.380225280558517, 48.833489486130965], [2.380098672937544, 48.83359053675165], [2.3799700069954, 48.83369405251933], [2.37984339702057, 48.833795102844306], [2.379714731428757, 48.8338986183255], [2.379588120472928, 48.833999667462486], [2.379459453858668, 48.83410318354948], [2.379332841911031, 48.83420423239775], [2.37920417293334, 48.834307747284875], [2.379077561345562, 48.83440879675081], [2.379077476071203, 48.83440886466001], [2.378948807443495, 48.83451237926054], [2.378827802522372, 48.83461089526529], [2.37869913153799, 48.834714409571475], [2.378578127038323, 48.834812925312946], [2.378449455059446, 48.834916439331835], [2.378328448256632, 48.835014954795874], [2.378199776645555, 48.83511846853457], [2.378078768901884, 48.835216983728195], [2.377950094933989, 48.83532049717253], [2.377829086260184, 48.835419011196514], [2.37770041265998, 48.83552252436064], [2.377579403034672, 48.8356210390135], [2.377450727077723, 48.83572455188327], [2.377329716511427, 48.835823066265746], [2.3772010409221602, 48.8359265788553], [2.377080029415075, 48.83602509296737], [2.377079595818102, 48.83602546484533], [2.377000303378889, 48.83609739054136], [2.376884909427789, 48.8362029856276], [2.376805616449898, 48.836274911183175], [2.376746977637751, 48.836328570271846], [2.376717338813709, 48.83634439575531], [2.376710855818458, 48.836376584431825], [2.376654099803956, 48.836428520205416], [2.376542613362406, 48.8365311359182], [2.376427217513154, 48.83663673142121], [2.376315728817386, 48.83673934689633], [2.376200333409921, 48.83684494216791], [2.376088843822066, 48.8369475574124], [2.375973447494037, 48.837053152445506], [2.375861957014287, 48.837155767459386], [2.375746558403324, 48.837261362246835], [2.375635068393831, 48.83736397703727], [2.37551966886228, 48.83746957158612], [2.375408177950104, 48.83757218704529], [2.375292777508732, 48.83767778045628], [2.375181285704436, 48.83778039568487], [2.375065884342461, 48.83788598885732], [2.374954391646237, 48.83798860385531], [2.374838989363651, 48.8380941967892], [2.3748270804248612, 48.838095317212215], [2.374776852630893, 48.8381384723868], [2.374776827817147, 48.83813849653989], [2.374655124697146, 48.838248420065966], [2.374534748914794, 48.83835782067527], [2.374413043409885, 48.83846774392636], [2.374292666612821, 48.83857714427061], [2.374172289310545, 48.838686544482975], [2.374050583635986, 48.83879646734008], [2.373930205319088, 48.838905867287366], [2.373808498621884, 48.83901578987661], [2.37368811929035, 48.839125189558814], [2.37356641157049, 48.83923511188016], [2.37344603122431, 48.83934451129725], [2.373324322481785, 48.83945443335072], [2.373203941120949, 48.83956383250272], [2.3730822313557463, 48.839673754288285], [2.373081485460519, 48.839674371838946], [2.372930367679546, 48.83978901208314], [2.372796352886692, 48.83988890861405], [2.372662336228529, 48.839988804079425], [2.372511216614016, 48.84010344376185], [2.372458051720241, 48.84014307228635], [2.372450360997428, 48.84015615094252]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 63, "zemmour_eric": 63.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-47", "circ_bv": "08", "num_bureau": 47, "roussel_fabien": 18.0, "nb_emargement": 1054.0, "nb_procuration": 53.0, "nb_vote_blanc": 11.0, "jadot_yannick": 66.0, "le_pen_marine": 99.0, "nb_exprime": 1042.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 0, "nb_inscrit": 1446.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1058, "quartier_bv": "47", "geo_point_2d": [48.83867918941721, 2.3798244061348557], "melenchon_jean_luc": 384.0, "poutou_philippe": 5.0, "macron_emmanuel": 289.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.295752186267317, 48.83456526821059], [2.295752310465986, 48.83457382289224], [2.295849992934059, 48.834677223475445], [2.295948325450834, 48.8347804362267], [2.296046008707147, 48.83488383573143], [2.296144342001686, 48.83498704830248], [2.296242026021857, 48.83509044852734], [2.296340360094373, 48.835193660918186], [2.29643804490259, 48.835297060064555], [2.296536379752988, 48.83540027227519], [2.296634065337321, 48.8355036712424], [2.296732400953476, 48.835606884172115], [2.296732961908594, 48.835614887397696], [2.296750358870459, 48.83562342670679], [2.296847636594907, 48.835722582530394], [2.296942854242022, 48.83581914945057], [2.297040132697895, 48.83591830510025], [2.297135351059144, 48.83601487185028], [2.297232630234325, 48.836114028225374], [2.297327849309713, 48.83621059480529], [2.297329155730681, 48.83621171590369], [2.2974517321408, 48.836301321849], [2.297571079239511, 48.83638835987246], [2.297690428099012, 48.836475397778], [2.297813005750235, 48.836565003332026], [2.297932354055917, 48.83665204097445], [2.2980549325263, 48.83674164716571], [2.298055558935102, 48.83674207444617], [2.298081052580257, 48.8367504685985], [2.298097151060722, 48.83673639615182], [2.298267754328053, 48.83668774189119], [2.298437148417878, 48.836640128963225], [2.298607749690445, 48.83659147420554], [2.298777143156963, 48.83654386079196], [2.298947745171522, 48.836495204653836], [2.299117136652197, 48.83644759074674], [2.299147434350524, 48.836438949926716], [2.299159540651212, 48.836440375316144], [2.299176588573765, 48.83643054163239], [2.299316892200447, 48.83639052669001], [2.299482586765872, 48.83634321798017], [2.2996531874652533, 48.8362945608272], [2.299818881420307, 48.83624725164746], [2.29998948147961, 48.83619859490996], [2.300155174836469, 48.83615128436105], [2.300325774267773, 48.83610262713974], [2.300491467014453, 48.83605531612093], [2.300662065817757, 48.836006658415826], [2.300827757954052, 48.83595934692708], [2.300835686235297, 48.83594925553998], [2.300800849981856, 48.83583903522145], [2.300768477915661, 48.83572865121056], [2.300733641939695, 48.835618431750085], [2.300701271515023, 48.8355080477072], [2.300708312662295, 48.83549837564224], [2.300809557777811, 48.83546328398757], [2.300917233775838, 48.83542561085853], [2.300922761288297, 48.8354132956696], [2.300851052936317, 48.83532811960187], [2.3007358087189322, 48.835191850989844], [2.300664100964998, 48.83510667569245], [2.300640454686854, 48.83507871441518], [2.300633353877978, 48.835062881695634], [2.300623050718763, 48.835060306803356], [2.300531453826323, 48.834951999246435], [2.300446047020562, 48.83485218462194], [2.300433465394506, 48.83484762675803], [2.300303548709983, 48.83485217224003], [2.3001753173530712, 48.8348584353526], [2.300163235562369, 48.83485470241229], [2.300042152737676, 48.83474305882803], [2.2999205066484842, 48.83463099180251], [2.299799424863188, 48.83451934795022], [2.299677781168073, 48.83440728156278], [2.299556700422361, 48.834295637442445], [2.29943505642082, 48.83418356987845], [2.299313976714585, 48.83407192549011], [2.299192335107179, 48.833959858564135], [2.299177931443783, 48.83395496251447], [2.299158878191115, 48.83396404248111], [2.299078161308814, 48.83400227857251], [2.298982534207527, 48.83404744414111], [2.298963101217563, 48.834044944202155], [2.29887032242091, 48.83394832288528], [2.298778151811867, 48.833852797791984], [2.298685373712002, 48.83375617541574], [2.2985932051438738, 48.83366065017154], [2.298575757887221, 48.833657393746556], [2.298399508014751, 48.83371397126612], [2.298225240718112, 48.83376988562672], [2.298048991447229, 48.83382646263209], [2.297874723398556, 48.833882376476375], [2.297698472004645, 48.83393895295154], [2.297524204566201, 48.83399486628753], [2.29734795241142, 48.8340514422405], [2.297173682858784, 48.83410735505218], [2.296997431305503, 48.83416393049094], [2.296823161000738, 48.83421984278628], [2.296646907324527, 48.834276417694845], [2.296472636267734, 48.83433232947386], [2.296296383192931, 48.834388903868266], [2.296122111384215, 48.83444481513095], [2.295947839201556, 48.83450072613691], [2.295771583625639, 48.834557299741476], [2.295752186267317, 48.83456526821059]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 117, "zemmour_eric": 108.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-56", "circ_bv": "13", "num_bureau": 56, "roussel_fabien": 19.0, "nb_emargement": 1425.0, "nb_procuration": 67.0, "nb_vote_blanc": 10.0, "jadot_yannick": 119.0, "le_pen_marine": 89.0, "nb_exprime": 1409.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1781.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1425, "quartier_bv": "57", "geo_point_2d": [48.83520661375958, 2.2984295730661684], "melenchon_jean_luc": 312.0, "poutou_philippe": 9.0, "macron_emmanuel": 572.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.375118970063018, 48.87378551602246], [2.375112890980746, 48.873758678705585], [2.375108339691617, 48.873737001654334], [2.375079504174833, 48.87371382903904], [2.375006352743328, 48.87360630212461], [2.374933834623125, 48.873499877448296], [2.374860683782017, 48.873392351323275], [2.374788166257319, 48.87328592653808], [2.374715017391487, 48.87317839941106], [2.374642500462284, 48.873071974516954], [2.37456935082353, 48.87296444817226], [2.374496834489817, 48.872858023169314], [2.374492545440557, 48.87285449874257], [2.374461078346877, 48.87284174540039], [2.37444277461017, 48.87285588173761], [2.374282283001576, 48.8728740701521], [2.374057513140903, 48.87290009181207], [2.37389701989827, 48.872918279702155], [2.373672249643442, 48.87294430153697], [2.373511756130167, 48.872962488909835], [2.373504831028143, 48.87296208663556], [2.373309692399947, 48.87291574671813], [2.373112567643519, 48.87286918563263], [2.372917431075635, 48.872822845079014], [2.372720307010507, 48.87277628424292], [2.372525171139744, 48.872729943045925], [2.3723280477876783, 48.8726833806607], [2.372132912613845, 48.872637038820365], [2.37193578996412, 48.872590475785245], [2.371740655487325, 48.87254413330157], [2.371543533539849, 48.87249756961657], [2.371527060445458, 48.872501620974674], [2.371426463133962, 48.8726193563977], [2.371326052295553, 48.87273685348193], [2.371225454064449, 48.872854589610256], [2.371125042319142, 48.872972086500866], [2.371024441827033, 48.873089821528716], [2.370924030527257, 48.87320731913211], [2.370823429126466, 48.87332505396593], [2.37072301693064, 48.87344255047641], [2.37072291317424, 48.87344267493862], [2.370658518330023, 48.87352088528108], [2.37059386072647, 48.87359916165292], [2.370529465495011, 48.873677371914845], [2.370464807492394, 48.87375564910516], [2.370446725056209, 48.87376523355436], [2.370454595382708, 48.873779145398316], [2.370480488205397, 48.87380027745849], [2.370611237873311, 48.87390721428844], [2.370737273693085, 48.87401007197898], [2.370868024403971, 48.8741170094074], [2.370994059886125, 48.87421986590159], [2.371124813014187, 48.87432680303633], [2.371250849500227, 48.87442966013987], [2.371258265875615, 48.8744327505375], [2.371461482391052, 48.87446497160599], [2.371664863214507, 48.87449738115063], [2.37186807888124, 48.87452960062051], [2.372071460210046, 48.87456200947249], [2.372274676369603, 48.87459422914955], [2.372478058203757, 48.874626637308786], [2.372486049265299, 48.87463024416202], [2.372611295915422, 48.87474903904941], [2.372736738789277, 48.87486834294214], [2.372861986594536, 48.874987136642346], [2.372987429252698, 48.87510644023949], [2.373112678202267, 48.87522523365177], [2.373238123371344, 48.8753445369676], [2.3732862383793982, 48.87536788197643], [2.37329563569935, 48.87536341022281], [2.3733280376973003, 48.875335279611065], [2.373440730947098, 48.875235665714555], [2.373564432826721, 48.87512827161785], [2.37367712517642, 48.87502865748014], [2.373800826066172, 48.87492126401827], [2.373913517515882, 48.874821649639316], [2.374037217437399, 48.874714255013735], [2.374149907987129, 48.874614640393595], [2.374273606929604, 48.87450724550361], [2.374386296579361, 48.874407630642196], [2.374509994532007, 48.87430023638708], [2.3746226832818023, 48.874200621284466], [2.374746380266229, 48.87409322586567], [2.374859068116069, 48.87399361052183], [2.374982764121483, 48.87388621483858], [2.375057579668781, 48.87382007804399], [2.375095451071378, 48.873786599253584], [2.375118970063018, 48.87378551602246]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 22, "zemmour_eric": 38.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "10-13", "circ_bv": "05", "num_bureau": 13, "roussel_fabien": 16.0, "nb_emargement": 1201.0, "nb_procuration": 61.0, "nb_vote_blanc": 19.0, "jadot_yannick": 92.0, "le_pen_marine": 48.0, "nb_exprime": 1179.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1665.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1202, "quartier_bv": "40", "geo_point_2d": [48.87376910284764, 2.3728155713340358], "melenchon_jean_luc": 630.0, "poutou_philippe": 8.0, "macron_emmanuel": 268.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.378703797998635, 48.89253576231712], [2.37866180117587, 48.89249878293389], [2.378535682603902, 48.892406605626725], [2.37840963144343, 48.89231453104906], [2.378283512400392, 48.892222353453775], [2.378157463495707, 48.892130278602274], [2.378031345345396, 48.892038100725934], [2.377905295969001, 48.89194602558644], [2.377779180075099, 48.89185384743615], [2.377653131590681, 48.89176177201575], [2.377527016578736, 48.89166959448361], [2.377400968997037, 48.891577517883086], [2.377274854877891, 48.891485340069906], [2.377148808188056, 48.8913932631885], [2.377022693597827, 48.8913010850872], [2.376896647789193, 48.89120900882411], [2.376894293849585, 48.89120661247604], [2.376835322456321, 48.89111846264594], [2.376767046374007, 48.89100326583931], [2.3767080754157073, 48.89091511682949], [2.37666184674624, 48.890837116402196], [2.376639869439459, 48.89082555094101], [2.376608083835816, 48.89083150175103], [2.376492977367337, 48.89093511936441], [2.376371125810507, 48.89104526857274], [2.376256018397908, 48.89114888593812], [2.37613416446509, 48.89125903577604], [2.376019056119131, 48.89136265199421], [2.375897202548425, 48.891472801576626], [2.375782093258331, 48.89157641754677], [2.375660237322376, 48.8916865668595], [2.375545127088133, 48.89179018258171], [2.375423270150594, 48.89190033163182], [2.3753081589721923, 48.89200394710606], [2.375186302396751, 48.892114095900666], [2.375071190274185, 48.89221771112687], [2.374949331333449, 48.89232785965178], [2.374834218266705, 48.89243147463001], [2.374712359688058, 48.89254162289939], [2.374597245666329, 48.89264523852891], [2.374475384733156, 48.892755385629286], [2.374360269767226, 48.89285900101082], [2.37423840783232, 48.89296914784856], [2.374123291922179, 48.893072762982044], [2.374001430338746, 48.89318291046358], [2.373886313495199, 48.89328652444982], [2.37376444954629, 48.893396671661584], [2.373649331758418, 48.89350028539977], [2.373646706159232, 48.893505962558045], [2.37364747551679, 48.89353701647331], [2.373651007536118, 48.89359476223792], [2.373665845626045, 48.89360335729713], [2.373874314486818, 48.89359111236834], [2.374079620872561, 48.89357859873797], [2.374288089536988, 48.89356635308861], [2.374493394361814, 48.89355383874143], [2.374701864193513, 48.893541592378575], [2.374907168821246, 48.89352907732179], [2.375115638456474, 48.893516830238354], [2.375320942887103, 48.89350431447185], [2.37552941232595, 48.893492066667875], [2.375734716559465, 48.89347955019174], [2.375943185801715, 48.89346730166716], [2.376148489838103, 48.89345478448138], [2.37635695752002, 48.893442535229106], [2.376562262723101, 48.893430017340776], [2.376569756758565, 48.89343097456009], [2.376589634736693, 48.893435821052485], [2.376681863081484, 48.89346710012252], [2.376685350281007, 48.89350449036809], [2.376770616345656, 48.89350783535835], [2.37680705884397, 48.89350926517419], [2.376826496708955, 48.89349573445402], [2.376868163637128, 48.89347442608168], [2.376875946886758, 48.89347378309982], [2.376908115810518, 48.89344881272614], [2.377021003097613, 48.8933910819215], [2.377172829645997, 48.8933142712424], [2.377327382896686, 48.89323523164436], [2.377479209902443, 48.89315842057296], [2.377633760861581, 48.89307938056122], [2.377785586960886, 48.89300256909045], [2.377940138356124, 48.89292352867916], [2.378091962195906, 48.89284671590272], [2.378246512652682, 48.89276767598402], [2.37839833558602, 48.89269086280821], [2.378552885125818, 48.89261182158361], [2.378671485943958, 48.8925518174903], [2.378703797998635, 48.89253576231712]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 45, "zemmour_eric": 93.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-63", "circ_bv": "17", "num_bureau": 63, "roussel_fabien": 17.0, "nb_emargement": 1070.0, "nb_procuration": 43.0, "nb_vote_blanc": 11.0, "jadot_yannick": 61.0, "le_pen_marine": 60.0, "nb_exprime": 1050.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1449.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1070, "quartier_bv": "73", "geo_point_2d": [48.892513445526106, 2.376285868566798], "melenchon_jean_luc": 378.0, "poutou_philippe": 19.0, "macron_emmanuel": 328.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.34494310122348, 48.84495127448424], [2.3449411711550843, 48.844967040511285], [2.344958664673785, 48.8450044346055], [2.344963092672752, 48.84502973809531], [2.3449658585904762, 48.84503300802778], [2.345047643836687, 48.84509468610696], [2.34512114663073, 48.84515239667412], [2.345160312699231, 48.84517962337285], [2.34518519963104, 48.84516630065498], [2.345364763959533, 48.84512058223817], [2.345578058020146, 48.845057325254636], [2.345578848321803, 48.84505711013363], [2.345758413302611, 48.84501139022966], [2.34596748108027, 48.84495952143216], [2.346147045372626, 48.844913801840164], [2.3463561123833, 48.8448619314597], [2.346535675998489, 48.844816211280396], [2.34674474221961, 48.84476434111554], [2.346924305157629, 48.84471862034897], [2.346924447311384, 48.844718585150524], [2.347128905369787, 48.84466957161103], [2.347308467644374, 48.844623850263915], [2.347512923607527, 48.84457483605649], [2.347692485218822, 48.84452911412918], [2.347896941800359, 48.84448010016803], [2.348076501397065, 48.844434376753696], [2.348082541219963, 48.844433883540454], [2.348272387762213, 48.84444670945346], [2.3484519112089792, 48.8444592099339], [2.348641757923141, 48.84447203615974], [2.348821282908286, 48.84448453609308], [2.349000806605765, 48.84449703664868], [2.349190653604027, 48.84450986110383], [2.349238946607863, 48.84452214827035], [2.349255759614278, 48.844511260324474], [2.349268864925785, 48.84450277418834], [2.349256209237948, 48.84447110449259], [2.349288365787308, 48.8443345620973], [2.349320771397399, 48.844198684760954], [2.34935292623587, 48.84406214320685], [2.349385331508159, 48.843926265819874], [2.349417487383174, 48.84378972332317], [2.349449892317865, 48.8436538458855], [2.349482046481816, 48.843517304230005], [2.349514451078818, 48.843381426741644], [2.349546604916894, 48.843244884136155], [2.349579009176109, 48.843109006597146], [2.349611164028272, 48.84297246484765], [2.349643567949805, 48.84283658725797], [2.349675721113491, 48.842700044551094], [2.349708124697451, 48.84256416691078], [2.34974027887512, 48.84242762505994], [2.349772682121408, 48.84229174736892], [2.349772771364395, 48.84228939961734], [2.349757123845027, 48.8421874976801], [2.349736311414258, 48.84205803815048], [2.349720665409333, 48.841956135295476], [2.349699853161407, 48.841826675732726], [2.349676251632836, 48.84168282286393], [2.349655439604466, 48.84155336326173], [2.349641397136881, 48.84146776823343], [2.349668202400693, 48.84146448468708], [2.349653421661166, 48.84144307862147], [2.349665047624097, 48.84142925475163], [2.349636666368592, 48.84141492288665], [2.349627107557608, 48.841356665898346], [2.349621136604501, 48.841317056934294], [2.349621072185037, 48.841315667966384], [2.349627332567805, 48.84124287422163], [2.34963672603756, 48.84111040942195], [2.349648697098248, 48.84100679222975], [2.349648771499256, 48.84100618016738], [2.349665134720023, 48.840912763147124], [2.34967710430527, 48.84080914682561], [2.349693467413398, 48.84071572978498], [2.349700712799196, 48.84066542545998], [2.34969719054534, 48.840644470910505], [2.349654730320521, 48.840641428665826], [2.349565508033413, 48.840642472485676], [2.3494485194879893, 48.840641735592065], [2.349436272538122, 48.840645937371534], [2.349436033830475, 48.8406710652113], [2.3494375249687423, 48.84069230731143], [2.34943753343135, 48.840729943953015], [2.349437544737532, 48.840730566374525], [2.349432371568183, 48.84087932365507], [2.349426854696633, 48.84101860964283], [2.349421681468185, 48.841167366884484], [2.349416164537578, 48.84130665283584], [2.34941064893995, 48.84144593877696], [2.349405474260363, 48.84159469595358], [2.349396089885674, 48.8416030368768], [2.349210976148322, 48.84164301395951], [2.34902956434606, 48.84168210254371], [2.3488444514204723, 48.84172207816456], [2.348663039068037, 48.841761166190125], [2.3484779242068052, 48.841801142132866], [2.348296511304397, 48.84184022959985], [2.348111395892482, 48.84188020407332], [2.347929982439906, 48.841919290981714], [2.3479225306927383, 48.8419232093607], [2.347824852684218, 48.84203054652854], [2.347734139270599, 48.84213344994897], [2.347636460491342, 48.84224078604349], [2.347545747702236, 48.84234368930913], [2.347455033192537, 48.84244659248902], [2.347357354614104, 48.84255392833298], [2.347266639366418, 48.842656831350624], [2.347168958643584, 48.84276416701311], [2.347168365039558, 48.84276478163598], [2.3470517537620292, 48.842875373905486], [2.346937112177658, 48.84298434266383], [2.34682049856684, 48.84309493377939], [2.346705856016015, 48.843203902294654], [2.34658924141196, 48.843314494062376], [2.346474597905945, 48.84342346143527], [2.346357983682533, 48.843534052963236], [2.346243337836248, 48.84364302098496], [2.346126722642032, 48.84375361136643], [2.346012077191786, 48.843862579152486], [2.345895459641868, 48.8439731701786], [2.345780813236413, 48.844082136822344], [2.345778481614774, 48.84408616940134], [2.34575530075977, 48.844210578164294], [2.345734152236536, 48.844336226552386], [2.345710971164492, 48.84446063527885], [2.345689822444204, 48.844586282731626], [2.345666641143827, 48.84471069232092], [2.345645492215194, 48.84483633973767], [2.345635056501111, 48.84484410350316], [2.345465519411016, 48.84487030529153], [2.345309759076519, 48.844894926509376], [2.345140221657656, 48.84492112783558], [2.344984461017591, 48.844945748628774], [2.34494310122348, 48.84495127448424]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 95, "zemmour_eric": 85.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-5", "circ_bv": "02", "num_bureau": 5, "roussel_fabien": 26.0, "nb_emargement": 1331.0, "nb_procuration": 91.0, "nb_vote_blanc": 13.0, "jadot_yannick": 104.0, "le_pen_marine": 48.0, "nb_exprime": 1317.0, "nb_vote_nul": 1.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1661.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "19", "geo_point_2d": [48.843348931594015, 2.347960931950205], "melenchon_jean_luc": 390.0, "poutou_philippe": 9.0, "macron_emmanuel": 494.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.392773674003311, 48.850550918529414], [2.392763539286476, 48.850545406226324], [2.392732335290055, 48.85048313857719], [2.392701065560507, 48.85042640070091], [2.392687981126554, 48.85042048309958], [2.392481461434916, 48.85042325510733], [2.392279505065385, 48.85042607421966], [2.392256531574369, 48.85042268658379], [2.392245105317157, 48.85043456025413], [2.392218808268831, 48.85051971856679], [2.392193764602142, 48.85060174629356], [2.392189585418472, 48.85060661664106], [2.392050529771156, 48.8506902568194], [2.391914408246382, 48.85077233428028], [2.39177828629291, 48.850854411580215], [2.391639229324105, 48.850938051261934], [2.3915031065148282, 48.85102012733731], [2.391364048662132, 48.85110376668674], [2.391227924976046, 48.85118584333609], [2.3910888662394543, 48.851269482353246], [2.391076350712635, 48.8512715555197], [2.390908502972275, 48.85124358572292], [2.390747360923266, 48.85121649612487], [2.390586220404523, 48.85118940631607], [2.3904183731919453, 48.85116143582968], [2.390393857919806, 48.8511544596637], [2.390379027609442, 48.85117104370145], [2.390353946850094, 48.85121368369946], [2.3903039000488793, 48.851298582934675], [2.390231037782522, 48.85142245170589], [2.390180991943291, 48.851507350880745], [2.39017722611295, 48.85151088142913], [2.390024391350963, 48.85159845199923], [2.389870271968293, 48.85168838021485], [2.389717436180308, 48.851775949479595], [2.38956331710579, 48.85186587729247], [2.38956018538444, 48.85186855307428], [2.389488328450024, 48.8519622280464], [2.38941552716788, 48.85205715364439], [2.389343669702905, 48.85215082941303], [2.389270867904185, 48.8522457540076], [2.389199011281838, 48.85233942968042], [2.389126208945564, 48.85243435507018], [2.389123660600139, 48.852436669580655], [2.389013370636199, 48.85250906991209], [2.3888961095792682, 48.85258506881301], [2.388785818974627, 48.85265746982427], [2.38866855862519, 48.85273346759969], [2.388664152683765, 48.85274124426049], [2.388679994835956, 48.85275431362762], [2.388744293126902, 48.85281308374022], [2.388821791333934, 48.85288340684897], [2.388823090647998, 48.852892540098125], [2.388771663249185, 48.85296431270345], [2.388706859827256, 48.853050230286236], [2.388714754791773, 48.853062770695885], [2.388888019192298, 48.85310083939601], [2.389090434015186, 48.85314526039834], [2.389263698964455, 48.85318332855164], [2.389466114428026, 48.853227748915224], [2.389639379925931, 48.85326581652167], [2.389841796030285, 48.85331023624643], [2.3900150620769223, 48.85334830330609], [2.390217478821847, 48.85339272239201], [2.390390745406792, 48.85343078980412], [2.390593162792387, 48.853475208251254], [2.390766429936475, 48.85351327421726], [2.390790112621133, 48.85351987371616], [2.390806802146523, 48.853512286331785], [2.390888358543227, 48.853432688140906], [2.39096911607615, 48.853361600872326], [2.390970388010084, 48.853360050571006], [2.391065067990122, 48.85321153617785], [2.3911643661984963, 48.853060328253946], [2.391177895354677, 48.85305493623758], [2.391367100585905, 48.853064354496176], [2.391556895386937, 48.853073474170806], [2.391746100753974, 48.85308289183001], [2.391935895699346, 48.85309201000405], [2.392125101202182, 48.853101427063756], [2.392314896270995, 48.85311054553574], [2.392504103282784, 48.85311996110366], [2.392693898485422, 48.85312907897434], [2.392707503154588, 48.85312350999733], [2.392782695799268, 48.85300203413086], [2.392854304669393, 48.85288610250365], [2.392925914583652, 48.852770170828464], [2.393001106209204, 48.85264869478614], [2.393072714107946, 48.85253276299137], [2.393147905048706, 48.852411286830836], [2.393140859566602, 48.852399678250485], [2.392931222605063, 48.85233771976646], [2.392723027389396, 48.85227628085661], [2.392513391421103, 48.85221432163367], [2.392305197191099, 48.852152881989966], [2.3922974394149312, 48.85214277255423], [2.392339183381753, 48.852015294679916], [2.392380613116956, 48.85188868485443], [2.392422356676764, 48.85176120692195], [2.392463784645134, 48.851634597031854], [2.392505527808418, 48.8515071181419], [2.392546956735438, 48.85138050820101], [2.392588699481132, 48.85125303015226], [2.3926301280040683, 48.85112642015365], [2.392671868980145, 48.85099894203983], [2.392713297109486, 48.85087233108419], [2.392755039041294, 48.850744852919206], [2.3927964667560833, 48.85061824280513], [2.392796071003708, 48.850613494914455], [2.392785423429553, 48.850592466182846], [2.392772315872176, 48.85056630854955], [2.392773674003311, 48.850550918529414]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 52, "zemmour_eric": 75.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "11-55", "circ_bv": "06", "num_bureau": 55, "roussel_fabien": 24.0, "nb_emargement": 1401.0, "nb_procuration": 100.0, "nb_vote_blanc": 10.0, "jadot_yannick": 159.0, "le_pen_marine": 56.0, "nb_exprime": 1387.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1723.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1401, "quartier_bv": "44", "geo_point_2d": [48.85220254271854, 2.39106950468862], "melenchon_jean_luc": 484.0, "poutou_philippe": 5.0, "macron_emmanuel": 444.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.31400478574274, 48.830585730713274], [2.314014500873847, 48.830578003238536], [2.31417434511792, 48.83050822811278], [2.314331905722233, 48.83043845856609], [2.314491749113615, 48.830368683007435], [2.314649310233455, 48.830298913041744], [2.314809152772148, 48.830229137050196], [2.314966711683376, 48.83015936664989], [2.315126553369383, 48.830089590225434], [2.315284112796134, 48.830019819406104], [2.315443952267394, 48.82995004254097], [2.315601510847605, 48.82988027129481], [2.31576135082824, 48.82981049400463], [2.31591890856191, 48.82974072233165], [2.316078746327811, 48.82967094460077], [2.316236303214943, 48.82960117250099], [2.316393859680443, 48.8295314001893], [2.316553696168764, 48.8294616218107], [2.316711251787628, 48.8293918490722], [2.31687108878542, 48.829322070268496], [2.317028642195708, 48.829252297095415], [2.317188478340823, 48.82918251785885], [2.317218906145881, 48.82917451624391], [2.317218641333309, 48.829163324688004], [2.317105450862731, 48.8290870687223], [2.316966610824893, 48.82899558630443], [2.316825141924984, 48.82890027893759], [2.316686302876475, 48.82880879617904], [2.316544836358004, 48.82871348847251], [2.316405998298813, 48.82862200537336], [2.316264532799637, 48.828526697319404], [2.316125694367636, 48.82843521387185], [2.315984229875951, 48.82833990636974], [2.315845393807177, 48.82824842169], [2.315703930334767, 48.828153113840514], [2.315565095255296, 48.82806162882015], [2.315423631440046, 48.82796632061541], [2.315284797349871, 48.82787483525443], [2.315143335915992, 48.82777952671009], [2.315004502815106, 48.82768804100848], [2.314863042400479, 48.82759273211672], [2.314724210288873, 48.827501246074526], [2.314582749531399, 48.82740593682756], [2.314443918409069, 48.82731445044473], [2.31430246003293, 48.82721914085815], [2.3141636298998662, 48.82712765413475], [2.314022171180875, 48.82703234419296], [2.3138833420370712, 48.82694085712892], [2.31384984415525, 48.826918782154515], [2.313849651028741, 48.826917620847865], [2.313819312855264, 48.82689724223396], [2.31371398216468, 48.82682782994748], [2.313567561855506, 48.82673279405081], [2.313428734307096, 48.82664130643462], [2.31328231505347, 48.8265462692736], [2.313143488490435, 48.82645478221043], [2.313034896403892, 48.826384296483866], [2.313016810758298, 48.82637915966505], [2.312990240159643, 48.82638705826959], [2.312866854631417, 48.826480140252016], [2.312736803636965, 48.82657694320154], [2.312613417206776, 48.82667002490676], [2.312483365256237, 48.826766828463604], [2.31235997793614, 48.82685990899229], [2.3122299250413603, 48.8269567122571], [2.3121065368192912, 48.82704979250854], [2.311976482980262, 48.82714659548145], [2.311853093844546, 48.82723967635493], [2.311723039073132, 48.827336478136495], [2.311599649035424, 48.82742955873275], [2.311469593319753, 48.82752636022234], [2.311346202380247, 48.82761944054138], [2.311216145708428, 48.827716242638246], [2.311080924216134, 48.827816262491105], [2.310950866572642, 48.827913063383214], [2.31081564406102, 48.828013082918545], [2.310685584059966, 48.82810988439665], [2.310550360528798, 48.828209903614514], [2.310420300906281, 48.82830670479495], [2.310285076367562, 48.828406722796004], [2.310155015761565, 48.828503523670996], [2.310109488031568, 48.82853719817221], [2.310092800538283, 48.82856307234192], [2.310118416160747, 48.82857629616317], [2.310278884815498, 48.82865890411058], [2.310438439537353, 48.828742674855626], [2.310598909211207, 48.8288252823614], [2.310758464956593, 48.82890905266713], [2.310918937011793, 48.82899165973908], [2.311078493780513, 48.8290754296054], [2.311238965492895, 48.82915803622784], [2.311398523273174, 48.82924180655413], [2.311558996016553, 48.82932441183561], [2.311718554820381, 48.82940818172247], [2.311879029933256, 48.829490787469446], [2.312038589772306, 48.8295745560176], [2.312199064542365, 48.82965716131507], [2.312358625404868, 48.82974092942383], [2.312519101194057, 48.8298235342796], [2.312678663080117, 48.82990730194897], [2.3128391412507048, 48.82998990637093], [2.312998704160127, 48.83007367360087], [2.313159181987897, 48.83015627757332], [2.313318745908939, 48.83024004526315], [2.313332772579026, 48.83024907279143], [2.3133446271257743, 48.830248535573], [2.313504191639016, 48.83033230210925], [2.313657347971961, 48.83041270395767], [2.313816912116159, 48.83049647095592], [2.31397006941371, 48.83057687239211], [2.31400478574274, 48.830585730713274]]], "type": "Polygon"}, "properties": {"lassalle_jean": 23.0, "pecresse_valerie": 79, "zemmour_eric": 83.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "14-49", "circ_bv": "10", "num_bureau": 49, "roussel_fabien": 18.0, "nb_emargement": 1303.0, "nb_procuration": 66.0, "nb_vote_blanc": 15.0, "jadot_yannick": 98.0, "le_pen_marine": 71.0, "nb_exprime": 1283.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1622.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1303, "quartier_bv": "56", "geo_point_2d": [48.82860787976412, 2.313576092829782], "melenchon_jean_luc": 397.0, "poutou_philippe": 11.0, "macron_emmanuel": 451.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389598673415337, 48.8585100094817], [2.389597863064381, 48.85851100362255], [2.389567331877246, 48.85854082938844], [2.38954719064871, 48.8585523902651], [2.389543116080488, 48.85855651546554], [2.389479397769769, 48.85869229744758], [2.389420122666735, 48.85881654725414], [2.389356403717379, 48.85895232913884], [2.389297126651731, 48.859076579747715], [2.38923784930336, 48.85920083031333], [2.389174130782499, 48.859336611161595], [2.389114852845068, 48.85946086163714], [2.38905113232271, 48.85959664238117], [2.388991853796004, 48.85972089276664], [2.38894395319524, 48.859822963998894], [2.38893891453657, 48.859835365422676], [2.388984080319001, 48.85985131389671], [2.389160051891612, 48.859913741848494], [2.389336622877607, 48.859976115935815], [2.38951259392066, 48.860038544254536], [2.389689165751665, 48.860100917814705], [2.389865137649291, 48.860163344708674], [2.390041710314673, 48.860225718640955], [2.390217683056232, 48.86028814500951], [2.390394256566629, 48.86035051841462], [2.390570231515089, 48.86041294426466], [2.390746804507632, 48.8604753171356], [2.390922780299925, 48.86053774246027], [2.391099354147988, 48.86060011390473], [2.391275330773704, 48.86066253960325], [2.391451905466771, 48.86072491052052], [2.391627882946928, 48.860787334794274], [2.391804458474493, 48.860849706083656], [2.391980436798582, 48.86091212983198], [2.392157014534135, 48.86097450060109], [2.392332992339174, 48.861036923817], [2.392509570919736, 48.8610992940589], [2.392685549568802, 48.86116171674939], [2.392862129004751, 48.86122408556476], [2.393038108487263, 48.86128650862909], [2.393214688768212, 48.861348876917276], [2.393390670468119, 48.86141129856376], [2.393567250220705, 48.86147366721711], [2.393743232764439, 48.861536088338134], [2.393919813362026, 48.86159845646425], [2.394095796749686, 48.861660877059784], [2.394272378192273, 48.86172324465864], [2.394448362423859, 48.86178566472874], [2.394624944721896, 48.8618480309011], [2.394800929786955, 48.86191045134502], [2.394977514292994, 48.86197281699703], [2.394999506414698, 48.861985223094436], [2.395005471040535, 48.86198500143159], [2.395058431752008, 48.8619305216504], [2.395167379076074, 48.861818254231586], [2.395273695624598, 48.8617088881822], [2.395382640658332, 48.86159662053808], [2.395488956302707, 48.861487254275566], [2.395597901772118, 48.86137498641995], [2.395704216512351, 48.86126561994436], [2.395813161054448, 48.861153351870335], [2.39591947489055, 48.86104398518168], [2.396028417142362, 48.860931716882334], [2.396134730084767, 48.86082234908128], [2.396243672772269, 48.86071008057045], [2.396349984800138, 48.860600713455604], [2.396458926560356, 48.860488444726386], [2.396565237684124, 48.86037907739844], [2.396674177154104, 48.860266808443946], [2.396780487373782, 48.86015744090296], [2.396780985147456, 48.8601388170929], [2.396776899467453, 48.86013617131235], [2.396796064856149, 48.86000667239963], [2.396815034962883, 48.85988049376409], [2.39683419879989, 48.85975099480853], [2.396853168721179, 48.85962481613784], [2.396872333732206, 48.859495317153204], [2.396891303468151, 48.859369138447384], [2.396910468290346, 48.85923963942679], [2.396929437830339, 48.85911346158516], [2.396948602463806, 48.85898396252861], [2.396967571828768, 48.85885778375256], [2.396986736273309, 48.85872828466006], [2.397005705452936, 48.85860210584888], [2.397024868345735, 48.85847260671356], [2.397043837339931, 48.85834642786726], [2.397062806242151, 48.85822024900363], [2.397081970215493, 48.85809074982142], [2.3970819922093742, 48.85809061592975], [2.397101940823959, 48.85797327714302], [2.397122000105993, 48.85785590742152], [2.397141948540617, 48.857738568603345], [2.39716200626897, 48.85762119974274], [2.397181954534043, 48.857503859993805], [2.397202013444815, 48.85738649110849], [2.3972219615299313, 48.857269151328126], [2.397242020260123, 48.85715178241129], [2.397261968165286, 48.8570344425994], [2.397282026715104, 48.8569170736511], [2.397301825358641, 48.85687542299192], [2.397288443939055, 48.85687036961477], [2.397220783425895, 48.85685662673924], [2.397157429705159, 48.85684359981797], [2.397145805468825, 48.85683981256399], [2.397128431968425, 48.85683947771563], [2.396947620211593, 48.856824390227466], [2.396772215764196, 48.85680996915983], [2.396596810040605, 48.856795548727355], [2.396415998590157, 48.85678046043536], [2.3962405944377903, 48.85676603858787], [2.396059783192901, 48.85675094975726], [2.39588437922805, 48.85673652828655], [2.395703568188726, 48.85672143891731], [2.395528163069376, 48.85670701601793], [2.395347353598498, 48.85669192611689], [2.395346290508501, 48.856691809226085], [2.395151494793346, 48.85665640674691], [2.394934716100724, 48.85662668998709], [2.394739920908772, 48.856591286835865], [2.394523142721813, 48.85656156932875], [2.394514220855114, 48.85655618835677], [2.394427313915824, 48.85657906146186], [2.394272994625142, 48.8566589644485], [2.394118332180007, 48.85673821436787], [2.393964011944027, 48.85681811694459], [2.393809348546156, 48.85689736735253], [2.39365502737544, 48.85697726862005], [2.393500363035189, 48.857056518617284], [2.393346040919273, 48.85713641947488], [2.393191375636636, 48.85721566906139], [2.393037053938405, 48.85729556951598], [2.392882386350491, 48.857374818684846], [2.392728063696577, 48.85745471962877], [2.392573395176645, 48.85753396748764], [2.39241907157752, 48.85761386802162], [2.39226440347819, 48.8576931154767], [2.392261781124068, 48.85769416968314], [2.392071280270669, 48.85775088523462], [2.391883744685474, 48.85780831074597], [2.391693243003253, 48.85786502568984], [2.391505707964087, 48.8579224497105], [2.391318171148545, 48.857979873427354], [2.391127668223421, 48.85803658746209], [2.39094013193281, 48.85809401148682], [2.390749626815965, 48.85815072490695], [2.390562089708509, 48.85820814743407], [2.390371585125664, 48.8582648602535], [2.3901840458278443, 48.858322282175315], [2.389993540416295, 48.858378994387095], [2.389963717976987, 48.858388125414216], [2.389961563355468, 48.85838822145255], [2.389935715347507, 48.8583986318184], [2.389777997603685, 48.85844692207734], [2.3896261689796923, 48.85849963367372], [2.389598673415337, 48.8585100094817]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 32, "zemmour_eric": 55.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-58", "circ_bv": "06", "num_bureau": 58, "roussel_fabien": 34.0, "nb_emargement": 1366.0, "nb_procuration": 99.0, "nb_vote_blanc": 24.0, "jadot_yannick": 140.0, "le_pen_marine": 57.0, "nb_exprime": 1338.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1697.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1366, "quartier_bv": "79", "geo_point_2d": [48.85914602197675, 2.39371005489435], "melenchon_jean_luc": 598.0, "poutou_philippe": 15.0, "macron_emmanuel": 330.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.341110405583818, 48.83181941345034], [2.341136212201691, 48.83185157326608], [2.341141258226358, 48.83195051041253], [2.341143042861307, 48.8320566758242], [2.341148088918791, 48.83215561295226], [2.341149236112166, 48.83222383033437], [2.341148983354215, 48.83225611639161], [2.341220622642195, 48.83225814786183], [2.341411860984432, 48.83220160258668], [2.341583257969041, 48.832151783905466], [2.341754654626056, 48.83210196497643], [2.341945890453855, 48.83204541883205], [2.342117286414603, 48.83199559937864], [2.342308521470203, 48.83193905174976], [2.342479916734675, 48.831889231771974], [2.342671152357591, 48.83183268446472], [2.342842546925687, 48.831782863962516], [2.343033780402837, 48.83172631606262], [2.343205174274756, 48.83167649503605], [2.343396406968352, 48.83161994655099], [2.3435678001439912, 48.831570125000056], [2.343759033427555, 48.83151357503795], [2.343930425906906, 48.8314637529627], [2.344121657033379, 48.831407203307265], [2.344293048816444, 48.831357380707594], [2.344311870065704, 48.83136376330976], [2.344362589116117, 48.83152317986825], [2.344426053335805, 48.831684597193295], [2.344448533452676, 48.83168884133389], [2.344463119336381, 48.831688521059334], [2.344478481240777, 48.83167664720689], [2.34464243190166, 48.8316566946456], [2.34486877791162, 48.83163227021431], [2.345032726921346, 48.83161231710976], [2.345259072555756, 48.831587891938945], [2.3454230212652343, 48.83156793919789], [2.345435627587962, 48.831570775558944], [2.3455598566347993, 48.83166212646527], [2.345687238809052, 48.83175648669278], [2.3458114687394582, 48.83184783732261], [2.345938851822937, 48.831942197266486], [2.346063082625535, 48.83203354851917], [2.346190467991651, 48.83212790728756], [2.346314699677736, 48.83221925826375], [2.3464420845909713, 48.83231361674107], [2.346566317160547, 48.832404967440716], [2.346693702983027, 48.83249932563442], [2.346817936436, 48.83259067605761], [2.346945323167729, 48.832685033967664], [2.346951953735971, 48.83268512503284], [2.346982676982822, 48.8326649660971], [2.34703600548047, 48.832548731144385], [2.347089190400895, 48.83243306377593], [2.347142518423814, 48.832316828751686], [2.347195702871311, 48.8322011613119], [2.347196591652038, 48.832199701986426], [2.347290351715855, 48.832075981735414], [2.347385320884214, 48.831952491940676], [2.347479081417613, 48.83182877152182], [2.347574049688543, 48.83170528154998], [2.347667807967205, 48.8315815609485], [2.347762775340721, 48.83145807079955], [2.347856534089077, 48.83133435003021], [2.347951500565187, 48.83121085970416], [2.348045258421039, 48.83108713875957], [2.348140222637665, 48.83096364824903], [2.348233979601025, 48.83083992712918], [2.348328944282362, 48.83071643644899], [2.348330452563279, 48.830714889652384], [2.348454018513699, 48.83061277089677], [2.348574752301602, 48.830513124245236], [2.34869831729524, 48.8304110052188], [2.348819050149012, 48.83031135830273], [2.348942614185877, 48.83020923900556], [2.349063346105323, 48.83010959182492], [2.349184078936724, 48.83000994362166], [2.349307640181979, 48.82990782391251], [2.349309418708757, 48.8299059035345], [2.349401557396646, 48.82976444686007], [2.349505769930633, 48.82961167060541], [2.349508247388261, 48.82956661738912], [2.349483655239341, 48.82956027795376], [2.349331087258146, 48.82957775474401], [2.349217987330915, 48.82958756130532], [2.349207233538055, 48.82958879248968], [2.349177116184716, 48.82959140406648], [2.34912076750536, 48.82959785890265], [2.349117727761744, 48.8295984539333], [2.348936713832478, 48.829648302138025], [2.348723218436028, 48.8297087386891], [2.348647781563868, 48.82972951260227], [2.348621773577649, 48.82973117239882], [2.348607551472677, 48.82973894736535], [2.34850197360254, 48.82976802191838], [2.348316186115936, 48.82981801675813], [2.3481351706579, 48.829867863739956], [2.3479493824523763, 48.82991785890475], [2.347768366296945, 48.829967705326936], [2.3475825773951, 48.8300176990182], [2.347401560542282, 48.83006754488082], [2.347215770921613, 48.83011753889713], [2.347034753371409, 48.83016738420015], [2.346848963054438, 48.83021737674289], [2.346667944795584, 48.830267222385544], [2.346482153771055, 48.83031721435403], [2.34630113618827, 48.830367058545264], [2.346115343082835, 48.83041705083133], [2.34599965508091, 48.830448905418585], [2.345934324802576, 48.83046689446297], [2.345906535391015, 48.83045828028538], [2.345880113973471, 48.83048677271237], [2.345703605198694, 48.830535131510324], [2.34552258611486, 48.83058497451352], [2.345346075313859, 48.83063333277211], [2.345165055547105, 48.83068317522982], [2.344988545444044, 48.830731532964], [2.344807523632392, 48.83078137486876], [2.344631012865295, 48.83082973207105], [2.344449991721607, 48.83087957433704], [2.344273478928185, 48.830927931], [2.344092457112994, 48.83097777182119], [2.343915945017632, 48.831026127959724], [2.343734922519639, 48.83107596823538], [2.343558408397956, 48.83112432383454], [2.343377385217162, 48.83117416356474], [2.343200871793551, 48.83122251863945], [2.343019846556529, 48.83127235871593], [2.342843332468694, 48.83132071325878], [2.342662307922307, 48.831370551897926], [2.342485791808255, 48.83141890590135], [2.34230476657918, 48.831468743994996], [2.342128251163117, 48.831517097473984], [2.341947225251256, 48.83156693502211], [2.341770707808876, 48.831615287961675], [2.341589681202873, 48.83166512586361], [2.341413164458594, 48.83171347827879], [2.341232135818957, 48.83176331472837], [2.341197556149274, 48.83175648149526], [2.341145676917128, 48.83179394327007], [2.341110405583818, 48.83181941345034]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 89, "zemmour_eric": 72.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "13-62", "circ_bv": "09", "num_bureau": 62, "roussel_fabien": 36.0, "nb_emargement": 1359.0, "nb_procuration": 60.0, "nb_vote_blanc": 17.0, "jadot_yannick": 143.0, "le_pen_marine": 74.0, "nb_exprime": 1331.0, "nb_vote_nul": 11.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1646.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1359, "quartier_bv": "52", "geo_point_2d": [48.83112119341611, 2.346019783233248], "melenchon_jean_luc": 340.0, "poutou_philippe": 11.0, "macron_emmanuel": 487.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346606441213742, 48.88209903325102], [2.346618881506154, 48.882100432153536], [2.346793354707327, 48.88205243721627], [2.346967425295924, 48.88200455314406], [2.347141897865936, 48.88195655679544], [2.347315967813679, 48.881908672212305], [2.347490438366452, 48.881860676243406], [2.347664507684505, 48.88181279025006], [2.347838978958357, 48.881764793776505], [2.3480130476354413, 48.881716907272285], [2.348187518266845, 48.88166891028663], [2.348361584939441, 48.88162102326404], [2.348536054928394, 48.881573025766315], [2.348710122323432, 48.88152513824025], [2.34888459166993, 48.881477140230395], [2.349058658424091, 48.88142925219342], [2.34923312576462, 48.8813812536641], [2.349407191866567, 48.88133336601552], [2.349581659939382, 48.88128536608221], [2.34975572540035, 48.8812374779227], [2.349811844478201, 48.88123968389705], [2.349813326842508, 48.88123792386212], [2.349815159392342, 48.88121390368051], [2.349825267946007, 48.881068612230024], [2.349836596552154, 48.88092017612759], [2.349846703625504, 48.880774884629105], [2.349858032106663, 48.88062644848506], [2.349857692374361, 48.88062395279292], [2.349814442889458, 48.88050513021405], [2.349770032229718, 48.8803796156645], [2.349726783147622, 48.88026079302761], [2.34968237427098, 48.88013527842513], [2.349639124228411, 48.880016455722796], [2.349594715771275, 48.87989094105992], [2.34955146749508, 48.87977211830696], [2.3495070580941793, 48.87964660357634], [2.349476474715252, 48.87962788056458], [2.349432479313852, 48.87963527143133], [2.349365952518002, 48.87962599031107], [2.349363904017166, 48.879625591565514], [2.349181240086863, 48.87957535482482], [2.348969771272581, 48.87952200505438], [2.348787106722312, 48.879471767700174], [2.348626344085699, 48.87945549922461], [2.348618738461381, 48.879454942524795], [2.348438832601328, 48.87947578852983], [2.348251844483645, 48.879490200552354], [2.348071939718304, 48.87951104601283], [2.347884951361248, 48.87952545836112], [2.347705044963907, 48.87954630326218], [2.347518057753466, 48.87956071414513], [2.347429563195444, 48.87956712788418], [2.347413153587642, 48.87957002511994], [2.347421295285922, 48.87961572503559], [2.347466521624659, 48.87978021760962], [2.347513790494226, 48.87995213806878], [2.347503290580593, 48.87996252748933], [2.347287783785484, 48.8799936540523], [2.347071916105049, 48.88002483221957], [2.3468564087943102, 48.88005595800425], [2.346640540597287, 48.88008713539191], [2.346425034134406, 48.88011826040579], [2.346209164057531, 48.880149437006466], [2.346198905823547, 48.880160536306306], [2.346234138150268, 48.88024779039459], [2.346301200499775, 48.880413872081775], [2.346336433169264, 48.880501126119896], [2.346336813119377, 48.880502468199495], [2.346358520069537, 48.88063410236277], [2.346380380506827, 48.88076666185709], [2.346402087677226, 48.88089829598087], [2.346423946984195, 48.88103085452872], [2.346445655738233, 48.881162488620426], [2.346467515255704, 48.88129504802775], [2.346489224230095, 48.88142668208], [2.346511083980539, 48.88155924054833], [2.346532793175184, 48.88169087456107], [2.346554653136139, 48.88182343388886], [2.346576362551041, 48.881955067862116], [2.346598222733896, 48.88208762715012], [2.346606441213742, 48.88209903325102]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 66, "zemmour_eric": 79.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "9-25", "circ_bv": "18", "num_bureau": 25, "roussel_fabien": 16.0, "nb_emargement": 1299.0, "nb_procuration": 84.0, "nb_vote_blanc": 21.0, "jadot_yannick": 121.0, "le_pen_marine": 45.0, "nb_exprime": 1277.0, "nb_vote_nul": 1.0, "arr_bv": "09", "arthaud_nathalie": 0, "nb_inscrit": 1641.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1299, "quartier_bv": "36", "geo_point_2d": [48.88069134139538, 2.348045241954994], "melenchon_jean_luc": 365.0, "poutou_philippe": 11.0, "macron_emmanuel": 524.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3989683458302062, 48.85490730448919], [2.398987526103852, 48.8548954493884], [2.399036975276782, 48.854855173112476], [2.39908452387427, 48.85481731641046], [2.399084980897308, 48.85481692209297], [2.399189666311205, 48.85472130023051], [2.399295073399162, 48.854624519035454], [2.399399756667683, 48.8545288978651], [2.399505162976216, 48.85443211646824], [2.399609846835474, 48.854336495104356], [2.399715251001777, 48.854239713498835], [2.399819934099324, 48.854144091035295], [2.399925337475965, 48.85404731012728], [2.399926382014547, 48.854046193877494], [2.400012101499939, 48.8539374391658], [2.400098828514714, 48.853826726156115], [2.400184547279256, 48.85371797129941], [2.400271274925148, 48.85360725814972], [2.400356992958395, 48.85349850404729], [2.40044371850983, 48.853387790743916], [2.400529437195175, 48.853279035604025], [2.400616162015052, 48.85316832215379], [2.400701878606342, 48.85305956776142], [2.400788604057347, 48.85294885417116], [2.400810664140157, 48.852946842178206], [2.400852512236149, 48.852976380428196], [2.400885474529387, 48.85299740139739], [2.4009078982282, 48.85300537039144], [2.400924257967891, 48.852994318352465], [2.401001916129455, 48.85285821822662], [2.401078200940758, 48.852724302877256], [2.401155858297741, 48.85258820261848], [2.401232142328471, 48.85245428623913], [2.40130979888098, 48.85231818584736], [2.40138608211048, 48.852184270236684], [2.401463737858532, 48.85204816971197], [2.401540020297149, 48.85191425397062], [2.401550200612978, 48.851894539862585], [2.401550066323697, 48.85189436651563], [2.401518313893371, 48.85188871626299], [2.401329474695227, 48.85185490209438], [2.40114081831273, 48.85182132866714], [2.400952162173433, 48.85178775494143], [2.400763323698203, 48.851753940775566], [2.400574668045991, 48.85172036645262], [2.400385830059928, 48.851686551688935], [2.400197174895013, 48.85165297676877], [2.400008337408478, 48.851619160508], [2.399819682730665, 48.851585584990595], [2.399630845722958, 48.85155176903128], [2.399442191532456, 48.8515181929167], [2.399253355013937, 48.85148437635956], [2.399064702673282, 48.8514507996546], [2.398875865281221, 48.85141698249283], [2.398687213438163, 48.85138340429133], [2.398498377898041, 48.851349586538596], [2.398457127861982, 48.85134862640257], [2.398431993847222, 48.85135666434831], [2.398342110586101, 48.85147250301176], [2.398250500345755, 48.85158998681888], [2.398160616278724, 48.851705825321716], [2.398069005219003, 48.85182330896525], [2.397979120346053, 48.85193914730746], [2.397887508466946, 48.85205663078736], [2.39779762415082, 48.85217246897579], [2.397706010089564, 48.85228995228524], [2.397616124967403, 48.852405790313], [2.397524510086737, 48.85252327345884], [2.397434624158734, 48.852639111325956], [2.3973430098214132, 48.85275659431503], [2.397253121724689, 48.85287243201465], [2.397179617425675, 48.852966690435075], [2.397163743050979, 48.8529830757587], [2.397213895439385, 48.853005204215194], [2.397409417702484, 48.8530462478971], [2.397607513322443, 48.85308776108169], [2.397803036205351, 48.85312880411735], [2.3980011324527393, 48.8531703166472], [2.39819665594506, 48.853211359935955], [2.398394752819873, 48.85325287181107], [2.39840333856275, 48.85326468746642], [2.398338722315874, 48.85337492861955], [2.398274279646603, 48.85348463099143], [2.398209664206348, 48.853594872959206], [2.398145219630568, 48.853704575232975], [2.398080603654914, 48.85381481620994], [2.398016158535403, 48.8539245183925], [2.397951542003569, 48.85403476017729], [2.397887097703124, 48.85414446227547], [2.397822479273077, 48.8542547030626], [2.397758034428896, 48.85436440506956], [2.3977632036292422, 48.85437514862688], [2.397912298949186, 48.85444045419403], [2.398059364189277, 48.85450515039105], [2.398208460252378, 48.85457045558153], [2.398355526227202, 48.85463515140699], [2.398504623033462, 48.854700456220826], [2.398651689753193, 48.85476515077542], [2.398800787292235, 48.854830456111905], [2.398947854746695, 48.85489515029493], [2.3989683458302062, 48.85490730448919]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 40, "zemmour_eric": 60.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-49", "circ_bv": "15", "num_bureau": 49, "roussel_fabien": 25.0, "nb_emargement": 1506.0, "nb_procuration": 87.0, "nb_vote_blanc": 14.0, "jadot_yannick": 183.0, "le_pen_marine": 60.0, "nb_exprime": 1488.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1938.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1506, "quartier_bv": "80", "geo_point_2d": [48.85290189456923, 2.3992615325149775], "melenchon_jean_luc": 665.0, "poutou_philippe": 10.0, "macron_emmanuel": 382.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.354002438082366, 48.88513261226353], [2.354012229506211, 48.885129406827524], [2.354205740969044, 48.88513115400734], [2.354398375555899, 48.885132464468825], [2.354591887042944, 48.88513421102456], [2.354784520287212, 48.88513552085741], [2.354978033173413, 48.88513726589712], [2.35517066643869, 48.88513857510874], [2.355183970957993, 48.88513192878413], [2.355227845895582, 48.88502906524019], [2.355284815154179, 48.884890032867155], [2.355276705588085, 48.88487933396248], [2.355078792029408, 48.88482724470245], [2.354879306962691, 48.88477622313883], [2.354681392829904, 48.8847241332097], [2.354481908547437, 48.884673110979186], [2.354283996567642, 48.88462102039563], [2.3540845117059392, 48.884569997490864], [2.354075864343331, 48.884560792980345], [2.354091084721647, 48.88445124877303], [2.354102064886699, 48.88435197269366], [2.354117285137715, 48.8842424293615], [2.354128265208892, 48.8841431532609], [2.3541424804970292, 48.884084283451514], [2.354106773450398, 48.88407811568963], [2.353976020452505, 48.88406872453247], [2.353787242715638, 48.88405308000081], [2.353592801481173, 48.88403911331829], [2.353404025330359, 48.88402346818937], [2.353209584309238, 48.88400950088415], [2.353020808380903, 48.88399385515062], [2.352826367573139, 48.88397988722266], [2.3526375905037122, 48.88396424087711], [2.352443151272789, 48.88395027233385], [2.352254374425859, 48.88393462538365], [2.352059935408409, 48.88392065621766], [2.351871158783983, 48.883905008662836], [2.351676718616338, 48.88389103886677], [2.351487943578002, 48.88387539071467], [2.351293503623748, 48.883861420295894], [2.351104727444358, 48.883845771531824], [2.350910289067078, 48.883831800497695], [2.3507215131102193, 48.88381615112899], [2.350527074946346, 48.88380217947217], [2.350338351487289, 48.88378791385019], [2.350143913531649, 48.88377394157073], [2.349955190279891, 48.88375967534441], [2.349760751168921, 48.88374570243495], [2.349572029488045, 48.88373143561171], [2.34951931133085, 48.88372017288942], [2.34950899780758, 48.88372434550186], [2.349492552366671, 48.88373099842288], [2.349486606162556, 48.883766316053354], [2.34947786916821, 48.883788159156985], [2.349473420884013, 48.88380541290205], [2.349473231497285, 48.883807146679224], [2.34947813396334, 48.88393550669776], [2.349481188036037, 48.884058789838136], [2.349486090556628, 48.88418714892771], [2.349489144651787, 48.88431043293892], [2.349492197409049, 48.88443371602958], [2.349497099992073, 48.884562075074925], [2.349500154146417, 48.884685358144516], [2.34950505676151, 48.884813718059476], [2.349508109585948, 48.88493700109325], [2.349513012255575, 48.885065360079224], [2.349516066477209, 48.88518864309201], [2.349520969178908, 48.885317002947545], [2.349535530290437, 48.88533110977356], [2.349584977825691, 48.88532005316], [2.3497895596021, 48.885304929666795], [2.349993544565771, 48.885290850301544], [2.350198126108793, 48.885275726109796], [2.3504021108477042, 48.88526164604813], [2.350606692157225, 48.8852465211579], [2.35081067530765, 48.88523244039239], [2.351015257747477, 48.885217314811065], [2.351219240661815, 48.88520323424841], [2.351423821504513, 48.88518810796122], [2.351627805568775, 48.88517402581024], [2.351832386178145, 48.88515889882454], [2.352036370017502, 48.88514481597712], [2.3522409503933313, 48.88512968829296], [2.352444932644162, 48.88511560474176], [2.352446639295181, 48.88511554922045], [2.352640152017568, 48.88511729893798], [2.352827905110237, 48.88511801805732], [2.353015658208093, 48.885118736882205], [2.353209169597827, 48.885120485672715], [2.3533969227098392, 48.88512120389975], [2.353590434121541, 48.885122952074056], [2.3537781872477, 48.88512366970321], [2.35397170004497, 48.88512541726868], [2.354002438082366, 48.88513261226353]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 24, "zemmour_eric": 25.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-56", "circ_bv": "17", "num_bureau": 56, "roussel_fabien": 19.0, "nb_emargement": 1266.0, "nb_procuration": 53.0, "nb_vote_blanc": 18.0, "jadot_yannick": 62.0, "le_pen_marine": 39.0, "nb_exprime": 1242.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1942.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1266, "quartier_bv": "71", "geo_point_2d": [48.88456634610835, 2.3518463340542657], "melenchon_jean_luc": 844.0, "poutou_philippe": 11.0, "macron_emmanuel": 188.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.334300999494606, 48.88793183585522], [2.334299437023436, 48.88795292628703], [2.334393734128942, 48.888064496745855], [2.3344818630404323, 48.888170116160204], [2.334576160930125, 48.8882816864533], [2.334664290579228, 48.88838730571245], [2.334758589253015, 48.888498875839836], [2.334846719639739, 48.88860449494382], [2.334934849020285, 48.88871011396522], [2.33502915023367, 48.888821682955054], [2.335117281715549, 48.888927301828836], [2.335211582337863, 48.88903887154461], [2.335223755201899, 48.88904348522174], [2.335358237679287, 48.889041787402796], [2.335491967396899, 48.88904724479213], [2.335626449875253, 48.88904554667195], [2.335760179630629, 48.88905100376175], [2.335772968499734, 48.88905971723114], [2.335779859514377, 48.88921581913285], [2.33577464223734, 48.889370577701584], [2.335773757618297, 48.88939683940936], [2.335780648691393, 48.88955294036384], [2.335776316006505, 48.88968143718471], [2.335777464697759, 48.889690495270514], [2.335803939034834, 48.8896916511681], [2.336012678722754, 48.88970614944737], [2.336208712762176, 48.88971983858192], [2.3364174540394202, 48.889734336162796], [2.336613486916186, 48.88974802552604], [2.336809519907479, 48.889761713668904], [2.337018261519971, 48.8897762102019], [2.33721429471233, 48.88978989858105], [2.33742303656184, 48.88980439350874], [2.33761906996671, 48.88981808122489], [2.337827812041978, 48.88983257544656], [2.338023847023079, 48.88984626250723], [2.33823258796016, 48.88986075601542], [2.338428623153753, 48.88987444241309], [2.338637365668776, 48.8898889361221], [2.338770236543354, 48.88989821171772], [2.33877305304011, 48.88991301307802], [2.338795477246698, 48.88993563262736], [2.338858515960168, 48.88991977396426], [2.338921679173088, 48.88992418314982], [2.339133388777859, 48.889895442921485], [2.339328354338599, 48.8898669480821], [2.339540063486189, 48.889838207133266], [2.339735028610066, 48.88980971163026], [2.339946737300464, 48.88978096996092], [2.34014170198747, 48.88975247379427], [2.340189478832501, 48.88974740137113], [2.340193908071596, 48.88972892036069], [2.340200001914335, 48.88970349044204], [2.340190940266389, 48.88969535557538], [2.340154977551204, 48.88957229516731], [2.340118797809412, 48.88945410518413], [2.340082835442744, 48.8893310438281], [2.340046656032225, 48.88921285379716], [2.340010693991275, 48.88908979329165], [2.33997451491223, 48.888971603212966], [2.339938553219789, 48.88884854175953], [2.339902373108408, 48.88873035162556], [2.339866194513569, 48.88861216237469], [2.339830233325363, 48.888489100848396], [2.339794055073283, 48.88837091065056], [2.339758094222178, 48.888247849075526], [2.339757855663726, 48.88824644301201], [2.339750712088204, 48.88812298813053], [2.339744852098174, 48.88800542820489], [2.339738992134603, 48.88788786826634], [2.339731848653098, 48.887764413343405], [2.339725990098175, 48.88764685428523], [2.339718845328292, 48.88752339842766], [2.339712986829842, 48.88740583934302], [2.33970584348752, 48.88728238346513], [2.33969998368198, 48.887164824346534], [2.339692840392146, 48.88704136934004], [2.339678281543358, 48.88703274004304], [2.339579782902193, 48.88703719166145], [2.339450412145535, 48.88704045934657], [2.339437758617262, 48.88702977567517], [2.339373869971229, 48.88703853338123], [2.339185108975415, 48.88709820087047], [2.338994712059987, 48.88715682300486], [2.338805950212341, 48.88721648899073], [2.338615551073999, 48.887275110508305], [2.338426788363111, 48.88733477588999], [2.338236388365314, 48.88739339679836], [2.338047624791189, 48.8874530615759], [2.337857223934142, 48.88751168187507], [2.337668459496783, 48.887571346048425], [2.337478059143959, 48.887629965745866], [2.337469344943981, 48.887630598319156], [2.337301921801195, 48.88760618227867], [2.337134527636931, 48.88758100173483], [2.336967104810602, 48.88755658522511], [2.336799712342808, 48.88753140332036], [2.336632288457718, 48.88750698723308], [2.33646489631128, 48.88748180485913], [2.336297472754218, 48.88745738740336], [2.336130080917679, 48.887432205459454], [2.336121914737427, 48.88743264132244], [2.335939593870343, 48.887481484526056], [2.335763042456591, 48.88753034327016], [2.335580719535762, 48.88757918681472], [2.335404168817696, 48.88762804503284], [2.335221845229537, 48.88767688712738], [2.335045293832112, 48.887725745711286], [2.334868740751185, 48.88777460312587], [2.334686416147659, 48.887823444398606], [2.334509863750842, 48.88787230218654], [2.334327538468622, 48.887921142908425], [2.334300999494606, 48.88793183585522]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 73, "zemmour_eric": 94.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-25", "circ_bv": "18", "num_bureau": 25, "roussel_fabien": 18.0, "nb_emargement": 1241.0, "nb_procuration": 84.0, "nb_vote_blanc": 19.0, "jadot_yannick": 141.0, "le_pen_marine": 40.0, "nb_exprime": 1218.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1500.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1241, "quartier_bv": "69", "geo_point_2d": [48.8885778115963, 2.3375907406238894], "melenchon_jean_luc": 260.0, "poutou_philippe": 8.0, "macron_emmanuel": 541.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.4025469179788193, 48.87594107790101], [2.402527685955444, 48.87596456506928], [2.402528052454314, 48.87599192454445], [2.402545974402616, 48.876011924278615], [2.402726883245164, 48.87606502959549], [2.402915344482625, 48.87611956536794], [2.403096252712178, 48.87617267011462], [2.403284714715578, 48.876227206199516], [2.403465623695617, 48.876280310382846], [2.403654086485559, 48.876334844981656], [2.403834997579565, 48.87638794860836], [2.404023459772064, 48.876442483512804], [2.404204371616451, 48.876495586576155], [2.40439283459547, 48.876550119994505], [2.404573747190331, 48.87660322249445], [2.404762210935398, 48.87665775622526], [2.404943124280735, 48.87671085816183], [2.405093362622315, 48.87675432934473], [2.405112671369277, 48.87675496579602], [2.405124117014457, 48.876725407734476], [2.405148226132097, 48.87659607076535], [2.405171807293884, 48.876467107972786], [2.405195916173532, 48.87633777096375], [2.40521949710029, 48.87620880813163], [2.40524360574185, 48.87607947108272], [2.405267186433583, 48.87595050821097], [2.405291294837259, 48.87582117112213], [2.4053148752939713, 48.87569220821081], [2.405338984822933, 48.87556287108885], [2.405362563681361, 48.87543390813116], [2.405386672972338, 48.87530457096931], [2.405410251595658, 48.87517560797199], [2.405433831465568, 48.87504664496176], [2.4054579390370723, 48.87491730773343], [2.405457625003204, 48.87491400292905], [2.405411224664533, 48.87479310734949], [2.405364574141085, 48.87467109622278], [2.405318175608291, 48.874550199687995], [2.405271525510101, 48.874428189397506], [2.40522512604633, 48.87430729279327], [2.405178476393931, 48.87418528154035], [2.40513207872585, 48.874064384880214], [2.40508542813537, 48.87394237445667], [2.405039030899637, 48.87382147773388], [2.4049923821182633, 48.87369946635472], [2.404945983941384, 48.873578570461746], [2.4048993355955153, 48.8734565590195], [2.404852939224459, 48.87333566217134], [2.404806289940507, 48.87321365155846], [2.404759894001781, 48.87309275464765], [2.404713246526902, 48.872970743079186], [2.404723620488576, 48.872951160427625], [2.404699629911104, 48.87294146951691], [2.40469298064446, 48.87294124848793], [2.404637295540012, 48.87294855651452], [2.404595013777731, 48.87295465053484], [2.404586730547749, 48.87295412998853], [2.404427883448621, 48.872909198681214], [2.404262125499966, 48.87286214811115], [2.404103277597961, 48.87281721636256], [2.403937520235237, 48.8727701653391], [2.40392262761122, 48.87277166321379], [2.403913031279706, 48.87278498221856], [2.403859959346981, 48.872907396879405], [2.403803762674861, 48.87303776403318], [2.403750690217481, 48.87316017951683], [2.403694494362455, 48.87329054659623], [2.403641421390706, 48.87341296200344], [2.403585224989469, 48.87354332900166], [2.403532150150327, 48.873665743426315], [2.403475953202869, 48.87379611034341], [2.403422879202361, 48.87391852559766], [2.403366681708678, 48.874048892433564], [2.40331360583055, 48.87417130760452], [2.40325740779063, 48.874301674359295], [2.403204332771633, 48.87442408856128], [2.403148134185474, 48.87455445523485], [2.403095057278426, 48.874676870252834], [2.403038858146013, 48.87480723684528], [2.4029857820878933, 48.87492965179353], [2.4029295824092243, 48.8750600183048], [2.402876504473328, 48.875182433169755], [2.402820304248392, 48.87531279959987], [2.402767227171734, 48.87543521349583], [2.4027110264005263, 48.87556557984477], [2.402657947435855, 48.875687994556706], [2.402601746118364, 48.87581836082445], [2.402548668002516, 48.87594077546668], [2.4025469179788193, 48.87594107790101]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 38, "zemmour_eric": 66.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-20", "circ_bv": "15", "num_bureau": 20, "roussel_fabien": 24.0, "nb_emargement": 1220.0, "nb_procuration": 52.0, "nb_vote_blanc": 6.0, "jadot_yannick": 60.0, "le_pen_marine": 75.0, "nb_exprime": 1194.0, "nb_vote_nul": 20.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1657.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1220, "quartier_bv": "78", "geo_point_2d": [48.87493234396444, 2.404176635472895], "melenchon_jean_luc": 623.0, "poutou_philippe": 6.0, "macron_emmanuel": 246.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.393290112604787, 48.86957687727724], [2.393315797785453, 48.86958496210427], [2.393472406866707, 48.869646790194665], [2.393630059287457, 48.86970556741406], [2.393786669093845, 48.869767395985846], [2.393944322234205, 48.869826172784926], [2.39410093278656, 48.86988800003952], [2.394258586646531, 48.86994677641827], [2.394263765121075, 48.86994788362755], [2.39434455509249, 48.8699538989176], [2.394453201916659, 48.869953844269254], [2.394482782351715, 48.86997037173332], [2.394524109236797, 48.86996117553222], [2.394535606849802, 48.86995861662335], [2.394547737529938, 48.86992340780565], [2.394640906741, 48.86980548588771], [2.394727620610958, 48.869699517602825], [2.394814334117665, 48.869593550144224], [2.394907502135238, 48.869475627983576], [2.394994214903219, 48.86936966037321], [2.395087383476346, 48.86925173805555], [2.39517409550581, 48.8691457702934], [2.395267261908097, 48.869027847805015], [2.395353973198954, 48.86892187989104], [2.395447138793616, 48.86880395723874], [2.395447288196663, 48.868803770031874], [2.395531237630961, 48.86869514756708], [2.395624402418838, 48.86857722475261], [2.395708351118725, 48.86846860214131], [2.3958015164636732, 48.868350679171755], [2.395885464429159, 48.86824205641399], [2.395978627604833, 48.86812413327548], [2.396062574835928, 48.86801551037126], [2.396155737205518, 48.86789758707076], [2.39623968370223, 48.867788964020086], [2.3963328466289022, 48.867671040564446], [2.396416792401658, 48.86756241646802], [2.396416865772922, 48.867562319709464], [2.396419385654951, 48.86754908516415], [2.396383092190219, 48.86753585003651], [2.396292834618566, 48.86750897495054], [2.396198477205199, 48.86749416172349], [2.396191334395874, 48.86749130356562], [2.396057423029248, 48.86738940379371], [2.3959154911224543, 48.867292320706675], [2.395781580806909, 48.86719042060781], [2.395639649966757, 48.86709333627691], [2.3956389087189462, 48.86709272008433], [2.395531229656903, 48.86699461693936], [2.395406978663245, 48.86687736668849], [2.39529929912008, 48.866779263308885], [2.395175049162085, 48.86666201279445], [2.395067371863957, 48.866563909194], [2.394943122941611, 48.866446658415974], [2.394835446525274, 48.86634855458773], [2.394711198638565, 48.866231303546144], [2.394603521741095, 48.86613319948329], [2.394479274890016, 48.866015948178116], [2.394371600237439, 48.86591784389444], [2.394357812391328, 48.86590524542151], [2.3943339837830813, 48.8659046949543], [2.394226586625957, 48.86597713194527], [2.394106437693198, 48.86605756956114], [2.393964030153449, 48.86615361840047], [2.393843879045224, 48.866234055733024], [2.393701471901956, 48.86633010425157], [2.393581319981274, 48.86641054130773], [2.393570588057305, 48.86642678296218], [2.393585291874574, 48.86643645701249], [2.393626641480478, 48.86655823651304], [2.39366769908625, 48.86667818255163], [2.393709047703063, 48.8667999628895], [2.39375010705223, 48.866919908880476], [2.393791456053659, 48.86704168916326], [2.393832514419953, 48.86716163509289], [2.393873865179406, 48.86728341442822], [2.393914923915506, 48.86740336120261], [2.393956275059489, 48.867525140482876], [2.393997334175966, 48.86764508720282], [2.3940386843413233, 48.86776686642104], [2.394079745211601, 48.86788681219415], [2.394081038277593, 48.86788909316655], [2.39416748270069, 48.86799506718905], [2.394256500639059, 48.86810320357952], [2.394342945774309, 48.86820917745473], [2.394431964453352, 48.868317312794474], [2.394518410300864, 48.86842328652248], [2.394607429699476, 48.86853142261003], [2.394604052877742, 48.86854269041894], [2.394541767866586, 48.868576120312134], [2.394488134502794, 48.86860539313499], [2.39448635689103, 48.868606561375024], [2.394369748857501, 48.86869924439911], [2.394251424831631, 48.868792800869485], [2.394134817326394, 48.86888548365599], [2.394016491092465, 48.868979039871455], [2.393899882752229, 48.86907172241347], [2.393781555662848, 48.86916527928019], [2.393664946487705, 48.86925796157769], [2.3935466185637972, 48.86935151729719], [2.393430008553743, 48.86944419935018], [2.3933116797848353, 48.869537754821636], [2.393290112604787, 48.86957687727724]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 44, "zemmour_eric": 47.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "20-66", "circ_bv": "06", "num_bureau": 66, "roussel_fabien": 24.0, "nb_emargement": 967.0, "nb_procuration": 53.0, "nb_vote_blanc": 13.0, "jadot_yannick": 80.0, "le_pen_marine": 54.0, "nb_exprime": 952.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1216.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 967, "quartier_bv": "79", "geo_point_2d": [48.86791066632933, 2.3947456936554823], "melenchon_jean_luc": 375.0, "poutou_philippe": 5.0, "macron_emmanuel": 282.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346488859041595, 48.8280878850493], [2.346490576287692, 48.82809313868685], [2.346488511489575, 48.82821308509244], [2.346488533191477, 48.82833316969861], [2.346486468379153, 48.8284531160785], [2.346486491438476, 48.828573200666376], [2.3464844266007763, 48.828693147919886], [2.346484448304639, 48.82881323157532], [2.346485186797981, 48.82881615138155], [2.346500551501645, 48.82885480679561], [2.346522808781642, 48.82889760910791], [2.346540994144193, 48.828915006133215], [2.346569416056643, 48.82890570450716], [2.346748126292556, 48.82884552335622], [2.346931793443974, 48.82878227605796], [2.3471105042006, 48.82872209436636], [2.347294170477447, 48.828658846504645], [2.347472879019364, 48.828598665156775], [2.347656544432998, 48.8285354158323], [2.347658817996165, 48.828534431727086], [2.347824210578906, 48.82844460309429], [2.347982665017698, 48.828359887119305], [2.348141118941525, 48.82827517092806], [2.348306509870758, 48.82818534160747], [2.348316227097087, 48.8281833215005], [2.348416126803135, 48.828188484115536], [2.34852224309169, 48.82819259406727], [2.348536226870846, 48.82818587187101], [2.348565569635079, 48.828111100325515], [2.348591151681709, 48.828043495186044], [2.348596349368683, 48.8280384042573], [2.348727373283336, 48.827975425045274], [2.348913282449208, 48.8278852434298], [2.349044305607411, 48.82782226296267], [2.349230212316784, 48.82773208083476], [2.349361236057984, 48.82766910091852], [2.34937932555015, 48.82767031725541], [2.349425868020462, 48.827704073959666], [2.349459262222346, 48.82773307517994], [2.349466156225488, 48.827736238907065], [2.349597190791184, 48.827762447981726], [2.349726264825557, 48.827786293487286], [2.349857299658934, 48.82781250137648], [2.349986373924984, 48.82783634749956], [2.349989106175986, 48.82783669781666], [2.350167010353602, 48.82784723397508], [2.35034670086139, 48.827859155615116], [2.350350898079625, 48.827859893417944], [2.350472593149068, 48.82789581440151], [2.350597039317888, 48.827930914679165], [2.35071873336059, 48.82796683540261], [2.350843179853557, 48.828001936321236], [2.350846536650143, 48.82800256251907], [2.351023499240262, 48.8280198573805], [2.351196863664531, 48.82803611796465], [2.351370226834929, 48.8280523782899], [2.351547189756574, 48.82806967327495], [2.351720553147814, 48.828085933091884], [2.351897516310852, 48.82810322665876], [2.351900403518938, 48.828103715375924], [2.35202971649245, 48.82813588607844], [2.352158049588735, 48.82816690103186], [2.352287361504662, 48.828199072345924], [2.352415694909758, 48.828230087021126], [2.352429473413319, 48.8282283358999], [2.35259081557746, 48.82813276594446], [2.352742902842631, 48.828040566896966], [2.352744988632329, 48.82803900787836], [2.352842844730988, 48.82794610416562], [2.352942985328354, 48.82784976002948], [2.353040840707809, 48.82775685703839], [2.353140979224829, 48.82766051181355], [2.353238833896251, 48.827567608644785], [2.353338973034829, 48.827471264144606], [2.353358056461253, 48.827469003775334], [2.353384646300178, 48.82748139073103], [2.353405054998624, 48.827494186753576], [2.353436877541282, 48.82749828907014], [2.353449272254668, 48.82747365925638], [2.353589252802862, 48.82735666443991], [2.353723061064453, 48.827243490815476], [2.3538630403914063, 48.82712649475522], [2.35399684746793, 48.82701332080128], [2.354130655336856, 48.82690014579422], [2.354270631453968, 48.82678315011309], [2.354286337523614, 48.82678036321286], [2.354472623965052, 48.826829099628725], [2.354654996682329, 48.826877334364724], [2.354841283825904, 48.82692606930279], [2.355023657223458, 48.8269743034724], [2.355209945058228, 48.827023037832035], [2.355392319124835, 48.82707127233459], [2.355578607650699, 48.82712000611574], [2.355760982408697, 48.82716823915262], [2.355943357504244, 48.82721647190933], [2.356129647064011, 48.82726520482583], [2.356312022839719, 48.827313437016166], [2.356498313079466, 48.82736217025352], [2.356533489265103, 48.82737147288525], [2.356545897165969, 48.827368940453916], [2.356555500796681, 48.82735158383582], [2.356560585275219, 48.827302730196095], [2.356564549534041, 48.8272659482259], [2.356559269992049, 48.82725820588612], [2.356402205142878, 48.82717836596649], [2.356247613128645, 48.827099515864234], [2.356090549234819, 48.827019675524014], [2.355935958173593, 48.826940824108455], [2.355778895223996, 48.82686098424695], [2.355624305104671, 48.826782132417364], [2.355467243121522, 48.826702291235996], [2.355312653933077, 48.82662343989171], [2.355155592905159, 48.82654359828974], [2.355001003307652, 48.826464745624826], [2.3548464155286, 48.826385893661204], [2.354689355930396, 48.82630605142999], [2.354534769093226, 48.82622719905238], [2.354377710450346, 48.826147356400604], [2.354366951828145, 48.82614563537235], [2.354232541126898, 48.82616185657556], [2.354100220843444, 48.82618019705448], [2.353965809970108, 48.82619641795741], [2.35383348950501, 48.82621475814061], [2.353822511566373, 48.826213148300404], [2.353713724347749, 48.82615921038113], [2.353614754308011, 48.826103839653605], [2.353606234687827, 48.826101709750844], [2.35342025776495, 48.82609913136566], [2.353235345026366, 48.82609630572197], [2.35304936814111, 48.82609372676002], [2.352864455441697, 48.82609090054287], [2.352678478594072, 48.82608832100409], [2.352493565934042, 48.82608549421349], [2.352307589124054, 48.82608291409791], [2.352122676503313, 48.82608008673379], [2.351936699730872, 48.8260775060415], [2.351751787149427, 48.826074678103865], [2.351565810414741, 48.826072096834764], [2.351380897872602, 48.82606926832365], [2.351194921175478, 48.82606668647779], [2.351010008672653, 48.82606385739318], [2.351006789665786, 48.82606355212377], [2.350878410353802, 48.82604131350308], [2.35074437154364, 48.8260175393618], [2.350719176343325, 48.82601140193585], [2.350706688307184, 48.826017418412206], [2.350534777718556, 48.826071543812304], [2.350350519435555, 48.826136785627206], [2.350345580668206, 48.826149657646724], [2.350435506366479, 48.82623983368226], [2.350563017840957, 48.82636599092442], [2.350652945650424, 48.82645616678648], [2.3507804581690532, 48.82658232467179], [2.350870385365679, 48.82667250034554], [2.3508732040011, 48.826674550931514], [2.351003574798751, 48.82674407421095], [2.351135735329978, 48.826815168368206], [2.351266106829243, 48.82688469135277], [2.351398269436909, 48.82695578521835], [2.351402233298532, 48.82695928999623], [2.351450810865265, 48.82702857508806], [2.351522915172329, 48.82714248071012], [2.351503541410955, 48.82715373925788], [2.351359650241421, 48.82709893614693], [2.351156379555976, 48.82702283818029], [2.351012490474735, 48.82696803465265], [2.350809220806383, 48.82689193608705], [2.350665331089258, 48.826837132127956], [2.350658653122514, 48.826838281245315], [2.350645679119136, 48.826855957272606], [2.350479818682541, 48.82692946997493], [2.350319790136356, 48.82699984472881], [2.350153928782597, 48.82707335696973], [2.349993899354855, 48.827143731278504], [2.349833870857077, 48.82721410537617], [2.349668008136522, 48.82728761692913], [2.349507977395093, 48.8273579905743], [2.349342113757268, 48.82743150166587], [2.349182083496481, 48.82750187487329], [2.349016218941386, 48.82757538550345], [2.3489974446235, 48.82757305375616], [2.348873548408247, 48.82745546411798], [2.348752284550271, 48.8273401568948], [2.34873735283352, 48.82733663906956], [2.348560568042153, 48.82737000266559], [2.348388095509664, 48.82740315925656], [2.348211310280476, 48.82743652143502], [2.348038837305814, 48.827469677520334], [2.347862051627574, 48.82750303918056], [2.347689576848642, 48.82753619475282], [2.347517103212441, 48.82756935008274], [2.347340316862361, 48.82760271096879], [2.347167842784, 48.82763586579309], [2.346991055984882, 48.82766922616084], [2.34698408098118, 48.8276723241956], [2.346863326709824, 48.82777399565428], [2.346744999148243, 48.827872532428046], [2.346624243947016, 48.827974203627186], [2.34650591546788, 48.82807274104612], [2.346488859041595, 48.8280878850493]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 60, "zemmour_eric": 76.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-58", "circ_bv": "10", "num_bureau": 58, "roussel_fabien": 21.0, "nb_emargement": 1293.0, "nb_procuration": 77.0, "nb_vote_blanc": 19.0, "jadot_yannick": 152.0, "le_pen_marine": 43.0, "nb_exprime": 1265.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 13, "nb_inscrit": 1606.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "51", "geo_point_2d": [48.82724734036544, 2.351298573672892], "melenchon_jean_luc": 458.0, "poutou_philippe": 9.0, "macron_emmanuel": 365.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3873429519077343, 48.8918354207025], [2.38736564536627, 48.89181579944625], [2.387377227615649, 48.89178052354734], [2.387417740780451, 48.8916535832372], [2.387459173771187, 48.89152738684554], [2.387499686549825, 48.89140044557911], [2.387541117766166, 48.89127425002224], [2.387581631511841, 48.891147308705804], [2.3876230623387302, 48.891021112192185], [2.387663575677089, 48.89089417171796], [2.387705006103854, 48.890767975146915], [2.387745519045583, 48.89064103461568], [2.387786949072329, 48.89051483798713], [2.387827461627904, 48.890387896499604], [2.387868891254638, 48.890261699813635], [2.38790940340292, 48.890134759168426], [2.387950832629648, 48.89000856242493], [2.387991344381215, 48.88988162172271], [2.388032773207942, 48.88975542492181], [2.388073284573368, 48.88962848326329], [2.388114712989532, 48.88950228730418], [2.388155223958152, 48.88937534558868], [2.388196651984996, 48.889249148672874], [2.388237162546351, 48.88912220779963], [2.388278590173211, 48.888996010826375], [2.388270916055062, 48.88898592530046], [2.388093346968748, 48.88893256507283], [2.387926741157529, 48.88888295503207], [2.387749172764485, 48.8888295951883], [2.38758256624693, 48.88877998465705], [2.387404998557724, 48.88872662429796], [2.387238394061256, 48.888677013290135], [2.387071788518549, 48.88862740204128], [2.386894221873094, 48.888574040917305], [2.386727618351474, 48.888524429191946], [2.3865500524204553, 48.888471066653295], [2.386383448192622, 48.8884214544374], [2.38620588295486, 48.888368092282626], [2.38618779293849, 48.88837258429428], [2.386097701545371, 48.88850457998996], [2.386011044613142, 48.888630711649434], [2.3859209523253773, 48.8887627071811], [2.385834294546034, 48.88888883778379], [2.385817749214406, 48.88889369828943], [2.385658252920349, 48.88886033092264], [2.385517466061703, 48.888821097751546], [2.385501555309737, 48.88882372575617], [2.385386849536129, 48.888917233082665], [2.385273245234209, 48.88901097527523], [2.385158540012556, 48.88910448147473], [2.385044934890983, 48.88919822343473], [2.384930227472505, 48.88929173029189], [2.384816621531472, 48.88938547201926], [2.384701913301123, 48.88947897774249], [2.38458830654042, 48.88957271923725], [2.384571674585915, 48.88957518782871], [2.384437740149433, 48.8895321044691], [2.38430569356933, 48.88949281410931], [2.384171760917795, 48.88944973135525], [2.384039713383559, 48.88941044069218], [2.384022865287009, 48.88941354391612], [2.383972334779632, 48.88947010219842], [2.383888513948532, 48.889550529832064], [2.383876384693497, 48.88956410563167], [2.383875612598704, 48.88957345729966], [2.383938689059833, 48.8896508168105], [2.384009425034525, 48.88972515709326], [2.384072501878327, 48.88980251652289], [2.384143238250145, 48.88987685671631], [2.384142147911962, 48.88988740554144], [2.384002726017885, 48.889997334559354], [2.3838508350979533, 48.890119986691865], [2.38385292493042, 48.890133891054944], [2.383895065988472, 48.8901466120466], [2.384049966728093, 48.890222951003615], [2.384206212761597, 48.89029997116156], [2.384361115777368, 48.89037630971241], [2.384517361367555, 48.89045332944657], [2.384672265295734, 48.89052966758424], [2.384828513170111, 48.89060668690868], [2.384983418010703, 48.89068302463317], [2.385139665441762, 48.89076004353382], [2.385294571194767, 48.89083638084516], [2.385450820910032, 48.890913399336036], [2.385605727575455, 48.890989736234175], [2.3857619768474, 48.89106675430129], [2.385916884425244, 48.89114309078626], [2.386073135981409, 48.891220108443605], [2.386228044471678, 48.891296444515355], [2.386384295584521, 48.89137346174894], [2.386539204987217, 48.891449797407496], [2.386695458384296, 48.891526814231256], [2.386850367335639, 48.89160314946966], [2.3870066216531782, 48.89168016587664], [2.387161532880739, 48.891756500708816], [2.387317788118744, 48.89183351669899], [2.3873429519077343, 48.8918354207025]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 62, "zemmour_eric": 102.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "19-47", "circ_bv": "16", "num_bureau": 47, "roussel_fabien": 30.0, "nb_emargement": 1404.0, "nb_procuration": 66.0, "nb_vote_blanc": 14.0, "jadot_yannick": 101.0, "le_pen_marine": 69.0, "nb_exprime": 1385.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1872.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1404, "quartier_bv": "74", "geo_point_2d": [48.889967585925596, 2.386332073813049], "melenchon_jean_luc": 588.0, "poutou_philippe": 3.0, "macron_emmanuel": 353.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.340033362352637, 48.87196745896276], [2.340034528133743, 48.87189514137783], [2.339978698333581, 48.871778400497426], [2.339919932640137, 48.87165602880696], [2.339864103353192, 48.87153928784783], [2.339805338198727, 48.87141691607459], [2.339749510788032, 48.87130017504427], [2.339690746183933, 48.87117780228904], [2.339634917923092, 48.87106106117245], [2.339576153846556, 48.87093868923374], [2.339520326098911, 48.87082194803847], [2.339461563935863, 48.87069957512524], [2.339405736701302, 48.87058283385127], [2.339346973702668, 48.87046046174709], [2.339291146981086, 48.87034372039441], [2.339232384532801, 48.870221347308174], [2.339170344244821, 48.87009151313144], [2.33911158371654, 48.86996914086476], [2.33904954403003, 48.86983930659579], [2.33899078270693, 48.86971693423442], [2.338928743621886, 48.869587099873165], [2.338869982867073, 48.869464727424536], [2.338807945746578, 48.86933489297861], [2.338749185571455, 48.869212519543495], [2.338757746145891, 48.869201299877815], [2.338815210959206, 48.8691882602997], [2.338854598352478, 48.869182781437665], [2.338855229859033, 48.86918264912529], [2.338856233966674, 48.86918248289732], [2.339027953539659, 48.869149581861166], [2.339201768166472, 48.8691161480433], [2.3393734886543243, 48.869083247416235], [2.339547302838022, 48.869049813094605], [2.3397190229002582, 48.869016911070545], [2.339892836640833, 48.86898347624513], [2.340064556254851, 48.86895057462269], [2.3402383695523, 48.8689171392935], [2.340248181613453, 48.868908687399546], [2.340251895304386, 48.86878747472198], [2.340254681238931, 48.86864855965532], [2.340258393521632, 48.86852734784076], [2.340261179424936, 48.868388432741284], [2.340264891685369, 48.868267219998735], [2.340267677557433, 48.86812830486639], [2.340271389784208, 48.868007092095105], [2.340274175625032, 48.86786817693], [2.340277887818251, 48.867746964130006], [2.340280673627735, 48.86760804893205], [2.340284385775909, 48.86748683700262], [2.3402871715542553, 48.86734792177187], [2.340290883680059, 48.86722670891446], [2.340290172619701, 48.86722365262272], [2.340215426820619, 48.86707745788416], [2.3401496033339733, 48.866941616050944], [2.3400837801906142, 48.866805774164874], [2.340009035570428, 48.866659579242175], [2.339943213161376, 48.86652373634488], [2.339880132885784, 48.86639474533299], [2.339814311136088, 48.86625890323158], [2.339751232874858, 48.866129911229145], [2.339735967554379, 48.866092515006045], [2.339727218640601, 48.86609122564499], [2.339678174129878, 48.86610283810816], [2.339511420687199, 48.86614333370249], [2.339329326604841, 48.86618644601488], [2.339162571260146, 48.8662269411126], [2.338980477959959, 48.86627005289853], [2.338813722065051, 48.86631054840643], [2.33863162682091, 48.866353659650876], [2.338631383448244, 48.866353716763385], [2.338433176804636, 48.866399047292205], [2.338251080936124, 48.86644215795416], [2.338052874988213, 48.86648748785711], [2.337870778495841, 48.86653059793706], [2.337727410010924, 48.866564167755165], [2.337529201779903, 48.86660949677834], [2.337385832857737, 48.866643066184835], [2.337260542310632, 48.86667171898369], [2.337253120630074, 48.8666726105074], [2.337235805226841, 48.866682473964026], [2.337162888285769, 48.8666991496118], [2.336968066096996, 48.866744517142976], [2.336769857882283, 48.866789844908816], [2.336575035012047, 48.8668352117965], [2.336376826110175, 48.86688053890776], [2.336182002558481, 48.86692590515199], [2.335983792969659, 48.86697123160864], [2.335869510215408, 48.866997843153506], [2.335860769784214, 48.86701288475083], [2.335887842243259, 48.86703754210316], [2.33594502964947, 48.86716676061132], [2.336003055185418, 48.867296127620236], [2.336060243161392, 48.8674253460431], [2.336118267908346, 48.86755471295837], [2.336175456453984, 48.86768393129602], [2.336233483138241, 48.86781329813276], [2.336290672241997, 48.86794251728442], [2.336348698148821, 48.8680718831282], [2.336405889185425, 48.86820110220214], [2.336463915666316, 48.86833046795987], [2.336521105909553, 48.86845968694098], [2.336579132964616, 48.86858905261256], [2.336636325140629, 48.868718271515974], [2.336694352758528, 48.868847638000716], [2.336694852334976, 48.86884940887702], [2.336711083450946, 48.868977544532285], [2.336725651811567, 48.86910265546053], [2.336741884456849, 48.86923079019054], [2.336756452962374, 48.86935590108641], [2.336772685762236, 48.8694840357829], [2.336787254412564, 48.86960914664634], [2.336803487355762, 48.86973728220856], [2.336818056162245, 48.86986239214031], [2.3368342892601293, 48.86999052766897], [2.336848856836859, 48.87011563846005], [2.336865090100777, 48.87024377305591], [2.336879659185526, 48.870368883822124], [2.336894228340262, 48.87049399457235], [2.336910461833698, 48.870622129118225], [2.336925031133247, 48.87074723983605], [2.336941264781478, 48.870875374348316], [2.33695583422574, 48.87100048503373], [2.336972068017221, 48.87112862041177], [2.3369866376177493, 48.871253730165456], [2.337002870200683, 48.87138186550242], [2.336981283981487, 48.8714510086498], [2.33698735113472, 48.87145408562474], [2.337052928657344, 48.87146626797871], [2.33714308910064, 48.87148181416651], [2.337151717203031, 48.87148794958249], [2.337217756727466, 48.87149725831286], [2.337310625704688, 48.87151327173923], [2.337513898072748, 48.87154697196629], [2.337696926653825, 48.87157853002464], [2.337900199526473, 48.871612229593744], [2.338083228559459, 48.87164378795882], [2.338286501936691, 48.87167748686989], [2.338469531433019, 48.87170904464246], [2.338672805314827, 48.87174274289552], [2.338855835285904, 48.87177429917623], [2.339038866830592, 48.87180585608308], [2.339242140095263, 48.871839553358804], [2.339425172103276, 48.87187110967303], [2.339628445872503, 48.87190480629075], [2.339811478343835, 48.87193636201246], [2.3400147526176083, 48.87197005797217], [2.340033362352637, 48.87196745896276]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 65, "zemmour_eric": 79.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "2-2", "circ_bv": "01", "num_bureau": 2, "roussel_fabien": 9.0, "nb_emargement": 842.0, "nb_procuration": 34.0, "nb_vote_blanc": 4.0, "jadot_yannick": 47.0, "le_pen_marine": 46.0, "nb_exprime": 835.0, "nb_vote_nul": 3.0, "arr_bv": "02", "arthaud_nathalie": 2, "nb_inscrit": 1041.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 842, "quartier_bv": "06", "geo_point_2d": [48.86881103149866, 2.3382783462658367], "melenchon_jean_luc": 210.0, "poutou_philippe": 4.0, "macron_emmanuel": 346.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.330425124109578, 48.854453537962456], [2.330428519466483, 48.854437383861566], [2.330375717417147, 48.85435361024754], [2.330351659035854, 48.85430299031124], [2.330334399419735, 48.85427532668456], [2.330334621038398, 48.854268793210494], [2.330323957523423, 48.854256522986], [2.3302656809803413, 48.85416311535367], [2.330186974259068, 48.8540376608107], [2.330111437464601, 48.853916589417864], [2.330032732849944, 48.85379113475328], [2.3299571967712263, 48.85367006323617], [2.329878491537498, 48.85354460843465], [2.3298029575373, 48.85342353680096], [2.329724253047173, 48.853298081870186], [2.329648719762699, 48.85317701011232], [2.32957001601637, 48.85305155505226], [2.32949448344761, 48.85293048317018], [2.329415780444965, 48.85280502798084], [2.329340248591807, 48.85268395597455], [2.329294733227653, 48.85260821335713], [2.329293025807818, 48.8526061856301], [2.329186399339555, 48.852511757113824], [2.329068960629586, 48.85240684791718], [2.328962333612602, 48.85231241917672], [2.328844897154045, 48.85220751064833], [2.328738270950981, 48.85211308169124], [2.328620835392853, 48.85200817292413], [2.328514210003601, 48.85191374375046], [2.328537697641594, 48.85187993382068], [2.328474134006973, 48.851834520193115], [2.328386930097876, 48.85182049001372], [2.328182603627924, 48.851783948717944], [2.327993177867982, 48.85175347058765], [2.327788851936937, 48.8517169286173], [2.327599426639423, 48.85168645076108], [2.327410001563389, 48.851655972604135], [2.327205676423599, 48.85161942963471], [2.327199805149394, 48.85161723726262], [2.327093801110157, 48.85155009138009], [2.3270100254188932, 48.85148900438979], [2.326997863212865, 48.85147934073317], [2.326986806477647, 48.85147556779095], [2.326938600684736, 48.85144503234223], [2.326883246312128, 48.8514105462494], [2.326860545032668, 48.85140483172484], [2.326816284743761, 48.85143853436606], [2.326778961557481, 48.85157293483454], [2.326741710883617, 48.85170708746151], [2.326704387312646, 48.85184148787431], [2.326667134892082, 48.851975640438035], [2.3266298122991538, 48.85211004080272], [2.326592559494715, 48.85224419331084], [2.326555235154242, 48.85237859361217], [2.326517983328571, 48.852512746072314], [2.326480658603492, 48.852647146317956], [2.326443405030978, 48.852781298714795], [2.326406081283946, 48.85291569891234], [2.326368827327439, 48.85304985125364], [2.326331501832925, 48.85318425138778], [2.326294248855187, 48.8533184036811], [2.326256922975949, 48.853452803759524], [2.326219669614315, 48.853586955997166], [2.326182343350244, 48.85372135601985], [2.326145088241818, 48.85385550819426], [2.326107761593108, 48.853989908161196], [2.326070507463355, 48.854124060287624], [2.326033180429903, 48.85425846019883], [2.325995925916134, 48.85439261226959], [2.325984028753383, 48.85439992896251], [2.32578850843327, 48.85441429636382], [2.325591733018209, 48.854427803783146], [2.325396212485337, 48.85444217054309], [2.325199436874969, 48.85445567641769], [2.325003916129352, 48.854470042536256], [2.324807140300397, 48.85448354866469], [2.32461161934204, 48.854497914141945], [2.324414843306151, 48.85451141962488], [2.324389832628049, 48.85452312202379], [2.3243879559256992, 48.85453804882294], [2.324466738930549, 48.854620968118226], [2.324563557391935, 48.85472963517804], [2.324674700174891, 48.85484661299106], [2.3247715195009, 48.85495527896125], [2.324875374289932, 48.85507237551762], [2.324972193091114, 48.85518104129568], [2.325076048792742, 48.855298136754804], [2.3251728684202693, 48.85540680324768], [2.325276725022849, 48.85552389850887], [2.325373546851218, 48.85563256482501], [2.325477402992029, 48.855749659880495], [2.325574225658421, 48.85585832601215], [2.32567104736582, 48.85596699204715], [2.325774906204523, 48.85608408681691], [2.325801848996777, 48.856099105845324], [2.325828074688566, 48.85608717617878], [2.325872975090785, 48.85605565496072], [2.325921529621009, 48.85602454013288], [2.3259233865477382, 48.856023543316816], [2.326094883633553, 48.85594655146413], [2.326265330269122, 48.85587044111139], [2.326436826345863, 48.85579344875803], [2.326607273343964, 48.855717337915394], [2.326778768423045, 48.8556403441621], [2.326949214409219, 48.85556423372118], [2.327119659897556, 48.85548812303227], [2.327291153465099, 48.85541112852878], [2.327461597953036, 48.85533501734232], [2.327633090511402, 48.85525802233815], [2.3276351993322493, 48.855257250849846], [2.327806905676112, 48.85520695863426], [2.327977034773807, 48.855157831870926], [2.328148741822833, 48.85510753916797], [2.328318870273627, 48.85505841191423], [2.328490575290787, 48.85500811960789], [2.328660703106267, 48.854958990964455], [2.328832407465771, 48.85490869816314], [2.32900253463444, 48.854859569029315], [2.329172661470619, 48.85481044055072], [2.329344366220855, 48.85476014611635], [2.329514491047413, 48.85471101713976], [2.329686195128509, 48.854660723109724], [2.329856320682434, 48.85461159275105], [2.330028022743158, 48.85456129821834], [2.330198147650263, 48.85451216736932], [2.33036984905342, 48.85446187234164], [2.330425124109578, 48.854453537962456]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 129, "zemmour_eric": 157.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "7-7", "circ_bv": "02", "num_bureau": 7, "roussel_fabien": 8.0, "nb_emargement": 1135.0, "nb_procuration": 78.0, "nb_vote_blanc": 3.0, "jadot_yannick": 55.0, "le_pen_marine": 40.0, "nb_exprime": 1132.0, "nb_vote_nul": 1.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1383.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "25", "geo_point_2d": [48.85385320098778, 2.3275527773794886], "melenchon_jean_luc": 113.0, "poutou_philippe": 5.0, "macron_emmanuel": 585.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323962774471304, 48.84390329583252], [2.323938608328103, 48.84388893402431], [2.323911859759257, 48.843897914103344], [2.323767347515783, 48.843946431033146], [2.323590196538689, 48.84400586409976], [2.323418933595333, 48.844063360596074], [2.32324178183505, 48.84412279224126], [2.323070518111406, 48.844180289132055], [2.322893365556364, 48.84423972025507], [2.32272210243833, 48.8442972157495], [2.322544949076844, 48.84435664724966], [2.322373683827669, 48.84441414223156], [2.322196529671524, 48.84447357320952], [2.3220252650161832, 48.844531067694355], [2.321848110076982, 48.84459049725086], [2.321676843278895, 48.84464799212241], [2.32149968754484, 48.84470742115676], [2.321328419989857, 48.84476491462423], [2.32115126344934, 48.84482434403571], [2.320979996488308, 48.84488183700609], [2.320802839153037, 48.84494126589535], [2.320631570060855, 48.844998758353164], [2.320454411942659, 48.84505818582099], [2.32036224596914, 48.84508912469753], [2.320342844469031, 48.84509823834866], [2.3203791450588582, 48.84515163382804], [2.320555057564546, 48.84520335262868], [2.320728648370301, 48.84525455703859], [2.320904561570125, 48.84530627532053], [2.321078151699621, 48.84535747921081], [2.32125406559368, 48.84540919697409], [2.321427657783548, 48.84546039946098], [2.321603572371937, 48.84551211670555], [2.321777163873722, 48.84556331957213], [2.321953079156341, 48.845615036298035], [2.322126671344317, 48.84566623865277], [2.322302587321162, 48.84571795485997], [2.322476181557901, 48.845769156710574], [2.32265209822897, 48.845820872399095], [2.322825691789322, 48.845872073730106], [2.322833758694483, 48.84588035935146], [2.322831974446725, 48.84602123979698], [2.322830149009598, 48.84615868262842], [2.322828364730868, 48.846299563938025], [2.32282653791188, 48.84643700672741], [2.322824712445751, 48.84657444950753], [2.322822928149877, 48.84671532986514], [2.322821101301876, 48.84685277260317], [2.32281931833753, 48.846993653832584], [2.322817491470354, 48.84713109653619], [2.322815708486727, 48.84727197773037], [2.322813881600275, 48.8474094203996], [2.3228120986090532, 48.84755030065922], [2.322799091215022, 48.84756260314449], [2.32281426299821, 48.847577113876376], [2.322975532388543, 48.84766569181968], [2.3231276986783262, 48.84774992358523], [2.323279865459901, 48.84783415515085], [2.323441137799681, 48.84792273245389], [2.323593304229819, 48.84800696360011], [2.323754577648797, 48.84809553956757], [2.323776194690681, 48.84809152379235], [2.3238458869879812, 48.8479563210506], [2.323914812705347, 48.847823248105556], [2.323984504284254, 48.847688045250514], [2.324053429292944, 48.847554972193535], [2.324123120141703, 48.847419770124496], [2.324192044441626, 48.8472866969556], [2.3242617345836782, 48.84715149387397], [2.324330658174843, 48.84701842059321], [2.324341911586874, 48.84701240176496], [2.324527966571186, 48.846997512080534], [2.324712301832201, 48.84698272032374], [2.324898357955576, 48.846967830969895], [2.325082693006576, 48.84695303864203], [2.325268748929801, 48.84693814781249], [2.325453083770672, 48.8469233549136], [2.325639138107845, 48.846908464399256], [2.325823472738585, 48.84689367092927], [2.326009528238187, 48.84687877894695], [2.326193862658783, 48.84686398490589], [2.326224667903101, 48.84686131191883], [2.326228632379955, 48.84685010571723], [2.326129144554756, 48.84672321925871], [2.326030734948898, 48.8465975025485], [2.325931246725153, 48.84647061588901], [2.325832838073672, 48.846344898987525], [2.325733350814072, 48.84621801213473], [2.325634943116956, 48.846092295041956], [2.325535458183866, 48.84596540800351], [2.325437051452739, 48.84583968982016], [2.3254427399378, 48.84582762906729], [2.325551326247964, 48.84578936543355], [2.325644673702934, 48.845754905546926], [2.325665375498855, 48.84574781924191], [2.325665334877948, 48.84573768949342], [2.325559808136673, 48.84562483980308], [2.325455388864377, 48.84551321128901], [2.325349863032137, 48.84540036139076], [2.325245444647742, 48.845288733570264], [2.32513991973627, 48.845175882564824], [2.325035500888645, 48.845064254530925], [2.324929976886399, 48.844951403317594], [2.324825560300753, 48.84483977508568], [2.324720037207514, 48.84472692366445], [2.324615621521277, 48.84461529522683], [2.324510099325582, 48.84450244449702], [2.324405683187861, 48.84439081494669], [2.324300161901253, 48.84427796400897], [2.324195748025467, 48.844166334260656], [2.324090227647832, 48.844053483115076], [2.323985814671428, 48.84394185316106], [2.323962774471304, 48.84390329583252]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 120, "zemmour_eric": 132.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "6-17", "circ_bv": "11", "num_bureau": 17, "roussel_fabien": 21.0, "nb_emargement": 1264.0, "nb_procuration": 100.0, "nb_vote_blanc": 9.0, "jadot_yannick": 105.0, "le_pen_marine": 59.0, "nb_exprime": 1250.0, "nb_vote_nul": 5.0, "arr_bv": "06", "arthaud_nathalie": 3, "nb_inscrit": 1521.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1264, "quartier_bv": "23", "geo_point_2d": [48.84577610662066, 2.3236289308279883], "melenchon_jean_luc": 190.0, "poutou_philippe": 0.0, "macron_emmanuel": 574.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.292484078933557, 48.85075397431796], [2.292471945686879, 48.85074035008715], [2.292304303665031, 48.85070614429683], [2.292140376809264, 48.85067284162371], [2.291972735222238, 48.85063863536679], [2.291808808778514, 48.85060533313665], [2.291641167626311, 48.85057112641309], [2.291477242981768, 48.85053782283545], [2.291309600901702, 48.85050361563715], [2.291145676681429, 48.85047031160329], [2.291136352862567, 48.8504635759016], [2.291120679015053, 48.85041462698962], [2.291104450253431, 48.85036449752034], [2.291094182712941, 48.850357613224524], [2.290863602369065, 48.850322551305226], [2.290637317740206, 48.85028819432521], [2.290406738023035, 48.85025313062396], [2.290180455359526, 48.850218772785844], [2.290178529659385, 48.8502183800316], [2.2900160501573392, 48.85017627824462], [2.28985435783903, 48.850134832044546], [2.289692664415341, 48.85009338561629], [2.289530185695563, 48.85005128316479], [2.289368494151519, 48.85000983630346], [2.289206015954148, 48.84996773340857], [2.289202808512544, 48.8499671963207], [2.289031750440068, 48.84995277316464], [2.288858029073324, 48.84993878901089], [2.288686971189526, 48.84992436536154], [2.2885132513726862, 48.849910380714924], [2.288501338928904, 48.84990233342641], [2.288480952644798, 48.849765448776466], [2.288463125809964, 48.84963694160453], [2.2884452990508732, 48.849508435314405], [2.288424911705399, 48.84937155059836], [2.288432040026695, 48.84935599893361], [2.288409265358499, 48.8493470443254], [2.288360568227788, 48.849335312086346], [2.288140958344289, 48.849281633022855], [2.287942388960353, 48.849233795129145], [2.287722779935419, 48.84918011529321], [2.287524211334585, 48.84913227580183], [2.287505252038239, 48.8491278477514], [2.287493198182474, 48.84913515074936], [2.287320378872554, 48.84919852396509], [2.287147282828544, 48.849262072456], [2.286974462676949, 48.849325445164915], [2.2868013657772233, 48.84938899404737], [2.28662854614672, 48.849452366257516], [2.286455447040911, 48.84951591462414], [2.286282626568837, 48.84957928632747], [2.286109526619709, 48.849642834186376], [2.286103009763851, 48.84964831559352], [2.286052605098268, 48.8497696860826], [2.286001631916793, 48.849891156572724], [2.2859512267925313, 48.8500125260933], [2.285900253137209, 48.85013399651372], [2.285849848892304, 48.85025536687256], [2.285798874763029, 48.85037683722327], [2.285748468696855, 48.8504982066055], [2.285697494093721, 48.850619676886495], [2.285692884557774, 48.850624293675224], [2.285598324616309, 48.85067561422638], [2.285494609690761, 48.85073048287648], [2.285485883935577, 48.85073245793095], [2.285311685764237, 48.85073075648826], [2.285136439528225, 48.85072896219113], [2.284962241392424, 48.85072725934039], [2.284786995180106, 48.85072546453143], [2.284612797055073, 48.850723762071226], [2.284437552229355, 48.85072196675861], [2.284263354139684, 48.850720262890334], [2.2840881079750748, 48.85071846705775], [2.284078258357149, 48.85072110081357], [2.28392750621407, 48.85082061161123], [2.283777093553966, 48.85091957383587], [2.283626338911268, 48.851019083328865], [2.283475925106247, 48.851118045157236], [2.2833251693018948, 48.851217555152296], [2.28317475436452, 48.85131651568516], [2.283023997410869, 48.851416025283], [2.282873581316289, 48.851514986318875], [2.282722823225708, 48.851614494620215], [2.282572405986286, 48.85171345525979], [2.282421646734009, 48.851812964063235], [2.282271228362019, 48.85191192340723], [2.2822064685964962, 48.8519523848377], [2.282225661687232, 48.8519661010263], [2.282334950568291, 48.85204336602847], [2.28247642533114, 48.85214014762561], [2.282611058104861, 48.852235327629366], [2.282752533889311, 48.85233210978259], [2.282887166300585, 48.85242728945107], [2.283028643131403, 48.85252407036186], [2.283163277893345, 48.852619250610665], [2.2833047543954113, 48.8527160311701], [2.283439390157666, 48.852811211091776], [2.283580869056488, 48.85290799131623], [2.28371550446867, 48.85300317000334], [2.283856984389141, 48.85309995078391], [2.283991622164304, 48.853195129152034], [2.284133103131157, 48.85329190869012], [2.284267740531632, 48.85338708762228], [2.284409222532514, 48.85348386681716], [2.284492792775069, 48.853542943717514], [2.2845130030251832, 48.85355095555644], [2.284581529471939, 48.85348680292161], [2.284748352453287, 48.853420226812524], [2.284912479611351, 48.85335481791663], [2.285079300396879, 48.85328824043082], [2.285243428074123, 48.853222831980666], [2.285410248014362, 48.85315625402554], [2.285574374872791, 48.853090844214364], [2.285741193955308, 48.85302426668928], [2.285905318619831, 48.852958856408286], [2.286069444235065, 48.85289344590642], [2.2862362620530963, 48.85282686767929], [2.28640038547443, 48.85276145670761], [2.28656720380983, 48.8526948780193], [2.286731326400018, 48.852629466585974], [2.286898142539592, 48.852562886520936], [2.287062265661379, 48.85249747463404], [2.28722908094326, 48.852430894999024], [2.287393201871159, 48.852365482642284], [2.2875600176704, 48.852298902546146], [2.287724137767155, 48.852233489727716], [2.287890951358274, 48.852166909154214], [2.287909811325528, 48.852170112503124], [2.2879868286201512, 48.85225828192231], [2.288062475914697, 48.85234569846092], [2.288080846309056, 48.85234913000467], [2.288254747154784, 48.852286393598135], [2.288428888389975, 48.852223587317916], [2.288602788385435, 48.85216085129777], [2.2887769287815942, 48.85209804450393], [2.288950826588712, 48.85203530706348], [2.2891249661457342, 48.851972499756016], [2.28929886446533, 48.85190976271009], [2.289473003183317, 48.85184695488901], [2.289646900677191, 48.85178421643088], [2.289821038556141, 48.85172140809618], [2.289994933837045, 48.85165867001633], [2.290169070876961, 48.85159586116808], [2.290342966682605, 48.85153312258341], [2.290517102883487, 48.851470313221554], [2.290690997863387, 48.85140757322471], [2.29086513322533, 48.85134476334923], [2.291039025992184, 48.851282023730775], [2.291213160515091, 48.85121921334173], [2.291387053818904, 48.85115647231911], [2.29156118750277, 48.85109366141646], [2.291735079956363, 48.851030920780296], [2.291909212801191, 48.85096810936409], [2.291919703001268, 48.850969054619064], [2.291936047144297, 48.85095821060915], [2.292067097159457, 48.850910577939125], [2.292209372329366, 48.85085852371457], [2.2923404218440933, 48.850810890740945], [2.292482696468801, 48.85075883618677], [2.292484078933557, 48.85075397431796]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 157, "zemmour_eric": 135.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-14", "circ_bv": "12", "num_bureau": 14, "roussel_fabien": 8.0, "nb_emargement": 1377.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 78.0, "le_pen_marine": 57.0, "nb_exprime": 1364.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1745.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1377, "quartier_bv": "59", "geo_point_2d": [48.85130720507183, 2.2868470379907166], "melenchon_jean_luc": 263.0, "poutou_philippe": 1.0, "macron_emmanuel": 624.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.291688602409632, 48.882205675704625], [2.291688158986304, 48.88220288693753], [2.291685787125131, 48.8821879888898], [2.2916702335430488, 48.88218259348343], [2.2916542670374183, 48.88218429769047], [2.291529655207754, 48.882092563705996], [2.2914146235542843, 48.88200651163239], [2.291290013935564, 48.881914777391735], [2.291174983058528, 48.88182872597323], [2.29105995257398, 48.8817426735382], [2.290935344211296, 48.88165093890642], [2.290938204733672, 48.881637340788544], [2.291136752189522, 48.88155441146059], [2.291330733661252, 48.881473389247], [2.291336410918324, 48.88146302202127], [2.291277807470489, 48.881343616394055], [2.291219419201601, 48.88122465087404], [2.291160814926845, 48.881105245155624], [2.291102427180216, 48.880986280452014], [2.291043823454174, 48.88086687375122], [2.290985436242033, 48.880747908964814], [2.2909268330402153, 48.88062850308015], [2.290868446374801, 48.88050953731168], [2.290809843709341, 48.8803901313439], [2.290751458941877, 48.880271165500716], [2.290753518611845, 48.88026300451968], [2.290868587710737, 48.88016168775276], [2.290985142702766, 48.88005906393698], [2.2911002122515782, 48.879957747835974], [2.291216764967314, 48.87985512376763], [2.291220445844594, 48.879844655679086], [2.291204605028535, 48.879836475043895], [2.291023946125355, 48.879726171671635], [2.290838583337139, 48.879612995539524], [2.290834577554837, 48.87960846702419], [2.290803481752748, 48.87952177005152], [2.290771832992341, 48.87943353191849], [2.290740738762596, 48.8793468349238], [2.290709090214898, 48.87925859676015], [2.290698206171818, 48.87925181241476], [2.290498953419046, 48.879228466596004], [2.290301900789034, 48.87920537900636], [2.290102648379302, 48.87918203342633], [2.289905596112921, 48.87915894428415], [2.289706344058489, 48.87913559804356], [2.28950929213123, 48.879112509147376], [2.2893100404443762, 48.87908916134693], [2.289112988868609, 48.879066071797475], [2.288915937479741, 48.87904298102396], [2.288716686312612, 48.879019633133765], [2.28851963526287, 48.87899654260624], [2.288320384463359, 48.878973193156206], [2.288123333765133, 48.8789501019754], [2.287924083320868, 48.8789267518648], [2.287912553485048, 48.878928936128716], [2.287806684965374, 48.87899207670704], [2.287699052398715, 48.879056268813315], [2.287593181997922, 48.87911940918744], [2.287485548904963, 48.87918360109433], [2.2874680407024393, 48.87918403289513], [2.287310128540991, 48.87910313806533], [2.287153512686773, 48.87902290635565], [2.286995602853533, 48.87894201200654], [2.286838987968376, 48.87886177987361], [2.286681077761084, 48.87878088419041], [2.286524463844987, 48.87870065163434], [2.286366555965877, 48.87861975643185], [2.286209943018834, 48.878539523452574], [2.286052034765682, 48.878458626915965], [2.285895422787691, 48.87837839351351], [2.285737515499273, 48.878297497449495], [2.2855809044903292, 48.87821726362387], [2.285422999554719, 48.87813636624207], [2.285266389502377, 48.87805613289252], [2.285109779945, 48.877975898433], [2.284951875109644, 48.87789500040394], [2.2849495008753182, 48.87789343935689], [2.28483070964828, 48.87779328876939], [2.284713385366115, 48.87769437531662], [2.284596062905342, 48.877595460848866], [2.284477271674274, 48.877495309875464], [2.284359950097984, 48.877396396057684], [2.284241161150622, 48.87729624394077], [2.284195341468934, 48.87723621235774], [2.284171827581118, 48.87724369996646], [2.284026128012607, 48.877289669027796], [2.283875513610505, 48.87734192728051], [2.28372489890616, 48.87739418534128], [2.283540247808056, 48.877452443166625], [2.283479957038862, 48.877473361624354], [2.283397935739778, 48.877479159757925], [2.283379889480928, 48.87749356439531], [2.283289564794541, 48.8775249034952], [2.283228709425793, 48.87754512325537], [2.283225333341435, 48.877546813587536], [2.2832865819209562, 48.8776267261007], [2.283442825825488, 48.87772116859057], [2.283588305722045, 48.877808754628134], [2.283733787471315, 48.87789634049006], [2.283890031632193, 48.87799078236501], [2.28403551439733, 48.878078367845845], [2.284191759651412, 48.87817280931139], [2.284225453980679, 48.87819309394563], [2.284244804005828, 48.87821885252893], [2.284263706334004, 48.87821607236518], [2.284375495896857, 48.87828337189426], [2.284508804212467, 48.87836340867468], [2.284654287707989, 48.87845099246653], [2.284787598244501, 48.87853102893249], [2.284933082664638, 48.87861861327144], [2.285066392707553, 48.878698648507374], [2.285211879428298, 48.87878623250238], [2.285345190328695, 48.87886626741565], [2.285490676622985, 48.87895385105039], [2.285623989744308, 48.87903388564922], [2.285628502869958, 48.8790356860777], [2.285834251346736, 48.879085086771134], [2.286039905082692, 48.8791344640579], [2.286245652976479, 48.87918386403178], [2.286451307492521, 48.87923324060739], [2.286657057542516, 48.879282638978616], [2.286862712826218, 48.87933201574238], [2.286866802593325, 48.87933357077986], [2.287026790061666, 48.87942193675541], [2.287186049988198, 48.87950990066712], [2.287346039903236, 48.87959826621], [2.287505300920389, 48.87968622878365], [2.287665290555422, 48.87977459387766], [2.28782455265099, 48.879862556012554], [2.287983815272344, 48.879950518827805], [2.288143806531173, 48.88003888326114], [2.288303070243146, 48.880126844738356], [2.288463063948706, 48.88021520873898], [2.288622328739213, 48.880303169777406], [2.28878232216467, 48.880391533329124], [2.288941588021334, 48.880479494828045], [2.289101582530166, 48.88056785793896], [2.289260849477552, 48.88065581809978], [2.289420846433246, 48.88074418077802], [2.289580114459081, 48.88083214050005], [2.289740111134677, 48.88092050272934], [2.2897449877195, 48.880927169670585], [2.2897502358008808, 48.88106326876156], [2.289755406284093, 48.88119736095352], [2.289760653044163, 48.88133346090182], [2.289765823581023, 48.881467553060425], [2.2897709927932652, 48.88160164429511], [2.289776240998311, 48.88173774420082], [2.2897814116154462, 48.88187183630951], [2.289786658523797, 48.882007935274], [2.289782758013473, 48.882021177350346], [2.289798121077674, 48.882027726622205], [2.2899769646208368, 48.882050643977344], [2.290156433124713, 48.88207364121298], [2.290335276983229, 48.88209655803193], [2.2905147458034563, 48.8821195547295], [2.290693589977421, 48.88214247101228], [2.290873059114094, 48.88216546717176], [2.2910519036034, 48.88218838291834], [2.291231373056512, 48.882211378539765], [2.291410217873387, 48.88223429285085], [2.291589687642929, 48.882257287934195], [2.291605717467156, 48.88226566656868], [2.291624990453437, 48.882256867283054], [2.291650632987391, 48.88223552756384], [2.291672275761062, 48.88221751600094], [2.291688602409632, 48.882205675704625]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 182, "zemmour_eric": 191.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-61", "circ_bv": "04", "num_bureau": 61, "roussel_fabien": 9.0, "nb_emargement": 1242.0, "nb_procuration": 91.0, "nb_vote_blanc": 10.0, "jadot_yannick": 57.0, "le_pen_marine": 56.0, "nb_exprime": 1229.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1503.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1242, "quartier_bv": "65", "geo_point_2d": [48.879767291585694, 2.288459674603393], "melenchon_jean_luc": 125.0, "poutou_philippe": 7.0, "macron_emmanuel": 568.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332120635373362, 48.826864253100304], [2.332179284423217, 48.826853297940325], [2.332382082236263, 48.8268203258638], [2.332585015709936, 48.82678907920614], [2.332787813016585, 48.8267561064397], [2.332990745997018, 48.82672485909178], [2.333193544159339, 48.82669188564306], [2.333396475284648, 48.826660637597264], [2.333599407528676, 48.826629389213856], [2.3338022035726063, 48.826596414722594], [2.334005135323573, 48.82656516564892], [2.334207932211564, 48.82653219137471], [2.334410862107291, 48.826500941603214], [2.334613658500433, 48.82646796573979], [2.334619438069694, 48.826467860292034], [2.334813759727202, 48.82649204541451], [2.334997137875008, 48.82651421681898], [2.335180517540855, 48.82653638794933], [2.335374838351872, 48.82656057215108], [2.335558218341381, 48.826582742701405], [2.335752540862549, 48.826606926295995], [2.335935919813638, 48.82662909625864], [2.336130242671321, 48.82665328013786], [2.3363136219575082, 48.82667544862113], [2.336507945163053, 48.82669963188564], [2.336524977840311, 48.82671951446964], [2.33656925352484, 48.82671392584254], [2.336674342226175, 48.82666307072743], [2.336770781996933, 48.82661685420574], [2.33679768791949, 48.826609407283264], [2.336795156137411, 48.826585921307256], [2.33682080094669, 48.82646355400497], [2.336850293700396, 48.82632694300376], [2.336875938264315, 48.82620457476212], [2.336905430727048, 48.8260679637158], [2.336931076384794, 48.825945596340965], [2.336960567194498, 48.825808985241956], [2.336986212606884, 48.82568661692777], [2.337015703125529, 48.825550005783676], [2.3370413482696852, 48.825427638328726], [2.337070839859519, 48.82529102714706], [2.33709648339628, 48.82516865874523], [2.337125974695157, 48.82503204751845], [2.337151617963704, 48.82490967997592], [2.337181108971528, 48.82477306870399], [2.337206753345326, 48.824650701128924], [2.337236242711711, 48.82451408890508], [2.337261886828731, 48.82439172129], [2.337276628720122, 48.82434371681603], [2.337237002390774, 48.8243357121836], [2.337054315559819, 48.8243140138441], [2.336853739353145, 48.82429166110459], [2.336671052836146, 48.82426996217874], [2.3364704769746982, 48.82424760789618], [2.336287790771566, 48.824225908384015], [2.336087215243919, 48.82420355345774], [2.336086943212257, 48.82420352316736], [2.335895346973789, 48.82418339426607], [2.33569477177796, 48.824161038680735], [2.335503175846917, 48.82414090915037], [2.335302600982684, 48.82411855290641], [2.335111003997267, 48.82409842273944], [2.334910429464638, 48.82407606583688], [2.3347188341487772, 48.82405593504836], [2.33451825994776, 48.82403357748721], [2.334326663577445, 48.82401344606202], [2.3341260897080502, 48.82399108784227], [2.333934495007204, 48.8239709557956], [2.33373392146944, 48.82394859691724], [2.333542327076267, 48.82392846424148], [2.333341752508138, 48.8239061046969], [2.3331501584225443, 48.823885971392116], [2.332949585548069, 48.82386361119655], [2.332757991769963, 48.823843477262635], [2.332557417865245, 48.82382111640088], [2.332365824394735, 48.82380098183795], [2.332165252183586, 48.823778620325164], [2.331973659032307, 48.8237584842338], [2.3319674263621373, 48.82375878848212], [2.331808633974926, 48.82378952259006], [2.331653504918634, 48.82382178072428], [2.331494712154532, 48.82385251441366], [2.331339581354595, 48.823884772131194], [2.331180789575611, 48.82391550540962], [2.331025658393933, 48.82394776271812], [2.330993737581507, 48.82393739507181], [2.330988108526419, 48.82395254150809], [2.330970661265161, 48.82396488321505], [2.330974332134358, 48.82399258305434], [2.331020193863818, 48.82411356601899], [2.331082561206847, 48.82426557902645], [2.331082664061457, 48.824265843119925], [2.331128526282658, 48.82438682601358], [2.331178058145241, 48.82452384644], [2.331223922188305, 48.82464482837757], [2.331273454535164, 48.82478184963232], [2.331319319026444, 48.82490283150551], [2.331368851880657, 48.82503985178995], [2.33141471680883, 48.82516083449805], [2.331464250158869, 48.82529785471151], [2.331510115535373, 48.82541883735523], [2.331559649381245, 48.825555857497655], [2.331605513844038, 48.825676840069384], [2.33165137988174, 48.82579782261812], [2.3317009144589322, 48.825934842655776], [2.331701059775384, 48.82593519512457], [2.33176052921513, 48.82606877205895], [2.33181121806649, 48.82618092257973], [2.331861907147552, 48.82629307216842], [2.331921376045544, 48.82642664897262], [2.33197206695292, 48.82653879939702], [2.332031536413542, 48.8266723761172], [2.332082226446245, 48.82678452556344], [2.332115462887717, 48.82685917870808], [2.332120635373362, 48.826864253100304]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 68, "zemmour_eric": 72.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-37", "circ_bv": "11", "num_bureau": 37, "roussel_fabien": 26.0, "nb_emargement": 1206.0, "nb_procuration": 46.0, "nb_vote_blanc": 10.0, "jadot_yannick": 84.0, "le_pen_marine": 84.0, "nb_exprime": 1193.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1506.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1207, "quartier_bv": "54", "geo_point_2d": [48.82526076144728, 2.334116741803002], "melenchon_jean_luc": 370.0, "poutou_philippe": 10.0, "macron_emmanuel": 412.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.288953471148676, 48.87572491192364], [2.288978560442498, 48.8757763018468], [2.288933698775473, 48.87585751753653], [2.288912354460852, 48.87590402431407], [2.288899230640108, 48.875914058553086], [2.288925392891291, 48.87593769397417], [2.289096788631941, 48.87600235296655], [2.289268359700733, 48.87606718362308], [2.289439757656632, 48.876131842124884], [2.289611329578879, 48.87619667228228], [2.2897827270233, 48.87626133027737], [2.289954299798898, 48.876326159935545], [2.290125699458577, 48.876390817440125], [2.2902972730877282, 48.87645564659914], [2.290468672235923, 48.876520303596934], [2.290640246718527, 48.876585132256835], [2.290811646718606, 48.87664978875598], [2.290983223417941, 48.87671461692474], [2.291154624269906, 48.87677927292524], [2.291326200471651, 48.87684409968748], [2.291330870866406, 48.876856788253605], [2.29121998889886, 48.87696983632842], [2.291106641528742, 48.877082265335574], [2.290995758606714, 48.87719531228033], [2.290882410261758, 48.87730774105216], [2.290771526360856, 48.87742078866538], [2.2906581770534, 48.877533216302645], [2.290547292185651, 48.877646263685016], [2.290433940540137, 48.87775869107891], [2.290439426055823, 48.877771788305175], [2.290622860712324, 48.877829473583716], [2.290794256160792, 48.87788334869733], [2.290977690239696, 48.877941033418224], [2.291149086422334, 48.87799490801841], [2.291320482971798, 48.87804878147125], [2.291503919579605, 48.878106465385315], [2.291522226334608, 48.878102028466074], [2.291605907763028, 48.87797899037864], [2.291690994080656, 48.87785388215945], [2.291774674711684, 48.87773084392633], [2.291859760218422, 48.877605735559015], [2.291943440052068, 48.87748269718025], [2.292028524748128, 48.877357588664815], [2.292112203784404, 48.8772345501404], [2.292197289032986, 48.87710944148492], [2.292221739894711, 48.877108866578595], [2.292342489647715, 48.87725716308016], [2.2924509474767, 48.8773903633092], [2.292452937670793, 48.87739220612859], [2.292584877117805, 48.87748652623555], [2.29273030734156, 48.87759048947255], [2.292862246429883, 48.87768480924879], [2.2930076777609703, 48.877788772130195], [2.293139617853906, 48.877883091583755], [2.293285051655746, 48.877987054117526], [2.293416992765409, 48.878081372349186], [2.293562426299089, 48.87818533541848], [2.293672221770796, 48.87826632305858], [2.293817656330307, 48.87837028580039], [2.293927453952225, 48.87845127320085], [2.293935315781029, 48.87845138702009], [2.293952447676148, 48.87844368899305], [2.293974760606697, 48.878310589788754], [2.293995456039617, 48.87818797091943], [2.29401776876289, 48.878054870776985], [2.294038462629632, 48.87793225186375], [2.294059156411122, 48.87780963203401], [2.294081468797229, 48.877676532733275], [2.29406761327154, 48.877666553795535], [2.293895015460452, 48.87766908916648], [2.293727323072068, 48.87767155340286], [2.293554725227949, 48.87767408828317], [2.293387032807372, 48.877676552042885], [2.293377153976189, 48.8776739638888], [2.2932049181806162, 48.877561906519055], [2.293023100638642, 48.877443614733004], [2.293019415900613, 48.87743512118917], [2.293063084285214, 48.87731467774542], [2.293106420965232, 48.87719515144072], [2.293150088947433, 48.87707470793904], [2.293193425215909, 48.87695518247607], [2.293237094159098, 48.876834738924465], [2.293280428677063, 48.8767152124967], [2.293324097205657, 48.87659476978638], [2.293367432687673, 48.87647524330916], [2.293411099462705, 48.87635479963355], [2.293454434533201, 48.87623527399811], [2.2934977680536353, 48.87611574742668], [2.293541435589234, 48.87599530367233], [2.293584770073719, 48.87587577705149], [2.293628435831386, 48.87575533413043], [2.293630229574659, 48.875752559454895], [2.293747418647966, 48.87563240820738], [2.293867566101952, 48.875509220122616], [2.293984752716914, 48.8753890686082], [2.294104900411488, 48.87526588026608], [2.294101123972359, 48.875253588278284], [2.293960055353029, 48.875190036231814], [2.293821579469674, 48.87512765226492], [2.293680511544715, 48.875064098982506], [2.293542037694233, 48.8750017146932], [2.293400970439254, 48.87493816197336], [2.293262497270605, 48.87487577645429], [2.293257750158034, 48.87487203594325], [2.2931907424456153, 48.874773662381045], [2.293124365943572, 48.87467621522363], [2.293057358734995, 48.87457784156931], [2.292990982719838, 48.87448039521993], [2.292959591176914, 48.87443754140507], [2.292947539654188, 48.87443957738081], [2.292838600274226, 48.874474054085475], [2.292660135238333, 48.8745320118109], [2.29247669613493, 48.87459006577798], [2.292298230311056, 48.87464802205853], [2.292114791758933, 48.87470607547299], [2.291936325122647, 48.874764032107116], [2.291752885770912, 48.87482208406165], [2.291574418334332, 48.87488004015014], [2.291390978158434, 48.87493809244324], [2.291212509933898, 48.87499604708683], [2.291029067582831, 48.87505409881117], [2.290850598545869, 48.87511205380841], [2.290667156758348, 48.87517010408085], [2.290488686921201, 48.8752280585324], [2.290305244309503, 48.8752861091434], [2.290126773684527, 48.87534406215004], [2.289943330260904, 48.87540211220037], [2.289764858823388, 48.87546006556061], [2.2895814132367542, 48.87551811414284], [2.289402940999159, 48.87557606695745], [2.289219495951583, 48.87563411588633], [2.2890410229260842, 48.87569206725597], [2.288970164242481, 48.875714489677385], [2.288953471148676, 48.87572491192364]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 162, "zemmour_eric": 179.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "17-64", "circ_bv": "04", "num_bureau": 64, "roussel_fabien": 8.0, "nb_emargement": 1254.0, "nb_procuration": 86.0, "nb_vote_blanc": 9.0, "jadot_yannick": 65.0, "le_pen_marine": 75.0, "nb_exprime": 1243.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1560.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1254, "quartier_bv": "65", "geo_point_2d": [48.87620068506679, 2.2918899901281367], "melenchon_jean_luc": 137.0, "poutou_philippe": 2.0, "macron_emmanuel": 570.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37404377939473, 48.89072647103451], [2.374032267373838, 48.890744622112784], [2.373923175290777, 48.890862692044465], [2.373797988493185, 48.89098391076043], [2.373799659246425, 48.890995358862746], [2.373931542565143, 48.89108158289915], [2.374064778558551, 48.89116752337129], [2.374196662752373, 48.89125374710216], [2.374329900987693, 48.89133968727294], [2.374461786056628, 48.89142591069829], [2.3745950238063163, 48.89151185055348], [2.374726909750367, 48.89159807367331], [2.374860148378202, 48.89168401321999], [2.374992036561161, 48.89177023604142], [2.375125276067151, 48.89185617527962], [2.375126638358135, 48.89186801024941], [2.375042386381878, 48.891941872412055], [2.374909554559706, 48.89206212147494], [2.374825301961299, 48.89213598347175], [2.374811776433035, 48.892139403118705], [2.374603837145383, 48.89211249153391], [2.374391041017394, 48.892085836598795], [2.374183102150325, 48.89205892518136], [2.373970306456651, 48.892032269497264], [2.373762366657181, 48.89200535734082], [2.373549572761622, 48.89197870091495], [2.373341633393556, 48.891951788026574], [2.373128838568541, 48.89192513084466], [2.372920900995678, 48.891898217231486], [2.372708106605009, 48.89187155930064], [2.372684011503543, 48.89188060974316], [2.372681539117579, 48.891903113078996], [2.372683489246785, 48.8919059579534], [2.372806850925941, 48.89202507792094], [2.372921925278528, 48.89214213627302], [2.37292403510843, 48.892148029775534], [2.37289905680123, 48.89229494772079], [2.372883505798329, 48.892457345546035], [2.372884059639661, 48.892460506858455], [2.3729399625740673, 48.89258422048202], [2.372994935995975, 48.89270450458728], [2.3730508394667362, 48.89282821723225], [2.373105812038593, 48.89294850125273], [2.373160786228268, 48.89306878524191], [2.373216690484124, 48.893192497768375], [2.373271665187575, 48.89331278167985], [2.373327569958048, 48.893436495026286], [2.373382545186105, 48.89355677796085], [2.373438450482027, 48.89368049122797], [2.373431545311992, 48.89373940365801], [2.37343250803592, 48.8937397594296], [2.373620436878074, 48.89372617810016], [2.373814685863549, 48.89371294248763], [2.374002614520027, 48.893699359658825], [2.374196863308393, 48.893686123426036], [2.374384791768262, 48.89367253999718], [2.374579040359407, 48.893659303144155], [2.374766968622861, 48.89364571911521], [2.374961217016674, 48.893632481641966], [2.375149145083606, 48.89361889701293], [2.375343393280182, 48.89360565891944], [2.375531322514413, 48.89359207369745], [2.375725569149908, 48.8935788349766], [2.37591349817682, 48.893565250053804], [2.376107744615063, 48.89355201071269], [2.376295673456206, 48.89353842429057], [2.376489919697184, 48.893525184329256], [2.376677848341769, 48.89351159730701], [2.376685350281007, 48.89350449036809], [2.376681863081484, 48.89346710012252], [2.376589634736693, 48.893435821052485], [2.376569756758565, 48.89343097456009], [2.376562262723101, 48.893430017340776], [2.37635695752002, 48.893442535229106], [2.376148489838103, 48.89345478448138], [2.375943185801715, 48.89346730166716], [2.375734716559465, 48.89347955019174], [2.37552941232595, 48.893492066667875], [2.375320942887103, 48.89350431447185], [2.375115638456474, 48.893516830238354], [2.374907168821246, 48.89352907732179], [2.374701864193513, 48.893541592378575], [2.374493394361814, 48.89355383874143], [2.374288089536988, 48.89356635308861], [2.374079620872561, 48.89357859873797], [2.373874314486818, 48.89359111236834], [2.373665845626045, 48.89360335729713], [2.373651007536118, 48.89359476223792], [2.37364747551679, 48.89353701647331], [2.373646706159232, 48.893505962558045], [2.373649331758418, 48.89350028539977], [2.37376444954629, 48.893396671661584], [2.373886313495199, 48.89328652444982], [2.374001430338746, 48.89318291046358], [2.374123291922179, 48.893072762982044], [2.37423840783232, 48.89296914784856], [2.374360269767226, 48.89285900101082], [2.374475384733156, 48.892755385629286], [2.374597245666329, 48.89264523852891], [2.374712359688058, 48.89254162289939], [2.374834218266705, 48.89243147463001], [2.374949331333449, 48.89232785965178], [2.375071190274185, 48.89221771112687], [2.375186302396751, 48.892114095900666], [2.3753081589721923, 48.89200394710606], [2.375423270150594, 48.89190033163182], [2.375545127088133, 48.89179018258171], [2.375660237322376, 48.8916865668595], [2.375782093258331, 48.89157641754677], [2.375897202548425, 48.891472801576626], [2.376019056119131, 48.89136265199421], [2.37613416446509, 48.89125903577604], [2.376256018397908, 48.89114888593812], [2.376371125810507, 48.89104526857274], [2.376492977367337, 48.89093511936441], [2.376608083835816, 48.89083150175103], [2.376639869439459, 48.89082555094101], [2.376645955443322, 48.890800209179005], [2.376623909980042, 48.89076301180943], [2.376549328841893, 48.89063856307117], [2.37648105403235, 48.8905233651518], [2.376406473578792, 48.89039891629743], [2.376338199399534, 48.89028371827147], [2.376269925511601, 48.89016852109376], [2.376195346081778, 48.89004407116834], [2.376127072824115, 48.88992887388404], [2.376052494078863, 48.889804423842484], [2.376057487260752, 48.889781634962446], [2.3760287428916422, 48.88976817521495], [2.375887198569151, 48.88968830350653], [2.375738506825184, 48.88960890517542], [2.375596963380947, 48.88952903311239], [2.375448272534355, 48.889449634409374], [2.375306729968266, 48.889369761991624], [2.375158040018943, 48.889290362916725], [2.375016498341791, 48.889210489245066], [2.3748678092899382, 48.88913108979826], [2.374850050195955, 48.889131426957654], [2.374733069419151, 48.889201600937874], [2.374628644146306, 48.88926988884569], [2.374511662760052, 48.88934006260082], [2.374407236919263, 48.889408350306894], [2.374368838392058, 48.88943409423744], [2.374406892616099, 48.88945891470763], [2.374549459428235, 48.88955526642456], [2.374698469489838, 48.88965796395035], [2.374841037397408, 48.88975431440341], [2.374990048603713, 48.88985701154772], [2.37513261759572, 48.88995336163615], [2.375281629946735, 48.89005605839898], [2.375424200023388, 48.89015240812279], [2.375573213519125, 48.89025510450413], [2.375715783305801, 48.89035145475545], [2.3758647979462673, 48.89045415075532], [2.3758578112339332, 48.89046915998565], [2.375672067238393, 48.89049548788684], [2.375498961319855, 48.890520582792405], [2.375313218312398, 48.89054691104213], [2.375140112060849, 48.89057200452851], [2.3749543686884103, 48.890598332220335], [2.374781262082173, 48.89062342608602], [2.374595518355759, 48.89064975232074], [2.374422411405633, 48.890674845666545], [2.374249304288556, 48.890699938761486], [2.374063560020248, 48.89072626416924], [2.37404377939473, 48.89072647103451]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 33, "zemmour_eric": 72.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-52", "circ_bv": "17", "num_bureau": 52, "roussel_fabien": 23.0, "nb_emargement": 1180.0, "nb_procuration": 47.0, "nb_vote_blanc": 7.0, "jadot_yannick": 67.0, "le_pen_marine": 60.0, "nb_exprime": 1166.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1623.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1180, "quartier_bv": "73", "geo_point_2d": [48.89151336588166, 2.3747614561682537], "melenchon_jean_luc": 543.0, "poutou_philippe": 9.0, "macron_emmanuel": 297.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.395357761111863, 48.87526701909679], [2.395364720479995, 48.8752706165029], [2.395436224478292, 48.87527592307228], [2.395624298015008, 48.87529447718848], [2.395811792884861, 48.87530839113164], [2.395999868035961, 48.87532694466414], [2.396187363112591, 48.87534085891793], [2.396375438514709, 48.8753594118598], [2.396562933819065, 48.875373324625656], [2.396751008108731, 48.87539187697007], [2.396938504993633, 48.87540578915415], [2.397126579523888, 48.875424341807246], [2.39731407526261, 48.87543825339583], [2.397314909157559, 48.875438298064076], [2.397463349700904, 48.87544326768057], [2.397647217257659, 48.875448361422336], [2.397795657861389, 48.87545333062669], [2.397944228342628, 48.87545744593491], [2.397965541550699, 48.8754652091363], [2.397972131884526, 48.87546548240187], [2.398007430407687, 48.87546645942429], [2.398066650898557, 48.87546760439163], [2.398077277785799, 48.87546568199526], [2.39807749893918, 48.8754208271391], [2.398076283938297, 48.87529461060498], [2.398074971641268, 48.875160179069134], [2.398073756642197, 48.87503396340446], [2.398072445721605, 48.87489953184366], [2.398071230745127, 48.87477331524987], [2.398069918463881, 48.87463888454976], [2.398068703499609, 48.8745126679261], [2.398067391241845, 48.874378236294895], [2.398066176289776, 48.87425201964144], [2.398064865398037, 48.87411758888455], [2.398063650458166, 48.87399137220124], [2.398062338226579, 48.87385694050647], [2.398061123298914, 48.873730723793344], [2.398059811070021, 48.87359629296606], [2.39805907945971, 48.87352027404278], [2.398055527200688, 48.87351773804653], [2.398026769704456, 48.87351903416348], [2.397855784849153, 48.873532903457324], [2.397671783861123, 48.8735464156286], [2.397657748944973, 48.87354102724825], [2.397582030678325, 48.87342475721561], [2.397506086434389, 48.87330848688303], [2.397430368833922, 48.87319221762924], [2.397354425267574, 48.873075947175934], [2.397278708354086, 48.87295967690241], [2.397202765465321, 48.87284340632843], [2.397127049217989, 48.87272713683381], [2.397051107006796, 48.8726108661391], [2.396975391446532, 48.87249459562474], [2.396899449912905, 48.87237832480933], [2.39682373502909, 48.87226205417461], [2.396747792809743, 48.872145783231666], [2.396672079955327, 48.872029513382635], [2.396596138413536, 48.87191324231898], [2.396520424882897, 48.87179697144338], [2.396444485381815, 48.87168070026591], [2.396433299101591, 48.87167530900601], [2.396266979185333, 48.87166451999794], [2.396111765737943, 48.87165448467585], [2.395956553713519, 48.87164444915931], [2.395790232631287, 48.87163365948162], [2.395732594956854, 48.87164593763228], [2.395732313559328, 48.87165338900096], [2.395745436987799, 48.87168663711469], [2.395798204570197, 48.871824829082286], [2.395847533375884, 48.87194980321602], [2.395900302869346, 48.8720879942133], [2.395949632169218, 48.87221296827521], [2.395998960352948, 48.87233794139649], [2.396051730631041, 48.872476133177706], [2.396101060661816, 48.87260110713327], [2.396146150417474, 48.87271918605182], [2.39614572298008, 48.87273723982626], [2.396147509019601, 48.87273958710492], [2.396155188719769, 48.87275969988232], [2.396155330718166, 48.87276368015189], [2.3961204258608912, 48.87287742900218], [2.396078725852023, 48.87301822608895], [2.396043820656879, 48.87313197489066], [2.396002121610786, 48.87327277102592], [2.3959672147144673, 48.8733865197722], [2.395925515257519, 48.87352731584831], [2.395890609386631, 48.87364106455289], [2.3958903848509703, 48.87364220377441], [2.395877734715571, 48.873770160930405], [2.395868527367686, 48.873887041271864], [2.395855877119129, 48.87401499839715], [2.395846669689448, 48.87413187781175], [2.395834019327629, 48.87425983490631], [2.395824811805619, 48.87437671429331], [2.395824015478109, 48.87437930934582], [2.395748042366855, 48.87451770909827], [2.395673449145533, 48.87465571015446], [2.395597475231138, 48.874794109776666], [2.395522879851696, 48.87493211069761], [2.395446906497292, 48.875070510196494], [2.395372310323058, 48.87520851098903], [2.395357761111863, 48.87526701909679]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 41, "zemmour_eric": 65.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "20-15", "circ_bv": "15", "num_bureau": 15, "roussel_fabien": 45.0, "nb_emargement": 1150.0, "nb_procuration": 46.0, "nb_vote_blanc": 18.0, "jadot_yannick": 77.0, "le_pen_marine": 80.0, "nb_exprime": 1125.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1484.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1150, "quartier_bv": "78", "geo_point_2d": [48.87395188154467, 2.3967985963217613], "melenchon_jean_luc": 512.0, "poutou_philippe": 10.0, "macron_emmanuel": 245.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.307967429472824, 48.87628327895563], [2.3079618996905342, 48.87629412719657], [2.307921022322351, 48.87633647999475], [2.307866309971385, 48.876386830653665], [2.30786283216432, 48.876399832979665], [2.307949391985438, 48.87642819405567], [2.308111571267841, 48.87650854138018], [2.30827466840724, 48.87658942079271], [2.308436848693465, 48.87666976766482], [2.3085999482061332, 48.876750646630256], [2.308762129496184, 48.87683099304992], [2.308925230018851, 48.876911871560324], [2.309087412312834, 48.87699221752762], [2.3092505124821088, 48.87707309557516], [2.309412695779825, 48.87715344108998], [2.309575798322597, 48.87723431869038], [2.309737982624151, 48.877314663752806], [2.30990108617683, 48.8773955408982], [2.310063271482227, 48.87747588550815], [2.310226374681616, 48.87755676219065], [2.310388560990856, 48.87763710634818], [2.310551666563563, 48.87771798258353], [2.310558971680774, 48.87771976847146], [2.310761278813868, 48.877728475266125], [2.310962949517638, 48.877737368715], [2.311165256774734, 48.87774607572615], [2.311366927615633, 48.87775496849434], [2.311569235020512, 48.87776367392341], [2.311770905986541, 48.87777256691017], [2.311973213527401, 48.87778127165642], [2.312174884630546, 48.877790163962494], [2.312377192307171, 48.87779886802593], [2.312578863559394, 48.87780775875206], [2.312781171360008, 48.877816463031934], [2.312982842749317, 48.877825353077405], [2.313184514195615, 48.8778342436823], [2.313386822212173, 48.87784294603922], [2.313588493807401, 48.87785183506419], [2.31379080194794, 48.87786053763751], [2.31399247368023, 48.87786942598183], [2.314194781968439, 48.87787812697303], [2.314396453825837, 48.87788701553595], [2.314598762249957, 48.87789571584431], [2.314800434244404, 48.877904603726556], [2.3150027428042232, 48.87791330335209], [2.315204414947632, 48.87792218965432], [2.315406723631418, 48.87793088949634], [2.315438642280226, 48.87793074016755], [2.315447258812835, 48.87792509213753], [2.315452486743979, 48.877844052162104], [2.315460756192668, 48.87771044890552], [2.315469107271767, 48.877581005535774], [2.3154773752725513, 48.87744740223836], [2.315485726279988, 48.87731795793727], [2.315493994196486, 48.87718435460682], [2.315502345120442, 48.877054910273685], [2.315510614304122, 48.87692130781726], [2.31551896378121, 48.87679186344435], [2.315527232892315, 48.87665826005561], [2.315535582285932, 48.876528815650616], [2.315543851312646, 48.87639521222889], [2.315552201974346, 48.876265768698886], [2.315560469553196, 48.87613216523639], [2.315568820143239, 48.8760027207751], [2.3155770876378092, 48.87586911727953], [2.31558543813256, 48.87573967368548], [2.315593706906102, 48.87560607016473], [2.315602055965843, 48.87547662563159], [2.3155921915517412, 48.875467598323546], [2.31539718475146, 48.87543073360002], [2.315200329161534, 48.8753944065768], [2.315005322912742, 48.875357541212466], [2.314808469236103, 48.87532121355026], [2.314613463538604, 48.8752843475451], [2.314416609048668, 48.875248019228316], [2.314221603902569, 48.87521115258242], [2.314024751337675, 48.87517482272733], [2.31401483302545, 48.875165461321025], [2.314029741176463, 48.87503974979856], [2.314043822137026, 48.87491948891638], [2.3140587315109, 48.874793777370094], [2.314072810962859, 48.87467351734913], [2.314087720196357, 48.87454780577123], [2.314101799526739, 48.87442754482079], [2.314116708619865, 48.874301833211206], [2.3141307878049853, 48.87418157312985], [2.314144868288302, 48.87406131304154], [2.314159775821285, 48.87393560047777], [2.31417385617118, 48.87381534035925], [2.314188764915264, 48.873689628670974], [2.314217726030205, 48.87364654348898], [2.314194053914477, 48.873633163273134], [2.314002205102524, 48.873600071710584], [2.313809990025943, 48.87356696155046], [2.313618140338531, 48.87353386936256], [2.313425927101742, 48.87350075949081], [2.313234077902279, 48.87346766668544], [2.313041865165792, 48.873434555295745], [2.312850016454087, 48.87340146187284], [2.312657802830896, 48.873368350755904], [2.31246595597035, 48.8733352567233], [2.312273742847592, 48.873302144088434], [2.312271470381457, 48.87330160671623], [2.312084880089137, 48.873248774742706], [2.311918559611008, 48.873198095101884], [2.31175223945653, 48.87314741522767], [2.311565650243325, 48.873094582437375], [2.3115176031768803, 48.87308627227645], [2.311489134025225, 48.873115922603965], [2.311371329975625, 48.87321714215454], [2.3112588596091, 48.87331738680787], [2.311146388797668, 48.873417632245676], [2.311028582048244, 48.87351885052418], [2.310916110358705, 48.873619095727314], [2.310798304069435, 48.87372031376859], [2.310685831501581, 48.873820558737044], [2.310568022945851, 48.87392177652535], [2.3105667520028472, 48.873922723406245], [2.310435777599491, 48.87399823041077], [2.310308478725557, 48.87408051789328], [2.310177504926235, 48.87415602371302], [2.310050205258625, 48.8742383109091], [2.309919230676309, 48.87431381733471], [2.309791930214916, 48.87439610424437], [2.309763987954069, 48.874407575201516], [2.309754736249034, 48.874421643303265], [2.3096274352643382, 48.87450393002997], [2.309513751535218, 48.87460740718803], [2.309434970323432, 48.87470864927124], [2.309321285753195, 48.87481212712659], [2.30932005986576, 48.87481347715826], [2.309241277965895, 48.874914719095116], [2.309178667542494, 48.87499980231946], [2.309099885085967, 48.87510104414614], [2.30903727420762, 48.875186127282184], [2.309036645621055, 48.87518685032077], [2.308933078351532, 48.87529383783886], [2.308819198882246, 48.875411830298624], [2.308715630718707, 48.87551881760681], [2.308601750276852, 48.87563680893636], [2.308498181207249, 48.87574379693382], [2.308384299780879, 48.87586178803251], [2.308280729817338, 48.87596877582], [2.308166847406444, 48.87608676668772], [2.3080632765608, 48.87619375336603], [2.30799027047902, 48.876269392093256], [2.307967429472824, 48.87628327895563]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 158, "zemmour_eric": 187.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "8-2", "circ_bv": "01", "num_bureau": 2, "roussel_fabien": 2.0, "nb_emargement": 1149.0, "nb_procuration": 79.0, "nb_vote_blanc": 7.0, "jadot_yannick": 46.0, "le_pen_marine": 66.0, "nb_exprime": 1140.0, "nb_vote_nul": 4.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1403.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "32", "geo_point_2d": [48.87582293628963, 2.312111245410252], "melenchon_jean_luc": 117.0, "poutou_philippe": 1.0, "macron_emmanuel": 533.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.355771192225159, 48.868973609020735], [2.355760039228591, 48.86897483864494], [2.355643580233017, 48.86900174956294], [2.355462567314905, 48.86904349723304], [2.355257976308882, 48.8690907726787], [2.355076961398066, 48.86913252065424], [2.354872369692448, 48.86917979543697], [2.35469135553758, 48.869221541934074], [2.354486763132481, 48.86926881605389], [2.3543057469848, 48.86931056285641], [2.354249265539085, 48.8692940736129], [2.354230517797375, 48.869310250531846], [2.354195810076205, 48.86933920190737], [2.3542576886205993, 48.86939297907476], [2.354326674887095, 48.8695136641136], [2.3543992793883213, 48.86963975566274], [2.354468266309675, 48.869760440593076], [2.354540872860809, 48.86988653203552], [2.354609860437032, 48.87000721685731], [2.354682467674884, 48.87013330818572], [2.354751455905883, 48.870253992898924], [2.35482406383046, 48.8703800841133], [2.354893052716448, 48.87050076871795], [2.354965659964531, 48.87062685981088], [2.355034649505413, 48.87074754430698], [2.355107258803467, 48.870873635293236], [2.355176248999252, 48.87099431968074], [2.3552488589840612, 48.87112041055295], [2.355317849834659, 48.871241094831916], [2.355390459131953, 48.87136718648197], [2.3554594506486, 48.87148786975308], [2.355532061995914, 48.87161396129642], [2.355601054167491, 48.87173464445893], [2.355673666201488, 48.87186073588823], [2.355742659028104, 48.87198141894215], [2.355815270385625, 48.872107510250025], [2.355862377195785, 48.87218990750776], [2.355867051103591, 48.872204098134695], [2.355874148071884, 48.8722103183755], [2.355896036123785, 48.872248604067586], [2.355969229524874, 48.87237553566324], [2.3560382237069373, 48.87249621938983], [2.356111417813584, 48.87262314997075], [2.356180412653071, 48.87274383358834], [2.356253606079862, 48.87287076494583], [2.356322601587896, 48.87299144755508], [2.356395797072328, 48.87311837880447], [2.356464793226691, 48.873239062204014], [2.3565337897119862, 48.87335974465131], [2.356606986228617, 48.87348667572922], [2.356675983360157, 48.87360735896676], [2.356749179219065, 48.873734289022664], [2.356759705559397, 48.873743256217], [2.356820677690866, 48.87373140592342], [2.356974638290724, 48.87362331618645], [2.357123172938818, 48.87352155901346], [2.357277133664968, 48.87341346797495], [2.357425667112599, 48.87331171130651], [2.357574199990975, 48.87320995354512], [2.357728158860104, 48.87310186189602], [2.357730865322626, 48.87309233804689], [2.357655463972965, 48.87296912264505], [2.357579680074835, 48.872845227925744], [2.3575042808038082, 48.872722012408396], [2.357428497635898, 48.87259811666643], [2.357353097705928, 48.8724749019182], [2.357277316620315, 48.872351006060086], [2.357201917416765, 48.872227790289806], [2.3571261356759923, 48.87210389520024], [2.357050738550924, 48.87198067931448], [2.356974957529249, 48.871856784101475], [2.356979458962591, 48.871846205084275], [2.357086803813761, 48.87179348780127], [2.357224301987839, 48.871725124675535], [2.3573316463417893, 48.87167240716723], [2.357418910882247, 48.871629018526086], [2.357420282481658, 48.87162547440163], [2.357405389320739, 48.87161112554473], [2.35733232384411, 48.87149307730728], [2.357259419410013, 48.87137537342298], [2.357186354594881, 48.871257325071284], [2.357113452183826, 48.871139621080275], [2.357040388030077, 48.87102157261423], [2.356967484915669, 48.870903868501905], [2.356894421423398, 48.87078581992161], [2.356821520332005, 48.87066811570256], [2.356748457501202, 48.87055006700797], [2.356675555706348, 48.870432362667636], [2.356602493537007, 48.87031431385875], [2.356529593776146, 48.870196608512394], [2.356456532257147, 48.87007856048855], [2.356383631792925, 48.86996085502087], [2.356310570935369, 48.86984280688273], [2.356237672494104, 48.869725101308404], [2.35616461229798, 48.86960705305598], [2.356091713153249, 48.869489347360314], [2.356018653629668, 48.86937129809436], [2.355945756496646, 48.86925359319129], [2.355872697634584, 48.869135543811076], [2.355799799798088, 48.86901783878668], [2.355771192225159, 48.868973609020735]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 44, "zemmour_eric": 60.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "10-2", "circ_bv": "05", "num_bureau": 2, "roussel_fabien": 16.0, "nb_emargement": 1372.0, "nb_procuration": 130.0, "nb_vote_blanc": 18.0, "jadot_yannick": 147.0, "le_pen_marine": 47.0, "nb_exprime": 1350.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1745.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1372, "quartier_bv": "39", "geo_point_2d": [48.87114970706358, 2.3560950962559093], "melenchon_jean_luc": 535.0, "poutou_philippe": 9.0, "macron_emmanuel": 428.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.298116340505461, 48.87806936614475], [2.298153477121402, 48.878069343749424], [2.298353937554418, 48.8781143903814], [2.298535030272848, 48.87815140181267], [2.298735492703022, 48.87819644870965], [2.298916585977819, 48.87823345956098], [2.299117047702523, 48.878278504908444], [2.2992981415338782, 48.87831551517988], [2.299479235622508, 48.87835252517608], [2.29967969828013, 48.87839757047578], [2.299860792937301, 48.878434578992874], [2.300061256240651, 48.87847962365032], [2.300242351442277, 48.878516632486686], [2.3004428153914542, 48.87856167650186], [2.300623911149419, 48.87859868475828], [2.300746799406056, 48.87862629642525], [2.300782102012157, 48.878629761824875], [2.30081070785464, 48.87856603271442], [2.3007824774184042, 48.878441234824535], [2.300753895111386, 48.87831594561764], [2.3007256635713462, 48.87819114857734], [2.30069708155032, 48.87806585842916], [2.300668851645491, 48.87794106135509], [2.3006402698862, 48.8778157720642], [2.300612040265129, 48.87769097404915], [2.300583457416442, 48.87756568470834], [2.300555228054874, 48.8774408875508], [2.300526646855574, 48.87731559727669], [2.30049841776568, 48.87719080007749], [2.300469836828202, 48.877065510660636], [2.300475884433594, 48.877056634444024], [2.300649315481642, 48.87698221564882], [2.300820567484112, 48.87690828390615], [2.300993997545773, 48.87683386460155], [2.301165249922402, 48.87675993326308], [2.301338678997579, 48.87668551344917], [2.301509930397156, 48.87661158160769], [2.301683358485851, 48.876537161284396], [2.301854608908379, 48.87646322893991], [2.302028036010593, 48.87638880810727], [2.302199284092805, 48.87631487525184], [2.30237271020844, 48.876240453909816], [2.302543958676978, 48.876166520559316], [2.302717383818176, 48.87609209780873], [2.302888631309668, 48.87601816395522], [2.303062055452348, 48.87594374159458], [2.303233301966798, 48.87586980723809], [2.303406725123005, 48.875795384368075], [2.303577970660415, 48.875721449508575], [2.3037492143483, 48.875647514391225], [2.303922636027169, 48.87557309075885], [2.304093880101372, 48.875499155146414], [2.304267300793774, 48.87542473100474], [2.304276538697175, 48.87542335474348], [2.304413480349337, 48.875435399507396], [2.304550536708918, 48.875447129112096], [2.304687479850299, 48.875459173570256], [2.3048245363461453, 48.87547090196174], [2.304839194444815, 48.87546488685899], [2.304915732946423, 48.87531688706876], [2.304981509699149, 48.87518389228278], [2.304991339427038, 48.8751591059681], [2.30499028610883, 48.87515803863061], [2.304812370782876, 48.875118260131615], [2.304644465853364, 48.875081043279394], [2.304466551054527, 48.87504126426367], [2.304298646632439, 48.875004046024536], [2.304146681316016, 48.87497036198056], [2.303968767287441, 48.87493058132177], [2.303952828421842, 48.87492704866455], [2.30394412178299, 48.874927037609076], [2.303765117690336, 48.87496658117287], [2.303585994127907, 48.87500749347036], [2.303406989486957, 48.875047036495815], [2.303227864015227, 48.87508794734723], [2.303048860189125, 48.87512748984221], [2.302869734159415, 48.87516840015475], [2.302690729784932, 48.87520794211132], [2.302511603185203, 48.87524885278428], [2.302332596898995, 48.875288394194456], [2.30215347111668, 48.87532930343725], [2.30213712390944, 48.87532521056777], [2.302039194188518, 48.87521024885618], [2.301938979916692, 48.87509578725141], [2.301841049713186, 48.87498082444662], [2.30174083768155, 48.874866362660136], [2.301727112607593, 48.874861956767624], [2.301540255981322, 48.8748794731084], [2.301351411112373, 48.87489710975696], [2.301164554233542, 48.87491462551075], [2.300975707734525, 48.87493226245733], [2.300788850603344, 48.87494977762409], [2.30060000522507, 48.87496741308614], [2.300413147841347, 48.87498492766591], [2.300224300845088, 48.87500256252674], [2.300037443196948, 48.87502007741877], [2.299848597309381, 48.87503771169435], [2.299835802130156, 48.87503422385533], [2.29970669027312, 48.87492135761258], [2.299582650985911, 48.874810511139124], [2.299453540231986, 48.874697644600495], [2.299329503379605, 48.874586797850284], [2.299200392365453, 48.874473931007735], [2.299076356584559, 48.874363083972725], [2.298947246673602, 48.87425021683429], [2.29882321196418, 48.87413936951452], [2.298814307667767, 48.874135820714116], [2.298618985905712, 48.874116078025786], [2.298417883226799, 48.874096860526606], [2.298222561761005, 48.874077117190744], [2.298021459378886, 48.874057899024834], [2.297826138209464, 48.87403815504144], [2.297625036123946, 48.8740189362089], [2.297429715250904, 48.87399919157799], [2.297228614825508, 48.87397997208681], [2.297033292885548, 48.873960226800364], [2.296832192756769, 48.87394100664252], [2.296636871113312, 48.873921260708556], [2.296435771281264, 48.87390203988406], [2.296240449934114, 48.87388229330256], [2.296039350398803, 48.873863071811435], [2.2958440307114802, 48.87384332459045], [2.295642930109612, 48.87382410242464], [2.295447610718614, 48.873804354556114], [2.295246510413607, 48.87378513172365], [2.295214084704143, 48.873743031438124], [2.295199365445194, 48.87373931232748], [2.295119487663505, 48.87371913378719], [2.295089913863394, 48.87372874538448], [2.295033474633914, 48.873789517956645], [2.295026595615515, 48.87380921352094], [2.295083894416308, 48.873832210800884], [2.295168032362533, 48.87394945621935], [2.295253367033881, 48.87406675447609], [2.2953375057404592, 48.87418399975052], [2.295422841177725, 48.87430129786156], [2.295506980644563, 48.874418542991904], [2.295592316859917, 48.874535840057916], [2.295676457075068, 48.87465308594356], [2.295761794056355, 48.874770382863815], [2.29584593503189, 48.87488762860536], [2.295931271415785, 48.87500492537186], [2.296015414514947, 48.87512217097737], [2.296100751664889, 48.87523946759813], [2.296184895536614, 48.875356712160354], [2.296270233440258, 48.875474009534585], [2.2963543780725, 48.87559125395274], [2.296439716742111, 48.87570855118122], [2.296523862134678, 48.875825795455306], [2.296609201582514, 48.87594309163877], [2.29669334772337, 48.87606033666803], [2.29677868793709, 48.87617763270574], [2.296862834838496, 48.87629487759096], [2.296948175818208, 48.87641217348288], [2.297032322128731, 48.87652941731675], [2.297117665225787, 48.87664671397017], [2.297201812296767, 48.87676395765995], [2.297287156159745, 48.87688125416757], [2.297371303991294, 48.876998497713295], [2.297456648620302, 48.877115794075145], [2.297540797212226, 48.87723303747678], [2.297626142619503, 48.87735033279357], [2.297710291959786, 48.87746757695043], [2.2977956381330102, 48.87758487212141], [2.2978797882338933, 48.87770211613416], [2.297965133809766, 48.877819411151336], [2.298031966916903, 48.87791126136023], [2.298116118089266, 48.87802850427284], [2.298134632376498, 48.87805394989939], [2.298116340505461, 48.87806936614475]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 139, "zemmour_eric": 201.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "8-15", "circ_bv": "01", "num_bureau": 15, "roussel_fabien": 5.0, "nb_emargement": 1264.0, "nb_procuration": 78.0, "nb_vote_blanc": 3.0, "jadot_yannick": 57.0, "le_pen_marine": 68.0, "nb_exprime": 1262.0, "nb_vote_nul": 0.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1604.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1265, "quartier_bv": "30", "geo_point_2d": [48.87592278951314, 2.2992798888732997], "melenchon_jean_luc": 114.0, "poutou_philippe": 3.0, "macron_emmanuel": 640.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3317447380596352, 48.856418916679374], [2.331763486836687, 48.856428137226125], [2.331831170680533, 48.85651076462897], [2.33192157860069, 48.85662179901601], [2.332021417033449, 48.856743679999376], [2.332111827126024, 48.856854714227055], [2.332211666461629, 48.85697659412684], [2.332302076000903, 48.85708762817983], [2.33240191622783, 48.85720950789534], [2.332492327928034, 48.8573205426882], [2.332592169046301, 48.85744242221938], [2.332682580204732, 48.85755345593833], [2.332772993111388, 48.85766448958548], [2.332872835545257, 48.85778636884469], [2.332963247887111, 48.857897403216484], [2.333063091212443, 48.85801928229144], [2.333153505738215, 48.85813031560448], [2.333253349954923, 48.85825219449507], [2.333247060019567, 48.85826463975142], [2.333047135131869, 48.85832537855029], [2.332849959110635, 48.85838503692946], [2.332650034660846, 48.85844577506593], [2.332452857729304, 48.85850543278435], [2.3324456750956513, 48.858516579749654], [2.332518621008796, 48.85865400734031], [2.332588727289003, 48.85878278076124], [2.332661673963685, 48.85892020733238], [2.332731782318567, 48.859048980646165], [2.332804729731761, 48.85918640799643], [2.332874837446899, 48.85931518028866], [2.332891605787661, 48.859364947609], [2.332951731764932, 48.85936177890443], [2.33314556775331, 48.8593215142642], [2.333343923344024, 48.859279956939616], [2.333537758736409, 48.859239690761946], [2.333736112339967, 48.85919813277661], [2.333929947113242, 48.859157866860016], [2.334128301466889, 48.859116307329884], [2.3343221356326502, 48.85907604077506], [2.334520487987537, 48.85903448148351], [2.334714321557266, 48.85899421339119], [2.334912673287805, 48.85895265344654], [2.335106506238525, 48.85891238561532], [2.335304858707633, 48.858870825025114], [2.335498691062293, 48.8588305556564], [2.335697041544121, 48.85878899440557], [2.335890873279772, 48.858748725297936], [2.33608922451161, 48.85870716250223], [2.336283055639714, 48.85866689275642], [2.336481404872802, 48.858625330199345], [2.336582869585918, 48.85860424986857], [2.336612248133077, 48.85858599312783], [2.336581985839372, 48.85853835401468], [2.336522124540465, 48.858426001656646], [2.336459319297447, 48.85830531483198], [2.336399458530794, 48.85819296238904], [2.336336653852815, 48.85807227547464], [2.336276794981304, 48.857959922954294], [2.336213989505561, 48.85783923594264], [2.336154131166282, 48.85772688333729], [2.33609132625547, 48.857606196235935], [2.336099277315347, 48.8575948932263], [2.336196985659061, 48.85756982083485], [2.336307860444968, 48.85753102443167], [2.336336583442317, 48.857502453038016], [2.336342487651478, 48.857498396429726], [2.336404303994869, 48.85743690880098], [2.336468596995291, 48.85734842642969], [2.336469831697523, 48.85734565427825], [2.336486364878582, 48.85725838379087], [2.336508044448791, 48.857149711166315], [2.336508091713195, 48.85714942453501], [2.336525603101552, 48.8570246060971], [2.336547283855419, 48.8569159334501], [2.336564795071417, 48.856791114980155], [2.336583896547232, 48.856657213755334], [2.336601407588573, 48.85653239525099], [2.336620508875454, 48.85639849398909], [2.33663801974214, 48.85627367545029], [2.33665712084009, 48.85613977415136], [2.336674631532125, 48.856014955578146], [2.336693731078304, 48.85588105423464], [2.33671124295843, 48.85575623563453], [2.336730342315791, 48.855622334253965], [2.336747854021264, 48.855497515619454], [2.336760859621114, 48.85540633839559], [2.336770277532095, 48.855397431235836], [2.336771773848395, 48.85538598626123], [2.336777868768487, 48.85534326207374], [2.336794094326854, 48.85522128452691], [2.336813194649386, 48.85508738217691], [2.336822026223512, 48.85502099045751], [2.336820125503579, 48.85501463228331], [2.336763607800944, 48.85500927365645], [2.336694537398701, 48.85500609380423], [2.336617453594727, 48.855002561907085], [2.336605584443409, 48.85499665300144], [2.336521082712935, 48.854842719616904], [2.336434042221743, 48.8546852708838], [2.336415073809563, 48.85468033256223], [2.336237589342192, 48.85473973079249], [2.336047496129493, 48.854803535781066], [2.335870010812092, 48.854862934358835], [2.335679915337007, 48.85492673874882], [2.335502429192297, 48.854986135875485], [2.335312332806271, 48.85504994057372], [2.335134845822891, 48.85510933714862], [2.334969278218985, 48.85516500443116], [2.3347917904527202, 48.855224400491046], [2.334626222116698, 48.85528006729314], [2.334448733567444, 48.85533946283803], [2.334283164499309, 48.85539512915972], [2.334105675155474, 48.85545452508891], [2.333940105366821, 48.85551019003081], [2.333939789132562, 48.85551029979045], [2.333756479138705, 48.85557568397354], [2.333581109776652, 48.85563802281859], [2.333405740006382, 48.855700360503825], [2.333222430036578, 48.85576574386522], [2.333047058044588, 48.85582808101001], [2.332863747163858, 48.85589346471375], [2.332688375675623, 48.85595580133331], [2.332505063906995, 48.85602118358074], [2.332505043372467, 48.856021190661004], [2.332303738765217, 48.85609245832566], [2.332120424670322, 48.85615783996818], [2.331937111478129, 48.85622322133367], [2.331735805313551, 48.856294488029974], [2.331669110100596, 48.85629919598916], [2.331668489111632, 48.85631296971484], [2.331706790646753, 48.856363930541484], [2.3317389443221073, 48.85640318341451], [2.3317447380596352, 48.856418916679374]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 84, "zemmour_eric": 75.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "6-8", "circ_bv": "02", "num_bureau": 8, "roussel_fabien": 17.0, "nb_emargement": 851.0, "nb_procuration": 71.0, "nb_vote_blanc": 4.0, "jadot_yannick": 55.0, "le_pen_marine": 25.0, "nb_exprime": 845.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 4, "nb_inscrit": 1050.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 851, "quartier_bv": "24", "geo_point_2d": [48.85705853300209, 2.334564608755204], "melenchon_jean_luc": 119.0, "poutou_philippe": 5.0, "macron_emmanuel": 427.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.263523092752335, 48.839540598515036], [2.263541098645543, 48.839527450803836], [2.263586959499529, 48.83951458789687], [2.263763456640563, 48.83946555042969], [2.263934300976858, 48.839417633613685], [2.264110798825202, 48.839368595638135], [2.264281642524389, 48.8393206783219], [2.264458138355237, 48.83927163982128], [2.264628981417314, 48.83922372200477], [2.264805476593168, 48.83917468298742], [2.26497631901813, 48.83912676467074], [2.265152814913852, 48.83907772424571], [2.265323656701694, 48.83902980542879], [2.265494498175411, 48.83898188636583], [2.265670991717959, 48.83893284606083], [2.265704929974102, 48.838921227631396], [2.265691404894568, 48.83889780404908], [2.265554090950796, 48.83879233773931], [2.265417955658382, 48.838688256338095], [2.265280642819838, 48.83858278969464], [2.265144508633423, 48.838478707063445], [2.265007196900302, 48.83837324008633], [2.264871063794422, 48.838269158023735], [2.26473375316661, 48.83816369071298], [2.264597621166821, 48.83805960742035], [2.264460311644208, 48.83795413977593], [2.264324180725026, 48.837850057051924], [2.2641868723078042, 48.83774458907387], [2.264050742494601, 48.83764050511986], [2.263914613212253, 48.83753642190055], [2.2637773064499322, 48.83743095342277], [2.263771893710735, 48.837428427938136], [2.263613459165602, 48.83738793141346], [2.263458789934174, 48.837350378133884], [2.263300355882242, 48.837309880292416], [2.263145687107992, 48.83727232660535], [2.263139350278113, 48.837269155043366], [2.263014425100122, 48.83715509464009], [2.262886951400754, 48.83704266874101], [2.262876034786728, 48.837039064222324], [2.262645989180688, 48.83703916808417], [2.262416510400189, 48.83704138583417], [2.2621864661453293, 48.837041488820645], [2.261956985972731, 48.83704370568067], [2.261947337391546, 48.837041191749535], [2.261833091627429, 48.836968576257156], [2.261715915828021, 48.83689757942868], [2.261601670700959, 48.83682496370594], [2.261484495539593, 48.83675396664162], [2.261474692252079, 48.836751607308145], [2.2612626752283163, 48.83675769004281], [2.261059408293072, 48.83676574572715], [2.260856139919921, 48.836773801956866], [2.2606441241087962, 48.83677988270424], [2.260440855616335, 48.83678793822814], [2.26022883833694, 48.836794018230904], [2.260221150948106, 48.83679617056114], [2.260211528067456, 48.836821228828306], [2.260185780045836, 48.836906240514686], [2.260156081288596, 48.83700542980289], [2.260135918768288, 48.83702029859111], [2.260142133954501, 48.83703509669704], [2.260133156356552, 48.83706508033068], [2.260091989802978, 48.83720342674167], [2.260053312995217, 48.8373326005], [2.260012146018347, 48.83747094685042], [2.259973468814216, 48.837600120551976], [2.259934791431157, 48.837729293326824], [2.259893623826509, 48.83786763958739], [2.259899177414257, 48.83787673965453], [2.260045226482211, 48.83794425905793], [2.2602249669701058, 48.83802751076641], [2.260371018232131, 48.83809503067064], [2.260550759760284, 48.83817828187834], [2.260696810517281, 48.838245800467966], [2.260876554435209, 48.83832905208261], [2.261022606036681, 48.838396570265346], [2.261202349645255, 48.83847982047153], [2.261330646851298, 48.83853913063458], [2.261348403453579, 48.83854733825578], [2.261354128131075, 48.838555637062015], [2.261336238307612, 48.83866844759008], [2.261312589992362, 48.838805332979], [2.261294701355581, 48.838918143484044], [2.261271052830705, 48.83905502793489], [2.261253162643292, 48.83916783929939], [2.261240016543955, 48.839243932416515], [2.2612455342855142, 48.83924837882372], [2.26128130048694, 48.8392493794636], [2.261490438486054, 48.83925738375865], [2.261702621165209, 48.83926638859615], [2.261911759310002, 48.83927439125516], [2.262123942131278, 48.83928339534519], [2.262333080396163, 48.839291398166736], [2.262545263359449, 48.839300401509334], [2.262754401769974, 48.839308402694876], [2.262966584875255, 48.83931740529002], [2.26297732893766, 48.83932168415686], [2.263106062871265, 48.83946044662963], [2.263233209262846, 48.83960274359648], [2.263249642129054, 48.83960661678257], [2.263380938393838, 48.839574782603705], [2.263505922566354, 48.839539729231994], [2.263523092752335, 48.839540598515036]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 144, "zemmour_eric": 172.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-47", "circ_bv": "14", "num_bureau": 47, "roussel_fabien": 22.0, "nb_emargement": 1265.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 50.0, "le_pen_marine": 110.0, "nb_exprime": 1244.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 5, "nb_inscrit": 1616.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1267, "quartier_bv": "61", "geo_point_2d": [48.83816610832606, 2.2625647138111624], "melenchon_jean_luc": 207.0, "poutou_philippe": 7.0, "macron_emmanuel": 485.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.407882420820184, 48.84476164951119], [2.407869673457239, 48.84476345797783], [2.4076658776053, 48.84477849271947], [2.407464118127503, 48.84479442036773], [2.407260322027373, 48.84480945531739], [2.407058562305772, 48.844825382281236], [2.40685476597771, 48.84484041564036], [2.4066530060124203, 48.844856341919844], [2.406451245923819, 48.844872267858754], [2.406247449226996, 48.844887301082046], [2.406045688904867, 48.844903225437314], [2.405841891970009, 48.84491825796926], [2.4058047385753882, 48.84491887656746], [2.40579431688688, 48.84493432700084], [2.405801892638308, 48.84496926053192], [2.40583170605054, 48.8451042588996], [2.405860712168656, 48.84523801032414], [2.405890525887092, 48.84537300864456], [2.405919532295488, 48.84550676092192], [2.405949344957448, 48.84564175918842], [2.405978353039218, 48.84577551052667], [2.406008165996928, 48.84591050964528], [2.406037173016755, 48.846044260930306], [2.406066987653419, 48.846179259109114], [2.40609599497369, 48.84631301034761], [2.406125809906327, 48.84644800937855], [2.40615481752715, 48.84658176057053], [2.406184631413549, 48.84671675864819], [2.406213640697539, 48.846850509800404], [2.406243454879713, 48.84698550873014], [2.406272463101751, 48.847119259829086], [2.40630227896292, 48.84725425781905], [2.406331287485421, 48.84738800887146], [2.406354083845668, 48.84743920438104], [2.406391018724729, 48.84743603395346], [2.406578472989921, 48.847421013844695], [2.40677853029011, 48.84740338755144], [2.40696598295332, 48.84738836772772], [2.407166039997219, 48.84737074078597], [2.40735349244154, 48.8473557194553], [2.407553550591562, 48.847338091871826], [2.4077410027965263, 48.847323070832935], [2.407941059327611, 48.847305442594234], [2.408018206861663, 48.847299259964686], [2.408031929812628, 48.847300992569174], [2.408047916297665, 48.84729911557359], [2.408158220744315, 48.84729027562993], [2.408355655599375, 48.847272732658574], [2.408543107348148, 48.847257709462745], [2.408664536854978, 48.847246919391274], [2.408687035356161, 48.847239774605455], [2.408672305676081, 48.84719250102323], [2.408649968959842, 48.84708919966793], [2.40862403186809, 48.84697355485661], [2.408601695351688, 48.84687025257273], [2.408575757113515, 48.846754607721515], [2.408587701410452, 48.84674435477261], [2.408794892261501, 48.84672883878379], [2.409002305636859, 48.846711593178526], [2.4092094975968292, 48.84669607647801], [2.4094169106944, 48.846678831052785], [2.409428645462188, 48.846668413303384], [2.409397237249935, 48.84654542357119], [2.409368346596255, 48.84642743226547], [2.409336938671535, 48.846304442490904], [2.40930804827777, 48.84618645204437], [2.409276640650774, 48.84606346132807], [2.4092477505271113, 48.8459454708415], [2.409216343187642, 48.84582248008279], [2.409187453334079, 48.84570448955614], [2.409158563621525, 48.845586498110706], [2.409127156698666, 48.84546350818825], [2.409120327195456, 48.8454571376016], [2.40893384945922, 48.845388909603905], [2.408749311517683, 48.84532233761508], [2.408742389975142, 48.84531303555211], [2.408751996859431, 48.845273128274115], [2.408762964534837, 48.84523578368681], [2.4087567495264652, 48.845226421261415], [2.408587691469885, 48.84515747656657], [2.408415436662778, 48.845091335298044], [2.408412929856273, 48.845090097979934], [2.408283456575608, 48.84500809387913], [2.408159737620938, 48.84493092605248], [2.408036017659865, 48.84485375898511], [2.407906546932169, 48.84477175356646], [2.407882420820184, 48.84476164951119]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 93, "zemmour_eric": 87.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "12-32", "circ_bv": "08", "num_bureau": 32, "roussel_fabien": 26.0, "nb_emargement": 1216.0, "nb_procuration": 56.0, "nb_vote_blanc": 15.0, "jadot_yannick": 110.0, "le_pen_marine": 46.0, "nb_exprime": 1194.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1493.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "45", "geo_point_2d": [48.84607000333268, 2.4075091882990494], "melenchon_jean_luc": 312.0, "poutou_philippe": 7.0, "macron_emmanuel": 444.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332120635373362, 48.826864253100304], [2.332115462887717, 48.82685917870808], [2.332082226446245, 48.82678452556344], [2.332031536413542, 48.8266723761172], [2.33197206695292, 48.82653879939702], [2.331921376045544, 48.82642664897262], [2.331861907147552, 48.82629307216842], [2.33181121806649, 48.82618092257973], [2.33176052921513, 48.82606877205895], [2.331701059775384, 48.82593519512457], [2.3317009144589322, 48.825934842655776], [2.33165137988174, 48.82579782261812], [2.331605513844038, 48.825676840069384], [2.331559649381245, 48.825555857497655], [2.331510115535373, 48.82541883735523], [2.331464250158869, 48.82529785471151], [2.33141471680883, 48.82516083449805], [2.331368851880657, 48.82503985178995], [2.331319319026444, 48.82490283150551], [2.331273454535164, 48.82478184963232], [2.331223922188305, 48.82464482837757], [2.331178058145241, 48.82452384644], [2.331128526282658, 48.82438682601358], [2.331082664061457, 48.824265843119925], [2.331082561206847, 48.82426557902645], [2.331020193863818, 48.82411356601899], [2.330974332134358, 48.82399258305434], [2.330970661265161, 48.82396488321505], [2.330916118205445, 48.82395670128652], [2.330726997419633, 48.82399542523377], [2.330548310828389, 48.82403089488084], [2.330359188126725, 48.82406961913557], [2.330180501030891, 48.82410508823073], [2.329991379160598, 48.824143811009556], [2.329812691560284, 48.82417927955275], [2.32963400371696, 48.824214747827845], [2.329444879669343, 48.82425347063029], [2.329266191321544, 48.82428893835345], [2.329077066743217, 48.824327659672335], [2.32889837789095, 48.82436312684356], [2.328709254120795, 48.824401848485145], [2.3285305647639643, 48.824437315104426], [2.3283714898883803, 48.824469883196635], [2.328350479402133, 48.82448131592093], [2.32837259935677, 48.82450482581662], [2.328496276046109, 48.824591775328734], [2.328619824355067, 48.82468068732772], [2.328743501885438, 48.82476763567124], [2.328867049659115, 48.824856548292566], [2.328867129311265, 48.824856603601695], [2.328990222951421, 48.824941675888084], [2.329115230469016, 48.825027087948655], [2.3292383249279682, 48.82511215906742], [2.329363333249296, 48.82519757175505], [2.329486428515577, 48.825282642605494], [2.329611437663581, 48.825368054121476], [2.32973453372563, 48.82545312560296], [2.329859543688948, 48.825538536846636], [2.3298596523243083, 48.82555096146734], [2.329737095688174, 48.825636648215024], [2.329618070428921, 48.825720232995906], [2.3294955129977453, 48.8258059194831], [2.329376486964755, 48.82588950401095], [2.3292539287387353, 48.82597519023763], [2.329134901943473, 48.82605877361313], [2.329131408558121, 48.82606053478427], [2.329047989337702, 48.82608990275285], [2.328940861416146, 48.82612365610086], [2.328937768481913, 48.82612986244041], [2.328952110915405, 48.82614633408372], [2.329103170047822, 48.82621614142594], [2.329250089242028, 48.82628463384432], [2.329401150536195, 48.82635444080921], [2.329548070523054, 48.826422931953736], [2.329699132616907, 48.82649273853363], [2.329846053384947, 48.82656122930363], [2.329997114904856, 48.82663103639023], [2.330144037816262, 48.82669952679337], [2.330144063545018, 48.826699538629384], [2.330301013976315, 48.82677171578582], [2.330462879318727, 48.826846028386086], [2.330619830632288, 48.82691820511474], [2.330781695510305, 48.82699251816549], [2.330938647706337, 48.827064694466266], [2.331100514867223, 48.82713900618415], [2.331257467945626, 48.8272111820571], [2.331419336004117, 48.82728549423306], [2.331576289964895, 48.82735766967816], [2.331738158944165, 48.82743198051358], [2.331895113787319, 48.827504155530846], [2.332056983675935, 48.82757846592501], [2.332062855357628, 48.82760095075315], [2.332063747358772, 48.82760149985784], [2.332244143858844, 48.827572722609304], [2.332367292864996, 48.82755419948229], [2.332426233576045, 48.82752977856897], [2.332417437048132, 48.8275165571977], [2.332380721221498, 48.827439422268924], [2.332321249991376, 48.82730584581371], [2.332265252852776, 48.827188201382], [2.332205782205063, 48.82705462483947], [2.332149785596845, 48.82693698032736], [2.332123552008045, 48.82687805593928], [2.332120635373362, 48.826864253100304]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 90, "zemmour_eric": 76.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-13", "circ_bv": "11", "num_bureau": 13, "roussel_fabien": 20.0, "nb_emargement": 1183.0, "nb_procuration": 67.0, "nb_vote_blanc": 11.0, "jadot_yannick": 123.0, "le_pen_marine": 44.0, "nb_exprime": 1170.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1515.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1183, "quartier_bv": "55", "geo_point_2d": [48.82565310915359, 2.3305514827974942], "melenchon_jean_luc": 293.0, "poutou_philippe": 3.0, "macron_emmanuel": 452.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.347097710621428, 48.89467927683702], [2.347105477263853, 48.894651616508895], [2.347145471490471, 48.894607474660894], [2.3472419851915403, 48.894498510287164], [2.34734535091005, 48.89438442556599], [2.347441863779332, 48.894275461009016], [2.347545228617047, 48.89416137609213], [2.347641740654654, 48.894052411351865], [2.347745104611484, 48.89393832623923], [2.347841615817325, 48.89382936131577], [2.347944978893481, 48.89371527600738], [2.348041489256202, 48.89360631179989], [2.348144851451595, 48.893492226295756], [2.348241360993933, 48.893383261005766], [2.348344722308471, 48.89326917530594], [2.348414963711183, 48.89318986683347], [2.348417789964298, 48.89317164486687], [2.348374659291413, 48.89315969021596], [2.348271981446554, 48.893115251737576], [2.348146598821791, 48.89306397703963], [2.348126974881424, 48.89306792615706], [2.348042701889277, 48.89319131747492], [2.347960074992432, 48.89331076606548], [2.347875801211694, 48.89343415723852], [2.347793173557835, 48.89355360478822], [2.347784937836151, 48.89355843515471], [2.347607370913139, 48.89359605689999], [2.347403099160177, 48.89363928761162], [2.347225533038074, 48.893676909694605], [2.347021259287025, 48.89372013974432], [2.346843692624553, 48.893757760359065], [2.346639418228075, 48.893800990653524], [2.346518046111839, 48.8938267045846], [2.346494266492332, 48.8938206123165], [2.346468990093999, 48.89383064749898], [2.346412794980551, 48.89384255359062], [2.346217138302492, 48.89388959475829], [2.346039570481087, 48.893927214174894], [2.346022822768196, 48.89392213238091], [2.345944047677794, 48.893798345838974], [2.345878657204815, 48.893682897106196], [2.345799884182956, 48.89355911044986], [2.345734494318696, 48.893443662512446], [2.345719067230815, 48.893416425002755], [2.345717884165436, 48.89341592750911], [2.345666285384173, 48.89342828914155], [2.345493283006118, 48.8934565239996], [2.345311504930569, 48.89348596698315], [2.345138502179784, 48.89351420042786], [2.3449567223384182, 48.8935436428639], [2.344925011707842, 48.89356174361815], [2.344929564738269, 48.89357645984412], [2.34497631776827, 48.89365766712804], [2.34503759527577, 48.893770632428996], [2.345105946154939, 48.89388935425412], [2.345167224216369, 48.89400231946487], [2.345235575695282, 48.89412104119086], [2.345296854299344, 48.89423400721066], [2.345289080113618, 48.89424538428754], [2.345107707076079, 48.89429325266295], [2.344936173788743, 48.89433910884806], [2.34475480010035, 48.89438697668485], [2.34458326620463, 48.89443283146132], [2.344401891853964, 48.89448069965879], [2.344230357338752, 48.89452655392584], [2.344058822521294, 48.89457240794526], [2.34387744720223, 48.89462027534234], [2.343705911765284, 48.894666128852364], [2.343524535806508, 48.894713994811575], [2.343352999738639, 48.89475984871145], [2.343171623129027, 48.89480771413208], [2.343133833594984, 48.89480461194318], [2.343117039662612, 48.89482913783412], [2.343107200174716, 48.89485973631284], [2.343085567370536, 48.89490898496364], [2.343085136893457, 48.89491261855618], [2.3430898891466843, 48.89492805268767], [2.343135317399785, 48.89493456744332], [2.343361721694547, 48.89496816304564], [2.343595077763583, 48.89500125762896], [2.343821482645014, 48.89503485236004], [2.3440548393053, 48.89506794604547], [2.344058059725128, 48.89506869123536], [2.344224441690267, 48.89512236469565], [2.344391002293249, 48.895177151357636], [2.344557384948229, 48.89523082435], [2.34472394624854, 48.895285610543525], [2.344890329593356, 48.895339283068054], [2.345056891579683, 48.895394069692294], [2.345223275614439, 48.89544774174894], [2.345389838309408, 48.89550252700544], [2.345556223033897, 48.89555619859415], [2.345722786426191, 48.89561098338218], [2.345889171840512, 48.895664654503015], [2.346055735930129, 48.89571943882255], [2.346087772638705, 48.89573604523188], [2.346112207899718, 48.89572605591107], [2.34620816258741, 48.895623712897496], [2.346311532805103, 48.895509629185845], [2.346407486690811, 48.8954072868916], [2.346510856042141, 48.89529320298534], [2.346606810512225, 48.89519085961937], [2.346710178997095, 48.895076775518554], [2.346806131301344, 48.89497443286449], [2.346909498919769, 48.89486034856906], [2.347005450444734, 48.894758004835786], [2.347068822910928, 48.894688062180144], [2.347097710621428, 48.89467927683702]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 28, "zemmour_eric": 38.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-10", "circ_bv": "18", "num_bureau": 10, "roussel_fabien": 29.0, "nb_emargement": 1245.0, "nb_procuration": 72.0, "nb_vote_blanc": 10.0, "jadot_yannick": 151.0, "le_pen_marine": 44.0, "nb_exprime": 1239.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1701.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1252, "quartier_bv": "70", "geo_point_2d": [48.89452079017008, 2.3458404201971663], "melenchon_jean_luc": 555.0, "poutou_philippe": 7.0, "macron_emmanuel": 334.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.320568806865964, 48.8484405218138], [2.320528869336624, 48.848406885551576], [2.320373891558809, 48.84832785623627], [2.320224297001298, 48.84825509346734], [2.320207549064037, 48.84824455312975], [2.320200386981275, 48.84824274968763], [2.320050791547787, 48.84816998668847], [2.319916558644637, 48.84810702032507], [2.319782326065862, 48.84804405380753], [2.3196327331490902, 48.84797129028041], [2.319498501262858, 48.84790832343674], [2.31932813402811, 48.84784082492903], [2.319327123080203, 48.84784039377949], [2.319263074749956, 48.84781565038103], [2.319242000472739, 48.84781012350863], [2.31919747169577, 48.847844621455536], [2.3191270620160243, 48.847970924603395], [2.319055579428117, 48.84809786193617], [2.318985169062328, 48.84822416497187], [2.318913685793085, 48.84835110129172], [2.318843274741346, 48.848477404215146], [2.318771790767357, 48.84860434132061], [2.318701379029455, 48.84873064413186], [2.31862989436256, 48.84885758112366], [2.318559481950345, 48.84898388292336], [2.318487996590335, 48.84911081980155], [2.318417583480282, 48.84923712238832], [2.318346097427348, 48.84936405915283], [2.318275683631204, 48.84949036162735], [2.3182041968969003, 48.849617297378906], [2.318133782414657, 48.84974359974118], [2.318062294975646, 48.8498705362784], [2.317991879807293, 48.84999683852842], [2.317920391686897, 48.850123774052655], [2.317902461948736, 48.85012896546836], [2.317722939583152, 48.850080537530886], [2.317544215905437, 48.85003181438893], [2.317364694219242, 48.8499833850104], [2.317185969846995, 48.84993466132129], [2.317006450179215, 48.8498862323081], [2.316827726475227, 48.84983750807961], [2.316648207486852, 48.84978907762539], [2.316469484451024, 48.849740352857545], [2.316289964755799, 48.84969192275312], [2.316111242388135, 48.84964319744588], [2.315931724735013, 48.84959476590821], [2.315753003035415, 48.84954604006161], [2.315573486038216, 48.849497608881485], [2.315394765006788, 48.84944888249553], [2.315360190249999, 48.84945016050421], [2.315350971314162, 48.84947432303139], [2.315390259825795, 48.849553124969596], [2.315436007641448, 48.849643462168466], [2.315489151704252, 48.84975005622293], [2.315534901238711, 48.84984039247651], [2.315535210376822, 48.849845388391984], [2.315490888403007, 48.84996611405129], [2.315445992030199, 48.850086771641976], [2.31540166964439, 48.85020749724203], [2.31535677284533, 48.85032815567234], [2.315312450047522, 48.85044888121318], [2.315267552833913, 48.85056953958382], [2.315223228261396, 48.85069026505764], [2.315178331995938, 48.85081092337641], [2.315134007011403, 48.850931648791004], [2.315089110343212, 48.85105230615085], [2.315044784946655, 48.85117303150614], [2.314999887852086, 48.851293689705635], [2.3149555620435, 48.85141441500173], [2.3149106645343682, 48.851535073141505], [2.314866338313747, 48.85165579837836], [2.314821439027314, 48.85177645645071], [2.314804036305077, 48.85181840270848], [2.314819471782131, 48.85182542965314], [2.31492730855907, 48.851822200579285], [2.315134460583005, 48.851816143942656], [2.315331972893821, 48.85181022874661], [2.3155391234485823, 48.851804172300845], [2.315736635668185, 48.85179825643675], [2.315943787502751, 48.85179219839883], [2.316141298268293, 48.85178628185891], [2.316348450008209, 48.85178022312037], [2.316545962045142, 48.85177430592019], [2.316753112327666, 48.851768246473206], [2.316950624261462, 48.85176232950428], [2.317157775812047, 48.85175626936441], [2.317355287666274, 48.851750350828176], [2.317552799475634, 48.851744431965884], [2.3177599495223022, 48.851738370775614], [2.317957461240287, 48.85173245124527], [2.318164612554985, 48.851726389362106], [2.318362122818855, 48.85172046915597], [2.318569274027082, 48.85171440747148], [2.318766785562289, 48.85170848660506], [2.31897393532483, 48.851702423312865], [2.319009239400495, 48.85171479167096], [2.319041224862676, 48.85170235481664], [2.3190990787970502, 48.85157782704403], [2.319155463075351, 48.85145373784945], [2.31921331646071, 48.851329209993764], [2.31926970019787, 48.85120512071761], [2.319327553034219, 48.85108059277888], [2.3193839362186, 48.850956504320436], [2.319441788517795, 48.850831975399366], [2.319498171161152, 48.850707886859354], [2.319556022899507, 48.850583358754506], [2.319612405013591, 48.85045926923367], [2.31967025620296, 48.85033474104576], [2.3197266377643952, 48.85021065234268], [2.319784488416526, 48.85008612317241], [2.319840869436859, 48.84996203438777], [2.319898719528279, 48.849837506033786], [2.319955100019355, 48.849713416268294], [2.320012949561914, 48.84958888783126], [2.320069329500268, 48.84946479888349], [2.320127178505504, 48.849340269464115], [2.32018355790288, 48.84921618043482], [2.320241406359166, 48.849091650932436], [2.32029778521557, 48.84896756182159], [2.3203556331112862, 48.84884303313544], [2.320412011438456, 48.84871894304379], [2.3204698587851382, 48.848594414274594], [2.320526236559624, 48.84847032500072], [2.320568806865964, 48.8484405218138]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 122, "zemmour_eric": 177.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "7-10", "circ_bv": "12", "num_bureau": 10, "roussel_fabien": 9.0, "nb_emargement": 1297.0, "nb_procuration": 74.0, "nb_vote_blanc": 7.0, "jadot_yannick": 93.0, "le_pen_marine": 107.0, "nb_exprime": 1286.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1589.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1297, "quartier_bv": "27", "geo_point_2d": [48.85029822858012, 2.3178169392070553], "melenchon_jean_luc": 148.0, "poutou_philippe": 3.0, "macron_emmanuel": 568.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303172181186421, 48.879143622533704], [2.303151143943973, 48.87915203299561], [2.303027178747107, 48.87912615327626], [2.302972229599636, 48.879114054729975], [2.302969887332706, 48.87911423804735], [2.3029380658320058, 48.87918031596129], [2.3030518374580122, 48.879271194504355], [2.303158878740093, 48.879356697085626], [2.303272652500171, 48.87944757541221], [2.303379694507388, 48.87953307778235], [2.303493469037995, 48.87962395588452], [2.30360051178228, 48.87970945714425], [2.303601040993762, 48.87972045821587], [2.3034833808121338, 48.87982761232958], [2.303365195626584, 48.87993524261166], [2.303247534462432, 48.88004239737193], [2.303129348302062, 48.880150027400155], [2.303011686179436, 48.88025718100848], [2.302893500407715, 48.88036481079084], [2.302896211626713, 48.880377204147734], [2.303044779277145, 48.88045284088445], [2.303193541034148, 48.88052857568722], [2.303342109560248, 48.88060421114526], [2.303490872182012, 48.88067994556815], [2.303639440196235, 48.88075558153818], [2.303788205046254, 48.88083131558913], [2.3037904681702512, 48.88084409572586], [2.303654978637956, 48.880954397326605], [2.303520383215075, 48.88106397190839], [2.303384893890083, 48.88117427408865], [2.303250297330679, 48.88128384834487], [2.303114805498207, 48.881394150189536], [2.302980207802265, 48.88150372412022], [2.30284471618921, 48.88161402564509], [2.3027101173567193, 48.881723599250286], [2.30270241480184, 48.88173609562233], [2.30270921292847, 48.88174277231268], [2.30287948637963, 48.88178842310872], [2.303062206023635, 48.88183741159945], [2.303232480093652, 48.881883061889525], [2.303415200401754, 48.881932049837346], [2.303585475090621, 48.88197769962145], [2.303768196062816, 48.882026687026304], [2.303938471370532, 48.882072336304475], [2.304121194370238, 48.882121323174324], [2.304291468933377, 48.882166971938595], [2.30438862847998, 48.88219301914903], [2.304400755005123, 48.88219240970841], [2.304480232414601, 48.882161101543986], [2.30464564895844, 48.88209594059511], [2.304828804770298, 48.88202379116386], [2.304994221805372, 48.88195862973314], [2.305177375287982, 48.88188647975172], [2.305342791450666, 48.88182131783129], [2.305525945330963, 48.88174916731557], [2.305691360621359, 48.881684004905416], [2.305874512172314, 48.881611853839544], [2.306039926590525, 48.88154669093968], [2.30622307853906, 48.88147453933945], [2.306388492084984, 48.88140937594986], [2.30640411550735, 48.881410134670325], [2.306454634384255, 48.88143977534926], [2.306530561848196, 48.881480723936015], [2.306532853541583, 48.881485983932706], [2.306556064282355, 48.88149173922093], [2.306723723372532, 48.881582159895835], [2.306892965712913, 48.88167343486613], [2.307060625960908, 48.881763855953594], [2.30722987084585, 48.881855130440506], [2.30739753226375, 48.881945551041234], [2.307566776966126, 48.88203682502892], [2.307586908893984, 48.88203469492484], [2.307699739786391, 48.881917898795336], [2.307811618929981, 48.881802087215085], [2.307924448814471, 48.88168529084906], [2.308036326958546, 48.88156947903439], [2.30814915583513, 48.88145268243195], [2.30826103296796, 48.88133687128206], [2.308373860836652, 48.881220074443135], [2.308485736981936, 48.88110426215959], [2.308598563842746, 48.880987465084225], [2.308710438988752, 48.88087165256621], [2.308720384795554, 48.8808675505679], [2.30893989901266, 48.880850943578096], [2.309159183764788, 48.88083435464767], [2.309378697690118, 48.88081774775215], [2.309597980811128, 48.880801157110334], [2.309817495820092, 48.88078454941761], [2.310036778649714, 48.880767958870905], [2.310052081878518, 48.8807645711329], [2.3100555706030432, 48.88075484244075], [2.31004895669064, 48.880674195973604], [2.310042405965211, 48.880594339480965], [2.310061005422707, 48.88053100842669], [2.310045174713874, 48.880527694873436], [2.309927631882774, 48.88051325486699], [2.309764185206625, 48.88049024293116], [2.309560929532561, 48.88046527266869], [2.309397484532412, 48.8804422602391], [2.309234038313329, 48.880419247578004], [2.309030784534013, 48.880394276421754], [2.3090295166209422, 48.88039405596123], [2.308840588233766, 48.880354624896675], [2.308650661471674, 48.88031410406554], [2.308461733661382, 48.880274672400255], [2.308271807497683, 48.88023415006584], [2.308082880264284, 48.88019471779985], [2.307892954674996, 48.88015419576081], [2.307704028018493, 48.880114762894095], [2.307514103027419, 48.880074239351806], [2.307325175572493, 48.880034806775754], [2.307135252531258, 48.879994282637405], [2.306946325665102, 48.879954848561376], [2.3067564031983743, 48.879914324718385], [2.306567476909136, 48.879874890041656], [2.306377555040657, 48.879834364695434], [2.306188629328445, 48.87979492941797], [2.305998708034374, 48.87975440436706], [2.305809782898989, 48.87971496848893], [2.305619862191404, 48.87967444283412], [2.305430937632954, 48.87963500635528], [2.305241017523757, 48.87959447919725], [2.305052093542251, 48.879555042117694], [2.304862174007358, 48.879514515255], [2.304673250602799, 48.87947507757475], [2.30448333166642, 48.879434549208874], [2.304294408826804, 48.879395111827215], [2.304104489113391, 48.87935458284949], [2.303915568226198, 48.8793151439758], [2.3037256490871902, 48.87927461529338], [2.303536728776858, 48.879235175819], [2.303346810236303, 48.87919464563344], [2.303281854470669, 48.87918108513376], [2.303172181186421, 48.879143622533704]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 162, "zemmour_eric": 211.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "17-44", "circ_bv": "04", "num_bureau": 44, "roussel_fabien": 5.0, "nb_emargement": 1315.0, "nb_procuration": 64.0, "nb_vote_blanc": 9.0, "jadot_yannick": 64.0, "le_pen_marine": 57.0, "nb_exprime": 1307.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1585.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1318, "quartier_bv": "66", "geo_point_2d": [48.88075580455906, 2.3057114134799686], "melenchon_jean_luc": 109.0, "poutou_philippe": 0.0, "macron_emmanuel": 660.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.289483442303964, 48.845050655168535], [2.289483007159624, 48.84505098894727], [2.289453970352459, 48.8450623076985], [2.289289207195696, 48.84512653307903], [2.289110932007378, 48.84519902496198], [2.288946167995652, 48.84526324986222], [2.288767890500057, 48.84533574121699], [2.288603125633367, 48.845399965636894], [2.288424848555509, 48.84547245647968], [2.288260082833855, 48.84553668041929], [2.288132971843496, 48.845588365287014], [2.288115684228346, 48.84559681809074], [2.288147781023132, 48.84563675837127], [2.288188498411221, 48.84565761501605], [2.288214259746729, 48.845670958395544], [2.288217328616348, 48.84567214313224], [2.288401701647577, 48.84572331125526], [2.288584534933613, 48.84577410209271], [2.288767367213445, 48.845824892640366], [2.2889517426755, 48.845876060816074], [2.28913457567089, 48.84592685079794], [2.289318951866344, 48.845978017503775], [2.289501785565025, 48.846028807819074], [2.289686161119231, 48.84607997394621], [2.289868996908301, 48.8461307628045], [2.290053373171372, 48.84618192926036], [2.290236209675993, 48.84623271755283], [2.290420586672531, 48.846283882538806], [2.290603423892695, 48.846334670265385], [2.290787801598306, 48.84638583558005], [2.290970639534012, 48.84643662274083], [2.29115501797297, 48.84648778658563], [2.2911630241321292, 48.84649807329563], [2.291111003149215, 48.84664889979841], [2.291056638692796, 48.84680238348743], [2.291068735398649, 48.84681339054872], [2.291272206367611, 48.8468249846385], [2.2914721596912973, 48.84683662590094], [2.291675632215545, 48.84684821841311], [2.291875585706268, 48.84685985990035], [2.2920790584109643, 48.84687145172623], [2.292279012093255, 48.84688309163968], [2.292289528624591, 48.84688745641161], [2.292387271766188, 48.846996014104256], [2.292480337022123, 48.847101272151306], [2.292495177733082, 48.84711605373572], [2.292518649948914, 48.84710923955247], [2.292558333471327, 48.84709363820087], [2.292612457857774, 48.84707298415108], [2.292618528101039, 48.8470622825274], [2.292580590622098, 48.84698921506239], [2.292540040215452, 48.8469114860101], [2.292544174544361, 48.846903460243055], [2.292533738625501, 48.84689185068725], [2.292533003177636, 48.84688921119924], [2.292527160340862, 48.84676873190185], [2.2925210574208412, 48.846647337298094], [2.29251521600139, 48.84652685798202], [2.292509113125308, 48.846405464250594], [2.292503270397996, 48.84628498489974], [2.292497167590271, 48.84616359024205], [2.292491326280269, 48.84604311087254], [2.29248522351648, 48.845921717087194], [2.29247938089863, 48.84580123768287], [2.292473278203299, 48.84567984297131], [2.292458887870737, 48.84567116262609], [2.292299892272437, 48.845676762383], [2.292063348636377, 48.84568562284312], [2.2919043529515672, 48.84569122207434], [2.291667810545203, 48.84570008176039], [2.291508814773688, 48.84570568046585], [2.291494478209222, 48.84569626374168], [2.291502832089341, 48.8455826414512], [2.291508636456742, 48.84547873878891], [2.291514442163659, 48.84537483612474], [2.291522795948731, 48.84526121380013], [2.291529895967999, 48.84525374883624], [2.291690535490738, 48.845196084734226], [2.291853243065201, 48.84513782468541], [2.292013881872961, 48.84508016014322], [2.292176588724046, 48.84502189964865], [2.292337226816623, 48.84496423466631], [2.29249993158178, 48.84490597371782], [2.2926605703218232, 48.84484830830338], [2.292823274363707, 48.8447900469091], [2.292983912388664, 48.844732381054506], [2.293146615707068, 48.84467411921446], [2.293151707523641, 48.84466148441929], [2.293037968513562, 48.84454007506503], [2.292928686183034, 48.844422554707485], [2.292814948213922, 48.84430114511518], [2.292705666887284, 48.84418362452873], [2.292596386053586, 48.84406610383011], [2.292482649636467, 48.843944693883095], [2.292435597735612, 48.84390662958516], [2.292422557111957, 48.84391128042852], [2.292316767871875, 48.843952554394555], [2.292152011751411, 48.8440167837816], [2.2919782626890592, 48.844084571575785], [2.291813505734089, 48.84414880048905], [2.291639755791337, 48.844216587783635], [2.291474998001861, 48.844280816223105], [2.291318354662968, 48.844331783670114], [2.291153596113239, 48.84439601166035], [2.290996950751373, 48.844446978673204], [2.290832191441389, 48.84451120621416], [2.290831413739742, 48.844511480407775], [2.290604450710343, 48.84459778977639], [2.290439690439893, 48.844662016768105], [2.29043910812506, 48.84466225164653], [2.29028477340699, 48.84472794417039], [2.290120012318869, 48.84479217161365], [2.289965675451305, 48.84485786371011], [2.289800913571469, 48.84492208980713], [2.289646577267245, 48.844987782391705], [2.289510851378823, 48.84504068928371], [2.289483442303964, 48.845050655168535]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 126, "zemmour_eric": 80.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-8", "circ_bv": "12", "num_bureau": 8, "roussel_fabien": 15.0, "nb_emargement": 1178.0, "nb_procuration": 78.0, "nb_vote_blanc": 7.0, "jadot_yannick": 93.0, "le_pen_marine": 63.0, "nb_exprime": 1170.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1391.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1178, "quartier_bv": "59", "geo_point_2d": [48.84547537107098, 2.2910301497710726], "melenchon_jean_luc": 187.0, "poutou_philippe": 3.0, "macron_emmanuel": 554.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.371175999146482, 48.86592565010167], [2.371193557322153, 48.86595338901895], [2.371132547742816, 48.866056775166754], [2.371073859258431, 48.86614662488973], [2.371073798120681, 48.86614672079801], [2.371012788066497, 48.866250107766014], [2.370940009828495, 48.8663651998267], [2.3709398777278983, 48.86636541497437], [2.370866110518681, 48.86648143799623], [2.37079333299657, 48.86659652995079], [2.370719565144465, 48.86671255195886], [2.3706467856125792, 48.866827643793144], [2.370573017095949, 48.866943666585904], [2.370500238280542, 48.867058758314215], [2.370426469121116, 48.86717478009316], [2.370353688295906, 48.86728987170111], [2.370279918482908, 48.86740589336549], [2.370207138374173, 48.86752098486747], [2.37013336789652, 48.86763700731656], [2.370060585777954, 48.867752098698205], [2.369986814657484, 48.86786812013347], [2.369914033255389, 48.86798321140909], [2.369840261470345, 48.868099233629046], [2.369767478058491, 48.86821432478434], [2.369693705630618, 48.86833034599045], [2.3696209229351313, 48.868445437039746], [2.369628131469514, 48.86848488767818], [2.369645048373926, 48.86848935565894], [2.369708620699619, 48.86848177715633], [2.369904502583057, 48.86845624830628], [2.370101473284586, 48.8684327663679], [2.370297354802072, 48.86840723597456], [2.370494323778011, 48.86838375338145], [2.370690206270965, 48.86835822325051], [2.370887174884482, 48.868334740009885], [2.371083057011552, 48.8683092083356], [2.371280025262636, 48.86828572444747], [2.371280716198543, 48.86828563004881], [2.371476596573936, 48.86826009862147], [2.37166785824295, 48.86823048840302], [2.371863739584416, 48.868204956347995], [2.372055000819965, 48.86817534640872], [2.372250881775168, 48.86814981281955], [2.372442142588296, 48.868120202260165], [2.372451256118148, 48.86811542148772], [2.3725499547350353, 48.86798327909156], [2.37263456076243, 48.867867587209524], [2.372719165050766, 48.86775189524841], [2.372817863662454, 48.867619752595104], [2.372839442860768, 48.867590243198656], [2.372847847266017, 48.86758490648366], [2.372853293028574, 48.867572474657926], [2.372916317264689, 48.86748629192912], [2.372993578005176, 48.86737513441176], [2.373078180696501, 48.867259442145375], [2.373155442118299, 48.86714828450789], [2.373240044081732, 48.86703259210338], [2.373317303458566, 48.86692143433146], [2.37340190605725, 48.86680574179596], [2.37348827927112, 48.86669071227994], [2.373572879752169, 48.866575019592354], [2.373659252216782, 48.86645998902968], [2.373743851943538, 48.8663442961971], [2.373830223637277, 48.866229266386355], [2.373914823972766, 48.86611357341592], [2.374001193543339, 48.865998543450665], [2.374085793124348, 48.8658828503353], [2.374172163308796, 48.86576781933053], [2.374256760772429, 48.86565212606307], [2.374343130186038, 48.865537095810254], [2.374427726895317, 48.86542140239782], [2.374514095548903, 48.865306371997654], [2.374513939244619, 48.86530043012716], [2.374464631310333, 48.86528407150311], [2.374279150598033, 48.86531859356053], [2.374079114218186, 48.865358076422964], [2.3738936329870333, 48.86539259788064], [2.373693596041657, 48.865432079196815], [2.373508114291558, 48.865466600054745], [2.373308078132957, 48.86550608073108], [2.37312259586382, 48.86554060098923], [2.372922557754979, 48.86558008191073], [2.372737074967008, 48.86561460156912], [2.372537036292678, 48.86565408094433], [2.372351552985782, 48.865688600003004], [2.372151513724312, 48.86572807963051], [2.371966029909235, 48.86576259719007], [2.371765991434568, 48.865802076177786], [2.3715805070898393, 48.86583659403687], [2.371380466686619, 48.86587607147112], [2.371194981822986, 48.86591058873047], [2.371175999146482, 48.86592565010167]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 39, "zemmour_eric": 65.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-23", "circ_bv": "07", "num_bureau": 23, "roussel_fabien": 32.0, "nb_emargement": 1335.0, "nb_procuration": 81.0, "nb_vote_blanc": 8.0, "jadot_yannick": 159.0, "le_pen_marine": 49.0, "nb_exprime": 1324.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1663.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1335, "quartier_bv": "41", "geo_point_2d": [48.86692523987219, 2.3719830346931423], "melenchon_jean_luc": 474.0, "poutou_philippe": 8.0, "macron_emmanuel": 435.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.393290112604787, 48.86957687727724], [2.393283195065217, 48.869577139893465], [2.393125543424539, 48.869518362210385], [2.39294290673044, 48.869452760235646], [2.392785254486959, 48.86939398209084], [2.392602618647012, 48.869328380488774], [2.39259913884152, 48.86932751115767], [2.39243269486669, 48.86929346736121], [2.392281855505864, 48.86927071010274], [2.392115411919886, 48.86923666586334], [2.391964572862153, 48.86921390820384], [2.39179812967543, 48.86917986262221], [2.391643790634315, 48.869144800922705], [2.39147734787806, 48.86911075489283], [2.391323009257615, 48.8690756927775], [2.391318870687714, 48.86907578684655], [2.391297435341273, 48.86910911520519], [2.3912771964180832, 48.86913653560079], [2.391253887012033, 48.86916947399937], [2.391248097327765, 48.86917355182737], [2.391097431535501, 48.86922815135997], [2.390949630713267, 48.86928230841671], [2.390801830936495, 48.86933646619455], [2.390651162842072, 48.86939106515041], [2.390623689252818, 48.86939967133618], [2.390623773806105, 48.86940945745572], [2.390513675444883, 48.86948880479089], [2.39040984949442, 48.86956241291931], [2.39029975047353, 48.869641760946024], [2.390195923915909, 48.86971536887871], [2.39019236238052, 48.86972253014151], [2.390217757573662, 48.86986714970223], [2.3902430311263902, 48.87000959492115], [2.390268427963479, 48.87015421444052], [2.390293701804577, 48.87029665871243], [2.390319097548446, 48.870441279075834], [2.390344371667386, 48.87058372330004], [2.39036964591403, 48.87072616839986], [2.390395042088778, 48.870870787791624], [2.39039940844889, 48.870876403899686], [2.39056468325089, 48.87097562568138], [2.3907328691310332, 48.871076380119376], [2.39089814521314, 48.871175600523344], [2.391066332373453, 48.87127635537385], [2.391231609725357, 48.8713755752994], [2.391399796823617, 48.87147632875693], [2.391401517783687, 48.87147757319411], [2.39140631245105, 48.871495551906705], [2.391432988997873, 48.87149818859037], [2.391522927845787, 48.8715768862102], [2.391589803559166, 48.87163540235863], [2.391588800900842, 48.87164701038004], [2.39145735634952, 48.87173827225203], [2.391325897589649, 48.87182954379494], [2.391194452117189, 48.871920805363175], [2.391062992435978, 48.87201207660224], [2.390931546042273, 48.87210333786669], [2.3908000854397162, 48.87219460880195], [2.3906686381247573, 48.872285869762635], [2.390537176600846, 48.87237714039406], [2.390405728364629, 48.8724684010509], [2.390274265919358, 48.872559671378546], [2.390142816761875, 48.87265093173159], [2.390011353395236, 48.872742201755415], [2.389879904679773, 48.87283346181161], [2.389748440391763, 48.87292473153157], [2.389747535826688, 48.87293642456379], [2.389836462874241, 48.87301234104558], [2.389920177010849, 48.8730838079601], [2.390003892750908, 48.87315527391915], [2.390092820545733, 48.873231190195426], [2.390144141001651, 48.87326081313589], [2.390156290582661, 48.873254352163734], [2.390234163565427, 48.873195848780306], [2.390358724769661, 48.873101570193775], [2.390480603379559, 48.87301000729195], [2.390605165056612, 48.872915728440034], [2.390727041435161, 48.872824165264966], [2.390851602221741, 48.87272988614074], [2.390973477721733, 48.87263832359863], [2.39109803762836, 48.87254404330281], [2.391219912260321, 48.8724524804944], [2.391344471276485, 48.872358199926275], [2.391466346403599, 48.87226663685847], [2.391590903166128, 48.87217235601112], [2.391712777425221, 48.872080792677004], [2.391770043141423, 48.87203744614146], [2.391782130077558, 48.87203058717523], [2.391787792260142, 48.872023791791484], [2.3918550823809293, 48.87197285719677], [2.391986816771732, 48.871869019177986], [2.392111373004567, 48.871774737762074], [2.392243106383509, 48.8716708994426], [2.392338427567671, 48.87159874677258], [2.39235560117633, 48.871589173294716], [2.3923584722248012, 48.87158532522409], [2.3923877063093, 48.87156319708873], [2.392387776453345, 48.87156314438403], [2.392520576518744, 48.87146313783188], [2.392648821217739, 48.871367576810066], [2.39278162028336, 48.87126756995062], [2.392909864032444, 48.871172007732945], [2.393042662087816, 48.87107200146543], [2.393170904876612, 48.87097643895118], [2.393299147194764, 48.87088087629127], [2.393431943760541, 48.87078086956553], [2.393560183755078, 48.87068530660212], [2.393692980694817, 48.87058529867671], [2.393821219729089, 48.87048973541671], [2.393954015658517, 48.87038972808328], [2.394082253732432, 48.870294164526705], [2.39421504866223, 48.87019415688598], [2.394343285775696, 48.870098593032836], [2.394476079716223, 48.869998584185566], [2.394482782351715, 48.86997037173332], [2.394453201916659, 48.869953844269254], [2.39434455509249, 48.8699538989176], [2.394263765121075, 48.86994788362755], [2.394258586646531, 48.86994677641827], [2.39410093278656, 48.86988800003952], [2.393944322234205, 48.869826172784926], [2.393786669093845, 48.869767395985846], [2.393630059287457, 48.86970556741406], [2.393472406866707, 48.869646790194665], [2.393315797785453, 48.86958496210427], [2.393290112604787, 48.86957687727724]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 19, "zemmour_eric": 38.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-73", "circ_bv": "06", "num_bureau": 73, "roussel_fabien": 25.0, "nb_emargement": 1337.0, "nb_procuration": 89.0, "nb_vote_blanc": 12.0, "jadot_yannick": 129.0, "le_pen_marine": 40.0, "nb_exprime": 1323.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1663.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1337, "quartier_bv": "77", "geo_point_2d": [48.870608084175934, 2.3918602537112705], "melenchon_jean_luc": 710.0, "poutou_philippe": 7.0, "macron_emmanuel": 302.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.365059563469854, 48.88102549214485], [2.365085877378456, 48.88103882127343], [2.365137001164539, 48.88108047236234], [2.365188264059566, 48.88112492467872], [2.365219478478859, 48.881150355963996], [2.365222162321841, 48.881157264457855], [2.365253830719225, 48.88117230188587], [2.365354707113998, 48.88125448774112], [2.365483261073673, 48.881359556153086], [2.365615352995726, 48.88146717297575], [2.365743909358724, 48.881572241994064], [2.365750154844014, 48.88157289112162], [2.365795305358959, 48.881546838405406], [2.365943195139867, 48.88147137386822], [2.366092301713511, 48.88139449015063], [2.366240190631324, 48.881319025236124], [2.366389296330325, 48.88124214113801], [2.36653718439619, 48.881166674946954], [2.366686289220547, 48.88108979046827], [2.366834176412384, 48.88101432479919], [2.366983281725607, 48.88093743994723], [2.367131166691061, 48.88086197389364], [2.367280271129545, 48.880785088661135], [2.367428155242947, 48.880709621330986], [2.367577258806897, 48.88063273571801], [2.367582488761197, 48.880625940127004], [2.367589489408847, 48.880482312695335], [2.367597379840887, 48.88034861405624], [2.367605268858012, 48.88021491629248], [2.367612270751067, 48.88007128881306], [2.367620159698875, 48.879937590115354], [2.36762716151358, 48.87979396259888], [2.367608780901776, 48.87977005662142], [2.367599701695236, 48.87976810028133], [2.367505254652849, 48.87965675879347], [2.367411116336001, 48.87954551597685], [2.367316670100536, 48.879434174317744], [2.367222531214445, 48.879322932222394], [2.367128085796723, 48.87921158949275], [2.367033949079222, 48.879100347233866], [2.366939504457375, 48.8789890052322], [2.366845367192478, 48.878877761896064], [2.366750924740771, 48.87876641973039], [2.36665678827016, 48.878655177122745], [2.366562345272728, 48.8785438338793], [2.366468210970562, 48.87843259110815], [2.36637376876907, 48.87832124859275], [2.366279633919507, 48.87821000474432], [2.366185192524784, 48.87809866205766], [2.366091059832794, 48.877987418944976], [2.365996619255673, 48.87787607518781], [2.365902487368756, 48.87776483190439], [2.365808047587536, 48.877653488875225], [2.365713915153224, 48.877542244514565], [2.365695480570041, 48.877537572831876], [2.3656771675536152, 48.877539936372415], [2.365554190398627, 48.87764008551219], [2.365454324822887, 48.87771799241861], [2.365451742446073, 48.87772134493307], [2.365404635670479, 48.87783837990917], [2.365359097200432, 48.8779541425199], [2.365311991369521, 48.87807117744202], [2.365266451126575, 48.878186939985845], [2.365219344876921, 48.878303974846766], [2.365173805587927, 48.87841973733812], [2.365126697567051, 48.87853677123135], [2.365081157868573, 48.878652533663036], [2.365034049417976, 48.87876956839437], [2.36498850931001, 48.878885330766316], [2.364941401804098, 48.879002365443725], [2.364895859923188, 48.87911812774873], [2.364891002473737, 48.87912298445113], [2.364729677900021, 48.879205242928734], [2.364573057839188, 48.87928396570229], [2.364411732264544, 48.87936622373937], [2.364255111249987, 48.87944494518624], [2.364093784663638, 48.87952720368217], [2.363937162684281, 48.879605924701536], [2.363780540231446, 48.87968464551041], [2.363619212153031, 48.87976690334892], [2.363566946463399, 48.879785871198926], [2.363582878555146, 48.87981204909148], [2.36367968126579, 48.87989085672937], [2.363811767099217, 48.87999847569276], [2.3639387686303692, 48.88010186760868], [2.3640708541708673, 48.88020948625832], [2.364197858094427, 48.88031287788689], [2.364329944705481, 48.88042049623003], [2.3644569482944933, 48.88052388755668], [2.364589035976211, 48.880631505593406], [2.364716041957561, 48.88073489663259], [2.364848130709856, 48.88084251436281], [2.364975136356767, 48.880945905100106], [2.365056103807233, 48.881011871428434], [2.365059563469854, 48.88102549214485]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 37, "zemmour_eric": 56.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "10-22", "circ_bv": "05", "num_bureau": 22, "roussel_fabien": 21.0, "nb_emargement": 1158.0, "nb_procuration": 71.0, "nb_vote_blanc": 14.0, "jadot_yannick": 133.0, "le_pen_marine": 54.0, "nb_exprime": 1141.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1432.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1158, "quartier_bv": "40", "geo_point_2d": [48.87978109201179, 2.36584024416718], "melenchon_jean_luc": 446.0, "poutou_philippe": 10.0, "macron_emmanuel": 337.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.344799167345059, 48.86164017532197], [2.344828963451888, 48.86163381817717], [2.34498208698324, 48.861556655041355], [2.345129769999324, 48.86148307731405], [2.345282891279237, 48.86140591377537], [2.3454305734432133, 48.86133233566685], [2.345578255189957, 48.8612587573712], [2.345731376509333, 48.86118159325058], [2.345879057404075, 48.86110801457372], [2.346032176471929, 48.8610308500503], [2.346035454314686, 48.86101892821635], [2.345936655553552, 48.86091488498939], [2.345839979241728, 48.860812703230465], [2.345741181273316, 48.860708658923485], [2.345644505727432, 48.86060647698761], [2.345545709892113, 48.86050243340667], [2.345449035112259, 48.86040025129392], [2.345448592987497, 48.86039974883779], [2.345349129526988, 48.86027784844576], [2.345248290575123, 48.86015415702045], [2.345148826689157, 48.86003225642744], [2.345047990051203, 48.85990856481343], [2.344948527114033, 48.859786663127736], [2.344847690063878, 48.85966297131008], [2.3448412091084, 48.859619601577386], [2.344814625126181, 48.85961915295284], [2.344675432850581, 48.85966413980225], [2.344500315638016, 48.85972178141477], [2.344322870950503, 48.85977913121953], [2.344147752961288, 48.85983677231019], [2.343970307494065, 48.85989412158621], [2.343795188739632, 48.85995176125572], [2.3436177424813742, 48.860009110902325], [2.343442622950403, 48.8600667500499], [2.343265174560817, 48.86012409826101], [2.343090054242074, 48.860181737785986], [2.342912606435632, 48.86023908547589], [2.342737485340349, 48.86029672447897], [2.342560036754308, 48.86035407164012], [2.342384914893736, 48.86041170922199], [2.3422074655166423, 48.86046905675373], [2.34203234287954, 48.86052669381371], [2.341854892734103, 48.860584039917384], [2.341679769309111, 48.860641677354764], [2.341502318383978, 48.860699022929715], [2.341327194182453, 48.86075665984519], [2.341149741114755, 48.86081400488388], [2.340974616148074, 48.86087164037811], [2.340797163652177, 48.86092898579487], [2.340622037908973, 48.86098662076722], [2.340444584644763, 48.861043964755915], [2.340269458113652, 48.86110160010563], [2.340092004069753, 48.86115894356559], [2.339916876762117, 48.86121657839334], [2.339739421938532, 48.86127392132457], [2.339564293865874, 48.8613315547311], [2.339386838251102, 48.86138889803286], [2.339211709401928, 48.861446530917505], [2.339129062266617, 48.86147323666688], [2.339106613320092, 48.86149467457424], [2.339139827238701, 48.86153463167623], [2.339194230963979, 48.86163953080165], [2.339262991528213, 48.861772418630984], [2.339317394375379, 48.86187731856966], [2.339386155567598, 48.86201020629977], [2.339440560285462, 48.86211510526818], [2.339432926715455, 48.86212631217707], [2.339296385991746, 48.86216402804479], [2.339171060583933, 48.86220485267694], [2.339164015376633, 48.86221544766312], [2.3392033601586713, 48.86230393320414], [2.339223083197134, 48.862344079267906], [2.339231234832674, 48.86235243065175], [2.339297232028315, 48.86233538725153], [2.339491569763537, 48.8622909646868], [2.339691103222266, 48.862246004784325], [2.339697142210022, 48.86224327350926], [2.3397823982669212, 48.86217619925879], [2.339868271118422, 48.86210625672924], [2.33987941824338, 48.86210293127262], [2.340011960928313, 48.862106497041964], [2.340136169927322, 48.862109728023725], [2.340141402855497, 48.86210918399238], [2.3403326852265183, 48.86206286267842], [2.340522023488505, 48.862016973724025], [2.340713303819661, 48.861970651790315], [2.3409026427741813, 48.86192476223743], [2.341091980020884, 48.86187887327488], [2.341283259349515, 48.861832549525175], [2.341472595925852, 48.86178665995665], [2.341663875940498, 48.86174033560228], [2.341853211846459, 48.86169444542775], [2.3420444898212223, 48.8616481204537], [2.342233826419697, 48.86160222968069], [2.342425103717467, 48.86155590409444], [2.342426497610788, 48.86155562126408], [2.342607563494345, 48.86152574501216], [2.342785920467018, 48.86149654071196], [2.342966987313464, 48.86146666302288], [2.343145343871162, 48.86143745908478], [2.3433264103060543, 48.86140758085027], [2.343504766471349, 48.86137837547565], [2.343685831120562, 48.86134849758759], [2.343864188244996, 48.861319291683266], [2.344042545169462, 48.861290085512344], [2.344223609203429, 48.86126020680825], [2.344229881292964, 48.861260153041385], [2.344417007992169, 48.86128627459945], [2.344621266966182, 48.86131630921903], [2.344631187394768, 48.861322151751], [2.344675891330682, 48.86140690828862], [2.344754261595293, 48.86155669392002], [2.34478645417646, 48.86161772994517], [2.344799167345059, 48.86164017532197]]], "type": "Polygon"}, "properties": {"lassalle_jean": 3.0, "pecresse_valerie": 67, "zemmour_eric": 78.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "1-2", "circ_bv": "01", "num_bureau": 2, "roussel_fabien": 13.0, "nb_emargement": 975.0, "nb_procuration": 68.0, "nb_vote_blanc": 8.0, "jadot_yannick": 76.0, "le_pen_marine": 53.0, "nb_exprime": 963.0, "nb_vote_nul": 4.0, "arr_bv": "01", "arthaud_nathalie": 0, "nb_inscrit": 1234.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 975, "quartier_bv": "02", "geo_point_2d": [48.860999796411164, 2.342771638426517], "melenchon_jean_luc": 200.0, "poutou_philippe": 4.0, "macron_emmanuel": 442.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3618871317521313, 48.83288296338113], [2.361913589274479, 48.83288540332181], [2.361939578982819, 48.83289111536491], [2.362030697558117, 48.83292268992437], [2.362041947811175, 48.83293914093867], [2.362070917630632, 48.83294835840124], [2.362149218249852, 48.83297549086803], [2.362329087286531, 48.83303516349254], [2.362498507339266, 48.83309386908715], [2.362678377184235, 48.83315354118009], [2.362847798015052, 48.83321224627373], [2.363027667306055, 48.83327191782782], [2.363197090277205, 48.83333062242777], [2.363271452321499, 48.833355292287614], [2.363299232425847, 48.83335721822537], [2.363321995498395, 48.83331739572721], [2.363459043589276, 48.83321978007871], [2.363593510669284, 48.83312218650896], [2.363730557749605, 48.83302456963305], [2.363865023806782, 48.832926976640366], [2.364002069865469, 48.832829359436296], [2.364136534910803, 48.83273176612138], [2.364273579947864, 48.83263414858923], [2.364408043981364, 48.832536554952036], [2.364545087996706, 48.83243893709178], [2.364679551018381, 48.83234134313231], [2.364816594012214, 48.83224372494397], [2.364951057384297, 48.83214613066949], [2.365088097994303, 48.83204851214584], [2.365222560365522, 48.83195091664982], [2.365225252349322, 48.83194799899148], [2.365295571289502, 48.83182309085308], [2.365365758020534, 48.831695698799], [2.365436076283628, 48.83157079054983], [2.3655062637047752, 48.83144339749253], [2.365576581280044, 48.831318490031975], [2.365646766655951, 48.831191096856266], [2.365717083565198, 48.83106618838566], [2.365787269609335, 48.83093879600539], [2.365857585841622, 48.83081388742402], [2.365927769840553, 48.830686494925395], [2.365945624925106, 48.83067573867637], [2.36594518091909, 48.83066531531299], [2.365920508191, 48.830645797671195], [2.365831346271773, 48.83058397434633], [2.36574406650959, 48.830514929090164], [2.365727714028098, 48.83051258314912], [2.365522128995782, 48.83057773405858], [2.365329951631668, 48.8306393411923], [2.365124365613432, 48.83070449051138], [2.364932188674177, 48.830766097006205], [2.364930235518173, 48.83076685379838], [2.3647225030147903, 48.830863520268], [2.364516966796624, 48.83096043187872], [2.364515745220054, 48.830961072035535], [2.3643638489872, 48.83105125238648], [2.364166233525704, 48.83116765976638], [2.3641144191788213, 48.831198421572516], [2.364080541767979, 48.831209525852934], [2.364078267342041, 48.83121841393058], [2.363978182796756, 48.831277832875614], [2.3638727130804043, 48.83134416443399], [2.363720814618954, 48.831434343937445], [2.36361534425858, 48.83150067525954], [2.363601895255946, 48.83150251306161], [2.363403985197243, 48.831458587734986], [2.363210550428508, 48.8314156743132], [2.363012641040216, 48.83137174743631], [2.36281920691596, 48.83132883337827], [2.362621298176112, 48.83128490674971], [2.362427864696134, 48.831241992055425], [2.36223443017253, 48.83119907703945], [2.362036523780232, 48.83115514944539], [2.361843089900918, 48.831112233793164], [2.3616451841680632, 48.831068305548186], [2.361451752295342, 48.831025389266955], [2.361253845870762, 48.830981459464454], [2.361226093109646, 48.830965181923474], [2.361201562783851, 48.83097797576739], [2.361156798347458, 48.831015928455955], [2.361051499534315, 48.83110496398921], [2.360926510997763, 48.83121093369627], [2.360821210046247, 48.831299968104695], [2.360696220574034, 48.831405937552674], [2.360590920186487, 48.83149497264941], [2.360465928416394, 48.831600941830985], [2.360361362192512, 48.831690476193195], [2.360256794247331, 48.831780010449556], [2.360131802465792, 48.831885980161616], [2.360136200635262, 48.831899461869504], [2.360306285921943, 48.83195863200024], [2.360473452055691, 48.832016482188116], [2.360643539469188, 48.83207565184036], [2.360810706352441, 48.83213350155084], [2.360980794530537, 48.83219267071727], [2.361147962174313, 48.83225051905106], [2.361151983271342, 48.83226433506592], [2.361010958629888, 48.83237302604282], [2.360868413116283, 48.832483713414284], [2.360864762230554, 48.83253859593376], [2.360898553148031, 48.83254089631401], [2.361009918956134, 48.832578314237765], [2.361179336038625, 48.832637021724906], [2.36135605815377, 48.83269639843144], [2.361525476009737, 48.83275510542207], [2.361702198919554, 48.83281448161093], [2.361871617549099, 48.832873188105104], [2.3618871317521313, 48.83288296338113]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 37, "zemmour_eric": 73.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-10", "circ_bv": "09", "num_bureau": 10, "roussel_fabien": 38.0, "nb_emargement": 1003.0, "nb_procuration": 38.0, "nb_vote_blanc": 18.0, "jadot_yannick": 47.0, "le_pen_marine": 102.0, "nb_exprime": 984.0, "nb_vote_nul": 2.0, "arr_bv": "13", "arthaud_nathalie": 9, "nb_inscrit": 1292.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1004, "quartier_bv": "50", "geo_point_2d": [48.83193544625876, 2.363057780540138], "melenchon_jean_luc": 343.0, "poutou_philippe": 7.0, "macron_emmanuel": 269.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.30539700497412, 48.85435170913879], [2.305342046058883, 48.85434318255296], [2.305199833930327, 48.854434130899435], [2.305063504316892, 48.85452174874065], [2.304927174232982, 48.85460936731896], [2.304784959291109, 48.85470031514267], [2.304648629634432, 48.85478793339747], [2.304506413719018, 48.85487888087549], [2.304370081775957, 48.85496649789163], [2.304227864874886, 48.8550574459233], [2.304091531996241, 48.855145062608], [2.303949314133725, 48.855236009394694], [2.303812981670298, 48.855323626655164], [2.303670762834221, 48.85541457309618], [2.303534428072373, 48.8555021900173], [2.303392208262625, 48.85559313611262], [2.303255872577195, 48.855680751802964], [2.303113651781948, 48.85577169845191], [2.303113835808103, 48.85577567018306], [2.303152758003995, 48.85579839426115], [2.303160960997863, 48.85587424429783], [2.303164199580479, 48.85591519017369], [2.303160196712399, 48.85592221961648], [2.303037957460425, 48.85600212060883], [2.302911258319138, 48.85608732058049], [2.302789019660841, 48.856167221314635], [2.302662319699106, 48.856252421909325], [2.302663067559387, 48.85626548581969], [2.302823939992345, 48.856358454334504], [2.302980607644748, 48.856449844941466], [2.3031414798506322, 48.856542813006016], [2.303298149977279, 48.85663420318998], [2.303301509752124, 48.85664469215323], [2.303212709023358, 48.85677237467697], [2.303125274828401, 48.85689618975729], [2.303036471864348, 48.85702387301264], [2.302949036828568, 48.857147687936155], [2.302860234378799, 48.857275370140464], [2.302772797139412, 48.85739918489924], [2.302683993817089, 48.8575268678431], [2.30259655709963, 48.857650682452956], [2.3025918067381372, 48.857654379896594], [2.302415990778421, 48.85773287787979], [2.302231299590435, 48.85781476388359], [2.302055481183605, 48.85789326131779], [2.301870790223418, 48.85797514676134], [2.3016949707322523, 48.85805364365455], [2.301510277262024, 48.8581355294212], [2.301511674070996, 48.8581510010815], [2.301689753012672, 48.858211083042235], [2.301851239439036, 48.85826516186758], [2.302029319150515, 48.85832524421614], [2.30219080628315, 48.858379322577676], [2.3023522951139093, 48.8584334007266], [2.302530375978094, 48.85849348232045], [2.302691864152322, 48.85854755999762], [2.30286994579826, 48.858607641079935], [2.303031434678656, 48.85866171829329], [2.303209517118473, 48.85872179796484], [2.303266887591743, 48.85874100945048], [2.303292838188608, 48.85875880586831], [2.303307109994738, 48.858757285410434], [2.30341123051846, 48.85879215154604], [2.303492928655909, 48.858815282718446], [2.303524697028979, 48.85882295564071], [2.303541460648418, 48.85880520462459], [2.303601162582247, 48.85868294132526], [2.303660305845446, 48.8585605434277], [2.303720008582851, 48.85843828005005], [2.303779151289139, 48.85831588206675], [2.303838852104521, 48.858193618594946], [2.30389799425391, 48.85807122052592], [2.30395769587287, 48.857948956975804], [2.304016836102579, 48.85782655881312], [2.30407653716233, 48.85770429517675], [2.304135678197941, 48.85758189693629], [2.304195377335607, 48.85745963320577], [2.304254517814341, 48.85733723487959], [2.304261881187724, 48.857331774536924], [2.304419577444187, 48.85728465583892], [2.304550345420638, 48.85724836785892], [2.304570915453691, 48.85724722111256], [2.304580526598541, 48.85722274435501], [2.304634580289818, 48.857105791535204], [2.304690365724384, 48.8569862073356], [2.304744418911832, 48.856869255340555], [2.304800205203819, 48.85674967107219], [2.304854257911343, 48.85663271810333], [2.30491004369799, 48.85651313375826], [2.304964095913592, 48.856396180714874], [2.305019879832161, 48.85627659628522], [2.305020089809502, 48.85627618110291], [2.30508255913229, 48.856161361577094], [2.305152362570417, 48.856033014211306], [2.305214832673133, 48.855918194599184], [2.305284635459679, 48.855789847128165], [2.305347103616551, 48.85567502741395], [2.305416907126244, 48.85554667894624], [2.30547937468813, 48.85543186003715], [2.30554917618353, 48.85530351145633], [2.3055947532876893, 48.855219739164355], [2.305609109337752, 48.85521366008241], [2.305612230489245, 48.85519800510375], [2.305629121721331, 48.85516695749792], [2.305694584255418, 48.85504209651508], [2.30575705060051, 48.85492727740883], [2.3058225125268272, 48.85480241632903], [2.305884978314672, 48.854687596232004], [2.305909223582355, 48.85466502360724], [2.305887927859311, 48.854650745991655], [2.305823882595782, 48.85461068042527], [2.305703439925445, 48.85453450666364], [2.3055598727475948, 48.85444469291939], [2.305439429484183, 48.85436851887275], [2.30539700497412, 48.85435170913879]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 139, "zemmour_eric": 160.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "7-19", "circ_bv": "02", "num_bureau": 19, "roussel_fabien": 7.0, "nb_emargement": 1053.0, "nb_procuration": 83.0, "nb_vote_blanc": 12.0, "jadot_yannick": 60.0, "le_pen_marine": 69.0, "nb_exprime": 1040.0, "nb_vote_nul": 1.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1267.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1053, "quartier_bv": "28", "geo_point_2d": [48.85661103383572, 2.3039095240688385], "melenchon_jean_luc": 106.0, "poutou_philippe": 2.0, "macron_emmanuel": 451.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.303172181186421, 48.879143622533704], [2.303281854470669, 48.87918108513376], [2.303346810236303, 48.87919464563344], [2.303536728776858, 48.879235175819], [2.3037256490871902, 48.87927461529338], [2.303915568226198, 48.8793151439758], [2.304104489113391, 48.87935458284949], [2.304294408826804, 48.879395111827215], [2.30448333166642, 48.879434549208874], [2.304673250602799, 48.87947507757475], [2.304862174007358, 48.879514515255], [2.305052093542251, 48.879555042117694], [2.305241017523757, 48.87959447919725], [2.305430937632954, 48.87963500635528], [2.305619862191404, 48.87967444283412], [2.305809782898989, 48.87971496848893], [2.305998708034374, 48.87975440436706], [2.306188629328445, 48.87979492941797], [2.306377555040657, 48.879834364695434], [2.306567476909136, 48.879874890041656], [2.3067564031983743, 48.879914324718385], [2.306946325665102, 48.879954848561376], [2.307135252531258, 48.879994282637405], [2.307325175572493, 48.880034806775754], [2.307514103027419, 48.880074239351806], [2.307704028018493, 48.880114762894095], [2.307892954674996, 48.88015419576081], [2.308082880264284, 48.88019471779985], [2.308271807497683, 48.88023415006584], [2.308461733661382, 48.880274672400255], [2.308650661471674, 48.88031410406554], [2.308840588233766, 48.880354624896675], [2.3090295166209422, 48.88039405596123], [2.309030784534013, 48.880394276421754], [2.309234038313329, 48.880419247578004], [2.309397484532412, 48.8804422602391], [2.309560929532561, 48.88046527266869], [2.309764185206625, 48.88049024293116], [2.309927631882774, 48.88051325486699], [2.310045174713874, 48.880527694873436], [2.310061005422707, 48.88053100842669], [2.310072774251056, 48.88053122104276], [2.310158486105105, 48.88054175064741], [2.31035550427693, 48.88056536463368], [2.310558759359106, 48.880590333537064], [2.310755777896211, 48.88061394686358], [2.310959033359997, 48.880638915086294], [2.311156052262371, 48.88066252775306], [2.311359309471043, 48.880687495302965], [2.311556327375193, 48.88071110730214], [2.311759584965356, 48.88073607417138], [2.311956603234857, 48.88075968551082], [2.312159861206503, 48.88078465169939], [2.312356879841145, 48.88080826237908], [2.312560138194264, 48.88083322788697], [2.3127571571942402, 48.880856837906904], [2.312960415928822, 48.880881802734145], [2.313088871408928, 48.88089719540187], [2.313118722083282, 48.880897969225416], [2.313132993130136, 48.88083946121447], [2.313252833239261, 48.880730169903984], [2.31337100057602, 48.88062247058802], [2.313490839686358, 48.88051317901778], [2.313609006026828, 48.880405480344926], [2.313728844138391, 48.88029618851491], [2.313847008142714, 48.88018848867884], [2.313966846618985, 48.88007919659685], [2.31408500962685, 48.87997149740396], [2.314204847104362, 48.879862205062224], [2.314323009139672, 48.879754504713866], [2.314442845618432, 48.879645212112386], [2.314561006657314, 48.879537512407204], [2.314679167219432, 48.87942981167565], [2.314799002203675, 48.879320518685404], [2.314917161769385, 48.87921281859697], [2.315036995754905, 48.87910352534701], [2.315040711778978, 48.87910121283043], [2.315203078711361, 48.879032899998926], [2.31537598450064, 48.87896412470064], [2.3153825526811582, 48.87895696037551], [2.315390503526504, 48.87886919642058], [2.315398622866139, 48.87874651847392], [2.315406572288742, 48.87865875449345], [2.315409605971554, 48.87861291645762], [2.315414075652138, 48.87859423850984], [2.315406465634755, 48.87858751561721], [2.315411551223074, 48.87851067568016], [2.315419901189352, 48.87838123240005], [2.31542802038367, 48.878258554397036], [2.315436371632016, 48.87812911109392], [2.315444489384818, 48.87800643305394], [2.315447612629727, 48.877958028793806], [2.315438642280226, 48.87793074016755], [2.315406723631418, 48.87793088949634], [2.315204414947632, 48.87792218965432], [2.3150027428042232, 48.87791330335209], [2.314800434244404, 48.877904603726556], [2.314598762249957, 48.87789571584431], [2.314396453825837, 48.87788701553595], [2.314194781968439, 48.87787812697303], [2.31399247368023, 48.87786942598183], [2.31379080194794, 48.87786053763751], [2.313588493807401, 48.87785183506419], [2.313386822212173, 48.87784294603922], [2.313184514195615, 48.8778342436823], [2.312982842749317, 48.877825353077405], [2.312781171360008, 48.877816463031934], [2.312578863559394, 48.87780775875206], [2.312377192307171, 48.87779886802593], [2.312174884630546, 48.877790163962494], [2.311973213527401, 48.87778127165642], [2.311770905986541, 48.87777256691017], [2.311569235020512, 48.87776367392341], [2.311366927615633, 48.87775496849434], [2.311165256774734, 48.87774607572615], [2.310962949517638, 48.877737368715], [2.310761278813868, 48.877728475266125], [2.310558971680774, 48.87771976847146], [2.310551666563563, 48.87771798258353], [2.310388560990856, 48.87763710634818], [2.310226374681616, 48.87755676219065], [2.310063271482227, 48.87747588550815], [2.30990108617683, 48.8773955408982], [2.309737982624151, 48.877314663752806], [2.309575798322597, 48.87723431869038], [2.309412695779825, 48.87715344108998], [2.3092505124821088, 48.87707309557516], [2.309087412312834, 48.87699221752762], [2.308925230018851, 48.876911871560324], [2.308762129496184, 48.87683099304992], [2.3085999482061332, 48.876750646630256], [2.308436848693465, 48.87666976766482], [2.30827466840724, 48.87658942079271], [2.308111571267841, 48.87650854138018], [2.307949391985438, 48.87642819405567], [2.30786283216432, 48.876399832979665], [2.307844366500813, 48.876415969181046], [2.307784851773263, 48.87647074016491], [2.30767329383278, 48.87656129702928], [2.307559067180862, 48.876666418434496], [2.307447508428687, 48.87675697507237], [2.307317842779717, 48.87686011560456], [2.307206283193242, 48.87695067200168], [2.30707661658435, 48.877053812254495], [2.306965057526963, 48.87714436841881], [2.306853496718246, 48.87723492446387], [2.3067238287030483, 48.877338064307956], [2.306721280941022, 48.87733965936953], [2.306570159834808, 48.87741234819979], [2.306408008502175, 48.87749183758156], [2.306256886505314, 48.8775645269056], [2.306094734220773, 48.87764401585204], [2.305943611357117, 48.877716703871336], [2.305781458120668, 48.87779619238254], [2.305630334366145, 48.877868880895534], [2.305468180177782, 48.87794836897143], [2.305317055544574, 48.878021057078946], [2.305154900404295, 48.878100544719516], [2.304991089840462, 48.87818613532853], [2.304828933688831, 48.87826562251566], [2.304665122058092, 48.87835121356511], [2.304502963531574, 48.878430700290906], [2.304339150857935, 48.87851628998224], [2.30417699268328, 48.878595776262486], [2.304013178942815, 48.87868136639422], [2.3038510197566913, 48.87876085222103], [2.303687204973229, 48.878846440994614], [2.303525043412297, 48.8789259263601], [2.303361227561886, 48.87901151557407], [2.303199066352815, 48.87909100049399], [2.303172181186421, 48.879143622533704]]], "type": "Polygon"}, "properties": {"lassalle_jean": 5.0, "pecresse_valerie": 165, "zemmour_eric": 184.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-4", "circ_bv": "01", "num_bureau": 4, "roussel_fabien": 4.0, "nb_emargement": 1125.0, "nb_procuration": 91.0, "nb_vote_blanc": 9.0, "jadot_yannick": 57.0, "le_pen_marine": 53.0, "nb_exprime": 1114.0, "nb_vote_nul": 2.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1406.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1125, "quartier_bv": "32", "geo_point_2d": [48.87886628429173, 2.309792525796506], "melenchon_jean_luc": 79.0, "poutou_philippe": 3.0, "macron_emmanuel": 547.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.316390267716633, 48.88610351513503], [2.316366240187217, 48.886109566241835], [2.3162438036047748, 48.886202937981814], [2.316135636198255, 48.88628542825327], [2.316027467085501, 48.88636791841305], [2.315922067800191, 48.88644829737962], [2.315813899374441, 48.88653078734199], [2.315708498066174, 48.88661116610086], [2.315706616929096, 48.886612350559794], [2.31554822695909, 48.886694555939286], [2.31537291169388, 48.88678554611444], [2.315214520670261, 48.88686775103948], [2.3150392028870233, 48.886958739804605], [2.31488081217344, 48.88704094428307], [2.314739230636309, 48.88711442322411], [2.314731010971828, 48.88711455964481], [2.314718042108675, 48.88712542037299], [2.314684303306621, 48.887142930579394], [2.314656462016076, 48.88715737993856], [2.314654952952731, 48.8871580601876], [2.314471015862614, 48.88722956515352], [2.3142755913234883, 48.88730553487063], [2.314268400909109, 48.8873131532829], [2.314276392690591, 48.8873242140434], [2.314395074781589, 48.88742086385073], [2.31451773770331, 48.88752075412082], [2.314636420702151, 48.887617402772335], [2.314759083186151, 48.88771729276956], [2.3148777670690652, 48.887813942063794], [2.315000431842694, 48.887913831803694], [2.315119116621529, 48.888010480841444], [2.315241782321127, 48.88811037031619], [2.315360468007612, 48.88820701819816], [2.315483134633287, 48.888306907407795], [2.315601821203884, 48.888403555932506], [2.315724487391749, 48.88850344486921], [2.315724941843107, 48.888503835976294], [2.315811428176255, 48.88858001499424], [2.315949207720368, 48.88870571173171], [2.316027821561602, 48.888777430797674], [2.316028275356134, 48.8887778722621], [2.316134543937479, 48.888888028229516], [2.316240725498201, 48.88899809455861], [2.316346994978427, 48.88910825031544], [2.316453177437303, 48.88921831643403], [2.316559446452708, 48.889328471972384], [2.316665631173357, 48.889438537888324], [2.316771814979294, 48.88954860369127], [2.316878085342966, 48.88965875891371], [2.316878335475225, 48.889659028340326], [2.316973954818498, 48.889766284422066], [2.3170714615748498, 48.889875657404154], [2.317167083065582, 48.88998291421751], [2.317264590633168, 48.89009228702072], [2.31726465109225, 48.890092356613636], [2.31729006740506, 48.89012145806531], [2.317273032112602, 48.89014526865164], [2.317304208745713, 48.89016826863126], [2.317354635534496, 48.890179939805805], [2.317502338428101, 48.890100838771026], [2.317646927417133, 48.89002214428876], [2.317794629419095, 48.88994304288212], [2.3179392175400872, 48.889864347136324], [2.318086918650308, 48.88978524535778], [2.318231505879599, 48.88970655014705], [2.318379207473679, 48.88962744710507], [2.318523793823053, 48.88954875153007], [2.318671493150005, 48.88946964900767], [2.318816078631231, 48.8893909521692], [2.318842893217991, 48.889376591360275], [2.318844287856841, 48.88937475477278], [2.3188096129456, 48.88934716399479], [2.318701738108099, 48.88926994192369], [2.318590969462054, 48.8891906483162], [2.318483095273062, 48.8891134260371], [2.3183723286566282, 48.88903413222378], [2.3182644537406603, 48.888956910628245], [2.318153687790121, 48.88887761660136], [2.318154922700491, 48.88886464992562], [2.318293656173398, 48.88878745011299], [2.318431764160348, 48.888710598213514], [2.318570496812371, 48.888633398069274], [2.318708603993904, 48.88855654494047], [2.318847335825045, 48.88847934446466], [2.318985442177732, 48.88840249190503], [2.318988241057638, 48.88839088490281], [2.318890547601947, 48.88828682910915], [2.3187927251632843, 48.8881829676442], [2.318695031124797, 48.888078911663605], [2.318597209466704, 48.887975050019264], [2.318499517572577, 48.88787099386716], [2.3184016953314712, 48.88776713203572], [2.318304004218116, 48.88766307570441], [2.31820618275757, 48.88755921369352], [2.318108492424977, 48.887455157183005], [2.318010671756659, 48.887351294093506], [2.317912982204925, 48.887247237403805], [2.317815163669029, 48.88714337504195], [2.317717474897938, 48.88703931817304], [2.317619655779021, 48.886935455624034], [2.317615840296678, 48.886923574417175], [2.317605120900243, 48.88691986474432], [2.317453611114823, 48.88681848485946], [2.317304146688942, 48.88671727111713], [2.31715263809063, 48.8866158899335], [2.317003176194889, 48.886514675804605], [2.316851668760194, 48.88641329512067], [2.316702208042733, 48.886312079698165], [2.316550701783437, 48.88621069861474], [2.316401240857019, 48.88610948368933], [2.316390267716633, 48.88610351513503]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 107, "zemmour_eric": 78.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-9", "circ_bv": "03", "num_bureau": 9, "roussel_fabien": 22.0, "nb_emargement": 1349.0, "nb_procuration": 88.0, "nb_vote_blanc": 12.0, "jadot_yannick": 137.0, "le_pen_marine": 42.0, "nb_exprime": 1336.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1605.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1350, "quartier_bv": "67", "geo_point_2d": [48.88805669751957, 2.3168532238149826], "melenchon_jean_luc": 293.0, "poutou_philippe": 3.0, "macron_emmanuel": 609.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358904825827535, 48.85862198387922], [2.358859408110577, 48.85859166722387], [2.358772757408689, 48.85850809140525], [2.358687363748638, 48.85842572558187], [2.358600713609763, 48.85834214872685], [2.358515320493758, 48.8582597827684], [2.358514719202296, 48.858259247130356], [2.3584113287763833, 48.85817385543078], [2.358306227836615, 48.85808705147602], [2.358202838094094, 48.85800165958305], [2.358097737849021, 48.85791485543171], [2.358089759023463, 48.85791164961936], [2.358021179685417, 48.85790261199483], [2.357941008087809, 48.85789204799225], [2.357920838853991, 48.8578796681479], [2.357901542137121, 48.857886846640774], [2.35786825945055, 48.85788246089043], [2.357864197600701, 48.85788192556553], [2.357854920700792, 48.857877437493975], [2.357752662430726, 48.85775463831392], [2.357651113781655, 48.8576326909264], [2.357548856483353, 48.85750989064583], [2.35744730878819, 48.857387943058484], [2.357345052439566, 48.857265143476], [2.357243505698396, 48.857143195688835], [2.357141250321418, 48.85702039500582], [2.357039704534334, 48.8568984470188], [2.356938159222475, 48.85677649893223], [2.356835905273686, 48.85665369884701], [2.356826597705134, 48.85664145182579], [2.356806682348496, 48.85664378651785], [2.356634980667916, 48.856685141060574], [2.356465095453879, 48.85672605814843], [2.356293393231077, 48.85676741219794], [2.356123507480554, 48.85680832879783], [2.355953621463316, 48.856849245155004], [2.355781918439646, 48.856890597566796], [2.355780051125364, 48.856891155903405], [2.355651019405957, 48.85693730294989], [2.355452479347352, 48.8570089695802], [2.355323448408843, 48.85705511627591], [2.355124906087986, 48.85712678234778], [2.354987474405378, 48.85717724885391], [2.3549862744213153, 48.85717773702845], [2.354818083115781, 48.85725431835109], [2.354648753649056, 48.85733141761779], [2.354480561351359, 48.85740799845544], [2.354311229522871, 48.85748509722654], [2.354250170108948, 48.85750602658473], [2.354257192458602, 48.85751809059102], [2.354334551239622, 48.85759363523547], [2.354440671762947, 48.85769819153605], [2.35454637982902, 48.85780141986376], [2.354652499837729, 48.85790597594956], [2.35475821010794, 48.858009204078215], [2.354864330964934, 48.858113759956595], [2.354970040713494, 48.85821698787143], [2.355076163781685, 48.858321543549714], [2.355181874371502, 48.858424771258115], [2.355287996925088, 48.858529326721616], [2.355400816196592, 48.85864005531082], [2.35550693962813, 48.85874461055989], [2.355619759819974, 48.85885533982049], [2.355725885492194, 48.85895989486245], [2.355838706626742, 48.859070622995866], [2.355944831813908, 48.859175177816], [2.3560576538799403, 48.85928590572151], [2.356163779944983, 48.85939046032721], [2.356276602931294, 48.85950118890414], [2.356382729874327, 48.8596057432954], [2.356495553803255, 48.85971647074506], [2.356601682987028, 48.85982102492919], [2.356714506484622, 48.85993175214361], [2.3568206365463062, 48.86003630611327], [2.356860162191347, 48.860069809703916], [2.356890784036394, 48.860064934324264], [2.356917038700995, 48.86006061554797], [2.356920211838018, 48.86003124011048], [2.357039291520354, 48.85994469716588], [2.357181667242486, 48.85984381142514], [2.357300746062155, 48.85975726820577], [2.35744312076584, 48.859656382136926], [2.357562198711759, 48.85956983954203], [2.357704572397009, 48.85946895314513], [2.357823649491364, 48.85938240937618], [2.357966022158184, 48.85928152265117], [2.358093637862186, 48.859194180825064], [2.358231944114683, 48.859094364668024], [2.358359560277417, 48.85900702255093], [2.3584978655125752, 48.858907206969064], [2.3586254807711162, 48.858819864553595], [2.358763785000126, 48.85872004864756], [2.358891399365444, 48.85863270503452], [2.358904825827535, 48.85862198387922]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 48, "zemmour_eric": 75.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "4-2", "circ_bv": "07", "num_bureau": 2, "roussel_fabien": 16.0, "nb_emargement": 956.0, "nb_procuration": 72.0, "nb_vote_blanc": 7.0, "jadot_yannick": 83.0, "le_pen_marine": 51.0, "nb_exprime": 949.0, "nb_vote_nul": 0.0, "arr_bv": "04", "arthaud_nathalie": 4, "nb_inscrit": 1154.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 956, "quartier_bv": "14", "geo_point_2d": [48.85823123897838, 2.3566184584455723], "melenchon_jean_luc": 228.0, "poutou_philippe": 2.0, "macron_emmanuel": 396.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.350719176343325, 48.82601140193585], [2.350719298018483, 48.825994850481415], [2.350725887866895, 48.825963142784516], [2.350735976660728, 48.825913197649086], [2.350750092774172, 48.82590540204863], [2.350947567645785, 48.82591129284368], [2.351146414768012, 48.82591724921726], [2.351343889729274, 48.825923139357776], [2.351542738304018, 48.82592909507973], [2.351740213354818, 48.82593498456577], [2.351939062020009, 48.82594093962862], [2.352136537160539, 48.82594682846015], [2.352335384554105, 48.825952782856625], [2.352532859784254, 48.82595867103365], [2.352731708630309, 48.825964624778464], [2.352745607886166, 48.82595364667844], [2.352715900327156, 48.82586737244868], [2.352696821975076, 48.82581090349686], [2.352684612619126, 48.825803932001286], [2.352488073398754, 48.82579368446743], [2.352292658733921, 48.825783816841316], [2.352096119666319, 48.82577356866317], [2.351900703800292, 48.82576369948972], [2.351704164874492, 48.82575345156656], [2.351508750520019, 48.82574358175983], [2.35131221175819, 48.82573333229301], [2.351116797553431, 48.82572346184564], [2.3509202589333063, 48.825713212633836], [2.350724844878063, 48.82570334154581], [2.350713701620918, 48.82569839743263], [2.350687485360559, 48.82566379369331], [2.350682092211004, 48.825646007126075], [2.350684264196998, 48.82563588384827], [2.350818961713075, 48.82553950947372], [2.350952892541625, 48.825439797691864], [2.351087589065752, 48.825343422098584], [2.35122151750351, 48.825243710890405], [2.351356213024497, 48.825147334977736], [2.351490140456112, 48.82504762255204], [2.351482801149145, 48.825032861753996], [2.351437015459263, 48.82502638976196], [2.351401444424198, 48.82502220001063], [2.351385868015089, 48.82501393749564], [2.35136770077283, 48.825017946411535], [2.351214851353269, 48.8249999436628], [2.35105041277213, 48.82498121318876], [2.350861992609908, 48.82495902102122], [2.350697554284602, 48.824940290061335], [2.350533117428178, 48.82492155978173], [2.350344696351001, 48.824899365891255], [2.3503348858531, 48.824886518059316], [2.35041568210087, 48.82477890942293], [2.350497630211971, 48.82467010900935], [2.35057842577739, 48.82456250114156], [2.350660371857922, 48.824453699688796], [2.350741166752104, 48.82434609169034], [2.350823113503719, 48.824237291011784], [2.350903907726669, 48.82412968288267], [2.350985853809747, 48.824020881172316], [2.350971877626608, 48.82400796040897], [2.350770376513837, 48.8240255044119], [2.35057280049783, 48.824042961466745], [2.350371300488626, 48.82406050390478], [2.350173724206476, 48.824077960299725], [2.349972222554518, 48.82409550295673], [2.34977464600603, 48.82411295869177], [2.349573144095862, 48.82413049977649], [2.3493755672811503, 48.82414795485163], [2.349174065090246, 48.82416549616263], [2.348976488009316, 48.824182950577914], [2.348963378929652, 48.8241790541576], [2.348847283754859, 48.824065028525474], [2.348730912545764, 48.8239508969352], [2.348614818387392, 48.82383687105427], [2.3484984481964988, 48.823722739214574], [2.348382355054538, 48.82360871308483], [2.34826598588163, 48.823494580995735], [2.348149893744824, 48.82338055551646], [2.348033525601339, 48.82326642227867], [2.347917434480917, 48.82315239655058], [2.3478010659935142, 48.823038263055984], [2.347684977251349, 48.82292423708649], [2.34756860978201, 48.822810103342526], [2.347452522056302, 48.82269607712419], [2.347336155593756, 48.822581944030205], [2.347319170850379, 48.822578794337545], [2.347158569040392, 48.822627469833776], [2.346968450309061, 48.82268515039509], [2.346962797874543, 48.82269830442237], [2.347078364116391, 48.822812992915296], [2.347193803900459, 48.82292770487495], [2.34730936979691, 48.82304239311378], [2.347424810597217, 48.82315710482701], [2.347540378860995, 48.823271793725944], [2.347655820677354, 48.82338650519272], [2.347771389969, 48.82350119294566], [2.347886831439521, 48.82361590415862], [2.348002401747786, 48.8237305916649], [2.34811784559658, 48.823845302638816], [2.348233416910236, 48.823959990797725], [2.348348861775117, 48.824074701525205], [2.348464434116663, 48.82418938853812], [2.3485798786357233, 48.824304099011776], [2.348575255135912, 48.82431689984842], [2.34840421266805, 48.82438095610567], [2.348234682209724, 48.824444535593315], [2.34806363889348, 48.8245085922555], [2.34789410760493, 48.824572171253074], [2.347723064824717, 48.82463622652899], [2.347553532705847, 48.82469980503653], [2.347382487715316, 48.824763860709915], [2.347212954766019, 48.82482743872747], [2.347041908938343, 48.824891493906414], [2.346872375169988, 48.824955070534585], [2.346855427079506, 48.82496676700565], [2.346856685941705, 48.82497261623518], [2.346950162761247, 48.82509259100047], [2.347036586672727, 48.82520323840255], [2.347123010962393, 48.82531388483195], [2.347216489006644, 48.82543385935261], [2.34723213153245, 48.82543843082989], [2.3474411476013692, 48.82540138762767], [2.347648971954361, 48.82536474497736], [2.347857987431609, 48.82532770104413], [2.348065809824627, 48.82529105855892], [2.348274824710402, 48.82525401389476], [2.3484826478899192, 48.825217369790856], [2.348691662184105, 48.82518032439571], [2.348899484765688, 48.82514368046431], [2.349108497106243, 48.825106634330794], [2.34931631911245, 48.82506998877334], [2.349330952195999, 48.8250734842262], [2.349448363430819, 48.82518305911672], [2.349559135741544, 48.825286667279606], [2.349669908492428, 48.82539027533031], [2.349787319779859, 48.825499850749054], [2.349898094810499, 48.82560345767682], [2.350015507057588, 48.82571303285072], [2.350126281621263, 48.82581664043932], [2.350243694828018, 48.82592621536838], [2.350235369403263, 48.825940212092064], [2.3500003861706222, 48.82597272647165], [2.349791932497693, 48.825997516894105], [2.349786383112482, 48.82599752179736], [2.349590383058874, 48.825970788670745], [2.349391762655821, 48.82594371269315], [2.349195763006845, 48.825916978918514], [2.348997143024957, 48.82588990138488], [2.348801143780625, 48.82586316696219], [2.34860252419735, 48.82583608967124], [2.3484065239957133, 48.82580935459311], [2.348207906184449, 48.825782276652866], [2.348191932636653, 48.82578891422789], [2.348166252501303, 48.82585711246832], [2.34815081312506, 48.82590382196164], [2.348157382726211, 48.82591384084756], [2.348335259326143, 48.82597953837983], [2.348511213571427, 48.82604432129571], [2.348689092424452, 48.8261100183015], [2.348865047560879, 48.82617479978995], [2.349042927305034, 48.8262404962618], [2.349218883310237, 48.82630527812141], [2.349396762583354, 48.826370974051926], [2.349572719479785, 48.82643575448411], [2.349750601005899, 48.82650144988809], [2.349926558771219, 48.82656623069147], [2.350104439826286, 48.826631925554075], [2.350280398471615, 48.826696705829335], [2.350458281779789, 48.82676240016543], [2.350634241316227, 48.82682717901317], [2.35063432673405, 48.82682721095512], [2.350658653122514, 48.826838281245315], [2.350665331089258, 48.826837132127956], [2.350809220806383, 48.82689193608705], [2.351012490474735, 48.82696803465265], [2.351156379555976, 48.82702283818029], [2.351359650241421, 48.82709893614693], [2.351503541410955, 48.82715373925788], [2.351522915172329, 48.82714248071012], [2.351450810865265, 48.82702857508806], [2.351402233298532, 48.82695928999623], [2.351398269436909, 48.82695578521835], [2.351266106829243, 48.82688469135277], [2.351135735329978, 48.826815168368206], [2.351003574798751, 48.82674407421095], [2.3508732040011, 48.826674550931514], [2.350870385365679, 48.82667250034554], [2.3507804581690532, 48.82658232467179], [2.350652945650424, 48.82645616678648], [2.350563017840957, 48.82636599092442], [2.350435506366479, 48.82623983368226], [2.350345580668206, 48.826149657646724], [2.350350519435555, 48.826136785627206], [2.350534777718556, 48.826071543812304], [2.350706688307184, 48.826017418412206], [2.350719176343325, 48.82601140193585]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 65, "zemmour_eric": 65.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-49", "circ_bv": "10", "num_bureau": 49, "roussel_fabien": 37.0, "nb_emargement": 1423.0, "nb_procuration": 73.0, "nb_vote_blanc": 11.0, "jadot_yannick": 138.0, "le_pen_marine": 72.0, "nb_exprime": 1408.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1705.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1423, "quartier_bv": "51", "geo_point_2d": [48.82503671136177, 2.349415175035495], "melenchon_jean_luc": 477.0, "poutou_philippe": 9.0, "macron_emmanuel": 472.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.259705798921595, 48.84834777055074], [2.259725393997836, 48.848357911644825], [2.259928561561907, 48.84839977948195], [2.260134323207033, 48.84844295720146], [2.260337490068658, 48.848484824332544], [2.26054325376378, 48.84852800045459], [2.260746421285379, 48.84856986688809], [2.260952184292444, 48.848613042295185], [2.260961668172827, 48.848622032489565], [2.260954328834377, 48.84872587929723], [2.260950636250917, 48.84882558815176], [2.260943296849061, 48.84892943583906], [2.260939602867418, 48.8490291446666], [2.260941776392032, 48.84903424131193], [2.261048230161795, 48.84914312050471], [2.261153909628352, 48.84925099201441], [2.261260365646763, 48.84935987100569], [2.261366045979245, 48.849467743206276], [2.261472502883664, 48.84957662198761], [2.261578184107575, 48.84968449308054], [2.2616846405354423, 48.849793371643514], [2.261790323987872, 48.84990124343576], [2.261896781301761, 48.85001012178872], [2.26200246564564, 48.850117992473365], [2.262108149051739, 48.850225863945006], [2.262214609055521, 48.85033474199187], [2.262216524713225, 48.85033785121843], [2.262252964624502, 48.85045736771214], [2.262288109838864, 48.85057449288084], [2.262324551442393, 48.850694009335754], [2.262359696977355, 48.850811134458525], [2.262396137547857, 48.85093065085779], [2.262431283403218, 48.85104777593462], [2.262467725666196, 48.85116729229508], [2.2625028718420648, 48.85128441732595], [2.262538018188653, 48.851401541434875], [2.262574459568389, 48.85152105861573], [2.262572680210771, 48.85152757343592], [2.262457295406531, 48.851650307163204], [2.262342713119004, 48.85177253397856], [2.262340724652138, 48.85177802942476], [2.2623416414609823, 48.851785853248714], [2.262360179555094, 48.85192922542766], [2.262375016904496, 48.85205590056504], [2.262390771162103, 48.85219039860757], [2.262409310898046, 48.852333770735164], [2.2624250639527093, 48.85246826963047], [2.262443603881869, 48.85261164171689], [2.262462600851938, 48.852619128200054], [2.262611919712242, 48.852576423996624], [2.262813508323607, 48.852516112849415], [2.262962825251221, 48.85247340729642], [2.2631644130453, 48.85241309645173], [2.263313730752778, 48.85237039046533], [2.26331775017228, 48.85236862547938], [2.263451152494445, 48.85228667653372], [2.263614415613457, 48.852183204177805], [2.263747815631553, 48.85210125487938], [2.263911078943274, 48.85199778210974], [2.263999562157467, 48.85194342566874], [2.26401426659787, 48.851942683308266], [2.264032019666858, 48.85191859063054], [2.264076935491045, 48.851890997415914], [2.2641221986655182, 48.85186592184085], [2.264126987945719, 48.85185808186294], [2.2641092237780143, 48.85174796062417], [2.264091542328134, 48.85163854947834], [2.264073778310172, 48.85152842821257], [2.264056097022006, 48.85141901614061], [2.264038334516396, 48.85130889485622], [2.264020653364334, 48.85119948365672], [2.264022412205647, 48.8511940218437], [2.264130260577787, 48.85107115749307], [2.264238131164828, 48.85094928966726], [2.264345979884553, 48.85082642510354], [2.264453849460402, 48.850704557056474], [2.264561695802326, 48.85058169226293], [2.264669564367099, 48.85045982399458], [2.264777409694038, 48.850336958979554], [2.26488527861033, 48.85021509049832], [2.2649931229221902, 48.850092225261875], [2.265100989464849, 48.84997035655095], [2.265102844799666, 48.84996557882724], [2.265097492848486, 48.84983428269265], [2.265092625302837, 48.84969975539952], [2.265087273417389, 48.849568458333856], [2.265082405910166, 48.84943393190745], [2.265077054077766, 48.84930263480999], [2.265072186634537, 48.84916810745176], [2.265066834842501, 48.84903681122177], [2.265061967450481, 48.84890228383101], [2.265077258229254, 48.848893143966365], [2.265259069859014, 48.84890793639465], [2.265473356655245, 48.84892450271628], [2.265655169869491, 48.8489392945506], [2.265869455545262, 48.848955861053255], [2.266051268981339, 48.84897065228531], [2.266265556274516, 48.848987218086414], [2.266447369932416, 48.84900200871611], [2.26658421765942, 48.849018700798716], [2.26659660401541, 48.84900812104062], [2.266577981597091, 48.84896584371418], [2.266511524654922, 48.84894134769193], [2.266341095788903, 48.8488763038485], [2.266178820585283, 48.84881648831597], [2.266008391167553, 48.84875144488225], [2.265846116747184, 48.84869162799244], [2.265683842686772, 48.84863181177864], [2.265513415853443, 48.84856676763744], [2.2653511425762902, 48.848506950066415], [2.265180715203918, 48.84844190543566], [2.265173951617548, 48.848433426038525], [2.265190069960356, 48.84829609913478], [2.265206502462408, 48.84816074375494], [2.265222620635099, 48.84802341681319], [2.265239052953946, 48.84788806229502], [2.265255170956527, 48.84775073531524], [2.26527160310485, 48.8476153807595], [2.265268890106423, 48.84759632899355], [2.265246192927464, 48.84758965300293], [2.265110147205521, 48.8476152390214], [2.264943063350603, 48.847647072762406], [2.264761165830707, 48.847681280400025], [2.264594081550778, 48.84771311365178], [2.26441218355861, 48.84774732165605], [2.26424509886647, 48.84777915351929], [2.264063200414724, 48.84781336099098], [2.263896115284987, 48.84784519326423], [2.263884535115229, 48.847843925856665], [2.26371534087468, 48.84776595736042], [2.263547780993837, 48.84768808771411], [2.263378587775771, 48.84761011783138], [2.263211027536562, 48.84753224769418], [2.263041836678066, 48.8474542782321], [2.262874277443204, 48.84737640761238], [2.262705087607193, 48.84729843676383], [2.2625375293765773, 48.84722056566159], [2.262535466524099, 48.847219775892285], [2.262383662069417, 48.8471725819762], [2.262220007269722, 48.84712196554042], [2.262068203385628, 48.847074771219965], [2.261904550562075, 48.84702415435665], [2.261858294891296, 48.84702523871506], [2.261848275096326, 48.8470447615307], [2.261942372427792, 48.847192900447], [2.262029753574296, 48.847335166338915], [2.262021962352392, 48.84734695215968], [2.2619686782587323, 48.84736030465193], [2.261915887776179, 48.84737815520513], [2.261909377238867, 48.84738937961948], [2.261971029302312, 48.84749546892348], [2.262037436290736, 48.847610206151884], [2.262099088876116, 48.84771629536886], [2.262165496440609, 48.847831031604116], [2.262149923690663, 48.84784303655041], [2.261982455579044, 48.847819452879776], [2.261750147239217, 48.84778613165599], [2.2615826794913803, 48.84776254742457], [2.261350371660942, 48.847729225422846], [2.261182904289645, 48.847705639731316], [2.26117887039254, 48.84770546642489], [2.260958449928243, 48.847717311352085], [2.260735161574175, 48.84772968137073], [2.260514740906614, 48.847741525480174], [2.260291452343583, 48.84775389467046], [2.260281225604519, 48.84775789658137], [2.260183991660183, 48.84785495677173], [2.260092430597747, 48.84794652894545], [2.259995195949935, 48.84804358896595], [2.2599036328617093, 48.84813516097132], [2.259812070827102, 48.84822673200817], [2.259714835134211, 48.848323791776394], [2.259705798921595, 48.84834777055074]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 205, "zemmour_eric": 199.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "16-34", "circ_bv": "14", "num_bureau": 34, "roussel_fabien": 9.0, "nb_emargement": 1361.0, "nb_procuration": 94.0, "nb_vote_blanc": 9.0, "jadot_yannick": 44.0, "le_pen_marine": 77.0, "nb_exprime": 1346.0, "nb_vote_nul": 6.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1689.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1361, "quartier_bv": "61", "geo_point_2d": [48.84939677174295, 2.2631013835353513], "melenchon_jean_luc": 98.0, "poutou_philippe": 0.0, "macron_emmanuel": 680.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.259705798921595, 48.84834777055074], [2.259714835134211, 48.848323791776394], [2.259812070827102, 48.84822673200817], [2.2599036328617093, 48.84813516097132], [2.259995195949935, 48.84804358896595], [2.260092430597747, 48.84794652894545], [2.260183991660183, 48.84785495677173], [2.260281225604519, 48.84775789658137], [2.260291452343583, 48.84775389467046], [2.260514740906614, 48.847741525480174], [2.260735161574175, 48.84772968137073], [2.260958449928243, 48.847717311352085], [2.26117887039254, 48.84770546642489], [2.261182904289645, 48.847705639731316], [2.261350371660942, 48.847729225422846], [2.2615826794913803, 48.84776254742457], [2.261750147239217, 48.84778613165599], [2.261982455579044, 48.847819452879776], [2.262149923690663, 48.84784303655041], [2.262165496440609, 48.847831031604116], [2.262099088876116, 48.84771629536886], [2.262037436290736, 48.847610206151884], [2.261971029302312, 48.84749546892348], [2.261909377238867, 48.84738937961948], [2.261915887776179, 48.84737815520513], [2.2619686782587323, 48.84736030465193], [2.262021962352392, 48.84734695215968], [2.262029753574296, 48.847335166338915], [2.261942372427792, 48.847192900447], [2.261848275096326, 48.8470447615307], [2.261858294891296, 48.84702523871506], [2.2618464683782102, 48.84701117068273], [2.2616828159824838, 48.84696055261394], [2.26154437299629, 48.84691267650558], [2.261538187444602, 48.84690827369233], [2.261463198019767, 48.846793596442474], [2.261390221890387, 48.84668120696308], [2.261315233117977, 48.84656652959714], [2.261242257625649, 48.846454140004624], [2.261167269518304, 48.84633946162325], [2.2610942960255, 48.846227071925995], [2.261021321484963, 48.84611468216447], [2.260946334339466, 48.84600000450897], [2.260873361798531, 48.84588761464272], [2.260798375305325, 48.84577293687118], [2.260725402038745, 48.84566054688336], [2.260650416197827, 48.845545868995686], [2.260577443568366, 48.845433478894705], [2.260502458392488, 48.84531879999166], [2.260498110109778, 48.84528557828538], [2.260448670726273, 48.84528709659298], [2.260302917619165, 48.845290076268235], [2.260120532395435, 48.84529353522417], [2.259920684067855, 48.845297620658016], [2.259738298792255, 48.84530107903123], [2.259538451781118, 48.84530516293567], [2.259356066453865, 48.84530862072612], [2.259173681102309, 48.84531207823854], [2.258973832629417, 48.84531616209068], [2.258828583684803, 48.84531912960302], [2.258646198261584, 48.84532258631122], [2.258591600069705, 48.84532370134307], [2.258575661417118, 48.84533124900608], [2.258585520731576, 48.84535132557973], [2.258565411513246, 48.84545624462517], [2.25854966402819, 48.8455670096108], [2.258549697137008, 48.84556889669316], [2.25857201100114, 48.845693003165046], [2.258594204095552, 48.845817943484555], [2.258616519547668, 48.84594204902955], [2.258638712854734, 48.8460669893129], [2.25863907251149, 48.84606824076525], [2.258694800173378, 48.84620772656424], [2.258751491115924, 48.84634925445727], [2.258807218003817, 48.84648874105958], [2.25886391091993, 48.846630268872126], [2.258863967425528, 48.846630415819234], [2.258910013086337, 48.84675408632438], [2.258955509050923, 48.84687426384257], [2.259001006575149, 48.846994442238255], [2.259047052882793, 48.847118112650264], [2.259092550843797, 48.847238290085514], [2.259138596208745, 48.84736196132606], [2.259184094593843, 48.84748213870022], [2.259230141753997, 48.847605809886886], [2.259226830793573, 48.84761412022988], [2.259188082513512, 48.84763872893651], [2.259131087271549, 48.847678689264946], [2.259114759925357, 48.847680463338264], [2.258940593991595, 48.84761925923172], [2.258766503216389, 48.84755969757708], [2.258592338095232, 48.847498492956966], [2.258418248121481, 48.847438930789124], [2.258244082437522, 48.847377726546256], [2.258069993265326, 48.84731816386522], [2.258063183113318, 48.84731716200661], [2.2578808802209203, 48.84732188710582], [2.257700224849986, 48.84732660865902], [2.257517923254139, 48.84733133321364], [2.257337267804763, 48.847336055118], [2.257154964780465, 48.84734077911107], [2.256974309278283, 48.84734549956808], [2.256793653743375, 48.84735021975227], [2.256611350620256, 48.84735494291695], [2.256603370932404, 48.847353488520795], [2.256433320179306, 48.847280256555145], [2.256266482309987, 48.847208038114964], [2.256096432505001, 48.84713480566089], [2.255929594218413, 48.84706258583381], [2.255759546711092, 48.84698935379908], [2.255592709357104, 48.846917133492816], [2.25542266281063, 48.846843900070425], [2.255255826376289, 48.84677168018421], [2.2550889917796892, 48.846699459169834], [2.254918945288721, 48.84662622500874], [2.254752111611752, 48.846554004414465], [2.254582066068889, 48.846480769765016], [2.254415233337268, 48.846408547792294], [2.254245188742307, 48.84633531265445], [2.254078356930406, 48.846263091101804], [2.253908313283444, 48.846189855475636], [2.253741482416799, 48.8461176325445], [2.2535714397050572, 48.84604439732926], [2.253404609770895, 48.84597217391895], [2.253234568019927, 48.84589893731605], [2.253067737642896, 48.845826714317376], [2.252897698202488, 48.84575347723464], [2.252730868770829, 48.845681252857524], [2.252599357205468, 48.845624610129796], [2.252560830265515, 48.8456080161857], [2.252554317451831, 48.8455982766885], [2.252527630649074, 48.84559954624725], [2.252341163883162, 48.84560433309508], [2.252160778556783, 48.845608080222476], [2.251974310376993, 48.84561286559067], [2.251793924994707, 48.8456166121649], [2.251613539599503, 48.845620357567896], [2.251427071312523, 48.8456251429824], [2.251246685861431, 48.84562888783219], [2.251060218872808, 48.845633672683405], [2.250879832003274, 48.845637416971556], [2.250693364950457, 48.84564220125093], [2.250685832064446, 48.84564239779937], [2.250603180291551, 48.845664640456214], [2.250541457783755, 48.84568042448469], [2.250515390411514, 48.84569072895142], [2.250902167131855, 48.84792646791205], [2.255707440657157, 48.849086456039686], [2.255771342001268, 48.8490938524231], [2.255969525672961, 48.84905631693352], [2.256162477219439, 48.84901956251443], [2.2563606589642298, 48.84898202636603], [2.256553609959775, 48.8489452713137], [2.256751792515782, 48.84890773362407], [2.256944741597737, 48.84887097793009], [2.2571429235766463, 48.848833440489365], [2.257335872107758, 48.848796684162146], [2.257534053522292, 48.848759146071046], [2.257727001502451, 48.84872238911064], [2.257925182365611, 48.84868484946989], [2.258118131157345, 48.84864809188473], [2.258316310080767, 48.848610552484445], [2.258509258321535, 48.848573794266045], [2.258707438043298, 48.848536254223816], [2.258900384370554, 48.84849949536382], [2.259098563527913, 48.84846195467123], [2.259291509304189, 48.848425195177974], [2.259484456170797, 48.8483884353808], [2.259682634497933, 48.84835089281775], [2.259705798921595, 48.84834777055074]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 160, "zemmour_eric": 188.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "16-25", "circ_bv": "14", "num_bureau": 25, "roussel_fabien": 13.0, "nb_emargement": 1239.0, "nb_procuration": 57.0, "nb_vote_blanc": 12.0, "jadot_yannick": 44.0, "le_pen_marine": 94.0, "nb_exprime": 1224.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1502.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1239, "quartier_bv": "61", "geo_point_2d": [48.84726292519021, 2.2559309929045877], "melenchon_jean_luc": 185.0, "poutou_philippe": 5.0, "macron_emmanuel": 488.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.314381881089201, 48.83176282796445], [2.314377248088142, 48.83176292102251], [2.314182325349613, 48.83180588182114], [2.314025965998256, 48.83184397572445], [2.314023739754851, 48.831844616801355], [2.313867380171329, 48.831882710496046], [2.313690073756331, 48.83194677645023], [2.313490794003964, 48.83202142846932], [2.313313485303981, 48.83208549295014], [2.313136177518566, 48.83214955807161], [2.3129368962096812, 48.83222420825499], [2.312908563204978, 48.83222967827488], [2.312907794379252, 48.832269817442906], [2.313040168643981, 48.83236124017776], [2.313169978044551, 48.83245101656196], [2.313302353229207, 48.832542438991865], [2.313432163544253, 48.83263221417767], [2.313564539648943, 48.832723636302596], [2.313694349492647, 48.83281341208083], [2.31382672787941, 48.83290483390859], [2.313956538637794, 48.83299460848843], [2.314088917944506, 48.83308603001122], [2.3142187295938, 48.83317580519129], [2.314351109820471, 48.83326722640912], [2.314480922384348, 48.83335700039077], [2.31461330353088, 48.833448421303586], [2.314743116985688, 48.83353819588548], [2.314875497690036, 48.8336296164855], [2.315005313421688, 48.833719389876784], [2.315006878836927, 48.833720316202694], [2.315038143925479, 48.83373611916654], [2.315069457882112, 48.83375369956306], [2.31508132401293, 48.833765611359354], [2.315094304692817, 48.833766210026106], [2.315214137781105, 48.83383348845203], [2.315352515483323, 48.8339113398087], [2.315503664861308, 48.83399619735469], [2.315642043427844, 48.834074048365125], [2.315793192374851, 48.83415890642448], [2.315931571805708, 48.83423675708863], [2.31595000091768, 48.834236297682075], [2.316079031437205, 48.83415181728957], [2.316206399484476, 48.834068270691596], [2.316335430522935, 48.83398379091689], [2.316462797748826, 48.83390024403337], [2.316591826593593, 48.833815763961624], [2.316719192998008, 48.83373221679254], [2.316848221011357, 48.8336477364315], [2.316975587956457, 48.83356418898462], [2.317104615150273, 48.833479707435025], [2.317231979911649, 48.83339615969483], [2.31724818958864, 48.83338851491846], [2.317244269160425, 48.83337621429562], [2.317238683848397, 48.833368291311366], [2.31723725773134, 48.833365776617185], [2.317233613533466, 48.833362653876016], [2.317077143929512, 48.83327681386128], [2.316919799969304, 48.83319036965604], [2.316763332761469, 48.83310452922532], [2.3166059884794192, 48.83301808458616], [2.31644952230555, 48.832932243731754], [2.316292179063899, 48.832845798666504], [2.316135713935588, 48.83275995648902], [2.315978373096566, 48.832673511005446], [2.315821908990312, 48.83258766930359], [2.315664567829445, 48.832501223386124], [2.315508104757042, 48.83241538126056], [2.315350764636559, 48.83232893491699], [2.315194302598, 48.832243092367676], [2.315036964880112, 48.8321566456058], [2.31488050387539, 48.832070802632835], [2.314723165835656, 48.83198435543708], [2.314566705864768, 48.831898512040425], [2.3144093688654, 48.83181206441854], [2.314381881089201, 48.83176282796445]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 42, "zemmour_eric": 85.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-22", "circ_bv": "11", "num_bureau": 22, "roussel_fabien": 22.0, "nb_emargement": 1172.0, "nb_procuration": 63.0, "nb_vote_blanc": 21.0, "jadot_yannick": 105.0, "le_pen_marine": 70.0, "nb_exprime": 1145.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1525.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1173, "quartier_bv": "56", "geo_point_2d": [48.83295355660132, 2.315112462765204], "melenchon_jean_luc": 394.0, "poutou_philippe": 8.0, "macron_emmanuel": 355.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.396700021932774, 48.83957708691555], [2.396716417133776, 48.83958222490986], [2.396867013826284, 48.83958242581317], [2.397059741682332, 48.839581989896026], [2.397261575020555, 48.83958225788085], [2.397454301510255, 48.839581821321154], [2.397656134849951, 48.839582088640206], [2.397848862698141, 48.83958165145167], [2.398050696039096, 48.839581918105075], [2.398243422520918, 48.83958148027399], [2.398445255863327, 48.839581746261686], [2.398637983703621, 48.83958130780177], [2.39883981704727, 48.8395815731237], [2.399032543521177, 48.83958113402128], [2.399234376866259, 48.83958139867754], [2.399427104698618, 48.83958095894626], [2.39962893804492, 48.83958122293679], [2.399821664510872, 48.839580782563], [2.40001439233599, 48.839580341885515], [2.400216225682972, 48.83958060488513], [2.40027266444612, 48.83959699720368], [2.400296008298719, 48.8395874820852], [2.400320442095081, 48.83952598308769], [2.400327109662069, 48.839509202066665], [2.400429243900852, 48.83941194543349], [2.400544582131387, 48.83930764273141], [2.400615670983024, 48.839239948823], [2.400646715569431, 48.83921038589503], [2.400675234775407, 48.83920920222868], [2.400673641805018, 48.83918149663111], [2.40077577474473, 48.83908424057282], [2.400875384714856, 48.83898739808148], [2.400974995677246, 48.83889055550559], [2.401077127494912, 48.83879329826539], [2.401176736349136, 48.83869645549786], [2.40127886741005, 48.838599198068515], [2.401279627675734, 48.83859836636722], [2.401380973036356, 48.83847244766075], [2.401476479890989, 48.83834925168934], [2.401577825654094, 48.83822333279485], [2.401673331587007, 48.838100136638815], [2.401768837078884, 48.83797693949366], [2.401870181401414, 48.83785102120881], [2.401965685971585, 48.83772782387904], [2.402067027971961, 48.83760190539259], [2.402162531610029, 48.83747870877746], [2.402263874023226, 48.83735278920367], [2.402265173903601, 48.837346718708886], [2.402245307968935, 48.83728438896415], [2.402225173906515, 48.83724793792213], [2.402213554776711, 48.837226829381365], [2.40213338284203, 48.8372374404826], [2.401965239837275, 48.837297303305064], [2.401795653012451, 48.83735793302016], [2.401627509231148, 48.83741779536142], [2.401457921621468, 48.83747842459118], [2.401289777063618, 48.83753828645125], [2.401120188669085, 48.83759891519563], [2.400952043334689, 48.83765877657451], [2.40078245416564, 48.83771940393426], [2.40061430804436, 48.837779265731214], [2.400444718090465, 48.837839892605636], [2.400276571192634, 48.83789975392141], [2.4001069804538933, 48.83796038031044], [2.399938832779512, 48.838020241144996], [2.399769241255926, 48.83808086704866], [2.3996010928049962, 48.83814072740202], [2.399431500496567, 48.83820135282033], [2.3994266177034023, 48.8382012167842], [2.399400785828803, 48.83821563696039], [2.399231194406057, 48.838276262097466], [2.399061537323304, 48.838338175448264], [2.398891943734621, 48.838398800990156], [2.398722285850051, 48.83846071385299], [2.398552691478357, 48.83852133800799], [2.398383032791973, 48.83858325038287], [2.39821343761672, 48.83864387494957], [2.398043778128418, 48.83870578683647], [2.397874182170268, 48.838766410016234], [2.397704521880255, 48.838828321415185], [2.397534926480739, 48.83888894501347], [2.397365264026504, 48.83895085591762], [2.3971956678442092, 48.83901147812895], [2.39702600458816, 48.83907338854512], [2.396856407602086, 48.83913401116809], [2.396686744906633, 48.839195921103176], [2.396679718179462, 48.839204083340576], [2.396684068205251, 48.83929251068416], [2.396694939716265, 48.83946516009699], [2.3966992884272442, 48.83955358741243], [2.396700021932774, 48.83957708691555]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 80, "zemmour_eric": 92.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-4", "circ_bv": "08", "num_bureau": 4, "roussel_fabien": 18.0, "nb_emargement": 1199.0, "nb_procuration": 52.0, "nb_vote_blanc": 12.0, "jadot_yannick": 99.0, "le_pen_marine": 62.0, "nb_exprime": 1179.0, "nb_vote_nul": 8.0, "arr_bv": "12", "arthaud_nathalie": 8, "nb_inscrit": 1523.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1199, "quartier_bv": "46", "geo_point_2d": [48.8387309409614, 2.399603009909581], "melenchon_jean_luc": 335.0, "poutou_philippe": 6.0, "macron_emmanuel": 416.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.340427435702178, 48.88039119213905], [2.340408356547813, 48.88037291240462], [2.340358781579144, 48.88024815898307], [2.340308846353574, 48.880128936237995], [2.340259273218887, 48.88000418275514], [2.340209338455041, 48.87988495994213], [2.340159403919817, 48.879765737095404], [2.340109831477524, 48.8796409844088], [2.340059897404015, 48.87952176149416], [2.340010324080139, 48.879397007831905], [2.33999778542483, 48.879367068233854], [2.339989156465934, 48.8793627002621], [2.339947738171272, 48.87937505269176], [2.339770815397922, 48.87941835310604], [2.339589064432217, 48.8794624845888], [2.3394121424156022, 48.87950578537642], [2.339230389477492, 48.87954991630366], [2.33905346687707, 48.879593215658495], [2.338871713329915, 48.879637346037725], [2.338694790122869, 48.879680645758334], [2.338513035966571, 48.87972477558953], [2.33833611217584, 48.87976807387737], [2.338154357410509, 48.879812203160526], [2.337977433013148, 48.87985550181415], [2.3377956790022543, 48.87989963055681], [2.337618752657557, 48.8799429277701], [2.337436998037743, 48.87998705596471], [2.337431483507638, 48.88000144535913], [2.337575597982636, 48.88010918440298], [2.337720468333693, 48.88021478882636], [2.337864583985449, 48.88032252840076], [2.338009455515955, 48.88042813245401], [2.338153572355921, 48.88053587165966], [2.338298445077314, 48.880641474443436], [2.338294861918714, 48.88065540329252], [2.338136943003188, 48.88071220906672], [2.338002582293812, 48.880759879073864], [2.337868219986304, 48.88080754802133], [2.337710300144174, 48.88086435322492], [2.337705535108172, 48.88086537548679], [2.3375257865964, 48.880880720057085], [2.337312513216204, 48.88089906872573], [2.337132764472447, 48.8809144127055], [2.336919490815807, 48.88093276067345], [2.33673974183987, 48.88094810406267], [2.336526467906797, 48.88096645132996], [2.336346718698889, 48.88098179412865], [2.336133444489392, 48.8810001406952], [2.335953695049322, 48.881015482903365], [2.335923243329977, 48.881040003379105], [2.3359537248079922, 48.88106533488551], [2.336092936571274, 48.88116092451285], [2.336230343931231, 48.88126064988637], [2.336369556712778, 48.881356240074346], [2.336506965117867, 48.881455965112686], [2.336646178940711, 48.88155155406276], [2.336783588379285, 48.88165127966521], [2.336922801868557, 48.88174686826914], [2.337060212363628, 48.88184659263714], [2.337060739884469, 48.88185828327755], [2.336972304162856, 48.88193066912207], [2.336883258695629, 48.8819998400062], [2.336794822498292, 48.882072224811026], [2.3367057765532913, 48.882141395554264], [2.336702546528236, 48.88214757765292], [2.336708466337469, 48.88224454133162], [2.336717208119548, 48.882334173994884], [2.336725948568283, 48.88242380664268], [2.336731868452488, 48.88252077029587], [2.336748768762548, 48.88255526874878], [2.33677295097983, 48.882557310193796], [2.336881467534551, 48.88252473584574], [2.337011567193136, 48.88248809093492], [2.337191657343042, 48.8824340318962], [2.337321757920298, 48.882397386652855], [2.337324003147338, 48.88239690085061], [2.337510338433968, 48.88236810214999], [2.337738432716766, 48.882330824134], [2.337800574408771, 48.88232121945394], [2.337839576141004, 48.88232283902547], [2.337854658386668, 48.88230776510576], [2.337978852838631, 48.88228856949042], [2.338169708129344, 48.88226188390591], [2.3383560424653, 48.88223308388555], [2.338546898722815, 48.88220639770601], [2.338733232663063, 48.88217759619789], [2.33892408716041, 48.882150909408146], [2.339110422045632, 48.882122108218354], [2.339301276146337, 48.882095420826], [2.339487609272295, 48.88206661814093], [2.339602101024591, 48.8820506085051], [2.339627516030271, 48.8820312331959], [2.33961954729706, 48.882006275056], [2.3396778645381913, 48.88189043363265], [2.339741400011939, 48.88176007065804], [2.33979971534291, 48.88164422914192], [2.339863250211272, 48.88151386607353], [2.339921566358925, 48.881398024479644], [2.339985100621906, 48.88126766131742], [2.340043414847929, 48.881151820530064], [2.34010694851704, 48.88102145637474], [2.340165263559851, 48.880905615509604], [2.340228796612099, 48.88077525215976], [2.3402871097561, 48.88065941030259], [2.340350642202997, 48.88052904685893], [2.340408956163783, 48.88041320492403], [2.340427435702178, 48.88039119213905]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 57, "zemmour_eric": 79.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "9-12", "circ_bv": "01", "num_bureau": 12, "roussel_fabien": 15.0, "nb_emargement": 1209.0, "nb_procuration": 71.0, "nb_vote_blanc": 9.0, "jadot_yannick": 103.0, "le_pen_marine": 47.0, "nb_exprime": 1195.0, "nb_vote_nul": 5.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1470.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "33", "geo_point_2d": [48.88100993633296, 2.338538723700853], "melenchon_jean_luc": 325.0, "poutou_philippe": 2.0, "macron_emmanuel": 518.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406268890887341, 48.851498326578785], [2.406333656395485, 48.85150201241289], [2.406493696733604, 48.851537936802586], [2.406657682031446, 48.85157474661338], [2.406817722816227, 48.85161067056738], [2.4069817072092032, 48.85164747992492], [2.406999370521679, 48.85164100131126], [2.407041719834157, 48.85152071803438], [2.407083245027509, 48.851402780649394], [2.407125593942553, 48.85128249821639], [2.407167118756149, 48.851164560777015], [2.407209467294228, 48.851044277389285], [2.40725099036555, 48.85092633988881], [2.40729333986893, 48.85080605735165], [2.407334862560611, 48.85068811979679], [2.407335103694245, 48.850687527419566], [2.407411506762071, 48.850522444138186], [2.407488121719424, 48.85035690046809], [2.407488617609029, 48.8503553560396], [2.407511545232409, 48.85023161631054], [2.407534746156472, 48.85010540380132], [2.407557673560346, 48.84998166403562], [2.4075808756241, 48.8498554514958], [2.407603802808469, 48.84973171169347], [2.407627004649212, 48.84960549911643], [2.407649931614079, 48.84948175927747], [2.407673131869135, 48.849355546656355], [2.407696058614506, 48.84923180678078], [2.407719260009241, 48.84910559412917], [2.407711974262753, 48.84909605550588], [2.407692654860071, 48.84909533751354], [2.407493734308435, 48.84909262492186], [2.407294838090429, 48.84908993100635], [2.407095917580141, 48.84908721775326], [2.406897021403342, 48.84908452317638], [2.40669809957184, 48.84908180925512], [2.406499203436256, 48.8490791140169], [2.406300283008696, 48.849076399441], [2.4061013869143393, 48.84907370354146], [2.405902466528157, 48.84907098830414], [2.405703570475036, 48.8490682917433], [2.40550464876757, 48.849065575837784], [2.405305752755695, 48.849062878615584], [2.405106832452302, 48.84906016205544], [2.404907936481683, 48.84905746417188], [2.404709016229971, 48.84905474605105], [2.404510118937951, 48.849052047499406], [2.404311198717389, 48.849049329616435], [2.404112302829318, 48.84904663041024], [2.403913382650185, 48.84904391186588], [2.403714486803401, 48.84904121199833], [2.4035155653031373, 48.84903849278577], [2.403316669497649, 48.84903579225693], [2.403117749401404, 48.84903307238973], [2.402918853637224, 48.84903037119955], [2.40271993358244, 48.84902765067096], [2.402521036496905, 48.849024948812605], [2.40232211648359, 48.84902222762262], [2.402123220802053, 48.84901952510981], [2.40192430084054, 48.849016802359074], [2.401725405200342, 48.849014099184906], [2.401526483907329, 48.849011376665246], [2.4013275883084813, 48.84900867282976], [2.40112866841964, 48.84900594965551], [2.400929772862148, 48.84900324515872], [2.400730853014815, 48.84900052132308], [2.400531957498691, 48.84899781616491], [2.400333036330311, 48.84899509166104], [2.400134140855564, 48.84899238584152], [2.399935221091283, 48.84898966068309], [2.399736325657923, 48.848986954202296], [2.399730015510725, 48.84898583432637], [2.39952531400459, 48.848911182493595], [2.399323001314658, 48.848835638445884], [2.399257129851449, 48.848829747015515], [2.399219249039969, 48.84883671026138], [2.399222271116037, 48.84896157094436], [2.399175278364531, 48.849105223361484], [2.399133235037811, 48.84923183627773], [2.399086241786784, 48.84937548952427], [2.399044198025691, 48.84950210237849], [2.398997204295874, 48.84964575465593], [2.398955160100403, 48.84977236744811], [2.3990042218457512, 48.849801894119615], [2.399011045205349, 48.849802595713506], [2.399143350125859, 48.84978546742787], [2.399347798952081, 48.849811946560195], [2.399505330017345, 48.849831914192826], [2.399709779209718, 48.84985839270554], [2.399867310554085, 48.84987835986073], [2.400071758739553, 48.84990483864627], [2.400229290363019, 48.84992480532404], [2.400230036227141, 48.84992488550791], [2.40038932270362, 48.849939091426336], [2.400593771403039, 48.84996556841913], [2.400753058103025, 48.84997977385282], [2.400957508499115, 48.85000625112929], [2.401116795422605, 48.85002045607823], [2.401119645661423, 48.85002051171508], [2.401298251984594, 48.85001755545502], [2.40149812004995, 48.85000758961347], [2.401676724944661, 48.8500046327816], [2.401876592888072, 48.849994666307694], [2.402118123377487, 48.849953648019984], [2.402317989678232, 48.84994368080146], [2.402321997955074, 48.849943405836925], [2.402378411630819, 48.849945078029506], [2.402386818607371, 48.84994613269164], [2.402407266521311, 48.84994388841438], [2.4025278766441422, 48.84994746221979], [2.402748618205667, 48.84994218432042], [2.402925642054015, 48.84994742881697], [2.402927051461713, 48.84994751949011], [2.403154542160827, 48.849972150994574], [2.403344673112242, 48.84999096132441], [2.403534804190726, 48.85000977225109], [2.403762295448858, 48.85003440259866], [2.403763664282908, 48.85003458569295], [2.403976570147553, 48.85007065914685], [2.404157474381432, 48.85010247360949], [2.4043383788363, 48.850134287797694], [2.404551285506017, 48.85017036022572], [2.404732190436972, 48.85020217381655], [2.404945097656646, 48.850238245541625], [2.4051260044263882, 48.85027005854187], [2.405338912206273, 48.85030612866464], [2.405519818089383, 48.85033794106074], [2.4055206815361583, 48.85033810813345], [2.405686831558484, 48.850374111682584], [2.405867739252599, 48.850405923557446], [2.406033889730927, 48.85044192662239], [2.406214797872432, 48.8504737379706], [2.406380948806757, 48.850509740551416], [2.406390265342123, 48.85051913193278], [2.406372794513355, 48.850641047637936], [2.406357851454862, 48.85077708668704], [2.406340380453431, 48.85089900325851], [2.406325437246593, 48.85103504137272], [2.406307967445569, 48.85115695791795], [2.406293022707165, 48.851292996889086], [2.406275552754072, 48.851414912502015], [2.406267101834236, 48.851491842377825], [2.406268890887341, 48.851498326578785]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 33, "zemmour_eric": 62.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-52", "circ_bv": "08", "num_bureau": 52, "roussel_fabien": 23.0, "nb_emargement": 1045.0, "nb_procuration": 48.0, "nb_vote_blanc": 16.0, "jadot_yannick": 81.0, "le_pen_marine": 72.0, "nb_exprime": 1025.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1331.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "80", "geo_point_2d": [48.84972783911852, 2.404002699818416], "melenchon_jean_luc": 427.0, "poutou_philippe": 10.0, "macron_emmanuel": 258.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3912698980077, 48.884338871379626], [2.391274419469236, 48.88434555566834], [2.391303601337233, 48.884357362881], [2.39147398317741, 48.884427236877634], [2.391641237096783, 48.88449490577492], [2.391811619839909, 48.88456477928236], [2.391978874650275, 48.88463244680031], [2.391983866445448, 48.88463366285592], [2.392170218546953, 48.88465318550386], [2.392356363902864, 48.88467244061131], [2.39254271628278, 48.884691962678765], [2.39272886055153, 48.88471121719952], [2.392915214583936, 48.884730737794186], [2.393101359129016, 48.884749991735184], [2.393287712065726, 48.88476951264172], [2.393473856887129, 48.88478876600287], [2.393660211465733, 48.884808286335904], [2.393846356563452, 48.88482753911726], [2.3940327114310023, 48.88484705797059], [2.39421885680503, 48.88486631017216], [2.39422457873735, 48.884867834698824], [2.394298344445791, 48.88490198561692], [2.394381146665787, 48.884939823560764], [2.394401576150872, 48.884941900912075], [2.394413789183623, 48.88493357288893], [2.394444264643132, 48.884834580117676], [2.3944738794479132, 48.88474133955344], [2.394504354670237, 48.88464234764891], [2.394533967904962, 48.884549106147325], [2.394542851836164, 48.88452989653291], [2.394519030272208, 48.88452284677158], [2.394447041911917, 48.88450674541733], [2.394363047187878, 48.884487076820236], [2.394354351442332, 48.88447649994304], [2.394391807331073, 48.88437375090175], [2.394439092008458, 48.88424158967031], [2.3944765475716, 48.8841388396813], [2.394523831810071, 48.88400667928747], [2.394561287037054, 48.88390392925001], [2.394608570857732, 48.88377176789515], [2.394637101603063, 48.88367352057552], [2.394637261716476, 48.88367300247435], [2.394641373085694, 48.88365294222733], [2.394609932331747, 48.88364773444176], [2.394458541147666, 48.88358164725162], [2.394307249695855, 48.88351581128046], [2.394155860642976, 48.88344972370653], [2.394004569967443, 48.88338388644572], [2.393853180318624, 48.88331779847429], [2.393701890398647, 48.88325196172237], [2.393550501517457, 48.88318587336028], [2.393399212363396, 48.88312003621802], [2.39324782562387, 48.88305394657294], [2.393096537235622, 48.88298810904033], [2.392945149889684, 48.88292201989696], [2.39279386226745, 48.882856181974], [2.3927683647781492, 48.88285132669784], [2.392761286252482, 48.88285460211506], [2.392746506736254, 48.88286144297142], [2.392746689983703, 48.88287695098119], [2.392641519252074, 48.88298106758325], [2.392537868677953, 48.88308353523973], [2.392432695748064, 48.883187651631886], [2.392329045704853, 48.88329011999452], [2.392223871940352, 48.88339423618371], [2.392120221075074, 48.883496704346335], [2.392015046475751, 48.883600820332504], [2.391911393424922, 48.88370328828821], [2.391806219354344, 48.883807404078304], [2.391702565481427, 48.88390987183394], [2.391597389212631, 48.88401398741411], [2.391493735891711, 48.88411645407735], [2.391388558788171, 48.88422056945457], [2.391284904634543, 48.88432303681703], [2.3912698980077, 48.884338871379626]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 25, "zemmour_eric": 75.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-22", "circ_bv": "16", "num_bureau": 22, "roussel_fabien": 7.0, "nb_emargement": 1017.0, "nb_procuration": 20.0, "nb_vote_blanc": 11.0, "jadot_yannick": 40.0, "le_pen_marine": 63.0, "nb_exprime": 1004.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1530.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1017, "quartier_bv": "75", "geo_point_2d": [48.883997177782256, 2.3931165432550894], "melenchon_jean_luc": 572.0, "poutou_philippe": 4.0, "macron_emmanuel": 186.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.370087536912407, 48.87219954216284], [2.370033861936733, 48.87209124752874], [2.369980140177952, 48.87198221785416], [2.369926465649506, 48.87187392315062], [2.369926984342264, 48.87186744705622], [2.369993232750334, 48.871770043203796], [2.370088457199226, 48.87163090965935], [2.370154705015489, 48.871533504797384], [2.370249928600558, 48.871394371094716], [2.370316175803171, 48.87129696702177], [2.370316540343522, 48.87129647160582], [2.370423718513486, 48.87116134961952], [2.370530353880745, 48.87102721394067], [2.370637530941951, 48.87089209172999], [2.370744165196549, 48.870757956727246], [2.370754703737867, 48.87075319707363], [2.3709545066145212, 48.87073825344998], [2.3711375116468423, 48.8707247087463], [2.371320516584091, 48.87071116376268], [2.371520320500423, 48.87069621920116], [2.371703325237934, 48.87068267363188], [2.371903127571919, 48.87066772842383], [2.372086132109887, 48.870654182268964], [2.372285935587985, 48.87063923642868], [2.3724689399262, 48.870625689688204], [2.372619719910713, 48.87061441097562], [2.372629320025755, 48.8706187295516], [2.3726541017629073, 48.87061286355369], [2.372704167629776, 48.870609109504045], [2.372817325252856, 48.87059970724056], [2.372838036396119, 48.87055362576561], [2.372816227606869, 48.87053824253367], [2.37263727424688, 48.8704836286264], [2.372463069309093, 48.87042926507588], [2.372284118046049, 48.870374651541724], [2.372109913852125, 48.870320286572586], [2.371930961970509, 48.87026567249788], [2.37175675850972, 48.87021130700943], [2.3717565411680273, 48.87021124201563], [2.371546204321992, 48.87014997749232], [2.371372001649682, 48.8700956114382], [2.371197799330039, 48.87004124602716], [2.370987463827584, 48.86997998051257], [2.370813262306834, 48.86992561363692], [2.370633339556102, 48.86986988629832], [2.370459138773127, 48.86981551890191], [2.370279215418303, 48.86975979101831], [2.370105016736317, 48.869705423108265], [2.369925094140616, 48.869649694686835], [2.369750894833305, 48.869595326248806], [2.369570974359833, 48.86953959729666], [2.369570416291243, 48.8695394126908], [2.369448887177207, 48.86949689570364], [2.369378556069988, 48.86946999916619], [2.369345844018825, 48.86946508549708], [2.369311422738141, 48.86949854211021], [2.369232865629284, 48.86962386564526], [2.369161799884022, 48.86973912452666], [2.3690907338242733, 48.86985438335387], [2.369012175647828, 48.869979706703724], [2.368941108928789, 48.870094965416996], [2.368862550029639, 48.870220288641384], [2.368791482651303, 48.87033554724073], [2.368712921666009, 48.87046087033243], [2.368641854991592, 48.87057612882502], [2.368563293283571, 48.870701451791255], [2.368492224586607, 48.870816710162735], [2.36841366351888, 48.870942033010635], [2.368342594162592, 48.87105729126816], [2.368264031008879, 48.87118261398339], [2.368192962356403, 48.871297872134186], [2.36811439847983, 48.87142319472391], [2.3680433278048643, 48.87153845275356], [2.367964764568578, 48.871663775224974], [2.367893693234263, 48.871779033140676], [2.367878266375323, 48.871785616662564], [2.36786651471659, 48.87181143663249], [2.367862896561962, 48.87181479723463], [2.367703403657667, 48.871907450843715], [2.367541180618435, 48.87199955740261], [2.367381687939422, 48.87209221057472], [2.367219463755795, 48.872184316682166], [2.367059968564592, 48.87227697030221], [2.366897744610867, 48.87236907506619], [2.366738248281658, 48.87246172824207], [2.366576021809521, 48.872553833446695], [2.366572731669385, 48.8725595825841], [2.366579218352713, 48.87258313546839], [2.36661866897084, 48.872613229186726], [2.366660991631282, 48.87264684639991], [2.366659621638445, 48.8726592778784], [2.36651043328648, 48.87274781414894], [2.366369292778233, 48.87283149234471], [2.3662201034394252, 48.872920028239584], [2.366078963361413, 48.87300370608718], [2.365929773025014, 48.873092242505685], [2.365788630650644, 48.87317591999069], [2.365639439338437, 48.873264455134276], [2.365498297394301, 48.8733481322711], [2.365349105084277, 48.87343666793829], [2.365207962207072, 48.87352034471974], [2.365066817513068, 48.87360402132122], [2.364917623747751, 48.873692555530845], [2.364896305809715, 48.873702074316654], [2.364734323402701, 48.8737457481084], [2.364535195909102, 48.873795083669975], [2.364373212910058, 48.87383875696939], [2.3641740833555343, 48.873888091918836], [2.364173954810807, 48.87388812361216], [2.364011972582745, 48.87393179642631], [2.363901191705267, 48.8739600854724], [2.363882854394979, 48.87396531569389], [2.3638998994298, 48.87401454688763], [2.363948680987226, 48.8740474007322], [2.363975878025068, 48.87406703385046], [2.363990577146691, 48.874069118368915], [2.364149365763113, 48.874028208470015], [2.364300134478269, 48.873989550875336], [2.364450904332949, 48.873950893096634], [2.364609692227399, 48.873909982582816], [2.364612689774289, 48.873908908498635], [2.364769904165128, 48.87383557105548], [2.364934956297263, 48.87375730345574], [2.364939975407497, 48.873750775722485], [2.364956274239875, 48.87374778556277], [2.364966542418713, 48.87374717902458], [2.365151550848763, 48.87378962335181], [2.365332124460592, 48.87383095208271], [2.365517133475148, 48.87387339674098], [2.36569770630426, 48.87391472491002], [2.365878279419923, 48.873956052805134], [2.366063290698047, 48.87399849572245], [2.366243864394197, 48.87403982306294], [2.366428874904549, 48.874082265404816], [2.366435452106738, 48.87408549735475], [2.366455298301115, 48.874104043271494], [2.366459768610854, 48.87410417485119], [2.366567737519358, 48.874202866443525], [2.366680654830799, 48.87430804133652], [2.3667886232172, 48.87440673270413], [2.366878186338262, 48.87449015393371], [2.366889524575493, 48.87449361248934], [2.36691027211367, 48.87448469199421], [2.3670952628182, 48.874435587138564], [2.367278466101241, 48.874386790913675], [2.367463456110939, 48.87433768548469], [2.367646660067914, 48.87428888869917], [2.367831649382774, 48.874239782696854], [2.368014851287126, 48.87419098533633], [2.368198054211532, 48.87414218770048], [2.368383042485518, 48.87409308083953], [2.368566244720618, 48.87404428263584], [2.368751232288857, 48.87399517610082], [2.3689344324823303, 48.87394637642285], [2.369119419355724, 48.87389726931451], [2.3693026202122063, 48.87384846997522], [2.36948760640164, 48.87379936139426], [2.36967080520549, 48.87375056147995], [2.369855790700064, 48.87370145232572], [2.370038990178008, 48.873652651850776], [2.370223974977718, 48.873603542123185], [2.370243044122336, 48.87360334656603], [2.3702505851908793, 48.87359159864639], [2.370343035313723, 48.87350579192347], [2.370436823940151, 48.873419986767814], [2.3704392653993143, 48.873413472228975], [2.37040764243877, 48.873265459583536], [2.370375906522074, 48.8731181217162], [2.370344283920883, 48.87297010901444], [2.370312548363256, 48.87282277109091], [2.3702809247581262, 48.872674758325616], [2.370249189559768, 48.87252742034589], [2.370248655836518, 48.87252589586044], [2.370194934543032, 48.87241686633235], [2.370087536912407, 48.87219954216284]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 26, "zemmour_eric": 47.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-11", "circ_bv": "05", "num_bureau": 11, "roussel_fabien": 18.0, "nb_emargement": 1278.0, "nb_procuration": 135.0, "nb_vote_blanc": 9.0, "jadot_yannick": 135.0, "le_pen_marine": 57.0, "nb_exprime": 1264.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1617.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "40", "geo_point_2d": [48.87223558914454, 2.3686799824295877], "melenchon_jean_luc": 534.0, "poutou_philippe": 7.0, "macron_emmanuel": 391.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.400112628115851, 48.870937832251116], [2.4001051340848543, 48.87094919376665], [2.400162090520479, 48.8710695503422], [2.400214465278979, 48.87117935810133], [2.400214080093646, 48.87118545995792], [2.400143006611042, 48.87130019259239], [2.400071541655783, 48.871415980830015], [2.400000466181423, 48.871530713349074], [2.399929000593144, 48.87164650147741], [2.399857924490169, 48.871761233887895], [2.399786458268757, 48.87187702190699], [2.399715381537364, 48.87199175420887], [2.399643916045986, 48.872107542125526], [2.399572838686067, 48.87222227431885], [2.399501371198272, 48.87233806211936], [2.399430293209816, 48.87245279420408], [2.3993588250889673, 48.872568581895344], [2.399287746471864, 48.87268331387146], [2.399216277717853, 48.87279910145342], [2.399223638609975, 48.8728107883674], [2.399415211504814, 48.87286371141633], [2.399602440311604, 48.872915524171425], [2.399794013966164, 48.87296844750833], [2.399981243526232, 48.87302025966607], [2.40017281931418, 48.873073182398535], [2.400360049627523, 48.87312499395888], [2.400547278950039, 48.87317680521708], [2.400738855888869, 48.87322972703616], [2.400764764769395, 48.87323450269592], [2.4007683470818693, 48.87323289553382], [2.400803244416252, 48.8731451289167], [2.400835412387392, 48.87306267897042], [2.400854021838266, 48.873056664744894], [2.401046326878271, 48.87311146573207], [2.401235983308991, 48.87316780900357], [2.401254145560754, 48.87316310011009], [2.401336538161205, 48.873034093641394], [2.401418109652442, 48.8729065075411], [2.401500501430588, 48.87277750182883], [2.401582072128705, 48.872649914687905], [2.401664463094891, 48.8725209088328], [2.401746032989664, 48.87239332155046], [2.401828424507081, 48.87226431555934], [2.401909993598417, 48.872136728135644], [2.4019923829406142, 48.87200772199488], [2.402073951228528, 48.87188013442981], [2.4021563397588, 48.87175112814621], [2.402237907232983, 48.87162354133905], [2.402255287799471, 48.87160397138095], [2.402241402978243, 48.87159441856048], [2.402104100519159, 48.87158825136619], [2.401978359623689, 48.87158226858344], [2.401973779409343, 48.87158151004461], [2.401958901747922, 48.87157341724645], [2.40194323862358, 48.871575553150315], [2.401771344544771, 48.8715248962264], [2.4016118708717142, 48.871478249222875], [2.401439978799424, 48.87142759182546], [2.401280505721018, 48.87138094437634], [2.401121031564983, 48.871334296705946], [2.400949140455425, 48.871283637697815], [2.400943291568769, 48.87127050511669], [2.400974884638088, 48.871238637013654], [2.401007487336615, 48.87120871292003], [2.40100206724552, 48.87119528031019], [2.400838380395797, 48.8711461029245], [2.40063057001833, 48.87108441046578], [2.400466885230884, 48.87103523257391], [2.400259075746173, 48.87097353856476], [2.400130251928209, 48.870934834956486], [2.400112628115851, 48.870937832251116]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 36, "zemmour_eric": 74.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-18", "circ_bv": "15", "num_bureau": 18, "roussel_fabien": 26.0, "nb_emargement": 1003.0, "nb_procuration": 22.0, "nb_vote_blanc": 19.0, "jadot_yannick": 48.0, "le_pen_marine": 77.0, "nb_exprime": 973.0, "nb_vote_nul": 11.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1448.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1003, "quartier_bv": "78", "geo_point_2d": [48.87217062745521, 2.4007027494582114], "melenchon_jean_luc": 465.0, "poutou_philippe": 10.0, "macron_emmanuel": 186.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.328043110286374, 48.84994521109158], [2.328027562696538, 48.8499553449851], [2.328027433661219, 48.849955523232815], [2.327949479681016, 48.85006657710261], [2.327876004021335, 48.850173569384054], [2.32780252804834, 48.85028056250938], [2.327724573102711, 48.85039161620023], [2.327723850139714, 48.850397902251444], [2.327738978670912, 48.85043230857446], [2.327752795595413, 48.85046465159155], [2.327751968549465, 48.850470977528865], [2.327662928506219, 48.850593639853194], [2.327575471092831, 48.85071401763094], [2.32748643020725, 48.850836680696425], [2.327398971978349, 48.850957058318876], [2.327311513345381, 48.851077435864376], [2.327222471229002, 48.85120009779404], [2.327135011780404, 48.851320475184224], [2.327045968821757, 48.851443137855064], [2.326997863212865, 48.85147934073317], [2.3270100254188932, 48.85148900438979], [2.327093801110157, 48.85155009138009], [2.327199805149394, 48.85161723726262], [2.327205676423599, 48.85161942963471], [2.327410001563389, 48.851655972604135], [2.327599426639423, 48.85168645076108], [2.327788851936937, 48.8517169286173], [2.327993177867982, 48.85175347058765], [2.328182603627924, 48.851783948717944], [2.328386930097876, 48.85182049001372], [2.328474134006973, 48.851834520193115], [2.328537697641594, 48.85187993382068], [2.328587775915583, 48.85186890182848], [2.328689996992512, 48.85188534814966], [2.328891217869215, 48.85191832948393], [2.329080644765158, 48.85194880528872], [2.329281864759834, 48.851981786855795], [2.32947129211502, 48.85201226204036], [2.329472633806359, 48.85201252677542], [2.329646483406598, 48.852053355016494], [2.329868400574, 48.85210186022808], [2.330042250782465, 48.852142687890876], [2.330178994673584, 48.85217257645231], [2.330233747447804, 48.8521845440133], [2.330234678669115, 48.85218472370116], [2.33043070896835, 48.85221794317751], [2.330607118371434, 48.85224749740489], [2.3308031477815, 48.85228071626155], [2.330979557608323, 48.85231026993819], [2.331175588854704, 48.852343488190435], [2.331351997742515, 48.85237304130865], [2.331489518403034, 48.85239634491282], [2.331665927659359, 48.85242589666755], [2.331674462690996, 48.852425498260274], [2.331732973818442, 48.8524354122056], [2.331778767337139, 48.8524229888308], [2.331920393034483, 48.85241972718718], [2.331927934625457, 48.85240167874009], [2.332002346906981, 48.85233082199166], [2.331990757748815, 48.85220695276146], [2.33197570850718, 48.85206447629276], [2.3319641194831, 48.851940606131045], [2.331952530502587, 48.85181673685368], [2.331937482852426, 48.85167425943847], [2.331925892631737, 48.851550390121304], [2.331910845119791, 48.85140791356792], [2.331920725800906, 48.85139863520857], [2.331973845506012, 48.851388705206915], [2.332023131726026, 48.85138057587805], [2.332033339173211, 48.85137068147513], [2.3320055586561272, 48.85123087686653], [2.331976817809088, 48.8510984910679], [2.331949036226037, 48.85095868640439], [2.331920297023895, 48.850826301466675], [2.331892515749018, 48.85068649585656], [2.331863776840677, 48.85055411087287], [2.331835995851015, 48.850414306114715], [2.331807257247799, 48.8502819201858], [2.331808711733919, 48.850256806535384], [2.33180112400291, 48.85024924822303], [2.33177606926944, 48.85024629150517], [2.331728380919713, 48.85026018465289], [2.331545354415013, 48.85026017671491], [2.331364963500173, 48.85026016883611], [2.331184571222694, 48.85026016067771], [2.331001546080861, 48.85026015191549], [2.330821153803399, 48.850260143209184], [2.330638127299099, 48.85026013388345], [2.330457736384457, 48.85026012463684], [2.330274709880188, 48.85026011475518], [2.330094318965781, 48.850260104960675], [2.329911292461654, 48.850260094523136], [2.329899347825847, 48.850255429206086], [2.329832858756594, 48.85017550045394], [2.329765042876471, 48.85009544101329], [2.329754813723814, 48.850090904005995], [2.329543700988578, 48.85007375397418], [2.329331922246667, 48.850056160948576], [2.329120809791362, 48.85003901017004], [2.32890903132184, 48.85002141729466], [2.328697919146473, 48.850004265769435], [2.328486140972512, 48.84998667124568], [2.328275029077097, 48.84996951897378], [2.328063251175534, 48.84995192460028], [2.328043110286374, 48.84994521109158]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 108, "zemmour_eric": 108.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "6-11", "circ_bv": "11", "num_bureau": 11, "roussel_fabien": 10.0, "nb_emargement": 1008.0, "nb_procuration": 69.0, "nb_vote_blanc": 6.0, "jadot_yannick": 50.0, "le_pen_marine": 38.0, "nb_exprime": 998.0, "nb_vote_nul": 4.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1282.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1008, "quartier_bv": "23", "geo_point_2d": [48.8511440683992, 2.329785748385855], "melenchon_jean_luc": 177.0, "poutou_philippe": 0.0, "macron_emmanuel": 472.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358904825827535, 48.85862198387922], [2.358911101317017, 48.85861985366547], [2.358915492101666, 48.85861836358391], [2.358930020878814, 48.85860689377725], [2.359050023865745, 48.85853394826139], [2.359228252136322, 48.85841175398575], [2.359348252893466, 48.85833880815068], [2.359349495994695, 48.85833813759599], [2.359483607874494, 48.858271462783726], [2.35964922477755, 48.85819234573741], [2.359791592441702, 48.85812414448938], [2.359957208419967, 48.85804502610705], [2.360099573904493, 48.857976825375594], [2.3602651889468182, 48.85789770655651], [2.360407553636719, 48.85782950455029], [2.360573167743002, 48.857750385294516], [2.360715532979092, 48.8576821838194], [2.360716174387899, 48.85768189495744], [2.36088614272282, 48.85761006616822], [2.36106222610666, 48.857538797704656], [2.361232193497718, 48.857466968414705], [2.361408275913603, 48.85739570033205], [2.361578242360807, 48.8573238705413], [2.361754322456889, 48.85725260193302], [2.361755862656182, 48.85725203996018], [2.361934440015824, 48.85719650683736], [2.362125194764575, 48.857136308679856], [2.362303769960046, 48.85708077589221], [2.362494523858294, 48.85702057713968], [2.36267309963736, 48.856965042902985], [2.362863852685304, 48.85690484355551], [2.363042426300211, 48.856849309653924], [2.363233178497647, 48.856789109711464], [2.36341175133336, 48.856733574353655], [2.363602502680385, 48.856673373816136], [2.363781076077585, 48.856617838807956], [2.363971826574198, 48.856557637675515], [2.36415039782932, 48.85650210120386], [2.364275939344624, 48.85646248004303], [2.3642890652829323, 48.8564437461629], [2.364274965880836, 48.8564232991776], [2.3641967858428092, 48.85631059812844], [2.364112643904801, 48.85619483811976], [2.364034465934487, 48.85608213604933], [2.36395032472603, 48.85596637590266], [2.363872146075762, 48.8558536745951], [2.36378800695969, 48.85573791431773], [2.363709829003287, 48.855625212880895], [2.3636256892539063, 48.85550945245837], [2.363547513365079, 48.85539675000027], [2.36346337434522, 48.85528098943976], [2.363385197776527, 48.85516828774452], [2.363316236342531, 48.855073407100335], [2.363304623255204, 48.85506023816122], [2.363260926971485, 48.855073900626394], [2.363102858599471, 48.855119314830475], [2.362895949492833, 48.855178761281316], [2.362737880473613, 48.85522417589826], [2.362530971896916, 48.85528362171967], [2.362372902241487, 48.855329035850176], [2.36216599146928, 48.85538848102762], [2.36200792117764, 48.85543389467175], [2.3619909369251513, 48.85543042795038], [2.361907256018583, 48.855342418208], [2.361823605001829, 48.85525443913594], [2.361739924660526, 48.85516642926261], [2.36165627285713, 48.855078449153126], [2.361639406341467, 48.855074950631405], [2.361506450005328, 48.855112176800006], [2.361383640956398, 48.855146561964595], [2.3612608317452812, 48.855180947002125], [2.361127876231042, 48.855218172753794], [2.361119698161258, 48.85522767840351], [2.361143302229409, 48.85534082771738], [2.361168461458888, 48.85546142565011], [2.361164373253614, 48.8554659428499], [2.361172285830924, 48.85547976135564], [2.361197445194672, 48.85560035926725], [2.36122196619099, 48.85571789685781], [2.36124648593509, 48.855835434423675], [2.36127164563129, 48.85595603318031], [2.36129616559952, 48.85607357071074], [2.361321325536613, 48.85619416853183], [2.36131623547932, 48.856202471149714], [2.36116973504806, 48.856278300305064], [2.361024535868678, 48.85635345541834], [2.360878034599418, 48.85642928330696], [2.360732833204658, 48.856504438948065], [2.360586331086369, 48.85658026646927], [2.360441130224011, 48.85665542085419], [2.360294627245651, 48.85673124890725], [2.360149425541798, 48.856806402927994], [2.360002921714399, 48.85688223061361], [2.359857717806177, 48.856957384262905], [2.359857008958942, 48.85695772672069], [2.359717578465434, 48.85702075726456], [2.35957791738196, 48.85708389163403], [2.359438484850339, 48.85714692183822], [2.359298823090514, 48.85721005587477], [2.359297266063585, 48.85721087583952], [2.35916779195711, 48.85728997017122], [2.3590188225049, 48.85738097344974], [2.358889347553062, 48.85746006746806], [2.358779636448073, 48.85752708735463], [2.358777466949073, 48.857528168439394], [2.358639133825318, 48.857583755174936], [2.358492761421746, 48.857642573184336], [2.358354429053303, 48.85769815959234], [2.35820805465523, 48.857756976340845], [2.358069721679314, 48.857812562414004], [2.357923348001251, 48.857871378815524], [2.357920838853991, 48.8578796681479], [2.357941008087809, 48.85789204799225], [2.358021179685417, 48.85790261199483], [2.358089759023463, 48.85791164961936], [2.358097737849021, 48.85791485543171], [2.358202838094094, 48.85800165958305], [2.358306227836615, 48.85808705147602], [2.3584113287763833, 48.85817385543078], [2.358514719202296, 48.858259247130356], [2.358515320493758, 48.8582597827684], [2.358600713609763, 48.85834214872685], [2.358687363748638, 48.85842572558187], [2.358772757408689, 48.85850809140525], [2.358859408110577, 48.85859166722387], [2.358904825827535, 48.85862198387922]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 32, "zemmour_eric": 65.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "4-3", "circ_bv": "07", "num_bureau": 3, "roussel_fabien": 16.0, "nb_emargement": 1079.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 113.0, "le_pen_marine": 43.0, "nb_exprime": 1063.0, "nb_vote_nul": 3.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1418.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1078, "quartier_bv": "14", "geo_point_2d": [48.85669914039026, 2.361401520519799], "melenchon_jean_luc": 293.0, "poutou_philippe": 3.0, "macron_emmanuel": 449.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.392256531574369, 48.85042268658379], [2.392251896871307, 48.850414502316916], [2.392279493293555, 48.8503181770325], [2.392301163082659, 48.85024182503447], [2.392310024139475, 48.85023501337554], [2.392508553520565, 48.85018884870055], [2.392705973739471, 48.85014217532802], [2.392714718123658, 48.8501355465146], [2.392756209935305, 48.85000433828145], [2.392796436521811, 48.849876554629944], [2.392837927921495, 48.84974534633787], [2.392878154107697, 48.84961756262914], [2.39291837873394, 48.849489778885314], [2.392959870881327, 48.84935857051229], [2.393000095107282, 48.849230786711246], [2.393041585480041, 48.849099578272465], [2.393081810668385, 48.84897179442114], [2.393123300629202, 48.84884058592351], [2.393107244512517, 48.84880119732447], [2.393104451409061, 48.848800805427786], [2.393067670965062, 48.84880623801435], [2.392867770424385, 48.84883701324118], [2.392677045282766, 48.84886517981768], [2.3924863212976453, 48.84889334609632], [2.392286420079618, 48.848924120349466], [2.392095694304889, 48.84895228599701], [2.391895792630097, 48.84898305959585], [2.391705067791306, 48.84901122462614], [2.391505165659758, 48.84904199757072], [2.391314439031373, 48.849070161969905], [2.391114536443075, 48.849100934260186], [2.390923809387975, 48.84912909803517], [2.390723906342937, 48.84915986967119], [2.3905331802236, 48.84918803282892], [2.39033327672183, 48.84921880381065], [2.390142548813121, 48.84924696633724], [2.389942644854627, 48.84927773666469], [2.389751917881699, 48.84930589857406], [2.389626288403877, 48.849325235077], [2.389598430849504, 48.849328419666065], [2.389583223416663, 48.84933789951129], [2.389508948462314, 48.84934933175534], [2.38931208496994, 48.84937920459974], [2.389112180013729, 48.849409973535955], [2.388915316064828, 48.84943984572589], [2.388715410641731, 48.84947061399751], [2.388518546246865, 48.8495004846337], [2.388318640356893, 48.84953125224074], [2.388121775494967, 48.84956112312176], [2.387921869138125, 48.84959189006421], [2.387725003819699, 48.84962176029078], [2.387525096996098, 48.849652526568605], [2.38745927349919, 48.84966251417357], [2.387447490984741, 48.84966624282742], [2.38746280114171, 48.84971240858314], [2.387458165743204, 48.84986376043085], [2.38745094429053, 48.85001912902036], [2.387446308830303, 48.85017048082591], [2.387439087299774, 48.85032584937186], [2.3874522585185263, 48.8503351135884], [2.387635097231148, 48.85033909112581], [2.387817455411369, 48.85034233025424], [2.388000294187744, 48.85034630633428], [2.388182652415912, 48.850349544906095], [2.388195914162448, 48.85035853879758], [2.388195885581274, 48.850401946819915], [2.3881968362230213, 48.85043101337053], [2.388196434906515, 48.85045126654399], [2.388219056231045, 48.85045561097073], [2.388270311205886, 48.85045607539118], [2.388484070454437, 48.85045840381347], [2.388686471417139, 48.850460237635424], [2.3889002307012532, 48.85046256531428], [2.389102633057466, 48.85046439843917], [2.389316391014626, 48.85046672536756], [2.389518793401634, 48.850468557788474], [2.389732551394433, 48.85047088397335], [2.389934953812222, 48.85047271569026], [2.390137354881532, 48.85047454705785], [2.390351114289109, 48.85047687214458], [2.390553516741373, 48.85047870371443], [2.390767274821957, 48.85048102805071], [2.390779748012212, 48.8504932849851], [2.390715003424726, 48.850602923637176], [2.3906421430977423, 48.850726793635495], [2.390577399293336, 48.85083643219704], [2.390504538323289, 48.85096030118627], [2.390439792566005, 48.851069940542715], [2.390392011681524, 48.85115116942068], [2.390393857919806, 48.8511544596637], [2.3904183731919453, 48.85116143582968], [2.390586220404523, 48.85118940631607], [2.390747360923266, 48.85121649612487], [2.390908502972275, 48.85124358572292], [2.391076350712635, 48.8512715555197], [2.3910888662394543, 48.851269482353246], [2.391227924976046, 48.85118584333609], [2.391364048662132, 48.85110376668674], [2.3915031065148282, 48.85102012733731], [2.391639229324105, 48.850938051261934], [2.39177828629291, 48.850854411580215], [2.391914408246382, 48.85077233428028], [2.392050529771156, 48.8506902568194], [2.392189585418472, 48.85060661664106], [2.392193764602142, 48.85060174629356], [2.392218808268831, 48.85051971856679], [2.392245105317157, 48.85043456025413], [2.392256531574369, 48.85042268658379]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 62, "zemmour_eric": 78.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-50", "circ_bv": "06", "num_bureau": 50, "roussel_fabien": 26.0, "nb_emargement": 1470.0, "nb_procuration": 93.0, "nb_vote_blanc": 17.0, "jadot_yannick": 159.0, "le_pen_marine": 40.0, "nb_exprime": 1449.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 6, "nb_inscrit": 1792.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1471, "quartier_bv": "44", "geo_point_2d": [48.84992413882976, 2.3905706630872965], "melenchon_jean_luc": 523.0, "poutou_philippe": 7.0, "macron_emmanuel": 465.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332294626482992, 48.88285878300268], [2.332270152442125, 48.88283834589401], [2.332213054488882, 48.88272736106289], [2.33215308298593, 48.88261057925735], [2.3320959855320043, 48.882499594347465], [2.332036014553764, 48.882382812459085], [2.33197891759905, 48.88227182747039], [2.331934419308832, 48.88218517672929], [2.331918945782189, 48.88215504549162], [2.33190304457878, 48.88214794196641], [2.331882156981266, 48.882162072626826], [2.331743565944739, 48.88226652011236], [2.331608615216511, 48.88236714041082], [2.331470023085529, 48.88247158756022], [2.33133507266092, 48.88257220753919], [2.331196479435577, 48.882676654352494], [2.331061526587503, 48.88277727399678], [2.331053333071791, 48.88278020950197], [2.330879698506671, 48.88279735895304], [2.330657506307325, 48.882818143390075], [2.330483872849027, 48.88283529227417], [2.330261680329864, 48.8828560759759], [2.330088045239534, 48.88287322517699], [2.329865852400556, 48.882894008143424], [2.329692218428633, 48.88291115587826], [2.3296803727722972, 48.88290849678315], [2.329550764191936, 48.882819656310616], [2.329422077353358, 48.88273085502544], [2.329292468292303, 48.8826420142513], [2.329163782344617, 48.882553211774926], [2.329034175529845, 48.88246437071449], [2.328905490461564, 48.8823755679461], [2.328775883165998, 48.882286726584084], [2.328647198965626, 48.882197924423025], [2.32851759391622, 48.88210908277469], [2.328388910606832, 48.882020279422456], [2.328259306440148, 48.881931437480176], [2.328130622635025, 48.881842634727576], [2.3281219242570153, 48.88183988701478], [2.327959523439533, 48.881830749317814], [2.327724724569394, 48.881819030298956], [2.327562322523027, 48.8818098920554], [2.327327523836311, 48.88179817225735], [2.327165123299927, 48.88178903258323], [2.327110089853369, 48.881784717654924], [2.327099783464843, 48.88179698598715], [2.327101685117582, 48.88183924194574], [2.32710813878571, 48.88197370781267], [2.327113951609825, 48.882102790251984], [2.327120405353905, 48.88223725518677], [2.327126216862688, 48.88236633848621], [2.327132670671098, 48.88250080338812], [2.327138482239693, 48.88262988665602], [2.327144936112433, 48.88276435152506], [2.327150747752461, 48.88289343386218], [2.327156559409679, 48.88302251708311], [2.327163013377755, 48.883156981903234], [2.327168826469863, 48.88328606420106], [2.327175279127196, 48.883420529879885], [2.327160532976679, 48.88345375825674], [2.327202902833591, 48.883470413660056], [2.327297372532305, 48.88348807496117], [2.327427150498351, 48.88351327128687], [2.327435317309578, 48.883521403054964], [2.32748041071501, 48.883528432822985], [2.327610187506627, 48.883553628941705], [2.327799178962469, 48.883588453782046], [2.327800954258062, 48.88358888913319], [2.328012538033067, 48.88365209297344], [2.328141332364619, 48.8836969351863], [2.328145330266779, 48.88369875538433], [2.328272107157977, 48.88378203704371], [2.328404396728978, 48.88386761309986], [2.328531174433864, 48.88395089537136], [2.328663463495965, 48.88403647112049], [2.328790243401516, 48.8841197522133], [2.328922533306706, 48.884205328562295], [2.329049314037557, 48.88428860936801], [2.32918160480902, 48.884374184518364], [2.329308386353795, 48.88445746593618], [2.329440677979947, 48.884543040787136], [2.3294547995870643, 48.88454509300779], [2.329634516068658, 48.884502908129875], [2.32982595801233, 48.88445704470202], [2.330005675264553, 48.884414858372], [2.33019711519406, 48.884368994339376], [2.330376831830173, 48.88432680834815], [2.330568272472687, 48.88428094372601], [2.330747988515814, 48.884238756275025], [2.330939427144158, 48.884192891048194], [2.331119142571179, 48.88415070393599], [2.331310580548934, 48.88410483811201], [2.331490295371403, 48.88406265043933], [2.331681734073686, 48.88401678312658], [2.331861448291595, 48.88397459489343], [2.332052884968258, 48.883928727875265], [2.332232598581505, 48.88388653908163], [2.332424034619093, 48.88384067056707], [2.33255428527524, 48.883810092839916], [2.332591836155218, 48.883798802425744], [2.332564926137025, 48.88375229460454], [2.332529154270813, 48.883638941359564], [2.332485318591348, 48.88349522308314], [2.332449547075, 48.883381869787875], [2.332405711831619, 48.88323815144874], [2.332369940653602, 48.88312479900245], [2.3323261058462, 48.88298108060055], [2.332290335029563, 48.88286772720476], [2.332294626482992, 48.88285878300268]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 77, "zemmour_eric": 87.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "9-15", "circ_bv": "01", "num_bureau": 15, "roussel_fabien": 24.0, "nb_emargement": 1241.0, "nb_procuration": 96.0, "nb_vote_blanc": 13.0, "jadot_yannick": 99.0, "le_pen_marine": 53.0, "nb_exprime": 1228.0, "nb_vote_nul": 1.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1488.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1242, "quartier_bv": "33", "geo_point_2d": [48.88322403597243, 2.3296594555186805], "melenchon_jean_luc": 270.0, "poutou_philippe": 1.0, "macron_emmanuel": 555.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.362462423908621, 48.827607135411554], [2.362421776450487, 48.827608381097455], [2.362377691254082, 48.82759689849328], [2.362193571082101, 48.82755299048569], [2.3620124828437072, 48.827509796279756], [2.3618283632869153, 48.827465887706516], [2.361647275653647, 48.82742269294421], [2.361463156712051, 48.8273787838053], [2.36128207104591, 48.82733558849397], [2.361097952719614, 48.82729167878942], [2.360916866296509, 48.82724848291444], [2.360732748585316, 48.82720457264423], [2.360551662767452, 48.82716137621296], [2.360367545671468, 48.827117465377114], [2.360186460458748, 48.827074268389445], [2.360002343977979, 48.827030356987954], [2.359821259370306, 48.826987159444], [2.359637144866946, 48.82694324748415], [2.359456060864426, 48.82690004938386], [2.359388070714937, 48.82687374454262], [2.359385569279532, 48.826875006456106], [2.359363620451465, 48.826902645374], [2.3592736164656403, 48.82702309667431], [2.359179431209715, 48.827141695264594], [2.359089425034622, 48.827262145494], [2.358995238927836, 48.82738074391393], [2.358905233265544, 48.82750119488568], [2.35881104630779, 48.827619793135305], [2.358721039818413, 48.827740243043436], [2.35862685200978, 48.82785884112273], [2.358536844670982, 48.82797929176586], [2.358442654649445, 48.82809788966751], [2.358352646483441, 48.82821833924706], [2.35825845697312, 48.828336936985664], [2.358258053051153, 48.82833743756797], [2.358190531352456, 48.8284150499977], [2.358096341117851, 48.82853364758781], [2.358028818924289, 48.82861125991268], [2.357987598504449, 48.82866316091125], [2.357984679924485, 48.82867218124552], [2.358073763057303, 48.82869757027003], [2.358227534345509, 48.828771439022695], [2.358378052445992, 48.82884414521549], [2.358531824597681, 48.82891801356722], [2.3586823435346522, 48.828990720266845], [2.358832861540475, 48.82906342586571], [2.358986634983272, 48.829137293618274], [2.359137155198793, 48.82920999883196], [2.35929092950518, 48.82928386618359], [2.359441450568156, 48.82935657100483], [2.359595224375883, 48.82943043794825], [2.359745746275374, 48.829503143276334], [2.359899522308747, 48.82957700982611], [2.36005004506685, 48.829649713862416], [2.360203820601559, 48.82972358000403], [2.3602068337172533, 48.82973613336975], [2.360083084915602, 48.829848768798186], [2.359963001049144, 48.829957989002], [2.359839249831881, 48.830070624148505], [2.3597191649325993, 48.83017984498517], [2.359595414024046, 48.83029247986444], [2.359475328113919, 48.830401699535344], [2.3593515761518002, 48.83051433414], [2.359231489208721, 48.83062355444374], [2.359230626870176, 48.8306244437989], [2.35914107239658, 48.83073005471826], [2.359035859533091, 48.83085673665826], [2.358946302914743, 48.830962346503306], [2.358841090471435, 48.83108902825301], [2.3587515330483972, 48.83119463882963], [2.358646318300764, 48.83132132037445], [2.358556761446186, 48.83142693079059], [2.358451545767481, 48.831553611238505], [2.35836198811936, 48.831659221486966], [2.358336337433609, 48.83168005629929], [2.358349630717166, 48.831686351262064], [2.35847414443018, 48.83172819058824], [2.358646662928193, 48.83178759290077], [2.358698865013122, 48.83180513353694], [2.358875581482928, 48.83186451395253], [2.359048100889517, 48.83192391567882], [2.359224818159785, 48.83198329557209], [2.359397338357518, 48.83204269678832], [2.359574056439193, 48.832102075259975], [2.359746577427963, 48.832161475966195], [2.359923296299148, 48.832220854814864], [2.360095819441085, 48.83228025501829], [2.360272537750498, 48.83233963333742], [2.360445061683476, 48.83239903303075], [2.360621780804375, 48.832458409928236], [2.360794305528389, 48.832517809111565], [2.360859661023165, 48.83253976843331], [2.360864762230554, 48.83253859593376], [2.360868413116283, 48.832483713414284], [2.361010958629888, 48.83237302604282], [2.361151983271342, 48.83226433506592], [2.361147962174313, 48.83225051905106], [2.360980794530537, 48.83219267071727], [2.360810706352441, 48.83213350155084], [2.360643539469188, 48.83207565184036], [2.360473452055691, 48.832016482188116], [2.360306285921943, 48.83195863200024], [2.360136200635262, 48.831899461869504], [2.360131802465792, 48.831885980161616], [2.360256794247331, 48.831780010449556], [2.360361362192512, 48.831690476193195], [2.360465928416394, 48.831600941830985], [2.360590920186487, 48.83149497264941], [2.360696220574034, 48.831405937552674], [2.360821210046247, 48.831299968104695], [2.360926510997763, 48.83121093369627], [2.361051499534315, 48.83110496398921], [2.361156798347458, 48.831015928455955], [2.361201562783851, 48.83097797576739], [2.361226093109646, 48.830965181923474], [2.361227030550519, 48.830959050521926], [2.361307253652673, 48.83089103322609], [2.361395480551747, 48.83080983245854], [2.361520467173345, 48.83070386222341], [2.361608693434563, 48.83062266038574], [2.361610266941991, 48.830621539174444], [2.361729943623419, 48.83054953390116], [2.361856547326528, 48.830475498710584], [2.361976223332533, 48.83040349318151], [2.362102826331224, 48.83032945772061], [2.362104660370973, 48.830328529458306], [2.362247502296708, 48.830268188842375], [2.362387410182214, 48.83020913919898], [2.362530251464549, 48.8301487973396], [2.362670158709477, 48.830089747359146], [2.362813000688584, 48.83002940606222], [2.362952907292732, 48.82997035574472], [2.362957445514042, 48.82996718355102], [2.36305121518287, 48.82985700180639], [2.363145080983355, 48.82974471686081], [2.363238849855374, 48.82963453494724], [2.363332714862156, 48.82952224893279], [2.363426482926594, 48.82941206774953], [2.363520347128697, 48.82929978156553], [2.363614114407324, 48.82918959931403], [2.363707977793779, 48.82907731385981], [2.363801745637868, 48.82896713144656], [2.363895606857625, 48.8288548458156], [2.363902290395071, 48.82885133873582], [2.363900974868207, 48.82882965056699], [2.36399483699973, 48.82871736395228], [2.364086698079134, 48.828613306666796], [2.364180559410272, 48.82850102078397], [2.364272419737782, 48.82839696333573], [2.36436427968763, 48.82829290670657], [2.364458138492919, 48.8281806196673], [2.364484826763571, 48.82816662604605], [2.364475621229991, 48.82814728467872], [2.36446869016812, 48.82814328341058], [2.364269713549272, 48.828091741359856], [2.36409520270794, 48.82804629370855], [2.36392069352191, 48.82800084670727], [2.363721716626344, 48.827949303731096], [2.36354720673941, 48.82790385527437], [2.363348231945487, 48.82785231167956], [2.363173722708801, 48.82780686267395], [2.362974747281207, 48.82775531934537], [2.362800240056881, 48.827709869798085], [2.362601265379608, 48.82765832494437], [2.362470844026359, 48.82762435743416], [2.362462423908621, 48.827607135411554]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 43, "zemmour_eric": 46.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-9", "circ_bv": "09", "num_bureau": 9, "roussel_fabien": 26.0, "nb_emargement": 939.0, "nb_procuration": 34.0, "nb_vote_blanc": 8.0, "jadot_yannick": 55.0, "le_pen_marine": 95.0, "nb_exprime": 927.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1257.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 939, "quartier_bv": "50", "geo_point_2d": [48.82924728873352, 2.360894464090846], "melenchon_jean_luc": 365.0, "poutou_philippe": 16.0, "macron_emmanuel": 213.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.367829418244922, 48.85850936745307], [2.367829780414413, 48.858523440567815], [2.367811945231309, 48.85859886281184], [2.367780541295005, 48.858732148463645], [2.367748889165668, 48.8588659930745], [2.367717484896032, 48.85899927957699], [2.367685832453442, 48.859133123239644], [2.367654427861483, 48.85926640969346], [2.367622775083605, 48.85940025420649], [2.367591370180334, 48.85953353971239], [2.367559718441123, 48.85966738418373], [2.367528313215422, 48.85980066964099], [2.367496659789087, 48.85993451405619], [2.367465254230131, 48.860067800364064], [2.367433600490326, 48.86020164383111], [2.367402194609026, 48.86033493009033], [2.367370540534111, 48.86046877440771], [2.367355284380483, 48.860533521358064], [2.367351927687237, 48.86054358618729], [2.367437565065169, 48.8605653003342], [2.367570265960058, 48.860609756700946], [2.36770355258395, 48.860654037941735], [2.367836253931817, 48.860698494009974], [2.367969541008792, 48.86074277495098], [2.367974304622528, 48.86074369046213], [2.368135134654791, 48.860754383993914], [2.368369175525049, 48.86077042093642], [2.368530005720973, 48.8607811139373], [2.368764046832846, 48.860797150107146], [2.36892487719222, 48.860807842577074], [2.368938592485071, 48.86080477168708], [2.368942769020622, 48.86079339090025], [2.368962942458646, 48.86066922740825], [2.368983241304098, 48.8605428045032], [2.369003414559535, 48.860418640077015], [2.369023711846291, 48.860292217129334], [2.369043886271211, 48.860168052675526], [2.36906418336214, 48.86004162969239], [2.3690843562197372, 48.85991746609579], [2.369104653125735, 48.85979104217791], [2.36912482715281, 48.85966687855361], [2.3691451238629853, 48.859540454600356], [2.369163424216852, 48.859532972273215], [2.369351416513913, 48.859579047403756], [2.369541149149772, 48.85962573126852], [2.36972914211556, 48.85967180580185], [2.369918875427655, 48.85971848906389], [2.370106870414137, 48.8597645639064], [2.370296604402469, 48.85981124656566], [2.370484598705696, 48.8598573199045], [2.370674333370253, 48.85990400196099], [2.370862328331333, 48.85995007560188], [2.371052063672114, 48.85999675705559], [2.371240060675615, 48.86004282920714], [2.371429796692715, 48.86008951005806], [2.371617792991116, 48.86013558250447], [2.371807529684329, 48.8601822627526], [2.371825362213733, 48.860171288103516], [2.371768366399976, 48.86004398319143], [2.371713281575467, 48.85992042775266], [2.371656284947048, 48.859793122751256], [2.371601202016403, 48.859669567240104], [2.371544205947218, 48.85954226125724], [2.371489123547577, 48.859418705666556], [2.371432128015824, 48.85929140050079], [2.371377046147178, 48.85916784483061], [2.371320051163695, 48.85904053958271], [2.371264969826036, 48.858916983832984], [2.371207975390815, 48.85878967850287], [2.371152894584138, 48.85866612267364], [2.371152490896069, 48.85866535250928], [2.371076504458161, 48.858539016605064], [2.370993523186264, 48.858414069335815], [2.370917536148331, 48.85828773239559], [2.370834557020765, 48.858162784994946], [2.370758570723897, 48.8580364488245], [2.370675592377634, 48.857911501285336], [2.370669577838406, 48.85790008660167], [2.370632062924785, 48.857897326158216], [2.370475099948938, 48.85783518024642], [2.370319263489102, 48.85777289345732], [2.370162301261205, 48.85771074712831], [2.370006465547471, 48.85764845992484], [2.369849504056643, 48.85758631407788], [2.369693669099889, 48.857524025560835], [2.36969293097538, 48.85752375096894], [2.369516069426723, 48.857463436150425], [2.369338791843532, 48.857402169160075], [2.369161931117625, 48.85734185381158], [2.368984655727307, 48.85728058629707], [2.368807794461167, 48.85722027041137], [2.368630519900937, 48.85715900236551], [2.36845366082033, 48.85709868595701], [2.368276385727313, 48.857037417372645], [2.368196154660804, 48.85703125324396], [2.368187662568569, 48.8570457203075], [2.368169675657722, 48.85711822890642], [2.368138025508523, 48.85725207381484], [2.368105629516758, 48.85738267170837], [2.3680739790532073, 48.85751651566865], [2.3680415813736992, 48.857647113506594], [2.368009930584983, 48.85778095741803], [2.367977533943406, 48.85791155521471], [2.367945882818616, 48.85804539997662], [2.367913484500079, 48.858175996818325], [2.367881833050112, 48.858309841531415], [2.3678494344065992, 48.85844043832467], [2.367835619160505, 48.85849886074958], [2.367829418244922, 48.85850936745307]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 74, "zemmour_eric": 71.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-17", "circ_bv": "07", "num_bureau": 17, "roussel_fabien": 25.0, "nb_emargement": 1270.0, "nb_procuration": 116.0, "nb_vote_blanc": 16.0, "jadot_yannick": 140.0, "le_pen_marine": 51.0, "nb_exprime": 1246.0, "nb_vote_nul": 8.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1542.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1270, "quartier_bv": "42", "geo_point_2d": [48.858974228646936, 2.3692769910893112], "melenchon_jean_luc": 328.0, "poutou_philippe": 8.0, "macron_emmanuel": 503.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.405024907974186, 48.86510827984656], [2.405013524270113, 48.865111746866845], [2.404959637975037, 48.86521531220732], [2.404910136335388, 48.865310439230925], [2.404856248266155, 48.86541400449947], [2.404806746248914, 48.865509131463256], [2.404802589447161, 48.86551311554872], [2.404643137792726, 48.865600940662176], [2.4044894842476072, 48.86568544796783], [2.404335831577476, 48.86576995417721], [2.4041763769766282, 48.865857779540924], [2.404022723290198, 48.86594228533521], [2.403863267634009, 48.86603011026812], [2.403709612931478, 48.86611461564726], [2.40355015758306, 48.86620244015614], [2.403528408769377, 48.86619821639509], [2.4034861824206812, 48.86610898669177], [2.403443797112105, 48.86601960418506], [2.403401569700298, 48.86593037353141], [2.403359184682219, 48.86584099098032], [2.403323458593067, 48.86583648885396], [2.403294631933634, 48.86584539608619], [2.403206823726399, 48.86596366023394], [2.403120588541241, 48.86607892206411], [2.403034351611362, 48.86619418381331], [2.402946542225341, 48.866312447732824], [2.4028603058869242, 48.866427709339085], [2.402772494349027, 48.866545973099164], [2.40268625723894, 48.866661234555714], [2.402598446275415, 48.866779498169926], [2.4025122070305143, 48.866894759469965], [2.402424395278222, 48.86701302293149], [2.402338156624772, 48.867128284088594], [2.402250344083705, 48.86724654739747], [2.402250386452694, 48.86725616063326], [2.402293019946419, 48.86726536872632], [2.40247704898536, 48.86734458036982], [2.402656729604645, 48.867422038794416], [2.402840759750097, 48.867501249867445], [2.403020441440374, 48.867578708634326], [2.403200123675198, 48.86765616622678], [2.403384155474023, 48.867735376447584], [2.403390190220601, 48.86774158407841], [2.403423425587348, 48.86788881390064], [2.403457194005444, 48.868034986031155], [2.403461030065478, 48.86803999017688], [2.403589190691403, 48.868124537030695], [2.403717386824094, 48.868208519131954], [2.403845546927933, 48.86829306479232], [2.403973743888651, 48.868377046606206], [2.404101904812788, 48.868461592878475], [2.404230102601542, 48.86854557440498], [2.404230691420516, 48.86854594066795], [2.404257678607092, 48.868561745939004], [2.4042655107954483, 48.86856135413983], [2.4042824301118513, 48.868548106582026], [2.404376680978772, 48.86844765296388], [2.40447296628864, 48.86834700433788], [2.404567216434562, 48.868246549652085], [2.404663501004585, 48.86814590085449], [2.4047577504192272, 48.868045446000444], [2.404854034249411, 48.86794479703127], [2.404856330223445, 48.8679429800952], [2.404995777690385, 48.867857211117354], [2.405137893008597, 48.86777092102569], [2.405277338188312, 48.86768515169968], [2.4054194525603663, 48.867598862159554], [2.405423089963347, 48.86759727850911], [2.405530127244552, 48.867563656949685], [2.405646316123832, 48.86752915442227], [2.405671402962656, 48.86752834548448], [2.405677859606984, 48.86751420398635], [2.405740555093141, 48.867402702448906], [2.405801335683079, 48.86729317350236], [2.405862117380575, 48.86718364452087], [2.4059248120745123, 48.86707214285359], [2.405985593254502, 48.86696261378751], [2.406048287407786, 48.866851112932544], [2.406109068070276, 48.86674158378189], [2.406171761703626, 48.866630081940706], [2.406232541848623, 48.86652055270544], [2.406295234951689, 48.8664090507773], [2.406312514767361, 48.866398273384874], [2.406297344078211, 48.866382113464546], [2.406158129937363, 48.86627395906101], [2.406022014250995, 48.86616813026001], [2.406020779783145, 48.86616700445701], [2.405924243809087, 48.86606289543338], [2.40582616294507, 48.865956705674755], [2.405729626386431, 48.86585259646761], [2.405631546315056, 48.86574640652929], [2.405535010535152, 48.86564229714538], [2.405436931256411, 48.86553610702742], [2.405340396255129, 48.86543199746678], [2.405242317769014, 48.865325807169135], [2.40514578354635, 48.86522169743173], [2.405047705852851, 48.86511550695448], [2.405024907974186, 48.86510827984656]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 37, "zemmour_eric": 56.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-25", "circ_bv": "15", "num_bureau": 25, "roussel_fabien": 43.0, "nb_emargement": 1252.0, "nb_procuration": 81.0, "nb_vote_blanc": 15.0, "jadot_yannick": 138.0, "le_pen_marine": 42.0, "nb_exprime": 1231.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1561.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1253, "quartier_bv": "78", "geo_point_2d": [48.86686472090766, 2.4043906417494147], "melenchon_jean_luc": 562.0, "poutou_philippe": 19.0, "macron_emmanuel": 278.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.402325570533197, 48.84108872345737], [2.40229107773661, 48.84108426387295], [2.402224510927273, 48.84108981216156], [2.402007138237606, 48.841110758237164], [2.401805330445381, 48.841127579946594], [2.401587957429746, 48.841148525259825], [2.4013861507288, 48.84116534536906], [2.401168776024749, 48.84118628991307], [2.4009669690319733, 48.8412031102139], [2.40086298663433, 48.84121592606624], [2.400860549003727, 48.84122280744585], [2.40087926045388, 48.84127401893777], [2.400926622527527, 48.841404229712495], [2.400973030914384, 48.84153125284517], [2.401020394818527, 48.8416614635596], [2.401066803673296, 48.841788485727314], [2.401114168035135, 48.841918697273925], [2.40116057734749, 48.842045719376], [2.401207940814775, 48.842175930848626], [2.401254351947212, 48.8423029528919], [2.401270940354694, 48.84233918472409], [2.401271162136933, 48.84233933063073], [2.401318527509916, 48.84246954203217], [2.401366801128753, 48.84259626573605], [2.401414166974174, 48.84272647706961], [2.401462441063428, 48.84285320070574], [2.401509807381295, 48.84298341197146], [2.401558081941176, 48.843110135539824], [2.401605448731496, 48.843240346737716], [2.40165372512433, 48.843367070245094], [2.401701091024587, 48.843497281368265], [2.401749367888069, 48.84362400480788], [2.401796734260684, 48.84375421586323], [2.401845011594718, 48.84388093923503], [2.401892378439902, 48.84401115022251], [2.401940656244496, 48.84413787352654], [2.40198802356205, 48.84426808444616], [2.40203630183721, 48.84439480768239], [2.402083669627348, 48.84452501853413], [2.40213194837308, 48.84465174170258], [2.402179316635602, 48.84478195248645], [2.402227595851916, 48.84490867558709], [2.402243872347027, 48.84493338488207], [2.402317553213451, 48.84492031932618], [2.402503747339995, 48.844907921834], [2.402691053099699, 48.844895063736026], [2.402877247047165, 48.84488266566227], [2.403064553986611, 48.84486980698604], [2.403250746392426, 48.844857408323925], [2.403438053159237, 48.844844548163316], [2.403624245375661, 48.84483214981894], [2.403811551959427, 48.84481928907329], [2.403997744007142, 48.84480688924805], [2.404185050397669, 48.844794028816665], [2.404371242266171, 48.844781628409834], [2.404558548473846, 48.844768767393404], [2.404744740163229, 48.84475636640503], [2.404932046187839, 48.84474350480354], [2.405118237698196, 48.84473110323359], [2.405305543550098, 48.844718240147756], [2.405491734881316, 48.84470583799623], [2.405679040539975, 48.844692975224646], [2.4057156095194943, 48.84468014140789], [2.405712850891144, 48.8446601278252], [2.405709585702767, 48.84465585855048], [2.405570076003896, 48.844554318846036], [2.405439605783111, 48.8444584448686], [2.405300097138682, 48.84435690483136], [2.405169627908748, 48.84426103054256], [2.405166421827408, 48.84425684158775], [2.405127166107512, 48.844131543214935], [2.405090167226235, 48.844008734663866], [2.405050911886808, 48.84388343533884], [2.405013913361347, 48.8437606267369], [2.40497465839212, 48.84363532735896], [2.404937660222468, 48.84351251870613], [2.4049006635897, 48.843389710035105], [2.404861409172109, 48.843264410578364], [2.404824411532617, 48.84314160184966], [2.404785157485212, 48.843016302340004], [2.4047825170987522, 48.842992178329204], [2.404753955116492, 48.84298500503887], [2.404553360150082, 48.84301545369421], [2.404351636688241, 48.84304602590207], [2.404151041241655, 48.84307647478042], [2.403949317317929, 48.84310704540888], [2.403748721401449, 48.84313749361096], [2.403546996995279, 48.84316806445869], [2.4033464006089122, 48.843198511984504], [2.403144675740887, 48.84322908125287], [2.402944078884644, 48.843259528102415], [2.402742353534078, 48.84329009759001], [2.402541756207965, 48.84332054376326], [2.402340030395678, 48.84335111167149], [2.402323364772383, 48.84334266978329], [2.402316503117267, 48.84321670028001], [2.402309119875221, 48.843086194494404], [2.402302258298614, 48.842960224062054], [2.40229487512857, 48.84282971824559], [2.402288013609843, 48.84270374868277], [2.402280630511698, 48.8425732428354], [2.402273769061166, 48.8424472732428], [2.402266386035122, 48.842316767364586], [2.402266383284403, 48.84231617557312], [2.402272012694944, 48.8421917226249], [2.402280410299234, 48.84204651910684], [2.402286041009641, 48.84192206613468], [2.4022944371690222, 48.841776862573774], [2.402300067816804, 48.84165240957086], [2.402308465256141, 48.84150720598069], [2.4023140944788253, 48.841382752940284], [2.4023224918355393, 48.84123754931406], [2.402328122358071, 48.84111309624972], [2.402325570533197, 48.84108872345737]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 69, "zemmour_eric": 93.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-33", "circ_bv": "08", "num_bureau": 33, "roussel_fabien": 32.0, "nb_emargement": 1184.0, "nb_procuration": 37.0, "nb_vote_blanc": 18.0, "jadot_yannick": 92.0, "le_pen_marine": 89.0, "nb_exprime": 1163.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 6, "nb_inscrit": 1498.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1185, "quartier_bv": "45", "geo_point_2d": [48.84343145722386, 2.4030086558331214], "melenchon_jean_luc": 349.0, "poutou_philippe": 6.0, "macron_emmanuel": 369.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.332023233759803, 48.897689868577416], [2.332054603177637, 48.897694658847406], [2.332132305105773, 48.897696167778456], [2.332332528779719, 48.897700583799946], [2.332529380090864, 48.897704405126575], [2.332729603818641, 48.89770882138346], [2.332926455190075, 48.89771264205742], [2.333126678994627, 48.897717056751155], [2.333323530426337, 48.89772087677246], [2.333523754284816, 48.89772529170155], [2.333720605788303, 48.89772911017088], [2.333920829712015, 48.8977335244361], [2.334117681264248, 48.897737343152016], [2.334317905253389, 48.897741756753376], [2.334514756877367, 48.89774557391732], [2.334714980931719, 48.897749986854826], [2.334911832604439, 48.897753804265335], [2.335112056735686, 48.89775821563969], [2.33530890846863, 48.89776203239754], [2.335509132653685, 48.89776644400727], [2.335705984446748, 48.89777026011242], [2.335906208708561, 48.89777467015902], [2.336103060561932, 48.89777848561147], [2.336303286241383, 48.897782895901024], [2.336500136802477, 48.89778670979396], [2.336700362547294, 48.89779111941962], [2.336897213157112, 48.89779493355915], [2.337097438978637, 48.89779934162167], [2.337294289648631, 48.89780315510848], [2.337361179784952, 48.89780462779639], [2.337405078431434, 48.897835442128226], [2.33744659377334, 48.89781838150496], [2.337579928188438, 48.89782131701231], [2.337790738928921, 48.89782529323197], [2.337990964942847, 48.89782969980053], [2.338201774384723, 48.89783367528912], [2.338402000454245, 48.8978380820697], [2.338612811325386, 48.897842056842286], [2.338813036109412, 48.897846462028866], [2.339023847045965, 48.897850436077896], [2.339180968832622, 48.89785389318784], [2.339205552252174, 48.89785616471406], [2.339212192180761, 48.89785445217547], [2.339255293870809, 48.897855400445394], [2.339443543033644, 48.89785870518764], [2.339643767951976, 48.897863108985334], [2.339701671053576, 48.89786412611734], [2.339723050783323, 48.897857766199365], [2.3397249256103843, 48.89782759989688], [2.339739078947518, 48.89773626307603], [2.339752793085536, 48.89762126004743], [2.339739494228395, 48.897611564017176], [2.339527704122471, 48.897608508523085], [2.339322135821476, 48.8976056245739], [2.3391103457756293, 48.89760256744247], [2.338904777509796, 48.89759968367613], [2.338692987512629, 48.897596625806614], [2.338487419304806, 48.89759374042464], [2.338275629344905, 48.89759068271632], [2.338070061183685, 48.89758779661792], [2.338032477357319, 48.89758254010441], [2.338023450277842, 48.897586730496926], [2.33781788214631, 48.89758384396567], [2.3376874797059832, 48.89758014792242], [2.337686449495127, 48.89757964220362], [2.337644621735906, 48.897581719427365], [2.33745491598752, 48.89758009361297], [2.3372493479136223, 48.89757720610582], [2.33705964219413, 48.89757557966528], [2.336854075523916, 48.89757269148725], [2.336664369833125, 48.89757106442058], [2.336458801838738, 48.89756817555647], [2.336269096188326, 48.89756654696447], [2.336063528222246, 48.89756365832114], [2.336053332049205, 48.89754891680974], [2.336215202241994, 48.89742057651986], [2.336345768960647, 48.897323607963564], [2.3363489956059302, 48.89731605627229], [2.336308959191544, 48.89716832172038], [2.336272331885973, 48.89703522357024], [2.336235703403865, 48.896902125385154], [2.336195668981619, 48.896754391646354], [2.336184830417788, 48.89674714420425], [2.336003880990351, 48.8967240843513], [2.335833717300604, 48.8967024770873], [2.335663553752102, 48.89668086958106], [2.335482604785901, 48.89665780893911], [2.33531244152922, 48.89663620093315], [2.335131492862208, 48.896613140659], [2.335126233218547, 48.89661315102866], [2.334918334385772, 48.896639160598426], [2.334717559411879, 48.896665597888905], [2.3345167842225862, 48.89669203574145], [2.334308884781945, 48.89671804335214], [2.334108109182874, 48.896744480518265], [2.333900210692468, 48.89677048742583], [2.333699433319822, 48.896796923897945], [2.333491534415854, 48.896822930094835], [2.333476785985838, 48.896818107696035], [2.333391570808744, 48.896705411725115], [2.333309225192458, 48.89659681187115], [2.333224010728663, 48.89648411665747], [2.333141665811909, 48.89637551666636], [2.333056452084639, 48.89626282041142], [2.332974107867411, 48.89615422028315], [2.332962015444673, 48.89613661347736], [2.332940430030519, 48.89613517034521], [2.3327390507866532, 48.896111874816604], [2.332529379354549, 48.89608811005045], [2.332328000465104, 48.89606481472897], [2.332118329410156, 48.89604104924211], [2.331916952262097, 48.89601775233676], [2.331707280220527, 48.895993986121645], [2.331505903426793, 48.89597068942337], [2.3312962317624, 48.89594692248756], [2.331094855346294, 48.89592362419788], [2.330885184058988, 48.89589985654139], [2.330869878678037, 48.895911451407514], [2.330929399612585, 48.896034543087616], [2.330986314085852, 48.89614852173219], [2.331045834191262, 48.89627161421941], [2.331102750542599, 48.89638559279158], [2.331162271205882, 48.89650868429502], [2.331219186707393, 48.89662266277956], [2.331276103821919, 48.89673664123276], [2.33133562528485, 48.896859733509864], [2.331343293314331, 48.89686528016385], [2.331480068379194, 48.89690353731354], [2.3316180718921062, 48.896942061963436], [2.3317548459966853, 48.89698031878896], [2.331892851291908, 48.897018842227915], [2.331901068670692, 48.89702601608174], [2.33192131924562, 48.89713363107537], [2.331951558875463, 48.89728883443128], [2.3319718096569853, 48.89739644939053], [2.332002049601543, 48.897551651797166], [2.332022300589765, 48.89765926672203], [2.332023233759803, 48.897689868577416]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 24, "zemmour_eric": 42.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "18-45", "circ_bv": "03", "num_bureau": 45, "roussel_fabien": 20.0, "nb_emargement": 1129.0, "nb_procuration": 42.0, "nb_vote_blanc": 9.0, "jadot_yannick": 55.0, "le_pen_marine": 81.0, "nb_exprime": 1114.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1611.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1129, "quartier_bv": "69", "geo_point_2d": [48.897092927241566, 2.3341373678176955], "melenchon_jean_luc": 578.0, "poutou_philippe": 7.0, "macron_emmanuel": 256.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.396732701622734, 48.83401787000693], [2.396759176811739, 48.83400813570025], [2.396939189105319, 48.83399810627227], [2.39712653483428, 48.83398807126725], [2.397306548339769, 48.833978042192356], [2.397493892563724, 48.83396800660487], [2.397504684394352, 48.83397064934006], [2.39762264944682, 48.83404946579877], [2.397740087863654, 48.83412649334276], [2.397775996206475, 48.83414478376298], [2.397803364713755, 48.8341287024079], [2.397865028380454, 48.834082454515205], [2.397986353325314, 48.833992622364946], [2.3981220589792462, 48.833890842434755], [2.3982433816626543, 48.83380101090087], [2.398379086326301, 48.83369922976232], [2.398500409482995, 48.83360939795919], [2.398636113135603, 48.833507617410916], [2.398757434051629, 48.833417784425535], [2.398893136703587, 48.833316003568264], [2.399014458092898, 48.833226170313644], [2.3990279098679332, 48.83322342738601], [2.399194399560886, 48.833250733048], [2.399406516485536, 48.83329219247869], [2.3995730052341653, 48.833319497605196], [2.39978512411225, 48.83336095546939], [2.399951613268556, 48.833388260966515], [2.400163732727548, 48.833429718156765], [2.400330222312129, 48.833457022225915], [2.4003330628745, 48.833457366534674], [2.400536022068452, 48.83346748281168], [2.400738208100303, 48.83348229045703], [2.400941167469913, 48.8334924060463], [2.40114335370308, 48.83350721390578], [2.40134631325867, 48.83351732790804], [2.401548499703582, 48.83353213508236], [2.401751459434803, 48.833542248396896], [2.401953644729284, 48.833557054879215], [2.402011600037993, 48.83356173804698], [2.402015489876763, 48.83355718961837], [2.402073108718716, 48.83349654837385], [2.402206810348401, 48.83340275094929], [2.402240607723051, 48.833407654123164], [2.402278401199173, 48.83338091779733], [2.402412103525054, 48.83328712014039], [2.40255417598905, 48.833186734915344], [2.402687875958419, 48.83309293692707], [2.402829947351833, 48.8329925522564], [2.402963646326964, 48.83289875394358], [2.403095045815092, 48.83282025390377], [2.403228745233567, 48.83272645528702], [2.403360143898484, 48.832647954044525], [2.403362476114468, 48.83264664810761], [2.403472683143837, 48.8325978523059], [2.403604081117255, 48.83251935078646], [2.40371428766164, 48.83247055385733], [2.403839834386878, 48.83243656130689], [2.403842927564793, 48.83243554065492], [2.404041717239805, 48.83238967437054], [2.404167262194614, 48.832355681467156], [2.40417007211988, 48.832355246681715], [2.404359975520475, 48.83233961635511], [2.404588837908195, 48.83232657918762], [2.404778742441029, 48.83231094820251], [2.405007604587789, 48.83229791113269], [2.405008729561821, 48.832297816000114], [2.405198632501733, 48.83228218434114], [2.405371879771073, 48.832262631081804], [2.405561783836147, 48.832246998852504], [2.405735030842085, 48.83222744596585], [2.405924934670083, 48.8322118131595], [2.406098181422974, 48.832192259746215], [2.406100630317507, 48.83219182492149], [2.406274810555569, 48.83215165882098], [2.406449127670914, 48.83210889937428], [2.4066233073632812, 48.83206873276331], [2.406797623915479, 48.8320259728055], [2.40697180306235, 48.83198580568402], [2.40714611768917, 48.83194304520842], [2.407310294362036, 48.83202054604215], [2.402425458542417, 48.82966715858986], [2.402213216394621, 48.82959683576343], [2.401995038421655, 48.82953469410778], [2.401812602682819, 48.82948300701022], [2.401594425663757, 48.8294208646174], [2.401510424169436, 48.82939706429723], [2.401460178897957, 48.829388999133016], [2.401443106828584, 48.829400578503794], [2.401300727776929, 48.82949136311088], [2.4011564759922193, 48.82958432992771], [2.401014095949916, 48.82967511327939], [2.400869843135391, 48.82976808063458], [2.400727462092106, 48.82985886363012], [2.400583209620057, 48.82995183063113], [2.400440827575784, 48.83004261327061], [2.400296572721964, 48.83013557990385], [2.400154189676694, 48.83022636218719], [2.400009933813616, 48.8303193275602], [2.399867549757092, 48.83041011038671], [2.399723292874404, 48.83050307539868], [2.399580907827122, 48.83059385696978], [2.399436649914458, 48.830686822520136], [2.399294263866159, 48.83077760373509], [2.399150006296062, 48.83087056893131], [2.399007619246741, 48.8309613497901], [2.398863359305285, 48.83105431371917], [2.398720971244563, 48.83114509512117], [2.398576710283367, 48.831238058689244], [2.39843432123198, 48.83132883883578], [2.39829005924076, 48.83142180294218], [2.39814766918843, 48.831512582732536], [2.398003406177553, 48.83160554647795], [2.397861016486289, 48.831696325919054], [2.3977167524557492, 48.83178928930346], [2.39757436040121, 48.83188006838153], [2.397430095361395, 48.8319730305056], [2.397287702295396, 48.83206381012684], [2.397143436236009, 48.83215677188991], [2.397001042179336, 48.83224755025563], [2.396856775089763, 48.832340512557], [2.396714380032012, 48.832431290566575], [2.3965701119227463, 48.83252425250692], [2.396427717226152, 48.83261503016719], [2.396283448107605, 48.8327079908472], [2.396141051037365, 48.83279876904374], [2.395996780899117, 48.8328917293627], [2.395854382838093, 48.83298250630374], [2.395710111669713, 48.833075467161], [2.3955677126075843, 48.833166243745836], [2.395423440419484, 48.83325920424207], [2.395281040356343, 48.83334998047072], [2.395136767148517, 48.83344294060592], [2.39499436744642, 48.833533716485256], [2.394908551867776, 48.83358900888376], [2.394902060131402, 48.833601706565716], [2.3949432742923102, 48.833627430072404], [2.395074655881522, 48.833697131738624], [2.395225096513716, 48.833776486284805], [2.395225168274685, 48.833776524421], [2.395343568493177, 48.83383933755233], [2.395468330051017, 48.833904236864676], [2.395586729490312, 48.83396704974121], [2.395711493018926, 48.8340319487994], [2.395730479512392, 48.83403057066235], [2.395863436834836, 48.83392299557094], [2.395998686930095, 48.833817609266525], [2.396131643145461, 48.833710034755825], [2.3962668907941103, 48.83360464722189], [2.396399847275098, 48.83349707239949], [2.396535093818586, 48.83339168544156], [2.396554675826557, 48.83339085789259], [2.396597419052047, 48.83341376543596], [2.396672434733228, 48.83345899973021], [2.396676853233673, 48.833465195265205], [2.3966865338279773, 48.833594207750146], [2.396698662597869, 48.83373687234662], [2.396708343296601, 48.83386588479848], [2.396717792349571, 48.833977013084606], [2.396720473551772, 48.83400854936499], [2.396732701622734, 48.83401787000693]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 75, "zemmour_eric": 92.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-29", "circ_bv": "08", "num_bureau": 29, "roussel_fabien": 23.0, "nb_emargement": 1031.0, "nb_procuration": 49.0, "nb_vote_blanc": 9.0, "jadot_yannick": 75.0, "le_pen_marine": 75.0, "nb_exprime": 1020.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1352.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "46", "geo_point_2d": [48.83191412100062, 2.400966889234009], "melenchon_jean_luc": 281.0, "poutou_philippe": 10.0, "macron_emmanuel": 335.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.400748318286822, 48.83467359228453], [2.400727986093452, 48.83466616689205], [2.400557080913922, 48.8347102013739], [2.400371812649675, 48.83475869280643], [2.400200906865914, 48.83480272677573], [2.400015639303792, 48.8348512176594], [2.399844732915704, 48.83489525111613], [2.399659463341469, 48.83494374053796], [2.399488556349263, 48.83498777348212], [2.399303287466809, 48.83503626325442], [2.3991323798702853, 48.83508029568603], [2.398947108965465, 48.83512878489578], [2.398776200764726, 48.83517281681485], [2.3987118226861073, 48.83518966566194], [2.398671550418691, 48.835194691209246], [2.398666318935779, 48.835204493160965], [2.398545425397685, 48.8352361320222], [2.398363079711298, 48.835283562093785], [2.398177807378699, 48.835332049203835], [2.397995459659875, 48.83537947870406], [2.39781018800673, 48.8354279652474], [2.397627839617988, 48.83547539418314], [2.39744256728199, 48.835523880152934], [2.39726021822313, 48.83557130852416], [2.397074945204283, 48.83561979392038], [2.396892595475513, 48.83566722172712], [2.39670732177382, 48.83571570654975], [2.396524971374943, 48.835763133791986], [2.396339695628185, 48.835811618034136], [2.396157345921631, 48.835859044718745], [2.395972069491932, 48.83590752838733], [2.39578971911538, 48.835954954507436], [2.395604442002949, 48.83600343760242], [2.395422090956407, 48.836050863158036], [2.395236813161043, 48.83609934567941], [2.395054461444512, 48.836146770670496], [2.394869182966322, 48.836195252618296], [2.394732878202895, 48.836230701200996], [2.394718571213671, 48.836243532875045], [2.39473171991001, 48.83626228459215], [2.394872440355182, 48.83629724165624], [2.394978247112668, 48.83632314074331], [2.394988417802874, 48.83632298803216], [2.395170502391087, 48.836271403137324], [2.395352908969726, 48.83621974674398], [2.395534992836691, 48.836168161289535], [2.395717398692843, 48.83611650433558], [2.395899481838355, 48.83606491832157], [2.396081886982434, 48.8360132599077], [2.39626396939617, 48.835961674233374], [2.39644637381775, 48.835910015258946], [2.396628454158317, 48.83585842811884], [2.3968108592092072, 48.83580676949], [2.3969929388284132, 48.83575518179033], [2.397175343156901, 48.835703522600916], [2.3971912128077433, 48.83570605694456], [2.397318237291122, 48.835807477065295], [2.397439936857182, 48.83590711645535], [2.397566962314448, 48.83600853629374], [2.39768866281487, 48.83610817631215], [2.3978156878837, 48.83620959586126], [2.397937389329091, 48.836309235608695], [2.398059091239651, 48.83640887522343], [2.398186119134713, 48.836510293459426], [2.3983078219902563, 48.8366099328032], [2.398434850848853, 48.836711351656184], [2.3984351093235903, 48.83672259949102], [2.398318320068667, 48.836821842271505], [2.398213615285088, 48.83690536101089], [2.3981089101555932, 48.83698888055169], [2.397992118320734, 48.83708812298317], [2.397887412479604, 48.83717164141714], [2.397770621175792, 48.83727088362297], [2.397770220827919, 48.837271219767715], [2.397731145963724, 48.83730559003446], [2.397716985357157, 48.83732560060272], [2.397742928790261, 48.83734150065288], [2.397878202106157, 48.83742124103277], [2.398016471338066, 48.83750196584198], [2.3981517468407523, 48.83758170680724], [2.398290016932342, 48.837662430389365], [2.398425293269948, 48.83774217103386], [2.398563564210835, 48.83782289428818], [2.398698841383467, 48.83790263461187], [2.3988371131631823, 48.837983358437704], [2.398840050480237, 48.83798466648233], [2.398935244206323, 48.83801442448676], [2.399072519414897, 48.83805968927602], [2.399085091392448, 48.83803102591445], [2.399078708821677, 48.8379950607432], [2.398916911434437, 48.83789945235889], [2.39874590337881, 48.8377976889799], [2.398584107225048, 48.837702079229246], [2.398413101828967, 48.83760031536332], [2.398412038019063, 48.837587663179804], [2.398538556216049, 48.83749364242072], [2.398662986243314, 48.83740001753641], [2.398789503532191, 48.83730599649613], [2.398913932650403, 48.837212372234355], [2.39904044903108, 48.83711835091291], [2.399164877260989, 48.83702472547507], [2.399291392733672, 48.8369307038724], [2.399415820054551, 48.83683707905712], [2.399542334619047, 48.836743057173244], [2.399666761051628, 48.83664943118193], [2.399793276070492, 48.83655540902372], [2.399917701594063, 48.83646178365494], [2.4000442143424072, 48.8363677612087], [2.400168638967338, 48.83627413556323], [2.400170350862898, 48.836263890507425], [2.400078611245763, 48.836153107322815], [2.399992166100552, 48.83604955721276], [2.39998957721309, 48.83604733898704], [2.399836647043602, 48.83595180401869], [2.3996691785125153, 48.835852801678804], [2.399666624206502, 48.83584143169471], [2.399761441319736, 48.83573843395351], [2.399876139808663, 48.83561041665022], [2.399970956087802, 48.835507418721676], [2.400085653553865, 48.83537940119106], [2.400180468998718, 48.83527640307514], [2.400295165441927, 48.835148385317176], [2.400389980052604, 48.835045387013935], [2.4004094844231982, 48.83504188193516], [2.400415039137146, 48.835020057027926], [2.400415372791949, 48.83501971244523], [2.400496014880167, 48.834940475258065], [2.400601567298291, 48.834837552175685], [2.400682207459378, 48.83475831484325], [2.40075472374081, 48.834687604097674], [2.400748318286822, 48.83467359228453]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 54, "zemmour_eric": 66.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-24", "circ_bv": "08", "num_bureau": 24, "roussel_fabien": 11.0, "nb_emargement": 1087.0, "nb_procuration": 57.0, "nb_vote_blanc": 16.0, "jadot_yannick": 90.0, "le_pen_marine": 69.0, "nb_exprime": 1070.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1420.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1087, "quartier_bv": "46", "geo_point_2d": [48.8360838739199, 2.3986864194576007], "melenchon_jean_luc": 377.0, "poutou_philippe": 9.0, "macron_emmanuel": 337.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.289483442303964, 48.845050655168535], [2.2894415234360412, 48.845001285490945], [2.289436185608921, 48.84499321794559], [2.289418655719552, 48.84497229888222], [2.28941997041149, 48.84496332291689], [2.289406169069467, 48.84495327056136], [2.289328664558889, 48.84486077617631], [2.289237272673306, 48.84475597143244], [2.289142240438648, 48.84464255871892], [2.289050849310616, 48.84453775381212], [2.289032587943323, 48.844534318528375], [2.288827476202013, 48.844607103807725], [2.288628703454033, 48.844675351347675], [2.2886207232578712, 48.844676296795946], [2.2884574286352652, 48.84466281637846], [2.288296421308927, 48.844649482451096], [2.288135414077258, 48.84463614740759], [2.287972119693694, 48.844622667226496], [2.287811112627848, 48.84460933174621], [2.287647817049649, 48.844595851114036], [2.287638934931062, 48.8445925991759], [2.287542487918056, 48.84451427543612], [2.287444740976036, 48.84443497525001], [2.287348294558965, 48.844356650443295], [2.287250549570582, 48.84427735009547], [2.2872288942982513, 48.84427021590074], [2.2872131642128872, 48.84428257122411], [2.287133503857862, 48.84439725337538], [2.287044191912076, 48.844526759776194], [2.287020047026949, 48.84452759529181], [2.28692143999684, 48.84441700055649], [2.286807924603789, 48.84428980356294], [2.28670931983614, 48.84417920863733], [2.286595805466398, 48.844052012314684], [2.286497200236239, 48.84394141718249], [2.286430220002902, 48.84386636295046], [2.286427049670858, 48.843865732469915], [2.286402655416889, 48.84387504921038], [2.286223112875959, 48.84395025169661], [2.286042020837916, 48.844025928523855], [2.285862477256846, 48.844101130458675], [2.285681384170995, 48.844176806729784], [2.285501838187252, 48.84425200810508], [2.285320745415919, 48.844327683828176], [2.285141198392028, 48.84440288465202], [2.284960104572786, 48.844478559819], [2.284949062483734, 48.84447960723712], [2.284837691193209, 48.84445855014845], [2.284726597995297, 48.844436498118505], [2.284715654635963, 48.84443740130717], [2.284564463200526, 48.84449737003044], [2.284382888389639, 48.84456928658818], [2.284231696188706, 48.84462925488381], [2.28405012045905, 48.84470117092805], [2.28394237194539, 48.84474390704144], [2.283913793287494, 48.84475671385391], [2.283913256041213, 48.84475693907742], [2.283896519258816, 48.844784278595625], [2.2839020994325763, 48.84480518901364], [2.283931395025578, 48.84483908075204], [2.283934526847332, 48.844848764099545], [2.283943524842908, 48.844875503086065], [2.283956095978865, 48.84488119487832], [2.284074443464857, 48.84482972007614], [2.2841431671327, 48.844800212967534], [2.284158389626535, 48.84480037330591], [2.284310952220478, 48.844870561659306], [2.284459739926091, 48.84493921989379], [2.284612304707219, 48.845009406963065], [2.2847610932062192, 48.84507806481422], [2.284909883459695, 48.84514672248424], [2.285062448079692, 48.84521690985752], [2.285064828829877, 48.84521778837666], [2.285223317766856, 48.84526320190546], [2.285405603484886, 48.84531463202968], [2.285406914162857, 48.84533074482066], [2.285219936125169, 48.84539997629971], [2.285040379699266, 48.84546704029555], [2.284853400673344, 48.84553627209254], [2.284673843306198, 48.845603335530114], [2.284668607429149, 48.84561548794397], [2.2847543966626143, 48.84571870044742], [2.284837878471267, 48.845818395152456], [2.284923668361634, 48.84592160841505], [2.285007149456548, 48.846021302975686], [2.2850906322334312, 48.84612099747731], [2.285176423134732, 48.846224209631345], [2.285259906560461, 48.846323903996684], [2.285345698118793, 48.84642711690982], [2.285359731074606, 48.84643167867844], [2.285500540355232, 48.84641727005885], [2.285635132840774, 48.846402279137045], [2.285648662459084, 48.84640608419759], [2.285765950517371, 48.84651973403072], [2.28587566808506, 48.84662741352411], [2.285921818625035, 48.846672516077106], [2.285931994704339, 48.846669961459064], [2.285985223888653, 48.846638623276746], [2.286154074879333, 48.846540643096084], [2.286306141290424, 48.846451111017394], [2.286474992432812, 48.84635313037542], [2.286627057745337, 48.846263597873744], [2.286779121172898, 48.8461740651635], [2.286947970528438, 48.84607608382967], [2.286949821115938, 48.846075181103565], [2.287138008443499, 48.84599604944875], [2.287316290452654, 48.84592356146497], [2.287494570615586, 48.84585107230341], [2.287684865847412, 48.84577133087412], [2.287863146339494, 48.845698841161536], [2.288053440439232, 48.845619100034355], [2.288104607492624, 48.845598294591646], [2.288115684228346, 48.84559681809074], [2.288132971843496, 48.845588365287014], [2.288260082833855, 48.84553668041929], [2.288424848555509, 48.84547245647968], [2.288603125633367, 48.845399965636894], [2.288767890500057, 48.84533574121699], [2.288946167995652, 48.84526324986222], [2.289110932007378, 48.84519902496198], [2.289289207195696, 48.84512653307903], [2.289453970352459, 48.8450623076985], [2.289483007159624, 48.84505098894727], [2.289483442303964, 48.845050655168535]]], "type": "Polygon"}, "properties": {"lassalle_jean": 27.0, "pecresse_valerie": 123, "zemmour_eric": 87.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-93", "circ_bv": "13", "num_bureau": 93, "roussel_fabien": 15.0, "nb_emargement": 1209.0, "nb_procuration": 70.0, "nb_vote_blanc": 13.0, "jadot_yannick": 89.0, "le_pen_marine": 70.0, "nb_exprime": 1194.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1555.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "60", "geo_point_2d": [48.8451911254025, 2.2865464030308043], "melenchon_jean_luc": 271.0, "poutou_philippe": 7.0, "macron_emmanuel": 462.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.377109588606968, 48.84773087708227], [2.377141875786621, 48.84774733970888], [2.377312919163982, 48.8478316929845], [2.377486087059956, 48.84791745555891], [2.377657130190169, 48.84800180832245], [2.377830299228516, 48.848087569486296], [2.37800134347432, 48.84817192174484], [2.378174513633668, 48.84825768329669], [2.378345560357517, 48.84834203505735], [2.378518731659338, 48.84842779519856], [2.378524108957828, 48.84843590563744], [2.37850656362702, 48.84854883018503], [2.378487189266039, 48.84865754253094], [2.378469645153893, 48.84877046615848], [2.378450270633497, 48.84887917847675], [2.378432726366837, 48.848992102076366], [2.3784133516870263, 48.849100814367034], [2.378414857245074, 48.8491060915088], [2.378501752366125, 48.84921379547643], [2.37858439022738, 48.84931547856174], [2.378671286047964, 48.849423182385955], [2.378753924571959, 48.84952486533504], [2.378836564781133, 48.849626548224805], [2.37892346164161, 48.84973425183583], [2.379006101161774, 48.84983593368297], [2.3790929987218, 48.849943637150595], [2.379137075683373, 48.84996433428078], [2.379165614250542, 48.84994925450543], [2.379203072022682, 48.84990191620245], [2.379295574259523, 48.84978579395991], [2.379385218793305, 48.8496724996716], [2.379477720216932, 48.849556377264335], [2.379567363949465, 48.84944308371552], [2.379659864559992, 48.84932696114347], [2.379749507512498, 48.849213666535505], [2.379842007310033, 48.84909754379873], [2.379931649471915, 48.84898424903098], [2.380024148456369, 48.84886812612946], [2.380113789816939, 48.848754832101186], [2.380206287988218, 48.848638709034944], [2.380295927206328, 48.848525413940514], [2.380388425927201, 48.848409290716575], [2.380478064344029, 48.84829599636165], [2.380570562251845, 48.84817987297298], [2.380660199888684, 48.84806657755894], [2.380660711315107, 48.84805897525656], [2.380595373045181, 48.84795481900297], [2.380516773894998, 48.84783066252028], [2.38051974580266, 48.84782654716779], [2.380491249709438, 48.84779244803984], [2.380412651052211, 48.847668291470654], [2.380331067642268, 48.847543861259666], [2.380252469741576, 48.84741970455755], [2.380170887103244, 48.84729527420952], [2.380092291321596, 48.84717111738155], [2.380010708092346, 48.84704668688946], [2.379932113067207, 48.84692252992857], [2.379850530609452, 48.84679809929946], [2.379771936351617, 48.846673941306335], [2.379690356028053, 48.84654951054738], [2.379680013888451, 48.84654420378109], [2.37949407223615, 48.84652445826457], [2.379320968173114, 48.84650472959527], [2.379147862878639, 48.84648500066809], [2.378961921639298, 48.846465254323455], [2.3789498475379602, 48.84646796076623], [2.378799057573318, 48.84657339914942], [2.378649931780372, 48.846678070733205], [2.378499140611735, 48.84678350781916], [2.37835001361519, 48.84688817900937], [2.3781992212211, 48.846993616596734], [2.378050093020943, 48.847098287393386], [2.377899299412111, 48.847203724582876], [2.377750170008332, 48.847308394985916], [2.377749852659921, 48.84730861008026], [2.377722712770191, 48.84730923607263], [2.377721583457108, 48.847318221963455], [2.377689705663625, 48.8473391469595], [2.377570901912125, 48.84741713357879], [2.377422043999051, 48.847513572265186], [2.377271361320716, 48.847612483485925], [2.377122502306085, 48.847708920883385], [2.377109588606968, 48.84773087708227]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 50, "zemmour_eric": 47.0, "hidalgo_anne": 42.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-58", "circ_bv": "07", "num_bureau": 58, "roussel_fabien": 18.0, "nb_emargement": 1147.0, "nb_procuration": 72.0, "nb_vote_blanc": 13.0, "jadot_yannick": 134.0, "le_pen_marine": 48.0, "nb_exprime": 1133.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1461.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "48", "geo_point_2d": [48.84798550576502, 2.3791026016680523], "melenchon_jean_luc": 372.0, "poutou_philippe": 12.0, "macron_emmanuel": 389.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.37983994096226, 48.87470489708], [2.379813725399563, 48.87469986618727], [2.3796378281438972, 48.87469993322199], [2.379464953467735, 48.87470183771745], [2.379453993234635, 48.874698392210426], [2.379401472864441, 48.87465417667916], [2.379349717204078, 48.87461329981816], [2.37934476059243, 48.87461083782302], [2.379219924852209, 48.87457436552947], [2.379029027756093, 48.87451875344541], [2.378904192468283, 48.874482279920315], [2.3788401350212802, 48.87446361820731], [2.378814935641056, 48.8744593675928], [2.378805417151654, 48.87447622478201], [2.378748877009258, 48.87460894468145], [2.378691796550408, 48.87474247473319], [2.378635255840098, 48.874875193647604], [2.378578174798279, 48.87500872361298], [2.378521633498693, 48.87514144334096], [2.378464551884525, 48.875274972320625], [2.378408010006383, 48.87540769196292], [2.37835092917239, 48.87554122086329], [2.378294386715686, 48.875673940419894], [2.378237303924605, 48.87580747012601], [2.3781807609000643, 48.87594018869762], [2.378123677525876, 48.876073718317365], [2.378067133912017, 48.87620643770252], [2.378010049965454, 48.87633996633653], [2.377996952179092, 48.87634651916978], [2.377810454915105, 48.87634673801524], [2.377623830846338, 48.8763469568103], [2.377437333579219, 48.8763471750745], [2.3772507081439382, 48.87634739328081], [2.377064210873697, 48.876347610963705], [2.376877585435294, 48.87634782858831], [2.376856073470287, 48.87635314588284], [2.376853082906805, 48.87635934380622], [2.376903204187641, 48.87645293656081], [2.376951603974029, 48.876544903325566], [2.376941243904835, 48.87655669091806], [2.376736075402626, 48.876582151410574], [2.376533584010656, 48.876607540058096], [2.376328413734706, 48.87663300074293], [2.3761259219464312, 48.876658388699724], [2.375920751270897, 48.87668384868475], [2.375718259086224, 48.876709235950784], [2.375513088011116, 48.87673469523591], [2.375310595429954, 48.87676008181128], [2.375292638787398, 48.87676553249199], [2.375292353411731, 48.87677761623495], [2.375339727157309, 48.87690387702817], [2.375385288988873, 48.87702605345774], [2.375430852386915, 48.8771482307628], [2.375478225441842, 48.87727449145165], [2.375523789275236, 48.87739666869383], [2.375571164155631, 48.87752292842528], [2.375584892955009, 48.8775297549177], [2.375765770320249, 48.87752542814499], [2.375945368681244, 48.877520762578236], [2.376126245995976, 48.87751643436154], [2.376305844282994, 48.87751176915325], [2.376486721536534, 48.87750744039192], [2.376666319771009, 48.87750277374348], [2.376847196952586, 48.877498445336755], [2.377026795123641, 48.877493778147524], [2.377207672254871, 48.87748944829682], [2.377387270362596, 48.87748478056673], [2.377397716435408, 48.87748759044826], [2.377546771621312, 48.877591620549595], [2.377690287088838, 48.87769192630123], [2.377833803109159, 48.8777922318717], [2.377982860027226, 48.87789626230056], [2.377986503703874, 48.87790341742804], [2.377966031920685, 48.87802686031145], [2.377945974281007, 48.87814838435833], [2.377925502294727, 48.87827182810664], [2.3779054444768812, 48.87839335122048], [2.377906164235194, 48.87839736058139], [2.377961343775538, 48.878498837339166], [2.378020357100678, 48.87860241952798], [2.378075537080775, 48.87870389621424], [2.378134549501933, 48.87880747832041], [2.378133270495975, 48.87882769312796], [2.3781609419647642, 48.87883268335849], [2.378305782527467, 48.878841558371924], [2.378467562445989, 48.87885919520009], [2.378470094435039, 48.878859313567155], [2.378653293075299, 48.87885747212151], [2.378852696892626, 48.878854497683335], [2.379035895502414, 48.87885265565219], [2.379235299279445, 48.878849680576714], [2.379418499222203, 48.87884783796718], [2.379617902948217, 48.87884486315367], [2.379801101497042, 48.878843019951574], [2.380000505193457, 48.87884004360155], [2.380183703711785, 48.87883819981391], [2.380315278465591, 48.87883623512747], [2.380322790995355, 48.87883363358004], [2.380322933854526, 48.878807875694505], [2.380374124358331, 48.8786800660901], [2.380424142544268, 48.8785548467509], [2.380475332561703, 48.878427036174564], [2.380525350261405, 48.8783018167643], [2.380575369083924, 48.87817659732598], [2.38062655834778, 48.878048787540436], [2.38067657532054, 48.87792356802398], [2.380727764098039, 48.87779575726653], [2.380740872640661, 48.87778176492985], [2.380736438690221, 48.877775220942], [2.380787627164323, 48.87764741104103], [2.380833752929954, 48.87753209181621], [2.380879877117326, 48.8774167734538], [2.38093106489773, 48.877288962550615], [2.380977190017733, 48.877173644132334], [2.381028377320383, 48.87704583315937], [2.381074500646212, 48.87693051467107], [2.381125687460433, 48.87680270452761], [2.381184927227092, 48.87665636386741], [2.381236113500904, 48.87652855364495], [2.381295351282096, 48.876382212886675], [2.381346537015511, 48.876254402585225], [2.381347274639077, 48.87625302502247], [2.381365967406722, 48.87622547704144], [2.381366250209984, 48.87622508459525], [2.3814468874526, 48.87612067507878], [2.381523434062169, 48.876021088171555], [2.381604070673861, 48.87591667852991], [2.381680616693762, 48.875817090604485], [2.381761252663863, 48.87571268173693], [2.381837798083422, 48.87561309369254], [2.381858180161875, 48.87560170007044], [2.381850028092152, 48.87558700873922], [2.381844092350385, 48.87558316671451], [2.381761836381607, 48.87555588064697], [2.381705827229468, 48.87553748150073], [2.381690919476782, 48.87553863748639], [2.381555896574059, 48.87561365304742], [2.38142331271866, 48.87568703887452], [2.381288290398384, 48.87576205502995], [2.381155704424799, 48.8758354405438], [2.38115136722641, 48.875837057605956], [2.380995900933176, 48.87587225589493], [2.380772665149648, 48.875923153837064], [2.3806171983435043, 48.875958351631446], [2.380393961810195, 48.8760092497627], [2.380238494491142, 48.87604444706255], [2.380221253080826, 48.87603901126481], [2.380145173526771, 48.87590083415557], [2.380070926489586, 48.87576646525136], [2.379994847721841, 48.87562828891174], [2.379920601460979, 48.8754939198811], [2.379844523500838, 48.875355742512504], [2.379770278016294, 48.87522137335543], [2.379769511272954, 48.87521752293331], [2.379781402702653, 48.875130414841905], [2.37979788331294, 48.87500575276124], [2.379809774646942, 48.874918644650286], [2.379826253748266, 48.87479398343402], [2.379842412349696, 48.87470825630506], [2.37983994096226, 48.87470489708]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 38, "zemmour_eric": 68.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-10", "circ_bv": "16", "num_bureau": 10, "roussel_fabien": 29.0, "nb_emargement": 1317.0, "nb_procuration": 95.0, "nb_vote_blanc": 11.0, "jadot_yannick": 127.0, "le_pen_marine": 40.0, "nb_exprime": 1303.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1665.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1317, "quartier_bv": "76", "geo_point_2d": [48.8769410383036, 2.3789224911772417], "melenchon_jean_luc": 569.0, "poutou_philippe": 9.0, "macron_emmanuel": 366.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.267269587350131, 48.84985811026394], [2.267304572181839, 48.849858507983775], [2.267462694906059, 48.849836833795095], [2.267621216942297, 48.84981524548307], [2.267779340766317, 48.84979357088344], [2.267937862552305, 48.849771981251756], [2.268095984750674, 48.84975030622446], [2.26825450626134, 48.84972871707172], [2.268265886677993, 48.849730562919746], [2.268327304440814, 48.849760503356364], [2.268423540141617, 48.84981243838309], [2.268424815187319, 48.849825578707], [2.268255874167997, 48.84994350548952], [2.268091317609502, 48.85005833984969], [2.2680877514358873, 48.85006589338416], [2.268115069372465, 48.85018253722611], [2.268141844508874, 48.85029494981554], [2.2681686183981142, 48.85040736237928], [2.268195936682181, 48.85052400706629], [2.268222710805793, 48.85063641959481], [2.268250030706244, 48.85075306335451], [2.268276805064236, 48.85086547584774], [2.26830412383063, 48.850982120462064], [2.268309873188337, 48.850988157977405], [2.268467183542857, 48.85105951130836], [2.268625364508291, 48.85113227005667], [2.2687826771051762, 48.851203622072646], [2.2689408589485662, 48.85127638039443], [2.269098171049776, 48.851347731978045], [2.269256353758612, 48.85142049077262], [2.269413668089473, 48.851491841940486], [2.269571851688883, 48.851564599409265], [2.269729165524168, 48.85163595014476], [2.269887350001436, 48.851708707187015], [2.270044666053886, 48.851780058406085], [2.2702028514091213, 48.851852815021786], [2.270207849261189, 48.85186329610565], [2.27014367427642, 48.85197848361085], [2.270076253258499, 48.85209130033426], [2.270012077702142, 48.85220648774526], [2.269944657479547, 48.85231930348043], [2.269880479988756, 48.852434490788916], [2.269813059173651, 48.85254730732609], [2.269812285635519, 48.85256409280639], [2.269836330343543, 48.85257760047083], [2.269985535233118, 48.85264491802229], [2.270126899714373, 48.85271167761673], [2.270268264557849, 48.85277843704015], [2.270417471943241, 48.85284575404918], [2.270558837522721, 48.85291251312119], [2.270708044304549, 48.852979829751455], [2.270849410620035, 48.85304658847218], [2.270998618161255, 48.853113904732], [2.271012337189204, 48.85311454682017], [2.2712006137292953, 48.8530532672333], [2.271375095678283, 48.85299486764546], [2.271549578599031, 48.852936467808405], [2.271737852501137, 48.85287518735805], [2.271912334614484, 48.852816786985734], [2.272100607645101, 48.852755506857285], [2.272107989134565, 48.852749043977084], [2.272141774848386, 48.85262595323219], [2.272177994096037, 48.85250249593833], [2.272211778122003, 48.85237940513808], [2.272247997044995, 48.85225594689635], [2.272281782095829, 48.85213285695663], [2.272318000681602, 48.85200939866634], [2.272351784057161, 48.851886307771984], [2.272388002293166, 48.85176285033246], [2.272421786706149, 48.85163975939932], [2.272458004617603, 48.85151630101193], [2.272491787330118, 48.8513932109228], [2.272528004904369, 48.85126975248684], [2.272542000610937, 48.85125639929336], [2.272529926341788, 48.85123813265936], [2.272409261309113, 48.85118501822054], [2.272253088802533, 48.851118434669615], [2.272092760042817, 48.85104785942942], [2.271936586989101, 48.850981275448916], [2.271776260430069, 48.85091070068349], [2.271620088191818, 48.85084411628168], [2.271459761133295, 48.85077354017587], [2.271303591073209, 48.85070695536104], [2.271301287046603, 48.85069308482787], [2.27136146906654, 48.85065284056505], [2.271399136864491, 48.850629326742805], [2.271413926259588, 48.85061399360973], [2.271398630835178, 48.85059427004874], [2.271237900676004, 48.85053349423743], [2.271074988269064, 48.85047189907938], [2.270914258864787, 48.850411122826664], [2.270751345847684, 48.85034952811217], [2.270590618560987, 48.850288751426284], [2.27042770632168, 48.85022715536504], [2.270427648029374, 48.850227133424866], [2.270253998905832, 48.85016222584324], [2.270091087447367, 48.85010063021592], [2.269917439164573, 48.850035722138465], [2.269754529874575, 48.84997412515495], [2.269580881057251, 48.84990921747259], [2.269417972560548, 48.84984762002386], [2.26925506444897, 48.849786022349875], [2.269081416880561, 48.849721113931686], [2.268918509562277, 48.84965951579248], [2.2687448642099, 48.84959460598753], [2.268738971435063, 48.84959345475848], [2.268525810867407, 48.8495849316358], [2.268291772869007, 48.849573206424274], [2.268286477623894, 48.84957220452435], [2.268112342313453, 48.8495102362145], [2.267928591183236, 48.84944666279977], [2.267754455355214, 48.84938469395374], [2.267570705104268, 48.849321119982186], [2.267396571483991, 48.849259150616625], [2.267212822112316, 48.84919557608833], [2.267196513021371, 48.849179952247724], [2.267164939580904, 48.84917994412852], [2.26698118940844, 48.8491163692316], [2.266818912722564, 48.849056554580116], [2.266766355811822, 48.84905702843451], [2.266729329718926, 48.8490740918208], [2.266820217185875, 48.84920772706345], [2.266904892619464, 48.84933000743864], [2.266995780982857, 48.849463642517215], [2.267080457256883, 48.84958592184073], [2.267171346516936, 48.8497195567552], [2.267256022243441, 48.849841836817326], [2.267269587350131, 48.84985811026394]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 166, "zemmour_eric": 181.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-29", "circ_bv": "14", "num_bureau": 29, "roussel_fabien": 3.0, "nb_emargement": 1062.0, "nb_procuration": 80.0, "nb_vote_blanc": 11.0, "jadot_yannick": 38.0, "le_pen_marine": 49.0, "nb_exprime": 1048.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 3, "nb_inscrit": 1330.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "61", "geo_point_2d": [48.85119171144433, 2.270206216779768], "melenchon_jean_luc": 86.0, "poutou_philippe": 3.0, "macron_emmanuel": 481.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.406332584119689, 48.862342841391815], [2.406294484625949, 48.86236379141434], [2.406094878021105, 48.862438820562296], [2.405896394653068, 48.8625123593461], [2.405895475065253, 48.8625126749466], [2.40574175188159, 48.86256064884444], [2.405591608650818, 48.86260688121312], [2.40543788491964, 48.862654853817304], [2.405287741147623, 48.86270108580083], [2.405134015495748, 48.862749058003836], [2.404983871182587, 48.8627952896022], [2.4049817038747, 48.86279612510694], [2.404865177565363, 48.86285424930789], [2.404673543030053, 48.86294473312335], [2.404671042027758, 48.8629462603546], [2.404554515046299, 48.863004383345945], [2.404447949227838, 48.863088028733195], [2.404317035537166, 48.863194673996624], [2.404210468958463, 48.86327831825877], [2.40407955430339, 48.863384963244094], [2.403972986943874, 48.863468608179716], [2.403970573971896, 48.86347077706434], [2.403971631811812, 48.863491382636276], [2.404017368997069, 48.86361045291098], [2.404063495699232, 48.86373040464916], [2.404109233304292, 48.863849474863066], [2.404155361802846, 48.86396942564746], [2.404201099817432, 48.86408849669983], [2.404247227376179, 48.86420844741616], [2.404292967183833, 48.864327517515235], [2.404339095155455, 48.864447469069525], [2.404338131900642, 48.864453626553896], [2.404254476268965, 48.864566660117184], [2.404174086627631, 48.86466632049849], [2.404173879083366, 48.86466658926724], [2.404086073495935, 48.864784854179184], [2.404002418148564, 48.864897887539264], [2.403918761064796, 48.86501092172185], [2.403830955680943, 48.86512918641664], [2.403747297864009, 48.86524221955644], [2.403659491701062, 48.86536048410073], [2.403575833140665, 48.865473517097065], [2.403488026198615, 48.865591781490856], [2.403404366884446, 48.865704815243035], [2.403336371706069, 48.865796394142286], [2.403316559163385, 48.86582307948627], [2.403323458593067, 48.86583648885396], [2.403359184682219, 48.86584099098032], [2.403401569700298, 48.86593037353141], [2.403443797112105, 48.86601960418506], [2.4034861824206812, 48.86610898669177], [2.403528408769377, 48.86619821639509], [2.40355015758306, 48.86620244015614], [2.403709612931478, 48.86611461564726], [2.403863267634009, 48.86603011026812], [2.404022723290198, 48.86594228533521], [2.4041763769766282, 48.865857779540924], [2.404335831577476, 48.86576995417721], [2.4044894842476072, 48.86568544796783], [2.404643137792726, 48.865600940662176], [2.404802589447161, 48.86551311554872], [2.404806746248914, 48.865509131463256], [2.404856248266155, 48.86541400449947], [2.404910136335388, 48.865310439230925], [2.404959637975037, 48.86521531220732], [2.405013524270113, 48.865111746866845], [2.405024907974186, 48.86510827984656], [2.405029613624037, 48.86508965453485], [2.405032879560197, 48.865086207413945], [2.405176408273329, 48.86499174463089], [2.405318427627587, 48.864899894846296], [2.405461955309643, 48.86480543170489], [2.405603973642289, 48.86471358246529], [2.40560566929032, 48.864712634888456], [2.4057748690598, 48.864632762940765], [2.405942635233064, 48.86455352576347], [2.406111833969162, 48.86447365332792], [2.406279597764706, 48.86439441476086], [2.406448796830394, 48.86431454184423], [2.40661655960114, 48.86423530279343], [2.406785757633445, 48.864155429388966], [2.406953519369059, 48.86407619075377], [2.407122716367986, 48.86399631686145], [2.407290477088948, 48.863917076843244], [2.407459673054499, 48.8638372024631], [2.407627432750471, 48.863757961961234], [2.407686407958135, 48.86373168733809], [2.407683010781575, 48.863724880504655], [2.407650718537803, 48.863691927129636], [2.407544150938704, 48.863579591817874], [2.407432111891221, 48.863465255254056], [2.407325545227058, 48.86335291972466], [2.407213508509856, 48.86323858293952], [2.407106942780819, 48.86312624719249], [2.406994905667797, 48.86301191017255], [2.406888340873675, 48.86289957420789], [2.406776304727869, 48.86278523695992], [2.406669740868854, 48.86267290077764], [2.406557705690252, 48.86255856330167], [2.406451142755886, 48.86244622780103], [2.406368618064363, 48.862362006138724], [2.406332584119689, 48.862342841391815]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 30, "zemmour_eric": 55.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "20-26", "circ_bv": "15", "num_bureau": 26, "roussel_fabien": 31.0, "nb_emargement": 1036.0, "nb_procuration": 66.0, "nb_vote_blanc": 12.0, "jadot_yannick": 80.0, "le_pen_marine": 61.0, "nb_exprime": 1018.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1387.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1036, "quartier_bv": "78", "geo_point_2d": [48.86399173851161, 2.4053737979633585], "melenchon_jean_luc": 502.0, "poutou_philippe": 7.0, "macron_emmanuel": 216.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.284517905923893, 48.87269535914887], [2.284547182789705, 48.872684241069784], [2.284559231473264, 48.8726391309028], [2.284559652753023, 48.87263883303959], [2.284574086711619, 48.872621160847494], [2.284606149985478, 48.872496900240314], [2.284627237508841, 48.872417948668684], [2.284660373471933, 48.87229388779565], [2.284692436338493, 48.87216962712855], [2.284725572000678, 48.87204556531032], [2.2847576345465, 48.87192130549709], [2.284790769895433, 48.871797243632926], [2.284822830781973, 48.87167298286686], [2.2848559658053142, 48.871548921856], [2.284888027746724, 48.87142466105271], [2.284921162456821, 48.871300599995934], [2.284953224089855, 48.8711763391472], [2.28498635849906, 48.87105227714523], [2.285018419811379, 48.8709280171504], [2.285051553907348, 48.870803955102474], [2.285083614923645, 48.87067969416297], [2.285116748694041, 48.870555632968404], [2.285148809402076, 48.87043137198351], [2.28516750352785, 48.87035891445607], [2.28520063690675, 48.87023485230299], [2.2852165767119272, 48.87021954348262], [2.285126060933419, 48.87017710054784], [2.284978767339096, 48.87009459243189], [2.2848292184327432, 48.87001036189108], [2.284681925780077, 48.86992785339743], [2.284532377832414, 48.86984362247306], [2.284519204412264, 48.86984193299735], [2.284347601389087, 48.86987977777506], [2.284174291573854, 48.8699177991637], [2.284002689413369, 48.869955643452506], [2.283829379093973, 48.86999366433907], [2.283657775082149, 48.870031507223395], [2.283484464258594, 48.87006952760796], [2.283468125876981, 48.87006521546123], [2.28339176039862, 48.869963089798034], [2.283288066730713, 48.86983441089447], [2.283211701956099, 48.86973228419579], [2.283108010555628, 48.86960360511751], [2.283031646472278, 48.86950147828261], [2.2829279559760263, 48.8693727990215], [2.282851591208572, 48.86927067294154], [2.282832570225707, 48.86926685456008], [2.282693797592369, 48.869319494600404], [2.282553037113079, 48.86936707992136], [2.2824142639426492, 48.86941971873356], [2.282273502937282, 48.86946730372148], [2.282255006520255, 48.86946320779819], [2.282172634255073, 48.86935054897438], [2.282091146276188, 48.86924072023575], [2.28200877335413, 48.86912806126838], [2.2819272860687683, 48.86901823239606], [2.281844915216086, 48.868905573301404], [2.281763428636535, 48.86879574339617], [2.281681057126872, 48.86868308415793], [2.281599571228532, 48.8685732550183], [2.281517201788216, 48.86846059565279], [2.281435716583371, 48.86835076637953], [2.2813533464860702, 48.86823810687041], [2.281271861974613, 48.868128277463526], [2.2811903791700052, 48.868018447998395], [2.281108010128756, 48.86790578828659], [2.281105929061456, 48.867871962062715], [2.2810866978906432, 48.867859910390976], [2.281077840372629, 48.867858865205555], [2.281036398651776, 48.867900103244324], [2.280947368824806, 48.86799665403432], [2.280854631631514, 48.868098762036546], [2.280765601128024, 48.868195312674], [2.2806728632247832, 48.86829742051704], [2.280583832032549, 48.86839397190123], [2.280491092056186, 48.86849607957692], [2.280493505591823, 48.86850728917685], [2.280623644097941, 48.86858707919217], [2.280755774100224, 48.86866681537279], [2.2808859133942843, 48.868746605990744], [2.281018044214966, 48.86882634097107], [2.281020613812006, 48.86883751282172], [2.280916427175842, 48.8689551799985], [2.280815716755696, 48.869070155528554], [2.280711529191397, 48.869187822502234], [2.280610817856805, 48.86930279873497], [2.280506629376779, 48.86942046460624], [2.280405915776956, 48.86953544063418], [2.280301726356245, 48.869653107201614], [2.280201013217557, 48.86976808304116], [2.280096822881207, 48.86988574850618], [2.279996108840455, 48.870000724149094], [2.2798953929918993, 48.870115699687105], [2.279791201257462, 48.87023336574839], [2.279690485869928, 48.870348341097994], [2.279586293219731, 48.87046600605684], [2.27948557556699, 48.870580981201606], [2.279381383339366, 48.87069864686481], [2.279345137590842, 48.87071643896461], [2.279362044572557, 48.87073522019101], [2.279354437132162, 48.87088166269746], [2.27934584453188, 48.87102609370991], [2.279338238366693, 48.87117253618499], [2.279329645673513, 48.87131696715826], [2.279322039420209, 48.87146340959374], [2.279313446634129, 48.871607840527815], [2.279318465923844, 48.87161516894257], [2.279462592503415, 48.8716925161175], [2.279602258827425, 48.87176906282946], [2.279746386254218, 48.87184640965194], [2.279886053407914, 48.87192295602212], [2.280030181694365, 48.87200030159284], [2.280169849677851, 48.872076847621216], [2.280309519434989, 48.872153393489505], [2.280453648975437, 48.872230739433455], [2.280467257466804, 48.87223699164728], [2.280482887438951, 48.87223507916116], [2.280681397676767, 48.87225831431332], [2.280879864130249, 48.87228117834139], [2.28107837472093, 48.87230441283425], [2.281276841524305, 48.87232727620314], [2.281475352467639, 48.87235051003669], [2.281673819620899, 48.87237337274642], [2.281872330917079, 48.87239660592065], [2.282070798420214, 48.87241946797128], [2.282269310069028, 48.87244270048624], [2.282467776558864, 48.872465561869504], [2.282666288560404, 48.87248879372513], [2.282864756763262, 48.87251165445746], [2.28306326911752, 48.872534885653764], [2.283261737670328, 48.872557745726915], [2.283460250377295, 48.87258097626392], [2.283658719279839, 48.87260383567796], [2.283857232339505, 48.872627065555626], [2.2840557015919822, 48.87264992431046], [2.284254215004338, 48.87267315352881], [2.28445268324326, 48.87269601161636], [2.284517905923893, 48.87269535914887]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 121, "zemmour_eric": 271.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "16-58", "circ_bv": "04", "num_bureau": 58, "roussel_fabien": 11.0, "nb_emargement": 1203.0, "nb_procuration": 61.0, "nb_vote_blanc": 14.0, "jadot_yannick": 26.0, "le_pen_marine": 58.0, "nb_exprime": 1188.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1601.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1206, "quartier_bv": "63", "geo_point_2d": [48.87082703503082, 2.2821936279277932], "melenchon_jean_luc": 67.0, "poutou_philippe": 1.0, "macron_emmanuel": 601.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.290090817275724, 48.84804698731359], [2.290093703379334, 48.848037893879685], [2.290099943233908, 48.84803269390706], [2.290270547522038, 48.84796772872645], [2.290449559865355, 48.8478994207653], [2.290620163281456, 48.84783445507841], [2.290799174708715, 48.847766146586004], [2.290969777252585, 48.84770118039279], [2.291148786401166, 48.84763287136101], [2.291319388073007, 48.84756790466153], [2.291498397668153, 48.84749959510658], [2.291668998467763, 48.84743462790082], [2.29184800714685, 48.84736631781456], [2.29201860707443, 48.84730135010252], [2.292197613462636, 48.847233040376295], [2.2923682125302, 48.84716807125865], [2.292493094924954, 48.84712041502899], [2.292495177733082, 48.84711605373572], [2.292480337022123, 48.847101272151306], [2.292387271766188, 48.846996014104256], [2.292289528624591, 48.84688745641161], [2.292279012093255, 48.84688309163968], [2.2920790584109643, 48.84687145172623], [2.291875585706268, 48.84685985990035], [2.291675632215545, 48.84684821841311], [2.2914721596912973, 48.84683662590094], [2.291272206367611, 48.8468249846385], [2.291068735398649, 48.84681339054872], [2.291056638692796, 48.84680238348743], [2.291111003149215, 48.84664889979841], [2.2911630241321292, 48.84649807329563], [2.29115501797297, 48.84648778658563], [2.290970639534012, 48.84643662274083], [2.290787801598306, 48.84638583558005], [2.290603423892695, 48.846334670265385], [2.290420586672531, 48.846283882538806], [2.290236209675993, 48.84623271755283], [2.290053373171372, 48.84618192926036], [2.289868996908301, 48.8461307628045], [2.289686161119231, 48.84607997394621], [2.289501785565025, 48.846028807819074], [2.289318951866344, 48.845978017503775], [2.28913457567089, 48.84592685079794], [2.2889517426755, 48.845876060816074], [2.288767367213445, 48.845824892640366], [2.288584534933613, 48.84577410209271], [2.288401701647577, 48.84572331125526], [2.288217328616348, 48.84567214313224], [2.288214259746729, 48.845670958395544], [2.288188498411221, 48.84565761501605], [2.288147781023132, 48.84563675837127], [2.288115684228346, 48.84559681809074], [2.288104607492624, 48.845598294591646], [2.288053440439232, 48.845619100034355], [2.287863146339494, 48.845698841161536], [2.287684865847412, 48.84577133087412], [2.287494570615586, 48.84585107230341], [2.287316290452654, 48.84592356146497], [2.287138008443499, 48.84599604944875], [2.286949821115938, 48.846075181103565], [2.286947970528438, 48.84607608382967], [2.286779121172898, 48.8461740651635], [2.286627057745337, 48.846263597873744], [2.286474992432812, 48.84635313037542], [2.286306141290424, 48.846451111017394], [2.286154074879333, 48.846540643096084], [2.285985223888653, 48.846638623276746], [2.285931994704339, 48.846669961459064], [2.285921818625035, 48.846672516077106], [2.285906687754488, 48.84668124224669], [2.285807848029522, 48.8467394347912], [2.285703679611552, 48.84680282434927], [2.285688528485501, 48.84681371874025], [2.28574149349437, 48.84685387416013], [2.285842806483664, 48.846988314454485], [2.285942899518606, 48.84712102777589], [2.286044213546931, 48.84725546786745], [2.286144307607778, 48.847388180988546], [2.28614512196159, 48.84738911579109], [2.286220624290209, 48.84746488629504], [2.286300344220167, 48.8475456455], [2.286375847001249, 48.84762141589537], [2.286455567398882, 48.84770217588481], [2.28645648650562, 48.84771347469043], [2.286471939451439, 48.847719757180194], [2.286472198714165, 48.8477200303346], [2.286541122218104, 48.84779564625345], [2.286609261102954, 48.84787244910593], [2.28667818500735, 48.847948064935466], [2.286746324281178, 48.84802486859867], [2.286765163113915, 48.8480280081684], [2.286929104324449, 48.84796221116855], [2.287092674262432, 48.84789632898883], [2.287256613282595, 48.847830531524345], [2.287420182380938, 48.84776464978838], [2.287584121935984, 48.84769885187545], [2.2877476888566672, 48.8476329687765], [2.287911627583968, 48.847567170407096], [2.288075193665029, 48.8475012877519], [2.2882391315645902, 48.847435488925925], [2.288402698193215, 48.84736960492404], [2.288566633902421, 48.847303805633395], [2.288730199691433, 48.8472379220753], [2.28889413593551, 48.84717212233628], [2.289057699546853, 48.84710623741524], [2.289076692859457, 48.84710952593793], [2.289182530913977, 48.84723447312861], [2.289275452013989, 48.84734306587147], [2.289276153460823, 48.84735088461936], [2.289226673634933, 48.8474300315623], [2.289176733131983, 48.847510871944834], [2.289178766728109, 48.84751993073664], [2.289315838755633, 48.84763151259865], [2.289451526884133, 48.847741493295445], [2.289588600090691, 48.84785307392347], [2.289724288008974, 48.84796305428094], [2.289727697752311, 48.84796503693654], [2.289871408868383, 48.84802279459652], [2.29004194353461, 48.84809249202597], [2.290062251400669, 48.84808724332886], [2.290069016489799, 48.8480710976156], [2.290077006568893, 48.84805355796122], [2.290090817275724, 48.84804698731359]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 101, "zemmour_eric": 116.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-9", "circ_bv": "12", "num_bureau": 9, "roussel_fabien": 20.0, "nb_emargement": 1239.0, "nb_procuration": 71.0, "nb_vote_blanc": 3.0, "jadot_yannick": 89.0, "le_pen_marine": 71.0, "nb_exprime": 1226.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1543.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1238, "quartier_bv": "59", "geo_point_2d": [48.84688948024053, 2.288789222671125], "melenchon_jean_luc": 209.0, "poutou_philippe": 4.0, "macron_emmanuel": 558.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.317465656560742, 48.87420128655666], [2.3174888136501552, 48.87419984564685], [2.317599063769454, 48.874218858517146], [2.317802875394201, 48.874253618669044], [2.317994729027789, 48.87428670412075], [2.318198541182062, 48.874321463596814], [2.318390396680198, 48.87435454842011], [2.318594208000768, 48.87438930721265], [2.318786064000025, 48.87442239139973], [2.318989875850102, 48.874457149516466], [2.319181732350673, 48.8744902330674], [2.319385546093475, 48.87452499051612], [2.319577401731925, 48.874558073423124], [2.319582297425955, 48.87455966160535], [2.319737270563662, 48.87464764343794], [2.319903644146542, 48.874732562827695], [2.319939674244967, 48.87475475727516], [2.319999384286413, 48.87471334014675], [2.320083176428575, 48.87459565637982], [2.320170446659446, 48.87447449296594], [2.3202542380191318, 48.87435680995307], [2.3203415088151083, 48.874235646395995], [2.320425299404064, 48.87411796323794], [2.320512568038717, 48.873996799522196], [2.320596357856855, 48.873879116218895], [2.320683625705143, 48.87375795145297], [2.320767414752674, 48.87364026800448], [2.32085468315435, 48.873519103994646], [2.320938471431182, 48.87340142040094], [2.321025737671582, 48.873280256232455], [2.321109525177726, 48.873162572493584], [2.321196790619963, 48.873041408174146], [2.321280577367147, 48.872923723390834], [2.321367842011433, 48.87280255892048], [2.321451627976232, 48.872684874891235], [2.321538893185648, 48.87256371027771], [2.321622678379786, 48.87244602610329], [2.321709941427994, 48.87232486133116], [2.321793725863193, 48.87220717611225], [2.321880988113276, 48.8720860111892], [2.321964771766126, 48.871968326724414], [2.322052034581557, 48.87184716165821], [2.3221065516423502, 48.871770583000625], [2.322102130120342, 48.87176274447891], [2.322073292463668, 48.871755446678236], [2.321879240360143, 48.87177205821645], [2.321685312863969, 48.87178882753151], [2.321491259149104, 48.8718054384325], [2.321297332755391, 48.87182220802547], [2.321103278792446, 48.871838818296986], [2.320909350798025, 48.87185558635388], [2.320715297950268, 48.87187219600367], [2.320521369706586, 48.87188896343148], [2.320327316599038, 48.8719055733511], [2.320133388106302, 48.871922340149794], [2.319939333399177, 48.87193894853288], [2.319745406020458, 48.87195571471028], [2.319551351053545, 48.87197232336317], [2.31935742206253, 48.87198908890373], [2.319163368222591, 48.87200569603563], [2.318969438982454, 48.87202246094713], [2.318775383519469, 48.87203906834104], [2.318581455393372, 48.872055832631226], [2.318567820691953, 48.872051346437345], [2.318481382886235, 48.871950637959614], [2.318396956371331, 48.87185201024738], [2.318310520578232, 48.871751302535145], [2.318226093346786, 48.871652674676795], [2.318139658226476, 48.87155196592369], [2.318055233004782, 48.87145333793486], [2.317968797170669, 48.87135262993175], [2.317884372595674, 48.87125400180456], [2.317877239067463, 48.87124999055513], [2.317692033517662, 48.87120471339546], [2.317514497043277, 48.87116400696427], [2.317329292126185, 48.8711187283405], [2.317151756228337, 48.871078021368156], [2.316974220607973, 48.871037314130966], [2.316789016599283, 48.87099203556535], [2.316778828806935, 48.870992224733534], [2.316580611484375, 48.87104925455546], [2.316379857212228, 48.87110748367227], [2.316181639014159, 48.87116451282751], [2.315980883851807, 48.871222741269136], [2.315782663403382, 48.871279770649245], [2.31558190736264, 48.87133799751633], [2.315567272211935, 48.87133643261527], [2.315411061816929, 48.8712431471138], [2.315254983895627, 48.87115092337989], [2.315098775979448, 48.871057637463004], [2.314942699166997, 48.8709654133064], [2.314786492366395, 48.87087212696632], [2.314630416650853, 48.87077990328632], [2.314474209602593, 48.87068661651526], [2.31431813637074, 48.870594391521074], [2.314161930438047, 48.87050110432682], [2.314005858303176, 48.87040887980927], [2.313849653486041, 48.87031559219183], [2.313693582471623, 48.870223366352384], [2.313537378770042, 48.87013007831177], [2.313381307489373, 48.87003785294111], [2.313372299134062, 48.870035558300756], [2.313196905277416, 48.870033592419176], [2.313002164839718, 48.87003277612027], [2.31282677100631, 48.87003080969631], [2.312632030584818, 48.87002999279518], [2.312456636774757, 48.87002802582884], [2.312261895006274, 48.87002720831767], [2.312225184895946, 48.870055769199226], [2.3122652625132822, 48.87008274597608], [2.312416066997097, 48.870159681585676], [2.31258146295538, 48.87024314819525], [2.31273226700747, 48.87032008338747], [2.31289766398172, 48.87040354954805], [2.312901100083761, 48.870415286822364], [2.312807704275773, 48.870518958508065], [2.312716719085188, 48.870621029633206], [2.312623321178119, 48.87072470114789], [2.312532335266962, 48.87082677211387], [2.312438937987253, 48.870930443473206], [2.312347951355417, 48.87103251428003], [2.312254551976601, 48.87113618546837], [2.312163564623974, 48.871238256116015], [2.3120701658725142, 48.871341927149004], [2.311979176436049, 48.871443997629655], [2.31197873320431, 48.871452575713356], [2.31207183885604, 48.87157551501884], [2.312167589383515, 48.871702616303715], [2.312260695927916, 48.87182555543445], [2.312356446012593, 48.87195265653165], [2.312449554824806, 48.872075594596225], [2.3125453058179772, 48.87220269641287], [2.312539354691903, 48.87221468823963], [2.312362418573541, 48.87227498008625], [2.31217706812772, 48.872338421380846], [2.312000131169711, 48.87239871268521], [2.311814778490957, 48.87246215250463], [2.311637842056677, 48.87252244327457], [2.311452488484503, 48.872585883425145], [2.31127555121048, 48.87264617365279], [2.311090196768657, 48.87270961233604], [2.31091325729182, 48.87276990201357], [2.310727901956565, 48.87283334102794], [2.31072879676467, 48.87284958559856], [2.310931460974097, 48.87290706202399], [2.311118050235577, 48.872959895819655], [2.311320715291837, 48.87301737247956], [2.311507305343305, 48.873070205663176], [2.3115176031768803, 48.87308627227645], [2.311565650243325, 48.873094582437375], [2.31175223945653, 48.87314741522767], [2.311918559611008, 48.873198095101884], [2.312084880089137, 48.873248774742706], [2.312271470381457, 48.87330160671623], [2.312273742847592, 48.873302144088434], [2.31246595597035, 48.8733352567233], [2.312657802830896, 48.873368350755904], [2.312850016454087, 48.87340146187284], [2.313041865165792, 48.873434555295745], [2.313234077902279, 48.87346766668544], [2.313425927101742, 48.87350075949081], [2.313618140338531, 48.87353386936256], [2.313809990025943, 48.87356696155046], [2.314002205102524, 48.873600071710584], [2.314194053914477, 48.873633163273134], [2.314217726030205, 48.87364654348898], [2.314243376584617, 48.873647588881276], [2.314435225724808, 48.87368068005591], [2.314632619260807, 48.87371351577589], [2.3148244702543153, 48.87374660633251], [2.31502186429736, 48.87377944050944], [2.315213715780973, 48.87381253044019], [2.315411110319221, 48.873845363973295], [2.315602960929723, 48.87387845327047], [2.315800357314561, 48.87391128706684], [2.315992208415154, 48.87394437573816], [2.316189603943685, 48.8739772079836], [2.316381456897671, 48.87401029603695], [2.316578852921483, 48.87404312763856], [2.316770706365443, 48.87407621506608], [2.316968102872634, 48.87410904692309], [2.317159955443448, 48.874142133717], [2.317357352457498, 48.87417496403094], [2.317438956803467, 48.87418903729035], [2.317465656560742, 48.87420128655666]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 119, "zemmour_eric": 157.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "8-12", "circ_bv": "01", "num_bureau": 12, "roussel_fabien": 2.0, "nb_emargement": 1039.0, "nb_procuration": 65.0, "nb_vote_blanc": 12.0, "jadot_yannick": 42.0, "le_pen_marine": 104.0, "nb_exprime": 1024.0, "nb_vote_nul": 3.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1325.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1039, "quartier_bv": "31", "geo_point_2d": [48.87253566445706, 2.316405031197583], "melenchon_jean_luc": 116.0, "poutou_philippe": 1.0, "macron_emmanuel": 441.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323034328562558, 48.88698204177591], [2.323069444935493, 48.88694740030032], [2.323219049594138, 48.88684724144133], [2.323368754098302, 48.88674701550408], [2.323518357593865, 48.8866468571521], [2.323668060945864, 48.88654663082233], [2.323817663301822, 48.886446471178914], [2.323967365501662, 48.88634624445664], [2.324116966694464, 48.886246085320195], [2.324266667742156, 48.88614585820549], [2.324416267795259, 48.88604569777759], [2.324565967690812, 48.88594547027035], [2.324569876828715, 48.88593878781804], [2.324564440990401, 48.885852166068], [2.324559031237313, 48.88576595275378], [2.32456226170476, 48.88575976020431], [2.324678132212949, 48.88566976672643], [2.324793114865757, 48.885579749238445], [2.324908985938065, 48.88548975553013], [2.32502396779444, 48.88539973780571], [2.325139836691884, 48.885309744750856], [2.325254817751736, 48.885219726790005], [2.325267228328146, 48.885206595458], [2.3252590259060613, 48.88519890222668], [2.325129899384634, 48.885130665321064], [2.324982679727864, 48.885052447118866], [2.324829089438485, 48.88497128166955], [2.3246818706842323, 48.88489306308613], [2.324528281333792, 48.88481189723918], [2.324381063470284, 48.884733679173806], [2.324227475058672, 48.88465251292925], [2.324080259472829, 48.884574293591115], [2.323926672000246, 48.88449312694892], [2.323779455953214, 48.884414907221874], [2.323632240348331, 48.8843366873083], [2.3234786542748243, 48.88425552007385], [2.323467262131011, 48.884253746073234], [2.32322496549617, 48.884288081069194], [2.322993824738715, 48.884320835578755], [2.322985984083948, 48.88432405671563], [2.322857801938149, 48.884431185043], [2.322730701524088, 48.88453740742281], [2.322602518327968, 48.884644535456104], [2.322475418236051, 48.88475075755203], [2.322347232626107, 48.88485788528349], [2.322220131492735, 48.8849641070878], [2.322093028465531, 48.8850703296385], [2.321964842657504, 48.88517745603786], [2.321837738588819, 48.885283678296936], [2.321709551730441, 48.885390804402235], [2.321706718048894, 48.88539530119022], [2.321689950835205, 48.8854871636542], [2.321673447787084, 48.88557758597832], [2.321656680444296, 48.88566944932164], [2.321640177280734, 48.885759871626185], [2.321638371144195, 48.88577185126538], [2.3216514227273892, 48.885777533434734], [2.321765069120143, 48.88587523567456], [2.321889035448518, 48.885981811477585], [2.322002682744615, 48.88607951257445], [2.322126651409231, 48.88618608811936], [2.322240298233332, 48.8862837889648], [2.3223642678705723, 48.88639036424391], [2.322477915574612, 48.886488065744935], [2.322601886196185, 48.886594639858906], [2.322715536155522, 48.88669234112395], [2.322839506386089, 48.88679891496439], [2.322911905986113, 48.88686115419274], [2.3229115664201982, 48.88686388083773], [2.322928826184554, 48.88687569939807], [2.322963179082898, 48.88690523157134], [2.323004430403813, 48.88694069334518], [2.323012063134382, 48.88694227165648], [2.3230251131480832, 48.886980835833306], [2.323032937200318, 48.88698185943943], [2.323034328562558, 48.88698204177591]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 70, "zemmour_eric": 74.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-3", "circ_bv": "03", "num_bureau": 3, "roussel_fabien": 19.0, "nb_emargement": 1243.0, "nb_procuration": 94.0, "nb_vote_blanc": 21.0, "jadot_yannick": 139.0, "le_pen_marine": 50.0, "nb_exprime": 1215.0, "nb_vote_nul": 7.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1515.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1243, "quartier_bv": "67", "geo_point_2d": [48.88551874355891, 2.3233148611535275], "melenchon_jean_luc": 254.0, "poutou_philippe": 3.0, "macron_emmanuel": 559.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.398363943371222, 48.88412904974182], [2.398379885835235, 48.884126327556274], [2.398580569064781, 48.884091999533595], [2.398782013099342, 48.88405777571957], [2.398982695799629, 48.88402344702079], [2.399184137941247, 48.88398922252122], [2.399384820112269, 48.88395489314624], [2.399586261724424, 48.88392066796802], [2.3997869433558052, 48.88388633881618], [2.399988384448853, 48.88385211205998], [2.400032598171543, 48.88384733518074], [2.400035015607979, 48.88384156103968], [2.400045749743907, 48.883822304528785], [2.400045916402563, 48.88382216057266], [2.400046083071476, 48.88382201571722], [2.400154669381834, 48.88372495158204], [2.400255305024365, 48.883637976610906], [2.400363890561011, 48.88354091226972], [2.400464524134894, 48.88345393710135], [2.400573108897837, 48.8833568725542], [2.400673743130223, 48.88326989720223], [2.400782325755901, 48.88317283244228], [2.400928530397436, 48.88304647055438], [2.400946450575105, 48.88303098300708], [2.4010550335682472, 48.88293391708628], [2.40112459976761, 48.88287379264511], [2.401128953725513, 48.88286526004069], [2.401089602493249, 48.88284463951786], [2.400901089365714, 48.88281399793299], [2.400713679251762, 48.8827836250729], [2.400525166566283, 48.8827529828945], [2.400337758254712, 48.88272260945111], [2.400149246011295, 48.8826919666791], [2.399961836775003, 48.882661592638776], [2.399773324973657, 48.88263094927317], [2.399585916186572, 48.88260057374346], [2.399397404816936, 48.88256993068352], [2.399209996468604, 48.88253955456371], [2.399021485551525, 48.88250891001094], [2.39883407899522, 48.88247853420712], [2.398645567156688, 48.882447889053914], [2.398458161039243, 48.88241751265997], [2.398269651006252, 48.88238686692004], [2.398082243964231, 48.882356489929144], [2.397893734373346, 48.882325843595616], [2.3977063277702, 48.88229546601467], [2.397517818621427, 48.88226481908753], [2.397330412457162, 48.882234440916484], [2.397141903750509, 48.88220379339579], [2.396954499388671, 48.882173414641485], [2.396951305676987, 48.88217260534898], [2.396754708045318, 48.88210292167842], [2.39654293397557, 48.88202795947889], [2.396536263539451, 48.882017582702964], [2.3965908891897563, 48.88189046482931], [2.396645146826364, 48.88176484064305], [2.396699771956209, 48.881637721791265], [2.396754030430372, 48.88151209753368], [2.396750051029856, 48.88150295740859], [2.396658344676585, 48.88144837649181], [2.396576913335149, 48.88139836011259], [2.396556459673781, 48.88138683196996], [2.396548584840267, 48.88138826087852], [2.396437839467368, 48.88146955936269], [2.396280292818295, 48.881584397765394], [2.396169546599055, 48.88166569688617], [2.396011998765014, 48.88178053491537], [2.39590125172028, 48.88186183287417], [2.395898325548469, 48.881870406678935], [2.395951886523405, 48.88198920277776], [2.396009600606311, 48.882106760733535], [2.396063162078062, 48.88222555675709], [2.396120875310652, 48.88234311462709], [2.396115728835897, 48.88235324925657], [2.395969469229882, 48.882420844045036], [2.395827822298214, 48.88248632423158], [2.395681563308313, 48.88255391866704], [2.39553991565269, 48.88261939850503], [2.3953936559258002, 48.88268699168131], [2.395252007546223, 48.88275247117077], [2.395247665585802, 48.88275577854371], [2.39515521806665, 48.882876372504334], [2.395063213003028, 48.88299734363705], [2.394970765991475, 48.88311793743571], [2.394878758698689, 48.88323890929248], [2.394877595893306, 48.88324016876656], [2.39480102247339, 48.88330956219633], [2.394718509164818, 48.88338503286432], [2.394716149770201, 48.88338869737905], [2.394683161638794, 48.88350935048292], [2.394645671586408, 48.88365091979466], [2.394641373085694, 48.88365294222733], [2.394637261716476, 48.88367300247435], [2.394637101603063, 48.88367352057552], [2.394608570857732, 48.88377176789515], [2.394561287037054, 48.88390392925001], [2.394523831810071, 48.88400667928747], [2.3944765475716, 48.8841388396813], [2.394439092008458, 48.88424158967031], [2.394391807331073, 48.88437375090175], [2.394354351442332, 48.88447649994304], [2.394363047187878, 48.884487076820236], [2.394447041911917, 48.88450674541733], [2.394519030272208, 48.88452284677158], [2.394542851836164, 48.88452989653291], [2.394547887297517, 48.88452865125088], [2.394650622611759, 48.8845516286564], [2.394730288941932, 48.88457015460981], [2.39473960340834, 48.884570095576684], [2.394926741757615, 48.8845238943684], [2.3951098644684032, 48.88447881022549], [2.395297000797643, 48.88443260842778], [2.395480122866872, 48.88438752371481], [2.395663244619024, 48.88434243871991], [2.395850381320295, 48.884296236957724], [2.396033502430882, 48.884251151392775], [2.396220637122445, 48.884204948141914], [2.396403757591461, 48.88415986200696], [2.39659089299006, 48.88411365818044], [2.396599655406774, 48.88410627571714], [2.396626238104591, 48.88395564866763], [2.396651882624675, 48.883798652341426], [2.396669339950085, 48.88379099802442], [2.396840944220907, 48.88382477614498], [2.397046841480289, 48.883865150600975], [2.397218446240421, 48.88389892817821], [2.397424342711669, 48.88393930287474], [2.397595949324489, 48.88397307991547], [2.397801846391991, 48.884013453060824], [2.397973452130424, 48.88404722955134], [2.398179351147353, 48.88408760205166], [2.3983509573749773, 48.88412137799886], [2.398363943371222, 48.88412904974182]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 32, "zemmour_eric": 68.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "19-20", "circ_bv": "16", "num_bureau": 20, "roussel_fabien": 24.0, "nb_emargement": 1036.0, "nb_procuration": 22.0, "nb_vote_blanc": 9.0, "jadot_yannick": 37.0, "le_pen_marine": 82.0, "nb_exprime": 1021.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1523.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1035, "quartier_bv": "75", "geo_point_2d": [48.88322454406188, 2.3973931616436404], "melenchon_jean_luc": 519.0, "poutou_philippe": 11.0, "macron_emmanuel": 192.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.363863178922768, 48.86750003402926], [2.363832727741581, 48.86750402713534], [2.36379812373917, 48.86750136102104], [2.363791318314299, 48.86753486757665], [2.363663662116126, 48.86760935048731], [2.363526267151505, 48.86769205361043], [2.363398611552325, 48.86776653623508], [2.363261215752229, 48.867849239042215], [2.363254896851857, 48.86785138722713], [2.363045380301313, 48.86788114769264], [2.362847181418887, 48.867909202634486], [2.362637664402886, 48.86793896238473], [2.362439465081017, 48.86796701664997], [2.362241266908732, 48.86799507059352], [2.3620317492012273, 48.868024829280856], [2.36183354922625, 48.86805288254057], [2.361642978765358, 48.868080401485436], [2.361444778369682, 48.86810845409995], [2.361254208874212, 48.868135971532396], [2.361063637814344, 48.868163488653515], [2.360865436790461, 48.86819154030656], [2.360674865310907, 48.8682190577066], [2.360476663877389, 48.86824710781519], [2.360286093352255, 48.86827462460209], [2.360087891486929, 48.868302674964774], [2.359897319201034, 48.86833019022475], [2.359699116914951, 48.86835823994226], [2.359601288445834, 48.86837208442462], [2.359410715638037, 48.868399599807354], [2.359379874403786, 48.86839145218922], [2.359332475041798, 48.86846279771096], [2.359368558550588, 48.86859393936995], [2.359402370485528, 48.86872069445096], [2.359394546780295, 48.86873045179331], [2.359230502958795, 48.86877922628965], [2.359064654883992, 48.86882869508273], [2.358900609081043, 48.86887746911528], [2.358734761743261, 48.868926937454184], [2.35857071532205, 48.868975711030295], [2.358404867347235, 48.86902517980698], [2.358240820318839, 48.869073952027314], [2.358074970354772, 48.86912342033516], [2.357910924071314, 48.86917219210637], [2.357745073481083, 48.86922165995274], [2.357740245648335, 48.869235634079054], [2.357872008931459, 48.8693392552517], [2.357988600410454, 48.86943075272339], [2.357990234280525, 48.869432356916725], [2.358083565672298, 48.869549553173265], [2.35817771243656, 48.869667657551304], [2.358271043308511, 48.869784853629405], [2.358365190923212, 48.869902957834825], [2.358458524001663, 48.8700201537491], [2.358552672466716, 48.87013825778192], [2.358646006388572, 48.87025545352504], [2.358740155703987, 48.870373557385236], [2.358833490469261, 48.87049075295726], [2.358927640634947, 48.87060885664481], [2.358944392204442, 48.870613116598356], [2.359141860691587, 48.87056543793209], [2.359338377117826, 48.87051754699608], [2.359535844882056, 48.870469867675695], [2.359732359222394, 48.87042197608142], [2.359929827626923, 48.87037429611423], [2.360126341233332, 48.870326404768285], [2.360142260676735, 48.87032970860582], [2.36024219431227, 48.8704245771736], [2.360335545256974, 48.8705129828928], [2.360428895155213, 48.87060138852484], [2.360528831197327, 48.87069625683724], [2.360622181752051, 48.870784662303876], [2.360722118508741, 48.87087952953989], [2.360716463285929, 48.870892878799125], [2.360634767501717, 48.87091685229669], [2.36055653763231, 48.87094100973237], [2.360549941550464, 48.870952925807096], [2.360596312043212, 48.87101842054478], [2.360656275768275, 48.87110405480965], [2.360677891121223, 48.87111426713759], [2.360687017356293, 48.871112692575934], [2.360705303581343, 48.87109279704671], [2.36079205414296, 48.87099943954031], [2.360921989155567, 48.87086790897787], [2.361008737591064, 48.870774551288186], [2.361138671495559, 48.87064302046376], [2.361225420531317, 48.87054966260533], [2.361225778310552, 48.87054928049691], [2.361319401393414, 48.870443306447], [2.361427397702165, 48.87032361763166], [2.361521021321352, 48.87021764430892], [2.361629016698986, 48.87009795528725], [2.361722638150217, 48.86999198087867], [2.361830633959853, 48.86987229165792], [2.361924254595431, 48.86976631706999], [2.362032249473963, 48.86964662764289], [2.362125869293797, 48.86954065287562], [2.362233863241236, 48.869420963242206], [2.362327482245335, 48.869314988295606], [2.362435473898497, 48.86919529844856], [2.362529093450065, 48.869089323329916], [2.362637084172162, 48.86896963327655], [2.3627307015448222, 48.86886365797132], [2.362735040219888, 48.86886069436259], [2.362838959877134, 48.86881630128243], [2.362954977477386, 48.86876706120471], [2.362971932220723, 48.86876516390147], [2.362979373859964, 48.868755938503845], [2.363095389829871, 48.86870669828003], [2.363204619599836, 48.86865966749097], [2.363205814054916, 48.86865908927464], [2.363346822354372, 48.86858293410738], [2.363488486629825, 48.8685062777294], [2.363629494113373, 48.8684301213193], [2.363771157557286, 48.86835346459621], [2.363912165577004, 48.86827730784983], [2.36405382818938, 48.868200650781574], [2.364194834008158, 48.8681244945837], [2.364336495789004, 48.86804783717028], [2.364477500791768, 48.867971679729635], [2.364619161741188, 48.86789502197108], [2.36465411627564, 48.867851424914015], [2.364645423814335, 48.867846216554774], [2.36459262358076, 48.8678231820352], [2.36440817320425, 48.867745264958565], [2.364253334101615, 48.86767771599687], [2.364068886121788, 48.86759979749509], [2.363914046528337, 48.867532248078334], [2.363863178922768, 48.86750003402926]]], "type": "Polygon"}, "properties": {"lassalle_jean": 20.0, "pecresse_valerie": 52, "zemmour_eric": 95.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-9", "circ_bv": "05", "num_bureau": 9, "roussel_fabien": 32.0, "nb_emargement": 1343.0, "nb_procuration": 102.0, "nb_vote_blanc": 21.0, "jadot_yannick": 124.0, "le_pen_marine": 107.0, "nb_exprime": 1319.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 0, "nb_inscrit": 1642.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1342, "quartier_bv": "39", "geo_point_2d": [48.869174876395626, 2.3608662663625997], "melenchon_jean_luc": 376.0, "poutou_philippe": 14.0, "macron_emmanuel": 457.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.337263603064736, 48.891437729256495], [2.337272917920037, 48.89143860279181], [2.33738922808614, 48.89142595084076], [2.337564648308382, 48.89140763898887], [2.337766542041706, 48.89138567634425], [2.337941963347897, 48.89136736484575], [2.338143856765901, 48.8913454015642], [2.338319276439936, 48.89132708950476], [2.338521170906383, 48.89130512559377], [2.338696590323447, 48.891286812081695], [2.338872009605693, 48.891268499211556], [2.339073902248125, 48.89124653436], [2.339276333118527, 48.89122319707165], [2.339469107242797, 48.89121130133553], [2.33947292418706, 48.891210691064714], [2.339502512612272, 48.89120284759113], [2.339564061826847, 48.891175710021095], [2.339573813325068, 48.891174307797854], [2.339598478053115, 48.89117594300151], [2.339636748938194, 48.89115775209048], [2.33969666744726, 48.89116412327167], [2.339864262891289, 48.89118163804969], [2.340083222537841, 48.89120491885137], [2.340250818231712, 48.89122243398696], [2.340469778222653, 48.891245714081016], [2.340637374189252, 48.89126322777566], [2.34065288742965, 48.89125260044886], [2.3406163547636, 48.89113086642866], [2.340580484277615, 48.89101145808457], [2.34054395194993, 48.89088972401557], [2.340508080420963, 48.89077031651529], [2.340471549795597, 48.890648582404914], [2.340435678610083, 48.890529173957454], [2.340399146959422, 48.89040743979076], [2.340363277458526, 48.89028803220214], [2.340326746146215, 48.890166297986575], [2.340290876988861, 48.8900468894508], [2.340254346015099, 48.88992515518641], [2.340218477178395, 48.88980574750191], [2.340221122386045, 48.889802348238454], [2.340205112175712, 48.88977010284734], [2.340201171094942, 48.88975867049218], [2.340189478832501, 48.88974740137113], [2.34014170198747, 48.88975247379427], [2.339946737300464, 48.88978096996092], [2.339735028610066, 48.88980971163026], [2.339540063486189, 48.889838207133266], [2.339328354338599, 48.8898669480821], [2.339133388777859, 48.889895442921485], [2.338921679173088, 48.88992418314982], [2.338858515960168, 48.88991977396426], [2.338795477246698, 48.88993563262736], [2.338793242881708, 48.8899479113678], [2.338603070425142, 48.88997372754098], [2.338423563415739, 48.88999809596991], [2.338233389228967, 48.89002391154723], [2.33805388324872, 48.89004827852915], [2.337863708695384, 48.890074093518166], [2.337684202369141, 48.89009845994481], [2.33749402744925, 48.89012427434556], [2.337314520776917, 48.89014864021688], [2.33712434547903, 48.89017445492858], [2.336944838460813, 48.89019882024463], [2.33675466280783, 48.89022463346876], [2.336575154079898, 48.89024899822197], [2.336565238532898, 48.89026114173262], [2.336634528925047, 48.8903755411616], [2.336703074289199, 48.890488709730626], [2.336772365287017, 48.89060310905608], [2.336840909898026, 48.89071627661591], [2.336910201501517, 48.89083067583794], [2.336978748063886, 48.89094384420219], [2.337048040284512, 48.89105824242146], [2.337116586082386, 48.89117141067579], [2.33718587889725, 48.89128580969079], [2.337254426658067, 48.89139897785034], [2.337263603064736, 48.891437729256495]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 56, "zemmour_eric": 62.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-36", "circ_bv": "18", "num_bureau": 36, "roussel_fabien": 16.0, "nb_emargement": 1221.0, "nb_procuration": 89.0, "nb_vote_blanc": 15.0, "jadot_yannick": 148.0, "le_pen_marine": 41.0, "nb_exprime": 1203.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1501.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1221, "quartier_bv": "69", "geo_point_2d": [48.890625329380995, 2.3387072400879485], "melenchon_jean_luc": 383.0, "poutou_philippe": 6.0, "macron_emmanuel": 440.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.311492522538888, 48.8818663202106], [2.311492206012705, 48.881853440819036], [2.311474024536317, 48.881825950621554], [2.311471631081631, 48.88180534928951], [2.3114692740106, 48.88180293271182], [2.311328329627217, 48.881699531346804], [2.311188302785912, 48.88159680238838], [2.311047359518263, 48.88149340067326], [2.310907335148934, 48.88139067137483], [2.310766392997007, 48.88128726930956], [2.310626368372632, 48.88118453965544], [2.310486345652367, 48.881081810735104], [2.310345405172082, 48.880978408145225], [2.310205382208668, 48.88087567796991], [2.310064442844185, 48.880772275029905], [2.310052081878518, 48.8807645711329], [2.310036778649714, 48.880767958870905], [2.309817495820092, 48.88078454941761], [2.309597980811128, 48.880801157110334], [2.309378697690118, 48.88081774775215], [2.309159183764788, 48.88083435464767], [2.30893989901266, 48.880850943578096], [2.308720384795554, 48.8808675505679], [2.308710438988752, 48.88087165256621], [2.308598563842746, 48.880987465084225], [2.308485736981936, 48.88110426215959], [2.308373860836652, 48.881220074443135], [2.30826103296796, 48.88133687128206], [2.30814915583513, 48.88145268243195], [2.308036326958546, 48.88156947903439], [2.307924448814471, 48.88168529084906], [2.307811618929981, 48.881802087215085], [2.307699739786391, 48.881917898795336], [2.307586908893984, 48.88203469492484], [2.307566776966126, 48.88203682502892], [2.30739753226375, 48.881945551041234], [2.30722987084585, 48.881855130440506], [2.307060625960908, 48.881763855953594], [2.306892965712913, 48.88167343486613], [2.306723723372532, 48.881582159895835], [2.306556064282355, 48.88149173922093], [2.306532853541583, 48.881485983932706], [2.306520431005466, 48.88149849457713], [2.3063656818180682, 48.88155466182619], [2.306210297674067, 48.88161097268573], [2.306055546454552, 48.881667139520296], [2.305900161651603, 48.88172344907231], [2.305745409763277, 48.88177961550029], [2.30559002427741, 48.88183592554328], [2.30558598348561, 48.88184945778451], [2.30570380829025, 48.88194567840107], [2.305821879025894, 48.88204209996902], [2.30593970470233, 48.88213832033658], [2.306057777675018, 48.882234741662955], [2.306175604223058, 48.88233096178147], [2.306293676705747, 48.88242738285044], [2.306411504113621, 48.88252360361924], [2.306529578833381, 48.882620024446574], [2.306647407124853, 48.882716244067154], [2.30676548135472, 48.88281266463703], [2.306883310517917, 48.882908884008536], [2.307001386984778, 48.883005304336805], [2.307119217019811, 48.88310152345934], [2.307237292996683, 48.883197943530135], [2.307231394657157, 48.883212033439044], [2.307031912108597, 48.883260444891455], [2.306831658971042, 48.88330904310824], [2.306632175679181, 48.88335745389039], [2.30643192317109, 48.8834060505429], [2.306232439136041, 48.8834544606548], [2.30603218450636, 48.883503057525786], [2.305832699728123, 48.88355146696737], [2.3056324457279382, 48.883600062274176], [2.305432960206523, 48.883648471045476], [2.305232704084741, 48.88369706657074], [2.3050332178201502, 48.88374547467174], [2.304832962327897, 48.88379406863278], [2.304824654034126, 48.883804149586815], [2.304827661998816, 48.883811829374466], [2.304856450495538, 48.88382313297416], [2.304910701865569, 48.88384490155206], [2.304910861935697, 48.8838449645354], [2.305098207421208, 48.8839185212401], [2.305226878042867, 48.883968573038814], [2.305229449090667, 48.883969348794565], [2.305279952242394, 48.883980576846], [2.3053300692954313, 48.883991718098414], [2.305331980815784, 48.88399225350062], [2.305502858430661, 48.88405058272331], [2.305672380306251, 48.884108448772004], [2.305841902558582, 48.88416631457761], [2.306012781315763, 48.88422464306333], [2.30618230432459, 48.88428250838085], [2.306353182480633, 48.88434083636671], [2.306522706246054, 48.88439870119618], [2.306693586528225, 48.884457028697945], [2.306863111050037, 48.8845148930393], [2.3070339921067182, 48.88457321914984], [2.307041107568637, 48.88457948281589], [2.307072621103865, 48.88468592406207], [2.30711795365437, 48.88483904237932], [2.307149467503745, 48.88494548358015], [2.307194801869762, 48.88509860184002], [2.307226316033292, 48.88520504299553], [2.307222232187715, 48.885214751039825], [2.307232383387378, 48.88522295772573], [2.307398061960728, 48.885275850873], [2.307553436930335, 48.8853254546958], [2.307708812195846, 48.88537505831478], [2.307874491725078, 48.88542795169475], [2.307891771952289, 48.885429013870194], [2.307901006347647, 48.885416433433846], [2.308037614142919, 48.885291030540316], [2.308173952549662, 48.88516655763198], [2.308310560407687, 48.88504115350714], [2.308446897507807, 48.884916680259714], [2.30844871159967, 48.884914391145024], [2.308513815139257, 48.88479196782049], [2.30857901349536, 48.88466936423041], [2.308644115058708, 48.88454694079988], [2.3087093127893272, 48.884424338010795], [2.308774413740039, 48.884301914482144], [2.308839610869063, 48.884179310695565], [2.308842469735695, 48.884176180433236], [2.308957795926669, 48.88409396000542], [2.309073134120787, 48.8840117323371], [2.309188459571361, 48.88392951257404], [2.30930379704897, 48.88384728377195], [2.309419123134751, 48.883765063782334], [2.309534459871998, 48.883682835645004], [2.309537349502267, 48.88367964258918], [2.30961553354192, 48.88352910438253], [2.309693517054139, 48.883378948966055], [2.309695640558001, 48.88337635314249], [2.309822641776677, 48.88326830914007], [2.309947954336612, 48.88316170229037], [2.310073265008028, 48.88305509619062], [2.310200264671701, 48.88294705085683], [2.3103255756736543, 48.882840444480024], [2.31045257427848, 48.8827323997568], [2.310577884259335, 48.88262579219587], [2.310704881817235, 48.88251774718391], [2.3108301894015613, 48.88241113933025], [2.310957187276078, 48.88230309403749], [2.311082493827421, 48.88219648589898], [2.311209490655129, 48.88208844031745], [2.311334796173397, 48.8819818318941], [2.311461790590688, 48.88187378601606], [2.311492522538888, 48.8818663202106]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 164, "zemmour_eric": 213.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-47", "circ_bv": "04", "num_bureau": 47, "roussel_fabien": 9.0, "nb_emargement": 1201.0, "nb_procuration": 82.0, "nb_vote_blanc": 13.0, "jadot_yannick": 51.0, "le_pen_marine": 43.0, "nb_exprime": 1187.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1452.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1202, "quartier_bv": "66", "geo_point_2d": [48.882840289091405, 2.3083324911208383], "melenchon_jean_luc": 87.0, "poutou_philippe": 0.0, "macron_emmanuel": 585.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.334997530569917, 48.891686722029725], [2.334952657856663, 48.89168346008747], [2.3348536898556222, 48.8916930745592], [2.334666571575418, 48.89171061507726], [2.334450280984351, 48.89173162643703], [2.334263162429707, 48.89174916632414], [2.334046870151827, 48.891770176946906], [2.333859751322851, 48.89178771620302], [2.3338573104738822, 48.89178810732065], [2.333745981032633, 48.89181331474225], [2.333678302735913, 48.89182671851459], [2.333661935534969, 48.89182806995526], [2.333651784587246, 48.89183242105708], [2.333534153845929, 48.89185571722681], [2.333343016186887, 48.89189352745929], [2.333157706592677, 48.89193022770051], [2.332966568386745, 48.89196803732955], [2.332781259625801, 48.89200473699337], [2.332590119509201, 48.89204254601138], [2.332404810217743, 48.89207924509016], [2.332213669554266, 48.8921170535047], [2.3320283597323, 48.89215375199839], [2.331837218521952, 48.892191559809525], [2.331651908169484, 48.89222825771822], [2.331460766412271, 48.89226606492587], [2.331275455529309, 48.892302762249514], [2.33108431323679, 48.892340567954435], [2.330899001811785, 48.89237726559231], [2.330821977809542, 48.89239249961518], [2.330793327741577, 48.8924047483815], [2.33080897644466, 48.89243735359005], [2.330928322649974, 48.89254503642778], [2.3310516761643783, 48.892657197668534], [2.331171023364107, 48.892764881142035], [2.331294377933727, 48.89287704121106], [2.331413726139234, 48.89298472442109], [2.331537081740978, 48.89309688511691], [2.331656429600205, 48.89320456715655], [2.331779786245634, 48.893316727579844], [2.331899136462931, 48.893424410262895], [2.332022494152057, 48.893536570413715], [2.332141845386904, 48.89364425193397], [2.332265204119739, 48.8937564118123], [2.332384556348871, 48.89386409396835], [2.332507916136956, 48.893976252674875], [2.332554368375005, 48.89401816281355], [2.332580706223339, 48.89403438859398], [2.332609081691626, 48.89402040309209], [2.332802925181834, 48.89398666417883], [2.332997898301059, 48.89395447807882], [2.333004141839074, 48.89395217101855], [2.333133765695351, 48.89386822890705], [2.333287748440929, 48.89376831630185], [2.333417371382237, 48.89368437386927], [2.333571354403567, 48.89358446089024], [2.333700975066185, 48.89350051812901], [2.333854956999644, 48.89340060476855], [2.333984578111031, 48.893316661693866], [2.334138557592703, 48.8932167479444], [2.33426817778914, 48.89313280454865], [2.334422157546674, 48.89303289042537], [2.334551775464353, 48.892948946701004], [2.334555438021431, 48.89294474383204], [2.334598757391438, 48.892825138933375], [2.334651350976563, 48.892688561344855], [2.334694669913102, 48.89256895638353], [2.334747262999354, 48.89243237782174], [2.334790580138637, 48.89231277279022], [2.334843172703047, 48.892176195053636], [2.334886490772672, 48.89205658996704], [2.3349390828267342, 48.89192001215648], [2.334968616812121, 48.89183846179995], [2.334985399736714, 48.8918245273484], [2.33498577581239, 48.891812061207666], [2.3349995580798693, 48.891774006404475], [2.335008835854684, 48.89172716896491], [2.334997530569917, 48.891686722029725]]], "type": "Polygon"}, "properties": {"lassalle_jean": 21.0, "pecresse_valerie": 55, "zemmour_eric": 82.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "18-40", "circ_bv": "03", "num_bureau": 40, "roussel_fabien": 29.0, "nb_emargement": 1285.0, "nb_procuration": 78.0, "nb_vote_blanc": 13.0, "jadot_yannick": 120.0, "le_pen_marine": 65.0, "nb_exprime": 1263.0, "nb_vote_nul": 10.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1591.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1286, "quartier_bv": "69", "geo_point_2d": [48.892738826076176, 2.33305315237784], "melenchon_jean_luc": 348.0, "poutou_philippe": 7.0, "macron_emmanuel": 492.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.258084587232748, 48.83810057816587], [2.25811042087005, 48.838109480325045], [2.258272739633363, 48.838167274420954], [2.258462594901387, 48.83823468963752], [2.258624914445098, 48.83829248324904], [2.258814770624673, 48.83835989789907], [2.258977090948882, 48.83841769102629], [2.259166948040004, 48.838485105109804], [2.259329269144508, 48.838542897752646], [2.259519127147179, 48.83861031126962], [2.259681449044953, 48.83866810252882], [2.259871307946397, 48.83873551637859], [2.260033630624458, 48.83879330715337], [2.260039234601773, 48.83880539254231], [2.259958636329671, 48.83890706919731], [2.25986334453972, 48.839021422397906], [2.259782745590457, 48.83912309891472], [2.259687454382061, 48.83923745196154], [2.259606854755635, 48.83933912834019], [2.259511561403999, 48.839453481216374], [2.259430961100398, 48.83955515745686], [2.259393528493781, 48.83960007878731], [2.259382106807334, 48.839624230916264], [2.259417628715241, 48.83964033109132], [2.259500657636771, 48.839746821951785], [2.259582726598651, 48.8398502246459], [2.259665756191746, 48.8399567153718], [2.259747825811647, 48.84006011793323], [2.259830856076518, 48.84016660852449], [2.259912926354447, 48.84027001095325], [2.259918484292499, 48.84027373726807], [2.260119114473591, 48.84034576805923], [2.260319742548221, 48.84041817802837], [2.260325797071097, 48.84042263138976], [2.260399224087639, 48.84053981956425], [2.260476208721442, 48.840659139602664], [2.260549636396596, 48.84077632855934], [2.2606266230993652, 48.840895647584816], [2.26070005008346, 48.841012836415885], [2.260777037479807, 48.841132155319286], [2.260794858689675, 48.84113692059887], [2.260959408325609, 48.841091204096266], [2.261118838115062, 48.8410465799596], [2.261283387181612, 48.84100086300765], [2.261442816417344, 48.84095623843559], [2.261607363552068, 48.84091052102595], [2.261766793609255, 48.84086589512758], [2.261931340161854, 48.84082017816788], [2.262090769665205, 48.84077555183418], [2.262125679565091, 48.84076637412393], [2.262128167792974, 48.84076125585129], [2.262081856644769, 48.84069120221996], [2.262007071293434, 48.84057853688121], [2.261924074172085, 48.8404529903571], [2.261849289503703, 48.8403403248957], [2.261766293141729, 48.84021477823536], [2.261691510505768, 48.84010211355895], [2.261608514903153, 48.839976566762374], [2.261533731600446, 48.839863901055615], [2.261450736757185, 48.839738354122765], [2.261375954124458, 48.83962568919266], [2.261292960040541, 48.83950014212357], [2.261218179465775, 48.839387476179915], [2.261217121012392, 48.839382847758976], [2.261227623677758, 48.83932205736867], [2.261238168627754, 48.83927270098046], [2.2612455342855142, 48.83924837882372], [2.261240016543955, 48.839243932416515], [2.261253162643292, 48.83916783929939], [2.261271052830705, 48.83905502793489], [2.261294701355581, 48.838918143484044], [2.261312589992362, 48.838805332979], [2.261336238307612, 48.83866844759008], [2.261354128131075, 48.838555637062015], [2.261348403453579, 48.83854733825578], [2.261330646851298, 48.83853913063458], [2.261202349645255, 48.83847982047153], [2.261022606036681, 48.838396570265346], [2.260876554435209, 48.83832905208261], [2.260696810517281, 48.838245800467966], [2.260550759760284, 48.83817828187834], [2.260371018232131, 48.83809503067064], [2.2602249669701058, 48.83802751076641], [2.260045226482211, 48.83794425905793], [2.259899177414257, 48.83787673965453], [2.259893623826509, 48.83786763958739], [2.259934791431157, 48.837729293326824], [2.259973468814216, 48.837600120551976], [2.260012146018347, 48.83747094685042], [2.260053312995217, 48.8373326005], [2.260091989802978, 48.83720342674167], [2.260133156356552, 48.83706508033068], [2.260142133954501, 48.83703509669704], [2.260135918768288, 48.83702029859111], [2.260107098562938, 48.83701439399399], [2.259926267083789, 48.83703338084768], [2.259718865853297, 48.83705578071199], [2.259538034089156, 48.837074766978056], [2.259330632539938, 48.83709716526912], [2.259149800490818, 48.83711615094755], [2.258942398597227, 48.83713854946392], [2.258761566263233, 48.83715753455478], [2.258554164038156, 48.83717993239715], [2.258373331431991, 48.837198916001064], [2.25816592887544, 48.8372213131695], [2.257985097333764, 48.837240297093544], [2.2579736762322202, 48.83725004293509], [2.257994082154553, 48.83738963218681], [2.2580131587428403, 48.83752498880182], [2.258033566240897, 48.83766457802095], [2.258052643045142, 48.837799933697084], [2.258073049381423, 48.837939523765954], [2.258092126388826, 48.83807487940249], [2.258084587232748, 48.83810057816587]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 112, "zemmour_eric": 140.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-45", "circ_bv": "14", "num_bureau": 45, "roussel_fabien": 9.0, "nb_emargement": 1045.0, "nb_procuration": 46.0, "nb_vote_blanc": 5.0, "jadot_yannick": 56.0, "le_pen_marine": 67.0, "nb_exprime": 1035.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1366.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "61", "geo_point_2d": [48.83896496786254, 2.2601226680171282], "melenchon_jean_luc": 158.0, "poutou_philippe": 5.0, "macron_emmanuel": 441.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.29639440456761, 48.839588530432536], [2.296380712847519, 48.83956128081815], [2.296377490347334, 48.8395586716764], [2.296246154582747, 48.839485881984615], [2.296111896004196, 48.839412130603826], [2.295980560979761, 48.839339340610955], [2.295846301792077, 48.83926558891437], [2.295844056095913, 48.8392611750742], [2.295817655887236, 48.83925467010624], [2.295816905709051, 48.83925422589779], [2.295692811390091, 48.83917510885511], [2.295532352672636, 48.8390722113083], [2.2954082592190392, 48.83899309395749], [2.29524780026126, 48.838890196004236], [2.2951237076728193, 48.838811078345366], [2.294963249837209, 48.838708179993674], [2.294839159488571, 48.83862906113547], [2.294837811860973, 48.838628064782014], [2.294767727435203, 48.8385687796597], [2.294702733369776, 48.83851281530629], [2.294700148913121, 48.838508978638615], [2.2946696766388612, 48.83840019266644], [2.294640533415726, 48.838288146196014], [2.294610061394989, 48.83817936018714], [2.294580918423576, 48.83806731368007], [2.294569917725604, 48.83805907621374], [2.294551403838127, 48.838059440997064], [2.294395219147773, 48.83813087334234], [2.294201743929269, 48.83821676500002], [2.2940455582884223, 48.83828819687874], [2.2938520819096713, 48.83837408795875], [2.293797955105397, 48.838398841995456], [2.293774959285662, 48.838409512179105], [2.293774130959552, 48.83841684885866], [2.293672069753412, 48.83846352620494], [2.293500143500963, 48.838541686149796], [2.293343954550437, 48.83861311798292], [2.2931720273126572, 48.83869127744576], [2.293015838838699, 48.838762707949634], [2.292843910615487, 48.83884086693039], [2.292687721243624, 48.838912296996284], [2.292515792022671, 48.838990456394306], [2.292359600390606, 48.839061886014164], [2.292187670196518, 48.83914004403082], [2.292031479028835, 48.839211473220736], [2.292026635021087, 48.839215412576614], [2.291946788510038, 48.83934154083961], [2.291866043503476, 48.83946838771196], [2.291786196216287, 48.83959451583924], [2.291705451789418, 48.83972136258251], [2.291625602363666, 48.839847490565944], [2.291544857166298, 48.83997433627279], [2.291465006964482, 48.840100464120454], [2.291384260972158, 48.84022731058955], [2.2913044099940603, 48.840353438301385], [2.291223663218991, 48.840480284633344], [2.29114381282714, 48.840606412217525], [2.291063063906882, 48.84073325840423], [2.291020235957023, 48.840758877655155], [2.291034151896471, 48.84077206574978], [2.291163082475064, 48.84085039866189], [2.291282383748453, 48.8409113471198], [2.291315410958386, 48.84092821980106], [2.291312609747343, 48.84094594507339], [2.291348100543018, 48.84094296885944], [2.291500428210686, 48.84102078974852], [2.291660139946901, 48.841099810748936], [2.291812469901305, 48.84117763123775], [2.291972182591213, 48.841256651810475], [2.291991049883198, 48.84126195194225], [2.292024453654392, 48.84122646086234], [2.292171680336293, 48.84113252866928], [2.292317197708846, 48.84103991274829], [2.292464423348426, 48.840945979279915], [2.292609939679963, 48.840853362987346], [2.292757164252811, 48.84075943004232], [2.29290267954334, 48.840666813378206], [2.293048195679057, 48.84057419653745], [2.293195417323401, 48.8404802621222], [2.293340932418113, 48.84038764490991], [2.29348815299576, 48.840293711018035], [2.29363366704948, 48.84020109343411], [2.293780886572636, 48.8401071591663], [2.293926399585369, 48.84001454121088], [2.2940736180662222, 48.83992060566778], [2.294089384955137, 48.839919096934096], [2.2942711301292222, 48.83998162598188], [2.294440883688916, 48.840039873167235], [2.294610637640185, 48.84009811920937], [2.294792384063936, 48.84016064745521], [2.29496213880125, 48.840218892992276], [2.29514388743024, 48.84028142070532], [2.295313641579213, 48.840339666628516], [2.29549539105092, 48.8404021938008], [2.295541654647019, 48.840418067624206], [2.29558540129874, 48.84042136960751], [2.295592098067374, 48.840409473506185], [2.295691898499951, 48.840305906931526], [2.29578597193823, 48.84020667389192], [2.295880045006153, 48.84010744166885], [2.295979842925944, 48.84000387481795], [2.296073915270787, 48.83990464152506], [2.296173713779473, 48.839801074501615], [2.296267785389291, 48.839701841038305], [2.296367581762046, 48.83959827382629], [2.29639440456761, 48.839588530432536]]], "type": "Polygon"}, "properties": {"lassalle_jean": 25.0, "pecresse_valerie": 109, "zemmour_eric": 131.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-66", "circ_bv": "13", "num_bureau": 66, "roussel_fabien": 9.0, "nb_emargement": 1266.0, "nb_procuration": 94.0, "nb_vote_blanc": 11.0, "jadot_yannick": 81.0, "le_pen_marine": 100.0, "nb_exprime": 1253.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1601.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1266, "quartier_bv": "57", "geo_point_2d": [48.839671292026445, 2.2935908247097325], "melenchon_jean_luc": 273.0, "poutou_philippe": 2.0, "macron_emmanuel": 489.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.318488436203809, 48.89960264275678], [2.3185000811440473, 48.89959285248101], [2.318694583422468, 48.8995454776961], [2.318889062077265, 48.89949810875617], [2.319083563647628, 48.89945073333546], [2.319278041594556, 48.899403363759816], [2.319472542457059, 48.89935598770335], [2.319667019696011, 48.89930861749196], [2.319861519850549, 48.89926124079965], [2.320055995017747, 48.89921386994481], [2.320250495828187, 48.89916649262446], [2.3204449702875, 48.8991191211339], [2.320639470389959, 48.89907174317778], [2.320833944141385, 48.899024371051524], [2.321028443535959, 48.898976992459566], [2.321222916579388, 48.89892961969762], [2.321417415265972, 48.89888224046987], [2.321611887601602, 48.89883486707221], [2.32180638420441, 48.898787488100226], [2.322000857196101, 48.89874011407459], [2.322007782650909, 48.89872700432761], [2.321909315617978, 48.898620279461014], [2.321799843862083, 48.898501626556346], [2.321701377693521, 48.8983949005976], [2.321591906885359, 48.898276247478385], [2.321493441557624, 48.89816952222596], [2.321383973072947, 48.89805086800078], [2.321285508597745, 48.89794414255535], [2.321176039696935, 48.89782548810794], [2.321077576074258, 48.8977187624696], [2.320968108109626, 48.89760010870697], [2.32086964535109, 48.89749338197645], [2.320760178334248, 48.8973747279993], [2.320661716416485, 48.89726800197514], [2.320552251723077, 48.89714934689203], [2.320453790657808, 48.89704262067491], [2.320344325536508, 48.89692396626882], [2.320245865335566, 48.89681723895953], [2.320240998540852, 48.89681411137434], [2.320078824647677, 48.896752785126736], [2.319915692897826, 48.89669109618381], [2.319753521146684, 48.89662976859735], [2.319590390167741, 48.89656807920435], [2.319428217807324, 48.896506752061995], [2.319265087611047, 48.89644506131974], [2.31910291738081, 48.89638373373772], [2.318939787955449, 48.89632204254541], [2.318777617127794, 48.896260714508244], [2.31861448847335, 48.89619902286592], [2.318452319775969, 48.89613769438913], [2.318289191892439, 48.89607600229678], [2.318282694618524, 48.89606615910148], [2.318311666980131, 48.89598425996806], [2.318345375666568, 48.895888970791034], [2.318358506150373, 48.895882021821606], [2.318565297626952, 48.89588049981623], [2.318756107708456, 48.895879171628444], [2.318946916404575, 48.89587784402809], [2.319153709211135, 48.89587632101449], [2.319344517886664, 48.895874992780676], [2.319551310670365, 48.89587346908049], [2.319742119325296, 48.89587214021318], [2.319948912085926, 48.8958706158264], [2.320139720731989, 48.89586928542637], [2.320346513469634, 48.895867760353056], [2.320537322083435, 48.89586643021877], [2.320744114798089, 48.895864904458875], [2.320934923391159, 48.895863573691145], [2.321141716082811, 48.89586204724469], [2.321332524667068, 48.89586071494418], [2.321539317335704, 48.8958591878112], [2.321730125887486, 48.895857855776434], [2.321752525188858, 48.895850399554995], [2.321726750703265, 48.89583760191347], [2.321600660557547, 48.89580441767385], [2.321408983367086, 48.895753530833844], [2.321240832941514, 48.89570927643326], [2.32104915645302, 48.895658389012915], [2.320881006640484, 48.89561413410327], [2.320689330853963, 48.895563246102604], [2.320521181654668, 48.8955189906839], [2.320514116159768, 48.89551472198057], [2.320430035046408, 48.895400311506826], [2.3203333018472723, 48.89527475759238], [2.320317513642016, 48.895253273997966], [2.320299157050518, 48.89524621444957], [2.320281752041171, 48.89525172653562], [2.320088307598918, 48.895206386220515], [2.319897890377308, 48.89516175436044], [2.319704446603737, 48.89511641342152], [2.319514030028501, 48.89507178184667], [2.319320586935271, 48.89502643938474], [2.319130169654299, 48.894981807188124], [2.318936727217907, 48.894936465001706], [2.318746311970594, 48.89489183129957], [2.318552870202799, 48.89484648848937], [2.318362455613733, 48.894801854173245], [2.318169014514542, 48.89475651073928], [2.317978600571844, 48.894711876708406], [2.317785160152944, 48.894666531751454], [2.317594746868395, 48.89462189710656], [2.317401307106429, 48.89457655242507], [2.317210894491825, 48.894531916266956], [2.31701745539848, 48.89448657096172], [2.316827043442043, 48.89444193418962], [2.316636631800296, 48.89439729801217], [2.3164431923434092, 48.894351951765984], [2.316252781371638, 48.89430731407534], [2.316059343947132, 48.894261967213176], [2.315868933633543, 48.89421732890853], [2.31567549687778, 48.89417198142264], [2.315485087210551, 48.89412734340327], [2.315291651135259, 48.89408199439436], [2.315101242126218, 48.89403735576104], [2.314907806707649, 48.893992007027656], [2.31488703497722, 48.89397433338196], [2.314874778875004, 48.89397567789974], [2.314846325028984, 48.89399328575324], [2.314822918100281, 48.89399749016939], [2.314627318114275, 48.894057854955726], [2.314431635514334, 48.89411824412999], [2.3142360346210262, 48.89417860827057], [2.3140403524653, 48.89423899770586], [2.3138447506647912, 48.89429936120071], [2.313649067613138, 48.89435974909075], [2.313644149149769, 48.894376831440894], [2.3135654259657112, 48.89438490940605], [2.313561567984526, 48.89439934932201], [2.313421967587784, 48.89447793955939], [2.313271833768959, 48.894565374332764], [2.31313223248961, 48.89464396422046], [2.312982097693604, 48.89473139951662], [2.312842496895704, 48.89480998906249], [2.312692361146143, 48.89489742308291], [2.312552758101874, 48.89497601227133], [2.312402621375214, 48.89506344681448], [2.312263017448425, 48.89514203565323], [2.312112879768208, 48.89522946892064], [2.311973276322766, 48.89530805741754], [2.311823137677318, 48.89539549030849], [2.311678463040008, 48.89547937690462], [2.311528323405428, 48.89556680941227], [2.311383649180923, 48.895650695646985], [2.311233508557208, 48.895738127771345], [2.311088832017748, 48.89582201362892], [2.31093869040489, 48.89590944536998], [2.310794014278234, 48.89599333086616], [2.310643871676229, 48.896080762223924], [2.310499194610399, 48.89616464645157], [2.3103490496434382, 48.896252078317474], [2.310204371626625, 48.896335962175776], [2.310059693131582, 48.89641984675213], [2.309909548066391, 48.89650727715523], [2.309764867256348, 48.89659116135448], [2.309614721201988, 48.89667859137427], [2.309602827553976, 48.89669337871846], [2.309605754836124, 48.8967027260657], [2.309670501521655, 48.89672713729964], [2.30967095076122, 48.89672730626389], [2.309757819945576, 48.89676005758292], [2.309920584196428, 48.89682122141294], [2.30997095427452, 48.896840211259544], [2.309971292213614, 48.89684033911182], [2.3101195728805433, 48.89689624181231], [2.310282337982144, 48.896957405143056], [2.310430619304572, 48.89701330835172], [2.310593385137584, 48.89707447125316], [2.310741667127327, 48.897130374070734], [2.310904433691851, 48.897191536542906], [2.311059535082996, 48.897250008887795], [2.311222302394874, 48.897311170921334], [2.311377404499437, 48.89736964284812], [2.311540171183054, 48.89743080533437], [2.311693403719938, 48.89748857181752], [2.311856172522328, 48.89754973297624], [2.311890994023378, 48.897562860804854], [2.311933565437915, 48.897578909180005], [2.312096334792996, 48.897640070906505], [2.312270293844621, 48.89770564848069], [2.3124528972057012, 48.89776171563656], [2.312655088095511, 48.897823164952676], [2.312837690919337, 48.89787923150802], [2.313039882707856, 48.897940681067105], [2.313222487722202, 48.89799674703756], [2.313374156331158, 48.89804283995582], [2.31338980983655, 48.89804759807665], [2.31357241560265, 48.89810366350807], [2.313772783202112, 48.898164556363255], [2.313797752603624, 48.89817214401276], [2.313980357882045, 48.898228208808], [2.314116439379145, 48.89826956469095], [2.314299046706314, 48.898325629003104], [2.314498897026188, 48.898386362976495], [2.314681505175003, 48.898442426699475], [2.31488135638941, 48.8985031600282], [2.314889575935103, 48.89850565679832], [2.315072184911239, 48.89856172081879], [2.315265373081813, 48.898620427890286], [2.315447982877041, 48.89867649043265], [2.31564117189728, 48.8987351968918], [2.315823782499762, 48.89879125885528], [2.316016972369663, 48.898849964702116], [2.316199583779397, 48.898906026086735], [2.3162854935148243, 48.898932131899805], [2.316414243481034, 48.89897125522367], [2.316596855732215, 48.899027316895626], [2.31672620668315, 48.89906662227209], [2.316908818252621, 48.899122682556396], [2.317038169676038, 48.89916198759255], [2.317110699057506, 48.89918402621785], [2.317293312816803, 48.899240085917704], [2.31737779301223, 48.8992657556072], [2.317458345444563, 48.89929023283672], [2.317640959950762, 48.89934629200108], [2.317786517050202, 48.89939052058939], [2.317969132261571, 48.89944657924819], [2.318078631327844, 48.89947984986397], [2.318283796032489, 48.89954218956898], [2.318466412311255, 48.899598247461796], [2.318488436203809, 48.89960264275678]]], "type": "Polygon"}, "properties": {"lassalle_jean": 26.0, "pecresse_valerie": 56, "zemmour_eric": 69.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "17-18", "circ_bv": "03", "num_bureau": 18, "roussel_fabien": 14.0, "nb_emargement": 1182.0, "nb_procuration": 40.0, "nb_vote_blanc": 16.0, "jadot_yannick": 75.0, "le_pen_marine": 93.0, "nb_exprime": 1159.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1571.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1184, "quartier_bv": "68", "geo_point_2d": [48.89678416966071, 2.31618954911135], "melenchon_jean_luc": 450.0, "poutou_philippe": 9.0, "macron_emmanuel": 320.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323907194785054, 48.82484769652519], [2.323917023493901, 48.82487439530906], [2.324007223019629, 48.824949651744404], [2.324083746477722, 48.82501435393751], [2.324085272862879, 48.82501597155439], [2.324175636201252, 48.8251392592233], [2.32426566068117, 48.825263501832545], [2.324356024875014, 48.825386789337934], [2.324446050212205, 48.82551103178399], [2.324536416623682, 48.8256343191336], [2.324626442818159, 48.825758561416485], [2.324716808723186, 48.82588184859489], [2.324806835774956, 48.82600609071457], [2.324897203897652, 48.82612937773721], [2.324987230444666, 48.826253619685986], [2.325077599423087, 48.82637690654509], [2.325167628189383, 48.82650114833837], [2.325257996661366, 48.826624435026304], [2.32534802628499, 48.826748676656344], [2.325438396974696, 48.82687196318847], [2.325528427455663, 48.82699620465531], [2.325547587918722, 48.82700660519256], [2.32556900655393, 48.827002603238235], [2.325685576482343, 48.82687978682707], [2.325795753136536, 48.826759297813815], [2.325912321986801, 48.82663648115503], [2.326022497602807, 48.82651599190681], [2.32604148165297, 48.82651305809827], [2.326221241528127, 48.82658874456365], [2.326389270796648, 48.82666065654217], [2.326569031674085, 48.82673634337414], [2.326737061897914, 48.82680825485454], [2.326752071278905, 48.82681396765774], [2.326770378316245, 48.8268070321892], [2.326938643301224, 48.82675402115602], [2.327133312656334, 48.82669293184413], [2.327301576904134, 48.82663992029493], [2.327475818322662, 48.826585504916224], [2.327644081875392, 48.826532492880034], [2.327818322577513, 48.82647807699713], [2.327986584084894, 48.826425063567015], [2.32816082543247, 48.82637064718749], [2.328329086233285, 48.82631763416974], [2.328503325502279, 48.826263217278374], [2.328671586970188, 48.82621020378132], [2.328845825522668, 48.82615578638573], [2.328906958337224, 48.826136524819695], [2.328937768481913, 48.82612986244041], [2.328940861416146, 48.82612365610086], [2.329047989337702, 48.82608990275285], [2.329131408558121, 48.82606053478427], [2.329134901943473, 48.82605877361313], [2.3292539287387353, 48.82597519023763], [2.329376486964755, 48.82588950401095], [2.3294955129977453, 48.8258059194831], [2.329618070428921, 48.825720232995906], [2.329737095688174, 48.825636648215024], [2.3298596523243083, 48.82555096146734], [2.329859543688948, 48.825538536846636], [2.32973453372563, 48.82545312560296], [2.329611437663581, 48.825368054121476], [2.329486428515577, 48.825282642605494], [2.329363333249296, 48.82519757175505], [2.3292383249279682, 48.82511215906742], [2.329115230469016, 48.825027087948655], [2.328990222951421, 48.824941675888084], [2.328867129311265, 48.824856603601695], [2.328867049659115, 48.824856548292566], [2.328743501885438, 48.82476763567124], [2.328619824355067, 48.82468068732772], [2.328496276046109, 48.824591775328734], [2.32837259935677, 48.82450482581662], [2.328350479402133, 48.82448131592093], [2.328343381627812, 48.824481413660905], [2.328313330818989, 48.82448756661129], [2.3281073910999153, 48.82450620414322], [2.327912726399422, 48.8245216921063], [2.327706786402461, 48.82454032894781], [2.327512121443959, 48.82455581715767], [2.327317456381407, 48.8245713041511], [2.32711151597561, 48.82458993996664], [2.326916850655054, 48.82460542720684], [2.326710909971288, 48.82462406233193], [2.326516244415956, 48.82463954802022], [2.32631030481626, 48.82465818246255], [2.3261156376409042, 48.82467366838991], [2.32590969776326, 48.82469230214179], [2.325894446753667, 48.824684999552055], [2.325859774892204, 48.82455897821933], [2.325825248713127, 48.82443487066315], [2.325807464392892, 48.82442798188289], [2.325616048827476, 48.82447098385895], [2.325434173376023, 48.82451048769424], [2.325242757188085, 48.824553489968984], [2.325060881165992, 48.82459299323364], [2.324869463005348, 48.824635994900035], [2.324687587786291, 48.82467549670241], [2.324496169014869, 48.82471849776813], [2.324314293213438, 48.82475799989921], [2.324122873831239, 48.82480100036424], [2.3239409960972592, 48.82484050191701], [2.323907194785054, 48.82484769652519]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 100, "zemmour_eric": 77.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-12", "circ_bv": "11", "num_bureau": 12, "roussel_fabien": 27.0, "nb_emargement": 1177.0, "nb_procuration": 66.0, "nb_vote_blanc": 16.0, "jadot_yannick": 103.0, "le_pen_marine": 59.0, "nb_exprime": 1157.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1589.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "55", "geo_point_2d": [48.825550796917156, 2.3268130563480574], "melenchon_jean_luc": 281.0, "poutou_philippe": 3.0, "macron_emmanuel": 444.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.376633617632594, 48.85799038428717], [2.376643461372284, 48.85799023591], [2.376787320126873, 48.85796557233672], [2.376958133789066, 48.85793591635752], [2.376972620439426, 48.85793343223806], [2.376981368364566, 48.857928722931234], [2.377069327430325, 48.857811395053844], [2.37715379957788, 48.85769840629345], [2.377241757866441, 48.857581078265014], [2.377326229266678, 48.857468089359415], [2.377410698926923, 48.85735510127489], [2.377498656068298, 48.857237772122055], [2.3775831263441303, 48.85712478389946], [2.377671082697587, 48.85700745549486], [2.377755552236867, 48.856894466227814], [2.377843506450492, 48.85677713766502], [2.377842608723947, 48.85677264884496], [2.377822834151933, 48.856763271946384], [2.377656711650983, 48.856704065536995], [2.377485683075804, 48.856643254112775], [2.377319561340607, 48.85658404722896], [2.377148533552867, 48.856523235316246], [2.376982412583425, 48.85646402795798], [2.376811385593879, 48.8564032146576], [2.376777797205433, 48.85637613929652], [2.376748717831545, 48.85637614522759], [2.376742205696639, 48.85637888759991], [2.376571179266912, 48.85631807395155], [2.376411570661365, 48.85626156628242], [2.376240545002726, 48.85620075215507], [2.376080937115031, 48.856144244038944], [2.375909912227379, 48.856083429432644], [2.375750305068415, 48.85602691997029], [2.375749978038373, 48.856026800449435], [2.375582635611369, 48.85596333080949], [2.375418283231205, 48.855900478201605], [2.375250941624722, 48.85583700719132], [2.3750865900430203, 48.8557741541207], [2.374919249235496, 48.85571068353864], [2.374754898452456, 48.8556478300053], [2.374587558465465, 48.85558435805288], [2.374423208480887, 48.85552150405685], [2.3744226984704833, 48.85552130083551], [2.37425233677182, 48.855449965775925], [2.374077966241003, 48.855377354004304], [2.3739076054958392, 48.855306017545395], [2.373733235927035, 48.85523340526208], [2.373562876113659, 48.855162069202414], [2.373388507507068, 48.8550894564073], [2.373218149999003, 48.85501811985479], [2.373043782365341, 48.85494550564866], [2.373037568712343, 48.854945980325354], [2.37302300787241, 48.85496102571199], [2.372973573932291, 48.85500842596533], [2.372924539038085, 48.85505482281406], [2.372911865447746, 48.85506660803778], [2.372918279079558, 48.85507590406006], [2.372975911567695, 48.85509843981779], [2.373025638381322, 48.85511765779018], [2.3730317965482453, 48.85512281545522], [2.373078680740778, 48.85522514906497], [2.373126908393699, 48.855330132874634], [2.373173792959568, 48.85543246642802], [2.373222020995911, 48.8555374501797], [2.373235021230553, 48.85554383441011], [2.373458099470307, 48.85554428588303], [2.373675894040456, 48.85554357880127], [2.373898970919991, 48.85554402944514], [2.374116766845919, 48.855543321568064], [2.374123720551674, 48.855544554074996], [2.374204075963966, 48.855575974040015], [2.374306468509595, 48.855615543075686], [2.37431111107366, 48.85562809799386], [2.37421194880885, 48.85573194629959], [2.3741123760653062, 48.85583555494018], [2.374013211635941, 48.855939403953954], [2.373913638111677, 48.85604301151051], [2.373814474254142, 48.85614686034736], [2.373714898564582, 48.856250468611314], [2.373615733927035, 48.85635431636478], [2.373516158808688, 48.85645792445114], [2.373520327540382, 48.856470317725545], [2.37369899235208, 48.85654568941891], [2.3738758696042153, 48.856621620772465], [2.374054536811899, 48.85669699193188], [2.3742314150848842, 48.85677292364886], [2.374235542876194, 48.85678522404674], [2.374205026489139, 48.85681747789671], [2.374175905749905, 48.85685029573429], [2.374179888070937, 48.85686222484073], [2.374332608952891, 48.85693226072768], [2.3745064051522062, 48.85701173732208], [2.374659126900382, 48.85708177368221], [2.374832922733678, 48.857161249784575], [2.374985645358982, 48.85723128571852], [2.375159442189035, 48.85731076133596], [2.375312165702251, 48.857380795944486], [2.375485963529059, 48.857460271076995], [2.375638687908623, 48.85753030615865], [2.375812486732194, 48.85760978080622], [2.375965211988893, 48.857679815461715], [2.376139013172022, 48.85775928963147], [2.376291739316726, 48.85782932296151], [2.376465540133725, 48.85790879663921], [2.376618267144801, 48.85797883044238], [2.376633617632594, 48.85799038428717]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 56, "zemmour_eric": 69.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-12", "circ_bv": "07", "num_bureau": 12, "roussel_fabien": 31.0, "nb_emargement": 1392.0, "nb_procuration": 92.0, "nb_vote_blanc": 22.0, "jadot_yannick": 150.0, "le_pen_marine": 57.0, "nb_exprime": 1368.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1685.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1393, "quartier_bv": "43", "geo_point_2d": [48.85665149022988, 2.3755570763557], "melenchon_jean_luc": 489.0, "poutou_philippe": 5.0, "macron_emmanuel": 448.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.384227777390783, 48.87928645700712], [2.384230397579634, 48.87927612009755], [2.384417621940647, 48.87920499537024], [2.384589657634105, 48.87913998145901], [2.384776879651736, 48.87906885615408], [2.384948914457644, 48.87900384081929], [2.384949504921052, 48.87900360463104], [2.3850808231847243, 48.87894796856989], [2.385220702811047, 48.87888896876751], [2.38535201913262, 48.878833332396084], [2.385491898143831, 48.878774332270645], [2.385512686825813, 48.87878040153727], [2.38554881807052, 48.878920615375], [2.38558364513611, 48.879057318700404], [2.385619776763864, 48.87919753248146], [2.385654604211596, 48.879334234852614], [2.385666612103663, 48.87934168716329], [2.385819851099787, 48.879352010810095], [2.386002878388195, 48.879364817203474], [2.386017799276099, 48.87935453524983], [2.385987960480899, 48.87922380404682], [2.385958257040616, 48.879095251691105], [2.385928418543427, 48.87896452044244], [2.385898715408592, 48.87883596714243], [2.385868877209409, 48.87870523584816], [2.385839174358811, 48.87857668340242], [2.385809336457529, 48.87844595206252], [2.385779633901766, 48.87831739957175], [2.385783676485641, 48.8783095529702], [2.38583294149351, 48.87827840110327], [2.385881580804496, 48.87824919755296], [2.385885956232354, 48.878241567595005], [2.38586173168061, 48.87809570680596], [2.385838635623893, 48.8779546380197], [2.385815541055611, 48.87781356921794], [2.385791315547428, 48.87766770745169], [2.385786402534677, 48.87766172957269], [2.385703396667898, 48.87761688300658], [2.385620439299708, 48.877572213797485], [2.385615469583072, 48.877565959525164], [2.385602115477429, 48.877455022346744], [2.385589738730343, 48.877346075895], [2.3855763833724772, 48.87723513868459], [2.38556400672086, 48.877126193107735], [2.385551630131734, 48.877017246619594], [2.385538276302655, 48.876906309378825], [2.385538362119522, 48.87688840322716], [2.385535672498408, 48.87688674454404], [2.385398129040458, 48.87688633254932], [2.385289250924509, 48.87688580409126], [2.385286353985346, 48.87688600055848], [2.38510288333633, 48.876911729778215], [2.384916534817199, 48.87693787201227], [2.38473306516617, 48.87696360067101], [2.384546714912431, 48.876989742321214], [2.3843632448959973, 48.877015470411955], [2.384176894281686, 48.87704161058598], [2.383993423899756, 48.87706733810872], [2.383807074267022, 48.87709347861208], [2.383791233395438, 48.87708738414165], [2.383747676972051, 48.87699617094613], [2.383706351776077, 48.87691033462661], [2.383662795649407, 48.87681912138552], [2.3836214707337993, 48.876733285022915], [2.383616412939963, 48.87671791008237], [2.383604839170383, 48.876715326064264], [2.383439711255636, 48.87673975052386], [2.3832652445442912, 48.87676593070383], [2.383062705725512, 48.876795887948134], [2.382888238647275, 48.87682206667805], [2.382885370384617, 48.87682271919633], [2.382696970472082, 48.87688175486059], [2.382510452044379, 48.87694030170252], [2.38232205128145, 48.87699933677042], [2.382135533374626, 48.87705788302903], [2.381949013695742, 48.877116428087604], [2.381760611648663, 48.87717546316177], [2.381754760282725, 48.87717897091386], [2.381670992137499, 48.877271382575415], [2.381587527331315, 48.87736359968485], [2.381503759955724, 48.877456011220936], [2.381420294546883, 48.87754822909761], [2.381336526577718, 48.87764064050119], [2.381253060587476, 48.87773285734652], [2.381243427215238, 48.87773713603689], [2.3810136270438322, 48.8777601274774], [2.380762040795585, 48.87778565521693], [2.380740872640661, 48.87778176492985], [2.380727764098039, 48.87779575726653], [2.38067657532054, 48.87792356802398], [2.38062655834778, 48.878048787540436], [2.380575369083924, 48.87817659732598], [2.380525350261405, 48.8783018167643], [2.380475332561703, 48.878427036174564], [2.380424142544268, 48.8785548467509], [2.380374124358331, 48.8786800660901], [2.380322933854526, 48.878807875694505], [2.380322790995355, 48.87883363358004], [2.380345567952915, 48.87883630827371], [2.380413396854708, 48.87883529595562], [2.380625865740802, 48.87883265328352], [2.380825269350379, 48.8788296755597], [2.381037736829192, 48.87882703214956], [2.381237140393797, 48.87882405373969], [2.381449609192215, 48.87882140960561], [2.381649012711633, 48.87881843050975], [2.381861481455522, 48.878815786543925], [2.382060884929848, 48.878812806762035], [2.382273353640548, 48.87881016116599], [2.382472757069868, 48.878807180698026], [2.38247929132447, 48.87880818837818], [2.382633224925001, 48.87886084038871], [2.382788117346507, 48.8789119997557], [2.382942051566178, 48.87896465136418], [2.3830969445997843, 48.87901581032676], [2.383250879449041, 48.879068460633924], [2.383405773084197, 48.87911962009139], [2.383559708552485, 48.879172269996474], [2.383714602799642, 48.87922342904955], [2.38371756279497, 48.879224137670576], [2.383932945423132, 48.879257810968305], [2.384164923039719, 48.87929108180683], [2.384179951099413, 48.87929817208559], [2.3841989372142303, 48.879293521286925], [2.384227777390783, 48.87928645700712]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 47, "zemmour_eric": 85.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "19-17", "circ_bv": "16", "num_bureau": 17, "roussel_fabien": 22.0, "nb_emargement": 1176.0, "nb_procuration": 60.0, "nb_vote_blanc": 6.0, "jadot_yannick": 92.0, "le_pen_marine": 49.0, "nb_exprime": 1168.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 6, "nb_inscrit": 1515.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1180, "quartier_bv": "76", "geo_point_2d": [48.8780484663253, 2.383438137359042], "melenchon_jean_luc": 468.0, "poutou_philippe": 12.0, "macron_emmanuel": 336.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389094970221532, 48.847360229864485], [2.389086759922747, 48.84737302713685], [2.388994028686767, 48.84747825571205], [2.388899182043428, 48.847585122819574], [2.388806450051289, 48.84769035122937], [2.38871160399992, 48.847797218174755], [2.388618869888976, 48.84790244641215], [2.388524023066934, 48.848009313188534], [2.388523803590142, 48.848018146429105], [2.388611320716992, 48.84812462941343], [2.38869808040731, 48.84822938079146], [2.388785598245, 48.848335863628094], [2.388872358637299, 48.84844061485984], [2.388959877185937, 48.8485470975488], [2.389046638280223, 48.84865184863435], [2.389134157539614, 48.84875833117559], [2.389220919335897, 48.848863082114875], [2.389308439316688, 48.848969563609195], [2.389395201814973, 48.84907431440217], [2.389482722496093, 48.849180796648106], [2.389569485696389, 48.84928554729483], [2.389598430849504, 48.849328419666065], [2.389626288403877, 48.849325235077], [2.389751917881699, 48.84930589857406], [2.389942644854627, 48.84927773666469], [2.390142548813121, 48.84924696633724], [2.39033327672183, 48.84921880381065], [2.3905331802236, 48.84918803282892], [2.390723906342937, 48.84915986967119], [2.390923809387975, 48.84912909803517], [2.391114536443075, 48.849100934260186], [2.391314439031373, 48.849070161969905], [2.391505165659758, 48.84904199757072], [2.391705067791306, 48.84901122462614], [2.391895792630097, 48.84898305959585], [2.392095694304889, 48.84895228599701], [2.392286420079618, 48.848924120349466], [2.3924863212976453, 48.84889334609632], [2.392677045282766, 48.84886517981768], [2.392867770424385, 48.84883701324118], [2.393067670965062, 48.84880623801435], [2.393104451409061, 48.848800805427786], [2.393107244512517, 48.84880119732447], [2.393138027432695, 48.84879484394465], [2.393291971671101, 48.84877210928724], [2.393490010964249, 48.84874314420924], [2.393680735219821, 48.848714976333696], [2.393878774079769, 48.848686010610756], [2.394069497916206, 48.84865784211405], [2.394267536342945, 48.84862887574612], [2.394458259760039, 48.84860070662832], [2.394656297743114, 48.84857174051469], [2.39484702074096, 48.84854357077568], [2.3950450583012612, 48.8485146031178], [2.395235780879847, 48.848486432757674], [2.395370607607886, 48.848466710557105], [2.395390404684311, 48.84845864177155], [2.39537302432984, 48.848420263049036], [2.395340315282178, 48.84829071219128], [2.395306543914482, 48.848160302452506], [2.395273836568331, 48.84803075065396], [2.395240065535456, 48.847900340865955], [2.395207357155082, 48.84777078901211], [2.395173586456926, 48.84764037917497], [2.395140879767605, 48.84751082727956], [2.39510710940436, 48.847380417393204], [2.395074401670383, 48.84725086634184], [2.395040633015007, 48.84712045551386], [2.395007925609438, 48.846990904414085], [2.394974155915802, 48.846860494429365], [2.39494144884908, 48.84673094238185], [2.39490768085285, 48.846600532354785], [2.394874974114527, 48.84647098025897], [2.394841205090481, 48.8463405701758], [2.394827057473561, 48.84633310411064], [2.394661043343437, 48.84633887629397], [2.394485532636489, 48.84634325654569], [2.394451035954097, 48.84632458040023], [2.394428562919461, 48.846335377632904], [2.394395711147367, 48.84637273875456], [2.394303657940378, 48.84647581375686], [2.394195486563463, 48.84659883571123], [2.394103432571553, 48.846701909639215], [2.393995260242237, 48.846824932286914], [2.393903205454942, 48.84692800603996], [2.393795032194027, 48.847051027582324], [2.393702976600982, 48.84715410205969], [2.393683350456451, 48.84715686884319], [2.393520856627751, 48.84708074673052], [2.393365082402395, 48.84700815515484], [2.393202589502371, 48.846932032599796], [2.393046816164852, 48.846859440600014], [2.392884325566385, 48.846783316710145], [2.392728551754194, 48.84671072427937], [2.392566062073819, 48.84663460084638], [2.392410290511968, 48.84656200799847], [2.392254518021471, 48.846489414936094], [2.39209202972363, 48.846413290844204], [2.3920619875684013, 48.846391296433936], [2.392043472024429, 48.8463946612683], [2.391977261533932, 48.84645506638217], [2.391859251625602, 48.84656151328994], [2.391752796499553, 48.84665863224467], [2.391634785671787, 48.846765078911574], [2.391528331063823, 48.84686219855502], [2.391410319316612, 48.846968644981075], [2.3913038625117933, 48.84706576440015], [2.391185849855632, 48.84717220968602], [2.391079393579389, 48.84726932889455], [2.39097293554364, 48.84736644799295], [2.390854921520137, 48.84747289382298], [2.390842499038913, 48.84747652692279], [2.39062667616301, 48.84746153281314], [2.390413297427424, 48.84744717581851], [2.390197476159194, 48.8474321809412], [2.38998409767246, 48.8474178222814], [2.389768275276234, 48.84740282752181], [2.389554897027945, 48.84738846809616], [2.389339076239308, 48.8473734725689], [2.389125698229576, 48.8473591123774], [2.389094970221532, 48.847360229864485]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 60, "zemmour_eric": 95.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "12-15", "circ_bv": "08", "num_bureau": 15, "roussel_fabien": 25.0, "nb_emargement": 1273.0, "nb_procuration": 68.0, "nb_vote_blanc": 17.0, "jadot_yannick": 106.0, "le_pen_marine": 70.0, "nb_exprime": 1252.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 7, "nb_inscrit": 1618.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1273, "quartier_bv": "46", "geo_point_2d": [48.847926883306066, 2.392095938121077], "melenchon_jean_luc": 442.0, "poutou_philippe": 6.0, "macron_emmanuel": 384.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.31080211931362, 48.83301668710698], [2.310742401795921, 48.83298486488523], [2.310618543585349, 48.8328810413893], [2.31049167658561, 48.83276876697345], [2.310367819387936, 48.83266494319785], [2.310240954816234, 48.83255266850223], [2.310117098643245, 48.83244884354766], [2.309990233775317, 48.83233656855659], [2.309945139258516, 48.832298766686534], [2.309940776886939, 48.83229261317739], [2.309928460268003, 48.83228386944331], [2.309849701006536, 48.83221784787376], [2.309746747704186, 48.832130516232795], [2.309746645308806, 48.83213043020123], [2.30962279111149, 48.832026605594955], [2.309505820127701, 48.83192984560629], [2.309381966898495, 48.83182601983272], [2.309264996811777, 48.831729259591235], [2.3091411445268433, 48.831625434449016], [2.309024173975087, 48.831528673946806], [2.308900322658254, 48.83142484763732], [2.308783354365656, 48.83132808689016], [2.308666386507268, 48.83123132602021], [2.308542536597516, 48.831127500212], [2.3084255696481, 48.83103073818993], [2.308301720694505, 48.83092691211375], [2.308184753268011, 48.830830150730286], [2.308079543418748, 48.83074194825499], [2.308064699152362, 48.830725504519314], [2.308063612956157, 48.83072492443309], [2.3080449761811153, 48.83070930056944], [2.30792555910512, 48.830612121814696], [2.307801712141852, 48.83050829518197], [2.307682294617589, 48.83041111615902], [2.307558448628269, 48.83030728835649], [2.307439033380077, 48.830210109081115], [2.30731518834091, 48.83010628190739], [2.307276306660282, 48.83007464057279], [2.307267353505037, 48.83007006394957], [2.307209216401413, 48.83009911883118], [2.307049958068923, 48.83018845585672], [2.306890022292036, 48.83027870430584], [2.30673076286404, 48.830368040892054], [2.306570825983529, 48.83045828889986], [2.306411565459921, 48.83054762504673], [2.306251627475881, 48.830637872613224], [2.306242173410194, 48.83064002124594], [2.306058906535977, 48.830634655412496], [2.305875710777015, 48.830629475881686], [2.305692443977491, 48.83062410948667], [2.305509249654178, 48.830618929402405], [2.30532598156738, 48.83061356243788], [2.305142787329534, 48.83060838089292], [2.304959519305559, 48.83060301426612], [2.304776325141206, 48.8305978321598], [2.304593057191942, 48.83059246497144], [2.304409863101091, 48.83058728230376], [2.304226596588923, 48.830581914561726], [2.304043401209405, 48.830576731324804], [2.3040345766619152, 48.83057855607367], [2.303901767357571, 48.83064517796157], [2.303773734919114, 48.83070896209354], [2.303645702167358, 48.83077274608481], [2.30351289049714, 48.83083936842073], [2.303384857106066, 48.83090315212533], [2.303252046144475, 48.83096977327249], [2.303247939552769, 48.83098073253556], [2.303333345534286, 48.83110173661382], [2.303409803523253, 48.831211700819146], [2.30348626319687, 48.83132166497272], [2.303571670290121, 48.83144266884399], [2.30364813065595, 48.83155263197211], [2.303733537129105, 48.83167363659422], [2.303809998175134, 48.831783599596186], [2.303895406776733, 48.83190460318642], [2.303928308204298, 48.83194842069303], [2.303929884897299, 48.831964807501066], [2.30393919361524, 48.83196867233114], [2.304067535976204, 48.831958524151695], [2.304275069661505, 48.831941954493466], [2.304449675132108, 48.831928148333496], [2.304657208575015, 48.83191157801172], [2.304831812492348, 48.83189777038627], [2.305039345692848, 48.83188119940095], [2.305213950757538, 48.831867392124536], [2.305218045114886, 48.8318666262574], [2.305371166646082, 48.83181990720941], [2.305531713678681, 48.831770533853714], [2.305684834646521, 48.831723814400185], [2.3058453824482052, 48.83167444062711], [2.305863095414256, 48.83167828933], [2.3059482850366813, 48.83178149961829], [2.3060280047998702, 48.83187728433005], [2.3061077248680872, 48.83197306808119], [2.306192915456561, 48.8320762781681], [2.306193277838232, 48.83207668678793], [2.306305788506481, 48.83219646706196], [2.306418209924943, 48.83231521241533], [2.306530722987052, 48.83243499246018], [2.306643144058094, 48.83255373846824], [2.306755658163819, 48.832673517376655], [2.30686808162387, 48.83279226315591], [2.306980596749304, 48.832912042726534], [2.307093019873916, 48.83303078826117], [2.30709496829154, 48.833034352977705], [2.307118270849651, 48.83314842343218], [2.30714143688616, 48.833258525938746], [2.307164603020529, 48.833368628430065], [2.307187905880445, 48.83348269883688], [2.307188238822148, 48.83348378631007], [2.307245970617876, 48.8336262622851], [2.307302387352292, 48.83376428139336], [2.307358804373402, 48.83390230135727], [2.30741653709882, 48.834044777196716], [2.307428109519348, 48.834061750632564], [2.307433551624543, 48.83406281192717], [2.307572221571383, 48.834027077736835], [2.307739272398203, 48.83398524081565], [2.307940250823331, 48.83393344874364], [2.308107301054734, 48.83389161130492], [2.3081246433869422, 48.83389645851889], [2.308204097885854, 48.83401811230461], [2.308284279795741, 48.83413949232261], [2.308363736411745, 48.83426114508452], [2.3084439190671793, 48.834382524969115], [2.308506555752849, 48.834417471609534], [2.30850955672407, 48.8344163647425], [2.308611925728311, 48.834309843860524], [2.308727959968325, 48.83419398182482], [2.3088303267272883, 48.834087460726906], [2.308946359974942, 48.83397159935561], [2.309048727213179, 48.833865078057485], [2.309164759492329, 48.833749215552], [2.309260717569692, 48.8337116677882], [2.30926692835846, 48.8337016009903], [2.309239716144439, 48.833634635650355], [2.309224057296043, 48.833580777047935], [2.309231266078401, 48.83357106317291], [2.309425087046334, 48.833506060433265], [2.309606805792756, 48.833445594115645], [2.309800625837699, 48.833380589860845], [2.309982343711133, 48.83332012296589], [2.310176162821372, 48.83325511809526], [2.310357879821814, 48.833194650623], [2.310551697997144, 48.833129645136545], [2.310733414124595, 48.833069177086976], [2.310793901456739, 48.83304793347722], [2.310797455989394, 48.83303441747915], [2.31080211931362, 48.83301668710698]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 95, "zemmour_eric": 98.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 23.0, "date_tour": "2022-04-10", "id_bvote": "15-45", "circ_bv": "13", "num_bureau": 45, "roussel_fabien": 15.0, "nb_emargement": 1332.0, "nb_procuration": 60.0, "nb_vote_blanc": 11.0, "jadot_yannick": 120.0, "le_pen_marine": 87.0, "nb_exprime": 1317.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1657.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1332, "quartier_bv": "57", "geo_point_2d": [48.832012133354375, 2.3072751656793806], "melenchon_jean_luc": 349.0, "poutou_philippe": 9.0, "macron_emmanuel": 490.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.334813040388867, 48.8947115198629], [2.334804538240828, 48.89472737893973], [2.334672941477751, 48.894827640813226], [2.334543723999017, 48.89492685725559], [2.334412126229489, 48.8950271188242], [2.33428290912252, 48.89512633497465], [2.33415130898266, 48.89522659623087], [2.3340220908835843, 48.895325812081836], [2.333890489737248, 48.895426073033114], [2.333761270646056, 48.8955252885846], [2.333629668493236, 48.895625549231056], [2.333500448409919, 48.895724764483035], [2.333368845250606, 48.89582502482458], [2.333239624175157, 48.89592423977709], [2.33310802000934, 48.89602449981376], [2.33297879794175, 48.89612371446674], [2.332962015444673, 48.89613661347736], [2.332974107867411, 48.89615422028315], [2.333056452084639, 48.89626282041142], [2.333141665811909, 48.89637551666636], [2.333224010728663, 48.89648411665747], [2.333309225192458, 48.89659681187115], [2.333391570808744, 48.896705411725115], [2.333476785985838, 48.896818107696035], [2.333491534415854, 48.896822930094835], [2.333699433319822, 48.896796923897945], [2.333900210692468, 48.89677048742583], [2.334108109182874, 48.896744480518265], [2.334308884781945, 48.89671804335214], [2.3345167842225862, 48.89669203574145], [2.334717559411879, 48.896665597888905], [2.334918334385772, 48.896639160598426], [2.335126233218547, 48.89661315102866], [2.335131492862208, 48.896613140659], [2.33531244152922, 48.89663620093315], [2.335482604785901, 48.89665780893911], [2.335663553752102, 48.89668086958106], [2.335833717300604, 48.8967024770873], [2.336003880990351, 48.8967240843513], [2.336184830417788, 48.89674714420425], [2.336195668981619, 48.896754391646354], [2.336235703403865, 48.896902125385154], [2.336272331885973, 48.89703522357024], [2.336308959191544, 48.89716832172038], [2.3363489956059302, 48.89731605627229], [2.336345768960647, 48.897323607963564], [2.336215202241994, 48.89742057651986], [2.336053332049205, 48.89754891680974], [2.336063528222246, 48.89756365832114], [2.336269096188326, 48.89756654696447], [2.336458801838738, 48.89756817555647], [2.336664369833125, 48.89757106442058], [2.336854075523916, 48.89757269148725], [2.33705964219413, 48.89757557966528], [2.3372493479136223, 48.89757720610582], [2.33745491598752, 48.89758009361297], [2.337644621735906, 48.897581719427365], [2.337686449495127, 48.89757964220362], [2.337683705555899, 48.89754712113901], [2.337773508181835, 48.897441129362434], [2.337865399527959, 48.897333787489096], [2.337955201404572, 48.897227796454885], [2.3380470920108722, 48.89712045352196], [2.338136893149607, 48.89701446233086], [2.338228782993427, 48.89690712013687], [2.33831858204181, 48.89680112788207], [2.338410471134391, 48.89669378552778], [2.338401247019796, 48.8966805442468], [2.338191207384009, 48.89665307410688], [2.337978358866486, 48.89662544148004], [2.337768318323771, 48.896597969690234], [2.337555470255988, 48.896570336310475], [2.3373454301472902, 48.89654286467688], [2.337132582529253, 48.896515230544104], [2.336922544241376, 48.89648775727576], [2.3367096970731, 48.89646012239], [2.336499657855341, 48.89643264927031], [2.336286811136834, 48.89640501363156], [2.336278615775535, 48.89639072387857], [2.336400486971805, 48.89628574710958], [2.336519786558522, 48.8961817362212], [2.336641656779305, 48.89607675918677], [2.33676095540544, 48.89597274803828], [2.336882824650646, 48.8958677707384], [2.337002122316104, 48.895763759329846], [2.337123990585944, 48.89565878176452], [2.337243287290736, 48.895554770095885], [2.33736515322114, 48.895449792257565], [2.337484448965278, 48.89534578032881], [2.337485971863833, 48.89533661208276], [2.337475845065204, 48.89532081614262], [2.33742523119877, 48.89524186981136], [2.337342934638289, 48.895123366868546], [2.337329211381299, 48.89511773762239], [2.337296336911776, 48.89512454702709], [2.33710621414801, 48.89508556859071], [2.336916343896983, 48.895046276485296], [2.336726221714882, 48.89500729654359], [2.336536352024718, 48.894968004732185], [2.336346231776801, 48.894929024192], [2.336156362658752, 48.89488973177531], [2.335966241617399, 48.89485075062154], [2.335776373071575, 48.89481145759959], [2.335586252600453, 48.89477247583977], [2.33539638599072, 48.894733182220136], [2.335361445814756, 48.89473951198459], [2.335355564052796, 48.89474638792937], [2.335367976366894, 48.89477850594378], [2.335379454289578, 48.894819714508785], [2.335361372213061, 48.89482978907826], [2.3352257995671772, 48.89479723205802], [2.334977214566718, 48.894739030916966], [2.334841642397488, 48.89470647345908], [2.334813040388867, 48.8947115198629]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 66, "zemmour_eric": 39.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-46", "circ_bv": "03", "num_bureau": 46, "roussel_fabien": 24.0, "nb_emargement": 1141.0, "nb_procuration": 53.0, "nb_vote_blanc": 19.0, "jadot_yannick": 86.0, "le_pen_marine": 61.0, "nb_exprime": 1120.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1456.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1143, "quartier_bv": "69", "geo_point_2d": [48.8960885134674, 2.3356522009162783], "melenchon_jean_luc": 409.0, "poutou_philippe": 5.0, "macron_emmanuel": 367.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.315366195202698, 48.8862419497477], [2.315357761065535, 48.886231026815516], [2.315302656335507, 48.88619564950715], [2.3152300949382623, 48.886149063803316], [2.315209902175134, 48.88614991689513], [2.315056532537226, 48.886277332736995], [2.31490566052522, 48.8864026717196], [2.314888877735214, 48.88640512349324], [2.314799510033892, 48.88637563387204], [2.314715190782464, 48.88634781165762], [2.314705149031812, 48.886347244263426], [2.314552423219031, 48.886377645155974], [2.314399075102186, 48.88640816999546], [2.314246348932028, 48.886438570495926], [2.314093000468196, 48.886469094042496], [2.31408109743879, 48.88646778567718], [2.313951082897348, 48.88640612103728], [2.313807521621832, 48.88633803203877], [2.313802514606718, 48.88632795242402], [2.31388254213671, 48.88616551526741], [2.313962557926791, 48.88600310315012], [2.313957592925031, 48.885993043564724], [2.313799332338977, 48.885917377972646], [2.313643496602866, 48.88584287091235], [2.313485238293226, 48.8857672049026], [2.313329403456026, 48.885692697423295], [2.313171144695554, 48.88561703098022], [2.31301531075716, 48.885542523081945], [2.313013877023597, 48.8855417333366], [2.312891590835725, 48.885464399597154], [2.312765988922393, 48.88538496833847], [2.312643703470679, 48.885307634334836], [2.312518102313571, 48.88522820280474], [2.312395817598213, 48.88515086853692], [2.3122702185608253, 48.885071436743324], [2.312269268458183, 48.885059120332365], [2.312407048896193, 48.88495226973422], [2.312544090248452, 48.88484599389658], [2.312681869558777, 48.88473914296153], [2.312818908437589, 48.88463286588163], [2.3129566879717602, 48.884526015516684], [2.313093725728859, 48.8844197381017], [2.313231504147125, 48.88431288650051], [2.313368540770663, 48.88420660964963], [2.313506318061269, 48.884099757711546], [2.313643353574871, 48.883993479626255], [2.313646147117938, 48.88398535038544], [2.313623969369974, 48.883930152613694], [2.313597340815183, 48.88386387741872], [2.313561952845777, 48.8838310746207], [2.313543211939142, 48.8838377157636], [2.313416781794824, 48.88389899979789], [2.313257187990041, 48.88397636330528], [2.313092013470542, 48.88405642675174], [2.312932418712594, 48.88413378891586], [2.31276724318259, 48.884213852802084], [2.3126076474597133, 48.88429121452223], [2.3124424709310603, 48.88437127794894], [2.312282874243253, 48.88444863922511], [2.312117696715946, 48.88452870219234], [2.311958099063204, 48.88460606302453], [2.311792920537242, 48.8846861255322], [2.311633321919563, 48.8847634859204], [2.31146814239494, 48.88484354796858], [2.311308542812421, 48.884920907912786], [2.311143362301031, 48.88500096860217], [2.31098376174157, 48.88507832900165], [2.310824159356213, 48.885155688275816], [2.310658978707105, 48.88523574918696], [2.310499375356794, 48.885313108017115], [2.310334193709018, 48.88539316846876], [2.310331861890409, 48.885394602961256], [2.310327013479266, 48.885401332612446], [2.310308428335893, 48.885415804623996], [2.310204119515407, 48.88549703301764], [2.310060515835277, 48.88560839092976], [2.310022807840592, 48.8856377544506], [2.310017856652759, 48.88564420830038], [2.310066838181851, 48.88567208295086], [2.310235252473399, 48.88575205417055], [2.310404058920907, 48.8858322117661], [2.310572472872784, 48.885912183391184], [2.310741281722088, 48.885992340507435], [2.310909696709727, 48.88607231164659], [2.3110785052335823, 48.88615246826789], [2.311083119795612, 48.886156299889], [2.311143033610558, 48.88625089179914], [2.311203178718721, 48.88634585012881], [2.311263092969847, 48.88644044196253], [2.311323238527771, 48.88653539931625], [2.311329704833679, 48.88653997093419], [2.311506248869806, 48.886598388710034], [2.311688257532288, 48.88665857604082], [2.311864801021, 48.88671699237462], [2.312046810512455, 48.88677717915386], [2.312223356157266, 48.88683559585975], [2.312405366489569, 48.88689578118823], [2.312581911575068, 48.88695419735137], [2.312763922736334, 48.887014382128264], [2.312940468626165, 48.88707279775644], [2.313122480604528, 48.88713298288106], [2.31329902866235, 48.88719139798207], [2.313481041481539, 48.8872515816559], [2.313657588980033, 48.887309996214114], [2.3138396026281782, 48.88737017933637], [2.313840718819363, 48.887382341973705], [2.313889361054779, 48.88738791057191], [2.314002236451651, 48.88736463604618], [2.314185713463294, 48.88732680277386], [2.314250268245409, 48.88731349190496], [2.314268400909109, 48.8873131532829], [2.3142755913234883, 48.88730553487063], [2.314471015862614, 48.88722956515352], [2.314654952952731, 48.8871580601876], [2.314656462016076, 48.88715737993856], [2.314684303306621, 48.887142930579394], [2.314718042108675, 48.88712542037299], [2.314731010971828, 48.88711455964481], [2.314717187853936, 48.887102976302835], [2.3146979228846902, 48.88708832657429], [2.314697813495614, 48.887088245008485], [2.314612451063847, 48.88702489953601], [2.314552989483401, 48.88698077346896], [2.314552195906811, 48.886969472441145], [2.314653247977555, 48.886878843534774], [2.314785205096907, 48.8867604968804], [2.314886256356583, 48.88666986776011], [2.315018212428647, 48.88655151992716], [2.315119262865535, 48.8864608914923], [2.315251217878489, 48.886342543380074], [2.315352267516051, 48.88625191383203], [2.315366195202698, 48.8862419497477]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 96, "zemmour_eric": 118.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-13", "circ_bv": "03", "num_bureau": 13, "roussel_fabien": 13.0, "nb_emargement": 1324.0, "nb_procuration": 79.0, "nb_vote_blanc": 11.0, "jadot_yannick": 106.0, "le_pen_marine": 54.0, "nb_exprime": 1310.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 6, "nb_inscrit": 1671.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1324, "quartier_bv": "67", "geo_point_2d": [48.88594549445175, 2.312553040443332], "melenchon_jean_luc": 240.0, "poutou_philippe": 6.0, "macron_emmanuel": 619.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.399036454241378, 48.84763702208292], [2.399046581476699, 48.84764413648016], [2.399066423392961, 48.84774932927365], [2.399085407864669, 48.84784651979149], [2.3991052499364622, 48.847951712559414], [2.399124234543938, 48.84804890395277], [2.399149181868327, 48.848081729748685], [2.399191729337408, 48.848078553753524], [2.399383964191944, 48.84806213174309], [2.399584026385983, 48.84804451749018], [2.3997762610017013, 48.84802809394966], [2.399976322922118, 48.848010479939504], [2.400168557288542, 48.84799405576816], [2.400368620318681, 48.84797644020905], [2.400560854425659, 48.847960016306196], [2.40076091582987, 48.84794240008373], [2.400953149687644, 48.84792597555], [2.4011532108284612, 48.84790835867103], [2.401345444447355, 48.84789193260725], [2.401545505314639, 48.847874315971055], [2.401737738684304, 48.84785788927646], [2.401937799298603, 48.84784027108448], [2.402130032408611, 48.84782384465837], [2.402330092759588, 48.84780622580988], [2.402522325620458, 48.84778979875292], [2.4027223857081053, 48.84777217924791], [2.40291461833003, 48.84775575066091], [2.403114678144032, 48.847738131398664], [2.403306910516593, 48.847721702180856], [2.40344833701718, 48.84770924630039], [2.403477098791983, 48.847698342946316], [2.403458196205753, 48.84765852424098], [2.403436820604272, 48.84752250190729], [2.403415413167015, 48.84738653245578], [2.403394036426036, 48.8472505100745], [2.4033726305747543, 48.84711454058894], [2.4033512540571103, 48.846978518166765], [2.403329848418771, 48.84684254953968], [2.403308472134651, 48.84670652617736], [2.40328706671975, 48.8465705575094], [2.403265690658755, 48.84643453410624], [2.403244285467185, 48.846298565397454], [2.403222909629514, 48.84616254195346], [2.403201504661172, 48.84602657320382], [2.403180129046722, 48.845890549718995], [2.403158724301806, 48.84575458092855], [2.403156950379549, 48.84575099084571], [2.403063049751298, 48.84564437323476], [2.402971843165743, 48.84554039599992], [2.402880636944121, 48.8454364186858], [2.402786737447922, 48.845329800827905], [2.402695531964154, 48.84522582335307], [2.402601631863601, 48.845119205322945], [2.40259040734901, 48.84511473883106], [2.402472110875893, 48.84511155340328], [2.4023812600466092, 48.84511160594196], [2.402333739833379, 48.84510412603814], [2.402311466895287, 48.84511453723039], [2.40217313990637, 48.845208634592666], [2.402034303796428, 48.84530323828025], [2.401895974443764, 48.84539733529936], [2.401757137338331, 48.845491937749976], [2.401618808346861, 48.845586034439485], [2.401479970225287, 48.845680637451764], [2.401341638870044, 48.84577473379806], [2.401202799752974, 48.84586933557339], [2.40106446875892, 48.84596343159009], [2.400925627263191, 48.8460580339202], [2.400787295267832, 48.84615212960051], [2.40064845412875, 48.846246731599784], [2.400510121142426, 48.84634082604435], [2.400371277634894, 48.846435427699085], [2.400232943637008, 48.846529522706575], [2.40009410048622, 48.84662412403047], [2.399955765497261, 48.8467182178022], [2.399816919977996, 48.84681281878158], [2.399678583977451, 48.8469069131162], [2.399539738814926, 48.84700151376469], [2.399401401812939, 48.8470956077629], [2.399262554292277, 48.84719020716759], [2.399124216289044, 48.84728430082935], [2.398985369114751, 48.847378900802454], [2.398981667075645, 48.84738643048668], [2.399010376011133, 48.84751901542417], [2.399030217817046, 48.847624207336125], [2.399036454241378, 48.84763702208292]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 85, "zemmour_eric": 91.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "12-30", "circ_bv": "08", "num_bureau": 30, "roussel_fabien": 20.0, "nb_emargement": 1149.0, "nb_procuration": 50.0, "nb_vote_blanc": 15.0, "jadot_yannick": 94.0, "le_pen_marine": 63.0, "nb_exprime": 1129.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1426.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "45", "geo_point_2d": [48.84686048352913, 2.4015211802381273], "melenchon_jean_luc": 286.0, "poutou_philippe": 8.0, "macron_emmanuel": 414.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.379401365660513, 48.854852777389134], [2.379412731383639, 48.854821368975436], [2.379445345820969, 48.85478217356569], [2.379545255577926, 48.85465915602319], [2.379643309643722, 48.854541318916084], [2.379743218460894, 48.85441830208088], [2.379841271636375, 48.85430046388672], [2.37986591774785, 48.85427011622924], [2.379870847369093, 48.85425372952965], [2.379845982290099, 48.85424705338981], [2.379673504866765, 48.854198394841816], [2.37949693917064, 48.854148820886294], [2.379324462398404, 48.854100161830864], [2.379147897367218, 48.85405058735594], [2.378975421246084, 48.8540019277931], [2.378798856879839, 48.853952352798736], [2.378626381409811, 48.853903692728494], [2.37844981771934, 48.85385411631546], [2.378442271758119, 48.85384290537967], [2.378510920021327, 48.85371174176052], [2.378581531205082, 48.85357628578647], [2.378650177414543, 48.8534451211496], [2.3787207892376783, 48.85330966506793], [2.378710314481094, 48.85329788853321], [2.378545924201072, 48.853278372401604], [2.378403103030043, 48.853265425439176], [2.378260283282035, 48.85325247921251], [2.37809589196178, 48.85323296155547], [2.378092596723921, 48.85323283830486], [2.377917218363384, 48.853238430748696], [2.377738439580233, 48.853246085451886], [2.377563061137103, 48.853251677376605], [2.377384282267225, 48.85325933065124], [2.377208902368087, 48.85326492294899], [2.377076716909154, 48.853267956376364], [2.377068870302674, 48.85326642170342], [2.377055457723167, 48.85328370756219], [2.377025171339645, 48.85328518670084], [2.37702478432666, 48.853303764389906], [2.377068610307353, 48.85337138906467], [2.377112795895127, 48.85343641646506], [2.377112879776227, 48.853443650385344], [2.3770376321338222, 48.85355908431182], [2.376962382864319, 48.853675196283085], [2.376887133191354, 48.85379063008378], [2.376811883262868, 48.853906741036916], [2.3767366342741623, 48.85402217562529], [2.376661383675831, 48.85413828645961], [2.376586134030201, 48.85425372003001], [2.376510881388553, 48.85436983163766], [2.376435631075127, 48.85448526508937], [2.376360379137287, 48.85460137568598], [2.376285128145296, 48.85471680991831], [2.376209874174869, 48.854832920388965], [2.376134622515064, 48.85494835450256], [2.3760593692376792, 48.85506446486149], [2.375984116920824, 48.85517989795708], [2.375908862973657, 48.85529600819714], [2.37583360861537, 48.85541144206623], [2.375758353998408, 48.85552755218746], [2.375683100335014, 48.85564298594491], [2.375607845048354, 48.85575909594728], [2.375614580987434, 48.855770772278035], [2.375789283863322, 48.85582491625523], [2.3759585352912422, 48.85587782281722], [2.376133238883467, 48.855931966287024], [2.376302490997592, 48.85598487325676], [2.376307202113669, 48.855987303571844], [2.376412170746818, 48.85607260802799], [2.376541487865791, 48.856176850036526], [2.376646457264358, 48.85626215427259], [2.376742186965512, 48.85633932153748], [2.376748717831545, 48.85637614522759], [2.376777797205433, 48.85637613929652], [2.376811385593879, 48.8564032146576], [2.376982412583425, 48.85646402795798], [2.377148533552867, 48.856523235316246], [2.377319561340607, 48.85658404722896], [2.377485683075804, 48.856643254112775], [2.377656711650983, 48.856704065536995], [2.377822834151933, 48.856763271946384], [2.377842608723947, 48.85677264884496], [2.377862359413858, 48.85675982789198], [2.377950899655601, 48.85665319374344], [2.37803796587949, 48.856547729107305], [2.3781265067534623, 48.85644109571489], [2.378213572267495, 48.856335630930786], [2.378302112432505, 48.856228996488774], [2.378389175873834, 48.856123531549684], [2.378477715308227, 48.856016897856684], [2.378564779402573, 48.85591143277677], [2.37856564775084, 48.85591016110967], [2.3786114059711663, 48.855826401308065], [2.378670224298121, 48.85571662186866], [2.378671654409403, 48.85571635769094], [2.378686213951514, 48.855689986119906], [2.378687117082051, 48.85568865437592], [2.37877231943932, 48.85558813846559], [2.378870377001287, 48.85547030209039], [2.378955578658708, 48.8553697851305], [2.379053635395323, 48.855251948581966], [2.379138834979353, 48.855151431464776], [2.379236890890629, 48.85503359474289], [2.379322091116221, 48.85493307838184], [2.37938753036236, 48.854854436881276], [2.379401365660513, 48.854852777389134]]], "type": "Polygon"}, "properties": {"lassalle_jean": 15.0, "pecresse_valerie": 52, "zemmour_eric": 65.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-10", "circ_bv": "07", "num_bureau": 10, "roussel_fabien": 25.0, "nb_emargement": 1319.0, "nb_procuration": 92.0, "nb_vote_blanc": 13.0, "jadot_yannick": 119.0, "le_pen_marine": 65.0, "nb_exprime": 1303.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 8, "nb_inscrit": 1647.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1319, "quartier_bv": "43", "geo_point_2d": [48.85493671108042, 2.3776764416554537], "melenchon_jean_luc": 491.0, "poutou_philippe": 8.0, "macron_emmanuel": 417.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3653980031076483, 48.82445343010952], [2.365424789221592, 48.82443412954585], [2.365426045126632, 48.824433565106645], [2.365601377639541, 48.824363905164454], [2.365767810471765, 48.8242975506365], [2.365934242880364, 48.82423119587301], [2.366109574044691, 48.824161534273934], [2.366276005584158, 48.824095179026756], [2.366451335823434, 48.82402551781746], [2.366617766493774, 48.8239591620866], [2.366793095830062, 48.823889499468486], [2.366959525620353, 48.823823144153266], [2.367103124118052, 48.82376608873772], [2.3671299902678, 48.823758852441955], [2.367132448234432, 48.82375160568527], [2.367164179505003, 48.8237389979725], [2.367349843865933, 48.82366598688453], [2.367525171227314, 48.82359632407424], [2.367700498130992, 48.823526660103234], [2.367886162346783, 48.823453648176034], [2.368061488277463, 48.82338398456626], [2.368247150117698, 48.823310972062096], [2.368248402561965, 48.82329607511085], [2.368111717289841, 48.823227743192035], [2.367959273620159, 48.823152202060896], [2.367822589093219, 48.8230838707022], [2.367670146263183, 48.823008329192795], [2.367533462503228, 48.82293999659556], [2.367440235010933, 48.822893798043694], [2.3673976541430273, 48.82285252972603], [2.367372799271106, 48.82286108082204], [2.367313584847915, 48.82283173745205], [2.367171915732543, 48.822753291535506], [2.367019474811741, 48.82267774917444], [2.367001781636821, 48.82266497969596], [2.366975749171383, 48.82266911033428], [2.366939185661328, 48.82268735310357], [2.36690113947945, 48.822706778787], [2.36688094645037, 48.822709419473775], [2.3668708577744573, 48.822719404006634], [2.366749226241114, 48.82278150589763], [2.366599382285588, 48.82285897248311], [2.366439704951992, 48.82294049873082], [2.366289860079668, 48.82301796491748], [2.3661301804021653, 48.82309949163243], [2.365980334613036, 48.82317695742033], [2.365820653964732, 48.82325848371044], [2.365670807258793, 48.823335949099494], [2.365511125639482, 48.82341747496478], [2.36536127801683, 48.82349493995498], [2.365211429948812, 48.8235724047521], [2.365051748259995, 48.82365392909472], [2.365038879157528, 48.82365529436916], [2.364865973743734, 48.823614961872856], [2.364696292747197, 48.82357528840888], [2.364523387874693, 48.823534954515026], [2.364353707388148, 48.82349528146147], [2.364180803046084, 48.823454947069415], [2.364011123080588, 48.82341527352689], [2.363838219268869, 48.82337493863663], [2.363668541197398, 48.82333526371317], [2.363495637904947, 48.82329492922401], [2.363325958992646, 48.82325525380434], [2.363294279210145, 48.823247977355244], [2.363293312080577, 48.823248317566566], [2.36322826306049, 48.82334923564832], [2.363139076765874, 48.823485605388164], [2.363074027151216, 48.823586523364746], [2.362984840047305, 48.82372289296073], [2.362919789838066, 48.823823810832124], [2.362926546181295, 48.823835477564096], [2.36310034400527, 48.82388922102177], [2.363278621018884, 48.82394438750162], [2.363452419568805, 48.823998130442405], [2.36363069732733, 48.82405329639202], [2.36380449796521, 48.82410703882314], [2.363982775106729, 48.82416220423532], [2.363985554311414, 48.824177343826136], [2.363833422223979, 48.82425848126584], [2.363683559738342, 48.82433821047055], [2.363531426722539, 48.82441934661515], [2.363381564663758, 48.82449907633656], [2.363229430708611, 48.82458021208533], [2.363079566374596, 48.8246599405103], [2.362927431469112, 48.82474107676257], [2.362777567572932, 48.824820804804915], [2.362625430377048, 48.82490193975484], [2.362475565545675, 48.82498166830662], [2.362471908664479, 48.8249926661634], [2.362557560803664, 48.825106718392796], [2.362644781984532, 48.825219473016524], [2.362730436236531, 48.82533352510631], [2.362817658170698, 48.8254462795812], [2.362903311822421, 48.82556033061751], [2.362990535860956, 48.825673085850106], [2.363076190263465, 48.82578713673959], [2.363163413704248, 48.82589989091672], [2.363249068846565, 48.82601394255869], [2.363336294402737, 48.82612669659421], [2.363421950306842, 48.826240747189935], [2.3635091752433, 48.82635350196863], [2.363594833260291, 48.826467552424795], [2.363682058961071, 48.82658030615531], [2.363680654140008, 48.826589940872175], [2.363559392392694, 48.826692220884134], [2.363438330204804, 48.826791616636314], [2.363317067513024, 48.82689389638415], [2.363196004405828, 48.82699329097387], [2.363074740769575, 48.82709557045762], [2.362953675359002, 48.82719496567623], [2.362832410778262, 48.82729724489587], [2.362711345810466, 48.827396638959236], [2.362590080285237, 48.827498917914795], [2.362469014376133, 48.827598312614285], [2.362462423908621, 48.827607135411554], [2.362470844026359, 48.82762435743416], [2.362601265379608, 48.82765832494437], [2.362800240056881, 48.827709869798085], [2.362974747281207, 48.82775531934537], [2.363173722708801, 48.82780686267395], [2.363348231945487, 48.82785231167956], [2.36354720673941, 48.82790385527437], [2.363721716626344, 48.827949303731096], [2.36392069352191, 48.82800084670727], [2.36409520270794, 48.82804629370855], [2.364269713549272, 48.828091741359856], [2.36446869016812, 48.82814328341058], [2.364475621229991, 48.82814728467872], [2.364484826763571, 48.82816662604605], [2.364504216576129, 48.82817105866245], [2.364595057894081, 48.82827892376456], [2.364683632283362, 48.828378344223864], [2.36477447433371, 48.82848620916977], [2.36486304942827, 48.8285856285785], [2.364867575406083, 48.828588696990906], [2.364957642429898, 48.828625831003784], [2.365050695410089, 48.828666217641526], [2.365080923205606, 48.828679366859625], [2.365087425528196, 48.82867842735935], [2.365102309268619, 48.828663410407], [2.365211271420141, 48.82855624937714], [2.365324915494454, 48.82844098995292], [2.365325463457741, 48.82843178508372], [2.365221555216879, 48.828305716252615], [2.365115733134834, 48.82817957419832], [2.365011825903807, 48.828053505156674], [2.364906003468178, 48.827927363780546], [2.364802097257933, 48.827801293628994], [2.364696275841581, 48.827675152038935], [2.364697372206328, 48.82766533041077], [2.364784697398652, 48.827589949216666], [2.364863631826416, 48.82751922711625], [2.364950956544581, 48.827443844891626], [2.365029890525605, 48.82737312267227], [2.365038056730409, 48.82736976549897], [2.365225869584846, 48.82734513397987], [2.3654161283079302, 48.82732154222921], [2.365603942172121, 48.82729691012249], [2.365794200559075, 48.827273316870006], [2.365982014070909, 48.82724868416853], [2.366172272099841, 48.827225091212924], [2.366182693660392, 48.82721906847973], [2.366234126370515, 48.82711607318097], [2.366300672859175, 48.82700594676063], [2.366319468247965, 48.82699930464861], [2.366316145935219, 48.82698025449783], [2.366369444010483, 48.826867643907256], [2.366422773937733, 48.82675194500161], [2.3664188731038, 48.82674171554213], [2.366396600779534, 48.826737778801075], [2.366202277061046, 48.82670906186564], [2.36599257606446, 48.82667868199128], [2.365798251426602, 48.82664996439062], [2.365588552254284, 48.82661958471279], [2.365394228059348, 48.82659086645412], [2.365184528008931, 48.8265604851597], [2.3651318723817383, 48.82655270305814], [2.365105852221698, 48.82654301176906], [2.365099426853456, 48.8265450363245], [2.364957758762507, 48.82652409947084], [2.36478668736651, 48.82649859574173], [2.364592364064234, 48.826469876177], [2.364421293025003, 48.82644437192402], [2.364226970126115, 48.82641565176418], [2.364055899443555, 48.826390146987244], [2.363884828928267, 48.82636464196506], [2.363690506622077, 48.8263359209315], [2.363679864791774, 48.826326947009996], [2.363684009026578, 48.82620245874987], [2.363688211323498, 48.82608013108283], [2.363692355518653, 48.82595564279504], [2.363696557776095, 48.825833315100816], [2.363700700569646, 48.82570882677814], [2.363704904160644, 48.82558649816469], [2.363709046914755, 48.82546200981431], [2.3637132504552962, 48.825339682072965], [2.363717393169765, 48.825215193694966], [2.363721596670824, 48.82509286592645], [2.363725798801096, 48.8249705372379], [2.363729942818307, 48.82484604882575], [2.363734144898129, 48.82472372100932], [2.3637382875138693, 48.82459923256231], [2.363740210147935, 48.824594820560655], [2.363778354827715, 48.82455369268683], [2.363824944652566, 48.82450216347548], [2.363841070292796, 48.8244982686227], [2.364007874132446, 48.82453616067977], [2.364169748941721, 48.82457437615138], [2.364336553263731, 48.8246122677474], [2.364498428550106, 48.82465048277151], [2.364665233354571, 48.82468837390654], [2.364827109118144, 48.82472658848317], [2.364839854715706, 48.82472532060735], [2.364972622981034, 48.82465973363063], [2.365113403613436, 48.824588594026466], [2.365246172559457, 48.82452300584598], [2.365386952438483, 48.82445186681046], [2.3653980031076483, 48.82445343010952]]], "type": "Polygon"}, "properties": {"lassalle_jean": 24.0, "pecresse_valerie": 54, "zemmour_eric": 79.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-15", "circ_bv": "09", "num_bureau": 15, "roussel_fabien": 21.0, "nb_emargement": 1222.0, "nb_procuration": 38.0, "nb_vote_blanc": 16.0, "jadot_yannick": 56.0, "le_pen_marine": 82.0, "nb_exprime": 1198.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1718.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1222, "quartier_bv": "50", "geo_point_2d": [48.82536627452999, 2.3647548270220753], "melenchon_jean_luc": 453.0, "poutou_philippe": 3.0, "macron_emmanuel": 390.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.322817622301627, 48.89361136193106], [2.322846392824119, 48.893612490496864], [2.322863239369851, 48.893613150533135], [2.322883460611163, 48.89358829604743], [2.322885835207187, 48.89358766375979], [2.323021896760275, 48.893560924508044], [2.323273754670732, 48.89351142744157], [2.32340981446165, 48.89348468773951], [2.3234128230200772, 48.89347683205684], [2.323408490546635, 48.89346670727209], [2.323280626407578, 48.893443084385545], [2.323198724509095, 48.8934279535496], [2.323192846191415, 48.893427736864446], [2.32305734541377, 48.89344232511854], [2.322920716140269, 48.893457683854805], [2.322785215208441, 48.893472271800604], [2.322648585787781, 48.89348762932672], [2.322645191825938, 48.893488302608624], [2.322462427897824, 48.89354247368357], [2.322278889997014, 48.89359687392303], [2.3220961253067802, 48.89365104443355], [2.32191258800425, 48.89370544411393], [2.321729822540082, 48.893759614959286], [2.32154628447221, 48.893814014072866], [2.321363518257439, 48.89386818345458], [2.321179978060292, 48.89392258199365], [2.321162330677133, 48.89391858518712], [2.321067896512587, 48.89380088682698], [2.320973774111311, 48.8936835786531], [2.320879340799152, 48.89356588011907], [2.320785219259271, 48.893448570872515], [2.3206907867878552, 48.89333087306382], [2.320596666097629, 48.89321356364395], [2.320502234478778, 48.893095865661316], [2.320408114638096, 48.892978556068115], [2.320313683871697, 48.89286085791156], [2.32021956488075, 48.89274354814502], [2.320125134966691, 48.892625849814586], [2.32003101682537, 48.8925085398747], [2.319936587763742, 48.89239084137036], [2.319842470472034, 48.892273531257146], [2.319748042262928, 48.89215583257887], [2.319653925820722, 48.89203852229234], [2.319559497100244, 48.89192082343242], [2.319465382871515, 48.891803512980324], [2.319370955003341, 48.89168581394656], [2.3192768402604163, 48.891568503313344], [2.319182414620271, 48.89145080321416], [2.319088300715057, 48.89133349330696], [2.319096386551567, 48.89131318753712], [2.319089648878269, 48.8913088288623], [2.319083364430266, 48.89131205048563], [2.318946766531265, 48.89138717407905], [2.31882768882184, 48.891452661975165], [2.318691090173298, 48.891527786166556], [2.318572011820725, 48.891593273800034], [2.318558221008657, 48.891595010160515], [2.3185509657825643, 48.89160487404784], [2.318516211603626, 48.891624084615245], [2.318366988715993, 48.89170656681391], [2.318233437065777, 48.891785952635445], [2.3180842119026073, 48.8918684344618], [2.317950660769848, 48.89194781996398], [2.317934038810202, 48.8919556726287], [2.31794950863958, 48.89197715479982], [2.318034314882852, 48.892094720103216], [2.318121129498348, 48.892215068489016], [2.318205936516641, 48.89233263364538], [2.318292750561818, 48.89245298187289], [2.318377558366913, 48.89257054598291], [2.318464374569166, 48.89269089406765], [2.318549183137527, 48.892808458929906], [2.318636000133176, 48.89292880686412], [2.318720808112776, 48.893046371571536], [2.31880762590193, 48.89316671935515], [2.318892436020401, 48.89328428392331], [2.31897925461463, 48.89340463065718], [2.319064065508171, 48.89352219507825], [2.319150883520337, 48.89364254255301], [2.319235695188954, 48.89376010682701], [2.319316027498246, 48.89387146181356], [2.319400839912555, 48.89398902594604], [2.319481174280339, 48.894100381705535], [2.319565987440556, 48.894217945696504], [2.319646321162673, 48.89432930041497], [2.319726655228319, 48.89444065506819], [2.319811469497139, 48.894558218848836], [2.319823518486563, 48.89457492027032], [2.319832354343187, 48.8945782367984], [2.319851790285439, 48.89457208160282], [2.320017066162582, 48.89452443784438], [2.320188336935007, 48.894475066115], [2.32035361356006, 48.89442742189565], [2.320524883705839, 48.8943780487813], [2.320542112365306, 48.89438174023169], [2.320638760466045, 48.89449041780209], [2.320736570389034, 48.89460039959491], [2.320833219289743, 48.894709077885935], [2.32093102867043, 48.894819059490246], [2.321027678394782, 48.894927736703416], [2.321125489949163, 48.89503771903394], [2.3211475532382, 48.89503906628627], [2.321289219265064, 48.89493149547134], [2.321424664975142, 48.8948286475524], [2.321566329856923, 48.894721076389004], [2.321701775836051, 48.89461822814464], [2.321837221291775, 48.89451537883817], [2.321978883093133, 48.894407808047525], [2.321980570655076, 48.894397619276745], [2.321901683142433, 48.8943018623205], [2.321821732502006, 48.894204815047765], [2.321742846937362, 48.89410905797778], [2.3216628968890642, 48.89401201058191], [2.321668612087986, 48.89399973211508], [2.32186960286481, 48.89393112611208], [2.322050071878283, 48.89386952443672], [2.322230540453104, 48.89380792338528], [2.322431531112763, 48.89373931643484], [2.322611998796536, 48.89367771390194], [2.322812987075473, 48.89360910719469], [2.322817622301627, 48.89361136193106]]], "type": "Polygon"}, "properties": {"lassalle_jean": 18.0, "pecresse_valerie": 65, "zemmour_eric": 77.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "17-26", "circ_bv": "03", "num_bureau": 26, "roussel_fabien": 25.0, "nb_emargement": 1274.0, "nb_procuration": 92.0, "nb_vote_blanc": 13.0, "jadot_yannick": 108.0, "le_pen_marine": 66.0, "nb_exprime": 1255.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1642.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1274, "quartier_bv": "68", "geo_point_2d": [48.89325517009073, 2.319960316526878], "melenchon_jean_luc": 382.0, "poutou_philippe": 6.0, "macron_emmanuel": 453.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.305474074261746, 48.854322070293854], [2.305409538037184, 48.85434342596183], [2.30539700497412, 48.85435170913879], [2.305439429484183, 48.85436851887275], [2.3055598727475948, 48.85444469291939], [2.305703439925445, 48.85453450666364], [2.305823882595782, 48.85461068042527], [2.305887927859311, 48.854650745991655], [2.305909223582355, 48.85466502360724], [2.305919198015695, 48.85466537105836], [2.305998720894487, 48.8547151188846], [2.306138013847087, 48.85480229645305], [2.306281583006744, 48.85489210947477], [2.3064208769177, 48.85497928580076], [2.306564448415391, 48.8550690984767], [2.306703743260669, 48.85515627535881], [2.306847314370773, 48.85524608767315], [2.30698661016255, 48.855333264212135], [2.307130182247887, 48.85542307617272], [2.307269480360751, 48.85551025147714], [2.307413053421329, 48.855600063084076], [2.307552351105921, 48.8556872389367], [2.307695925141744, 48.85577705018987], [2.307835223772753, 48.855864225699335], [2.307978800146666, 48.855954036606704], [2.30811809973594, 48.85604121087371], [2.308261675722274, 48.85613102141948], [2.3084009762461353, 48.856218196242544], [2.30854455457058, 48.85630800644247], [2.308683856040879, 48.85639518092235], [2.308827433977749, 48.85648499076072], [2.308966736406314, 48.85657216399811], [2.309110315306534, 48.856661974382], [2.309249620044503, 48.85674914728403], [2.3093931999319333, 48.856838956414954], [2.309532504241472, 48.85692612986521], [2.309676085104293, 48.857015938642355], [2.309815390372203, 48.85710311085012], [2.3098850195683758, 48.8571021741938], [2.309893660870698, 48.8570735525966], [2.309879832178739, 48.85694535433993], [2.309865972706551, 48.856818044451735], [2.309852144150529, 48.856689846162354], [2.309838283451101, 48.85656253623381], [2.309824455031015, 48.85643433791172], [2.309810594467212, 48.85630702795067], [2.309796766183063, 48.856178829595905], [2.309782905754778, 48.85605151960236], [2.309769077606666, 48.855923321214874], [2.309755218676834, 48.8557960111967], [2.309741390664549, 48.855667812776524], [2.309727530507598, 48.855540502718], [2.309713702631243, 48.85541230426515], [2.309699842597993, 48.85528499507342], [2.30968601486948, 48.85515679568857], [2.309672154971842, 48.855029486464375], [2.309658327379256, 48.85490128704685], [2.309644468980038, 48.85477397779802], [2.309630641523373, 48.85464577834781], [2.309616781896952, 48.854518469058625], [2.309602954576209, 48.85439026957575], [2.309589095085395, 48.8542629602541], [2.309575267900573, 48.854134760738546], [2.309561408545262, 48.854007451384405], [2.309561137163643, 48.85396406032071], [2.309517661772556, 48.85395181292067], [2.309322826535028, 48.85396340086218], [2.309135420708931, 48.85397340894215], [2.308940583942863, 48.85398499625319], [2.308753177965686, 48.853995003734276], [2.308558341033873, 48.854006590422685], [2.308370934905623, 48.85401659730497], [2.308176097808076, 48.85402818337075], [2.30798869152866, 48.854038189654155], [2.30779385426549, 48.85404977509733], [2.307606447835017, 48.854059780781874], [2.307411610406028, 48.85407136560244], [2.307224203824612, 48.854081370688135], [2.307036797183188, 48.854091374580904], [2.30684195949746, 48.854102959372874], [2.306654552705008, 48.85411296266681], [2.3064597148535793, 48.8541245468361], [2.306456306489918, 48.85412504511069], [2.306293625418993, 48.85415854567002], [2.306087013249175, 48.85420780431058], [2.305924330319654, 48.85424130435745], [2.305717717484563, 48.85429056145743], [2.305555034059246, 48.85432406099972], [2.305474074261746, 48.854322070293854]]], "type": "Polygon"}, "properties": {"lassalle_jean": 19.0, "pecresse_valerie": 149, "zemmour_eric": 124.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "7-15", "circ_bv": "02", "num_bureau": 15, "roussel_fabien": 15.0, "nb_emargement": 1188.0, "nb_procuration": 55.0, "nb_vote_blanc": 6.0, "jadot_yannick": 71.0, "le_pen_marine": 74.0, "nb_exprime": 1179.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 4, "nb_inscrit": 1444.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1188, "quartier_bv": "28", "geo_point_2d": [48.85511440897325, 2.3082472757845123], "melenchon_jean_luc": 130.0, "poutou_philippe": 1.0, "macron_emmanuel": 560.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.318375625677554, 48.88654042765498], [2.318380304295065, 48.88653138724408], [2.318504421141378, 48.88644808283494], [2.3186560541811723, 48.88634636550862], [2.318780168781722, 48.88626306079186], [2.318931802095991, 48.88616134400624], [2.319055915814324, 48.88607803898962], [2.319207546699337, 48.88597632093067], [2.319331660899288, 48.885893015621946], [2.319483290695167, 48.88579129809591], [2.319607402649289, 48.88570799247961], [2.319607824857234, 48.88570772058302], [2.31961205497688, 48.885705116777224], [2.319627116842173, 48.885701685984365], [2.319631670938173, 48.88569255128137], [2.31977942222568, 48.885601613189536], [2.319927228010485, 48.88551063924714], [2.320074978265716, 48.88541970077556], [2.320222783017853, 48.885328726453224], [2.320370532240812, 48.885237787601845], [2.32051833596039, 48.885146812899634], [2.320666084162716, 48.885055872769236], [2.3208138868379082, 48.88496489858639], [2.320961632644476, 48.884873958068525], [2.321109435650521, 48.88478298351353], [2.321257180424838, 48.88469204261592], [2.32140498240996, 48.88460106678178], [2.321409090208958, 48.88459245288568], [2.321395416948084, 48.884582597858284], [2.321268038341555, 48.88451383961103], [2.321140582875815, 48.884445040316336], [2.321013204942231, 48.88437628178934], [2.320885751513318, 48.88430748222253], [2.320758372900822, 48.884238722508854], [2.320630920145354, 48.884169922662124], [2.320626459146355, 48.88416546454289], [2.320573067897973, 48.884043804838505], [2.32051911677941, 48.883920864866646], [2.320465727396147, 48.883799205095045], [2.32041177542083, 48.88367626503974], [2.320401349635849, 48.88366994650888], [2.320186734931827, 48.88364165910934], [2.31997235461437, 48.883613401432925], [2.319757741739874, 48.88358511327071], [2.31954336188798, 48.88355685482477], [2.319328748116094, 48.88352856588438], [2.31911436871802, 48.88350030756809], [2.31909763344225, 48.88349472826379], [2.319083332568884, 48.88350268336634], [2.318983929266606, 48.883599402375886], [2.31886964844665, 48.88371059594928], [2.318770244350741, 48.88380731476313], [2.318655961254687, 48.883918508103804], [2.318556556364934, 48.88401522672191], [2.318442273720015, 48.884126419845366], [2.318296855762529, 48.88426790674203], [2.318182571996694, 48.884379100491266], [2.31810517166502, 48.88445440591505], [2.317990887080605, 48.88456559946248], [2.31791348755803, 48.88464090475736], [2.317799202155129, 48.88475209810298], [2.317688764540107, 48.88485954595921], [2.317574478177427, 48.88497073906821], [2.317464039635143, 48.88507818669582], [2.317349750949169, 48.88518937956044], [2.317239311479407, 48.88529682695935], [2.317125023197437, 48.88540801959513], [2.317014582800292, 48.88551546676537], [2.316900293558512, 48.88562665916452], [2.316789852234075, 48.88573410610617], [2.316675562032576, 48.885845298268684], [2.316565119768831, 48.885952745880886], [2.316564263116545, 48.88595349193225], [2.316484062838907, 48.886016303830665], [2.316390195661978, 48.88609040967828], [2.316390267716633, 48.88610351513503], [2.316401240857019, 48.88610948368933], [2.316550701783437, 48.88621069861474], [2.316702208042733, 48.886312079698165], [2.316851668760194, 48.88641329512067], [2.317003176194889, 48.886514675804605], [2.31715263809063, 48.8866158899335], [2.317304146688942, 48.88671727111713], [2.317453611114823, 48.88681848485946], [2.317605120900243, 48.88691986474432], [2.317615840296678, 48.886923574417175], [2.317635429354663, 48.88691563165878], [2.317815008984745, 48.8868233296912], [2.3179977029187953, 48.88672955499951], [2.31817727990138, 48.886637252465185], [2.318359972530104, 48.88654347720486], [2.318375625677554, 48.88654042765498]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 113, "zemmour_eric": 84.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-5", "circ_bv": "03", "num_bureau": 5, "roussel_fabien": 15.0, "nb_emargement": 1235.0, "nb_procuration": 88.0, "nb_vote_blanc": 11.0, "jadot_yannick": 120.0, "le_pen_marine": 46.0, "nb_exprime": 1223.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1490.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1235, "quartier_bv": "67", "geo_point_2d": [48.88513535145493, 2.3188343645443754], "melenchon_jean_luc": 222.0, "poutou_philippe": 2.0, "macron_emmanuel": 580.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.389384119579635, 48.872851357643576], [2.38934820772767, 48.87283610789322], [2.389199235135197, 48.87277570304842], [2.3890264467252003, 48.87270552119784], [2.388838072144647, 48.872629138640086], [2.388665284696911, 48.87255895715812], [2.388476911175917, 48.87248257402189], [2.388304124711646, 48.872412391110004], [2.388300500751486, 48.87241136353675], [2.388144897317264, 48.87238397222468], [2.387992974109771, 48.872356081508244], [2.387837371013082, 48.872328688895806], [2.387685448131398, 48.87230079778767], [2.3876828914283132, 48.87230013988572], [2.387485345724195, 48.87223343544914], [2.387298068875329, 48.8721704633234], [2.387296547619999, 48.87216986467327], [2.387150665446549, 48.872103585989976], [2.386978404486934, 48.87202572978571], [2.386832523111284, 48.871959451605335], [2.386660264477714, 48.8718815940408], [2.386514382547277, 48.87181531545703], [2.386342124855304, 48.871737458323814], [2.386196243744045, 48.871671178444394], [2.386023987004154, 48.87159332084316], [2.385878108054035, 48.8715270414737], [2.385795959553713, 48.87147690288164], [2.3857613026325932, 48.87147979897259], [2.385743731607351, 48.871479272626296], [2.385560808305137, 48.87157211023873], [2.38539044438838, 48.87166993592007], [2.38538875964072, 48.87167094891505], [2.3852883244325582, 48.87174240162647], [2.385117959447097, 48.8718402269049], [2.38501752218852, 48.871911678471896], [2.38501654226788, 48.871912460356064], [2.38490949179224, 48.872008338883255], [2.384802027999597, 48.872104318607725], [2.384694978097975, 48.8722001969334], [2.384587513524862, 48.872296175549344], [2.384480461460177, 48.87239205455874], [2.384372997459245, 48.87248803297244], [2.38426594461602, 48.872583910874084], [2.384158478450069, 48.87267988997078], [2.384157784581172, 48.87268046017677], [2.384034700143688, 48.872773500714466], [2.383906068639416, 48.8728710793932], [2.383782981938675, 48.872964119648984], [2.383654349492104, 48.87306169804039], [2.383531263254484, 48.87315473802828], [2.383402629876254, 48.87325231523305], [2.383279542738661, 48.87334535494609], [2.383150908407476, 48.873442932762806], [2.383143992590217, 48.87348007022246], [2.383173557130018, 48.873491707075004], [2.383179646364025, 48.87349259192114], [2.383255393861467, 48.87350329309049], [2.383458784160613, 48.87352988644444], [2.383650893128586, 48.873557025717005], [2.383854283828834, 48.87358361929698], [2.384046393201054, 48.87361075793348], [2.384249784323571, 48.87363734994089], [2.384441894100127, 48.87366448794138], [2.384443389444265, 48.873664742048604], [2.384587132268618, 48.873695003588075], [2.384835900605238, 48.87373861395142], [2.384979643861596, 48.87376887501754], [2.384983342028904, 48.87377008653539], [2.385104019169173, 48.87382419529508], [2.385235538419359, 48.87388521163835], [2.385270906808333, 48.87390107046743], [2.385275783236315, 48.873902142334735], [2.385316074972029, 48.87386600085463], [2.385426849807132, 48.87374730533675], [2.385538383590275, 48.873627796107165], [2.385649157412183, 48.87350910035795], [2.38576069017509, 48.87338959089544], [2.385871462983917, 48.87327089491487], [2.385982994726702, 48.87315138521944], [2.385992998315256, 48.87314716919002], [2.386181310142904, 48.87313243259848], [2.386389618957554, 48.87311613085404], [2.386577931934664, 48.87310139274582], [2.386786239137847, 48.8730850903037], [2.386974551879822, 48.87307035247045], [2.387182858834731, 48.87305404933765], [2.387371171352258, 48.87303931088006], [2.387579479432751, 48.87302300616433], [2.387767790362521, 48.87300826707539], [2.387976098184141, 48.87299196256827], [2.388164408889445, 48.87297722285498], [2.38837271646276, 48.87296091765722], [2.388561028306885, 48.87294617732653], [2.388769334279242, 48.8729298705319], [2.388957645898881, 48.87291512957684], [2.389165951612254, 48.87289882299086], [2.389354263007398, 48.87288408141145], [2.389384119579635, 48.872851357643576]]], "type": "Polygon"}, "properties": {"lassalle_jean": 12.0, "pecresse_valerie": 23, "zemmour_eric": 47.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-11", "circ_bv": "15", "num_bureau": 11, "roussel_fabien": 30.0, "nb_emargement": 1212.0, "nb_procuration": 62.0, "nb_vote_blanc": 15.0, "jadot_yannick": 64.0, "le_pen_marine": 47.0, "nb_exprime": 1197.0, "nb_vote_nul": 9.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1648.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1221, "quartier_bv": "77", "geo_point_2d": [48.872718782628965, 2.3858870090001436], "melenchon_jean_luc": 713.0, "poutou_philippe": 10.0, "macron_emmanuel": 212.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.316634938902151, 48.84680845285433], [2.316536229423541, 48.84680852933705], [2.31635428271782, 48.8467523525599], [2.316180178852063, 48.84669927276581], [2.315998232911587, 48.84664309544172], [2.315824128410982, 48.846590015116504], [2.315642183235755, 48.8465338372454], [2.315468080825293, 48.84648075640462], [2.315286136415318, 48.84642457798658], [2.315112033370017, 48.84637149661469], [2.314937932030042, 48.84631841589399], [2.314755988770138, 48.84626223576222], [2.314581888157913, 48.84620915451825], [2.314399945663271, 48.8461529738395], [2.314337428071056, 48.84613391329465], [2.314319325208662, 48.84613618296141], [2.314298799428715, 48.84617574342687], [2.314280735690244, 48.846304076150915], [2.314258296373434, 48.8464388259153], [2.314240233806633, 48.84656715861074], [2.314217794271823, 48.8467019083357], [2.314216948054218, 48.84670418606791], [2.3141474362648218, 48.846821204802], [2.314073548041261, 48.84694654717714], [2.314004035606604, 48.84706356580248], [2.313930148045297, 48.84718890896893], [2.313860634977215, 48.84730592658617], [2.313786745364871, 48.84743126962898], [2.313717231651515, 48.847548287137464], [2.313643342713153, 48.84767363007224], [2.313612958012023, 48.84772477785295], [2.313599160454583, 48.847761104869825], [2.313624081627048, 48.84777382991983], [2.313799703285913, 48.847815314017254], [2.313976422559198, 48.8478598763678], [2.314152043425981, 48.84790135993704], [2.314328764654964, 48.847945921771526], [2.314504386092084, 48.84798740482034], [2.314681106551502, 48.848031966123145], [2.314856729933513, 48.84807344776006], [2.31503345097427, 48.848118009438274], [2.315209074926708, 48.8481594905548], [2.315385796560426, 48.84820405170917], [2.315561421083287, 48.848245532305256], [2.315738143310064, 48.84829009293573], [2.315746517942232, 48.84830062378852], [2.315694533148756, 48.848441325637296], [2.315643394378924, 48.84857756156221], [2.315591409042575, 48.84871826243189], [2.31554026973139, 48.84885449827891], [2.315488283828536, 48.84899519996804], [2.315437143975988, 48.84913143573708], [2.315385156167582, 48.849272136439374], [2.315334017136328, 48.84940837213819], [2.315334299295027, 48.84941334541782], [2.315348155795431, 48.84944113760583], [2.315360190249999, 48.84945016050421], [2.315394765006788, 48.84944888249553], [2.315573486038216, 48.849497608881485], [2.315753003035415, 48.84954604006161], [2.315931724735013, 48.84959476590821], [2.316111242388135, 48.84964319744588], [2.316289964755799, 48.84969192275312], [2.316469484451024, 48.849740352857545], [2.316648207486852, 48.84978907762539], [2.316827726475227, 48.84983750807961], [2.317006450179215, 48.8498862323081], [2.317185969846995, 48.84993466132129], [2.317364694219242, 48.8499833850104], [2.317544215905437, 48.85003181438893], [2.317722939583152, 48.850080537530886], [2.317902461948736, 48.85012896546836], [2.317920391686897, 48.850123774052655], [2.317991879807293, 48.84999683852842], [2.318062294975646, 48.8498705362784], [2.318133782414657, 48.84974359974118], [2.3182041968969003, 48.849617297378906], [2.318275683631204, 48.84949036162735], [2.318346097427348, 48.84936405915283], [2.318417583480282, 48.84923712238832], [2.318487996590335, 48.84911081980155], [2.318559481950345, 48.84898388292336], [2.31862989436256, 48.84885758112366], [2.318701379029455, 48.84873064413186], [2.318771790767357, 48.84860434132061], [2.318843274741346, 48.848477404215146], [2.318913685793085, 48.84835110129172], [2.318985169062328, 48.84822416497187], [2.319055579428117, 48.84809786193617], [2.3191270620160243, 48.847970924603395], [2.31919747169577, 48.847844621455536], [2.319242000472739, 48.84781012350863], [2.319227096452244, 48.84779542318054], [2.319135860495041, 48.847760176054706], [2.318957134060911, 48.84769152771444], [2.318801850583001, 48.84763153673001], [2.318623125030128, 48.847562887882845], [2.3184678409574992, 48.84750289645021], [2.318289117660065, 48.84743424620467], [2.318133834355244, 48.84737425433162], [2.318133401747115, 48.847374094477686], [2.317955903520128, 48.84731113287239], [2.31776180137116, 48.84724233838577], [2.317584304030098, 48.84717937712105], [2.3173902014997863, 48.84711058201563], [2.317212705068201, 48.84704761929287], [2.3170186048817722, 48.846978823584244], [2.316841109347889, 48.846915860302765], [2.31664700878013, 48.84684706397533], [2.316634938902151, 48.84680845285433]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 144, "zemmour_eric": 116.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "7-9", "circ_bv": "12", "num_bureau": 9, "roussel_fabien": 11.0, "nb_emargement": 1029.0, "nb_procuration": 82.0, "nb_vote_blanc": 10.0, "jadot_yannick": 76.0, "le_pen_marine": 53.0, "nb_exprime": 1016.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1261.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1029, "quartier_bv": "27", "geo_point_2d": [48.84809879761869, 2.3165201414525898], "melenchon_jean_luc": 100.0, "poutou_philippe": 3.0, "macron_emmanuel": 489.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.364876063880095, 48.87652712603912], [2.364890906277205, 48.87654144843353], [2.364925250254527, 48.87658203770328], [2.365025071437666, 48.876700013908824], [2.3651192008784863, 48.87681125889614], [2.365219022940369, 48.87692923491546], [2.365313151846218, 48.877040479719845], [2.3654129747757953, 48.87715845645221], [2.365507105884641, 48.877269700188926], [2.365606929692783, 48.87738767673499], [2.365701060266765, 48.87749892028887], [2.365695480570041, 48.877537572831876], [2.365713915153224, 48.877542244514565], [2.365808047587536, 48.877653488875225], [2.365902487368756, 48.87776483190439], [2.365996619255673, 48.87787607518781], [2.366091059832794, 48.877987418944976], [2.366185192524784, 48.87809866205766], [2.366279633919507, 48.87821000474432], [2.36637376876907, 48.87832124859275], [2.366468210970562, 48.87843259110815], [2.366562345272728, 48.8785438338793], [2.36665678827016, 48.878655177122745], [2.366750924740771, 48.87876641973039], [2.366845367192478, 48.878877761896064], [2.366939504457375, 48.8789890052322], [2.367033949079222, 48.879100347233866], [2.367128085796723, 48.87921158949275], [2.367222531214445, 48.879322932222394], [2.367316670100536, 48.879434174317744], [2.367411116336001, 48.87954551597685], [2.367505254652849, 48.87965675879347], [2.367599701695236, 48.87976810028133], [2.367608780901776, 48.87977005662142], [2.367647976011116, 48.8797519532802], [2.36778955075215, 48.87967566341136], [2.367954465299632, 48.879582353548614], [2.368096039130669, 48.87950606330564], [2.368217443810167, 48.87943737102477], [2.368243378204167, 48.87942960546311], [2.368250905594311, 48.87941538269322], [2.368294415716318, 48.87939076377006], [2.368440881657331, 48.87930406218676], [2.368605793872085, 48.879210750496085], [2.368752258799386, 48.87912404761837], [2.368917171238702, 48.879030736389964], [2.3689733089805483, 48.878997503434015], [2.368988035602227, 48.8789855201241], [2.368961179944578, 48.87896649170788], [2.368838310497781, 48.87885829472822], [2.368716222109507, 48.87875083378377], [2.368593353680374, 48.87864263653154], [2.3684712649397293, 48.878535175309054], [2.368349178055428, 48.878427714858084], [2.368226311151095, 48.87831951719739], [2.368104223925118, 48.87821205556911], [2.367981359401853, 48.87810385764304], [2.367859273176007, 48.87799639664318], [2.36773640968128, 48.877888197545325], [2.367614324466264, 48.87778073627462], [2.367491460625738, 48.87767253689697], [2.36736937778516, 48.87756507536271], [2.367246514962247, 48.877456875712475], [2.367243993058194, 48.87745301683544], [2.367213223573691, 48.87733641486926], [2.367181478851645, 48.87721536502168], [2.367150708284095, 48.87709876300705], [2.3671189638521932, 48.87697771311682], [2.36712534794066, 48.87696848283608], [2.367280171057922, 48.87690602954676], [2.367458317237714, 48.876835035118056], [2.367613139558922, 48.87677258139055], [2.367791284828504, 48.87670158645777], [2.367834856030693, 48.87668401065427], [2.367851148840063, 48.876672591519885], [2.367836025874791, 48.876659185337175], [2.367693475181546, 48.87657598427829], [2.367550170397946, 48.87649249216957], [2.367407620617572, 48.87640929075772], [2.367264316750851, 48.8763257982942], [2.367121767894269, 48.876242595630146], [2.366978464944424, 48.87615910281179], [2.366835916989777, 48.876075900694026], [2.366692614956801, 48.875992407520876], [2.36655006791511, 48.87590920505018], [2.366406766798895, 48.875825711522225], [2.366264220670054, 48.87574250869855], [2.366120920470699, 48.87565901481582], [2.365978375265649, 48.87557581073991], [2.36583507598315, 48.875492316502395], [2.36583100971255, 48.87548306688884], [2.365881873364402, 48.87536762794616], [2.365941308315956, 48.87523283662028], [2.365992171478987, 48.87511739760458], [2.366051605859663, 48.87498260619334], [2.366102468533879, 48.87486716710458], [2.366161902343482, 48.87473237560801], [2.366212764528889, 48.87461693644625], [2.366272196404299, 48.87448214485715], [2.366323059464237, 48.87436670562951], [2.366382490768595, 48.87423191395507], [2.366433353339834, 48.87411647465441], [2.366455298301115, 48.874104043271494], [2.366435452106738, 48.87408549735475], [2.366428874904549, 48.874082265404816], [2.366243864394197, 48.87403982306294], [2.366063290698047, 48.87399849572245], [2.365878279419923, 48.873956052805134], [2.36569770630426, 48.87391472491002], [2.365517133475148, 48.87387339674098], [2.365332124460592, 48.87383095208271], [2.365151550848763, 48.87378962335181], [2.364966542418713, 48.87374717902458], [2.364956274239875, 48.87374778556277], [2.364939975407497, 48.873750775722485], [2.364934956297263, 48.87375730345574], [2.364769904165128, 48.87383557105548], [2.364612689774289, 48.873908908498635], [2.364609692227399, 48.873909982582816], [2.364450904332949, 48.873950893096634], [2.364300134478269, 48.873989550875336], [2.364149365763113, 48.874028208470015], [2.363990577146691, 48.874069118368915], [2.363975878025068, 48.87406703385046], [2.363948680987226, 48.8740474007322], [2.3638998994298, 48.87401454688763], [2.363882854394979, 48.87396531569389], [2.363867525081658, 48.873965156888524], [2.363796890066092, 48.873983194502074], [2.363697273827015, 48.87401192131722], [2.36369646272248, 48.87401213554431], [2.363515047672733, 48.87405845995104], [2.3633811667781712, 48.87409050901936], [2.363248784447805, 48.87412431241964], [2.363114903220145, 48.87415636118828], [2.363086560382039, 48.87416009821611], [2.363098419542275, 48.874209012340096], [2.363191346929466, 48.87433234071637], [2.363283744516802, 48.874454878368354], [2.363376672770468, 48.87457820747256], [2.36346907122996, 48.8747007449542], [2.363562000372098, 48.87482407298776], [2.36365439969277, 48.87494661119832], [2.363747331075643, 48.87506993906776], [2.363839731279485, 48.87519247620869], [2.363932662165633, 48.8753158047988], [2.364025063241666, 48.87543834176938], [2.364117995016309, 48.8755616692889], [2.364210396953565, 48.875684206988346], [2.364303329605732, 48.87580753433649], [2.36439573378955, 48.875930070973496], [2.364488137044785, 48.87605260751835], [2.364581071000956, 48.87617593550896], [2.364581414830047, 48.87617636271904], [2.364652425316546, 48.876259095241736], [2.364746551801198, 48.876370340559255], [2.364817562814375, 48.876453072969426], [2.364877347410719, 48.87652372887051], [2.364876063880095, 48.87652712603912]]], "type": "Polygon"}, "properties": {"lassalle_jean": 7.0, "pecresse_valerie": 32, "zemmour_eric": 61.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-18", "circ_bv": "05", "num_bureau": 18, "roussel_fabien": 16.0, "nb_emargement": 1012.0, "nb_procuration": 53.0, "nb_vote_blanc": 14.0, "jadot_yannick": 77.0, "le_pen_marine": 45.0, "nb_exprime": 994.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1420.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1012, "quartier_bv": "40", "geo_point_2d": [48.87644433794961, 2.366004982081946], "melenchon_jean_luc": 427.0, "poutou_philippe": 5.0, "macron_emmanuel": 293.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.277588554388263, 48.842545396349735], [2.2775823559033173, 48.84254402964918], [2.277438448644538, 48.842604886075456], [2.277328305508678, 48.842652885652754], [2.277325626542582, 48.84265436961796], [2.277278679069288, 48.84268806239093], [2.277231429476333, 48.84272201863353], [2.277227880536933, 48.84272384359763], [2.277055845558702, 48.842785318360356], [2.27688411562727, 48.842846677800644], [2.276712079838115, 48.842908152062286], [2.276540349097238, 48.84296951100228], [2.276368312497158, 48.84303098476279], [2.276196580946837, 48.84309234320257], [2.276024543535835, 48.84315381646194], [2.27585281117607, 48.843215174401536], [2.275680772966645, 48.84327664626047], [2.275509039797441, 48.843338003699785], [2.275337000764598, 48.84339947595687], [2.275165266785951, 48.84346083289597], [2.274993226942188, 48.84352230465197], [2.274821492154101, 48.843583661090776], [2.274649451499418, 48.84364513234561], [2.274477715901891, 48.8437064882842], [2.274305674436289, 48.84376795903787], [2.274133938029323, 48.84382931447619], [2.273961895765331, 48.84389078382948], [2.273790158548927, 48.84395213876752], [2.273618115461596, 48.84401360851892], [2.2734463774356533, 48.844074962956725], [2.273274333537404, 48.84413643220699], [2.2731025947020242, 48.84419778614453], [2.2730408060175, 48.844221088379946], [2.273054908897453, 48.84423780970612], [2.273164296920362, 48.84434872979504], [2.2732732125791753, 48.844460235987206], [2.273382601533543, 48.84457115585441], [2.273491518124156, 48.84468266182554], [2.273600908022526, 48.844793580571725], [2.273709826895061, 48.844905087229456], [2.273819216362361, 48.845016005745606], [2.273928136166929, 48.84512751218235], [2.274037526565709, 48.84523843047675], [2.274146447302115, 48.84534993669252], [2.274255839994945, 48.845460854773435], [2.274364760300744, 48.8455723607599], [2.274474153925079, 48.845683278619106], [2.274583075175453, 48.84579478348528], [2.274692469718787, 48.84590570202202], [2.274801393263596, 48.846017206675405], [2.274905371459151, 48.846124451518456], [2.275014294554095, 48.84623595594788], [2.2751182736242033, 48.84634320058483], [2.275227198994445, 48.846454704806824], [2.275287709137714, 48.84651709171413], [2.275350443724893, 48.846581311479305], [2.275353226559568, 48.84659217200143], [2.275372922687704, 48.846605210704965], [2.27541911422581, 48.84665249587973], [2.275472441350473, 48.84670905714687], [2.275494527156276, 48.84671870439867], [2.275542426034967, 48.846686808819115], [2.275695487193674, 48.8466072611345], [2.275847742738539, 48.846528581660145], [2.276000804329092, 48.846449033581905], [2.276153058950748, 48.84637035370784], [2.276306118247976, 48.84629080521941], [2.276458371946532, 48.84621212494563], [2.276610625197745, 48.846133443573216], [2.276763684463234, 48.84605389449077], [2.276915936778864, 48.84597521361798], [2.277068995113622, 48.845895664133636], [2.277221246506056, 48.8458169828611], [2.277374302547619, 48.84573743296664], [2.277526553029229, 48.84565875039513], [2.277679609502632, 48.845579200107], [2.277831859048586, 48.84550051803508], [2.277984913228709, 48.84542096733687], [2.27813716185148, 48.84534228486525], [2.278290216463446, 48.845262733773424], [2.278442464163038, 48.84518405090213], [2.278595517856739, 48.84510449850907], [2.278747764633152, 48.845025815238074], [2.278900816021145, 48.844946263334315], [2.279053061874388, 48.844867579663635], [2.279206113694225, 48.84478802736616], [2.279358358624299, 48.84470934329583], [2.279511408150894, 48.8446297905883], [2.279529079391982, 48.84462510967646], [2.279531899266989, 48.844601706215975], [2.279415915230932, 48.84448737520243], [2.279305650384381, 48.84437877691292], [2.279189667353203, 48.84426444475789], [2.279079403449741, 48.84415584623813], [2.278969140005796, 48.84404724760617], [2.278853158450616, 48.84393291509088], [2.2787428959497458, 48.843824316228705], [2.278626915386984, 48.843709983471264], [2.278607204159886, 48.84370790038886], [2.278585728801697, 48.84371897612296], [2.278564146400567, 48.84373010606912], [2.278544370665095, 48.843727957832854], [2.278441004905864, 48.843624116548845], [2.278338408266309, 48.84352104786423], [2.278319780479841, 48.843518367792804], [2.278165088622501, 48.84358240941154], [2.278005146839375, 48.843649164018544], [2.277850454207205, 48.843713205222926], [2.277690510257178, 48.84377995939323], [2.2775358168501763, 48.84384400018326], [2.277375873470748, 48.843910753033995], [2.277355064147946, 48.843902071638745], [2.277379859715756, 48.84376683672168], [2.277404239847411, 48.8436334483773], [2.277429036522332, 48.843498213425725], [2.2774534164024702, 48.843364825039195], [2.277478211459584, 48.8432295900367], [2.277502591088213, 48.84309620160802], [2.277527385889835, 48.8429609665627], [2.277551765266958, 48.84282757809188], [2.277576561175682, 48.84269234301206], [2.2776009403014, 48.84255895449911], [2.277588554388263, 48.842545396349735]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 91, "zemmour_eric": 113.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "15-82", "circ_bv": "13", "num_bureau": 82, "roussel_fabien": 26.0, "nb_emargement": 1116.0, "nb_procuration": 52.0, "nb_vote_blanc": 16.0, "jadot_yannick": 44.0, "le_pen_marine": 72.0, "nb_exprime": 1093.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1426.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1116, "quartier_bv": "60", "geo_point_2d": [48.84463263999574, 2.276254805087677], "melenchon_jean_luc": 341.0, "poutou_philippe": 4.0, "macron_emmanuel": 345.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.277057042221043, 48.848106680496954], [2.276990604715753, 48.848128444783455], [2.276808056137344, 48.84818577954142], [2.276616970302358, 48.84824532790342], [2.276434420915834, 48.84830266118598], [2.276243334225333, 48.84836220894503], [2.276060784018424, 48.848419541651516], [2.27586969783505, 48.84847908881582], [2.275687145432518, 48.84853642183719], [2.275496058406138, 48.84859596749921], [2.275490243949058, 48.848608784218136], [2.275568439038234, 48.84869337713877], [2.275643584392144, 48.848777590890855], [2.275721781346073, 48.84886218370671], [2.275796927203696, 48.84894639645036], [2.275789749691634, 48.84895943426704], [2.275619311725785, 48.84899941170803], [2.275446981706172, 48.8490390186016], [2.2752765445922503, 48.84907899466044], [2.275104214048854, 48.84911860105748], [2.274933776411713, 48.84915857662517], [2.27476144534474, 48.84919818252571], [2.2745910058092083, 48.8492381584933], [2.2744186742185573, 48.84927776389725], [2.274412300201589, 48.84929169237691], [2.274550756687294, 48.849412129497395], [2.274680180967127, 48.849523104331745], [2.274818638674262, 48.849643542016565], [2.274948064099399, 48.849754516538084], [2.274950891802194, 48.84976010163876], [2.274948042921877, 48.84992900657125], [2.274949638244487, 48.85010044223965], [2.274951604790826, 48.85010504091369], [2.275045541452265, 48.85020754944431], [2.275146181526701, 48.85031567545657], [2.275240118950589, 48.85041818381506], [2.275340759823042, 48.85052631054246], [2.275342722347849, 48.85053022206977], [2.275359813489925, 48.85064004524958], [2.2753752381824173, 48.85075465822612], [2.275392330816825, 48.85086448228668], [2.275407754284465, 48.85097909522764], [2.275396724850359, 48.85100724595603], [2.275415266246998, 48.85101857510285], [2.2754306898107908, 48.85113318802498], [2.275440925741214, 48.85123855284502], [2.27545306646668, 48.85124691849329], [2.27566354382696, 48.851261871296174], [2.275869188451019, 48.851276849340685], [2.276079666051591, 48.85129180141119], [2.276285310913368, 48.85130677874007], [2.276495790116834, 48.85132173008642], [2.276701433853703, 48.85133670669146], [2.2769119132974422, 48.85135165730541], [2.277117558634617, 48.85136663320315], [2.277126933665572, 48.851370148793436], [2.277227046178334, 48.85145753490763], [2.277320483837743, 48.851541000762786], [2.27742059700332, 48.85162838670161], [2.2775140352792, 48.851711852392825], [2.277561229403085, 48.85175599836736], [2.277595715913662, 48.85174338258108], [2.2776963027298303, 48.85168988869887], [2.277834630800043, 48.85161537059428], [2.277982536447889, 48.851536710999135], [2.278120863689706, 48.85146219345269], [2.278268768470615, 48.85138353349288], [2.278407094896508, 48.85130901560523], [2.278453320329711, 48.851301500501734], [2.2784729322758333, 48.85127424936399], [2.278619476541632, 48.85118501054823], [2.27875877676797, 48.85109953218674], [2.278905320052924, 48.85101029300689], [2.279044619343334, 48.850924814299155], [2.279191161647346, 48.850835574755195], [2.279330458639135, 48.85075009569308], [2.279477001325115, 48.85066085579323], [2.279616297380993, 48.85057537638493], [2.2797555929674562, 48.85048989770717], [2.27990213420601, 48.85040065636649], [2.279921402745421, 48.85036158887217], [2.27990452102755, 48.85031866228473], [2.279773762780749, 48.8502230004907], [2.279624245806947, 48.85010717608732], [2.279493487242532, 48.85001151396062], [2.279385587081565, 48.84993239105352], [2.279277687248153, 48.849853268043425], [2.279166567615131, 48.84977197155338], [2.279165751540855, 48.849771462992926], [2.279146113895608, 48.84975709605629], [2.279024602658537, 48.8496607003487], [2.2788969856185908, 48.84955886882415], [2.278775473941901, 48.84946247283816], [2.278647857874212, 48.849360641029755], [2.2785263471205672, 48.84926424477358], [2.278398732025126, 48.849162412681316], [2.278277223557172, 48.84906601616323], [2.278149609433969, 48.8489641837871], [2.278007805029239, 48.8488543269383], [2.277880191963349, 48.84875249335614], [2.277738390065241, 48.84864263617537], [2.27761077803173, 48.848540803185806], [2.277468977277579, 48.84843094566485], [2.277341366301367, 48.8483291114693], [2.277199565328532, 48.848219253599915], [2.277071955384674, 48.84811741999694], [2.277057042221043, 48.848106680496954]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 130, "zemmour_eric": 164.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "16-36", "circ_bv": "14", "num_bureau": 36, "roussel_fabien": 17.0, "nb_emargement": 1157.0, "nb_procuration": 50.0, "nb_vote_blanc": 5.0, "jadot_yannick": 49.0, "le_pen_marine": 109.0, "nb_exprime": 1150.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1503.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1158, "quartier_bv": "61", "geo_point_2d": [48.84998261001542, 2.2770927100773157], "melenchon_jean_luc": 137.0, "poutou_philippe": 2.0, "macron_emmanuel": 506.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.346488859041595, 48.8280878850493], [2.346461824499017, 48.82807902147733], [2.346307709480564, 48.82804762293359], [2.346149877990746, 48.82801594754861], [2.345995764720016, 48.82798454770923], [2.3458379336105812, 48.827952871910774], [2.345828408741451, 48.82794552857834], [2.345799203520011, 48.82780940492053], [2.345769848311252, 48.827673847923435], [2.345740644757006, 48.82753772422581], [2.34571128985348, 48.8274021671815], [2.345682085242214, 48.827266043429184], [2.345652730643917, 48.827130486337666], [2.345623526337735, 48.82699436253808], [2.345594173406748, 48.826858805406836], [2.345564969405639, 48.82672268156004], [2.345535615417786, 48.82658712437411], [2.345506411721749, 48.82645100048003], [2.345477059401081, 48.82631544325438], [2.34544785601021, 48.82617931931305], [2.345418502632679, 48.82604376203276], [2.345389299546872, 48.82590763804419], [2.345359946474548, 48.82577208071671], [2.345358996698006, 48.82576983247215], [2.345279494280854, 48.825646441649845], [2.345195686909104, 48.82551174540378], [2.345194716685074, 48.82550754719634], [2.345213004020136, 48.82536431542619], [2.345232031816265, 48.825220141544996], [2.345250320298748, 48.825076910639275], [2.345269347886698, 48.824932736715276], [2.345287634803928, 48.8247895057597], [2.345306662183806, 48.82464533179287], [2.345313570350664, 48.82463299687585], [2.345303169769146, 48.82462331209896], [2.34519757522736, 48.824536500724435], [2.345095166944139, 48.824450667232966], [2.344992757636081, 48.82436483363981], [2.344887164134628, 48.82427802197116], [2.344784756870118, 48.82419218819413], [2.344679162691323, 48.82410537722036], [2.344672071942015, 48.824102322748146], [2.34463278366761, 48.82409671656683], [2.344582245802336, 48.8240877641873], [2.344554619618668, 48.82408682311573], [2.344546101753726, 48.824103244040806], [2.34456389020469, 48.82415127029525], [2.344581832423886, 48.82420136955443], [2.344568844817867, 48.8242124308715], [2.344481826000292, 48.82421356288309], [2.344389761111357, 48.824213899997346], [2.344376665772121, 48.82422518464814], [2.344423460862614, 48.82434245116197], [2.344477218138421, 48.824476592160515], [2.344524013680613, 48.82459385860873], [2.344577771474339, 48.82472799953209], [2.344624567468442, 48.824845265914696], [2.344678325779992, 48.82497940676279], [2.344725122237211, 48.825096672180464], [2.344778881055494, 48.82523081385264], [2.34482567796443, 48.82534807920476], [2.344879437300653, 48.82548222080168], [2.344926234661414, 48.82559948608816], [2.344979994515589, 48.825733627609885], [2.345026792328282, 48.825850892830736], [2.34502717036007, 48.82585224486552], [2.345046460586015, 48.825966763804935], [2.345066250867667, 48.8260899518589], [2.345065931322653, 48.82609305205815], [2.345022876832105, 48.826205390300935], [2.344980433761518, 48.826319137591945], [2.344980369647407, 48.82632337330289], [2.345025707749259, 48.82645256698447], [2.345072536493452, 48.826583911109985], [2.345117875061558, 48.82671310382737], [2.345164704271962, 48.82684444788625], [2.345210043283735, 48.82697364143801], [2.345256872960357, 48.827104985430346], [2.345302212438396, 48.82723417801786], [2.345349043943341, 48.82736552195102], [2.345394383865067, 48.82749471537292], [2.345441214474149, 48.82762605923201], [2.345486554862152, 48.827755251689666], [2.345533385937471, 48.827886595482205], [2.345530093985815, 48.82789024961494], [2.345547685082356, 48.827914022824764], [2.345572360857998, 48.82796503729245], [2.345601100432123, 48.828016674771476], [2.345601709169187, 48.828018749362606], [2.345615995348129, 48.82814673031769], [2.345629614711037, 48.82827368771669], [2.345643901028343, 48.82840166863936], [2.34565751916368, 48.8285286259989], [2.345671806981481, 48.82865660689657], [2.345685425262655, 48.82878356332474], [2.345699713218828, 48.82891154419], [2.3457133316232692, 48.82903850148543], [2.3457276183556752, 48.829166482310804], [2.345741238256815, 48.82929343958167], [2.345755525127593, 48.829421420374615], [2.345769143801142, 48.829548377605974], [2.345783432172448, 48.82967635837391], [2.345797050991842, 48.8298033146739], [2.345810669866281, 48.82993027185729], [2.3458249584442, 48.83005825257665], [2.3458385774532, 48.830185209728015], [2.345852866169504, 48.830313190414934], [2.345849284066544, 48.8303752392466], [2.345868437031815, 48.830377536674185], [2.345905166037229, 48.83042117276692], [2.345906535391015, 48.83045828028538], [2.345934324802576, 48.83046689446297], [2.34599965508091, 48.830448905418585], [2.346115343082835, 48.83041705083133], [2.34630113618827, 48.830367058545264], [2.346482153771055, 48.83031721435403], [2.346667944795584, 48.830267222385544], [2.346848963054438, 48.83021737674289], [2.347034753371409, 48.83016738420015], [2.347215770921613, 48.83011753889713], [2.347401560542282, 48.83006754488082], [2.3475825773951, 48.8300176990182], [2.347768366296945, 48.829967705326936], [2.3479493824523763, 48.82991785890475], [2.3481351706579, 48.829867863739956], [2.348316186115936, 48.82981801675813], [2.34850197360254, 48.82976802191838], [2.348607551472677, 48.82973894736535], [2.348621773577649, 48.82973117239882], [2.348600672305193, 48.82969195272446], [2.348512773575481, 48.82957037962895], [2.348429345514024, 48.829450485657105], [2.348422911477812, 48.82944146046722], [2.348393979575132, 48.82944121649925], [2.348190442889497, 48.82947697809592], [2.348003948203073, 48.82951245271877], [2.34800238006795, 48.829512796724245], [2.347830055251939, 48.829557941040775], [2.347665656720282, 48.829601468998675], [2.347501256540787, 48.829644997620775], [2.347328930853843, 48.82969014120994], [2.347164530113572, 48.82973366936573], [2.34699220384194, 48.82977881246613], [2.346974295978445, 48.82977337330897], [2.346911454037349, 48.82965252762605], [2.3468427966615533, 48.82951475180702], [2.346779955348291, 48.82939390512778], [2.34671129864934, 48.82925613010079], [2.346648457952535, 48.82913528332459], [2.346579801952959, 48.828997507291], [2.346539219164335, 48.82891946362555], [2.346540994144193, 48.828915006133215], [2.346522808781642, 48.82889760910791], [2.346500551501645, 48.82885480679561], [2.346485186797981, 48.82881615138155], [2.346484448304639, 48.82881323157532], [2.3464844266007763, 48.828693147919886], [2.346486491438476, 48.828573200666376], [2.346486468379153, 48.8284531160785], [2.346488533191477, 48.82833316969861], [2.346488511489575, 48.82821308509244], [2.346490576287692, 48.82809313868685], [2.346488859041595, 48.8280878850493]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 58, "zemmour_eric": 81.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "13-52", "circ_bv": "10", "num_bureau": 52, "roussel_fabien": 31.0, "nb_emargement": 1126.0, "nb_procuration": 49.0, "nb_vote_blanc": 12.0, "jadot_yannick": 88.0, "le_pen_marine": 51.0, "nb_exprime": 1111.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1367.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "51", "geo_point_2d": [48.82806943681253, 2.3460253211280038], "melenchon_jean_luc": 358.0, "poutou_philippe": 6.0, "macron_emmanuel": 375.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3430898891466843, 48.89492805268767], [2.343075245043698, 48.89494260790275], [2.343100374020293, 48.895073207504865], [2.34312473767486, 48.89519701841331], [2.343149866898396, 48.8953276179747], [2.343174230801059, 48.89545142794508], [2.343199360260196, 48.89558202836501], [2.343223724399612, 48.89570583829656], [2.343248855469587, 48.89583643868324], [2.343273218481869, 48.89596024856847], [2.343297582973819, 48.89608405844222], [2.343322713047839, 48.89621465876083], [2.343324237985563, 48.89621779315795], [2.34340801484023, 48.89632028212228], [2.343489821917204, 48.896423786341906], [2.343573599429206, 48.8965262751711], [2.3436554057838093, 48.896629780149944], [2.343656217960906, 48.8966310301584], [2.343725504744593, 48.89676482388205], [2.343797012875666, 48.89690139782309], [2.343866300380996, 48.89703519143231], [2.343937809252771, 48.897171765255536], [2.344007097479754, 48.89730555875022], [2.344078607080912, 48.89744213335496], [2.344089645694794, 48.89744810773169], [2.344160859542101, 48.89745455015364], [2.344224421543194, 48.89745805392866], [2.344255910956805, 48.89746573746129], [2.344270315549103, 48.89745972344905], [2.344396445909724, 48.897466676846264], [2.344602342554689, 48.89747887891828], [2.344792035083647, 48.89748933543933], [2.344997931910937, 48.89750153683101], [2.3451876246018, 48.89751199272528], [2.345393521622812, 48.89752419253734], [2.34558321447567, 48.89753464780481], [2.345789111667675, 48.89754684783577], [2.345978804682521, 48.89755730247645], [2.346184702056718, 48.89756950182705], [2.346374395233645, 48.89757995584094], [2.346580292790127, 48.897592154511194], [2.346769986128919, 48.897602607898285], [2.346776347396964, 48.89760405722304], [2.346911757205736, 48.897662808945874], [2.34709951439191, 48.897733265445936], [2.347119125206964, 48.89772246093028], [2.347057344802983, 48.89760688368948], [2.346993265567574, 48.89748527742901], [2.346931487088288, 48.89736970010568], [2.346867408438889, 48.89724809375156], [2.346805630509172, 48.89713251723747], [2.346741552456855, 48.89701090989041], [2.34667977508798, 48.89689533328638], [2.34661569762166, 48.8967737258456], [2.346553919449708, 48.89665814914422], [2.346489843933087, 48.89653654161721], [2.346428066321967, 48.89642096482584], [2.346363990027421, 48.896299357197705], [2.346302214341029, 48.89618378032383], [2.346267392789151, 48.89611769261018], [2.34627487246916, 48.89610924476351], [2.346264048678796, 48.896086816904216], [2.346234794531521, 48.896031297792945], [2.346148189494207, 48.89587122541585], [2.3460841145299662, 48.89574961757699], [2.346087772638705, 48.89573604523188], [2.346055735930129, 48.89571943882255], [2.345889171840512, 48.895664654503015], [2.345722786426191, 48.89561098338218], [2.345556223033897, 48.89555619859415], [2.345389838309408, 48.89550252700544], [2.345223275614439, 48.89544774174894], [2.345056891579683, 48.895394069692294], [2.344890329593356, 48.895339283068054], [2.34472394624854, 48.895285610543525], [2.344557384948229, 48.89523082435], [2.344391002293249, 48.895177151357636], [2.344224441690267, 48.89512236469565], [2.344058059725128, 48.89506869123536], [2.3440548393053, 48.89506794604547], [2.343821482645014, 48.89503485236004], [2.343595077763583, 48.89500125762896], [2.343361721694547, 48.89496816304564], [2.343135317399785, 48.89493456744332], [2.3430898891466843, 48.89492805268767]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 34, "zemmour_eric": 44.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-11", "circ_bv": "18", "num_bureau": 11, "roussel_fabien": 23.0, "nb_emargement": 1182.0, "nb_procuration": 75.0, "nb_vote_blanc": 4.0, "jadot_yannick": 124.0, "le_pen_marine": 58.0, "nb_exprime": 1177.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1593.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "70", "geo_point_2d": [48.89639126571372, 2.3449246155752084], "melenchon_jean_luc": 498.0, "poutou_philippe": 7.0, "macron_emmanuel": 337.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.383351119961523, 48.88493431916505], [2.383351439122823, 48.884936041218054], [2.383315298273666, 48.88496709313848], [2.383315258324922, 48.884967127107075], [2.383188473096499, 48.88507806139039], [2.3830629902338, 48.88518480149423], [2.38293750686734, 48.88529154055697], [2.382810720044348, 48.88540247440752], [2.382685236999795, 48.885509213191746], [2.382558449109418, 48.88562014675321], [2.382432963649057, 48.88572688614416], [2.382306174691178, 48.8858378194165], [2.382287281979509, 48.88588622702066], [2.382321839712123, 48.88589573759374], [2.382436650609775, 48.88593734981787], [2.382589403676682, 48.88599714497564], [2.382768061777314, 48.88606189745461], [2.382920814226479, 48.88612169217578], [2.382922273422137, 48.886122149358336], [2.383108796407081, 48.88617185748481], [2.383290515647175, 48.886219358813584], [2.3834770393211793, 48.88626906726133], [2.383658759236412, 48.886316568027034], [2.38384528361013, 48.88636627589671], [2.384027004200496, 48.88641377609936], [2.384208726486033, 48.88646127603115], [2.384395250550048, 48.886510982131256], [2.384576973510712, 48.88655848149999], [2.384763498263794, 48.88660818792129], [2.384776572797342, 48.88661032804339], [2.3848093569822533, 48.88656976611792], [2.384859126068721, 48.88646698718736], [2.384908220855051, 48.88636343674087], [2.384957989559812, 48.88626065685065], [2.385007083955021, 48.886157106344164], [2.385056850893196, 48.88605432728582], [2.385105944897292, 48.885950776719355], [2.385116707947029, 48.88594459068265], [2.38530453583824, 48.885923847229925], [2.38548895936432, 48.88590371823552], [2.385676785606794, 48.88588297329184], [2.385861208833617, 48.88586284462258], [2.386049036143997, 48.88584209910116], [2.386233459092768, 48.88582196895855], [2.386421284733184, 48.885801223744686], [2.386605707393289, 48.885781093027965], [2.386610440536999, 48.885779954449646], [2.386738492181225, 48.88572983544057], [2.38686110553462, 48.88568165616623], [2.38687665495113, 48.88567569413169], [2.386875907084247, 48.885663233760454], [2.386933990297065, 48.88552808662841], [2.386987856571285, 48.88540326099473], [2.3870417239402952, 48.88527843622884], [2.387099806304164, 48.88514328806981], [2.387153671772295, 48.88501846321708], [2.387211753555666, 48.88488331497179], [2.387265618497229, 48.884758489139905], [2.38732369968953, 48.884623341707645], [2.387377565457344, 48.88449851580286], [2.387435646069163, 48.88436336828432], [2.387463317542564, 48.88429923956644], [2.38746144995788, 48.884296984396244], [2.387432318794248, 48.88429311484687], [2.387236456452311, 48.88427142361484], [2.387039032853676, 48.88425019891209], [2.386843169473481, 48.8842285070289], [2.386645746208336, 48.88420728077754], [2.386449883153387, 48.884185588250176], [2.386252460200761, 48.884164362248754], [2.386056597470961, 48.884142669077185], [2.385859174841352, 48.884121442426455], [2.385849002035496, 48.88411635492043], [2.385778055343736, 48.88401405869607], [2.3856857282887702, 48.88388298850512], [2.38561478224638, 48.88378069126302], [2.38552245736896, 48.88364962182461], [2.385451511965118, 48.883547324464075], [2.3853591879124583, 48.88341625487193], [2.385288241783694, 48.88331395738598], [2.385225961210087, 48.883300878858236], [2.385208451728113, 48.883318711625144], [2.385150017112758, 48.883369457317514], [2.385030312787169, 48.883472314515004], [2.384906154368895, 48.883580135466886], [2.384786449077274, 48.883682992400864], [2.384662289651801, 48.88379081307923], [2.384542583394238, 48.883893669749675], [2.38441842296166, 48.88400149015452], [2.38429871437456, 48.884104346554416], [2.384174554298248, 48.884212166692684], [2.384054844745285, 48.8843150228291], [2.383930683661751, 48.8844228426938], [2.383810973132071, 48.88452569946594], [2.383686811041302, 48.884633519057104], [2.383567099556277, 48.88473637466644], [2.383442935094762, 48.88484419397707], [2.38335936483787, 48.884915997406466], [2.383351119961523, 48.88493431916505]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 47, "zemmour_eric": 114.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-26", "circ_bv": "16", "num_bureau": 26, "roussel_fabien": 25.0, "nb_emargement": 1073.0, "nb_procuration": 63.0, "nb_vote_blanc": 16.0, "jadot_yannick": 94.0, "le_pen_marine": 47.0, "nb_exprime": 1052.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1455.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1073, "quartier_bv": "75", "geo_point_2d": [48.885106106262704, 2.3849789452423553], "melenchon_jean_luc": 383.0, "poutou_philippe": 3.0, "macron_emmanuel": 276.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.381022581296865, 48.86386147003907], [2.38103715084383, 48.86385281906956], [2.381102589536829, 48.86373811717016], [2.381167755096373, 48.86362527005587], [2.38123319320532, 48.86351056896082], [2.381298359560282, 48.86339772175929], [2.381363797095867, 48.86328302056924], [2.381428962883405, 48.86317017327343], [2.381494399856311, 48.86305547108915], [2.381559563713296, 48.862942623691964], [2.381560268846508, 48.86294086642154], [2.381586949781707, 48.862822037351506], [2.38162095341102, 48.862680788592975], [2.381647634074613, 48.862561959481525], [2.381681636006735, 48.86242071066562], [2.381708316398729, 48.86230188151274], [2.381742319359605, 48.86216063265345], [2.381768999480001, 48.8620418034592], [2.381803000743607, 48.861900554542494], [2.381829680592413, 48.861781725306756], [2.381863682884668, 48.8616404763467], [2.381890362461885, 48.8615216470696], [2.381908024040154, 48.86150379996464], [2.381884487228541, 48.86148710527904], [2.3818297251050202, 48.861468612492416], [2.38168536716422, 48.861423440008636], [2.381508409383369, 48.86136368327599], [2.381364052011901, 48.861318510400345], [2.381187096318873, 48.86125875319402], [2.381042738153853, 48.86121357991948], [2.381037234526506, 48.86120047048413], [2.381072751122227, 48.86116527484901], [2.381111483039187, 48.86112641211398], [2.3810970876223, 48.861092703068394], [2.381069555432026, 48.8610875441333], [2.380895989321891, 48.861031921209836], [2.380700962457403, 48.86097091141577], [2.380527397129336, 48.8609152879519], [2.380332372496048, 48.86085427755783], [2.380158806587075, 48.86079865354647], [2.379963782811306, 48.86073764344461], [2.379790217684509, 48.860682018892824], [2.379621947572146, 48.86062874544258], [2.379448384535955, 48.860573120396644], [2.379280115124835, 48.86051984646051], [2.379106551453412, 48.86046422090634], [2.378938284095784, 48.86041094739071], [2.378764721152201, 48.86035532133524], [2.378665173614121, 48.860323803177515], [2.3786347070882172, 48.860306219267635], [2.378586405033224, 48.860325807127715], [2.378484301360698, 48.86043385040147], [2.378385011995598, 48.860541887513385], [2.378282907492701, 48.86064992969501], [2.378183617298193, 48.86075796661876], [2.37808151195419, 48.8608660086075], [2.377982220930265, 48.86097404534314], [2.377880114745147, 48.861082087138996], [2.37778082152881, 48.86119012367937], [2.377678714491925, 48.8612981661816], [2.377579421819776, 48.86140620164162], [2.377477313941754, 48.86151424395095], [2.377378020440165, 48.86162227922283], [2.377360033687836, 48.861641311108926], [2.377358855522124, 48.86164363248344], [2.377408321086392, 48.861670425899305], [2.377564210631991, 48.86174352162613], [2.377722137855274, 48.86181723299717], [2.377878029643437, 48.86189032831266], [2.378035956392829, 48.86196403925273], [2.378191849060559, 48.86203713414974], [2.378349778061869, 48.862110844673026], [2.378505670246159, 48.86218393914451], [2.378663600136587, 48.86225764924387], [2.37881949456346, 48.862330743303936], [2.378977423979789, 48.86240445297238], [2.379133319286236, 48.86247754661394], [2.379291250954707, 48.862551255865526], [2.379447145777708, 48.862624349081585], [2.379605078335103, 48.86269805790929], [2.379608898357588, 48.86271002189576], [2.379530512529469, 48.86279632844531], [2.379453896984069, 48.862881042386505], [2.379375510652569, 48.86296734792195], [2.379298893240589, 48.863052061743765], [2.379298608495775, 48.86305239302403], [2.379294095579778, 48.86306621141302], [2.379318921399094, 48.863074127584], [2.379487011054276, 48.86315188678967], [2.379657290996276, 48.863231537631236], [2.37982538302731, 48.86330929635769], [2.379995664001131, 48.863388946706465], [2.380163757045085, 48.863466704946624], [2.380334039050727, 48.86354635480268], [2.3805021330969103, 48.86362411345583], [2.38067241613438, 48.863703762819135], [2.380840509841233, 48.86378152007961], [2.381010793910427, 48.86386116895012], [2.381022581296865, 48.86386147003907]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 39, "zemmour_eric": 66.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "11-36", "circ_bv": "06", "num_bureau": 36, "roussel_fabien": 18.0, "nb_emargement": 1404.0, "nb_procuration": 97.0, "nb_vote_blanc": 13.0, "jadot_yannick": 164.0, "le_pen_marine": 47.0, "nb_exprime": 1389.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1745.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1405, "quartier_bv": "42", "geo_point_2d": [48.861932159421045, 2.379897183165236], "melenchon_jean_luc": 534.0, "poutou_philippe": 5.0, "macron_emmanuel": 452.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.358131932621784, 48.863399752593686], [2.358118576271132, 48.86340577672014], [2.357972821755022, 48.863449692343806], [2.357802212112528, 48.86350311090107], [2.357611247785949, 48.863560646881574], [2.357440636046308, 48.863614064910735], [2.357262607498339, 48.86366934048196], [2.357091995045264, 48.863722758008876], [2.356913965755954, 48.86377803305605], [2.356743352589445, 48.86383145008071], [2.356742508591159, 48.86383168926684], [2.356598686098397, 48.86386875159574], [2.356435152003554, 48.86391447367021], [2.356301828616828, 48.863951472486605], [2.356138294001789, 48.86399719415208], [2.356004970192645, 48.864034192634975], [2.355841435057414, 48.86407991389138], [2.3556133328927, 48.86414399636497], [2.35544979706908, 48.864189717081736], [2.355270940342378, 48.86424108656409], [2.355107403913496, 48.86428680680894], [2.355107279431505, 48.86428684211198], [2.354945093560019, 48.864333444474454], [2.354766234479253, 48.8643848131886], [2.354604048008828, 48.864431414185525], [2.354394205385349, 48.86449357197032], [2.354394046692418, 48.86449361788018], [2.354231859539189, 48.864540219267475], [2.354054402055068, 48.86459100990455], [2.353892214294817, 48.86463761082743], [2.353714754784741, 48.864688400949085], [2.353552566428629, 48.86473500050832], [2.353478501383587, 48.86475619818702], [2.35345763431215, 48.864760156793125], [2.353453371684127, 48.8647633480225], [2.353349977890827, 48.864792939942845], [2.353280587405309, 48.86481245040406], [2.35326064475418, 48.86483154184317], [2.353252587174807, 48.86485712691795], [2.353252956988113, 48.86485720446133], [2.353333852061664, 48.864873309060364], [2.3535123769069, 48.864909319184825], [2.353708782656763, 48.86494893664004], [2.353887306657242, 48.86498494619541], [2.354083714340327, 48.86502456304], [2.354262238859225, 48.86506057203368], [2.354458645749464, 48.86510018825292], [2.354637172149756, 48.865136196692234], [2.354833579610225, 48.86517581229348], [2.355012106528723, 48.865211820171034], [2.355208514559517, 48.8652514351543], [2.355387040633226, 48.865287442462815], [2.355583450597327, 48.865327056835426], [2.355761977189331, 48.86536306358223], [2.35595838636055, 48.865402677329506], [2.356136914833934, 48.8654386835219], [2.356145017807639, 48.86543865606531], [2.356326226175526, 48.86540077192885], [2.356518836581648, 48.865360502607565], [2.356700045780038, 48.86532261701053], [2.356892655597137, 48.86528234798409], [2.357073864251817, 48.865244461818364], [2.357266473490999, 48.86520419218751], [2.357412842218833, 48.86517358925045], [2.357529049545795, 48.865149293207416], [2.357556070136642, 48.86514364378272], [2.357611446551242, 48.865132065191254], [2.357814147858841, 48.86508968412719], [2.358009162665883, 48.865048909986], [2.358211863326478, 48.865006528245196], [2.358406877522023, 48.86496575255357], [2.3586095775354, 48.86492337013603], [2.358804591097289, 48.86488259469263], [2.359007290463647, 48.86484021159829], [2.359202303402952, 48.8647994355038], [2.359397317411115, 48.86475865819809], [2.359600014449952, 48.86471627408787], [2.359657706245982, 48.864685705601175], [2.359657488232442, 48.86468525476276], [2.359586796115155, 48.86465106837376], [2.359548464930417, 48.86462199071912], [2.359547683684313, 48.864621339010746], [2.359468233906077, 48.86454843209152], [2.359364160935595, 48.8644574343086], [2.359232767795111, 48.86433878011665], [2.3591286942806162, 48.86424778300375], [2.359024622503817, 48.86415678490082], [2.358893230894924, 48.86403813030396], [2.358892846889832, 48.86403776581105], [2.358789237067939, 48.86392724428568], [2.358685801294387, 48.86382343719813], [2.358582190974935, 48.863712915464845], [2.35847875603937, 48.863609108178274], [2.358478208619735, 48.863608509877594], [2.358374600531167, 48.8634979879504], [2.358292603811606, 48.863399842572655], [2.358283739798079, 48.863374367860054], [2.358237561244731, 48.863375519622], [2.3581892944156913, 48.863385411694395], [2.3581440867755292, 48.86339903355029], [2.358131932621784, 48.863399752593686]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 54, "zemmour_eric": 43.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "3-12", "circ_bv": "05", "num_bureau": 12, "roussel_fabien": 20.0, "nb_emargement": 1121.0, "nb_procuration": 72.0, "nb_vote_blanc": 9.0, "jadot_yannick": 117.0, "le_pen_marine": 34.0, "nb_exprime": 1111.0, "nb_vote_nul": 1.0, "arr_bv": "03", "arthaud_nathalie": 3, "nb_inscrit": 1474.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1121, "quartier_bv": "09", "geo_point_2d": [48.86453670912125, 2.3567889381421496], "melenchon_jean_luc": 332.0, "poutou_philippe": 6.0, "macron_emmanuel": 454.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.3042812925753138, 48.84040461001733], [2.304255412025213, 48.84041049875659], [2.304239583298501, 48.840414100401034], [2.304217012622558, 48.84045731960006], [2.304133332822522, 48.84057607116615], [2.304050881076128, 48.84069537482535], [2.303967200527397, 48.8408141253506], [2.303884749386491, 48.840933428877754], [2.303801066702592, 48.84105218015291], [2.303718614804824, 48.8411714835401], [2.303634932734767, 48.84129023378228], [2.303552478717672, 48.841409537021654], [2.303468795886785, 48.84152828712233], [2.30338634247527, 48.84164759022965], [2.303302658871627, 48.84176634108809], [2.303220203340752, 48.8418856440475], [2.303212890780797, 48.841901421333766], [2.303272774230805, 48.84191727971983], [2.303414299873722, 48.84199742184864], [2.303551148243186, 48.84207511997058], [2.303692673380164, 48.84215526175078], [2.303829522579051, 48.8422329595433], [2.303830763675389, 48.842233586430076], [2.304002556764996, 48.842310429711496], [2.30417792829039, 48.8423853464221], [2.304349721029681, 48.84246218918659], [2.30452509356473, 48.8425371053781], [2.304696888678477, 48.84261394764153], [2.304872262223185, 48.84268886331388], [2.305044056986612, 48.84276570506045], [2.305219431540979, 48.842840620213664], [2.305391228678873, 48.84291746145908], [2.305566604242904, 48.84299237609322], [2.3057384010304762, 48.84306921682172], [2.30591377760417, 48.843144130936686], [2.305918106422697, 48.8431471068739], [2.305999901700527, 48.843226058338], [2.306108014509038, 48.843346851620716], [2.30618981037606, 48.84342580384014], [2.306297924039064, 48.84354659692958], [2.306375573170047, 48.84363637041412], [2.306425990321979, 48.84365165425851], [2.306426534832712, 48.843651489233935], [2.306496224045854, 48.8435471117004], [2.306594266288622, 48.84341371672728], [2.306663954847916, 48.84330933907383], [2.306761996214103, 48.8431759439348], [2.306831684119556, 48.84307156616138], [2.306825971661327, 48.843060129993724], [2.306682976908764, 48.84300623512085], [2.306543258054884, 48.84295111433898], [2.306400262531271, 48.84289721911506], [2.306260544268736, 48.842842097997604], [2.30625698110057, 48.84282869026049], [2.306392585631763, 48.84271908020344], [2.306526341059055, 48.84261097020249], [2.3066619444572, 48.84250135981873], [2.306795698767026, 48.84239324949555], [2.306931299669753, 48.84228363877719], [2.307065052862126, 48.842175528131705], [2.307200653994514, 48.84206591709459], [2.307334406069443, 48.841957806126864], [2.307470006068817, 48.841848194763045], [2.307603757026312, 48.841740083473105], [2.307605538162707, 48.84173821590304], [2.30769781983415, 48.84160843253915], [2.307781856087393, 48.841469637381635], [2.307802802644046, 48.84144017838499], [2.307798311226255, 48.841431289127065], [2.307766841206618, 48.84142201171809], [2.30758782059322, 48.841367894061754], [2.307394700815111, 48.84131080213498], [2.307215682320591, 48.841256684823506], [2.307022563362277, 48.84119959229029], [2.306843545636124, 48.84114547441656], [2.3066504274975053, 48.84108838127691], [2.306453866530136, 48.84103375551195], [2.306260749232314, 48.840976661737486], [2.306064189094675, 48.84092203532681], [2.305871072637654, 48.840864940917555], [2.305721183915058, 48.84082391697749], [2.305528068197316, 48.84076682200951], [2.305378180026864, 48.84072579763607], [2.305185065048304, 48.84066870210935], [2.305035177429998, 48.840627677302535], [2.304991850477375, 48.840601838543314], [2.304971535626001, 48.8406040624685], [2.304797013705846, 48.840556625627045], [2.304652589607342, 48.840515354179956], [2.304478069636828, 48.840467916877344], [2.304333646048683, 48.840426644142596], [2.3042812925753138, 48.84040461001733]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 120, "zemmour_eric": 150.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-29", "circ_bv": "12", "num_bureau": 29, "roussel_fabien": 16.0, "nb_emargement": 1276.0, "nb_procuration": 79.0, "nb_vote_blanc": 17.0, "jadot_yannick": 86.0, "le_pen_marine": 56.0, "nb_exprime": 1250.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1543.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1273, "quartier_bv": "58", "geo_point_2d": [48.84180920440235, 2.305449665767658], "melenchon_jean_luc": 216.0, "poutou_philippe": 5.0, "macron_emmanuel": 549.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.380396456832899, 48.89403685826699], [2.380424071370753, 48.89402417776638], [2.3805449389250732, 48.893959108765], [2.380668338633374, 48.89389716167803], [2.380789205587458, 48.89383209242253], [2.380912604704095, 48.893770145076665], [2.380953771552471, 48.89374993527454], [2.380953252592013, 48.893745748063964], [2.380814983322133, 48.89363575344498], [2.380681512568271, 48.89352543543276], [2.380543244457543, 48.8934154404779], [2.380409773469583, 48.89330512303284], [2.38027150788182, 48.893195127749216], [2.380138038045086, 48.89308480907985], [2.380140116534299, 48.893072213186706], [2.380294853248234, 48.89298957793903], [2.3804480458592803, 48.892909209775965], [2.38060278160007, 48.8928265741181], [2.380755973245618, 48.89274620644843], [2.380910708013166, 48.892663570380414], [2.381063898703824, 48.89258320230488], [2.381218632498236, 48.89250056582668], [2.381371822234005, 48.89242019734532], [2.381526555055286, 48.89233756045697], [2.381679743836174, 48.892257191569755], [2.38183447568443, 48.89217455427125], [2.38198766351044, 48.892094184978134], [2.382142394385471, 48.89201154726946], [2.3822955812566082, 48.89193117757057], [2.382300615466142, 48.891925295009], [2.382318462592327, 48.89183437861735], [2.382337048436559, 48.891749591293205], [2.382343122232784, 48.89174333367902], [2.382430500210877, 48.89170524039877], [2.382547039025721, 48.89165536614465], [2.382559477454004, 48.89165454714865], [2.38266317606007, 48.89168157486021], [2.382776357882995, 48.891709613633715], [2.382789479792487, 48.891708318799346], [2.382946387325534, 48.89162858616486], [2.383101420360784, 48.8915490918769], [2.383258326925665, 48.89146935972138], [2.383413360384893, 48.8913898641258], [2.383570265992371, 48.891310131549936], [2.383725298501241, 48.89123063553894], [2.383882203151115, 48.89115090254282], [2.384037234698991, 48.891071407015716], [2.3841941384021093, 48.890991672700004], [2.3843491676358752, 48.89091217675048], [2.384401238860686, 48.89089368733311], [2.384385654612406, 48.89086575796277], [2.384382242102083, 48.890863354521954], [2.38422884221358, 48.89078895011387], [2.384084548242643, 48.89071576145605], [2.383931149203716, 48.890641357555836], [2.38378685606023, 48.89056816852951], [2.38363345788151, 48.89049376423794], [2.383489165565472, 48.890420574843006], [2.383335768257503, 48.890346169260816], [2.383191476769014, 48.89027297949734], [2.383047184322315, 48.89019978954806], [2.382893789649449, 48.89012538429102], [2.382861158111063, 48.890108336759646], [2.38283826360801, 48.890111585820165], [2.382808344641798, 48.89013768908919], [2.382689523701101, 48.89023967652794], [2.382595728537336, 48.89032150869577], [2.382472012412538, 48.890429443955036], [2.382353191511045, 48.89053143104002], [2.382234368780328, 48.89063341799055], [2.382110652529116, 48.89074135285282], [2.382108399179274, 48.89074287366767], [2.3819544598741063, 48.89082474387736], [2.381799444866396, 48.89090677290773], [2.38164550594397, 48.89098864361429], [2.381490488597812, 48.891070672225396], [2.381336548715614, 48.89115254162333], [2.381181530394771, 48.89123456982223], [2.381027589531632, 48.89131643971001], [2.380872570236097, 48.89139846749672], [2.38071862841329, 48.891480336075816], [2.38056360814306, 48.89156236345024], [2.380409665339192, 48.891644232519205], [2.380254644094259, 48.891726259481445], [2.380100700330623, 48.8918081272417], [2.379945679474776, 48.89189015379877], [2.379791733377083, 48.891972021142536], [2.379636711535818, 48.892054048186615], [2.379482764467744, 48.89213591512096], [2.379327741662482, 48.892217940853556], [2.379270832514407, 48.892248203852986], [2.379233849580896, 48.89225064714775], [2.379213859682343, 48.89227533776178], [2.379116820674203, 48.892326942139064], [2.379003081292954, 48.892384464588325], [2.379002821919001, 48.892384599040504], [2.378851000781116, 48.89246141210488], [2.378737259438015, 48.892518935186786], [2.378704038260656, 48.89253574377864], [2.378703797998635, 48.89253576231712], [2.378671485943958, 48.8925518174903], [2.378552885125818, 48.89261182158361], [2.37839833558602, 48.89269086280821], [2.378246512652682, 48.89276767598402], [2.378091962195906, 48.89284671590272], [2.377940138356124, 48.89292352867916], [2.377785586960886, 48.89300256909045], [2.377633760861581, 48.89307938056122], [2.377479209902443, 48.89315842057296], [2.377327382896686, 48.89323523164436], [2.377172829645997, 48.8933142712424], [2.377021003097613, 48.8933910819215], [2.376908115810518, 48.89344881272614], [2.376875946886758, 48.89347378309982], [2.37691831605017, 48.89350251736342], [2.377021636636855, 48.89351139339545], [2.377107776009706, 48.89351972221676], [2.37713618415453, 48.89353047294869], [2.377159688819543, 48.893518559618656], [2.377311905093438, 48.89344156373998], [2.3774694429076613, 48.89336296306543], [2.377621658268598, 48.8932859667821], [2.377779195144313, 48.89320736568895], [2.3779314082284753, 48.893130368993845], [2.37808894552971, 48.89305176748915], [2.3782411577009253, 48.89297477038943], [2.37839869269984, 48.892896168458975], [2.3785509053219283, 48.89281917096173], [2.378708439382548, 48.89274056861268], [2.378727078214115, 48.8927419288583], [2.378864757254336, 48.892849157544866], [2.378988234578611, 48.89294611233451], [2.379111712362751, 48.89304306698822], [2.379249392991408, 48.8931502952031], [2.37937287174609, 48.89324724956948], [2.379510553452522, 48.89335447746412], [2.379634033177756, 48.8934514315432], [2.379771715961872, 48.893558659117616], [2.379895196657666, 48.8936556129093], [2.380032880519679, 48.89376284016348], [2.380156362186043, 48.8938597936678], [2.380294047125859, 48.89396702060178], [2.380378160176392, 48.8940330629039], [2.380396456832899, 48.89403685826699]]], "type": "Polygon"}, "properties": {"lassalle_jean": 16.0, "pecresse_valerie": 48, "zemmour_eric": 81.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "19-48", "circ_bv": "16", "num_bureau": 48, "roussel_fabien": 20.0, "nb_emargement": 1419.0, "nb_procuration": 88.0, "nb_vote_blanc": 10.0, "jadot_yannick": 132.0, "le_pen_marine": 82.0, "nb_exprime": 1402.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1919.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1419, "quartier_bv": "74", "geo_point_2d": [48.89196049419279, 2.3811675379519417], "melenchon_jean_luc": 671.0, "poutou_philippe": 12.0, "macron_emmanuel": 297.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.35281600723839, 48.89414747357645], [2.352827201157295, 48.89416017941733], [2.35283614012182, 48.89424566676563], [2.352847767249885, 48.894381421753884], [2.352860229246399, 48.894500600468966], [2.352871855141526, 48.894636354516656], [2.352884317254097, 48.894755533201504], [2.352895944632822, 48.89489128722262], [2.352908406861658, 48.89501046587723], [2.352911624031342, 48.89504802536473], [2.3529221763994332, 48.895060788872286], [2.352969043390526, 48.89506073093837], [2.353166461862873, 48.89506023260794], [2.35336424661908, 48.895059234109524], [2.353561665081966, 48.89505873512761], [2.353759451188871, 48.89505773598383], [2.353956869653444, 48.89505723545115], [2.354154654371939, 48.895056236546594], [2.354352072827022, 48.89505573536243], [2.354549857543482, 48.89505473490589], [2.354747275977918, 48.89505423396949], [2.354945062044845, 48.895053232867625], [2.355142480480918, 48.89505273038048], [2.355340265159627, 48.895051729517824], [2.355537683586081, 48.89505122637919], [2.355735468262603, 48.89505022396455], [2.355932886668501, 48.89504972107371], [2.356130671331693, 48.89504871800637], [2.356328089727959, 48.89504821446405], [2.356525875741679, 48.89504721075133], [2.356723294139616, 48.89504670565823], [2.356921078776112, 48.89504570128549], [2.357118497153282, 48.89504519644017], [2.3573162817764173, 48.89504419141475], [2.357513700144128, 48.89504368591792], [2.35771148611766, 48.895042680247116], [2.357908904486891, 48.895042173199556], [2.358106689083271, 48.895041166868715], [2.358304107431826, 48.89504066006893], [2.358501892014715, 48.895039653085384], [2.35869931035368, 48.895039145634115], [2.358897094923269, 48.89503813799789], [2.359094513263703, 48.89503762899585], [2.359292299183646, 48.89503662071425], [2.359360496876791, 48.89504076180597], [2.359375099243673, 48.89501282343204], [2.359392191316188, 48.894891395253566], [2.35941192411721, 48.8947676195727], [2.359429016023345, 48.89464619136178], [2.35944874865485, 48.89452241474791], [2.359465840394606, 48.894400986504515], [2.359485571470823, 48.894277210748875], [2.359502663044204, 48.89415578247306], [2.3595223953147633, 48.89403200579165], [2.359539486721769, 48.89391057748342], [2.359559218811958, 48.89378680076826], [2.35957631004143, 48.89366537332688], [2.359596040587319, 48.893541596570685], [2.359613131661585, 48.893420168197615], [2.359628617281933, 48.893323030865126], [2.359632651744564, 48.89330794385438], [2.359631487840821, 48.8933048799405], [2.359635735310504, 48.89327824049705], [2.359657522002181, 48.89315105096999], [2.359677252149047, 48.89302727504158], [2.35969903863419, 48.892900085477834], [2.359718769962127, 48.89277630862229], [2.359728128386498, 48.89272167184924], [2.359717757023316, 48.89271427793569], [2.359662943593384, 48.892710226579766], [2.359526930145973, 48.892606972091265], [2.3593962805268482, 48.892509547651265], [2.359260268132486, 48.892406292840974], [2.359129620879674, 48.892308868099555], [2.3589936095383512, 48.89220561296746], [2.358862961924244, 48.892108187910004], [2.358726951635953, 48.89200493245618], [2.35859630638813, 48.891907507097216], [2.358460297152859, 48.89180425132164], [2.358329651543735, 48.89170682564666], [2.358193643372563, 48.89160356865007], [2.3580630001186123, 48.8915061435729], [2.357932357364645, 48.89140871744533], [2.357796349385181, 48.89130546086138], [2.357665707633677, 48.89120803442502], [2.357529702070976, 48.891104777526664], [2.357527161079374, 48.89110191753751], [2.357465299127343, 48.890977239870054], [2.357395655564804, 48.890849239665904], [2.357333795580519, 48.89072456280841], [2.357264152679214, 48.89059656249824], [2.357202291957348, 48.890471884637485], [2.35713264970617, 48.89034388512072], [2.357132416805806, 48.89034341802088], [2.357087504432883, 48.89025289742576], [2.357056079816573, 48.89018339986422], [2.357042540141442, 48.890162286594354], [2.356978816527098, 48.89017462577268], [2.35676772728256, 48.89018413552413], [2.356560688885195, 48.89019361181248], [2.356349599487227, 48.89020312082668], [2.356142560949502, 48.89021259549264], [2.35593552368895, 48.890222070707146], [2.355724432697706, 48.89023157861172], [2.3555173939219483, 48.8902410530958], [2.355306304141144, 48.890250560270495], [2.355099265213834, 48.89026003403143], [2.354888175279742, 48.890269540468886], [2.354681136200789, 48.89027901350671], [2.354470046113521, 48.89028851920691], [2.354461512332724, 48.89028701180056], [2.354333588422834, 48.89023034279621], [2.354199066856014, 48.89016882129084], [2.354071143522124, 48.890112152000036], [2.353936623934373, 48.890050630200555], [2.353921227388344, 48.89005056331617], [2.353789921088413, 48.89010894393836], [2.353629629612358, 48.89018225231274], [2.353498321300822, 48.89024063170158], [2.353388150141031, 48.89029101768512], [2.353354576214497, 48.89029098387023], [2.353337272335008, 48.89032039902915], [2.353287151152132, 48.890343320998966], [2.353125790463586, 48.89041695116942], [2.352965495740575, 48.89049025862687], [2.352804134130648, 48.89056388925328], [2.352643839866083, 48.8906371962777], [2.352482477357129, 48.89071082556155], [2.352322180823709, 48.89078413213821], [2.352160817404546, 48.89085776097873], [2.352000521329679, 48.890931067122374], [2.35183915700031, 48.891004695519605], [2.351678858656475, 48.891078001215455], [2.351620488600371, 48.89108243809732], [2.351615429020121, 48.891105746337416], [2.35162993792989, 48.89116310098651], [2.351657146803099, 48.89128289603953], [2.35168945868885, 48.89141062644663], [2.351716236475269, 48.891461772017735], [2.351720451042658, 48.89148026062957], [2.35173850981577, 48.89149164399639], [2.351779639112382, 48.89157020305552], [2.351841408001253, 48.89168521723928], [2.351909315752528, 48.89181492265989], [2.351971083854375, 48.89192993674373], [2.352038992259047, 48.892059641162625], [2.352100760937654, 48.89217465515388], [2.352168669984639, 48.89230435947029], [2.352230440603714, 48.89241937337639], [2.352298348929118, 48.89254907758296], [2.352360120124975, 48.89266409139646], [2.352421890218842, 48.89277910605793], [2.352489800854166, 48.89290881012075], [2.352551572899721, 48.89302382379779], [2.35261948281347, 48.89315352775073], [2.352616531370308, 48.89315988888242], [2.352633398601551, 48.89318456751251], [2.352633989937374, 48.89318615081677], [2.352659474599774, 48.89329669285843], [2.352682332797923, 48.89341302580327], [2.35270781767411, 48.893523567811755], [2.352730676068596, 48.893639901622564], [2.352756161169652, 48.89375044269862], [2.3527790184079223, 48.893866776468734], [2.352779141598404, 48.89386750918161], [2.352791603314726, 48.893986687959725], [2.352814462099847, 48.894103021705355], [2.352817985019203, 48.89413671220411], [2.35281600723839, 48.89414747357645]]], "type": "Polygon"}, "properties": {"lassalle_jean": 9.0, "pecresse_valerie": 22, "zemmour_eric": 49.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "18-53", "circ_bv": "17", "num_bureau": 53, "roussel_fabien": 24.0, "nb_emargement": 1114.0, "nb_procuration": 61.0, "nb_vote_blanc": 9.0, "jadot_yannick": 104.0, "le_pen_marine": 52.0, "nb_exprime": 1103.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1473.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1114, "quartier_bv": "71", "geo_point_2d": [48.892758771226504, 2.3556813423937464], "melenchon_jean_luc": 581.0, "poutou_philippe": 6.0, "macron_emmanuel": 211.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.350618118111718, 48.821323442543864], [2.350641347024462, 48.821319299334334], [2.350691031913187, 48.82131852135855], [2.350894098356804, 48.821315644091115], [2.351093044930201, 48.8213125291701], [2.351296111328294, 48.821309651219984], [2.351495059216644, 48.82130653563749], [2.351698125569202, 48.82130365700466], [2.351897072048816, 48.821300540745945], [2.352100138355829, 48.82129766143042], [2.352299084788537, 48.82129454450283], [2.352337087428631, 48.821294005655616], [2.35235493395848, 48.82128917011856], [2.352354332825402, 48.82127320017702], [2.352326514632283, 48.8211777413479], [2.352298074469604, 48.82107885429662], [2.352270256483166, 48.82098339543792], [2.352241816544355, 48.8208845074568], [2.352242217168913, 48.82088010626302], [2.352250200595289, 48.820870178084824], [2.352245383034295, 48.82086131198244], [2.352309453004863, 48.82072818205645], [2.35237357080881, 48.820596109112884], [2.352437640126221, 48.82046297908683], [2.352501755917455, 48.82033090603601], [2.352565825943631, 48.82019777591728], [2.352629941084084, 48.820065702766556], [2.352620899644735, 48.820054345904715], [2.352426006907579, 48.82001558855454], [2.352224505625946, 48.81997566815911], [2.352217456394752, 48.81996171745144], [2.352337577331194, 48.8198541258739], [2.352454303252758, 48.81974975445276], [2.352574423212201, 48.819642162617015], [2.352691148174031, 48.81953779184435], [2.3528112671564863, 48.81943019975041], [2.352927991180923, 48.81932582782758], [2.352929400841974, 48.819316715731745], [2.35284415769425, 48.81919477139412], [2.352756038141564, 48.819072636930436], [2.35267079579838, 48.818950692442826], [2.352582677064227, 48.81882855782484], [2.35249743552537, 48.81870661318718], [2.352409317609737, 48.818584478415], [2.352409340481652, 48.818565748914146], [2.352386065796428, 48.818559542136725], [2.3523851790932913, 48.81855911012787], [2.352384651123372, 48.81855885364263], [2.352228888714957, 48.81848280269806], [2.352058937293157, 48.81840002462486], [2.351903175823152, 48.81832397414456], [2.351733224074211, 48.818241195589344], [2.351723329666939, 48.818236375219776], [2.351567569175136, 48.8181603242913], [2.351482392736349, 48.818118837026184], [2.351396967354908, 48.818077227830535], [2.351241207814474, 48.81800117646616], [2.351055208540457, 48.81791057874906], [2.350899450007446, 48.817834526028896], [2.350713450559892, 48.817743927759366], [2.350557693011917, 48.817667875482094], [2.350513984718142, 48.81764658532084], [2.350494480613668, 48.81763708442308], [2.350330012263675, 48.817557586652235], [2.35017372560829, 48.81748145993001], [2.350009258226934, 48.81740196260634], [2.349852973879287, 48.817325834562446], [2.349688507477766, 48.81724633678658], [2.349505139728076, 48.81715701541345], [2.349340674389288, 48.81707751714723], [2.349157307829048, 48.81698819522731], [2.348992843552989, 48.81690869647074], [2.348803710258663, 48.8168165634952], [2.348639247062884, 48.8167370642402], [2.348631713979043, 48.81673339508864], [2.348591857049814, 48.816713978809396], [2.348555763293183, 48.816696396177086], [2.348389435045117, 48.81661537274151], [2.34822497312669, 48.816535872003094], [2.348060511698586, 48.816456371932254], [2.34789418499686, 48.81637534689113], [2.3477297245792252, 48.81629584635394], [2.347563400265289, 48.81621482084857], [2.347398940858219, 48.81613531984505], [2.347232616208455, 48.81605429386056], [2.34706815781205, 48.81597479239075], [2.346901834188262, 48.8158937659346], [2.346789637684247, 48.815904666946686], [2.346759967310344, 48.8159075501614], [2.346553340097479, 48.81592758268769], [2.34633912140278, 48.815948396291525], [2.3461324952282, 48.81596842809722], [2.345918276209023, 48.81598924004697], [2.345711648349145, 48.81600927111725], [2.345497428982941, 48.81603008321159], [2.345290802161374, 48.81605011356128], [2.345057760207469, 48.81607275277741], [2.344851131686247, 48.8160927823591], [2.344755000893881, 48.81610212092344], [2.344548372139902, 48.81612214998141], [2.344418848140124, 48.8161347327641], [2.344403268723931, 48.816125382780825], [2.344412612635086, 48.8160027525733], [2.344428525005177, 48.815870355973885], [2.344437870184343, 48.81574772484477], [2.3444537824124883, 48.81561532821197], [2.34445307373843, 48.81561558514806], [2.344437939885124, 48.81562106936279], [2.344413098039887, 48.81563007090318], [2.344380523698902, 48.815641875691554], [2.344351265624786, 48.81565247729181], [2.344351024845452, 48.81565256411118], [2.344163997871613, 48.81571718716297], [2.3440053392478513, 48.81577468145208], [2.343967120859901, 48.8158023140121], [2.343963419101145, 48.815820408209], [2.343972385615866, 48.815945006896314], [2.343979574869282, 48.81607762102572], [2.343988541466934, 48.81620221968334], [2.343995732158707, 48.816334833788986], [2.344004697477381, 48.8164594324095], [2.344011888245706, 48.816592046483855], [2.344020855009024, 48.81671664508216], [2.344028044492087, 48.8168492591178], [2.344037011338238, 48.81697385768648], [2.34404420225968, 48.81710647169832], [2.344053167826734, 48.81723107022986], [2.344060358824836, 48.81736368421043], [2.344069325836557, 48.81748828271974], [2.344069550078703, 48.81748961953422], [2.344106408351553, 48.81761936800357], [2.344141275512461, 48.81774349966859], [2.344178134143131, 48.817873248086606], [2.34421300027148, 48.81799738059459], [2.344249859260073, 48.81812712896117], [2.344284727090681, 48.81825126142772], [2.344321586437307, 48.81838100974296], [2.344356453246563, 48.81850514215312], [2.344393312951123, 48.818634890416995], [2.344428181474068, 48.81875902188638], [2.344465041536569, 48.81888877009885], [2.344499909026851, 48.81901290241116], [2.344536769447298, 48.81914265057227], [2.344571638639985, 48.81926678284314], [2.344608499418383, 48.81939653095287], [2.344643367589711, 48.8195206631673], [2.3446417027934, 48.819526877764304], [2.344523455943655, 48.819659042204606], [2.34443329832559, 48.81976072218845], [2.344343140367316, 48.819862401195806], [2.344224891988627, 48.81999456620076], [2.344190290498037, 48.820033589459285], [2.344181723604957, 48.82004290683194], [2.344222997359474, 48.82006886449562], [2.344373908081074, 48.820162596322305], [2.344525691229612, 48.82025663582162], [2.344676604400696, 48.82035036725816], [2.344828388641737, 48.82044440635752], [2.344979301538487, 48.8205381373889], [2.34513108688333, 48.820632175189075], [2.345282002218192, 48.820725906729564], [2.345433788655548, 48.820819944129774], [2.345584703716187, 48.82091367526515], [2.345736491246061, 48.8210077122654], [2.345887408756237, 48.82110144301053], [2.346039197378638, 48.82119547961088], [2.346190114614496, 48.82128920995087], [2.346341904329428, 48.82138324615127], [2.346351531859828, 48.82138567853855], [2.346544396156473, 48.821382794257836], [2.346743343245647, 48.82137968657366], [2.34693620613651, 48.82137680165354], [2.347135153179359, 48.82137369331749], [2.347328017388314, 48.821370807772894], [2.3475269643962893, 48.821367697885634], [2.34771982719944, 48.82136481170164], [2.3479187755118582, 48.82136170206925], [2.348111638271139, 48.82135881525333], [2.348310585175366, 48.82135570496163], [2.348503449252609, 48.821352817521195], [2.348702396121809, 48.821349705678294], [2.348895258793321, 48.8213468175985], [2.349094206966956, 48.82134370601046], [2.349287069594569, 48.82134081729871], [2.349486016359984, 48.82133770505138], [2.349678880316849, 48.8213348148158], [2.349877827035868, 48.821331701916556], [2.350070689575757, 48.821328811940944], [2.350269636248478, 48.82132569838985], [2.350462500106281, 48.821322807789684], [2.350611761853609, 48.8213204706509], [2.350618118111718, 48.821323442543864]]], "type": "Polygon"}, "properties": {"lassalle_jean": 32.0, "pecresse_valerie": 55, "zemmour_eric": 116.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 24.0, "date_tour": "2022-04-10", "id_bvote": "13-46", "circ_bv": "10", "num_bureau": 46, "roussel_fabien": 25.0, "nb_emargement": 1306.0, "nb_procuration": 34.0, "nb_vote_blanc": 20.0, "jadot_yannick": 61.0, "le_pen_marine": 163.0, "nb_exprime": 1280.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1719.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1306, "quartier_bv": "51", "geo_point_2d": [48.81890040371211, 2.348020021248207], "melenchon_jean_luc": 396.0, "poutou_philippe": 10.0, "macron_emmanuel": 362.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.259382106807334, 48.839624230916264], [2.259363299978398, 48.83962913657936], [2.259305441091928, 48.839698568862545], [2.259206418923181, 48.83982238947216], [2.259111125159007, 48.83993674288757], [2.259012102076158, 48.84006056330994], [2.258916807462996, 48.8401749156469], [2.258817783466033, 48.84029873588199], [2.258722487978301, 48.84041308893906], [2.258623463067212, 48.84053690898693], [2.258528166730479, 48.84065126096549], [2.258527823470534, 48.84065949080284], [2.25861421061723, 48.84077816252563], [2.258696618356086, 48.84089873866626], [2.258783006283641, 48.84101741024172], [2.258865414804049, 48.84113798534092], [2.258951803512574, 48.84125665676906], [2.259034211426414, 48.841377232617006], [2.259120602278268, 48.84149590390627], [2.259203010960986, 48.841616479612085], [2.259195594799882, 48.841628542838535], [2.25897547755714, 48.84168590404359], [2.258770228696541, 48.84173919557632], [2.258550109168781, 48.84179655508528], [2.258344859437514, 48.84184984588292], [2.258312143853237, 48.84185706377058], [2.258309197429171, 48.841874433969984], [2.258375944292592, 48.841962878362125], [2.258457764422617, 48.842071792325186], [2.25854655544769, 48.8421894463551], [2.2586283776523928, 48.84229836018783], [2.25871716944859, 48.84241601406719], [2.258798992365513, 48.84252492776114], [2.258887783570359, 48.84264258148152], [2.2589696072122942, 48.84275149413736], [2.259058400537874, 48.84286914861498], [2.259140224892146, 48.842978061132015], [2.259222049575512, 48.8430869744817], [2.259310842692896, 48.843204627828875], [2.259331761356018, 48.84321871468923], [2.259359436789199, 48.84320971874385], [2.259495599801685, 48.8431362421254], [2.259638049993847, 48.84306061519013], [2.259774212224005, 48.84298713824479], [2.259916661604359, 48.84291151096766], [2.260052823052193, 48.84283803369536], [2.260195271620743, 48.8427624060764], [2.26021486524314, 48.84276415690737], [2.2603123685391, 48.842853473839085], [2.260415085587486, 48.84294921294927], [2.260433891752854, 48.84295144093833], [2.260600368276034, 48.842876364308154], [2.260753926361285, 48.84280565680539], [2.260920401957803, 48.84273057972004], [2.261073957829621, 48.8426598708896], [2.26122751463442, 48.842589162765215], [2.261393988857229, 48.84251408500628], [2.261438025825298, 48.842493807150305], [2.261452328896747, 48.84249399168746], [2.261480538749221, 48.8424741521275], [2.261590057652662, 48.842423720500044], [2.261765575775644, 48.84234295285694], [2.261919130721273, 48.842272242925496], [2.262094647824186, 48.84219147478862], [2.262248201877082, 48.842120764425154], [2.262423717959929, 48.84203999579456], [2.262577271120096, 48.8419692849991], [2.262626426743275, 48.84194666481225], [2.262640083250054, 48.84193465783358], [2.262614214365958, 48.84190860545872], [2.262563860334403, 48.84178018490915], [2.262514737322774, 48.84165424068798], [2.2624643837694443, 48.841525820966574], [2.262415262600276, 48.84139987668425], [2.262364908175334, 48.8412714568833], [2.262315787486365, 48.84114551253144], [2.262266665672343, 48.841019568136836], [2.262216313343279, 48.840891148238], [2.262215606296575, 48.84088979301923], [2.262178920821137, 48.84083430029031], [2.26214354162122, 48.8407867327843], [2.262125679565091, 48.84076637412393], [2.262090769665205, 48.84077555183418], [2.261931340161854, 48.84082017816788], [2.261766793609255, 48.84086589512758], [2.261607363552068, 48.84091052102595], [2.261442816417344, 48.84095623843559], [2.261283387181612, 48.84100086300765], [2.261118838115062, 48.8410465799596], [2.260959408325609, 48.841091204096266], [2.260794858689675, 48.84113692059887], [2.260777037479807, 48.841132155319286], [2.26070005008346, 48.841012836415885], [2.2606266230993652, 48.840895647584816], [2.260549636396596, 48.84077632855934], [2.260476208721442, 48.840659139602664], [2.260399224087639, 48.84053981956425], [2.260325797071097, 48.84042263138976], [2.260319742548221, 48.84041817802837], [2.260119114473591, 48.84034576805923], [2.259918484292499, 48.84027373726807], [2.259912926354447, 48.84027001095325], [2.259830856076518, 48.84016660852449], [2.259747825811647, 48.84006011793323], [2.259665756191746, 48.8399567153718], [2.259582726598651, 48.8398502246459], [2.259500657636771, 48.839746821951785], [2.259417628715241, 48.83964033109132], [2.259382106807334, 48.839624230916264]]], "type": "Polygon"}, "properties": {"lassalle_jean": 10.0, "pecresse_valerie": 142, "zemmour_eric": 130.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-42", "circ_bv": "14", "num_bureau": 42, "roussel_fabien": 3.0, "nb_emargement": 903.0, "nb_procuration": 42.0, "nb_vote_blanc": 6.0, "jadot_yannick": 50.0, "le_pen_marine": 53.0, "nb_exprime": 897.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1151.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 906, "quartier_bv": "61", "geo_point_2d": [48.84160145490483, 2.2602624512678404], "melenchon_jean_luc": 78.0, "poutou_philippe": 0.0, "macron_emmanuel": 404.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.382154149656492, 48.885845916760154], [2.382123233607686, 48.88588623762185], [2.38199898042049, 48.885988868489456], [2.381868073764488, 48.8860957069856], [2.381743818211047, 48.8861983375618], [2.381612910504851, 48.88630517575859], [2.381488653948688, 48.88640780605046], [2.38135774519239, 48.88651464394788], [2.381233488997146, 48.88661727396244], [2.381102577827085, 48.88672411155351], [2.380978320629105, 48.8868267412837], [2.380847409772576, 48.886933578582415], [2.380723150208191, 48.887036208021186], [2.380624938783051, 48.887116358575426], [2.380609872656811, 48.88713731222383], [2.380637090852788, 48.88715454556623], [2.380767469999377, 48.88725970153581], [2.380902109981639, 48.88736577420835], [2.380907731299471, 48.88736841131147], [2.3810911700115662, 48.88741427904377], [2.381269933340226, 48.88746078962971], [2.38145337269679, 48.88750665680325], [2.381632135302419, 48.88755316683753], [2.381810899580385, 48.88759967750923], [2.381994339902723, 48.88764554384817], [2.382173103468328, 48.887692053068946], [2.382356544435123, 48.88773791884915], [2.382358020088327, 48.88773837162595], [2.382542544706642, 48.887804089866606], [2.382724557574399, 48.88787108989288], [2.382909083125718, 48.8879368075607], [2.383091096918341, 48.88800380792098], [2.383275623402462, 48.88806952501605], [2.383457636777675, 48.88813652390475], [2.383642165558386, 48.88820224043402], [2.383824179858374, 48.88826923965674], [2.384008708208395, 48.88833495560615], [2.3841907248182412, 48.88840195337136], [2.38424633185356, 48.888417658224], [2.384256532429638, 48.888412728434076], [2.384276093431479, 48.8883754262064], [2.384342630034523, 48.88824507340599], [2.384403362101407, 48.88812926153685], [2.384464093898146, 48.888013449624715], [2.384522130265853, 48.8878997480161], [2.384524027087484, 48.887896530096874], [2.384532525024848, 48.887879878750475], [2.38456438058631, 48.887757586200074], [2.384591245526282, 48.88763822495214], [2.384623100802004, 48.88751593235925], [2.384649965493333, 48.88739657017256], [2.384681819119749, 48.88727427753017], [2.3847086835410822, 48.887154916203315], [2.38474053824544, 48.88703262352537], [2.384767402407507, 48.886913262159126], [2.384799256826137, 48.886790969438636], [2.384826120739567, 48.886671607133685], [2.3848387219772222, 48.88664258864609], [2.384791224662036, 48.886617934264464], [2.384776572797342, 48.88661032804339], [2.384763498263794, 48.88660818792129], [2.384576973510712, 48.88655848149999], [2.384395250550048, 48.886510982131256], [2.384208726486033, 48.88646127603115], [2.384027004200496, 48.88641377609936], [2.38384528361013, 48.88636627589671], [2.383658759236412, 48.886316568027034], [2.3834770393211793, 48.88626906726133], [2.383290515647175, 48.886219358813584], [2.383108796407081, 48.88617185748481], [2.382922273422137, 48.886122149358336], [2.382920814226479, 48.88612169217578], [2.382768061777314, 48.88606189745461], [2.382589403676682, 48.88599714497564], [2.382436650609775, 48.88593734981787], [2.382321839712123, 48.88589573759374], [2.382287281979509, 48.88588622702066], [2.38227460101946, 48.885887719227775], [2.382210754686711, 48.88586457844572], [2.382162303379082, 48.88584589947945], [2.382154149656492, 48.885845916760154]]], "type": "Polygon"}, "properties": {"lassalle_jean": 4.0, "pecresse_valerie": 26, "zemmour_eric": 69.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-69", "circ_bv": "17", "num_bureau": 69, "roussel_fabien": 7.0, "nb_emargement": 1148.0, "nb_procuration": 38.0, "nb_vote_blanc": 13.0, "jadot_yannick": 101.0, "le_pen_marine": 53.0, "nb_exprime": 1130.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1674.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1148, "quartier_bv": "73", "geo_point_2d": [48.887082893747035, 2.3829525071925777], "melenchon_jean_luc": 630.0, "poutou_philippe": 11.0, "macron_emmanuel": 204.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.403821863216004, 48.86006545539098], [2.4038174659876512, 48.860046647992704], [2.403665012655848, 48.85996413894231], [2.403499921742672, 48.85987724534987], [2.403347469399133, 48.8597947367816], [2.403182379562529, 48.8597078418385], [2.403029928217542, 48.85962533285311], [2.402864839437106, 48.85953843835802], [2.402712389090665, 48.85945592895551], [2.402547301386801, 48.85936903310978], [2.402394852038901, 48.8592865232902], [2.402229765391184, 48.859199627892416], [2.402150319300591, 48.85915662816281], [2.402128606701743, 48.85915343403579], [2.402089705256812, 48.85919134850325], [2.401990571896325, 48.85927496615192], [2.401862322081903, 48.859372932020676], [2.401763188011095, 48.859456549467275], [2.401634937322153, 48.85955451507627], [2.401634002632632, 48.85955531711457], [2.401534867848369, 48.85963893435829], [2.401404058050792, 48.859765122720326], [2.401289875623055, 48.8598808178296], [2.401159065998108, 48.86000700500387], [2.401044882496345, 48.86012269985416], [2.401043929693617, 48.86012377160003], [2.400970942150192, 48.860220568688], [2.40087175043889, 48.860356699540205], [2.4007987622492672, 48.860453496502835], [2.400699569634279, 48.86058962808304], [2.400626580798448, 48.860686424920345], [2.400625925690334, 48.86068744689083], [2.400557781142354, 48.86081525212061], [2.400489579004763, 48.86093452943681], [2.400421433799141, 48.86106233456047], [2.4003532310157, 48.861181612671665], [2.400352706568498, 48.86118288711105], [2.400312772105492, 48.8613189464729], [2.400270792211872, 48.861454943393525], [2.40023085732641, 48.861591002694645], [2.400188877010104, 48.86172699865387], [2.400188765696785, 48.861727432478496], [2.40016345644432, 48.86184392338646], [2.40014149792863, 48.861969136708105], [2.400116187090148, 48.86208562757382], [2.400094228358876, 48.86221084085949], [2.4000940820228243, 48.8622114750616], [2.400068770960487, 48.86232796589184], [2.4000368027389642, 48.862439702684654], [2.3999980274916632, 48.86255010848004], [2.399966058982104, 48.862661845231536], [2.399957127722, 48.86269595835799], [2.3999568188245872, 48.86269685974852], [2.399918043216389, 48.8628072654924], [2.39986476889095, 48.86293240707024], [2.399825992912366, 48.863042812760796], [2.399772718124847, 48.86316795427105], [2.399733941775974, 48.86327835990832], [2.399737598444242, 48.86328372933063], [2.3997810894927882, 48.86329224837962], [2.399898119804686, 48.86322503300777], [2.399981613912801, 48.863177077861664], [2.399983686651392, 48.86317558545382], [2.400085939862204, 48.86308285613098], [2.400207780409127, 48.86297236125931], [2.400310032822204, 48.86287963172804], [2.400431873781602, 48.8627691366148], [2.400534124034023, 48.8626764068682], [2.400655964042768, 48.86256591150654], [2.400758213497475, 48.86247318155149], [2.400880052555678, 48.862362685941434], [2.400969548169998, 48.86227814700589], [2.401092960816073, 48.862168468448694], [2.4011824571143, 48.86208392934591], [2.401182852395943, 48.86208357428489], [2.401299147760697, 48.861984435254705], [2.401422559017256, 48.86187475632858], [2.401538853459752, 48.861775617046796], [2.40166226371704, 48.86166593785282], [2.401701913387522, 48.86163213643531], [2.40172345451125, 48.86161889608223], [2.40172280735001, 48.86161578471873], [2.401799449786516, 48.861550446581724], [2.401930545473336, 48.86143860661721], [2.402046837975741, 48.861339466802754], [2.402177932600626, 48.861227626545976], [2.402294224161351, 48.86112848647228], [2.4024253163613283, 48.861016645916386], [2.402541606980386, 48.86091750558347], [2.402672699481437, 48.86080566474213], [2.402788989158833, 48.86070652414993], [2.402913817591008, 48.86060002534475], [2.4030395140649903, 48.86049278607535], [2.403164342825635, 48.860386287894414], [2.403290038268406, 48.86027904834123], [2.403294265036274, 48.8602766645721], [2.403420363989726, 48.86023103282565], [2.403550561952348, 48.86018391677348], [2.40367666045685, 48.86013828475316], [2.403806857945734, 48.860091169317506], [2.403821863216004, 48.86006545539098]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 43.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-2", "circ_bv": "15", "num_bureau": 2, "roussel_fabien": 32.0, "nb_emargement": 957.0, "nb_procuration": 54.0, "nb_vote_blanc": 10.0, "jadot_yannick": 86.0, "le_pen_marine": 54.0, "nb_exprime": 945.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 0, "nb_inscrit": 1159.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 957, "quartier_bv": "79", "geo_point_2d": [48.86086859233703, 2.4015791492275826], "melenchon_jean_luc": 331.0, "poutou_philippe": 7.0, "macron_emmanuel": 290.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.323313424692168, 48.88267735664509], [2.323281759906328, 48.88267223134034], [2.323155985342277, 48.88264704501764], [2.32296786677639, 48.88260913480475], [2.32277716803842, 48.882570947093456], [2.322589048647954, 48.88253303717434], [2.3223983504781263, 48.88249484795778], [2.322210231638316, 48.882456937440786], [2.32201953401324, 48.88241874851748], [2.321831417099332, 48.8823808365111], [2.321640720030712, 48.8823426469818], [2.321452602303947, 48.882304734369924], [2.321261905791791, 48.88226654423457], [2.321073788615708, 48.882228631024866], [2.320883094023551, 48.882190440291275], [2.320694977398154, 48.882152526483715], [2.320504281998945, 48.8821143351364], [2.320370095001681, 48.882087290453114], [2.320348225824229, 48.882082148925015], [2.32031351052879, 48.882137784265836], [2.320218273976757, 48.88224023971377], [2.320105574863065, 48.88236148011259], [2.320010337492866, 48.882463935374325], [2.319897638774528, 48.88258517556048], [2.319802400586153, 48.882687630635985], [2.319689699536085, 48.88280887059401], [2.319594460529525, 48.88291132548328], [2.319481759874696, 48.88303256522866], [2.319386520050045, 48.883135019931686], [2.319273817063555, 48.88325625944899], [2.319178576420598, 48.88335871396573], [2.319165541537588, 48.88336517169454], [2.319166145557331, 48.883374981451446], [2.3191316185299042, 48.88342971723503], [2.319096101330153, 48.88348602480421], [2.31909763344225, 48.88349472826379], [2.31911436871802, 48.88350030756809], [2.319328748116094, 48.88352856588438], [2.31954336188798, 48.88355685482477], [2.319757741739874, 48.88358511327071], [2.31997235461437, 48.883613401432925], [2.320186734931827, 48.88364165910934], [2.320401349635849, 48.88366994650888], [2.32041177542083, 48.88367626503974], [2.320465727396147, 48.883799205095045], [2.32051911677941, 48.883920864866646], [2.320573067897973, 48.884043804838505], [2.320626459146355, 48.88416546454289], [2.320630920145354, 48.884169922662124], [2.320758372900822, 48.884238722508854], [2.320885751513318, 48.88430748222253], [2.321013204942231, 48.88437628178934], [2.321140582875815, 48.884445040316336], [2.321268038341555, 48.88451383961103], [2.321395416948084, 48.884582597858284], [2.321409090208958, 48.88459245288568], [2.321425312291013, 48.88458879911191], [2.321571223616695, 48.88450305905109], [2.321716704340094, 48.884417571779245], [2.321862614717956, 48.88433183045069], [2.322008093109366, 48.884246343703005], [2.322154002527699, 48.88416060200604], [2.322299479974133, 48.8840751139917], [2.322445388421241, 48.883989372825546], [2.322590864910996, 48.88390388444384], [2.322736772398592, 48.883818142909234], [2.322882249295239, 48.88373265416793], [2.323028154459763, 48.883646912257156], [2.323173630399737, 48.88356142314852], [2.323187198527824, 48.8835596472259], [2.323361237309403, 48.88359973659135], [2.323535235569483, 48.88363981647861], [2.323709276250479, 48.88367990534296], [2.323883275046283, 48.88371998472149], [2.324057314899556, 48.88376007306928], [2.324231315594548, 48.88380015194681], [2.324405355983663, 48.883840239785805], [2.324579357214474, 48.88388031815456], [2.324753398139427, 48.88392040548472], [2.324927399905949, 48.883960483344794], [2.3251014413667352, 48.88400057016608], [2.325275443668966, 48.88404064751741], [2.325449485665581, 48.88408073382986], [2.325623488503517, 48.884120810672485], [2.32563672013042, 48.88411922503436], [2.325791379162618, 48.88403411637495], [2.325941087842795, 48.88395173069673], [2.326090796049183, 48.8838693448251], [2.326245453597265, 48.88378423555985], [2.326395162204193, 48.883701849302774], [2.326549818757409, 48.8836167396314], [2.326699525037844, 48.883534352973555], [2.326854180596101, 48.883449242896035], [2.326872377519068, 48.88340911269954], [2.326849925147949, 48.88340257962557], [2.326698781736582, 48.88337109759838], [2.326508077472718, 48.8833329158561], [2.326308602542392, 48.88329136502128], [2.326117898856585, 48.88325318265475], [2.325918424531347, 48.88321163206616], [2.3257277214236, 48.88317344907534], [2.325528246351535, 48.88313189782599], [2.325337545185406, 48.88309371421866], [2.325138070730075, 48.883052162316254], [2.324947370142016, 48.88301397808469], [2.324747896315089, 48.8829724246299], [2.32455719630511, 48.88293423977412], [2.324366495211245, 48.88289605460556], [2.32416702365138, 48.88285450108553], [2.323976323135603, 48.88281631529276], [2.323776852192494, 48.88277476111968], [2.323586152254813, 48.88273657470269], [2.323386681940152, 48.882695018977266], [2.323321757187508, 48.882682018216514], [2.323313424692168, 48.88267735664509]]], "type": "Polygon"}, "properties": {"lassalle_jean": 11.0, "pecresse_valerie": 119, "zemmour_eric": 75.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-7", "circ_bv": "03", "num_bureau": 7, "roussel_fabien": 14.0, "nb_emargement": 1200.0, "nb_procuration": 87.0, "nb_vote_blanc": 9.0, "jadot_yannick": 105.0, "le_pen_marine": 44.0, "nb_exprime": 1191.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1460.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1200, "quartier_bv": "67", "geo_point_2d": [48.883296981699274, 2.3224547782852176], "melenchon_jean_luc": 246.0, "poutou_philippe": 4.0, "macron_emmanuel": 532.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.345717884165436, 48.89341592750911], [2.345704078885045, 48.89338922316238], [2.345654116461447, 48.89330101177911], [2.345595839230373, 48.893191913142694], [2.345530450279708, 48.89307646505517], [2.345472174934109, 48.892967365444385], [2.34540678653975, 48.89285191726572], [2.345348510329483, 48.89274281846419], [2.345283122502634, 48.89262736929513], [2.3452248481666143, 48.892518270418535], [2.345222569041447, 48.89251567510207], [2.345086385640727, 48.892407414563934], [2.34495774479057, 48.89230502362731], [2.344955409722016, 48.89230232367766], [2.344890523522785, 48.89218310702265], [2.34482704680127, 48.892064949338106], [2.344762161191862, 48.89194573258771], [2.344698685051027, 48.891827574809575], [2.344633800031332, 48.891708357963864], [2.344570324482492, 48.891590199192805], [2.344505440052503, 48.891470982251704], [2.34444196507301, 48.891352824286336], [2.344377081232718, 48.89123360724994], [2.344313605470222, 48.8911154491835], [2.344300024773878, 48.89109332609746], [2.344277945138665, 48.89109228338457], [2.344066493500636, 48.89113720304379], [2.34383519515558, 48.89118459373766], [2.343827390454841, 48.89118238629779], [2.343793930555798, 48.891191112541854], [2.34379087211289, 48.8911914941819], [2.343584821715019, 48.89120137076169], [2.343373325780329, 48.891211435662214], [2.343167275224344, 48.891221311523346], [2.342955780491613, 48.89123137569376], [2.342749728413863, 48.89124125082877], [2.342538233519439, 48.89125131426154], [2.342332182647264, 48.89126118868537], [2.342120686227493, 48.89127125137297], [2.341914635197241, 48.89128112507815], [2.341703138615696, 48.89129118702814], [2.341692748264976, 48.891297707561826], [2.341701159590309, 48.89132592872089], [2.341757710771268, 48.891444853212434], [2.341815787616877, 48.89156620972605], [2.341872339331988, 48.89168513323811], [2.341930416712777, 48.89180648966956], [2.3419869689393122, 48.89192541400072], [2.342045046866755, 48.8920467694507], [2.342101599616085, 48.89216569370172], [2.342159678067257, 48.89228704996873], [2.342216231350754, 48.89240597324027], [2.342274310337127, 48.89252732942514], [2.342330864132074, 48.892646253515736], [2.34238894365376, 48.892767609618396], [2.342380713920557, 48.892778738507225], [2.342198452788606, 48.89282368114682], [2.342031308328528, 48.89286087526852], [2.3420232400980883, 48.892865692674604], [2.341951348248541, 48.892970603805374], [2.341890962682005, 48.893056783181244], [2.3418305755404862, 48.8931429634116], [2.341758682931147, 48.8932478735009], [2.341764570180714, 48.8932586068975], [2.34180842984153, 48.89326521877392], [2.34197833754201, 48.8932887893708], [2.342157350617664, 48.89331215433815], [2.342327259993088, 48.893335724446466], [2.342506272034225, 48.89335908798448], [2.342517841540205, 48.8933570686768], [2.342653729322514, 48.89327959614174], [2.342787980521176, 48.89320219270836], [2.342923868872383, 48.89312471896404], [2.343058119270103, 48.893047315216876], [2.343194005451422, 48.892969841147604], [2.343328256411914, 48.89289243709413], [2.343464141775725, 48.89281496360662], [2.343598391935383, 48.892737559239386], [2.34373427650427, 48.89266008453515], [2.343868525862993, 48.89258267985415], [2.343874938883765, 48.89258061687284], [2.344067161169074, 48.89255458864083], [2.344300055430199, 48.8925251936167], [2.344315402248057, 48.892530892120746], [2.344387058203675, 48.89265798731145], [2.344455406138965, 48.892776709628386], [2.344527064138449, 48.89290380471425], [2.344595412726885, 48.89302252602537], [2.344663760251982, 48.89314124817642], [2.344735419261772, 48.89326834309541], [2.344803768792627, 48.89338706514738], [2.344875427129991, 48.89351415904732], [2.344897024345798, 48.89355167369433], [2.344925011707842, 48.89356174361815], [2.3449567223384182, 48.8935436428639], [2.345138502179784, 48.89351420042786], [2.345311504930569, 48.89348596698315], [2.345493283006118, 48.8934565239996], [2.345666285384173, 48.89342828914155], [2.345717884165436, 48.89341592750911]]], "type": "Polygon"}, "properties": {"lassalle_jean": 8.0, "pecresse_valerie": 65, "zemmour_eric": 68.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-1", "circ_bv": "18", "num_bureau": 1, "roussel_fabien": 33.0, "nb_emargement": 1247.0, "nb_procuration": 102.0, "nb_vote_blanc": 13.0, "jadot_yannick": 138.0, "le_pen_marine": 51.0, "nb_exprime": 1230.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1543.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1246, "quartier_bv": "70", "geo_point_2d": [48.89223690357369, 2.343527715776901], "melenchon_jean_luc": 393.0, "poutou_philippe": 6.0, "macron_emmanuel": 423.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.308211270074663, 48.88698784293448], [2.308270029001084, 48.88702194328344], [2.308447310890656, 48.887092546752854], [2.308626723130003, 48.88716142564635], [2.308804005978073, 48.887232028578694], [2.308983419181644, 48.88730090602978], [2.309160702988311, 48.88737150842502], [2.309340117132337, 48.8874403862321], [2.3095174018974, 48.88751098809025], [2.309696817005841, 48.88757986445488], [2.309874102729401, 48.88765046577595], [2.310053518778208, 48.887719342496645], [2.310230805460369, 48.8877899432806], [2.310410222473478, 48.88785881855877], [2.31058751147771, 48.887929418813506], [2.310766928067725, 48.88799829443984], [2.310769188790851, 48.88799956021916], [2.310795897724232, 48.888001333650855], [2.311005006953414, 48.887898272419676], [2.311196557016527, 48.88780820135042], [2.311202911601124, 48.88780659033396], [2.31145783671498, 48.88778720558704], [2.311709423902844, 48.88776807450679], [2.3117100601835983, 48.88776801611062], [2.311946586497913, 48.88774254401769], [2.312184020760942, 48.88771697415031], [2.31218519025303, 48.88771681359302], [2.31233281536326, 48.887692001846936], [2.312479974260694, 48.88766726818178], [2.31262713165466, 48.887642534327384], [2.312774756343826, 48.88761772203475], [2.312775459037862, 48.88761759116841], [2.312958936468429, 48.88757975977678], [2.313164030521773, 48.887537471818355], [2.313347508751397, 48.88749963983641], [2.31349919352276, 48.887463789078474], [2.313650879437067, 48.887427939034275], [2.313834356926935, 48.887390106302526], [2.313840718819363, 48.887382341973705], [2.3138396026281782, 48.88737017933637], [2.313657588980033, 48.887309996214114], [2.313481041481539, 48.8872515816559], [2.31329902866235, 48.88719139798207], [2.313122480604528, 48.88713298288106], [2.312940468626165, 48.88707279775644], [2.312763922736334, 48.887014382128264], [2.312581911575068, 48.88695419735137], [2.312405366489569, 48.88689578118823], [2.312223356157266, 48.88683559585975], [2.312046810512455, 48.88677717915386], [2.311864801021, 48.88671699237462], [2.311688257532288, 48.88665857604082], [2.311506248869806, 48.886598388710034], [2.311329704833679, 48.88653997093419], [2.311323238527771, 48.88653539931625], [2.311263092969847, 48.88644044196253], [2.311203178718721, 48.88634585012881], [2.311143033610558, 48.88625089179914], [2.311083119795612, 48.886156299889], [2.3110785052335823, 48.88615246826789], [2.310909696709727, 48.88607231164659], [2.310741281722088, 48.885992340507435], [2.310572472872784, 48.885912183391184], [2.310404058920907, 48.8858322117661], [2.310235252473399, 48.88575205417055], [2.310066838181851, 48.88567208295086], [2.310017856652759, 48.88564420830038], [2.310004920455958, 48.88565142463276], [2.309919734826839, 48.885717761219915], [2.309793992118033, 48.885812214480865], [2.309671097556524, 48.885907915210346], [2.309582975553121, 48.88597410871089], [2.309569795727632, 48.88598076420599], [2.30956419460014, 48.88598809563237], [2.309526572964288, 48.88601635510906], [2.309394860701714, 48.88611197861199], [2.3092691160889522, 48.88620643128785], [2.309137404248299, 48.88630205359966], [2.309011658709568, 48.88639650598878], [2.308879945903445, 48.886492128900066], [2.308754199438737, 48.886586581002504], [2.308622484327464, 48.88668220270687], [2.30849673693677, 48.88677665452258], [2.308365022235486, 48.88687227593511], [2.308239273906856, 48.88696672836335], [2.3082122527835702, 48.886986344032024], [2.308211270074663, 48.88698784293448]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 130, "zemmour_eric": 127.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-14", "circ_bv": "03", "num_bureau": 14, "roussel_fabien": 14.0, "nb_emargement": 1286.0, "nb_procuration": 96.0, "nb_vote_blanc": 7.0, "jadot_yannick": 91.0, "le_pen_marine": 52.0, "nb_exprime": 1282.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 6, "nb_inscrit": 1612.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1289, "quartier_bv": "67", "geo_point_2d": [48.886971264450914, 2.3106954633831083], "melenchon_jean_luc": 217.0, "poutou_philippe": 5.0, "macron_emmanuel": 603.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.367076939997184, 48.86170248649804], [2.367070276367091, 48.86171210393271], [2.367054940324798, 48.86177326826006], [2.367023870318775, 48.86190870635268], [2.366990317227822, 48.862042525056644], [2.366959246893329, 48.8621779630996], [2.366925693451948, 48.86231178265222], [2.366894621436787, 48.86244721973901], [2.366861067656098, 48.86258103924101], [2.366829996675268, 48.86271647628526], [2.366796442555169, 48.86285029573663], [2.366765371245853, 48.86298573273124], [2.366731816786238, 48.863119552131955], [2.366731017391011, 48.86312150937243], [2.366701378681357, 48.86317102783135], [2.366695542280765, 48.86317974127326], [2.366694558778695, 48.8631904517584], [2.366654298344733, 48.863257714719516], [2.366579140755415, 48.86337914304624], [2.366509242312646, 48.86349592436106], [2.366434084041582, 48.86361735257057], [2.366364183590998, 48.863734133768354], [2.3662890246381743, 48.86385556186067], [2.366219123553748, 48.86397234204935], [2.3661439652712772, 48.864093770930936], [2.366074063542067, 48.86421055100976], [2.365998903214757, 48.86433197976692], [2.365929000840751, 48.86444875973591], [2.365853839831655, 48.864570188375836], [2.365783936812843, 48.864686968234984], [2.365708776495979, 48.864808395865616], [2.365638872821407, 48.8649251765142], [2.365563710459664, 48.86504660402038], [2.36549380614037, 48.8651633845591], [2.365418643096814, 48.86528481194806], [2.36534873949558, 48.865401592384174], [2.365342787949257, 48.86540987165126], [2.365422272913448, 48.86544754479617], [2.365608396375767, 48.865489280724276], [2.365780347954675, 48.865527046208655], [2.365789050197383, 48.865527061745155], [2.365960781007141, 48.86548924234316], [2.366125004561436, 48.86545232544569], [2.366289227883083, 48.865415408321674], [2.366460957972598, 48.865377587298894], [2.366468791668757, 48.86537313475048], [2.366535378390811, 48.86528677437235], [2.366603668304094, 48.86519630937115], [2.366670255939636, 48.86510994891138], [2.366738545397841, 48.865019482919486], [2.366755954663598, 48.86501518174345], [2.366915465039989, 48.865058695840325], [2.36707147866638, 48.86510057061347], [2.367230988215705, 48.86514408337999], [2.36738700235143, 48.86518595773859], [2.367401712379298, 48.86518402995683], [2.367552282042725, 48.86508602391526], [2.367702863407536, 48.864988916183954], [2.367853431940391, 48.864890909746244], [2.368004012179882, 48.86479380161891], [2.368154579582276, 48.864695794785035], [2.368305158696455, 48.86459868626176], [2.368320162834531, 48.86459688133087], [2.368384602631255, 48.86461553115594], [2.368456145408998, 48.86463634897149], [2.368473237939325, 48.86463285258501], [2.368567549866869, 48.86453227572495], [2.368662370614425, 48.86443073827076], [2.368756681800039, 48.86433016214258], [2.368851501811106, 48.86422862452007], [2.368945810913533, 48.86412804731798], [2.36904063018812, 48.864026509527086], [2.369134939911705, 48.863925933064124], [2.369229758449819, 48.863824395104835], [2.369324067453184, 48.86372381757519], [2.369418883891882, 48.863622279440364], [2.369437432891151, 48.863619258247965], [2.369584864125755, 48.863676842894755], [2.369759830846588, 48.86374511267143], [2.369907262793706, 48.86380269691457], [2.370082231722651, 48.8638709662193], [2.370229663019332, 48.86392855005157], [2.37040463278257, 48.863996819776496], [2.370552064802631, 48.86405440230577], [2.3706052892484, 48.864075169267224], [2.370635650571101, 48.8640806602407], [2.370648714447805, 48.86406319623963], [2.370729131389359, 48.86394689420708], [2.370810132170733, 48.863827028382886], [2.370890548387388, 48.86371072621706], [2.37097154843018, 48.86359086025806], [2.371051963921945, 48.86347455795903], [2.371132963226162, 48.863354691865226], [2.371213377993048, 48.8632383894329], [2.3712943765587, 48.8631185232043], [2.37129255266552, 48.86310960561921], [2.371271909026768, 48.86310301379748], [2.371081858753972, 48.863052335442354], [2.370890742026586, 48.863001165529234], [2.370700692496212, 48.86295048656417], [2.3705095765168283, 48.86289931603768], [2.370319527728677, 48.8628486364627], [2.370128412497301, 48.862797465322785], [2.3699383644515812, 48.862746785137844], [2.369747249957337, 48.862695614283865], [2.36955720266473, 48.86264493258972], [2.3693660889185972, 48.862593761122376], [2.369176042357445, 48.86254307971756], [2.368984929370114, 48.86249190673754], [2.368794883551306, 48.862441224722794], [2.368603771312102, 48.86239005112944], [2.368413726235641, 48.86233936850478], [2.368222614744365, 48.86228819429802], [2.368032570410358, 48.862237511063434], [2.367841459656204, 48.86218633714262], [2.367651416075364, 48.862135652398834], [2.367460306069243, 48.862084477864656], [2.367452120073547, 48.86207421083995], [2.367501875000609, 48.861925106034455], [2.367552232563146, 48.86177270827305], [2.367541240792686, 48.86176193088418], [2.36734313803437, 48.86173929588895], [2.36715925225117, 48.86171777808666], [2.367076939997184, 48.86170248649804]]], "type": "Polygon"}, "properties": {"lassalle_jean": 17.0, "pecresse_valerie": 56, "zemmour_eric": 64.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-20", "circ_bv": "07", "num_bureau": 20, "roussel_fabien": 31.0, "nb_emargement": 1348.0, "nb_procuration": 82.0, "nb_vote_blanc": 11.0, "jadot_yannick": 153.0, "le_pen_marine": 45.0, "nb_exprime": 1334.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1678.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1348, "quartier_bv": "41", "geo_point_2d": [48.86364767628312, 2.368024490535103], "melenchon_jean_luc": 395.0, "poutou_philippe": 9.0, "macron_emmanuel": 505.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.28941997041149, 48.84496332291689], [2.289446203937765, 48.84495582332242], [2.28950424594411, 48.844926799224226], [2.289554861149484, 48.84490280072388], [2.289558653825405, 48.84489986792757], [2.289669010799033, 48.844763409365925], [2.289778968671554, 48.84462669739648], [2.289781794921043, 48.84462428588424], [2.289922701088948, 48.84453900702646], [2.290064188972427, 48.84445340318204], [2.290205092853616, 48.844368123970504], [2.290346579821697, 48.844282518879744], [2.290487484129098, 48.84419724022995], [2.290628970169331, 48.84411163479204], [2.290769872202481, 48.84402635488923], [2.290911358665258, 48.84394075001165], [2.291052259774348, 48.843855469763135], [2.291193743946871, 48.843769864530394], [2.291334644131908, 48.84368458393626], [2.2914761287514462, 48.84359897746522], [2.291617028000106, 48.84351369742471], [2.291758510329406, 48.843428090598536], [2.291762927304672, 48.843421614319574], [2.291766079539392, 48.843298943927564], [2.291769662824254, 48.84317944634596], [2.291773246105006, 48.84305994785211], [2.291776398281345, 48.842937278319404], [2.291779981529904, 48.842817779799425], [2.291783133675845, 48.84269511023993], [2.291775067298218, 48.84267304504949], [2.291761796731045, 48.84267157336234], [2.291602461577583, 48.842602975850056], [2.291443937235409, 48.84253500438497], [2.291284604280292, 48.84246640644903], [2.291126080768037, 48.84239843455445], [2.2909667472741653, 48.84232983707799], [2.290808224591827, 48.842261864753866], [2.290648893308423, 48.84219326595449], [2.290490371456, 48.842125293200866], [2.290466574860699, 48.842131858653794], [2.290308989317199, 48.84220939290831], [2.290146112728569, 48.84228860795442], [2.289988526234405, 48.84236614177589], [2.289825648668963, 48.84244535637456], [2.289824968612003, 48.84244566621704], [2.289664089887617, 48.84251445078904], [2.289501471153507, 48.84258390383191], [2.289485228957328, 48.842584026810236], [2.289474158482769, 48.84259458889701], [2.289473852887875, 48.84259471659101], [2.2893056638560623, 48.842662440071805], [2.289136073311181, 48.84273088797182], [2.288967883388763, 48.84279861186873], [2.288798290594694, 48.84286705927343], [2.288797689303708, 48.84286728773576], [2.288628139406584, 48.842927967307475], [2.2884594248154793, 48.842988415072384], [2.288289874130487, 48.843049094158104], [2.288121158754858, 48.84310954143939], [2.287951607269711, 48.843170220938426], [2.287782892472161, 48.84323066774421], [2.287777184119026, 48.843242566577565], [2.287818438257052, 48.843297485676096], [2.2878552341323513, 48.843348112514306], [2.287855353596375, 48.84335572367903], [2.28777792298829, 48.84346818108415], [2.287698266483247, 48.84358286370331], [2.287620835186562, 48.84369532188316], [2.287541176626077, 48.843810004366276], [2.287463744652968, 48.84392246242156], [2.2873840853997462, 48.84403714477669], [2.287306652750101, 48.844149602707375], [2.287226992804033, 48.84426428493458], [2.2872288942982513, 48.84427021590074], [2.287250549570582, 48.84427735009547], [2.287348294558965, 48.844356650443295], [2.287444740976036, 48.84443497525001], [2.287542487918056, 48.84451427543612], [2.287638934931062, 48.8445925991759], [2.287647817049649, 48.844595851114036], [2.287811112627848, 48.84460933174621], [2.287972119693694, 48.844622667226496], [2.288135414077258, 48.84463614740759], [2.288296421308927, 48.844649482451096], [2.2884574286352652, 48.84466281637846], [2.2886207232578712, 48.844676296795946], [2.288628703454033, 48.844675351347675], [2.288827476202013, 48.844607103807725], [2.289032587943323, 48.844534318528375], [2.289050849310616, 48.84453775381212], [2.289142240438648, 48.84464255871892], [2.289237272673306, 48.84475597143244], [2.289328664558889, 48.84486077617631], [2.289406169069467, 48.84495327056136], [2.28941997041149, 48.84496332291689]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 135, "zemmour_eric": 140.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-91", "circ_bv": "13", "num_bureau": 91, "roussel_fabien": 18.0, "nb_emargement": 1299.0, "nb_procuration": 92.0, "nb_vote_blanc": 5.0, "jadot_yannick": 103.0, "le_pen_marine": 79.0, "nb_exprime": 1293.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1564.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1300, "quartier_bv": "60", "geo_point_2d": [48.843535895903244, 2.289608623462118], "melenchon_jean_luc": 196.0, "poutou_philippe": 7.0, "macron_emmanuel": 572.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.341910006096793, 48.88243376212146], [2.34188734581025, 48.88248359990107], [2.341866612520605, 48.88260538575483], [2.341846092687791, 48.88272591909823], [2.341825360557381, 48.88284770582478], [2.341804840533607, 48.88296823913454], [2.341784106846702, 48.88309002581962], [2.341763586631963, 48.88321055909576], [2.341743066310867, 48.88333109325447], [2.341722332346396, 48.8834528789894], [2.341722773854201, 48.88345635552987], [2.341754135698659, 48.88352866773625], [2.341786002523485, 48.88360213924398], [2.3417856432522, 48.88360779945161], [2.341738066549255, 48.88369059551773], [2.341647240606338, 48.88384866059832], [2.341599663452027, 48.883931457490576], [2.341589781146702, 48.883937061729675], [2.341413242726423, 48.88396211827987], [2.341224555928217, 48.8839850833353], [2.341048017180796, 48.88401013844664], [2.340859330036155, 48.88403310382479], [2.340682790950124, 48.884058158396506], [2.340494103481822, 48.884081122298774], [2.340317562693813, 48.88410617632339], [2.340128874879077, 48.88412914054839], [2.339952335116154, 48.88415419404088], [2.339813752678797, 48.884171059534744], [2.33979751776866, 48.884176054824806], [2.339807689975788, 48.88420837527456], [2.339927888908503, 48.88431255266255], [2.34004324732011, 48.88441253394364], [2.340163448558985, 48.88451671108334], [2.340278807875109, 48.88461669211892], [2.340283204333762, 48.884619167916036], [2.340388576314067, 48.884656514864375], [2.340497209329523, 48.884695018231646], [2.34050419605027, 48.88470142756574], [2.340531560167937, 48.88480721801252], [2.340561038276074, 48.884921177900836], [2.340581088365617, 48.8849275323722], [2.340701279502485, 48.884883618119474], [2.340920434300903, 48.884803544229506], [2.341040624865435, 48.88475962963117], [2.341046792526069, 48.88475490522485], [2.341120076556539, 48.88462532486661], [2.341194497048461, 48.88449373350754], [2.341267780343756, 48.88436415302811], [2.341342200077932, 48.88423256244525], [2.341357566777543, 48.88422687508267], [2.341393232913885, 48.884231425836404], [2.341408929173438, 48.884233428649694], [2.341419583387408, 48.8842401162142], [2.341471090082479, 48.8843786795462], [2.341519843982391, 48.884513670849415], [2.341571351214807, 48.88465223410382], [2.341620105630729, 48.88478722533266], [2.341668860299417, 48.88492221652503], [2.3417203683324352, 48.88506077966388], [2.341769123517145, 48.88519577078182], [2.341820632087528, 48.88533433384303], [2.3418693877882673, 48.885469324886586], [2.341920896896124, 48.88560788787018], [2.34191282416967, 48.885624695117606], [2.341949891507431, 48.885633263501454], [2.342153846911976, 48.88564922499403], [2.342354438816618, 48.88566492214706], [2.342558394469051, 48.88568088295005], [2.342758986617584, 48.88569657942487], [2.342959578875694, 48.88571227646268], [2.34316353491041, 48.88572823533492], [2.343364127412404, 48.885743931694556], [2.3435680836837403, 48.885759890776505], [2.3437686764409422, 48.8857755855587], [2.343972632960235, 48.885791543951036], [2.344023331766989, 48.88578261440389], [2.344019444643474, 48.88576696458221], [2.344018766828175, 48.88576512893708], [2.343956573979823, 48.88565072817905], [2.343898383752027, 48.88553481865194], [2.343836192806817, 48.8854204178149], [2.34377800311556, 48.8853045073057], [2.343715812698631, 48.8851901072814], [2.343657623532676, 48.88507419668946], [2.343595433666586, 48.8849597956794], [2.3435372450145913, 48.88484388590391], [2.343475054324402, 48.88472948479992], [2.343416866197697, 48.88461357494165], [2.343354677410599, 48.88449917375864], [2.343296489809175, 48.8843832638176], [2.34330284165177, 48.88437256516052], [2.3434910223358463, 48.88430400525311], [2.343676805116541, 48.884236318642536], [2.343864986179519, 48.88416775814639], [2.344050767999403, 48.88410007004787], [2.344238948077588, 48.884031508955445], [2.344424728914002, 48.88396382116757], [2.344429548383138, 48.88396086987633], [2.344532543682486, 48.883856950563604], [2.344633935017344, 48.88375464926244], [2.344735324601488, 48.88365234695919], [2.34483831866915, 48.88354842825349], [2.344939708813855, 48.88344612576543], [2.345042700713566, 48.883342205957746], [2.345144090044061, 48.88323990417672], [2.345247081128082, 48.88313598417374], [2.345263086613731, 48.8830996029625], [2.345248009293993, 48.88309448246084], [2.345100096727473, 48.883066297854846], [2.34491643820374, 48.88303063920353], [2.34471512909213, 48.88299227920257], [2.34453147245659, 48.882956619965796], [2.344526543195473, 48.882953459711835], [2.344495909047055, 48.88294969826703], [2.344312252711691, 48.88291403869263], [2.344132702314256, 48.882875252770575], [2.34394904649014, 48.88283959263656], [2.343769496619788, 48.882800806167246], [2.343741285573832, 48.882795328396604], [2.343741171785771, 48.882795268417055], [2.343715280227841, 48.88278990138131], [2.343559834628761, 48.88275971841701], [2.343386562727548, 48.88272477085728], [2.3432029065816122, 48.88268910956638], [2.343029635166201, 48.88265416058857], [2.342845980877239, 48.882618498755406], [2.3426727085727572, 48.88258354925133], [2.34249943785313, 48.882548600402124], [2.342315784299409, 48.882512937752196], [2.342142512702073, 48.88247798747745], [2.341958859641796, 48.88244232427779], [2.341958688248107, 48.882442290959816], [2.341914432131729, 48.88243378105413], [2.341910006096793, 48.88243376212146]]], "type": "Polygon"}, "properties": {"lassalle_jean": 13.0, "pecresse_valerie": 53, "zemmour_eric": 61.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-22", "circ_bv": "18", "num_bureau": 22, "roussel_fabien": 20.0, "nb_emargement": 1124.0, "nb_procuration": 63.0, "nb_vote_blanc": 11.0, "jadot_yannick": 112.0, "le_pen_marine": 39.0, "nb_exprime": 1111.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 0, "nb_inscrit": 1437.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1125, "quartier_bv": "70", "geo_point_2d": [48.88406971749656, 2.342725259161003], "melenchon_jean_luc": 390.0, "poutou_philippe": 9.0, "macron_emmanuel": 388.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.325055227052096, 48.89426587755705], [2.325064220070752, 48.89427350503958], [2.325118284119062, 48.894390542760874], [2.325172381562082, 48.894507653477206], [2.325226444721163, 48.89462469201621], [2.325280542650763, 48.89474180265867], [2.325334607671738, 48.89485884023226], [2.325388706087825, 48.89497595080084], [2.325442771583439, 48.895092989199846], [2.325496870486122, 48.89521009969453], [2.325550936479685, 48.89532713712045], [2.325605035868969, 48.89544424754122], [2.325659102337189, 48.89556128579255], [2.325713202213083, 48.89567839613941], [2.325727515398737, 48.895684729713885], [2.3259352082249363, 48.89567196843297], [2.326140491656248, 48.8956593542134], [2.326348184291625, 48.895646591316755], [2.326553468886798, 48.89563397639665], [2.326761161308068, 48.895621213682766], [2.3269664457030093, 48.89560859805443], [2.327174137933422, 48.89559583372476], [2.32737942075272, 48.89558321827986], [2.327587114144617, 48.895570453241355], [2.327792396775382, 48.89555783618902], [2.327997680670528, 48.8955452187923], [2.32820537238366, 48.89553245357273], [2.328269088865289, 48.89552319903747], [2.328269407959411, 48.89552183026108], [2.328261973060504, 48.89549952404935], [2.328251669388171, 48.89546826248664], [2.328253248123047, 48.8954651470985], [2.328243268935832, 48.89544076806509], [2.328213674702345, 48.89535096395177], [2.328169880331464, 48.89522153787396], [2.328129982811193, 48.89510047304011], [2.328086188858962, 48.894971046902086], [2.328046291736857, 48.89484998111343], [2.328002498203473, 48.89472055491521], [2.327962601456318, 48.89459948997025], [2.32791880834157, 48.894470063711836], [2.327878911992573, 48.89434899781209], [2.327835119296559, 48.89421957149349], [2.327795223322599, 48.894098506437395], [2.327751431045312, 48.893969080058625], [2.327711536833234, 48.89384801405541], [2.327667744974665, 48.89371858761643], [2.327627849773671, 48.89359752244925], [2.327584058333919, 48.89346809595007], [2.327544163531067, 48.893347029828135], [2.327533648321551, 48.89331595041148], [2.3275287274215373, 48.893310245347855], [2.327475453218754, 48.89331798702014], [2.327296177234366, 48.89333825805542], [2.327115626722615, 48.8933586736468], [2.326936350457943, 48.89337894414267], [2.326755799664116, 48.89339935919076], [2.326576523119268, 48.89341962914721], [2.326395972043271, 48.893440043652035], [2.326216695218254, 48.89346031306904], [2.326036143871734, 48.89348072613137], [2.325856866754913, 48.89350099590817], [2.325676316489969, 48.893521408434914], [2.325497039093087, 48.893541677672296], [2.325316487182173, 48.89356208964806], [2.325305513603571, 48.893568901351856], [2.325264666189657, 48.8936838178935], [2.325224210705835, 48.8937976304508], [2.325183362932923, 48.893912546940726], [2.325142907093752, 48.89402635944684], [2.325102058961942, 48.89414127588504], [2.325061604119401, 48.894255089246904], [2.325055227052096, 48.89426587755705]]], "type": "Polygon"}, "properties": {"lassalle_jean": 14.0, "pecresse_valerie": 53, "zemmour_eric": 51.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-24", "circ_bv": "03", "num_bureau": 24, "roussel_fabien": 13.0, "nb_emargement": 927.0, "nb_procuration": 39.0, "nb_vote_blanc": 14.0, "jadot_yannick": 81.0, "le_pen_marine": 51.0, "nb_exprime": 907.0, "nb_vote_nul": 7.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1170.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 928, "quartier_bv": "68", "geo_point_2d": [48.89454093165927, 2.326627069220572], "melenchon_jean_luc": 274.0, "poutou_philippe": 7.0, "macron_emmanuel": 327.0}},{"type": "Feature", "geometry": {"coordinates": [[[2.351720451042658, 48.89148026062957], [2.351661921327163, 48.89149923601956], [2.351456603125874, 48.89153598927845], [2.35125590352492, 48.89157168442317], [2.351050584751356, 48.89160843698343], [2.350849884592805, 48.89164413144534], [2.350649184147865, 48.89167982646893], [2.350443864530833, 48.891716577086086], [2.350243163528301, 48.89175227142684], [2.350037843339123, 48.89178902134539], [2.349837141779008, 48.891824715003274], [2.349631819653704, 48.891861464215836], [2.349604394674832, 48.89186118396104], [2.3495880109469143, 48.89187612085602], [2.349491881795567, 48.89198259919272], [2.349382997908581, 48.89210071732405], [2.349286867912183, 48.89220719637368], [2.349177983090426, 48.892325314294354], [2.349081852271342, 48.892431792258336], [2.348972966514806, 48.89254990996847], [2.348911232242242, 48.89261828883352], [2.3489234143958, 48.8926454444494], [2.3489441528212502, 48.892651932497365], [2.348978327270684, 48.892792000640796], [2.349010506336841, 48.8929296854971], [2.349044679794511, 48.89306975267943], [2.349076859196549, 48.89320743838229], [2.349111033015125, 48.89334750551019], [2.349143214128023, 48.89348519116774], [2.34917738830741, 48.89362525824126], [2.349209568403622, 48.893762943838674], [2.349243742943825, 48.89390301085773], [2.349275923387283, 48.89404069640241], [2.349294453494115, 48.894047680494644], [2.349497051409496, 48.893994431635605], [2.349687929077669, 48.893943347304536], [2.349890526195874, 48.893890096875516], [2.350081403095482, 48.89383901191242], [2.350284000757881, 48.893785761719315], [2.350474876888922, 48.89373467612421], [2.350648518131693, 48.89368820291658], [2.350851113263513, 48.893634951749355], [2.35086834774154, 48.89363033902586], [2.350875284747532, 48.89362627482538], [2.350928728495687, 48.89356134484435], [2.350979026166776, 48.89350391880854], [2.350986676495843, 48.89349985217209], [2.351185007116428, 48.89345797442203], [2.351380731544079, 48.893417477074564], [2.351579061533828, 48.89337559866872], [2.351774785345314, 48.89333510067421], [2.351973114693233, 48.89329322251183], [2.35216883789974, 48.89325272297098], [2.352367166616917, 48.89321084415287], [2.352562889196057, 48.89317034486418], [2.352616531370308, 48.89315988888242], [2.35261948281347, 48.89315352775073], [2.352551572899721, 48.89302382379779], [2.352489800854166, 48.89290881012075], [2.352421890218842, 48.89277910605793], [2.352360120124975, 48.89266409139646], [2.352298348929118, 48.89254907758296], [2.352230440603714, 48.89241937337639], [2.352168669984639, 48.89230435947029], [2.352100760937654, 48.89217465515388], [2.352038992259047, 48.892059641162625], [2.351971083854375, 48.89192993674373], [2.351909315752528, 48.89181492265989], [2.351841408001253, 48.89168521723928], [2.351779639112382, 48.89157020305552], [2.35173850981577, 48.89149164399639], [2.351720451042658, 48.89148026062957]]], "type": "Polygon"}, "properties": {"lassalle_jean": 6.0, "pecresse_valerie": 36, "zemmour_eric": 45.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-16", "circ_bv": "18", "num_bureau": 16, "roussel_fabien": 25.0, "nb_emargement": 1269.0, "nb_procuration": 60.0, "nb_vote_blanc": 15.0, "jadot_yannick": 111.0, "le_pen_marine": 61.0, "nb_exprime": 1247.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1664.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1269, "quartier_bv": "70", "geo_point_2d": [48.892722267580616, 2.3506268208109358], "melenchon_jean_luc": 578.0, "poutou_philippe": 10.0, "macron_emmanuel": 331.0}}]} \ No newline at end of file diff --git a/elections-presidentielles2022-1ertour.json b/elections-presidentielles2022-1ertour.json new file mode 100644 index 0000000..f34612d --- /dev/null +++ b/elections-presidentielles2022-1ertour.json @@ -0,0 +1 @@ +[{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "45c0a3148b71e33bfe51ba8c98dbd85674190238", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 21, "zemmour_eric": 91.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-55", "geo_shape": {"coordinates": [[[2.37404377939473, 48.89072647103451], [2.374063560020248, 48.89072626416924], [2.374249304288556, 48.890699938761486], [2.374422411405633, 48.890674845666545], [2.374595518355759, 48.89064975232074], [2.374781262082173, 48.89062342608602], [2.3749543686884103, 48.890598332220335], [2.375140112060849, 48.89057200452851], [2.375313218312398, 48.89054691104213], [2.375498961319855, 48.890520582792405], [2.375672067238393, 48.89049548788684], [2.3758578112339332, 48.89046915998565], [2.3758647979462673, 48.89045415075532], [2.375715783305801, 48.89035145475545], [2.375573213519125, 48.89025510450413], [2.375424200023388, 48.89015240812279], [2.375281629946735, 48.89005605839898], [2.37513261759572, 48.88995336163615], [2.374990048603713, 48.88985701154772], [2.374841037397408, 48.88975431440341], [2.374698469489838, 48.88965796395035], [2.374549459428235, 48.88955526642456], [2.374406892616099, 48.88945891470763], [2.374368838392058, 48.88943409423744], [2.37436862428008, 48.889434094018085], [2.374226058123421, 48.88933774297443], [2.3740991603420323, 48.88925233746824], [2.373956595181731, 48.88915598608783], [2.373829698285157, 48.88907058028195], [2.373702801804956, 48.88898517433492], [2.373560238109546, 48.88888882245918], [2.373557613670016, 48.88887877858053], [2.373636072013949, 48.88876650206111], [2.373703256956428, 48.88866523718256], [2.373781716028272, 48.88855296055299], [2.37384890041199, 48.88845169557308], [2.37385457892358, 48.88844762885028], [2.373977013594169, 48.88840427863483], [2.374197770621882, 48.88832204105479], [2.374320204711364, 48.888278690483475], [2.374323724381571, 48.888264632666164], [2.374204756972491, 48.88818055464701], [2.374090615119031, 48.88809861423701], [2.373971648454831, 48.88801453687282], [2.373857507342918, 48.88793259532894], [2.373738542798086, 48.88784851772756], [2.373624402406089, 48.887766576848335], [2.373622160723759, 48.88776439685179], [2.373594171636118, 48.88771901893717], [2.373554068184883, 48.887664143726084], [2.373556669247537, 48.88765390773985], [2.373691548911587, 48.88756420519626], [2.37382216432264, 48.887476832827126], [2.373957041706997, 48.887387129962875], [2.374087656217707, 48.88729975818927], [2.3742225340497223, 48.88721005501868], [2.37435314768151, 48.887122682042104], [2.3744837608749823, 48.88703530891615], [2.374618635976016, 48.88694560527061], [2.374641748393077, 48.88693356442167], [2.374628428994513, 48.88691084806818], [2.374528405095133, 48.88683174802879], [2.374438292683583, 48.886761074192634], [2.374434854926479, 48.88675912987853], [2.374318967637472, 48.88671497546352], [2.374157330100477, 48.88665078137771], [2.37404144465157, 48.88660662669687], [2.373932382855734, 48.88656331247657], [2.373896161070847, 48.88656843448615], [2.373885336406576, 48.886589602846016], [2.373719671931767, 48.88667843418752], [2.3735565683573983, 48.88676530467649], [2.373390904126324, 48.886854135556064], [2.37322779946408, 48.88694100468401], [2.373062132749528, 48.88702983508738], [2.372899026977655, 48.887116704652875], [2.372733360506937, 48.88720553459423], [2.372570253636152, 48.887292403697984], [2.372404584682033, 48.88738123316316], [2.372241478086945, 48.88746810091303], [2.372237169116421, 48.887472136971766], [2.372172851926235, 48.887593780476294], [2.37210142415102, 48.88772252637996], [2.372037106334453, 48.88784416978384], [2.371965677869302, 48.88797291647646], [2.371901359426345, 48.88809455977972], [2.371829930293041, 48.888223305462745], [2.371765611223583, 48.88834494866532], [2.371694182764018, 48.88847369514442], [2.371629863079009, 48.88859533734708], [2.3715584325766272, 48.888724083708695], [2.371494112254451, 48.88884572670996], [2.371422681083692, 48.888974472061996], [2.371378693272517, 48.88905766144079], [2.371400682899334, 48.889081152983195], [2.371423575458811, 48.88908283348529], [2.371553328225216, 48.88919208890487], [2.37167156758517, 48.88928627315923], [2.371801320015142, 48.88939552828269], [2.371919561649249, 48.88948971228185], [2.37203780234748, 48.88958389614907], [2.372167556287539, 48.889693150846036], [2.372171437045883, 48.88972871601049], [2.372173167792339, 48.88972950030098], [2.372216042825402, 48.88972621773751], [2.372370451777965, 48.88981016682379], [2.372518633805849, 48.88989142557431], [2.37267304372534, 48.88997537515706], [2.372821226695701, 48.89005663352084], [2.372975637603797, 48.89014058180154], [2.373123821516431, 48.89022183977864], [2.373278232027828, 48.890305788548595], [2.373426416882845, 48.890387046139054], [2.373580829746489, 48.89047099361401], [2.373729015543994, 48.89055225081776], [2.373877201803905, 48.890633507832085], [2.374031616114401, 48.89071745560618], [2.37404377939473, 48.89072647103451]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 55, "roussel_fabien": 16.0, "nb_emargement": 1031.0, "nb_procuration": 29.0, "nb_vote_blanc": 11.0, "jadot_yannick": 22.0, "le_pen_marine": 82.0, "nb_exprime": 1017.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1566.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "73", "geo_point_2d": [48.88885874201794, 2.3733233674284206], "melenchon_jean_luc": 528.0, "poutou_philippe": 9.0, "macron_emmanuel": 201.0}, "geometry": {"type": "Point", "coordinates": [2.3733233674284206, 48.88885874201794]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "592f89f1fb89d677140be02620182c4ef95c3537", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 149, "zemmour_eric": 153.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "17-65", "geo_shape": {"coordinates": [[[2.288899230640108, 48.875914058553086], [2.288887371375206, 48.875916056590675], [2.288854492628905, 48.8759876979859], [2.288798143123639, 48.876110479483], [2.288743920909376, 48.87622862668373], [2.288687570882792, 48.87635140810193], [2.288633348166885, 48.87646955522678], [2.288576998982249, 48.87659233657425], [2.288522774401418, 48.876710483615085], [2.28846642470774, 48.876833263984366], [2.288412199612961, 48.87695141184857], [2.28835584939795, 48.877074192138984], [2.288301625164892, 48.87719233993539], [2.28824527306515, 48.8773151201388], [2.288191048330419, 48.8774332678593], [2.288134695709325, 48.87755604798385], [2.288080470472916, 48.87767419562845], [2.288092516881814, 48.877685769829725], [2.288275291426709, 48.87769466918939], [2.28845853476728, 48.877703590841485], [2.28864131081284, 48.877712488751], [2.288824554278802, 48.877721409842664], [2.28900733043725, 48.87773030809251], [2.289190574028496, 48.877739228623795], [2.289373350324277, 48.877748125415394], [2.289556594041001, 48.877757045386254], [2.289739370449464, 48.87776594251816], [2.289922614291557, 48.87777486192863], [2.289934072876997, 48.87778747928613], [2.289837662150748, 48.877930724448504], [2.289742816571704, 48.8780716423189], [2.289646404793404, 48.878214887290355], [2.28955155817949, 48.878355804972884], [2.28955661537095, 48.878367004783016], [2.289727598586918, 48.8784399593347], [2.289897036866768, 48.8785122542481], [2.290068021036438, 48.87858520830401], [2.290237460261373, 48.87865750272606], [2.290408445384748, 48.87873045628615], [2.290577885567018, 48.87880274931758], [2.290748873007534, 48.878875702389934], [2.290918314122539, 48.87894799582927], [2.291089301153431, 48.879020948397724], [2.291258743225763, 48.87909324044644], [2.291262262944849, 48.87909541160307], [2.291279352503504, 48.87911050835087], [2.291326432375731, 48.87915209818435], [2.291407101460182, 48.87922335904493], [2.291430454957071, 48.87922484178254], [2.291443864311428, 48.87920837781287], [2.291630395369979, 48.879164476972505], [2.291815833721149, 48.879120791514325], [2.292002364152457, 48.879076890090886], [2.292187801867538, 48.87903320495232], [2.292374333034938, 48.8789893029539], [2.292559770138369, 48.87894561633646], [2.2927462993151773, 48.87890171374694], [2.29293173578252, 48.87885802744915], [2.2931182657076112, 48.878814123385375], [2.293303701551077, 48.878770436507956], [2.293490229473364, 48.87872653275236], [2.293675664705146, 48.878682844396], [2.293862192000063, 48.878638940057435], [2.294047626595763, 48.87859525202074], [2.294054561438459, 48.87858197370508], [2.293999411952966, 48.87852449548658], [2.293951426161731, 48.87847448353327], [2.293935315781029, 48.87845138702009], [2.293927453952225, 48.87845127320085], [2.293817656330307, 48.87837028580039], [2.293672221770796, 48.87826632305858], [2.293562426299089, 48.87818533541848], [2.293416992765409, 48.878081372349186], [2.293285051655746, 48.877987054117526], [2.293139617853906, 48.877883091583755], [2.2930076777609703, 48.877788772130195], [2.292862246429883, 48.87768480924879], [2.29273030734156, 48.87759048947255], [2.292584877117805, 48.87748652623555], [2.292452937670793, 48.87739220612859], [2.2924509474767, 48.8773903633092], [2.292342489647715, 48.87725716308016], [2.292221739894711, 48.877108866578595], [2.292197289032986, 48.87710944148492], [2.292112203784404, 48.8772345501404], [2.292028524748128, 48.877357588664815], [2.291943440052068, 48.87748269718025], [2.291859760218422, 48.877605735559015], [2.291774674711684, 48.87773084392633], [2.291690994080656, 48.87785388215945], [2.291605907763028, 48.87797899037864], [2.291522226334608, 48.878102028466074], [2.291503919579605, 48.878106465385315], [2.291320482971798, 48.87804878147125], [2.291149086422334, 48.87799490801841], [2.290977690239696, 48.877941033418224], [2.290794256160792, 48.87788334869733], [2.290622860712324, 48.877829473583716], [2.290439426055823, 48.877771788305175], [2.290433940540137, 48.87775869107891], [2.290547292185651, 48.877646263685016], [2.2906581770534, 48.877533216302645], [2.290771526360856, 48.87742078866538], [2.290882410261758, 48.87730774105216], [2.290995758606714, 48.87719531228033], [2.291106641528742, 48.877082265335574], [2.29121998889886, 48.87696983632842], [2.291330870866406, 48.876856788253605], [2.291326200471651, 48.87684409968748], [2.291154624269906, 48.87677927292524], [2.290983223417941, 48.87671461692474], [2.290811646718606, 48.87664978875598], [2.290640246718527, 48.876585132256835], [2.290468672235923, 48.876520303596934], [2.2902972730877282, 48.87645564659914], [2.290125699458577, 48.876390817440125], [2.289954299798898, 48.876326159935545], [2.2897827270233, 48.87626133027737], [2.289611329578879, 48.87619667228228], [2.289439757656632, 48.876131842124884], [2.289268359700733, 48.87606718362308], [2.289096788631941, 48.87600235296655], [2.288925392891291, 48.87593769397417], [2.288899230640108, 48.875914058553086]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 65, "roussel_fabien": 3.0, "nb_emargement": 1163.0, "nb_procuration": 76.0, "nb_vote_blanc": 4.0, "jadot_yannick": 57.0, "le_pen_marine": 61.0, "nb_exprime": 1150.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1399.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1163, "quartier_bv": "65", "geo_point_2d": [48.87773146588842, 2.290802395214124], "melenchon_jean_luc": 91.0, "poutou_philippe": 3.0, "macron_emmanuel": 599.0}, "geometry": {"type": "Point", "coordinates": [2.290802395214124, 48.87773146588842]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5a41f65e9a8cef12a230983b288ca47467315dcb", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 87, "zemmour_eric": 117.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-3", "geo_shape": {"coordinates": [[[2.34191282416967, 48.885624695117606], [2.341911654963352, 48.88562527595274], [2.34172437016848, 48.885672907287635], [2.341537129100285, 48.885720288556605], [2.341349843632605, 48.88576791840232], [2.3411626032455333, 48.88581529908896], [2.340975315718578, 48.8858629292365], [2.340788074660492, 48.885910308434134], [2.340600787812893, 48.88595793799921], [2.340413544697507, 48.886005317498814], [2.340226257176931, 48.886052945574704], [2.340039014742791, 48.886100324491984], [2.33985172653796, 48.886147951977925], [2.339664482057806, 48.88619533029793], [2.339477193157319, 48.88624295809314], [2.339289949358422, 48.88629033583091], [2.339102658421557, 48.88633796212937], [2.338915413940188, 48.886385339277304], [2.338861363274015, 48.88640992884254], [2.338869997310158, 48.88642805211369], [2.338908487199186, 48.886477107146355], [2.339017822361744, 48.88661446169534], [2.339096143445252, 48.88671427966372], [2.339097818897497, 48.88671593558115], [2.339186074797865, 48.88679578298477], [2.339350941489407, 48.886925034033546], [2.339439198143708, 48.88700488033613], [2.339437758617262, 48.88702977567517], [2.339450412145535, 48.88704045934657], [2.339579782902193, 48.88703719166145], [2.339678281543358, 48.88703274004304], [2.339692840392146, 48.88704136934004], [2.33969998368198, 48.887164824346534], [2.33970584348752, 48.88728238346513], [2.339712986829842, 48.88740583934302], [2.339718845328292, 48.88752339842766], [2.339725990098175, 48.88764685428523], [2.339731848653098, 48.887764413343405], [2.339738992134603, 48.88788786826634], [2.339744852098174, 48.88800542820489], [2.339750712088204, 48.88812298813053], [2.339757855663726, 48.88824644301201], [2.339758094222178, 48.888247849075526], [2.339794055073283, 48.88837091065056], [2.339830233325363, 48.888489100848396], [2.339866194513569, 48.88861216237469], [2.339902373108408, 48.88873035162556], [2.339938553219789, 48.88884854175953], [2.33997451491223, 48.888971603212966], [2.340010693991275, 48.88908979329165], [2.340046656032225, 48.88921285379716], [2.340082835442744, 48.8893310438281], [2.340118797809412, 48.88945410518413], [2.340154977551204, 48.88957229516731], [2.340190940266389, 48.88969535557538], [2.340200001914335, 48.88970349044204], [2.34025041067811, 48.88970155225664], [2.340452064395101, 48.88971127239714], [2.3406627296316342, 48.889718665800984], [2.340864383491766, 48.88972838524695], [2.341075047492345, 48.88973577791783], [2.341276701495708, 48.889745496669306], [2.34148736698778, 48.889752888622176], [2.341699495691032, 48.88975878637531], [2.341910161285522, 48.889766178483534], [2.342122291454426, 48.88977207549513], [2.34233295581033, 48.889779465952664], [2.342545086069889, 48.889785363114456], [2.342755750539555, 48.889792752828114], [2.342761026611462, 48.889792250286476], [2.3427803236732743, 48.889783772145535], [2.342778989412685, 48.889760470505294], [2.3426992584255872, 48.88964890865642], [2.342594756029334, 48.889510541252804], [2.342515027172022, 48.889398980162596], [2.342410525766821, 48.88926061256671], [2.342330796334552, 48.8891490504217], [2.342244039222734, 48.88902348937337], [2.342164310510241, 48.88891192709338], [2.342077552831255, 48.88878636588982], [2.341997826202233, 48.88867480348243], [2.341911069319778, 48.8885492421311], [2.341831343399141, 48.88843768048798], [2.341844270267364, 48.88842486239939], [2.342055453508889, 48.88843090364987], [2.342244230506942, 48.88843637448094], [2.342455413841454, 48.888442415025985], [2.342644190923257, 48.88844788522646], [2.342832966681028, 48.888453355121776], [2.343044150152797, 48.88845939462842], [2.343052623294406, 48.888461659754235], [2.343209945438002, 48.88855393209795], [2.343386354365202, 48.88865689125989], [2.343543677701377, 48.888749162249475], [2.343720089313579, 48.888852120908915], [2.343742066568688, 48.8888482258729], [2.343805503969322, 48.888722479975904], [2.343868470600164, 48.88859781334195], [2.343931907390474, 48.88847206734932], [2.343994873427309, 48.88834739972121], [2.344058309595872, 48.88822165453218], [2.344121275027278, 48.88809698680916], [2.344184710596861, 48.88797124062527], [2.344247675411518, 48.88784657370661], [2.344311109007229, 48.88772082741959], [2.344374074580047, 48.88759616041355], [2.3443925324161112, 48.88759077918417], [2.344580072651079, 48.88764552537722], [2.344760815805338, 48.887697498324606], [2.34494835816422, 48.88775224484225], [2.345129102067798, 48.88780421632937], [2.3451587243353282, 48.887804302793896], [2.3451699434969813, 48.88779739437124], [2.345169918630146, 48.887649937967346], [2.345161589046998, 48.887547989717824], [2.345155630073249, 48.887540461240576], [2.345123656664745, 48.88753529420969], [2.345040211611986, 48.88752990588507], [2.34492612817693, 48.887521419877885], [2.344914019880473, 48.88751239364142], [2.344916000192265, 48.88738175838212], [2.3449179766965242, 48.88725088296619], [2.344919956988444, 48.88712024767574], [2.344921933472832, 48.88698937222861], [2.34492391374488, 48.88685873690699], [2.344925890209399, 48.88672786142863], [2.344927870461474, 48.88659722607588], [2.344929846906121, 48.88646635056628], [2.344920935922425, 48.88645782475204], [2.344722251827542, 48.88640942753239], [2.344526224764498, 48.88636047614966], [2.344327541407893, 48.8863120782708], [2.34413151508226, 48.88626312623751], [2.344122829120724, 48.88625591191456], [2.344099215121273, 48.88613985290603], [2.344074924473412, 48.8860207909143], [2.344051310698676, 48.885904730972214], [2.344027020269919, 48.88578566894532], [2.344023331766989, 48.88578261440389], [2.343972632960235, 48.885791543951036], [2.3437686764409422, 48.8857755855587], [2.3435680836837403, 48.885759890776505], [2.343364127412404, 48.885743931694556], [2.34316353491041, 48.88572823533492], [2.342959578875694, 48.88571227646268], [2.342758986617584, 48.88569657942487], [2.342558394469051, 48.88568088295005], [2.342354438816618, 48.88566492214706], [2.342153846911976, 48.88564922499403], [2.341949891507431, 48.885633263501454], [2.34191282416967, 48.885624695117606]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 3, "roussel_fabien": 26.0, "nb_emargement": 1236.0, "nb_procuration": 85.0, "nb_vote_blanc": 16.0, "jadot_yannick": 105.0, "le_pen_marine": 53.0, "nb_exprime": 1217.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1550.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1236, "quartier_bv": "70", "geo_point_2d": [48.887484596777554, 2.341950673098476], "melenchon_jean_luc": 283.0, "poutou_philippe": 7.0, "macron_emmanuel": 471.0}, "geometry": {"type": "Point", "coordinates": [2.341950673098476, 48.887484596777554]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fc21a50c34245c5d8eb39da83affb85248e3e6f8", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 92, "zemmour_eric": 79.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "5-10", "geo_shape": {"coordinates": [[[2.340847155617261, 48.839015397117414], [2.340815397428186, 48.83902565566242], [2.340630700637929, 48.839064959010386], [2.340441922785326, 48.83910578288406], [2.340257224067118, 48.83914508564507], [2.340068445631799, 48.83918590892643], [2.33988374634815, 48.83922521110792], [2.339694967330021, 48.83926603379698], [2.339510268843243, 48.83930533540653], [2.339321489242412, 48.83934615750326], [2.339136788827694, 48.83938545852582], [2.338948008644166, 48.8394262800302], [2.338763309026334, 48.83946558048081], [2.338574526897702, 48.83950640138534], [2.338566507145921, 48.839518868124905], [2.338654991033766, 48.839639460517084], [2.338741791528154, 48.83975702704918], [2.338830276225851, 48.839877619285964], [2.338917077512227, 48.83999518566578], [2.339005563019786, 48.840115777747194], [2.33909236646049, 48.84023334398229], [2.339180852777923, 48.840353935908325], [2.339267655648306, 48.84047150198363], [2.339356142775622, 48.840592093754296], [2.339442946438023, 48.84070965967731], [2.339531434375231, 48.84083025129261], [2.339618238829658, 48.840947817063366], [2.33970672757677, 48.841068408523256], [2.339793534185591, 48.84118597414927], [2.33979490782738, 48.8411897221885], [2.339799216232984, 48.841322880726274], [2.339802981230803, 48.841456236807176], [2.339807289679062, 48.84158939531292], [2.339811054716791, 48.84172275136176], [2.339815364570082, 48.8418559098429], [2.339819128285347, 48.84198926585211], [2.339823438181303, 48.842122424301145], [2.33982720193647, 48.842255780278265], [2.339831511875093, 48.84238893869521], [2.339835277032555, 48.84252229464776], [2.339839585651454, 48.842655453025124], [2.339843350848828, 48.842788808945556], [2.339847659510385, 48.84292196729084], [2.339851424747672, 48.84305532317918], [2.33985573345179, 48.84318848149232], [2.33985949872909, 48.84332183734854], [2.339863807475869, 48.84345499562959], [2.339867572793083, 48.843588351453704], [2.33988399699267, 48.8436179744602], [2.339932125298104, 48.843606881967354], [2.340087186182096, 48.84357412823523], [2.340278379970484, 48.84353320139993], [2.340484380769017, 48.84348968658149], [2.340675572573209, 48.84344875910081], [2.340881572694977, 48.84340524449443], [2.341072765239905, 48.84336431638335], [2.341263956122136, 48.843323387957746], [2.341469955268475, 48.84327987143399], [2.341496817239573, 48.84327059847222], [2.341493020978678, 48.843246018671366], [2.341427359794597, 48.84311842702923], [2.341362159419675, 48.842996231352814], [2.341361394577124, 48.84299357042301], [2.341355170079265, 48.84288048799362], [2.3413502656004033, 48.84273508700213], [2.3413440411575612, 48.842622004545994], [2.341339138096561, 48.842476603527864], [2.341332912346345, 48.84236352103745], [2.341328009352073, 48.84221811908587], [2.341321785019259, 48.84210503657619], [2.341328321598333, 48.842097025958246], [2.3414954250442053, 48.84202995760677], [2.341656053555192, 48.84196696168144], [2.341823156162331, 48.84189989286434], [2.341983783887705, 48.841836895592316], [2.342150885644758, 48.84176982720894], [2.34231151257316, 48.84170682948951], [2.342472137750793, 48.84164383154336], [2.342639238271792, 48.841576761566934], [2.342799864014924, 48.84151376318092], [2.342966963685851, 48.841446693638204], [2.343127588632011, 48.84138369480477], [2.343294687475545, 48.84131662389721], [2.34333532553803, 48.841300685403574], [2.34334178635821, 48.841295086351465], [2.343317416491042, 48.84126250530721], [2.3432804376543652, 48.84121912202145], [2.343207144664273, 48.841152607351255], [2.343214170763249, 48.841133830322796], [2.343182832867123, 48.841111754238526], [2.343133858342368, 48.84106730764023], [2.343016543291453, 48.8409623640824], [2.342894275519158, 48.84085140252273], [2.342776962787703, 48.840746459616454], [2.342654696031929, 48.840635497790466], [2.342537384280144, 48.84053055372964], [2.342415118529539, 48.840419592536634], [2.34229780638364, 48.840314648213116], [2.342175543023316, 48.84020368586197], [2.342058231834385, 48.840098742182526], [2.341935969490546, 48.83998777956509], [2.341818659281274, 48.83988283473109], [2.341696397953911, 48.83977187184736], [2.341579088701478, 48.83966692765744], [2.34145682839068, 48.83955596450741], [2.341339520117895, 48.839451019163], [2.341217260823452, 48.83934005574664], [2.341099953507678, 48.83923511104633], [2.340977693867376, 48.839124147356195], [2.340860388893542, 48.839019201508854], [2.340847155617261, 48.839015397117414]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 10, "roussel_fabien": 23.0, "nb_emargement": 1263.0, "nb_procuration": 75.0, "nb_vote_blanc": 13.0, "jadot_yannick": 109.0, "le_pen_marine": 45.0, "nb_exprime": 1248.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 7, "nb_inscrit": 1545.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1263, "quartier_bv": "19", "geo_point_2d": [48.841060671537896, 2.3408041645098887], "melenchon_jean_luc": 295.0, "poutou_philippe": 10.0, "macron_emmanuel": 518.0}, "geometry": {"type": "Point", "coordinates": [2.3408041645098887, 48.841060671537896]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2a46da04daeb394f3e65e1cfa0bc0f0c5e6642a7", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 125, "zemmour_eric": 118.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-7", "geo_shape": {"coordinates": [[[2.292435597735612, 48.84390662958516], [2.292482649636467, 48.843944693883095], [2.292596386053586, 48.84406610383011], [2.292705666887284, 48.84418362452873], [2.292814948213922, 48.84430114511518], [2.292928686183034, 48.844422554707485], [2.293037968513562, 48.84454007506503], [2.293151707523641, 48.84466148441929], [2.293146615707068, 48.84467411921446], [2.292983912388664, 48.844732381054506], [2.292823274363707, 48.8447900469091], [2.2926605703218232, 48.84484830830338], [2.29249993158178, 48.84490597371782], [2.292337226816623, 48.84496423466631], [2.292176588724046, 48.84502189964865], [2.292013881872961, 48.84508016014322], [2.291853243065201, 48.84513782468541], [2.291690535490738, 48.845196084734226], [2.291529895967999, 48.84525374883624], [2.291522795948731, 48.84526121380013], [2.291514442163659, 48.84537483612474], [2.291508636456742, 48.84547873878891], [2.291502832089341, 48.8455826414512], [2.291494478209222, 48.84569626374168], [2.291508814773688, 48.84570568046585], [2.291667810545203, 48.84570008176039], [2.2919043529515672, 48.84569122207434], [2.292063348636377, 48.84568562284312], [2.292299892272437, 48.845676762383], [2.292458887870737, 48.84567116262609], [2.292473278203299, 48.84567984297131], [2.29247938089863, 48.84580123768287], [2.29248522351648, 48.845921717087194], [2.292491326280269, 48.84604311087254], [2.292497167590271, 48.84616359024205], [2.292503270397996, 48.84628498489974], [2.292509113125308, 48.846405464250594], [2.29251521600139, 48.84652685798202], [2.2925210574208412, 48.846647337298094], [2.292527160340862, 48.84676873190185], [2.292533003177636, 48.84688921119924], [2.292533738625501, 48.84689185068725], [2.292544174544361, 48.846903460243055], [2.292569620588939, 48.846899902629346], [2.292749822619992, 48.846904593384274], [2.292918700100264, 48.84690943278565], [2.293087577624097, 48.84691427104935], [2.293267778388949, 48.84691896101607], [2.293268370829692, 48.84691898520114], [2.293455080564067, 48.84692904746767], [2.293642234492713, 48.846939318918736], [2.293828944359933, 48.84694938150093], [2.294016098435286, 48.84695965236693], [2.294202808459718, 48.84696971346621], [2.294389962681766, 48.84697998374722], [2.294576672839039, 48.84699004516215], [2.294763825845174, 48.84700031485012], [2.294950536159732, 48.84701037478212], [2.295137690675046, 48.84702064389313], [2.295324401122441, 48.847030704140785], [2.295511555784429, 48.847040972666704], [2.2956982663889782, 48.847051031431484], [2.295885421197628, 48.84706129937241], [2.295901088678873, 48.84706871600352], [2.295918794989676, 48.847063809848905], [2.295933167952685, 48.84705982660904], [2.295935408216175, 48.84704479792369], [2.295979141426479, 48.84690667727298], [2.296023438476115, 48.84676866333523], [2.296067172571732, 48.84663054352541], [2.296111469153531, 48.846492529520866], [2.296155201433779, 48.84635440873736], [2.296199498910333, 48.846216394674045], [2.296243230713316, 48.846078274723396], [2.29628752772204, 48.84594026059329], [2.296286084709479, 48.84593400061751], [2.296244720949217, 48.84588527701838], [2.296186291346123, 48.84581687741952], [2.296189615512568, 48.845812490984706], [2.296164816473196, 48.8457889849745], [2.296121727846815, 48.84573854418186], [2.296036568474309, 48.845640305470944], [2.295935051152722, 48.84552146488571], [2.295849892486813, 48.84542322602276], [2.295748377364156, 48.84530438616331], [2.295663218054431, 48.845206146241026], [2.295644685238939, 48.84520278412247], [2.295501476870538, 48.845256223012484], [2.295357772490778, 48.84530994300834], [2.295214563533726, 48.845363381549774], [2.295070858562749, 48.84541710119583], [2.294927649004882, 48.84547054028797], [2.294783943454752, 48.84552425868496], [2.294765447979545, 48.845520952412286], [2.294663612537969, 48.84540530788602], [2.294562774839378, 48.84529108474371], [2.294460940308862, 48.845175439121796], [2.294360103487048, 48.845061216684435], [2.294258269855511, 48.84494557086616], [2.294157433934815, 48.844831347335116], [2.294055601189862, 48.844715702219816], [2.293954766158099, 48.844601478494404], [2.293852934324184, 48.84448583228347], [2.293752100169156, 48.84437160926299], [2.2936502692341882, 48.844255962855684], [2.293549435980257, 48.84414173874155], [2.293447605931833, 48.84402609303719], [2.293346773566803, 48.843911868728725], [2.293245940281232, 48.84379764431551], [2.293144112941059, 48.843681998325174], [2.293113894319446, 48.843639718582914], [2.293099971028516, 48.84364194588588], [2.292993147263772, 48.84368362445207], [2.292840065655854, 48.84374418331831], [2.292666318397216, 48.843811972128364], [2.292513236020345, 48.84387253146875], [2.292445277105986, 48.843899045809735], [2.292435597735612, 48.84390662958516]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 7, "roussel_fabien": 4.0, "nb_emargement": 1238.0, "nb_procuration": 104.0, "nb_vote_blanc": 12.0, "jadot_yannick": 96.0, "le_pen_marine": 66.0, "nb_exprime": 1224.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1603.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1238, "quartier_bv": "59", "geo_point_2d": [48.845768545917565, 2.2939409108431503], "melenchon_jean_luc": 213.0, "poutou_philippe": 5.0, "macron_emmanuel": 552.0}, "geometry": {"type": "Point", "coordinates": [2.2939409108431503, 48.845768545917565]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e960962fdd0d6ff3ec38c68cceb52db22d16f8a3", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 47, "zemmour_eric": 70.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-30", "geo_shape": {"coordinates": [[[2.389464996236693, 48.87957798815359], [2.38946597519347, 48.87958194749612], [2.389352948601958, 48.879681233429366], [2.389232218694124, 48.87978670600354], [2.389119191212603, 48.87988599169762], [2.388998460356703, 48.87999146401645], [2.388885431985165, 48.880090749471385], [2.388764700181189, 48.88019622153488], [2.388651670919625, 48.880295506750656], [2.388530938167567, 48.88040097855878], [2.388417908015968, 48.88050026353544], [2.388297174315816, 48.880605735088245], [2.388184143274175, 48.88070501982569], [2.388063408625817, 48.880810491123164], [2.387950376694227, 48.88090977562149], [2.387829641097759, 48.88101524666353], [2.387716608276109, 48.88111453092268], [2.387595871731521, 48.88122000170937], [2.387482838009225, 48.881319286628596], [2.387458005816042, 48.88134097907228], [2.387454228794254, 48.88134607332557], [2.387491846471418, 48.88137429693613], [2.387686182820392, 48.881450750017265], [2.387875288997483, 48.88152546731104], [2.388069627837094, 48.88160191976626], [2.388258735113137, 48.88167663644417], [2.388447842921344, 48.88175135371758], [2.388642183454967, 48.881827804328445], [2.38864580031834, 48.88182879586985], [2.388818560854427, 48.8818579941515], [2.388987651717552, 48.88188641711953], [2.389156741391273, 48.88191484074035], [2.38932950249926, 48.881944038282434], [2.389498593910074, 48.88197246142588], [2.389671355400868, 48.882001658473136], [2.389840447185444, 48.882030081132314], [2.390013209058936, 48.88205927768477], [2.390023424735569, 48.88206734093796], [2.390040087106275, 48.88221944805785], [2.390056665658911, 48.88236719389136], [2.390073328233179, 48.8825193000659], [2.390089906964945, 48.88266704675384], [2.390090641418031, 48.88268083087552], [2.390100727872852, 48.882685385185916], [2.390274219110226, 48.88273564097838], [2.39044401718481, 48.882785851632036], [2.390617507735028, 48.88283610601623], [2.390787306468163, 48.88288631617846], [2.390957104175681, 48.8829365251914], [2.391130597076126, 48.88298677973143], [2.391137779375436, 48.88298746826854], [2.391334311245455, 48.88297119600721], [2.391534114733624, 48.88295430332772], [2.391730647728801, 48.882938029522954], [2.391930450961155, 48.882921136181515], [2.392126982333151, 48.882904862618055], [2.392326785309783, 48.88288796861473], [2.392523317806801, 48.88287169350781], [2.392723120517112, 48.882854799741835], [2.392746506736254, 48.88286144297142], [2.392761286252482, 48.88285460211506], [2.3927683647781492, 48.88285132669784], [2.3927702927900922, 48.88283403074352], [2.392751716065427, 48.88271898195089], [2.392734553405352, 48.8826066293011], [2.39271739081933, 48.88249427663743], [2.392698815685685, 48.88237922870728], [2.392681653251706, 48.88226687601523], [2.392663076925171, 48.88215182714957], [2.392660477392298, 48.88214742884549], [2.392598568536259, 48.88209227383027], [2.392533757233501, 48.88203649071194], [2.392531428347822, 48.882028647557355], [2.392571966621384, 48.88193090844956], [2.392607723548037, 48.88184653694098], [2.392616127074165, 48.881840479439596], [2.392748527802937, 48.88180803605023], [2.3928968673829383, 48.8817721938437], [2.39290194243931, 48.881757473313726], [2.392786195743264, 48.88167913859771], [2.392672981877434, 48.88160264764112], [2.392557237233309, 48.88152431269968], [2.39244402402985, 48.88144782241509], [2.392328280074214, 48.88136948724129], [2.392215067543506, 48.881292996729414], [2.392214455003668, 48.88129255474795], [2.392102449413442, 48.88120614796914], [2.391996504996755, 48.88112431795975], [2.3919957747402423, 48.88112379803709], [2.391889447367034, 48.88105377325354], [2.391782700792767, 48.8809834728443], [2.391676372639551, 48.88091344695634], [2.391569626640535, 48.88084314634817], [2.391566287026963, 48.88083955005094], [2.39154104763525, 48.88078807285311], [2.391514225967763, 48.880735129794616], [2.391510540559168, 48.88073137075818], [2.391459785799869, 48.8806988502889], [2.391328216918258, 48.88061875819113], [2.391154542453841, 48.88051482916334], [2.391022974506552, 48.880434736716694], [2.390849301264942, 48.880330807228724], [2.390717734251967, 48.88025071443328], [2.390715892900985, 48.88024936416342], [2.390625419352327, 48.88016974029405], [2.390534914568237, 48.88008814845919], [2.390444442939715, 48.88000852444828], [2.390353938729943, 48.87992693156538], [2.390340126318469, 48.879901870679824], [2.390329916254446, 48.879901163973734], [2.390183332071743, 48.87981033432873], [2.390051436915058, 48.87972411375049], [2.389904853726986, 48.87963328285062], [2.389772959479616, 48.87954706195174], [2.389763195799823, 48.87954445629027], [2.389669626222259, 48.87954552884427], [2.389507515037042, 48.87954682109557], [2.389464996236693, 48.87957798815359]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 30, "roussel_fabien": 29.0, "nb_emargement": 1292.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 130.0, "le_pen_marine": 41.0, "nb_exprime": 1278.0, "nb_vote_nul": 1.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1624.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "75", "geo_point_2d": [48.881398468050115, 2.390365028845136], "melenchon_jean_luc": 496.0, "poutou_philippe": 7.0, "macron_emmanuel": 402.0}, "geometry": {"type": "Point", "coordinates": [2.390365028845136, 48.881398468050115]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d199f78ccc5dce62a89b430925b8b5ec3f728ea0", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 163, "zemmour_eric": 177.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-60", "geo_shape": {"coordinates": [[[2.284244804005828, 48.87821885252893], [2.284236255641399, 48.87822504284018], [2.284288852936107, 48.87834708210572], [2.284345751593139, 48.87847910004336], [2.284398349400994, 48.87860113923266], [2.284455248613137, 48.8787331570878], [2.284507846934147, 48.87885519620088], [2.284564746701409, 48.87898721397351], [2.284617345535581, 48.87910925301034], [2.284674245857971, 48.87924127070051], [2.284726845205312, 48.87936330966108], [2.284783746082836, 48.87949532726874], [2.284836345943355, 48.87961736615306], [2.284893247376022, 48.87974938367823], [2.284945847749724, 48.87987142248629], [2.285002748374077, 48.88000343992083], [2.285055350624435, 48.88012547866075], [2.2851122517915963, 48.88025749691209], [2.285164853204131, 48.88037953466833], [2.285221756289828, 48.88051155284528], [2.285274358215565, 48.88063359052524], [2.285326960375387, 48.88075562906784], [2.285383864295389, 48.880887646223414], [2.28537944019408, 48.88089703498476], [2.285219577233971, 48.880984256227165], [2.285057412506923, 48.88107273247245], [2.284897547092316, 48.881159954162044], [2.284735381271081, 48.88124842995703], [2.284734358088012, 48.881261670189716], [2.284881829538546, 48.8813604080943], [2.285026243833545, 48.88145709954158], [2.285173715027474, 48.88155583706096], [2.285318130418568, 48.881652527239744], [2.285465604070466, 48.881751265289445], [2.28561001918201, 48.88184795509082], [2.285754436180886, 48.88194464561694], [2.28590191149955, 48.882043382203726], [2.286046328231215, 48.88214007145315], [2.286193804644274, 48.88223880856215], [2.286194018179136, 48.882238948333175], [2.286218496360391, 48.88224850043663], [2.286232934386753, 48.88223874327336], [2.286411415269892, 48.882221495815884], [2.286561300072103, 48.88220701132626], [2.286574164373365, 48.88221049557206], [2.286685932829906, 48.8823082512401], [2.28680037777879, 48.882408348421045], [2.286912147072379, 48.88250610475957], [2.2870265942544012, 48.88260620171444], [2.287047844505031, 48.88260663133736], [2.287189887147883, 48.882497072774214], [2.287327022936341, 48.88239129801344], [2.287469065767967, 48.88228173910576], [2.287606200422353, 48.882175964004475], [2.287743333156254, 48.88207018872783], [2.287885374236241, 48.88196062929428], [2.288022507199504, 48.88185485368531], [2.288164545741453, 48.88174529389103], [2.288163354340594, 48.881732795915696], [2.288024592177176, 48.88164958791774], [2.287887053110432, 48.88156711368952], [2.287748291817734, 48.88148390625807], [2.287610753626016, 48.88140143170005], [2.2874719932285252, 48.88131822303656], [2.287334455911933, 48.881235748148676], [2.287195696397346, 48.881152539152446], [2.287058159955873, 48.88107006393478], [2.286919399948383, 48.88098685549693], [2.286781865745616, 48.88090437995758], [2.286777526384546, 48.880898937394484], [2.286745117477409, 48.880741688443315], [2.286710056962777, 48.88057157212004], [2.286722776799228, 48.880561382859554], [2.286873957105077, 48.88055559600822], [2.287003754983605, 48.88055062682747], [2.28701482737269, 48.880553698357446], [2.287141578541791, 48.88064967506679], [2.287268143964861, 48.88074550842963], [2.287394897431013, 48.880841484862195], [2.287521462422985, 48.880937317932435], [2.287648216822816, 48.8810332940801], [2.287774782746975, 48.881129126865844], [2.287901538080595, 48.88122510272859], [2.28802810630045, 48.8813209352379], [2.288154861204263, 48.88141691080762], [2.288281430356531, 48.88151274303248], [2.288408187557446, 48.88160871832534], [2.288534756278627, 48.88170455025759], [2.288661514413251, 48.88180052526555], [2.288788085430166, 48.88189635692136], [2.288795766259488, 48.88189927772898], [2.288961799817752, 48.881920555664735], [2.2891207456357883, 48.8819409243234], [2.289279690214539, 48.8819612927626], [2.289445725544121, 48.881982569134834], [2.2896046703770763, 48.88200293714188], [2.289770705959933, 48.8820242139619], [2.289782758013473, 48.882021177350346], [2.289786658523797, 48.882007935274], [2.2897814116154462, 48.88187183630951], [2.289776240998311, 48.88173774420082], [2.2897709927932652, 48.88160164429511], [2.289765823581023, 48.881467553060425], [2.289760653044163, 48.88133346090182], [2.289755406284093, 48.88119736095352], [2.2897502358008808, 48.88106326876156], [2.2897449877195, 48.880927169670585], [2.289740111134677, 48.88092050272934], [2.289580114459081, 48.88083214050005], [2.289420846433246, 48.88074418077802], [2.289260849477552, 48.88065581809978], [2.289101582530166, 48.88056785793896], [2.288941588021334, 48.880479494828045], [2.28878232216467, 48.880391533329124], [2.288622328739213, 48.880303169777406], [2.288463063948706, 48.88021520873898], [2.288303070243146, 48.880126844738356], [2.288143806531173, 48.88003888326114], [2.287983815272344, 48.879950518827805], [2.28782455265099, 48.879862556012554], [2.287665290555422, 48.87977459387766], [2.287505300920389, 48.87968622878365], [2.287346039903236, 48.87959826621], [2.287186049988198, 48.87950990066712], [2.287026790061666, 48.87942193675541], [2.286866802593325, 48.87933357077986], [2.286862712826218, 48.87933201574238], [2.286657057542516, 48.879282638978616], [2.286451307492521, 48.87923324060739], [2.286245652976479, 48.87918386403178], [2.286039905082692, 48.8791344640579], [2.285834251346736, 48.879085086771134], [2.285628502869958, 48.8790356860777], [2.285623989744308, 48.87903388564922], [2.285490676622985, 48.87895385105039], [2.285345190328695, 48.87886626741565], [2.285211879428298, 48.87878623250238], [2.285066392707553, 48.878698648507374], [2.284933082664638, 48.87861861327144], [2.284787598244501, 48.87853102893249], [2.284654287707989, 48.87845099246653], [2.284508804212467, 48.87836340867468], [2.284375495896857, 48.87828337189426], [2.284263706334004, 48.87821607236518], [2.284244804005828, 48.87821885252893]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 60, "roussel_fabien": 10.0, "nb_emargement": 1157.0, "nb_procuration": 64.0, "nb_vote_blanc": 12.0, "jadot_yannick": 49.0, "le_pen_marine": 48.0, "nb_exprime": 1145.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1488.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1161, "quartier_bv": "65", "geo_point_2d": [48.88069059130766, 2.2868889417172764], "melenchon_jean_luc": 127.0, "poutou_philippe": 0.0, "macron_emmanuel": 533.0}, "geometry": {"type": "Point", "coordinates": [2.2868889417172764, 48.88069059130766]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2b2ff4a230e393b4718b1613b768fa76658063f5", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 90, "zemmour_eric": 78.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "11-48", "geo_shape": {"coordinates": [[[2.399132261258475, 48.84809850675559], [2.39907033660971, 48.84810258728481], [2.398884477747603, 48.84811911367468], [2.398692881478394, 48.84813578451597], [2.398507023740844, 48.84815231032584], [2.398315427218461, 48.84816898146151], [2.398129567890562, 48.848185505778346], [2.397937971125389, 48.84820217630907], [2.39775211292207, 48.84821870004594], [2.397560515914117, 48.84823536997171], [2.397491680275567, 48.84824148969468], [2.397477910342506, 48.848252196407294], [2.397512453287455, 48.84828428303277], [2.397504264586692, 48.8483757636334], [2.397487418989958, 48.848541459360845], [2.3974792302153363, 48.84863293903931], [2.397478186219542, 48.84863589895035], [2.39739888465928, 48.84876019312342], [2.3973205045065242, 48.848880076947836], [2.39731916396898, 48.84888169352793], [2.397188044107978, 48.84900715467571], [2.397056879319432, 48.84913397076764], [2.397054069724754, 48.849135942380535], [2.396934962661613, 48.84919756113162], [2.396824470455147, 48.849253416070546], [2.396822048179448, 48.84925441832913], [2.39668579895719, 48.849300009373636], [2.396544217547607, 48.84934568039136], [2.396542697348485, 48.84934609811786], [2.396368179435802, 48.849386027709684], [2.39617753703118, 48.84942880666246], [2.396168374665699, 48.8494382737776], [2.396188515825962, 48.84956306621386], [2.39620850293433, 48.84968528480652], [2.396228645648749, 48.84981007721518], [2.396248631593699, 48.849932294867855], [2.3962687744997933, 48.85005708724208], [2.396288760623175, 48.85017930576019], [2.396308903720743, 48.85030409810001], [2.396328891395684, 48.850426316591154], [2.396348877812089, 48.850548534159394], [2.396369021196448, 48.850673326447655], [2.39638900779119, 48.85079554488134], [2.396409151367133, 48.85092033713515], [2.396418620170814, 48.850927964638764], [2.396624530998103, 48.85097062700018], [2.396834242205251, 48.851012764953765], [2.396842669938567, 48.851025100676594], [2.396809089316728, 48.85107293158521], [2.396756571310889, 48.85114890664537], [2.396749394611617, 48.851150814859935], [2.396741640609383, 48.85116727526888], [2.3967050000811643, 48.85130270553587], [2.396668410917628, 48.85143615476416], [2.396631821577201, 48.85156960306597], [2.396595180480574, 48.851705033250354], [2.396558590753299, 48.851838482396786], [2.3965219479146382, 48.851973912519156], [2.3964853578110192, 48.85210736161091], [2.3964487159556063, 48.85224279168498], [2.396412125486159, 48.85237623982281], [2.396375483251349, 48.8525116698417], [2.396338892395031, 48.85264511882416], [2.396302249780915, 48.85278054878788], [2.396310252833493, 48.85279038309073], [2.396505689773682, 48.85284619516496], [2.396695589884742, 48.852900365563755], [2.39689102765005, 48.85295617700311], [2.397080928562503, 48.85301034678499], [2.397133069726132, 48.85302372292888], [2.397144435693963, 48.8530067644928], [2.397162546575666, 48.852983539191335], [2.397163743050979, 48.8529830757587], [2.397179617425675, 48.852966690435075], [2.397253121724689, 48.85287243201465], [2.3973430098214132, 48.85275659431503], [2.397434624158734, 48.852639111325956], [2.397524510086737, 48.85252327345884], [2.397616124967403, 48.852405790313], [2.397706010089564, 48.85228995228524], [2.39779762415082, 48.85217246897579], [2.397887508466946, 48.85205663078736], [2.397979120346053, 48.85193914730746], [2.398069005219003, 48.85182330896525], [2.398160616278724, 48.851705825321716], [2.398250500345755, 48.85158998681888], [2.398342110586101, 48.85147250301176], [2.398431993847222, 48.85135666434831], [2.398457127861982, 48.85134862640257], [2.398441013192695, 48.851339629216], [2.398448054159088, 48.85131842823405], [2.398483058539179, 48.85121301677599], [2.398523355685647, 48.85109262262901], [2.398565400632765, 48.85096601013196], [2.398605696035162, 48.850845615923674], [2.398647741945641, 48.850719003376426], [2.398688036966901, 48.850598609113675], [2.398728331801868, 48.850478214824385], [2.398770377117946, 48.850351602192205], [2.398810671571785, 48.85023120784845], [2.398852716488512, 48.85010459515924], [2.398893010571398, 48.84998419986174], [2.398935055078405, 48.84985758801478], [2.3990042218457512, 48.849801894119615], [2.398955160100403, 48.84977236744811], [2.398997204295874, 48.84964575465593], [2.399044198025691, 48.84950210237849], [2.399086241786784, 48.84937548952427], [2.399133235037811, 48.84923183627773], [2.399175278364531, 48.849105223361484], [2.399222271116037, 48.84896157094436], [2.399219249039969, 48.84883671026138], [2.399257129851449, 48.848829747015515], [2.399229137846243, 48.84881689230486], [2.399207017066581, 48.84870221441174], [2.399203993669074, 48.84857735459175], [2.39918187304632, 48.84846267666927], [2.399178849723055, 48.848337816821825], [2.399156729257308, 48.84822313887001], [2.399137831431774, 48.84813223801388], [2.399132261258475, 48.84809850675559]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 48, "roussel_fabien": 27.0, "nb_emargement": 1443.0, "nb_procuration": 71.0, "nb_vote_blanc": 18.0, "jadot_yannick": 125.0, "le_pen_marine": 59.0, "nb_exprime": 1421.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1753.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1443, "quartier_bv": "44", "geo_point_2d": [48.850318569865706, 2.397651314348346], "melenchon_jean_luc": 388.0, "poutou_philippe": 8.0, "macron_emmanuel": 564.0}, "geometry": {"type": "Point", "coordinates": [2.397651314348346, 48.850318569865706]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "23cdf301a62a6636b93fc86be5e4b739ff9bd0b7", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 71, "zemmour_eric": 83.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "9-18", "geo_shape": {"coordinates": [[[2.339549883987007, 48.87790521391717], [2.33955098652372, 48.877928372480866], [2.339576148808422, 48.87803059570955], [2.339609440219594, 48.87815498110864], [2.33961142949991, 48.87815702907568], [2.339665364032371, 48.878156703349234], [2.339694935753785, 48.87815475212567], [2.3397416892358, 48.878149117553356], [2.3397571416444283, 48.878155256199946], [2.339835165309257, 48.87831819897572], [2.339905421141176, 48.87847730275183], [2.339915136636498, 48.87848350147471], [2.340109662964774, 48.87851628893329], [2.340304304496658, 48.8785515184013], [2.340498831335359, 48.87858430432624], [2.340693473384674, 48.87861953315934], [2.340888000711018, 48.878652319349136], [2.341082643277657, 48.87868754754734], [2.3410913926541372, 48.87869241883368], [2.341172585181473, 48.87880724660889], [2.341279635744141, 48.878940189789475], [2.341308475696304, 48.8789491223772], [2.341314816538148, 48.87895307296558], [2.3414804189756753, 48.87900436469967], [2.341676066910175, 48.879063746356564], [2.341870508837314, 48.87912397002922], [2.342066157665792, 48.8791833510421], [2.342260600490547, 48.87924357407468], [2.342456250213102, 48.879302954443624], [2.34246591486023, 48.879303388843894], [2.342683692070856, 48.879259729608954], [2.342912488038361, 48.8792151672711], [2.342954053860956, 48.87920683375037], [2.342964875661939, 48.87920006360409], [2.342956309178697, 48.87917548726273], [2.342888613399519, 48.8790533378235], [2.342816623960917, 48.87892667078904], [2.342748930184757, 48.87880452214996], [2.3426769414298, 48.878677855002934], [2.342609246952661, 48.87855570535057], [2.342537258869996, 48.878429038990205], [2.342545946673507, 48.87841730092631], [2.342762661590561, 48.87837248814867], [2.3429281658723973, 48.87833620379068], [2.342935745605596, 48.87833609340564], [2.343121458163242, 48.87836844987128], [2.343328267229842, 48.878404686383], [2.3435139789125, 48.87843704223018], [2.343720788536001, 48.87847327716232], [2.343906502070422, 48.87850563240607], [2.344113312228049, 48.87854186755715], [2.3442990248875653, 48.878574222182515], [2.34450583560186, 48.87861045575398], [2.344625644843379, 48.878631328733526], [2.344636547200442, 48.87862853213294], [2.3446476460960612, 48.878607516100914], [2.344726666604446, 48.87850209164552], [2.344804011384719, 48.87838959548736], [2.344805021328614, 48.878384317426686], [2.344803161437023, 48.8783776036107], [2.344771491664677, 48.878259340501316], [2.34474248912112, 48.878154617058634], [2.344711628189768, 48.878043179786985], [2.344679957465302, 48.87792491661002], [2.3446490968038542, 48.877813479299036], [2.344617427724367, 48.87769521608835], [2.344608184150194, 48.877688539184454], [2.344574003960231, 48.877691168769175], [2.344384923422543, 48.87771819624521], [2.344190880778624, 48.87774480502906], [2.344001799847402, 48.87777183189862], [2.343807756819249, 48.87779843916095], [2.34361867548317, 48.87782546632339], [2.343424632059469, 48.877852072963414], [2.34341355026675, 48.87785039967671], [2.343243120605266, 48.87776403969194], [2.34306963341958, 48.87767625791517], [2.342899204898303, 48.87758989742715], [2.342725718883681, 48.877502114238865], [2.342555291502408, 48.87741575324755], [2.342381806647505, 48.877327969547004], [2.34236517749661, 48.8773279861163], [2.342191658495501, 48.87741632596095], [2.342031868610411, 48.87750017508534], [2.3420266837948542, 48.87750186251958], [2.341824585450171, 48.877535145728714], [2.341623914347964, 48.87756832582821], [2.341421815487997, 48.87760160835534], [2.341221143884399, 48.87763478687845], [2.341020472013855, 48.87766796596345], [2.3408183723816363, 48.87770124746886], [2.340617699998338, 48.877734425876696], [2.3404155998508562, 48.877767706700205], [2.340214926966409, 48.87780088353163], [2.340012826303675, 48.87783416367316], [2.339812152895104, 48.877867340726695], [2.339610051717123, 48.877900620186246], [2.339549883987007, 48.87790521391717]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 18, "roussel_fabien": 19.0, "nb_emargement": 1287.0, "nb_procuration": 75.0, "nb_vote_blanc": 8.0, "jadot_yannick": 126.0, "le_pen_marine": 53.0, "nb_exprime": 1274.0, "nb_vote_nul": 4.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1562.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1286, "quartier_bv": "36", "geo_point_2d": [48.87823186447229, 2.3421711512191954], "melenchon_jean_luc": 326.0, "poutou_philippe": 6.0, "macron_emmanuel": 527.0}, "geometry": {"type": "Point", "coordinates": [2.3421711512191954, 48.87823186447229]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "14586e315ebcf1ed07f35f47f9fda962b1944630", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 172, "zemmour_eric": 274.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-55", "geo_shape": {"coordinates": [[[2.275767169851129, 48.86828932154005], [2.275785271064329, 48.86827814333568], [2.27593897107064, 48.86820787895747], [2.276094348167837, 48.8681368762647], [2.276248047340442, 48.86806661148061], [2.276403424958154, 48.86799560838577], [2.276557121921415, 48.86792534408683], [2.276712498696493, 48.86785434058172], [2.276866196201691, 48.86778407498593], [2.277021570770991, 48.86771307106228], [2.277037642896059, 48.867699249811174], [2.27702512767815, 48.86768093540373], [2.276952825468671, 48.86755879054927], [2.276881612801203, 48.867437726941326], [2.276810400452143, 48.867316664177054], [2.2767380992643123, 48.86719451825337], [2.276666887581338, 48.867073455377096], [2.276594587054967, 48.86695131023916], [2.276523376050459, 48.86683024635159], [2.276451076198228, 48.866708101100116], [2.276379865859589, 48.86658703710055], [2.276307566681389, 48.866464891735546], [2.27623544332683, 48.86634149727695], [2.276163144828026, 48.86621935179756], [2.276091022155497, 48.86609595722463], [2.276018724336082, 48.8659738116309], [2.275946602345571, 48.8658504169435], [2.275874305205535, 48.865728271235476], [2.275863681469425, 48.86570780877022], [2.275816492477198, 48.865716518558315], [2.275636329109028, 48.86575895958495], [2.275455061684402, 48.86580225253722], [2.275274899088274, 48.86584469302477], [2.275093631064972, 48.86588798542632], [2.27491346651491, 48.86593042535822], [2.274732197892937, 48.86597371720902], [2.274723236635559, 48.8659737906125], [2.2746310777539582, 48.86595346705657], [2.274542229375072, 48.86592800931322], [2.274532292347116, 48.86592777010895], [2.274353495053857, 48.86596909149991], [2.274173801811214, 48.86601090543102], [2.27399500394827, 48.866052226283365], [2.2738153101311243, 48.86609403967313], [2.273636511698501, 48.86613535998681], [2.273456817306856, 48.866177172835194], [2.273278018317102, 48.86621849171094], [2.273098321987864, 48.866260304009714], [2.272919523779001, 48.86630162325438], [2.272739826875271, 48.86634343501177], [2.272561028096745, 48.866384753717746], [2.272381330618529, 48.86642656493375], [2.272202531270342, 48.866467883101095], [2.272022833217645, 48.86650969377569], [2.271844033312374, 48.866551010505106], [2.27166433467263, 48.86659282153763], [2.271485534197715, 48.8666341377284], [2.271305834996071, 48.866675947320246], [2.271289171062815, 48.86667156854863], [2.271239442444233, 48.8666075620292], [2.271187002860426, 48.86654479896744], [2.271170165351336, 48.86654074828398], [2.271001732863658, 48.86658354876544], [2.270839467768066, 48.86662582448929], [2.270671034733719, 48.8666686245021], [2.270508770467874, 48.86671089978271], [2.27034033688666, 48.86675369932679], [2.270178072087456, 48.866795974155814], [2.270015807012289, 48.866838249662514], [2.269847372627019, 48.8668810476087], [2.269831586159537, 48.86690335233585], [2.2720528284170323, 48.86948752650252], [2.272152250513213, 48.86960289070903], [2.272251673049768, 48.86971825482096], [2.272440299953279, 48.86964554975308], [2.272621731584914, 48.86957631171713], [2.272810358833774, 48.86950360516581], [2.272991789479147, 48.86943436656004], [2.273180415697396, 48.86936165941619], [2.273361845344063, 48.86929242113991], [2.273550469168625, 48.869219713395275], [2.273731897841479, 48.86915047364987], [2.273736403173682, 48.869147658146034], [2.273851674390484, 48.869032274987795], [2.273970467833834, 48.868913464071944], [2.274085738013946, 48.86879808066383], [2.274204530376947, 48.86867927038977], [2.274220814711237, 48.868675831096766], [2.274424404998563, 48.868727616068846], [2.274630025929808, 48.868777320211215], [2.274833617020681, 48.868829104482565], [2.275039240106052, 48.868878807925626], [2.275056056335221, 48.868874471493015], [2.275158850676629, 48.8687423969257], [2.275260364544299, 48.86861217345849], [2.275363157850106, 48.868480098684365], [2.275464670695988, 48.868349875012974], [2.275472439840227, 48.86834546576755], [2.275589029542486, 48.868317003780454], [2.27573970782821, 48.868283492163584], [2.275767169851129, 48.86828932154005]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 55, "roussel_fabien": 5.0, "nb_emargement": 1325.0, "nb_procuration": 77.0, "nb_vote_blanc": 11.0, "jadot_yannick": 48.0, "le_pen_marine": 74.0, "nb_exprime": 1307.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1658.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1325, "quartier_bv": "63", "geo_point_2d": [48.8675533214795, 2.273555798748213], "melenchon_jean_luc": 85.0, "poutou_philippe": 4.0, "macron_emmanuel": 610.0}, "geometry": {"type": "Point", "coordinates": [2.273555798748213, 48.8675533214795]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c4865e1dc8c9bad0c69ef9498619d767d75c46fb", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 34, "zemmour_eric": 72.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-5", "geo_shape": {"coordinates": [[[2.365199393664297, 48.868074698922484], [2.3651830369656652, 48.86806904884861], [2.365112529183571, 48.868040878042436], [2.364957688299784, 48.867973329110725], [2.364775105271561, 48.8679003769922], [2.364673066861675, 48.86785586212979], [2.36465411627564, 48.867851424914015], [2.364619161741188, 48.86789502197108], [2.364477500791768, 48.867971679729635], [2.364336495789004, 48.86804783717028], [2.364194834008158, 48.8681244945837], [2.36405382818938, 48.868200650781574], [2.363912165577004, 48.86827730784983], [2.363771157557286, 48.86835346459621], [2.363629494113373, 48.8684301213193], [2.363488486629825, 48.8685062777294], [2.363346822354372, 48.86858293410738], [2.363205814054916, 48.86865908927464], [2.363204619599836, 48.86865966749097], [2.363095389829871, 48.86870669828003], [2.362979373859964, 48.868755938503845], [2.362971932220723, 48.86876516390147], [2.362984937122458, 48.86877757746109], [2.363037489967055, 48.86890146965964], [2.363088842567252, 48.86902364578765], [2.36314139590722, 48.869147537913015], [2.363192748982807, 48.86926971486854], [2.363245304181354, 48.86939360692794], [2.363296657743133, 48.86951578381169], [2.363348011545909, 48.86963796065987], [2.36340056613304, 48.86976185170332], [2.363451920422014, 48.86988402847974], [2.363504475493552, 48.87000792034927], [2.363495610355337, 48.870038132374475], [2.363506377564521, 48.87005196570926], [2.36359921882806, 48.870153696181035], [2.363684214078812, 48.87023773623013], [2.363777056020761, 48.87033946654685], [2.363862051872531, 48.87042350555624], [2.363863473400778, 48.870425658034335], [2.36391512092969, 48.870544058865036], [2.363969248889485, 48.87066566819014], [2.36402089688592, 48.87078406984878], [2.364075025342064, 48.87090567909962], [2.364126673816911, 48.8710240806869], [2.364180802769309, 48.871145689863525], [2.364232451722572, 48.87126409137943], [2.364286581171434, 48.871385700481774], [2.364338230603122, 48.87150410192633], [2.36439236054825, 48.87162571095443], [2.364408195327043, 48.87163198517982], [2.364591831321794, 48.87161138052738], [2.364827985211872, 48.87157924688263], [2.36483566343996, 48.871576228079256], [2.364851827090437, 48.87156347310318], [2.364983720107476, 48.87146004125444], [2.365105428582968, 48.87136399545668], [2.365237321954597, 48.871260563317065], [2.365375192901915, 48.871151761293305], [2.365507085189538, 48.87104832973587], [2.365644955011646, 48.87093952738047], [2.365673260120019, 48.87093022084367], [2.365668303090164, 48.87090279803141], [2.365760479288932, 48.87078429682623], [2.365850441447996, 48.87066710853522], [2.365942618178475, 48.870548607171735], [2.366032579520831, 48.870431418718866], [2.36612475541989, 48.87031291718987], [2.366214714582226, 48.87019572856783], [2.366306889638941, 48.87007722777254], [2.36639684935865, 48.86996003809661], [2.366489023583972, 48.86984153713585], [2.3665789811236912, 48.86972434729077], [2.366671154517631, 48.8696058461645], [2.366761112592857, 48.86948865706405], [2.366853285166356, 48.86937015487298], [2.366943241061626, 48.86925296560344], [2.367035412803763, 48.86913446324683], [2.367125369245482, 48.86901727382267], [2.367217540156263, 48.86889877130055], [2.367307495781142, 48.868781581714565], [2.367326129974688, 48.86875296339196], [2.367307074302928, 48.868744899009435], [2.367236007289261, 48.868722869018015], [2.367026164576518, 48.86866696358502], [2.36685282538973, 48.868613229431], [2.366852074155109, 48.86861301231351], [2.36666726503935, 48.86855501459489], [2.366493926584355, 48.86850128081499], [2.366309116889627, 48.868443283429606], [2.366135779186801, 48.86838954822631], [2.365950971650392, 48.868331550289284], [2.365777634677853, 48.86827781546119], [2.365604298073769, 48.86822407948018], [2.365419490353062, 48.86816608070665], [2.365418285030078, 48.868165651626114], [2.365318245905936, 48.868125460268224], [2.365206171001911, 48.86808068040846], [2.365199393664297, 48.868074698922484]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 5, "roussel_fabien": 26.0, "nb_emargement": 1077.0, "nb_procuration": 85.0, "nb_vote_blanc": 8.0, "jadot_yannick": 98.0, "le_pen_marine": 26.0, "nb_exprime": 1068.0, "nb_vote_nul": 0.0, "arr_bv": "10", "arthaud_nathalie": 1, "nb_inscrit": 1339.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1076, "quartier_bv": "39", "geo_point_2d": [48.86953863170604, 2.364984229998552], "melenchon_jean_luc": 376.0, "poutou_philippe": 1.0, "macron_emmanuel": 393.0}, "geometry": {"type": "Point", "coordinates": [2.364984229998552, 48.86953863170604]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f45d4b81deeb135b061a670c9044a4130d5c5d15", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 57, "zemmour_eric": 71.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-29", "geo_shape": {"coordinates": [[[2.349476474715252, 48.87962788056458], [2.3495070580941793, 48.87964660357634], [2.34955146749508, 48.87977211830696], [2.349594715771275, 48.87989094105992], [2.349639124228411, 48.880016455722796], [2.34968237427098, 48.88013527842513], [2.349726783147622, 48.88026079302761], [2.349770032229718, 48.8803796156645], [2.349814442889458, 48.88050513021405], [2.349857692374361, 48.88062395279292], [2.349858032106663, 48.88062644848506], [2.349846703625504, 48.880774884629105], [2.349836596552154, 48.88092017612759], [2.349825267946007, 48.881068612230024], [2.349815159392342, 48.88121390368051], [2.349813326842508, 48.88123792386212], [2.349811844478201, 48.88123968389705], [2.349811520125628, 48.881257908883825], [2.349802025310996, 48.88138232386875], [2.3497898848650838, 48.88150555623948], [2.349788427532074, 48.88152901007505], [2.349841225787574, 48.88153608676171], [2.350010941655229, 48.881551811286556], [2.350233141754185, 48.88157028819373], [2.350402857851629, 48.88158601216252], [2.350625059610282, 48.88160448744983], [2.350794774573988, 48.881620210855196], [2.35101697660638, 48.88163868631387], [2.351186693163274, 48.88165440917053], [2.351200143219121, 48.88165027948684], [2.351294871109785, 48.88155059474581], [2.351387481954375, 48.8814521467248], [2.351482209126058, 48.88135246181758], [2.35157481927537, 48.881254012734686], [2.351669545716884, 48.88115432856059], [2.351762153796223, 48.88105587930765], [2.351856879518777, 48.88095619496742], [2.351949488255156, 48.88085774555924], [2.351956531229411, 48.880854007390134], [2.352129121893207, 48.88081377909533], [2.352305037497834, 48.88077348310344], [2.352477626262075, 48.880733254295905], [2.352653541325047, 48.880692957789], [2.352826130927893, 48.880652727584234], [2.353002045449202, 48.880612430562316], [2.353174633141413, 48.88057220074411], [2.353350547121058, 48.880531903207164], [2.353523135640585, 48.88049167289098], [2.353699049078561, 48.88045137483902], [2.353716367428838, 48.880442817659414], [2.353718692882304, 48.88042354134793], [2.353679078447763, 48.88032886888406], [2.353607136822553, 48.88017632522541], [2.353567522790008, 48.880081651804105], [2.353549875089571, 48.88007555616928], [2.353348462443543, 48.88012205836874], [2.353153579133072, 48.88016419597613], [2.35295216579039, 48.88021069750511], [2.352757281827592, 48.88025283446401], [2.3527398224667992, 48.880246508600536], [2.352691149970074, 48.880120506246335], [2.352657852751096, 48.88002754481811], [2.352659040244129, 48.8800210850415], [2.352743811109656, 48.8799164735152], [2.3528417522934912, 48.879798455723474], [2.352926521077449, 48.87969384314001], [2.353024461417407, 48.8795758260742], [2.353109230835463, 48.87947121334757], [2.353207170353895, 48.87935319520916], [2.3531936765117543, 48.879339941686965], [2.35301931757778, 48.879352953575406], [2.352887094187005, 48.87936750780024], [2.352712733720792, 48.879380519234516], [2.352580510174358, 48.87939507312039], [2.352570855107758, 48.87939375104845], [2.352447523155923, 48.879341073799516], [2.352237347846396, 48.879251289541614], [2.352114017932804, 48.87919861194969], [2.352108000306709, 48.87919261590724], [2.3520755222470813, 48.879070438438], [2.352045987794289, 48.87894588015525], [2.352013511408633, 48.87882370174987], [2.351983977244168, 48.87869914342394], [2.351951501157739, 48.87857696497442], [2.351921967270305, 48.87845240750455], [2.351889491483301, 48.87833022901086], [2.351859957895173, 48.87820567059851], [2.351845275858615, 48.87819810325603], [2.351659933690633, 48.8782090050113], [2.351504916494097, 48.87822180736878], [2.351319574159316, 48.878232709496146], [2.351164556819767, 48.87824551051333], [2.351154567406582, 48.878247843202985], [2.35113835922946, 48.87827106698184], [2.3511118006973533, 48.87840832501417], [2.351086112301818, 48.878545773003516], [2.351059553492035, 48.87868303099006], [2.351033864823119, 48.878820478933946], [2.351007305735452, 48.878957736874675], [2.350981616793151, 48.87909518477306], [2.350955057427799, 48.87923244266796], [2.350929369564359, 48.879369891427565], [2.350918823854589, 48.87937756491563], [2.350744160671635, 48.87940343859814], [2.350576687476898, 48.879427759210735], [2.350402022603392, 48.879453631486264], [2.350234549087483, 48.879477951619116], [2.35005988386446, 48.87950382429358], [2.34989241002738, 48.87952814394672], [2.349717745840649, 48.879554015228976], [2.349550270319047, 48.87957833439494], [2.349490050115221, 48.87958901412326], [2.349487564156728, 48.87959612872639], [2.349476474715252, 48.87962788056458]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 29, "roussel_fabien": 13.0, "nb_emargement": 1172.0, "nb_procuration": 82.0, "nb_vote_blanc": 6.0, "jadot_yannick": 122.0, "le_pen_marine": 44.0, "nb_exprime": 1162.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 0, "nb_inscrit": 1435.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1172, "quartier_bv": "37", "geo_point_2d": [48.88011351889655, 2.351315389933202], "melenchon_jean_luc": 341.0, "poutou_philippe": 9.0, "macron_emmanuel": 469.0}, "geometry": {"type": "Point", "coordinates": [2.351315389933202, 48.88011351889655]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fc625741070079d7bdbefa3730121ee7a0c80ae5", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 101, "zemmour_eric": 158.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "17-57", "geo_shape": {"coordinates": [[[2.294693431976497, 48.8875686935937], [2.294693935572909, 48.88755215425532], [2.294552782266816, 48.88746385461138], [2.294408775722911, 48.88737581227343], [2.294267624754224, 48.88728751138797], [2.294123617816374, 48.88719946868489], [2.293982467797051, 48.887111168348326], [2.2938384618413092, 48.88702312438893], [2.293697312783533, 48.88693482370204], [2.293553309148946, 48.886846780292856], [2.293412159701265, 48.886758478348376], [2.293268157036576, 48.88667043458211], [2.293127009901869, 48.886582133194594], [2.292983006855438, 48.886494088163985], [2.29284186068226, 48.88640578642616], [2.292697858605723, 48.88631774103846], [2.292556713394067, 48.88622943895031], [2.292412713638623, 48.88614139411287], [2.292428690864565, 48.88611650776118], [2.292418772564132, 48.88610265967479], [2.292373342711703, 48.886083830755105], [2.292216935409201, 48.88598795019199], [2.292062704751122, 48.88589340340312], [2.29190629859254, 48.88579752241762], [2.291752069062462, 48.885702975212226], [2.291595664047791, 48.88560709380435], [2.291441435645604, 48.88551254618247], [2.291287206439952, 48.88541799834575], [2.2911308045007353, 48.885322116313844], [2.291118212226606, 48.885315600731595], [2.291103418294982, 48.885319651874994], [2.291083369668035, 48.885323931811385], [2.291053439638246, 48.88533032152887], [2.291039946879572, 48.885328346738696], [2.291032564202527, 48.8853238135492], [2.2910110640106662, 48.8853101080954], [2.291008312662198, 48.88531016554851], [2.290990575605337, 48.885322549564215], [2.290811807894543, 48.88537141013899], [2.29063561592697, 48.885419565340804], [2.290456847550078, 48.88546842538128], [2.290280656289522, 48.88551658006462], [2.290101885882923, 48.885565439562725], [2.28992569395362, 48.885613594618704], [2.289746924244538, 48.88566245359065], [2.2895707303074992, 48.88571060721271], [2.289568861681738, 48.88571123285332], [2.289399863725129, 48.88577906946711], [2.289229644596724, 48.88584742110423], [2.28906064576862, 48.88591525633152], [2.288890425749795, 48.885983607477925], [2.2887214260378252, 48.88605144221806], [2.28855120512858, 48.88611979287372], [2.28838220589627, 48.886187627134774], [2.288211984096604, 48.88625597729974], [2.288042982616903, 48.88632381106544], [2.287872759926816, 48.88639216073969], [2.287703757563146, 48.886459994018225], [2.287533533982635, 48.886528343201725], [2.287364530722892, 48.886596176892255], [2.287194306264265, 48.88666452468579], [2.287025302120647, 48.88673235788913], [2.286855076771601, 48.88680070519189], [2.286686073107651, 48.88686853791616], [2.286515845504541, 48.886936884720086], [2.286467382711613, 48.88693925435352], [2.286463951864753, 48.88694788998735], [2.286564373664617, 48.88699712881065], [2.286769615553336, 48.88710021089731], [2.286927710586106, 48.88717772710941], [2.287079017785014, 48.88725222499872], [2.287237113739788, 48.8873297407916], [2.287388421823054, 48.88740423827959], [2.287546518687732, 48.88748175455252], [2.287700969274103, 48.887557581554965], [2.287859067069515, 48.88763509740437], [2.288013518553548, 48.88771092489237], [2.2881716172798, 48.88778844031829], [2.288326069673804, 48.88786426739251], [2.288435677038206, 48.887918007275516], [2.288545284628843, 48.8879717470556], [2.288646346103662, 48.88802126755647], [2.288688119314693, 48.88804174888945], [2.288694138211329, 48.88804469937959], [2.288730079514433, 48.888062321251226], [2.288925764035588, 48.888158237997864], [2.289047089435263, 48.88821772167028], [2.289047107052303, 48.88821772986882], [2.289047487723034, 48.888217916492096], [2.28918148118445, 48.888283813729245], [2.289337681375961, 48.88836039536843], [2.289471675571156, 48.88842629227234], [2.28962787661696, 48.88850287352303], [2.289747234072881, 48.888560775449534], [2.289903437290956, 48.88863735633951], [2.290022795349295, 48.88869525888346], [2.290022859024874, 48.88869528983832], [2.290179061700393, 48.88877186945198], [2.290327576446021, 48.888844800569174], [2.2904837813696313, 48.88892138068226], [2.290632296980737, 48.888994310512274], [2.290788501437304, 48.88907089020936], [2.290937017901527, 48.88914381965155], [2.291093223254853, 48.889220398940644], [2.29124174056006, 48.88929332889419], [2.291390258293633, 48.88936625775948], [2.291546464980722, 48.88944283644181], [2.291712211723041, 48.88946238275647], [2.291900525473276, 48.889479015364515], [2.292034763266532, 48.88949484502331], [2.2922230786009132, 48.889511477131634], [2.292357315200078, 48.88952730731956], [2.292545630754887, 48.88954393892014], [2.29267183806436, 48.889558821085345], [2.292716196418125, 48.889566502583], [2.292730599932035, 48.88954699575388], [2.292838225297245, 48.88943697243362], [2.292948552275107, 48.88932742272009], [2.293056176725948, 48.88921739918193], [2.293166502792244, 48.889107848346455], [2.293274126328829, 48.888997824590355], [2.293384451459151, 48.88888827443142], [2.293492072717591, 48.888778250449384], [2.293602396936363, 48.88866869916848], [2.293710018644264, 48.888558674976615], [2.293820341927089, 48.88844912437225], [2.293927962720562, 48.888339099962494], [2.294038285091846, 48.88822954823616], [2.294145904970998, 48.88811952360851], [2.294256226406364, 48.88800997255874], [2.294363845371311, 48.88789994771323], [2.294474165895147, 48.887790395541515], [2.294581782582025, 48.88768037047009], [2.294692102169975, 48.88757081897492], [2.294693431976497, 48.8875686935937]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 57, "roussel_fabien": 18.0, "nb_emargement": 1142.0, "nb_procuration": 60.0, "nb_vote_blanc": 13.0, "jadot_yannick": 45.0, "le_pen_marine": 105.0, "nb_exprime": 1129.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1524.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1143, "quartier_bv": "65", "geo_point_2d": [48.887399824492086, 2.2909525594983107], "melenchon_jean_luc": 298.0, "poutou_philippe": 5.0, "macron_emmanuel": 347.0}, "geometry": {"type": "Point", "coordinates": [2.2909525594983107, 48.887399824492086]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b04a92f31007e3e64f798850cced7658781fb5e6", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 91, "zemmour_eric": 56.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-46", "geo_shape": {"coordinates": [[[2.318214639764114, 48.829681332008995], [2.318232040213541, 48.82969555230686], [2.318364599041253, 48.829788904053316], [2.31850019760084, 48.8298828728474], [2.318632757385037, 48.82997622428105], [2.318768356926959, 48.830070191856095], [2.318900917667645, 48.83016354297693], [2.319036518168402, 48.83025751113158], [2.319169079865588, 48.8303508619396], [2.319304681336944, 48.83044482977447], [2.319323804361654, 48.83047521068786], [2.319335259905569, 48.83047570488663], [2.319457956730882, 48.83043343815937], [2.319626621126191, 48.83037405508336], [2.3198258944852252, 48.83030540870353], [2.319994558047203, 48.83024602510184], [2.320193830432353, 48.83017737810113], [2.320362493149272, 48.830117994873106], [2.320362821622787, 48.83011787712275], [2.320523351135992, 48.83005882518592], [2.320707094581246, 48.8299910685202], [2.320867621951843, 48.82993201610688], [2.321051364514516, 48.82986425800528], [2.321211892466826, 48.829805205130945], [2.32139563276123, 48.82973744738433], [2.321556159944797, 48.829678393141926], [2.321739900706857, 48.82961063486651], [2.321900425736119, 48.829551581046914], [2.322084165615578, 48.829483821335636], [2.322244691226544, 48.829424767055], [2.32242842883776, 48.82935700769876], [2.322588953668176, 48.82929795294939], [2.322628636875989, 48.82928020998106], [2.322603485906852, 48.82924920004283], [2.322521250789675, 48.82914651923885], [2.322436403648683, 48.82904129362342], [2.322354169188436, 48.82893861268552], [2.322269322734838, 48.82883338603275], [2.322187088919924, 48.82873070586024], [2.322102241779795, 48.828625479061735], [2.322100691083803, 48.828623946727916], [2.322064191843153, 48.828594851856266], [2.322022683231891, 48.82855742283117], [2.322021220228849, 48.82854118708435], [2.322014132198872, 48.82853494030372], [2.321944797397174, 48.82847242097612], [2.321829551847832, 48.82836335933999], [2.3217187107105532, 48.82826340986379], [2.321648080187948, 48.82819656958423], [2.321636419017082, 48.82819066378495], [2.321583981966997, 48.82821877855539], [2.321424737749791, 48.82828008141323], [2.321264784321559, 48.82834184051378], [2.321105539353026, 48.82840314293989], [2.320945583795364, 48.82846490249833], [2.3207863380756, 48.82852620449271], [2.320626383136076, 48.82858796272587], [2.320467136665085, 48.828649264288494], [2.3203071795959103, 48.82871102297954], [2.320300434925571, 48.82871878404201], [2.320300416556596, 48.8287727465379], [2.320301300274527, 48.828825222991654], [2.320294481684766, 48.828833114941965], [2.320139719912103, 48.82889200783693], [2.319986166039099, 48.828950694246366], [2.319831403557473, 48.82900958763548], [2.319677848991081, 48.829068273642896], [2.319523087185893, 48.82912716573532], [2.319369531926116, 48.829185851340746], [2.3193659672066422, 48.829187817776], [2.319273833619195, 48.82926354702373], [2.319176389530785, 48.82933940245744], [2.319172128137654, 48.829341724671316], [2.319015124349807, 48.829396424834776], [2.31885569417679, 48.82945174503245], [2.31869868972559, 48.82950644477511], [2.318539258868582, 48.829561765444886], [2.318382253754029, 48.8296164647668], [2.318222822236538, 48.82967178410996], [2.318214639764114, 48.829681332008995]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 46, "roussel_fabien": 21.0, "nb_emargement": 1098.0, "nb_procuration": 70.0, "nb_vote_blanc": 13.0, "jadot_yannick": 104.0, "le_pen_marine": 46.0, "nb_exprime": 1084.0, "nb_vote_nul": 1.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1376.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1098, "quartier_bv": "56", "geo_point_2d": [48.829373055753216, 2.320532254563498], "melenchon_jean_luc": 312.0, "poutou_philippe": 8.0, "macron_emmanuel": 395.0}, "geometry": {"type": "Point", "coordinates": [2.320532254563498, 48.829373055753216]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "18bc936f3d1a3b58f4295f3319e5f6df12683b18", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 86, "zemmour_eric": 77.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-47", "geo_shape": {"coordinates": [[[2.318214639764114, 48.829681332008995], [2.318200412477737, 48.82968373767769], [2.318196178702501, 48.82968602583769], [2.318144267003884, 48.82972818673372], [2.318110781492194, 48.82976008915502], [2.31810539669948, 48.82976310014307], [2.317910682216121, 48.82982375265297], [2.317717334380421, 48.82988372102155], [2.31752261898329, 48.829944373792415], [2.317329270265721, 48.83000434062786], [2.317134553966589, 48.83006499276047], [2.316941204343402, 48.83012495986139], [2.316746487154056, 48.83018561045634], [2.316553136637234, 48.83024557692347], [2.316358418534105, 48.830306227779396], [2.316165067123547, 48.83036619361269], [2.316158850498769, 48.830370087440166], [2.3160651625415563, 48.83048559007097], [2.315978551226547, 48.83059734492235], [2.315891939528501, 48.83070910059915], [2.315798249008483, 48.830824602978154], [2.315711636558155, 48.83093635760245], [2.315617946592419, 48.83105185982454], [2.315531333377901, 48.83116361429555], [2.31543764260426, 48.831279116352995], [2.315351028625744, 48.83139087067083], [2.315257335681986, 48.8315063725558], [2.315264438039824, 48.83154447836292], [2.315304285205311, 48.831549631464384], [2.315422982610555, 48.83152075926554], [2.315602919549584, 48.83147779613392], [2.315784329100853, 48.83143366927062], [2.315964265429778, 48.831390706491334], [2.316145674372117, 48.83134657907653], [2.316325611464738, 48.831303615758074], [2.31650701843605, 48.83125948778398], [2.316686954942051, 48.83121652301924], [2.316946921309078, 48.83119034052708], [2.317126855851662, 48.83114737509011], [2.317130803511115, 48.831146558512785], [2.317303796785748, 48.831090501446475], [2.3174837306896, 48.83104753546879], [2.317656723256127, 48.830991477887075], [2.317836656515547, 48.83094851227397], [2.317997668834648, 48.83089806092296], [2.318176721774654, 48.83084236451862], [2.318337733436802, 48.83079191270503], [2.318516785660766, 48.830736214886954], [2.318677796654102, 48.830685763510154], [2.318856849512235, 48.830630065185446], [2.319017859860469, 48.830579612446726], [2.31909733254982, 48.83055489051325], [2.319117348330079, 48.83054893278282], [2.319124534558453, 48.830542544959194], [2.319224112597499, 48.8305115680229], [2.319300690136524, 48.83048518901355], [2.319323804361654, 48.83047521068786], [2.319304681336944, 48.83044482977447], [2.319169079865588, 48.8303508619396], [2.319036518168402, 48.83025751113158], [2.318900917667645, 48.83016354297693], [2.318768356926959, 48.830070191856095], [2.318632757385037, 48.82997622428105], [2.31850019760084, 48.8298828728474], [2.318364599041253, 48.829788904053316], [2.318232040213541, 48.82969555230686], [2.318214639764114, 48.829681332008995]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 47, "roussel_fabien": 17.0, "nb_emargement": 1037.0, "nb_procuration": 38.0, "nb_vote_blanc": 8.0, "jadot_yannick": 61.0, "le_pen_marine": 75.0, "nb_exprime": 1025.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1412.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1037, "quartier_bv": "56", "geo_point_2d": [48.830596591622445, 2.3172910734344057], "melenchon_jean_luc": 307.0, "poutou_philippe": 12.0, "macron_emmanuel": 340.0}, "geometry": {"type": "Point", "coordinates": [2.3172910734344057, 48.830596591622445]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4b744b7a4c544ecda100699990e31e66e40e35d7", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 183, "zemmour_eric": 174.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-21", "geo_shape": {"coordinates": [[[2.298179766356614, 48.84926933284176], [2.298185494241042, 48.84928135494102], [2.298186122836623, 48.849281833491595], [2.298314006612705, 48.84937235252], [2.298442151914972, 48.84946271105011], [2.298570037942325, 48.84955322979811], [2.298698184133317, 48.84964358803929], [2.29882606968671, 48.849734106490985], [2.29895421676633, 48.84982446444327], [2.299082103208339, 48.84991498260657], [2.299210251176795, 48.85000534026995], [2.299210860670121, 48.850017171344945], [2.299090250501389, 48.85011472819623], [2.298974993654344, 48.85020766658706], [2.298854381240462, 48.85030522317589], [2.298739123551527, 48.8503981613236], [2.298623865451375, 48.85049109935252], [2.298503251724134, 48.85058865556251], [2.298489424828243, 48.850591700673554], [2.298299813594136, 48.85056077407377], [2.298110380973939, 48.85053005956901], [2.2979207701890783, 48.85049913236678], [2.297731339379168, 48.850468417268225], [2.297541729043556, 48.85043748946364], [2.297352298668915, 48.85040677466258], [2.297162688794687, 48.850375845356304], [2.296973257504953, 48.85034512994544], [2.296783648079998, 48.85031420003679], [2.29659421860046, 48.85028348403214], [2.296582991701134, 48.85028492445891], [2.296449984039822, 48.85034827769425], [2.2962600339057833, 48.85043876417019], [2.296127025471227, 48.85050211613845], [2.295937072853045, 48.85059260208119], [2.295804063621051, 48.85065595458093], [2.295801944197434, 48.850669287731705], [2.2959458403283692, 48.85077400541055], [2.296085371067844, 48.85087526255989], [2.296229268337207, 48.850979979878545], [2.29636880016679, 48.85108123757787], [2.29651269858653, 48.85118595363696], [2.296652231518483, 48.85128721098703], [2.296656296700315, 48.851289234163154], [2.2968005516158962, 48.85133621118317], [2.296970681070449, 48.85139136235948], [2.297114936564193, 48.851438338096855], [2.297285066684903, 48.851493488821106], [2.29728519828448, 48.85149353276333], [2.297429454344691, 48.85154050811718], [2.297538195137615, 48.85157672169176], [2.297542024528604, 48.85159088212194], [2.29751641410307, 48.85160901666017], [2.297494082811701, 48.85162602196243], [2.297490419498612, 48.851637551840156], [2.297507007004015, 48.851646897354975], [2.29768091419563, 48.851698233004015], [2.297855419149843, 48.85174993524543], [2.2980293283911912, 48.851801270391356], [2.298203834036145, 48.851852972119836], [2.29837774260197, 48.85190430674662], [2.298552248937559, 48.85195600796215], [2.298726159553119, 48.852007342085734], [2.298900666579545, 48.852059042788355], [2.299074576519571, 48.85211037639283], [2.299249084236626, 48.8521620765825], [2.299294755211049, 48.852195212958115], [2.29930857800083, 48.85219017025388], [2.299359428089428, 48.85215760451852], [2.299492139902485, 48.85207304849961], [2.299635947906479, 48.85198094779576], [2.299768658820931, 48.851896391456776], [2.299912465848567, 48.851804290405966], [2.300045175852338, 48.85171973464612], [2.300188983266554, 48.85162763325633], [2.30032169238371, 48.851543076277025], [2.300465497458954, 48.85145097453232], [2.300598205665553, 48.851366418132216], [2.30074200976446, 48.851274316040566], [2.300874717084549, 48.85118975842106], [2.300893304389505, 48.85118954685594], [2.300927222372468, 48.851209710837786], [2.30098952655104, 48.85121927620501], [2.30104233615836, 48.85120567520833], [2.3011433226711873, 48.85113918360266], [2.301257845788216, 48.851065967300684], [2.301269031993292, 48.851049981738754], [2.301187696147569, 48.85102124071395], [2.301084258185647, 48.850952398440796], [2.300966711350419, 48.85087503673964], [2.300962800225834, 48.85086761484796], [2.300986636607495, 48.85073433842592], [2.301009908708096, 48.850600957958875], [2.301033744847301, 48.850467681495516], [2.301057015357714, 48.85033430008008], [2.301080851242409, 48.8502010244747], [2.301104122875858, 48.850067643026115], [2.301127958530169, 48.84993436648011], [2.301151228549124, 48.84980098588175], [2.301147506200139, 48.84979371798272], [2.301026017874902, 48.84971047747793], [2.300912951539869, 48.849632231642026], [2.30079988689508, 48.849553986601], [2.300678398333392, 48.849470744818085], [2.300659299895027, 48.84947040025129], [2.300504931470139, 48.84956521603208], [2.300350506200894, 48.84966026511055], [2.300196136663816, 48.84975507957747], [2.300041708906137, 48.84985012823323], [2.299887338232708, 48.84994494318483], [2.299732910711734, 48.85003999143379], [2.299713934792115, 48.85003974276684], [2.29956366867087, 48.84993961680938], [2.299432723055073, 48.84985246195634], [2.299301777877178, 48.849765306953145], [2.29917559571473, 48.849681109818064], [2.2990446513975398, 48.84959395452007], [2.298918470077536, 48.8495097562016], [2.298792289153178, 48.849425558642956], [2.298661346119085, 48.8493384029054], [2.298535166025065, 48.84925420506267], [2.298404223851663, 48.84916704903035], [2.2983864206175593, 48.84916616308396], [2.298285366742898, 48.849215717090125], [2.298197053682985, 48.84925955385165], [2.298179766356614, 48.84926933284176]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 21, "roussel_fabien": 14.0, "nb_emargement": 1149.0, "nb_procuration": 73.0, "nb_vote_blanc": 12.0, "jadot_yannick": 48.0, "le_pen_marine": 56.0, "nb_exprime": 1140.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1378.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1152, "quartier_bv": "59", "geo_point_2d": [48.850849844593924, 2.298933253467157], "melenchon_jean_luc": 122.0, "poutou_philippe": 2.0, "macron_emmanuel": 514.0}, "geometry": {"type": "Point", "coordinates": [2.298933253467157, 48.850849844593924]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c1cba4b0dcf94065ea51e432a2809554145f650f", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 125, "zemmour_eric": 96.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "6-12", "geo_shape": {"coordinates": [[[2.329579553106811, 48.84783478714267], [2.329572147888798, 48.84784529514392], [2.329571574386545, 48.84784602131147], [2.329540763175892, 48.84786077803368], [2.3294599276152548, 48.84797577949417], [2.329379379079683, 48.84809005131914], [2.329298542807274, 48.84820505264692], [2.329217993551976, 48.848319325239025], [2.329137155205141, 48.84843432642644], [2.3290566066157, 48.8485485979947], [2.328975767557071, 48.8486635990494], [2.328895218259366, 48.84877787048548], [2.328814378488932, 48.84889287140748], [2.328733828471372, 48.84900714361068], [2.328721316072465, 48.84901082733517], [2.328717797478565, 48.84902860052249], [2.328717668447902, 48.8490287787711], [2.328633556127365, 48.849141545166404], [2.328548597020211, 48.849255910298744], [2.328464483967213, 48.84936867655219], [2.328379522756147, 48.84948304153348], [2.328295408970677, 48.849595807645095], [2.32821044701815, 48.84971017248298], [2.328126333851285, 48.84982293935964], [2.328041371168988, 48.84993730315484], [2.328043110286374, 48.84994521109158], [2.328063251175534, 48.84995192460028], [2.328275029077097, 48.84996951897378], [2.328486140972512, 48.84998667124568], [2.328697919146473, 48.850004265769435], [2.32890903132184, 48.85002141729466], [2.329120809791362, 48.85003901017004], [2.329331922246667, 48.850056160948576], [2.329543700988578, 48.85007375397418], [2.329754813723814, 48.850090904005995], [2.329765042876471, 48.85009544101329], [2.329832858756594, 48.85017550045394], [2.329899347825847, 48.850255429206086], [2.329911292461654, 48.850260094523136], [2.330094318965781, 48.850260104960675], [2.330274709880188, 48.85026011475518], [2.330457736384457, 48.85026012463684], [2.330638127299099, 48.85026013388345], [2.330821153803399, 48.850260143209184], [2.331001546080861, 48.85026015191549], [2.331184571222694, 48.85026016067771], [2.331364963500173, 48.85026016883611], [2.331545354415013, 48.85026017671491], [2.331728380919713, 48.85026018465289], [2.33177606926944, 48.85024629150517], [2.331798704241312, 48.85022944073344], [2.331790265737519, 48.85010193025052], [2.33178177491489, 48.84997882181966], [2.331773337855684, 48.84985131131446], [2.331764847125414, 48.849728201955394], [2.331756356435159, 48.849605092582046], [2.331747919498757, 48.849477582032264], [2.331739428877792, 48.84935447352934], [2.331730992023386, 48.84922696294961], [2.331722501494877, 48.84910385351847], [2.331714063359701, 48.84897634290125], [2.331705574274674, 48.84885323344883], [2.331697136209962, 48.84872572370101], [2.331688645843099, 48.84860261421204], [2.331680209234568, 48.84847510354264], [2.331683069182043, 48.84847056606018], [2.331665920747565, 48.84844070416022], [2.331657484209317, 48.84831319436998], [2.331649961800756, 48.84818220105373], [2.331641523992402, 48.84805469032585], [2.331634001661273, 48.84792369697823], [2.331625565296354, 48.847796186227214], [2.331618043042753, 48.847665192848176], [2.331609605396104, 48.84753768205886], [2.331602083219832, 48.84740668864841], [2.331593647016804, 48.847279177836], [2.331586124917956, 48.84714818439416], [2.331578011813548, 48.84714125266115], [2.331510619756614, 48.8471614660886], [2.3313755508626812, 48.84716767955463], [2.331111444199978, 48.847178940901244], [2.330976373850549, 48.84718515390889], [2.330969234667188, 48.847186856947445], [2.3308020867077612, 48.84726713170645], [2.330623652546208, 48.84735259445096], [2.330456503534439, 48.847432867815975], [2.330278069601217, 48.84751833003994], [2.330110918151477, 48.84759860380187], [2.329932483084061, 48.84768406549773], [2.329765330570413, 48.84776433876489], [2.329617704197168, 48.847835043190784], [2.329579553106811, 48.84783478714267]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 12, "roussel_fabien": 5.0, "nb_emargement": 964.0, "nb_procuration": 78.0, "nb_vote_blanc": 8.0, "jadot_yannick": 43.0, "le_pen_marine": 29.0, "nb_exprime": 954.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 4, "nb_inscrit": 1158.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 964, "quartier_bv": "23", "geo_point_2d": [48.848939312783784, 2.330327190298868], "melenchon_jean_luc": 98.0, "poutou_philippe": 4.0, "macron_emmanuel": 503.0}, "geometry": {"type": "Point", "coordinates": [2.330327190298868, 48.848939312783784]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "af71d8c6ff2f5de39b463e54babf148e8718014d", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 114, "zemmour_eric": 67.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "5-11", "geo_shape": {"coordinates": [[[2.34071542818666, 48.838659033741195], [2.340742016059331, 48.83872306679281], [2.340792808289795, 48.838857009682606], [2.340838837098504, 48.83899012854664], [2.340847155617261, 48.839015397117414], [2.340860388893542, 48.839019201508854], [2.340977693867376, 48.839124147356195], [2.341099953507678, 48.83923511104633], [2.341217260823452, 48.83934005574664], [2.341339520117895, 48.839451019163], [2.34145682839068, 48.83955596450741], [2.341579088701478, 48.83966692765744], [2.341696397953911, 48.83977187184736], [2.341818659281274, 48.83988283473109], [2.341935969490546, 48.83998777956509], [2.342058231834385, 48.840098742182526], [2.342175543023316, 48.84020368586197], [2.34229780638364, 48.840314648213116], [2.342415118529539, 48.840419592536634], [2.342537384280144, 48.84053055372964], [2.342654696031929, 48.840635497790466], [2.342776962787703, 48.840746459616454], [2.342894275519158, 48.84085140252273], [2.343016543291453, 48.8409623640824], [2.343133858342368, 48.84106730764023], [2.343182832867123, 48.841111754238526], [2.343214170763249, 48.841133830322796], [2.343254349462836, 48.841123412330106], [2.3434395944473803, 48.84105442175868], [2.343620316908978, 48.84098714725355], [2.343805560936017, 48.8409181552077], [2.343986282452763, 48.84085088014153], [2.344167004865424, 48.840783604805736], [2.344352247445507, 48.84071461190076], [2.344532967550863, 48.840647335996415], [2.344718209162111, 48.840578342516295], [2.344898928322614, 48.84051106605089], [2.345084168965227, 48.84044207199566], [2.345133599040931, 48.84042366999316], [2.345142926964185, 48.840423872151106], [2.345171063126731, 48.84041321670817], [2.345302351205213, 48.84036434164266], [2.34545550120867, 48.84029967449225], [2.3456362184512862, 48.84023239689627], [2.345789366290285, 48.84016772930337], [2.345794571313625, 48.84016662277069], [2.345887295029553, 48.840159893542854], [2.34599943816087, 48.8401530797496], [2.346011709752383, 48.84014301819136], [2.345984307217759, 48.83999696707329], [2.3459599458616323, 48.839849726508085], [2.3459325436262493, 48.8397036753398], [2.345908182553531, 48.839556434725395], [2.345880779266258, 48.83941038260014], [2.3458564184655613, 48.83926314283584], [2.345868217741732, 48.83925324688387], [2.346061487713212, 48.83923676687447], [2.346249503992217, 48.839220383751986], [2.346442773721387, 48.83920390312606], [2.34663078977317, 48.839187518504474], [2.346824059259915, 48.83917103726206], [2.347012073699715, 48.839154652932564], [2.347205344306434, 48.83913817108111], [2.347393358507725, 48.83912178615187], [2.347586627509601, 48.839105303676455], [2.347774642846232, 48.83908891725558], [2.347962658053294, 48.83907253143826], [2.348155926692504, 48.839056048042295], [2.348343941661237, 48.839039661625215], [2.348537210057989, 48.83902317761277], [2.348537353265175, 48.83902316580156], [2.348703894251217, 48.839010145111], [2.348891908882095, 48.83899375783199], [2.349058449696833, 48.83898073574816], [2.349246464110154, 48.83896434791147], [2.349258228278805, 48.83895447841632], [2.3492379767429092, 48.8388290758038], [2.349219270768871, 48.8387009106355], [2.349199019436451, 48.838575507088585], [2.349180313649203, 48.83844734188515], [2.349160062509025, 48.83832193830322], [2.349141356908668, 48.83819377306457], [2.349121105949502, 48.838068370346875], [2.349102400547058, 48.83794020417376], [2.34908214978013, 48.83781480142107], [2.349063444564471, 48.83768663521276], [2.349043193989878, 48.83756123242503], [2.349024488960998, 48.837433066181575], [2.349088036291388, 48.83742056094927], [2.349098148951667, 48.83739824782346], [2.349065818333742, 48.8373292028613], [2.349047113332497, 48.83720103659478], [2.34901553002758, 48.83713358665326], [2.349000486381855, 48.8370909161456], [2.348943511196321, 48.83709103144749], [2.348754900562406, 48.837113144522306], [2.348574440915909, 48.83713582062573], [2.348385829963359, 48.83715793311775], [2.348205368638789, 48.8371806086561], [2.348024908519668, 48.83720328392909], [2.347836297101141, 48.83722539465396], [2.347655835292806, 48.83724807026116], [2.347467224917923, 48.837270180410655], [2.347286762805244, 48.83729285456082], [2.347098152100599, 48.83731496502677], [2.347044777897476, 48.83732625483188], [2.34703612819867, 48.83732600885456], [2.34684739144957, 48.83736609658799], [2.346713801265111, 48.83739435365802], [2.346526837883816, 48.83743389925916], [2.346338100341104, 48.83747398708451], [2.346151136389245, 48.837513532095585], [2.34596239826925, 48.83755361932525], [2.345775433746732, 48.837593163746334], [2.3455866950607502, 48.83763324948101], [2.345399729956187, 48.83767279421137], [2.345210989330675, 48.837712879342966], [2.345024023655456, 48.83775242348323], [2.344835283814951, 48.83779250802665], [2.344648317569185, 48.83783205157688], [2.344459577151428, 48.83787213552459], [2.344272610334918, 48.837911678484815], [2.344083869340015, 48.837951761836884], [2.34389690196419, 48.83799130330772], [2.343708160380625, 48.83803138696343], [2.343521192434274, 48.838070927844214], [2.343332448911091, 48.838111010896725], [2.343145480394122, 48.83815055118746], [2.342956737667415, 48.83819063275254], [2.342769768568396, 48.8382301733525], [2.3425810252645682, 48.83827025432188], [2.342394055594936, 48.83830979433178], [2.342205311713789, 48.83834987470547], [2.342108871753802, 48.83837026899938], [2.342066752321616, 48.8383640457558], [2.342038967572819, 48.83837226333562], [2.341948435901142, 48.83839140840111], [2.341752460899657, 48.83843428668198], [2.341565490013112, 48.83847382539101], [2.341369514375371, 48.838516703940634], [2.341182542914173, 48.83855624114888], [2.340986566651542, 48.83859911906794], [2.340799594604138, 48.83863865567471], [2.34072635025688, 48.838654680745734], [2.34071542818666, 48.838659033741195]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 11, "roussel_fabien": 28.0, "nb_emargement": 1293.0, "nb_procuration": 83.0, "nb_vote_blanc": 16.0, "jadot_yannick": 138.0, "le_pen_marine": 43.0, "nb_exprime": 1275.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 0, "nb_inscrit": 1578.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "19", "geo_point_2d": [48.83891936426403, 2.3450381645318674], "melenchon_jean_luc": 335.0, "poutou_philippe": 10.0, "macron_emmanuel": 490.0}, "geometry": {"type": "Point", "coordinates": [2.3450381645318674, 48.83891936426403]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b08c679d8073899df99bba3db6ffeccfa21f35ca", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 60, "zemmour_eric": 86.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-48", "geo_shape": {"coordinates": [[[2.34650232061075, 48.82492502158622], [2.346509571292598, 48.824929460962004], [2.346676444450502, 48.82494410173682], [2.346834534990304, 48.82495862235844], [2.346855427079506, 48.82496676700565], [2.346872375169988, 48.824955070534585], [2.347041908938343, 48.824891493906414], [2.347212954766019, 48.82482743872747], [2.347382487715316, 48.824763860709915], [2.347553532705847, 48.82469980503653], [2.347723064824717, 48.82463622652899], [2.34789410760493, 48.824572171253074], [2.34806363889348, 48.8245085922555], [2.348234682209724, 48.824444535593315], [2.34840421266805, 48.82438095610567], [2.348575255135912, 48.82431689984842], [2.3485798786357233, 48.824304099011776], [2.348464434116663, 48.82418938853812], [2.348348861775117, 48.824074701525205], [2.348233416910236, 48.823959990797725], [2.34811784559658, 48.823845302638816], [2.348002401747786, 48.8237305916649], [2.347886831439521, 48.82361590415862], [2.347771389969, 48.82350119294566], [2.347655820677354, 48.82338650519272], [2.347540378860995, 48.823271793725944], [2.347424810597217, 48.82315710482701], [2.34730936979691, 48.82304239311378], [2.347193803900459, 48.82292770487495], [2.347078364116391, 48.822812992915296], [2.346962797874543, 48.82269830442237], [2.346968450309061, 48.82268515039509], [2.347158569040392, 48.822627469833776], [2.347319170850379, 48.822578794337545], [2.347336155593756, 48.822581944030205], [2.347452522056302, 48.82269607712419], [2.34756860978201, 48.822810103342526], [2.347684977251349, 48.82292423708649], [2.3478010659935142, 48.823038263055984], [2.347917434480917, 48.82315239655058], [2.348033525601339, 48.82326642227867], [2.348149893744824, 48.82338055551646], [2.34826598588163, 48.823494580995735], [2.348382355054538, 48.82360871308483], [2.3484984481964988, 48.823722739214574], [2.348614818387392, 48.82383687105427], [2.348730912545764, 48.8239508969352], [2.348847283754859, 48.824065028525474], [2.348963378929652, 48.8241790541576], [2.348976488009316, 48.824182950577914], [2.349174065090246, 48.82416549616263], [2.3493755672811503, 48.82414795485163], [2.349573144095862, 48.82413049977649], [2.34977464600603, 48.82411295869177], [2.349972222554518, 48.82409550295673], [2.350173724206476, 48.824077960299725], [2.350371300488626, 48.82406050390478], [2.35057280049783, 48.824042961466745], [2.350770376513837, 48.8240255044119], [2.350971877626608, 48.82400796040897], [2.350985853809747, 48.824020881172316], [2.350903907726669, 48.82412968288267], [2.350823113503719, 48.824237291011784], [2.350741166752104, 48.82434609169034], [2.350660371857922, 48.824453699688796], [2.35057842577739, 48.82456250114156], [2.350497630211971, 48.82467010900935], [2.35041568210087, 48.82477890942293], [2.3503348858531, 48.824886518059316], [2.350344696351001, 48.824899365891255], [2.350533117428178, 48.82492155978173], [2.350697554284602, 48.824940290061335], [2.350861992609908, 48.82495902102122], [2.35105041277213, 48.82498121318876], [2.351214851353269, 48.8249999436628], [2.35136770077283, 48.825017946411535], [2.351385868015089, 48.82501393749564], [2.35139001134237, 48.824999610413215], [2.351535206454272, 48.82489961367887], [2.351675847417539, 48.82480258160101], [2.351821041432536, 48.82470258450208], [2.3519616826832133, 48.82460555297772], [2.352106875601314, 48.824505555514214], [2.352247514437715, 48.82440852273001], [2.352388152739468, 48.8243114906713], [2.352533344020739, 48.824211492663835], [2.352673981270248, 48.82411445935266], [2.3528191714546463, 48.82401446098063], [2.35282027911868, 48.82401377895157], [2.353004262831312, 48.82391261964031], [2.353173344506634, 48.823819493619915], [2.353178242052341, 48.82381228551828], [2.353171107379731, 48.823669788223135], [2.353164006454203, 48.82353401573893], [2.353161558444529, 48.82351966371846], [2.3531461265831233, 48.82351579296472], [2.352954485624241, 48.82351685801822], [2.352766182456218, 48.82351753431157], [2.352574541483178, 48.823518598756195], [2.352386238303943, 48.82351927445132], [2.352194595954857, 48.82352033827968], [2.352006292764318, 48.82352101337647], [2.35200205391402, 48.823520582988735], [2.351834605861504, 48.823484948719226], [2.351655656951042, 48.823446998917056], [2.351488209371591, 48.82341136416019], [2.351309260965706, 48.82337341383714], [2.351141813859323, 48.8233377785929], [2.350962864596233, 48.82329982774163], [2.350795417962924, 48.823264192010015], [2.350647056535054, 48.823232727567174], [2.350631412079577, 48.823223638039195], [2.3506169975671662, 48.82322603125392], [2.350586411606194, 48.82321954432428], [2.350405068086661, 48.82318120098914], [2.350226121259217, 48.823143249037514], [2.350044776908013, 48.823104905145996], [2.349865830604575, 48.82306695265263], [2.349684488145681, 48.823028608219545], [2.349505541004471, 48.82299065517709], [2.34932419908713, 48.82295230929571], [2.349145253820696, 48.82291435661824], [2.348963911071713, 48.822876010180494], [2.34878496634073, 48.82283805606202], [2.348781944585963, 48.82283713303234], [2.348604631861835, 48.82276440045889], [2.3484242697153173, 48.82268994757584], [2.348246959352736, 48.82261721446998], [2.348066598237342, 48.8225427601384], [2.347889287512158, 48.82247002648523], [2.347708927405399, 48.82239557250374], [2.347531617679785, 48.822322838310704], [2.347351258604162, 48.82224838288074], [2.3473313927963693, 48.8222526697205], [2.34726350427539, 48.82236478272529], [2.347202059826801, 48.82246858372345], [2.347195274946643, 48.82247341502305], [2.347025054292104, 48.82252744489934], [2.34686510306212, 48.822578214613095], [2.346857711707674, 48.82257904843846], [2.346732120472211, 48.82256991722784], [2.346605592317961, 48.82256208036838], [2.346585140283984, 48.82256302718433], [2.3465789179901693, 48.8225698041819], [2.346574850177526, 48.822700282752265], [2.346570762100588, 48.82282976828243], [2.346566694235983, 48.822960247721625], [2.346562604756422, 48.82308973321414], [2.346558536851222, 48.823220212622886], [2.346554448692903, 48.82334969809256], [2.34655038074701, 48.82348017747084], [2.346546292548052, 48.82360966291031], [2.346542223210735, 48.82374014135138], [2.346538134971134, 48.82386962676059], [2.34653406694385, 48.824000106077904], [2.346529978663609, 48.82412959145686], [2.346525909233614, 48.824260070736315], [2.346521820912729, 48.82438955608506], [2.346517752804051, 48.824520035341415], [2.346513664442525, 48.82464952065988], [2.346509594942393, 48.82477999897904], [2.346505506540324, 48.824909484267266], [2.34650232061075, 48.82492502158622]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 48, "roussel_fabien": 31.0, "nb_emargement": 1428.0, "nb_procuration": 57.0, "nb_vote_blanc": 15.0, "jadot_yannick": 138.0, "le_pen_marine": 74.0, "nb_exprime": 1405.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1787.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1428, "quartier_bv": "51", "geo_point_2d": [48.82376618413783, 2.3493058256387185], "melenchon_jean_luc": 486.0, "poutou_philippe": 11.0, "macron_emmanuel": 425.0}, "geometry": {"type": "Point", "coordinates": [2.3493058256387185, 48.82376618413783]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ed8c669101826e00e8e7f1ac7e9763adde12aaa8", "fields": {"lassalle_jean": 2.0, "pecresse_valerie": 152, "zemmour_eric": 161.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "16-19", "geo_shape": {"coordinates": [[[2.269516525299605, 48.85461483446516], [2.269509822967783, 48.854631528857524], [2.269463685153028, 48.8546448338282], [2.269345124449903, 48.85468040273535], [2.2692430849002783, 48.854709827260315], [2.269205101826737, 48.8547236666884], [2.269234528473729, 48.85476455058199], [2.269265860815906, 48.854883934223864], [2.269297084534466, 48.85500533984274], [2.269328417164658, 48.85512472344235], [2.269359639797938, 48.855246129909524], [2.269390972728858, 48.855365512567616], [2.269422195652178, 48.85548691899215], [2.269453528858609, 48.855606302507255], [2.269484753447307, 48.85572770799816], [2.269490062316984, 48.85573342256567], [2.269507699201812, 48.85574416426997], [2.269547799314948, 48.85572966135907], [2.269738456696401, 48.85568047439083], [2.26992611414376, 48.8556320503593], [2.270116769448097, 48.855582862775684], [2.270304426192223, 48.85553443814663], [2.27049208258765, 48.85548601322115], [2.27068273682336, 48.855436824729296], [2.27087039251565, 48.855388399206355], [2.27106104602448, 48.85533921100668], [2.271248701026209, 48.85529078398689], [2.271439353820742, 48.855241595180175], [2.271627008119216, 48.855193167562874], [2.271817661562361, 48.855143978157365], [2.272005315145109, 48.85509555084183], [2.272195966523598, 48.855046359921715], [2.272383619403291, 48.85499793200862], [2.272574270054907, 48.854948741380724], [2.272761922243993, 48.8549003119709], [2.272952572181294, 48.854851120735894], [2.273140223667207, 48.85480269072854], [2.273330872890187, 48.854753498886524], [2.273518523660284, 48.85470506918092], [2.273709173544379, 48.85465587584084], [2.273896822248499, 48.85460744552946], [2.274087471405624, 48.85455825248163], [2.274275120781995, 48.85450982068174], [2.274465767861986, 48.85446062701857], [2.274653416535165, 48.85441219462123], [2.274844062900816, 48.85436300035102], [2.275031710858288, 48.85431456825541], [2.2752223565221072, 48.85426537247893], [2.275240943617229, 48.85427398671968], [2.275237312448017, 48.854364554623935], [2.27523401435915, 48.85443137152722], [2.275237268744569, 48.854455096584196], [2.275259236404703, 48.854460634798166], [2.275462077055128, 48.854413822065], [2.275620284716846, 48.8543787389623], [2.275629279443567, 48.854371506795665], [2.275649744079269, 48.85427585327685], [2.275666995907215, 48.85417415188329], [2.275675418230873, 48.854166818216726], [2.275854695683112, 48.854118845896664], [2.276041032704859, 48.854068602865325], [2.276220309469987, 48.85402063089251], [2.276406647150761, 48.853970387295654], [2.276585923241375, 48.85392241477084], [2.276772258855606, 48.85387217059194], [2.276951534271806, 48.85382419751507], [2.27713787054505, 48.85377395277062], [2.277142079425908, 48.853759093774904], [2.2770126659586962, 48.853678325426586], [2.276859970386814, 48.853584448337564], [2.276730557778142, 48.85350368057075], [2.276577863226278, 48.85340980310704], [2.276448451501102, 48.85332903412312], [2.276295756593898, 48.85323515717566], [2.276166347102493, 48.8531543878822], [2.276013653215397, 48.85306051056007], [2.275884243232232, 48.85297974094053], [2.275824904907113, 48.852953749113794], [2.275804436460868, 48.85296570095956], [2.275778904942814, 48.852971775406374], [2.275746350758798, 48.852988040276884], [2.275556777224628, 48.85303332668483], [2.275374699601687, 48.85307729835386], [2.275185125419798, 48.853122584169355], [2.2750030471838683, 48.85316655437003], [2.274813473716927, 48.85321183960132], [2.274631393480329, 48.85325581012397], [2.274441819365682, 48.8533010947628], [2.274259738516114, 48.85334506381706], [2.2740701637412393, 48.85339034876276], [2.273888082266189, 48.853434317247896], [2.273706001846527, 48.85347828546254], [2.273516424742979, 48.85352356951722], [2.273334343697944, 48.85356753716279], [2.273144765959243, 48.85361281972575], [2.273140484561563, 48.85361335401986], [2.273067901327978, 48.8536146074748], [2.272970804135867, 48.85361801700236], [2.272967895511466, 48.85361832939491], [2.272763217389143, 48.853657801461736], [2.272560437650923, 48.85369481687248], [2.272355758931965, 48.85373428734034], [2.272152978606656, 48.85377130205801], [2.271948299266059, 48.85381077272547], [2.271745518353665, 48.85384778675009], [2.271742714109567, 48.853848527844214], [2.271585120083124, 48.85390349535755], [2.271416245499675, 48.85396321814946], [2.271258650781974, 48.85401818522715], [2.271089775452646, 48.85407790755214], [2.270932180031105, 48.854132875093484], [2.270763303955997, 48.8541925969515], [2.270762333744654, 48.854192975065814], [2.270598483035004, 48.85426081707102], [2.27047289283184, 48.854314495153474], [2.270347302369922, 48.85436817310157], [2.270183450569, 48.85443601452772], [2.270181664648657, 48.85443663678505], [2.270014974956321, 48.85448735122543], [2.269866799940894, 48.854530079663924], [2.269700109643084, 48.8545807936614], [2.269551934103743, 48.854623521706365], [2.269516525299605, 48.85461483446516]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 19, "roussel_fabien": 7.0, "nb_emargement": 1089.0, "nb_procuration": 66.0, "nb_vote_blanc": 10.0, "jadot_yannick": 37.0, "le_pen_marine": 46.0, "nb_exprime": 1072.0, "nb_vote_nul": 8.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1367.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1090, "quartier_bv": "62", "geo_point_2d": [48.85427705135271, 2.2729458021694566], "melenchon_jean_luc": 88.0, "poutou_philippe": 5.0, "macron_emmanuel": 551.0}, "geometry": {"type": "Point", "coordinates": [2.2729458021694566, 48.85427705135271]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0fac3f39bba484b8701593499ce3efa8bbfbfe9d", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 27, "zemmour_eric": 57.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-33", "geo_shape": {"coordinates": [[[2.355556543236465, 48.87652927552366], [2.35558242042497, 48.87653432609415], [2.3557057689880683, 48.87651704201471], [2.355844071265173, 48.876506636345546], [2.3558641615109392, 48.876515142436006], [2.355902539074674, 48.876500219425694], [2.356040842642297, 48.87648981263712], [2.356180598050468, 48.87648978822155], [2.356183850373533, 48.876489527818656], [2.35636976235542, 48.8764575345458], [2.356572752014745, 48.8764246012398], [2.356758663537093, 48.87639260646181], [2.3569616526862562, 48.87635967339367], [2.357147563738045, 48.87632767800988], [2.357350553762726, 48.87629474338841], [2.357536462969274, 48.87626274829072], [2.357739452494981, 48.87622981300785], [2.35792536124205, 48.87619781640506], [2.358071731895052, 48.87617406754264], [2.358112489440598, 48.87614971626976], [2.358069049260167, 48.87610686925478], [2.35799703385162, 48.875977441097895], [2.357937213568587, 48.87586469620237], [2.357877392181169, 48.87575195125819], [2.357805379102975, 48.87562252295167], [2.357745558279178, 48.87550977791685], [2.357673545863415, 48.87538034950262], [2.35761372560303, 48.875267604377115], [2.357577075414548, 48.87520173371774], [2.357567060143579, 48.875187663824235], [2.357556640764891, 48.87518225955716], [2.357521277863649, 48.8751187025794], [2.3574569021612612, 48.87500348940053], [2.357384889799431, 48.87487406074591], [2.357320514701, 48.87475884746814], [2.357248503016419, 48.8746294187028], [2.357184127147608, 48.874514206218116], [2.357112117503496, 48.87438477734934], [2.3570477422498293, 48.87426956386649], [2.356975733282738, 48.874140134887], [2.356911358633214, 48.874024921305256], [2.356839350343237, 48.87389549221501], [2.356774976286638, 48.87378027943366], [2.356761691754098, 48.87376469358949], [2.356703479108431, 48.8737831625128], [2.35649089054878, 48.87382670340103], [2.356276889077696, 48.87387113385185], [2.356064299802398, 48.87391467397899], [2.355850297605997, 48.87395910366363], [2.35563770761506, 48.87400264302974], [2.355423704693349, 48.87404707194818], [2.355415492033483, 48.8740517780211], [2.355355873165306, 48.874134229217226], [2.35529555495966, 48.87421809036911], [2.35528774538122, 48.87422272216006], [2.355110244573213, 48.874263750659125], [2.354917854806673, 48.87430822495836], [2.354740352052597, 48.874349252898405], [2.354547961654505, 48.87439372659974], [2.354370458317688, 48.8744347539881], [2.354178067287846, 48.87447922709152], [2.354000563368293, 48.87452025392817], [2.35380817170691, 48.87456472643367], [2.353630667204627, 48.874605752718686], [2.353438274911504, 48.874650224626244], [2.353260769826496, 48.87469125035959], [2.353114695240174, 48.87472501536654], [2.353089850137819, 48.87471489756868], [2.353062818580231, 48.87472735658058], [2.353016498865917, 48.874738062855755], [2.352845530457473, 48.87477844790114], [2.352653136845021, 48.874822919439126], [2.352482167876202, 48.874863303962435], [2.352289773651249, 48.87490777401376], [2.352118804122267, 48.87494815801504], [2.351926407899109, 48.8749926283708], [2.351755437809762, 48.875033011849986], [2.3515630423374683, 48.87507748072646], [2.3513920716767682, 48.87511786458286], [2.351199675580812, 48.87516233287193], [2.351028704370954, 48.87520271530694], [2.351019820738741, 48.87521253106431], [2.35103552714582, 48.875280825463385], [2.351054256094054, 48.87534213311179], [2.351055376122695, 48.87536582589609], [2.351110704904015, 48.875365190517265], [2.351302588888846, 48.87539868753488], [2.351491604526336, 48.87543163269923], [2.35168348898961, 48.87546513000357], [2.351872505120336, 48.87549807366526], [2.352064388709991, 48.87553157034962], [2.352253406674922, 48.87556451431454], [2.352442424890142, 48.87559745708075], [2.352634309212453, 48.87563095284861], [2.35282332789852, 48.875663895910655], [2.353015212721826, 48.875697390166664], [2.353204230526551, 48.87573033261792], [2.353396117191661, 48.875763827168015], [2.353585135489562, 48.8757967681166], [2.353777022644381, 48.87583026205407], [2.353966041413126, 48.8758632032985], [2.354157927694381, 48.875896696616074], [2.354346948319542, 48.875929636365186], [2.354538835090489, 48.87596312907012], [2.354727856197738, 48.875996068215805], [2.354919743458267, 48.87602956030818], [2.355108765036361, 48.87606249974972], [2.355300652786571, 48.876095991229505], [2.355309782390553, 48.87610127812445], [2.355317802379733, 48.8761146980249], [2.35538058306717, 48.87621585335762], [2.355430315405815, 48.87629908389448], [2.355488066605222, 48.87639573518191], [2.355550849325481, 48.876496890406905], [2.355556543236465, 48.87652927552366]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 33, "roussel_fabien": 19.0, "nb_emargement": 1142.0, "nb_procuration": 93.0, "nb_vote_blanc": 11.0, "jadot_yannick": 126.0, "le_pen_marine": 35.0, "nb_exprime": 1128.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 5, "nb_inscrit": 1471.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1142, "quartier_bv": "38", "geo_point_2d": [48.87523787164149, 2.3552522169908636], "melenchon_jean_luc": 414.0, "poutou_philippe": 1.0, "macron_emmanuel": 394.0}, "geometry": {"type": "Point", "coordinates": [2.3552522169908636, 48.87523787164149]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "741d8c25e1b52f4449c43b479f28070ce2250aae", "fields": {"lassalle_jean": 23.0, "pecresse_valerie": 36, "zemmour_eric": 77.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-24", "geo_shape": {"coordinates": [[[2.371962130797866, 48.82584983966327], [2.371975237703743, 48.825843688424364], [2.372080706885905, 48.82571601218583], [2.372173384856144, 48.825605223694524], [2.37226606244334, 48.82549443422115], [2.372371528844857, 48.825366757679284], [2.3723953586582702, 48.82533827094269], [2.372411682795473, 48.8253269057763], [2.372410785924913, 48.82532129796641], [2.372479632806994, 48.82523899504243], [2.372581459258866, 48.825117717128975], [2.372674135112355, 48.82500692729122], [2.372775962031314, 48.82488564829487], [2.372868637048174, 48.824774859182845], [2.372970463061563, 48.82465357999586], [2.373063137263439, 48.82454278981085], [2.373164960998232, 48.824421511325326], [2.373257634374319, 48.824310720966764], [2.373359458576406, 48.82418944139841], [2.3734521311159043, 48.82407865176551], [2.373553954412251, 48.82395737200651], [2.373646624774877, 48.823846581293544], [2.3736616306034852, 48.823842169307895], [2.3738722765571962, 48.82387447984912], [2.374077152297, 48.82391036810912], [2.37428780015644, 48.82394267702424], [2.374492675088216, 48.82397856456309], [2.374703323480764, 48.824010872744324], [2.374908200328428, 48.82404675957627], [2.37511884788118, 48.8240790679158], [2.37532372529369, 48.824114953134334], [2.375528602977449, 48.824150838900046], [2.375739251345796, 48.82418314524444], [2.375743787790418, 48.824184450535355], [2.375889587923669, 48.82424939725685], [2.376042608755482, 48.824316057006314], [2.376188409628987, 48.82438100335593], [2.376341429877832, 48.824447661808755], [2.376357800778076, 48.82444698091779], [2.376500533923135, 48.82436611232213], [2.376624488239891, 48.82429339113243], [2.3767672219128633, 48.82421252221453], [2.376891175492506, 48.82413980073843], [2.376914452547419, 48.82412118264585], [2.376894236770282, 48.82409780238358], [2.376723425291951, 48.82403844565127], [2.376538990934744, 48.82397702103344], [2.376538729113803, 48.823976932429005], [2.376366286144679, 48.82392012449331], [2.376181852626764, 48.823858699318194], [2.376009411799629, 48.82380189086901], [2.375824979109619, 48.82374046603635], [2.375652539062256, 48.82368365706662], [2.375468107221682, 48.823622230777765], [2.375295666592295, 48.823565421280314], [2.375111236941517, 48.82350399534105], [2.374938797102791, 48.823447184423706], [2.374754368290681, 48.82338575792762], [2.374581929221057, 48.82332894738898], [2.37439749989651, 48.82326751942965], [2.374225062968665, 48.823210708377545], [2.374040634472002, 48.823149280760646], [2.373868198334939, 48.823092468288706], [2.373683770676953, 48.82303104011499], [2.373511333946888, 48.82297422801466], [2.373326908500371, 48.82291279839189], [2.373154472550197, 48.822855985771014], [2.3731359005172292, 48.82286044825301], [2.373062436675104, 48.82297206515766], [2.373005577561436, 48.823058628807125], [2.373010378553474, 48.82306963536391], [2.373143581514039, 48.8231298130463], [2.373276532375999, 48.823188552950526], [2.3734097359475532, 48.82324873033008], [2.373542687412587, 48.823307469932196], [2.373547298818079, 48.82331896293286], [2.373522249268659, 48.82335081081572], [2.3734800191681202, 48.823406646773655], [2.373462230836767, 48.82341082561074], [2.373322306358406, 48.8233691222376], [2.373181636805174, 48.82332630676122], [2.373041714140059, 48.82328460306375], [2.372901045045271, 48.82324178725409], [2.372882894404273, 48.82324630676788], [2.37285489623493, 48.82328795574171], [2.372828742484708, 48.823327773358294], [2.3728107211072382, 48.82333241405533], [2.3727092514000843, 48.82330267458132], [2.37264951428453, 48.82328297605111], [2.37264277920249, 48.82327083961168], [2.372727433195281, 48.82315529745008], [2.372812672164685, 48.82303989589136], [2.372897325395216, 48.8229243544851], [2.372982563611151, 48.82280895278155], [2.372976402890874, 48.82279696326774], [2.372786986316838, 48.8227345550845], [2.372626837671733, 48.822681774184744], [2.372466689340038, 48.822628993967406], [2.372277275348178, 48.82256658497456], [2.37211712773497, 48.82251380338436], [2.371927713218005, 48.8224513938243], [2.371927144651999, 48.8224512172583], [2.371766997736742, 48.82239843609308], [2.371641054017128, 48.822361631998696], [2.371600821128348, 48.82237167167744], [2.37159693909241, 48.82238107135106], [2.3714127038753983, 48.82241584157685], [2.37123423875013, 48.82244941960578], [2.371050001687872, 48.82248418926352], [2.370871536095089, 48.82251776674912], [2.370687298560217, 48.82255253494658], [2.370508832489069, 48.82258611278816], [2.370324594470942, 48.82262088042472], [2.370146127932284, 48.82265445772294], [2.369961889430705, 48.82268922479857], [2.369783422424543, 48.822722801553425], [2.36959918343972, 48.82275756806815], [2.36942071596606, 48.82279114427969], [2.369236476497796, 48.82282591023348], [2.369058008556745, 48.822859485901645], [2.368873769967132, 48.822894251301676], [2.368695301558493, 48.82292782642649], [2.368687671636271, 48.82293151586103], [2.368664827562653, 48.82295433296117], [2.368653726855981, 48.82298020428432], [2.368649828239653, 48.822983164235396], [2.368651631381248, 48.82300174138754], [2.368652377338301, 48.82301077686675], [2.3686620530774602, 48.823018898057924], [2.3688460077816362, 48.82305545205639], [2.369029939848389, 48.823092547074566], [2.369213895070323, 48.82312910050468], [2.369397826307604, 48.8231661940481], [2.369581783409277, 48.82320274691709], [2.36976571515711, 48.82323984079155], [2.369949671414536, 48.82327639308504], [2.370133605056755, 48.823313485499064], [2.370317561831917, 48.82335003722425], [2.370501494622796, 48.823387129962164], [2.370685453277689, 48.82342368112619], [2.370869386600935, 48.82346077239648], [2.370877952268239, 48.82347287899393], [2.370804245537199, 48.82358789644148], [2.370728280633112, 48.82370648686309], [2.370654574603667, 48.82382150420166], [2.370578607645923, 48.82394009539569], [2.370504900956058, 48.824055112618105], [2.370428933317504, 48.824173703692395], [2.370355225978074, 48.82428871989928], [2.370279259020624, 48.824407310861], [2.370205549647875, 48.82452232784388], [2.370129582009704, 48.82464091868584], [2.370055873338539, 48.824755935559715], [2.369979903657505, 48.824874526274776], [2.369906194336757, 48.824989542133125], [2.369846156071706, 48.82508326442515], [2.369847607240984, 48.82508953172146], [2.369868422120987, 48.82509636063236], [2.370055338140546, 48.825156691546226], [2.370242489979398, 48.82521693076868], [2.37042940686416, 48.8252772610914], [2.370616558216811, 48.82533749881548], [2.370803475955713, 48.82539782944638], [2.370990628173341, 48.82545806657861], [2.371177546788293, 48.825518395719044], [2.371364699860048, 48.825578633158706], [2.371551619339992, 48.82563896170798], [2.371738773287563, 48.82569919765645], [2.371742797737501, 48.82570117044121], [2.371839627575381, 48.82577018263569], [2.371942282793857, 48.82584490488796], [2.371962130797866, 48.82584983966327]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 24, "roussel_fabien": 26.0, "nb_emargement": 1124.0, "nb_procuration": 33.0, "nb_vote_blanc": 17.0, "jadot_yannick": 67.0, "le_pen_marine": 82.0, "nb_exprime": 1099.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1485.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1124, "quartier_bv": "50", "geo_point_2d": [48.82389582942021, 2.3721768271948998], "melenchon_jean_luc": 459.0, "poutou_philippe": 8.0, "macron_emmanuel": 280.0}, "geometry": {"type": "Point", "coordinates": [2.3721768271948998, 48.82389582942021]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1471c3fdfb7f494335317d5b25ded4a55eb82415", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 68, "zemmour_eric": 86.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "17-68", "geo_shape": {"coordinates": [[[2.307792068433228, 48.89184755820509], [2.307783068703519, 48.891871841961894], [2.307941614662552, 48.89194429530255], [2.308098175068671, 48.89201584032478], [2.308256723268445, 48.89208829324657], [2.308413284540431, 48.89215983784744], [2.30857183225348, 48.8922322903347], [2.308728394379496, 48.89230383541343], [2.308886944333196, 48.89237628748182], [2.30904350733723, 48.892447831239934], [2.309202056804101, 48.892520282873726], [2.309358620674108, 48.89259182621045], [2.309517172381743, 48.892664277425375], [2.309673737117728, 48.89273582034074], [2.30983228833853, 48.89280827112108], [2.309988853928575, 48.89287981451429], [2.3101454199608, 48.89295135679891], [2.310303973858102, 48.89302380694835], [2.31046054075621, 48.893095348811556], [2.310619094166676, 48.893167798526385], [2.310775661930868, 48.89323933996822], [2.3109342175821252, 48.893311789264175], [2.311090786212306, 48.893383330284585], [2.311249341376721, 48.89345577914595], [2.311249904164871, 48.89345602340197], [2.311300905146641, 48.89345236958851], [2.311329614653129, 48.893441074597895], [2.311479130137217, 48.893358424822765], [2.3116248664214583, 48.89328232899866], [2.3117743809928912, 48.8931996779437], [2.311920116401277, 48.893123581749286], [2.312069630048264, 48.8930409303137], [2.312215364580696, 48.89296483374894], [2.312364877291265, 48.89288218283204], [2.3125106109598272, 48.89280608499775], [2.312660121382061, 48.89272343369238], [2.312805854162805, 48.89264733638701], [2.312955365036184, 48.89256468380971], [2.31310109694119, 48.89248858613401], [2.313246828420109, 48.89241248827565], [2.313396337919107, 48.89232983513006], [2.313396516466056, 48.892329740825254], [2.313397159168866, 48.8923294063639], [2.313530020860639, 48.89225760958203], [2.31368430531692, 48.89218223021141], [2.313817166249037, 48.8921104322021], [2.313971449853501, 48.89203505245139], [2.3140243657407282, 48.892008189654845], [2.314055902131442, 48.89199216085711], [2.3140571362067233, 48.89199145296209], [2.314077292978205, 48.89197839060024], [2.31423157582666, 48.89190300960606], [2.314318923700259, 48.89185800480199], [2.314411668318109, 48.891811438125046], [2.314565950175933, 48.89173605758784], [2.314677621481197, 48.89167988901361], [2.314831902564198, 48.89160450812472], [2.315016172192042, 48.89151186963908], [2.315016339645932, 48.891511788758315], [2.315170982133573, 48.89143861464218], [2.315355249195544, 48.89134597651222], [2.315509889350772, 48.89127280193963], [2.3156627091363973, 48.89119811398699], [2.315817348420492, 48.891124939007454], [2.315970165967358, 48.89105025064462], [2.316124804380222, 48.89097707525818], [2.3162776210520972, 48.890902386492904], [2.316432258593632, 48.89082921069954], [2.316585074390619, 48.890754521531846], [2.3167397110609302, 48.89068134533159], [2.316739923842808, 48.89068123952586], [2.316748264803968, 48.8906769946325], [2.316899691523056, 48.89060561654746], [2.317054328672734, 48.890532439938745], [2.317205754551766, 48.89046106145723], [2.317306567843559, 48.89040087234387], [2.317324676857099, 48.89038306998774], [2.3173065094476533, 48.890362679392254], [2.31727730954329, 48.890331931294874], [2.3172426674700652, 48.89029311397354], [2.317209601385573, 48.890264537271534], [2.317208109843098, 48.89025524501282], [2.317243289187177, 48.89020607434583], [2.3172849572472938, 48.89017959741188], [2.317304208745713, 48.89016826863126], [2.317273032112602, 48.89014526865164], [2.31729006740506, 48.89012145806531], [2.31726465109225, 48.890092356613636], [2.317264590633168, 48.89009228702072], [2.317167083065582, 48.88998291421751], [2.3170714615748498, 48.889875657404154], [2.316973954818498, 48.889766284422066], [2.316878335475225, 48.889659028340326], [2.316878085342966, 48.88965875891371], [2.316771814979294, 48.88954860369127], [2.316665631173357, 48.889438537888324], [2.316559446452708, 48.889328471972384], [2.316453177437303, 48.88921831643403], [2.316346994978427, 48.88910825031544], [2.316240725498201, 48.88899809455861], [2.316134543937479, 48.888888028229516], [2.316028275356134, 48.8887778722621], [2.316027821561602, 48.888777430797674], [2.315949207720368, 48.88870571173171], [2.315811428176255, 48.88858001499424], [2.315724941843107, 48.888503835976294], [2.315724487391749, 48.88850344486921], [2.315601821203884, 48.888403555932506], [2.315483134633287, 48.888306907407795], [2.315360468007612, 48.88820701819816], [2.315241782321127, 48.88811037031619], [2.315119116621529, 48.888010480841444], [2.315000431842694, 48.887913831803694], [2.3148777670690652, 48.887813942063794], [2.314759083186151, 48.88771729276956], [2.314636420702151, 48.887617402772335], [2.31451773770331, 48.88752075412082], [2.314395074781589, 48.88742086385073], [2.314276392690591, 48.8873242140434], [2.314268400909109, 48.8873131532829], [2.314250268245409, 48.88731349190496], [2.314185713463294, 48.88732680277386], [2.314002236451651, 48.88736463604618], [2.313889361054779, 48.88738791057191], [2.313840718819363, 48.887382341973705], [2.313834356926935, 48.887390106302526], [2.313650879437067, 48.887427939034275], [2.31349919352276, 48.887463789078474], [2.313347508751397, 48.88749963983641], [2.313164030521773, 48.887537471818355], [2.312958936468429, 48.88757975977678], [2.312775459037862, 48.88761759116841], [2.312774756343826, 48.88761772203475], [2.31262713165466, 48.887642534327384], [2.312479974260694, 48.88766726818178], [2.31233281536326, 48.887692001846936], [2.31218519025303, 48.88771681359302], [2.312184020760942, 48.88771697415031], [2.311946586497913, 48.88774254401769], [2.3117100601835983, 48.88776801611062], [2.311709423902844, 48.88776807450679], [2.31145783671498, 48.88778720558704], [2.311202911601124, 48.88780659033396], [2.311196557016527, 48.88780820135042], [2.311005006953414, 48.887898272419676], [2.310795897724232, 48.888001333650855], [2.310769188790851, 48.88799956021916], [2.310762505173716, 48.888027262466935], [2.310703358604331, 48.88809311534212], [2.310651625470164, 48.88815071455127], [2.310646421144006, 48.88815402649728], [2.31047729045865, 48.88821485367839], [2.310306142300028, 48.88827640644887], [2.31013701218347, 48.888337233150395], [2.309965863232293, 48.8883987845284], [2.309796730956959, 48.888459610734614], [2.309625581189393, 48.88852116251867], [2.309456448119171, 48.88858198823749], [2.309285297547133, 48.888643539528275], [2.309276153859508, 48.888651834356054], [2.309285581991849, 48.888663631284146], [2.309368318047927, 48.88877335542677], [2.30945134928598, 48.888883471510376], [2.309534084677071, 48.8889931955086], [2.309617116628156, 48.889103310555974], [2.309619336090915, 48.889105426882736], [2.309754490758195, 48.889201373032904], [2.309891534757278, 48.889298658216575], [2.310026690439589, 48.889394603143366], [2.310163735443782, 48.889491888897645], [2.310298892129212, 48.889587833500315], [2.310435936798835, 48.8896851180188], [2.310571095851111, 48.8897810623052], [2.310708141525866, 48.88987834739432], [2.310707885755573, 48.88989076564236], [2.310574953200093, 48.889980124701964], [2.31043149844916, 48.89007586220264], [2.310298566298633, 48.89016522184743], [2.310155109165929, 48.89026095899304], [2.31002217608044, 48.89035031741667], [2.30987871792949, 48.89044605421499], [2.309745783885302, 48.890535413216], [2.309602324716194, 48.89063114966701], [2.309469389736939, 48.89072050744683], [2.309325929549773, 48.890816243550596], [2.309192993611693, 48.890905601907775], [2.309049532406254, 48.89100133766426], [2.308916595533204, 48.89109069480025], [2.308773133309692, 48.89118643020945], [2.308640195477795, 48.891275787922744], [2.308496733599763, 48.89137152299254], [2.308363793457281, 48.89146088037607], [2.308220330573007, 48.89155661419928], [2.308087389483495, 48.89164597126091], [2.307943925569082, 48.89174170563606], [2.307810983532732, 48.89183106237572], [2.307792068433228, 48.89184755820509]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 68, "roussel_fabien": 13.0, "nb_emargement": 1270.0, "nb_procuration": 56.0, "nb_vote_blanc": 13.0, "jadot_yannick": 108.0, "le_pen_marine": 50.0, "nb_exprime": 1250.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1406.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1269, "quartier_bv": "67", "geo_point_2d": [48.89028586508233, 2.312616958454728], "melenchon_jean_luc": 376.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}, "geometry": {"type": "Point", "coordinates": [2.312616958454728, 48.89028586508233]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bdb47343f201a34eb84b2751383fa5ed62d4c897", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 55, "zemmour_eric": 74.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-69", "geo_shape": {"coordinates": [[[2.361084171041563, 48.82471261499476], [2.361018543372437, 48.82470209779701], [2.360833408000403, 48.8246533731329], [2.3606502732404833, 48.82460536758272], [2.360465138545056, 48.824556643243604], [2.360282003113091, 48.82450863621872], [2.360098869369261, 48.824460629817935], [2.3599137357029782, 48.824411904618934], [2.3597306026381, 48.82436389765007], [2.359545469670504, 48.82431517097744], [2.359362337284485, 48.82426716344045], [2.359177205004541, 48.8242184361935], [2.358994073297385, 48.82417042808847], [2.35880894169404, 48.82412170116653], [2.358625810665747, 48.82407369249339], [2.35844067976112, 48.82402496409782], [2.358257549411698, 48.82397695485664], [2.358072419194736, 48.82392822588678], [2.358031819352098, 48.82389972073486], [2.358020662009121, 48.823903197187725], [2.3579982970278213, 48.82397142257165], [2.35798418954433, 48.824016589087634], [2.357941729419514, 48.82414611241704], [2.35790144589933, 48.82427838420789], [2.35785898535576, 48.82440790747766], [2.35781870142339, 48.8245401792098], [2.357776240461161, 48.82466970242005], [2.357735956105416, 48.824801974992766], [2.357693494724421, 48.824931498143435], [2.357653209967554, 48.82506376975816], [2.357610748167787, 48.82519329284922], [2.3575704629988152, 48.82532556440523], [2.357528000780168, 48.82545508743675], [2.357487715187901, 48.82558735983335], [2.357445252561554, 48.82571688190594], [2.357404967919125, 48.825849154251166], [2.357362503500844, 48.82597867715618], [2.357334147289103, 48.82607178010124], [2.357334484481601, 48.826086968764216], [2.357339951767179, 48.82609340349579], [2.357328021572805, 48.8261325719304], [2.357318788164764, 48.82616059810589], [2.35732067418349, 48.82616484070128], [2.3573732935476572, 48.82616836931541], [2.3575802855601, 48.826167213212216], [2.357788971172762, 48.826165907555676], [2.357995963166312, 48.82616475073304], [2.3582046487586013, 48.82616344435114], [2.358411640733145, 48.826162286809], [2.35862032766722, 48.826160979709066], [2.358827318260678, 48.82615982144015], [2.35903600517456, 48.82615851361485], [2.359242995748987, 48.82615735462649], [2.359451682642463, 48.82615604607583], [2.359658673197849, 48.82615488636799], [2.359867360071008, 48.82615357709198], [2.3599355063921372, 48.8261732064569], [2.359938566720952, 48.826171129990875], [2.359958008584881, 48.826146155874085], [2.360052231303434, 48.82602854160069], [2.360145816623117, 48.82590833363221], [2.360240038488201, 48.825790719185946], [2.36033362158603, 48.825670511037735], [2.360427842597556, 48.825552896418586], [2.360521426186522, 48.82543268900461], [2.3606156463556323, 48.82531507331322], [2.360709229084721, 48.82519486572678], [2.360803447027425, 48.825077250754596], [2.360897028907578, 48.82495704209641], [2.360991247358897, 48.824839426958654], [2.361084828379191, 48.82471921812803], [2.361084171041563, 48.82471261499476]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 69, "roussel_fabien": 21.0, "nb_emargement": 1141.0, "nb_procuration": 66.0, "nb_vote_blanc": 13.0, "jadot_yannick": 87.0, "le_pen_marine": 55.0, "nb_exprime": 1120.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1419.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1141, "quartier_bv": "51", "geo_point_2d": [48.825184083330484, 2.359018456295396], "melenchon_jean_luc": 397.0, "poutou_philippe": 11.0, "macron_emmanuel": 364.0}, "geometry": {"type": "Point", "coordinates": [2.359018456295396, 48.825184083330484]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "81e948473e51d38145f0a685dd97ef25be382b73", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 88, "zemmour_eric": 80.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-5", "geo_shape": {"coordinates": [[[2.39719391370393, 48.84303002064479], [2.397228664565792, 48.84301978208008], [2.397321053575299, 48.84290761105041], [2.397415525122433, 48.842797951545435], [2.397507913336549, 48.84268578034918], [2.39760238407804, 48.842576121574105], [2.397694770134278, 48.84246395020438], [2.397789241453429, 48.842354290367545], [2.397802480234461, 48.84234979006841], [2.397986822473523, 48.842362310622235], [2.398170780888718, 48.842374448531785], [2.398355124665865, 48.84238696852464], [2.398539083243585, 48.842399106766855], [2.398723427196416, 48.84241162619191], [2.39890738459471, 48.84242376296139], [2.399091728723315, 48.842436281818635], [2.399275687646528, 48.84244841892761], [2.3994600319507002, 48.842460937217055], [2.399643989694661, 48.84247307285328], [2.399828334174491, 48.8424855905749], [2.400012293443369, 48.84249772655066], [2.400196638098851, 48.842510243704474], [2.400380597540399, 48.842522379113646], [2.400385897723913, 48.84252203784237], [2.400583644715633, 48.84248254064053], [2.400777425375467, 48.84244087827499], [2.400975171752211, 48.842401381322404], [2.401168951797421, 48.84235971831968], [2.401270940354694, 48.84233918472409], [2.401254351947212, 48.8423029528919], [2.401207940814775, 48.842175930848626], [2.40116057734749, 48.842045719376], [2.401114168035135, 48.841918697273925], [2.401066803673296, 48.841788485727314], [2.401020394818527, 48.8416614635596], [2.400973030914384, 48.84153125284517], [2.400926622527527, 48.841404229712495], [2.40087926045388, 48.84127401893777], [2.400860549003727, 48.84122280744585], [2.40086298663433, 48.84121592606624], [2.400849866321106, 48.84118504201032], [2.400822167152851, 48.841109230285184], [2.400774605367745, 48.84098126683018], [2.400728196581373, 48.84085424445043], [2.400680633897303, 48.84072628092203], [2.400634226929436, 48.840599258483635], [2.400607449691107, 48.84052721600526], [2.400596202113709, 48.84049831717798], [2.400495148697113, 48.84050666228104], [2.40032648784298, 48.84049629268128], [2.40015195316651, 48.84048984157917], [2.399983292435189, 48.84047947149542], [2.399808757857527, 48.84047301989247], [2.399640097248925, 48.84046264932468], [2.399465562770076, 48.8404561972209], [2.399453244882229, 48.84046041093913], [2.399349809901816, 48.84056970526273], [2.399243677347672, 48.84068095463965], [2.399140240138053, 48.840790247854315], [2.399034106687511, 48.84090149702331], [2.398930669952851, 48.84101079094137], [2.398824535616274, 48.84112203900318], [2.398808893867725, 48.84112582044538], [2.398608223416556, 48.84108388642727], [2.398416384241611, 48.84104191104232], [2.398215714439785, 48.84099997546336], [2.398023875889797, 48.840957999445756], [2.397823206716354, 48.84091606410453], [2.397631370153783, 48.84087408746123], [2.397439532537753, 48.84083211050187], [2.397238864329545, 48.8407901732764], [2.397047027338487, 48.840748195684434], [2.396846359758865, 48.8407062586967], [2.396654523392782, 48.840664280472176], [2.39645385646236, 48.84062234192358], [2.396262020721263, 48.84058036306642], [2.396061354419325, 48.84053842475559], [2.396058587039222, 48.840537613051524], [2.395897001722956, 48.84047687007992], [2.395732069199148, 48.84041318165955], [2.395570484649168, 48.84035243824012], [2.395405552918088, 48.84028874936252], [2.395366775010904, 48.84027417079393], [2.395355679482551, 48.84027188249851], [2.39532015796157, 48.84029805690587], [2.395244138387218, 48.8403707699284], [2.395162878605486, 48.84044663654176], [2.395086857232567, 48.840519349447774], [2.395005596979921, 48.84059521684351], [2.394987405775333, 48.84059771409859], [2.394852324013813, 48.8405436241183], [2.394706796186077, 48.84048214504257], [2.39468868773038, 48.84048420648128], [2.394571455045556, 48.84058391796644], [2.394473627298895, 48.84066951047173], [2.394375797868375, 48.840755102883506], [2.394258565338118, 48.84085481404475], [2.394160735196266, 48.84094040716578], [2.394078019209328, 48.841010758859916], [2.39406569060765, 48.84102650985889], [2.394096907050065, 48.84104832816024], [2.394251139767416, 48.841124323621614], [2.394407547019905, 48.84120470077369], [2.394561780652919, 48.8412806958239], [2.394718187501684, 48.84136107165236], [2.39487242205036, 48.84143706629141], [2.395028829836979, 48.84151744260177], [2.395034042408931, 48.84152382203801], [2.395035967853288, 48.84153906602531], [2.395050384862675, 48.841658092706005], [2.3950636309516042, 48.841762963831286], [2.395078802552993, 48.841883079826474], [2.395093221117949, 48.842002106472215], [2.395107638386169, 48.84212113309667], [2.395122810193239, 48.842241249047746], [2.395137228957681, 48.84236027564996], [2.39515240090256, 48.84248039157155], [2.395166819800737, 48.8425994181447], [2.395181991893863, 48.84271953313748], [2.39519640956337, 48.84283855967469], [2.395211581783769, 48.84295867553728], [2.395226708023487, 48.842995162527565], [2.395242532700523, 48.842996471949164], [2.395431974272263, 48.8429975778687], [2.395627157367205, 48.84300059395215], [2.395816600334923, 48.84300169837021], [2.396011783467552, 48.84300471382611], [2.396201226458391, 48.84300581763509], [2.396396409628696, 48.84300883246346], [2.3965858526322372, 48.843009936562666], [2.396781035850621, 48.8430129498642], [2.396970478877273, 48.84301405335429], [2.397165662133308, 48.843017066028295], [2.39719391370393, 48.84303002064479]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 5, "roussel_fabien": 19.0, "nb_emargement": 1191.0, "nb_procuration": 74.0, "nb_vote_blanc": 15.0, "jadot_yannick": 97.0, "le_pen_marine": 81.0, "nb_exprime": 1172.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1480.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1191, "quartier_bv": "46", "geo_point_2d": [48.841650357500185, 2.397660542858255], "melenchon_jean_luc": 280.0, "poutou_philippe": 8.0, "macron_emmanuel": 461.0}, "geometry": {"type": "Point", "coordinates": [2.397660542858255, 48.841650357500185]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4d05c67f9833a3f83ac562e38ded4059ddb0672a", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 32, "zemmour_eric": 52.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-55", "geo_shape": {"coordinates": [[[2.416326245505095, 48.84842394088184], [2.416299611369545, 48.84842625178648], [2.416082852042548, 48.848448025039254], [2.415859518232165, 48.84847045830205], [2.415642757164683, 48.84849223164931], [2.415419422975406, 48.84851466408972], [2.4154038693334092, 48.84850698047355], [2.415373979926798, 48.848361312950495], [2.4153442651581, 48.848216491644706], [2.415314376074612, 48.84807082496809], [2.415284660274541, 48.84792600360306], [2.415254771534354, 48.84778033597422], [2.415225057418103, 48.84763551546258], [2.415213897031743, 48.84762786228083], [2.4150294898645, 48.84760662102009], [2.414848644411113, 48.847585788112546], [2.414664237541627, 48.84756454628802], [2.41448339237026, 48.84754371372688], [2.414298987171176, 48.847522470445995], [2.414118142291729, 48.84750163733196], [2.413937297556973, 48.84748080394424], [2.4137528914404722, 48.84745955981374], [2.413572046997749, 48.84743872587314], [2.413387642541668, 48.84741748118554], [2.413374623452118, 48.847420751252564], [2.413265509279278, 48.84751153110865], [2.413156969736495, 48.847601830725694], [2.413047854815505, 48.84769260946923], [2.412939315881085, 48.8477829088808], [2.412830200191787, 48.84787368831039], [2.41272166050309, 48.84796398750986], [2.412713094243035, 48.847967282958884], [2.412463746041056, 48.84799307077884], [2.412204028996815, 48.848019929530665], [2.412193137192627, 48.84803150554953], [2.412248154510649, 48.84814727970745], [2.412302895177413, 48.8482624732848], [2.412357912983111, 48.84837824736824], [2.412412654135103, 48.84849344087149], [2.412467672428483, 48.848609214880454], [2.412522415418238, 48.84872440921557], [2.412514048030358, 48.84873555696963], [2.412311876161629, 48.848783812596466], [2.412126838562868, 48.84882797817938], [2.412096217556038, 48.848835286944464], [2.412092244394048, 48.84884091715108], [2.412101593097507, 48.848854769042646], [2.412222233017007, 48.84896148351754], [2.41233853241399, 48.84906922967977], [2.412340951802028, 48.8490755855914], [2.412315420884894, 48.84920768109729], [2.412289924509667, 48.84933960227815], [2.412264393333739, 48.84947169774181], [2.412238896700163, 48.84960361888055], [2.412213366628228, 48.84973571430868], [2.412187868383752, 48.849867634499205], [2.412162338042978, 48.84999973078444], [2.412136840902841, 48.850131650939474], [2.412111308950811, 48.85026374627648], [2.412085811542167, 48.850395667288694], [2.412060279331429, 48.85052776258348], [2.412034781664421, 48.8506596835535], [2.412009249194969, 48.850791778806055], [2.411983751269592, 48.850923699733876], [2.411958219904149, 48.851055794950895], [2.411932720367823, 48.85118771493056], [2.411907188743665, 48.851319810105345], [2.411881690301543, 48.85145173094882], [2.411856157055932, 48.85158382607467], [2.41183065835543, 48.85171574687597], [2.411805124851089, 48.851847841959554], [2.411779625892202, 48.85197976271866], [2.411754092129129, 48.85211185776], [2.411728592922006, 48.85224377757763], [2.411703060252805, 48.85237587348273], [2.41167755942453, 48.85250779325144], [2.411652026506748, 48.852639888214995], [2.411626526772687, 48.852771808847514], [2.411626533351208, 48.85277412290474], [2.411647927097991, 48.852881169683066], [2.411669354465494, 48.8529883847904], [2.411690748378061, 48.85309543243974], [2.41171217728456, 48.85320264752541], [2.411712019738048, 48.85320561729926], [2.4116790533420263, 48.8533125118681], [2.411646475766589, 48.853418151041005], [2.411613896706528, 48.85352378928894], [2.411580929907921, 48.85363068380017], [2.4115665923870733, 48.853666319217545], [2.411578889743212, 48.85367062911258], [2.411717814585164, 48.853696068572425], [2.411907257220466, 48.85372830432374], [2.412104839488368, 48.85376448473477], [2.412294283984668, 48.85379671897876], [2.412491866780713, 48.85383289874847], [2.412681310392221, 48.85386513327032], [2.412878895079202, 48.85390131240547], [2.41306833918909, 48.85393354541326], [2.413265923041398, 48.85396972390039], [2.413455367629188, 48.85400195719279], [2.413652953372421, 48.854038135045315], [2.413842398458459, 48.85407036682367], [2.414039983367101, 48.85410654402818], [2.41422943029395, 48.85413877609777], [2.414427015730599, 48.854174952660976], [2.4146164617928623, 48.854207183209866], [2.414805908079487, 48.854239414357146], [2.415003495660682, 48.85427558997186], [2.415192942445508, 48.85430781960509], [2.415390529192079, 48.854343994571856], [2.415411366734103, 48.854339557370096], [2.415424628538278, 48.854305320151575], [2.41543908928421, 48.8542224008148], [2.415463284675175, 48.854087503568216], [2.415485339703026, 48.85396103892139], [2.4155095348629843, 48.85382614073442], [2.4155315896680642, 48.85369967604936], [2.415555784576843, 48.85356477872058], [2.415577837796163, 48.85343831399062], [2.415602032473946, 48.85330341572148], [2.415624086833293, 48.853176950959934], [2.415648281259906, 48.85304205354902], [2.415670335406374, 48.8529155878499], [2.415670412563622, 48.85291514844528], [2.415694606748752, 48.852780250993234], [2.415713108365963, 48.852674153446486], [2.415731609907833, 48.85256805588674], [2.415755803773382, 48.85243315838023], [2.415774305142654, 48.852327060790884], [2.415798498785784, 48.852192163246514], [2.415804551555633, 48.85215807868915], [2.415810112701839, 48.852126758128094], [2.415811568754379, 48.85211856227368], [2.415813910725179, 48.85210537396068], [2.415838104162855, 48.851970476381396], [2.415864419929505, 48.851822276073975], [2.41588861310499, 48.851687378450144], [2.415914929947867, 48.85153917810053], [2.41593912287114, 48.85140427953288], [2.4159654380646662, 48.851256079127765], [2.415989630715779, 48.85112118141488], [2.415999238277011, 48.851067073052334], [2.415999562679934, 48.85106524355918], [2.416015426363686, 48.85097590311291], [2.41604405927743, 48.8508027659741], [2.416066225456926, 48.850677928327485], [2.416066263214822, 48.850677720761844], [2.416079280667993, 48.8506129950955], [2.416101446692467, 48.850488156521784], [2.416123773294694, 48.850360653039104], [2.416145939105246, 48.85023581442886], [2.416168264137974, 48.85010831000304], [2.41619043108723, 48.84998347226215], [2.416212755902992, 48.84985596779915], [2.416234921275633, 48.849731130015094], [2.416257247237022, 48.84960362552148], [2.416279412395751, 48.849478787700896], [2.416301738140274, 48.84935128317005], [2.416315080119811, 48.849276142699374], [2.416317098948526, 48.84926477215554], [2.416317922197631, 48.84926013461912], [2.416340246391582, 48.849132630049425], [2.416359913764073, 48.84902186292485], [2.41638223774314, 48.848894359219365], [2.4164019049364542, 48.84878359206419], [2.416376552539175, 48.848657569032554], [2.416341732994582, 48.84848900721318], [2.416331808986382, 48.84843967700576], [2.416326245505095, 48.84842394088184]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 55, "roussel_fabien": 14.0, "nb_emargement": 964.0, "nb_procuration": 23.0, "nb_vote_blanc": 10.0, "jadot_yannick": 40.0, "le_pen_marine": 93.0, "nb_exprime": 949.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1443.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 964, "quartier_bv": "80", "geo_point_2d": [48.85090947849475, 2.41398537458514], "melenchon_jean_luc": 452.0, "poutou_philippe": 9.0, "macron_emmanuel": 206.0}, "geometry": {"type": "Point", "coordinates": [2.41398537458514, 48.85090947849475]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2e64d6c866800c9a473202b19f6336c4423d509f", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 84, "zemmour_eric": 77.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "6-19", "geo_shape": {"coordinates": [[[2.331578011813548, 48.84714125266115], [2.3315732743079423, 48.84712952281082], [2.331567188150243, 48.84699462964937], [2.331559666170507, 48.84686363527311], [2.331553580078981, 48.84672874207879], [2.331546058160291, 48.84659774856971], [2.33153997213514, 48.84646285534249], [2.3315324502890302, 48.84633186180129], [2.331524928480733, 48.84620086824423], [2.3315188439306382, 48.84606597407625], [2.331511320832437, 48.84593498047946], [2.331505236337071, 48.84580008717787], [2.331507351002175, 48.845795001411055], [2.331618589759493, 48.845679293168196], [2.3317276789608252, 48.84556625470302], [2.331838916740726, 48.8454505462316], [2.331948006336405, 48.84533750844926], [2.332059241776336, 48.8452217997416], [2.332168330426858, 48.84510876083588], [2.332279566251959, 48.844993051907245], [2.332388652571729, 48.844880013669105], [2.332499887419447, 48.8447643045119], [2.332608974156527, 48.84465126515797], [2.332718059046443, 48.844538226584824], [2.332829292433342, 48.844422517085846], [2.3329383777406703, 48.84430947739696], [2.333049610150211, 48.84419376766944], [2.333076383465221, 48.84416602318427], [2.333076565762341, 48.84416327754586], [2.3330124351259602, 48.84414375098909], [2.332882124056967, 48.84408143060886], [2.332688657430875, 48.84398977673294], [2.332558347134027, 48.84392745599141], [2.332364881648895, 48.84383580157921], [2.332234570761769, 48.843773480468826], [2.3322205999264902, 48.84376678946513], [2.3322050722699, 48.84377089652041], [2.332036650830914, 48.84379536146967], [2.331868524601331, 48.8438200634641], [2.331700102845482, 48.843844527938515], [2.33153197628625, 48.84386923035821], [2.331363555576067, 48.84389369436538], [2.331195427336191, 48.8439183963034], [2.331027006320696, 48.843942858936366], [2.330858877762607, 48.843967560400294], [2.330851698048833, 48.84397033165136], [2.330811494977291, 48.84399989548618], [2.3307749623520913, 48.844029381809094], [2.330757151437222, 48.84404022832394], [2.330757256192514, 48.84404491009622], [2.330665448711727, 48.84411900765312], [2.330543520919961, 48.84421757464343], [2.330415179809519, 48.844321157330896], [2.330293251071507, 48.84441972404827], [2.330164908965854, 48.84452330644845], [2.330042977919041, 48.84462187288526], [2.329914636180612, 48.84472545500583], [2.32979270418753, 48.84482402116969], [2.32966436145398, 48.84492760300298], [2.32954242852619, 48.845026167994625], [2.329414084797307, 48.84512974954061], [2.329292150911665, 48.84522831515859], [2.329163806187642, 48.84533189641732], [2.329041871355705, 48.84543046176236], [2.328913524273861, 48.84553404272617], [2.328791589858191, 48.84563260780589], [2.328775845315838, 48.8456487286767], [2.328794221488201, 48.84565924189434], [2.328850511147913, 48.845688444305544], [2.328989162667232, 48.84576099835009], [2.329153738830456, 48.845846377705506], [2.329292391180416, 48.84591893228767], [2.32945696835082, 48.8460043103146], [2.329595621543107, 48.84607686453503], [2.329760199697345, 48.846162243032026], [2.329898855106217, 48.84623479599911], [2.329904010757224, 48.8462416303462], [2.32990896957152, 48.84637960580127], [2.329913370592437, 48.84651412186869], [2.329917772987211, 48.84664863882668], [2.329922730514066, 48.84678661422312], [2.329927132955916, 48.84692113114784], [2.3299320905334753, 48.847059106510166], [2.329924922074566, 48.84707707426628], [2.329926779047052, 48.847079222447896], [2.330051398327956, 48.84710050222681], [2.3301665343580362, 48.84712192034442], [2.330174632630537, 48.847135080165614], [2.330075733805373, 48.847247903447034], [2.329973929575935, 48.84736377808582], [2.329875031233212, 48.847476602085074], [2.329773226110857, 48.847592476529336], [2.329674326911181, 48.847705299440214], [2.329572519533169, 48.84782117368227], [2.329579553106811, 48.84783478714267], [2.329617704197168, 48.847835043190784], [2.329765330570413, 48.84776433876489], [2.329932483084061, 48.84768406549773], [2.330110918151477, 48.84759860380187], [2.330278069601217, 48.84751833003994], [2.330456503534439, 48.847432867815975], [2.330623652546208, 48.84735259445096], [2.3308020867077612, 48.84726713170645], [2.330969234667188, 48.847186856947445], [2.330976373850549, 48.84718515390889], [2.331111444199978, 48.847178940901244], [2.3313755508626812, 48.84716767955463], [2.331510619756614, 48.8471614660886], [2.331578011813548, 48.84714125266115]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 19, "roussel_fabien": 13.0, "nb_emargement": 856.0, "nb_procuration": 83.0, "nb_vote_blanc": 6.0, "jadot_yannick": 52.0, "le_pen_marine": 28.0, "nb_exprime": 849.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1031.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 856, "quartier_bv": "23", "geo_point_2d": [48.84546957174817, 2.3308867977578043], "melenchon_jean_luc": 108.0, "poutou_philippe": 6.0, "macron_emmanuel": 442.0}, "geometry": {"type": "Point", "coordinates": [2.3308867977578043, 48.84546957174817]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "14104e5a009f8ea66d06874cacb9c94f27cf8a45", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 124, "zemmour_eric": 230.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-59", "geo_shape": {"coordinates": [[[2.279839567179537, 48.87863185882896], [2.279877955092198, 48.87865004598163], [2.279978221691333, 48.878695002744664], [2.280065072262377, 48.87903620322952], [2.280095424821879, 48.87915631904048], [2.280120804837455, 48.87926695556513], [2.280151159023426, 48.87938707134504], [2.280153940707965, 48.879399200378785], [2.280168780487309, 48.87946388738105], [2.280170325090075, 48.879470616534526], [2.280200679508957, 48.87959073227963], [2.280219437993952, 48.87967250419481], [2.280219467637763, 48.879672628481906], [2.280250246151918, 48.879805880693404], [2.280275306047154, 48.87991239711696], [2.280285016805944, 48.879953673115104], [2.280315795654007, 48.880086925275755], [2.280341457243652, 48.88019600029599], [2.280367118953213, 48.88030507440068], [2.280397898206595, 48.88043832739698], [2.280409158576585, 48.880486185946], [2.280412539201669, 48.88050145725338], [2.280443318687329, 48.880634710214224], [2.280452936852029, 48.88067816740916], [2.280476655133124, 48.88078532585945], [2.280507434950605, 48.88091857876945], [2.2805311534533272, 48.88102573718557], [2.280543155240983, 48.88107995757318], [2.280573934039256, 48.881213210422246], [2.280584819284207, 48.88126238599394], [2.280615598309322, 48.881395637910956], [2.280652592573502, 48.88156276293841], [2.280683371949555, 48.88169601480165], [2.280700130721034, 48.881771725515634], [2.2807185067946, 48.88185474046634], [2.280749287862868, 48.8819879931847], [2.280751951129893, 48.882000027931696], [2.280778841017363, 48.882121502906706], [2.28080962103426, 48.88225475556906], [2.280836511187776, 48.88237623050301], [2.280867291502791, 48.882509483119726], [2.280894181922357, 48.882630958012584], [2.280924963899031, 48.8827642105918], [2.280937858487134, 48.882822467039354], [2.280947320966205, 48.8828652099941], [2.280990821896324, 48.88289900212176], [2.281018625379168, 48.88292060118796], [2.281143740220125, 48.88302192799698], [2.281174950501166, 48.88304617174316], [2.281326899450673, 48.88316420724599], [2.281452015464303, 48.88326553460972], [2.2815771319772242, 48.883366860934046], [2.281729082761609, 48.8834848967913], [2.281797103561905, 48.88353773614948], [2.281922221400254, 48.88363906208813], [2.281972628802601, 48.88367821842016], [2.282002859098429, 48.88369031861514], [2.282015258750453, 48.883683397039945], [2.282179325718488, 48.883607566726475], [2.282339789692672, 48.883532510501304], [2.282500253191921, 48.88345745495517], [2.282664320105459, 48.883381623969655], [2.28282478267205, 48.88330656797835], [2.282988847274109, 48.88323073652957], [2.283149310283972, 48.8831556792019], [2.283313373938003, 48.88307984729806], [2.283473834639286, 48.88300479041626], [2.283637898709041, 48.88292895806544], [2.283798358477672, 48.882853900738425], [2.283962420235969, 48.88277806792435], [2.284122879084317, 48.88270300925284], [2.284286941258129, 48.882627175991885], [2.284304429346331, 48.882628195160336], [2.284447258840513, 48.88272280203745], [2.284584863602932, 48.882814716375876], [2.284727694118134, 48.8829093229024], [2.284865299868261, 48.88300123690298], [2.285008131404489, 48.8830958430789], [2.285145738154878, 48.8831877558423], [2.285145911093691, 48.88318787288922], [2.285283518317989, 48.88327978638589], [2.285416856895472, 48.88337137026084], [2.285550197305399, 48.8834629539878], [2.285687805982564, 48.88355486609751], [2.285821145975372, 48.883646449499345], [2.285958755603191, 48.88373836218158], [2.286092096542342, 48.88382994526635], [2.286229707145692, 48.88392185672258], [2.286363049031087, 48.88401343949031], [2.286500660585219, 48.88410535151906], [2.286520282970664, 48.88410520315048], [2.286671367355287, 48.883999558249904], [2.286819130188514, 48.88389623523595], [2.286970211984733, 48.88379059082934], [2.287117973632099, 48.883687267426936], [2.287125756287725, 48.88368455550462], [2.287318930826272, 48.88366433463779], [2.287506409274478, 48.88364470999657], [2.287693887581382, 48.883625085061425], [2.287887063042176, 48.88360486328497], [2.287898771549504, 48.883607339546565], [2.288043442727257, 48.88370136388361], [2.288188137435528, 48.88379540076531], [2.288332809658185, 48.88388942473663], [2.288477504035659, 48.88398346214369], [2.288622178679082, 48.88407748485814], [2.288766874101625, 48.88417152189944], [2.288911549777584, 48.88426554514738], [2.289056246257584, 48.88435958092365], [2.289200922978472, 48.88445360380585], [2.28934562050355, 48.884547639216294], [2.289490298269377, 48.88464166173278], [2.289634996827169, 48.88473569767668], [2.289646980190335, 48.88473814301746], [2.289806776377223, 48.88471920669967], [2.289992872510519, 48.884697154355294], [2.290013011776844, 48.88468341503892], [2.289995656580432, 48.88466829053952], [2.289946581735053, 48.88463700754669], [2.289800843772297, 48.88454367178473], [2.289659799707088, 48.88445376226859], [2.289514062771164, 48.88436042614204], [2.289373019709673, 48.88427051537383], [2.289227283800579, 48.88417717888266], [2.289086241730533, 48.88408726776163], [2.288940505484691, 48.88399393089776], [2.288799465769552, 48.88390401943202], [2.288653730550631, 48.88381068220354], [2.288512691826921, 48.883720770385], [2.288366957634813, 48.883627432791855], [2.288225919890231, 48.88353752151987], [2.288080186724927, 48.88344418356211], [2.287939149984048, 48.88335427103801], [2.28779341784544, 48.8832609327157], [2.287652382096071, 48.88317101983882], [2.287506650984255, 48.883077681151896], [2.287365616226287, 48.882987767922245], [2.28722458059168, 48.882897854511036], [2.287078851011142, 48.882804515280206], [2.286937817731469, 48.8827146015243], [2.286792089165389, 48.88262126282818], [2.286651056877098, 48.88253134871949], [2.286505329349998, 48.882438008759536], [2.286364298053186, 48.882348094298095], [2.286218571552845, 48.88225475397355], [2.286218496360391, 48.88224850043663], [2.286194018179136, 48.882238948333175], [2.286193804644274, 48.88223880856215], [2.286046328231215, 48.88214007145315], [2.28590191149955, 48.882043382203726], [2.285754436180886, 48.88194464561694], [2.28561001918201, 48.88184795509082], [2.285465604070466, 48.881751265289445], [2.285318130418568, 48.881652527239744], [2.285173715027474, 48.88155583706096], [2.285026243833545, 48.88145709954158], [2.284881829538546, 48.8813604080943], [2.284734358088012, 48.881261670189716], [2.284735381271081, 48.88124842995703], [2.284897547092316, 48.881159954162044], [2.285057412506923, 48.88107273247245], [2.285219577233971, 48.880984256227165], [2.28537944019408, 48.88089703498476], [2.285383864295389, 48.880887646223414], [2.285326960375387, 48.88075562906784], [2.285274358215565, 48.88063359052524], [2.285221756289828, 48.88051155284528], [2.285164853204131, 48.88037953466833], [2.2851122517915963, 48.88025749691209], [2.285055350624435, 48.88012547866075], [2.285002748374077, 48.88000343992083], [2.284945847749724, 48.87987142248629], [2.284893247376022, 48.87974938367823], [2.284836345943355, 48.87961736615306], [2.284783746082836, 48.87949532726874], [2.284726845205312, 48.87936330966108], [2.284674245857971, 48.87924127070051], [2.284617345535581, 48.87910925301034], [2.284564746701409, 48.87898721397351], [2.284507846934147, 48.87885519620088], [2.284455248613137, 48.8787331570878], [2.284398349400994, 48.87860113923266], [2.284345751593139, 48.87847910004336], [2.284288852936107, 48.87834708210572], [2.284236255641399, 48.87822504284018], [2.284244804005828, 48.87821885252893], [2.284225453980679, 48.87819309394563], [2.284191759651412, 48.87817280931139], [2.28403551439733, 48.878078367845845], [2.283890031632193, 48.87799078236501], [2.283733787471315, 48.87789634049006], [2.283588305722045, 48.877808754628134], [2.283442825825488, 48.87772116859057], [2.2832865819209562, 48.8776267261007], [2.283225333341435, 48.877546813587536], [2.283202661768681, 48.87755380871329], [2.283089422808275, 48.87759143174991], [2.282904567652873, 48.877647967830974], [2.282730472522482, 48.87770581008636], [2.28254561657158, 48.877762345607266], [2.282371520660214, 48.87782018733464], [2.2821866639261073, 48.877876721396156], [2.282012568597183, 48.87793456260371], [2.281827709691676, 48.87799109699617], [2.281653613581784, 48.878048937675715], [2.281468755243993, 48.878105471516214], [2.28129465698972, 48.87816331165956], [2.28110979786885, 48.87821984404067], [2.280935698833615, 48.878277683655966], [2.280750838904745, 48.8783342163762], [2.280576739088546, 48.87839205546347], [2.280391878364088, 48.87844858762356], [2.280217777766925, 48.8785064261828], [2.280173235823884, 48.87852122321712], [2.279988374202973, 48.87857775474752], [2.279858814881195, 48.878620794914696], [2.279839567179537, 48.87863185882896]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 59, "roussel_fabien": 6.0, "nb_emargement": 1179.0, "nb_procuration": 50.0, "nb_vote_blanc": 11.0, "jadot_yannick": 52.0, "le_pen_marine": 80.0, "nb_exprime": 1161.0, "nb_vote_nul": 7.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1531.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1179, "quartier_bv": "65", "geo_point_2d": [48.88094585688242, 2.2832701451574797], "melenchon_jean_luc": 158.0, "poutou_philippe": 5.0, "macron_emmanuel": 468.0}, "geometry": {"type": "Point", "coordinates": [2.2832701451574797, 48.88094585688242]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2eae4b28e843f44e4bc82a1b1759d4888cbcf3e6", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 75, "zemmour_eric": 63.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "17-21", "geo_shape": {"coordinates": [[[2.322817622301627, 48.89361136193106], [2.322812987075473, 48.89360910719469], [2.322611998796536, 48.89367771390194], [2.322431531112763, 48.89373931643484], [2.322230540453104, 48.89380792338528], [2.322050071878283, 48.89386952443672], [2.32186960286481, 48.89393112611208], [2.321668612087986, 48.89399973211508], [2.3216628968890642, 48.89401201058191], [2.321742846937362, 48.89410905797778], [2.321821732502006, 48.894204815047765], [2.321901683142433, 48.8943018623205], [2.321980570655076, 48.894397619276745], [2.321978883093133, 48.894407808047525], [2.321837221291775, 48.89451537883817], [2.321701775836051, 48.89461822814464], [2.321566329856923, 48.894721076389004], [2.321424664975142, 48.8948286475524], [2.321289219265064, 48.89493149547134], [2.3211475532382, 48.89503906628627], [2.321125489949163, 48.89503771903394], [2.321027678394782, 48.894927736703416], [2.32093102867043, 48.894819059490246], [2.320833219289743, 48.894709077885935], [2.320736570389034, 48.89460039959491], [2.320638760466045, 48.89449041780209], [2.320542112365306, 48.89438174023169], [2.320524883705839, 48.8943780487813], [2.32035361356006, 48.89442742189565], [2.320188336935007, 48.894475066115], [2.320017066162582, 48.89452443784438], [2.319851790285439, 48.89457208160282], [2.319832354343187, 48.8945782367984], [2.319835335051711, 48.894591142829576], [2.31990362222933, 48.89468579682611], [2.3199877010320122, 48.894800207744076], [2.320068036542648, 48.894911563019704], [2.320152116071218, 48.895025973798646], [2.320232452293706, 48.8951373280418], [2.320300744356817, 48.89523025508465], [2.320299157050518, 48.89524621444957], [2.320317513642016, 48.895253273997966], [2.3203333018472723, 48.89527475759238], [2.320430035046408, 48.895400311506826], [2.320514116159768, 48.89551472198057], [2.320521181654668, 48.8955189906839], [2.320689330853963, 48.895563246102604], [2.320881006640484, 48.89561413410327], [2.32104915645302, 48.895658389012915], [2.321240832941514, 48.89570927643326], [2.321408983367086, 48.895753530833844], [2.321600660557547, 48.89580441767385], [2.321726750703265, 48.89583760191347], [2.321752525188858, 48.895850399554995], [2.321800698983891, 48.89585574096042], [2.321842759907357, 48.89586681058615], [2.321866761130611, 48.89587312753876], [2.321873686355429, 48.89587718222638], [2.321967225076112, 48.895990543492196], [2.322060428517923, 48.896103497178736], [2.322153968040213, 48.89621685917451], [2.322247172292326, 48.89632981269235], [2.322340712639449, 48.89644317361957], [2.322433917690268, 48.896556127868024], [2.322527458850626, 48.89666948862597], [2.322620663347858, 48.89678244269799], [2.322714206685373, 48.896895803294335], [2.322807412004628, 48.89700875629845], [2.322900954779787, 48.89712211761704], [2.322994162273294, 48.897235070460184], [2.32308770586172, 48.89734843160945], [2.323180914165576, 48.897461384283886], [2.323188165548008, 48.897470172056785], [2.323205430584377, 48.897491093395445], [2.323228219964621, 48.897492280682236], [2.3232420632815423, 48.89748042222891], [2.323243795775214, 48.8974789373483], [2.323254149732898, 48.897470768872715], [2.323248783625108, 48.89746112391301], [2.323209770990386, 48.897329291469106], [2.323172131824976, 48.89720209646143], [2.323134491467873, 48.89707490231865], [2.323095479411974, 48.896943069791014], [2.323095238941016, 48.896941737436705], [2.323100059605346, 48.89692776045679], [2.3230926180248, 48.8969221731816], [2.323084996934115, 48.89680650079297], [2.323077487673092, 48.89669251075434], [2.323069866649643, 48.896576838340486], [2.323062356090869, 48.89646284826922], [2.323054735146351, 48.896347174930916], [2.323047226006142, 48.89623318574177], [2.323039605128856, 48.89611751237822], [2.323032094702702, 48.89600352225727], [2.323019945172848, 48.89599497297208], [2.322983952321493, 48.89599238899506], [2.322870907285281, 48.895984273804274], [2.322795081539941, 48.895978830425975], [2.322783077594851, 48.895971255905174], [2.322781390398361, 48.89596401851425], [2.322776029204271, 48.895941012321195], [2.322787517701008, 48.895930750374966], [2.322996162906651, 48.89591044256813], [2.32320614905233, 48.895890004380355], [2.323414793919702, 48.89586969674271], [2.3236247797368, 48.89584925782012], [2.323833424277586, 48.89582894945238], [2.32404340976589, 48.89580850979501], [2.32425205399175, 48.89578819979791], [2.32446203913978, 48.895767760305], [2.324472148927256, 48.895754716911725], [2.324379809831435, 48.89563755214841], [2.32428742819656, 48.89552033399904], [2.324195089932231, 48.89540316906821], [2.324102710492894, 48.895285950758975], [2.324010371696075, 48.89516878565295], [2.32391799308859, 48.89505156717613], [2.323825656486908, 48.89493440191035], [2.323733277347304, 48.89481718325824], [2.323640941576981, 48.89470001782498], [2.323548564621283, 48.89458279991227], [2.323456228330243, 48.89446563340456], [2.323363852206162, 48.894348415324295], [2.323271518098625, 48.894231249556086], [2.3231791414541982, 48.89411403040131], [2.323086808177889, 48.8939968644656], [2.322994433729003, 48.89387964515096], [2.322902099920281, 48.8937624790401], [2.322809726302984, 48.893645259557914], [2.322817622301627, 48.89361136193106]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 21, "roussel_fabien": 17.0, "nb_emargement": 1203.0, "nb_procuration": 82.0, "nb_vote_blanc": 11.0, "jadot_yannick": 109.0, "le_pen_marine": 70.0, "nb_exprime": 1189.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1545.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1203, "quartier_bv": "68", "geo_point_2d": [48.89519888730339, 2.3223422977297012], "melenchon_jean_luc": 371.0, "poutou_philippe": 7.0, "macron_emmanuel": 417.0}, "geometry": {"type": "Point", "coordinates": [2.3223422977297012, 48.89519888730339]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "760930e8bb02d1dbb17d170573c1210809dc51c0", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 80, "zemmour_eric": 74.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "12-38", "geo_shape": {"coordinates": [[[2.4046513722177663, 48.8408806895196], [2.404675137688597, 48.84090223502532], [2.404705679145075, 48.84099295427477], [2.4047445799558282, 48.84109952313794], [2.404785313667896, 48.841220515122174], [2.404824216173789, 48.841327083944506], [2.40483774918072, 48.84133396841442], [2.405013755517016, 48.84133150913113], [2.405188643128874, 48.841330250066434], [2.405364648073684, 48.84132779026012], [2.405539535664585, 48.84132653068246], [2.405715540580272, 48.84132407035986], [2.40589042952293, 48.84132280937668], [2.405891603726977, 48.84132283499414], [2.406070453878539, 48.84133302067207], [2.406252718887279, 48.841342103329914], [2.406431570527655, 48.84135228937387], [2.406613834304333, 48.84136137147463], [2.406792686091634, 48.84137155607922], [2.40697495136098, 48.84138063763636], [2.407153801922585, 48.841390821694105], [2.407336067311994, 48.84139990360024], [2.407514919372638, 48.84141008712464], [2.407697183540188, 48.841419167574365], [2.407709242091887, 48.84142562531536], [2.407727953140697, 48.84146811731033], [2.407717141192955, 48.841487206623434], [2.407746144620399, 48.84151197015561], [2.407780555745128, 48.84159011308644], [2.407840839663329, 48.84172022308496], [2.407893962375379, 48.84184085882816], [2.407954246866603, 48.84197096874024], [2.408007370107031, 48.842091603506695], [2.408067655171388, 48.842221713332385], [2.408120778929779, 48.842342348021376], [2.408181064557166, 48.84247245866004], [2.408234190196136, 48.842593093278246], [2.408294476406786, 48.842723202931225], [2.408347601201336, 48.842843837465225], [2.408407887985244, 48.84297394703183], [2.408461013297881, 48.84309458148837], [2.40851413884624, 48.84321521680758], [2.40857442647548, 48.84334532624693], [2.408627553914672, 48.84346596059608], [2.40868784211699, 48.843596069949044], [2.408740968711764, 48.84371670421398], [2.408801257477168, 48.84384681437985], [2.408823840482686, 48.84385323046746], [2.408846696547788, 48.84384614496295], [2.408863510225706, 48.843835633627116], [2.408965129345987, 48.84373147041003], [2.409081834567878, 48.84361024437819], [2.409183454174988, 48.843506080961355], [2.409300157031928, 48.84338485378597], [2.409401775763239, 48.84328069016265], [2.409518477607778, 48.843159462749796], [2.409620095463299, 48.84305529892001], [2.40973679628506, 48.842934072169015], [2.409838413264804, 48.842829908132735], [2.409840218161527, 48.842822973100176], [2.409797170937146, 48.84270263089008], [2.409755579810754, 48.84257922003271], [2.409712532983125, 48.8424588777659], [2.409670942241571, 48.842335467751454], [2.409627897173182, 48.84221512543457], [2.409586306836626, 48.842091714464495], [2.409543260802481, 48.84197137208419], [2.409501670850649, 48.84184796195701], [2.409458625213237, 48.841727619519936], [2.409417035656311, 48.841604209336396], [2.409373991778105, 48.84148386684932], [2.409332402626266, 48.84136045571013], [2.409289357782305, 48.84124011315957], [2.409247769015271, 48.84111670286331], [2.409204724568028, 48.84099636025607], [2.409163136205974, 48.84087294900414], [2.409171468868057, 48.84086746090183], [2.409150528622469, 48.84083943868037], [2.409108940503754, 48.84071602829154], [2.409070852925863, 48.84058468033549], [2.409029265199073, 48.840461269890774], [2.408991179360479, 48.840329922785436], [2.408972458996475, 48.840318957041134], [2.408939968744971, 48.84032990179862], [2.408706126492038, 48.84034126073566], [2.4084793747879703, 48.84034971966871], [2.408245532355963, 48.84036107680588], [2.4080187791284953, 48.840369534859015], [2.408014049432611, 48.8403692155638], [2.407814399506111, 48.84033169720223], [2.407619099346376, 48.84029450402862], [2.407419449990353, 48.84025698500542], [2.407224150392294, 48.84021979118453], [2.407024501606757, 48.84018227149965], [2.406829202570587, 48.84014507703151], [2.406826607921828, 48.840144758383204], [2.406629881684005, 48.84013254071973], [2.406419252862464, 48.84012042462509], [2.406222526801731, 48.84010820719075], [2.40601189818347, 48.840096089479324], [2.4058151723100742, 48.840083871374816], [2.405604543884865, 48.84007175294586], [2.405603707669938, 48.84007172180996], [2.405406933317359, 48.84007069622347], [2.40522511233462, 48.840067639262635], [2.405028338015171, 48.840066612154104], [2.404846517068887, 48.840063554617814], [2.404664697516543, 48.8400604959126], [2.404467921862401, 48.840059468774726], [2.404412169883321, 48.84005853107431], [2.404399990271298, 48.84006487657287], [2.404399717825176, 48.84009408372548], [2.404440435354529, 48.84022219609428], [2.4044811676749323, 48.84034318827714], [2.404521898822096, 48.840464180426274], [2.404562618292963, 48.840592293617085], [2.404603351196599, 48.840713284818975], [2.404644069699931, 48.8408413979467], [2.404654261574816, 48.84087167073593], [2.4046513722177663, 48.8408806895196]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 38, "roussel_fabien": 23.0, "nb_emargement": 1225.0, "nb_procuration": 53.0, "nb_vote_blanc": 17.0, "jadot_yannick": 108.0, "le_pen_marine": 91.0, "nb_exprime": 1202.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1571.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1225, "quartier_bv": "45", "geo_point_2d": [48.841356982291614, 2.4075385924750328], "melenchon_jean_luc": 356.0, "poutou_philippe": 6.0, "macron_emmanuel": 402.0}, "geometry": {"type": "Point", "coordinates": [2.4075385924750328, 48.841356982291614]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "32f934408b43f3a65ba67d67bc3b61e54ee5d987", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 64, "zemmour_eric": 102.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "9-3", "geo_shape": {"coordinates": [[[2.339053792798781, 48.87594358301681], [2.339069962090019, 48.87592809038387], [2.339043776849104, 48.87585022872451], [2.3390291428906282, 48.875787501022025], [2.339041547667379, 48.8757771677851], [2.3392467886462622, 48.87576649703718], [2.339450185007457, 48.87575613322501], [2.339655425831131, 48.87574546087698], [2.339858822028861, 48.87573509637032], [2.340064062685904, 48.875724423321486], [2.34026745872016, 48.87571405812034], [2.340472699199173, 48.87570338526999], [2.340676095069948, 48.87569301937428], [2.340881335393698, 48.8756823449239], [2.341084729737617, 48.87567197832621], [2.341289971258063, 48.875661303182504], [2.341493365438476, 48.87565093589032], [2.341698606780778, 48.8756402609451], [2.34190200079778, 48.87562989295844], [2.342107241984765, 48.875619216413156], [2.342310635838241, 48.875608847732], [2.342515876858529, 48.87559817048588], [2.342719270548466, 48.875587801110235], [2.342721931539968, 48.87558783460708], [2.342918545114586, 48.875603054262044], [2.343106832826063, 48.87561845094098], [2.34330344662862, 48.875633669963364], [2.343491735927911, 48.875649066043955], [2.343688349958499, 48.87566428443376], [2.343876638107548, 48.87567968080032], [2.344064926379238, 48.87569507597125], [2.344261540750982, 48.87571029341898], [2.3442697652167412, 48.875712981620566], [2.344339571869868, 48.875760723036706], [2.344413821505052, 48.87580894380583], [2.344427157773658, 48.87581117794687], [2.344581201302589, 48.87578193146368], [2.344749533535869, 48.8757486674185], [2.344903576698898, 48.87571942051883], [2.345071908513055, 48.875686156917745], [2.345225952684747, 48.87565690870974], [2.345394282727626, 48.875623644646005], [2.345450870665176, 48.875626779791496], [2.345478336642737, 48.8756233335236], [2.345494179714651, 48.875598594866766], [2.345479923133273, 48.87546236997487], [2.345466140601464, 48.87532260426991], [2.345451884168964, 48.87518637934062], [2.345438101785324, 48.875046613597476], [2.345423846865039, 48.87491038863821], [2.345410063266328, 48.87477062284943], [2.345424079430043, 48.87476104960726], [2.3454999313488623, 48.87476255975084], [2.345579384674288, 48.874766297407405], [2.345593876666494, 48.874756179050515], [2.34556846845773, 48.87462594743856], [2.34553430583549, 48.87448650459486], [2.345508896555298, 48.874356272031726], [2.345474734269417, 48.87421682913692], [2.345464616556069, 48.8741649674771], [2.345460678701642, 48.874144601131285], [2.345408228836968, 48.87413789125596], [2.34521300931448, 48.87413818784906], [2.345019963292803, 48.87413846364036], [2.344824743754549, 48.87413876049949], [2.344631699092018, 48.874139035672094], [2.344436479549513, 48.87413933189807], [2.344243434882816, 48.87413960644452], [2.344048215335865, 48.874139902037314], [2.3438551693016922, 48.874140175950174], [2.34366212462881, 48.87414044955919], [2.343466905075509, 48.87414074420401], [2.343273860398484, 48.87414101718687], [2.343078640840761, 48.874141311198464], [2.342885594796283, 48.87414158354773], [2.342690375234351, 48.87414187692613], [2.342683373823935, 48.87414061178352], [2.342614860789609, 48.87411305665746], [2.342500779949696, 48.874068272608845], [2.342492731636047, 48.874056518122714], [2.342456517741126, 48.87405497019513], [2.342260237604212, 48.8740589479273], [2.342064948031453, 48.874063943436816], [2.341868667830825, 48.87406792052689], [2.341673378175508, 48.87407291629681], [2.34147709791107, 48.87407689274484], [2.341281808184558, 48.874081887875946], [2.341085527856524, 48.874085863681834], [2.340890238070209, 48.874090857274815], [2.340694948235069, 48.87409585144842], [2.340498667809625, 48.874099826292074], [2.340303377903314, 48.87410481982682], [2.340107097414095, 48.87410879402834], [2.339911807448122, 48.874113786025006], [2.339715526895242, 48.87411775958442], [2.339520236846624, 48.874122751841526], [2.339323956230191, 48.8741267247589], [2.339128666110433, 48.874131716377086], [2.338932385430252, 48.874135688652416], [2.338737095250881, 48.874140678732445], [2.338540814507068, 48.874144650365686], [2.338345524245061, 48.874149640706186], [2.338149243437723, 48.8741536116973], [2.338097118118049, 48.87415844701167], [2.338087907348609, 48.87417741168783], [2.338136641818207, 48.874308416148686], [2.33818283712956, 48.87443132508317], [2.338231572075498, 48.8745623294752], [2.3382777678360602, 48.87468523834477], [2.338326503258346, 48.874816242668054], [2.338372698093359, 48.87493915236444], [2.338418894521057, 48.87506206113757], [2.338467630650994, 48.87519306535862], [2.3385138275279163, 48.8753159740668], [2.338562564134217, 48.87544697821909], [2.338608760097117, 48.87556988685483], [2.338657497179682, 48.87570089093828], [2.338703694955073, 48.875823799516624], [2.338752432514117, 48.875954803531286], [2.33876755717499, 48.875961567349364], [2.338901043854648, 48.87594928491775], [2.339000989697032, 48.87594195774662], [2.339053792798781, 48.87594358301681]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 3, "roussel_fabien": 13.0, "nb_emargement": 1227.0, "nb_procuration": 73.0, "nb_vote_blanc": 15.0, "jadot_yannick": 102.0, "le_pen_marine": 71.0, "nb_exprime": 1208.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1500.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1226, "quartier_bv": "35", "geo_point_2d": [48.87489616547562, 2.3418742189729933], "melenchon_jean_luc": 304.0, "poutou_philippe": 6.0, "macron_emmanuel": 502.0}, "geometry": {"type": "Point", "coordinates": [2.3418742189729933, 48.87489616547562]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0dfc276dbf64a730ff8d85f3f3f99461635945cf", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 94, "zemmour_eric": 74.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "9-8", "geo_shape": {"coordinates": [[[2.332531995975023, 48.876752538534376], [2.332522626355515, 48.876742318391514], [2.332464557337024, 48.87672098069652], [2.332360502421016, 48.8766794751967], [2.332254561681371, 48.876640547376006], [2.332228334026457, 48.876638327203814], [2.332200935091965, 48.87667003426679], [2.332157417138282, 48.876794261493735], [2.332112323876899, 48.87691968141676], [2.332068805491739, 48.877043909482666], [2.332023711800828, 48.87716932934393], [2.33198019437065, 48.8772935564578], [2.331935100238676, 48.877418977156566], [2.331891581025142, 48.87754320420249], [2.3318464864636272, 48.87766862483942], [2.331802966830232, 48.877792851825], [2.331757873214024, 48.87791827150851], [2.331745584217674, 48.87792516646715], [2.331510383094988, 48.87793632619864], [2.331276784914203, 48.87794773094789], [2.331041583600723, 48.87795888885889], [2.33080798521599, 48.87797029269317], [2.330797233231639, 48.877974708583864], [2.330694574138672, 48.87809005995191], [2.330595053002102, 48.878205651804265], [2.330492393006129, 48.878321002974744], [2.3303928696161, 48.87843659462716], [2.33029020871711, 48.87855194560009], [2.330190685800472, 48.87866753706785], [2.330088023998455, 48.8787828878432], [2.329988498828325, 48.878898479111015], [2.32988583613484, 48.879013828789574], [2.329786310063072, 48.87912942076433], [2.329772214215801, 48.87913385021595], [2.329634092261345, 48.879118677609476], [2.32950013936763, 48.8790956140447], [2.32948373651666, 48.87910151894104], [2.329424953695416, 48.879220015224405], [2.329361925038169, 48.87934355813287], [2.329303141666688, 48.879462054330375], [2.32924011243915, 48.87958559624827], [2.329181328517325, 48.87970409235992], [2.3291182986963213, 48.87982763508584], [2.329059514224042, 48.87994613111163], [2.3290074047176033, 48.88005579167704], [2.328948619735483, 48.88017428762384], [2.328896509755666, 48.88028394901752], [2.328837725627179, 48.88040244489297], [2.328785613833674, 48.88051210530875], [2.328726829195336, 48.8806306011052], [2.328674716939923, 48.880740261449965], [2.328669006883791, 48.88075248824939], [2.328689436084456, 48.880772461892725], [2.3288653794370813, 48.88081206932597], [2.329062276873106, 48.880857297852835], [2.329238222170968, 48.88089690384352], [2.329435118888131, 48.88094213174607], [2.329611064744463, 48.88098173808502], [2.329807963469649, 48.88102696537855], [2.329983909907805, 48.88106657026725], [2.33018080791391, 48.881111796936466], [2.33035675491064, 48.881151402173415], [2.330553654924866, 48.8811966282336], [2.330729602503194, 48.881236232020306], [2.330926501798422, 48.88128145745623], [2.331102449935429, 48.8813210615912], [2.331110423367312, 48.88132122934819], [2.3312474590072902, 48.8812967146444], [2.331388894712787, 48.881269550640035], [2.331525930085596, 48.881245035616374], [2.331667365517034, 48.8812178703825], [2.331705168465485, 48.881215602846595], [2.331714403382311, 48.88119864800774], [2.33170723047943, 48.88116223893684], [2.331681424028002, 48.88103117984695], [2.331657249116209, 48.8809084693615], [2.331631442916309, 48.88077741023068], [2.33160726823998, 48.88065469970678], [2.331583095029516, 48.8805319900713], [2.331557287850938, 48.880400929972765], [2.331533114876025, 48.88027822029887], [2.331507307937329, 48.88014716105865], [2.33151621542215, 48.88013754025832], [2.331709078116289, 48.880091786891676], [2.331903401074226, 48.88004665201123], [2.332096264455107, 48.880000898024676], [2.332290586738259, 48.87995576251206], [2.332483449442399, 48.87991000789802], [2.332677771050964, 48.879864871753256], [2.332870633078359, 48.87981911651167], [2.33306495401223, 48.87977397973471], [2.333257815362873, 48.87972822386566], [2.333452135621942, 48.87968308645653], [2.333644994932468, 48.87963732995235], [2.333839314516831, 48.8795921919111], [2.333850644139364, 48.879581105008256], [2.333844984270233, 48.8795623304899], [2.333706806722331, 48.87945338150976], [2.333584518094376, 48.87935291789043], [2.333462229926698, 48.879252455036244], [2.3333240540016282, 48.87914350558372], [2.333309024386096, 48.879140803023134], [2.333104668319085, 48.87918877117023], [2.332895517210599, 48.87924039772187], [2.332691161735399, 48.87928836516637], [2.332482009817057, 48.87933999099097], [2.332464028990968, 48.87933381842472], [2.332411926158581, 48.879200828368944], [2.332361882255247, 48.87907285725138], [2.332309779956191, 48.87893986622036], [2.332259736554598, 48.87881189502976], [2.33220763476601, 48.878678904822124], [2.332157593229584, 48.8785509335661], [2.332105490610982, 48.87841794237556], [2.332055449576276, 48.87828997104659], [2.332005407424058, 48.878161999674205], [2.331953306934932, 48.878029009277405], [2.331953405922787, 48.87802426853215], [2.332008154983225, 48.877898988103325], [2.332062150285317, 48.87777706964527], [2.332116898824323, 48.877651789138646], [2.332170893615584, 48.87752987060417], [2.33222488951746, 48.87740795203948], [2.332279635913705, 48.8772826714089], [2.332333631304754, 48.877160752767814], [2.33238837717949, 48.87703547205938], [2.332442372059718, 48.876913553341915], [2.332497117413056, 48.87678827255566], [2.332531995975023, 48.876752538534376]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 8, "roussel_fabien": 13.0, "nb_emargement": 1198.0, "nb_procuration": 94.0, "nb_vote_blanc": 9.0, "jadot_yannick": 107.0, "le_pen_marine": 38.0, "nb_exprime": 1187.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1441.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1198, "quartier_bv": "33", "geo_point_2d": [48.87958356630781, 2.3309735096899833], "melenchon_jean_luc": 209.0, "poutou_philippe": 1.0, "macron_emmanuel": 613.0}, "geometry": {"type": "Point", "coordinates": [2.3309735096899833, 48.87958356630781]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f643f2c6fcbccb2ddc7b63c99df23b713ba73633", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 31, "zemmour_eric": 60.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "18-19", "geo_shape": {"coordinates": [[[2.349519317696331, 48.88944900195543], [2.349541187009066, 48.889421308241694], [2.34954163759926, 48.88937945252069], [2.349524377639228, 48.88936655777138], [2.34948839357904, 48.88936998027059], [2.349314248811727, 48.889316268890084], [2.349149317907865, 48.88926377645649], [2.348975173856747, 48.889210063678384], [2.348810242256149, 48.889157571664484], [2.348636098910095, 48.889103858388076], [2.348471169362683, 48.88905136501025], [2.348306240136554, 48.888998872301975], [2.348132097841051, 48.88894515828483], [2.348124382649485, 48.88893831918283], [2.348096326567481, 48.88881232295577], [2.3480676106469582, 48.88868087320234], [2.348039553477339, 48.88855487692501], [2.34801083784211, 48.888423427127144], [2.34798278094858, 48.888297430806965], [2.347954065598642, 48.888165980964686], [2.347926010344882, 48.88803998460908], [2.347897295280226, 48.88790853472238], [2.34786923893886, 48.88778253831651], [2.347840524159484, 48.887651088385354], [2.347812468094195, 48.88752509193667], [2.347783753600199, 48.887393641961054], [2.347755699174547, 48.88726764547699], [2.347726984965819, 48.88713619545697], [2.347698929452669, 48.88701019892264], [2.34768549268632, 48.88694868910538], [2.347687835557719, 48.88692637338134], [2.34765146789876, 48.886919066066476], [2.347474123881014, 48.88688323910496], [2.347273200171342, 48.88684521938164], [2.347095856653973, 48.886809392756696], [2.346894934869075, 48.88677137240355], [2.346717591863559, 48.88673554521594], [2.346516670639684, 48.88669752422549], [2.346339328145925, 48.88666169647524], [2.346138406119635, 48.88662367484004], [2.345961064137537, 48.88658784652718], [2.345760144036036, 48.88654982426209], [2.34558280257711, 48.886513994487295], [2.345381883036656, 48.88647597158497], [2.345204542078206, 48.88644014214675], [2.345191871179961, 48.886442687197], [2.34517672084614, 48.88648168551716], [2.345176905881988, 48.88648323786906], [2.345212899791741, 48.88662606354874], [2.3452484398722913, 48.88676768881232], [2.345284435538521, 48.886910514441], [2.345319974655519, 48.88705213873995], [2.345355970703281, 48.887194965209375], [2.345391510208872, 48.88733658945045], [2.345388508917619, 48.8873438342064], [2.345276285362162, 48.887432143343226], [2.345172563497718, 48.887518460091684], [2.345155630073249, 48.887540461240576], [2.345161589046998, 48.887547989717824], [2.345169918630146, 48.887649937967346], [2.3451699434969813, 48.88779739437124], [2.3451587243353282, 48.887804302793896], [2.345169705760367, 48.887832890383706], [2.345227461812717, 48.88794644850581], [2.345285215286797, 48.888056760904604], [2.345342969016883, 48.88816707236513], [2.345400727181442, 48.88828063037658], [2.345458481393231, 48.88839094265819], [2.345516238694327, 48.88850450058331], [2.345573994774132, 48.888614811894904], [2.345631752564158, 48.88872837064038], [2.3456400108836792, 48.88873396011383], [2.345832603475642, 48.88878026921542], [2.346025372919339, 48.88882794324612], [2.346217966190341, 48.888874252623204], [2.346410736334892, 48.888921926029454], [2.346429467996499, 48.888933755476216], [2.3464579583804372, 48.88892747810658], [2.346656239419629, 48.888941719094554], [2.3468425528252093, 48.888956223625904], [2.347040834090318, 48.888970463077364], [2.347227147694601, 48.88898496790921], [2.347413461413951, 48.88899947155164], [2.347611742999862, 48.88901371005721], [2.347798056929176, 48.88902821310088], [2.347996338718434, 48.88904245186851], [2.3480084711704903, 48.88905081780277], [2.348021657984683, 48.88918682169018], [2.348035286781518, 48.88932554482593], [2.348048473735224, 48.889461548676344], [2.348062102675509, 48.889600271774334], [2.348075288405103, 48.889736275580354], [2.3480889174886332, 48.889874998640565], [2.348091375094615, 48.88987662990516], [2.34813205683172, 48.889877323526484], [2.348283005734836, 48.88987881068865], [2.348449496643266, 48.889873859430146], [2.348456018508196, 48.88987253873615], [2.348623867838326, 48.88980456637375], [2.348800712054967, 48.8897307287343], [2.348968560478001, 48.88966275587999], [2.349145402360496, 48.88958891771456], [2.349313251240161, 48.889520944375704], [2.349490092152242, 48.889447105691666], [2.349519317696331, 48.88944900195543]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 19, "roussel_fabien": 29.0, "nb_emargement": 1462.0, "nb_procuration": 113.0, "nb_vote_blanc": 14.0, "jadot_yannick": 150.0, "le_pen_marine": 58.0, "nb_exprime": 1443.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1841.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1461, "quartier_bv": "70", "geo_point_2d": [48.88802136622981, 2.346849528021502], "melenchon_jean_luc": 595.0, "poutou_philippe": 19.0, "macron_emmanuel": 428.0}, "geometry": {"type": "Point", "coordinates": [2.346849528021502, 48.88802136622981]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2a04157372f9b6066995dc9525622562e8cb2d9c", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 40, "zemmour_eric": 56.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "17-27", "geo_shape": {"coordinates": [[[2.319832354343187, 48.8945782367984], [2.319823518486563, 48.89457492027032], [2.319811469497139, 48.894558218848836], [2.319726655228319, 48.89444065506819], [2.319646321162673, 48.89432930041497], [2.319565987440556, 48.894217945696504], [2.319481174280339, 48.894100381705535], [2.319400839912555, 48.89398902594604], [2.319316027498246, 48.89387146181356], [2.319235695188954, 48.89376010682701], [2.319150883520337, 48.89364254255301], [2.319064065508171, 48.89352219507825], [2.31897925461463, 48.89340463065718], [2.318892436020401, 48.89328428392331], [2.31880762590193, 48.89316671935515], [2.318720808112776, 48.893046371571536], [2.318636000133176, 48.89292880686412], [2.318549183137527, 48.892808458929906], [2.318464374569166, 48.89269089406765], [2.318377558366913, 48.89257054598291], [2.318292750561818, 48.89245298187289], [2.318205936516641, 48.89233263364538], [2.318121129498348, 48.892215068489016], [2.318034314882852, 48.892094720103216], [2.31794950863958, 48.89197715479982], [2.317934038810202, 48.8919556726287], [2.317926021103395, 48.891955535229044], [2.317776794955435, 48.89203801755882], [2.317631257505073, 48.89211759251498], [2.317482031801282, 48.89220007357381], [2.317336492083664, 48.892279648152204], [2.317187265448372, 48.89236212883145], [2.317041724827279, 48.892441703039864], [2.316892497248886, 48.89252418423887], [2.316746957088111, 48.89260375808506], [2.316597727226304, 48.89268623799752], [2.316452186161947, 48.89276581147366], [2.316306643289026, 48.89284538475936], [2.316157413400984, 48.89292786411272], [2.31615290386988, 48.89293268032625], [2.31609971095501, 48.893080533139475], [2.316046666370425, 48.89322797306868], [2.316042972005989, 48.89323230110282], [2.315863748519706, 48.89334882266571], [2.315687433735364, 48.893463453106854], [2.315558593648189, 48.89354721732073], [2.315415601916282, 48.893635702884275], [2.31528675960171, 48.89371946678474], [2.31514376829849, 48.8938079520176], [2.3150149251203382, 48.89389171561244], [2.31490038672422, 48.89396259174775], [2.31488703497722, 48.89397433338196], [2.314907806707649, 48.893992007027656], [2.315101242126218, 48.89403735576104], [2.315291651135259, 48.89408199439436], [2.315485087210551, 48.89412734340327], [2.31567549687778, 48.89417198142264], [2.315868933633543, 48.89421732890853], [2.316059343947132, 48.894261967213176], [2.316252781371638, 48.89430731407534], [2.3164431923434092, 48.894351951765984], [2.316636631800296, 48.89439729801217], [2.316827043442043, 48.89444193418962], [2.31701745539848, 48.89448657096172], [2.317210894491825, 48.894531916266956], [2.317401307106429, 48.89457655242507], [2.317594746868395, 48.89462189710656], [2.317785160152944, 48.894666531751454], [2.317978600571844, 48.894711876708406], [2.318169014514542, 48.89475651073928], [2.318362455613733, 48.894801854173245], [2.318552870202799, 48.89484648848937], [2.318746311970594, 48.89489183129957], [2.318936727217907, 48.894936465001706], [2.319130169654299, 48.894981807188124], [2.319320586935271, 48.89502643938474], [2.319514030028501, 48.89507178184667], [2.319704446603737, 48.89511641342152], [2.319897890377308, 48.89516175436044], [2.320088307598918, 48.895206386220515], [2.320281752041171, 48.89525172653562], [2.320299157050518, 48.89524621444957], [2.320300744356817, 48.89523025508465], [2.320232452293706, 48.8951373280418], [2.320152116071218, 48.895025973798646], [2.320068036542648, 48.894911563019704], [2.3199877010320122, 48.894800207744076], [2.31990362222933, 48.89468579682611], [2.319835335051711, 48.894591142829576], [2.319832354343187, 48.8945782367984]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 27, "roussel_fabien": 16.0, "nb_emargement": 1005.0, "nb_procuration": 48.0, "nb_vote_blanc": 19.0, "jadot_yannick": 76.0, "le_pen_marine": 82.0, "nb_exprime": 979.0, "nb_vote_nul": 8.0, "arr_bv": "17", "arthaud_nathalie": 7, "nb_inscrit": 1431.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1006, "quartier_bv": "68", "geo_point_2d": [48.89370711299679, 2.3176874520034634], "melenchon_jean_luc": 400.0, "poutou_philippe": 5.0, "macron_emmanuel": 251.0}, "geometry": {"type": "Point", "coordinates": [2.3176874520034634, 48.89370711299679]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b136fb63647b7dd803bc8dedb7e1a4bf6d1bcb1a", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 24, "zemmour_eric": 65.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-41", "geo_shape": {"coordinates": [[[2.37713618415453, 48.89353047294869], [2.377107776009706, 48.89351972221676], [2.377021636636855, 48.89351139339545], [2.37691831605017, 48.89350251736342], [2.376875946886758, 48.89347378309982], [2.376868163637128, 48.89347442608168], [2.376826496708955, 48.89349573445402], [2.37680705884397, 48.89350926517419], [2.376822482090742, 48.89354023164219], [2.3769250986179973, 48.89363552502711], [2.377056036628384, 48.893755577297256], [2.377158653996772, 48.89385087136259], [2.377289593098114, 48.89397092245453], [2.377392211318405, 48.894066216301006], [2.37752315149985, 48.89418626711397], [2.3776257705720543, 48.89428156074159], [2.377617071260382, 48.89429561683753], [2.3774151361179072, 48.894319634756464], [2.377217691714442, 48.89434357586544], [2.377015757565478, 48.894367593116954], [2.376818312807365, 48.8943915326672], [2.376616376924318, 48.894415549237124], [2.376418931800608, 48.89443948812783], [2.3762169969113, 48.89446350403036], [2.376019551422105, 48.89448744226154], [2.375817614798628, 48.89451145748247], [2.375620168933272, 48.894535395953405], [2.37541823330345, 48.89455941050694], [2.37522078708341, 48.89458334741908], [2.375018849719536, 48.894607361290994], [2.374821403133936, 48.89463129754362], [2.374619466763741, 48.89465531074814], [2.374422019801989, 48.894679247240475], [2.3744022678610612, 48.89468976860096], [2.374406934146257, 48.894707791929456], [2.374407852904667, 48.89470863039689], [2.374534690149398, 48.89481123601749], [2.374657829148331, 48.89491098303327], [2.374784666014793, 48.89501358836305], [2.374907805960331, 48.895113336002666], [2.375034645176376, 48.895215941055866], [2.375157786079436, 48.895315688420006], [2.375284624917223, 48.895418293182374], [2.375407766788598, 48.8955180393718], [2.3755309091210313, 48.89561778632476], [2.3756577507939163, 48.895720390670746], [2.375780894083994, 48.89582013734825], [2.375907735378629, 48.89592274140339], [2.375914130564837, 48.89592562016947], [2.376123888314292, 48.89597010783022], [2.37633138409677, 48.89601113895678], [2.376538881580868, 48.89605216883007], [2.376748638999448, 48.89609665628366], [2.3769561371532, 48.8961376854308], [2.37716589528351, 48.89618217125083], [2.377373394096252, 48.89622320057108], [2.377583154291525, 48.896267685663915], [2.377594017380454, 48.89626696241486], [2.377781636088395, 48.896197369796226], [2.377955074459904, 48.896132349995625], [2.378142692200223, 48.896062756802785], [2.378316131047021, 48.89599773557913], [2.378489568085976, 48.895932714992604], [2.378677184392318, 48.895863120949734], [2.378850620542655, 48.89579809893312], [2.379038235881372, 48.89572850431605], [2.379104461322921, 48.895703675813486], [2.379169641448073, 48.89570622335428], [2.379185401118415, 48.89567517700018], [2.379292610806674, 48.89563498288173], [2.379356693697776, 48.89559936122369], [2.379385042976216, 48.895580056817515], [2.379365482877967, 48.89555989618545], [2.37925358069168, 48.89545830042217], [2.379130289231359, 48.89534727820877], [2.379018387961002, 48.89524568220598], [2.378895097494974, 48.895134660628166], [2.378783197151268, 48.89503306348666], [2.378659909054117, 48.89492204165221], [2.378548009615589, 48.89482044517053], [2.378424721170195, 48.89470942216605], [2.378312822647571, 48.89460782544488], [2.37818953519653, 48.89449680307604], [2.37807763760054, 48.89439520521614], [2.377954351154476, 48.89428418258361], [2.377842454463628, 48.89418258538348], [2.377719170397123, 48.89407156159514], [2.3776072732583042, 48.893969964148475], [2.377483990186003, 48.89385894099572], [2.3773720953375452, 48.89375734241744], [2.377248811906345, 48.893646318993966], [2.377136917963091, 48.89354472107551], [2.37713618415453, 48.89353047294869]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 41, "roussel_fabien": 12.0, "nb_emargement": 1028.0, "nb_procuration": 22.0, "nb_vote_blanc": 18.0, "jadot_yannick": 30.0, "le_pen_marine": 88.0, "nb_exprime": 1008.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1495.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1028, "quartier_bv": "74", "geo_point_2d": [48.89517662969311, 2.3770356511061848], "melenchon_jean_luc": 524.0, "poutou_philippe": 8.0, "macron_emmanuel": 225.0}, "geometry": {"type": "Point", "coordinates": [2.3770356511061848, 48.89517662969311]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "379f8d0f1f72acf01bd0471b60ecffd0fe88bc09", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 20, "zemmour_eric": 55.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "20-38", "geo_shape": {"coordinates": [[[2.408246181469436, 48.85650286300952], [2.408233997238226, 48.856491677842335], [2.40809707110796, 48.856475146945535], [2.407898739307536, 48.856450887061555], [2.407721524908563, 48.856429491465974], [2.407602685521609, 48.8564149552367], [2.407599348172605, 48.85641144025745], [2.407569366332692, 48.85640871429816], [2.407489874283501, 48.85639898999784], [2.40732132467699, 48.856378998321105], [2.407122993603743, 48.85635473714933], [2.406954445654148, 48.85633474406251], [2.40675611492018, 48.85631048228167], [2.406587565881412, 48.85629048956987], [2.406389235486727, 48.856266227179994], [2.406220688104999, 48.85624623305807], [2.406215434112527, 48.85624479411326], [2.406020360915457, 48.85615601644979], [2.405827845191303, 48.85606496861481], [2.405817213961627, 48.856063461581556], [2.405661194031901, 48.85608420362697], [2.405508017765084, 48.85610404316251], [2.4054905037467282, 48.85610433567363], [2.405481893986539, 48.856116660714676], [2.405449803789261, 48.856157787587286], [2.40537783591583, 48.85625278771799], [2.405267770238146, 48.85640055647846], [2.405195800334537, 48.85649555647219], [2.405194676709577, 48.8564968009786], [2.405089858624301, 48.85659407664619], [2.404986497401473, 48.8566897757106], [2.404881678539334, 48.856787051178905], [2.40477831791411, 48.85688275005362], [2.404674955546327, 48.856978448824044], [2.404570135521829, 48.85707572399418], [2.404565326841632, 48.85707848803956], [2.404470955546108, 48.85711093988153], [2.404377224952106, 48.85714372849518], [2.404371988217113, 48.85714697604895], [2.404258957930717, 48.85726871904555], [2.404145665868711, 48.85739137705466], [2.404032635875819, 48.8575131207168], [2.403919342749605, 48.857635778484614], [2.403901487748579, 48.85764819764271], [2.403901847531082, 48.8576516556204], [2.403968766986632, 48.85769253145642], [2.404070401859241, 48.85775513745402], [2.404187907335504, 48.85782691206635], [2.404289542743736, 48.85788951697095], [2.404289768730458, 48.85788965929318], [2.40442215012065, 48.8579750293748], [2.404559838278808, 48.858063829729], [2.40469222055403, 48.85814919949848], [2.4048299082801012, 48.85823799862191], [2.404962291440356, 48.858323368079205], [2.405099980086971, 48.85841216687801], [2.405156415493012, 48.8584485597194], [2.405177604119349, 48.858459794436065], [2.405196333400382, 48.858447199573405], [2.405317131226825, 48.85836525446207], [2.405443764637328, 48.85827998815838], [2.405564561686952, 48.85819804278495], [2.405691194286137, 48.85811277620662], [2.405710716967456, 48.85811281200698], [2.405836132075372, 48.85819820974997], [2.405961911515337, 48.858283845689265], [2.406087327446655, 48.85836924315583], [2.406213109085538, 48.858454877925325], [2.406232449246831, 48.858455034145855], [2.406329639861697, 48.85839201541036], [2.406428175240813, 48.85832854010124], [2.406525365382992, 48.858265521199584], [2.406623901647249, 48.85820204572881], [2.4066435211301522, 48.85820244069553], [2.406682885734107, 48.85823109654711], [2.40671777085092, 48.85825491688227], [2.406738053597103, 48.858263616974845], [2.406755477949099, 48.85825210990156], [2.40688708661106, 48.85816860877087], [2.407022219566898, 48.85808258430538], [2.407153828736072, 48.85799908287532], [2.407288959438696, 48.85791305898803], [2.40742056775218, 48.857829557251875], [2.40755569758497, 48.85774353215096], [2.407556831802199, 48.857731404698924], [2.407434344371355, 48.857631473619655], [2.407311044297563, 48.85753041419693], [2.40718855782085, 48.857430481948725], [2.407065258699414, 48.857329422254395], [2.406942773156361, 48.857229490635795], [2.40681947498727, 48.857128430669974], [2.406822732872649, 48.857115221039315], [2.406959957730571, 48.857057003928496], [2.4071360164768922, 48.85698248685941], [2.407273240645326, 48.856924268483084], [2.407449299858073, 48.856849750950886], [2.407586521964007, 48.856791532201605], [2.407663298536096, 48.856759036678866], [2.407686987558173, 48.856750406898534], [2.407687856867167, 48.85674826985846], [2.407787138560624, 48.856706248257716], [2.407927383656367, 48.85664688122], [2.40810343963333, 48.85657236270008], [2.4082436853711853, 48.85651299529126], [2.408246181469436, 48.85650286300952]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 38, "roussel_fabien": 21.0, "nb_emargement": 1081.0, "nb_procuration": 45.0, "nb_vote_blanc": 2.0, "jadot_yannick": 77.0, "le_pen_marine": 70.0, "nb_exprime": 1073.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1476.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1081, "quartier_bv": "80", "geo_point_2d": [48.857284830696585, 2.405927194091825], "melenchon_jean_luc": 559.0, "poutou_philippe": 15.0, "macron_emmanuel": 203.0}, "geometry": {"type": "Point", "coordinates": [2.405927194091825, 48.857284830696585]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bd69e1ea220ff761f1f851c08ee6402c8cc5ea5e", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 43, "zemmour_eric": 51.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "11-24", "geo_shape": {"coordinates": [[[2.371175999146482, 48.86592565010167], [2.371194981822986, 48.86591058873047], [2.371380466686619, 48.86587607147112], [2.3715805070898393, 48.86583659403687], [2.371765991434568, 48.865802076177786], [2.371966029909235, 48.86576259719007], [2.372151513724312, 48.86572807963051], [2.372351552985782, 48.865688600003004], [2.372537036292678, 48.86565408094433], [2.372737074967008, 48.86561460156912], [2.372922557754979, 48.86558008191073], [2.37312259586382, 48.86554060098923], [2.373308078132957, 48.86550608073108], [2.373508114291558, 48.865466600054745], [2.373693596041657, 48.865432079196815], [2.3738936329870333, 48.86539259788064], [2.374079114218186, 48.865358076422964], [2.374279150598033, 48.86531859356053], [2.374464631310333, 48.86528407150311], [2.374513939244619, 48.86530043012716], [2.374531676381835, 48.865283306718354], [2.374591600114928, 48.865184909876504], [2.3746779666623032, 48.86506987842712], [2.374678075128464, 48.865069245856915], [2.37461549030587, 48.865047435356864], [2.374412504642864, 48.865010130115685], [2.374206464043842, 48.864972178114805], [2.374003477603989, 48.86493487217024], [2.373797437611405, 48.86489691856339], [2.373594451757599, 48.864859611922554], [2.3733884123606632, 48.86482165760894], [2.373185427093116, 48.86478435027188], [2.372979388281012, 48.864746396150885], [2.37297131417109, 48.86473316409034], [2.373039317664019, 48.8646571238879], [2.373106716822309, 48.86458144561027], [2.373174719919659, 48.86450540532047], [2.373242117321901, 48.86442972694909], [2.373237567999491, 48.864417535914676], [2.373086869997604, 48.86435565335702], [2.372935638325562, 48.86429329115632], [2.372784941030996, 48.86423140911082], [2.372633710080946, 48.86416904652164], [2.372483013515248, 48.86410716318978], [2.372331783287397, 48.86404480021201], [2.372181087428803, 48.86398291739234], [2.372029859286102, 48.86392055403323], [2.372026111558399, 48.863907591917474], [2.372150345074333, 48.86379639687382], [2.3722725411637873, 48.86368693213554], [2.3723967736274503, 48.86357573681396], [2.372518968670722, 48.863466272701565], [2.372643200082228, 48.86335507710205], [2.372765395453206, 48.86324561272335], [2.372889625812565, 48.863134416845895], [2.373011818796001, 48.86302495128738], [2.373136048103225, 48.86291375513196], [2.373258240040523, 48.86280429019935], [2.373380432838079, 48.86269482423902], [2.373504660571457, 48.86258362766784], [2.3736268509598712, 48.862474162326286], [2.373751077641144, 48.86236296547718], [2.373873266994373, 48.86225349986219], [2.373997492623447, 48.86214230273519], [2.374016993531499, 48.862133162174544], [2.374017299242821, 48.86212677752703], [2.37413089674018, 48.862021906409495], [2.374243148064824, 48.86191774671426], [2.374356744641097, 48.86181287626191], [2.374468995063843, 48.86170871633521], [2.374582590729641, 48.861603845648666], [2.374694838898399, 48.861499684584096], [2.374808435016825, 48.86139481367055], [2.374920682272813, 48.86129065327376], [2.375034276117893, 48.86118578211896], [2.375146523835102, 48.86108162149785], [2.375144904080401, 48.861069953926346], [2.375038848575754, 48.86100209310948], [2.37493945179676, 48.86093979974631], [2.374924908817715, 48.860928837207936], [2.374906965670246, 48.860932819319764], [2.374752479002321, 48.86102137125323], [2.374597745958081, 48.861109964863964], [2.374443258239316, 48.86119851638409], [2.374288524143149, 48.86128710958083], [2.374134035373538, 48.86137566068763], [2.373979300225538, 48.86146425347043], [2.373824810404975, 48.86155280416388], [2.373670074205036, 48.8616413965327], [2.373515583333614, 48.86172994681283], [2.37336084608173, 48.861818538767686], [2.373206354159547, 48.86190708863449], [2.37305161585561, 48.86199568017534], [2.373037644659418, 48.861997243790476], [2.372923727650576, 48.861968579284195], [2.372783250733758, 48.86193170384946], [2.372778343143363, 48.86192665438769], [2.372756101251971, 48.861924449535756], [2.372711529410611, 48.86191275016691], [2.372521667655744, 48.861861717976474], [2.3723366196396842, 48.86181314255666], [2.372297719706154, 48.861802686895025], [2.37227731594133, 48.86180042864038], [2.372265270583563, 48.86181490517113], [2.372193506510968, 48.86192236828838], [2.372105065396368, 48.862055808670625], [2.372033299298475, 48.86216327166134], [2.3719448573537463, 48.86229671279545], [2.371873091967407, 48.8624041747746], [2.371784649203275, 48.86253761576135], [2.3717128817807662, 48.86264507851318], [2.371624438197422, 48.862778519352474], [2.371552671486467, 48.86288598109274], [2.3715510671007882, 48.86288779114195], [2.3714256645649052, 48.86299754775409], [2.371308119138107, 48.86309978831333], [2.37129255266552, 48.86310960561921], [2.3712943765587, 48.8631185232043], [2.371213377993048, 48.8632383894329], [2.371132963226162, 48.863354691865226], [2.371051963921945, 48.86347455795903], [2.37097154843018, 48.86359086025806], [2.370890548387388, 48.86371072621706], [2.370810132170733, 48.863827028382886], [2.370729131389359, 48.86394689420708], [2.370648714447805, 48.86406319623963], [2.370635650571101, 48.8640806602407], [2.370639157771894, 48.86408619885386], [2.370760904002153, 48.86413370020408], [2.370868431143181, 48.86417740789702], [2.3708735253613042, 48.86418901641903], [2.3707800242692, 48.86431508854892], [2.370687842990452, 48.86443917998546], [2.370594342373849, 48.86456525104967], [2.370502160210266, 48.86468934231516], [2.370408658695332, 48.86481541320581], [2.3703164756468, 48.86493950430023], [2.370222973233521, 48.86506557501737], [2.3701307892999273, 48.865189665940726], [2.370037285988392, 48.86531573648435], [2.369945101169826, 48.86543982723664], [2.369851595596824, 48.86556589759949], [2.369759409893271, 48.86568998818071], [2.369748844703977, 48.86570570340949], [2.369757765705138, 48.8657128785728], [2.369789119939374, 48.86572132751718], [2.369953577735347, 48.8657636080821], [2.37012155351625, 48.865808871164056], [2.370286013221396, 48.86585115127599], [2.37045398958428, 48.865896412988526], [2.370618448472584, 48.86593869263317], [2.370786425406568, 48.86598395387552], [2.370794650982769, 48.86598439013168], [2.370956609597815, 48.86595967588021], [2.371142094794267, 48.865925158991864], [2.371175999146482, 48.86592565010167]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 24, "roussel_fabien": 18.0, "nb_emargement": 1341.0, "nb_procuration": 107.0, "nb_vote_blanc": 12.0, "jadot_yannick": 154.0, "le_pen_marine": 44.0, "nb_exprime": 1327.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1828.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1341, "quartier_bv": "42", "geo_point_2d": [48.86400771384241, 2.37221574176859], "melenchon_jean_luc": 436.0, "poutou_philippe": 6.0, "macron_emmanuel": 526.0}, "geometry": {"type": "Point", "coordinates": [2.37221574176859, 48.86400771384241]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6c2633254979962bb695d25c8dee7ca989a77767", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 150, "zemmour_eric": 259.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-53", "geo_shape": {"coordinates": [[[2.275767169851129, 48.86828932154005], [2.27573970782821, 48.868283492163584], [2.275589029542486, 48.868317003780454], [2.275472439840227, 48.86834546576755], [2.275464670695988, 48.868349875012974], [2.275363157850106, 48.868480098684365], [2.275260364544299, 48.86861217345849], [2.275158850676629, 48.8687423969257], [2.275056056335221, 48.868874471493015], [2.275039240106052, 48.868878807925626], [2.274833617020681, 48.868829104482565], [2.274630025929808, 48.868777320211215], [2.274424404998563, 48.868727616068846], [2.274220814711237, 48.868675831096766], [2.274204530376947, 48.86867927038977], [2.274085738013946, 48.86879808066383], [2.273970467833834, 48.868913464071944], [2.273851674390484, 48.869032274987795], [2.273736403173682, 48.869147658146034], [2.273731897841479, 48.86915047364987], [2.273550469168625, 48.869219713395275], [2.273361845344063, 48.86929242113991], [2.273180415697396, 48.86936165941619], [2.272991789479147, 48.86943436656004], [2.272810358833774, 48.86950360516581], [2.272621731584914, 48.86957631171713], [2.272440299953279, 48.86964554975308], [2.272251673049768, 48.86971825482096], [2.272209903890029, 48.869748558912605], [2.272687764169539, 48.87032543745933], [2.273938437998657, 48.87166384320998], [2.277075670721282, 48.87597752256493], [2.277100542914968, 48.87596444703146], [2.277249514482622, 48.87587269715489], [2.277397556378483, 48.87578148467974], [2.277546528262974, 48.8756897344266], [2.277694569131022, 48.87559852066976], [2.277843538605651, 48.87550677002356], [2.277991578421154, 48.87541555678355], [2.278140548225088, 48.87532380486149], [2.278288587000419, 48.875232591239055], [2.278436623906368, 48.87514137651855], [2.278585592129576, 48.875049624919086], [2.2787336293462452, 48.87495841072364], [2.278882595159736, 48.87486665873116], [2.279030631348702, 48.87477544325404], [2.279179597479039, 48.87468369088498], [2.279179984026643, 48.87468344319505], [2.279315214378995, 48.87459338234494], [2.279451543582807, 48.87450250325367], [2.27958677437159, 48.87441244119095], [2.279723102627994, 48.8743215617755], [2.279858331101702, 48.87423150028229], [2.27999465842324, 48.87414061964344], [2.280129887320843, 48.87405055783689], [2.280266212331676, 48.873959676865645], [2.280401440290069, 48.87386961473759], [2.280537765716717, 48.873778733450415], [2.280672992735804, 48.8736886710008], [2.280809315851868, 48.87359778938127], [2.2809445419315573, 48.87350772661015], [2.281080865451129, 48.87341684557395], [2.281080939853807, 48.87340424440534], [2.280935080019567, 48.87330547463531], [2.280790261144726, 48.87320807613508], [2.280644403774295, 48.873109306001474], [2.280499586000722, 48.87301190623303], [2.280353728367524, 48.8729131357195], [2.280208913033749, 48.87281573648957], [2.280205606094478, 48.87280681488617], [2.280269883960966, 48.87266784965873], [2.280333184306612, 48.87253142455082], [2.280397461492999, 48.87239245922021], [2.280460761157412, 48.872256034910095], [2.280467257466804, 48.87223699164728], [2.280453648975437, 48.872230739433455], [2.280309519434989, 48.872153393489505], [2.280169849677851, 48.872076847621216], [2.280030181694365, 48.87200030159284], [2.279886053407914, 48.87192295602212], [2.279746386254218, 48.87184640965194], [2.279602258827425, 48.87176906282946], [2.279462592503415, 48.8716925161175], [2.279318465923844, 48.87161516894257], [2.279313446634129, 48.871607840527815], [2.279322039420209, 48.87146340959374], [2.279329645673513, 48.87131696715826], [2.279338238366693, 48.87117253618499], [2.27934584453188, 48.87102609370991], [2.279354437132162, 48.87088166269746], [2.279362044572557, 48.87073522019101], [2.279345137590842, 48.87071643896461], [2.279339357826216, 48.87071510910639], [2.279143311234665, 48.87076709977547], [2.278949669995774, 48.870819225125835], [2.278753622610973, 48.87087121605106], [2.278559980595183, 48.87092334076608], [2.278363931078808, 48.87097533014066], [2.278170288285922, 48.87102745422037], [2.277974239351986, 48.871079442959996], [2.277780595782213, 48.871131566404344], [2.277763096102895, 48.871127048618916], [2.277682311885846, 48.87101304559526], [2.277600097155414, 48.87089663890876], [2.277519313652439, 48.87078263575137], [2.277437099650025, 48.870666228928634], [2.277356318224329, 48.87055222564565], [2.277274103586511, 48.87043581867844], [2.277193322874862, 48.87032181526172], [2.277111108977531, 48.87020540725901], [2.277030328967444, 48.87009140460777], [2.276948117161113, 48.86997499647712], [2.276867336501955, 48.86986099368384], [2.27678512542351, 48.869744585416946], [2.276704346853954, 48.86963058159893], [2.276622135127807, 48.86951417408684], [2.276622064291189, 48.86951407203238], [2.276551544341494, 48.869411214549565], [2.2764693346662073, 48.8692948069177], [2.276398815314921, 48.86919194932452], [2.276316606326973, 48.86907554156464], [2.276246087586585, 48.86897268296177], [2.276163879285969, 48.86885627507392], [2.276093361131481, 48.868753417259974], [2.2760111521550233, 48.86863700923587], [2.2759325166699442, 48.86852971967433], [2.275850309781504, 48.86841331062521], [2.275771674965379, 48.86830602093628], [2.275767169851129, 48.86828932154005]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 53, "roussel_fabien": 4.0, "nb_emargement": 1157.0, "nb_procuration": 61.0, "nb_vote_blanc": 6.0, "jadot_yannick": 26.0, "le_pen_marine": 56.0, "nb_exprime": 1147.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1488.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1157, "quartier_bv": "63", "geo_point_2d": [48.872059242247566, 2.276693459840336], "melenchon_jean_luc": 92.0, "poutou_philippe": 2.0, "macron_emmanuel": 527.0}, "geometry": {"type": "Point", "coordinates": [2.276693459840336, 48.872059242247566]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8d564a798d4b12e189ddea7d6f31bbeef08c85a9", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 146, "zemmour_eric": 261.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 26.0, "date_tour": "2022-04-10", "id_bvote": "17-41", "geo_shape": {"coordinates": [[[2.294458479574836, 48.884378342392495], [2.2944473150460762, 48.88439295013759], [2.294443025552731, 48.88441303487125], [2.294446038517778, 48.88442003415769], [2.294481255417309, 48.884448002330764], [2.294519192543918, 48.884457876629995], [2.294533099032483, 48.884453563525135], [2.294613420934094, 48.884501348941505], [2.294635843071948, 48.884514688660786], [2.294637455861916, 48.88452690212551], [2.294506369466816, 48.884637583344144], [2.294360059113721, 48.884755862194055], [2.294228970176903, 48.88486654397716], [2.294082658550455, 48.88498482246346], [2.2939515698234683, 48.885095503028595], [2.293830202896893, 48.88518833864762], [2.293699113121014, 48.88529901891588], [2.293577745270051, 48.88539185426182], [2.293577005222203, 48.88540298004624], [2.293675901321252, 48.88549358857449], [2.293750229983498, 48.885555194293], [2.293763670829762, 48.885558796263474], [2.29394287801546, 48.88553790855589], [2.294121224570908, 48.88551712072864], [2.294300431469866, 48.88549623248512], [2.29447877772766, 48.885475445023765], [2.294657984339669, 48.88545455624429], [2.294836330324275, 48.885433767350285], [2.295015536649426, 48.88541287803486], [2.295193883712055, 48.88539208861554], [2.295373088386736, 48.88537119875616], [2.295551435163872, 48.88535040880347], [2.29573064090323, 48.88532951931543], [2.2959089860312663, 48.88530872882129], [2.295914612332492, 48.885308850941406], [2.296089063699909, 48.88533710940147], [2.296284951939788, 48.885368840021236], [2.296459403721284, 48.88539709704091], [2.296655293776083, 48.88542882706104], [2.296829745947352, 48.885457084438876], [2.29698493867915, 48.88548222200757], [2.296990634090703, 48.88548702461185], [2.297012819835487, 48.88548673758465], [2.297053516253145, 48.88549332941098], [2.2972881685642372, 48.88553133666981], [2.297484059628983, 48.88556306533019], [2.297503948519504, 48.88556371892738], [2.297511705747962, 48.88555316760121], [2.297636465861502, 48.88547575469329], [2.29776062190899, 48.885398714929686], [2.29788537991885, 48.88532130174354], [2.298009535217722, 48.885244262610264], [2.2981342938511258, 48.88516684916185], [2.298258448425631, 48.88508980886041], [2.298262360215484, 48.88508115232249], [2.298221697368732, 48.88496988230319], [2.298180769071304, 48.884857882241754], [2.298140106585351, 48.88474661127287], [2.298099178638882, 48.8846346111608], [2.298105620380007, 48.884624714885675], [2.298266884783128, 48.88456334893856], [2.298427793789937, 48.884502118288594], [2.29858905607017, 48.884440751892775], [2.298749964331562, 48.88437951990377], [2.298911227216074, 48.88431815307513], [2.299072134719728, 48.88425692064635], [2.2992333968449348, 48.88419555337695], [2.299394303578852, 48.88413432140759], [2.299555563581181, 48.884072953689476], [2.299716470933238, 48.88401172038906], [2.299877730176163, 48.883950352230194], [2.3000386354070113, 48.883889118482], [2.300045455689904, 48.88388146095533], [2.300047123383064, 48.88380618745047], [2.300048611210506, 48.883739121111766], [2.300042578670279, 48.88371384153399], [2.300030225298614, 48.88371222425572], [2.299871552229367, 48.88363708882019], [2.299713906924926, 48.88356374255796], [2.299555233401018, 48.88348860668511], [2.29939758897948, 48.88341526089577], [2.299238916364266, 48.88334012459355], [2.299081272849818, 48.88326677747857], [2.298922601131295, 48.883191641646256], [2.298764958511839, 48.88311829410487], [2.298606289077759, 48.88304315695199], [2.298448645989849, 48.882969808976235], [2.29828997745244, 48.88289467229324], [2.298132335259417, 48.88282132389113], [2.297973667642909, 48.88274618587954], [2.297816026344876, 48.882672837051075], [2.29765735962502, 48.88259769950944], [2.297499719222073, 48.882524350254585], [2.297342080626516, 48.88245100079527], [2.297183413915058, 48.88237586170314], [2.2971464713416783, 48.88235440882127], [2.297130559181344, 48.882363715260944], [2.297072834091519, 48.88240709845321], [2.296939733051683, 48.882508200830316], [2.296810434484607, 48.88260537550567], [2.296677332440734, 48.88270647667362], [2.2965480315282, 48.8828036510401], [2.296414928468139, 48.8829047518981], [2.296285627937219, 48.883001925971676], [2.29615252384881, 48.883103027419], [2.296023220972405, 48.88320020118369], [2.295979160830817, 48.88323366716709], [2.2959616239997658, 48.883241669750205], [2.295956198642404, 48.88325090819144], [2.2958671536201702, 48.88331854332723], [2.295744223130824, 48.88341048864948], [2.295611116959237, 48.883511588558086], [2.295488185549971, 48.883603534500544], [2.295355078387895, 48.88370463410676], [2.295232147434428, 48.88379657977824], [2.295099039281857, 48.88389767908205], [2.294976106057053, 48.88398962446649], [2.294842996913977, 48.884090723467885], [2.294720062781389, 48.884182668573295], [2.294597129590354, 48.884274612653535], [2.294464018983086, 48.884375711207454], [2.294458479574836, 48.884378342392495]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 41, "roussel_fabien": 6.0, "nb_emargement": 1305.0, "nb_procuration": 99.0, "nb_vote_blanc": 8.0, "jadot_yannick": 51.0, "le_pen_marine": 58.0, "nb_exprime": 1290.0, "nb_vote_nul": 5.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1599.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1303, "quartier_bv": "66", "geo_point_2d": [48.88416257582846, 2.296878361201877], "melenchon_jean_luc": 106.0, "poutou_philippe": 1.0, "macron_emmanuel": 608.0}, "geometry": {"type": "Point", "coordinates": [2.296878361201877, 48.88416257582846]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d0e49b5a683d8ddaba5ddee7201b18e6699fcacc", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 38, "zemmour_eric": 70.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "10-19", "geo_shape": {"coordinates": [[[2.362614196105643, 48.87426986784615], [2.362578217124672, 48.87427680979668], [2.362433269118466, 48.87430880157016], [2.362252927166756, 48.87434848098901], [2.362062641931803, 48.874390478694814], [2.361882300778181, 48.87443015755964], [2.361692014945999, 48.87447215467314], [2.361511671864013, 48.87451183296945], [2.361321385434608, 48.874553829490715], [2.36114104178749, 48.8745935072257], [2.36113912239905, 48.874594040180774], [2.360974751367042, 48.87464977870849], [2.360786850523814, 48.87471372460963], [2.360622478737132, 48.87476946264758], [2.360434577029754, 48.874833407988824], [2.360270204499445, 48.87488914463774], [2.360082300553428, 48.874953090311095], [2.359917927268453, 48.875008826470236], [2.359730023832478, 48.8750727706917], [2.359565649781783, 48.87512850726038], [2.359377745481663, 48.87519245092194], [2.359213370676299, 48.87524818700086], [2.359206599197314, 48.87525888611932], [2.35925719123242, 48.875364864801], [2.359308180079812, 48.87546620050762], [2.359358772522981, 48.87557217912646], [2.35940976177086, 48.87567351477078], [2.359460355985462, 48.87577949333404], [2.359511345622979, 48.87588082981535], [2.359512847247879, 48.87593012859127], [2.359521771040681, 48.87593499856983], [2.359708246792278, 48.87590350496304], [2.359863876053234, 48.87587943740431], [2.360050351399046, 48.875847943263], [2.360205980335898, 48.875823875258334], [2.360218187808973, 48.87582593072987], [2.360378653430559, 48.87592070755914], [2.360513085151783, 48.876001795715595], [2.360516696934905, 48.876005235179356], [2.360589197649797, 48.8761281846705], [2.36066251461234, 48.876253531590464], [2.360735016028115, 48.876376480066384], [2.36080833231679, 48.876501827760784], [2.360880834422415, 48.876624776120686], [2.360954152785867, 48.87675012280558], [2.36102665557032, 48.876873071948765], [2.361099973270947, 48.87699841850885], [2.361172478119703, 48.87712136664401], [2.361245796509673, 48.87724671398583], [2.361318300684908, 48.87736966199773], [2.361391621149799, 48.87749500832997], [2.361464126003999, 48.87761795712513], [2.361537445805972, 48.877743303332586], [2.36160995134997, 48.87786625201172], [2.361683273215867, 48.87799159810891], [2.361704342455673, 48.87800133960642], [2.361754373220765, 48.87798007002849], [2.361925308223232, 48.877917429877805], [2.362099822728064, 48.87785194417988], [2.362270756894642, 48.877789303528644], [2.3624452719102322, 48.8777238164275], [2.362616205240816, 48.87766117527573], [2.362790718018307, 48.877595688555395], [2.3629616505128, 48.87753304690316], [2.363136162437619, 48.87746755877234], [2.363142418673732, 48.877457027588086], [2.363116545723171, 48.87740314399144], [2.363084538067805, 48.87735041576659], [2.363090224165428, 48.877339343749235], [2.363274148534752, 48.877267175776026], [2.363449190836029, 48.87719600531469], [2.363633114201774, 48.877123836780584], [2.363808156905179, 48.87705266489307], [2.363813435588781, 48.87704869990535], [2.36385647776684, 48.876985602970244], [2.363888660225885, 48.87692348164569], [2.363894646348399, 48.87691863816693], [2.364058909281366, 48.87685488298584], [2.364213824017449, 48.87679078654556], [2.364378084793097, 48.87672703091187], [2.36453299875611, 48.876662934051076], [2.364697258737835, 48.876599177972054], [2.364852171927879, 48.87653508069084], [2.364876063880095, 48.87652712603912], [2.364877347410719, 48.87652372887051], [2.364817562814375, 48.876453072969426], [2.364746551801198, 48.876370340559255], [2.364652425316546, 48.876259095241736], [2.364581414830047, 48.87617636271904], [2.364581071000956, 48.87617593550896], [2.364488137044785, 48.87605260751835], [2.36439573378955, 48.875930070973496], [2.364303329605732, 48.87580753433649], [2.364210396953565, 48.875684206988346], [2.364117995016309, 48.8755616692889], [2.364025063241666, 48.87543834176938], [2.363932662165633, 48.8753158047988], [2.363839731279485, 48.87519247620869], [2.363747331075643, 48.87506993906776], [2.36365439969277, 48.87494661119832], [2.363562000372098, 48.87482407298776], [2.36346907122996, 48.8747007449542], [2.363376672770468, 48.87457820747256], [2.363283744516802, 48.874454878368354], [2.363191346929466, 48.87433234071637], [2.363098419542275, 48.874209012340096], [2.363086560382039, 48.87416009821611], [2.363083470638375, 48.87415967707521], [2.363034437292676, 48.8741721975324], [2.362844153331884, 48.87421419648721], [2.362662736809342, 48.874260520493095], [2.362617400190825, 48.87427052703258], [2.362614196105643, 48.87426986784615]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 19, "roussel_fabien": 21.0, "nb_emargement": 941.0, "nb_procuration": 52.0, "nb_vote_blanc": 5.0, "jadot_yannick": 67.0, "le_pen_marine": 56.0, "nb_exprime": 931.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1235.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 941, "quartier_bv": "40", "geo_point_2d": [48.87593919901745, 2.362188108837981], "melenchon_jean_luc": 371.0, "poutou_philippe": 7.0, "macron_emmanuel": 263.0}, "geometry": {"type": "Point", "coordinates": [2.362188108837981, 48.87593919901745]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dc17e762ec7e7929fb0b64b6260cbe9047c49ddf", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 49, "zemmour_eric": 93.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "20-22", "geo_shape": {"coordinates": [[[2.3993479559070803, 48.870691334309], [2.399377088593287, 48.870707727892075], [2.399555247889106, 48.870761897475894], [2.399718932320088, 48.87081107663336], [2.399882615697006, 48.87086025555794], [2.400060776040214, 48.87091442438191], [2.400095637670555, 48.87092489829611], [2.400112628115851, 48.870937832251116], [2.400130251928209, 48.870934834956486], [2.400259075746173, 48.87097353856476], [2.400466885230884, 48.87103523257391], [2.40063057001833, 48.87108441046578], [2.400838380395797, 48.8711461029245], [2.40100206724552, 48.87119528031019], [2.401007487336615, 48.87120871292003], [2.400974884638088, 48.871238637013654], [2.400943291568769, 48.87127050511669], [2.400949140455425, 48.871283637697815], [2.401121031564983, 48.871334296705946], [2.401280505721018, 48.87138094437634], [2.401439978799424, 48.87142759182546], [2.4016118708717142, 48.871478249222875], [2.401771344544771, 48.8715248962264], [2.40194323862358, 48.871575553150315], [2.401958901747922, 48.87157341724645], [2.401966163410373, 48.8715572124447], [2.402002082069803, 48.871431391520964], [2.402037917523932, 48.87130591550185], [2.402073835826433, 48.871180095427235], [2.402109670934937, 48.871054619358084], [2.402145588901162, 48.87092879833402], [2.402181423663944, 48.87080332221486], [2.4022173412835732, 48.87067750114064], [2.402253174337404, 48.870552024964674], [2.402289091610446, 48.87042620384029], [2.402324925681803, 48.87030072762109], [2.402360842608261, 48.870174906446586], [2.402396676323594, 48.870049431076644], [2.402398926500565, 48.8700459178144], [2.402542335423448, 48.86991156968187], [2.4026843768610022, 48.8697789511583], [2.402693749407677, 48.86976669951133], [2.402685844823637, 48.86975817033365], [2.402589181878187, 48.86963826688276], [2.40249199550028, 48.869519823046254], [2.402394810927538, 48.86940137912496], [2.402298147950967, 48.869281475393585], [2.402200964263664, 48.86916303128937], [2.402104302175472, 48.8690431273756], [2.402103770493857, 48.86904253475488], [2.401994069779432, 48.868930316087855], [2.401886525006229, 48.868820693673314], [2.401778980685763, 48.868711071151274], [2.401669281358715, 48.86859885305219], [2.401561737953306, 48.868489230312974], [2.40145203957185, 48.86837701109303], [2.401411010951338, 48.86835382604623], [2.401397326768789, 48.868360118620956], [2.401365266462144, 48.86839153760099], [2.40136477933644, 48.86839205138416], [2.401271246870886, 48.86849912447956], [2.401169032154626, 48.86861551345558], [2.401075497522303, 48.868722586369515], [2.40097328329329, 48.86883897516167], [2.40087974785747, 48.86894604790102], [2.400777531389419, 48.86906243649567], [2.400683995149989, 48.869169509060384], [2.400669493734132, 48.86918602111521], [2.400669461956857, 48.86918605782888], [2.400669401180437, 48.86918612677348], [2.400568480242503, 48.86930227703654], [2.400461232014721, 48.86942256843248], [2.400360310144189, 48.869538719394434], [2.400253059596029, 48.869659009672006], [2.400152136803233, 48.86977516043359], [2.400044886640396, 48.86989545140503], [2.3999439629356862, 48.87001160106695], [2.399836710442083, 48.87013189181928], [2.399735785804727, 48.87024804218011], [2.399628533717154, 48.87036833182774], [2.399527608157503, 48.87048448198821], [2.399420353728764, 48.87060477231598], [2.399349754011362, 48.870686021064735], [2.3993479559070803, 48.870691334309]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 22, "roussel_fabien": 16.0, "nb_emargement": 1219.0, "nb_procuration": 61.0, "nb_vote_blanc": 10.0, "jadot_yannick": 96.0, "le_pen_marine": 71.0, "nb_exprime": 1207.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1607.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1221, "quartier_bv": "78", "geo_point_2d": [48.870091448451454, 2.401216068626212], "melenchon_jean_luc": 500.0, "poutou_philippe": 5.0, "macron_emmanuel": 315.0}, "geometry": {"type": "Point", "coordinates": [2.401216068626212, 48.870091448451454]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "124f23cc2ea110bccef221874549dd89a21d9a58", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 215, "zemmour_eric": 248.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-1", "geo_shape": {"coordinates": [[[2.272031383195794, 48.86394755543648], [2.272071527639071, 48.8639699857587], [2.272150230066941, 48.863989762747785], [2.272364986983118, 48.86403796000977], [2.272524419000087, 48.86407802410829], [2.272683849911882, 48.86411808708544], [2.272898609213766, 48.864166283392585], [2.272901377819648, 48.86416676697713], [2.273117941211245, 48.86418886023754], [2.273299745170684, 48.86420495561225], [2.273516308877527, 48.86422704905036], [2.273698113093308, 48.86424314381943], [2.273879916045937, 48.8642592392031], [2.2740964815999503, 48.86428133069927], [2.274278284808916, 48.86429742547723], [2.274494850690594, 48.86431951625181], [2.274498551040905, 48.864319558469234], [2.274687114795665, 48.86430791260523], [2.274888660290391, 48.86429201201783], [2.275077223858237, 48.864280365538924], [2.275278769114811, 48.864264465193486], [2.275467332495839, 48.86425281809965], [2.275668877539173, 48.864236916197605], [2.275761824161512, 48.86423117513637], [2.275788866506544, 48.86423164186134], [2.275807234445597, 48.86422637578014], [2.275902851003395, 48.864220469096345], [2.276098614448198, 48.8641949713737], [2.27626504252652, 48.864167244512636], [2.276460805581662, 48.86414174709562], [2.276627233297186, 48.86411401972957], [2.27682299598744, 48.864088520819614], [2.276989421977111, 48.864060792940364], [2.276999060417965, 48.86405953811338], [2.277165487584386, 48.864031809996796], [2.277351611267612, 48.86400756596], [2.277377603675678, 48.86399537119709], [2.2773584093286052, 48.86394948185071], [2.277248908066249, 48.863848621934785], [2.2771490397071252, 48.86375705104649], [2.277039539254572, 48.863656190921475], [2.276939670256822, 48.86356462073362], [2.276830170614065, 48.86346376039951], [2.27673030372861, 48.86337218913001], [2.276620804895742, 48.86327132858683], [2.27652093737165, 48.86317975801773], [2.276519085249757, 48.86317737702518], [2.276471249910388, 48.863083711575385], [2.276425962296952, 48.862993390008526], [2.276380673490022, 48.862903067509656], [2.276332840014276, 48.86280940198961], [2.276330318538863, 48.86280280797065], [2.276304061807933, 48.86279647333432], [2.276156452768875, 48.86273053127986], [2.2759928481165232, 48.86265634951971], [2.275987623129514, 48.86265175548791], [2.275930927992421, 48.862538357406244], [2.275872488782898, 48.86242178930103], [2.27581579413406, 48.862308392040575], [2.275757355440095, 48.86219182385494], [2.275700659941715, 48.86207842560884], [2.275642221763204, 48.861961857342834], [2.275585528116162, 48.861848459926215], [2.275527090453298, 48.86173189157976], [2.275470397319495, 48.861618493185816], [2.275411960172171, 48.861501924758954], [2.275393957254495, 48.86149639894073], [2.27519907497523, 48.86154783284636], [2.275007118956953, 48.861600530667936], [2.274812237269162, 48.86165196394702], [2.27462027912558, 48.8617046602356], [2.274425396666391, 48.86175609287993], [2.27423343773525, 48.86180878944237], [2.274038554504663, 48.861860221451956], [2.273846594798686, 48.861912917388935], [2.2738456893183923, 48.861913141230126], [2.27369059538085, 48.86194763642556], [2.273518030083136, 48.861985784663716], [2.273362937075388, 48.862020279440564], [2.273190371297143, 48.86205842720374], [2.27303527649321, 48.862092921545425], [2.272862710234335, 48.86213106883366], [2.272849161114399, 48.86212482053411], [2.272790760065486, 48.86214832284892], [2.272736959326859, 48.8621699743396], [2.272736747676963, 48.86217273497117], [2.272665390600432, 48.86230703540607], [2.272597410506254, 48.86244009541543], [2.272526051341437, 48.862574395726604], [2.272458070555078, 48.86270745472546], [2.272386710652302, 48.86284175582041], [2.272318729161196, 48.862974814708004], [2.272318238692057, 48.86297606542509], [2.272286518555294, 48.86309359707275], [2.272254978876249, 48.86320708000781], [2.272223439047238, 48.86332056382225], [2.272191717136389, 48.863438094500616], [2.272160177029718, 48.86355157827471], [2.272128456198522, 48.8636691089201], [2.272096915814191, 48.86378259265384], [2.272065194699719, 48.86390012325797], [2.272031383195794, 48.86394755543648]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 1, "roussel_fabien": 3.0, "nb_emargement": 1247.0, "nb_procuration": 113.0, "nb_vote_blanc": 12.0, "jadot_yannick": 40.0, "le_pen_marine": 58.0, "nb_exprime": 1233.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1524.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1247, "quartier_bv": "62", "geo_point_2d": [48.863143648265314, 2.274485995734181], "melenchon_jean_luc": 70.0, "poutou_philippe": 0.0, "macron_emmanuel": 565.0}, "geometry": {"type": "Point", "coordinates": [2.274485995734181, 48.863143648265314]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3e3ba723e5852be47f1d646c5c3248989b92cf06", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 78, "zemmour_eric": 83.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "9-26", "geo_shape": {"coordinates": [[[2.346606441213742, 48.88209903325102], [2.346598222733896, 48.88208762715012], [2.346576362551041, 48.881955067862116], [2.346554653136139, 48.88182343388886], [2.346532793175184, 48.88169087456107], [2.346511083980539, 48.88155924054833], [2.346489224230095, 48.88142668208], [2.346467515255704, 48.88129504802775], [2.346445655738233, 48.881162488620426], [2.346423946984195, 48.88103085452872], [2.346402087677226, 48.88089829598087], [2.346380380506827, 48.88076666185709], [2.346358520069537, 48.88063410236277], [2.346336813119377, 48.880502468199495], [2.346336433169264, 48.880501126119896], [2.346301200499775, 48.880413872081775], [2.346234138150268, 48.88024779039459], [2.346198905823547, 48.880160536306306], [2.346209164057531, 48.880149437006466], [2.346425034134406, 48.88011826040579], [2.346640540597287, 48.88008713539191], [2.3468564087943102, 48.88005595800425], [2.347071916105049, 48.88002483221957], [2.347287783785484, 48.8799936540523], [2.347503290580593, 48.87996252748933], [2.347513790494226, 48.87995213806878], [2.347466521624659, 48.87978021760962], [2.347421295285922, 48.87961572503559], [2.347413153587642, 48.87957002511994], [2.347402427079671, 48.8795692309941], [2.347263734788022, 48.879579282162986], [2.347069668292501, 48.8795944199794], [2.346842481164784, 48.87961088406737], [2.346648414440347, 48.87962602030127], [2.346623906520651, 48.87961980525822], [2.346588361604943, 48.879629066847585], [2.346454443393625, 48.87963754322334], [2.346260377809252, 48.87965267973454], [2.346126460847202, 48.87966115575072], [2.346123044183099, 48.87966167039395], [2.345928978423804, 48.87967680546834], [2.3457327576532, 48.879724541862515], [2.345581073641178, 48.879770987135174], [2.345579604385804, 48.8797713703135], [2.345383384302253, 48.87981910613842], [2.345209060063521, 48.879857044458], [2.345012837953977, 48.879904779664415], [2.344838513169964, 48.879942716542246], [2.344642290398003, 48.879990451137644], [2.344467965057209, 48.880028387472954], [2.344418190199044, 48.880039218976506], [2.344412781621514, 48.88003765419766], [2.344371857351806, 48.880046766059905], [2.344247305209575, 48.880073870580645], [2.344090082797, 48.880109166973014], [2.34391575664537, 48.88014710339942], [2.343758535150392, 48.880182399361516], [2.343754590411022, 48.88018434637768], [2.343765283983349, 48.88021589513161], [2.343825881223249, 48.88033204064589], [2.343886562592281, 48.88044834845674], [2.343947160373123, 48.88056449388511], [2.344007842283852, 48.88068080160992], [2.344068440594317, 48.88079694785167], [2.344129123058077, 48.8809132545912], [2.344189721909498, 48.88102940074704], [2.344250404903645, 48.88114570829979], [2.344311004307356, 48.881261853470455], [2.3443716878432213, 48.881378160937174], [2.34437187679905, 48.88138362271431], [2.34431080721511, 48.881520643193845], [2.344250013765317, 48.88165704190265], [2.344188942176705, 48.88179406227854], [2.344128148088556, 48.88193046089158], [2.344067077222096, 48.88206748117876], [2.344006282495586, 48.88220387969602], [2.343945210987853, 48.88234089988699], [2.343884415622972, 48.88247729830848], [2.343823619939628, 48.8826136966822], [2.343762546107252, 48.88275071672148], [2.343741171785771, 48.882795268417055], [2.343741285573832, 48.882795328396604], [2.343769496619788, 48.882800806167246], [2.34394904649014, 48.88283959263656], [2.344132702314256, 48.882875252770575], [2.344312252711691, 48.88291403869263], [2.344495909047055, 48.88294969826703], [2.344526543195473, 48.882953459711835], [2.344542316713739, 48.882918209575564], [2.3447144344561712, 48.88285025313541], [2.344884067169112, 48.88278327750796], [2.345056185371862, 48.882715321474905], [2.345225817205764, 48.8826483453551], [2.345397933153064, 48.88258038881494], [2.34556756547147, 48.882513412210166], [2.345739680526863, 48.88244545517039], [2.345909310602692, 48.88237847806574], [2.346081426129715, 48.88231052053381], [2.346251055326508, 48.882243542936784], [2.346423168598091, 48.882175584897766], [2.346592798279278, 48.88210860681578], [2.346606441213742, 48.88209903325102]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 26, "roussel_fabien": 12.0, "nb_emargement": 1236.0, "nb_procuration": 96.0, "nb_vote_blanc": 8.0, "jadot_yannick": 125.0, "le_pen_marine": 46.0, "nb_exprime": 1225.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1536.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1236, "quartier_bv": "36", "geo_point_2d": [48.88117436951622, 2.3453261864375197], "melenchon_jean_luc": 316.0, "poutou_philippe": 6.0, "macron_emmanuel": 500.0}, "geometry": {"type": "Point", "coordinates": [2.3453261864375197, 48.88117436951622]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4d1d42f9d11fa3dbd56e4b1a0128414581b8255f", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 150, "zemmour_eric": 195.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-15", "geo_shape": {"coordinates": [[[2.284745328173253, 48.85858649593771], [2.2847529181762862, 48.85856181080687], [2.284796757505678, 48.85843362316997], [2.284839077502861, 48.8583091641487], [2.284882916407701, 48.85818097645107], [2.284925235981524, 48.85805651827028], [2.284969074474161, 48.85792832961261], [2.285011394999858, 48.85780387138115], [2.285055233067948, 48.85767568266275], [2.285097551819754, 48.85755122436435], [2.285139870369491, 48.857426766037044], [2.285183707804118, 48.857298577228036], [2.285183349915675, 48.8572937671266], [2.285115507282227, 48.857158767634466], [2.285040337699566, 48.85702754747679], [2.285041009622187, 48.85702019834509], [2.285120656587909, 48.85691975999143], [2.285202291705485, 48.85681883071281], [2.285281936677312, 48.8567183931247], [2.285363571167089, 48.85661746371773], [2.28544321688308, 48.85651702601224], [2.28552484938201, 48.856416096468834], [2.285604494479318, 48.85631565863777], [2.285686126350468, 48.856214728966016], [2.285684655523191, 48.85620480386435], [2.285555787407186, 48.85610075582906], [2.285429580962048, 48.856000133003796], [2.285300713861595, 48.85589608467465], [2.28517450840468, 48.85579546156186], [2.2850456423197683, 48.85569141293877], [2.284919437851272, 48.855590789538425], [2.284790572769547, 48.8554867415208], [2.284664369301701, 48.85538611693359], [2.284535505235495, 48.85528206862211], [2.284409302755951, 48.855181443747384], [2.284283102114197, 48.85508081963786], [2.284154238213902, 48.85497676997975], [2.28402803856053, 48.854876145582686], [2.28389917567574, 48.85477209563073], [2.283772977010535, 48.85467147094614], [2.283644115141342, 48.85456742070038], [2.283643927730668, 48.85456727298278], [2.283591398317235, 48.85454157136718], [2.283558473984517, 48.854554930284344], [2.283416258580142, 48.8546420954082], [2.283278323309481, 48.85472541335446], [2.28313610697116, 48.85481257813198], [2.282998170813513, 48.85489589484321], [2.282860235577563, 48.854979211397406], [2.282718016484441, 48.85506637564991], [2.282580078974039, 48.855149692759504], [2.282437860309666, 48.855236856673834], [2.282299921912479, 48.85532017254838], [2.282157702314142, 48.8554073361164], [2.282019763017583, 48.8554906516552], [2.281877542472885, 48.85557781577616], [2.2818748317212583, 48.85558868714684], [2.281960456629058, 48.855693043661496], [2.282092585353838, 48.85579557461682], [2.282094067330887, 48.8557970233814], [2.282231607319861, 48.855906781504586], [2.282363738483035, 48.85600931214893], [2.2825012796004343, 48.85611906994114], [2.282633410469753, 48.85622160025997], [2.282631745388918, 48.85623433958129], [2.282490376226127, 48.856311962794344], [2.282374645387143, 48.85637509804581], [2.282233275459436, 48.856452720945306], [2.282117542621145, 48.8565158568312], [2.282092578048089, 48.85653135858822], [2.282109861338466, 48.85656727741633], [2.282256988469494, 48.85665194149207], [2.282392865578284, 48.85673181088674], [2.28253999362137, 48.856816475501276], [2.282675871593042, 48.85689634456278], [2.282823000560482, 48.856981008816796], [2.28295887939514, 48.85706087754511], [2.2830947600091323, 48.85714074612153], [2.283241888996961, 48.85722540893447], [2.283242835988741, 48.857226022572405], [2.283356342711741, 48.85730710945096], [2.2835243577683633, 48.857437724628895], [2.283637865390672, 48.857518811224935], [2.283631697156637, 48.85753354174345], [2.283445091802716, 48.85756973880901], [2.283255004710177, 48.857605770832485], [2.283068398835883, 48.85764196730834], [2.28287830984408, 48.857677999622176], [2.282691703461895, 48.85771419460895], [2.282501613946082, 48.857750226322096], [2.282315007031054, 48.85778642161837], [2.282124916991235, 48.85782245273081], [2.281938309568342, 48.857858646538034], [2.281748220367414, 48.8578946770579], [2.281561612411676, 48.857930871174666], [2.281371521336272, 48.85796690018634], [2.2813589971069588, 48.857999003068294], [2.281450349022, 48.858015137500665], [2.281630442919899, 48.85804869095678], [2.281833428191056, 48.85808343916761], [2.282013522571835, 48.85811699204512], [2.282216508364458, 48.85815173960399], [2.282396603228008, 48.85818529190296], [2.282550932581654, 48.85821170954731], [2.282586663344684, 48.85822555711321], [2.282597077656385, 48.85822438742971], [2.282645733273346, 48.85823271666532], [2.282846852856731, 48.85826586369496], [2.283049839797552, 48.8583006089364], [2.283250959900189, 48.85833375528487], [2.283453947362619, 48.858368500738], [2.2836550679843, 48.8584016464053], [2.28385805599307, 48.858436390271564], [2.284059177133987, 48.858469535257626], [2.284262165676718, 48.85850427843631], [2.284463285973856, 48.85853742273304], [2.284666276400994, 48.85857216613154], [2.284695640292305, 48.858589272937856], [2.2847207592153618, 48.85858716480035], [2.284745328173253, 48.85858649593771]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 15, "roussel_fabien": 4.0, "nb_emargement": 1044.0, "nb_procuration": 68.0, "nb_vote_blanc": 5.0, "jadot_yannick": 30.0, "le_pen_marine": 61.0, "nb_exprime": 1032.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1290.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1042, "quartier_bv": "62", "geo_point_2d": [48.85662358830444, 2.283761695987928], "melenchon_jean_luc": 74.0, "poutou_philippe": 3.0, "macron_emmanuel": 489.0}, "geometry": {"type": "Point", "coordinates": [2.283761695987928, 48.85662358830444]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "565efd75d364ec1d556c2df76deef3d10140a2b1", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 71, "zemmour_eric": 75.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "12-8", "geo_shape": {"coordinates": [[[2.391982229045942, 48.84280618886307], [2.392001393985901, 48.84282109960509], [2.392173686692795, 48.842869785042176], [2.3923655133457222, 48.84292514465858], [2.3925378067366943, 48.842973829566716], [2.392729634159322, 48.843029188594095], [2.392901929596782, 48.843077872980196], [2.393093756426693, 48.84313323141164], [2.393266052548227, 48.843181915268794], [2.39345788014783, 48.843237273111214], [2.393630176953435, 48.8432859564394], [2.393822005322726, 48.8433413136928], [2.393994302812399, 48.84338999649203], [2.394186133313796, 48.843445353163276], [2.39435843012511, 48.84349403542665], [2.394550261406639, 48.84354939060959], [2.394722558891564, 48.84359807324331], [2.394772631322506, 48.84360850370944], [2.394790104116914, 48.84358934674704], [2.3948268672481072, 48.843535787100045], [2.394899409120095, 48.843435389983995], [2.394978686814384, 48.84331989338488], [2.3950512280830862, 48.84321949705665], [2.395130505112444, 48.843104000334606], [2.395203044425696, 48.84300360388798], [2.395226708023487, 48.842995162527565], [2.395211581783769, 48.84295867553728], [2.39519640956337, 48.84283855967469], [2.395181991893863, 48.84271953313748], [2.395166819800737, 48.8425994181447], [2.39515240090256, 48.84248039157155], [2.395137228957681, 48.84236027564996], [2.395122810193239, 48.842241249047746], [2.395107638386169, 48.84212113309667], [2.395093221117949, 48.842002106472215], [2.395078802552993, 48.841883079826474], [2.3950636309516042, 48.841762963831286], [2.395050384862675, 48.841658092706005], [2.395035967853288, 48.84153906602531], [2.395034042408931, 48.84152382203801], [2.395028829836979, 48.84151744260177], [2.39487242205036, 48.84143706629141], [2.394718187501684, 48.84136107165236], [2.394561780652919, 48.8412806958239], [2.394407547019905, 48.84120470077369], [2.394251139767416, 48.841124323621614], [2.394096907050065, 48.84104832816024], [2.39406569060765, 48.84102650985889], [2.394045741578093, 48.841030880427255], [2.394011222823139, 48.841060238751], [2.393885390016883, 48.84116803527308], [2.393768154257284, 48.84126774590993], [2.393742675612691, 48.84129826966713], [2.393743395129285, 48.841299666421904], [2.393617561191165, 48.84140746263917], [2.393493340541, 48.84151380453695], [2.393367506931196, 48.841621600477396], [2.393243285260477, 48.84172794209516], [2.393117449254027, 48.84183573774501], [2.3929932265732132, 48.841942078183386], [2.392867389522009, 48.842049874448854], [2.392743165820721, 48.84215621460717], [2.392617327735322, 48.84226401058884], [2.392493103013451, 48.842370350467135], [2.392367263904331, 48.842478145265794], [2.392243038151279, 48.842584485763275], [2.392117198008048, 48.84269228027824], [2.392001870789693, 48.84277812527291], [2.391982229045942, 48.84280618886307]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 8, "roussel_fabien": 27.0, "nb_emargement": 1121.0, "nb_procuration": 26.0, "nb_vote_blanc": 11.0, "jadot_yannick": 100.0, "le_pen_marine": 77.0, "nb_exprime": 1103.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1435.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1120, "quartier_bv": "46", "geo_point_2d": [48.842404306249165, 2.393944464493375], "melenchon_jean_luc": 353.0, "poutou_philippe": 4.0, "macron_emmanuel": 321.0}, "geometry": {"type": "Point", "coordinates": [2.393944464493375, 48.842404306249165]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b353308255ab6c71ea63e93179b0d340947c940c", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 72, "zemmour_eric": 77.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "5-21", "geo_shape": {"coordinates": [[[2.3511861827964893, 48.84724500447288], [2.3512389219691032, 48.84726379387832], [2.351385935940661, 48.84737565100463], [2.351536508471071, 48.847487622555576], [2.351683523712786, 48.847599479293706], [2.351834097518211, 48.84771145134694], [2.351850002901667, 48.84771364561114], [2.352042553052596, 48.84765494691327], [2.352244301455294, 48.847592809994154], [2.35243685071564, 48.847534110655324], [2.352638599543036, 48.84747197307201], [2.352657859778317, 48.84747888902727], [2.352685242257242, 48.84760939559317], [2.3527107141105112, 48.84773674134772], [2.352738096857282, 48.847867247871335], [2.352763568965638, 48.84799459358516], [2.35279095198036, 48.848125100066454], [2.352816424343909, 48.848252445739504], [2.352843807626383, 48.84838295217851], [2.352869280245228, 48.84851029781084], [2.352896663795561, 48.84864080420753], [2.352922136669505, 48.848768149799106], [2.352928058608626, 48.84877444315369], [2.353085519411906, 48.84884410988376], [2.353243461996636, 48.848914080289035], [2.353400923643484, 48.84898374659528], [2.353558865712142, 48.84905371656806], [2.353716328202656, 48.849123382450486], [2.353874272480675, 48.84919335200547], [2.354031734440839, 48.84926301835597], [2.354189679576805, 48.84933298658655], [2.354193225677353, 48.84933527570418], [2.35430334879292, 48.849441075027485], [2.354416106888732, 48.849546736463644], [2.3545262295409772, 48.84965253555436], [2.354638988546253, 48.84975819676039], [2.354749113460547, 48.84986399563322], [2.354861873375298, 48.84996965660914], [2.354971997826277, 48.850075455249396], [2.355084760013104, 48.85018111600251], [2.3551948853635682, 48.8502869144175], [2.355307647097295, 48.85039257493315], [2.35541777470975, 48.85049837313023], [2.355530537352879, 48.85060403341575], [2.355563500841131, 48.85065323304556], [2.355602361834103, 48.85065080094177], [2.355780162249546, 48.85059255742058], [2.355998088401363, 48.85052896620346], [2.356175889321514, 48.85047072209513], [2.356343747227365, 48.85041500358483], [2.356521545998634, 48.85035675984889], [2.356689403178911, 48.850301039948654], [2.356867202537708, 48.8502427957004], [2.357035058981297, 48.85018707530955], [2.357212856202225, 48.85012883053439], [2.357380711898037, 48.85007311055219], [2.357558509717472, 48.850014864365455], [2.357726364676699, 48.849959143892605], [2.357904161720949, 48.8499008971863], [2.35807201594349, 48.849845176222864], [2.35824981084987, 48.8497869289896], [2.358417664335724, 48.849731207535534], [2.358585517462515, 48.84967548584321], [2.358763312578664, 48.84961723784535], [2.3589311649688662, 48.849561515662415], [2.359108957947146, 48.84950326713762], [2.359110435263862, 48.84950270485916], [2.359169024172383, 48.84947175256142], [2.359291381664525, 48.84941815239232], [2.3594422658696113, 48.849338441823456], [2.359564622756749, 48.84928484226782], [2.359565910230818, 48.84928420252219], [2.359716793628254, 48.84920449159754], [2.359857318223634, 48.84912568377013], [2.360008199353702, 48.84904597245931], [2.360148724443709, 48.84896716428573], [2.36029960466898, 48.848887452596095], [2.360440128879809, 48.848808644968315], [2.360580651313999, 48.84872983626335], [2.360731530191468, 48.84865012401205], [2.360872053120183, 48.84857131496084], [2.361022931093069, 48.848491602330746], [2.361163453142528, 48.84841279382539], [2.3613143302107362, 48.84833308081647], [2.361425789089392, 48.848302737884964], [2.36142229080235, 48.848270949425945], [2.361498505986614, 48.84822945964485], [2.361655105305846, 48.848132398459065], [2.361818647380485, 48.84803074600452], [2.361975244143692, 48.84793368437516], [2.362138784970272, 48.847832031464876], [2.362295380540106, 48.847734969399134], [2.362458920107633, 48.84763331693243], [2.362470801226242, 48.84761172551481], [2.362409603892512, 48.84758032299683], [2.36225504658726, 48.8475019773017], [2.362094366294398, 48.8474205868032], [2.361939811299418, 48.84734224069687], [2.3617791319913852, 48.847260849763366], [2.361624576592441, 48.84718250233202], [2.36146389826924, 48.84710111096345], [2.361309343807025, 48.847022764012955], [2.3611486664685453, 48.8469413722094], [2.360994114316473, 48.84686302484772], [2.360833437973944, 48.846781631709824], [2.360678885406999, 48.84670328392242], [2.360518210038157, 48.84662189124879], [2.360363659781441, 48.846543543050224], [2.360202984034811, 48.846462149934325], [2.360048434725717, 48.846383801317344], [2.359887761337539, 48.8463024068744], [2.359733211613471, 48.8462240578317], [2.359572539199054, 48.84614266385309], [2.359417991785191, 48.846064314399214], [2.359257318992987, 48.84598291997826], [2.359102772537793, 48.84590456920672], [2.358942102092975, 48.845823174358095], [2.358787555211748, 48.845744824060084], [2.358626885751721, 48.8456634287765], [2.358472341180677, 48.845585078067394], [2.35831167271651, 48.8455036814495], [2.358157127730494, 48.84542533031467], [2.357996460240042, 48.84534393416111], [2.357841916201623, 48.84526558260789], [2.3576812496959523, 48.84518418601931], [2.357526707967692, 48.84510583405498], [2.357366042457885, 48.84502443613215], [2.357211500314653, 48.84494608374213], [2.357050835778532, 48.84486468628365], [2.356896294582889, 48.84478633347523], [2.3568930914533333, 48.84478663283121], [2.356856144545554, 48.84481761323389], [2.356669122725394, 48.84481445459936], [2.356488057620579, 48.84481124137521], [2.3563010358344902, 48.844808083064535], [2.356119969411953, 48.84480486927596], [2.355932949033594, 48.844801710397164], [2.355751882667016, 48.8447984951522], [2.355564860971289, 48.84479533569067], [2.355383796001, 48.844792120795205], [2.355196774350465, 48.84478896075822], [2.355015709425032, 48.844785745305664], [2.355001862855714, 48.84479342044234], [2.3549708196389663, 48.84493202617814], [2.35493948614932, 48.84506985057906], [2.35490844396459, 48.84520845627164], [2.3548771087812232, 48.845346280614706], [2.354846066254813, 48.845484887156054], [2.354814730751412, 48.84562271054928], [2.35478368789445, 48.84576131704005], [2.354752352048742, 48.84589914128206], [2.354721308872355, 48.84603774682298], [2.35468997405806, 48.84617557102183], [2.3546589291885223, 48.84631417650487], [2.354627594043051, 48.8464520006532], [2.354615792016365, 48.84645959143341], [2.354410871389692, 48.84647632999873], [2.3542082835381493, 48.846492626629235], [2.35400336263955, 48.846509365395384], [2.353800773169461, 48.846525661328], [2.353595853372684, 48.84654239940303], [2.353393263646863, 48.846558694645104], [2.353188343600479, 48.84657543112235], [2.352985753618734, 48.8465917256739], [2.352780831937836, 48.84660846234459], [2.352578243062979, 48.846624756213025], [2.352373321121333, 48.84664149218523], [2.35217073062797, 48.8466577853557], [2.352168258424231, 48.84665813980682], [2.352005074084421, 48.84669849887729], [2.35176103798321, 48.84674959420851], [2.351759262094181, 48.8467500585484], [2.351596077149818, 48.84679041705766], [2.3514940124248, 48.84682275161894], [2.351487774516534, 48.846826769418776], [2.351483410267904, 48.846833197764255], [2.351421413946367, 48.84692451537425], [2.351333086718121, 48.84703868229827], [2.351266726961891, 48.847136427257496], [2.351202627762456, 48.847219277558786], [2.3511861827964893, 48.84724500447288]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 21, "roussel_fabien": 26.0, "nb_emargement": 1278.0, "nb_procuration": 97.0, "nb_vote_blanc": 18.0, "jadot_yannick": 116.0, "le_pen_marine": 51.0, "nb_exprime": 1256.0, "nb_vote_nul": 4.0, "arr_bv": "05", "arthaud_nathalie": 4, "nb_inscrit": 1549.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "17", "geo_point_2d": [48.84764692522292, 2.3567984940953304], "melenchon_jean_luc": 356.0, "poutou_philippe": 1.0, "macron_emmanuel": 507.0}, "geometry": {"type": "Point", "coordinates": [2.3567984940953304, 48.84764692522292]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d6307cdfa897412b35192be08ff01ed7c573b02d", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 61, "zemmour_eric": 64.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-31", "geo_shape": {"coordinates": [[[2.367541910115169, 48.832237357745825], [2.367526088537681, 48.832219610465714], [2.367325279881472, 48.83216540016406], [2.367133617156655, 48.8321175469927], [2.366932809301734, 48.83206333602716], [2.366741148674662, 48.83201548222974], [2.366716404819873, 48.83200835861736], [2.366694137342682, 48.832025701973315], [2.366561918191752, 48.832132069044995], [2.366428637524349, 48.83223886383625], [2.366296418642337, 48.83234523150073], [2.36616313688593, 48.83245202597578], [2.366030916932467, 48.83255839242722], [2.365897634087251, 48.83266518658613], [2.365765411678111, 48.83277155361587], [2.365632127754913, 48.83287834655927], [2.365499905625707, 48.832984713282485], [2.365366620602634, 48.83309150680897], [2.365234397401858, 48.83319787231913], [2.365101111289844, 48.83330466552942], [2.364968885633532, 48.833411031617906], [2.364835598443418, 48.83351782361266], [2.364703373066924, 48.83362418939462], [2.364570084776992, 48.83373098197249], [2.364537313156331, 48.83377250258553], [2.36453872756449, 48.833773930202916], [2.364580977035971, 48.83378794557849], [2.364745221190393, 48.83384306432493], [2.364925096192239, 48.833902732999206], [2.3650893397098143, 48.83395785126029], [2.36526921550164, 48.834017519410935], [2.36543346110701, 48.83407263720103], [2.36561333632654, 48.83413230482083], [2.365777582657533, 48.83418742213277], [2.365957460040153, 48.834247088336824], [2.366121705734385, 48.83430220516332], [2.366238200164946, 48.834340846855305], [2.366260010367139, 48.83434339250953], [2.366288287874616, 48.83430860189289], [2.366430268987229, 48.83422777959168], [2.366572398190852, 48.834145272487106], [2.366714378418105, 48.83406444983683], [2.366856506726621, 48.83398194238267], [2.36699848743079, 48.833901119390575], [2.367140613493054, 48.833818610680254], [2.367282593311866, 48.833737787339125], [2.367424719830382, 48.833655279185656], [2.367424468604336, 48.833641629044024], [2.367285370613828, 48.83356475637767], [2.367156453377072, 48.833493071004426], [2.367017357540462, 48.83341619802342], [2.366888441039761, 48.8333445123518], [2.366759524882594, 48.83327282743592], [2.366620430229926, 48.83319595307886], [2.366609527192033, 48.833193968892864], [2.36642117190818, 48.8332139148795], [2.366196381349857, 48.83323329426314], [2.366181967181823, 48.83322103862879], [2.366249098730303, 48.833110166721205], [2.36629622179879, 48.833026070893446], [2.366299430146508, 48.83302292481184], [2.366441292985202, 48.83293394631915], [2.366593187544407, 48.83283755421898], [2.3667350480149922, 48.83274857535598], [2.366886941501708, 48.83265218196749], [2.367028802328676, 48.83256320274855], [2.367180693358926, 48.83246680986315], [2.367322553180145, 48.83237783028109], [2.367474443138017, 48.83228143610739], [2.367520815665809, 48.832252350206964], [2.367541910115169, 48.832237357745825]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 31, "roussel_fabien": 33.0, "nb_emargement": 1051.0, "nb_procuration": 57.0, "nb_vote_blanc": 10.0, "jadot_yannick": 89.0, "le_pen_marine": 68.0, "nb_exprime": 1042.0, "nb_vote_nul": 0.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1310.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1052, "quartier_bv": "50", "geo_point_2d": [48.83332308065926, 2.3661369365538913], "melenchon_jean_luc": 312.0, "poutou_philippe": 7.0, "macron_emmanuel": 344.0}, "geometry": {"type": "Point", "coordinates": [2.3661369365538913, 48.83332308065926]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "820404cade244db206a928a03f2404dc19580713", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 22, "zemmour_eric": 71.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "19-39", "geo_shape": {"coordinates": [[[2.4018245067268422, 48.8776181818931], [2.4018426018846952, 48.87761434043966], [2.401994711512034, 48.87757428519897], [2.402145308042578, 48.877535603578494], [2.402146090051184, 48.87753542042334], [2.402311231297219, 48.87750047150232], [2.402474868750516, 48.877465730686694], [2.402638505995825, 48.87743098874704], [2.402803646569994, 48.877396040042676], [2.402967283377031, 48.877361297651426], [2.40313242350951, 48.877326348491344], [2.403135907876055, 48.87732592968892], [2.4033527482151342, 48.877318783553186], [2.403572298426977, 48.877311692794514], [2.403789137283591, 48.877304545861435], [2.404008687376, 48.87729745430236], [2.404009871692209, 48.877297381956836], [2.404194369645416, 48.87728076431401], [2.404376300954165, 48.87726430808696], [2.404560798673296, 48.87724768987893], [2.404742729750833, 48.877231233094456], [2.404924660713298, 48.87721477603328], [2.405109158081995, 48.877198156979446], [2.405291088813238, 48.877181699360875], [2.40547558594784, 48.87716507974177], [2.405657516447651, 48.87714862156589], [2.40584201333789, 48.87713200228086], [2.405848298340209, 48.877132409394484], [2.406060198435928, 48.877180548907795], [2.406280529409002, 48.877229149842734], [2.406294244207842, 48.8772271413095], [2.40635358603799, 48.877189956937634], [2.406399303596459, 48.87716035107948], [2.406429793482207, 48.87712875412829], [2.406420124470872, 48.87712175796498], [2.406255853526104, 48.87707629340959], [2.406029876222659, 48.8770156979224], [2.405865605953064, 48.87697023282713], [2.405865263448225, 48.87697013759695], [2.405676797417973, 48.87691560561816], [2.405512527772284, 48.87687014003427], [2.405324061099531, 48.87681560838768], [2.405159793450716, 48.87677014142312], [2.405121565887955, 48.876759080363634], [2.405112671369277, 48.87675496579602], [2.405093362622315, 48.87675432934473], [2.404943124280735, 48.87671085816183], [2.404762210935398, 48.87665775622526], [2.404573747190331, 48.87660322249445], [2.40439283459547, 48.876550119994505], [2.404204371616451, 48.876495586576155], [2.404023459772064, 48.876442483512804], [2.403834997579565, 48.87638794860836], [2.403654086485559, 48.876334844981656], [2.403465623695617, 48.876280310382846], [2.403284714715578, 48.876227206199516], [2.403096252712178, 48.87617267011462], [2.402915344482625, 48.87611956536794], [2.402726883245164, 48.87606502959549], [2.402545974402616, 48.876011924278615], [2.402528052454314, 48.87599192454445], [2.402510497009578, 48.875999284282265], [2.402454041714141, 48.875991768272314], [2.402312605406179, 48.87597293887023], [2.402116018130583, 48.87594629567004], [2.401918126928151, 48.8759199496046], [2.4017215414073982, 48.87589330666142], [2.401523649242465, 48.875866959935806], [2.401327064123404, 48.875840316343506], [2.401129173722725, 48.875813968971364], [2.400932587642196, 48.8757873247232], [2.400734697642407, 48.87576097669767], [2.400538113326959, 48.87573433180727], [2.400340223728067, 48.875707983128386], [2.40014363846153, 48.87568133668279], [2.399945749263548, 48.875654987350565], [2.399749164388487, 48.87562834115515], [2.399551275591318, 48.87560199116958], [2.399354692481462, 48.875575344331914], [2.399337869541231, 48.87557649919888], [2.399327838046659, 48.875621729303994], [2.399408225922009, 48.87573318478931], [2.399484747393375, 48.87583790550533], [2.399565134574872, 48.87594936085656], [2.399641656689687, 48.87605408055247], [2.399642620652673, 48.876055853471826], [2.399684205114382, 48.87616825356313], [2.399726152335775, 48.87628172654982], [2.399767737158192, 48.87639412658908], [2.399809683380098, 48.876507599516394], [2.399851268563124, 48.87661999950362], [2.3998932165123232, 48.876733472385276], [2.399934802055963, 48.87684587232046], [2.39997674900567, 48.87695934514275], [2.3999896010193402, 48.8769662040002], [2.40017501373069, 48.87696973853262], [2.400361405321688, 48.87697328217774], [2.400546818093815, 48.876976815235025], [2.400733209735432, 48.87698035830117], [2.400918622557967, 48.87698389078259], [2.4011050128867932, 48.87698743326299], [2.401290425749289, 48.87699096606783], [2.401476817492124, 48.87699450797615], [2.401662230415455, 48.87699803930583], [2.401848622208883, 48.87700158063525], [2.401861756093003, 48.87701169897153], [2.401835597050931, 48.87714808027275], [2.401809442778085, 48.87728023562464], [2.401783283464154, 48.877416616881156], [2.401757128923818, 48.87754877218946], [2.401759072106163, 48.87755468689886], [2.401781212814936, 48.87757813514567], [2.40181140741207, 48.87761014567981], [2.4018245067268422, 48.8776181818931]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 39, "roussel_fabien": 23.0, "nb_emargement": 1088.0, "nb_procuration": 50.0, "nb_vote_blanc": 5.0, "jadot_yannick": 79.0, "le_pen_marine": 63.0, "nb_exprime": 1078.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1456.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1089, "quartier_bv": "75", "geo_point_2d": [48.87662038356811, 2.4022738907506196], "melenchon_jean_luc": 485.0, "poutou_philippe": 9.0, "macron_emmanuel": 278.0}, "geometry": {"type": "Point", "coordinates": [2.4022738907506196, 48.87662038356811]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fb04916647dcadb8cfe9ec74d6123482dc607fbc", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 21, "zemmour_eric": 53.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "20-71", "geo_shape": {"coordinates": [[[2.38705292203713, 48.8680307919529], [2.387046193910984, 48.86803200218183], [2.386955287185139, 48.86800964848998], [2.386763522770064, 48.86796294374346], [2.386580563993324, 48.86791795478763], [2.386516542579465, 48.86790236127657], [2.386492913395768, 48.867901010763426], [2.386482987334741, 48.86792674392903], [2.386399072622223, 48.86805695531326], [2.386318532840343, 48.86818207568612], [2.386237992671668, 48.868307195990575], [2.386154076733889, 48.868437407158275], [2.386141000213383, 48.86844287462215], [2.385907446576437, 48.86843685161295], [2.38567817171706, 48.86843144637042], [2.38566733794313, 48.86843457891971], [2.385567445734616, 48.868511411072944], [2.385466471789916, 48.86858943190643], [2.385366580361882, 48.86866626298901], [2.385265605816175, 48.8687442836421], [2.385248419581621, 48.86874623147428], [2.385072766505199, 48.86867928535562], [2.384898356707822, 48.86861203059365], [2.384722704544429, 48.86854508305387], [2.384548295648333, 48.86847782777366], [2.38437264437683, 48.86841088061128], [2.384198236381909, 48.868343624812844], [2.384181440232065, 48.86834521746155], [2.38404703447934, 48.86843921272965], [2.3839149406188, 48.86853156675705], [2.383780533914927, 48.86862556081076], [2.383648439098729, 48.86871791542775], [2.38351403143317, 48.86881190916635], [2.383381935682586, 48.86890426257435], [2.383247527044687, 48.86899825689714], [2.383115428985875, 48.86909060998846], [2.382981019396921, 48.86918460309686], [2.382848921745607, 48.86927695678479], [2.382847168278809, 48.86927847931639], [2.382772539844239, 48.86936001340235], [2.382700909840515, 48.8694403254119], [2.382629280979122, 48.8695206373798], [2.382554651846023, 48.86960217221134], [2.382545850428633, 48.8696156420574], [2.382554046976213, 48.869623758595104], [2.382703561230501, 48.86967375053779], [2.38285092484124, 48.869724176373296], [2.383000438294704, 48.86977416883285], [2.38314780247691, 48.86982459429827], [2.38315423491925, 48.8698358322954], [2.383123831451893, 48.86988749813585], [2.383093484026993, 48.86994156368788], [2.383096356770929, 48.8699508605565], [2.383126924824149, 48.869972215485156], [2.383145931289606, 48.8699718988435], [2.383158393664595, 48.86996539610635], [2.383351077446117, 48.87001010933416], [2.383499905288999, 48.87004568753498], [2.383501293908058, 48.87004596538781], [2.383722683844197, 48.87008189184441], [2.383938798828126, 48.87011695705341], [2.3841549140924823, 48.87015202277034], [2.384376304930164, 48.870187948014596], [2.384388017646582, 48.87018626893765], [2.3844626814061, 48.87014731591397], [2.384535164788854, 48.870109087289414], [2.384542598516426, 48.8701071460718], [2.384732365860815, 48.87009721092653], [2.384922579064014, 48.870087148267174], [2.385112344899854, 48.870077212512264], [2.385302557946111, 48.87006715014821], [2.385492323647124, 48.8700572128914], [2.385682536546946, 48.87004714992335], [2.385872303465825, 48.87003721207092], [2.386062516219204, 48.87002714849887], [2.386252281629606, 48.87001721003687], [2.386442494236431, 48.870007145860775], [2.386632259501464, 48.86999720679617], [2.386822471961828, 48.86998714201608], [2.3870122384341173, 48.86997720325514], [2.387202450758595, 48.869967136971745], [2.387392215722286, 48.869957197601245], [2.387582427889709, 48.86994713161313], [2.387772192718583, 48.86993719074078], [2.38796240473962, 48.86992712414863], [2.388152170786206, 48.86991718268065], [2.3883423826607473, 48.86990711548451], [2.388353091757101, 48.86990265463788], [2.388441955031432, 48.869801318131344], [2.388531400646297, 48.86969935229223], [2.388620261863824, 48.869598015627744], [2.388709706780471, 48.86949604963662], [2.3887985686569673, 48.86939471372736], [2.388888011522952, 48.869292746678], [2.388901048783409, 48.86928829496954], [2.389119134918137, 48.86930140718563], [2.389328447530269, 48.8693140281701], [2.389537758891267, 48.869326647882176], [2.38975584669949, 48.86933975984392], [2.389965158267317, 48.86935237880829], [2.39018324630137, 48.869365489091756], [2.390392558065693, 48.86937810820771], [2.390610646315029, 48.86939121771211], [2.390623689252818, 48.86939967133618], [2.390651162842072, 48.86939106515041], [2.390801830936495, 48.86933646619455], [2.390949630713267, 48.86928230841671], [2.391097431535501, 48.86922815135997], [2.391248097327765, 48.86917355182737], [2.391253887012033, 48.86916947399937], [2.3912771964180832, 48.86913653560079], [2.391297435341273, 48.86910911520519], [2.391318870687714, 48.86907578684655], [2.391295286866338, 48.86906793260876], [2.391140949858403, 48.86903287026422], [2.390989338144517, 48.86899559662412], [2.390964745369719, 48.86898776236798], [2.390961554667608, 48.86898793859072], [2.390930198712141, 48.86898022999565], [2.3907472327641432, 48.868935247450366], [2.390536615038031, 48.86888467023992], [2.390353649765547, 48.86883968708913], [2.390143031444762, 48.868789109174806], [2.389960066847799, 48.86874412541851], [2.389749450648286, 48.86869354771349], [2.389566486726744, 48.86864856335166], [2.389380733952493, 48.868602879183435], [2.389197770667817, 48.86855789425431], [2.3890120199138662, 48.8685122086178], [2.388829057266165, 48.86846722312134], [2.388643305785169, 48.86842153780121], [2.388460343774344, 48.86837655173747], [2.388274594303207, 48.868330865848336], [2.388091632929262, 48.86828587921728], [2.387905882752205, 48.868240191846006], [2.387722922015149, 48.86819520464764], [2.387537173837392, 48.868149517606646], [2.387354213737224, 48.868104529840984], [2.387168466206163, 48.86805884222405], [2.387076413499519, 48.86803620666063], [2.38705292203713, 48.8680307919529]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 71, "roussel_fabien": 21.0, "nb_emargement": 1343.0, "nb_procuration": 79.0, "nb_vote_blanc": 11.0, "jadot_yannick": 124.0, "le_pen_marine": 49.0, "nb_exprime": 1326.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1700.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1344, "quartier_bv": "77", "geo_point_2d": [48.86916745020104, 2.386470515453093], "melenchon_jean_luc": 757.0, "poutou_philippe": 12.0, "macron_emmanuel": 225.0}, "geometry": {"type": "Point", "coordinates": [2.386470515453093, 48.86916745020104]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b6e5b73054a7d6ecfe7eed25c181e1cdee7c66c6", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 66, "zemmour_eric": 74.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-47", "geo_shape": {"coordinates": [[[2.3937893453381083, 48.851315094074195], [2.393778714636508, 48.85132091657657], [2.39371842287727, 48.851424517676456], [2.393651256226367, 48.8515402440298], [2.393577530719665, 48.85166692806658], [2.393510363453877, 48.85178265341635], [2.393436637261683, 48.851909337338725], [2.39336946937054, 48.85202506258414], [2.393302299818412, 48.85214078777288], [2.39322857397634, 48.852267471533175], [2.393235898944381, 48.852278953819194], [2.393346591912386, 48.85231045277326], [2.393457126023529, 48.852341209752936], [2.3934644889700722, 48.852352829817114], [2.393397822056873, 48.852463055346284], [2.393333407579565, 48.852569068898354], [2.393266740112439, 48.85267929433306], [2.393202325101144, 48.85278530779391], [2.393135657080183, 48.85289553313418], [2.393071241534893, 48.85300154650383], [2.393070965382409, 48.8530019713952], [2.392977578487666, 48.853135940646425], [2.392880738246107, 48.853275007792796], [2.392787351725164, 48.853408977768886], [2.392690509105806, 48.85354804472028], [2.392690292688675, 48.853548371884585], [2.392690814110742, 48.853559527370024], [2.392711944548015, 48.85356635186073], [2.392827756843513, 48.85359135154513], [2.392954925980328, 48.85361891432225], [2.392963818088983, 48.85362983437305], [2.392945673596225, 48.853673545155914], [2.392931502631896, 48.85370969637392], [2.392928659206662, 48.85372564990379], [2.392952911867781, 48.85373061684534], [2.393123209604676, 48.853768996172164], [2.393331876083483, 48.85381579434757], [2.393502174367408, 48.85385417403141], [2.393710841527559, 48.85390097154234], [2.3938811403795492, 48.85393934978462], [2.394089806847879, 48.85398614752351], [2.394260107620056, 48.85402452523036], [2.394468774769928, 48.85407132230482], [2.394639076099592, 48.85410969946934], [2.394656380101965, 48.85410408873453], [2.394675146590212, 48.85406772944608], [2.394694823532912, 48.854030541062485], [2.394712433829843, 48.85402507486532], [2.394879600448637, 48.85406604754237], [2.395040189129597, 48.85410523119654], [2.395207354900557, 48.85414620340587], [2.395367944064474, 48.854185387516665], [2.395535111723538, 48.85422635837277], [2.39569570001825, 48.854265542033936], [2.395856289917289, 48.85430472548509], [2.3960234583430813, 48.854345695654565], [2.396078257105748, 48.854373273781135], [2.396091521877762, 48.854365631509516], [2.396153566606143, 48.85428458502243], [2.396239144713879, 48.854176280157766], [2.3963324047838173, 48.85405445718856], [2.39641798214189, 48.85394615217354], [2.396511241392261, 48.85382432814047], [2.396596817990162, 48.85371602387441], [2.39669007777335, 48.85359419968363], [2.396775653621708, 48.85348589526724], [2.396861229124745, 48.85337758987978], [2.39695448632127, 48.85325576543894], [2.397040061064166, 48.85314746080047], [2.397133317430843, 48.853025636195056], [2.397133069726132, 48.85302372292888], [2.397080928562503, 48.85301034678499], [2.39689102765005, 48.85295617700311], [2.396695589884742, 48.852900365563755], [2.396505689773682, 48.85284619516496], [2.396310252833493, 48.85279038309073], [2.396302249780915, 48.85278054878788], [2.396338892395031, 48.85264511882416], [2.396375483251349, 48.8525116698417], [2.396412125486159, 48.85237623982281], [2.3964487159556063, 48.85224279168498], [2.3964853578110192, 48.85210736161091], [2.3965219479146382, 48.851973912519156], [2.396558590753299, 48.851838482396786], [2.396595180480574, 48.851705033250354], [2.396631821577201, 48.85156960306597], [2.396668410917628, 48.85143615476416], [2.3967050000811643, 48.85130270553587], [2.396741640609383, 48.85116727526888], [2.396749394611617, 48.851150814859935], [2.396726685607771, 48.851142775276806], [2.396535295384997, 48.851111447120594], [2.396347254453692, 48.851080763301546], [2.396155864686687, 48.85104943453664], [2.395967824212997, 48.85101874922029], [2.395779783960766, 48.85098806360754], [2.395588394875496, 48.85095673393235], [2.395400355070478, 48.8509260477216], [2.395208966441099, 48.85089471743771], [2.395020927083303, 48.85086403062895], [2.394829537547103, 48.85083269972952], [2.394641499988703, 48.85080201322897], [2.394450110908407, 48.85077068172086], [2.394434207990749, 48.85077602072928], [2.394370098060226, 48.85087999499134], [2.394305786023495, 48.850985155332005], [2.394241675579443, 48.85108912950573], [2.394177363014991, 48.85119429065689], [2.394113252057404, 48.851298264742255], [2.3940489389756783, 48.8514034258046], [2.394029120615819, 48.85140770257953], [2.393914971538242, 48.85136099127171], [2.393812285630549, 48.8513211433233], [2.3937893453381083, 48.851315094074195]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 47, "roussel_fabien": 39.0, "nb_emargement": 1360.0, "nb_procuration": 69.0, "nb_vote_blanc": 18.0, "jadot_yannick": 117.0, "le_pen_marine": 73.0, "nb_exprime": 1340.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 6, "nb_inscrit": 1781.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1360, "quartier_bv": "44", "geo_point_2d": [48.85261679111657, 2.39499201290079], "melenchon_jean_luc": 502.0, "poutou_philippe": 15.0, "macron_emmanuel": 376.0}, "geometry": {"type": "Point", "coordinates": [2.39499201290079, 48.85261679111657]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bece24007f367bdfe6032c7270d15eec7ad38728", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 104, "zemmour_eric": 220.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "8-14", "geo_shape": {"coordinates": [[[2.307967429472824, 48.87628327895563], [2.30799027047902, 48.876269392093256], [2.3080632765608, 48.87619375336603], [2.308166847406444, 48.87608676668772], [2.308280729817338, 48.87596877582], [2.308384299780879, 48.87586178803251], [2.308498181207249, 48.87574379693382], [2.308601750276852, 48.87563680893636], [2.308715630718707, 48.87551881760681], [2.308819198882246, 48.875411830298624], [2.308933078351532, 48.87529383783886], [2.309036645621055, 48.87518685032077], [2.30903727420762, 48.875186127282184], [2.309099885085967, 48.87510104414614], [2.309178667542494, 48.87499980231946], [2.309241277965895, 48.874914719095116], [2.30932005986576, 48.87481347715826], [2.309321285753195, 48.87481212712659], [2.309434970323432, 48.87470864927124], [2.309513751535218, 48.87460740718803], [2.3096274352643382, 48.87450393002997], [2.309754736249034, 48.874421643303265], [2.309763987954069, 48.874407575201516], [2.309707975283062, 48.87437208168826], [2.309587424894896, 48.87429131813786], [2.309462499450921, 48.874205845451776], [2.309341949828127, 48.874125081642006], [2.309217025197605, 48.87403960778764], [2.309096476340181, 48.873958843718505], [2.308971553862464, 48.87387337050219], [2.308851004407197, 48.873792606165836], [2.308726082742928, 48.8737071317812], [2.308709353589551, 48.87370562230492], [2.308526625120361, 48.8737765411932], [2.308345771957821, 48.87384285611593], [2.308163041160791, 48.87391377353323], [2.307982187046906, 48.87398008879764], [2.307799455273401, 48.87405100565114], [2.307618600220212, 48.87411732035801], [2.307602623732026, 48.87411600304403], [2.307443627876101, 48.87401710722364], [2.30728768700304, 48.8739205401662], [2.3071286923417382, 48.873821643910034], [2.306972751274448, 48.87372507641733], [2.30696489172663, 48.873722691726044], [2.306763651344259, 48.87370828813825], [2.306547554753049, 48.87368995616057], [2.306536654723278, 48.873684408829064], [2.30646816619087, 48.87357271759821], [2.306396300326428, 48.873461373677074], [2.306327812376173, 48.87334968324264], [2.30625594713146, 48.873238338315446], [2.3062516491591722, 48.87323469984937], [2.306089290264687, 48.87315335937344], [2.305925843737079, 48.87307131537151], [2.305763485872642, 48.87298997354233], [2.305600041734191, 48.872907929091376], [2.305437684875827, 48.87282658770751], [2.305274240399857, 48.87274454279163], [2.305111884559546, 48.87266320095386], [2.30494844110954, 48.872581155581], [2.304786086299281, 48.872499812390046], [2.3046226438751383, 48.87241776656018], [2.304460290070924, 48.87233642381458], [2.304296850035901, 48.87225437753565], [2.304134497249726, 48.87217303433614], [2.303971056877186, 48.87209098759232], [2.303808705121067, 48.87200964303962], [2.30364526577448, 48.871927595838805], [2.303482915024376, 48.8718462517315], [2.303319478066883, 48.87176420408164], [2.303157128334806, 48.871682859520426], [2.302993691051932, 48.871600810506415], [2.302831342337883, 48.87151946549128], [2.302667906068711, 48.87143741691961], [2.302624232958129, 48.87138632166776], [2.302602069522621, 48.87139068925745], [2.302513168506698, 48.87141898713488], [2.302330886805453, 48.87147656204755], [2.302152072281868, 48.87153347879079], [2.301969788405647, 48.87159105403894], [2.301790973094462, 48.871647970236786], [2.301608689781597, 48.87170554493705], [2.301429873682916, 48.87176246058961], [2.301247588207014, 48.871820034726014], [2.301068771320635, 48.871876949833236], [2.300886486408202, 48.871934523421764], [2.300707667371074, 48.8719914379757], [2.30052538165886, 48.872049011008336], [2.300346563197398, 48.87210592502487], [2.300164276697387, 48.87216349660233], [2.299985456072991, 48.87222041096485], [2.299803168773311, 48.872277981986464], [2.299624348724584, 48.87233489581161], [2.299442060625138, 48.87239246627735], [2.299263238425452, 48.87244937954912], [2.299080949526239, 48.87250694945898], [2.298902127914438, 48.87256386129412], [2.298719836840085, 48.87262143153939], [2.298541014440705, 48.87267834282915], [2.298358723929858, 48.87273591252651], [2.2981799007428, 48.87279282327093], [2.29799760806891, 48.87285039240439], [2.297818784094376, 48.87290730260343], [2.297636491984004, 48.872964871189026], [2.297457665858615, 48.8730217808347], [2.297275372948481, 48.87307934886431], [2.297096547398703, 48.87313625797265], [2.296914253688814, 48.8731938254464], [2.29673542598828, 48.87325073400131], [2.29655313149078, 48.873308300019886], [2.296374304353722, 48.873365208936704], [2.296192009056478, 48.87342277439936], [2.2960131797686563, 48.87347968276275], [2.295830883671666, 48.8735372476695], [2.295652054971733, 48.87359415459628], [2.295469758062842, 48.8736517198464], [2.295290927211946, 48.87370862621974], [2.295214084704143, 48.873743031438124], [2.295246510413607, 48.87378513172365], [2.295447610718614, 48.873804354556114], [2.295642930109612, 48.87382410242464], [2.2958440307114802, 48.87384332459045], [2.296039350398803, 48.873863071811435], [2.296240449934114, 48.87388229330256], [2.296435771281264, 48.87390203988406], [2.296636871113312, 48.873921260708556], [2.296832192756769, 48.87394100664252], [2.297033292885548, 48.873960226800364], [2.297228614825508, 48.87397997208681], [2.297429715250904, 48.87399919157799], [2.297625036123946, 48.8740189362089], [2.297826138209464, 48.87403815504144], [2.298021459378886, 48.874057899024834], [2.298222561761005, 48.874077117190744], [2.298417883226799, 48.874096860526606], [2.298618985905712, 48.874116078025786], [2.298814307667767, 48.874135820714116], [2.29882321196418, 48.87413936951452], [2.298947246673602, 48.87425021683429], [2.299076356584559, 48.874363083972725], [2.299200392365453, 48.874473931007735], [2.299329503379605, 48.874586797850284], [2.299453540231986, 48.874697644600495], [2.299582650985911, 48.874810511139124], [2.29970669027312, 48.87492135761258], [2.299835802130156, 48.87503422385533], [2.299848597309381, 48.87503771169435], [2.300037443196948, 48.87502007741877], [2.300224300845088, 48.87500256252674], [2.300413147841347, 48.87498492766591], [2.30060000522507, 48.87496741308614], [2.300788850603344, 48.87494977762409], [2.300975707734525, 48.87493226245733], [2.301164554233542, 48.87491462551075], [2.301351411112373, 48.87489710975696], [2.301540255981322, 48.8748794731084], [2.301727112607593, 48.874861956767624], [2.30174083768155, 48.874866362660136], [2.301841049713186, 48.87498082444662], [2.301938979916692, 48.87509578725141], [2.302039194188518, 48.87521024885618], [2.30213712390944, 48.87532521056777], [2.30215347111668, 48.87532930343725], [2.302332596898995, 48.875288394194456], [2.302511603185203, 48.87524885278428], [2.302690729784932, 48.87520794211132], [2.302869734159415, 48.87516840015475], [2.303048860189125, 48.87512748984221], [2.303227864015227, 48.87508794734723], [2.303406989486957, 48.875047036495815], [2.303585994127907, 48.87500749347036], [2.303765117690336, 48.87496658117287], [2.30394412178299, 48.874927037609076], [2.303952828421842, 48.87492704866455], [2.303968767287441, 48.87493058132177], [2.304146681316016, 48.87497036198056], [2.304298646632439, 48.875004046024536], [2.304466551054527, 48.87504126426367], [2.304644465853364, 48.875081043279394], [2.304812370782876, 48.875118260131615], [2.30499028610883, 48.87515803863061], [2.304991339427038, 48.8751591059681], [2.305026996308623, 48.87516437267574], [2.305205926522981, 48.8751578380029], [2.305386002634859, 48.87515094637841], [2.305564931394708, 48.87514441116091], [2.3057450087759, 48.875137519004234], [2.305923937444573, 48.875130983250074], [2.306104013368492, 48.87512409054538], [2.306282941945983, 48.87511755425451], [2.306463019139403, 48.87511066101758], [2.306470048135183, 48.87511164335061], [2.306676162457878, 48.87518300836207], [2.306887209168623, 48.87525465698269], [2.307093325980116, 48.87532602217384], [2.3073043738442, 48.875397670049665], [2.307310550514209, 48.87540195067734], [2.307383108269246, 48.87550744312599], [2.307457681477552, 48.875613755685556], [2.307530239825649, 48.87571924802477], [2.30760481227417, 48.875825560464406], [2.307677371215331, 48.87593105269415], [2.307751945630791, 48.876037365029575], [2.307824505165025, 48.876142857149915], [2.307899080184074, 48.876249169373295], [2.307967429472824, 48.87628327895563]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 14, "roussel_fabien": 10.0, "nb_emargement": 1143.0, "nb_procuration": 56.0, "nb_vote_blanc": 6.0, "jadot_yannick": 40.0, "le_pen_marine": 76.0, "nb_exprime": 1125.0, "nb_vote_nul": 6.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1509.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "30", "geo_point_2d": [48.8737499440143, 2.3029834077615843], "melenchon_jean_luc": 151.0, "poutou_philippe": 0.0, "macron_emmanuel": 495.0}, "geometry": {"type": "Point", "coordinates": [2.3029834077615843, 48.8737499440143]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4e14728bf89ad7adbbe9e67188c14ba1026337a0", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 155, "zemmour_eric": 189.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "17-67", "geo_shape": {"coordinates": [[[2.295468004116497, 48.88166060999953], [2.295497243238251, 48.881675662479374], [2.295532769530049, 48.88180444873196], [2.295568215402009, 48.88193294309983], [2.2956037406813072, 48.88206172929323], [2.2956391869034922, 48.882190223610024], [2.295674713897334, 48.88231900976026], [2.295710160481913, 48.88244750312674], [2.295745686463252, 48.882576289217816], [2.295781133385905, 48.88270478343251], [2.29581666108181, 48.88283356948041], [2.295852108354706, 48.88296206364405], [2.295887635038107, 48.88309084963274], [2.295923082661246, 48.88321934374534], [2.2959616239997658, 48.883241669750205], [2.295979160830817, 48.88323366716709], [2.296023220972405, 48.88320020118369], [2.29615252384881, 48.883103027419], [2.296285627937219, 48.883001925971676], [2.296414928468139, 48.8829047518981], [2.2965480315282, 48.8828036510401], [2.296677332440734, 48.88270647667362], [2.296810434484607, 48.88260537550567], [2.296939733051683, 48.882508200830316], [2.297072834091519, 48.88240709845321], [2.297130559181344, 48.882363715260944], [2.2971464713416783, 48.88235440882127], [2.297148753731379, 48.88235008652356], [2.297220327552723, 48.88229629473598], [2.29734668241254, 48.882202721249826], [2.297475978991426, 48.88210554506051], [2.2976023315655603, 48.88201197128034], [2.297731628557345, 48.881914794806065], [2.297857980209328, 48.88182122073987], [2.297987276250493, 48.88172404397268], [2.298113626980333, 48.88163046962051], [2.29824292207089, 48.88153329256041], [2.298369271878593, 48.881439717922206], [2.298498564655147, 48.88134254056115], [2.298624914904122, 48.88124896564493], [2.298754206730086, 48.88115178799098], [2.298880556056937, 48.88105821278878], [2.299009846932317, 48.88096103484193], [2.299136195337049, 48.88086745935369], [2.299265485261855, 48.88077028111393], [2.299391832744476, 48.880676705339724], [2.299521121718716, 48.88057952680707], [2.299647466915855, 48.88048595073889], [2.299650467617809, 48.8804776737091], [2.299649490873129, 48.88046746501848], [2.299586299500716, 48.88044990630886], [2.299404727625164, 48.880352181352734], [2.299220536749246, 48.880257517410236], [2.299104743914999, 48.88019800581786], [2.298923173833395, 48.880100279209785], [2.298854776712221, 48.88006512646129], [2.298829100837141, 48.88007222833972], [2.298700664376947, 48.88015419347902], [2.298572322414214, 48.88023609787557], [2.298443883782394, 48.880318062719184], [2.298315541012001, 48.880399966828286], [2.298187101571915, 48.88048193138428], [2.298058757993856, 48.8805638352059], [2.297930317745503, 48.88064579947419], [2.297801973359773, 48.88072770300833], [2.29767353366653, 48.88080966699695], [2.297545188473128, 48.88089157024362], [2.297528654843609, 48.88089280424991], [2.297359630910705, 48.88082544040737], [2.297188113233679, 48.88075708140286], [2.297019090181649, 48.88068971707126], [2.296847573398605, 48.88062135757045], [2.296678552591035, 48.88055399275776], [2.296507035338593, 48.88048563275264], [2.296338015411995, 48.8804182674509], [2.296166500416911, 48.880349906957534], [2.295997480007808, 48.88028254115873], [2.295825965906807, 48.88021418016903], [2.29565694637868, 48.88014681388117], [2.295485433171557, 48.88007845239522], [2.295316414524503, 48.88001108561828], [2.295144902199191, 48.87994272453533], [2.294975885808642, 48.879875356378115], [2.294804373013839, 48.87980699479086], [2.294785583707838, 48.879811498613435], [2.294780577714262, 48.87981626169633], [2.29484751200726, 48.87993878334798], [2.29491249601815, 48.88005773208318], [2.294979430931736, 48.88018025363419], [2.295044414169577, 48.88029920316298], [2.295111349716132, 48.8804217237141], [2.295176334920056, 48.880540673153206], [2.295243271087317, 48.880663193603716], [2.295308256893757, 48.88078214294514], [2.29537519368173, 48.880904663295006], [2.295440178727405, 48.881023612530704], [2.29550711612393, 48.88114613367922], [2.295572103147895, 48.88126508192596], [2.29557278303428, 48.88126935597667], [2.29555261520408, 48.88136605808713], [2.295525907117478, 48.88145694346469], [2.2954991975742542, 48.88154782882076], [2.29547902951174, 48.88164452999511], [2.295468004116497, 48.88166060999953]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 67, "roussel_fabien": 7.0, "nb_emargement": 1328.0, "nb_procuration": 72.0, "nb_vote_blanc": 7.0, "jadot_yannick": 59.0, "le_pen_marine": 63.0, "nb_exprime": 1318.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1612.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1328, "quartier_bv": "65", "geo_point_2d": [48.88132184441891, 2.2969036764056954], "melenchon_jean_luc": 125.0, "poutou_philippe": 2.0, "macron_emmanuel": 679.0}, "geometry": {"type": "Point", "coordinates": [2.2969036764056954, 48.88132184441891]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "81e5610c4cf06cfe98c9b0ba42e6b328884ef321", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 28, "zemmour_eric": 57.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-36", "geo_shape": {"coordinates": [[[2.408246181469436, 48.85650286300952], [2.408278551341216, 48.85649645875276], [2.408318839927163, 48.8565013228795], [2.408520323998397, 48.85652563092146], [2.408697540415117, 48.85654702533896], [2.408700373058649, 48.85654758254133], [2.408830832610964, 48.85658380345864], [2.40896462758382, 48.85662049037904], [2.409095088875348, 48.856656710113334], [2.409228884221477, 48.85669339673585], [2.40924323651116, 48.856691774123405], [2.409363338732691, 48.85662037164412], [2.409481968684401, 48.85654920819675], [2.409602070250164, 48.85647780546869], [2.40972069817828, 48.856406642668034], [2.409840799088283, 48.856335239691234], [2.409959427738816, 48.85626407575224], [2.409960630290801, 48.856263433253254], [2.410041540336929, 48.85622498042585], [2.410131317381654, 48.856183517072935], [2.410144346862939, 48.85617448441267], [2.41014065822755, 48.85616358144114], [2.410084917113168, 48.85607468686272], [2.410022612205025, 48.85597160867096], [2.409966870124369, 48.85588271491478], [2.409904565679304, 48.85577963664373], [2.409828980095334, 48.85565742037967], [2.4097666761924432, 48.85555434201592], [2.409776719444843, 48.855542183820305], [2.410017110670431, 48.85551116639824], [2.410251627217166, 48.85548077876163], [2.410262533657177, 48.855473022585635], [2.41028768899949, 48.855334262209034], [2.410312789548853, 48.85519599618134], [2.410337945986324, 48.855057235766274], [2.410363044906154, 48.854918969686864], [2.410388201076047, 48.854780209226654], [2.410413301091803, 48.854641943108945], [2.410438455621232, 48.85450318349613], [2.410463555380368, 48.85436491643412], [2.410488709642136, 48.85422615677619], [2.4105138091244083, 48.85408789056844], [2.410538964491595, 48.85394912997273], [2.41056406234428, 48.853810863713264], [2.410589217443908, 48.853672103072455], [2.410614316392507, 48.853533836774695], [2.410629981470563, 48.85350089345768], [2.410618705037968, 48.85349585732231], [2.410485597054347, 48.85347193455624], [2.41026445293053, 48.85343206940824], [2.410069593913093, 48.853397046930205], [2.409848449062681, 48.853357181003915], [2.409704187864009, 48.85333125256451], [2.409687291204269, 48.85333066826916], [2.409673174746775, 48.85336316404036], [2.409606935319089, 48.853493069197505], [2.409540692347402, 48.853622536304236], [2.409474450897027, 48.85375244135101], [2.409408207266333, 48.853881908354175], [2.409341963316753, 48.854011374406284], [2.409275720866432, 48.854141280196856], [2.409209476257934, 48.854270746145446], [2.409143233157677, 48.854400650933094], [2.409076987880053, 48.8545301176774], [2.409010744119858, 48.85466002236133], [2.408944498183294, 48.854789489002066], [2.4088782551257752, 48.854919393589114], [2.408876467939657, 48.854921715868855], [2.408752835414724, 48.85503716223605], [2.408627169293998, 48.85515437642544], [2.408503535664682, 48.85526982251086], [2.408377868422032, 48.85538703641391], [2.40825423368832, 48.85550248221759], [2.408128565323833, 48.85561969583428], [2.408128862709087, 48.855630350069944], [2.408180489945619, 48.85567492973485], [2.408242089249506, 48.855727581764114], [2.408233985063892, 48.85574189526193], [2.408032512033829, 48.855768596814755], [2.407836110008497, 48.8557947115679], [2.407634636560098, 48.85582141334889], [2.407438234136276, 48.855847527447814], [2.407427622729354, 48.855858298538486], [2.407472809496908, 48.855992197606454], [2.407517441157516, 48.85612567299727], [2.407562628387862, 48.856259571999075], [2.40760726050748, 48.856393047324275], [2.407599348172605, 48.85641144025745], [2.407602685521609, 48.8564149552367], [2.407721524908563, 48.856429491465974], [2.407898739307536, 48.856450887061555], [2.40809707110796, 48.856475146945535], [2.408233997238226, 48.856491677842335], [2.408246181469436, 48.85650286300952]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 36, "roussel_fabien": 9.0, "nb_emargement": 895.0, "nb_procuration": 21.0, "nb_vote_blanc": 10.0, "jadot_yannick": 40.0, "le_pen_marine": 65.0, "nb_exprime": 882.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1265.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 895, "quartier_bv": "80", "geo_point_2d": [48.85522090980033, 2.409319494496626], "melenchon_jean_luc": 464.0, "poutou_philippe": 7.0, "macron_emmanuel": 175.0}, "geometry": {"type": "Point", "coordinates": [2.409319494496626, 48.85522090980033]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "933040351c16aba221535e21f7d8fbfcba1fa7ef", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 78, "zemmour_eric": 107.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-22", "geo_shape": {"coordinates": [[[2.352948138053721, 48.85132692070365], [2.35297023619564, 48.851327433224654], [2.353046463340402, 48.85131695152437], [2.353190960495993, 48.85129354818118], [2.353351662643922, 48.85127144907323], [2.353496159547423, 48.851248044461244], [2.353656861414438, 48.85122594584177], [2.353659717286128, 48.85122532992166], [2.353851296485578, 48.85116943098142], [2.354030691436771, 48.85111566217915], [2.354222271197706, 48.85105976264676], [2.354401664026058, 48.85100599327563], [2.354593242985753, 48.85095009314375], [2.35477263505378, 48.85089632321109], [2.354964213212335, 48.850840422479756], [2.355143605882643, 48.85078665199293], [2.355335181877442, 48.85073075065478], [2.3555145737874152, 48.85067697960647], [2.355515208409026, 48.850676794160215], [2.355547372646207, 48.85068979671758], [2.355539877952233, 48.85066903429558], [2.355563500841131, 48.85065323304556], [2.355530537352879, 48.85060403341575], [2.35541777470975, 48.85049837313023], [2.355307647097295, 48.85039257493315], [2.3551948853635682, 48.8502869144175], [2.355084760013104, 48.85018111600251], [2.354971997826277, 48.850075455249396], [2.354861873375298, 48.84996965660914], [2.354749113460547, 48.84986399563322], [2.354638988546253, 48.84975819676039], [2.3545262295409772, 48.84965253555436], [2.354416106888732, 48.849546736463644], [2.35430334879292, 48.849441075027485], [2.354193225677353, 48.84933527570418], [2.354189679576805, 48.84933298658655], [2.354031734440839, 48.84926301835597], [2.353874272480675, 48.84919335200547], [2.353716328202656, 48.849123382450486], [2.353558865712142, 48.84905371656806], [2.353400923643484, 48.84898374659528], [2.353243461996636, 48.848914080289035], [2.353085519411906, 48.84884410988376], [2.352928058608626, 48.84877444315369], [2.352922136669505, 48.848768149799106], [2.352896663795561, 48.84864080420753], [2.352869280245228, 48.84851029781084], [2.352843807626383, 48.84838295217851], [2.352816424343909, 48.848252445739504], [2.35279095198036, 48.848125100066454], [2.352763568965638, 48.84799459358516], [2.352738096857282, 48.847867247871335], [2.3527107141105112, 48.84773674134772], [2.352685242257242, 48.84760939559317], [2.352657859778317, 48.84747888902727], [2.352638599543036, 48.84747197307201], [2.35243685071564, 48.847534110655324], [2.352244301455294, 48.847592809994154], [2.352042553052596, 48.84765494691327], [2.351850002901667, 48.84771364561114], [2.351834097518211, 48.84771145134694], [2.351683523712786, 48.847599479293706], [2.351536508471071, 48.847487622555576], [2.351385935940661, 48.84737565100463], [2.3512389219691032, 48.84726379387832], [2.3511861827964893, 48.84724500447288], [2.351179703184789, 48.847247305867455], [2.351155473057319, 48.84727862324081], [2.351059419757125, 48.847395947050664], [2.350971090925635, 48.847510114558446], [2.350882761718339, 48.847624281090035], [2.350786707155893, 48.84774160554385], [2.350698377152304, 48.847855771915555], [2.350602321759276, 48.84797309529766], [2.350582759626143, 48.847987131524235], [2.350591512895954, 48.84800567254126], [2.350506348228161, 48.848109837979315], [2.35042411994166, 48.84821038948214], [2.350338954593512, 48.84831455568117], [2.35025672703497, 48.84841510615859], [2.350171561017572, 48.84851927221933], [2.350089331439164, 48.84861982345508], [2.350004164752707, 48.8487239893775], [2.349921935902059, 48.848824539587866], [2.349921644598126, 48.84883270687078], [2.350008356681705, 48.848951768180946], [2.350093104316735, 48.84906829874289], [2.350179815821392, 48.84918735989625], [2.35026456422286, 48.849303890312065], [2.3503512765225762, 48.84942295041666], [2.350436025690591, 48.849539480686424], [2.35052077387505, 48.8496560108765], [2.350607488697422, 48.84977507166443], [2.350612033383621, 48.849778578640965], [2.350780877647486, 48.84985543303138], [2.3509509924056102, 48.849932185245464], [2.351119837667067, 48.85000903914694], [2.351289953414771, 48.85008579176784], [2.351458801036416, 48.85016264518774], [2.351628917795993, 48.850239396416825], [2.351797765052543, 48.8503162493404], [2.351967882812799, 48.850393000076906], [2.352136731067049, 48.850469852511544], [2.352306849827984, 48.85054660275554], [2.352475699079734, 48.850623454701214], [2.352645818841353, 48.85070020445264], [2.35265110020696, 48.85070487280447], [2.352722279724638, 48.85085076377754], [2.352791040703701, 48.85099358199656], [2.352859802059771, 48.85113640015779], [2.352930982751185, 48.85128229095008], [2.352948138053721, 48.85132692070365]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 22, "roussel_fabien": 21.0, "nb_emargement": 1148.0, "nb_procuration": 74.0, "nb_vote_blanc": 10.0, "jadot_yannick": 92.0, "le_pen_marine": 58.0, "nb_exprime": 1134.0, "nb_vote_nul": 4.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1395.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1148, "quartier_bv": "17", "geo_point_2d": [48.84942169616762, 2.3524887347928893], "melenchon_jean_luc": 247.0, "poutou_philippe": 1.0, "macron_emmanuel": 485.0}, "geometry": {"type": "Point", "coordinates": [2.3524887347928893, 48.84942169616762]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "aa28366de45214a4d970f44334a4898f256113b5", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 174, "zemmour_eric": 158.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "7-8", "geo_shape": {"coordinates": [[[2.320568806865964, 48.8484405218138], [2.320526236559624, 48.84847032500072], [2.3204698587851382, 48.848594414274594], [2.320412011438456, 48.84871894304379], [2.3203556331112862, 48.84884303313544], [2.32029778521557, 48.84896756182159], [2.320241406359166, 48.849091650932436], [2.32018355790288, 48.84921618043482], [2.320127178505504, 48.849340269464115], [2.320069329500268, 48.84946479888349], [2.320012949561914, 48.84958888783126], [2.319955100019355, 48.849713416268294], [2.319898719528279, 48.849837506033786], [2.319840869436859, 48.84996203438777], [2.319784488416526, 48.85008612317241], [2.3197266377643952, 48.85021065234268], [2.31967025620296, 48.85033474104576], [2.319612405013591, 48.85045926923367], [2.319556022899507, 48.850583358754506], [2.319498171161152, 48.850707886859354], [2.319441788517795, 48.850831975399366], [2.3193839362186, 48.850956504320436], [2.319327553034219, 48.85108059277888], [2.31926970019787, 48.85120512071761], [2.31921331646071, 48.851329209993764], [2.319155463075351, 48.85145373784945], [2.3190990787970502, 48.85157782704403], [2.319041224862676, 48.85170235481664], [2.319009239400495, 48.85171479167096], [2.319009303092924, 48.85174203629416], [2.31901995564735, 48.85187076001025], [2.319033478006128, 48.85202787478988], [2.319044130678706, 48.85215659847074], [2.319057654535441, 48.85231371411428], [2.319063897122823, 48.852389153596185], [2.319070834846115, 48.85239992781263], [2.319133402958367, 48.85239715770012], [2.3193248824390222, 48.852426602094816], [2.319514595454655, 48.85245587245167], [2.319706073991962, 48.85248531712636], [2.319895788809966, 48.852514585985745], [2.320087267778416, 48.85254403004886], [2.320276983012455, 48.85257329920163], [2.32046846242377, 48.85260274175387], [2.320658176723021, 48.85263201029294], [2.320849657916491, 48.852661453140655], [2.321039372655321, 48.852690720174515], [2.321230854279912, 48.85272016241062], [2.321420569446584, 48.85274942883857], [2.321612051502188, 48.8527788704631], [2.321801767084993, 48.85280813718439], [2.321991482892604, 48.85283740270482], [2.322182965594147, 48.85286684341341], [2.322372681817889, 48.85289610922717], [2.322564164962121, 48.8529255484249], [2.322753881613687, 48.852954813632714], [2.322945365177416, 48.852984253118166], [2.323135082268483, 48.85301351682071], [2.323326564900528, 48.85304295568688], [2.323516283770488, 48.8530722196905], [2.323707766845279, 48.85310165704578], [2.323718223751117, 48.853109442522396], [2.323741888032036, 48.8532528968477], [2.323762949034391, 48.85339700915508], [2.323786614931914, 48.85354046344215], [2.3238076761742, 48.85368457570437], [2.323831342325363, 48.85382802994548], [2.323852403807581, 48.85397214216256], [2.323854423204608, 48.85397605677877], [2.323965562799905, 48.854093034430456], [2.324088967983433, 48.8542250950956], [2.324200108636449, 48.8543420725032], [2.324323515004213, 48.854474132896826], [2.324355873806408, 48.85450819074171], [2.324389832628049, 48.85452312202379], [2.324414843306151, 48.85451141962488], [2.32461161934204, 48.854497914141945], [2.324807140300397, 48.85448354866469], [2.325003916129352, 48.854470042536256], [2.325199436874969, 48.85445567641769], [2.325396212485337, 48.85444217054309], [2.325591733018209, 48.854427803783146], [2.32578850843327, 48.85441429636382], [2.325984028753383, 48.85439992896251], [2.325995925916134, 48.85439261226959], [2.326033180429903, 48.85425846019883], [2.326070507463355, 48.854124060287624], [2.326107761593108, 48.853989908161196], [2.326145088241818, 48.85385550819426], [2.326182343350244, 48.85372135601985], [2.326219669614315, 48.853586955997166], [2.326256922975949, 48.853452803759524], [2.326294248855187, 48.8533184036811], [2.326331501832925, 48.85318425138778], [2.326368827327439, 48.85304985125364], [2.326406081283946, 48.85291569891234], [2.326443405030978, 48.852781298714795], [2.326480658603492, 48.852647146317956], [2.326517983328571, 48.852512746072314], [2.326555235154242, 48.85237859361217], [2.326592559494715, 48.85224419331084], [2.3266298122991538, 48.85211004080272], [2.326667134892082, 48.851975640438035], [2.326704387312646, 48.85184148787431], [2.326741710883617, 48.85170708746151], [2.326778961557481, 48.85157293483454], [2.326816284743761, 48.85143853436606], [2.326860545032668, 48.85140483172484], [2.326845078301032, 48.85138871635425], [2.326724864561009, 48.851313822254895], [2.32663000674016, 48.85125120666681], [2.326627831007331, 48.851250101702114], [2.326461884506188, 48.85118222664235], [2.326284212788078, 48.8511102553006], [2.326118267168221, 48.85104238065505], [2.3259405964015, 48.850970408794005], [2.325774650323579, 48.8509025327564], [2.3255969805082533, 48.85083056037606], [2.325431036674214, 48.8507626847603], [2.325253367810277, 48.85069071186069], [2.32508742488079, 48.85062283486057], [2.324909756968244, 48.85055086144169], [2.324743814920017, 48.85048298485578], [2.324566147958858, 48.85041101091764], [2.324400205452599, 48.850343132939656], [2.324222540805422, 48.85027115848992], [2.324221382440196, 48.850270633916594], [2.324067826801743, 48.85019909578424], [2.32390791234311, 48.85011825362014], [2.323754356209645, 48.85004671596731], [2.323594444067604, 48.84996587338086], [2.323440888825154, 48.849894334416625], [2.323358987651231, 48.84985292972572], [2.323353438390207, 48.84984643104906], [2.323335461030223, 48.84983823334467], [2.323257449693128, 48.84979879499556], [2.323102465000635, 48.84971976932117], [2.322942553522081, 48.849638924932755], [2.322787569782583, 48.849559898839125], [2.322627659271436, 48.84947905491752], [2.322472675122254, 48.84940002839697], [2.322312766964559, 48.84931918315131], [2.322157783768367, 48.84924015621151], [2.3219978765781573, 48.849159311432686], [2.321842894334849, 48.84908028407362], [2.321682986772757, 48.84899943795536], [2.321528006845092, 48.84892041018477], [2.321368100250369, 48.84883956453332], [2.321213121275676, 48.84876053634355], [2.321053215671739, 48.84867968936034], [2.320898236287368, 48.84860066074361], [2.320738333013432, 48.84851981423499], [2.32058335458203, 48.84844078519902], [2.320568806865964, 48.8484405218138]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 8, "roussel_fabien": 10.0, "nb_emargement": 1239.0, "nb_procuration": 92.0, "nb_vote_blanc": 7.0, "jadot_yannick": 47.0, "le_pen_marine": 48.0, "nb_exprime": 1229.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 5, "nb_inscrit": 1526.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1239, "quartier_bv": "25", "geo_point_2d": [48.85158746645908, 2.322947541766066], "melenchon_jean_luc": 118.0, "poutou_philippe": 3.0, "macron_emmanuel": 630.0}, "geometry": {"type": "Point", "coordinates": [2.322947541766066, 48.85158746645908]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "534e5511037fb3be7e3c0f0f1063c9e1e24f30c3", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 12, "zemmour_eric": 43.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-57", "geo_shape": {"coordinates": [[[2.354002438082366, 48.88513261226353], [2.35397170004497, 48.88512541726868], [2.3537781872477, 48.88512366970321], [2.353590434121541, 48.885122952074056], [2.3533969227098392, 48.88512120389975], [2.353209169597827, 48.885120485672715], [2.353015658208093, 48.885118736882205], [2.352827905110237, 48.88511801805732], [2.352640152017568, 48.88511729893798], [2.352446639295181, 48.88511554922045], [2.352444932644162, 48.88511560474176], [2.3522409503933313, 48.88512968829296], [2.352036370017502, 48.88514481597712], [2.351832386178145, 48.88515889882454], [2.351627805568775, 48.88517402581024], [2.351423821504513, 48.88518810796122], [2.351219240661815, 48.88520323424841], [2.351015257747477, 48.885217314811065], [2.35081067530765, 48.88523244039239], [2.350606692157225, 48.8852465211579], [2.3504021108477042, 48.88526164604813], [2.350198126108793, 48.885275726109796], [2.349993544565771, 48.885290850301544], [2.3497895596021, 48.885304929666795], [2.349584977825691, 48.88532005316], [2.349535530290437, 48.88533110977356], [2.349534246599063, 48.88534282823841], [2.349536151711954, 48.88534719133593], [2.349645435822591, 48.88546862229655], [2.349744998697582, 48.88558055200829], [2.34974956021165, 48.88559016451523], [2.349758864437089, 48.88559608046106], [2.349858426435955, 48.88570801005811], [2.349954161396329, 48.8858159725316], [2.350053725599023, 48.885927901951256], [2.35014946136846, 48.886035864247], [2.350245197546191, 48.886143825556296], [2.350344762990084, 48.8862557555998], [2.350440499976888, 48.88636371673138], [2.350540064897472, 48.88647564658269], [2.350635802693458, 48.88658360753651], [2.350735369817926, 48.88669553721041], [2.350736381931858, 48.88669694025249], [2.350790422743362, 48.88680145175924], [2.350855868843989, 48.886916992353065], [2.350909910123675, 48.88702150378496], [2.35095717200125, 48.88710494048952], [2.35097398503259, 48.88713549810737], [2.350975261536089, 48.88713604102521], [2.350993447686505, 48.887168144829786], [2.351058894698481, 48.88728368527405], [2.351116027202542, 48.88740350097342], [2.351116310789694, 48.88740405379716], [2.351173443557933, 48.887523869456], [2.35123791503159, 48.887665018177145], [2.351295048377064, 48.887784832850166], [2.351359520503558, 48.887925981472314], [2.35141665440397, 48.88804579695814], [2.3514811271943072, 48.888186944582024], [2.351516903817853, 48.88826197122121], [2.351536947790044, 48.888279538379365], [2.351590902492141, 48.88826933364229], [2.351641161144296, 48.888218623933675], [2.351682051538238, 48.88817638908401], [2.351695793854645, 48.88817235806982], [2.351874575945592, 48.888192057078975], [2.352055319261628, 48.88821076908111], [2.352234102984155, 48.888230467560135], [2.352414846573792, 48.888249178119665], [2.3525936305642, 48.8882688760612], [2.352774374416442, 48.888287586077396], [2.352953158674722, 48.88830728348142], [2.35313390278946, 48.88832599295426], [2.353312685951913, 48.88834568981344], [2.353493430329141, 48.88836439874292], [2.353509182469826, 48.88835544647422], [2.353507617701519, 48.888219176762284], [2.353500560343358, 48.888087251696156], [2.353498995605674, 48.88795098195088], [2.353491938305706, 48.88781905685201], [2.353510439422695, 48.887777276049924], [2.353504816667987, 48.88777321401419], [2.353497759377364, 48.887641288894315], [2.353488344349676, 48.887519897422], [2.353481285771551, 48.887387972263376], [2.353471870827967, 48.88726658076176], [2.353464813689576, 48.88713465557906], [2.353455398830293, 48.88701326404819], [2.353445984014805, 48.88689187250314], [2.353438926992779, 48.88675994727398], [2.35344403113007, 48.88675261025133], [2.3536120821546502, 48.88666386193578], [2.353781834515711, 48.88657599311077], [2.353949884394695, 48.88648724430686], [2.354119635609893, 48.88639937498883], [2.354287684343184, 48.886310625696545], [2.354457434412627, 48.886222755885484], [2.354464334026801, 48.88621280516074], [2.35444889747171, 48.886192846810694], [2.3543926479183153, 48.88606125078554], [2.354335817945873, 48.88593425524209], [2.354278988250518, 48.88580725965697], [2.354222738190634, 48.8856756625992], [2.354165910416879, 48.885548666937886], [2.354109660910927, 48.88541707069528], [2.35405283233152, 48.88529007494307], [2.353996583390647, 48.88515847861638], [2.354002438082366, 48.88513261226353]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 57, "roussel_fabien": 16.0, "nb_emargement": 1342.0, "nb_procuration": 105.0, "nb_vote_blanc": 12.0, "jadot_yannick": 100.0, "le_pen_marine": 52.0, "nb_exprime": 1326.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1864.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1342, "quartier_bv": "71", "geo_point_2d": [48.88647097977663, 2.3522217498001043], "melenchon_jean_luc": 798.0, "poutou_philippe": 11.0, "macron_emmanuel": 246.0}, "geometry": {"type": "Point", "coordinates": [2.3522217498001043, 48.88647097977663]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "92aa98c7da60af05719ccf9f253640a3e4b4db83", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 84, "zemmour_eric": 81.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "1-7", "geo_shape": {"coordinates": [[[2.339735967554379, 48.866092515006045], [2.339766699384699, 48.866084211814595], [2.339899748345097, 48.866052710487985], [2.340071869028705, 48.86601202810444], [2.3402539618867753, 48.86596891465552], [2.340426082016906, 48.86592823175947], [2.340608174289026, 48.8658851177684], [2.340780293876952, 48.86584443346063], [2.340962385551638, 48.865801319826666], [2.3411345045861722, 48.86576063500642], [2.341174447450702, 48.86574496256572], [2.341153574028326, 48.865710190510164], [2.341066463500872, 48.865585054548966], [2.340976489736781, 48.86546247666734], [2.340889381411992, 48.86533734055679], [2.340799407129302, 48.865214762507094], [2.340709434633003, 48.865092184383684], [2.340622326205871, 48.86496704802938], [2.340532354554048, 48.86484446974542], [2.340445248340923, 48.864719332342496], [2.340355276170492, 48.864596753890496], [2.340268170785514, 48.86447161722995], [2.340267616078091, 48.86447074900142], [2.340203537675913, 48.86435353923819], [2.340138427564324, 48.864236230206345], [2.3400743483783, 48.864119020341654], [2.340009238850711, 48.86400171121467], [2.339945161618245, 48.86388450036421], [2.339880051300206, 48.86376719203387], [2.339815974646739, 48.86364998108944], [2.339750866287128, 48.86353267177222], [2.339750608426226, 48.8635321523259], [2.339689975611404, 48.86339579520423], [2.339639395048054, 48.86328048515722], [2.339588813345475, 48.863165175069355], [2.339528181392623, 48.86302881692118], [2.339477600180642, 48.86291350676012], [2.339416968811764, 48.86277714852468], [2.339366388090272, 48.86266183829041], [2.33930575730536, 48.86252547996765], [2.339255177074249, 48.86241016966018], [2.339233891739859, 48.86236229767569], [2.339231234832674, 48.86235243065175], [2.339223083197134, 48.862344079267906], [2.3392033601586713, 48.86230393320414], [2.339164015376633, 48.86221544766312], [2.339171060583933, 48.86220485267694], [2.339296385991746, 48.86216402804479], [2.339432926715455, 48.86212631217707], [2.339440560285462, 48.86211510526818], [2.339386155567598, 48.86201020629977], [2.339317394375379, 48.86187731856966], [2.339262991528213, 48.861772418630984], [2.339194230963979, 48.86163953080165], [2.339139827238701, 48.86153463167623], [2.339106613320092, 48.86149467457424], [2.339059986924497, 48.86149823300763], [2.3389651762277612, 48.861528869068984], [2.338786926101779, 48.86158695354888], [2.338609468773008, 48.86164429478546], [2.338431217855544, 48.861702378729504], [2.338253759742125, 48.86175971943261], [2.338075508033282, 48.861817802840825], [2.337898049135214, 48.861875143010565], [2.337719796634793, 48.86193322588289], [2.337542335589077, 48.861990565511626], [2.337364082297281, 48.86204864784809], [2.33718662182992, 48.862105986950965], [2.33700836774655, 48.86216406875157], [2.336830906494546, 48.86222140732102], [2.336652651619704, 48.86227948858574], [2.336475189583061, 48.86233682662173], [2.336296932553839, 48.862394907343024], [2.336119469732556, 48.862452244845564], [2.335941213274776, 48.86251032503855], [2.335763749668856, 48.86256766200768], [2.335585492419712, 48.86262574166477], [2.335408028029057, 48.86268307810041], [2.335229769988449, 48.86274115722163], [2.335118607922728, 48.86277707210146], [2.335097130579169, 48.86278180386074], [2.335119575916313, 48.86284220824329], [2.335168184518456, 48.8629496184731], [2.33521881000083, 48.86305975500521], [2.335267419010543, 48.86316716517363], [2.335318043551066, 48.863277301634554], [2.335313487636502, 48.86328694881198], [2.335183124248915, 48.863355399805265], [2.3350511048020453, 48.86342413464018], [2.334920740726434, 48.86349258533922], [2.334788720585645, 48.86356131987615], [2.334658355822006, 48.86362977028088], [2.3345263349875, 48.86369850451988], [2.33452347348319, 48.86371058752474], [2.334671376400001, 48.863855505925585], [2.334802925350994, 48.863986758482426], [2.334810579166972, 48.86399039930993], [2.334953469597592, 48.864016617057416], [2.3351020592898513, 48.86404433942607], [2.335244951389636, 48.86407055593257], [2.3353935413909452, 48.864098277938], [2.335402799888673, 48.86410970159067], [2.335340080706047, 48.86423749938781], [2.335279813701729, 48.864359832839405], [2.33521709391627, 48.8644876305432], [2.33515682633379, 48.864609963905274], [2.335156414351228, 48.86461447453631], [2.335192842152745, 48.86473705992663], [2.335229825473525, 48.86485960251034], [2.3352662536077142, 48.864982188750474], [2.33530323728667, 48.8651047303851], [2.335339665765011, 48.865227316575755], [2.335376649790673, 48.865349858160556], [2.335413078613172, 48.865472444301695], [2.335450064348638, 48.865594985844226], [2.335486493515202, 48.86571757193592], [2.335523478234393, 48.865840113421086], [2.335559907745123, 48.86596269946326], [2.335596892810932, 48.866085240898585], [2.3355971437206122, 48.86608737194051], [2.335595047729558, 48.866138843310765], [2.335591942939597, 48.86618796628485], [2.335592594479831, 48.866190963821104], [2.335650471695426, 48.866309574138185], [2.335705900492059, 48.86642372536242], [2.33576132815702, 48.86653787744092], [2.335819206142221, 48.8666564876392], [2.335874634303125, 48.86677063964119], [2.335932514179508, 48.866889248868006], [2.335950200165661, 48.86689493282331], [2.336154979195224, 48.86684518660706], [2.33635874354656, 48.866795552228325], [2.336563521783873, 48.86674580620796], [2.336767285357332, 48.8666961711292], [2.336972062813853, 48.86664642440533], [2.3371758256093242, 48.8665967886266], [2.337192746560636, 48.86660121177859], [2.337211556857025, 48.86662610277924], [2.337225433667806, 48.86664489408301], [2.337253120630074, 48.8666726105074], [2.337260542310632, 48.86667171898369], [2.337385832857737, 48.866643066184835], [2.337529201779903, 48.86660949677834], [2.337727410010924, 48.866564167755165], [2.337870778495841, 48.86653059793706], [2.338052874988213, 48.86648748785711], [2.338251080936124, 48.86644215795416], [2.338433176804636, 48.866399047292205], [2.338631383448244, 48.866353716763385], [2.33863162682091, 48.866353659650876], [2.338813722065051, 48.86631054840643], [2.338980477959959, 48.86627005289853], [2.339162571260146, 48.8662269411126], [2.339329326604841, 48.86618644601488], [2.339511420687199, 48.86614333370249], [2.339678174129878, 48.86610283810816], [2.339727218640601, 48.86609122564499], [2.339735967554379, 48.866092515006045]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 7, "roussel_fabien": 12.0, "nb_emargement": 895.0, "nb_procuration": 51.0, "nb_vote_blanc": 9.0, "jadot_yannick": 53.0, "le_pen_marine": 47.0, "nb_exprime": 884.0, "nb_vote_nul": 2.0, "arr_bv": "01", "arthaud_nathalie": 1, "nb_inscrit": 1115.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 895, "quartier_bv": "03", "geo_point_2d": [48.86435679260745, 2.337710069290181], "melenchon_jean_luc": 158.0, "poutou_philippe": 3.0, "macron_emmanuel": 399.0}, "geometry": {"type": "Point", "coordinates": [2.337710069290181, 48.86435679260745]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6362bc49303d43f122865b471f6bc38e8bde1cd4", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 79, "zemmour_eric": 77.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-6", "geo_shape": {"coordinates": [[[2.332426233576045, 48.82752977856897], [2.332367292864996, 48.82755419948229], [2.332244143858844, 48.827572722609304], [2.332063747358772, 48.82760149985784], [2.332062855357628, 48.82760095075315], [2.332016944203157, 48.8276068271724], [2.331949426310863, 48.827639695481146], [2.331889965348759, 48.82767481673121], [2.331881337989237, 48.82767710241533], [2.331686171278379, 48.82768140369109], [2.331497724104291, 48.82768740875437], [2.331309278260328, 48.82769341262907], [2.331114110067582, 48.82769771386289], [2.330925664142299, 48.82770371713304], [2.330730497241436, 48.82770801774844], [2.330542049860985, 48.82771402130579], [2.330346882901459, 48.827718320395796], [2.33034343254348, 48.827718105011485], [2.3301571400729593, 48.82769039250929], [2.329985088208042, 48.827664783995644], [2.329980502433564, 48.82766462519606], [2.329814492742229, 48.82767752921603], [2.329644081252856, 48.82768951974825], [2.329478072772655, 48.82770242240929], [2.329307661112872, 48.8277144133612], [2.329305498842305, 48.827714451599945], [2.329078570246392, 48.82770675628007], [2.328854046280175, 48.82769893012358], [2.328851999817915, 48.827698754952365], [2.328674819729572, 48.82767464381199], [2.328461056692823, 48.82764538671451], [2.328283878340346, 48.827621274102164], [2.328070115741714, 48.8275920163045], [2.327892936389328, 48.82756790310416], [2.327679174229025, 48.82753864460638], [2.32750199523884, 48.827514530825724], [2.327288234878873, 48.82748527163541], [2.327111056250796, 48.82746115727443], [2.327084538232389, 48.82746827413342], [2.32709268090544, 48.827490678462965], [2.327118309256083, 48.82754109423982], [2.327161660984375, 48.82762908046404], [2.327226795020061, 48.827757213271106], [2.327270147111252, 48.82784519943906], [2.327270921442129, 48.827846418852744], [2.32736165448537, 48.82796407931283], [2.327453169009606, 48.828080958928496], [2.327544685294689, 48.828197839368954], [2.327635418205264, 48.82831549957681], [2.327726935310648, 48.82843237985333], [2.327817669040728, 48.82855003989836], [2.327909186966423, 48.828666920010974], [2.327999921527612, 48.82878457899379], [2.328000353495874, 48.828785095864006], [2.328018032419751, 48.828803997552214], [2.328048271643148, 48.828793568312484], [2.32825162833643, 48.82880407231646], [2.328451108165027, 48.82881458388427], [2.328654463659312, 48.82882508719545], [2.328853943649638, 48.82883559809113], [2.329057299307047, 48.82884610071716], [2.329256779458992, 48.828856610940726], [2.329460136641648, 48.82886711288925], [2.3296596169551, 48.82887762244076], [2.329862972938725, 48.82888812369648], [2.330062453413877, 48.82889863257583], [2.330063053851108, 48.8288986557256], [2.330258645168651, 48.82890323629179], [2.3304579095249203, 48.82890799089437], [2.330653500912175, 48.82891257081477], [2.330852766690621, 48.82891732566635], [2.331048356785547, 48.828921904933374], [2.331247622647217, 48.8289266582277], [2.331443212811734, 48.82893123684896], [2.33164247873364, 48.82893599038469], [2.33183807032998, 48.82894056836774], [2.332037334961417, 48.82894532123797], [2.332232926638952, 48.828949897675905], [2.332432191342041, 48.82895464988819], [2.332627783077721, 48.82895922657968], [2.332827047852458, 48.828963978134055], [2.332840171309955, 48.82897324565716], [2.332834776812292, 48.82908757652012], [2.332833211418164, 48.82920159326516], [2.332827816881508, 48.829315924104506], [2.332826251465302, 48.829429940826245], [2.332820855527703, 48.829544271634404], [2.332819290089415, 48.82965828833282], [2.332832463915461, 48.829667359167985], [2.333061312220837, 48.82967232480649], [2.333270976591194, 48.829675987792896], [2.333480640991114, 48.82967965041174], [2.333709489400578, 48.82968461570926], [2.333753664347491, 48.82966474729208], [2.333745477234268, 48.82964951394391], [2.333714216704967, 48.829604969143645], [2.333672057549097, 48.82954226729352], [2.333673751450219, 48.82953102555303], [2.333652978306199, 48.829512844973486], [2.333618397663334, 48.82946141491675], [2.333531967868426, 48.829334566640625], [2.333455228828369, 48.829220434596216], [2.333368799829989, 48.829093586174885], [2.33329206150186, 48.828979454001214], [2.333205631949361, 48.82885260452782], [2.333124206416314, 48.82873287265504], [2.333037779031546, 48.82860602393934], [2.332956354280622, 48.828486291026664], [2.332874929892092, 48.82836655894504], [2.332788503721215, 48.828239710007765], [2.332788031644867, 48.82823891772204], [2.332729215417757, 48.82812457478772], [2.332678386832106, 48.82802303942772], [2.332627558444337, 48.82792150403696], [2.332568741565166, 48.82780716098375], [2.332512744691742, 48.82768951672811], [2.332453928337718, 48.82757517269543], [2.33243464646378, 48.827534664175666], [2.332426233576045, 48.82752977856897]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 6, "roussel_fabien": 18.0, "nb_emargement": 1226.0, "nb_procuration": 80.0, "nb_vote_blanc": 7.0, "jadot_yannick": 119.0, "le_pen_marine": 26.0, "nb_exprime": 1219.0, "nb_vote_nul": 0.0, "arr_bv": "14", "arthaud_nathalie": 0, "nb_inscrit": 1455.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1226, "quartier_bv": "55", "geo_point_2d": [48.8283458720343, 2.330445948529856], "melenchon_jean_luc": 331.0, "poutou_philippe": 3.0, "macron_emmanuel": 505.0}, "geometry": {"type": "Point", "coordinates": [2.330445948529856, 48.8283458720343]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1a733d75861636830126c031956dbd0df735b0ea", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 103, "zemmour_eric": 104.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "15-77", "geo_shape": {"coordinates": [[[2.282268143191398, 48.838974659773406], [2.282250516099346, 48.83896244036137], [2.282129188313297, 48.83888055023768], [2.282004773117225, 48.83879691015888], [2.281883446114956, 48.8387150188745], [2.281759031708329, 48.83863137852771], [2.281637705465057, 48.838549487881224], [2.281513291847868, 48.8384658472665], [2.281391966388374, 48.83838395545932], [2.28126755356062, 48.838300314576635], [2.281262818078173, 48.83828911770973], [2.28124519287783, 48.83828519306737], [2.281089831468256, 48.8381973593148], [2.280944635037585, 48.83811758637971], [2.28079944042612, 48.83803781237158], [2.280655470506278, 48.83795897009957], [2.280510275404427, 48.83787919662019], [2.280366306360178, 48.83780035398899], [2.280222337751461, 48.837721511178934], [2.280077143973951, 48.83764173715692], [2.279933176240618, 48.83756289398765], [2.279787984709841, 48.8374831196115], [2.279644016489739, 48.83740427607483], [2.27949882585566, 48.83732450043712], [2.279354859860955, 48.83724565744875], [2.279209668749003, 48.83716588144055], [2.279065703642207, 48.837087037193676], [2.2789205147644243, 48.837007261730676], [2.278908123116783, 48.83700551419239], [2.2787006390225573, 48.83704388602836], [2.278490209686185, 48.8370826048853], [2.278282724964904, 48.83712097689304], [2.2780722950068872, 48.83715969501213], [2.277864809683662, 48.83719806539303], [2.277654379091553, 48.83723678367356], [2.277637642265447, 48.8372306379059], [2.277582832784531, 48.83710658447907], [2.277528416729318, 48.83698335901372], [2.277473607768363, 48.8368593055094], [2.277419190867173, 48.8367360799589], [2.277364382426174, 48.83661202637707], [2.277309967403669, 48.83648880075789], [2.277255159495084, 48.8363647461993], [2.277200743614234, 48.83624152139423], [2.277145936225491, 48.83611746675816], [2.277091522223296, 48.835994241884414], [2.277036713992278, 48.83587018716263], [2.276982300518784, 48.83574696131262], [2.27692749415753, 48.83562290742093], [2.276873081200357, 48.835499681494], [2.276818273996723, 48.83537562751661], [2.276763861555866, 48.83525240151276], [2.276709056234442, 48.835128347466124], [2.276654644309891, 48.835005121385365], [2.276599838158566, 48.834881066353745], [2.276545426737937, 48.83475784109538], [2.276539551628328, 48.83474845834189], [2.276520530527471, 48.834746471688014], [2.276324014072338, 48.83474322328138], [2.276126117575858, 48.83473997339469], [2.275929602532085, 48.834736724348254], [2.275731704722693, 48.83473347380076], [2.275535189715511, 48.83473022500562], [2.275337293317569, 48.8347269738138], [2.275140777009702, 48.83472372346311], [2.274942880661148, 48.83472047161871], [2.274746364402391, 48.83471722061997], [2.2745484681030312, 48.834713968123005], [2.274351951880873, 48.83471071737557], [2.274154055630916, 48.83470746422605], [2.273957539470404, 48.8347042119313], [2.273759643269661, 48.8347009581292], [2.273563127158288, 48.83469770518641], [2.273365231006971, 48.83469445073174], [2.273168714932207, 48.83469119804025], [2.27297081883012, 48.834687942932995], [2.272774304179328, 48.83468468870249], [2.27257640676441, 48.8346814329344], [2.272379892162787, 48.83467817805585], [2.272181994797122, 48.83467492163519], [2.271985480232116, 48.83467166700793], [2.271787584278191, 48.834668409942985], [2.271591068412652, 48.834665153760156], [2.271393172508, 48.83466189604264], [2.271196656691659, 48.83465863921179], [2.270998760823915, 48.83465538174098], [2.270802245056778, 48.834652124262114], [2.270604349250901, 48.83464886523948], [2.270407833532981, 48.83464560711253], [2.270209937776609, 48.834642347437324], [2.2700134221079162, 48.83463908866243], [2.269815526388259, 48.83463582923394], [2.269619010768901, 48.83463256981101], [2.269421115111262, 48.83462930883066], [2.269224600903325, 48.83462604876802], [2.269026703932843, 48.8346227871268], [2.268830189774162, 48.83461952641617], [2.268632294202882, 48.83461626503], [2.268435778731188, 48.83461300366303], [2.2682378832218753, 48.834609740724986], [2.268041367799458, 48.834606478709965], [2.267843472339709, 48.834603215119365], [2.267835557264834, 48.8345969870471], [2.267821508534208, 48.834594173237626], [2.267804115358898, 48.83459706978533], [2.26767074777481, 48.83461771512654], [2.267482161862657, 48.83464912227294], [2.267452761216732, 48.83465401919576], [2.267319393360426, 48.83467466324482], [2.267287466397351, 48.834679979950295], [2.267280774176295, 48.83467990118023], [2.267136723120146, 48.83465476153281], [2.266946782400578, 48.83462059402644], [2.266719012566392, 48.834580843007316], [2.266529072377205, 48.83454667573465], [2.266339133811941, 48.8345125072684], [2.266111364913419, 48.83447275508832], [2.26610088546091, 48.834470926209335], [2.265910946090055, 48.83443675705246], [2.26575690346981, 48.83440987167065], [2.265602861008361, 48.83438298608984], [2.26541292228439, 48.83434881613944], [2.265258880180881, 48.834321930114164], [2.265068943267129, 48.83428775962398], [2.2650617146645198, 48.834286497449845], [2.265058473398683, 48.834285932510554], [2.264885193318087, 48.83425569722328], [2.264695255528462, 48.834221526129326], [2.264643349337883, 48.8342124695596], [2.264570181419586, 48.834199701813226], [2.2645657877378502, 48.834198934609624], [2.264481365857157, 48.83418420441952], [2.264291428592649, 48.834150032682125], [2.264116844770204, 48.83411956790551], [2.263926907967468, 48.83408539648661], [2.263752324574535, 48.83405493117618], [2.263562388258973, 48.83402075827718], [2.263387803920696, 48.83399029332385], [2.263197869441771, 48.83395611985239], [2.263023285533011, 48.83392565436525], [2.2629970988685653, 48.83395028887002], [2.262998566895714, 48.83395929169926], [2.26310655198951, 48.83406629413383], [2.263216254809385, 48.834175366615085], [2.263324240797632, 48.83428236883242], [2.263433944527626, 48.83439144109301], [2.2635419327599, 48.834498444000836], [2.26365163740023, 48.83460751604069], [2.263759625177415, 48.834714517823635], [2.2638693307279842, 48.83482358964277], [2.26397731939965, 48.834930591208526], [2.264087025860367, 48.83503966280692], [2.264200905860565, 48.835156255375644], [2.26431061325136, 48.835265327646276], [2.26442449424456, 48.83538191997859], [2.264534202590931, 48.835490991122846], [2.264648084577244, 48.83560758321878], [2.264757793866405, 48.83571665413596], [2.264871675483534, 48.835833245987104], [2.264981387065124, 48.83594231758489], [2.265095269675383, 48.83605890919963], [2.265204980850156, 48.83616797966266], [2.265205154177182, 48.836168151608945], [2.265314865799133, 48.8362772228598], [2.265426001146624, 48.836385456427166], [2.265535713700736, 48.836494526555015], [2.265646849970101, 48.836602759896145], [2.265756563431036, 48.83671183069948], [2.265867701984621, 48.836820063822756], [2.26597741637773, 48.83692913350307], [2.266088554490881, 48.83703736639173], [2.266198269790839, 48.83714643674759], [2.266309408825896, 48.83725466941003], [2.266419125058038, 48.83736373864279], [2.266530265002355, 48.83747197197828], [2.266639983516382, 48.83758104099562], [2.266751124395282, 48.837689273205584], [2.2668608424665, 48.8377983419908], [2.266971984254686, 48.837906574873834], [2.2670831265171802, 48.83801480674381], [2.267192845968338, 48.838123875192736], [2.267303989140037, 48.83823210773571], [2.267413710873032, 48.83834117596921], [2.267440942091898, 48.83836815398993], [2.267480746375974, 48.83840772199451], [2.267486393782077, 48.83842158715597], [2.267503276907842, 48.83843132374159], [2.267573193629244, 48.838500823808616], [2.267674138118282, 48.838610567418584], [2.267674413408635, 48.83861085330619], [2.267774471324277, 48.83871895003274], [2.2678754166722648, 48.83882869255215], [2.267975475423036, 48.838936789089516], [2.268076421603383, 48.83904653231718], [2.268176481189194, 48.83915462866533], [2.268277428214745, 48.83926437170198], [2.268377488635504, 48.83937246786092], [2.268478436506166, 48.83948221070655], [2.268578497762085, 48.839590306676286], [2.268679446490486, 48.83970004843158], [2.268779508581369, 48.83980814421207], [2.268880456779867, 48.83991788666735], [2.268980521068241, 48.84002598226692], [2.269081470111873, 48.84013572453116], [2.269181533873017, 48.84024381993321], [2.269282485124215, 48.840353562014684], [2.269340525578126, 48.840416260146135], [2.26935166957181, 48.840428705377754], [2.269374012625503, 48.84043596397675], [2.269416038187818, 48.840481360154556], [2.269524654808574, 48.84059818370801], [2.269636377276845, 48.84071382904626], [2.269725346613524, 48.84080959054884], [2.269837069980241, 48.840925235677716], [2.269837233801489, 48.84092540755831], [2.269935170370176, 48.841025668312476], [2.270046893315769, 48.84114131231542], [2.270144830680862, 48.841241573777815], [2.270256555916899, 48.841357217570874], [2.2703544927412462, 48.841457477934625], [2.270466218892702, 48.84157312240882], [2.2705641578884173, 48.84167338258983], [2.2705804494630533, 48.8416822759823], [2.270630488519066, 48.84165185226659], [2.270810330466986, 48.84159186154921], [2.270989362022849, 48.841532207383224], [2.271169203144867, 48.841472216119904], [2.271348233879007, 48.841412561410486], [2.2715280741751203, 48.84135256960124], [2.271707104087633, 48.841292914348344], [2.271886943557841, 48.84123292199317], [2.272065972648525, 48.841173266196805], [2.272245811292825, 48.84111327329566], [2.272424839561881, 48.84105361695587], [2.272604677380271, 48.84099362350883], [2.272783704827494, 48.84093396662554], [2.272963541819973, 48.840873972632615], [2.273142568445461, 48.8408143152059], [2.273322403249693, 48.840754320658746], [2.273501430415883, 48.8406946626969], [2.273681264394101, 48.84063466760384], [2.273860290738551, 48.84057500909851], [2.274039315323267, 48.84051534941448], [2.274219149413564, 48.84045535441079], [2.274398173176635, 48.840395694183336], [2.274578005078594, 48.84033569862547], [2.274757029382242, 48.84027603786286], [2.27493686045829, 48.84021604175907], [2.275115883940287, 48.84015638045305], [2.275295714190421, 48.84009638380339], [2.275474736850563, 48.84003672195392], [2.275654566274783, 48.83997672475837], [2.27583358673836, 48.83991706325653], [2.276013416711572, 48.83985706462406], [2.2761924363532993, 48.839797402578796], [2.276372265500584, 48.83973740340045], [2.276391697815419, 48.83973414201015], [2.276395300298923, 48.83972079283441], [2.276424587522866, 48.83959043868933], [2.27645437529084, 48.83945915400182], [2.276483662232512, 48.839328798912476], [2.276513449689682, 48.83919751507878], [2.276542736336605, 48.83906715994445], [2.276572522133072, 48.838935876057064], [2.276601808485251, 48.83880552087777], [2.276631595358282, 48.838674236053855], [2.276637895856228, 48.83866792278186], [2.276799171058439, 48.83860199358001], [2.276955587228872, 48.83853842532233], [2.277112004380262, 48.83847485686473], [2.277273277023048, 48.83840892700406], [2.277429693398382, 48.83834535812369], [2.277590965238657, 48.83827942782708], [2.27760406070717, 48.838278974485405], [2.277818404312047, 48.838347253187095], [2.2780265616400213, 48.838413752073066], [2.278234720873956, 48.838480249701796], [2.27844906613264, 48.83854852726115], [2.278452292043645, 48.838549246432464], [2.278642642784973, 48.83857474232328], [2.278831133459935, 48.83859987863798], [2.279021485921415, 48.83862537483232], [2.279209976974605, 48.83865050964957], [2.279400328443913, 48.83867600523172], [2.279588819850446, 48.83870114035023], [2.27977917306477, 48.83872663443725], [2.279967664837077, 48.83875176895767], [2.280156156803589, 48.83877690228117], [2.280346509197275, 48.838802396354765], [2.280351054223571, 48.83880359468184], [2.280517985420966, 48.838872744317776], [2.2806865133424292, 48.8389429205058], [2.280853445431174, 48.83901206966498], [2.281021974242356, 48.839082246270955], [2.281188907222252, 48.83915139495338], [2.281357438298068, 48.83922157108616], [2.281524370806822, 48.839290719283646], [2.281692902797171, 48.839360894035735], [2.281694931495844, 48.839361589740655], [2.281714488680845, 48.83936198598338], [2.2817253468036522, 48.8393472232363], [2.281858750801997, 48.83925665609876], [2.282014171549168, 48.839151095319046], [2.282147574556074, 48.839060526944166], [2.282267027518881, 48.83897939456991], [2.282268143191398, 48.838974659773406]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 77, "roussel_fabien": 28.0, "nb_emargement": 1188.0, "nb_procuration": 56.0, "nb_vote_blanc": 14.0, "jadot_yannick": 77.0, "le_pen_marine": 87.0, "nb_exprime": 1167.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1522.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1188, "quartier_bv": "60", "geo_point_2d": [48.83740233631675, 2.2720475188800497], "melenchon_jean_luc": 279.0, "poutou_philippe": 8.0, "macron_emmanuel": 409.0}, "geometry": {"type": "Point", "coordinates": [2.2720475188800497, 48.83740233631675]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9f144c279a1de6146bccd1612b2cfa9102297128", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 40, "zemmour_eric": 57.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-52", "geo_shape": {"coordinates": [[[2.359717757023316, 48.89271427793569], [2.359737836415816, 48.89266455661456], [2.359750264243098, 48.89259200378242], [2.359768451436009, 48.89248131454493], [2.359790237469925, 48.892354124901246], [2.359808424494767, 48.89224343563369], [2.359830210331504, 48.892116245955144], [2.359848398552068, 48.892005556664785], [2.359848478910072, 48.89200478907371], [2.359853676586577, 48.89187710778879], [2.359854282035033, 48.8917491033648], [2.359859478308003, 48.891621422042554], [2.359860083750381, 48.89149341668945], [2.359865281336223, 48.891365736243706], [2.35986588676126, 48.89123773086071], [2.359871082943684, 48.891110050377726], [2.359871689715248, 48.89098204497214], [2.359876885868982, 48.890854363559846], [2.3598774912485903, 48.8907263590164], [2.359882688726233, 48.890598677581416], [2.359883294088604, 48.89047067300808], [2.3598884901627493, 48.89034299153579], [2.359889095507885, 48.89021498693263], [2.35989632354429, 48.890197804433924], [2.359890010792776, 48.890180804957936], [2.359888304968676, 48.89004754672535], [2.359883168922712, 48.88991253534466], [2.359881463124911, 48.88977927707942], [2.359876327123047, 48.88964426566541], [2.359874621340488, 48.88951100826675], [2.359869484030158, 48.889375995912935], [2.359867778273901, 48.889242738481634], [2.359862642360441, 48.88910772700103], [2.359860936641637, 48.88897446863783], [2.359855800772379, 48.888839457123964], [2.359854095079768, 48.88870619872809], [2.359848959254708, 48.888571187180936], [2.35984725357734, 48.88843792965166], [2.359842117807533, 48.88830291717197], [2.3598404121564602, 48.88816965961003], [2.359835276419796, 48.88803464799633], [2.359833570806074, 48.88790138950249], [2.359828433750029, 48.88776637784824], [2.359819946980962, 48.887758405822275], [2.359755940326425, 48.88776111769787], [2.35955223056664, 48.887765904459975], [2.359350091903495, 48.88777079371097], [2.35914795456597, 48.887775682627996], [2.3589442446822533, 48.88778046925495], [2.358742107269069, 48.887785357486806], [2.358538395957599, 48.88779014251669], [2.358336258468769, 48.88779503006335], [2.358132548445951, 48.88779981441005], [2.357930410881486, 48.887804701271534], [2.357726699419765, 48.88780948492042], [2.357524561779676, 48.88781437109677], [2.357320851606527, 48.88781915406246], [2.357118713890825, 48.88782403955362], [2.356915003642678, 48.887828821828805], [2.356712864487693, 48.88783370662745], [2.356509154153244, 48.88783848911141], [2.356471145061974, 48.887834411442675], [2.356458184763845, 48.887841522000045], [2.356429920936726, 48.8879717344828], [2.356404079803448, 48.888092723897316], [2.3563758157046832, 48.888222936337506], [2.356349974321028, 48.88834392571263], [2.3563217099505103, 48.888474138110276], [2.356295868316474, 48.88859512744608], [2.356291127055679, 48.88861317388769], [2.356305598837296, 48.888623917677215], [2.356367455216724, 48.88874859621109], [2.356425850161011, 48.88887364370167], [2.356487705761317, 48.88899832213775], [2.35654610126333, 48.88912337044049], [2.356607958823153, 48.88924804789416], [2.356666354894018, 48.889373096109836], [2.356728213027233, 48.88949777437226], [2.356786609666959, 48.88962282250087], [2.356848468395895, 48.889747499773534], [2.356906865604489, 48.88987254781503], [2.356968724906937, 48.88999722589648], [2.357027122695615, 48.8901222729516], [2.357044070368381, 48.89015643032317], [2.357042540141442, 48.890162286594354], [2.357056079816573, 48.89018339986422], [2.357087504432883, 48.89025289742576], [2.357132416805806, 48.89034341802088], [2.35713264970617, 48.89034388512072], [2.357202291957348, 48.890471884637485], [2.357264152679214, 48.89059656249824], [2.357333795580519, 48.89072456280841], [2.357395655564804, 48.890849239665904], [2.357465299127343, 48.890977239870054], [2.357527161079374, 48.89110191753751], [2.357529702070976, 48.891104777526664], [2.357665707633677, 48.89120803442502], [2.357796349385181, 48.89130546086138], [2.357932357364645, 48.89140871744533], [2.3580630001186123, 48.8915061435729], [2.358193643372563, 48.89160356865007], [2.358329651543735, 48.89170682564666], [2.358460297152859, 48.89180425132164], [2.35859630638813, 48.891907507097216], [2.358726951635953, 48.89200493245618], [2.358862961924244, 48.892108187910004], [2.3589936095383512, 48.89220561296746], [2.359129620879674, 48.892308868099555], [2.359260268132486, 48.892406292840974], [2.3593962805268482, 48.892509547651265], [2.359526930145973, 48.892606972091265], [2.359662943593384, 48.892710226579766], [2.359717757023316, 48.89271427793569]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 52, "roussel_fabien": 27.0, "nb_emargement": 1371.0, "nb_procuration": 94.0, "nb_vote_blanc": 7.0, "jadot_yannick": 143.0, "le_pen_marine": 59.0, "nb_exprime": 1364.0, "nb_vote_nul": 0.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1829.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1371, "quartier_bv": "71", "geo_point_2d": [48.8897198230404, 2.358427329209735], "melenchon_jean_luc": 670.0, "poutou_philippe": 14.0, "macron_emmanuel": 289.0}, "geometry": {"type": "Point", "coordinates": [2.358427329209735, 48.8897198230404]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5d3908990b2513a4286d5036deb85966f0ea8ccf", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 85, "zemmour_eric": 63.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "14-34", "geo_shape": {"coordinates": [[[2.335620871081666, 48.830375879159895], [2.335599973799708, 48.83036126696387], [2.3354379728930352, 48.83029680634437], [2.335288869281724, 48.83023497500134], [2.335139764673299, 48.830173142562145], [2.334977764908794, 48.83010868220779], [2.334828662392841, 48.83004684938132], [2.334666663405458, 48.82998238859831], [2.334517560246061, 48.82992055626877], [2.334355562047282, 48.82985609415782], [2.334335304194075, 48.829861646566236], [2.334287196597546, 48.829990638678375], [2.334233289064707, 48.83011146722897], [2.334218930889595, 48.83011787898351], [2.334176113252024, 48.83011518622541], [2.334131440106556, 48.83010781177153], [2.334084891974033, 48.83011978319344], [2.334087929233689, 48.83014168727578], [2.334118304633327, 48.83018796281751], [2.334200258619547, 48.83031147144754], [2.33427379911248, 48.83042350842621], [2.33435575383738, 48.83054701692375], [2.3344292950082473, 48.83065905288396], [2.334511250471937, 48.83078256124898], [2.334569414522247, 48.83088311646891], [2.334569642757288, 48.83088348558256], [2.334652502228952, 48.83100965110429], [2.33473445741044, 48.83113315927014], [2.334817317666348, 48.8312593255489], [2.334899274992928, 48.83138283358185], [2.334982136056046, 48.83150899881901], [2.3350640941541663, 48.831632507610834], [2.335146956013028, 48.83175867270566], [2.335228913543529, 48.83188218045015], [2.335311776186676, 48.83200834630197], [2.335393735862319, 48.83213185391351], [2.335476599312701, 48.832258018723756], [2.335558559760025, 48.832381527094164], [2.335640519244846, 48.8325050344879], [2.3357233838856892, 48.83263119908511], [2.335805345515897, 48.83275470634592], [2.335888210941075, 48.83288087170012], [2.335970173354252, 48.83300437882043], [2.33605303958669, 48.833130543133], [2.336099845112892, 48.83317598018271], [2.33614368250801, 48.83316801494081], [2.336231871896602, 48.83314355042958], [2.336411456284162, 48.83309523797855], [2.336593085669339, 48.83304485275646], [2.336772668019977, 48.83299653975128], [2.3369542967120402, 48.832946153976216], [2.337133878376461, 48.832897841323785], [2.337315506387043, 48.832847454096445], [2.337495088738824, 48.832799140904974], [2.337676714694139, 48.832748753117166], [2.337856296371238, 48.83270043937907], [2.338037921622104, 48.832650051937634], [2.338217502635835, 48.83260173675366], [2.338399128555806, 48.832551348766835], [2.338578707532507, 48.83250303302874], [2.338760332759547, 48.83245264448892], [2.338939911050046, 48.832404329103575], [2.339121535595352, 48.83235393911154], [2.339301114573279, 48.83230562318717], [2.339405409602678, 48.83227668728403], [2.339427378556021, 48.832264388294064], [2.339395318456684, 48.832218363033924], [2.339244470194408, 48.832146132205544], [2.339096644572591, 48.83207438645546], [2.338945797140774, 48.832002155241085], [2.33879797232678, 48.83193041001197], [2.338647125725419, 48.83185817841165], [2.338499303092958, 48.8317864328117], [2.338348457322046, 48.8317142008254], [2.338200634146792, 48.83164245483956], [2.338049789206331, 48.831570222467306], [2.337901966850292, 48.83149847610308], [2.337900797581482, 48.83149797407579], [2.337724705774121, 48.831430618214725], [2.337545037986128, 48.831362226888984], [2.337368947096861, 48.831294870495974], [2.337189280243444, 48.83122647862749], [2.337013190272373, 48.83115912170257], [2.336833522991336, 48.831090729283865], [2.336657433938464, 48.83102337182697], [2.336477768954198, 48.83095497887316], [2.3363016808195223, 48.830887620884326], [2.33612201676983, 48.83081922738779], [2.335945928191269, 48.83075186885951], [2.335766265076154, 48.8306834748203], [2.3355901787778732, 48.83061611576767], [2.335410516597332, 48.83054772118575], [2.335407558611423, 48.83053365832927], [2.335515069668207, 48.8304607121087], [2.335615464689684, 48.830391348936196], [2.335620871081666, 48.830375879159895]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 34, "roussel_fabien": 23.0, "nb_emargement": 1137.0, "nb_procuration": 39.0, "nb_vote_blanc": 10.0, "jadot_yannick": 127.0, "le_pen_marine": 39.0, "nb_exprime": 1124.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1379.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "54", "geo_point_2d": [48.83171654775319, 2.33647127343494], "melenchon_jean_luc": 307.0, "poutou_philippe": 6.0, "macron_emmanuel": 423.0}, "geometry": {"type": "Point", "coordinates": [2.33647127343494, 48.83171654775319]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eb3ae4c8348247ab9aed60f03f487e00208d8457", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 51, "zemmour_eric": 57.0, "hidalgo_anne": 51.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "11-11", "geo_shape": {"coordinates": [[[2.372672374048178, 48.855115785584175], [2.37269284623258, 48.85510625816922], [2.3727504345671, 48.855075396667075], [2.3728144195324, 48.85504017713602], [2.372830154253177, 48.85503936925109], [2.372862838815206, 48.85505229514677], [2.372893303180498, 48.85506420752123], [2.372911865447746, 48.85506660803778], [2.372924539038085, 48.85505482281406], [2.372973573932291, 48.85500842596533], [2.37302300787241, 48.85496102571199], [2.373037568712343, 48.854945980325354], [2.373018407367606, 48.85493481251725], [2.372844040280255, 48.854862198913914], [2.372655532900104, 48.854783319784325], [2.372653238534462, 48.85476933634124], [2.372769399445602, 48.85469337727095], [2.37293688888739, 48.8545827464014], [2.373053048969074, 48.85450678704299], [2.373220538571671, 48.85439615576495], [2.373336697823902, 48.85432019611849], [2.373336836557333, 48.8543201060106], [2.373482619074367, 48.85422745651153], [2.373626250543262, 48.85413650163875], [2.373769881521639, 48.85404554568685], [2.373915661137752, 48.85395289563017], [2.374059291094047, 48.85386194021517], [2.374205071044697, 48.85376928979768], [2.374348700000522, 48.85367833312095], [2.374494477560129, 48.853585682328486], [2.374638105504586, 48.85349472528932], [2.374783883398731, 48.85340207413613], [2.374927510321241, 48.853311117633865], [2.375073285824369, 48.85321846610564], [2.37508981250686, 48.85321725555452], [2.375177261457053, 48.85325229231381], [2.375247735251095, 48.853279462782034], [2.375250426884969, 48.85328025657386], [2.37534774304038, 48.85330096768819], [2.375436333297719, 48.85331858347439], [2.375440978173748, 48.85331901242762], [2.375635680958859, 48.85331466212852], [2.3758363594212852, 48.85331011334975], [2.376031062140232, 48.853305762407274], [2.376231740533864, 48.85330121296539], [2.376426443186538, 48.85329686137948], [2.3766271201485862, 48.85329231126738], [2.376821822734876, 48.8532879590381], [2.377022500990891, 48.85328340826991], [2.377025171339645, 48.85328518670084], [2.377055457723167, 48.85328370756219], [2.377068870302674, 48.85326642170342], [2.377074434917446, 48.85324760026382], [2.376987646472263, 48.853107632882], [2.376903422066179, 48.852969025998554], [2.376816634533569, 48.85282905935691], [2.376732411032635, 48.85269045231836], [2.376724416433184, 48.85268534732217], [2.376676091649337, 48.852673756555276], [2.376624232147791, 48.852661332540244], [2.376615268516284, 48.85265247488773], [2.376620303110855, 48.852578515912725], [2.376624918036577, 48.852512295470966], [2.376623937146562, 48.852508507685116], [2.376554217635089, 48.852394857521546], [2.37648492694257, 48.852282296855876], [2.376415209410451, 48.85216864569599], [2.376345919318898, 48.85205608492692], [2.376276201029962, 48.85194243365583], [2.376206912891449, 48.851829873689766], [2.376137623700397, 48.85171731276578], [2.376067907681635, 48.85160366134583], [2.375998619091532, 48.85149110031844], [2.37592890231595, 48.85137744878726], [2.375894696142989, 48.85133649549177], [2.375868519692849, 48.85134548198884], [2.375731662338259, 48.85137964853279], [2.375554573026195, 48.8514236606265], [2.375375772429621, 48.851468297568296], [2.375198682504827, 48.85151231003105], [2.375019879947279, 48.85155694553102], [2.374842789420738, 48.85160095746357], [2.37466398761691, 48.85164559243528], [2.374486896488526, 48.85168960383755], [2.374308094064891, 48.8517342391732], [2.3741310023454663, 48.851778249145916], [2.373952199312718, 48.85182288394614], [2.373775105628723, 48.8518668933815], [2.373774337208648, 48.85186710340577], [2.373588859989686, 48.85192216040789], [2.373403382430597, 48.85197573948307], [2.37321790443292, 48.852030795904774], [2.373032426105841, 48.85208437439971], [2.372846947318731, 48.852139431140316], [2.372661466871639, 48.85219300814853], [2.372475988668667, 48.852248064315845], [2.372290507442659, 48.85230164164311], [2.3722731924142852, 48.852302018468244], [2.372251722643194, 48.852315251325884], [2.372066242310104, 48.852368828309395], [2.371851855339407, 48.852433216364275], [2.371850097827887, 48.85243385107422], [2.371693307113595, 48.852504804291264], [2.371573625217959, 48.852555904735794], [2.371453944461098, 48.852607004166096], [2.37129715267564, 48.852677957752256], [2.371295595163564, 48.85267873200521], [2.371181763169916, 48.852744281211606], [2.3710283916679202, 48.85283834958628], [2.37091455898946, 48.85290389852907], [2.370914097719647, 48.852904176701905], [2.370760725263727, 48.85299824471998], [2.370630303496339, 48.85308060227802], [2.370499882679463, 48.85316295969499], [2.370346508714094, 48.85325702716026], [2.3703192202402033, 48.85325660116072], [2.3702840214039362, 48.85325677476261], [2.370273175747622, 48.85329253618334], [2.370388536527568, 48.853399437687386], [2.370498753651763, 48.85350188809444], [2.370614115347009, 48.853608790260196], [2.37072433335754, 48.853711240440106], [2.370839695989924, 48.85381814146897], [2.370949916238736, 48.85392059232827], [2.37106527979741, 48.85402749311951], [2.371175499580639, 48.85412994284529], [2.37128571978633, 48.85423239335942], [2.371401084724346, 48.85433929379688], [2.371402966232674, 48.85434070037355], [2.371559572857682, 48.85443646928191], [2.371715594810177, 48.85453104236458], [2.371872202581848, 48.85462681084735], [2.372028225671699, 48.85472138350619], [2.372184250690728, 48.85481595596067], [2.372340860180077, 48.854911723805515], [2.372496884973658, 48.85500629582906], [2.372653495609689, 48.85510206324831], [2.372672374048178, 48.855115785584175]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 11, "roussel_fabien": 33.0, "nb_emargement": 1528.0, "nb_procuration": 112.0, "nb_vote_blanc": 11.0, "jadot_yannick": 146.0, "le_pen_marine": 54.0, "nb_exprime": 1512.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1908.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1528, "quartier_bv": "43", "geo_point_2d": [48.85305020428999, 2.373600583636431], "melenchon_jean_luc": 539.0, "poutou_philippe": 22.0, "macron_emmanuel": 535.0}, "geometry": {"type": "Point", "coordinates": [2.373600583636431, 48.85305020428999]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3ecb5f54ea89d255ff31b7fddb0842b17a702abe", "fields": {"lassalle_jean": 1.0, "pecresse_valerie": 22, "zemmour_eric": 55.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-15", "geo_shape": {"coordinates": [[[2.366889524575493, 48.87449361248934], [2.366894717334117, 48.874506882665116], [2.366918073779292, 48.87452863700367], [2.367033527366117, 48.87463277721333], [2.367146447913359, 48.87473795163317], [2.367261902420767, 48.8748420916028], [2.367374823883052, 48.87494726578726], [2.3674902806742972, 48.87505140552412], [2.367603201688186, 48.875156579465994], [2.367718659400138, 48.875260718962785], [2.367831581318065, 48.87536589356857], [2.367947039950534, 48.87547003282533], [2.368059964157703, 48.87557520630363], [2.3681754223474343, 48.875679345313195], [2.36828834746958, 48.8757845185561], [2.368403806580043, 48.875888657325596], [2.368516732617074, 48.8759938303331], [2.368528211760433, 48.875997623122686], [2.36872458872128, 48.87599426202118], [2.368925675413861, 48.87599153877202], [2.369122050962743, 48.875988177011344], [2.369323137611046, 48.875985453094536], [2.369519514474697, 48.875982090688986], [2.36972059971534, 48.87597936609733], [2.369733363217341, 48.875984742964725], [2.369784367753824, 48.87606138471478], [2.369847895258257, 48.876137494302114], [2.369859466391082, 48.87614214631071], [2.370059935663432, 48.87614575820606], [2.370263313827365, 48.876149429135275], [2.370463783155749, 48.8761530403543], [2.370667160023964, 48.87615670969096], [2.370867630771744, 48.876160320240835], [2.371071007696833, 48.87616398889138], [2.371271478500621, 48.87616759876491], [2.371474855482675, 48.876171266729386], [2.371675324968235, 48.87617487681875], [2.371878702007042, 48.87617854409705], [2.372079172922821, 48.87618215261798], [2.37228255001847, 48.87618581921019], [2.3723269854799423, 48.876205428345614], [2.372363739654346, 48.87617647365857], [2.372476458681464, 48.87607774130923], [2.372600164549191, 48.875970348290956], [2.372712881318781, 48.875871615693384], [2.37283658619863, 48.87576422331], [2.372949302073975, 48.87566549047141], [2.373073007350977, 48.87555809693149], [2.373185722321161, 48.87545936475109], [2.373277023239385, 48.87538010154593], [2.3732862383793982, 48.87536788197643], [2.373238123371344, 48.8753445369676], [2.373112678202267, 48.87522523365177], [2.372987429252698, 48.87510644023949], [2.372861986594536, 48.874987136642346], [2.372736738789277, 48.87486834294214], [2.372611295915422, 48.87474903904941], [2.372486049265299, 48.87463024416202], [2.372478058203757, 48.874626637308786], [2.372274676369603, 48.87459422914955], [2.372071460210046, 48.87456200947249], [2.37186807888124, 48.87452960062051], [2.371664863214507, 48.87449738115063], [2.371461482391052, 48.87446497160599], [2.371258265875615, 48.8744327505375], [2.371250849500227, 48.87442966013987], [2.371124813014187, 48.87432680303633], [2.370994059886125, 48.87421986590159], [2.370868024403971, 48.8741170094074], [2.370737273693085, 48.87401007197898], [2.370611237873311, 48.87390721428844], [2.370480488205397, 48.87380027745849], [2.370454595382708, 48.873779145398316], [2.370446725056209, 48.87376523355436], [2.3704349301653203, 48.87376300322313], [2.370334788244654, 48.87368127728517], [2.370251044678558, 48.87361110405759], [2.370243044122336, 48.87360334656603], [2.370223974977718, 48.873603542123185], [2.370038990178008, 48.873652651850776], [2.369855790700064, 48.87370145232572], [2.36967080520549, 48.87375056147995], [2.36948760640164, 48.87379936139426], [2.3693026202122063, 48.87384846997522], [2.369119419355724, 48.87389726931451], [2.3689344324823303, 48.87394637642285], [2.368751232288857, 48.87399517610082], [2.368566244720618, 48.87404428263584], [2.368383042485518, 48.87409308083953], [2.368198054211532, 48.87414218770048], [2.368014851287126, 48.87419098533633], [2.367831649382774, 48.874239782696854], [2.367646660067914, 48.87428888869917], [2.367463456110939, 48.87433768548469], [2.367278466101241, 48.874386790913675], [2.3670952628182, 48.874435587138564], [2.36691027211367, 48.87448469199421], [2.366889524575493, 48.87449361248934]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 15, "roussel_fabien": 23.0, "nb_emargement": 1095.0, "nb_procuration": 89.0, "nb_vote_blanc": 8.0, "jadot_yannick": 110.0, "le_pen_marine": 67.0, "nb_exprime": 1084.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 6, "nb_inscrit": 1407.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1095, "quartier_bv": "40", "geo_point_2d": [48.87505458313479, 2.370143927391234], "melenchon_jean_luc": 444.0, "poutou_philippe": 10.0, "macron_emmanuel": 314.0}, "geometry": {"type": "Point", "coordinates": [2.370143927391234, 48.87505458313479]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8132a01db1a4a3ba17c689337c0e64aa3aa097d6", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 67, "zemmour_eric": 87.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-54", "geo_shape": {"coordinates": [[[2.38709950997941, 48.8551142019836], [2.38716058193405, 48.85511643759196], [2.387370172252091, 48.85515121125124], [2.3875666065696413, 48.85518125677996], [2.387763039740329, 48.8552113028777], [2.387972630842005, 48.85524607547874], [2.388169064491175, 48.855276120908215], [2.3883786574979182, 48.85531089190374], [2.388427571121023, 48.855318373573986], [2.388444262763692, 48.85531718720376], [2.388456194450584, 48.85528877479687], [2.388599993411369, 48.855188983098046], [2.388741707239374, 48.855090647406975], [2.388885506469404, 48.854990855354195], [2.3890272192197353, 48.85489251930742], [2.389171015993467, 48.85479272688677], [2.389312727666137, 48.854694390484376], [2.389456523356742, 48.854594596803516], [2.389598235304033, 48.85449626095172], [2.389742029901077, 48.854396466909975], [2.389883739407913, 48.854298130695575], [2.389885952226377, 48.854296890983186], [2.390006558910486, 48.85424276786532], [2.390123600881794, 48.85419020751237], [2.390127222819833, 48.854187809420395], [2.390232902771166, 48.854084670975844], [2.390340466456526, 48.853978678498564], [2.390446145572256, 48.85387553894701], [2.390553707029359, 48.85376954625116], [2.390659385288253, 48.85366640739116], [2.3907669472427, 48.853560414490595], [2.390791066833479, 48.85353687359431], [2.390790112621133, 48.85351987371616], [2.390766429936475, 48.85351327421726], [2.390593162792387, 48.853475208251254], [2.390390745406792, 48.85343078980412], [2.390217478821847, 48.85339272239201], [2.3900150620769223, 48.85334830330609], [2.389841796030285, 48.85331023624643], [2.389639379925931, 48.85326581652167], [2.389466114428026, 48.853227748915224], [2.389263698964455, 48.85318332855164], [2.389090434015186, 48.85314526039834], [2.388888019192298, 48.85310083939601], [2.388714754791773, 48.853062770695885], [2.388706859827256, 48.853050230286236], [2.388771663249185, 48.85296431270345], [2.388823090647998, 48.852892540098125], [2.388821791333934, 48.85288340684897], [2.388744293126902, 48.85281308374022], [2.388679994835956, 48.85275431362762], [2.388664152683765, 48.85274124426049], [2.388645294195193, 48.852745749885294], [2.38850544435695, 48.85282513414866], [2.38835059215499, 48.85291345035384], [2.388210741417606, 48.85299283426074], [2.38805588957002, 48.85308115097751], [2.387916037933591, 48.85316053452801], [2.38779609507937, 48.85322894067479], [2.387782729133772, 48.85322922303459], [2.38776847964742, 48.85324589603458], [2.3877335696342, 48.85326580620145], [2.387586347087847, 48.85335478638441], [2.387443496774436, 48.8534410376516], [2.387296273227088, 48.853530018362896], [2.3871534219637223, 48.85361626837089], [2.38700619606315, 48.853705248704316], [2.386863345191465, 48.85379149925867], [2.386716118311033, 48.85388047832185], [2.386573265116013, 48.85396672850932], [2.386426038607834, 48.854055707208545], [2.386283184452369, 48.85414195703613], [2.386135956943151, 48.85423093626368], [2.385993101837728, 48.854317184832034], [2.3858502462486912, 48.85440343412247], [2.385703017261477, 48.854492412796375], [2.38556016072248, 48.85457866082763], [2.385412929381984, 48.85466763912359], [2.385382124479758, 48.854711644364855], [2.385399829938984, 48.85471924307825], [2.385415670873289, 48.85472604258335], [2.385434910488927, 48.85472720892821], [2.385575159986404, 48.85476073924507], [2.385774769843163, 48.85480675850591], [2.385915019773453, 48.854840288422025], [2.386114630235103, 48.85488630711263], [2.386308163350926, 48.85493017812859], [2.386507774514827, 48.85497619526031], [2.386701308284831, 48.85502006653615], [2.386900920140281, 48.855066083008396], [2.387094454585837, 48.85510995274553], [2.38709950997941, 48.8551142019836]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 54, "roussel_fabien": 25.0, "nb_emargement": 1296.0, "nb_procuration": 88.0, "nb_vote_blanc": 10.0, "jadot_yannick": 121.0, "le_pen_marine": 47.0, "nb_exprime": 1282.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1671.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1296, "quartier_bv": "44", "geo_point_2d": [48.8541453251965, 2.388189217793608], "melenchon_jean_luc": 455.0, "poutou_philippe": 7.0, "macron_emmanuel": 406.0}, "geometry": {"type": "Point", "coordinates": [2.388189217793608, 48.8541453251965]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a019037bd0f87c184124f41c737c2a57d979ca03", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 61, "zemmour_eric": 122.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "16-46", "geo_shape": {"coordinates": [[[2.260221150948106, 48.83679617056114], [2.26022883833694, 48.836794018230904], [2.260440855616335, 48.83678793822814], [2.2606441241087962, 48.83677988270424], [2.260856139919921, 48.836773801956866], [2.261059408293072, 48.83676574572715], [2.2612626752283163, 48.83675769004281], [2.261474692252079, 48.836751607308145], [2.261484495539593, 48.83675396664162], [2.261601670700959, 48.83682496370594], [2.261715915828021, 48.83689757942868], [2.261833091627429, 48.836968576257156], [2.261947337391546, 48.837041191749535], [2.261956985972731, 48.83704370568067], [2.2621864661453293, 48.837041488820645], [2.262416510400189, 48.83704138583417], [2.262645989180688, 48.83703916808417], [2.262876034786728, 48.837039064222324], [2.262886951400754, 48.83704266874101], [2.263014425100122, 48.83715509464009], [2.263139350278113, 48.837269155043366], [2.263145687107992, 48.83727232660535], [2.263300355882242, 48.837309880292416], [2.263458789934174, 48.837350378133884], [2.263613459165602, 48.83738793141346], [2.263771893710735, 48.837428427938136], [2.2637773064499322, 48.83743095342277], [2.263914613212253, 48.83753642190055], [2.264050742494601, 48.83764050511986], [2.2641868723078042, 48.83774458907387], [2.264324180725026, 48.837850057051924], [2.264460311644208, 48.83795413977593], [2.264597621166821, 48.83805960742035], [2.26473375316661, 48.83816369071298], [2.264871063794422, 48.838269158023735], [2.265007196900302, 48.83837324008633], [2.265144508633423, 48.838478707063445], [2.265280642819838, 48.83858278969464], [2.265417955658382, 48.838688256338095], [2.265554090950796, 48.83879233773931], [2.265691404894568, 48.83889780404908], [2.265704929974102, 48.838921227631396], [2.265711023005539, 48.838922774183835], [2.265887517506596, 48.83887373356511], [2.266055421731545, 48.838826980150095], [2.266231914221817, 48.83877793901069], [2.266399819178992, 48.83873118601591], [2.266576311020864, 48.83868214436419], [2.266744215373191, 48.838635389982684], [2.26692070656666, 48.8385863478186], [2.2670886089391002, 48.83853959294139], [2.267256512360056, 48.838492838734176], [2.267433002588827, 48.83844379580796], [2.267486393782077, 48.83842158715597], [2.267480746375974, 48.83840772199451], [2.267440942091898, 48.83836815398993], [2.267413710873032, 48.83834117596921], [2.267303989140037, 48.83823210773571], [2.267192845968338, 48.838123875192736], [2.2670831265171802, 48.83801480674381], [2.266971984254686, 48.837906574873834], [2.2668608424665, 48.8377983419908], [2.266751124395282, 48.837689273205584], [2.266639983516382, 48.83758104099562], [2.266530265002355, 48.83747197197828], [2.266419125058038, 48.83736373864279], [2.266309408825896, 48.83725466941003], [2.266198269790839, 48.83714643674759], [2.266088554490881, 48.83703736639173], [2.26597741637773, 48.83692913350307], [2.265867701984621, 48.836820063822756], [2.265756563431036, 48.83671183069948], [2.265646849970101, 48.836602759896145], [2.265535713700736, 48.836494526555015], [2.265426001146624, 48.836385456427166], [2.265314865799133, 48.8362772228598], [2.265205154177182, 48.836168151608945], [2.265204980850156, 48.83616797966266], [2.265095269675383, 48.83605890919963], [2.264981387065124, 48.83594231758489], [2.264871675483534, 48.835833245987104], [2.264757793866405, 48.83571665413596], [2.264648084577244, 48.83560758321878], [2.264534202590931, 48.835490991122846], [2.26442449424456, 48.83538191997859], [2.26431061325136, 48.835265327646276], [2.264200905860565, 48.835156255375644], [2.264087025860367, 48.83503966280692], [2.26397731939965, 48.834930591208526], [2.2638693307279842, 48.83482358964277], [2.263759625177415, 48.834714517823635], [2.26365163740023, 48.83460751604069], [2.2635419327599, 48.834498444000836], [2.263433944527626, 48.83439144109301], [2.263324240797632, 48.83428236883242], [2.263216254809385, 48.834175366615085], [2.26310655198951, 48.83406629413383], [2.262998566895714, 48.83395929169926], [2.2629970988685653, 48.83395028887002], [2.262938905214698, 48.83393165130708], [2.262936362516159, 48.83393120843321], [2.262935234558212, 48.83393101081409], [2.262847790914951, 48.83394120240185], [2.262654780410101, 48.83396330029971], [2.262433630087808, 48.83398907370249], [2.2622406178678878, 48.83401117092266], [2.262019467137739, 48.834036943558594], [2.261826455927171, 48.8340590401179], [2.261605303427022, 48.83408481197856], [2.261412291863761, 48.834106907868595], [2.26138203027865, 48.8341104336298], [2.261359111647373, 48.8341131044527], [2.261267525797065, 48.83412377745558], [2.261074512584094, 48.83414587279135], [2.260884361983927, 48.83416803137418], [2.260691348444589, 48.834190126090824], [2.2605011975201252, 48.834212284063646], [2.260308183654633, 48.834234378161085], [2.260118032418643, 48.8342565346246], [2.259925018226804, 48.834278628102865], [2.259734866653772, 48.834300784855664], [2.259541852135795, 48.83432287771473], [2.2593516988762232, 48.83434503384909], [2.259158685394179, 48.83436712609747], [2.258968531810341, 48.83438928162178], [2.258775518002177, 48.83441137325092], [2.258585364106873, 48.83443352726593], [2.258392349972396, 48.834455618275896], [2.258202195740053, 48.8344777725802], [2.258009181279473, 48.834499862970965], [2.257819026722888, 48.834522016665225], [2.257626011936008, 48.834544106436816], [2.257435857068002, 48.83456625862175], [2.257242841955037, 48.834588347774165], [2.257052686749998, 48.834610500248374], [2.257051786088343, 48.834610605277454], [2.256858770648325, 48.8346326938092], [2.256737166381613, 48.83464685979233], [2.256544150674039, 48.83466894781566], [2.256309826909551, 48.83469624421659], [2.256306261108802, 48.83469665914333], [2.256113243671974, 48.834718746461895], [2.255928640250698, 48.83474024995195], [2.255735622492562, 48.834762336660276], [2.255551018761043, 48.83478383956671], [2.255358000681505, 48.83480592566478], [2.255173396639952, 48.834827427987605], [2.255077807743179, 48.83493928468366], [2.254979756559439, 48.83505734066182], [2.254884166825639, 48.83516919718012], [2.2547861147580193, 48.835287253874604], [2.25469052418708, 48.83539911021518], [2.254592469898989, 48.83551716581886], [2.254563127437843, 48.83555150108077], [2.2545567913957782, 48.83557156988539], [2.254586264758891, 48.83558162334093], [2.254779417631457, 48.83563333507917], [2.25497201848495, 48.83568442339101], [2.25516517348332, 48.835736134510086], [2.255357775094816, 48.835787222196075], [2.255550929494484, 48.83583893267895], [2.255743531863776, 48.83589001973917], [2.255936688389447, 48.83594172960282], [2.25612929151663, 48.835992816037184], [2.256321895021336, 48.83604390215903], [2.256515052690967, 48.83609561108167], [2.256707656953557, 48.83614669657769], [2.256900814024359, 48.836198404864135], [2.257093419044829, 48.836249489734335], [2.257286578241628, 48.83630119740157], [2.257291297753422, 48.836303293475055], [2.257441742382396, 48.8364061044677], [2.257590225358528, 48.836511427633305], [2.257740672552946, 48.83661423733999], [2.257889155363741, 48.83671956010648], [2.257902036023182, 48.83672221943294], [2.25811256515057, 48.836691855651196], [2.258323194434631, 48.83666257407076], [2.258533723075784, 48.83663220954613], [2.258744351882337, 48.83660292722253], [2.258954880024459, 48.836572562854386], [2.259165508366179, 48.8365432788883], [2.259376036021949, 48.836512913777234], [2.259586662523709, 48.836483629059614], [2.259597867168484, 48.83648534787368], [2.259744558827332, 48.83656113700332], [2.259893858943521, 48.83663642134615], [2.260040550095556, 48.83671221009413], [2.260189852434283, 48.836787494065774], [2.260221150948106, 48.83679617056114]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 46, "roussel_fabien": 10.0, "nb_emargement": 903.0, "nb_procuration": 52.0, "nb_vote_blanc": 11.0, "jadot_yannick": 30.0, "le_pen_marine": 76.0, "nb_exprime": 887.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1196.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 903, "quartier_bv": "61", "geo_point_2d": [48.83595919760764, 2.2613961903575466], "melenchon_jean_luc": 260.0, "poutou_philippe": 5.0, "macron_emmanuel": 275.0}, "geometry": {"type": "Point", "coordinates": [2.2613961903575466, 48.83595919760764]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "529a4e7d26b34f760f550ae94461399a4f519f8f", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 90, "zemmour_eric": 96.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "1-9", "geo_shape": {"coordinates": [[[2.330722891963308, 48.868164905690875], [2.330738052039055, 48.86816748973819], [2.33092072662368, 48.86812677520318], [2.331098783923895, 48.86808678193992], [2.331281457943556, 48.86804606685142], [2.331459514679311, 48.86800607394787], [2.331642188145546, 48.86796535740655], [2.331820244328486, 48.86792536396346], [2.332002917229842, 48.86788464686864], [2.332180972859962, 48.86784465288598], [2.332363645184705, 48.8678039361369], [2.3325417002735263, 48.86776394071544], [2.332724372033286, 48.86772322341287], [2.332902426557755, 48.86768322835118], [2.333080480808917, 48.86764323302312], [2.333263151735777, 48.86760251399454], [2.333441205434001, 48.86756251812696], [2.333623875795858, 48.86752179854487], [2.333660255123128, 48.86750790926318], [2.3336468853303423, 48.86748334658858], [2.333584038465558, 48.86738539985072], [2.333502908680949, 48.86726271372363], [2.333440062352945, 48.86716476689065], [2.333358931887894, 48.86704208063394], [2.333296086096769, 48.86694413370584], [2.333214957677535, 48.866821447334615], [2.333196083712784, 48.86678612474551], [2.33319545159268, 48.86678513464266], [2.333136449076325, 48.86670626433373], [2.3330553214150083, 48.866583576928676], [2.332977235936557, 48.86646393630068], [2.332896107664471, 48.86634124875323], [2.332818022926317, 48.86622160709588], [2.3327368967582682, 48.866098920320525], [2.332658812748987, 48.865979278533125], [2.332577685981681, 48.8658565907161], [2.332499602689743, 48.86573694969789], [2.332418478037757, 48.86561426175373], [2.332340395474771, 48.86549462060547], [2.332259270212001, 48.86537193251887], [2.332181188389388, 48.865252290341274], [2.332100065230478, 48.86512960302685], [2.332021982773619, 48.86500996071157], [2.331940860378529, 48.864887272363106], [2.331862780001943, 48.864767630824666], [2.33178165699616, 48.86464494233379], [2.33170357734839, 48.864525300665335], [2.331622456457846, 48.86440261204733], [2.331544377550518, 48.86428296934954], [2.331463256037634, 48.86416028148841], [2.331385177859107, 48.8640406386606], [2.331349871743551, 48.863993674460204], [2.331301394649994, 48.864003989823686], [2.331189753575639, 48.86404005395409], [2.330995913733023, 48.864104075191186], [2.330818439255746, 48.864161404744614], [2.330624598505309, 48.86422542537329], [2.330447123206025, 48.86428275436982], [2.33025328291083, 48.86434677439771], [2.330114948316673, 48.864391459469985], [2.330081351003498, 48.86440566725811], [2.330129207154298, 48.864457789670666], [2.33011221656157, 48.86454739812401], [2.330078843401758, 48.86471059024953], [2.330063190649299, 48.864793143595996], [2.330061852628388, 48.86480019957453], [2.330063613326803, 48.864805961651335], [2.330160621658512, 48.86491474638706], [2.330257469977175, 48.86502190681547], [2.330354479127466, 48.8651306904736], [2.330451329597871, 48.86523785163115], [2.330548338191901, 48.865346635103315], [2.33064518946254, 48.86545379608308], [2.330742200226696, 48.865562579384466], [2.330839050934485, 48.86566974017883], [2.330840967242668, 48.865674646032474], [2.330834022266628, 48.86581161893454], [2.33082734945458, 48.865948201226495], [2.330820404406267, 48.86608517409392], [2.33081373014881, 48.866221757243025], [2.330806785039872, 48.866358729176504], [2.330800112074678, 48.8664953122987], [2.33079316688191, 48.866632285096834], [2.330786492494499, 48.86676886727758], [2.330779548592478, 48.86690584004868], [2.330772874134313, 48.867042422194906], [2.3307659287968843, 48.86717939492371], [2.3307592556311, 48.867315977043035], [2.330752310221391, 48.86745294973718], [2.330745635621711, 48.867589531814346], [2.330738690139718, 48.86772650447383], [2.330732016820877, 48.86786308742337], [2.330725071266602, 48.86800006004819], [2.330718396525403, 48.86813664205628], [2.330722891963308, 48.868164905690875]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 9, "roussel_fabien": 5.0, "nb_emargement": 762.0, "nb_procuration": 42.0, "nb_vote_blanc": 7.0, "jadot_yannick": 47.0, "le_pen_marine": 29.0, "nb_exprime": 756.0, "nb_vote_nul": 2.0, "arr_bv": "01", "arthaud_nathalie": 2, "nb_inscrit": 957.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 765, "quartier_bv": "04", "geo_point_2d": [48.86624630702395, 2.331667647580904], "melenchon_jean_luc": 100.0, "poutou_philippe": 4.0, "macron_emmanuel": 357.0}, "geometry": {"type": "Point", "coordinates": [2.331667647580904, 48.86624630702395]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c06fe47af2dd268f58c5978b398de4eec6619b0d", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 57, "zemmour_eric": 93.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-16", "geo_shape": {"coordinates": [[[2.362462423908621, 48.827607135411554], [2.362469014376133, 48.827598312614285], [2.362590080285237, 48.827498917914795], [2.362711345810466, 48.827396638959236], [2.362832410778262, 48.82729724489587], [2.362953675359002, 48.82719496567623], [2.363074740769575, 48.82709557045762], [2.363196004405828, 48.82699329097387], [2.363317067513024, 48.82689389638415], [2.363438330204804, 48.826791616636314], [2.363559392392694, 48.826692220884134], [2.363680654140008, 48.826589940872175], [2.363682058961071, 48.82658030615531], [2.363594833260291, 48.826467552424795], [2.3635091752433, 48.82635350196863], [2.363421950306842, 48.826240747189935], [2.363336294402737, 48.82612669659421], [2.363249068846565, 48.82601394255869], [2.363163413704248, 48.82589989091672], [2.363076190263465, 48.82578713673959], [2.362990535860956, 48.825673085850106], [2.362903311822421, 48.82556033061751], [2.362817658170698, 48.8254462795812], [2.362730436236531, 48.82533352510631], [2.362644781984532, 48.825219473016524], [2.362557560803664, 48.825106718392796], [2.362471908664479, 48.8249926661634], [2.362475565545675, 48.82498166830662], [2.362625430377048, 48.82490193975484], [2.362777567572932, 48.824820804804915], [2.362927431469112, 48.82474107676257], [2.363079566374596, 48.8246599405103], [2.363229430708611, 48.82458021208533], [2.363381564663758, 48.82449907633656], [2.363531426722539, 48.82441934661515], [2.363683559738342, 48.82433821047055], [2.363833422223979, 48.82425848126584], [2.363985554311414, 48.824177343826136], [2.363982775106729, 48.82416220423532], [2.36380449796521, 48.82410703882314], [2.36363069732733, 48.82405329639202], [2.363452419568805, 48.823998130442405], [2.363278621018884, 48.82394438750162], [2.36310034400527, 48.82388922102177], [2.362926546181295, 48.823835477564096], [2.362919789838066, 48.823823810832124], [2.362984840047305, 48.82372289296073], [2.363074027151216, 48.823586523364746], [2.363139076765874, 48.823485605388164], [2.36322826306049, 48.82334923564832], [2.363293312080577, 48.823248317566566], [2.363294279210145, 48.823247977355244], [2.3633040041875972, 48.82322802159407], [2.363310343442876, 48.82321807495968], [2.363302428662628, 48.82320612956382], [2.36309248582825, 48.82315591277266], [2.362891813695399, 48.823108915305944], [2.362681871647935, 48.823058697789605], [2.362481198908473, 48.823011698723185], [2.362423096844923, 48.82299685681383], [2.3624128307867123, 48.82300612412277], [2.362357897902967, 48.823076398154605], [2.362264322777341, 48.8231966072579], [2.362177103305374, 48.82330818467938], [2.362083527335928, 48.82342839451571], [2.361996305727322, 48.82353997177504], [2.361902728925039, 48.82366018144511], [2.361815506541777, 48.82377175854948], [2.361721928917657, 48.82389196715399], [2.361634707121742, 48.8240035441108], [2.361541128653761, 48.82412375344831], [2.361453904721162, 48.82423533024295], [2.3613603254203133, 48.824355539414164], [2.36127310071303, 48.824467116053896], [2.361179521952248, 48.82458732416676], [2.361092296470376, 48.82469890065162], [2.361084171041563, 48.82471261499476], [2.361084828379191, 48.82471921812803], [2.360991247358897, 48.824839426958654], [2.360897028907578, 48.82495704209641], [2.360803447027425, 48.825077250754596], [2.360709229084721, 48.82519486572678], [2.3606156463556323, 48.82531507331322], [2.360521426186522, 48.82543268900461], [2.360427842597556, 48.825552896418586], [2.36033362158603, 48.825670511037735], [2.360240038488201, 48.825790719185946], [2.360145816623117, 48.82590833363221], [2.360052231303434, 48.82602854160069], [2.359958008584881, 48.826146155874085], [2.359938566720952, 48.826171129990875], [2.3599355063921372, 48.8261732064569], [2.359925493875003, 48.82619091462336], [2.359851350869393, 48.82628614830014], [2.359757168258904, 48.8264047474233], [2.359663581152059, 48.826524955034465], [2.359569397694079, 48.82664355308521], [2.359475809725629, 48.82676376052385], [2.359403574208034, 48.82685472037908], [2.359388070714937, 48.82687374454262], [2.359456060864426, 48.82690004938386], [2.359637144866946, 48.82694324748415], [2.359821259370306, 48.826987159444], [2.360002343977979, 48.827030356987954], [2.360186460458748, 48.827074268389445], [2.360367545671468, 48.827117465377114], [2.360551662767452, 48.82716137621296], [2.360732748585316, 48.82720457264423], [2.360916866296509, 48.82724848291444], [2.361097952719614, 48.82729167878942], [2.36128207104591, 48.82733558849397], [2.361463156712051, 48.8273787838053], [2.361647275653647, 48.82742269294421], [2.3618283632869153, 48.827465887706516], [2.3620124828437072, 48.827509796279756], [2.362193571082101, 48.82755299048569], [2.362377691254082, 48.82759689849328], [2.362421776450487, 48.827608381097455], [2.362462423908621, 48.827607135411554]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 16, "roussel_fabien": 31.0, "nb_emargement": 1472.0, "nb_procuration": 58.0, "nb_vote_blanc": 20.0, "jadot_yannick": 98.0, "le_pen_marine": 114.0, "nb_exprime": 1444.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1940.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1472, "quartier_bv": "50", "geo_point_2d": [48.82564775633025, 2.361872674953794], "melenchon_jean_luc": 546.0, "poutou_philippe": 12.0, "macron_emmanuel": 415.0}, "geometry": {"type": "Point", "coordinates": [2.361872674953794, 48.82564775633025]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0d74ae133a0621fd59658f6693c8e45d5ad26bc7", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 77, "zemmour_eric": 93.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-17", "geo_shape": {"coordinates": [[[2.349000486381855, 48.8370909161456], [2.34901553002758, 48.83713358665326], [2.349047113332497, 48.83720103659478], [2.349065818333742, 48.8373292028613], [2.349098148951667, 48.83739824782346], [2.349088036291388, 48.83742056094927], [2.349141469578388, 48.83743036970517], [2.349205385452917, 48.83756686452566], [2.349263872206633, 48.83768590992455], [2.349287101287632, 48.83773200202517], [2.349362723348564, 48.83771912883981], [2.349505944107467, 48.837799266096454], [2.349673064551907, 48.837894092957036], [2.349816284917527, 48.83797422892288], [2.349983407850002, 48.8380690553424], [2.350126629173486, 48.838149190924106], [2.350293751869145, 48.838244016887835], [2.350436975512783, 48.838324152092845], [2.350604099334011, 48.838418977608086], [2.35074732392443, 48.83849911332828], [2.350752846883688, 48.83850100859002], [2.350959640432714, 48.838535721231985], [2.35116254180731, 48.83857031616972], [2.351369334541754, 48.838605028093895], [2.351572237820552, 48.83863962234198], [2.351779031113979, 48.8386743326564], [2.351981934934372, 48.838708926207396], [2.352184837661798, 48.838743519405824], [2.352391633126588, 48.83877822956465], [2.3525945363956993, 48.838812822066], [2.352801331045869, 48.83884753150703], [2.353004236218955, 48.838882123318626], [2.353211031416892, 48.838916832049286], [2.353211658334516, 48.83891692717435], [2.353242034829243, 48.838916247813174], [2.353251273000462, 48.83889182063421], [2.353345026253336, 48.83878778526154], [2.353437188340885, 48.838684692735946], [2.353530940850025, 48.83858065719832], [2.353623100841343, 48.838477564503016], [2.353716852606962, 48.83837352880041], [2.3538090132266323, 48.838270435950086], [2.353902764248635, 48.838166400082514], [2.353994922771999, 48.83806330706248], [2.354088673050394, 48.8379592710299], [2.354180832202219, 48.83785617785496], [2.354274581748154, 48.83775214075808], [2.354366738792557, 48.83764904831273], [2.354402235353492, 48.83760969566561], [2.354380263371579, 48.83759836647455], [2.354244346452749, 48.837554967756056], [2.354060318351869, 48.83749715485548], [2.353876980891819, 48.8374386142123], [2.353692953609186, 48.83738080074057], [2.35350961833323, 48.837322259535604], [2.3533255905176462, 48.837264444586005], [2.353142256063628, 48.83720590281189], [2.352958229055147, 48.837148088190446], [2.352774895422865, 48.83708954584718], [2.352590869232643, 48.83703173065456], [2.352407536433474, 48.836973186842876], [2.352223511061517, 48.836915371079044], [2.35204017907292, 48.83685682759754], [2.351920248226039, 48.836819147320426], [2.351872406428179, 48.83680473475904], [2.351863473678786, 48.836806220677175], [2.3517993800098003, 48.836786084588596], [2.351735756567389, 48.83677831551397], [2.351731036146932, 48.83677828813223], [2.351540225200289, 48.83679938817502], [2.3513497616399093, 48.83682036838309], [2.351158950373697, 48.83684146871617], [2.350968487868445, 48.83686244832376], [2.350777676293858, 48.8368835480479], [2.350587213481396, 48.83690452704759], [2.350396401598442, 48.836925626162675], [2.35020593847878, 48.8369466045545], [2.350015126298679, 48.83696770216132], [2.349824662860509, 48.83698868084456], [2.349633850372165, 48.83700977784232], [2.3494433852757792, 48.83703075501098], [2.349252573830123, 48.83705185230651], [2.349062108426458, 48.83707282886726], [2.349022493440884, 48.83706103662299], [2.34901528094075, 48.83708000549672], [2.349000486381855, 48.8370909161456]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 17, "roussel_fabien": 19.0, "nb_emargement": 1197.0, "nb_procuration": 89.0, "nb_vote_blanc": 13.0, "jadot_yannick": 120.0, "le_pen_marine": 64.0, "nb_exprime": 1179.0, "nb_vote_nul": 5.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1484.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1197, "quartier_bv": "18", "geo_point_2d": [48.83776431597357, 2.351746263471429], "melenchon_jean_luc": 324.0, "poutou_philippe": 7.0, "macron_emmanuel": 419.0}, "geometry": {"type": "Point", "coordinates": [2.351746263471429, 48.83776431597357]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "467a536607573079b6040f030ddff2620aa4c52b", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 52, "zemmour_eric": 51.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-1", "geo_shape": {"coordinates": [[[2.391768095308219, 48.840496872181205], [2.3917992241523223, 48.840485221848894], [2.391861085931176, 48.84047214397786], [2.39199497721026, 48.8404440495343], [2.392182481186157, 48.84040441156448], [2.392316372118009, 48.840376316759475], [2.392324670973004, 48.84036405836174], [2.392257372477289, 48.84026524457057], [2.392203836896043, 48.840194698320225], [2.392198672437185, 48.84019077694819], [2.39202759895168, 48.84011962255407], [2.391869215405937, 48.84005390700258], [2.39171083362201, 48.83998819124443], [2.39153976010497, 48.839917036132825], [2.391381379152328, 48.83985131993046], [2.391210306544787, 48.8397801634397], [2.3910519264234322, 48.83971444679307], [2.390880854704484, 48.839643290721725], [2.390722475414311, 48.839577573630876], [2.39055140460487, 48.83950641618037], [2.390393026135464, 48.839440699544575], [2.39022195622502, 48.839369541614225], [2.390155384609402, 48.839341918306154], [2.3901323861011172, 48.83933422752939], [2.390121990199188, 48.839335993036336], [2.390030184222146, 48.83929789833921], [2.38984131101981, 48.83921901348485], [2.389682932967212, 48.83915329498575], [2.389494062166284, 48.839074410479135], [2.389335684990893, 48.8390086915118], [2.389289675742523, 48.83899149285755], [2.389282539520216, 48.83899460059347], [2.389259935685418, 48.8390199937924], [2.3891601817017882, 48.839133894972704], [2.389062252249824, 48.839243907544635], [2.388962497416216, 48.83935780763796], [2.388864565763999, 48.839467820019074], [2.388764811421636, 48.83958172083096], [2.3886668789420122, 48.839691732128905], [2.388568947400766, 48.839801744242074], [2.388469190410984, 48.83991564476646], [2.388371258031877, 48.840025656695744], [2.388271500192095, 48.840139556133074], [2.388173565612477, 48.840249567871524], [2.388073806901574, 48.84036346802051], [2.387964623964816, 48.84048102522665], [2.387864864364977, 48.84059492427844], [2.387755679099091, 48.84071248216188], [2.387655918599541, 48.84082638101584], [2.387663930169626, 48.840855491161626], [2.387700743314033, 48.840882916733335], [2.387833124983308, 48.840973775842144], [2.387968294441619, 48.84106513201435], [2.388100678402572, 48.841155990819225], [2.388235848802299, 48.84124734667421], [2.388250173246795, 48.84124953342534], [2.38841671420849, 48.84121032477552], [2.388587386047615, 48.84117239701082], [2.388753926509263, 48.84113318788882], [2.3889245978504112, 48.841095259640426], [2.389091137811805, 48.84105605004626], [2.389261808655076, 48.841018121314164], [2.389285745992529, 48.84102272053874], [2.389301543457328, 48.84101628891918], [2.389301734693761, 48.84101624762556], [2.38948924278687, 48.840976612998205], [2.389689242083102, 48.840933259995786], [2.389876748220525, 48.840893624751146], [2.39007674686557, 48.84085027199697], [2.3902642537721173, 48.84081063614896], [2.390464251776401, 48.84076728274373], [2.390651756727358, 48.84072764627843], [2.390851754101284, 48.84068429132282], [2.391039258458996, 48.84064465424721], [2.391239256544186, 48.840601299546755], [2.391426760308548, 48.840561661860804], [2.391626756401004, 48.84051830560308], [2.391752397773864, 48.840491745153564], [2.391768095308219, 48.840496872181205]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 1, "roussel_fabien": 19.0, "nb_emargement": 1014.0, "nb_procuration": 61.0, "nb_vote_blanc": 7.0, "jadot_yannick": 91.0, "le_pen_marine": 49.0, "nb_exprime": 1004.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1234.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1014, "quartier_bv": "46", "geo_point_2d": [48.840215333098215, 2.389735646273067], "melenchon_jean_luc": 321.0, "poutou_philippe": 6.0, "macron_emmanuel": 340.0}, "geometry": {"type": "Point", "coordinates": [2.389735646273067, 48.840215333098215]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dec1a9ee4ec3efa0a06511abc2c9a2e035a25c6d", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 27, "zemmour_eric": 40.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-32", "geo_shape": {"coordinates": [[[2.358112489440598, 48.87614971626976], [2.358071731895052, 48.87617406754264], [2.35792536124205, 48.87619781640506], [2.357739452494981, 48.87622981300785], [2.357536462969274, 48.87626274829072], [2.357350553762726, 48.87629474338841], [2.357147563738045, 48.87632767800988], [2.3569616526862562, 48.87635967339367], [2.356758663537093, 48.87639260646181], [2.356572752014745, 48.8764246012398], [2.35636976235542, 48.8764575345458], [2.356183850373533, 48.876489527818656], [2.356180598050468, 48.87648978822155], [2.356040842642297, 48.87648981263712], [2.355902539074674, 48.876500219425694], [2.3558641615109392, 48.876515142436006], [2.355869071892092, 48.87653460797579], [2.355772081983386, 48.876640044758126], [2.355663885487381, 48.87675715834951], [2.355566894748864, 48.87686259494431], [2.355458698692455, 48.87697970833398], [2.355361705760722, 48.877085144733904], [2.3552914001037912, 48.87716124370234], [2.355291535599481, 48.87716858209947], [2.355332528704245, 48.8771804456418], [2.355485759669003, 48.87723199406357], [2.35563679676267, 48.8772824683629], [2.3557878341379572, 48.87733294336861], [2.35594106737653, 48.87738449030853], [2.355947857748885, 48.877389760964476], [2.35601018459261, 48.877518249544266], [2.356069897440928, 48.87764192696842], [2.356129610572939, 48.87776560434893], [2.356191938325941, 48.87789409189098], [2.356251652025653, 48.87801777008162], [2.356313980381608, 48.87814625753073], [2.35637369467136, 48.87826993473289], [2.356431307121681, 48.8783878421611], [2.35648891846942, 48.87850574954164], [2.356548633586875, 48.8786294266162], [2.356606246830909, 48.87874733392172], [2.356665962492766, 48.87887101180992], [2.35672357490622, 48.878988919025815], [2.356783291134804, 48.87911259592909], [2.356846743865507, 48.879236148967685], [2.356906460670058, 48.87935982578176], [2.356925302074508, 48.879365220461935], [2.357111868102176, 48.87930677392438], [2.357273623064425, 48.87924920923964], [2.357279046505897, 48.879248157359186], [2.357489105328285, 48.879237445208055], [2.357689574137933, 48.87922631250987], [2.357890041498525, 48.87921517946854], [2.358100100062121, 48.87920446624503], [2.358300568614214, 48.8791933325234], [2.358510627005345, 48.87918261857938], [2.358525162228621, 48.87919024995553], [2.358547353142528, 48.87928781329801], [2.358566435888277, 48.87938167541061], [2.358588628335605, 48.87947923783651], [2.358607711225881, 48.87957309992623], [2.358609734790051, 48.87957674676641], [2.358682860210314, 48.8796545413111], [2.358769542785383, 48.87974402059143], [2.358800047468939, 48.87975600928944], [2.35881008771157, 48.87975386239919], [2.358833635752267, 48.87969728565025], [2.358884968216759, 48.87957393840763], [2.358935143835773, 48.879453387254166], [2.358986475819459, 48.879330039940726], [2.35903665096864, 48.87920948871802], [2.35908798247153, 48.87908614133376], [2.35913815715068, 48.878965590041815], [2.359189488172779, 48.878842242586714], [2.35923966238211, 48.87872169122556], [2.3592909942757, 48.87859834460619], [2.359341166662739, 48.878477792269216], [2.359392498075546, 48.87835444557904], [2.359442669992681, 48.87823389317284], [2.359494000924814, 48.878110546411826], [2.3595441723720523, 48.87798999393645], [2.359595502823315, 48.8778666471046], [2.35964567380066, 48.87774609455997], [2.359645207832862, 48.877740410979115], [2.359575929804952, 48.87762471437301], [2.359507032905835, 48.877509538667624], [2.359437755491961, 48.877393841957335], [2.359368859203705, 48.87727866614825], [2.359299583767262, 48.87716296934108], [2.359230686726661, 48.87704779342111], [2.359161411893168, 48.87693209740903], [2.3590925154634173, 48.876816921385405], [2.359023241254995, 48.87670122436987], [2.358954345436291, 48.87658604824255], [2.3588850718418692, 48.876470351122855], [2.358816177997382, 48.87635517489927], [2.358747283094316, 48.87623999861668], [2.358678010420109, 48.87612430134085], [2.358641659355484, 48.87606852680472], [2.35863898466507, 48.87606871752297], [2.3586049366466533, 48.876073937403525], [2.3584019482757412, 48.8761068741586], [2.358184147033661, 48.87614026805478], [2.35812753005981, 48.876149455170484], [2.358112489440598, 48.87614971626976]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 32, "roussel_fabien": 24.0, "nb_emargement": 1021.0, "nb_procuration": 101.0, "nb_vote_blanc": 14.0, "jadot_yannick": 83.0, "le_pen_marine": 41.0, "nb_exprime": 1005.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1300.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1021, "quartier_bv": "37", "geo_point_2d": [48.87770910715442, 2.3577244119863003], "melenchon_jean_luc": 436.0, "poutou_philippe": 5.0, "macron_emmanuel": 307.0}, "geometry": {"type": "Point", "coordinates": [2.3577244119863003, 48.87770910715442]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f13248ba47cbb2fc4416bccdbc1448fad29a158c", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 75, "zemmour_eric": 97.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "12-3", "geo_shape": {"coordinates": [[[2.400596202113709, 48.84049831717798], [2.400600177756229, 48.84048885155084], [2.400579394159323, 48.840432930437856], [2.400534138816945, 48.840301423191015], [2.400486577113669, 48.840173459522106], [2.400441323603546, 48.84004195131714], [2.400393762364907, 48.839913987581596], [2.400348509303793, 48.83978248021026], [2.400300948529887, 48.83965451640811], [2.400300701413888, 48.83965148162619], [2.400305759407198, 48.83962290282146], [2.40027266444612, 48.83959699720368], [2.400216225682972, 48.83958060488513], [2.40001439233599, 48.839580341885515], [2.399821664510872, 48.839580782563], [2.39962893804492, 48.83958122293679], [2.399427104698618, 48.83958095894626], [2.399234376866259, 48.83958139867754], [2.399032543521177, 48.83958113402128], [2.39883981704727, 48.8395815731237], [2.398637983703621, 48.83958130780177], [2.398445255863327, 48.839581746261686], [2.398243422520918, 48.83958148027399], [2.398050696039096, 48.839581918105075], [2.397848862698141, 48.83958165145167], [2.397656134849951, 48.839582088640206], [2.397454301510255, 48.839581821321154], [2.397261575020555, 48.83958225788085], [2.397059741682332, 48.839581989896026], [2.396867013826284, 48.83958242581317], [2.396716417133776, 48.83958222490986], [2.396700021932774, 48.83957708691555], [2.396678317561709, 48.83958274235272], [2.396627082279138, 48.83958267459608], [2.396405284139718, 48.83958279135664], [2.396203450803746, 48.83958252192705], [2.395981652664032, 48.83958263790211], [2.395779819330849, 48.83958236775777], [2.395738619310015, 48.83958612672611], [2.3957324216552323, 48.8395990309276], [2.395624847182587, 48.83968760963854], [2.395514821740537, 48.839781196094314], [2.395407247884555, 48.83986977460202], [2.395297220315366, 48.83996335993623], [2.39518964570318, 48.840051939133076], [2.395079618721078, 48.840145524258766], [2.395083345731242, 48.84015873942357], [2.39521638119826, 48.84021169192121], [2.395339187001464, 48.84025785814816], [2.395355679482551, 48.84027188249851], [2.395366775010904, 48.84027417079393], [2.395405552918088, 48.84028874936252], [2.395570484649168, 48.84035243824012], [2.395732069199148, 48.84041318165955], [2.395897001722956, 48.84047687007992], [2.396058587039222, 48.840537613051524], [2.396061354419325, 48.84053842475559], [2.396262020721263, 48.84058036306642], [2.39645385646236, 48.84062234192358], [2.396654523392782, 48.840664280472176], [2.396846359758865, 48.8407062586967], [2.397047027338487, 48.840748195684434], [2.397238864329545, 48.8407901732764], [2.397439532537753, 48.84083211050187], [2.397631370153783, 48.84087408746123], [2.397823206716354, 48.84091606410453], [2.398023875889797, 48.840957999445756], [2.398215714439785, 48.84099997546336], [2.398416384241611, 48.84104191104232], [2.398608223416556, 48.84108388642727], [2.398808893867725, 48.84112582044538], [2.398824535616274, 48.84112203900318], [2.398930669952851, 48.84101079094137], [2.399034106687511, 48.84090149702331], [2.399140240138053, 48.840790247854315], [2.399243677347672, 48.84068095463965], [2.399349809901816, 48.84056970526273], [2.399453244882229, 48.84046041093913], [2.399465562770076, 48.8404561972209], [2.399640097248925, 48.84046264932468], [2.399808757857527, 48.84047301989247], [2.399983292435189, 48.84047947149542], [2.40015195316651, 48.84048984157917], [2.40032648784298, 48.84049629268128], [2.400495148697113, 48.84050666228104], [2.400596202113709, 48.84049831717798]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 3, "roussel_fabien": 23.0, "nb_emargement": 1104.0, "nb_procuration": 43.0, "nb_vote_blanc": 11.0, "jadot_yannick": 93.0, "le_pen_marine": 62.0, "nb_exprime": 1085.0, "nb_vote_nul": 8.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1394.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1104, "quartier_bv": "46", "geo_point_2d": [48.84017397864413, 2.3979536537947794], "melenchon_jean_luc": 295.0, "poutou_philippe": 5.0, "macron_emmanuel": 373.0}, "geometry": {"type": "Point", "coordinates": [2.3979536537947794, 48.84017397864413]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b8cc9e30c141029a1fabb49326a768ec4045cf05", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 55, "zemmour_eric": 87.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "12-48", "geo_shape": {"coordinates": [[[2.388259050152627, 48.8380332576334], [2.388297055559565, 48.83803823930102], [2.388462567999968, 48.838103235340185], [2.3886257578481302, 48.83816614354433], [2.388791271104552, 48.83823113912128], [2.388954460387579, 48.838294046862835], [2.389119974449476, 48.838359042876796], [2.389283165902584, 48.83842194927042], [2.389448680780506, 48.83848694482212], [2.3896118716682633, 48.83854985075312], [2.389678295387445, 48.838575333152946], [2.389695299482649, 48.838558753827186], [2.389826961393965, 48.838450652123555], [2.389950979399803, 48.83834779054167], [2.390074996916166, 48.83824492882176], [2.390206658620212, 48.83813682577749], [2.39033067512997, 48.838033963773086], [2.390462334398075, 48.83792586131938], [2.390586349901445, 48.83782299903049], [2.390718009468701, 48.83771489628189], [2.390842023965488, 48.83761203370851], [2.390973681107354, 48.8375039306512], [2.391097694597774, 48.837401067793344], [2.391189639457199, 48.837325571091625], [2.391209390212452, 48.837307397454886], [2.3912099164762, 48.83729990034354], [2.391249629036063, 48.837267292786265], [2.391330460397157, 48.837171010884724], [2.391424522148438, 48.837047983515234], [2.391505352846395, 48.83695170147662], [2.391560340080561, 48.83687978028939], [2.391570357180359, 48.8368736544139], [2.391577567946992, 48.83686307320599], [2.391616641636652, 48.83681196595641], [2.391711099226524, 48.83668514232935], [2.3918051591920593, 48.8365621155064], [2.391899615870503, 48.83643529170216], [2.391993673588508, 48.836312263797254], [2.392088129355437, 48.83618543981581], [2.392156516848117, 48.836095990358736], [2.392168686083068, 48.83608462577831], [2.392170594349353, 48.83607753679458], [2.392196265002109, 48.83604395997295], [2.392289138360445, 48.83592120008764], [2.392383194231464, 48.835798171819896], [2.392476066701073, 48.83567541266173], [2.392570123049734, 48.83555238422688], [2.392662993289373, 48.83542962399045], [2.392757048742884, 48.835306596280866], [2.392758334351391, 48.83530523307523], [2.392875392625356, 48.83520199654362], [2.392985001892261, 48.83510605640746], [2.3931020592700403, 48.835002819635655], [2.393211667700952, 48.83490687927464], [2.39332127710116, 48.83481093791263], [2.3934383331397733, 48.83470770168381], [2.393547940341695, 48.83461176009005], [2.393664995484045, 48.83450852362106], [2.393774601839529, 48.83441258270184], [2.393891656096286, 48.834309345093324], [2.393897812487401, 48.834281931255994], [2.3938635362973493, 48.834262688315675], [2.393666384816972, 48.83425544655872], [2.393473739585187, 48.834247773147965], [2.393276588204909, 48.834240531647765], [2.393083943085627, 48.834232857609074], [2.392886790453629, 48.83422561545937], [2.392694145446961, 48.83421794079277], [2.39249699428772, 48.834210698007375], [2.392304349393573, 48.834203022712884], [2.392107198355402, 48.83419577838563], [2.391914553563299, 48.83418810336249], [2.3917174012734472, 48.834180858385714], [2.391524756593876, 48.8341731827347], [2.3913276057769153, 48.83416593712228], [2.391134961220391, 48.834158259944], [2.3909378105035453, 48.83415101458831], [2.39074516605958, 48.83414333678214], [2.390548014091075, 48.83413609077694], [2.390355369759678, 48.834128412342835], [2.390158219264085, 48.834121165701994], [2.389965575045265, 48.83411348664], [2.389772930883202, 48.83410580726774], [2.389575780554078, 48.83409855966667], [2.389383136504607, 48.834090879666505], [2.3891859849238593, 48.834083631415915], [2.3889933409869872, 48.834075950787835], [2.388796190879184, 48.83406870190159], [2.38878506044049, 48.83407185126375], [2.388642129320438, 48.834182679934536], [2.388504861470973, 48.83429148142968], [2.388361929152881, 48.83440230974386], [2.388224660150885, 48.834511109996804], [2.388081726624287, 48.83462193885371], [2.3879444564591, 48.834730738763724], [2.387801521734534, 48.834841567264036], [2.387664250406042, 48.8349503668311], [2.387663745537512, 48.834950782451386], [2.3875573652804443, 48.83504392289044], [2.387448591809197, 48.83513699161483], [2.38734221078768, 48.835230131847034], [2.387233436554297, 48.83532319946098], [2.387127054768326, 48.835416339486315], [2.387018278389346, 48.83550940778141], [2.386911895839011, 48.835602547599905], [2.386803120060104, 48.83569561479154], [2.3866967367453, 48.83578875440317], [2.386587960183192, 48.83588182228294], [2.386580335569537, 48.83590248925577], [2.3865918661897743, 48.83592349549284], [2.386753361380614, 48.83600716046222], [2.386919405214331, 48.83609136475424], [2.3870809014404, 48.836175030168164], [2.387246946337861, 48.8362592339929], [2.387408443620315, 48.83634289805273], [2.387574488219283, 48.836427101403146], [2.387735987899325, 48.83651076591443], [2.387902033562245, 48.836594968797584], [2.388063534298572, 48.836678631954804], [2.388229581025343, 48.83676283437057], [2.38823490423708, 48.83676989102438], [2.388236499620082, 48.836894910758886], [2.388238650996818, 48.83701933974289], [2.3882402463858883, 48.837144360348766], [2.388242397792419, 48.83726878840564], [2.388243993198111, 48.83739380898357], [2.388246143250957, 48.83751823790494], [2.388247738683821, 48.837643257555605], [2.3882498901182743, 48.837767686456125], [2.388251485567761, 48.83789270607885], [2.388253637021455, 48.83801713495152], [2.388259050152627, 48.8380332576334]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 48, "roussel_fabien": 24.0, "nb_emargement": 1200.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 106.0, "le_pen_marine": 75.0, "nb_exprime": 1184.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1573.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1200, "quartier_bv": "47", "geo_point_2d": [48.8358887135074, 2.3899977393032295], "melenchon_jean_luc": 476.0, "poutou_philippe": 18.0, "macron_emmanuel": 279.0}, "geometry": {"type": "Point", "coordinates": [2.3899977393032295, 48.8358887135074]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "745d5067225af299916158955fc2dbc388901a29", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 61, "zemmour_eric": 58.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-41", "geo_shape": {"coordinates": [[[2.358339994179588, 48.82295192099876], [2.358293641748282, 48.82294509871567], [2.358113817297822, 48.822941867158626], [2.357900412374249, 48.82293801252894], [2.357720587972705, 48.82293478038056], [2.357507183096029, 48.82293092594842], [2.357327357381322, 48.822927693201414], [2.357113952573815, 48.82292383716816], [2.356934128269924, 48.822920603837076], [2.356720723509425, 48.82291674800141], [2.356540897892388, 48.82291351407172], [2.3565403805142893, 48.822913497797], [2.35636435835674, 48.822906353786415], [2.356131159381738, 48.82289629167369], [2.355955135976469, 48.82288914705327], [2.355721937168516, 48.82287908324306], [2.355545913877419, 48.822871938020164], [2.3555322678509603, 48.8228778606304], [2.355466321898435, 48.82299847783587], [2.3554025542352433, 48.82311661725778], [2.355396459662873, 48.82312141406403], [2.355343439173973, 48.8231413327682], [2.355286576543045, 48.82316387400557], [2.355275506287378, 48.82317231164219], [2.355282886322404, 48.823184174651885], [2.355304379307385, 48.8232711083616], [2.35534533912904, 48.82343943635148], [2.355366832334494, 48.823526369130924], [2.355366987864432, 48.82352833151165], [2.355355670602606, 48.82365908225531], [2.355344138717977, 48.82379055222719], [2.355332819979924, 48.82392130293081], [2.355321287979576, 48.8240527728698], [2.355321469403687, 48.82405484421387], [2.355341922104383, 48.824131979822035], [2.355363302367977, 48.824212646878294], [2.35536246277937, 48.824217648284495], [2.355313257775745, 48.824295834776436], [2.355263211812071, 48.824373503165326], [2.355262156862787, 48.82437763461105], [2.355271530923201, 48.82446860315096], [2.355280473855569, 48.82456194461211], [2.355289849343207, 48.82465291314306], [2.355298792351003, 48.824746253688176], [2.355292658172341, 48.82475434738415], [2.355103616892506, 48.82483603474136], [2.354914840372235, 48.82491785273538], [2.354725799269649, 48.824999539490854], [2.354537020202437, 48.82508135686923], [2.354347977915066, 48.825163043015486], [2.354159199013846, 48.82524486069218], [2.354153072252593, 48.825251896701], [2.354141330170823, 48.825396322565325], [2.354130492598489, 48.82553249162737], [2.35411965632046, 48.82566866157856], [2.354107914052158, 48.82581308738598], [2.35412025107001, 48.8258225237143], [2.354323061407121, 48.82583501218844], [2.354526646561572, 48.82584719691355], [2.3547294584540612, 48.825859684705556], [2.354933043799829, 48.82587186873855], [2.355135854523569, 48.82588435583372], [2.355339440049518, 48.82589654007394], [2.355542250977677, 48.82590902558035], [2.355745836694929, 48.82592120912849], [2.355948649178428, 48.82593369395274], [2.356152235086973, 48.82594587680876], [2.3563550464016823, 48.82595836093621], [2.356558632501506, 48.82597054310013], [2.356761445360441, 48.825983027444764], [2.356965031662631, 48.82599520801726], [2.356977355966141, 48.826005057690594], [2.356972884034125, 48.82603465996873], [2.356970636118394, 48.82606451074029], [2.3569828883932082, 48.82607390673989], [2.357142398100902, 48.826084409203986], [2.3572740398121113, 48.826094042182014], [2.357334484481601, 48.826086968764216], [2.357334147289103, 48.82607178010124], [2.357362503500844, 48.82597867715618], [2.357404967919125, 48.825849154251166], [2.357445252561554, 48.82571688190594], [2.357487715187901, 48.82558735983335], [2.357528000780168, 48.82545508743675], [2.3575704629988152, 48.82532556440523], [2.357610748167787, 48.82519329284922], [2.357653209967554, 48.82506376975816], [2.357693494724421, 48.824931498143435], [2.357735956105416, 48.824801974992766], [2.357776240461161, 48.82466970242005], [2.35781870142339, 48.8245401792098], [2.35785898535576, 48.82440790747766], [2.35790144589933, 48.82427838420789], [2.357941729419514, 48.82414611241704], [2.35798418954433, 48.824016589087634], [2.3579982970278213, 48.82397142257165], [2.358020662009121, 48.823903197187725], [2.358031819352098, 48.82389972073486], [2.358044117860039, 48.823888631784804], [2.3580642126875793, 48.82382733379439], [2.358101614485032, 48.82370779959861], [2.35814407385572, 48.82357827616192], [2.358181475291322, 48.82345874191466], [2.358223935622798, 48.82332921842821], [2.358261336707721, 48.82320968323019], [2.358303795264928, 48.823080160578684], [2.358341195988213, 48.82296062532914], [2.358339994179588, 48.82295192099876]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 41, "roussel_fabien": 28.0, "nb_emargement": 1398.0, "nb_procuration": 61.0, "nb_vote_blanc": 21.0, "jadot_yannick": 120.0, "le_pen_marine": 76.0, "nb_exprime": 1376.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1814.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1400, "quartier_bv": "51", "geo_point_2d": [48.82447565269504, 2.3563984076212723], "melenchon_jean_luc": 607.0, "poutou_philippe": 10.0, "macron_emmanuel": 348.0}, "geometry": {"type": "Point", "coordinates": [2.3563984076212723, 48.82447565269504]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a2ede2aa17b07a0ac7e8697a9f30951fee87a235", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 45, "zemmour_eric": 72.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "9-27", "geo_shape": {"coordinates": [[[2.345263086613731, 48.8830996029625], [2.345275395913546, 48.88309972333759], [2.345328793039155, 48.88310989807044], [2.345529221474885, 48.88314722608066], [2.345730531785214, 48.88318558470741], [2.3459309608003, 48.88322291204251], [2.346132271699012, 48.88326126999113], [2.346332701293344, 48.88329859665114], [2.346534012780533, 48.88333695392166], [2.346734444306284, 48.88337428081331], [2.346935756382048, 48.883412637405684], [2.346941628254585, 48.883418069010865], [2.346985558523258, 48.8834222458906], [2.347191546607609, 48.883446590813826], [2.34739514320861, 48.883471794695446], [2.347598740006786, 48.88349699823027], [2.347804728673362, 48.883521342096884], [2.34800832586347, 48.88354654493408], [2.348214314917491, 48.88357088809493], [2.348417912499523, 48.883596090234505], [2.348623901941083, 48.88362043268956], [2.348827499914926, 48.883645634131504], [2.34903348974391, 48.883669975880814], [2.349237088109658, 48.88369517662513], [2.349443078326057, 48.88371951766867], [2.349492552366671, 48.88373099842288], [2.34950899780758, 48.88372434550186], [2.34951931133085, 48.88372017288942], [2.349528501603935, 48.88368463725657], [2.349554945334908, 48.88358899964086], [2.34958990717115, 48.88348804648347], [2.349590100153859, 48.88348700700757], [2.34960349493129, 48.88334890857434], [2.349615636247901, 48.88322567642889], [2.349627776143595, 48.883102444261006], [2.349641170722203, 48.88296434577529], [2.349653310496452, 48.88284111357559], [2.349666704951362, 48.88270301415493], [2.349678844604373, 48.88257978192332], [2.349692238913024, 48.8824416833663], [2.34970437980823, 48.88231845111025], [2.349717772618525, 48.882180352510154], [2.349729913392285, 48.88205712022224], [2.349743307442418, 48.881919020694646], [2.349755446720184, 48.881795789266725], [2.349768840635295, 48.881657689703495], [2.349780979802955, 48.88153445734446], [2.349788427532074, 48.88152901007505], [2.3497898848650838, 48.88150555623948], [2.349802025310996, 48.88138232386875], [2.349811520125628, 48.881257908883825], [2.349811844478201, 48.88123968389705], [2.34975572540035, 48.8812374779227], [2.349581659939382, 48.88128536608221], [2.349407191866567, 48.88133336601552], [2.34923312576462, 48.8813812536641], [2.349058658424091, 48.88142925219342], [2.34888459166993, 48.881477140230395], [2.348710122323432, 48.88152513824025], [2.348536054928394, 48.881573025766315], [2.348361584939441, 48.88162102326404], [2.348187518266845, 48.88166891028663], [2.3480130476354413, 48.881716907272285], [2.347838978958357, 48.881764793776505], [2.347664507684505, 48.88181279025006], [2.347490438366452, 48.881860676243406], [2.347315967813679, 48.881908672212305], [2.347141897865936, 48.88195655679544], [2.346967425295924, 48.88200455314406], [2.346793354707327, 48.88205243721627], [2.346618881506154, 48.882100432153536], [2.346606441213742, 48.88209903325102], [2.346592798279278, 48.88210860681578], [2.346423168598091, 48.882175584897766], [2.346251055326508, 48.882243542936784], [2.346081426129715, 48.88231052053381], [2.345909310602692, 48.88237847806574], [2.345739680526863, 48.88244545517039], [2.34556756547147, 48.882513412210166], [2.345397933153064, 48.88258038881494], [2.345225817205764, 48.8826483453551], [2.345056185371862, 48.882715321474905], [2.344884067169112, 48.88278327750796], [2.3447144344561712, 48.88285025313541], [2.344542316713739, 48.882918209575564], [2.344526543195473, 48.882953459711835], [2.34453147245659, 48.882956619965796], [2.34471512909213, 48.88299227920257], [2.34491643820374, 48.88303063920353], [2.345100096727473, 48.883066297854846], [2.345248009293993, 48.88309448246084], [2.345263086613731, 48.8830996029625]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 27, "roussel_fabien": 22.0, "nb_emargement": 1350.0, "nb_procuration": 84.0, "nb_vote_blanc": 10.0, "jadot_yannick": 166.0, "le_pen_marine": 49.0, "nb_exprime": 1340.0, "nb_vote_nul": 1.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1630.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1351, "quartier_bv": "36", "geo_point_2d": [48.88262485665523, 2.3478625329229423], "melenchon_jean_luc": 427.0, "poutou_philippe": 8.0, "macron_emmanuel": 484.0}, "geometry": {"type": "Point", "coordinates": [2.3478625329229423, 48.88262485665523]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c046df936ac53eecda52f0ab0d165b6a7fb611ab", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 159, "zemmour_eric": 225.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "17-43", "geo_shape": {"coordinates": [[[2.30270241480184, 48.88173609562233], [2.3027101173567193, 48.881723599250286], [2.30284471618921, 48.88161402564509], [2.302980207802265, 48.88150372412022], [2.303114805498207, 48.881394150189536], [2.303250297330679, 48.88128384834487], [2.303384893890083, 48.88117427408865], [2.303520383215075, 48.88106397190839], [2.303654978637956, 48.880954397326605], [2.3037904681702512, 48.88084409572586], [2.303788205046254, 48.88083131558913], [2.303639440196235, 48.88075558153818], [2.303490872182012, 48.88067994556815], [2.303342109560248, 48.88060421114526], [2.303193541034148, 48.88052857568722], [2.303044779277145, 48.88045284088445], [2.302896211626713, 48.880377204147734], [2.302893500407715, 48.88036481079084], [2.303011686179436, 48.88025718100848], [2.303129348302062, 48.880150027400155], [2.303247534462432, 48.88004239737193], [2.303365195626584, 48.87993524261166], [2.3034833808121338, 48.87982761232958], [2.303601040993762, 48.87972045821587], [2.30360051178228, 48.87970945714425], [2.303493469037995, 48.87962395588452], [2.303379694507388, 48.87953307778235], [2.303272652500171, 48.87944757541221], [2.303158878740093, 48.879356697085626], [2.3030518374580122, 48.879271194504355], [2.3029380658320058, 48.87918031596129], [2.302969887332706, 48.87911423804735], [2.302924291495479, 48.87910401149841], [2.3027951180630613, 48.87907556957425], [2.302606531097941, 48.87903445599105], [2.302422407755141, 48.87899391491435], [2.302233821379816, 48.87895280074097], [2.30204969861592, 48.87891225908806], [2.301861112830501, 48.87887114432454], [2.301676990645416, 48.87883060209542], [2.301488405449906, 48.87878948674173], [2.301304283843535, 48.87874894393638], [2.301115699238042, 48.87870782799256], [2.3010264779992, 48.878688181767124], [2.30101524815268, 48.878686652076674], [2.300978467164198, 48.87875289660669], [2.300892690851427, 48.878863823712514], [2.300806694926274, 48.87897503455536], [2.300720917893866, 48.87908596061647], [2.30063491987168, 48.87919717130554], [2.300549142107654, 48.87930809722124], [2.300463144715215, 48.87941930777242], [2.300377366207384, 48.87953023444192], [2.300291368081341, 48.87964144484732], [2.300205588853855, 48.87975237047208], [2.3001195899942, 48.879863580731644], [2.300033810022886, 48.87997450711027], [2.29994780906624, 48.88008571721603], [2.299862028375156, 48.8801966425499], [2.299776028048348, 48.88030785251781], [2.299775843784351, 48.880315776397524], [2.299864764963823, 48.88044007039888], [2.299951700341665, 48.88056158904406], [2.300038636125308, 48.88068310761269], [2.300127558559155, 48.880807401377425], [2.300214495163369, 48.88092891979121], [2.300303418436742, 48.88105321339759], [2.300390357225137, 48.881174731664515], [2.300479281337847, 48.8812990251125], [2.30056621959562, 48.881420542317336], [2.300655144535699, 48.88154483650623], [2.300742083614072, 48.88166635355625], [2.300831009393713, 48.88179064758674], [2.3009284003503723, 48.88182314901488], [2.300932652835319, 48.88181994163336], [2.30088646763194, 48.88175534876058], [2.300961160037457, 48.88164350283663], [2.301025733365993, 48.88154676058085], [2.301090306454521, 48.88145001828174], [2.301164997984356, 48.88133817219962], [2.301182611849906, 48.88133346626438], [2.301370499515952, 48.881383843740316], [2.301557659288227, 48.8814340251119], [2.301745547691917, 48.8814844010953], [2.301932708186959, 48.881534581876025], [2.302120597304171, 48.88158495816556], [2.302307758521977, 48.88163513835539], [2.302495648376814, 48.88168551315245], [2.302682810305336, 48.88173569365066], [2.30270241480184, 48.88173609562233]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 43, "roussel_fabien": 6.0, "nb_emargement": 1267.0, "nb_procuration": 62.0, "nb_vote_blanc": 11.0, "jadot_yannick": 56.0, "le_pen_marine": 42.0, "nb_exprime": 1255.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1542.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1267, "quartier_bv": "66", "geo_point_2d": [48.88026621604021, 2.3017551464692554], "melenchon_jean_luc": 71.0, "poutou_philippe": 0.0, "macron_emmanuel": 666.0}, "geometry": {"type": "Point", "coordinates": [2.3017551464692554, 48.88026621604021]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9ca75c0e181de11e7f47f7361b747676479e06d4", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 48, "zemmour_eric": 61.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-22", "geo_shape": {"coordinates": [[[2.328891937821672, 48.89737249864748], [2.328892107209017, 48.89737195011205], [2.328885634331721, 48.897352534389704], [2.328841612594854, 48.89722302749928], [2.328797382375383, 48.89709034750474], [2.3287533597159262, 48.89696084054318], [2.32870913130792, 48.89682816049191], [2.3286651090896893, 48.896698653466906], [2.328620879765413, 48.89656597334363], [2.328576857988403, 48.896436466255196], [2.328532630475667, 48.896303786075194], [2.328488609139869, 48.89617427892331], [2.328444380699367, 48.89604159957057], [2.328400359816275, 48.89591209145599], [2.328356133187285, 48.8957794120465], [2.328312112745495, 48.895649903868474], [2.328275321467979, 48.89553953060567], [2.328269088865289, 48.89552319903747], [2.32820537238366, 48.89553245357273], [2.327997680670528, 48.8955452187923], [2.327792396775382, 48.89555783618902], [2.327587114144617, 48.895570453241355], [2.32737942075272, 48.89558321827986], [2.327174137933422, 48.89559583372476], [2.3269664457030093, 48.89560859805443], [2.326761161308068, 48.895621213682766], [2.326553468886798, 48.89563397639665], [2.326348184291625, 48.895646591316755], [2.326140491656248, 48.8956593542134], [2.3259352082249363, 48.89567196843297], [2.325727515398737, 48.895684729713885], [2.325713202213083, 48.89567839613941], [2.325659102337189, 48.89556128579255], [2.325605035868969, 48.89544424754122], [2.325550936479685, 48.89532713712045], [2.325496870486122, 48.89521009969453], [2.325442771583439, 48.895092989199846], [2.325388706087825, 48.89497595080084], [2.325334607671738, 48.89485884023226], [2.325280542650763, 48.89474180265867], [2.325226444721163, 48.89462469201621], [2.325172381562082, 48.894507653477206], [2.325118284119062, 48.894390542760874], [2.325064220070752, 48.89427350503958], [2.325055227052096, 48.89426587755705], [2.325038547944784, 48.894266907703305], [2.32487200045539, 48.89430438615535], [2.324704930170974, 48.894341982836316], [2.324538382189509, 48.89437946172109], [2.324371312798796, 48.894417057042496], [2.324358190699793, 48.89441546315274], [2.324219926671158, 48.89433971632087], [2.324082471548914, 48.89426441275728], [2.323944209686279, 48.89418866560432], [2.323806755361595, 48.894113361713856], [2.323668492937371, 48.89403761422447], [2.323531039410245, 48.89396231000717], [2.323392777788372, 48.89388656218901], [2.323255325058803, 48.893811257644856], [2.323117064239077, 48.89373550949793], [2.322979612307059, 48.893660204626954], [2.322940644231892, 48.893637649605935], [2.32288019988891, 48.893624448413284], [2.322863239369851, 48.893613150533135], [2.322846392824119, 48.893612490496864], [2.322817622301627, 48.89361136193106], [2.322809726302984, 48.893645259557914], [2.322902099920281, 48.8937624790401], [2.322994433729003, 48.89387964515096], [2.323086808177889, 48.8939968644656], [2.3231791414541982, 48.89411403040131], [2.323271518098625, 48.894231249556086], [2.323363852206162, 48.894348415324295], [2.323456228330243, 48.89446563340456], [2.323548564621283, 48.89458279991227], [2.323640941576981, 48.89470001782498], [2.323733277347304, 48.89481718325824], [2.323825656486908, 48.89493440191035], [2.32391799308859, 48.89505156717613], [2.324010371696075, 48.89516878565295], [2.324102710492894, 48.895285950758975], [2.324195089932231, 48.89540316906821], [2.32428742819656, 48.89552033399904], [2.324379809831435, 48.89563755214841], [2.324472148927256, 48.895754716911725], [2.32446203913978, 48.895767760305], [2.32425205399175, 48.89578819979791], [2.32404340976589, 48.89580850979501], [2.323833424277586, 48.89582894945238], [2.3236247797368, 48.89584925782012], [2.323414793919702, 48.89586969674271], [2.32320614905233, 48.895890004380355], [2.322996162906651, 48.89591044256813], [2.322787517701008, 48.895930750374966], [2.322776029204271, 48.895941012321195], [2.322781390398361, 48.89596401851425], [2.322783077594851, 48.895971255905174], [2.322795081539941, 48.895978830425975], [2.322870907285281, 48.895984273804274], [2.322983952321493, 48.89599238899506], [2.323019945172848, 48.89599497297208], [2.323032094702702, 48.89600352225727], [2.323039605128856, 48.89611751237822], [2.323047226006142, 48.89623318574177], [2.323054735146351, 48.896347174930916], [2.323062356090869, 48.89646284826922], [2.323069866649643, 48.896576838340486], [2.323077487673092, 48.89669251075434], [2.323084996934115, 48.89680650079297], [2.3230926180248, 48.8969221731816], [2.323100059605346, 48.89692776045679], [2.323121540986927, 48.896926510407354], [2.323302598130312, 48.8968610602932], [2.323482987403453, 48.89679585254515], [2.323664043638058, 48.89673040187676], [2.323844432005676, 48.89666519357649], [2.324025488695407, 48.89659974236156], [2.3242058747937993, 48.89653453350143], [2.324386930574746, 48.89646908173225], [2.324567317131519, 48.89640387232759], [2.3247483706281162, 48.89633842089575], [2.324928756291232, 48.89627321003968], [2.324942747539855, 48.896273556006065], [2.325096127969291, 48.89633929933823], [2.32530402012613, 48.89642840818856], [2.325457401468073, 48.8964941510488], [2.325655773931278, 48.89657917848855], [2.325809156161481, 48.896644920889194], [2.326007529773634, 48.89672994773457], [2.326160912880665, 48.89679569057494], [2.326173453878069, 48.89680218588637], [2.326188271272211, 48.89679815036676], [2.326384524150339, 48.89673429376448], [2.326582654482214, 48.89666982506673], [2.326778906392887, 48.89660596781069], [2.326977037111946, 48.896541498460586], [2.327173288055058, 48.89647764055077], [2.327371417797389, 48.89641317054066], [2.327567667773139, 48.896349311977104], [2.3277657965387393, 48.896284841306944], [2.327781861902242, 48.89628681106695], [2.32789755766104, 48.896369583734845], [2.328010191303739, 48.89645016454231], [2.328125889164068, 48.896532936085706], [2.32823852351367, 48.8966135166664], [2.328351158211834, 48.89669409713523], [2.328466855780825, 48.896776869222386], [2.328469998978453, 48.89678063161871], [2.328512075472437, 48.89688393238932], [2.328573805563975, 48.89703548574614], [2.328615881094283, 48.89713878734787], [2.328677611790183, 48.89729034061592], [2.328719689108059, 48.897393641265516], [2.328736768599377, 48.897399925220355], [2.3287908003476, 48.89738927793861], [2.328833394508401, 48.89738088408166], [2.328891937821672, 48.89737249864748]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 22, "roussel_fabien": 14.0, "nb_emargement": 938.0, "nb_procuration": 34.0, "nb_vote_blanc": 12.0, "jadot_yannick": 86.0, "le_pen_marine": 60.0, "nb_exprime": 926.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1189.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 938, "quartier_bv": "68", "geo_point_2d": [48.89573425150083, 2.325439767422811], "melenchon_jean_luc": 292.0, "poutou_philippe": 4.0, "macron_emmanuel": 304.0}, "geometry": {"type": "Point", "coordinates": [2.325439767422811, 48.89573425150083]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b6793ac2875a9aa97379e6228659dc3b7df080cf", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 219, "zemmour_eric": 154.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-17", "geo_shape": {"coordinates": [[[2.270577155335245, 48.85697412474313], [2.270599156320698, 48.856973137351766], [2.270818118212993, 48.85698788847234], [2.27103250412079, 48.857001031141465], [2.2712514648902262, 48.857015781460454], [2.271465851022092, 48.8570289233529], [2.271680237262102, 48.857042064861055], [2.271899199750098, 48.85705681400264], [2.271902230287534, 48.8570572524428], [2.272137320163779, 48.85710824000534], [2.272384428173197, 48.85716407307474], [2.27238890231957, 48.857165764093494], [2.272552601836262, 48.85725869269354], [2.272732226395704, 48.85735897297054], [2.272747123483786, 48.8573601517324], [2.272878349887816, 48.85731686353921], [2.273097461288512, 48.85724171690537], [2.273228687103194, 48.857198428323414], [2.273233660571808, 48.85718513723133], [2.273122671408617, 48.85708319441601], [2.273011319920938, 48.85698087605065], [2.272900331627967, 48.85687893301032], [2.272788979650568, 48.85677661441093], [2.272677992227607, 48.856674671145676], [2.272566642486196, 48.85657235232885], [2.272572766971945, 48.856558726496836], [2.272782015021108, 48.8565049467774], [2.272982713396853, 48.85645357449482], [2.27298624842965, 48.856452237940104], [2.273122620958345, 48.85638280757396], [2.273249500965318, 48.8563164545646], [2.273376382011879, 48.85625010142505], [2.273512752141473, 48.856180669694055], [2.273545320503547, 48.85616895810457], [2.273546294807693, 48.8561587077259], [2.273474622156373, 48.85609987807792], [2.273385493841822, 48.85602449130468], [2.273271996503452, 48.855931331711865], [2.273182868770368, 48.85585594477625], [2.273186442200745, 48.85584276568108], [2.273336291728478, 48.855781574994985], [2.27347579742286, 48.85572509601716], [2.273625646272379, 48.85566390496221], [2.273765151338072, 48.855607425641075], [2.273768453935788, 48.855605549834884], [2.273889013358447, 48.85551098621016], [2.274009641634366, 48.855415166470564], [2.274130200166284, 48.85532060348594], [2.274250828920641, 48.85522478349506], [2.2743713865869832, 48.85513021935193], [2.274492014457062, 48.855034399101505], [2.274612571245101, 48.85493983469919], [2.274733198218496, 48.8548440150885], [2.274853754128343, 48.85474945042698], [2.274974380229894, 48.85465362965746], [2.275094935261656, 48.85455906473677], [2.2752155604664432, 48.85446324460698], [2.275237268744569, 48.854455096584196], [2.27523401435915, 48.85443137152722], [2.275237312448017, 48.854364554623935], [2.275240943617229, 48.85427398671968], [2.2752223565221072, 48.85426537247893], [2.275031710858288, 48.85431456825541], [2.274844062900816, 48.85436300035102], [2.274653416535165, 48.85441219462123], [2.274465767861986, 48.85446062701857], [2.274275120781995, 48.85450982068174], [2.274087471405624, 48.85455825248163], [2.273896822248499, 48.85460744552946], [2.273709173544379, 48.85465587584084], [2.273518523660284, 48.85470506918092], [2.273330872890187, 48.854753498886524], [2.273140223667207, 48.85480269072854], [2.272952572181294, 48.854851120735894], [2.272761922243993, 48.8549003119709], [2.272574270054907, 48.854948741380724], [2.272383619403291, 48.85499793200862], [2.272195966523598, 48.855046359921715], [2.272005315145109, 48.85509555084183], [2.271817661562361, 48.855143978157365], [2.271627008119216, 48.855193167562874], [2.271439353820742, 48.855241595180175], [2.271248701026209, 48.85529078398689], [2.27106104602448, 48.85533921100668], [2.27087039251565, 48.855388399206355], [2.27068273682336, 48.855436824729296], [2.27049208258765, 48.85548601322115], [2.270304426192223, 48.85553443814663], [2.270116769448097, 48.855582862775684], [2.26992611414376, 48.8556320503593], [2.269738456696401, 48.85568047439083], [2.269547799314948, 48.85572966135907], [2.269507699201812, 48.85574416426997], [2.269509613224478, 48.855756962156846], [2.26965145364074, 48.855826497710524], [2.269789995272422, 48.855892789653], [2.269931836420006, 48.85596232576514], [2.270070378769459, 48.85602861737486], [2.270212220661077, 48.85609815314614], [2.270350763740998, 48.85616444352384], [2.2704926063765463, 48.85623397895429], [2.27063115016175, 48.856300269898576], [2.270635833793988, 48.856310840738864], [2.27057700072799, 48.856409600527286], [2.270520475080777, 48.856500754074084], [2.270461641581588, 48.85659951378885], [2.270405115526533, 48.856690667265546], [2.270405008965004, 48.85669730388684], [2.270488641157371, 48.85684065899032], [2.270561802573491, 48.85696228013201], [2.270577155335245, 48.85697412474313]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 17, "roussel_fabien": 5.0, "nb_emargement": 1181.0, "nb_procuration": 93.0, "nb_vote_blanc": 6.0, "jadot_yannick": 37.0, "le_pen_marine": 50.0, "nb_exprime": 1174.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1433.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1183, "quartier_bv": "62", "geo_point_2d": [48.8558487021951, 2.272266516287356], "melenchon_jean_luc": 74.0, "poutou_philippe": 2.0, "macron_emmanuel": 615.0}, "geometry": {"type": "Point", "coordinates": [2.272266516287356, 48.8558487021951]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ceb2766990d34d104f81a7f7f83626544cab9d98", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 53, "zemmour_eric": 76.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "1-4", "geo_shape": {"coordinates": [[[2.345944253365866, 48.86295127213732], [2.345944348254672, 48.86295533140712], [2.346044330893998, 48.86306950932437], [2.346131494496258, 48.86316909266229], [2.346134274340052, 48.86317133553121], [2.346251711460682, 48.863239748243465], [2.346363933553349, 48.86330892827363], [2.346476154580914, 48.86337810818678], [2.346593592616694, 48.86344652055079], [2.346598071814988, 48.863448258260135], [2.346776273567539, 48.863489825732124], [2.346956984909092, 48.86353184281238], [2.34713518859696, 48.86357340975423], [2.347315900518011, 48.86361542628939], [2.347494104778051, 48.86365699269366], [2.3476748172784943, 48.863699008683724], [2.3476838953419232, 48.86370697960264], [2.347693137310082, 48.86381420861047], [2.347703884467835, 48.86392250524003], [2.34771312651537, 48.86402973422547], [2.347723872407337, 48.864138029925456], [2.34775943218866, 48.86417876262276], [2.3477680182100302, 48.86417748288063], [2.347815090937378, 48.8641660695019], [2.348009277805461, 48.86411938489543], [2.34819639231463, 48.86407401587061], [2.348390579860955, 48.864027330649016], [2.348577692344276, 48.86398196101688], [2.348771879205777, 48.86393527517273], [2.348958991026506, 48.86388990494072], [2.349153177203179, 48.86384321847403], [2.349340288361108, 48.863797847642125], [2.3495344738529482, 48.863751160552916], [2.349721584359399, 48.863705788221765], [2.349908695891859, 48.863660416502995], [2.350102878999011, 48.86361372847834], [2.350289989868655, 48.863568356159654], [2.350484172290961, 48.86352166751246], [2.350671282497989, 48.86347629459388], [2.350865465598486, 48.86342960533154], [2.350963291802715, 48.863423049955564], [2.35097122906466, 48.86340938337383], [2.350904743235751, 48.86329036580612], [2.350837202294262, 48.86316831526531], [2.350770717079184, 48.863049297597215], [2.350703176775415, 48.86292724605491], [2.350636693537182, 48.86280822829388], [2.350569153848706, 48.86268617754868], [2.350502669861258, 48.86256715967993], [2.35043513081049, 48.86244510793323], [2.350368647436846, 48.86232608996414], [2.350301109001352, 48.86220403901453], [2.350234627604411, 48.86208502095247], [2.35019795198853, 48.86201874320298], [2.350192229143977, 48.861993989081085], [2.350159846514866, 48.861979245623544], [2.350128984385917, 48.86192347230948], [2.350056358970672, 48.86179495332252], [2.3499888219553, 48.861672902138174], [2.349916197223775, 48.86154438393641], [2.349848660861669, 48.861422332645404], [2.349776036825174, 48.861293814329485], [2.349708501127347, 48.86117176203256], [2.349635877785974, 48.86104324360253], [2.349568342730072, 48.86092119209815], [2.349500807990589, 48.86079914054228], [2.349428187055144, 48.86067062105116], [2.349397752655324, 48.86066793112625], [2.349354499143681, 48.86067908171532], [2.349264016135755, 48.86070006886313], [2.349164313719823, 48.860723653483916], [2.349156109793659, 48.860735202362925], [2.349216574552539, 48.860844515086015], [2.349275221042388, 48.86095078977502], [2.349335686301381, 48.86106010241665], [2.349394334628524, 48.86116637793332], [2.349454800398969, 48.86127568959424], [2.349513447848786, 48.86138196502445], [2.349514270909046, 48.861385039870704], [2.349514301591862, 48.86151074723212], [2.349513821134679, 48.86163241463082], [2.349513339301026, 48.861754082907986], [2.349513371356041, 48.86187978933568], [2.349512889519051, 48.8620014575857], [2.349512920210125, 48.862127163977945], [2.349503782431188, 48.86213565630691], [2.349385812900814, 48.86216278235979], [2.349239939338013, 48.86219637395998], [2.349222641326466, 48.86219096205877], [2.349174062803172, 48.86210300076546], [2.349125318264308, 48.86201546663085], [2.3490767400802, 48.86192750438483], [2.349027995857915, 48.86183997109601], [2.3490110667205713, 48.86183450271064], [2.348855619090363, 48.86186715591157], [2.348716959637853, 48.861896801124644], [2.348578300027644, 48.861926446176305], [2.348422851863117, 48.8619590979131], [2.348414113548785, 48.861970623135804], [2.348462130124074, 48.86206166196018], [2.348510135522539, 48.8621520819453], [2.34855815243296, 48.8622431207162], [2.348606158165279, 48.86233354064799], [2.348597699781177, 48.86234502423535], [2.348409271861632, 48.862387491774214], [2.348221306069855, 48.862429822134516], [2.34803287617379, 48.862472289070034], [2.347844911133269, 48.86251461884339], [2.3476564806237032, 48.86255708518307], [2.347468514971429, 48.862599414362], [2.347280083837101, 48.86264188100508], [2.347092116221325, 48.862684208682886], [2.34690368583642, 48.862726674737544], [2.346715717608908, 48.86276900182095], [2.346527285247693, 48.862811467272245], [2.346339317771371, 48.8628537937687], [2.34615088479657, 48.86289625862413], [2.345962916708627, 48.862938584526155], [2.345944253365866, 48.86295127213732]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 4, "roussel_fabien": 16.0, "nb_emargement": 974.0, "nb_procuration": 85.0, "nb_vote_blanc": 8.0, "jadot_yannick": 79.0, "le_pen_marine": 63.0, "nb_exprime": 966.0, "nb_vote_nul": 0.0, "arr_bv": "01", "arthaud_nathalie": 2, "nb_inscrit": 1308.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 974, "quartier_bv": "02", "geo_point_2d": [48.86290924173637, 2.348783130756082], "melenchon_jean_luc": 310.0, "poutou_philippe": 3.0, "macron_emmanuel": 309.0}, "geometry": {"type": "Point", "coordinates": [2.348783130756082, 48.86290924173637]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5b3015d74645ca68f34e8955e1bb8dac8ec3d258", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 74, "zemmour_eric": 77.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "14-4", "geo_shape": {"coordinates": [[[2.329146125861017, 48.834129910818284], [2.329178698496561, 48.834118561765614], [2.329303876122769, 48.834072945229366], [2.329465962927059, 48.834012759709545], [2.329643250016033, 48.83394815241119], [2.329805336040566, 48.83388796642473], [2.329982622284505, 48.8338233586162], [2.330144707529179, 48.83376317216317], [2.33030679239957, 48.83370298548727], [2.330484077392895, 48.83363837692475], [2.330646161483326, 48.83357818978224], [2.330823445631716, 48.83351358070954], [2.330985527580134, 48.83345339309282], [2.331162810883387, 48.833388783509896], [2.331324893414099, 48.833328595434224], [2.331502175872416, 48.83326398534107], [2.33152039279355, 48.83326717829887], [2.331604051939534, 48.83335779258769], [2.331692941995991, 48.83346599627129], [2.331776603123245, 48.833556610430946], [2.331776917297706, 48.83355697013611], [2.331865808052719, 48.83366517367198], [2.331946148168457, 48.83376197300665], [2.332035039612697, 48.83387017729624], [2.33211538035874, 48.833966976499525], [2.332204272503842, 48.83407518064354], [2.332284613880097, 48.83417197971539], [2.332298052661816, 48.834221602891475], [2.332364379181493, 48.83422719668322], [2.332546016422277, 48.83417681765776], [2.332726652565342, 48.83412671247562], [2.332908289105875, 48.83407633289553], [2.333088924552522, 48.83402622716178], [2.3332705603928, 48.833975847027], [2.333451195131525, 48.83392574164098], [2.333632830283046, 48.83387536005224], [2.333813465687616, 48.833825254122196], [2.333995098776603, 48.83377487197126], [2.334175733484645, 48.83372476548964], [2.334357365873466, 48.83367438278402], [2.334537999885079, 48.83362427575079], [2.334719632935783, 48.83357389249811], [2.334900264888807, 48.833523784905715], [2.335081897239232, 48.833473401098395], [2.335262528495822, 48.83342329295442], [2.335444160145965, 48.83337290859248], [2.335624790706117, 48.83332279989696], [2.335806421644515, 48.83327241587965], [2.335987051519686, 48.833222305733216], [2.336080492291658, 48.83319638562536], [2.336099845112892, 48.83317598018271], [2.33605303958669, 48.833130543133], [2.335970173354252, 48.83300437882043], [2.335888210941075, 48.83288087170012], [2.335805345515897, 48.83275470634592], [2.3357233838856892, 48.83263119908511], [2.335640519244846, 48.8325050344879], [2.335558559760025, 48.832381527094164], [2.335476599312701, 48.832258018723756], [2.335393735862319, 48.83213185391351], [2.335311776186676, 48.83200834630197], [2.335228913543529, 48.83188218045015], [2.335146956013028, 48.83175867270566], [2.3350640941541663, 48.831632507610834], [2.334982136056046, 48.83150899881901], [2.334899274992928, 48.83138283358185], [2.334817317666348, 48.8312593255489], [2.33473445741044, 48.83113315927014], [2.334652502228952, 48.83100965110429], [2.334569642757288, 48.83088348558256], [2.334569414522247, 48.83088311646891], [2.334511250471937, 48.83078256124898], [2.3344292950082473, 48.83065905288396], [2.33435575383738, 48.83054701692375], [2.33427379911248, 48.83042350842621], [2.334200258619547, 48.83031147144754], [2.334118304633327, 48.83018796281751], [2.334087929233689, 48.83014168727578], [2.334084891974033, 48.83011978319344], [2.334070130044353, 48.830111518492146], [2.334026965653445, 48.8300457578272], [2.333933831674381, 48.82991304733835], [2.333860292620651, 48.829801010998956], [2.333830831336917, 48.82975903048147], [2.333792155344134, 48.82973841813017], [2.333762430911805, 48.82974794690695], [2.3337687090982753, 48.82985168785692], [2.333773078959661, 48.82991757698813], [2.333772775494759, 48.82991989748243], [2.333737319388872, 48.83002657712098], [2.333700586500301, 48.83013711064024], [2.333665130087466, 48.830243791136056], [2.333628396904277, 48.8303543237124], [2.333628186908533, 48.83035487295932], [2.333616614900865, 48.83036380222343], [2.333620049879958, 48.83037429367424], [2.333569165991324, 48.83049160330289], [2.333520089320634, 48.83060403217457], [2.333469204994323, 48.83072134083733], [2.333420129253965, 48.83083376965254], [2.333418998437112, 48.83083559177676], [2.33332820602256, 48.830945773435324], [2.333228422545178, 48.83106637090149], [2.3331376293258073, 48.83117655239264], [2.333037844965823, 48.83129714967496], [2.332947049568117, 48.831407331890496], [2.332847264336925, 48.83152792808965], [2.332756469496677, 48.83163811014539], [2.332656683371454, 48.83175870706005], [2.332565887737867, 48.8318688880491], [2.332466100730011, 48.83198948477991], [2.332375302929549, 48.83209966559397], [2.332275515038945, 48.83222026214091], [2.332184717795934, 48.83233044279519], [2.332084929022777, 48.83245103915828], [2.331994130963364, 48.8325612205445], [2.331894341319067, 48.83268181582439], [2.33180354109273, 48.83279199703564], [2.331703750565656, 48.832912592131706], [2.331612950896754, 48.83302277318311], [2.331594419676525, 48.83302635525093], [2.331479621760121, 48.8329846735037], [2.331385874717404, 48.83295529761642], [2.331381117671324, 48.83295241731546], [2.331259053300559, 48.83283195648487], [2.331135576087328, 48.83270804571424], [2.331013512867709, 48.83258758370749], [2.330890035443281, 48.832463673548], [2.330767974725486, 48.832343211272004], [2.330644498474964, 48.83221929993271], [2.330627429487828, 48.83221607099021], [2.330460178362867, 48.832266815496325], [2.330266898622987, 48.83232584564082], [2.330099646794884, 48.83237658963776], [2.329906366239648, 48.83243561919387], [2.329739113719968, 48.83248636178238], [2.329545832337915, 48.83254539164943], [2.329378579115104, 48.83259613372881], [2.329185296917797, 48.83265516300742], [2.329018042991859, 48.83270590457771], [2.328824759979298, 48.83276493326789], [2.328657505350234, 48.83281567432904], [2.328464221522422, 48.83287470243085], [2.328296966190235, 48.83292544298284], [2.328290694373584, 48.83292626666078], [2.32818037813335, 48.83292330689812], [2.328048974972416, 48.832920002824594], [2.328031552315338, 48.832926661027834], [2.328029674976619, 48.83294325829407], [2.328114464584092, 48.833052198057544], [2.328192119932142, 48.83315459431475], [2.3282769102228382, 48.83326353394251], [2.3283545662048, 48.83336593007489], [2.328356544394118, 48.83336782626747], [2.328418922584313, 48.833413722538914], [2.328484294895579, 48.833460389259386], [2.328487468976416, 48.833464207826296], [2.328540900929078, 48.83359831277381], [2.328597209772964, 48.83373627504631], [2.328599272009029, 48.83373915741745], [2.328703196007206, 48.83383694484441], [2.328806665496141, 48.833932712329116], [2.328910135365356, 48.83402847971608], [2.329014060534956, 48.83412626594835], [2.329046366380772, 48.83416115392197], [2.329050515274945, 48.83416079406335], [2.329084625752974, 48.834148197241085], [2.329136736075128, 48.83412920790698], [2.329146125861017, 48.834129910818284]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 4, "roussel_fabien": 37.0, "nb_emargement": 1217.0, "nb_procuration": 86.0, "nb_vote_blanc": 9.0, "jadot_yannick": 121.0, "le_pen_marine": 46.0, "nb_exprime": 1203.0, "nb_vote_nul": 6.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1503.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1218, "quartier_bv": "55", "geo_point_2d": [48.83265405047681, 2.3326525049710662], "melenchon_jean_luc": 350.0, "poutou_philippe": 4.0, "macron_emmanuel": 431.0}, "geometry": {"type": "Point", "coordinates": [2.3326525049710662, 48.83265405047681]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "33faa9da61332ca86a2ab38490822e3bc8316669", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 166, "zemmour_eric": 276.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "16-60", "geo_shape": {"coordinates": [[[2.275788866506544, 48.86423164186134], [2.27580447899759, 48.864295937513845], [2.275809626546598, 48.864410741322246], [2.275814364493888, 48.864525299814744], [2.275819513450405, 48.864640103607194], [2.275824251440297, 48.86475466207557], [2.2758293990782033, 48.864869465835575], [2.275834138473661, 48.864984024288106], [2.275839286156121, 48.865098828023875], [2.275844024231111, 48.86521338644401], [2.275844362389379, 48.86521514492406], [2.275893275670994, 48.86535635938634], [2.275945516244178, 48.865498687549916], [2.27594556850576, 48.86550277361993], [2.275908995792868, 48.86561026588159], [2.275864702869829, 48.865705624130314], [2.275863681469425, 48.86570780877022], [2.275874305205535, 48.865728271235476], [2.275946602345571, 48.8658504169435], [2.276018724336082, 48.8659738116309], [2.276091022155497, 48.86609595722463], [2.276163144828026, 48.86621935179756], [2.27623544332683, 48.86634149727695], [2.276307566681389, 48.866464891735546], [2.276379865859589, 48.86658703710055], [2.276451076198228, 48.866708101100116], [2.276523376050459, 48.86683024635159], [2.276594587054967, 48.86695131023916], [2.276666887581338, 48.867073455377096], [2.2767380992643123, 48.86719451825337], [2.276810400452143, 48.867316664177054], [2.276881612801203, 48.867437726941326], [2.276952825468671, 48.86755879054927], [2.27702512767815, 48.86768093540373], [2.277037642896059, 48.867699249811174], [2.277063804925142, 48.86770051044], [2.277251789131601, 48.86763636196381], [2.277436601077402, 48.86757316443857], [2.277624583014581, 48.86750901446193], [2.27780939405643, 48.86744581635379], [2.277997376425557, 48.867381666691806], [2.278182186563349, 48.867318468000796], [2.27837016665083, 48.867254317737704], [2.27855497589692, 48.86719111756449], [2.278742956428912, 48.867126966716775], [2.27892776475859, 48.867063766859935], [2.2789282454232023, 48.8670636096715], [2.279129550396267, 48.86700103860528], [2.279330992759371, 48.866938650595195], [2.279532296765808, 48.866876078844534], [2.279733736812784, 48.86681368924206], [2.279935041215603, 48.86675111681517], [2.280136480284598, 48.86668872742712], [2.2802119593070582, 48.866674840345084], [2.280208540961495, 48.86665536324697], [2.280151275281188, 48.86657418614373], [2.2800857532234238, 48.866478779288066], [2.280001793347175, 48.866359759646556], [2.279936273195975, 48.866264352698735], [2.279935294057273, 48.866263195639306], [2.27983802835168, 48.86616589875748], [2.27974348997112, 48.86607092593261], [2.279646224982643, 48.865973628877995], [2.279551685937681, 48.86587865587692], [2.279454423029506, 48.86578135865772], [2.279359884683033, 48.865686385488665], [2.2792626224920562, 48.86558908809672], [2.279155906290078, 48.86548632857365], [2.279155192789793, 48.86548567944148], [2.279066020918886, 48.86540942505072], [2.2789478983574822, 48.865311498975586], [2.278858727100695, 48.86523524351914], [2.278740605323891, 48.86513731722401], [2.278638029152158, 48.865050343271754], [2.278519908209552, 48.864952416742476], [2.27841733275788, 48.86486544348583], [2.278417321978104, 48.86486543442732], [2.278299201881982, 48.864767506764565], [2.278186784527055, 48.86467192380334], [2.278068665290578, 48.86457399679522], [2.277956250151616, 48.86447841270971], [2.277838130424279, 48.86438048544871], [2.277725716113387, 48.86428490202922], [2.27760759862119, 48.86418697453184], [2.277495183800244, 48.86409138997163], [2.277473318197191, 48.86405125386842], [2.277422790483237, 48.86402906486682], [2.277377603675678, 48.86399537119709], [2.277351611267612, 48.86400756596], [2.277165487584386, 48.864031809996796], [2.276999060417965, 48.86405953811338], [2.276989421977111, 48.864060792940364], [2.27682299598744, 48.864088520819614], [2.276627233297186, 48.86411401972957], [2.276460805581662, 48.86414174709562], [2.27626504252652, 48.864167244512636], [2.276098614448198, 48.8641949713737], [2.275902851003395, 48.864220469096345], [2.275807234445597, 48.86422637578014], [2.275788866506544, 48.86423164186134]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 60, "roussel_fabien": 5.0, "nb_emargement": 1201.0, "nb_procuration": 72.0, "nb_vote_blanc": 6.0, "jadot_yannick": 41.0, "le_pen_marine": 67.0, "nb_exprime": 1195.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1547.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1201, "quartier_bv": "63", "geo_point_2d": [48.86583945829646, 2.277637618580361], "melenchon_jean_luc": 63.0, "poutou_philippe": 1.0, "macron_emmanuel": 561.0}, "geometry": {"type": "Point", "coordinates": [2.277637618580361, 48.86583945829646]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "94ef630f02a3eeca770bd618158fdcfec259aee6", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 35, "zemmour_eric": 54.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "14-57", "geo_shape": {"coordinates": [[[2.303481595359494, 48.82701156477349], [2.303517458908848, 48.82698002284177], [2.30367207896029, 48.82694508295161], [2.303824317438304, 48.8269113899282], [2.30397893708055, 48.82687644963921], [2.304131176521919, 48.82684275623097], [2.304140437169415, 48.82683484700765], [2.304145587496136, 48.82678545245687], [2.304156560126096, 48.826724899898124], [2.304176648861948, 48.82671808886131], [2.304279077066689, 48.826755285951585], [2.304358148533456, 48.82678737441954], [2.304369551715425, 48.826788251990784], [2.3045412800328, 48.82675080768656], [2.304704347766142, 48.826713956739454], [2.304876075598243, 48.82667651195204], [2.305039142874552, 48.82663965964669], [2.305040940622776, 48.82663917093796], [2.305211009298719, 48.826583294929215], [2.305385505210795, 48.826526350746946], [2.305555574523479, 48.8264704733512], [2.305730068319642, 48.82641352865253], [2.305900136894908, 48.82635765076118], [2.306074631299189, 48.82630070556198], [2.306244699125165, 48.8262448280743], [2.3064191914254, 48.826187881459425], [2.306437855730397, 48.82619257474566], [2.306512350473431, 48.82631429445388], [2.306587243945168, 48.82643555682933], [2.306661739372098, 48.82655727731745], [2.306736633540445, 48.82667853957306], [2.3068111296753, 48.82680025904248], [2.306886024540061, 48.82692152117827], [2.306900719078887, 48.82692852347062], [2.306919689187211, 48.826923454785764], [2.307057284636787, 48.82690864160695], [2.307243154081842, 48.826889079489106], [2.307380749348788, 48.826874265937654], [2.307566617187942, 48.82685470330856], [2.307782138540486, 48.826831899791465], [2.307968006065948, 48.82681233743713], [2.308183525705716, 48.826789533187934], [2.308369394303634, 48.82676996931763], [2.3085849135926892, 48.82674716434423], [2.3087707805149362, 48.82672760074077], [2.308773068513179, 48.82672722183597], [2.308955942914531, 48.8266857479542], [2.3091529960858033, 48.82664085171962], [2.309335868531807, 48.82659937634654], [2.309532921049458, 48.82655447948249], [2.309715794240526, 48.826513004432464], [2.309912846104451, 48.82646810693895], [2.31009571870222, 48.82642663040545], [2.310292768550545, 48.82638173227465], [2.310475640531105, 48.82634025605628], [2.310626445875113, 48.82630589407807], [2.3106314758468383, 48.82630077592408], [2.310622936455709, 48.826285228589335], [2.310565586825652, 48.826177119020684], [2.310506798309853, 48.82606659077894], [2.310449449161116, 48.82595848113353], [2.31039066112606, 48.82584795371248], [2.310333312458739, 48.82573984399033], [2.310274524916414, 48.825629316490634], [2.310217176730299, 48.82552120669175], [2.310158389692701, 48.82541067821415], [2.310165721739835, 48.82539947645612], [2.310343245070447, 48.825347523266345], [2.310527477712786, 48.825294961840775], [2.310705000327054, 48.82524300810918], [2.310889233609198, 48.825190445229985], [2.310892208351755, 48.825175099154876], [2.310744543106127, 48.82509903385815], [2.310579694989837, 48.82501464447634], [2.310432032004721, 48.82493857969006], [2.310267184901578, 48.82485418986539], [2.310119521476699, 48.82477812377519], [2.309954675386704, 48.824693733507736], [2.3098070128602908, 48.824617667920045], [2.309642169145352, 48.824533277217625], [2.3094945075413102, 48.82445721033392], [2.309329663477492, 48.824372819180795], [2.3091820027718972, 48.82429675279969], [2.3090171597212112, 48.824212361203685], [2.30886949993789, 48.824136293526514], [2.30870465926234, 48.82405190149565], [2.308557000389272, 48.823975833421756], [2.3084093419351293, 48.82389976605971], [2.308244501390295, 48.82381537336885], [2.308239745233566, 48.823805808810775], [2.308282104995606, 48.823707320604505], [2.308324405819537, 48.82359724619596], [2.308317437471057, 48.82358903050789], [2.308296409234796, 48.82358547683363], [2.30824372690257, 48.82359707810838], [2.308066337154712, 48.82363607251638], [2.307870139527259, 48.823679277536506], [2.307692749220236, 48.823718271387456], [2.307496550974002, 48.82376147579149], [2.3073191601079213, 48.823800469085434], [2.307122961230858, 48.82384367377265], [2.306945569805722, 48.82388266650956], [2.306829344921868, 48.8239082593082], [2.306651953057411, 48.82394725160737], [2.30651429535527, 48.82397756390024], [2.306376637492966, 48.82400787603392], [2.30619098467966, 48.82404977690061], [2.306012749539052, 48.82409024194331], [2.305827097489959, 48.82413214314924], [2.305648861785472, 48.82417260764663], [2.30546320915066, 48.824214508284555], [2.305284972882096, 48.824254972236645], [2.305099319661569, 48.82429687230654], [2.304921082829136, 48.82433733571328], [2.304735427660887, 48.82437923520732], [2.304557191626399, 48.82441969807667], [2.304371535884544, 48.824461596103376], [2.304140203143123, 48.824514112373706], [2.303954546717979, 48.82455601064886], [2.303760657786387, 48.82460002551687], [2.30357500212425, 48.82464192230815], [2.303381111178727, 48.82468593744888], [2.303195454905679, 48.82472783364775], [2.303001564682279, 48.82477184817762], [2.302815906436302, 48.82481374377608], [2.302622015573009, 48.82485775768727], [2.302436358078156, 48.82489965270124], [2.302355348441113, 48.824918041059114], [2.302334931040402, 48.824922676075694], [2.302149271721772, 48.82496457063361], [2.30202376948437, 48.824993059093906], [2.302009776211505, 48.82499623497929], [2.301906705173808, 48.82501963153168], [2.301721046515716, 48.82506152632841], [2.301672389609898, 48.82507257081233], [2.301500177932484, 48.82511005227905], [2.301314517275871, 48.82515194553401], [2.301300721010592, 48.825154948906906], [2.301268744671375, 48.825161908560744], [2.301250750487838, 48.82519051347458], [2.301252258632406, 48.82519272846939], [2.30137948917955, 48.82529677565956], [2.301500303884422, 48.82539630361057], [2.30162753542336, 48.82550035051798], [2.301748351061535, 48.82559987909967], [2.301869165810975, 48.82569940664329], [2.301996398825602, 48.82580345313015], [2.302117215882345, 48.82590298041301], [2.302244449888891, 48.82600702661715], [2.302365267890901, 48.826106553631384], [2.302492502889172, 48.826210599552695], [2.302613320474395, 48.82631012629036], [2.302740556464598, 48.8264141719289], [2.302861376357065, 48.82651369840583], [2.302988613339114, 48.826617743761595], [2.303109434176975, 48.8267172699699], [2.303236672150775, 48.82682131504284], [2.30335749257186, 48.82692084097451], [2.303457734143313, 48.82700280974066], [2.303481595359494, 48.82701156477349]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 57, "roussel_fabien": 17.0, "nb_emargement": 1017.0, "nb_procuration": 15.0, "nb_vote_blanc": 13.0, "jadot_yannick": 29.0, "le_pen_marine": 146.0, "nb_exprime": 1001.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1559.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1017, "quartier_bv": "56", "geo_point_2d": [48.825441052935645, 2.306375610602297], "melenchon_jean_luc": 432.0, "poutou_philippe": 10.0, "macron_emmanuel": 227.0}, "geometry": {"type": "Point", "coordinates": [2.306375610602297, 48.825441052935645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e3f48a4f6dcdced22d0690fac150fdf4d4320b84", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 100, "zemmour_eric": 125.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "17-11", "geo_shape": {"coordinates": [[[2.315366195202698, 48.8862419497477], [2.315352267516051, 48.88625191383203], [2.315251217878489, 48.886342543380074], [2.315119262865535, 48.8864608914923], [2.315018212428647, 48.88655151992716], [2.314886256356583, 48.88666986776011], [2.314785205096907, 48.8867604968804], [2.314653247977555, 48.886878843534774], [2.314552195906811, 48.886969472441145], [2.314552989483401, 48.88698077346896], [2.314612451063847, 48.88702489953601], [2.314697813495614, 48.887088245008485], [2.3146979228846902, 48.88708832657429], [2.314717187853936, 48.887102976302835], [2.314731010971828, 48.88711455964481], [2.314739230636309, 48.88711442322411], [2.31488081217344, 48.88704094428307], [2.3150392028870233, 48.886958739804605], [2.315214520670261, 48.88686775103948], [2.31537291169388, 48.88678554611444], [2.31554822695909, 48.886694555939286], [2.315706616929096, 48.886612350559794], [2.315708498066174, 48.88661116610086], [2.315813899374441, 48.88653078734199], [2.315922067800191, 48.88644829737962], [2.316027467085501, 48.88636791841305], [2.316135636198255, 48.88628542825327], [2.3162438036047748, 48.886202937981814], [2.316366240187217, 48.886109566241835], [2.316390267716633, 48.88610351513503], [2.316390195661978, 48.88609040967828], [2.316484062838907, 48.886016303830665], [2.316564263116545, 48.88595349193225], [2.316565119768831, 48.885952745880886], [2.316675562032576, 48.885845298268684], [2.316789852234075, 48.88573410610617], [2.316900293558512, 48.88562665916452], [2.317014582800292, 48.88551546676537], [2.317125023197437, 48.88540801959513], [2.317239311479407, 48.88529682695935], [2.317349750949169, 48.88518937956044], [2.317464039635143, 48.88507818669582], [2.317574478177427, 48.88497073906821], [2.317688764540107, 48.88485954595921], [2.317799202155129, 48.88475209810298], [2.31791348755803, 48.88464090475736], [2.317990887080605, 48.88456559946248], [2.31810517166502, 48.88445440591505], [2.318182571996694, 48.884379100491266], [2.318296855762529, 48.88426790674203], [2.318442273720015, 48.884126419845366], [2.318556556364934, 48.88401522672191], [2.318655961254687, 48.883918508103804], [2.318770244350741, 48.88380731476313], [2.31886964844665, 48.88371059594928], [2.318983929266606, 48.883599402375886], [2.319083332568884, 48.88350268336634], [2.31909763344225, 48.88349472826379], [2.319096101330153, 48.88348602480421], [2.3191316185299042, 48.88342971723503], [2.319166145557331, 48.883374981451446], [2.319165541537588, 48.88336517169454], [2.319148531818049, 48.883359517989845], [2.319147181414137, 48.883359131691414], [2.319146893367595, 48.883359051811446], [2.318969653720788, 48.88331137289504], [2.31878972725884, 48.88326302371088], [2.318612488277631, 48.883215343362295], [2.318432562479071, 48.88316699363713], [2.318255324139934, 48.883119313654944], [2.318075399004762, 48.88307096338886], [2.317898159955915, 48.883023282866034], [2.317718235484134, 48.88297493205896], [2.317717468871489, 48.882974743326955], [2.317698946939416, 48.882975039775566], [2.317691783189196, 48.88298799251318], [2.317584398876587, 48.883092785008564], [2.317477900903785, 48.88319671369736], [2.317370515718606, 48.883301506880265], [2.317264016903907, 48.883405434459846], [2.317156629494374, 48.88351022742327], [2.317050129825983, 48.88361415479283], [2.316942742919204, 48.88371894755234], [2.316836242397116, 48.883822874711925], [2.316729741449945, 48.883926801767004], [2.316622351890257, 48.88403159420155], [2.316515850089372, 48.88413552104665], [2.316408461032332, 48.88424031327722], [2.316301958377727, 48.8843442399123], [2.316194568459854, 48.88444903193119], [2.316088063587931, 48.884552958348486], [2.315980672809213, 48.884657750155625], [2.315874168435326, 48.884761677270006], [2.315766776807571, 48.88486646796614], [2.315755164948952, 48.88487042341702], [2.315620566917842, 48.88486838156992], [2.3154850567844623, 48.88486632536348], [2.315470413346151, 48.884869043961004], [2.31546585009327, 48.884879136252195], [2.315459382113132, 48.88497260727977], [2.3154535336493263, 48.885057124499234], [2.315458455582284, 48.885064458809225], [2.315598313963511, 48.8851408849337], [2.315739981657607, 48.88521829880059], [2.315879840876996, 48.885294723686215], [2.316021509408224, 48.88537213720913], [2.3161613694539582, 48.885448561755275], [2.316303038822222, 48.88552597493425], [2.316304708122018, 48.88553873967882], [2.31618865515957, 48.88562835088028], [2.316077212856378, 48.885714401769285], [2.315961159110965, 48.885804012735925], [2.315849716055811, 48.88589006339942], [2.315738271268819, 48.885976113944665], [2.315622216356877, 48.88606572456144], [2.31551077218164, 48.886151774888944], [2.315394716486717, 48.8862413852709], [2.315377936833792, 48.88624329303599], [2.315366195202698, 48.8862419497477]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 11, "roussel_fabien": 18.0, "nb_emargement": 1219.0, "nb_procuration": 83.0, "nb_vote_blanc": 10.0, "jadot_yannick": 106.0, "le_pen_marine": 49.0, "nb_exprime": 1206.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1445.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1219, "quartier_bv": "67", "geo_point_2d": [48.88468895276391, 2.3169954893528697], "melenchon_jean_luc": 189.0, "poutou_philippe": 3.0, "macron_emmanuel": 572.0}, "geometry": {"type": "Point", "coordinates": [2.3169954893528697, 48.88468895276391]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5b0eab7c96cf48269a124efeac70f9b48bd2abb0", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 55, "zemmour_eric": 54.0, "hidalgo_anne": 42.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-56", "geo_shape": {"coordinates": [[[2.377109588606968, 48.84773087708227], [2.377092376178796, 48.84773465739637], [2.376961292250961, 48.847808807555786], [2.376787980363857, 48.84790394442345], [2.376656894203801, 48.84797809513033], [2.376483581198107, 48.84807323154257], [2.376352495552413, 48.84814738101243], [2.376179181427929, 48.848242516969286], [2.3760480949234, 48.84831666609439], [2.376014106759669, 48.84832959154896], [2.376023994872653, 48.84835278533924], [2.376056359414711, 48.848399324903646], [2.376124543242951, 48.84850992617075], [2.376210865882425, 48.84864995173782], [2.376279049003836, 48.8487605528849], [2.376365372473517, 48.84890057830899], [2.376433556250862, 48.84901117934308], [2.376434531280896, 48.849013969727494], [2.376447934300306, 48.849146484897986], [2.37646134238191, 48.84928165767084], [2.376474745538345, 48.84941417280644], [2.376488152395686, 48.84954934553671], [2.376501555678386, 48.84968186153672], [2.376514964047588, 48.84981703333928], [2.376528367467317, 48.849949549304434], [2.376541774601488, 48.850084721963654], [2.376542871271997, 48.850087712634824], [2.376612778258159, 48.850194089158315], [2.376685776005683, 48.85030732401642], [2.3767556835781702, 48.85041370043541], [2.376828681943855, 48.850526935183936], [2.376898590102675, 48.85063331149845], [2.376971589086529, 48.85074654613743], [2.377041497820836, 48.85085292324678], [2.377114497433617, 48.85096615687693], [2.377073718639918, 48.85098237126769], [2.377083146633887, 48.85099694041333], [2.377094696480285, 48.851022568261946], [2.377166073295209, 48.85102771990032], [2.377366366083348, 48.85097919449971], [2.377532455079928, 48.85093857241417], [2.377698543817563, 48.85089795009657], [2.377898835611074, 48.85084942379898], [2.378064923768228, 48.850808801868844], [2.37826521487801, 48.85076027495402], [2.378355253114356, 48.85073825265868], [2.378369694835437, 48.850737647780164], [2.378387247732863, 48.85073053425385], [2.378463297071868, 48.85071193318751], [2.378681958521319, 48.85065692852636], [2.378848045465192, 48.850616304602866], [2.378850281178681, 48.850615897110806], [2.379060400186553, 48.85058763555501], [2.379301193818077, 48.850557977783936], [2.379364985046201, 48.85054939700393], [2.379382101442356, 48.850540470668534], [2.379366816739623, 48.85050430392244], [2.379289399536161, 48.85040920757447], [2.3792078258067493, 48.850309681867735], [2.37913040918256, 48.85021458540027], [2.379048836061353, 48.85011505956776], [2.379047986812408, 48.8501077613996], [2.379082466141212, 48.85004392701998], [2.37913465376145, 48.84997797120968], [2.379137075683373, 48.84996433428078], [2.3790929987218, 48.849943637150595], [2.379006101161774, 48.84983593368297], [2.37892346164161, 48.84973425183583], [2.378836564781133, 48.849626548224805], [2.378753924571959, 48.84952486533504], [2.378671286047964, 48.849423182385955], [2.37858439022738, 48.84931547856174], [2.378501752366125, 48.84921379547643], [2.378414857245074, 48.8491060915088], [2.3784133516870263, 48.849100814367034], [2.378432726366837, 48.848992102076366], [2.378450270633497, 48.84887917847675], [2.378469645153893, 48.84877046615848], [2.378487189266039, 48.84865754253094], [2.37850656362702, 48.84854883018503], [2.378524108957828, 48.84843590563744], [2.378518731659338, 48.84842779519856], [2.378345560357517, 48.84834203505735], [2.378174513633668, 48.84825768329669], [2.37800134347432, 48.84817192174484], [2.377830299228516, 48.848087569486296], [2.377657130190169, 48.84800180832245], [2.377486087059956, 48.84791745555891], [2.377312919163982, 48.8478316929845], [2.377141875786621, 48.84774733970888], [2.377109588606968, 48.84773087708227]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 56, "roussel_fabien": 29.0, "nb_emargement": 1234.0, "nb_procuration": 92.0, "nb_vote_blanc": 7.0, "jadot_yannick": 122.0, "le_pen_marine": 31.0, "nb_exprime": 1225.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1488.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1234, "quartier_bv": "48", "geo_point_2d": [48.849435466687005, 2.3775814524096512], "melenchon_jean_luc": 408.0, "poutou_philippe": 9.0, "macron_emmanuel": 448.0}, "geometry": {"type": "Point", "coordinates": [2.3775814524096512, 48.849435466687005]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b7bdb9c6f41a7a0595114856ae0a24ea6774fa96", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 123, "zemmour_eric": 139.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-4", "geo_shape": {"coordinates": [[[2.295047376129512, 48.84288468586583], [2.294989556361845, 48.84290604057833], [2.294815814693217, 48.84297383256108], [2.29463031072958, 48.843046356660636], [2.29445656812582, 48.843114148113116], [2.29427106316297, 48.843186671646514], [2.294097319624179, 48.843254462568716], [2.293911813662012, 48.843326985535946], [2.293738069188191, 48.84339477592787], [2.293552562226708, 48.8434672983289], [2.293378816817856, 48.84353508819055], [2.293193307482345, 48.84360761091666], [2.293126384865119, 48.843633721657966], [2.293113894319446, 48.843639718582914], [2.293144112941059, 48.843681998325174], [2.293245940281232, 48.84379764431551], [2.293346773566803, 48.843911868728725], [2.293447605931833, 48.84402609303719], [2.293549435980257, 48.84414173874155], [2.2936502692341882, 48.844255962855684], [2.293752100169156, 48.84437160926299], [2.293852934324184, 48.84448583228347], [2.293954766158099, 48.844601478494404], [2.294055601189862, 48.844715702219816], [2.294157433934815, 48.844831347335116], [2.294258269855511, 48.84494557086616], [2.294360103487048, 48.845061216684435], [2.294460940308862, 48.845175439121796], [2.294562774839378, 48.84529108474371], [2.294663612537969, 48.84540530788602], [2.294765447979545, 48.845520952412286], [2.294783943454752, 48.84552425868496], [2.294927649004882, 48.84547054028797], [2.295070858562749, 48.84541710119583], [2.295214563533726, 48.845363381549774], [2.295357772490778, 48.84530994300834], [2.295501476870538, 48.845256223012484], [2.295644685238939, 48.84520278412247], [2.295663218054431, 48.845206146241026], [2.295748377364156, 48.84530438616331], [2.295849892486813, 48.84542322602276], [2.295935051152722, 48.84552146488571], [2.296036568474309, 48.845640305470944], [2.296121727846815, 48.84573854418186], [2.296164816473196, 48.8457889849745], [2.296189615512568, 48.845812490984706], [2.296212641059234, 48.84580476868583], [2.296352203038276, 48.84575299562849], [2.296526019100081, 48.845684266638074], [2.296665580445112, 48.845632493209614], [2.296839395691748, 48.845563763756466], [2.29697878569501, 48.84551100774591], [2.297152600123323, 48.84544227783025], [2.29729199084717, 48.84538952145706], [2.297465804469487, 48.84532079017959], [2.297605193176572, 48.84526803432699], [2.297656846318698, 48.84523845076142], [2.297655531476105, 48.84523611728267], [2.297625996973503, 48.84521563711102], [2.297486964214531, 48.845103309306374], [2.297348892973526, 48.84499116414772], [2.297209861410629, 48.8448788359984], [2.297071791360481, 48.84476669049742], [2.296932762356187, 48.84465436201147], [2.296794692146678, 48.844542215260795], [2.296655664338432, 48.844429886430206], [2.29651759530763, 48.84431774023645], [2.296517102310084, 48.84431731643391], [2.296409822498763, 48.84421927604365], [2.296305109303113, 48.84411959041258], [2.296197830297582, 48.84402154981484], [2.296093119255048, 48.843921864887875], [2.295985839692875, 48.8438238240746], [2.295881129465214, 48.84372413804514], [2.295880746111358, 48.843723768847056], [2.295836594099089, 48.843678860789794], [2.295838995291498, 48.843652820258235], [2.295771944939938, 48.843631303034556], [2.295715783341643, 48.84357418007512], [2.295604989262313, 48.843462057482355], [2.295504677923562, 48.84336002715059], [2.29539388475353, 48.84324790434078], [2.2952935728898822, 48.843145872905126], [2.295182780629346, 48.84303374987828], [2.295082470941481, 48.84293171915335], [2.295050939579329, 48.84288526807018], [2.295049395107086, 48.84288501524023], [2.295047376129512, 48.84288468586583]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 4, "roussel_fabien": 19.0, "nb_emargement": 1369.0, "nb_procuration": 126.0, "nb_vote_blanc": 16.0, "jadot_yannick": 89.0, "le_pen_marine": 77.0, "nb_exprime": 1348.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1686.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1369, "quartier_bv": "59", "geo_point_2d": [48.84439866990758, 2.2952783839854702], "melenchon_jean_luc": 250.0, "poutou_philippe": 7.0, "macron_emmanuel": 590.0}, "geometry": {"type": "Point", "coordinates": [2.2952783839854702, 48.84439866990758]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "13f38908f60b2379d19dc751e7a2a8f4ae4d3952", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 51, "zemmour_eric": 85.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "5-24", "geo_shape": {"coordinates": [[[2.3511861827964893, 48.84724500447288], [2.351202627762456, 48.847219277558786], [2.351266726961891, 48.847136427257496], [2.351333086718121, 48.84703868229827], [2.351421413946367, 48.84692451537425], [2.351483410267904, 48.846833197764255], [2.351487774516534, 48.846826769418776], [2.3514940124248, 48.84682275161894], [2.351596077149818, 48.84679041705766], [2.351759262094181, 48.8467500585484], [2.35176103798321, 48.84674959420851], [2.352005074084421, 48.84669849887729], [2.352168258424231, 48.84665813980682], [2.35217073062797, 48.8466577853557], [2.352373321121333, 48.84664149218523], [2.352578243062979, 48.846624756213025], [2.352780831937836, 48.84660846234459], [2.352985753618734, 48.8465917256739], [2.353188343600479, 48.84657543112235], [2.353393263646863, 48.846558694645104], [2.353595853372684, 48.84654239940303], [2.353800773169461, 48.846525661328], [2.35400336263955, 48.846509365395384], [2.3542082835381493, 48.846492626629235], [2.354410871389692, 48.84647632999873], [2.354615792016365, 48.84645959143341], [2.354627594043051, 48.8464520006532], [2.3546589291885223, 48.84631417650487], [2.35468997405806, 48.84617557102183], [2.354721308872355, 48.84603774682298], [2.354752352048742, 48.84589914128206], [2.35478368789445, 48.84576131704005], [2.354814730751412, 48.84562271054928], [2.354846066254813, 48.845484887156054], [2.3548771087812232, 48.845346280614706], [2.35490844396459, 48.84520845627164], [2.35493948614932, 48.84506985057906], [2.3549708196389663, 48.84493202617814], [2.355001862855714, 48.84479342044234], [2.355015709425032, 48.844785745305664], [2.355196774350465, 48.84478896075822], [2.355383796001, 48.844792120795205], [2.355564860971289, 48.84479533569067], [2.355751882667016, 48.8447984951522], [2.355932949033594, 48.844801710397164], [2.356119969411953, 48.84480486927596], [2.3563010358344902, 48.844808083064535], [2.356488057620579, 48.84481124137521], [2.356669122725394, 48.84481445459936], [2.356856144545554, 48.84481761323389], [2.3568930914533333, 48.84478663283121], [2.356843530166103, 48.84475891971961], [2.35668898959575, 48.844680566635965], [2.35652812349402, 48.84459863044524], [2.356373585235695, 48.84452027695023], [2.356212718762138, 48.8444383403163], [2.356058181453186, 48.844359986402615], [2.355897317332687, 48.844278049340126], [2.355742779610767, 48.844199695000405], [2.355581916469861, 48.84411775840134], [2.355427379697307, 48.84403940364298], [2.355266517558125, 48.843957465708755], [2.355111983097567, 48.84387911053903], [2.354951121948885, 48.843797172168955], [2.354947769836397, 48.843785512762196], [2.3549291086329482, 48.84377233902379], [2.354923811915555, 48.84376542855033], [2.354921877637732, 48.843710446459106], [2.354919012267753, 48.84365506002792], [2.354905033267037, 48.84364637686081], [2.354753455571568, 48.84364903633049], [2.3546872329452873, 48.843651179355], [2.354674384387975, 48.84365717623916], [2.354677306203817, 48.843689385540365], [2.354654283923054, 48.84381691489647], [2.354633453539061, 48.84394007616979], [2.35461262305662, 48.84406323742586], [2.354589600441197, 48.844190767626074], [2.354568769754927, 48.84431392884681], [2.354545746921454, 48.84444145900992], [2.354524916031353, 48.844564620195364], [2.354501892979928, 48.84469215032137], [2.354481063248546, 48.84481531147887], [2.354458039978967, 48.84494284156776], [2.354437208681197, 48.84506600268253], [2.354414185193558, 48.84519353273432], [2.354398544757654, 48.84520135370845], [2.354199053455187, 48.84518072040935], [2.354031047441533, 48.84516260231769], [2.3540264955150922, 48.845161562361646], [2.353863679914536, 48.84510134782265], [2.353694782256865, 48.84503923762422], [2.353531967432871, 48.84497902172788], [2.3533630705668482, 48.84491691105431], [2.353200255134551, 48.84485669559189], [2.353031360422933, 48.84479458445057], [2.352868545767211, 48.84473436763082], [2.352699650473619, 48.84467225690634], [2.352536837945761, 48.844612039635926], [2.352367943455086, 48.844549927537024], [2.35234804949974, 48.84455571964696], [2.352303291974434, 48.84468101282088], [2.35225865027214, 48.844804095963624], [2.352213890967128, 48.84492938816952], [2.352169248829867, 48.84505247215078], [2.352124490459178, 48.84517776430269], [2.352079847909102, 48.8453008473239], [2.352035089098995, 48.8454261403137], [2.351990446125124, 48.84554922327412], [2.351945685535378, 48.845674515295904], [2.351901042126316, 48.845797599094844], [2.351856282470996, 48.84592289106265], [2.351811638638023, 48.8460459748008], [2.351766878554345, 48.846171266707216], [2.351722234308744, 48.84629434948526], [2.3517119666588018, 48.84630103094978], [2.3516515431919363, 48.84630970879959], [2.351558066678353, 48.84632355686408], [2.351544380512179, 48.84632034751592], [2.351426446515838, 48.846221556624414], [2.351304692440904, 48.8461193426144], [2.351186760716364, 48.84602055147621], [2.351065006229629, 48.84591833629716], [2.350947075403194, 48.8458195458042], [2.350825323218729, 48.845717330370164], [2.350707391950109, 48.845618538716394], [2.350585640694114, 48.84551632391935], [2.350467711697153, 48.8454175320189], [2.350345960029563, 48.84531531605279], [2.350327178921055, 48.84530076943545], [2.350311195224426, 48.84529803491808], [2.350227534240819, 48.845324202528346], [2.350088889545992, 48.845362595889426], [2.350082230800679, 48.84537523350326], [2.350173717948539, 48.84548465380852], [2.350265273741484, 48.845593626522394], [2.350356763019608, 48.845703046673655], [2.3504483182275893, 48.84581201831937], [2.350440112288314, 48.845825033372996], [2.350274263566522, 48.84585601510054], [2.350070796824883, 48.845893917871926], [2.349904946301848, 48.8459248990782], [2.3497014790226842, 48.84596280121912], [2.349535629423376, 48.845993781918935], [2.349332161606694, 48.84603168342943], [2.349166310206152, 48.84606266360797], [2.349112442269484, 48.84605847092429], [2.349103212613865, 48.846069302965304], [2.349092016907687, 48.84614088236816], [2.349074968073977, 48.84627130291389], [2.3490561972715343, 48.8463913174749], [2.349055981813375, 48.8463923118938], [2.349022089990764, 48.84650387921915], [2.348982218976694, 48.84664312505431], [2.3489483268217253, 48.84675469323294], [2.348908455418677, 48.84689393901212], [2.348874562953916, 48.847005506245445], [2.348871018659549, 48.84700997475842], [2.348765961992134, 48.84708200731566], [2.348654554833894, 48.84715960731217], [2.348651547219886, 48.847162891585945], [2.34860861906887, 48.84724603205161], [2.348564963641643, 48.847341229839984], [2.348549251650612, 48.84737165773905], [2.348550332078651, 48.84737799510924], [2.348604219159466, 48.84739166378402], [2.348798825745516, 48.84745005911914], [2.348994204652299, 48.84750993328326], [2.349188812116982, 48.84756832797783], [2.349384191915218, 48.847628201498715], [2.349578801621058, 48.84768659556016], [2.349774180948115, 48.84774646843044], [2.349968791532686, 48.84780486185132], [2.350164171739971, 48.84786473497766], [2.350358783214383, 48.84792312685872], [2.3505541656757503, 48.84798299934921], [2.350582759626143, 48.847987131524235], [2.350602321759276, 48.84797309529766], [2.350698377152304, 48.847855771915555], [2.350786707155893, 48.84774160554385], [2.350882761718339, 48.847624281090035], [2.350971090925635, 48.847510114558446], [2.351059419757125, 48.847395947050664], [2.351155473057319, 48.84727862324081], [2.351179703184789, 48.847247305867455], [2.3511861827964893, 48.84724500447288]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 24, "roussel_fabien": 20.0, "nb_emargement": 1228.0, "nb_procuration": 91.0, "nb_vote_blanc": 15.0, "jadot_yannick": 118.0, "le_pen_marine": 58.0, "nb_exprime": 1211.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1501.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1228, "quartier_bv": "17", "geo_point_2d": [48.846005328401624, 2.3522339257893967], "melenchon_jean_luc": 310.0, "poutou_philippe": 9.0, "macron_emmanuel": 487.0}, "geometry": {"type": "Point", "coordinates": [2.3522339257893967, 48.846005328401624]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e862ebe7572f41c1883ea669a1a955e78be8eb55", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 31, "zemmour_eric": 58.0, "hidalgo_anne": 47.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "20-47", "geo_shape": {"coordinates": [[[2.397301825358641, 48.85687542299192], [2.3973173465999, 48.856876351048555], [2.397416301551877, 48.8568964497603], [2.397546633926048, 48.856921154535215], [2.397713251170427, 48.85695499389905], [2.397843585194712, 48.85697969835615], [2.397845904428474, 48.85698032967665], [2.397979112255366, 48.857026095857016], [2.398159386919407, 48.857088473919084], [2.398292593924859, 48.85713424063847], [2.398472869338261, 48.85719661822225], [2.398606775938089, 48.857243105779865], [2.398787050741399, 48.85730548287733], [2.398920957901324, 48.85735197007881], [2.398923305287964, 48.857352999030574], [2.39908062620064, 48.85744207528401], [2.399278155078706, 48.85754967375441], [2.399314869076555, 48.85757046117581], [2.399322853104481, 48.85757271904093], [2.399362569500129, 48.85754280469142], [2.399463457601426, 48.857433909174325], [2.399563785926193, 48.85732529764628], [2.3996646731859, 48.8572164019382], [2.399765000672413, 48.85710779022018], [2.399865887079978, 48.85699889522042], [2.399966213728246, 48.85689028331243], [2.399966376626707, 48.8568901033606], [2.400060989660425, 48.856782420518506], [2.400154813921854, 48.85667585602394], [2.400249426177201, 48.85656817301209], [2.400343248304583, 48.8564616083424], [2.400437071411057, 48.85635504359577], [2.400531682500541, 48.856247360329625], [2.400625504825502, 48.856140796313966], [2.400720115136534, 48.85603311287806], [2.400726460523042, 48.8560225944138], [2.400715029454691, 48.85601385576605], [2.400604872450384, 48.855951407347746], [2.400492200988017, 48.85588755133778], [2.400487452068411, 48.85588072937822], [2.400487447235442, 48.855790533798995], [2.400489133948595, 48.855698545294146], [2.4004808865865632, 48.85569017421651], [2.400298072210714, 48.855638335282855], [2.400115235074691, 48.85558672888265], [2.39993242141531, 48.85553489028482], [2.399749585014783, 48.85548328242181], [2.39956677208202, 48.85543144326057], [2.399383936396374, 48.85537983573334], [2.399201122837968, 48.85532799510251], [2.3990182878773663, 48.8552763870118], [2.398835476398054, 48.855224546723626], [2.398652642162698, 48.85517293806943], [2.398634541858228, 48.8551614658539], [2.398612626691254, 48.85517149766252], [2.398569546391168, 48.8551970699473], [2.398402499175929, 48.855294399457485], [2.398285465525562, 48.8553638684161], [2.398285412012268, 48.85536389962419], [2.398154855509564, 48.855442209391995], [2.398035804264572, 48.85551343427203], [2.398032539914869, 48.8555164018866], [2.397944888323436, 48.85564505420111], [2.397857924950742, 48.85577272961289], [2.397770961141477, 48.85590040584604], [2.397683306895357, 48.856029057917596], [2.397596342240798, 48.85615673309511], [2.39750868712192, 48.85628538590838], [2.397421721611762, 48.856413060929476], [2.3973340669933743, 48.85654171359202], [2.397247100627408, 48.85666938845676], [2.397159443794171, 48.8567980400555], [2.397145805468825, 48.85683981256399], [2.397157429705159, 48.85684359981797], [2.397220783425895, 48.85685662673924], [2.397288443939055, 48.85687036961477], [2.397301825358641, 48.85687542299192]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 47, "roussel_fabien": 25.0, "nb_emargement": 1260.0, "nb_procuration": 53.0, "nb_vote_blanc": 18.0, "jadot_yannick": 98.0, "le_pen_marine": 68.0, "nb_exprime": 1238.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1624.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1260, "quartier_bv": "80", "geo_point_2d": [48.85631049924915, 2.3989594555688556], "melenchon_jean_luc": 565.0, "poutou_philippe": 17.0, "macron_emmanuel": 295.0}, "geometry": {"type": "Point", "coordinates": [2.3989594555688556, 48.85631049924915]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0d05dcf51759710d858716bf1f4054b0b3144f4c", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 35, "zemmour_eric": 53.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "19-40", "geo_shape": {"coordinates": [[[2.4018245067268422, 48.8776181818931], [2.401820948047982, 48.877629698013514], [2.401792095355899, 48.87774082608841], [2.401764056995636, 48.877854407089245], [2.401735204057578, 48.87796553512777], [2.401707165462708, 48.878079115192826], [2.401707083316594, 48.87807950059454], [2.401688489582152, 48.87818737573672], [2.401665884557552, 48.878312918821734], [2.401647292017884, 48.8784207939415], [2.4016246867926663, 48.8785463369921], [2.401617424789884, 48.87858846662716], [2.401609018217895, 48.878607980513216], [2.4016136029168402, 48.87861184356364], [2.401602272191052, 48.87867758991662], [2.401596111526616, 48.87871820608435], [2.401590301862775, 48.87872459465417], [2.40143211203812, 48.87879650915325], [2.401273281911158, 48.87886881234577], [2.401115092574071, 48.8789407264233], [2.40095626155684, 48.87901303008504], [2.400798071344068, 48.87908494373433], [2.400639239457251, 48.879157246066676], [2.400481047005132, 48.87922915928081], [2.400322215601848, 48.87930146118996], [2.40016402227404, 48.87937337397577], [2.400005189990828, 48.87944567545483], [2.399846995787126, 48.879517587812295], [2.399688161250148, 48.879589889753774], [2.39968697068751, 48.87959049892431], [2.399573991534024, 48.87965590886083], [2.399418922088961, 48.87974466094689], [2.399418893259463, 48.87974467788953], [2.39926871478969, 48.87983113944229], [2.399113642939164, 48.87991989111204], [2.398963463446901, 48.880006353167396], [2.398808391918059, 48.88009510443447], [2.398658210060673, 48.880181565187044], [2.398503137479546, 48.880270316943864], [2.398352954610131, 48.88035677729977], [2.398197880997381, 48.88044552774781], [2.398047698479532, 48.8805319877139], [2.397892622450978, 48.880620738644815], [2.397742438921092, 48.88070719821421], [2.397587363224514, 48.88079594784324], [2.397437177308683, 48.88088240790835], [2.397437114172309, 48.8808824435637], [2.397260991092819, 48.880984484104715], [2.397110804091453, 48.88107094374563], [2.396934679735131, 48.88117298378914], [2.396784491658847, 48.88125944210662], [2.396779737060859, 48.88125954495566], [2.396760861431938, 48.881271999058846], [2.3967601493008193, 48.881272382181315], [2.396665469091933, 48.8813198724873], [2.396568245238843, 48.88137328185752], [2.396566828973238, 48.881374181240766], [2.396556459673781, 48.88138683196996], [2.396576913335149, 48.88139836011259], [2.396658344676585, 48.88144837649181], [2.396750051029856, 48.88150295740859], [2.396754030430372, 48.88151209753368], [2.396699771956209, 48.881637721791265], [2.396645146826364, 48.88176484064305], [2.3965908891897563, 48.88189046482931], [2.396536263539451, 48.882017582702964], [2.39654293397557, 48.88202795947889], [2.396754708045318, 48.88210292167842], [2.396951305676987, 48.88217260534898], [2.396954499388671, 48.882173414641485], [2.397141903750509, 48.88220379339579], [2.397330412457162, 48.882234440916484], [2.397517818621427, 48.88226481908753], [2.3977063277702, 48.88229546601467], [2.397893734373346, 48.882325843595616], [2.398082243964231, 48.882356489929144], [2.398269651006252, 48.88238686692004], [2.398458161039243, 48.88241751265997], [2.398645567156688, 48.882447889053914], [2.39883407899522, 48.88247853420712], [2.399021485551525, 48.88250891001094], [2.399209996468604, 48.88253955456371], [2.399397404816936, 48.88256993068352], [2.399585916186572, 48.88260057374346], [2.399773324973657, 48.88263094927317], [2.399961836775003, 48.882661592638776], [2.400149246011295, 48.8826919666791], [2.400337758254712, 48.88272260945111], [2.400525166566283, 48.8827529828945], [2.400713679251762, 48.8827836250729], [2.400901089365714, 48.88281399793299], [2.401089602493249, 48.88284463951786], [2.401128953725513, 48.88286526004069], [2.401144926161553, 48.88285692044996], [2.401185202536034, 48.882822110264186], [2.401272521777028, 48.88274664119985], [2.401434090772661, 48.88262523793015], [2.4014620084020972, 48.8826011074022], [2.401464626280186, 48.88259958624023], [2.401464851056177, 48.88259948663947], [2.40146507720595, 48.88259938614626], [2.401530299344991, 48.88257047331711], [2.401687462417555, 48.88250049089455], [2.4018211941904832, 48.882441203788595], [2.401978356482123, 48.882371220975934], [2.402112088945045, 48.88231193444417], [2.402269250455661, 48.88224195124145], [2.402402980891927, 48.882182664370994], [2.402440841409629, 48.88216587946841], [2.402493604052398, 48.88214248783497], [2.402650764538864, 48.88207250412063], [2.402686852767233, 48.882056504401454], [2.402866180652043, 48.88197700191198], [2.403023340138428, 48.881907017698104], [2.403180499202524, 48.8818370332735], [2.403359824224771, 48.88175752912268], [2.40338616470418, 48.881745851336774], [2.403407660305179, 48.88173632127509], [2.403564818337692, 48.88166633633514], [2.403681563504771, 48.88161457709716], [2.403838720801712, 48.881544591789904], [2.403989210611219, 48.88147787091101], [2.4041463670822942, 48.88140788519126], [2.404296854739103, 48.881341163910626], [2.404454010384112, 48.881271177778295], [2.404604498615264, 48.88120445610948], [2.404608144278343, 48.88120330871285], [2.404803931771569, 48.88116385391061], [2.405018713684261, 48.88111996148056], [2.405214501916609, 48.881080506010704], [2.4054292831291573, 48.881036613740065], [2.405625069383967, 48.88099715668974], [2.40583984990674, 48.880953263679224], [2.405840735557968, 48.88095308281331], [2.406036521176759, 48.88091362598643], [2.406220110558591, 48.88087610575457], [2.406415895610715, 48.88083664740521], [2.406621728132357, 48.880794581024965], [2.406817513926967, 48.880755122922], [2.406943184022792, 48.8807294384152], [2.407052838582189, 48.88070702804529], [2.407248623721121, 48.88066756923417], [2.407377707491675, 48.88064118620817], [2.40748268610702, 48.88061972986646], [2.407678469228584, 48.88058027034251], [2.407823585628437, 48.880550610769134], [2.408019369595364, 48.88051115069199], [2.408164485618692, 48.880481489804346], [2.408228344373765, 48.88046843788098], [2.408424127725092, 48.88042897713897], [2.408501663119122, 48.88041312919363], [2.40871317646869, 48.88036989657657], [2.4089089590821082, 48.88033043503817], [2.409104740035442, 48.88029097317146], [2.409316253761846, 48.8802477385916], [2.40934489392706, 48.88021248419025], [2.409435634208812, 48.880101197666605], [2.409527061966978, 48.8799886518005], [2.409617802832961, 48.879877365122915], [2.409709229814712, 48.87976481819554], [2.4097999698912522, 48.87965353225653], [2.409891394722929, 48.87954098516044], [2.409982134030423, 48.87942969816149], [2.410073710162699, 48.87931696549206], [2.410164448680232, 48.87920567923157], [2.410256024034056, 48.87909294550047], [2.410346760408268, 48.878981659072444], [2.410438334963488, 48.87886892607825], [2.410529071931381, 48.878757638596845], [2.410620645698084, 48.878644905440304], [2.410711381886127, 48.878533617798105], [2.410756694840083, 48.878477833381126], [2.410788914398195, 48.87843816881254], [2.410801364258189, 48.87842468890295], [2.410782849554016, 48.878425033952134], [2.410591433313845, 48.878368591435375], [2.410401171507483, 48.878313790171504], [2.410209756089903, 48.87825734703876], [2.410019495091438, 48.878202545162765], [2.409828080506544, 48.87814610051481], [2.409637820305991, 48.87809129892596], [2.4094464065435, 48.87803485366206], [2.409256148514274, 48.87798005146781], [2.409064734210963, 48.87792360558123], [2.408874477000046, 48.87786880187564], [2.408683064872367, 48.87781235627912], [2.408492807106034, 48.877757551954666], [2.408301395800865, 48.87770110574222], [2.408111138842549, 48.87764630080569], [2.408110001827901, 48.87764593005638], [2.4079095131953983, 48.87757630362471], [2.407715177181389, 48.87750546891448], [2.407520843059407, 48.87743463389095], [2.407320356027889, 48.877365006459236], [2.407126022977221, 48.8772941698865], [2.406925537014223, 48.87722454178471], [2.406923144693696, 48.87722389410673], [2.406687001000554, 48.87717661714296], [2.406445655829435, 48.877132476861696], [2.406429793482207, 48.87712875412829], [2.406399303596459, 48.87716035107948], [2.40635358603799, 48.877189956937634], [2.406294244207842, 48.8772271413095], [2.406280529409002, 48.877229149842734], [2.406060198435928, 48.877180548907795], [2.405848298340209, 48.877132409394484], [2.40584201333789, 48.87713200228086], [2.405657516447651, 48.87714862156589], [2.40547558594784, 48.87716507974177], [2.405291088813238, 48.877181699360875], [2.405109158081995, 48.877198156979446], [2.404924660713298, 48.87721477603328], [2.404742729750833, 48.877231233094456], [2.404560798673296, 48.87724768987893], [2.404376300954165, 48.87726430808696], [2.404194369645416, 48.87728076431401], [2.404009871692209, 48.877297381956836], [2.404008687376, 48.87729745430236], [2.403789137283591, 48.877304545861435], [2.403572298426977, 48.877311692794514], [2.4033527482151342, 48.877318783553186], [2.403135907876055, 48.87732592968892], [2.40313242350951, 48.877326348491344], [2.402967283377031, 48.877361297651426], [2.402803646569994, 48.877396040042676], [2.402638505995825, 48.87743098874704], [2.402474868750516, 48.877465730686694], [2.402311231297219, 48.87750047150232], [2.402146090051184, 48.87753542042334], [2.402145308042578, 48.877535603578494], [2.401994711512034, 48.87757428519897], [2.4018426018846952, 48.87761434043966], [2.4018245067268422, 48.8776181818931]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 40, "roussel_fabien": 16.0, "nb_emargement": 1075.0, "nb_procuration": 40.0, "nb_vote_blanc": 9.0, "jadot_yannick": 67.0, "le_pen_marine": 94.0, "nb_exprime": 1060.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1508.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1075, "quartier_bv": "75", "geo_point_2d": [48.879844696064836, 2.4036614840638246], "melenchon_jean_luc": 503.0, "poutou_philippe": 14.0, "macron_emmanuel": 243.0}, "geometry": {"type": "Point", "coordinates": [2.4036614840638246, 48.879844696064836]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "21fdc95bc008f32fc53fda83d60902208793bf6c", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 57, "zemmour_eric": 66.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-12", "geo_shape": {"coordinates": [[[2.363902290395071, 48.82885133873582], [2.363930204387325, 48.82885393079513], [2.364110932491756, 48.828893656614284], [2.364283780603229, 48.82893125192862], [2.364456628974856, 48.82896884609259], [2.364637357867828, 48.829008572011524], [2.364810206750776, 48.82904616566186], [2.36499093619217, 48.82908589014443], [2.365000246486705, 48.82909408789001], [2.365007461242886, 48.82922165266402], [2.365010662302613, 48.82933450756978], [2.365009798196502, 48.82933801233127], [2.364943961727526, 48.82945345959067], [2.364878914157237, 48.82956953965384], [2.364813078468195, 48.82968498682464], [2.364748030317594, 48.82980106679266], [2.364682192684159, 48.8299165138603], [2.364617143953337, 48.830032593733144], [2.364551307099832, 48.83014804071214], [2.364486256426407, 48.830264120482596], [2.364420418990658, 48.83037956736571], [2.364355369099071, 48.83049564704822], [2.36428952971889, 48.830611093828175], [2.364224479246959, 48.830727173415525], [2.364158640646703, 48.830842620106814], [2.364093589594423, 48.830958699599], [2.36409279556487, 48.83096103104301], [2.36407537269895, 48.83106619085891], [2.36405854694001, 48.83119219135434], [2.364080541767979, 48.831209525852934], [2.3641144191788213, 48.831198421572516], [2.364166233525704, 48.83116765976638], [2.3643638489872, 48.83105125238648], [2.364515745220054, 48.830961072035535], [2.364516966796624, 48.83096043187872], [2.3647225030147903, 48.830863520268], [2.364930235518173, 48.83076685379838], [2.364932188674177, 48.830766097006205], [2.365124365613432, 48.83070449051138], [2.365329951631668, 48.8306393411923], [2.365522128995782, 48.83057773405858], [2.365727714028098, 48.83051258314912], [2.36574406650959, 48.830514929090164], [2.365831346271773, 48.83058397434633], [2.365920508191, 48.830645797671195], [2.36594518091909, 48.83066531531299], [2.365945624925106, 48.83067573867637], [2.365973287503371, 48.83068564979425], [2.366035893679185, 48.83073517724899], [2.366036775129748, 48.83073595538015], [2.366168285382284, 48.830854407008204], [2.366299251522027, 48.83098427310179], [2.366381088625749, 48.83106524621206], [2.366383924042053, 48.83106520097567], [2.366412346749885, 48.83104352922452], [2.366414869084053, 48.83101443446133], [2.366415468717989, 48.83099782626496], [2.366417118980384, 48.83099374467018], [2.366521107865291, 48.83086745188227], [2.366625269922346, 48.83074065536249], [2.366729257798148, 48.83061436236504], [2.366833417481068, 48.830487565628125], [2.366937404358702, 48.830361271521845], [2.367041564391866, 48.83023447458228], [2.367058043922427, 48.83021446085354], [2.367062534311531, 48.83021330194462], [2.367074566740464, 48.83019559315009], [2.367162074364249, 48.83008931345572], [2.36724938286185, 48.829977412464764], [2.367250776728346, 48.82997211264957], [2.367231867067876, 48.829877881707326], [2.367215359466623, 48.82977834458062], [2.367219156983715, 48.82977108066403], [2.367341441692671, 48.82968844490651], [2.367501404766309, 48.82958214706493], [2.367623688595614, 48.82949951010561], [2.367783650503231, 48.82939321276793], [2.367905933441979, 48.82931057550608], [2.368065894194296, 48.829204277773016], [2.368188176242491, 48.82912164020866], [2.368204158419266, 48.829115848144035], [2.3682023990757193, 48.82909702489006], [2.368111457779307, 48.82897273959352], [2.368025260246398, 48.82885540984034], [2.367939063090569, 48.82873808091211], [2.367848123048077, 48.82861379537552], [2.367761926701287, 48.82849646539503], [2.367670986140415, 48.82837217968976], [2.367663924776552, 48.828367780397485], [2.367620266677454, 48.828355866705], [2.367552650124764, 48.828339146864444], [2.367522561796413, 48.82831738661544], [2.36749757119749, 48.82832276490468], [2.367487376359746, 48.82833041681028], [2.367471423035397, 48.82841849702203], [2.367466734523814, 48.82848247876273], [2.367458955667706, 48.828490173122354], [2.36729327160771, 48.82854194685611], [2.367133136527878, 48.82859138707256], [2.366967450471337, 48.828643159443736], [2.3668073161337713, 48.82869259922667], [2.366641629421184, 48.82874437204113], [2.3664814931015092, 48.828793811376116], [2.366321357840357, 48.82884325050171], [2.36615567016639, 48.828895022635955], [2.365995532934167, 48.82894446041431], [2.365829845977019, 48.82899623209974], [2.365816524308184, 48.828995612842256], [2.36564362138748, 48.828922226246], [2.36544917713299, 48.82883764213487], [2.365276275253304, 48.82876425499724], [2.365112059984323, 48.82869282038639], [2.365087425528196, 48.82867842735935], [2.365080923205606, 48.828679366859625], [2.365050695410089, 48.828666217641526], [2.364957642429898, 48.828625831003784], [2.364867575406083, 48.828588696990906], [2.36486304942827, 48.8285856285785], [2.36477447433371, 48.82848620916977], [2.364683632283362, 48.828378344223864], [2.364595057894081, 48.82827892376456], [2.364504216576129, 48.82817105866245], [2.364484826763571, 48.82816662604605], [2.364458138492919, 48.8281806196673], [2.36436427968763, 48.82829290670657], [2.364272419737782, 48.82839696333573], [2.364180559410272, 48.82850102078397], [2.364086698079134, 48.828613306666796], [2.36399483699973, 48.82871736395228], [2.363900974868207, 48.82882965056699], [2.363902290395071, 48.82885133873582]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 12, "roussel_fabien": 42.0, "nb_emargement": 1098.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 40.0, "le_pen_marine": 103.0, "nb_exprime": 1078.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1448.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1098, "quartier_bv": "50", "geo_point_2d": [48.82962176030828, 2.3659868280279546], "melenchon_jean_luc": 429.0, "poutou_philippe": 4.0, "macron_emmanuel": 273.0}, "geometry": {"type": "Point", "coordinates": [2.3659868280279546, 48.82962176030828]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a3b12c57e98a0b2d19ee11ed66fed71a756f3627", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 23, "zemmour_eric": 61.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-30", "geo_shape": {"coordinates": [[[2.411636122114187, 48.86721187819719], [2.411634392935107, 48.86722702173086], [2.41162161924454, 48.86736899935311], [2.411607267633579, 48.8675168247823], [2.411594492424803, 48.86765880325705], [2.411580140656921, 48.86780662864427], [2.411564812435967, 48.867814974675795], [2.411427809957861, 48.86780344245186], [2.411164498091801, 48.86778304451176], [2.411027495776024, 48.86777151272851], [2.411019178514009, 48.8677726229514], [2.410871438919652, 48.86782865029563], [2.410713342336528, 48.86788783709675], [2.410706461462178, 48.86789513011561], [2.4106954064632, 48.86801906454275], [2.410684279753847, 48.86814379001837], [2.410673224649324, 48.86826772441558], [2.410662099196927, 48.868392449867784], [2.410651042633855, 48.86851638332913], [2.410639917065065, 48.868641109650525], [2.410628861759629, 48.86876504308858], [2.410617734721431, 48.868889769373155], [2.410606679310447, 48.86901370278136], [2.41059555216602, 48.86913842903582], [2.410581457221647, 48.86914688802808], [2.410375725226438, 48.86914203547155], [2.4101738877241132, 48.8691367322994], [2.409968155806983, 48.86913187904228], [2.409766318385508, 48.86912657518285], [2.40956058654637, 48.86912172122511], [2.409358749205855, 48.86911641667838], [2.409153017455019, 48.869111561120796], [2.408951180185176, 48.869106256785976], [2.408919902824959, 48.869105682342315], [2.408919548666764, 48.86910589733332], [2.408909510257887, 48.869230790697614], [2.4088995906639132, 48.869349293954116], [2.408889552160279, 48.86947418728925], [2.408879631121549, 48.86959268961202], [2.408869592512949, 48.869717583817256], [2.4088596727456713, 48.869836086118966], [2.408849751559834, 48.86995458929973], [2.408839712820057, 48.87007948256225], [2.408829792915886, 48.87019798482273], [2.408819754071142, 48.87032287895539], [2.408824676626126, 48.870329628494865], [2.408848214660174, 48.870331225951595], [2.409038067878396, 48.870339781715394], [2.409230729827571, 48.87034819005955], [2.409420583160251, 48.87035674611577], [2.409613246597143, 48.87036515385083], [2.409803098691246, 48.870373709293496], [2.409995762252719, 48.870382116412756], [2.410185614471367, 48.87039067124855], [2.410378278157308, 48.87039907775198], [2.410568131874, 48.870407631088405], [2.410760794310995, 48.87041603786859], [2.410773499810805, 48.87042558659741], [2.410760756739653, 48.87055674668651], [2.4107477586115422, 48.8706867066905], [2.410735015411797, 48.870817866745874], [2.410722017154304, 48.8709478267163], [2.41070927518901, 48.87107898674465], [2.410696276812311, 48.87120894578234], [2.410683533344999, 48.871340106669514], [2.410670534838916, 48.87147006567366], [2.410657792606065, 48.87160122653381], [2.4106447939707, 48.871731185504444], [2.410632050245885, 48.87186234632413], [2.410619051481031, 48.87199230526126], [2.410606308990787, 48.87212346605391], [2.410593310096647, 48.87225342495749], [2.410593077312089, 48.87225459923981], [2.410551042304517, 48.872394411233465], [2.410509191817353, 48.87253572778929], [2.410467156357748, 48.872675539717925], [2.410425304043749, 48.87281685710103], [2.410383269505475, 48.87295666807202], [2.410341416737997, 48.87309798538985], [2.410299380374298, 48.87323779718832], [2.41025752852682, 48.87337911354824], [2.4102662166284983, 48.87338928193478], [2.410449250176503, 48.87343354214748], [2.410625888401587, 48.87347672556484], [2.4108089225624942, 48.87352098522411], [2.410985561382307, 48.87356416810734], [2.41116219913159, 48.873607350721485], [2.411345235570648, 48.87365160956219], [2.411345328020476, 48.87365163250009], [2.411523327267905, 48.873696119006404], [2.411700173448267, 48.87374048086602], [2.411878173312544, 48.87378496594183], [2.412055021460102, 48.87382932728034], [2.412233020557591, 48.873873812717484], [2.412409869309127, 48.87391817352817], [2.412587870386662, 48.87396265754152], [2.412764718378742, 48.8740070178177], [2.412942720052815, 48.87405150219908], [2.413119570012088, 48.87409586195418], [2.41314252643746, 48.874100355145394], [2.413146343342596, 48.87409895291408], [2.413153956553013, 48.874073170429455], [2.413187055427672, 48.87395360107896], [2.413229464479613, 48.87380996176393], [2.413262563013679, 48.873690392364026], [2.413304971653219, 48.87354675208875], [2.413338069836568, 48.87342718353871], [2.413380478053582, 48.87328354320237], [2.413413577269781, 48.87316397371042], [2.413415055633006, 48.87315896717756], [2.413420589282185, 48.87314022163247], [2.413420967729888, 48.873138940139825], [2.413421373052165, 48.87313757244297], [2.413427959819277, 48.87311526170861], [2.413461057456143, 48.872995692178584], [2.413499911589102, 48.87286408358895], [2.413533010264591, 48.87274451401851], [2.41357186401826, 48.87261290627489], [2.413575680812205, 48.87259224931478], [2.413608779141028, 48.87247267969398], [2.413617333192152, 48.87242637717914], [2.413631802769618, 48.87228682123207], [2.413645386679679, 48.87215084746782], [2.413655901121926, 48.872049438909464], [2.413669483544004, 48.87191346510655], [2.413679999264711, 48.871812055631715], [2.413693581551862, 48.871676082696155], [2.413703479389441, 48.87158062645735], [2.413713375817259, 48.87148517110205], [2.413726959305428, 48.87134919722984], [2.413739282629348, 48.871230337785505], [2.413752865983334, 48.871094363878974], [2.41376518918785, 48.870975504404555], [2.413778698079347, 48.87083983587333], [2.413783744723009, 48.870791163444224], [2.413791553302095, 48.87071584827321], [2.4138050620574862, 48.87058017970712], [2.413812898016422, 48.870504606545765], [2.413826222594353, 48.87037608765852], [2.413839731161216, 48.870240419946064], [2.413853055605467, 48.87011190102512], [2.413866564044053, 48.86997623237794], [2.413879888344304, 48.86984771432255], [2.413893396644495, 48.86971204563991], [2.413906720821189, 48.8695835266515], [2.413920228972869, 48.869447858832714], [2.413931136874319, 48.86934264414819], [2.413944644910063, 48.86920697539776], [2.413955554064939, 48.86910176159405], [2.413969061974626, 48.868966092811306], [2.4139772661815693, 48.86888694737415], [2.413973397604653, 48.868762350646655], [2.413969728367685, 48.868636516495364], [2.413965859837513, 48.86851191884011], [2.413962190636291, 48.86838608466012], [2.413958323495906, 48.868261487882386], [2.413954654330529, 48.86813565367366], [2.413950785873607, 48.86801105596149], [2.413947116744178, 48.867885221724045], [2.413943248313765, 48.86776062488269], [2.413939579220183, 48.8676347906165], [2.413938766749856, 48.86760861773804], [2.413935612822367, 48.867507030299244], [2.41393194376509, 48.86738119600396], [2.413931176273287, 48.86735647846687], [2.413925986926249, 48.86734505575924], [2.413901691947857, 48.86734371908993], [2.413715679039718, 48.86733254303047], [2.413517563935347, 48.86732061848808], [2.413331551192108, 48.86730944183142], [2.413133436253497, 48.86729751755222], [2.412947423685297, 48.867286339399044], [2.412749308922375, 48.86727441448382], [2.41256329650896, 48.8672632366327], [2.41236518329523, 48.8672513101888], [2.412179169683591, 48.86724013173379], [2.411981056635425, 48.8672282055531], [2.41179504456202, 48.86721702560831], [2.41164430614688, 48.867207950552164], [2.411636122114187, 48.86721187819719]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 30, "roussel_fabien": 17.0, "nb_emargement": 1174.0, "nb_procuration": 22.0, "nb_vote_blanc": 10.0, "jadot_yannick": 17.0, "le_pen_marine": 96.0, "nb_exprime": 1155.0, "nb_vote_nul": 9.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1835.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1174, "quartier_bv": "78", "geo_point_2d": [48.87045455829985, 2.411987339553695], "melenchon_jean_luc": 697.0, "poutou_philippe": 12.0, "macron_emmanuel": 194.0}, "geometry": {"type": "Point", "coordinates": [2.411987339553695, 48.87045455829985]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "908c80737ff965369e20ebf91b73c3f5f7020b14", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 99, "zemmour_eric": 111.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "5-4", "geo_shape": {"coordinates": [[[2.348468766917066, 48.85259385136217], [2.348488981032004, 48.852589656219365], [2.348664731748052, 48.8525187429224], [2.34883264289543, 48.852459508892224], [2.349008392704845, 48.85238859508218], [2.3491763016795453, 48.85232936055539], [2.349344211635155, 48.852270125797226], [2.3495199601096513, 48.85219921122371], [2.349687869255332, 48.85213997597637], [2.349863616823192, 48.852069060889825], [2.34987324567205, 48.852060931775874], [2.349839776656665, 48.85201678044645], [2.349750131633897, 48.8519079488828], [2.349652052995102, 48.851786417470464], [2.349562408760592, 48.85167758574363], [2.349464330993186, 48.85155605415221], [2.349374687547127, 48.85144722226218], [2.3492766106510983, 48.8513256904918], [2.3492756801681463, 48.851324247361454], [2.349210451374522, 48.8511982175144], [2.349152837238628, 48.85108142585085], [2.349087607683437, 48.850955395901885], [2.349029995454042, 48.85083860416107], [2.348964766499794, 48.85071257411763], [2.348907154814169, 48.850595782292224], [2.34884192646106, 48.8504697521543], [2.348784315330437, 48.85035295934493], [2.348756421699648, 48.85026554565084], [2.348698810975178, 48.850148753678184], [2.348699635572444, 48.85014187449062], [2.348776180063274, 48.85004312086943], [2.348848578197933, 48.84993252437902], [2.348925122099005, 48.84983377064396], [2.348997519615484, 48.84972317494189], [2.348998107584423, 48.849717125468246], [2.348946796010206, 48.84959920586189], [2.348898285774721, 48.84948526852934], [2.348849777102796, 48.849371332072174], [2.34879846485337, 48.849253411458896], [2.348749956615513, 48.849139474937516], [2.348698646182822, 48.84902155426425], [2.348650137027604, 48.84890761677196], [2.348598827037832, 48.84878969693065], [2.3485503196793323, 48.848675759381635], [2.34849901014381, 48.84855783947289], [2.34847716708255, 48.84853974595716], [2.348441489771945, 48.84854246378939], [2.348424908322237, 48.84854365147539], [2.348420272178868, 48.84856513527337], [2.34823928600438, 48.84862073438373], [2.348056934007047, 48.84867437147229], [2.347875948416946, 48.848729970934244], [2.347693595663312, 48.84878360746378], [2.347512609317453, 48.848839205471386], [2.347330255807726, 48.848892841441874], [2.347149268683594, 48.848948439793716], [2.346966914417571, 48.84900207520517], [2.346785925175036, 48.849057672095235], [2.34660357151559, 48.84911130695509], [2.346422581494772, 48.84916690418931], [2.3462402270791403, 48.849220538490144], [2.3460592363025983, 48.84927613426999], [2.345876879768014, 48.8493297680043], [2.345866373193013, 48.84933507433094], [2.345881474687944, 48.84936908785912], [2.3459510088413, 48.84948568297869], [2.346024944629232, 48.84960806158803], [2.346094479422457, 48.84972465659923], [2.346168415875185, 48.84984703599292], [2.346237951308289, 48.84996363089567], [2.34631188844819, 48.85008600927517], [2.346381424509899, 48.850202604968814], [2.3464553609631, 48.850324983225896], [2.346524897676082, 48.85044157791184], [2.346598836156707, 48.85056395696073], [2.346590976912907, 48.850575704605305], [2.346543650939336, 48.850588708954106], [2.346338414263419, 48.85063966601473], [2.346236729049653, 48.85066760655364], [2.34608771753076, 48.85070855117255], [2.345882479937012, 48.85075950744556], [2.345733469239697, 48.85080045162732], [2.345731257622082, 48.85081628439573], [2.345909125447125, 48.85089290266237], [2.346077006184804, 48.85096450612365], [2.34625487638674, 48.85104112387356], [2.34642275806574, 48.85111272773945], [2.34660062793062, 48.85118934405842], [2.346768510562123, 48.851260947429665], [2.346946381441278, 48.851337563224455], [2.347114265025491, 48.85140916610103], [2.347292136907658, 48.85148578227089], [2.347460021455642, 48.85155738375351], [2.347637894352093, 48.85163399939917], [2.347805779852683, 48.851705600387135], [2.347810644632812, 48.8517092279238], [2.347886549803107, 48.85181248564234], [2.347984999485734, 48.85194510060081], [2.348060905356359, 48.85204835728753], [2.348159355928443, 48.85218097207443], [2.348235262488148, 48.85228422862868], [2.348333713949498, 48.852416843243965], [2.348409621198294, 48.852520099665725], [2.348468766917066, 48.85259385136217]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 4, "roussel_fabien": 16.0, "nb_emargement": 1155.0, "nb_procuration": 83.0, "nb_vote_blanc": 11.0, "jadot_yannick": 81.0, "le_pen_marine": 55.0, "nb_exprime": 1138.0, "nb_vote_nul": 6.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1473.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1155, "quartier_bv": "20", "geo_point_2d": [48.85048709628357, 2.347842901261561], "melenchon_jean_luc": 257.0, "poutou_philippe": 8.0, "macron_emmanuel": 466.0}, "geometry": {"type": "Point", "coordinates": [2.347842901261561, 48.85048709628357]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e2b634e23c672ec7b73f585b70cca95e531e53fb", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 10, "zemmour_eric": 29.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-54", "geo_shape": {"coordinates": [[[2.353354576214497, 48.89029098387023], [2.353388150141031, 48.89029101768512], [2.353498321300822, 48.89024063170158], [2.353629629612358, 48.89018225231274], [2.353789921088413, 48.89010894393836], [2.353921227388344, 48.89005056331617], [2.353936623934373, 48.890050630200555], [2.354071143522124, 48.890112152000036], [2.354199066856014, 48.89016882129084], [2.354333588422834, 48.89023034279621], [2.354461512332724, 48.89028701180056], [2.354470046113521, 48.89028851920691], [2.354681136200789, 48.89027901350671], [2.354888175279742, 48.890269540468886], [2.355099265213834, 48.89026003403143], [2.355306304141144, 48.890250560270495], [2.3555173939219483, 48.8902410530958], [2.355724432697706, 48.89023157861172], [2.35593552368895, 48.890222070707146], [2.356142560949502, 48.89021259549264], [2.356349599487227, 48.89020312082668], [2.356560688885195, 48.89019361181248], [2.35676772728256, 48.89018413552413], [2.356978816527098, 48.89017462577268], [2.357042540141442, 48.890162286594354], [2.357044070368381, 48.89015643032317], [2.357027122695615, 48.8901222729516], [2.356968724906937, 48.88999722589648], [2.356906865604489, 48.88987254781503], [2.356848468395895, 48.889747499773534], [2.356786609666959, 48.88962282250087], [2.356728213027233, 48.88949777437226], [2.356666354894018, 48.889373096109836], [2.356607958823153, 48.88924804789416], [2.35654610126333, 48.88912337044049], [2.356487705761317, 48.88899832213775], [2.356425850161011, 48.88887364370167], [2.356367455216724, 48.88874859621109], [2.356305598837296, 48.888623917677215], [2.356291127055679, 48.88861317388769], [2.356256323174275, 48.888618289197616], [2.356073924027641, 48.88860123930488], [2.355863809993651, 48.888581364552856], [2.355681412468586, 48.88856431406896], [2.355471298722383, 48.888544439526804], [2.35528890145519, 48.88852738844445], [2.355078786644006, 48.888507513205546], [2.354896389634693, 48.88849046152472], [2.3546862764861363, 48.888470585603734], [2.354503879734712, 48.88845353332442], [2.35429376688489, 48.888433656714014], [2.354111369027771, 48.888416603828894], [2.353901256476796, 48.88839672652902], [2.353718860241178, 48.88837967305284], [2.35368425806284, 48.88837633055246], [2.353674644151187, 48.88838243364002], [2.353688449519829, 48.88851175286472], [2.353705443641754, 48.88860721531032], [2.3537055127031072, 48.88860879309907], [2.3536930307824, 48.88874838818583], [2.353680660702985, 48.88888391171521], [2.353668178649704, 48.889023506764396], [2.353655807087796, 48.88915902935063], [2.353643436813946, 48.88929455282545], [2.353630954573598, 48.88943414691929], [2.353618584169805, 48.88956967035759], [2.353606101785714, 48.88970926531312], [2.353600936482613, 48.88971579530048], [2.353513460493081, 48.8897613207752], [2.353425694472735, 48.889802294039384], [2.353420031682827, 48.8898085776155], [2.353397009259459, 48.88993696848808], [2.3533787011915033, 48.890043302803335], [2.353360393048771, 48.89014963710544], [2.353337368974973, 48.89027802702005], [2.353354576214497, 48.89029098387023]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 54, "roussel_fabien": 20.0, "nb_emargement": 985.0, "nb_procuration": 37.0, "nb_vote_blanc": 8.0, "jadot_yannick": 81.0, "le_pen_marine": 65.0, "nb_exprime": 966.0, "nb_vote_nul": 11.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1338.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 985, "quartier_bv": "71", "geo_point_2d": [48.889411115536824, 2.355105710704763], "melenchon_jean_luc": 526.0, "poutou_philippe": 7.0, "macron_emmanuel": 174.0}, "geometry": {"type": "Point", "coordinates": [2.355105710704763, 48.889411115536824]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e3081dddcd251f5aee2e8d59c20c1e5ca4f294ad", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 135, "zemmour_eric": 87.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "15-61", "geo_shape": {"coordinates": [[[2.3025345268709883, 48.83889565117897], [2.302529429204756, 48.838909953820455], [2.302526281657536, 48.839028587582526], [2.302523864139417, 48.839147341607365], [2.3025207165773303, 48.83926597444477], [2.302518299035521, 48.83938472844428], [2.302515151434298, 48.83950336215566], [2.302512733868799, 48.83962211612981], [2.302509586252607, 48.83974074891651], [2.302507168663419, 48.83985950286531], [2.302487375088198, 48.839914723856204], [2.3025144291972452, 48.83992030390429], [2.302633742360547, 48.83995379234189], [2.302801916257805, 48.84000206328114], [2.302979282154836, 48.84005184541875], [2.303147458038875, 48.84010011677529], [2.303324823237176, 48.84014989838824], [2.303492999769623, 48.84019816835545], [2.303670365631609, 48.840247949451715], [2.303838542800433, 48.840296218928884], [2.304015909326103, 48.84034599950846], [2.304184087131303, 48.840394268495565], [2.304239583298501, 48.840414100401034], [2.304255412025213, 48.84041049875659], [2.3042812925753138, 48.84040461001733], [2.304300720435715, 48.840363593068496], [2.30436957641712, 48.84023976276648], [2.3044376678007152, 48.840116129425816], [2.304506524492373, 48.83999229902549], [2.304574615227844, 48.839868665579495], [2.304643469904715, 48.83974483506497], [2.304711561354489, 48.839621201521545], [2.304780415379206, 48.839497370900744], [2.304848506168772, 48.83937373815129], [2.304917359553237, 48.83924990652496], [2.304985448332406, 48.83912627366226], [2.3050543024270302, 48.83900244193758], [2.305122390558012, 48.83887880896951], [2.305191242638009, 48.8387549771307], [2.305259331483406, 48.83863134406525], [2.305259489050405, 48.83863107337057], [2.305336676056328, 48.838504991042804], [2.305409264646106, 48.8383771506633], [2.305486450901735, 48.83825106910951], [2.305559038770657, 48.83812322861011], [2.3056362229376, 48.83799714602382], [2.3057088100734973, 48.83786930630376], [2.305785994864522, 48.83774322360012], [2.305858581291462, 48.83761538286082], [2.305935765332231, 48.837489300931196], [2.306008349675991, 48.837361460064095], [2.306078943620091, 48.83723051375635], [2.306151528614678, 48.83710267278071], [2.306224113241154, 48.83697483264565], [2.30629470611971, 48.83684388616533], [2.306367290046642, 48.83671604501451], [2.306437882203081, 48.83658509931866], [2.306426709249403, 48.8365595886081], [2.306393270230617, 48.83653767308113], [2.306334745769418, 48.83647250697728], [2.306283287127877, 48.83641623074004], [2.306269304945828, 48.83641201613373], [2.306159125499013, 48.83642276131416], [2.306010004085755, 48.83643975863564], [2.306009199531094, 48.83644042759719], [2.306013190527141, 48.836460651544996], [2.306031591441544, 48.83652408307737], [2.306050146358943, 48.83659631495003], [2.306039859845715, 48.83660656926678], [2.305893954141633, 48.836629427419595], [2.3057542705824092, 48.83665115142594], [2.305608364616319, 48.83667401012875], [2.305468680818603, 48.83669573380081], [2.305467818231508, 48.83669584930803], [2.305278394611331, 48.83671710226221], [2.305086864451503, 48.83673856572291], [2.304897440520671, 48.836759818073], [2.304705910047129, 48.83678128092286], [2.30451648581775, 48.83680253176958], [2.304324955030404, 48.83682399400864], [2.304135530478492, 48.83684524515058], [2.303943999377244, 48.83686670677879], [2.303754573152564, 48.83688795730872], [2.303563043111879, 48.83690941743481], [2.30337361657668, 48.8369306673606], [2.3031820862102013, 48.83695212777519], [2.302992659364488, 48.836973377096875], [2.302801128684234, 48.83699483690067], [2.302790003355924, 48.83700530999282], [2.302825744209271, 48.837135259880036], [2.302861279834512, 48.837264167072064], [2.302897021031021, 48.83739411780721], [2.3029325570091093, 48.837523024948204], [2.302968298572739, 48.83765297473266], [2.303003834891554, 48.837781882721934], [2.303039576810485, 48.837911832455], [2.303075113494081, 48.83804073949396], [2.303110855756094, 48.83817069007494], [2.303146392792453, 48.83829959706286], [2.3031821354218, 48.83842954669311], [2.303217672810825, 48.83855845363003], [2.303253415783367, 48.8386884041082], [2.303288953525265, 48.83881731099404], [2.30328678625072, 48.83882400677369], [2.303218031090908, 48.83888785640372], [2.303139275833583, 48.838963682206995], [2.303125398075777, 48.8389674200847], [2.302982437450954, 48.83894877241685], [2.302839121569426, 48.838930207946994], [2.3026961611490853, 48.838911559936456], [2.302552845459806, 48.83889299602223], [2.3025345268709883, 48.83889565117897]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 61, "roussel_fabien": 21.0, "nb_emargement": 1202.0, "nb_procuration": 65.0, "nb_vote_blanc": 16.0, "jadot_yannick": 83.0, "le_pen_marine": 73.0, "nb_exprime": 1177.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1523.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1202, "quartier_bv": "57", "geo_point_2d": [48.83831012970245, 2.3042269479050224], "melenchon_jean_luc": 233.0, "poutou_philippe": 6.0, "macron_emmanuel": 482.0}, "geometry": {"type": "Point", "coordinates": [2.3042269479050224, 48.83831012970245]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "48ab84c2716fee5142b220fe3e084056f1c1767d", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 41, "zemmour_eric": 43.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "10-23", "geo_shape": {"coordinates": [[[2.365222162321841, 48.881157264457855], [2.3651823441663042, 48.88118437497451], [2.365059492679839, 48.88128573448984], [2.364936270628099, 48.881386804121156], [2.36481341819605, 48.8814881624661], [2.364690195187788, 48.88158923182551], [2.364567341799387, 48.881690589899314], [2.364444116471069, 48.881791658979665], [2.36432126348973, 48.88189301678956], [2.364198037204868, 48.881994085598045], [2.364193681827134, 48.88199643579857], [2.364052317522469, 48.88204471461928], [2.363893955177105, 48.88209471241128], [2.3637525903278123, 48.882142990873795], [2.363594227395846, 48.88219298826491], [2.363592065076587, 48.88220835799959], [2.363758182957847, 48.88228848979991], [2.363916009265674, 48.88236304013962], [2.364082128127812, 48.882443172378515], [2.364239954004713, 48.88251772227347], [2.36440607523314, 48.882597853159595], [2.364563902042554, 48.88267240261704], [2.3647300228994013, 48.88275253303515], [2.36488785200488, 48.882827082062335], [2.365053973853496, 48.88290721201977], [2.3652118025279423, 48.88298176060216], [2.365369633017811, 48.88305630897868], [2.365535756338953, 48.88313643825091], [2.365693586397788, 48.88321098618268], [2.365859710710906, 48.88329111499414], [2.366017543065831, 48.8833656624956], [2.366183668370728, 48.883445790846295], [2.366341501658185, 48.88352033791024], [2.366507627955067, 48.8836004658002], [2.366665460811487, 48.88367501241939], [2.366831588100152, 48.88375513984853], [2.366989423252683, 48.88382968603737], [2.367155551533339, 48.883909813005765], [2.367313386254728, 48.883984358749835], [2.367479516890859, 48.88406448526471], [2.36747970667516, 48.8840645779987], [2.367609091793928, 48.88412795267865], [2.367608553717039, 48.88415485591165], [2.367662590549136, 48.8841755632405], [2.367756572857933, 48.884168528598465], [2.367970121312169, 48.88415868968631], [2.368146937346182, 48.88414545404334], [2.368148576032671, 48.88414526394001], [2.368267321901862, 48.88411194184277], [2.3684127624081412, 48.88408896241845], [2.368417279839941, 48.88408764085501], [2.368512720453001, 48.88403544459859], [2.368642328924699, 48.88397701714112], [2.368645321246917, 48.88397517760805], [2.368658869677618, 48.88396151722182], [2.368627494795779, 48.883917102167466], [2.368497397626462, 48.88381163269958], [2.368368831532477, 48.883706567758246], [2.3682387354129872, 48.88360109798915], [2.368110170360624, 48.883496032749974], [2.36798007529095, 48.88339056267961], [2.367851509916638, 48.88328549713538], [2.367721417249414, 48.88318002767024], [2.367592852927629, 48.883074960928845], [2.367462761310191, 48.882969491162484], [2.367334198019084, 48.88286442502256], [2.367204107462348, 48.88275895405569], [2.367075545212831, 48.88265388761788], [2.366945455705864, 48.88254841634982], [2.366816894497926, 48.8824433496142], [2.366686806040721, 48.88233787804488], [2.3665582458743533, 48.882232811011384], [2.3664281570924253, 48.88212734003292], [2.366299599342089, 48.88202227180959], [2.366169511609904, 48.88191680052994], [2.36604095489017, 48.881811732908005], [2.365910868218663, 48.881706260427876], [2.3657823125404622, 48.88160119250816], [2.365750154844014, 48.88157289112162], [2.365743909358724, 48.881572241994064], [2.365615352995726, 48.88146717297575], [2.365483261073673, 48.881359556153086], [2.365354707113998, 48.88125448774112], [2.365253830719225, 48.88117230188587], [2.365222162321841, 48.881157264457855]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 23, "roussel_fabien": 19.0, "nb_emargement": 998.0, "nb_procuration": 58.0, "nb_vote_blanc": 6.0, "jadot_yannick": 112.0, "le_pen_marine": 29.0, "nb_exprime": 991.0, "nb_vote_nul": 1.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1260.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 998, "quartier_bv": "37", "geo_point_2d": [48.88272891981298, 2.3661027645073385], "melenchon_jean_luc": 369.0, "poutou_philippe": 11.0, "macron_emmanuel": 303.0}, "geometry": {"type": "Point", "coordinates": [2.3661027645073385, 48.88272891981298]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1938fc3b929715286272499af88b378a3c424f8f", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 52, "zemmour_eric": 56.0, "hidalgo_anne": 47.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-11", "geo_shape": {"coordinates": [[[2.376856073470287, 48.87635314588284], [2.376877585435294, 48.87634782858831], [2.377064210873697, 48.876347610963705], [2.3772507081439382, 48.87634739328081], [2.377437333579219, 48.8763471750745], [2.377623830846338, 48.8763469568103], [2.377810454915105, 48.87634673801524], [2.377996952179092, 48.87634651916978], [2.378010049965454, 48.87633996633653], [2.378067133912017, 48.87620643770252], [2.378123677525876, 48.876073718317365], [2.3781807609000643, 48.87594018869762], [2.378237303924605, 48.87580747012601], [2.378294386715686, 48.875673940419894], [2.37835092917239, 48.87554122086329], [2.378408010006383, 48.87540769196292], [2.378464551884525, 48.875274972320625], [2.378521633498693, 48.87514144334096], [2.378578174798279, 48.87500872361298], [2.378635255840098, 48.874875193647604], [2.378691796550408, 48.87474247473319], [2.378748877009258, 48.87460894468145], [2.378805417151654, 48.87447622478201], [2.378814935641056, 48.8744593675928], [2.378812899205145, 48.87445692702402], [2.378686060266257, 48.87441997611577], [2.3785249450577473, 48.8743725758255], [2.3783340494325023, 48.874316963522276], [2.378172934862981, 48.87426956275378], [2.377982040001862, 48.874213948984746], [2.377820927434661, 48.87416654774519], [2.377818711084322, 48.87416604788672], [2.377599231395827, 48.87413001362375], [2.377371461458681, 48.874092594027736], [2.3771519810258, 48.874056558935294], [2.376924211731184, 48.87401913848579], [2.376914662652091, 48.87400739473131], [2.376974571738035, 48.873896437257606], [2.377032702700617, 48.87378935741585], [2.377029683301329, 48.87378008394832], [2.376887465313046, 48.8736827596399], [2.376745264712436, 48.87358459616203], [2.376603046426042, 48.87348727149135], [2.376460848258449, 48.87338910766536], [2.376457637554061, 48.87338546122321], [2.376398514528182, 48.87325444292899], [2.376335762385136, 48.87311876870624], [2.37627663996853, 48.87298775032018], [2.37621388845346, 48.872852076900095], [2.376168133825924, 48.8728171717585], [2.376155423290847, 48.872821383656216], [2.376094511362238, 48.8728760227974], [2.375966587005281, 48.872990687674886], [2.375854042832546, 48.873091642190616], [2.375726116053369, 48.8732063067816], [2.375613570948773, 48.87330726105153], [2.3754856444738612, 48.87342192537024], [2.375373097073986, 48.87352287938725], [2.375260550601046, 48.87362383329637], [2.375156086351849, 48.8737174664248], [2.375132622571581, 48.87373849720492], [2.375108339691617, 48.873737001654334], [2.375112890980746, 48.873758678705585], [2.375118970063018, 48.87378551602246], [2.375148569539102, 48.87381126831001], [2.375192623829569, 48.873897464802326], [2.375273584652951, 48.87405439592008], [2.375317639355938, 48.874140592347345], [2.375329169223184, 48.8741466420857], [2.375482882223753, 48.87415693571024], [2.3756338446383882, 48.87416501231942], [2.375643930138144, 48.87416883583458], [2.375747700359434, 48.87426711583165], [2.37584817995529, 48.87436150963306], [2.375948659915239, 48.874455903342046], [2.376052432646775, 48.87455418305651], [2.3760543278523922, 48.87455679381008], [2.376109366269711, 48.87468068069123], [2.376172791840003, 48.874822048430595], [2.376227830819384, 48.87494593522753], [2.376291255660198, 48.87508730376235], [2.376346295201651, 48.875211190474985], [2.3764097220502602, 48.87535255892015], [2.376464762153796, 48.875476445548536], [2.376512493402178, 48.87558698932919], [2.376567533997894, 48.87571087588403], [2.376615267031739, 48.875821420506554], [2.376615308154541, 48.87582151605005], [2.376668311653331, 48.875945909937315], [2.376716043753093, 48.87605645448902], [2.376769049094836, 48.876180848312295], [2.376816781623814, 48.87629139280029], [2.376817038403503, 48.876291924743455], [2.376827608769605, 48.87631292613268], [2.37684233757852, 48.87634042886105], [2.376856073470287, 48.87635314588284]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 11, "roussel_fabien": 34.0, "nb_emargement": 1293.0, "nb_procuration": 74.0, "nb_vote_blanc": 13.0, "jadot_yannick": 131.0, "le_pen_marine": 46.0, "nb_exprime": 1277.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1657.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "76", "geo_point_2d": [48.87474974030677, 2.3770367502903214], "melenchon_jean_luc": 552.0, "poutou_philippe": 4.0, "macron_emmanuel": 340.0}, "geometry": {"type": "Point", "coordinates": [2.3770367502903214, 48.87474974030677]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "85d5efedaddf3118b6622993df49e7ac2c37e601", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 117, "zemmour_eric": 93.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "12-7", "geo_shape": {"coordinates": [[[2.39719391370393, 48.84303002064479], [2.397165662133308, 48.843017066028295], [2.396970478877273, 48.84301405335429], [2.396781035850621, 48.8430129498642], [2.3965858526322372, 48.843009936562666], [2.396396409628696, 48.84300883246346], [2.396201226458391, 48.84300581763509], [2.396011783467552, 48.84300471382611], [2.395816600334923, 48.84300169837021], [2.395627157367205, 48.84300059395215], [2.395431974272263, 48.8429975778687], [2.395242532700523, 48.842996471949164], [2.395226708023487, 48.842995162527565], [2.395203044425696, 48.84300360388798], [2.395130505112444, 48.843104000334606], [2.3950512280830862, 48.84321949705665], [2.394978686814384, 48.84331989338488], [2.394899409120095, 48.843435389983995], [2.3948268672481072, 48.843535787100045], [2.394790104116914, 48.84358934674704], [2.394772631322506, 48.84360850370944], [2.394775812359232, 48.84361923295293], [2.394733298452464, 48.843681169782236], [2.394649147926031, 48.8438073825584], [2.394569868759932, 48.843922878888655], [2.394485717447454, 48.84404909152254], [2.394406437551607, 48.84416458771946], [2.3943222854530752, 48.84429080021106], [2.394243003464715, 48.84440629626772], [2.394158850580115, 48.84453250861701], [2.394079569224535, 48.84464800454724], [2.394000287517464, 48.844763500412945], [2.393916133468299, 48.844889712551065], [2.393836851031343, 48.845005208283446], [2.39375269619609, 48.84513142027924], [2.393673413029343, 48.84524691587828], [2.393589257397524, 48.845373128631024], [2.393509973511237, 48.84548862319743], [2.393444984696413, 48.84558608883328], [2.3934472468027073, 48.845597785639036], [2.393475031068237, 48.84560550627705], [2.393658295170515, 48.845690752590954], [2.393839556123082, 48.84577523570414], [2.394022821418461, 48.845860481446636], [2.394204084914761, 48.84594496400158], [2.39438735140325, 48.84603020917274], [2.394568614718309, 48.84611469115559], [2.39461052185924, 48.84613285886096], [2.394626646238163, 48.84612428505257], [2.39465801291469, 48.84608981227219], [2.394755672651365, 48.84597283880604], [2.3948634173139, 48.84585441973305], [2.394961076148549, 48.845737446074494], [2.395068821220292, 48.84561902679841], [2.395108570116321, 48.84557141620616], [2.395142489428772, 48.8455536401487], [2.395140666452353, 48.845528143176516], [2.395198574025037, 48.84545878079207], [2.395290971727623, 48.84534661157554], [2.395388628650978, 48.84522963751473], [2.395481024175695, 48.84511746812147], [2.395578680243213, 48.845000493881486], [2.395671076315213, 48.84488832432529], [2.39576873016414, 48.84477134989924], [2.395861125420864, 48.844659180173224], [2.395958779776433, 48.84454220557487], [2.396051172855437, 48.84443003567215], [2.396148826355099, 48.84431306089464], [2.3962412199812952, 48.844200890829], [2.396338872625056, 48.844083915872325], [2.396431264073566, 48.84397174562999], [2.39652891586144, 48.84385477049412], [2.396621307857148, 48.843742600088866], [2.396718957426613, 48.84362562476699], [2.396811348607094, 48.84351345419192], [2.396908998683323, 48.84339647869776], [2.397001387686061, 48.84328430794602], [2.397099036906333, 48.84316733227272], [2.397191426456382, 48.84305516135802], [2.39719391370393, 48.84303002064479]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 7, "roussel_fabien": 22.0, "nb_emargement": 1251.0, "nb_procuration": 71.0, "nb_vote_blanc": 12.0, "jadot_yannick": 101.0, "le_pen_marine": 46.0, "nb_exprime": 1238.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1500.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1251, "quartier_bv": "46", "geo_point_2d": [48.8443842138093, 2.395194477585367], "melenchon_jean_luc": 302.0, "poutou_philippe": 4.0, "macron_emmanuel": 506.0}, "geometry": {"type": "Point", "coordinates": [2.395194477585367, 48.8443842138093]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "11cab10f08a9839fab933730159c400d178410b9", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 104, "zemmour_eric": 100.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-59", "geo_shape": {"coordinates": [[[2.306009199531094, 48.83644042759719], [2.306010004085755, 48.83643975863564], [2.306159125499013, 48.83642276131416], [2.306269304945828, 48.83641201613373], [2.306283287127877, 48.83641623074004], [2.306334745769418, 48.83647250697728], [2.306393270230617, 48.83653767308113], [2.306426709249403, 48.8365595886081], [2.3064489753204382, 48.836555994315894], [2.306499905982375, 48.836546402821355], [2.306533202404716, 48.83654801147569], [2.306540389712205, 48.83654612489134], [2.306585452713666, 48.8365376388465], [2.306660070516814, 48.83650743968971], [2.306663289470884, 48.8365056281268], [2.30672818298709, 48.836457040664286], [2.30679882625648, 48.83640267834382], [2.306802079641582, 48.83639622801657], [2.306790686944992, 48.83628273770289], [2.3067537941591922, 48.83620469313403], [2.306755357940555, 48.83619713218295], [2.306865747509961, 48.83608437549621], [2.306970576752187, 48.83598042371367], [2.307080966759426, 48.83586766681431], [2.307185795136539, 48.835763714823095], [2.307296184219299, 48.83565095770326], [2.307401011731513, 48.835547005503265], [2.307511398527502, 48.83543424815508], [2.307616226536926, 48.83533029575425], [2.307721052777999, 48.83522634234466], [2.307831439552997, 48.835113585575996], [2.307936264929088, 48.83500963195766], [2.3080466494292953, 48.83489687406141], [2.308151475290662, 48.834792921141535], [2.30826185886644, 48.83468016302478], [2.308366683862943, 48.83457620989619], [2.308432289271757, 48.83450919201165], [2.3084432308416423, 48.83448235592069], [2.308442522290393, 48.83447949001831], [2.308487299498446, 48.83443374956065], [2.308506555752849, 48.834417471609534], [2.3084439190671793, 48.834382524969115], [2.308363736411745, 48.83426114508452], [2.308284279795741, 48.83413949232261], [2.308204097885854, 48.83401811230461], [2.3081246433869422, 48.83389645851889], [2.308107301054734, 48.83389161130492], [2.307940250823331, 48.83393344874364], [2.307739272398203, 48.83398524081565], [2.307572221571383, 48.834027077736835], [2.307433551624543, 48.83406281192717], [2.307428109519348, 48.834061750632564], [2.307404622378229, 48.834071407910685], [2.307342310429789, 48.834087465138694], [2.307208313617287, 48.83412079692202], [2.307007333754591, 48.834172586856184], [2.306873336509092, 48.83420591826175], [2.3068726118513982, 48.83420611462264], [2.306703560399127, 48.83425475958626], [2.30653917407024, 48.834302939400786], [2.3063701219929102, 48.834351583888896], [2.306205735050503, 48.83439976324102], [2.306041347792252, 48.8344479432644], [2.305872294780113, 48.83449658704264], [2.305707905558037, 48.83454476569642], [2.305538853282921, 48.83459340900708], [2.305528144442855, 48.8345934592515], [2.305403934042194, 48.83455959608351], [2.305255413433361, 48.83451850541735], [2.305243816613529, 48.834506985434174], [2.305214596959646, 48.83451350794399], [2.30502211976236, 48.83456553100449], [2.304831824920649, 48.83461763838889], [2.304641531048782, 48.83466974637531], [2.304449052714686, 48.83472176760707], [2.30425875671778, 48.83477387497176], [2.304066277617201, 48.834825895582746], [2.303875982219828, 48.83487800234154], [2.303683502352774, 48.8349300223317], [2.303666268609064, 48.83493724380116], [2.30366558980181, 48.834948079996266], [2.30373140246164, 48.83502616627756], [2.303796791093073, 48.835104393947645], [2.303795844029278, 48.83511746622086], [2.303812653550848, 48.835124975796084], [2.303813313103372, 48.83512588170633], [2.303902064196218, 48.835267452329944], [2.303991841071919, 48.83540947402562], [2.304010054401209, 48.83541419648808], [2.304121046044882, 48.83538085946871], [2.304230126796718, 48.83534971739253], [2.304246004694756, 48.83535221737418], [2.30436397313239, 48.83544574938217], [2.30448189808148, 48.83553899860763], [2.304599867365091, 48.8356325303674], [2.304717793146728, 48.835725780244005], [2.304835764638637, 48.83581931176344], [2.30495368991451, 48.83591256048471], [2.305071662252516, 48.83600609175582], [2.305189588360852, 48.83609934112827], [2.3053075615448613, 48.83619287215112], [2.305425488509847, 48.83628612037612], [2.305543462539765, 48.83637965115068], [2.305661390337338, 48.836472900026834], [2.305674019285529, 48.83647601411206], [2.305829305251387, 48.83645946939391], [2.3059784267679833, 48.836442473197344], [2.306009199531094, 48.83644042759719]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 59, "roussel_fabien": 19.0, "nb_emargement": 1142.0, "nb_procuration": 57.0, "nb_vote_blanc": 11.0, "jadot_yannick": 78.0, "le_pen_marine": 94.0, "nb_exprime": 1126.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1548.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1142, "quartier_bv": "57", "geo_point_2d": [48.835176050380674, 2.306220876335173], "melenchon_jean_luc": 212.0, "poutou_philippe": 2.0, "macron_emmanuel": 462.0}, "geometry": {"type": "Point", "coordinates": [2.306220876335173, 48.835176050380674]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d15171836e1c1becf7ebd795907e058628770262", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 71, "zemmour_eric": 77.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-35", "geo_shape": {"coordinates": [[[2.332253535343118, 48.889206503339764], [2.332258873140644, 48.889220227151114], [2.332284515843369, 48.88925568849621], [2.332375341287047, 48.889378126509975], [2.332462903152142, 48.889499216141395], [2.332553729440167, 48.889621653992656], [2.332641293481829, 48.88974274437362], [2.332678754624298, 48.889794548382945], [2.332769581946558, 48.88991698513832], [2.332819685491589, 48.88998627138683], [2.332830285818105, 48.88999653240128], [2.332847274180668, 48.889982635343735], [2.332948939738993, 48.88985740403935], [2.333040145765609, 48.889745804817416], [2.333141810386246, 48.8896205742215], [2.333233015596174, 48.889508973929345], [2.333234464960412, 48.889506125740105], [2.33325632365008, 48.889414442439495], [2.333278718389378, 48.8893205101994], [2.333300576923206, 48.88922882687521], [2.333322971491229, 48.88913489551021], [2.3333334060789053, 48.88912752516995], [2.333375251351538, 48.88912122093724], [2.333437424845871, 48.88911185433209], [2.333453104747278, 48.88911725124061], [2.333524069829566, 48.889233027134864], [2.3335950191853883, 48.88934877770446], [2.333665984898657, 48.88946455349022], [2.333736934885425, 48.88958030395126], [2.333807901229783, 48.88969607962849], [2.333878851835999, 48.88981183088031], [2.3339498188114582, 48.88992760644899], [2.334020770060141, 48.89004335669307], [2.334091736303069, 48.89015913214562], [2.334162689546358, 48.89027488228875], [2.334233656420393, 48.8903906576328], [2.334304608930919, 48.89050640765983], [2.334320010602067, 48.89051184516664], [2.33450308396756, 48.890486920837574], [2.334680587169183, 48.8904627548876], [2.334863658825728, 48.890437829998525], [2.335041163056294, 48.89041366352058], [2.335218665769932, 48.89038949587211], [2.335401736899847, 48.890364571058015], [2.335579239278769, 48.89034040287399], [2.3357623114272172, 48.89031547751508], [2.335773188277294, 48.89030646455819], [2.335767949357577, 48.890155230132095], [2.3357626637421403, 48.890002633846876], [2.335757426247189, 48.88985139938602], [2.335752140693535, 48.88969880305813], [2.335752140401136, 48.8896983983599], [2.335777464697759, 48.889690495270514], [2.335776316006505, 48.88968143718471], [2.335780648691393, 48.88955294036384], [2.335773757618297, 48.88939683940936], [2.33577464223734, 48.889370577701584], [2.335779859514377, 48.88921581913285], [2.335772968499734, 48.88905971723114], [2.335760179630629, 48.88905100376175], [2.335626449875253, 48.88904554667195], [2.335491967396899, 48.88904724479213], [2.335358237679287, 48.889041787402796], [2.335223755201899, 48.88904348522174], [2.335211582337863, 48.88903887154461], [2.335117281715549, 48.888927301828836], [2.33502915023367, 48.888821682955054], [2.334934849020285, 48.88871011396522], [2.334846719639739, 48.88860449494382], [2.334758589253015, 48.888498875839836], [2.334664290579228, 48.88838730571245], [2.334576160930125, 48.8882816864533], [2.3344818630404323, 48.888170116160204], [2.334393734128942, 48.888064496745855], [2.334299437023436, 48.88795292628703], [2.334300999494606, 48.88793183585522], [2.334268220524898, 48.88791923210089], [2.334084221852576, 48.88791387507771], [2.33394008944345, 48.88790737436281], [2.333929610214116, 48.88791015794424], [2.333797466972917, 48.88800169107856], [2.333652925467889, 48.88810397756987], [2.333640348775179, 48.888105371683864], [2.33362861405485, 48.88813709489806], [2.333484070478591, 48.88823938116534], [2.333345815143554, 48.888338859489394], [2.333201270451606, 48.888441145396506], [2.333063014029073, 48.888540624274995], [2.333060612901225, 48.88854303638568], [2.332984245668862, 48.88865590101009], [2.332907833615152, 48.888768831876526], [2.332905208150744, 48.88877140191467], [2.332752429413925, 48.88887615139802], [2.332595324337321, 48.88898386502831], [2.332442542978596, 48.8890886149877], [2.332285437983635, 48.88919632819811], [2.332253535343118, 48.889206503339764]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 35, "roussel_fabien": 23.0, "nb_emargement": 1286.0, "nb_procuration": 86.0, "nb_vote_blanc": 11.0, "jadot_yannick": 115.0, "le_pen_marine": 70.0, "nb_exprime": 1273.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1561.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1286, "quartier_bv": "69", "geo_point_2d": [48.88927701970847, 2.3342449960349176], "melenchon_jean_luc": 290.0, "poutou_philippe": 2.0, "macron_emmanuel": 557.0}, "geometry": {"type": "Point", "coordinates": [2.3342449960349176, 48.88927701970847]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "65168acf758ddc5a2ec41a4cfa1d04640ee7b905", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 27, "zemmour_eric": 50.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "11-30", "geo_shape": {"coordinates": [[[2.373488102983312, 48.868018144207106], [2.3734851696817483, 48.86801981421582], [2.3734635620032742, 48.86810339098259], [2.373446009691103, 48.868168848385096], [2.373444977394842, 48.86817102927634], [2.373372531481146, 48.86827526571378], [2.3733008906625193, 48.86837759971445], [2.373228444173221, 48.86848183604519], [2.373156801424268, 48.86858416993334], [2.373153868996215, 48.86858689666183], [2.373029953724557, 48.8686656700964], [2.372906225443678, 48.86874360079835], [2.372782309435597, 48.86882237306606], [2.372658580412137, 48.868900303500986], [2.37265638446127, 48.86890209426725], [2.372606189705418, 48.86895573486787], [2.372492876040419, 48.869077177587656], [2.37239693178662, 48.8691797819777], [2.3722836185096, 48.86930122448196], [2.372187673430965, 48.869403828683446], [2.37207435781552, 48.86952527095783], [2.37197841192288, 48.86962787407152], [2.371978041461458, 48.869628297514986], [2.371887845041809, 48.86973681508847], [2.371795095076551, 48.86984949481233], [2.371704899255984, 48.86995801223336], [2.371612148490285, 48.870070692692224], [2.371618575468212, 48.87008319755938], [2.371782389509586, 48.87013139862489], [2.371943766902567, 48.87017909743694], [2.372107581546437, 48.87022729805316], [2.372268959534292, 48.8702749964227], [2.372432774769821, 48.87032319748897], [2.372594153363383, 48.87037089451663], [2.372757969201408, 48.87041909513366], [2.372919348389834, 48.87046679171874], [2.372937509365534, 48.870475690481896], [2.372955691680528, 48.87046515016325], [2.373040163503641, 48.87038034979766], [2.3731373796853212, 48.87028235627112], [2.373237379523224, 48.870181967008634], [2.373334593600437, 48.87008397329718], [2.373434592688243, 48.86998358295264], [2.373531806013407, 48.86988558996269], [2.373631804340201, 48.86978519943535], [2.373729016924143, 48.86968720626763], [2.373829014490137, 48.86958681555756], [2.373926227696067, 48.8694888222192], [2.373943294028383, 48.86948556504691], [2.374113057523485, 48.869536722312525], [2.374307768063095, 48.869595347449206], [2.374477532273914, 48.86964650419279], [2.374672245007973, 48.869705127838635], [2.374842008560501, 48.869756284952395], [2.3750367221152002, 48.86981490799944], [2.375206487757444, 48.869866063699014], [2.375401200758576, 48.869924687039536], [2.375501257170384, 48.869955154385536], [2.375518433097531, 48.86995185709132], [2.375636130888553, 48.86983124660193], [2.375754020311582, 48.86971041215133], [2.375871717011592, 48.869589801403976], [2.375989605341714, 48.86946896669498], [2.376107300950725, 48.869348355689596], [2.37622518819872, 48.8692275198229], [2.376342884069071, 48.869106909465906], [2.376460770224278, 48.8689860733408], [2.376479023798289, 48.868983143056106], [2.376627384289093, 48.869039374461174], [2.376775740350114, 48.86909543298172], [2.376924101491881, 48.86915166311399], [2.377072459555106, 48.8692077212682], [2.377220821326223, 48.869263951926264], [2.377369178665469, 48.86932000969985], [2.377385111843259, 48.86932051706962], [2.377396059382916, 48.86930872253256], [2.377492391436251, 48.86918312642107], [2.377588232212326, 48.86905810414165], [2.377684563338756, 48.86893250784705], [2.377780404555697, 48.86880748539247], [2.377876243938772, 48.86868246373922], [2.377972573676141, 48.86855686717015], [2.378068412147555, 48.86843184443541], [2.378164740958251, 48.868306247683215], [2.378260578507378, 48.868181224766275], [2.378356906391211, 48.86805562783096], [2.378365911250734, 48.868040829203174], [2.378354850161938, 48.86803282159338], [2.378150207927344, 48.86797938550692], [2.3779547309181153, 48.867927673967756], [2.377750089507025, 48.86787423719212], [2.377554613289454, 48.86782252499454], [2.3773591388232402, 48.86777081248247], [2.37715449865008, 48.86771737378164], [2.377138248198139, 48.86772064015549], [2.3770160817633452, 48.86783783853897], [2.376893431936809, 48.86795505855383], [2.376771263038408, 48.86807225665545], [2.376648612109045, 48.86818947639458], [2.376526442110082, 48.86830667422151], [2.3764037914518212, 48.86842389279272], [2.376281620352286, 48.86854109034495], [2.376158967217239, 48.868658309532606], [2.376142436697288, 48.868661482578034], [2.375952019032278, 48.86860832555237], [2.375767388533895, 48.86855609324423], [2.375576970273666, 48.86850293560975], [2.375392340524776, 48.868450702718114], [2.375207711146143, 48.868398469539194], [2.375017295407286, 48.86834531011458], [2.374993917508826, 48.868335179290874], [2.374975333047655, 48.868348996825375], [2.3749418577022112, 48.86838601150006], [2.374903659845859, 48.86842633805014], [2.374887675985652, 48.86843007856313], [2.374727767801433, 48.868393883965595], [2.374576572993439, 48.868359786975674], [2.374425379746446, 48.868325689800876], [2.374265472203884, 48.868289494582285], [2.374114278001472, 48.86825539700517], [2.373954372254022, 48.86821920137579], [2.373945344720116, 48.86820923713704], [2.373955579050007, 48.86816812968639], [2.37396616731892, 48.86812638195603], [2.373956993292668, 48.86811635759459], [2.373725850477422, 48.868066048907316], [2.373514436475425, 48.8680199548186], [2.373488102983312, 48.868018144207106]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 30, "roussel_fabien": 23.0, "nb_emargement": 1412.0, "nb_procuration": 114.0, "nb_vote_blanc": 14.0, "jadot_yannick": 142.0, "le_pen_marine": 56.0, "nb_exprime": 1395.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1835.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1412, "quartier_bv": "41", "geo_point_2d": [48.86904003427069, 2.374830017412351], "melenchon_jean_luc": 647.0, "poutou_philippe": 3.0, "macron_emmanuel": 383.0}, "geometry": {"type": "Point", "coordinates": [2.374830017412351, 48.86904003427069]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e81241d52e1e3994a26e0048e6199d98c39c77f8", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 35, "zemmour_eric": 53.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "10-36", "geo_shape": {"coordinates": [[[2.355867051103591, 48.872204098134695], [2.355799805635366, 48.87222097476447], [2.355626759424619, 48.87228932205109], [2.355457418895691, 48.872355309391125], [2.355288079300988, 48.87242129649504], [2.355115030378966, 48.87248964392144], [2.354945689913786, 48.872555630532936], [2.354772641470526, 48.8726239765641], [2.35460329877159, 48.87268996267587], [2.35443024942174, 48.87275830910303], [2.35440909166174, 48.872780628075915], [2.354412363364183, 48.872784726017066], [2.354401830444036, 48.872808676132315], [2.354394860605757, 48.872814205441735], [2.354203072812347, 48.87287780539003], [2.3540141733963162, 48.872940644489105], [2.353822383309338, 48.87300424381284], [2.353633482975499, 48.87306708230395], [2.353441693321335, 48.873130681017834], [2.353252792069692, 48.873193518901004], [2.353061000121958, 48.87325711699029], [2.352872097952411, 48.873319954265455], [2.352680306437602, 48.87338355174487], [2.352491401987054, 48.87344638840476], [2.352451057716208, 48.87345872941031], [2.352452498020965, 48.87346778453659], [2.352501893421862, 48.87356349481865], [2.352565517158731, 48.87368684941358], [2.352632591608903, 48.87381681026571], [2.352696215953549, 48.87394016566214], [2.352763289692718, 48.87407012640386], [2.352826914656326, 48.874193481702534], [2.352893989047911, 48.87432344234116], [2.35295761600489, 48.874446796650076], [2.353024691037632, 48.874576758084935], [2.3530883172503643, 48.87470011228875], [2.353089850137819, 48.87471489756868], [2.353114695240174, 48.87472501536654], [2.353260769826496, 48.87469125035959], [2.353438274911504, 48.874650224626244], [2.353630667204627, 48.874605752718686], [2.35380817170691, 48.87456472643367], [2.354000563368293, 48.87452025392817], [2.354178067287846, 48.87447922709152], [2.354370458317688, 48.8744347539881], [2.354547961654505, 48.87439372659974], [2.354740352052597, 48.874349252898405], [2.354917854806673, 48.87430822495836], [2.355110244573213, 48.874263750659125], [2.35528774538122, 48.87422272216006], [2.35529555495966, 48.87421809036911], [2.355355873165306, 48.874134229217226], [2.355415492033483, 48.8740517780211], [2.355423704693349, 48.87404707194818], [2.35563770761506, 48.87400264302974], [2.355850297605997, 48.87395910366363], [2.356064299802398, 48.87391467397899], [2.356276889077696, 48.87387113385185], [2.35649089054878, 48.87382670340103], [2.356703479108431, 48.8737831625128], [2.356761691754098, 48.87376469358949], [2.356761412719699, 48.87376167571446], [2.356759705559397, 48.873743256217], [2.356749179219065, 48.873734289022664], [2.356675983360157, 48.87360735896676], [2.356606986228617, 48.87348667572922], [2.3565337897119862, 48.87335974465131], [2.356464793226691, 48.873239062204014], [2.356395797072328, 48.87311837880447], [2.356322601587896, 48.87299144755508], [2.356253606079862, 48.87287076494583], [2.356180412653071, 48.87274383358834], [2.356111417813584, 48.87262314997075], [2.3560382237069373, 48.87249621938983], [2.355969229524874, 48.87237553566324], [2.355896036123785, 48.872248604067586], [2.355874148071884, 48.8722103183755], [2.355867051103591, 48.872204098134695]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 36, "roussel_fabien": 21.0, "nb_emargement": 1171.0, "nb_procuration": 103.0, "nb_vote_blanc": 5.0, "jadot_yannick": 143.0, "le_pen_marine": 25.0, "nb_exprime": 1163.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 5, "nb_inscrit": 1406.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1171, "quartier_bv": "38", "geo_point_2d": [48.87353608263789, 2.3546141288776656], "melenchon_jean_luc": 383.0, "poutou_philippe": 5.0, "macron_emmanuel": 440.0}, "geometry": {"type": "Point", "coordinates": [2.3546141288776656, 48.87353608263789]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e7500dae137e35a4be4237b79894381195980cf7", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 67, "zemmour_eric": 84.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-34", "geo_shape": {"coordinates": [[[2.332253535343118, 48.889206503339764], [2.332246209471286, 48.889202963206436], [2.332184291186158, 48.88911733385572], [2.332101676097844, 48.88900407951834], [2.332014114553227, 48.88888298866132], [2.331947945883873, 48.88879227673392], [2.331920534751669, 48.888776909884996], [2.331893735858597, 48.888790780864724], [2.331743852410114, 48.88887390202673], [2.331588389860976, 48.88895931301626], [2.3314385054514988, 48.88904243288407], [2.331283041898336, 48.88912784346407], [2.331133157868483, 48.889210963843745], [2.33097769331129, 48.88929637401421], [2.330827806956732, 48.889379493092065], [2.330672341395503, 48.88946490285296], [2.330522454056835, 48.88954802243507], [2.330366987491564, 48.88963343178641], [2.330217100555629, 48.8897165500819], [2.330061631611017, 48.889801959915296], [2.329911743702526, 48.88988507781581], [2.329756275129159, 48.88997048634803], [2.329606384872799, 48.89005360474517], [2.329450915295373, 48.890139012867806], [2.329452658008917, 48.890153645667624], [2.3296354488126543, 48.8902255450192], [2.32981318857001, 48.89029585278581], [2.329995980370803, 48.8903677515777], [2.330173721088729, 48.89043805969932], [2.330356513886682, 48.89050995793157], [2.3305342555768602, 48.890580265508916], [2.330717049371771, 48.89065216318142], [2.330894792045755, 48.89072246931531], [2.330901255845041, 48.89073154815033], [2.330872099616366, 48.89085658840229], [2.330847703495616, 48.89097501281832], [2.330849155936596, 48.89100791375296], [2.330851835021289, 48.8910094656708], [2.330906071128152, 48.89100592592078], [2.330954652954514, 48.89100215940081], [2.330969570366682, 48.89101300227367], [2.330930681128503, 48.89113087716462], [2.330885823758535, 48.891268156691936], [2.330846932776526, 48.89138603152063], [2.330802074965931, 48.891523310984695], [2.330763183603643, 48.89164118575874], [2.330718325352418, 48.8917784651595], [2.330679434973728, 48.89189633988658], [2.330634574918082, 48.892033619216384], [2.330595684159211, 48.89215149388883], [2.330556791872121, 48.892269367629076], [2.330511932523956, 48.89240664777313], [2.330519272382751, 48.89244476528872], [2.330540824715524, 48.89244855142518], [2.330660475065847, 48.89242495831614], [2.330774593945179, 48.89240238728288], [2.330793327741577, 48.8924047483815], [2.330821977809542, 48.89239249961518], [2.330899001811785, 48.89237726559231], [2.33108431323679, 48.892340567954435], [2.331275455529309, 48.892302762249514], [2.331460766412271, 48.89226606492587], [2.331651908169484, 48.89222825771822], [2.331837218521952, 48.892191559809525], [2.3320283597323, 48.89215375199839], [2.332213669554266, 48.8921170535047], [2.332404810217743, 48.89207924509016], [2.332590119509201, 48.89204254601138], [2.332781259625801, 48.89200473699337], [2.332966568386745, 48.89196803732955], [2.333157706592677, 48.89193022770051], [2.333343016186887, 48.89189352745929], [2.333534153845929, 48.89185571722681], [2.333651784587246, 48.89183242105708], [2.333661935534969, 48.89182806995526], [2.333644120888358, 48.89179204731657], [2.333622115866651, 48.891653774260114], [2.333600071850676, 48.891515253650276], [2.333578067062822, 48.891376980550845], [2.333556023292728, 48.89123845899868], [2.333534018738826, 48.89110018585629], [2.3335119751915903, 48.89096166516033], [2.333489970871637, 48.890823391974926], [2.333467926195012, 48.89068487122832], [2.333460638098487, 48.89067782491712], [2.333354162304154, 48.89064143724279], [2.333250144432915, 48.8906058887385], [2.333244110354536, 48.89060177580032], [2.33317325169294, 48.8905037900389], [2.333104038911581, 48.890408080591335], [2.333034826373043, 48.890312371994696], [2.332963968499222, 48.89021438608365], [2.33289475785087, 48.89011867649744], [2.332823899128964, 48.89002069137788], [2.332830285818105, 48.88999653240128], [2.332819685491589, 48.88998627138683], [2.332769581946558, 48.88991698513832], [2.332678754624298, 48.889794548382945], [2.332641293481829, 48.88974274437362], [2.332553729440167, 48.889621653992656], [2.332462903152142, 48.889499216141395], [2.332375341287047, 48.889378126509975], [2.332284515843369, 48.88925568849621], [2.332258873140644, 48.889220227151114], [2.332253535343118, 48.889206503339764]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 34, "roussel_fabien": 23.0, "nb_emargement": 1339.0, "nb_procuration": 82.0, "nb_vote_blanc": 10.0, "jadot_yannick": 127.0, "le_pen_marine": 93.0, "nb_exprime": 1326.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 0, "nb_inscrit": 1703.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1339, "quartier_bv": "69", "geo_point_2d": [48.89071228409218, 2.3317843078138907], "melenchon_jean_luc": 401.0, "poutou_philippe": 5.0, "macron_emmanuel": 462.0}, "geometry": {"type": "Point", "coordinates": [2.3317843078138907, 48.89071228409218]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "93306263fe0ad830b02ea1c1c4b00d78e886a37f", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 206, "zemmour_eric": 254.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-2", "geo_shape": {"coordinates": [[[2.276330318538863, 48.86280280797065], [2.276343657500939, 48.86278988217686], [2.276513581808198, 48.862702154138574], [2.276682831214234, 48.86261616382466], [2.276852754383758, 48.862528435291004], [2.277022002653248, 48.86244244538327], [2.277191924697421, 48.86235471545503], [2.277361171842752, 48.86226872505413], [2.277531092736723, 48.86218099552986], [2.277700338770374, 48.86209500373657], [2.27770077406173, 48.862094773431075], [2.277850766388975, 48.862008456563345], [2.278004815728637, 48.8619233475301], [2.278154807058617, 48.861837030268], [2.278308854031731, 48.86175192082203], [2.278331536306712, 48.86173642323023], [2.278312880591444, 48.86171511744472], [2.278190599703153, 48.86160812754724], [2.278067635374893, 48.861499540631755], [2.277945355496202, 48.86139255046287], [2.277822393563322, 48.86128396238323], [2.27770011469422, 48.861176971942974], [2.277577153768699, 48.86106838448953], [2.277454875909174, 48.860961393777885], [2.277331916016141, 48.860852805152035], [2.277209639166185, 48.86074581416903], [2.277086678917625, 48.860637226161145], [2.277084168433821, 48.86063337704395], [2.277049815175713, 48.86050472537886], [2.277016934675983, 48.860379376924925], [2.276984054334568, 48.86025402844776], [2.276949701586278, 48.86012537581065], [2.276916821566812, 48.860000027286304], [2.276882467776596, 48.859871375491444], [2.276849588079282, 48.85974602691993], [2.276815235985491, 48.85961737508457], [2.276782356610116, 48.8594920264659], [2.276748004862289, 48.85936337368249], [2.276731867939451, 48.85935612177245], [2.27654162531641, 48.85938163232239], [2.276353196437402, 48.85940686574442], [2.276162954806595, 48.85943237569946], [2.275974525560679, 48.859457608524075], [2.275784282196263, 48.85948311786773], [2.275595853946271, 48.85950835010321], [2.275405610211283, 48.859533858843726], [2.275217180243981, 48.85955908957426], [2.2752133984679253, 48.85955924204397], [2.275185508149231, 48.85955092854779], [2.27517065164807, 48.85955667898351], [2.275000120855336, 48.85954780986632], [2.274828163450108, 48.859538715115704], [2.274657631399128, 48.85952984640132], [2.274485674112974, 48.859520751158485], [2.274315143541917, 48.85951188196417], [2.274143186374944, 48.85950278622901], [2.273972654570597, 48.85949391563897], [2.273800698873004, 48.85948482031913], [2.27378607568374, 48.859494846641816], [2.273808317067957, 48.859618281596006], [2.273830805024645, 48.85973195461491], [2.273853046603618, 48.85985539043371], [2.273875534760135, 48.859969063419896], [2.27389802301478, 48.86008273639025], [2.273920264915285, 48.86020617125817], [2.273920281335774, 48.86020841615038], [2.27389283512012, 48.86035805713915], [2.273867348390122, 48.86049902401407], [2.273841861522308, 48.86063999086571], [2.273814414854067, 48.8607896317782], [2.273813698893929, 48.86079161321067], [2.273741052039047, 48.86092069933136], [2.273670928345289, 48.861048478656706], [2.273600805670431, 48.86117625793448], [2.27352815775183, 48.86130534388113], [2.273458033018112, 48.861433123037415], [2.273385384387487, 48.86156220886749], [2.273383886439131, 48.86156415856755], [2.273288808897413, 48.861658589104316], [2.273158335284805, 48.86178687304509], [2.273063255564741, 48.86188130337539], [2.27293278085165, 48.8620095861452], [2.27283770167931, 48.862104016285656], [2.272849161114399, 48.86212482053411], [2.272862710234335, 48.86213106883366], [2.27303527649321, 48.862092921545425], [2.273190371297143, 48.86205842720374], [2.273362937075388, 48.862020279440564], [2.273518030083136, 48.861985784663716], [2.27369059538085, 48.86194763642556], [2.2738456893183923, 48.861913141230126], [2.273846594798686, 48.861912917388935], [2.274038554504663, 48.861860221451956], [2.27423343773525, 48.86180878944237], [2.274425396666391, 48.86175609287993], [2.27462027912558, 48.8617046602356], [2.274812237269162, 48.86165196394702], [2.275007118956953, 48.861600530667936], [2.27519907497523, 48.86154783284636], [2.275393957254495, 48.86149639894073], [2.275411960172171, 48.861501924758954], [2.275470397319495, 48.861618493185816], [2.275527090453298, 48.86173189157976], [2.275585528116162, 48.861848459926215], [2.275642221763204, 48.861961857342834], [2.275700659941715, 48.86207842560884], [2.275757355440095, 48.86219182385494], [2.27581579413406, 48.862308392040575], [2.275872488782898, 48.86242178930103], [2.275930927992421, 48.862538357406244], [2.275987623129514, 48.86265175548791], [2.2759928481165232, 48.86265634951971], [2.276156452768875, 48.86273053127986], [2.276304061807933, 48.86279647333432], [2.276330318538863, 48.86280280797065]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 2, "roussel_fabien": 0.0, "nb_emargement": 1291.0, "nb_procuration": 80.0, "nb_vote_blanc": 4.0, "jadot_yannick": 42.0, "le_pen_marine": 51.0, "nb_exprime": 1289.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1567.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1294, "quartier_bv": "62", "geo_point_2d": [48.86097288386615, 2.2756918827800665], "melenchon_jean_luc": 87.0, "poutou_philippe": 1.0, "macron_emmanuel": 617.0}, "geometry": {"type": "Point", "coordinates": [2.2756918827800665, 48.86097288386615]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ea5a5f79c1afa745f8806c42a6831e0c1492bd43", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 56, "zemmour_eric": 89.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "14-51", "geo_shape": {"coordinates": [[[2.31400478574274, 48.830585730713274], [2.31397006941371, 48.83057687239211], [2.313816912116159, 48.83049647095592], [2.313657347971961, 48.83041270395767], [2.313504191639016, 48.83033230210925], [2.3133446271257743, 48.830248535573], [2.313332772579026, 48.83024907279143], [2.31332127283436, 48.83026435192145], [2.313185949156807, 48.830373692689975], [2.313053908717389, 48.83048070028787], [2.312921867735808, 48.830587707729755], [2.312786541030855, 48.83069704710768], [2.312654498952595, 48.830804054233774], [2.312519171113403, 48.83091339418733], [2.312506186585162, 48.8309165519055], [2.312319787329422, 48.83089417767038], [2.3121343117526862, 48.83087191368279], [2.312122277673471, 48.8308743789103], [2.3119901628579163, 48.83096095465953], [2.311858361510008, 48.831047382765966], [2.311726244455532, 48.83113395820249], [2.311594443583096, 48.83122038691186], [2.311462325651775, 48.83130696204348], [2.311330523916267, 48.83139338954935], [2.311198405108303, 48.83147996437609], [2.311066602485856, 48.831566392477086], [2.310934482813024, 48.83165296609958], [2.31080267795351, 48.83173939388858], [2.310670558754239, 48.83182596811333], [2.310538753031544, 48.831912394698776], [2.310406631593301, 48.83199896861079], [2.310274826346047, 48.83208539579923], [2.3101427040309312, 48.83217196940628], [2.310010897920599, 48.83225839539121], [2.309940776886939, 48.83229261317739], [2.309945139258516, 48.832298766686534], [2.309990233775317, 48.83233656855659], [2.310117098643245, 48.83244884354766], [2.310240954816234, 48.83255266850223], [2.310367819387936, 48.83266494319785], [2.31049167658561, 48.83276876697345], [2.310618543585349, 48.8328810413893], [2.310742401795921, 48.83298486488523], [2.31080211931362, 48.83301668710698], [2.31084382536297, 48.83299649274128], [2.311021138846213, 48.83293243106657], [2.311184427353879, 48.83286771185831], [2.311347714081985, 48.83280299331488], [2.31152502765006, 48.83273893088992], [2.3116883135638, 48.83267421097476], [2.311865626263399, 48.83261014893681], [2.312028911350997, 48.832545428549196], [2.312206223205763, 48.83248136509965], [2.312369507455251, 48.83241664513897], [2.312546818453413, 48.832352581177155], [2.3127101018885208, 48.83228785984472], [2.312887412030076, 48.8322237953706], [2.312908563204978, 48.83222967827488], [2.3129368962096812, 48.83222420825499], [2.313136177518566, 48.83214955807161], [2.313313485303981, 48.83208549295014], [2.313490794003964, 48.83202142846932], [2.313690073756331, 48.83194677645023], [2.313867380171329, 48.831882710496046], [2.314023739754851, 48.831844616801355], [2.314025965998256, 48.83184397572445], [2.314182325349613, 48.83180588182114], [2.314377248088142, 48.83176292102251], [2.314381881089201, 48.83176282796445], [2.314406784360514, 48.83175573435011], [2.314588194529347, 48.831711609304215], [2.314783117943106, 48.831668647848296], [2.314964527490241, 48.831624522228154], [2.315159450268226, 48.83158156015563], [2.315222163079183, 48.831566305186605], [2.315226109111446, 48.83156260976371], [2.315175213597072, 48.83152304714575], [2.315060468890495, 48.831431583778226], [2.314941009399801, 48.83133755524863], [2.314826265512414, 48.83124609164126], [2.314706806881032, 48.83115206196288], [2.314592063812832, 48.83106059811563], [2.314472606017111, 48.830966569087074], [2.314357863768088, 48.830875105000054], [2.314238406819843, 48.830781075721994], [2.314123665389991, 48.83068961139516], [2.314004210663224, 48.830595580976144], [2.31400478574274, 48.830585730713274]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 51, "roussel_fabien": 20.0, "nb_emargement": 1097.0, "nb_procuration": 31.0, "nb_vote_blanc": 9.0, "jadot_yannick": 57.0, "le_pen_marine": 97.0, "nb_exprime": 1083.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1433.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1097, "quartier_bv": "56", "geo_point_2d": [48.8316583263911, 2.3125137171547183], "melenchon_jean_luc": 351.0, "poutou_philippe": 3.0, "macron_emmanuel": 350.0}, "geometry": {"type": "Point", "coordinates": [2.3125137171547183, 48.8316583263911]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ffa5bfb9951d38621d17d2a74e5ff97aac63282f", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 48, "zemmour_eric": 68.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "19-9", "geo_shape": {"coordinates": [[[2.374131231575129, 48.877163830293284], [2.374176741253476, 48.87715147036697], [2.374244622080967, 48.87703044230701], [2.37430140119511, 48.87692985196203], [2.374303087022423, 48.87692775993246], [2.374407527158599, 48.87683293963475], [2.374518460091855, 48.87673059247403], [2.374520409417069, 48.876729151136075], [2.3746321758810742, 48.87666238402534], [2.374748943228015, 48.8765927749552], [2.374764122869593, 48.876591383828966], [2.374897132430211, 48.87663471222448], [2.375022011525668, 48.87667557522001], [2.375146889442898, 48.87671643897592], [2.3752798996413, 48.87675976694123], [2.375292638787398, 48.87676553249199], [2.375310595429954, 48.87676008181128], [2.375513088011116, 48.87673469523591], [2.375718259086224, 48.876709235950784], [2.375920751270897, 48.87668384868475], [2.3761259219464312, 48.876658388699724], [2.376328413734706, 48.87663300074293], [2.376533584010656, 48.876607540058096], [2.376736075402626, 48.876582151410574], [2.376941243904835, 48.87655669091806], [2.376951603974029, 48.876544903325566], [2.376903204187641, 48.87645293656081], [2.376853082906805, 48.87635934380622], [2.376856073470287, 48.87635314588284], [2.37684233757852, 48.87634042886105], [2.376827608769605, 48.87631292613268], [2.376817038403503, 48.876291924743455], [2.376816781623814, 48.87629139280029], [2.376769049094836, 48.876180848312295], [2.376716043753093, 48.87605645448902], [2.376668311653331, 48.875945909937315], [2.376615308154541, 48.87582151605005], [2.376615267031739, 48.875821420506554], [2.376567533997894, 48.87571087588403], [2.376512493402178, 48.87558698932919], [2.376464762153796, 48.875476445548536], [2.3764097220502602, 48.87535255892015], [2.376346295201651, 48.875211190474985], [2.376291255660198, 48.87508730376235], [2.376227830819384, 48.87494593522753], [2.376172791840003, 48.874822048430595], [2.376109366269711, 48.87468068069123], [2.3760543278523922, 48.87455679381008], [2.376052432646775, 48.87455418305651], [2.375948659915239, 48.874455903342046], [2.37584817995529, 48.87436150963306], [2.375747700359434, 48.87426711583165], [2.375643930138144, 48.87416883583458], [2.3756338446383882, 48.87416501231942], [2.375482882223753, 48.87415693571024], [2.375329169223184, 48.8741466420857], [2.375317639355938, 48.874140592347345], [2.375273584652951, 48.87405439592008], [2.375192623829569, 48.873897464802326], [2.375148569539102, 48.87381126831001], [2.375118970063018, 48.87378551602246], [2.375095451071378, 48.873786599253584], [2.375057579668781, 48.87382007804399], [2.374982764121483, 48.87388621483858], [2.374859068116069, 48.87399361052183], [2.374746380266229, 48.87409322586567], [2.3746226832818023, 48.874200621284466], [2.374509994532007, 48.87430023638708], [2.374386296579361, 48.874407630642196], [2.374273606929604, 48.87450724550361], [2.374149907987129, 48.874614640393595], [2.374037217437399, 48.874714255013735], [2.373913517515882, 48.874821649639316], [2.373800826066172, 48.87492126401827], [2.37367712517642, 48.87502865748014], [2.373564432826721, 48.87512827161785], [2.373440730947098, 48.875235665714555], [2.3733280376973003, 48.875335279611065], [2.37329563569935, 48.87536341022281], [2.3732862383793982, 48.87536788197643], [2.373277023239385, 48.87538010154593], [2.373185722321161, 48.87545936475109], [2.373073007350977, 48.87555809693149], [2.372949302073975, 48.87566549047141], [2.37283658619863, 48.87576422331], [2.372712881318781, 48.875871615693384], [2.372600164549191, 48.875970348290956], [2.372476458681464, 48.87607774130923], [2.372363739654346, 48.87617647365857], [2.3723269854799423, 48.876205428345614], [2.372328512467995, 48.87621120377706], [2.372204805478921, 48.876318595591876], [2.372078181617436, 48.8764288102667], [2.372090537755092, 48.8764659698754], [2.372160619086341, 48.87646698047324], [2.37232433784669, 48.8765408594685], [2.372490016261831, 48.87660863483888], [2.372653735945522, 48.8766825124749], [2.3728194152399, 48.87675028738066], [2.372836994405281, 48.87674846479944], [2.372924207110887, 48.87668069288422], [2.373012014898246, 48.876608546965585], [2.373099225778438, 48.87654077490715], [2.373187033087576, 48.87646862885098], [2.373206034066112, 48.876467159004335], [2.373356394500123, 48.87654426988642], [2.373494173223701, 48.87661312450085], [2.373644534505697, 48.876690235010805], [2.373782313996322, 48.8767590892845], [2.373785719057025, 48.87676165490647], [2.373871933189464, 48.87685907012612], [2.373948859620532, 48.87695207224073], [2.374035073010008, 48.87704948731889], [2.37411200001363, 48.8771424893126], [2.374131231575129, 48.877163830293284]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 9, "roussel_fabien": 34.0, "nb_emargement": 1334.0, "nb_procuration": 60.0, "nb_vote_blanc": 15.0, "jadot_yannick": 95.0, "le_pen_marine": 53.0, "nb_exprime": 1313.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1745.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1335, "quartier_bv": "76", "geo_point_2d": [48.875668058459084, 2.3747581751946716], "melenchon_jean_luc": 645.0, "poutou_philippe": 9.0, "macron_emmanuel": 308.0}, "geometry": {"type": "Point", "coordinates": [2.3747581751946716, 48.875668058459084]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c87d8da9c4d6c23f5cc93a295e60ea1af51d55c4", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 39, "zemmour_eric": 64.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-23", "geo_shape": {"coordinates": [[[2.3664188731038, 48.82674171554213], [2.366422773937733, 48.82675194500161], [2.366369444010483, 48.826867643907256], [2.366316145935219, 48.82698025449783], [2.366319468247965, 48.82699930464861], [2.3663348659570103, 48.82700334707789], [2.366532896067735, 48.82703070557634], [2.366741754169735, 48.82705929746274], [2.366939786057668, 48.82708665619258], [2.367148643244856, 48.82711524735974], [2.367346675569739, 48.82714260451517], [2.367555533193285, 48.82717119586964], [2.367753565944188, 48.82719855234993], [2.367962425388002, 48.82722714210023], [2.368160457202817, 48.827254497898245], [2.368369317082883, 48.82728308783582], [2.368438105606591, 48.82729258965925], [2.368461751970471, 48.82729287911847], [2.368468983437126, 48.82726726178362], [2.368537838119114, 48.82713915887838], [2.368606143020588, 48.827011996460776], [2.368674998390524, 48.82688389345463], [2.368743302623023, 48.82675673092979], [2.368812155956737, 48.8266286278083], [2.368880459520275, 48.82650146517621], [2.3689487627506223, 48.82637430249072], [2.369017616436525, 48.82624619921448], [2.369085918998023, 48.826119036421694], [2.369154770647744, 48.82599093303022], [2.369223072540202, 48.82586377013019], [2.369291924867005, 48.82573566753708], [2.369360226090533, 48.82560850452979], [2.369429076392067, 48.82548040092211], [2.369497376946676, 48.8253532378076], [2.369566227936175, 48.82522513409898], [2.369573452627366, 48.825219946817924], [2.369685708684805, 48.82518643425323], [2.369796399661278, 48.82515223520655], [2.369803182070461, 48.82514757531244], [2.369817727497688, 48.825124741287226], [2.369833658254481, 48.82509987207954], [2.369847607240984, 48.82508953172146], [2.369846156071706, 48.82508326442515], [2.369906194336757, 48.824989542133125], [2.369979903657505, 48.824874526274776], [2.370055873338539, 48.824755935559715], [2.370129582009704, 48.82464091868584], [2.370205549647875, 48.82452232784388], [2.370279259020624, 48.824407310861], [2.370355225978074, 48.82428871989928], [2.370428933317504, 48.824173703692395], [2.370504900956058, 48.824055112618105], [2.370578607645923, 48.82394009539569], [2.370654574603667, 48.82382150420166], [2.370728280633112, 48.82370648686309], [2.370804245537199, 48.82358789644148], [2.370877952268239, 48.82347287899393], [2.370869386600935, 48.82346077239648], [2.370685453277689, 48.82342368112619], [2.370501494622796, 48.823387129962164], [2.370317561831917, 48.82335003722425], [2.370133605056755, 48.823313485499064], [2.369949671414536, 48.82327639308504], [2.36976571515711, 48.82323984079155], [2.369581783409277, 48.82320274691709], [2.369397826307604, 48.8231661940481], [2.369213895070323, 48.82312910050468], [2.369029939848389, 48.823092547074566], [2.3688460077816362, 48.82305545205639], [2.3686620530774602, 48.823018898057924], [2.368652377338301, 48.82301077686675], [2.368651631381248, 48.82300174138754], [2.368649828239653, 48.822983164235396], [2.368616844068574, 48.82298176513398], [2.368426211237023, 48.82296121229471], [2.368212400781684, 48.8229369319952], [2.368021768273381, 48.822916378510364], [2.367807958190337, 48.82289209748677], [2.36761732600539, 48.82287154335642], [2.3674035162944502, 48.8228472616087], [2.3673976541430273, 48.82285252972603], [2.367440235010933, 48.822893798043694], [2.367533462503228, 48.82293999659556], [2.367670146263183, 48.823008329192795], [2.367822589093219, 48.8230838707022], [2.367959273620159, 48.823152202060896], [2.368111717289841, 48.823227743192035], [2.368248402561965, 48.82329607511085], [2.368247150117698, 48.823310972062096], [2.368061488277463, 48.82338398456626], [2.367886162346783, 48.823453648176034], [2.367700498130992, 48.823526660103234], [2.367525171227314, 48.82359632407424], [2.367349843865933, 48.82366598688453], [2.367164179505003, 48.8237389979725], [2.367132448234432, 48.82375160568527], [2.3671299902678, 48.823758852441955], [2.36714524409199, 48.823772318585284], [2.367141258605667, 48.82388936299443], [2.367135754184412, 48.824031671819135], [2.367131768656961, 48.824148716200966], [2.367126262831317, 48.824291024085845], [2.3671222772518172, 48.824408069339675], [2.367116772734906, 48.82455037719843], [2.367112787114277, 48.8246674224249], [2.367107282544082, 48.82480973025041], [2.367103296882321, 48.82492677544951], [2.367102905459634, 48.82492872412297], [2.3670545817840782, 48.825058234722896], [2.367006923998618, 48.8251862819336], [2.366959265979065, 48.82531432911064], [2.366910941600225, 48.82544383870876], [2.366863283109614, 48.82557188581824], [2.3668149596046613, 48.825701396254395], [2.366767300642886, 48.82582944329619], [2.366718975309749, 48.825958952757304], [2.366671315876698, 48.826086999731494], [2.366622991417545, 48.82621651003063], [2.366575331513317, 48.8263445569372], [2.366527005225854, 48.82647406626131], [2.366479344850438, 48.826602113100215], [2.366431019436957, 48.82673162326237], [2.366430824427496, 48.8267320899037], [2.3664188731038, 48.82674171554213]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 23, "roussel_fabien": 20.0, "nb_emargement": 1151.0, "nb_procuration": 45.0, "nb_vote_blanc": 16.0, "jadot_yannick": 71.0, "le_pen_marine": 88.0, "nb_exprime": 1127.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1485.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "50", "geo_point_2d": [48.82500420826385, 2.3683967649508553], "melenchon_jean_luc": 503.0, "poutou_philippe": 5.0, "macron_emmanuel": 277.0}, "geometry": {"type": "Point", "coordinates": [2.3683967649508553, 48.82500420826385]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "beebd8ffb80174d074e97952f79fd9b9bda6ad85", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 186, "zemmour_eric": 168.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "8-5", "geo_shape": {"coordinates": [[[2.317633358915719, 48.88091141512228], [2.317643996258733, 48.88092389466425], [2.317720320939831, 48.880946475776355], [2.317756762391089, 48.88095522263166], [2.317768321652331, 48.88095509964306], [2.317948910785342, 48.88089699015496], [2.318129424077295, 48.88083891413645], [2.318310011041119, 48.88078080408979], [2.318490523527573, 48.880722727520705], [2.318671111049087, 48.88066461693101], [2.318851622730141, 48.88060653981134], [2.319032208082467, 48.88054842866306], [2.319212720321603, 48.880490351000574], [2.319393304868025, 48.880432239301506], [2.319573814938272, 48.88037416108073], [2.31975439867889, 48.88031604883084], [2.319934909318952, 48.88025796916798], [2.320115492242019, 48.880199857266575], [2.320296000713291, 48.88014177704535], [2.320305478529759, 48.880141168045654], [2.320485710037821, 48.88017273258421], [2.320669081524088, 48.88020381283794], [2.320849314832789, 48.88023537683502], [2.321032686756614, 48.88026645653009], [2.321212919138996, 48.88029801997025], [2.321396291500372, 48.880329099106596], [2.321410779662849, 48.880325617165425], [2.321442799228034, 48.88029606484642], [2.321469573222304, 48.88026232156562], [2.321485333057238, 48.88025783147375], [2.321671318732321, 48.88029220487508], [2.321851114423575, 48.88032393575036], [2.322037100576146, 48.8803583085814], [2.32221689535499, 48.88039003889776], [2.322226229258699, 48.88038948828737], [2.322381597769461, 48.880341235334164], [2.322582145661622, 48.880277077685435], [2.322737513507164, 48.880228824265444], [2.322938061891473, 48.88016466602166], [2.323093429071996, 48.88011641213484], [2.32329397658497, 48.880052253288305], [2.323449341725218, 48.880003999826286], [2.323470703115328, 48.879994654143054], [2.323472903684122, 48.87997923938778], [2.3234567859855613, 48.87986025532593], [2.323443067171008, 48.87974617808764], [2.323429348416654, 48.87963210083603], [2.3234132309249302, 48.879513116730756], [2.323399512297322, 48.87939903945157], [2.323383396309338, 48.87928005532484], [2.3233696778084703, 48.8791659780181], [2.32335356059732, 48.87904699385446], [2.323331753483813, 48.879022669472924], [2.323323681138584, 48.87902164267009], [2.323146128160798, 48.879076976928296], [2.322971135454702, 48.87913126598433], [2.322793581728626, 48.87918659971421], [2.3226185896384592, 48.8792408891565], [2.322441035164094, 48.879296222358015], [2.322266042349801, 48.8793505103803], [2.322088487115446, 48.879405843952725], [2.321913493565333, 48.87946013145427], [2.321898679127618, 48.879458742607184], [2.32175110336946, 48.87937303182386], [2.321602499530532, 48.879287565938], [2.321454924756667, 48.879201853877014], [2.3213063218804812, 48.87911638850951], [2.321158748079091, 48.87903067607015], [2.321010146189078, 48.87894520942246], [2.32086257336016, 48.87885949660462], [2.320713972432767, 48.878774030475334], [2.320566400576312, 48.878688317279156], [2.320417800635193, 48.87860284986966], [2.320270229739462, 48.878517137194336], [2.320121630772781, 48.87843166940393], [2.319974060861239, 48.87834595545093], [2.319825462868991, 48.87826048727968], [2.319772281584093, 48.87825405972687], [2.319764969737119, 48.87825850137308], [2.319532842367026, 48.87826731138657], [2.319325905003985, 48.87827846485653], [2.319093776107226, 48.87828727401076], [2.318886838570845, 48.87829842672155], [2.318883185452864, 48.87829824045908], [2.318696953772074, 48.87827178347071], [2.318505567910673, 48.87824358001584], [2.318319337980587, 48.878217122446515], [2.318127952524539, 48.87818891838654], [2.31794172160664, 48.87816246111998], [2.317750337919269, 48.87813425646276], [2.317564107400439, 48.8781077977082], [2.317372722755116, 48.87807959243812], [2.317356821777684, 48.87808551113682], [2.317297282486193, 48.87820269157315], [2.31723987700724, 48.878317152852645], [2.3171803371878212, 48.878434333206215], [2.3171229312084263, 48.87854879350628], [2.317063390861072, 48.878665973777025], [2.317005984369238, 48.878780433996944], [2.316946443493944, 48.87889761418493], [2.316889035126425, 48.87901207431692], [2.31687999379844, 48.8790196481984], [2.316895509216474, 48.87904377419251], [2.316971776381733, 48.8791291435697], [2.317044062353909, 48.87921024531176], [2.31711634992646, 48.87929134611269], [2.317192617816259, 48.879376715330004], [2.317201356097231, 48.87938092100053], [2.317365980523544, 48.87940549436741], [2.317532917425667, 48.87942977311635], [2.317697543526395, 48.87945434603399], [2.31786448073967, 48.87947862431951], [2.318029105787696, 48.87950319677237], [2.318196043312116, 48.8795274745945], [2.318206741468043, 48.879536339119475], [2.318204781918789, 48.87967695888464], [2.318203252247259, 48.879811821735196], [2.31820129131475, 48.879952441457334], [2.318199761626089, 48.88008730427411], [2.318197802037157, 48.88022792396879], [2.318196272331368, 48.88036278675179], [2.318194742617658, 48.88049764951821], [2.318192782999835, 48.88063826916042], [2.318187026464436, 48.880645526385024], [2.31805517210941, 48.880707091201415], [2.317912133600702, 48.88077270480914], [2.3177802785987263, 48.880834269315635], [2.317637239394282, 48.880899882587364], [2.317633358915719, 48.88091141512228]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 5, "roussel_fabien": 6.0, "nb_emargement": 1391.0, "nb_procuration": 104.0, "nb_vote_blanc": 12.0, "jadot_yannick": 86.0, "le_pen_marine": 47.0, "nb_exprime": 1373.0, "nb_vote_nul": 7.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1655.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1392, "quartier_bv": "32", "geo_point_2d": [48.879414836656586, 2.3198733957822824], "melenchon_jean_luc": 149.0, "poutou_philippe": 5.0, "macron_emmanuel": 681.0}, "geometry": {"type": "Point", "coordinates": [2.3198733957822824, 48.879414836656586]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4ee3884386563f12186d1b9a804118964d4740b2", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 57, "zemmour_eric": 115.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "19-65", "geo_shape": {"coordinates": [[[2.382860348206879, 48.8900724199966], [2.382876826818519, 48.89006634007815], [2.382983703048017, 48.8899740017625], [2.383136540411443, 48.88984193519075], [2.383194902707396, 48.88979151231701], [2.383215754067362, 48.88978803412899], [2.383232438642612, 48.889774111341225], [2.383280951598012, 48.88973219653201], [2.383421958272561, 48.8896092030486], [2.383528832586409, 48.889516865107225], [2.383635706531955, 48.88942452616338], [2.3837767115352753, 48.88930153222775], [2.383778721149593, 48.88929904785157], [2.383837368368967, 48.88919159742467], [2.383898102663588, 48.88907578591165], [2.383956748032077, 48.88896833449813], [2.3840174831644863, 48.88885252290802], [2.384076128024537, 48.88874507231348], [2.384136861267316, 48.88862926063225], [2.384195507003815, 48.88852180906511], [2.384236677329533, 48.888443299516176], [2.38424633185356, 48.888417658224], [2.3841907248182412, 48.88840195337136], [2.384008708208395, 48.88833495560615], [2.383824179858374, 48.88826923965674], [2.383642165558386, 48.88820224043402], [2.383457636777675, 48.88813652390475], [2.383275623402462, 48.88806952501605], [2.383091096918341, 48.88800380792098], [2.382909083125718, 48.8879368075607], [2.382724557574399, 48.88787108989288], [2.382542544706642, 48.887804089866606], [2.382358020088327, 48.88773837162595], [2.382356544435123, 48.88773791884915], [2.382173103468328, 48.887692053068946], [2.381994339902723, 48.88764554384817], [2.381810899580385, 48.88759967750923], [2.381632135302419, 48.88755316683753], [2.38145337269679, 48.88750665680325], [2.381269933340226, 48.88746078962971], [2.3810911700115662, 48.88741427904377], [2.380907731299471, 48.88736841131147], [2.380902109981639, 48.88736577420835], [2.380767469999377, 48.88725970153581], [2.380637090852788, 48.88715454556623], [2.380609872656811, 48.88713731222383], [2.380590533182292, 48.88713998839173], [2.380557834032069, 48.88716667483401], [2.380427514099861, 48.88727333124458], [2.380296600990506, 48.88738016789772], [2.380166279989031, 48.88748682400325], [2.380035365806967, 48.88759366034996], [2.380032598794942, 48.88759755358317], [2.379988888053118, 48.88774210931354], [2.379938450676277, 48.887901471706286], [2.3799310391895983, 48.88790773038622], [2.379731868153845, 48.8879712612058], [2.379520888785581, 48.88803952569351], [2.379321716745312, 48.88810305582327], [2.379110737658329, 48.888171320486414], [2.379093156450539, 48.888194968748365], [2.3791175290166873, 48.888216051154586], [2.379224555613239, 48.88826863190682], [2.379371441912313, 48.88834195790238], [2.37953124577866, 48.888420465996276], [2.379678131574212, 48.888493791598385], [2.379837936358114, 48.888572300171376], [2.37998482438826, 48.888645624494956], [2.380144630100641, 48.88872413264782], [2.380291517616556, 48.88879745747721], [2.380451324267918, 48.88887596431062], [2.380598214007831, 48.88894928876073], [2.380758021576878, 48.889027796073194], [2.3809049108131672, 48.889101120129894], [2.381051800473937, 48.88917444310224], [2.381211609417873, 48.88925294979327], [2.381211641964895, 48.88925296524993], [2.381373758493541, 48.88933437675977], [2.381533569788153, 48.88941288211745], [2.381695687318017, 48.88949429317958], [2.381855499578127, 48.88957279899543], [2.382017618119892, 48.889654208710574], [2.382177431356186, 48.88973271408534], [2.382339550899172, 48.88981412335273], [2.382499363747915, 48.88989262827939], [2.382661485655866, 48.88997403710612], [2.382821299480796, 48.890052541591665], [2.382860348206879, 48.8900724199966]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 65, "roussel_fabien": 22.0, "nb_emargement": 1145.0, "nb_procuration": 66.0, "nb_vote_blanc": 11.0, "jadot_yannick": 88.0, "le_pen_marine": 61.0, "nb_exprime": 1133.0, "nb_vote_nul": 1.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1547.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1145, "quartier_bv": "73", "geo_point_2d": [48.88856038469009, 2.3818753499598504], "melenchon_jean_luc": 429.0, "poutou_philippe": 8.0, "macron_emmanuel": 300.0}, "geometry": {"type": "Point", "coordinates": [2.3818753499598504, 48.88856038469009]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0f395d0e77ccaf6869bc38fc3f29b7e8d148e807", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 26, "zemmour_eric": 53.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-70", "geo_shape": {"coordinates": [[[2.380717237381531, 48.868965989310055], [2.380783690411908, 48.86900784748272], [2.380959699719155, 48.86906934635406], [2.381131824300523, 48.869129341866156], [2.381307834429385, 48.86919084021883], [2.38147995846064, 48.86925083431736], [2.381652084240894, 48.86931082907147], [2.381828095597086, 48.86937232664901], [2.382000222179744, 48.869432320895896], [2.382176234357551, 48.86949381795472], [2.382348360379408, 48.86955381168731], [2.382524373378621, 48.86961530822744], [2.382524590624659, 48.86961538219458], [2.382545850428633, 48.8696156420574], [2.382554651846023, 48.86960217221134], [2.382629280979122, 48.8695206373798], [2.382700909840515, 48.8694403254119], [2.382772539844239, 48.86936001340235], [2.382847168278809, 48.86927847931639], [2.382848921745607, 48.86927695678479], [2.382981019396921, 48.86918460309686], [2.383115428985875, 48.86909060998846], [2.383247527044687, 48.86899825689714], [2.383381935682586, 48.86890426257435], [2.38351403143317, 48.86881190916635], [2.383648439098729, 48.86871791542775], [2.383780533914927, 48.86862556081076], [2.3839149406188, 48.86853156675705], [2.38404703447934, 48.86843921272965], [2.384181440232065, 48.86834521746155], [2.384198236381909, 48.868343624812844], [2.38437264437683, 48.86841088061128], [2.384548295648333, 48.86847782777366], [2.384722704544429, 48.86854508305387], [2.384898356707822, 48.86861203059365], [2.385072766505199, 48.86867928535562], [2.385248419581621, 48.86874623147428], [2.385265605816175, 48.8687442836421], [2.385366580361882, 48.86866626298901], [2.385466471789916, 48.86858943190643], [2.385567445734616, 48.868511411072944], [2.38566733794313, 48.86843457891971], [2.38567817171706, 48.86843144637042], [2.385907446576437, 48.86843685161295], [2.386141000213383, 48.86844287462215], [2.386154076733889, 48.868437407158275], [2.386237992671668, 48.868307195990575], [2.386318532840343, 48.86818207568612], [2.386399072622223, 48.86805695531326], [2.386482987334741, 48.86792674392903], [2.386492913395768, 48.867901010763426], [2.386486846242523, 48.86789737601319], [2.386359103955373, 48.86786626324237], [2.386177050655863, 48.86782246363339], [2.385985286264446, 48.867775757625076], [2.385803233595439, 48.86773195744395], [2.385611471235513, 48.86768525083989], [2.385429419197216, 48.8676414500866], [2.385237657505626, 48.86759474287989], [2.385055606097843, 48.86755094155438], [2.384863843711441, 48.86750423373793], [2.384681792934379, 48.867460431840286], [2.384490032579476, 48.86741372342811], [2.384307982433037, 48.867369920958346], [2.384116222757118, 48.86732321104414], [2.383934173230573, 48.8672794089015], [2.383742412859872, 48.86723269837756], [2.383560365337843, 48.867188894770514], [2.383378316748181, 48.86714509177707], [2.383186557370336, 48.867098380356936], [2.383143261659377, 48.86709289068887], [2.383125605275758, 48.86710879354775], [2.38310649866626, 48.86714839013013], [2.383087413060359, 48.8671878222373], [2.383084735239525, 48.867190971412754], [2.383003845645865, 48.86724447256515], [2.382918625475151, 48.867309439498875], [2.382904523226774, 48.867316333075394], [2.382897676369409, 48.867324343266304], [2.382853515847188, 48.86735800808383], [2.382714655024516, 48.86746134109211], [2.382585273260929, 48.86755997341887], [2.382446411367801, 48.86766330609711], [2.382317029957766, 48.86776193812291], [2.382178165620448, 48.8678652713633], [2.382048783211572, 48.86796390218184], [2.381909919166835, 48.868067235099204], [2.381780534385381, 48.86816586560274], [2.381641669270155, 48.86826919819], [2.381512283468497, 48.86836782928483], [2.38138289855064, 48.86846645933877], [2.381244031845435, 48.8685697914366], [2.381114644554864, 48.868668421175485], [2.380975776779045, 48.86877175294324], [2.380846389831526, 48.86887038328048], [2.380735902747029, 48.86895259490556], [2.380717237381531, 48.868965989310055]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 70, "roussel_fabien": 41.0, "nb_emargement": 1380.0, "nb_procuration": 84.0, "nb_vote_blanc": 14.0, "jadot_yannick": 110.0, "le_pen_marine": 79.0, "nb_exprime": 1363.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1767.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1380, "quartier_bv": "77", "geo_point_2d": [48.868277015743374, 2.3834583713691995], "melenchon_jean_luc": 694.0, "poutou_philippe": 18.0, "macron_emmanuel": 283.0}, "geometry": {"type": "Point", "coordinates": [2.3834583713691995, 48.868277015743374]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "34211bc55db3a32fe5b6ae5bf9c1386985939929", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 111, "zemmour_eric": 133.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "15-37", "geo_shape": {"coordinates": [[[2.3122606743899112, 48.84127557518821], [2.31226955809611, 48.84126772981588], [2.312462722198423, 48.841225891783296], [2.312645520572702, 48.84118637360493], [2.312838684071708, 48.84114453496229], [2.313021481875593, 48.8411050162065], [2.313204279390427, 48.841065498069284], [2.313397441992926, 48.84102365851989], [2.313413445389016, 48.841027655426615], [2.313466598103979, 48.84108751390107], [2.313513619282675, 48.84114180605181], [2.3135309458331133, 48.84115883067668], [2.313555170415678, 48.8411499256497], [2.31367911669154, 48.84102756559682], [2.313800947405505, 48.8409080253783], [2.313924892517391, 48.84078566594357], [2.314046723464579, 48.84066612545669], [2.314052240515478, 48.84066300390968], [2.314197885900231, 48.84061784352266], [2.314412278324697, 48.84055144089322], [2.314557921711589, 48.840506280954784], [2.314772313218475, 48.84043987767346], [2.314917957344007, 48.84039471729999], [2.314922807023131, 48.84039219176884], [2.314939342241684, 48.84037479465951], [2.314920578869455, 48.84036289019472], [2.314890539974168, 48.840242620163785], [2.314861337388755, 48.84012735628732], [2.3148313001282332, 48.84000708622392], [2.314802097805889, 48.83989182230871], [2.314772059443553, 48.83977155309661], [2.314742857395898, 48.83965628824331], [2.314742763770375, 48.8396558443183], [2.314717807786677, 48.83951132482672], [2.31469233115354, 48.83936340990889], [2.314667375449689, 48.839218890368954], [2.314641900465005, 48.839070975409456], [2.3146169436785993, 48.838926455813336], [2.3145914689799563, 48.83877854080443], [2.314576929726973, 48.83877058801413], [2.314389884474877, 48.838779691548815], [2.314205434177075, 48.838790592218494], [2.314018388776476, 48.838799696071455], [2.313833938342034, 48.83881059526881], [2.313646892804771, 48.838819698540725], [2.313462442210021, 48.83883059806437], [2.313275396547949, 48.83883969985595], [2.313090945804738, 48.83885059880655], [2.312903900006025, 48.83885970001707], [2.312719449114463, 48.83887059839464], [2.312532403167154, 48.83887969992343], [2.3123479521390102, 48.83889059682865], [2.312336684419216, 48.83888770983264], [2.312203178541566, 48.83879136178289], [2.312069368912032, 48.838694528864636], [2.311935865373721, 48.838598181407015], [2.311802056736717, 48.83850134817303], [2.3116685528250303, 48.83840500039257], [2.311534746542827, 48.838308166850695], [2.31140124363192, 48.83821181785594], [2.311267436968074, 48.83811498488978], [2.311250573615505, 48.838113251838436], [2.311201594001254, 48.838131867369285], [2.311147008610135, 48.8381512501374], [2.3111367084837102, 48.83815186624728], [2.311119385648677, 48.838171806248184], [2.31102484590886, 48.83830139339093], [2.310932675357719, 48.83843384060005], [2.31083813467834, 48.83856342756486], [2.3107459631776113, 48.83869587549838], [2.310651421558759, 48.83882546228526], [2.310559249120111, 48.838957910043796], [2.310555022035578, 48.83896136084383], [2.31038534954271, 48.83904502514031], [2.310209383478282, 48.83913422809145], [2.310039711230295, 48.83921789189261], [2.30986374264035, 48.83930709341437], [2.309694069274847, 48.83939075671231], [2.309518099497762, 48.839479958611115], [2.309516435903789, 48.839493225495126], [2.309639792225756, 48.8395805170409], [2.30976359458872, 48.83967366591577], [2.309886953114075, 48.83976095720041], [2.310010756335429, 48.83985410670375], [2.310134114339348, 48.839941397711556], [2.310257918442908, 48.840034546044734], [2.310390444085637, 48.84013410215461], [2.310514247730695, 48.840227251097886], [2.310646774353108, 48.840326806906596], [2.310770578925886, 48.840419954669215], [2.310903106515897, 48.84051951107612], [2.311026913366944, 48.8406126585652], [2.3111594405861062, 48.84071221376375], [2.311283248352996, 48.84080536097149], [2.31140705518808, 48.84089850893474], [2.311539585222516, 48.840998063694514], [2.311539717421678, 48.84099816428519], [2.311661357132309, 48.84109246597145], [2.31177258977566, 48.841178135777916], [2.311883822784573, 48.841263805474355], [2.31200546374962, 48.84135810588895], [2.312008932269114, 48.84137662042737], [2.312038630095033, 48.841377245403415], [2.312046933537601, 48.8413753775037], [2.312142371188169, 48.84132685683759], [2.312239249207752, 48.84127758710802], [2.312243317417086, 48.84127616611339], [2.3122606743899112, 48.84127557518821]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 37, "roussel_fabien": 17.0, "nb_emargement": 1322.0, "nb_procuration": 87.0, "nb_vote_blanc": 12.0, "jadot_yannick": 92.0, "le_pen_marine": 78.0, "nb_exprime": 1310.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 9, "nb_inscrit": 1600.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1322, "quartier_bv": "58", "geo_point_2d": [48.83979760766579, 2.3124102289942683], "melenchon_jean_luc": 234.0, "poutou_philippe": 6.0, "macron_emmanuel": 579.0}, "geometry": {"type": "Point", "coordinates": [2.3124102289942683, 48.83979760766579]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ee1103f512a2fafd967ce5dcb20fa1312e4e496b", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 61, "zemmour_eric": 73.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "14-18", "geo_shape": {"coordinates": [[[2.326273151041003, 48.83416277456605], [2.326265515088514, 48.83414896577003], [2.326203363648021, 48.83406410439365], [2.3261156978149238, 48.83394651768206], [2.3260291381801, 48.833828330948144], [2.32594147313651, 48.83371074408406], [2.32585491563882, 48.83359255810616], [2.325767251384723, 48.83347497108962], [2.325680694673515, 48.83335678496076], [2.325593031208903, 48.83323919779177], [2.325506475284167, 48.833121011511935], [2.325418812609028, 48.83300342419052], [2.325332257470757, 48.832885237759726], [2.325244595585081, 48.832767650285824], [2.325244393534614, 48.83276736764222], [2.325157839183622, 48.832649181060276], [2.325073384413976, 48.83252521698395], [2.32498682949052, 48.83240703024503], [2.324926543768533, 48.83231854061416], [2.324921778167149, 48.832302046189504], [2.32490389467855, 48.83229335982994], [2.324879727807412, 48.83225788613852], [2.32485746188244, 48.83222573916131], [2.324847135495301, 48.83221986192372], [2.324803124681994, 48.83223777452465], [2.324629757904671, 48.832274210523074], [2.324422866908192, 48.8323175169953], [2.32424950096212, 48.832353952447654], [2.3240426093332722, 48.83239725825903], [2.32386924149401, 48.8324336931499], [2.3236623492328, 48.83247699830042], [2.323488982224704, 48.83251343264525], [2.323488960371095, 48.83251343701852], [2.323288204442743, 48.832555709574144], [2.323114836911383, 48.83259214337409], [2.3229140817387792, 48.832634415306515], [2.322740712322063, 48.832670848553924], [2.3227248766271122, 48.83266687988611], [2.322622929603154, 48.83255385930021], [2.322521822716376, 48.83243859763685], [2.322502877155888, 48.83243545313642], [2.322351589752145, 48.832497138501516], [2.322165975787035, 48.83257287431458], [2.322014687597516, 48.83263455834669], [2.321829072653645, 48.83271029362761], [2.321677785017198, 48.832771978133025], [2.321492169094562, 48.8328477128818], [2.3213408792984103, 48.83290939694577], [2.32115526239711, 48.83298513116244], [2.321003971815097, 48.83304681389338], [2.3209814268952202, 48.8330549628351], [2.320980166375553, 48.833059802400776], [2.321060653311922, 48.833151139165786], [2.32116023079998, 48.83326433915332], [2.321268572391388, 48.83338728401775], [2.321368150781939, 48.833500483808294], [2.321476493342911, 48.833623429357786], [2.321576072636069, 48.833736628951364], [2.321684414827663, 48.83385957337954], [2.321783995023433, 48.83397277277613], [2.321785834939311, 48.833977112787494], [2.321788626072932, 48.834076296100555], [2.321791717991443, 48.834180633613336], [2.3217945091471552, 48.834279816908264], [2.321797602451791, 48.83438415440967], [2.321792085300823, 48.83439155913386], [2.321777175848844, 48.83439866687048], [2.321646484921218, 48.834460970809346], [2.321469985006358, 48.83454719345601], [2.321324383774853, 48.83461660383048], [2.32114788143797, 48.83470282598212], [2.321002279342861, 48.83477223595481], [2.320825777308519, 48.834858457626886], [2.3206801743498042, 48.83492786719786], [2.320503671255718, 48.83501408838264], [2.320358067433395, 48.83508349755187], [2.320352164391192, 48.83509111586307], [2.320365194539461, 48.83511198247346], [2.320429173687833, 48.83514578642427], [2.3205275425975, 48.83520285188336], [2.32054195460175, 48.83520435925692], [2.32056444792092, 48.835193347415526], [2.320733807215595, 48.83510472293351], [2.320906660499571, 48.83501651017141], [2.321076018637892, 48.834927885190844], [2.321248870767974, 48.83483967102097], [2.321418227738238, 48.83475104644115], [2.3215910787028182, 48.8346628317628], [2.321760434528446, 48.834574205785174], [2.321933284315829, 48.83448599149769], [2.321940196184137, 48.834484162685776], [2.322126693705685, 48.83447114642293], [2.322321098510604, 48.834457690809074], [2.322507595830642, 48.834444674851326], [2.3227020004503, 48.834431217718766], [2.322888497580513, 48.8344182011668], [2.3230829020030033, 48.83440474341481], [2.323269398943385, 48.83439172626865], [2.3234638031688, 48.834378267897286], [2.323650299919338, 48.834365250156935], [2.323844703936107, 48.83435179206546], [2.324031200508462, 48.834338772831565], [2.324225604328043, 48.83432531412071], [2.324225675235137, 48.83432530912512], [2.324432131677811, 48.83431016889647], [2.3246265352873, 48.83429670953358], [2.324832991500171, 48.834281568612646], [2.32502739353722, 48.83426810859026], [2.325233849520479, 48.834252966977004], [2.325428252721165, 48.83423950541114], [2.325634708463065, 48.8342243640049], [2.325829110091385, 48.83421090177949], [2.32602351296984, 48.83419744014498], [2.326229968383852, 48.83418229681138], [2.326273151041003, 48.83416277456605]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 18, "roussel_fabien": 27.0, "nb_emargement": 1285.0, "nb_procuration": 69.0, "nb_vote_blanc": 17.0, "jadot_yannick": 110.0, "le_pen_marine": 79.0, "nb_exprime": 1263.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1638.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1285, "quartier_bv": "56", "geo_point_2d": [48.83349116119612, 2.323518624815653], "melenchon_jean_luc": 427.0, "poutou_philippe": 7.0, "macron_emmanuel": 388.0}, "geometry": {"type": "Point", "coordinates": [2.323518624815653, 48.83349116119612]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "25f2bc420f15f13bf07a4399f1685ab23652e712", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 88, "zemmour_eric": 111.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "5-20", "geo_shape": {"coordinates": [[[2.364810706512178, 48.84404715735081], [2.364778289899585, 48.84402348404894], [2.364734472810781, 48.84396434418698], [2.364647244921457, 48.843845510757134], [2.364558843312198, 48.84372619435344], [2.364471616221904, 48.843607360770115], [2.364383215407798, 48.84348804511049], [2.364383167169458, 48.843487978301525], [2.364295939526854, 48.84336914365819], [2.364209626874164, 48.84325017259971], [2.364122400014273, 48.84313133870384], [2.364036088151544, 48.843012367494794], [2.363948862096401, 48.84289353254777], [2.363862551012646, 48.84277456208745], [2.363775325751066, 48.84265572698856], [2.363689015468228, 48.842536755478406], [2.363601790989322, 48.84241792112696], [2.363515481496413, 48.842298949466276], [2.363428257822132, 48.84218011406367], [2.363341949119145, 48.84206114225239], [2.363254726227513, 48.8419423075973], [2.363168418314436, 48.84182333563549], [2.363081197589889, 48.84170449993647], [2.362994889104239, 48.84158552781687], [2.362907669162307, 48.84146669286531], [2.362821361466554, 48.841347720595174], [2.362734142329214, 48.841228884592475], [2.362647835423348, 48.841109912171795], [2.362560617068598, 48.84099107691658], [2.36247431095271, 48.84087210434538], [2.362387093391535, 48.84075326893836], [2.362300788065411, 48.84063429621664], [2.362213571308806, 48.840515459758485], [2.36212726677254, 48.84039648688621], [2.362088037696288, 48.84034303538536], [2.362076095698697, 48.840333210011565], [2.361986365925612, 48.840358643025965], [2.361786951106835, 48.840357412890164], [2.361590429665717, 48.84035645328263], [2.361391014864666, 48.840355222486785], [2.361194493450224, 48.840354261329466], [2.360995078666913, 48.84035302987357], [2.360798557256913, 48.84035206896517], [2.360599142491347, 48.84035083684923], [2.360402621108057, 48.840349874391066], [2.360398786887763, 48.84035021813251], [2.360214178612376, 48.84038482683295], [2.360015062814475, 48.84042226347767], [2.359830452677726, 48.840456870677166], [2.359631337691433, 48.84049430668803], [2.3594467270448343, 48.840528913293106], [2.3592476115077172, 48.84056634866286], [2.359063000340012, 48.8406009555728], [2.358863884252074, 48.84063839030145], [2.358679272585487, 48.84067299571767], [2.358480154584292, 48.84071042979789], [2.358295543770221, 48.84074503462702], [2.35809642521822, 48.840782468066095], [2.357911812520697, 48.840817073192774], [2.357712694780346, 48.84085450599807], [2.35752808158398, 48.840889109631014], [2.357328963292839, 48.84092654179512], [2.3571443495865623, 48.84096114483368], [2.35694523074464, 48.840998576356675], [2.356760616517461, 48.84103317970011], [2.35656149712476, 48.841070610581944], [2.356376882398676, 48.84110521243163], [2.356177761092749, 48.84114264266501], [2.355993147219233, 48.84117724392759], [2.355959546206798, 48.84117038525757], [2.35594024635702, 48.8411841396375], [2.355928154828907, 48.84121901839611], [2.355918113305315, 48.84124754969221], [2.355908661083356, 48.841274811560794], [2.355913233089534, 48.841284786731904], [2.355944981398192, 48.841291844091295], [2.356053136694605, 48.84131133455601], [2.356189223061529, 48.84133376597144], [2.356199065220865, 48.841344858622904], [2.356145942885178, 48.84147334891707], [2.356094245328107, 48.84159865500435], [2.3560411224864453, 48.84172714432346], [2.355989424425528, 48.84185245033694], [2.355936301055765, 48.841980940479566], [2.355884602502208, 48.84210624551995], [2.355831478615244, 48.842234735586835], [2.355779779558031, 48.84236004055346], [2.35572665515396, 48.84248853054454], [2.355674955581763, 48.842613836336646], [2.355621830660678, 48.842742326251994], [2.355570130595825, 48.842867631071], [2.355518430271257, 48.84299293675292], [2.355465304588988, 48.843121425655795], [2.355413603760634, 48.84324673126388], [2.355360477550112, 48.84337522099025], [2.355308776229089, 48.84350052562521], [2.355255649501326, 48.84362901527585], [2.355250949130681, 48.84363370529491], [2.355123070686031, 48.843700374593624], [2.3550072192155582, 48.84376255603088], [2.354947769836397, 48.843785512762196], [2.354951121948885, 48.843797172168955], [2.355111983097567, 48.84387911053903], [2.355266517558125, 48.843957465708755], [2.355427379697307, 48.84403940364298], [2.355581916469861, 48.84411775840134], [2.355742779610767, 48.844199695000405], [2.355897317332687, 48.844278049340126], [2.356058181453186, 48.844359986402615], [2.356212718762138, 48.8444383403163], [2.356373585235695, 48.84452027695023], [2.35652812349402, 48.84459863044524], [2.35668898959575, 48.844680566635965], [2.356843530166103, 48.84475891971961], [2.3568930914533333, 48.84478663283121], [2.356896294582889, 48.84478633347523], [2.357050835778532, 48.84486468628365], [2.357211500314653, 48.84494608374213], [2.357366042457885, 48.84502443613215], [2.357526707967692, 48.84510583405498], [2.3576812496959523, 48.84518418601931], [2.357841916201623, 48.84526558260789], [2.357996460240042, 48.84534393416111], [2.358157127730494, 48.84542533031467], [2.35831167271651, 48.8455036814495], [2.358472341180677, 48.845585078067394], [2.358626885751721, 48.8456634287765], [2.358787555211748, 48.845744824060084], [2.358942102092975, 48.845823174358095], [2.359102772537793, 48.84590456920672], [2.359257318992987, 48.84598291997826], [2.359417991785191, 48.846064314399214], [2.359572539199054, 48.84614266385309], [2.359733211613471, 48.8462240578317], [2.359887761337539, 48.8463024068744], [2.360048434725717, 48.846383801317344], [2.360202984034811, 48.846462149934325], [2.360363659781441, 48.846543543050224], [2.360518210038157, 48.84662189124879], [2.360678885406999, 48.84670328392242], [2.360833437973944, 48.846781631709824], [2.360994114316473, 48.84686302484772], [2.3611486664685453, 48.8469413722094], [2.361309343807025, 48.847022764012955], [2.36146389826924, 48.84710111096345], [2.361624576592441, 48.84718250233202], [2.3617791319913852, 48.847260849763366], [2.361939811299418, 48.84734224069687], [2.362094366294398, 48.8474205868032], [2.36225504658726, 48.8475019773017], [2.362409603892512, 48.84758032299683], [2.362470801226242, 48.84761172551481], [2.362496744763913, 48.84760120906965], [2.36249772188248, 48.8476005352613], [2.362633410809971, 48.84749669439975], [2.362765669715088, 48.847397054894294], [2.362901357578879, 48.847293213709925], [2.363033615455294, 48.84719357389008], [2.363169302266484, 48.84708973148354], [2.3633015591141, 48.84699009134932], [2.3634372448506182, 48.846886249519244], [2.363569500669651, 48.84678660907064], [2.36370175462035, 48.84668696845965], [2.36383744014373, 48.846583125255414], [2.363969693065759, 48.84648348433002], [2.364105376152, 48.846379641695], [2.364237629407869, 48.84628000046253], [2.36437331143046, 48.84617615750469], [2.364433675824015, 48.846130677473504], [2.364459463410004, 48.846128386198444], [2.364492530632786, 48.84610193095058], [2.364564417014104, 48.84604776849162], [2.364697941277165, 48.84594600200064], [2.364830190937171, 48.845846360067135], [2.364963714176194, 48.845744592361804], [2.365095964179543, 48.84564495012375], [2.365229485010039, 48.84554318299551], [2.365361733994159, 48.84544354044564], [2.36549525378968, 48.845341773002424], [2.36562750175458, 48.84524213014073], [2.36576102052608, 48.84514036148326], [2.365893267471665, 48.8450407183098], [2.366026786559822, 48.84493895024383], [2.366023035887259, 48.844926576768316], [2.365954493992795, 48.84489425299093], [2.365800668949445, 48.84480813429644], [2.365631984493551, 48.844708740299865], [2.365478160530666, 48.84462262117639], [2.365309477290173, 48.844523226708546], [2.365155654407847, 48.84443710715608], [2.364986972382852, 48.844337712216976], [2.3649835454248462, 48.84433480438318], [2.364895143567318, 48.84421548918689], [2.364858916936097, 48.84412529250543], [2.364814331532489, 48.844065116134615], [2.364810706512178, 48.84404715735081]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 20, "roussel_fabien": 20.0, "nb_emargement": 1192.0, "nb_procuration": 71.0, "nb_vote_blanc": 17.0, "jadot_yannick": 107.0, "le_pen_marine": 64.0, "nb_exprime": 1170.0, "nb_vote_nul": 5.0, "arr_bv": "05", "arthaud_nathalie": 1, "nb_inscrit": 1491.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1192, "quartier_bv": "18", "geo_point_2d": [48.843668694063595, 2.3604887578804368], "melenchon_jean_luc": 333.0, "poutou_philippe": 7.0, "macron_emmanuel": 383.0}, "geometry": {"type": "Point", "coordinates": [2.3604887578804368, 48.843668694063595]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b5bc90f264dc2238301391e30374a18738e70c52", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 36, "zemmour_eric": 97.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-68", "geo_shape": {"coordinates": [[[2.37404377939473, 48.89072647103451], [2.374031616114401, 48.89071745560618], [2.373877201803905, 48.890633507832085], [2.373729015543994, 48.89055225081776], [2.373580829746489, 48.89047099361401], [2.373426416882845, 48.890387046139054], [2.373278232027828, 48.890305788548595], [2.373123821516431, 48.89022183977864], [2.372975637603797, 48.89014058180154], [2.372821226695701, 48.89005663352084], [2.37267304372534, 48.88997537515706], [2.372518633805849, 48.88989142557431], [2.372370451777965, 48.88981016682379], [2.372216042825402, 48.88972621773751], [2.372173167792339, 48.88972950030098], [2.372177511350487, 48.88976321708521], [2.372188204149276, 48.88986123002833], [2.372202096464251, 48.8899891046408], [2.372216668799824, 48.89012268360392], [2.372230562618207, 48.89025055818975], [2.372245135110821, 48.89038413621829], [2.372259029068777, 48.890512010770415], [2.372273601696851, 48.890645589662896], [2.372287495794481, 48.89077346418122], [2.3723020672048962, 48.89090704303128], [2.372315961453145, 48.89103491661654], [2.372330534373523, 48.89116849543845], [2.372344428750509, 48.89129636988922], [2.372345780035269, 48.89129967388302], [2.3724417303252, 48.891429098933145], [2.37252678645659, 48.89154439872791], [2.372527747478141, 48.89154613675494], [2.372586574360967, 48.891700155998166], [2.372651964596953, 48.89186887749249], [2.372684011503543, 48.89188060974316], [2.372708106605009, 48.89187155930064], [2.372920900995678, 48.891898217231486], [2.373128838568541, 48.89192513084466], [2.373341633393556, 48.891951788026574], [2.373549572761622, 48.89197870091495], [2.373762366657181, 48.89200535734082], [2.373970306456651, 48.892032269497264], [2.374183102150325, 48.89205892518136], [2.374391041017394, 48.892085836598795], [2.374603837145383, 48.89211249153391], [2.374811776433035, 48.892139403118705], [2.374825301961299, 48.89213598347175], [2.374909554559706, 48.89206212147494], [2.375042386381878, 48.891941872412055], [2.375126638358135, 48.89186801024941], [2.375125276067151, 48.89185617527962], [2.374992036561161, 48.89177023604142], [2.374860148378202, 48.89168401321999], [2.374726909750367, 48.89159807367331], [2.3745950238063163, 48.89151185055348], [2.374461786056628, 48.89142591069829], [2.374329900987693, 48.89133968727294], [2.374196662752373, 48.89125374710216], [2.374064778558551, 48.89116752337129], [2.373931542565143, 48.89108158289915], [2.373799659246425, 48.890995358862746], [2.373797988493185, 48.89098391076043], [2.373923175290777, 48.890862692044465], [2.374032267373838, 48.890744622112784], [2.37404377939473, 48.89072647103451]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 68, "roussel_fabien": 26.0, "nb_emargement": 1142.0, "nb_procuration": 36.0, "nb_vote_blanc": 19.0, "jadot_yannick": 64.0, "le_pen_marine": 58.0, "nb_exprime": 1124.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1641.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "73", "geo_point_2d": [48.89115150962272, 2.3733422891661746], "melenchon_jean_luc": 504.0, "poutou_philippe": 6.0, "macron_emmanuel": 288.0}, "geometry": {"type": "Point", "coordinates": [2.3733422891661746, 48.89115150962272]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ac09294953dae5b21bec366001bf98ae6b38df4f", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 32, "zemmour_eric": 47.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-23", "geo_shape": {"coordinates": [[[2.328891937821672, 48.89737249864748], [2.328833394508401, 48.89738088408166], [2.3287908003476, 48.89738927793861], [2.328736768599377, 48.897399925220355], [2.328719689108059, 48.897393641265516], [2.328677611790183, 48.89729034061592], [2.328615881094283, 48.89713878734787], [2.328573805563975, 48.89703548574614], [2.328512075472437, 48.89688393238932], [2.328469998978453, 48.89678063161871], [2.328466855780825, 48.896776869222386], [2.328351158211834, 48.89669409713523], [2.32823852351367, 48.8966135166664], [2.328125889164068, 48.896532936085706], [2.328010191303739, 48.89645016454231], [2.32789755766104, 48.896369583734845], [2.327781861902242, 48.89628681106695], [2.3277657965387393, 48.896284841306944], [2.327567667773139, 48.896349311977104], [2.327371417797389, 48.89641317054066], [2.327173288055058, 48.89647764055077], [2.326977037111946, 48.896541498460586], [2.326778906392887, 48.89660596781069], [2.326582654482214, 48.89666982506673], [2.326384524150339, 48.89673429376448], [2.326188271272211, 48.89679815036676], [2.326173453878069, 48.89680218588637], [2.326171351352102, 48.89681235077117], [2.326132528416845, 48.89689789875275], [2.326092276111327, 48.89698659079149], [2.326053452916204, 48.897072138733826], [2.326013200329618, 48.8971608316311], [2.326022910354617, 48.897172125985776], [2.326185241142068, 48.897199305890496], [2.326351761407315, 48.8972271872271], [2.326514091162572, 48.89725436757627], [2.326680611780043, 48.897282248454275], [2.326842943254217, 48.89730942746473], [2.327009462859982, 48.897337307876384], [2.327014695428241, 48.89735300973612], [2.326885161283314, 48.89742224257828], [2.32676380600034, 48.897487101996354], [2.326634271199774, 48.897556333659416], [2.326512916643972, 48.89762119372221], [2.326507878782487, 48.8976277753942], [2.326498241527082, 48.89776909971099], [2.326488525177338, 48.89791157829105], [2.3264788864529162, 48.898052902562], [2.326469169985703, 48.8981953820028], [2.326459531156195, 48.89833670623554], [2.32644981458294, 48.89847918563782], [2.326440175659979, 48.898620508933085], [2.326430458980782, 48.89876298829684], [2.326416723835754, 48.89877157688708], [2.326207703192046, 48.89877047665338], [2.326001526382965, 48.89876939115998], [2.325792505745267, 48.898768291100914], [2.32558632758954, 48.89876720488507], [2.325377306981052, 48.89876610320216], [2.325171130206619, 48.89876501627924], [2.324962109615707, 48.898763913871676], [2.324755932858618, 48.89876282623398], [2.324546912285296, 48.8987617231018], [2.324340734181599, 48.898760634741656], [2.324134557450486, 48.898759546034285], [2.323925536903511, 48.89875844181764], [2.32390556737661, 48.89875644591104], [2.32389641627429, 48.89876598549243], [2.323874971665599, 48.89884941839818], [2.323855512449068, 48.89892512475945], [2.32385538705596, 48.898925747279854], [2.323835199416528, 48.89906110226578], [2.323815041485709, 48.89919626224767], [2.323794853636478, 48.89933161719334], [2.323774694132185, 48.899466777127316], [2.323754535875517, 48.89960193794812], [2.323734347711656, 48.89973729283342], [2.323714189257172, 48.899872452714774], [2.323694000883506, 48.90000780755975], [2.3236738422078362, 48.900142968300145], [2.323653653636045, 48.90027832220563], [2.323633493386864, 48.90041348289805], [2.323613305957481, 48.9005488376702], [2.32359314551057, 48.90068399742316], [2.323572956507362, 48.9008193521473], [2.3235716703466, 48.900840754042875], [2.323582818688701, 48.90084424880282], [2.323671964389986, 48.900847335979975], [2.323873603364072, 48.90085227228035], [2.323939010895748, 48.90085453726919], [2.324175274904275, 48.9008627162937], [2.324376913973983, 48.90086765264587], [2.324388278595283, 48.900868045904474], [2.324575944147755, 48.90087454165279], [2.324777583301255, 48.900879477330406], [2.32496525030753, 48.900885972476345], [2.325166888178193, 48.900890907490805], [2.325354555262485, 48.900897402925935], [2.325556194578343, 48.90090233729261], [2.32574386040014, 48.900908831210735], [2.32594549979716, 48.90091376492198], [2.326101654213621, 48.90091916812171], [2.326102308687114, 48.90091919068988], [2.326303948158228, 48.90092412379764], [2.326407187151292, 48.9009276956017], [2.326505472055945, 48.90092955773485], [2.326521756720087, 48.900929866942306], [2.326723396272298, 48.900934799343794], [2.326941846332098, 48.90093893735066], [2.32714348595924, 48.90094386904492], [2.327361936078766, 48.90094800718481], [2.327563575780832, 48.900952938171756], [2.327777127353317, 48.90095698150159], [2.327978765765445, 48.900961911781884], [2.32819231739538, 48.90096595527064], [2.328393957245605, 48.90097088485955], [2.328607508944492, 48.900974927608], [2.328809148868781, 48.90097985649785], [2.329022699284382, 48.90098389759911], [2.329224339282721, 48.90098882578996], [2.329437891119779, 48.90099286705779], [2.329639531192162, 48.900997794549596], [2.329647821514777, 48.90099795156736], [2.329651075459445, 48.90099801294706], [2.329852715571936, 48.901002940079955], [2.330099784775171, 48.90100761376504], [2.330128724278723, 48.90101014353028], [2.330119660231582, 48.90099654552268], [2.330075856232923, 48.90086797965665], [2.330031770929214, 48.900738394157564], [2.329987967376403, 48.90060982732977], [2.329943882510083, 48.900480241767724], [2.329900078027537, 48.90035167486984], [2.329855993598603, 48.90022208924485], [2.32981219090275, 48.90009352319134], [2.329768106922769, 48.89996393660416], [2.329724304661172, 48.899835370488155], [2.329680221118561, 48.899705783838066], [2.329636417927228, 48.89957721765193], [2.3295923348220873, 48.89944763093885], [2.329548533428884, 48.89931906469788], [2.3295044507611, 48.89918947792192], [2.329460649802132, 48.89906091161848], [2.329416567571598, 48.89893132477957], [2.329372765682999, 48.898802758406], [2.329328683889914, 48.89867317150418], [2.329284883799404, 48.89854460507576], [2.329240802443659, 48.89841501811104], [2.329197002787365, 48.898286451620145], [2.329152921868954, 48.89815686459247], [2.329109121282926, 48.89802829803147], [2.329065040801843, 48.89789871094092], [2.329021242013969, 48.89777014432511], [2.328988268380803, 48.89767320715605], [2.328987482641769, 48.89764527437474], [2.328980465662645, 48.8976405523], [2.328969359252419, 48.897607903213135], [2.328969323817756, 48.897607795096185], [2.328931565853073, 48.89749453091349], [2.328897915693826, 48.89738957696017], [2.328891937821672, 48.89737249864748]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 23, "roussel_fabien": 19.0, "nb_emargement": 961.0, "nb_procuration": 29.0, "nb_vote_blanc": 19.0, "jadot_yannick": 23.0, "le_pen_marine": 101.0, "nb_exprime": 938.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1433.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 961, "quartier_bv": "68", "geo_point_2d": [48.89922849828981, 2.3270446428770777], "melenchon_jean_luc": 500.0, "poutou_philippe": 1.0, "macron_emmanuel": 175.0}, "geometry": {"type": "Point", "coordinates": [2.3270446428770777, 48.89922849828981]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "21673042c87de9a33e1c30ee5d3615004862adf7", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 74, "zemmour_eric": 73.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-26", "geo_shape": {"coordinates": [[[2.376398457101918, 48.86281064218306], [2.37641451697262, 48.862796867874856], [2.376480203593617, 48.86271469621377], [2.3765747699448, 48.86259081408837], [2.376672596045411, 48.862468437269634], [2.376767161492119, 48.86234455496467], [2.376864986678411, 48.86222217796146], [2.376959551220656, 48.862098295477], [2.376960159506278, 48.86209758186625], [2.377057982412487, 48.861975204670934], [2.377160092063539, 48.8618671627643], [2.37725791543048, 48.8617447853872], [2.377342037462166, 48.86165577427136], [2.377358855522124, 48.86164363248344], [2.377360033687836, 48.861641311108926], [2.377378020440165, 48.86162227922283], [2.377477313941754, 48.86151424395095], [2.377579421819776, 48.86140620164162], [2.377678714491925, 48.8612981661816], [2.37778082152881, 48.86119012367937], [2.377880114745147, 48.861082087138996], [2.377982220930265, 48.86097404534314], [2.37808151195419, 48.8608660086075], [2.378183617298193, 48.86075796661876], [2.378282907492701, 48.86064992969501], [2.378385011995598, 48.860541887513385], [2.378484301360698, 48.86043385040147], [2.378586405033224, 48.860325807127715], [2.3786347070882172, 48.860306219267635], [2.378633764108034, 48.86029008550477], [2.378565045068763, 48.860268327843734], [2.378399479753498, 48.86021773594539], [2.378231213914924, 48.86016446142378], [2.378065649253786, 48.86011386905883], [2.377897382739795, 48.860060593156454], [2.377731820095847, 48.86001000033203], [2.377563554258773, 48.85995672395528], [2.377397992269059, 48.85990613066428], [2.377229727108701, 48.85985285381314], [2.377187278483515, 48.85983988196894], [2.377173344476279, 48.859828132337746], [2.377141293562373, 48.85983004391229], [2.377018179545685, 48.85979242194424], [2.37693441092214, 48.85976706224386], [2.376921422847988, 48.859756686312366], [2.376896155407082, 48.8597579361468], [2.376876835566207, 48.85975889228137], [2.376865045498239, 48.85977564686741], [2.376726650607792, 48.85985712909884], [2.376588517766518, 48.8599391152661], [2.376450122009284, 48.86002059716572], [2.376311988288702, 48.86010258390104], [2.376173591675645, 48.860184064569516], [2.376035457086413, 48.860266050973564], [2.375897059595893, 48.860347532209566], [2.375758924148981, 48.860429517383004], [2.375620525791658, 48.86051099828718], [2.375482388113221, 48.86059298312225], [2.375343990252265, 48.860674463701756], [2.37520585169448, 48.860756449104834], [2.375067451614525, 48.86083792844609], [2.374929313551145, 48.86091991352498], [2.374924908817715, 48.860928837207936], [2.37493945179676, 48.86093979974631], [2.375038848575754, 48.86100209310948], [2.375144904080401, 48.861069953926346], [2.375146523835102, 48.86108162149785], [2.375034276117893, 48.86118578211896], [2.374920682272813, 48.86129065327376], [2.374808435016825, 48.86139481367055], [2.374694838898399, 48.861499684584096], [2.374582590729641, 48.861603845648666], [2.374468995063843, 48.86170871633521], [2.374356744641097, 48.86181287626191], [2.374243148064824, 48.86191774671426], [2.37413089674018, 48.862021906409495], [2.374017299242821, 48.86212677752703], [2.374016993531499, 48.862133162174544], [2.37403485193538, 48.86214308002595], [2.374199392999198, 48.86222429429319], [2.37436191915329, 48.86230489343256], [2.374524444458136, 48.86238549143895], [2.374688988413676, 48.86246670502243], [2.3748515147185, 48.86254730347216], [2.375016059705738, 48.862628515694766], [2.375178587021342, 48.86270911368857], [2.375343131655674, 48.86279032634183], [2.375505661355872, 48.86287092298749], [2.375670207011114, 48.86295213517922], [2.375683222402317, 48.86295333894819], [2.375840685258241, 48.86291378063606], [2.376008872090015, 48.862871767962574], [2.376166334452126, 48.86283220921905], [2.376334520768619, 48.86279019518554], [2.376398457101918, 48.86281064218306]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 26, "roussel_fabien": 26.0, "nb_emargement": 1416.0, "nb_procuration": 90.0, "nb_vote_blanc": 15.0, "jadot_yannick": 146.0, "le_pen_marine": 58.0, "nb_exprime": 1398.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 6, "nb_inscrit": 1771.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1415, "quartier_bv": "42", "geo_point_2d": [48.86133945415156, 2.376289512608826], "melenchon_jean_luc": 443.0, "poutou_philippe": 5.0, "macron_emmanuel": 502.0}, "geometry": {"type": "Point", "coordinates": [2.376289512608826, 48.86133945415156]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1e3e496aea0aff7c344d3e5fc4fba16d4af41c3c", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 153, "zemmour_eric": 241.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "16-62", "geo_shape": {"coordinates": [[[2.291604429701444, 48.86910007338389], [2.291620571241569, 48.8690822961948], [2.291622365507145, 48.869072757547876], [2.291542263910936, 48.86896060433547], [2.291455014389328, 48.868838980885585], [2.291374913512901, 48.86872682753747], [2.291287664773677, 48.8686052039399], [2.2912075646170242, 48.86849305045605], [2.291120316659971, 48.86837142671078], [2.291040217223084, 48.86825927309127], [2.290952970048394, 48.868137649198296], [2.290872871331262, 48.868025495443064], [2.290785624938726, 48.86790387140238], [2.290705526929097, 48.86779171841075], [2.290705496164993, 48.867791675059735], [2.290615716930895, 48.86766479984939], [2.290535621030049, 48.86755264582862], [2.29044584260929, 48.86742577136274], [2.290365746078557, 48.86731361719595], [2.290345844511028, 48.86728549168403], [2.290341761189676, 48.86726821526948], [2.290332173262871, 48.8672651429038], [2.29026229728863, 48.867166393785205], [2.290189850574644, 48.867062040816364], [2.290100075217, 48.866935165143644], [2.290027629149541, 48.866830812054786], [2.29002024836262, 48.86681523651543], [2.290013285137162, 48.866813033174274], [2.28991032993548, 48.86667644801129], [2.289808536843954, 48.86654245346576], [2.289705584064698, 48.866405869000666], [2.2896037920407872, 48.86627187334894], [2.289585739122731, 48.866267785672484], [2.289401754068122, 48.86632566828704], [2.289222759792129, 48.86638211341834], [2.289038773930435, 48.86643999546895], [2.288859778868324, 48.86649644005157], [2.288675792199544, 48.866554321538196], [2.288496796351318, 48.866610765572176], [2.28831779875209, 48.866667209327474], [2.288133812241116, 48.866725089980115], [2.287954813855774, 48.86678153318669], [2.287770826537725, 48.86683941327539], [2.287763234681137, 48.866846104222745], [2.287730835898472, 48.86696938845481], [2.287697797478104, 48.867105044799814], [2.287700212839774, 48.8671117431361], [2.287798226081314, 48.867201127222614], [2.287899014863966, 48.86729312685132], [2.287997028787892, 48.867382510760365], [2.28809781827268, 48.867474510206584], [2.288195832878997, 48.86756389393817], [2.288296623065722, 48.86765589320184], [2.28829277970653, 48.86766879488459], [2.288180417305854, 48.8677149485633], [2.288097062151341, 48.86775068574586], [2.288081223801083, 48.867750010559476], [2.287943774712999, 48.86767579798942], [2.287807122098113, 48.86760258557243], [2.287669673777105, 48.867528373577], [2.287533021934175, 48.86745516083731], [2.287395574405034, 48.867380947617924], [2.287258923333956, 48.86730773455553], [2.28725157941581, 48.86730575992], [2.287052730788795, 48.86729368357646], [2.286855978482097, 48.867281636480314], [2.2866571300512932, 48.867269558580006], [2.286460377914885, 48.86725751173251], [2.286263625869478, 48.86724546456153], [2.286064777713992, 48.86723338567672], [2.285978761296865, 48.86723268998764], [2.285976031650176, 48.86724187494325], [2.285962209554431, 48.867296305624265], [2.285928993437234, 48.867428462841644], [2.285896422222029, 48.867556722507764], [2.285863205771884, 48.867688879675796], [2.285830634231774, 48.86781713929382], [2.285797416085524, 48.86794929640434], [2.285764844220702, 48.86807755597427], [2.28573162710464, 48.868209713043555], [2.285699054914904, 48.86833797256534], [2.285665837465878, 48.86847012958526], [2.285633264951322, 48.86859838905896], [2.285600047169327, 48.8687305460295], [2.285567474330048, 48.86885880545505], [2.285534254851904, 48.868990962368066], [2.2855016817001292, 48.869119220846244], [2.285468463239844, 48.86925137861731], [2.285435889763135, 48.869379637047345], [2.285402670969865, 48.86951179476902], [2.285376608177657, 48.86961441746234], [2.28537009716832, 48.86964005315092], [2.285395908058532, 48.869651987801404], [2.285457008709969, 48.86965399838188], [2.285655051746418, 48.86962991783797], [2.285852738985, 48.86960582225318], [2.286050781655349, 48.86958174105344], [2.28624846716485, 48.869557644805916], [2.286446509469091, 48.86953356295039], [2.286644195975887, 48.869509466056336], [2.286842236550819, 48.86948538353687], [2.2870399226918128, 48.86946128598822], [2.287237964263809, 48.869437202821096], [2.287435650038786, 48.8694131046178], [2.287633689881457, 48.86938902078675], [2.287831375290512, 48.86936492192888], [2.288029416130227, 48.86934083745012], [2.288227099810163, 48.869316737929495], [2.28842514027144, 48.86929265369424], [2.288622824948626, 48.869268553527114], [2.288820865056026, 48.869244467736806], [2.289018548004078, 48.86922036690693], [2.289216587745309, 48.86919628046085], [2.289414271690686, 48.86917217898449], [2.289612309702553, 48.86914809187449], [2.289809993281863, 48.8691239897435], [2.28982399622052, 48.86912802995654], [2.289870315090187, 48.86917639556215], [2.289918193903654, 48.869224140858755], [2.28993128867914, 48.86922810012571], [2.290135122870989, 48.869210945428655], [2.290341386235238, 48.86919369326865], [2.290545218794214, 48.86917653786461], [2.290751481886498, 48.869159284997416], [2.290955315538854, 48.869142128902524], [2.291161578359062, 48.86912487532809], [2.291365410378523, 48.86910771852619], [2.291571672914416, 48.86909046514382], [2.291604429701444, 48.86910007338389]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 62, "roussel_fabien": 5.0, "nb_emargement": 1230.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 26.0, "le_pen_marine": 80.0, "nb_exprime": 1221.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1523.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1233, "quartier_bv": "64", "geo_point_2d": [48.86818281843465, 2.2883452606850496], "melenchon_jean_luc": 115.0, "poutou_philippe": 2.0, "macron_emmanuel": 565.0}, "geometry": {"type": "Point", "coordinates": [2.2883452606850496, 48.86818281843465]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bf749dab97fcd2c6f36b5f6efeacea6809197827", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 81, "zemmour_eric": 90.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "9-20", "geo_shape": {"coordinates": [[[2.339233678113393, 48.87678668404288], [2.339249466521938, 48.87681638362478], [2.339256388871439, 48.87683970114404], [2.339268318893229, 48.87688292792086], [2.339264988756017, 48.876898663207264], [2.33927721371077, 48.87691176475647], [2.339302258878717, 48.877002502978165], [2.339335548967219, 48.87712688946867], [2.339372523183194, 48.87726085350522], [2.33940581496804, 48.87738523995456], [2.339442789548054, 48.87751920393802], [2.339476081665855, 48.87764359033866], [2.33951305659871, 48.877777555168294], [2.339546349060775, 48.877901940620944], [2.339549883987007, 48.87790521391717], [2.339610051717123, 48.877900620186246], [2.339812152895104, 48.877867340726695], [2.340012826303675, 48.87783416367316], [2.340214926966409, 48.87780088353163], [2.3404155998508562, 48.877767706700205], [2.340617699998338, 48.877734425876696], [2.3408183723816363, 48.87770124746886], [2.341020472013855, 48.87766796596345], [2.341221143884399, 48.87763478687845], [2.341421815487997, 48.87760160835534], [2.341623914347964, 48.87756832582821], [2.341824585450171, 48.877535145728714], [2.3420266837948542, 48.87750186251958], [2.342031868610411, 48.87750017508534], [2.342191658495501, 48.87741632596095], [2.34236517749661, 48.8773279861163], [2.342381806647505, 48.877327969547004], [2.342555291502408, 48.87741575324755], [2.342725718883681, 48.877502114238865], [2.342899204898303, 48.87758989742715], [2.34306963341958, 48.87767625791517], [2.343243120605266, 48.87776403969194], [2.34341355026675, 48.87785039967671], [2.343424632059469, 48.877852072963414], [2.34361867548317, 48.87782546632339], [2.343807756819249, 48.87779843916095], [2.344001799847402, 48.87777183189862], [2.344190880778624, 48.87774480502906], [2.344384923422543, 48.87771819624521], [2.344574003960231, 48.877691168769175], [2.344608184150194, 48.877688539184454], [2.344612600883192, 48.877667920034995], [2.344612501464026, 48.877667585837514], [2.344567945891111, 48.87753147849201], [2.344522734362851, 48.87739529107665], [2.344478177905482, 48.87725918275736], [2.344432966836897, 48.87712299617377], [2.344388412210455, 48.876986887794885], [2.344343201612955, 48.87685070114377], [2.344298647454027, 48.87671459269787], [2.344253437338926, 48.87657840507994], [2.344261940613009, 48.876536217955405], [2.344223141173595, 48.87653023258011], [2.344072625792349, 48.87653366630793], [2.343899246343672, 48.87653571546623], [2.343702751582983, 48.8765401971577], [2.3435293734614, 48.876542245787775], [2.343332878644353, 48.87654672687214], [2.343159499123002, 48.876548774959026], [2.343158482158421, 48.87654876128496], [2.342939783803272, 48.87654056696316], [2.34274002852684, 48.87652941221163], [2.342540273324619, 48.87651825802587], [2.342321575206181, 48.87651006167522], [2.342319481075312, 48.87651005106946], [2.342114303177546, 48.87651943689051], [2.341917715929708, 48.87652712757239], [2.34171253790364, 48.8765365118054], [2.341515950532135, 48.876544201827365], [2.341310772366421, 48.87655358537164], [2.341114184859679, 48.87656127563302], [2.340909006554325, 48.87657065848855], [2.340712418935308, 48.87657834719073], [2.340515831258148, 48.87658603557006], [2.34031065274747, 48.87659541739987], [2.3403100728293, 48.87659545287554], [2.340150890044966, 48.87660884801751], [2.339917387299548, 48.87662616077458], [2.33975820430897, 48.87663955629335], [2.339524702658742, 48.87665686829149], [2.339365519484728, 48.87667026238839], [2.339318957487404, 48.87667218900916], [2.33930710857851, 48.87668404791118], [2.339276753475662, 48.87672836153495], [2.339246855579359, 48.87677403297245], [2.339233678113393, 48.87678668404288]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 20, "roussel_fabien": 9.0, "nb_emargement": 1224.0, "nb_procuration": 105.0, "nb_vote_blanc": 15.0, "jadot_yannick": 123.0, "le_pen_marine": 56.0, "nb_exprime": 1206.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1487.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1224, "quartier_bv": "36", "geo_point_2d": [48.87713183160945, 2.3419050777752193], "melenchon_jean_luc": 245.0, "poutou_philippe": 5.0, "macron_emmanuel": 537.0}, "geometry": {"type": "Point", "coordinates": [2.3419050777752193, 48.87713183160945]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7cf62565f3f6493ea8c6bf59360a3cce9e0f622c", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 103, "zemmour_eric": 114.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-53", "geo_shape": {"coordinates": [[[2.294327533468581, 48.83294358921089], [2.294320131385568, 48.83292783344097], [2.294239114050941, 48.8328096108992], [2.294157752382485, 48.832690787271275], [2.294076735784514, 48.8325725645945], [2.293995376218269, 48.83245374083902], [2.293914358994825, 48.832335518019214], [2.29383300018084, 48.83221669322882], [2.293751985056255, 48.83209847028201], [2.293670625607941, 48.83197964624732], [2.293589611219983, 48.831861423165485], [2.293508252511733, 48.831742598995184], [2.293427238860396, 48.83162437577838], [2.293345882266589, 48.83150555058123], [2.293264867977472, 48.83138732812066], [2.293183512123705, 48.831268502787914], [2.293102499945475, 48.831150279301106], [2.293021143457457, 48.831031454724034], [2.29302002200094, 48.83102876525161], [2.292991921981784, 48.83086537469341], [2.29295867181155, 48.830692614517915], [2.292948245761853, 48.83067629123018], [2.292920974367815, 48.8306818347564], [2.2928496075481872, 48.83070276853596], [2.292848352646517, 48.83070318921999], [2.292672713089962, 48.83076887003535], [2.29251055627753, 48.830830373594345], [2.292334915866982, 48.83089605390621], [2.292172759622498, 48.83095755700829], [2.291997118357858, 48.831023236816584], [2.291834959944842, 48.831084740344984], [2.291659317826105, 48.83115041964979], [2.291497158631168, 48.83121192181387], [2.291321515658338, 48.83127760061514], [2.291159355669369, 48.831339102314274], [2.291136784299235, 48.83134659795708], [2.291125184955413, 48.831356380989334], [2.2911291577499, 48.831364767847376], [2.291378980559435, 48.83167315900054], [2.291378110711916, 48.83167822183741], [2.289847134746422, 48.83284444875595], [2.289843387608178, 48.83284730451176], [2.289840949131663, 48.83284999895492], [2.289840841466025, 48.832855801991755], [2.289839954836574, 48.83285888428657], [2.289840725954959, 48.832861980921265], [2.289843061887865, 48.832864713605986], [2.290534633587472, 48.83341998162225], [2.290545835082527, 48.83342706049958], [2.290566584771668, 48.83342626171663], [2.290585659397284, 48.83341310546311], [2.290702034664613, 48.83333386632407], [2.2908373188906, 48.833241996825414], [2.29097441283736, 48.83314864942978], [2.291109696114884, 48.8330567787085], [2.291246789074572, 48.832963431884544], [2.291382071391404, 48.832871560840054], [2.29151916202625, 48.83277821278107], [2.291654443370178, 48.83268634231259], [2.2917915343924298, 48.832592993934064], [2.291926814787901, 48.832501122243016], [2.291945679034771, 48.832500696094066], [2.292059205603409, 48.83256791837989], [2.292156470992691, 48.83262527439022], [2.292160998535432, 48.832631953872244], [2.29216128916261, 48.832742580678854], [2.292160829596229, 48.83285287386303], [2.292161118862147, 48.83296350063977], [2.292160659293358, 48.833073793802214], [2.29216094992228, 48.83318442056518], [2.292160488989145, 48.83329471369783], [2.292165026853397, 48.83330144000398], [2.292327831471092, 48.83339763019184], [2.292488465256258, 48.833492706469244], [2.292651271068225, 48.833588896200474], [2.2928119060325862, 48.83368397202727], [2.292974713038733, 48.83378016130176], [2.293135349182399, 48.833875236677926], [2.293295985912126, 48.83397031183031], [2.29345879470581, 48.83406650042132], [2.293473576252004, 48.8340742369227], [2.293489917890305, 48.83406879150335], [2.293604592134546, 48.833998339042516], [2.293721975161315, 48.83392582041098], [2.29383664876523, 48.83385536861797], [2.293954032509387, 48.8337828497575], [2.29397402650471, 48.83378383747775], [2.294084262094099, 48.833875870054904], [2.294192013021662, 48.8339662015302], [2.294302249381551, 48.83405823389148], [2.294410001063812, 48.834148565155736], [2.294420973379002, 48.83415199264611], [2.294649025355841, 48.83414900454779], [2.294864245112667, 48.83414653395156], [2.295079463486925, 48.8341440629601], [2.295307515391315, 48.83414107360626], [2.295324695367848, 48.83413356341528], [2.295326756765869, 48.83412700113005], [2.295309342805958, 48.83410878872142], [2.295199181452876, 48.8339943444223], [2.295092778758079, 48.83388306277678], [2.294986376505406, 48.83377178192482], [2.294876215211303, 48.83365733728575], [2.29476981525599, 48.83354605532747], [2.294659654914347, 48.83343161046585], [2.294553254519921, 48.833320328284465], [2.29444309513073, 48.83320588320035], [2.294336695647159, 48.83309460170315], [2.2942265385847183, 48.83298015550524], [2.294234355576718, 48.83296667322018], [2.294278262994268, 48.832958538427], [2.294313830805521, 48.83295167199873], [2.294327533468581, 48.83294358921089]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 53, "roussel_fabien": 20.0, "nb_emargement": 1227.0, "nb_procuration": 66.0, "nb_vote_blanc": 16.0, "jadot_yannick": 103.0, "le_pen_marine": 88.0, "nb_exprime": 1206.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1584.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1226, "quartier_bv": "57", "geo_point_2d": [48.83254212377506, 2.2926021029785333], "melenchon_jean_luc": 282.0, "poutou_philippe": 3.0, "macron_emmanuel": 431.0}, "geometry": {"type": "Point", "coordinates": [2.2926021029785333, 48.83254212377506]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "27ab9a982818ac9394a07bed7955345fdcfbe6cf", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 177, "zemmour_eric": 166.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "7-21", "geo_shape": {"coordinates": [[[2.303524697028979, 48.85882295564071], [2.303492928655909, 48.858815282718446], [2.30341123051846, 48.85879215154604], [2.303307109994738, 48.858757285410434], [2.303292838188608, 48.85875880586831], [2.303275742884224, 48.85877719885716], [2.303100402737253, 48.85884804345194], [2.302929442293411, 48.85891739698934], [2.3027541012156902, 48.85898824016849], [2.302583139850864, 48.85905759320238], [2.302407796467648, 48.859128435857265], [2.302236834181833, 48.859197788387654], [2.302061491218863, 48.85926863053408], [2.301890528012062, 48.859337982560966], [2.301719564350126, 48.85940733433933], [2.301544219978625, 48.859478175714436], [2.301373255395702, 48.85954752698927], [2.301197910069462, 48.8596183687473], [2.301026944577612, 48.859687718619334], [2.30085159694575, 48.85975855985304], [2.300819828017728, 48.85976350865323], [2.30081526794902, 48.859779612816375], [2.300826249153658, 48.85981135130857], [2.300871479091803, 48.85994222417036], [2.30091600379507, 48.86007092004078], [2.3009612328331253, 48.86020179193079], [2.301005759342873, 48.86033048774567], [2.301050988819755, 48.860461360470374], [2.301095515773048, 48.86059005622177], [2.301140745700629, 48.8607209288819], [2.301185271734507, 48.86084962456179], [2.301230503487923, 48.86098049626606], [2.301275029965453, 48.861109191882434], [2.301320262157627, 48.8612400644214], [2.301364789078614, 48.86136875997424], [2.301410021721614, 48.86149963244864], [2.301454549098324, 48.86162832703868], [2.301499782192157, 48.86175919944855], [2.301544310000278, 48.86188789487429], [2.3015895435449503, 48.86201876721957], [2.301634071796649, 48.86214746258179], [2.301678600268439, 48.86227615791249], [2.301723834499605, 48.862407029261874], [2.30176836341488, 48.862535724529046], [2.301813598084849, 48.862666596713126], [2.301813911299642, 48.86266916169118], [2.301801776853571, 48.86279630950599], [2.301790826232015, 48.8629240146147], [2.301778691670143, 48.86305116239796], [2.30176774093843, 48.863178867475156], [2.301755606260959, 48.8633060152268], [2.301744655431142, 48.86343371937327], [2.301730742060196, 48.863471960420064], [2.301743498269755, 48.863490458940426], [2.3017886510750962, 48.863491310549485], [2.301940280210197, 48.86349416824552], [2.302140965860402, 48.86349800071724], [2.302337747869669, 48.86350170846949], [2.302538433566215, 48.863505541173986], [2.302735214269212, 48.86350924826474], [2.302935900036073, 48.86351307940344], [2.303132682158858, 48.86351678584856], [2.303333367971853, 48.863520617220054], [2.303530150151385, 48.863524323011646], [2.3037308360347613, 48.863528152817324], [2.303927616907987, 48.863531857947414], [2.304128302837592, 48.86353568798589], [2.304325085130581, 48.86353939247036], [2.304525771130432, 48.86354322094301], [2.304722553480032, 48.863546924773985], [2.304923238163067, 48.86355075347146], [2.305120020569476, 48.86355445664884], [2.30532070668576, 48.863558283788464], [2.305430440312914, 48.86356034886172], [2.305451234853161, 48.863555123807345], [2.305435410843414, 48.863496812544746], [2.305437173811082, 48.86336642060128], [2.305439248616839, 48.86323717622452], [2.305441011566117, 48.86310678425039], [2.3054430863521143, 48.86297753984331], [2.305444849283, 48.86284714783856], [2.305446924049035, 48.86271790340113], [2.30544868696153, 48.862587511365774], [2.305450760344799, 48.86245826689004], [2.305452835080683, 48.86232902240715], [2.305454597977215, 48.86219862942667], [2.30545667269324, 48.862069384913404], [2.305458435559391, 48.86193899280161], [2.30546051025566, 48.86180974825802], [2.30546227310332, 48.86167935611561], [2.305464346416743, 48.861550111533745], [2.305466109246119, 48.86141971936075], [2.30546818390257, 48.861290474756466], [2.305469946713557, 48.86116008255288], [2.305470609600767, 48.861157391042084], [2.305529172790928, 48.86103810179421], [2.305592590845093, 48.86090838570821], [2.305651153488053, 48.86078909547456], [2.3057145695604753, 48.86065938018619], [2.3057731316442602, 48.8605400898661], [2.305836547121889, 48.86041037358464], [2.305895108634525, 48.86029108407733], [2.305958524868331, 48.86016136771001], [2.306017085833784, 48.86004207721698], [2.306080500097877, 48.859912360748005], [2.306139060492201, 48.85979307106778], [2.306202475512475, 48.85966335451294], [2.306242879586777, 48.859581047020605], [2.306257298919176, 48.859574394457724], [2.306260460341782, 48.8595565390394], [2.306278614718708, 48.85951955675363], [2.306298994557129, 48.859472565871236], [2.306289951005462, 48.85946150716112], [2.306083649715205, 48.8594190190576], [2.305892406909809, 48.85938024323266], [2.305686104890608, 48.85933775533209], [2.305494862679466, 48.859298978868985], [2.305303619389962, 48.85926020209102], [2.305097319701143, 48.85921771227946], [2.30508810366671, 48.85921797263658], [2.304916724318664, 48.859264177187846], [2.304744896204332, 48.859311711728225], [2.3047339039370778, 48.85931157951323], [2.304561216549001, 48.85925885785296], [2.304398001422208, 48.85920886387871], [2.304225314714575, 48.859156141728874], [2.304062100243776, 48.85910614639259], [2.303898886074295, 48.85905615173071], [2.303726201740687, 48.859003428861314], [2.303721145105021, 48.859000769728745], [2.303633221913792, 48.858919499730206], [2.303527893590816, 48.85882966004331], [2.303524697028979, 48.85882295564071]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 21, "roussel_fabien": 11.0, "nb_emargement": 1163.0, "nb_procuration": 92.0, "nb_vote_blanc": 6.0, "jadot_yannick": 33.0, "le_pen_marine": 68.0, "nb_exprime": 1154.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1448.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1163, "quartier_bv": "28", "geo_point_2d": [48.86119388226026, 2.303524456773725], "melenchon_jean_luc": 118.0, "poutou_philippe": 1.0, "macron_emmanuel": 553.0}, "geometry": {"type": "Point", "coordinates": [2.303524456773725, 48.86119388226026]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "55d48c33c57d40f1da9dd40fefa01155524db55c", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 48, "zemmour_eric": 64.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-60", "geo_shape": {"coordinates": [[[2.398539669568632, 48.864803380346224], [2.398569366656706, 48.8647911240843], [2.398663891018213, 48.864669826567855], [2.398757806138384, 48.864550137523224], [2.398852329613617, 48.86442884073082], [2.398946243866431, 48.864309151512295], [2.399040767839021, 48.86418785365223], [2.399134679861522, 48.864068164252984], [2.39913477256472, 48.86406804510605], [2.399229294287565, 48.86394674796311], [2.3993237756786883, 48.86382181719413], [2.399418296514738, 48.863700519874975], [2.399512778369132, 48.863575588935845], [2.399607298318294, 48.863454291440505], [2.399684100394498, 48.86335273546491], [2.39970065523062, 48.86333428397665], [2.399654630180606, 48.863315471815476], [2.399582649574684, 48.86329968611039], [2.3995032020451053, 48.86327963509142], [2.399494763742536, 48.86326929079433], [2.39953592451462, 48.863146715612714], [2.399579402483363, 48.86301431233222], [2.399620562844498, 48.8628917379926], [2.3996640403854532, 48.862759334650896], [2.39970520035627, 48.86263675935469], [2.399748678822002, 48.862504356857855], [2.3997898383923433, 48.86238178150434], [2.399833315077429, 48.86224937804021], [2.399882574059265, 48.862096351941474], [2.399926050270584, 48.86196394840954], [2.399975308710167, 48.86181092223321], [2.400018784447524, 48.8616785186335], [2.400018930100249, 48.86167522147388], [2.399991290988391, 48.86155264187772], [2.399961888113777, 48.86142888786909], [2.399934250619341, 48.86130630913868], [2.399904848019339, 48.86118255508853], [2.39987720943715, 48.86105997541155], [2.399847808474639, 48.860936221326774], [2.399839338481029, 48.86092924671118], [2.399642512396499, 48.86087808779163], [2.399454601731994, 48.86082887089887], [2.399266691422512, 48.8607796537089], [2.39907701484531, 48.86072997498095], [2.398889105249212, 48.86068075719375], [2.3986994293920922, 48.8606310778629], [2.398511520509381, 48.860581859478394], [2.398321845372346, 48.86053217954467], [2.398133937203029, 48.86048296056293], [2.397944262786085, 48.86043328002632], [2.397756355330062, 48.860384060447295], [2.397566681643715, 48.86033437840856], [2.397378774890695, 48.86028515913157], [2.397189101924352, 48.860235476489954], [2.39700119589524, 48.86018625571644], [2.3968115236386, 48.86013657337124], [2.396780985147456, 48.8601388170929], [2.396780487373782, 48.86015744090296], [2.396674177154104, 48.860266808443946], [2.396565237684124, 48.86037907739844], [2.396458926560356, 48.860488444726386], [2.396349984800138, 48.860600713455604], [2.396243672772269, 48.86071008057045], [2.396134730084767, 48.86082234908128], [2.396028417142362, 48.860931716882334], [2.39591947489055, 48.86104398518168], [2.395813161054448, 48.861153351870335], [2.395704216512351, 48.86126561994436], [2.395597901772118, 48.86137498641995], [2.395488956302707, 48.861487254275566], [2.395382640658332, 48.86159662053808], [2.395273695624598, 48.8617088881822], [2.395167379076074, 48.861818254231586], [2.395058431752008, 48.8619305216504], [2.395005471040535, 48.86198500143159], [2.394999506414698, 48.861985223094436], [2.39498021746589, 48.86200448933296], [2.394926862041025, 48.8620593753827], [2.394824988766816, 48.86216442153849], [2.394718670346769, 48.86227378714431], [2.394616796233525, 48.86237883310257], [2.394510476938884, 48.86248819850228], [2.3944086033496212, 48.86259324426984], [2.394302283180279, 48.86270260946348], [2.39420040738894, 48.862807655026586], [2.394094086334629, 48.862917020913365], [2.393992209714687, 48.86302206537966], [2.393885887785749, 48.8631314310603], [2.393784011679317, 48.86323647623526], [2.39367768888611, 48.86334584081047], [2.39357581057756, 48.863450885780914], [2.393469486909814, 48.86356025015002], [2.393367609125228, 48.863665294929824], [2.393261284582835, 48.86377465909281], [2.3931594045961, 48.86387970366812], [2.393053079178947, 48.86398906762497], [2.392951198353207, 48.86409411200271], [2.392957099894723, 48.86410716350077], [2.393137898301379, 48.86416069547782], [2.393315785194153, 48.86421319526334], [2.393496585710889, 48.86426672580106], [2.3936744733272732, 48.864319225048405], [2.393855273217472, 48.86437275503224], [2.39403316155736, 48.86442525374144], [2.394213963536704, 48.86447878408448], [2.394391852610553, 48.864531281356214], [2.394572653963354, 48.86458481114539], [2.394750543750145, 48.86463730877826], [2.394931347213105, 48.86469083712804], [2.395109237723392, 48.864743334222716], [2.395287127229216, 48.86479583104366], [2.395467931793571, 48.86484935857515], [2.395473459730169, 48.86485014644025], [2.39565250031862, 48.8648506009891], [2.395829815758329, 48.8648512399195], [2.39600885636407, 48.864851693035966], [2.396186171811763, 48.86485233143843], [2.396365212413933, 48.86485278492112], [2.396542527880225, 48.86485342189633], [2.396719841977353, 48.8648540595013], [2.396898883963597, 48.86485451129321], [2.397076198068793, 48.864855148370204], [2.397255238688377, 48.864855600521416], [2.397257410076705, 48.864855490945374], [2.397464116876905, 48.86483403298478], [2.397678978915415, 48.864812479010894], [2.3976809484745543, 48.864812376505476], [2.397881773149765, 48.86481142465949], [2.398086211002094, 48.86481063364343], [2.398287035663076, 48.864809681117436], [2.398491472139422, 48.864808889402276], [2.398539669568632, 48.864803380346224]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 60, "roussel_fabien": 25.0, "nb_emargement": 1112.0, "nb_procuration": 70.0, "nb_vote_blanc": 13.0, "jadot_yannick": 107.0, "le_pen_marine": 58.0, "nb_exprime": 1093.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1352.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1112, "quartier_bv": "79", "geo_point_2d": [48.8627805641203, 2.396970941251026], "melenchon_jean_luc": 419.0, "poutou_philippe": 10.0, "macron_emmanuel": 299.0}, "geometry": {"type": "Point", "coordinates": [2.396970941251026, 48.8627805641203]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0f091cb94b86411582cf054b5e7c6b19661458b3", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 170, "zemmour_eric": 192.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-26", "geo_shape": {"coordinates": [[[2.266766355811822, 48.84905702843451], [2.266750823611015, 48.84904043977498], [2.26667271955647, 48.84901165084017], [2.266655003104463, 48.84900511987795], [2.26659660401541, 48.84900812104062], [2.26658421765942, 48.849018700798716], [2.266447369932416, 48.84900200871611], [2.266265556274516, 48.848987218086414], [2.266051268981339, 48.84897065228531], [2.265869455545262, 48.848955861053255], [2.265655169869491, 48.8489392945506], [2.265473356655245, 48.84892450271628], [2.265259069859014, 48.84890793639465], [2.265077258229254, 48.848893143966365], [2.265061967450481, 48.84890228383101], [2.265066834842501, 48.84903681122177], [2.265072186634537, 48.84916810745176], [2.265077054077766, 48.84930263480999], [2.265082405910166, 48.84943393190745], [2.265087273417389, 48.849568458333856], [2.265092625302837, 48.84969975539952], [2.265097492848486, 48.84983428269265], [2.265102844799666, 48.84996557882724], [2.265100989464849, 48.84997035655095], [2.2649931229221902, 48.850092225261875], [2.26488527861033, 48.85021509049832], [2.264777409694038, 48.850336958979554], [2.264669564367099, 48.85045982399458], [2.264561695802326, 48.85058169226293], [2.264453849460402, 48.850704557056474], [2.264345979884553, 48.85082642510354], [2.264238131164828, 48.85094928966726], [2.264130260577787, 48.85107115749307], [2.264022412205647, 48.8511940218437], [2.264020653364334, 48.85119948365672], [2.264038334516396, 48.85130889485622], [2.264056097022006, 48.85141901614061], [2.264073778310172, 48.85152842821257], [2.264091542328134, 48.85163854947834], [2.2641092237780143, 48.85174796062417], [2.264126987945719, 48.85185808186294], [2.2641221986655182, 48.85186592184085], [2.264076935491045, 48.851890997415914], [2.264032019666858, 48.85191859063054], [2.26401426659787, 48.851942683308266], [2.264036260187579, 48.851955201931595], [2.264130631718302, 48.852085279946614], [2.26424083543555, 48.85223246129009], [2.26426770139065, 48.852269491400406], [2.264273805347118, 48.85229305448228], [2.264289524780833, 48.85229755352325], [2.264357030094536, 48.852390600311836], [2.264442311456647, 48.85251036669266], [2.264536684993621, 48.852640445221766], [2.264621965814799, 48.85276021143922], [2.264716340265529, 48.85289028889811], [2.264801621908522, 48.85301005496066], [2.264822891656124, 48.8530152895335], [2.264856422270267, 48.85298956602138], [2.264969896846877, 48.852892497918525], [2.26509832638421, 48.852784254337564], [2.265211800075782, 48.8526871850881], [2.265340228604594, 48.85257894122755], [2.2654537000230333, 48.85248187262163], [2.265582127556016, 48.852373627582146], [2.265695599439497, 48.852276558737366], [2.265824025963974, 48.85216831341824], [2.265937496949761, 48.8520712443261], [2.266065921090349, 48.85196299961828], [2.2661793911911188, 48.85186592937954], [2.266217751514322, 48.851867599125065], [2.266228923807177, 48.851809829569234], [2.266228903917844, 48.85180891929128], [2.266212952162537, 48.851648750017915], [2.266193262815269, 48.85148660977403], [2.266194479049344, 48.851482115017646], [2.266276972143606, 48.85136407486176], [2.2663653116433, 48.85123807244217], [2.266447805339627, 48.851120031251725], [2.266536144012435, 48.85099402867838], [2.266545347450711, 48.85098905765087], [2.2667053334329452, 48.85096385148967], [2.266871050635713, 48.850935099863484], [2.267031037657445, 48.8509098932739], [2.267196754496164, 48.85088114209452], [2.267206909602893, 48.850872742172704], [2.267213157242727, 48.85074846220712], [2.267218962303934, 48.8506236722754], [2.267225209885059, 48.850499392281364], [2.267231014902305, 48.85037460142179], [2.267237261062244, 48.85025032139099], [2.267243067372919, 48.850125531410576], [2.26724931347426, 48.850001251351316], [2.267255118378192, 48.84987646043472], [2.267269587350131, 48.84985811026394], [2.267256022243441, 48.849841836817326], [2.267171346516936, 48.8497195567552], [2.267080457256883, 48.84958592184073], [2.266995780982857, 48.849463642517215], [2.266904892619464, 48.84933000743864], [2.266820217185875, 48.84920772706345], [2.266729329718926, 48.8490740918208], [2.266766355811822, 48.84905702843451]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 26, "roussel_fabien": 4.0, "nb_emargement": 1196.0, "nb_procuration": 72.0, "nb_vote_blanc": 5.0, "jadot_yannick": 45.0, "le_pen_marine": 62.0, "nb_exprime": 1187.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1502.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1197, "quartier_bv": "61", "geo_point_2d": [48.85076641333272, 2.2656103918934827], "melenchon_jean_luc": 94.0, "poutou_philippe": 2.0, "macron_emmanuel": 600.0}, "geometry": {"type": "Point", "coordinates": [2.2656103918934827, 48.85076641333272]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "93942be2f38534e49fb6eaa6866a62fe28d5f656", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 98, "zemmour_eric": 95.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "14-33", "geo_shape": {"coordinates": [[[2.32420249910148, 48.84317461911384], [2.324269903985266, 48.84314388814867], [2.324305729541796, 48.84301909679187], [2.32434194438479, 48.842899789239034], [2.324377769600941, 48.84277499783336], [2.324413985483566, 48.84265568934103], [2.324449808997048, 48.84253089787879], [2.324486024533494, 48.842411590237894], [2.324521849069097, 48.842286798734456], [2.324558062920195, 48.84216749013865], [2.324593887115534, 48.84204269858634], [2.324630101982944, 48.841923390849615], [2.324666316684657, 48.84180408308919], [2.324702139020204, 48.84167929055687], [2.32473835338731, 48.84155998274852], [2.324774176733419, 48.84143519107433], [2.324773523973426, 48.841416163099915], [2.3247769974814823, 48.841412661688054], [2.3247705718648772, 48.841396561841336], [2.32476735724508, 48.8413027802831], [2.324761563720108, 48.84114944521524], [2.324757696382299, 48.841036635655], [2.324751901564535, 48.840883299643124], [2.324748034267387, 48.84077049005571], [2.324754140078863, 48.8407627854723], [2.324904564064635, 48.840697122727946], [2.325056705530196, 48.840630639367774], [2.325207128753313, 48.840564976235186], [2.325359269447205, 48.84049849248233], [2.325364642730813, 48.84049389734297], [2.325368017459073, 48.84048738787219], [2.325432174082056, 48.84036327461542], [2.325490156228285, 48.840251424439785], [2.325551511457272, 48.8401330638399], [2.325615667195546, 48.84000895134464], [2.325677023216515, 48.83989059066229], [2.325741178357469, 48.83976647807277], [2.32580253244558, 48.83964811729271], [2.325866688351637, 48.83952400461663], [2.32592804185769, 48.83940564464581], [2.325992195804032, 48.839281531867776], [2.326053550113702, 48.83916317091528], [2.326117703462646, 48.83903905804302], [2.326179055839601, 48.83892069699278], [2.326243208591261, 48.83879658402628], [2.326304561760204, 48.83867822289365], [2.326368713914585, 48.8385541098329], [2.326430065150738, 48.838435748602556], [2.32647888590474, 48.83834129753431], [2.326468449655675, 48.83832673375835], [2.326445620913481, 48.83832384145534], [2.3262570152803193, 48.83827931011493], [2.326069405446297, 48.838234920788], [2.325880800456406, 48.838190388850876], [2.32569319126283, 48.83814599893037], [2.325504586916014, 48.83810146639652], [2.325316977000516, 48.83805707587476], [2.325128374659355, 48.83801254275188], [2.324940765384317, 48.837968151636495], [2.324752163697887, 48.837923617017644], [2.324564555063318, 48.837879225308725], [2.324375952646163, 48.83783469098475], [2.324188346014432, 48.83779029868995], [2.32399974424037, 48.83774576376928], [2.323812138249112, 48.837701370880914], [2.32362453121515, 48.83765697768882], [2.323435930405211, 48.83761244187391], [2.323248325373993, 48.83756804809597], [2.323059725207365, 48.83752351168435], [2.322981006320095, 48.83750263968826], [2.322965544490756, 48.83751697446126], [2.322936580730002, 48.83758817098082], [2.322906217586405, 48.83766031739623], [2.32289451568672, 48.837670692833385], [2.322890543427269, 48.83767966493956], [2.322869223943291, 48.8377303208423], [2.322820026084741, 48.83785155429829], [2.322768344283462, 48.83797435834716], [2.322719144609354, 48.8380955908282], [2.322667462328532, 48.83821839480665], [2.322618263540033, 48.838339628126725], [2.32256658079115, 48.83846243113551], [2.3225173801753822, 48.83858366437991], [2.322465696946946, 48.83870646731824], [2.322416497228473, 48.83882770050239], [2.322364813520275, 48.83895050337036], [2.322315611974508, 48.83907173647881], [2.322263927786744, 48.83919453927637], [2.322214727138271, 48.83931577232453], [2.322163042470733, 48.839438575051666], [2.322113839994941, 48.83955980802419], [2.322062154847723, 48.83968261068091], [2.3220129532693248, 48.839803843593145], [2.321961267630722, 48.83992664707874], [2.321912064236578, 48.84004787901598], [2.321880113693971, 48.84012379157421], [2.321846134667822, 48.84014951511715], [2.32184832217711, 48.84016621707829], [2.321828586568455, 48.84021310702895], [2.32178516730587, 48.84032327888255], [2.321733480627192, 48.84044608131331], [2.321690060981204, 48.84055625221011], [2.321638373835815, 48.84067905547346], [2.321594952432269, 48.84078922630504], [2.3215432648433643, 48.840912028602354], [2.321521892105984, 48.840966258814106], [2.321498887053822, 48.84099536674488], [2.321536454130945, 48.841024296595904], [2.321668445009129, 48.84113024044296], [2.321798586725913, 48.8412360315477], [2.321928728982602, 48.84134182160157], [2.322060721462257, 48.84144776498567], [2.32219086614216, 48.84155355474202], [2.322322859690859, 48.841659497816764], [2.322453004057471, 48.84176528815947], [2.3225849986751212, 48.84187123092487], [2.322715144114195, 48.841977020063005], [2.322847139801008, 48.84208296251913], [2.322977286300762, 48.84218875135199], [2.323109283044966, 48.842294694398056], [2.323239431967999, 48.84240048293338], [2.323371429792969, 48.842506424770804], [2.323501578414317, 48.84261221299312], [2.323633577308379, 48.84271815452121], [2.32376372697897, 48.8428239433376], [2.323895726942034, 48.8429298845563], [2.324025877685116, 48.84303567216809], [2.324157878717393, 48.84314161307746], [2.324196558126205, 48.8431730512364], [2.32420249910148, 48.84317461911384]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 33, "roussel_fabien": 23.0, "nb_emargement": 1249.0, "nb_procuration": 94.0, "nb_vote_blanc": 12.0, "jadot_yannick": 141.0, "le_pen_marine": 40.0, "nb_exprime": 1227.0, "nb_vote_nul": 9.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1572.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1248, "quartier_bv": "53", "geo_point_2d": [48.839985121428455, 2.3238367226072794], "melenchon_jean_luc": 281.0, "poutou_philippe": 6.0, "macron_emmanuel": 478.0}, "geometry": {"type": "Point", "coordinates": [2.3238367226072794, 48.839985121428455]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e34324a4f0a29e8b25fbfaee245658bc9b595462", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 36, "zemmour_eric": 72.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-37", "geo_shape": {"coordinates": [[[2.395357761111863, 48.87526701909679], [2.395306076001185, 48.87526427137008], [2.395190082643845, 48.875255663337015], [2.395002053767295, 48.87526732812093], [2.394815452235896, 48.875277707485466], [2.394627423195868, 48.875289371680665], [2.394440822884657, 48.87529974956866], [2.394252793670704, 48.875311414074474], [2.394066191842524, 48.875321791371455], [2.393878162465103, 48.87533345528854], [2.393691560483318, 48.87534383200132], [2.393503530942438, 48.87535549532979], [2.3933169288070593, 48.87536587145835], [2.393128899113206, 48.87537753329889], [2.392942296813761, 48.875387909742535], [2.392754266956471, 48.87539957099439], [2.3925676645034413, 48.87540994685392], [2.392433171017569, 48.87541828731714], [2.392406264069194, 48.87542505672191], [2.392410817484746, 48.875457114946286], [2.392267163707583, 48.875573949127876], [2.392137225779367, 48.87567929725881], [2.392134787257279, 48.87568765316091], [2.3921882291779433, 48.87580053527585], [2.392241229653592, 48.87591095723905], [2.392294672034073, 48.8760238392836], [2.392347672952028, 48.876134262076576], [2.392401115792332, 48.876247144050744], [2.392454117173684, 48.876357565874976], [2.392507117405995, 48.876467988557025], [2.3925605609343013, 48.87658087042585], [2.39256115891605, 48.876582906848164], [2.392572121638525, 48.87667860185505], [2.392583547287828, 48.876773069815684], [2.392594511454761, 48.87686876481094], [2.392605937176004, 48.876963233652454], [2.392612746620752, 48.87698132676768], [2.392635553213834, 48.87698144248096], [2.392806214468215, 48.87691842155106], [2.3929690799283803, 48.87685825129551], [2.393139740375533, 48.8767952298831], [2.393302605065164, 48.87673505916705], [2.393465469388961, 48.8766748873269], [2.393636128634655, 48.87661186519634], [2.393798992177441, 48.87655169379503], [2.393969650615905, 48.87648867118197], [2.394132513388157, 48.87642849932015], [2.39430317101939, 48.87636547622461], [2.394466033021108, 48.87630530390235], [2.394636689845111, 48.876242280324306], [2.394675890718272, 48.87622779696975], [2.394697059445565, 48.87622451442998], [2.394701619514695, 48.87621882043801], [2.394825279828833, 48.87617313098292], [2.394954370340407, 48.87612487247538], [2.39511723083745, 48.876064699254094], [2.395246320809769, 48.876016440427], [2.395259581839951, 48.87601641658678], [2.395423114988373, 48.87607606607722], [2.3955879338665182, 48.8761363342755], [2.395751466404119, 48.87619598330405], [2.395916287415497, 48.87625625015132], [2.396079820705653, 48.87631589872481], [2.3962446424661232, 48.87637616601269], [2.396408176508836, 48.87643581413116], [2.396572997675658, 48.876496080054274], [2.396736533834314, 48.87655572772456], [2.396901355750135, 48.87661599408827], [2.397064892661349, 48.87667564130355], [2.397229715346997, 48.87673590630938], [2.397393253010767, 48.87679555306954], [2.397558076445426, 48.87685581851598], [2.397721614861752, 48.876915464821145], [2.397886439066226, 48.87697572890965], [2.397912346647039, 48.87697497697145], [2.397917044260168, 48.8769719851429], [2.397918095844849, 48.87688691646241], [2.397920359435051, 48.876765765531175], [2.397921980840958, 48.87663458831547], [2.397924244411056, 48.876513437356415], [2.39792586580982, 48.87638225921138], [2.397928129359915, 48.87626110822451], [2.397929750730542, 48.87612993094867], [2.397932014271131, 48.87600877903477], [2.397933635624119, 48.87587760172887], [2.3979358991342092, 48.87575645068643], [2.3979375204800553, 48.875625272451195], [2.397939783970143, 48.87550412138097], [2.397965541550699, 48.8754652091363], [2.397944228342628, 48.87545744593491], [2.397795657861389, 48.87545333062669], [2.397647217257659, 48.875448361422336], [2.397463349700904, 48.87544326768057], [2.397314909157559, 48.875438298064076], [2.39731407526261, 48.87543825339583], [2.397126579523888, 48.875424341807246], [2.396938504993633, 48.87540578915415], [2.396751008108731, 48.87539187697007], [2.396562933819065, 48.875373324625656], [2.396375438514709, 48.8753594118598], [2.396187363112591, 48.87534085891793], [2.395999868035961, 48.87532694466414], [2.395811792884861, 48.87530839113164], [2.395624298015008, 48.87529447718848], [2.395436224478292, 48.87527592307228], [2.395364720479995, 48.8752706165029], [2.395357761111863, 48.87526701909679]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 37, "roussel_fabien": 17.0, "nb_emargement": 1005.0, "nb_procuration": 31.0, "nb_vote_blanc": 11.0, "jadot_yannick": 36.0, "le_pen_marine": 89.0, "nb_exprime": 990.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1379.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1005, "quartier_bv": "75", "geo_point_2d": [48.87595724207849, 2.395097910861788], "melenchon_jean_luc": 481.0, "poutou_philippe": 6.0, "macron_emmanuel": 208.0}, "geometry": {"type": "Point", "coordinates": [2.395097910861788, 48.87595724207849]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6033e60567af7b9038582649f5beddc050fb9823", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 143, "zemmour_eric": 229.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-14", "geo_shape": {"coordinates": [[[2.279679494323125, 48.859912634764996], [2.279706056522634, 48.8599233189066], [2.279836732684501, 48.85995251782287], [2.280048271159392, 48.85999993659651], [2.280220180260021, 48.86003834792248], [2.280431719432381, 48.860085766014656], [2.280603627723643, 48.86012417767793], [2.280815167605881, 48.86017159418935], [2.280987077825877, 48.860210005306996], [2.281025671776726, 48.86021685104352], [2.281026645965569, 48.86021648366397], [2.281094349686772, 48.86020490200142], [2.281173159425829, 48.86021337248446], [2.281232075014115, 48.86019521493212], [2.281331178049612, 48.86017826101056], [2.281510354637112, 48.86014652483233], [2.281677160968247, 48.860117988686376], [2.2818563371501153, 48.86008625108912], [2.282023143098779, 48.86005771445934], [2.282028315618807, 48.86005594768143], [2.2821767826632158, 48.85997461837473], [2.282322473539821, 48.85989649731987], [2.282470938320234, 48.85981516672908], [2.282616628297522, 48.85973704620417], [2.282765092164392, 48.85965571523675], [2.282910781254758, 48.859577594342504], [2.283059244208093, 48.85949626299848], [2.283204933786837, 48.859418140843786], [2.283350621553487, 48.859340019397365], [2.283499083143159, 48.85925868749025], [2.283644770022899, 48.8591805656745], [2.283793230699045, 48.859099233390786], [2.283938916704234, 48.8590211103064], [2.2840873764545, 48.85893977854538], [2.284233062935589, 48.85886165509985], [2.284381521772442, 48.85878032296223], [2.28452720600371, 48.85870219913924], [2.284675663939403, 48.85862086572572], [2.284695640292305, 48.858589272937856], [2.284666276400994, 48.85857216613154], [2.284463285973856, 48.85853742273304], [2.284262165676718, 48.85850427843631], [2.284059177133987, 48.858469535257626], [2.28385805599307, 48.858436390271564], [2.2836550679843, 48.8584016464053], [2.283453947362619, 48.858368500738], [2.283250959900189, 48.85833375528487], [2.283049839797552, 48.8583006089364], [2.282846852856731, 48.85826586369496], [2.282645733273346, 48.85823271666532], [2.282597077656385, 48.85822438742971], [2.282586663344684, 48.85822555711321], [2.282563834050946, 48.858261734469984], [2.2824850564023302, 48.85838424916359], [2.282397950122393, 48.858511442666384], [2.28231917171865, 48.85863395632397], [2.2822320632409863, 48.85876115056846], [2.282219358128365, 48.8587664381226], [2.282027447744941, 48.85876378313203], [2.28183226214011, 48.85875983918585], [2.281640353163629, 48.85875718358266], [2.281445167612927, 48.85875323900509], [2.281253257317582, 48.85875058277289], [2.2810580731837238, 48.85874663757212], [2.280866162932432, 48.8587439807192], [2.2806709788403072, 48.858740035786276], [2.28065696052013, 48.858749603413436], [2.280670096579003, 48.858883902329424], [2.280681550076753, 48.85901568370821], [2.280694686266195, 48.85914998258934], [2.280706141247554, 48.859281763942356], [2.280719277567368, 48.85941606278853], [2.280730732669425, 48.85954784410761], [2.2807173528769003, 48.85955735082034], [2.280536425439747, 48.859559343488286], [2.280354594941485, 48.85956198068638], [2.280173667474382, 48.85956397280591], [2.279991838304534, 48.85956660946098], [2.279980362714764, 48.859571071370226], [2.279907034178602, 48.85965406608617], [2.279834437765842, 48.85973121305033], [2.279761842488599, 48.859808360872535], [2.279688513270377, 48.85989135543682], [2.279679494323125, 48.859912634764996]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 14, "roussel_fabien": 6.0, "nb_emargement": 1091.0, "nb_procuration": 52.0, "nb_vote_blanc": 4.0, "jadot_yannick": 53.0, "le_pen_marine": 54.0, "nb_exprime": 1084.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1358.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1091, "quartier_bv": "62", "geo_point_2d": [48.85924014767389, 2.2820943692908315], "melenchon_jean_luc": 66.0, "poutou_philippe": 4.0, "macron_emmanuel": 508.0}, "geometry": {"type": "Point", "coordinates": [2.2820943692908315, 48.85924014767389]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5ac5ac1e8f2a6f72ad943a47e8d325cf057137d5", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 46, "zemmour_eric": 67.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-20", "geo_shape": {"coordinates": [[[2.314361275443546, 48.83596307563906], [2.314396548873383, 48.83593524262062], [2.314546805829038, 48.83587311000665], [2.31469439300004, 48.83581236222775], [2.314844649246467, 48.83575022923281], [2.314992235722346, 48.835689481079704], [2.315142491259545, 48.835627347703806], [2.31529007569001, 48.83556659826944], [2.315290540150497, 48.83556639946897], [2.315487204433841, 48.835477928797765], [2.31568407411071, 48.83538922423907], [2.315880737045889, 48.83530075380614], [2.316077605383936, 48.83521204858568], [2.316082547135526, 48.835210667526425], [2.316284632147696, 48.835183283986794], [2.316497023688809, 48.83515483298909], [2.316699108266784, 48.83512744874784], [2.316911497991977, 48.83509899700497], [2.31711358349794, 48.83507161206989], [2.317325972769297, 48.835043159589624], [2.317332384027745, 48.835027664928226], [2.317152176129545, 48.83492045101067], [2.316985132841209, 48.8348204628906], [2.316985053411075, 48.834807185905724], [2.317146409903867, 48.83470907643819], [2.317303697597454, 48.834613477055846], [2.317465052890916, 48.83451536714144], [2.31762233941564, 48.83441976732359], [2.31778369350978, 48.83432165696236], [2.317940980227922, 48.8342260567167], [2.318098265006881, 48.83413045624825], [2.3182596173097663, 48.834032345219704], [2.318277435231984, 48.834023610441264], [2.318271024757243, 48.83401053389955], [2.3182505820121992, 48.83396496668272], [2.318231939223014, 48.833917712603885], [2.318227405274542, 48.83391303070736], [2.318084130670301, 48.83383532026732], [2.317925458978995, 48.8337497242817], [2.317782186635983, 48.83367201347635], [2.317623515925785, 48.83358641797702], [2.3174802444936082, 48.83350870589935], [2.317357289346269, 48.833442376945236], [2.317354163952143, 48.83343625506135], [2.317332084131751, 48.833430677938644], [2.317296368216839, 48.83341141096486], [2.317261424385672, 48.833392069242315], [2.31724818958864, 48.83338851491846], [2.317231979911649, 48.83339615969483], [2.317104615150273, 48.833479707435025], [2.316975587956457, 48.83356418898462], [2.316848221011357, 48.8336477364315], [2.316719192998008, 48.83373221679254], [2.316591826593593, 48.833815763961624], [2.316462797748826, 48.83390024403337], [2.316335430522935, 48.83398379091689], [2.316206399484476, 48.834068270691596], [2.316079031437205, 48.83415181728957], [2.31595000091768, 48.834236297682075], [2.315931571805708, 48.83423675708863], [2.315793192374851, 48.83415890642448], [2.315642043427844, 48.834074048365125], [2.315503664861308, 48.83399619735469], [2.315352515483323, 48.8339113398087], [2.315214137781105, 48.83383348845203], [2.315094304692817, 48.833766210026106], [2.31508132401293, 48.833765611359354], [2.315066872788732, 48.833778120728084], [2.314903408319764, 48.8338608406206], [2.314744619449316, 48.83394144566697], [2.314585831461793, 48.834022049605245], [2.314422365452741, 48.834104769721606], [2.314263575107256, 48.834185373212485], [2.314100108086501, 48.83426809197709], [2.313941318095555, 48.834348695935496], [2.313777850051268, 48.834431414247604], [2.313759554969249, 48.83443037843193], [2.313713118677765, 48.834397188660276], [2.313666506790264, 48.83436481988839], [2.313648036715211, 48.8343640393726], [2.3134695001491288, 48.83445991945614], [2.313298116973578, 48.83455350196926], [2.313119579114971, 48.83464938151426], [2.312948196038747, 48.83474296441729], [2.312900916110049, 48.83475250318109], [2.31288767640905, 48.834764923006844], [2.312890283600748, 48.83477880091292], [2.312928223059684, 48.83479645409124], [2.3130453092690972, 48.83489350067133], [2.313175155284398, 48.83499824437568], [2.313292241044592, 48.83509529068872], [2.313422089420921, 48.83520003411391], [2.313539176094093, 48.835297080167734], [2.313669025469271, 48.83540182330596], [2.313786113055428, 48.835498869100526], [2.313915963441301, 48.83560361105254], [2.314033051940453, 48.8357006565879], [2.31416290195104, 48.83580539914438], [2.314279992725506, 48.835902444428314], [2.314352458054106, 48.83596089718286], [2.314361275443546, 48.83596307563906]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 20, "roussel_fabien": 20.0, "nb_emargement": 1104.0, "nb_procuration": 36.0, "nb_vote_blanc": 13.0, "jadot_yannick": 77.0, "le_pen_marine": 81.0, "nb_exprime": 1088.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 12, "nb_inscrit": 1409.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1104, "quartier_bv": "56", "geo_point_2d": [48.834654582283555, 2.3155122250097686], "melenchon_jean_luc": 419.0, "poutou_philippe": 3.0, "macron_emmanuel": 310.0}, "geometry": {"type": "Point", "coordinates": [2.3155122250097686, 48.834654582283555]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e5787fb6a0d8975f23c973f2eeabaa0c84b86e2e", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 149, "zemmour_eric": 207.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-8", "geo_shape": {"coordinates": [[[2.279584075658858, 48.86380229645341], [2.279664296855276, 48.863799761997925], [2.279767976659503, 48.863787922767116], [2.279959504697383, 48.86376552929363], [2.280162505973361, 48.86374235013871], [2.280354033674213, 48.86371995603292], [2.280557033246455, 48.86369677530037], [2.280748560610165, 48.863674380562315], [2.280951561192305, 48.86365119916784], [2.281143088218764, 48.86362880379749], [2.28134608844786, 48.863605621732844], [2.281537615137159, 48.863583225730224], [2.28154400520542, 48.86358146538658], [2.281548574302675, 48.86350902119295], [2.281580217703346, 48.863397927062756], [2.281623859210267, 48.86325292019408], [2.281655503657769, 48.86314182602647], [2.281699143365191, 48.86299681998792], [2.281730787496704, 48.86288572577471], [2.281774428142977, 48.86274071968336], [2.281806070595388, 48.86262962541642], [2.281803653401112, 48.86262263552684], [2.281679273890648, 48.86251107971993], [2.281562550686513, 48.86240392530077], [2.281445826599521, 48.862296770749225], [2.281321448620707, 48.862185215436895], [2.281204725519608, 48.86207806062905], [2.281080348591693, 48.861966504144846], [2.280963627839469, 48.8618593490889], [2.280839250586946, 48.86174779232396], [2.280722530820591, 48.86164063701171], [2.280598155956907, 48.861529080881674], [2.280481435813428, 48.86142192530495], [2.280357062000623, 48.86131036800305], [2.280240342842999, 48.861203212170054], [2.280115970068544, 48.86109165459559], [2.280057594772273, 48.861038061629955], [2.280059703190456, 48.8610315683823], [2.280039358053057, 48.86101224566164], [2.279981016588071, 48.860958682536044], [2.279901158914207, 48.86089213903036], [2.279881737293967, 48.86089081792701], [2.279728939389993, 48.86097498093659], [2.279574897034054, 48.86106009227012], [2.279422098125523, 48.86114425577439], [2.279268053404757, 48.86122936669172], [2.279115253516534, 48.86131352889206], [2.27896120914464, 48.86139864030897], [2.278808408264284, 48.86148280210469], [2.27865436153999, 48.86156791220613], [2.278501559655044, 48.86165207449648], [2.278347513291961, 48.86173718419817], [2.278331536306712, 48.86173642323023], [2.278308854031731, 48.86175192082203], [2.278154807058617, 48.861837030268], [2.278004815728637, 48.8619233475301], [2.277850766388975, 48.862008456563345], [2.27770077406173, 48.862094773431075], [2.277700338770374, 48.86209500373657], [2.277531092736723, 48.86218099552986], [2.277361171842752, 48.86226872505413], [2.277191924697421, 48.86235471545503], [2.277022002653248, 48.86244244538327], [2.276852754383758, 48.862528435291004], [2.276682831214234, 48.86261616382466], [2.276513581808198, 48.862702154138574], [2.276343657500939, 48.86278988217686], [2.276330318538863, 48.86280280797065], [2.276332840014276, 48.86280940198961], [2.276380673490022, 48.862903067509656], [2.276425962296952, 48.862993390008526], [2.276471249910388, 48.863083711575385], [2.276519085249757, 48.86317737702518], [2.27652093737165, 48.86317975801773], [2.276620804895742, 48.86327132858683], [2.27673030372861, 48.86337218913001], [2.276830170614065, 48.86346376039951], [2.276939670256822, 48.86356462073362], [2.277039539254572, 48.863656190921475], [2.2771490397071252, 48.86375705104649], [2.277248908066249, 48.863848621934785], [2.2773584093286052, 48.86394948185071], [2.277377603675678, 48.86399537119709], [2.277422790483237, 48.86402906486682], [2.277473318197191, 48.86405125386842], [2.277501981712102, 48.86403330585859], [2.277607227090032, 48.86402129088232], [2.277800320712056, 48.864000355567626], [2.277898078678766, 48.86398919450576], [2.278101081755856, 48.86396601795281], [2.278294173611612, 48.86394508183208], [2.2784971763405952, 48.863921904606315], [2.278690269236709, 48.863900967853915], [2.278893271617576, 48.86387778995541], [2.279086362827955, 48.86385685255493], [2.279289364860695, 48.86383367398362], [2.279482457111313, 48.86381273595147], [2.279581778982223, 48.86380139496744], [2.279584075658858, 48.86380229645341]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 8, "roussel_fabien": 6.0, "nb_emargement": 1077.0, "nb_procuration": 71.0, "nb_vote_blanc": 3.0, "jadot_yannick": 33.0, "le_pen_marine": 40.0, "nb_exprime": 1072.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1322.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1077, "quartier_bv": "62", "geo_point_2d": [48.8627105903608, 2.2792200123967428], "melenchon_jean_luc": 54.0, "poutou_philippe": 2.0, "macron_emmanuel": 547.0}, "geometry": {"type": "Point", "coordinates": [2.2792200123967428, 48.8627105903608]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eac45823b43d7dc2b7353639880ec28520526cd6", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 122, "zemmour_eric": 145.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "7-2", "geo_shape": {"coordinates": [[[2.310189682802023, 48.86002706936881], [2.310194012469311, 48.860047709282675], [2.310202979227007, 48.860141025610154], [2.310215081261202, 48.86027797228978], [2.310227111279203, 48.860403170298945], [2.310239213437721, 48.8605401169437], [2.310251243574241, 48.86066531492082], [2.3102633458570843, 48.8608022615308], [2.310275376112126, 48.86092745947592], [2.310287478531201, 48.86106440515179], [2.310299507541789, 48.86118960305698], [2.310311611436263, 48.861326549605195], [2.310323640565369, 48.861451747478355], [2.3103357445841812, 48.86158869399172], [2.310347773831808, 48.861713891832835], [2.310359876611964, 48.861850838303546], [2.310371907341106, 48.86197603612051], [2.310384010257501, 48.86211298165704], [2.3103960410932682, 48.86223818034125], [2.310408071998661, 48.862363378110814], [2.310420175100202, 48.86250032359589], [2.310432206124128, 48.862625521333406], [2.310444309338105, 48.86276246768291], [2.310444324064168, 48.862763414783494], [2.310435510540777, 48.862901802767155], [2.310426933151336, 48.86303285159923], [2.310418119536167, 48.863171239547974], [2.310409540683785, 48.86330228923831], [2.310400726976834, 48.863440677152134], [2.310392149411175, 48.86357172591799], [2.310406032157752, 48.863633663172074], [2.31041766972724, 48.863637530878826], [2.310614452851488, 48.863641225021865], [2.310808850347104, 48.86364410917885], [2.311005633523934, 48.86364780267867], [2.311200031065748, 48.863650686200195], [2.311396814295149, 48.86365437905684], [2.3115912132580743, 48.863657261051564], [2.311787995165114, 48.86366095415641], [2.311982394174211, 48.86366383551568], [2.312179177496852, 48.86366752798514], [2.312373575189069, 48.86367040870121], [2.312570358576126, 48.86367409962819], [2.312764756302629, 48.863676980608105], [2.312961539742221, 48.86368067089186], [2.313155938877915, 48.86368355124422], [2.313352721006989, 48.86368724087694], [2.3135471201888222, 48.86369012059387], [2.313743903733351, 48.8636938095912], [2.313938301598375, 48.86369668866489], [2.3141350851954092, 48.86370037701903], [2.314329483118388, 48.86370325455803], [2.314526266756083, 48.863706943168246], [2.314720666088108, 48.86370982007959], [2.314917448415353, 48.863713508038785], [2.315111847793473, 48.86371638431475], [2.315308631548064, 48.86372007073926], [2.315503029597406, 48.86372294727129], [2.315699813404463, 48.863726633052565], [2.315894211499888, 48.86372950894922], [2.316090995359402, 48.863733194087246], [2.316285394863944, 48.86373606935629], [2.316482177412861, 48.86373975384335], [2.316676576975263, 48.86374262757766], [2.316873360927866, 48.86374631232857], [2.31706775917327, 48.86374918541969], [2.317264543178308, 48.86375286952738], [2.31745894146975, 48.863755741983084], [2.317655725527214, 48.86375942544755], [2.317850125227728, 48.863762297275606], [2.318046907986333, 48.863765979189864], [2.3182413077210953, 48.863768851281755], [2.318438091895043, 48.86377253256052], [2.318632490312877, 48.86377540400928], [2.318638858447503, 48.863774495049455], [2.318824860598867, 48.86371456453807], [2.31900807760245, 48.86365889878827], [2.319194078916262, 48.863598967696774], [2.319377295118902, 48.86354330137595], [2.319563295595264, 48.863483369704376], [2.319746510996854, 48.8634277028125], [2.319932510635762, 48.86336777056093], [2.3201157252363043, 48.86331210309801], [2.320301724037755, 48.86325217026633], [2.320484937837243, 48.863196502232405], [2.320670935801236, 48.86313656882067], [2.320854148799568, 48.863080900215735], [2.320897579145885, 48.863075951128465], [2.320921016617536, 48.863051462645686], [2.321104229049353, 48.86299579365364], [2.321289848872285, 48.8629409195676], [2.321473060521241, 48.862885250005384], [2.321658678198808, 48.86283037533415], [2.3218418890649, 48.86277470520175], [2.322027505948423, 48.86271983085226], [2.322210716031651, 48.86266416014967], [2.3223963335074522, 48.86260928433112], [2.32257954280791, 48.862553613058346], [2.322765158138345, 48.86249873665457], [2.32294836665583, 48.86244306481168], [2.323133982555342, 48.862388188737384], [2.323317190289954, 48.86233251632434], [2.323502804055787, 48.86227763876552], [2.32368601100752, 48.8622219657823], [2.3238716239909962, 48.86216708764604], [2.324054830159848, 48.86211141409265], [2.324240443712199, 48.862056536285856], [2.324423649098271, 48.86200086216233], [2.324609260516924, 48.86194598287106], [2.324792465120107, 48.861890308177394], [2.324978077119389, 48.86183542831636], [2.325161280939579, 48.86177975305254], [2.325346890793596, 48.86172487260631], [2.325530093830893, 48.861669196772354], [2.325715702890899, 48.86161431664795], [2.325898905145302, 48.86155864024387], [2.326084514797459, 48.861503758650386], [2.326088552978284, 48.86149927205115], [2.326038524468126, 48.86143394484909], [2.325931982514449, 48.861331620235354], [2.32582907176036, 48.86123132781702], [2.325722530632495, 48.861129002998084], [2.325619619330489, 48.861028709474354], [2.325516709776025, 48.86092841675998], [2.3254101698809713, 48.86082609163504], [2.325307261129911, 48.86072579872224], [2.325200722060649, 48.86062347339215], [2.325097814112884, 48.86052318028091], [2.324991275869304, 48.860420854745676], [2.32488836872503, 48.86032056143601], [2.324781831307023, 48.860218235695626], [2.324678924977786, 48.86011794128825], [2.324572388373889, 48.860015616241974], [2.324572166370877, 48.86001539284924], [2.324461269209865, 48.85990008433019], [2.324355021804879, 48.85979349867243], [2.324244125596743, 48.85967818992905], [2.324137877725638, 48.85957160404948], [2.3240316316520753, 48.859465018073045], [2.323920736847136, 48.85934970989514], [2.323908624578301, 48.8593224459703], [2.323903295016533, 48.859320046067964], [2.323792400815853, 48.85920473685683], [2.323697930229724, 48.859107042419815], [2.323603461360892, 48.85900934790733], [2.323492568484974, 48.85889403838604], [2.323398099024498, 48.858796343684936], [2.3232872070565262, 48.858681033951214], [2.32319273836722, 48.858583339069305], [2.323118933322234, 48.85850659268596], [2.323113624581028, 48.858489065756295], [2.3230965100309042, 48.858479169603356], [2.323059425414775, 48.85844060604034], [2.322949991105312, 48.858330292903126], [2.322839101109177, 48.85821498360499], [2.322797436955055, 48.858172983689315], [2.322775359485213, 48.85816050344031], [2.32272598741976, 48.85818008082625], [2.322552849861403, 48.858244860558365], [2.322375743916459, 48.85831018865613], [2.3222026068532, 48.85837496788164], [2.32202549866405, 48.85844029544563], [2.321852360732886, 48.85850507415684], [2.32167525303695, 48.85857040030327], [2.3215021128751783, 48.85863517849243], [2.321325004286032, 48.858700505012095], [2.321151863256455, 48.85876528268688], [2.32097475378601, 48.85883060868057], [2.320801611888526, 48.85889538584099], [2.320624501548406, 48.85896071040934], [2.320451358783222, 48.85902548705545], [2.320274247549977, 48.85909081199703], [2.320101103916887, 48.85915558812879], [2.319923991802242, 48.859220912544345], [2.31975084730145, 48.859285688161705], [2.319573734305302, 48.85935101205127], [2.319554846150696, 48.85934711927994], [2.319470240933307, 48.8592332145845], [2.319385276079559, 48.85911880143466], [2.319300671603632, 48.8590048965959], [2.319215707494575, 48.858890483302126], [2.319131103760101, 48.85877657832003], [2.319046140395724, 48.858662164882304], [2.318961537402696, 48.858548259756915], [2.318876574782991, 48.85843384617526], [2.3187919738942, 48.85831994091431], [2.318707010656356, 48.85820552718097], [2.318622410508984, 48.8580916217767], [2.318537449378593, 48.8579772079072], [2.318452848609841, 48.85786330235188], [2.318367888224095, 48.85774888833846], [2.318283288196751, 48.85763498263985], [2.318198328555641, 48.85752056848248], [2.318179804054814, 48.85751654535033], [2.31801789911033, 48.85757206617562], [2.317869982830241, 48.85762251952172], [2.317708075875307, 48.85767803901547], [2.317560158994364, 48.85772849197373], [2.31755580752463, 48.857730848645694], [2.317430271957968, 48.85783423192514], [2.317310430288644, 48.857935854239265], [2.317184893741069, 48.85803923724222], [2.317065051121626, 48.85814085929186], [2.316939512230431, 48.8582442420105], [2.316819668660858, 48.85834586379563], [2.31669982463559, 48.85844748455213], [2.316574285643816, 48.85855086686685], [2.316454440656615, 48.85865248825816], [2.316328899320984, 48.85875587028855], [2.316300777260487, 48.85877971604617], [2.31629025791878, 48.85878260582229], [2.316276662045509, 48.85880815700005], [2.316184938094489, 48.85888593144941], [2.316054587470896, 48.85899789519813], [2.315934740453616, 48.85909951512874], [2.315804390120936, 48.85921147859117], [2.315684542112563, 48.8593130991509], [2.315554189356853, 48.85942506141216], [2.315434340369181, 48.85952668170177], [2.315303986541342, 48.85963864366895], [2.315184136574361, 48.859740263688415], [2.315053783037426, 48.85985222536928], [2.31493393209113, 48.859953845118596], [2.314912416774217, 48.859953843361616], [2.314798123776738, 48.85985688907617], [2.314687117257542, 48.85976191767676], [2.3145728251003392, 48.85966496315939], [2.314461819412671, 48.859569990635215], [2.314347529458569, 48.85947303589372], [2.314236523215722, 48.85937806403568], [2.314122234101979, 48.8592811090622], [2.314011228690557, 48.859186136079444], [2.313896940417064, 48.85908918087407], [2.313785935813379, 48.85899420856515], [2.313774340347243, 48.8589907227323], [2.313590954134957, 48.85899786857502], [2.313415959927184, 48.85900542292638], [2.313232574976927, 48.85901256822765], [2.313057580667721, 48.85902012205487], [2.312882587682555, 48.85902767473469], [2.312699201217916, 48.859034819210656], [2.312524208119573, 48.85904237226562], [2.312340821554165, 48.85904951619225], [2.312330730431464, 48.85905308979148], [2.312205257077639, 48.85916322114292], [2.312080536943621, 48.859273145336985], [2.311955061179944, 48.85938327549715], [2.31183033997932, 48.859493200307924], [2.311704864519764, 48.85960333019177], [2.3115801422764832, 48.85971325382067], [2.311454664383286, 48.85982338431176], [2.311329941085355, 48.85993330765812], [2.311319190991591, 48.859936910654376], [2.311139750809796, 48.859938306118806], [2.310969394629201, 48.8599381968392], [2.310789954433711, 48.85993959177914], [2.310619598249547, 48.85993948200161], [2.3104492420543012, 48.85993937288083], [2.310269801840738, 48.85994076704082], [2.310194036892395, 48.85993385859532], [2.310181118939865, 48.859951916877534], [2.310188444916069, 48.85999167541216], [2.310191508066813, 48.86002355622729], [2.310189682802023, 48.86002706936881]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 2, "roussel_fabien": 6.0, "nb_emargement": 1045.0, "nb_procuration": 86.0, "nb_vote_blanc": 10.0, "jadot_yannick": 38.0, "le_pen_marine": 51.0, "nb_exprime": 1031.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 2, "nb_inscrit": 1307.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "26", "geo_point_2d": [48.86113374969025, 2.3174710844754345], "melenchon_jean_luc": 96.0, "poutou_philippe": 2.0, "macron_emmanuel": 538.0}, "geometry": {"type": "Point", "coordinates": [2.3174710844754345, 48.86113374969025]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d62d06b6af3fd118da641632e48d118c12f0f0e3", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 64, "zemmour_eric": 71.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "2-5", "geo_shape": {"coordinates": [[[2.347335547485745, 48.867385471857126], [2.34732263776545, 48.867372748603984], [2.347317854647182, 48.86732974022544], [2.347297161966329, 48.86719845910863], [2.347276249958758, 48.867060864286444], [2.347255557489555, 48.86692958313051], [2.347234647063037, 48.86679198827505], [2.347213953442353, 48.866660707072604], [2.347193372293642, 48.86653753764362], [2.347172680241169, 48.86640625641121], [2.3471520992906703, 48.8662830869468], [2.347152044430563, 48.866282787166064], [2.347120971200153, 48.86613427179795], [2.347090268411588, 48.86598384012088], [2.347082312366531, 48.86594581651969], [2.34707446392451, 48.865937601363996], [2.347016265747227, 48.865945112645605], [2.34685867919802, 48.86596701606547], [2.346626297268593, 48.86599906028893], [2.346468709029125, 48.86602096318678], [2.3462363279710052, 48.86605300755826], [2.346078739415675, 48.86607490904236], [2.346078122058866, 48.86607500459714], [2.345889167542456, 48.866109314477896], [2.345703258922013, 48.86614117291199], [2.345514303918716, 48.86617548219886], [2.345328394821494, 48.86620734094813], [2.345142486871303, 48.86623919851586], [2.344953529780122, 48.866273506906936], [2.344946951065447, 48.86627361389656], [2.344739296214976, 48.86624311810612], [2.3445116921804052, 48.866204652430106], [2.34449519945176, 48.86621090157837], [2.344443211803048, 48.86633135107549], [2.3443858328378733, 48.86646347146992], [2.344333844684336, 48.866583920892026], [2.344276465152272, 48.866716042103135], [2.344224476493701, 48.866836491450265], [2.3441670977805122, 48.866968611687014], [2.344115108617004, 48.867089060959096], [2.3440577279851, 48.86722118110578], [2.3440057383166453, 48.867341630302874], [2.343982740645499, 48.867394584388144], [2.343970831087213, 48.86741410950272], [2.343974942371112, 48.86742061810019], [2.343940560188876, 48.86749978408237], [2.343888499967091, 48.86761908075607], [2.343831118165308, 48.86775120163009], [2.343779056078577, 48.8678704982216], [2.343721675096659, 48.86800261812134], [2.343669612496694, 48.868121915537394], [2.343687078624117, 48.86813292213817], [2.343859752554618, 48.86809440301311], [2.344068223244348, 48.86804690562667], [2.344240896607893, 48.86800838594877], [2.344449365231389, 48.86796088878659], [2.34462203803939, 48.86792236765659], [2.344830507334185, 48.867874869834324], [2.345003179575212, 48.867836348151464], [2.345175850186302, 48.867797827109946], [2.345384318489137, 48.86775032741849], [2.345402178824549, 48.867757211541544], [2.345440046459433, 48.86789390828332], [2.345475186380197, 48.86802290879404], [2.345513054399805, 48.86815960547988], [2.345548194691893, 48.86828860503891], [2.345586063096229, 48.86842530166878], [2.345621205100124, 48.86855430208212], [2.345621436316079, 48.86855499583964], [2.345662147880561, 48.868657257760695], [2.345718471327827, 48.86880251709796], [2.345759183276247, 48.86890477896313], [2.345815507261729, 48.869050038222184], [2.345856219594092, 48.86915230003144], [2.345873393712251, 48.86915861553566], [2.346057297452794, 48.86912148746192], [2.346237951857569, 48.86908569666563], [2.346421855080737, 48.86904856802932], [2.346602508993425, 48.86901277578117], [2.346786411688136, 48.86897564748157], [2.346967065097446, 48.86893985468084], [2.347150967274778, 48.868902725818714], [2.347331620180805, 48.86886693246536], [2.347515521840853, 48.86882980304067], [2.347696174243389, 48.86879400913478], [2.347739095070011, 48.86879007099488], [2.347741962961127, 48.86878607376091], [2.347739102977224, 48.868761132920035], [2.347717630053693, 48.86863324281805], [2.347702690949001, 48.868502982565886], [2.347701933791372, 48.86850063205639], [2.347646616197578, 48.86839862668331], [2.3475905909973562, 48.86828869960911], [2.34753527519844, 48.868186695071735], [2.347479250461207, 48.868076767924364], [2.347423935105355, 48.86797476331597], [2.3473679094678452, 48.867864836088], [2.3473640554743183, 48.86783775475692], [2.347363381086998, 48.86783554589181], [2.347359372276749, 48.867799495471985], [2.347368349436485, 48.867789023913474], [2.347357415373713, 48.86776668937603], [2.347346515027771, 48.86766865555485], [2.347338559314483, 48.86750011312116], [2.347328432070976, 48.8674090372089], [2.347335547485745, 48.867385471857126]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 5, "roussel_fabien": 16.0, "nb_emargement": 1166.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 110.0, "le_pen_marine": 54.0, "nb_exprime": 1158.0, "nb_vote_nul": 1.0, "arr_bv": "02", "arthaud_nathalie": 1, "nb_inscrit": 1472.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1171, "quartier_bv": "07", "geo_point_2d": [48.867452993111606, 2.3459453147650438], "melenchon_jean_luc": 284.0, "poutou_philippe": 2.0, "macron_emmanuel": 503.0}, "geometry": {"type": "Point", "coordinates": [2.3459453147650438, 48.867452993111606]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "36289185fbe1df5e5aac9e7289d6503674dd5093", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 63, "zemmour_eric": 85.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "11-15", "geo_shape": {"coordinates": [[[2.372672374048178, 48.855115785584175], [2.372653495609689, 48.85510206324831], [2.372496884973658, 48.85500629582906], [2.372340860180077, 48.854911723805515], [2.372184250690728, 48.85481595596067], [2.372028225671699, 48.85472138350619], [2.371872202581848, 48.85462681084735], [2.371715594810177, 48.85453104236458], [2.371559572857682, 48.85443646928191], [2.371402966232674, 48.85434070037355], [2.371401084724346, 48.85433929379688], [2.37128571978633, 48.85423239335942], [2.371175499580639, 48.85412994284529], [2.37106527979741, 48.85402749311951], [2.370949916238736, 48.85392059232827], [2.370839695989924, 48.85381814146897], [2.37072433335754, 48.853711240440106], [2.370614115347009, 48.853608790260196], [2.370498753651763, 48.85350188809444], [2.370388536527568, 48.853399437687386], [2.370273175747622, 48.85329253618334], [2.3702840214039362, 48.85325677476261], [2.37027269759386, 48.85325045657496], [2.370087937582222, 48.85323362937715], [2.369913513759749, 48.85322072263851], [2.3697287525958792, 48.85320389577775], [2.369554328961803, 48.85319098851512], [2.369369568019454, 48.85317416109932], [2.369195144573883, 48.85316125331279], [2.369141721365925, 48.85317081506975], [2.369107491835849, 48.85319944354876], [2.369075971928249, 48.85333272054888], [2.369049238633066, 48.85347282546561], [2.369017718411103, 48.85360610241758], [2.368990984819136, 48.85374620728683], [2.368959464282804, 48.8538794841907], [2.368929325390892, 48.85400230709874], [2.368899186346107, 48.85412513088488], [2.368867663982855, 48.854258407711946], [2.368837524644595, 48.85438123145426], [2.368806003331608, 48.85451450824153], [2.368775862336955, 48.85463733193287], [2.3687443407113262, 48.854770608673164], [2.368714200786003, 48.85489343232784], [2.368682678847728, 48.855026709021146], [2.3686525372770912, 48.85514953172549], [2.368621015015166, 48.85528280927117], [2.368590874513865, 48.85540563193885], [2.368559351950182, 48.85553890853828], [2.368529209781649, 48.85566173205419], [2.368509772283407, 48.85574391554048], [2.368492498835251, 48.85576089315106], [2.368499256274113, 48.8557824718513], [2.368487172239701, 48.85583356492181], [2.368477642698406, 48.85584931441444], [2.368473189612423, 48.85585486238755], [2.368470917186934, 48.855868955803956], [2.368439394036221, 48.85600223231619], [2.368406998224946, 48.856132829531845], [2.368374602240476, 48.85626342762266], [2.368343078604649, 48.85639670406216], [2.368310682306806, 48.85652730120536], [2.368279156985071, 48.85666057758916], [2.368246761714811, 48.85679117559052], [2.368215236069919, 48.856924451925785], [2.368207303253601, 48.85695798995097], [2.36819289315969, 48.857016078389734], [2.368196154660804, 48.85703125324396], [2.368276385727313, 48.857037417372645], [2.36845366082033, 48.85709868595701], [2.368630519900937, 48.85715900236551], [2.368807794461167, 48.85722027041137], [2.368984655727307, 48.85728058629707], [2.369161931117625, 48.85734185381158], [2.369338791843532, 48.857402169160075], [2.369516069426723, 48.857463436150425], [2.36969293097538, 48.85752375096894], [2.369693669099889, 48.857524025560835], [2.369849504056643, 48.85758631407788], [2.370006465547471, 48.85764845992484], [2.370162301261205, 48.85771074712831], [2.370319263489102, 48.85777289345732], [2.370475099948938, 48.85783518024642], [2.370632062924785, 48.857897326158216], [2.370669577838406, 48.85790008660167], [2.370679841763086, 48.857886365260484], [2.370729967898732, 48.85783565649252], [2.3708024802579, 48.85777244395373], [2.370830988129945, 48.85776260657957], [2.37082203602146, 48.85773903345325], [2.370800418784612, 48.85760331870945], [2.370776970000576, 48.85746962324464], [2.370755354355668, 48.857333908466934], [2.370731904456491, 48.85720021205438], [2.370708454677655, 48.85706651562111], [2.370686839367678, 48.85693080168105], [2.370663391188596, 48.85679710521372], [2.370641776118518, 48.85666139033328], [2.370644056454382, 48.856655397370524], [2.370756513186774, 48.85654615302684], [2.370870596880087, 48.85643419119447], [2.370983054012086, 48.85632494752257], [2.371097136734284, 48.856212985451954], [2.371209591561896, 48.856103740638964], [2.371323674675842, 48.855991778337206], [2.371436128540125, 48.85588253418883], [2.371542527846633, 48.855779396192105], [2.37165498079371, 48.85567015181718], [2.371761380585233, 48.85556701451259], [2.371867778603651, 48.855463876197334], [2.371980230187867, 48.855354631485746], [2.371992979233183, 48.855350743953814], [2.37210222022497, 48.85535859387779], [2.372205585021156, 48.85536628246653], [2.372215703560673, 48.85536432640467], [2.372322161816637, 48.855306763469535], [2.372472440930738, 48.85522622881432], [2.372578898620826, 48.85516866564355], [2.372671588567817, 48.855118993046744], [2.372672374048178, 48.855115785584175]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 15, "roussel_fabien": 35.0, "nb_emargement": 1398.0, "nb_procuration": 106.0, "nb_vote_blanc": 12.0, "jadot_yannick": 143.0, "le_pen_marine": 62.0, "nb_exprime": 1384.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1700.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1398, "quartier_bv": "43", "geo_point_2d": [48.85545157525134, 2.3700393336788075], "melenchon_jean_luc": 377.0, "poutou_philippe": 6.0, "macron_emmanuel": 557.0}, "geometry": {"type": "Point", "coordinates": [2.3700393336788075, 48.85545157525134]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b1357cec5dbeb3eb810eb7ca4972d5b02dd3aac2", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 20, "zemmour_eric": 38.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-67", "geo_shape": {"coordinates": [[[2.369281320050499, 48.88670453578762], [2.369255901423086, 48.88668925005944], [2.36913353635284, 48.88658615697162], [2.369011795680013, 48.88648188082697], [2.368889431580226, 48.88637878747025], [2.368767693233755, 48.88627451196419], [2.368645330115419, 48.88617141743925], [2.368523592742544, 48.88606714166538], [2.368401230583946, 48.885964047770806], [2.368279494195563, 48.88585977082977], [2.368157133007394, 48.8857566766663], [2.368035397581679, 48.8856524003567], [2.367913037374945, 48.88554930502504], [2.367791301559177, 48.8854450284404], [2.367668942312142, 48.88534193373913], [2.367547208844476, 48.88523765599454], [2.367424850567843, 48.885134561024365], [2.367303118073728, 48.885030283011965], [2.367301836939104, 48.88502898930557], [2.367199279707584, 48.88490281227272], [2.367101614728512, 48.88478379265768], [2.36699905710152, 48.88465761541795], [2.366901393028986, 48.88453859651227], [2.366803728039282, 48.884419577506854], [2.366701173225769, 48.88429339907813], [2.366685987889804, 48.88423876735892], [2.366685192326091, 48.8842385886812], [2.366485717779176, 48.88425132186264], [2.366301820672238, 48.88426266676109], [2.366102345939356, 48.88427539930354], [2.365918448663978, 48.88428674361286], [2.365718973755991, 48.88429947461704], [2.365535076301127, 48.88431081923658], [2.365351180140589, 48.884322162681535], [2.365151704947392, 48.884334893639476], [2.364967807254743, 48.88434623648811], [2.364768331886582, 48.884358965907836], [2.364724099405753, 48.88437569793107], [2.3647362973639883, 48.884421636442795], [2.364843295358622, 48.88453377645495], [2.364944247153343, 48.884641681732376], [2.365051246047905, 48.884753821536265], [2.365152197325633, 48.88486172750878], [2.365259198494701, 48.884973866212384], [2.365360150629806, 48.88508177198794], [2.365461104557855, 48.885189676775774], [2.365568105691418, 48.88530181606192], [2.365669060476963, 48.885409720652795], [2.365776062510489, 48.88552185973063], [2.365806390220326, 48.885554274713826], [2.365805974736978, 48.88556084478996], [2.365829258836091, 48.885582526769426], [2.365899886840875, 48.88565801616478], [2.36599385081089, 48.88576170874407], [2.366094806006591, 48.88586961292359], [2.366188770735608, 48.88597330622925], [2.36628972810907, 48.88608121023088], [2.3663836922553543, 48.886184902457096], [2.366484650442952, 48.88629280627362], [2.366578616722839, 48.8863964983341], [2.366679574350001, 48.886504402857554], [2.36677354139976, 48.8866080947451], [2.366775130334831, 48.88661054481673], [2.366828346273704, 48.88674492733956], [2.366877872313597, 48.88687078089514], [2.366931087419901, 48.88700516333326], [2.366980615319381, 48.88713101682372], [2.367033830956778, 48.88726539918433], [2.367083357999358, 48.887391251696], [2.367132886634086, 48.88751710507922], [2.3671861030590162, 48.887651487324945], [2.3672356308258102, 48.887777340628666], [2.367288849145533, 48.88791172280408], [2.367338377408281, 48.8880375760355], [2.367391596259131, 48.88817195813339], [2.367408615579368, 48.888215204811566], [2.367419587654645, 48.88822705021772], [2.367483679935609, 48.88822021849212], [2.367683910460348, 48.88825708082786], [2.367877722347732, 48.88829526692006], [2.368077953439899, 48.88833212859433], [2.368271765895579, 48.888370314046114], [2.368471997555271, 48.88840717505897], [2.368665810579239, 48.88844535987029], [2.368710433559291, 48.88845149110749], [2.368728216501839, 48.88842329933258], [2.368766778511219, 48.888301217978245], [2.368806234758921, 48.88817971598083], [2.368844796405, 48.888057634574274], [2.368884253649774, 48.88793613253137], [2.368922814932557, 48.88781405107262], [2.368962271810711, 48.88769254897707], [2.369000831366626, 48.887570467458936], [2.36904028787807, 48.88744896531074], [2.369078848434375, 48.887326883747605], [2.369118304568315, 48.887205382446005], [2.369156864761338, 48.88708330083066], [2.3691963191760133, 48.886961798569985], [2.369234879005659, 48.88683971690245], [2.3692743344174, 48.886718214596286], [2.369281320050499, 48.88670453578762]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 67, "roussel_fabien": 16.0, "nb_emargement": 1227.0, "nb_procuration": 43.0, "nb_vote_blanc": 16.0, "jadot_yannick": 69.0, "le_pen_marine": 57.0, "nb_exprime": 1202.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1752.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "73", "geo_point_2d": [48.886247790487175, 2.367324098734796], "melenchon_jean_luc": 783.0, "poutou_philippe": 6.0, "macron_emmanuel": 169.0}, "geometry": {"type": "Point", "coordinates": [2.367324098734796, 48.886247790487175]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e17e0f440397843c4b7441c4a972ab5d2e665f36", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 78.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-50", "geo_shape": {"coordinates": [[[2.3832776231006942, 48.8448640911662], [2.383340676020848, 48.84486993015535], [2.383375269106144, 48.84487313390191], [2.383416786589765, 48.84482823250126], [2.383533228231652, 48.84473212642341], [2.383662582907397, 48.844620928974045], [2.383779022270211, 48.844524822632074], [2.383908375907004, 48.84441362489628], [2.384024815726587, 48.844317517404924], [2.384154168313806, 48.84420632028201], [2.384270605854543, 48.844110212526566], [2.384399957413454, 48.843999014217935], [2.384516395389611, 48.84390290711169], [2.384645745909599, 48.843791708516626], [2.38476218160694, 48.84369560114633], [2.384891531088015, 48.843584402264845], [2.385007967231409, 48.843488294644466], [2.385095023022655, 48.84342116972206], [2.385211458426132, 48.8433250618896], [2.385264495468792, 48.84328416808427], [2.385277546851168, 48.8432699074629], [2.385247900388071, 48.843247915986915], [2.38522435965303, 48.8432334331508], [2.38518097601237, 48.84320483452032], [2.385178733635143, 48.84319405676948], [2.385267858058019, 48.84308965311346], [2.385359558012604, 48.84298300072763], [2.385448683074855, 48.84287859692413], [2.385540382287974, 48.84277194437953], [2.385629506627089, 48.84266754042161], [2.385721205098951, 48.84256088771822], [2.3857181608155402, 48.84254958602418], [2.385547678039619, 48.8424543002215], [2.385384634989355, 48.84235847409973], [2.385214154821419, 48.8422631869131], [2.385051111619826, 48.84216736031338], [2.385048838038744, 48.84215565335059], [2.385164511672782, 48.842041188315065], [2.38528040507393, 48.84192629978994], [2.385396077690384, 48.841811834507006], [2.385511970081708, 48.841696944834624], [2.3856276416805873, 48.84158247930426], [2.38574353441396, 48.84146758939099], [2.385859204995274, 48.841353123613146], [2.385975095335166, 48.84123823434423], [2.386090764898931, 48.84112376831903], [2.386206654229019, 48.84100887790288], [2.386322322775244, 48.84089441163023], [2.386438212447398, 48.84077952097314], [2.386553878613641, 48.84066505444617], [2.386669767254829, 48.840550164440444], [2.386785433766008, 48.84043569767299], [2.386901320034966, 48.8403208065131], [2.38701698552874, 48.84020633949827], [2.387132870777343, 48.84009144809045], [2.387129961823845, 48.84007939973226], [2.387090242784287, 48.8400587420552], [2.387045312303565, 48.84003460321357], [2.38704253818686, 48.84002267695723], [2.387165499211264, 48.839899603393086], [2.387290855517235, 48.83977427556962], [2.38741381537987, 48.839651200823546], [2.387539170480782, 48.8395258736113], [2.387535659487704, 48.83951357305153], [2.387363971454761, 48.83943352755647], [2.387200680442375, 48.83935908198083], [2.387028993432847, 48.83927903599389], [2.386865704745208, 48.83920458995768], [2.3868315320967453, 48.83918448043473], [2.386795447422124, 48.83920714735167], [2.386651026062454, 48.83929832891884], [2.386506567774082, 48.83938982669281], [2.386362145402888, 48.839481007896296], [2.386217686101006, 48.83957250530644], [2.386073262728975, 48.83966368524695], [2.385928802413678, 48.83975518229329], [2.385784379381847, 48.83984636277639], [2.385639916690801, 48.8399378594519], [2.385495492647428, 48.84002903957136], [2.385351030305384, 48.84012053589002], [2.385206603898636, 48.84021171473946], [2.385062140543056, 48.84030321069429], [2.3849177131141452, 48.84039439007932], [2.384773248745224, 48.84048588567032], [2.384628821667194, 48.84057706469867], [2.384484354922376, 48.840668559918804], [2.384339926843403, 48.84075973768415], [2.384195460447478, 48.84085123254742], [2.384051029983958, 48.84094241084135], [2.38390656257457, 48.84103390534082], [2.383762131099362, 48.841125083270995], [2.383617662676604, 48.84121657740658], [2.383473231562909, 48.84130775408077], [2.383328760764211, 48.8413992478455], [2.383184328628285, 48.84149042505529], [2.383039858178471, 48.84158191846312], [2.382895423668573, 48.84167309530217], [2.3827509522159183, 48.84176458744683], [2.382606516694307, 48.841855763922126], [2.382462044217609, 48.841947256602225], [2.382317609046865, 48.8420384327208], [2.382173134194176, 48.84212992503001], [2.382028698011811, 48.84222110078487], [2.381884223518663, 48.84231259183789], [2.381739784962179, 48.84240376722198], [2.381595309444953, 48.8424952588104], [2.381450869876829, 48.84258643383071], [2.381306393346077, 48.842677925055284], [2.381161954128812, 48.842769099718886], [2.381017475232705, 48.84286058967319], [2.380873035003794, 48.84295176397301], [2.380728556445876, 48.84304325446977], [2.3805841138427972, 48.8431344283988], [2.380439634271435, 48.843225918531665], [2.380295190667384, 48.84331709119762], [2.380150710082474, 48.8434085809665], [2.380006266818582, 48.843499754175056], [2.379861783857589, 48.84359124357303], [2.379813384725685, 48.84363693373674], [2.379818591051261, 48.843642096967024], [2.3798761024858432, 48.84366357050956], [2.37993252232595, 48.84368483241267], [2.379938742829772, 48.84369087866849], [2.379975178866406, 48.84370161250002], [2.380092409776991, 48.84374579127452], [2.380259443750112, 48.84380772137355], [2.380433095388526, 48.84387316152875], [2.380600130174682, 48.843935091145035], [2.380773784027788, 48.844000530805275], [2.380940819626983, 48.84406245993882], [2.3811144729698093, 48.844127899090026], [2.381281509381939, 48.84418982774081], [2.381455164950136, 48.84425526549775], [2.38162220216463, 48.8443171945651], [2.381795857222433, 48.84438263181299], [2.381962895250069, 48.84444456039757], [2.382136552522469, 48.84450999715049], [2.3823035900112552, 48.844571924346], [2.382477248125148, 48.84463736149619], [2.38264428778952, 48.84469928821596], [2.382817946755571, 48.844764724864184], [2.382984985870422, 48.84482665109413], [2.38298997794378, 48.844827734485655], [2.383082401795289, 48.84483532144832], [2.3832483424209983, 48.844844230791516], [2.383254382317696, 48.84485107456463], [2.383277064044487, 48.8448637780058], [2.3832776231006942, 48.8448640911662]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 50, "roussel_fabien": 32.0, "nb_emargement": 1310.0, "nb_procuration": 69.0, "nb_vote_blanc": 15.0, "jadot_yannick": 96.0, "le_pen_marine": 82.0, "nb_exprime": 1285.0, "nb_vote_nul": 11.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1711.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1311, "quartier_bv": "47", "geo_point_2d": [48.84243558043304, 2.3837613257291874], "melenchon_jean_luc": 495.0, "poutou_philippe": 8.0, "macron_emmanuel": 388.0}, "geometry": {"type": "Point", "coordinates": [2.3837613257291874, 48.84243558043304]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9611dc5c4d9c5e69ea6468bc820637e1e2e36a8c", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 161, "zemmour_eric": 180.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-52", "geo_shape": {"coordinates": [[[2.304694563378126, 48.88961553822607], [2.304709036179225, 48.88960888988921], [2.304757266497923, 48.88957287571926], [2.304891855265166, 48.889470972619414], [2.305022758985598, 48.88937322445787], [2.305157348092928, 48.88927132014974], [2.305288249449441, 48.88917357167227], [2.305422837509146, 48.88907166794645], [2.305553737877359, 48.88897391826173], [2.305688324901348, 48.88887201421898], [2.30581922425728, 48.88877426512546], [2.305953810245766, 48.8886723607658], [2.306084708613405, 48.88857461046506], [2.306219293566295, 48.888472705788466], [2.30635019092168, 48.88837495607901], [2.306484774850961, 48.888273050186235], [2.306615671205983, 48.888175300168754], [2.306750254087707, 48.88807339485833], [2.306881149454549, 48.887975643633624], [2.307012045681653, 48.887877893164294], [2.307146627019002, 48.88777598738076], [2.3072775208940532, 48.88767823569627], [2.307412101195843, 48.88757632959584], [2.3074419955564798, 48.887554004863624], [2.307443241708042, 48.88755208030993], [2.307378869243328, 48.88751472120237], [2.307193695240245, 48.887490762847726], [2.307009045523658, 48.88746687379001], [2.306823871848913, 48.887442915761596], [2.3066392238471938, 48.88741902524117], [2.3064540491491963, 48.887395066631946], [2.306269401486825, 48.88737117554019], [2.306084228492705, 48.887347216365846], [2.30589957980613, 48.887323324694854], [2.305714407152332, 48.88729936494758], [2.305529760168677, 48.88727547271317], [2.305344586491552, 48.88725151238498], [2.3051599398353693, 48.8872276204785], [2.304974766498579, 48.887203659577374], [2.304790120193668, 48.88717976620026], [2.30478664220217, 48.88717898337359], [2.304773618618211, 48.88717468449675], [2.304767302294113, 48.88717035621475], [2.30476360127625, 48.887160742461894], [2.304741827826741, 48.887154614798234], [2.304664015992858, 48.88704143541154], [2.304587218502248, 48.88692973135886], [2.304509407328536, 48.88681655274778], [2.304432610501241, 48.886704848573096], [2.304354800011509, 48.8865916689391], [2.304278003847522, 48.886479964642405], [2.304200192666322, 48.88636678487685], [2.304123397153621, 48.886255081357376], [2.304045588008011, 48.886141901476144], [2.303968793170619, 48.886030196935394], [2.303890984697056, 48.88591701693052], [2.30381419052305, 48.88580531226773], [2.303736382709503, 48.885692133038475], [2.30365958919867, 48.88558042825373], [2.303581782069177, 48.8854672480016], [2.303504989221613, 48.8853555430948], [2.303497858320387, 48.885350967178454], [2.303277995411062, 48.88528995161533], [2.303067223679581, 48.88523145902761], [2.303052046417568, 48.88522907198777], [2.303040931618401, 48.885236871052705], [2.302908960491657, 48.88533417228799], [2.302777570096926, 48.88543104417488], [2.302646179213252, 48.88552791590902], [2.3025142065993762, 48.885625217582735], [2.302382814735849, 48.885722089010756], [2.30225084114972, 48.88581938947771], [2.302119448306434, 48.885916260599664], [2.301987472360424, 48.88601356165043], [2.301856079900792, 48.88611043247419], [2.3017241029827202, 48.8862077323182], [2.301592709543217, 48.88630460283586], [2.3014607316288602, 48.88640190327166], [2.301329335845838, 48.886498773475175], [2.301197358322845, 48.88659607271217], [2.301065961560033, 48.88669294260959], [2.300933983040734, 48.88679024243833], [2.3009246422709, 48.88680146012378], [2.300931052578886, 48.886809122083555], [2.301066828256492, 48.88686398254521], [2.301264788718184, 48.88694396974708], [2.3014005650988922, 48.8869988298236], [2.301598526597923, 48.88707881556463], [2.30173430366988, 48.887133676155194], [2.301737510247702, 48.88713547463162], [2.301860449592664, 48.88722958076337], [2.301983423123268, 48.88732371303806], [2.30210636198135, 48.88741781979246], [2.30222933640104, 48.88751195179853], [2.302352276160116, 48.88760605738507], [2.302475251468896, 48.88770018912243], [2.302598193468339, 48.88779429534757], [2.302721169666222, 48.8878884268162], [2.302844111202894, 48.88798253186552], [2.302967088277945, 48.888076663964725], [2.303090030703475, 48.88817076874542], [2.303213008679578, 48.88826489967663], [2.303335953345628, 48.888359005095914], [2.303458932210956, 48.888453135758425], [2.303581876414229, 48.888547240001856], [2.303704856168581, 48.8886413703957], [2.30382780124871, 48.88873547526974], [2.303950781892301, 48.888829605394854], [2.303954781143066, 48.888831699798686], [2.304105438801371, 48.88888379409682], [2.304255551025465, 48.888935700669364], [2.304258731513266, 48.88893722102975], [2.304386533642144, 48.88901925933486], [2.304518964724247, 48.889104269684935], [2.304522905163823, 48.88910923888323], [2.304552212104484, 48.88922550531368], [2.304583002197676, 48.88934765115802], [2.304612309418724, 48.88946391664923], [2.30464309979387, 48.889586062451556], [2.304694563378126, 48.88961553822607]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 52, "roussel_fabien": 6.0, "nb_emargement": 1223.0, "nb_procuration": 91.0, "nb_vote_blanc": 6.0, "jadot_yannick": 48.0, "le_pen_marine": 62.0, "nb_exprime": 1218.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1483.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1225, "quartier_bv": "66", "geo_point_2d": [48.887392143403524, 2.304001078142795], "melenchon_jean_luc": 138.0, "poutou_philippe": 3.0, "macron_emmanuel": 585.0}, "geometry": {"type": "Point", "coordinates": [2.304001078142795, 48.887392143403524]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "226c3f80a5aebc826636419c76f4c17bd9f19e5f", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 143, "zemmour_eric": 161.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-30", "geo_shape": {"coordinates": [[[2.277057042221043, 48.848106680496954], [2.277052217987355, 48.84809117506484], [2.277041376959102, 48.848082573677914], [2.277041068415719, 48.84808231999115], [2.276922635148877, 48.84798209396961], [2.27678606545465, 48.84786540861865], [2.276667633171185, 48.847765182325205], [2.2765310646164583, 48.847648496660504], [2.276412633316257, 48.84754827009508], [2.27628998748448, 48.84744520828697], [2.276171557110001, 48.847344981464616], [2.276048913583511, 48.84724192029811], [2.275930484147136, 48.84714169231955], [2.275807840213197, 48.847038630878885], [2.275689411702329, 48.846938402643396], [2.275688558916205, 48.84693759974233], [2.275603527061012, 48.84684740996853], [2.275532934730887, 48.84676151750051], [2.2755012292449, 48.846727888846985], [2.275494527156276, 48.84671870439867], [2.275472441350473, 48.84670905714687], [2.27541911422581, 48.84665249587973], [2.275372922687704, 48.846605210704965], [2.275353226559568, 48.84659217200143], [2.275302112779963, 48.84661311443119], [2.2751288650537003, 48.846669284381285], [2.2749563306151, 48.846725481786265], [2.274783082142503, 48.84678165122995], [2.274610548321622, 48.84683784813884], [2.2744372977403, 48.84689401706794], [2.274264763174547, 48.846950213472496], [2.274091513209491, 48.84700638190342], [2.273918976536369, 48.84706257779539], [2.273745725812554, 48.847118746619245], [2.273573188406992, 48.84717494110761], [2.273399936937047, 48.84723110942507], [2.273227398786621, 48.847287303409054], [2.273194657378409, 48.847298234170246], [2.273194863660835, 48.84731138775933], [2.27330574525457, 48.84741233167957], [2.273417608960421, 48.84751225976957], [2.273528491412998, 48.84761320346515], [2.273640355977139, 48.84771313132888], [2.27375124066372, 48.84781407390883], [2.273863106073629, 48.847914002445535], [2.273860240805547, 48.84792658067535], [2.273700670179502, 48.84800435875975], [2.273548995664584, 48.848078253445614], [2.273389422734427, 48.848156031995295], [2.273237747336632, 48.84822992627651], [2.273232230324475, 48.84823671894931], [2.273224424878635, 48.84834135050905], [2.273226818156018, 48.8484447057561], [2.273222999356519, 48.84845108784013], [2.273097276360115, 48.84853707685707], [2.272950957042889, 48.84863836739426], [2.272825233145685, 48.84872435611085], [2.272678911398664, 48.84882564718928], [2.2725531866008533, 48.84891163560557], [2.272406865174422, 48.84901292544326], [2.272281139475797, 48.84909891355922], [2.272134815632096, 48.84920020303887], [2.27200908902029, 48.84928619175377], [2.271862765484622, 48.849387480891956], [2.27173703798455, 48.84947346840723], [2.271700759673226, 48.84948890012566], [2.271708130948447, 48.849507417951074], [2.271713810016236, 48.8495119682314], [2.271860893546782, 48.8495711890633], [2.2720243347087052, 48.849638110669154], [2.2721714175855983, 48.849697331104316], [2.272334859554478, 48.84976425137915], [2.272481944502853, 48.84982347143412], [2.272597216182649, 48.84987066855167], [2.272602831242891, 48.849882058065496], [2.272632655960209, 48.849888071763736], [2.272680827060632, 48.84990779537397], [2.272852837772659, 48.8499786432699], [2.273016281486353, 48.85004556349628], [2.273188293096548, 48.850116411800464], [2.273351739048349, 48.850183330669296], [2.273523751569466, 48.85025417848244], [2.273687197021462, 48.85032109687649], [2.273859210453399, 48.85039194419862], [2.274022656755745, 48.85045886302535], [2.27418610485309, 48.85052578073379], [2.274358119638853, 48.85059662732567], [2.274521567236489, 48.850663544559296], [2.274693582933076, 48.850734390660094], [2.274857031380974, 48.850801308326474], [2.275029049363702, 48.850872153045145], [2.275192498674489, 48.85093907024499], [2.275364516205337, 48.851009914464385], [2.275396724850359, 48.85100724595603], [2.275407754284465, 48.85097909522764], [2.275392330816825, 48.85086448228668], [2.2753752381824173, 48.85075465822612], [2.275359813489925, 48.85064004524958], [2.275342722347849, 48.85053022206977], [2.275340759823042, 48.85052631054246], [2.275240118950589, 48.85041818381506], [2.275146181526701, 48.85031567545657], [2.275045541452265, 48.85020754944431], [2.274951604790826, 48.85010504091369], [2.274949638244487, 48.85010044223965], [2.274948042921877, 48.84992900657125], [2.274950891802194, 48.84976010163876], [2.274948064099399, 48.849754516538084], [2.274818638674262, 48.849643542016565], [2.274680180967127, 48.849523104331745], [2.274550756687294, 48.849412129497395], [2.274412300201589, 48.84929169237691], [2.2744186742185573, 48.84927776389725], [2.2745910058092083, 48.8492381584933], [2.27476144534474, 48.84919818252571], [2.274933776411713, 48.84915857662517], [2.275104214048854, 48.84911860105748], [2.2752765445922503, 48.84907899466044], [2.275446981706172, 48.8490390186016], [2.275619311725785, 48.84899941170803], [2.275789749691634, 48.84895943426704], [2.275796927203696, 48.84894639645036], [2.275721781346073, 48.84886218370671], [2.275643584392144, 48.848777590890855], [2.275568439038234, 48.84869337713877], [2.275490243949058, 48.848608784218136], [2.275496058406138, 48.84859596749921], [2.275687145432518, 48.84853642183719], [2.27586969783505, 48.84847908881582], [2.276060784018424, 48.848419541651516], [2.276243334225333, 48.84836220894503], [2.276434420915834, 48.84830266118598], [2.276616970302358, 48.84824532790342], [2.276808056137344, 48.84818577954142], [2.276990604715753, 48.848128444783455], [2.277057042221043, 48.848106680496954]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 30, "roussel_fabien": 13.0, "nb_emargement": 1129.0, "nb_procuration": 51.0, "nb_vote_blanc": 12.0, "jadot_yannick": 55.0, "le_pen_marine": 82.0, "nb_exprime": 1116.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1430.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1129, "quartier_bv": "61", "geo_point_2d": [48.848641515897995, 2.2744173438317112], "melenchon_jean_luc": 129.0, "poutou_philippe": 2.0, "macron_emmanuel": 496.0}, "geometry": {"type": "Point", "coordinates": [2.2744173438317112, 48.848641515897995]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d8ef542aa6d20b336b8e69c9269694cad87bfa13", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 70, "zemmour_eric": 77.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "14-35", "geo_shape": {"coordinates": [[[2.341110405583818, 48.83181941345034], [2.341145676917128, 48.83179394327007], [2.341197556149274, 48.83175648149526], [2.341175157037639, 48.831728922761904], [2.341190789092176, 48.83162394329788], [2.341200425891237, 48.8314832688828], [2.341216057821227, 48.8313782893925], [2.341225695868787, 48.831237614952], [2.341232009613047, 48.83111302815027], [2.341241647568621, 48.830972353675214], [2.341247962616183, 48.83084776595132], [2.341254277622197, 48.83072317911258], [2.341263914083327, 48.83058250457926], [2.341270229030553, 48.830457916810886], [2.341279865399606, 48.830317242243], [2.341282002997945, 48.83027507070568], [2.3412863345711212, 48.830266367043095], [2.341282135230092, 48.83025005176456], [2.341286312495048, 48.8301676364006], [2.34129721695373, 48.83007893098859], [2.341290927570785, 48.83006361599163], [2.341213970268876, 48.8300640734957], [2.341010196440672, 48.830067567351776], [2.340805640891328, 48.830071258011856], [2.340601865645513, 48.830074751164695], [2.3403973100390782, 48.83007844112638], [2.340193534737829, 48.83008193358351], [2.339988979074314, 48.8300856228468], [2.33978520507981, 48.83008911461566], [2.339580649359125, 48.830092803180555], [2.339376873947143, 48.83009629424621], [2.339172318169399, 48.830099982112664], [2.338968544064082, 48.83010347249013], [2.338763988229393, 48.8301071596582], [2.338560212706518, 48.830110649332376], [2.338355656814793, 48.830114335802065], [2.338151882598706, 48.83011782478803], [2.337947325287788, 48.83012151055175], [2.337743551016334, 48.83012499884202], [2.337538995010568, 48.83012868391489], [2.337335219321587, 48.830132171501845], [2.337130663258818, 48.83013585587632], [2.337099626691223, 48.83013269073651], [2.3370834723120533, 48.830145296758374], [2.336901402750728, 48.83017425187371], [2.336725406345172, 48.83020124198433], [2.3365433363895862, 48.8302301965531], [2.336367339609785, 48.83025718613549], [2.336185269259946, 48.83028614015771], [2.336009272105906, 48.83031312921187], [2.335827201361822, 48.83034208268754], [2.335651203833549, 48.83036907121345], [2.335620871081666, 48.830375879159895], [2.335615464689684, 48.830391348936196], [2.335515069668207, 48.8304607121087], [2.335407558611423, 48.83053365832927], [2.335410516597332, 48.83054772118575], [2.3355901787778732, 48.83061611576767], [2.335766265076154, 48.8306834748203], [2.335945928191269, 48.83075186885951], [2.33612201676983, 48.83081922738779], [2.3363016808195223, 48.830887620884326], [2.336477768954198, 48.83095497887316], [2.336657433938464, 48.83102337182697], [2.336833522991336, 48.831090729283865], [2.337013190272373, 48.83115912170257], [2.337189280243444, 48.83122647862749], [2.337368947096861, 48.831294870495974], [2.337545037986128, 48.831362226888984], [2.337724705774121, 48.831430618214725], [2.337900797581482, 48.83149797407579], [2.337901966850292, 48.83149847610308], [2.338049789206331, 48.831570222467306], [2.338200634146792, 48.83164245483956], [2.338348457322046, 48.8317142008254], [2.338499303092958, 48.8317864328117], [2.338647125725419, 48.83185817841165], [2.33879797232678, 48.83193041001197], [2.338945797140774, 48.832002155241085], [2.339096644572591, 48.83207438645546], [2.339244470194408, 48.832146132205544], [2.339395318456684, 48.832218363033924], [2.339427378556021, 48.832264388294064], [2.339452044716424, 48.83226252791769], [2.33952937212557, 48.832241074137194], [2.339694048436954, 48.83219661007858], [2.339875671529682, 48.83214621893203], [2.340040345883828, 48.832101754385356], [2.340221968299848, 48.83205136360797], [2.340386643432577, 48.832006897688935], [2.340568265183472, 48.83195650638148], [2.340732938358955, 48.83191203997438], [2.340914559444624, 48.83186164813679], [2.341079233375822, 48.83181718215592], [2.341110405583818, 48.83181941345034]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 35, "roussel_fabien": 28.0, "nb_emargement": 1209.0, "nb_procuration": 48.0, "nb_vote_blanc": 13.0, "jadot_yannick": 105.0, "le_pen_marine": 53.0, "nb_exprime": 1191.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1477.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "54", "geo_point_2d": [48.83094108486823, 2.338985728639074], "melenchon_jean_luc": 326.0, "poutou_philippe": 6.0, "macron_emmanuel": 464.0}, "geometry": {"type": "Point", "coordinates": [2.338985728639074, 48.83094108486823]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cb19a4f279ab667856710ffd1fa86a971bf190be", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 153, "zemmour_eric": 132.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "15-12", "geo_shape": {"coordinates": [[[2.290090817275724, 48.84804698731359], [2.29011682918343, 48.84805906452759], [2.290152159595302, 48.84807592678032], [2.290193658498371, 48.84809503085967], [2.290197922597834, 48.848098221019995], [2.290279971312197, 48.848201621998115], [2.290374370165105, 48.8483200741679], [2.29045641957886, 48.84842347500443], [2.290550819234701, 48.84854192701143], [2.290632869347858, 48.84864532770636], [2.290727269806643, 48.8487637795505], [2.29080932061921, 48.848867180103795], [2.2908684138186572, 48.84894132763173], [2.2908674012637302, 48.84894453505554], [2.290882649574477, 48.84895921130733], [2.290917957660986, 48.849003515455905], [2.290958026722404, 48.84905306501328], [2.2909730136752913, 48.84905760837585], [2.291169933018154, 48.84902863663152], [2.291366580768679, 48.848999878802154], [2.29156349831194, 48.84897090640046], [2.291760145627328, 48.84894214792281], [2.291957064084066, 48.848913175779224], [2.292153710964516, 48.84888441665319], [2.292350627633859, 48.848855442953024], [2.292547274079156, 48.84882668317866], [2.292744191674176, 48.8487977088373], [2.292940837684514, 48.848768948414616], [2.293137753467704, 48.848739974315265], [2.293334399042875, 48.848711213244194], [2.293531315763925, 48.84868223760435], [2.2937279609041212, 48.84865347588497], [2.293742763961153, 48.8486578217547], [2.293767584218005, 48.84868672091228], [2.293796320819244, 48.84871724224839], [2.293813176141099, 48.848720786299], [2.293826952024895, 48.84871696437362], [2.293852837405086, 48.848707693627766], [2.293853066641705, 48.84870716885325], [2.293912757837664, 48.84868609381523], [2.293961658051096, 48.848668800744896], [2.293967046633056, 48.848656404243016], [2.293853943811757, 48.84852608182938], [2.293740883139209, 48.84839580810463], [2.293627780074244, 48.8482654863379], [2.293514721894959, 48.848135212377], [2.2935199722218123, 48.848122865437006], [2.293701459132272, 48.84805690110325], [2.293881217274623, 48.84799156843559], [2.294062703270581, 48.84792560354606], [2.29424246050706, 48.847860270327956], [2.294423945588616, 48.847794304882704], [2.2946037019071532, 48.84772897201343], [2.294785186074207, 48.84766300601246], [2.294964941499151, 48.847597671693464], [2.295146424751699, 48.84753170513673], [2.295326179258712, 48.84746637116659], [2.295507661596655, 48.84740040405416], [2.295687415210162, 48.847335068634294], [2.295692790040038, 48.84733151361137], [2.295791472329997, 48.847211421414436], [2.2958987513433993, 48.84708225476923], [2.295901088678873, 48.84706871600352], [2.295885421197628, 48.84706129937241], [2.2956982663889782, 48.847051031431484], [2.295511555784429, 48.847040972666704], [2.295324401122441, 48.847030704140785], [2.295137690675046, 48.84702064389313], [2.294950536159732, 48.84701037478212], [2.294763825845174, 48.84700031485012], [2.294576672839039, 48.84699004516215], [2.294389962681766, 48.84697998374722], [2.294202808459718, 48.84696971346621], [2.294016098435286, 48.84695965236693], [2.293828944359933, 48.84694938150093], [2.293642234492713, 48.846939318918736], [2.293455080564067, 48.84692904746767], [2.293268370829692, 48.84691898520114], [2.293267778388949, 48.84691896101607], [2.293087577624097, 48.84691427104935], [2.292918700100264, 48.84690943278565], [2.292749822619992, 48.846904593384274], [2.292569620588939, 48.846899902629346], [2.292544174544361, 48.846903460243055], [2.292540040215452, 48.8469114860101], [2.292580590622098, 48.84698921506239], [2.292618528101039, 48.8470622825274], [2.292612457857774, 48.84707298415108], [2.292558333471327, 48.84709363820087], [2.292518649948914, 48.84710923955247], [2.292495177733082, 48.84711605373572], [2.292493094924954, 48.84712041502899], [2.2923682125302, 48.84716807125865], [2.292197613462636, 48.847233040376295], [2.29201860707443, 48.84730135010252], [2.29184800714685, 48.84736631781456], [2.291668998467763, 48.84743462790082], [2.291498397668153, 48.84749959510658], [2.291319388073007, 48.84756790466153], [2.291148786401166, 48.84763287136101], [2.290969777252585, 48.84770118039279], [2.290799174708715, 48.847766146586004], [2.290620163281456, 48.84783445507841], [2.290449559865355, 48.8478994207653], [2.290270547522038, 48.84796772872645], [2.290099943233908, 48.84803269390706], [2.290093703379334, 48.848037893879685], [2.290090817275724, 48.84804698731359]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 12, "roussel_fabien": 15.0, "nb_emargement": 1468.0, "nb_procuration": 92.0, "nb_vote_blanc": 7.0, "jadot_yannick": 113.0, "le_pen_marine": 65.0, "nb_exprime": 1459.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1767.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1468, "quartier_bv": "59", "geo_point_2d": [48.84789692815892, 2.292719728171992], "melenchon_jean_luc": 223.0, "poutou_philippe": 1.0, "macron_emmanuel": 692.0}, "geometry": {"type": "Point", "coordinates": [2.292719728171992, 48.84789692815892]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3a4221e87f29464dc7c4723da0d7761d059f7b13", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 75, "zemmour_eric": 78.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-39", "geo_shape": {"coordinates": [[[2.337099626691223, 48.83013269073651], [2.337130663258818, 48.83013585587632], [2.337335219321587, 48.830132171501845], [2.337538995010568, 48.83012868391489], [2.337743551016334, 48.83012499884202], [2.337947325287788, 48.83012151055175], [2.338151882598706, 48.83011782478803], [2.338355656814793, 48.830114335802065], [2.338560212706518, 48.830110649332376], [2.338763988229393, 48.8301071596582], [2.338968544064082, 48.83010347249013], [2.339172318169399, 48.830099982112664], [2.339376873947143, 48.83009629424621], [2.339580649359125, 48.830092803180555], [2.33978520507981, 48.83008911461566], [2.339988979074314, 48.8300856228468], [2.340193534737829, 48.83008193358351], [2.3403973100390782, 48.83007844112638], [2.340601865645513, 48.830074751164695], [2.340805640891328, 48.830071258011856], [2.341010196440672, 48.830067567351776], [2.341213970268876, 48.8300640734957], [2.341290927570785, 48.83006361599163], [2.341296811477464, 48.83004924582954], [2.341303595140826, 48.82999406884604], [2.341320523003011, 48.82984522938933], [2.341338210913422, 48.829701347848165], [2.341355138592991, 48.82955250744838], [2.341372824946502, 48.829408625857006], [2.341372930950116, 48.829407998677645], [2.341399727472925, 48.829286996050115], [2.341429960936515, 48.82915314588147], [2.341456757195962, 48.82903214321366], [2.34148698901466, 48.828898292093356], [2.341513786372784, 48.82877728939276], [2.341544017885917, 48.828643439126964], [2.341570814980682, 48.82852243638606], [2.34157091781299, 48.82852184426422], [2.341589941989649, 48.828368492266264], [2.341607189636767, 48.82827857237826], [2.341624437224388, 48.828188652480634], [2.341643461122038, 48.828035300428596], [2.341642808005482, 48.827906556664864], [2.341642854071734, 48.82790582122944], [2.341642842676452, 48.827779547970216], [2.341642189564626, 48.82765080417708], [2.341642178182366, 48.8275245299898], [2.341641526437475, 48.827395786174925], [2.341641515056775, 48.82726951195894], [2.341641087313451, 48.82718526956714], [2.341652886701497, 48.82715946307684], [2.341647183065525, 48.82714880465277], [2.341646957690391, 48.827104304090824], [2.341650739960886, 48.826960982367915], [2.341650088201795, 48.82683223848842], [2.341650095150557, 48.826831903958734], [2.34165588333248, 48.826719149551714], [2.341659666901217, 48.826575828686195], [2.341665455034008, 48.82646307425294], [2.341667314572818, 48.826392617443965], [2.34166923719578, 48.82631975334684], [2.34165717176254, 48.826301274889715], [2.341607272925867, 48.82631763325408], [2.34149907552117, 48.826212362681694], [2.34139202901847, 48.82610659558587], [2.341283832497802, 48.826001323899625], [2.341176786865058, 48.82589555659129], [2.341068592567541, 48.825790285597336], [2.340961547804739, 48.82568451807646], [2.340853353029182, 48.82557924596116], [2.340746309136316, 48.825473478227714], [2.340638115221828, 48.82536820679722], [2.340531072198891, 48.82526243885122], [2.340422880530449, 48.825157166314426], [2.340315838377427, 48.825051398155914], [2.340207646207988, 48.82494612629643], [2.340100604924876, 48.824840357925375], [2.340064072591172, 48.824804259455725], [2.339955881443016, 48.82469898734529], [2.339885373226222, 48.824629316368465], [2.339875152541124, 48.82461851957626], [2.339852557992181, 48.82464176249044], [2.33967065325943, 48.82461966236669], [2.339481795405112, 48.82459679146627], [2.339299890986422, 48.82457469077764], [2.339111034808165, 48.82455182019763], [2.338929130714941, 48.82452971804487], [2.338740273500303, 48.8245068468709], [2.338740227260812, 48.82450684121891], [2.3385590748030882, 48.82448735894842], [2.338376386890594, 48.82446566263156], [2.338195233338466, 48.82444618070096], [2.338012545721768, 48.82442448382745], [2.337831392460091, 48.824405000445715], [2.3376487065011142, 48.82438330302314], [2.337467553518483, 48.82436381908952], [2.337284866493097, 48.824342121102774], [2.337276628720122, 48.82434371681603], [2.337261886828731, 48.82439172129], [2.337236242711711, 48.82451408890508], [2.337206753345326, 48.824650701128924], [2.337181108971528, 48.82477306870399], [2.337151617963704, 48.82490967997592], [2.337125974695157, 48.82503204751845], [2.33709648339628, 48.82516865874523], [2.337070839859519, 48.82529102714706], [2.3370413482696852, 48.825427638328726], [2.337015703125529, 48.825550005783676], [2.336986212606884, 48.82568661692777], [2.336960567194498, 48.825808985241956], [2.336931076384794, 48.825945596340965], [2.336905430727048, 48.8260679637158], [2.336875938264315, 48.82620457476212], [2.336850293700396, 48.82632694300376], [2.33682080094669, 48.82646355400497], [2.336795156137411, 48.826585921307256], [2.33679768791949, 48.826609407283264], [2.336813519112534, 48.82661484546893], [2.336944813202309, 48.826709800291034], [2.337068818265483, 48.826802018221784], [2.337200111918179, 48.82689697363952], [2.337324119251637, 48.8269891903984], [2.33744812701225, 48.827081407920396], [2.33757942205938, 48.82717636289811], [2.337703430728305, 48.82726857924068], [2.3378347267116872, 48.82736353392224], [2.337838068719797, 48.827371207915725], [2.3378036663203883, 48.8274959947224], [2.337770145679348, 48.82762052017361], [2.337735742964272, 48.82774530603369], [2.337702222000595, 48.827869831438164], [2.337667820309214, 48.827994618157824], [2.337634297660885, 48.828119143508054], [2.337599895653837, 48.82824392928112], [2.337566372682957, 48.828368454584684], [2.337531970337384, 48.82849324120978], [2.337498447043948, 48.82861776646657], [2.337464044382701, 48.82874255214507], [2.337430520766706, 48.828867077355135], [2.337396117766821, 48.828991863885705], [2.337362593828361, 48.82911638904905], [2.337328190512795, 48.829241174633005], [2.337294666240335, 48.82936570064894], [2.337260262597653, 48.829490486185605], [2.337226738013949, 48.82961501125548], [2.337192334044249, 48.829739796744875], [2.337158809126533, 48.829864322667284], [2.337124404829708, 48.82998910810938], [2.337090879600842, 48.83011363308579], [2.337099626691223, 48.83013269073651]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 39, "roussel_fabien": 31.0, "nb_emargement": 1143.0, "nb_procuration": 35.0, "nb_vote_blanc": 13.0, "jadot_yannick": 91.0, "le_pen_marine": 59.0, "nb_exprime": 1127.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1444.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1142, "quartier_bv": "54", "geo_point_2d": [48.82737894560255, 2.3392799330121528], "melenchon_jean_luc": 387.0, "poutou_philippe": 8.0, "macron_emmanuel": 342.0}, "geometry": {"type": "Point", "coordinates": [2.3392799330121528, 48.82737894560255]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8945e68879c6c55782125bc3ba7e345378dbb71f", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 76, "zemmour_eric": 109.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-59", "geo_shape": {"coordinates": [[[2.35283882049259, 48.8281197308478], [2.352901448154419, 48.82808759423314], [2.35292247708799, 48.8280820365622], [2.352938489115958, 48.82808503716864], [2.353056038060889, 48.82818993754191], [2.353173502717846, 48.828295081961144], [2.353291052620404, 48.82839998118447], [2.353408518224597, 48.82850512535318], [2.353526069062479, 48.828610025225174], [2.353643535613917, 48.828715169143365], [2.3537610874094392, 48.82882006786542], [2.353878553546092, 48.8289252115257], [2.353996107639003, 48.82903011090379], [2.354113574722914, 48.82913525431357], [2.354231129773581, 48.829240152541686], [2.354348597804659, 48.82934529570091], [2.354466153790709, 48.82945019457769], [2.354583622769164, 48.82955533748639], [2.354701179712778, 48.82966023521313], [2.35481864962739, 48.82976537877065], [2.354936207517544, 48.82987027624675], [2.35505367839058, 48.82997541865439], [2.355171235865214, 48.83008031587245], [2.355288709036501, 48.830185458936214], [2.355406267457687, 48.83029035590364], [2.355523741587417, 48.83039549781746], [2.355641300955162, 48.83050039453424], [2.355758776021207, 48.830605537096865], [2.355825191927975, 48.83062157448593], [2.355839849804455, 48.83059764740221], [2.355894908036983, 48.830473159687344], [2.355952553083332, 48.83035108359054], [2.356007609424156, 48.83022659578907], [2.356065253934061, 48.83010451961109], [2.356122898173897, 48.82998244339209], [2.356177955080803, 48.82985795547856], [2.356178227003566, 48.829857225752676], [2.356218688547235, 48.82972580332038], [2.356258817522662, 48.82959415872369], [2.3562992786590993, 48.829462736233275], [2.356339405877482, 48.82933109067204], [2.356379866606493, 48.82919966812353], [2.356419994770037, 48.82906802341102], [2.356460455091727, 48.82893660080441], [2.35650058149815, 48.82880495512731], [2.356541041412628, 48.828673532462616], [2.356581168764111, 48.82854188763424], [2.35662162827118, 48.828410464911464], [2.356661753865766, 48.82827881911853], [2.356702212965535, 48.82814739633766], [2.356742339505082, 48.828015751393444], [2.356782798197553, 48.82788432855446], [2.356822922980227, 48.82775268264573], [2.356863381265411, 48.827621259748675], [2.356903506993046, 48.82748961468869], [2.356914217809396, 48.82745482333331], [2.356912703157349, 48.82745271874722], [2.3568459064301, 48.82744808661217], [2.3567160007957693, 48.82741891912829], [2.356568800475023, 48.827379990179814], [2.356545897165969, 48.827368940453916], [2.356533489265103, 48.82737147288525], [2.356498313079466, 48.82736217025352], [2.356312022839719, 48.827313437016166], [2.356129647064011, 48.82726520482583], [2.355943357504244, 48.82721647190933], [2.355760982408697, 48.82716823915262], [2.355578607650699, 48.82712000611574], [2.355392319124835, 48.82707127233459], [2.355209945058228, 48.827023037832035], [2.355023657223458, 48.8269743034724], [2.354841283825904, 48.82692606930279], [2.354654996682329, 48.826877334364724], [2.354472623965052, 48.826829099628725], [2.354286337523614, 48.82678036321286], [2.354270631453968, 48.82678315011309], [2.354130655336856, 48.82690014579422], [2.35399684746793, 48.82701332080128], [2.3538630403914063, 48.82712649475522], [2.353723061064453, 48.827243490815476], [2.353589252802862, 48.82735666443991], [2.353449272254668, 48.82747365925638], [2.353436877541282, 48.82749828907014], [2.3534408779697022, 48.82750204490101], [2.353446563746733, 48.827510935378434], [2.353444973408597, 48.827519777524905], [2.353342364790427, 48.82761150665728], [2.353254819052886, 48.82769310925681], [2.353167271679177, 48.82777471177896], [2.353064662059494, 48.82786644155158], [2.352962052089792, 48.827958170329296], [2.352809838912564, 48.828092164690695], [2.352818505672242, 48.82810627690255], [2.35283882049259, 48.8281197308478]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 59, "roussel_fabien": 30.0, "nb_emargement": 1403.0, "nb_procuration": 76.0, "nb_vote_blanc": 18.0, "jadot_yannick": 124.0, "le_pen_marine": 63.0, "nb_exprime": 1379.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1807.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1403, "quartier_bv": "51", "geo_point_2d": [48.828397015438796, 2.355084776618446], "melenchon_jean_luc": 432.0, "poutou_philippe": 8.0, "macron_emmanuel": 455.0}, "geometry": {"type": "Point", "coordinates": [2.355084776618446, 48.828397015438796]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "63e118bab60e8ae2b39beb523b212c3ba2e78bf5", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 94, "zemmour_eric": 100.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-1", "geo_shape": {"coordinates": [[[2.299455007152114, 48.840532892989756], [2.299441102868162, 48.84054382433821], [2.29942689800325, 48.84060549993455], [2.299414561875172, 48.84064765756807], [2.29940910322597, 48.840658532248824], [2.299412509734132, 48.84066956587439], [2.299387310446605, 48.84075568038024], [2.299344818593775, 48.84089921003748], [2.299307282778634, 48.84102748211949], [2.299264790483937, 48.841171011713364], [2.299227254275997, 48.84129928373903], [2.2991847615393253, 48.84144281326951], [2.299147224938679, 48.8415710852389], [2.29914713673073, 48.84157136262696], [2.299088605887151, 48.84173569585003], [2.299037866434013, 48.84188387075995], [2.29903778403758, 48.841884121200884], [2.298997499638234, 48.842013725128304], [2.298946761029991, 48.842161899071385], [2.298935555445504, 48.842197951121776], [2.298936156191644, 48.84220697710199], [2.298989954456434, 48.84221557285154], [2.299189946318143, 48.84227665152885], [2.299394512700157, 48.84233945916013], [2.299594504148753, 48.84240053714636], [2.299799071516612, 48.84246334317962], [2.299999065277256, 48.8425244204907], [2.300203633618866, 48.842587225825184], [2.300222417533237, 48.842581682281185], [2.300276387287078, 48.84246428694355], [2.300330538613428, 48.842347253279044], [2.300384507880983, 48.842229857867956], [2.300438658709014, 48.84211282502924], [2.300457423196138, 48.84210729302537], [2.300625318876577, 48.84215869507578], [2.30081869216672, 48.842218215994976], [2.300986588560773, 48.84226961753327], [2.301179961312547, 48.842329137854634], [2.301347859782696, 48.84238053888875], [2.301541233358678, 48.842440058620234], [2.301709132542438, 48.842491459142174], [2.3019025069424233, 48.84255097828376], [2.302070406839793, 48.84260237829356], [2.302263782063881, 48.84266189684523], [2.302431682674858, 48.84271329634293], [2.302463673981149, 48.84274989016816], [2.3024823946580852, 48.842747021519855], [2.302543774923883, 48.84273702138323], [2.302650231648316, 48.842710848053215], [2.30265793289078, 48.84270606424346], [2.302746972256734, 48.84257341753313], [2.302839359419062, 48.84244135055951], [2.302928397871048, 48.842308703682654], [2.303020784116454, 48.84217663563827], [2.303035468043946, 48.8421547586334], [2.303035594831824, 48.84215322505092], [2.302974794253818, 48.842131655618616], [2.302854074562481, 48.84205318923693], [2.30271886259759, 48.841963862028834], [2.302715112559734, 48.84195583759577], [2.3027545038432082, 48.841818049306106], [2.302791326464542, 48.84167710722252], [2.302784055600535, 48.84166755582777], [2.302596313446712, 48.84160478459538], [2.302411151326631, 48.84154270443239], [2.302223410071643, 48.84147993260774], [2.302038248839273, 48.84141785186065], [2.301850508483123, 48.84135507944374], [2.301665348138464, 48.84129299811253], [2.301477607318803, 48.841230225095444], [2.301292449224211, 48.84116814318805], [2.301104709303393, 48.84110536957874], [2.300919552108577, 48.84104328618793], [2.300734393980449, 48.84098120339843], [2.30054665676745, 48.84091842891076], [2.300376470554788, 48.84085820395424], [2.300191313731041, 48.84079612031388], [2.300191046554156, 48.840796027914614], [2.300020861152063, 48.84073580244555], [2.299854397190955, 48.8406768954005], [2.29968421257893, 48.840616668546794], [2.299517749378787, 48.84055776102698], [2.299455007152114, 48.840532892989756]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 1, "roussel_fabien": 16.0, "nb_emargement": 1000.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 63.0, "le_pen_marine": 57.0, "nb_exprime": 982.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1215.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1000, "quartier_bv": "57", "geo_point_2d": [48.84175101464979, 2.3008188202964166], "melenchon_jean_luc": 182.0, "poutou_philippe": 2.0, "macron_emmanuel": 430.0}, "geometry": {"type": "Point", "coordinates": [2.3008188202964166, 48.84175101464979]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "579981708f806addb362734f905ba80d037336f8", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 67, "zemmour_eric": 86.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "12-42", "geo_shape": {"coordinates": [[[2.408363433216961, 48.838174626567266], [2.40835578920306, 48.83816892818108], [2.408316584153233, 48.83804429596474], [2.408274527114436, 48.83792367695213], [2.408235322443275, 48.83779904468185], [2.408193265800617, 48.837678424714866], [2.408154061498109, 48.837553793289885], [2.408112005241374, 48.837433173267875], [2.408103470293351, 48.83742675905752], [2.407892413741072, 48.8373750336709], [2.407681848930811, 48.83732287325268], [2.4076730285021912, 48.83731401223228], [2.407677139306688, 48.83725870834772], [2.407677060277759, 48.837203199343584], [2.407668528156955, 48.83719486587617], [2.407515318997284, 48.83715411336855], [2.407365498752747, 48.83711536684108], [2.407212290063661, 48.83707461394243], [2.4070624689105222, 48.83703586702594], [2.406909262054281, 48.836995113743015], [2.406759441355001, 48.83695636644423], [2.406753431042474, 48.83695331747672], [2.406640276815643, 48.836851641827906], [2.406529670945252, 48.83675078453302], [2.406416516221957, 48.83664910954664], [2.406305911214376, 48.83654825202661], [2.406192757377445, 48.836446575910834], [2.406082153232565, 48.83634571816562], [2.40596900162384, 48.83624404272585], [2.405858396979214, 48.8361431847487], [2.405745246256838, 48.83604150817956], [2.405634643837335, 48.835940649984], [2.405632116207831, 48.83593650395138], [2.405605054069764, 48.83580135708314], [2.405579815264018, 48.8356753801673], [2.405552752045053, 48.8355402323496], [2.405527513481883, 48.83541425629265], [2.405502275040601, 48.83528828021612], [2.405475213585955, 48.835153132340906], [2.405479386114727, 48.83514540236401], [2.405597962029914, 48.83507635394952], [2.405737784502579, 48.83498954241632], [2.405756137420098, 48.834978855622126], [2.40576587610961, 48.83497641726424], [2.405912234131892, 48.83497930006884], [2.406049012426067, 48.83498537912964], [2.406195369137209, 48.83498826068174], [2.406332147487915, 48.83499433941874], [2.406359605423699, 48.83497942214835], [2.406368762703619, 48.83495518117739], [2.406293226894241, 48.83483005550769], [2.406217170015561, 48.834703942384216], [2.406141634923875, 48.83457881749005], [2.40606558015115, 48.834452703349285], [2.406067237036507, 48.8344440704854], [2.406146233629651, 48.83437270784975], [2.406224604700092, 48.834299191673054], [2.406303599496064, 48.834227828917506], [2.406381970126756, 48.83415431262819], [2.406380816758264, 48.8341430207798], [2.406343200950006, 48.834116852346085], [2.4062698587547082, 48.83406465702639], [2.406250031155901, 48.83406455320512], [2.406137937858709, 48.83414183760271], [2.406033295576626, 48.83421499393648], [2.405921201634706, 48.834292278120564], [2.405816560108748, 48.83436543426165], [2.405804388199232, 48.83436812854719], [2.4056123006874452, 48.83434673518225], [2.405440565069874, 48.83432799417273], [2.405268829586152, 48.83430925201699], [2.405076741138571, 48.834287858683396], [2.405070368167188, 48.8342859437155], [2.4049260416943072, 48.834207786874195], [2.404772944166149, 48.83412623696886], [2.40462861994366, 48.83404807976432], [2.404475521987564, 48.833966529459886], [2.40433119865318, 48.83388837188529], [2.404178102993699, 48.833806821195296], [2.4040337791851423, 48.83372866324394], [2.4038806844599963, 48.83364711216162], [2.403860501036926, 48.83364942726066], [2.403742730831584, 48.833776865726335], [2.403646833859964, 48.83388177790937], [2.403621882804179, 48.83392095215009], [2.403626818282508, 48.833925498765325], [2.4036713054443393, 48.83394167440614], [2.403875295018282, 48.83401915435741], [2.404057991547354, 48.83408558169518], [2.404240688531668, 48.8341520096493], [2.404444679785268, 48.83422948771559], [2.404450077322299, 48.834241297165576], [2.404363855812349, 48.83435543067017], [2.404273408343343, 48.834471911980806], [2.404187187427321, 48.834586045341354], [2.404096739163398, 48.834702526494354], [2.404010517479213, 48.83481665970403], [2.403920068410081, 48.83493314159877], [2.4038338445953142, 48.83504727465079], [2.403743396103833, 48.83516375549537], [2.403657171520778, 48.8352778883965], [2.403566722234256, 48.83539436908351], [2.403480496882904, 48.835508501833715], [2.403390045428919, 48.83562498325566], [2.403303820671578, 48.8357391158618], [2.40321336843292, 48.83585559622679], [2.403127142907268, 48.83596972868206], [2.403068546367015, 48.836045185135305], [2.403061919049621, 48.83606820363894], [2.403110756039523, 48.836086927468244], [2.403278441218499, 48.836082427307915], [2.403440912015395, 48.83607630363751], [2.403608595779645, 48.83607180210818], [2.403771066504635, 48.83606567798931], [2.403938750195805, 48.83606117689641], [2.404101220859168, 48.83605505142974], [2.404114007237176, 48.83605978552197], [2.404203099582475, 48.836169645834815], [2.404292717510049, 48.8362808766171], [2.40438180925782, 48.83639073586904], [2.404471427946854, 48.83650196649548], [2.404560520449153, 48.836611825592605], [2.404650139899657, 48.83672305606313], [2.404739233146224, 48.83683291590473], [2.404828853358207, 48.836944146219416], [2.404917947369593, 48.83705400500684], [2.405007568343064, 48.837165235165614], [2.405096664461106, 48.83727509470432], [2.405186284843972, 48.837386323801105], [2.405275381716586, 48.837496183184975], [2.405365002850688, 48.83760741302517], [2.405454100488144, 48.83771727135488], [2.405543722383754, 48.837828501039176], [2.405632820765543, 48.837938360113355], [2.40572244342267, 48.838049589641734], [2.405811542569313, 48.83815944766174], [2.405901167350355, 48.83827067704102], [2.405918284060719, 48.838273996154804], [2.405947049112426, 48.83826660596345], [2.406134124664717, 48.83831817520617], [2.406317760622767, 48.838368887977126], [2.406504835546424, 48.838420456628576], [2.40668847221526, 48.838471169725146], [2.406875549235273, 48.83852273779889], [2.407059185262737, 48.83857345031492], [2.407246263016507, 48.838625017804176], [2.407429901127391, 48.83867572975321], [2.407616978252714, 48.83872729665124], [2.407800617084515, 48.83877800802652], [2.40798769630609, 48.838829574346825], [2.408171335869119, 48.838880284249036], [2.408358414462129, 48.8389318499781], [2.408542054736055, 48.83898256020588], [2.408578346308419, 48.83898211099033], [2.40859191951009, 48.838969112190526], [2.408553835863784, 48.83883776477048], [2.4085146298271303, 48.83871313359298], [2.40847654520032, 48.83858178611148], [2.408437339551119, 48.838457153980805], [2.408399255306108, 48.83832580644464], [2.408360050024045, 48.83820117515937], [2.408363433216961, 48.838174626567266]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 42, "roussel_fabien": 24.0, "nb_emargement": 1106.0, "nb_procuration": 48.0, "nb_vote_blanc": 10.0, "jadot_yannick": 82.0, "le_pen_marine": 58.0, "nb_exprime": 1095.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1357.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1106, "quartier_bv": "45", "geo_point_2d": [48.836498441188525, 2.40576521934116], "melenchon_jean_luc": 369.0, "poutou_philippe": 9.0, "macron_emmanuel": 329.0}, "geometry": {"type": "Point", "coordinates": [2.40576521934116, 48.836498441188525]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "af508269b463bbb097f75e3cbdfe0aaa35739bbb", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 59, "zemmour_eric": 95.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "5-15", "geo_shape": {"coordinates": [[[2.352043078785564, 48.84218421463849], [2.352085439925037, 48.842180980632584], [2.352276470779055, 48.842191115777446], [2.352471958883357, 48.84220112005303], [2.352662988523965, 48.84221125457312], [2.352858478140376, 48.84222125822428], [2.3530495079299483, 48.842231392127], [2.353244997696074, 48.842241395146345], [2.353436027634502, 48.84225152843168], [2.353631517550435, 48.84226153081921], [2.353646018483107, 48.84225401045473], [2.353678755783857, 48.84212134876704], [2.353712952154638, 48.84198869134074], [2.353745689129521, 48.8418560287039], [2.353779886507086, 48.84172337213361], [2.353812623144953, 48.8415907094469], [2.353846820189327, 48.84145805192663], [2.353863006303929, 48.84145075288399], [2.354050588521816, 48.84147631315106], [2.354238743952886, 48.84150181146256], [2.354426326549934, 48.841527370239966], [2.354614482349136, 48.84155286795935], [2.35480206531419, 48.841578426146434], [2.354990221481517, 48.84160392327367], [2.355177804814569, 48.84162948087039], [2.355365961350013, 48.841654977405504], [2.35555354640241, 48.84168053531849], [2.35574170195461, 48.841706030354786], [2.355757729361501, 48.84169920956411], [2.355792175104257, 48.841598948819644], [2.355831024361733, 48.841486897736615], [2.355865469823284, 48.84138663695197], [2.355894867882207, 48.8413018485973], [2.355913233089534, 48.841284786731904], [2.355908661083356, 48.841274811560794], [2.355918113305315, 48.84124754969221], [2.355928154828907, 48.84121901839611], [2.35594024635702, 48.8411841396375], [2.355959546206798, 48.84117038525757], [2.355954537374604, 48.841153640026576], [2.355981293129167, 48.84107646760727], [2.356012675487317, 48.84099657432758], [2.356009055994515, 48.840987142104765], [2.355964659465506, 48.84098009311039], [2.355800080795102, 48.84093629740548], [2.355595644936797, 48.84088156455828], [2.355431066898705, 48.8408377674425], [2.35522663180335, 48.84078303485918], [2.355062054386355, 48.840739237231865], [2.354857620076102, 48.84068450311376], [2.354693043269179, 48.840640705874236], [2.354488609732904, 48.84058597112074], [2.354324033558423, 48.84054217247034], [2.354311905651187, 48.84054240829533], [2.354145634850396, 48.84059514517062], [2.353955202270628, 48.84065447587102], [2.353943395547547, 48.840651881296495], [2.353918628879568, 48.84065992545114], [2.353908991078054, 48.840660424707465], [2.353722734110173, 48.84062448638806], [2.353539955049678, 48.84058960443721], [2.353353698589332, 48.84055366554089], [2.353170921375451, 48.840518783930584], [2.352984665422642, 48.84048284445747], [2.352801887341748, 48.84044796227377], [2.352793109399139, 48.8404482349557], [2.352623457685323, 48.840492356211314], [2.352450820200028, 48.84053803045386], [2.352281167893008, 48.840582152119794], [2.35210852981034, 48.84062782586472], [2.351938876932572, 48.84067194614239], [2.351766238241252, 48.84071762028894], [2.351753980322858, 48.84071691171742], [2.3515794493922613, 48.84064535132865], [2.351404028113325, 48.84057442709724], [2.351229496777975, 48.84050286618135], [2.35105407645479, 48.840431941427745], [2.351040978327124, 48.840431530410875], [2.35088610939644, 48.84048147814388], [2.350742672948456, 48.840527054759754], [2.350599236249722, 48.840572631201816], [2.3504443664763652, 48.8406225783566], [2.350438667679462, 48.84062602885092], [2.350348760765858, 48.840724852910036], [2.350255267276613, 48.84082696257704], [2.350165359668772, 48.84092578648055], [2.350071864097343, 48.84102789597845], [2.349981957157507, 48.84112671973372], [2.349888460866336, 48.84122882906991], [2.349798553232253, 48.84132765266954], [2.349705056221332, 48.84142976184401], [2.349665047624097, 48.84142925475163], [2.349653421661166, 48.84144307862147], [2.349668202400693, 48.84146448468708], [2.349709787060308, 48.841482607187416], [2.349895155287558, 48.841498178109596], [2.350083065862857, 48.84151431566473], [2.3502684343143923, 48.841529886008075], [2.350456346470943, 48.841546023883105], [2.350641715146759, 48.84156159364758], [2.350829626181833, 48.84157773002911], [2.3510149950819192, 48.841593299214736], [2.351202906335772, 48.841609435908765], [2.351388275460125, 48.84162500451553], [2.3515761869550422, 48.84164113972344], [2.351761556292463, 48.84165670865068], [2.351949468017139, 48.8416728432718], [2.3519612560601, 48.84168078645205], [2.3519812809561103, 48.84180201936527], [2.352001407304824, 48.841932086354774], [2.35202143375316, 48.842053319241295], [2.3520415603104, 48.84218338529544], [2.352043078785564, 48.84218421463849]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 15, "roussel_fabien": 23.0, "nb_emargement": 1177.0, "nb_procuration": 85.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 41.0, "nb_exprime": 1163.0, "nb_vote_nul": 0.0, "arr_bv": "05", "arthaud_nathalie": 6, "nb_inscrit": 1476.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "18", "geo_point_2d": [48.84123384696714, 2.3528640987264975], "melenchon_jean_luc": 356.0, "poutou_philippe": 13.0, "macron_emmanuel": 406.0}, "geometry": {"type": "Point", "coordinates": [2.3528640987264975, 48.84123384696714]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "affa1f8962d11bf2a18e766533f70a661e8feb1b", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 32, "zemmour_eric": 59.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-65", "geo_shape": {"coordinates": [[[2.39711317200064, 48.86667107446772], [2.397112794613329, 48.866668464483816], [2.397129912179618, 48.866646436862034], [2.397218014767104, 48.866533480256976], [2.397304046255801, 48.86642276599264], [2.39739214809784, 48.86630980833728], [2.397478178846972, 48.86619909392542], [2.397564209240933, 48.866088378541356], [2.397652309942949, 48.86597542155961], [2.397738340960569, 48.865864706034884], [2.39782644090675, 48.86575174890216], [2.397912469821712, 48.86564103322303], [2.398000569012074, 48.865528075939274], [2.398005267567087, 48.86551382435188], [2.397961262250579, 48.865502369348526], [2.397751620011395, 48.86549607325885], [2.397544529933117, 48.865489988402715], [2.397334887783618, 48.8654836924823], [2.397127797803237, 48.86547760690504], [2.3969181571170353, 48.86547131026147], [2.39671106723456, 48.86546522396307], [2.396501425285563, 48.86545892658266], [2.396294335501007, 48.865452839563126], [2.396087245754321, 48.86544675308453], [2.395877603965501, 48.865440453712004], [2.395670514316844, 48.86543436651232], [2.395460872628163, 48.865428066409756], [2.395253783077448, 48.86542197848891], [2.395044142852119, 48.86541567766328], [2.3950336359335402, 48.865418470066366], [2.394881841764763, 48.86552396422377], [2.394734339262533, 48.865630775834575], [2.394582543879407, 48.86573626869289], [2.394435041525509, 48.86584307992122], [2.394433317219464, 48.86584424393595], [2.394408299706754, 48.86586235956173], [2.394373290310603, 48.86588597264897], [2.394357812391328, 48.86590524542151], [2.394371600237439, 48.86591784389444], [2.394479274890016, 48.866015948178116], [2.394603521741095, 48.86613319948329], [2.394711198638565, 48.866231303546144], [2.394835446525274, 48.86634855458773], [2.394943122941611, 48.866446658415974], [2.395067371863957, 48.866563909194], [2.395175049162085, 48.86666201279445], [2.39529929912008, 48.866779263308885], [2.395406978663245, 48.86687736668849], [2.395531229656903, 48.86699461693936], [2.3956389087189462, 48.86709272008433], [2.395639649966757, 48.86709333627691], [2.395781580806909, 48.86719042060781], [2.3959154911224543, 48.867292320706675], [2.396057423029248, 48.86738940379371], [2.396191334395874, 48.86749130356562], [2.396198477205199, 48.86749416172349], [2.396292834618566, 48.86750897495054], [2.396383092190219, 48.86753585003651], [2.396419385654951, 48.86754908516415], [2.396435411086378, 48.867540185185966], [2.396519504109669, 48.86743234597239], [2.396605538567373, 48.86732163230014], [2.396689632248825, 48.86721379295261], [2.396775665994321, 48.86710307823687], [2.396859757597232, 48.86699523964093], [2.396945790620318, 48.866884524781035], [2.397029881528669, 48.86677668514498], [2.397098797603249, 48.86668799866644], [2.39711317200064, 48.86667107446772]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 65, "roussel_fabien": 25.0, "nb_emargement": 1038.0, "nb_procuration": 61.0, "nb_vote_blanc": 11.0, "jadot_yannick": 102.0, "le_pen_marine": 48.0, "nb_exprime": 1026.0, "nb_vote_nul": 1.0, "arr_bv": "20", "arthaud_nathalie": 1, "nb_inscrit": 1272.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1038, "quartier_bv": "79", "geo_point_2d": [48.86622444898695, 2.396153945025663], "melenchon_jean_luc": 419.0, "poutou_philippe": 7.0, "macron_emmanuel": 287.0}, "geometry": {"type": "Point", "coordinates": [2.396153945025663, 48.86622444898695]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eb62a2c8a5fc1a586e0a646f33157abc62a20a6d", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 76, "zemmour_eric": 108.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "12-6", "geo_shape": {"coordinates": [[[2.39719391370393, 48.84303002064479], [2.397191426456382, 48.84305516135802], [2.397099036906333, 48.84316733227272], [2.397001387686061, 48.84328430794602], [2.396908998683323, 48.84339647869776], [2.396811348607094, 48.84351345419192], [2.396718957426613, 48.84362562476699], [2.396621307857148, 48.843742600088866], [2.39652891586144, 48.84385477049412], [2.396431264073566, 48.84397174562999], [2.396338872625056, 48.844083915872325], [2.3962412199812952, 48.844200890829], [2.396148826355099, 48.84431306089464], [2.396051172855437, 48.84443003567215], [2.395958779776433, 48.84454220557487], [2.395861125420864, 48.844659180173224], [2.39576873016414, 48.84477134989924], [2.395671076315213, 48.84488832432529], [2.395578680243213, 48.845000493881486], [2.395481024175695, 48.84511746812147], [2.395388628650978, 48.84522963751473], [2.395290971727623, 48.84534661157554], [2.395198574025037, 48.84545878079207], [2.395140666452353, 48.845528143176516], [2.395142489428772, 48.8455536401487], [2.395189683155886, 48.845568888998024], [2.395377569175605, 48.84555372043448], [2.395570057439353, 48.845537196114975], [2.395757944596682, 48.845522026960545], [2.395950432622866, 48.84550550202859], [2.3961383181926372, 48.84549033226946], [2.396330805970629, 48.845473807624366], [2.396518692688408, 48.84545863637501], [2.396711180228724, 48.84544211111744], [2.396899065348518, 48.84542694016275], [2.397091552661557, 48.84541041339342], [2.39727943755645, 48.84539524184095], [2.397471925994363, 48.84537871446598], [2.397659810664144, 48.84536354231572], [2.397852297491384, 48.84534701522077], [2.398040181946535, 48.8453318415734], [2.398173443057533, 48.845320399491605], [2.398208572176943, 48.84532342266635], [2.398221371333313, 48.84531894080301], [2.398280596805613, 48.84531385515367], [2.398477661286853, 48.84529606309893], [2.398670148978447, 48.84527953379465], [2.398867213197018, 48.8452617410977], [2.39905969926535, 48.84524521205863], [2.399256763221045, 48.84522741871945], [2.399449249049524, 48.845210888153844], [2.399646312742432, 48.84519309417245], [2.399838799683045, 48.84517656298642], [2.400035863113256, 48.84515876836281], [2.400228348430604, 48.84514223744196], [2.400425411597911, 48.845124442176164], [2.40061789667536, 48.84510790972877], [2.400814959579852, 48.84509011382078], [2.401007445759067, 48.845073581652244], [2.401199930463929, 48.84505704826763], [2.401396992977457, 48.84503925140011], [2.401589477421617, 48.84502271828756], [2.401786539682632, 48.84500491987856], [2.40197902523898, 48.844988386145566], [2.4021760872267253, 48.84497058799366], [2.402237766441933, 48.844953937936474], [2.402241248846854, 48.844942216041495], [2.402243872347027, 48.84493338488207], [2.402227595851916, 48.84490867558709], [2.402179316635602, 48.84478195248645], [2.40213194837308, 48.84465174170258], [2.402083669627348, 48.84452501853413], [2.40203630183721, 48.84439480768239], [2.40198802356205, 48.84426808444616], [2.401940656244496, 48.84413787352654], [2.401892378439902, 48.84401115022251], [2.401845011594718, 48.84388093923503], [2.401796734260684, 48.84375421586323], [2.401749367888069, 48.84362400480788], [2.401701091024587, 48.843497281368265], [2.40165372512433, 48.843367070245094], [2.401605448731496, 48.843240346737716], [2.401558081941176, 48.843110135539824], [2.401509807381295, 48.84298341197146], [2.401462441063428, 48.84285320070574], [2.401414166974174, 48.84272647706961], [2.401366801128753, 48.84259626573605], [2.401318527509916, 48.84246954203217], [2.401271162136933, 48.84233933063073], [2.401270940354694, 48.84233918472409], [2.401168951797421, 48.84235971831968], [2.400975171752211, 48.842401381322404], [2.400777425375467, 48.84244087827499], [2.400583644715633, 48.84248254064053], [2.400385897723913, 48.84252203784237], [2.400380597540399, 48.842522379113646], [2.400196638098851, 48.842510243704474], [2.400012293443369, 48.84249772655066], [2.399828334174491, 48.8424855905749], [2.399643989694661, 48.84247307285328], [2.3994600319507002, 48.842460937217055], [2.399275687646528, 48.84244841892761], [2.399091728723315, 48.842436281818635], [2.39890738459471, 48.84242376296139], [2.398723427196416, 48.84241162619191], [2.398539083243585, 48.842399106766855], [2.398355124665865, 48.84238696852464], [2.398170780888718, 48.842374448531785], [2.397986822473523, 48.842362310622235], [2.397802480234461, 48.84234979006841], [2.397789241453429, 48.842354290367545], [2.397694770134278, 48.84246395020438], [2.39760238407804, 48.842576121574105], [2.397507913336549, 48.84268578034918], [2.397415525122433, 48.842797951545435], [2.397321053575299, 48.84290761105041], [2.397228664565792, 48.84301978208008], [2.39719391370393, 48.84303002064479]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 6, "roussel_fabien": 24.0, "nb_emargement": 1224.0, "nb_procuration": 52.0, "nb_vote_blanc": 13.0, "jadot_yannick": 97.0, "le_pen_marine": 81.0, "nb_exprime": 1205.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1601.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1222, "quartier_bv": "46", "geo_point_2d": [48.844009108019016, 2.3989751076902306], "melenchon_jean_luc": 366.0, "poutou_philippe": 4.0, "macron_emmanuel": 381.0}, "geometry": {"type": "Point", "coordinates": [2.3989751076902306, 48.844009108019016]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e91acdee4ab8259accb8845dc156e4bcf0d88ca5", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 24, "zemmour_eric": 56.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-12", "geo_shape": {"coordinates": [[[2.341499927717849, 48.89424043721247], [2.341488129020518, 48.89426853818196], [2.341498834359446, 48.89434348984059], [2.341516372460878, 48.89441977678511], [2.341512935534266, 48.89442720516644], [2.34136503514091, 48.89453345691266], [2.341225856291096, 48.89463519509054], [2.341086678261108, 48.89473693310472], [2.340938776129398, 48.89484318339522], [2.3409258049982142, 48.894845886413705], [2.340868549630116, 48.89483760240684], [2.340810230960756, 48.89482593556878], [2.34075614569528, 48.8948400341735], [2.34076466870004, 48.89486698068434], [2.340845713070263, 48.89499199714514], [2.340920651995965, 48.895108567685995], [2.340995591245858, 48.89522513906676], [2.341076636739371, 48.89535015443115], [2.341151576686247, 48.89546672568861], [2.341232622930379, 48.89559174091987], [2.341307563585625, 48.89570831115476], [2.341388610569112, 48.89583332715213], [2.341463551921357, 48.89594989726374], [2.341544599655383, 48.89607491312791], [2.341619541704635, 48.89619148311618], [2.341700590189312, 48.89631649884725], [2.341775532935582, 48.89643306871217], [2.341856582171022, 48.896558084310115], [2.341931525614318, 48.89667465405167], [2.342012575600326, 48.89679966951647], [2.342087519740658, 48.896916239134725], [2.342168570488711, 48.897041253567046], [2.342243515314826, 48.89715782396124], [2.342324566813566, 48.89728283826041], [2.342399512336635, 48.89739940853124], [2.342480564586074, 48.8975244226973], [2.342555510806208, 48.897640992844735], [2.342636562442516, 48.897766006870135], [2.342711510723665, 48.89788257690172], [2.342705876352739, 48.8979083681067], [2.342745326585485, 48.89792423275713], [2.342972526982161, 48.897929155840416], [2.3431985273763543, 48.89793308266118], [2.343425727854504, 48.89793800488465], [2.343651728321288, 48.89794193085021], [2.343878928880895, 48.8979468522139], [2.344104929420257, 48.897950777324176], [2.344146651247215, 48.89794141008918], [2.34418205868308, 48.89791756161422], [2.344199502787879, 48.897809518613954], [2.344218019066588, 48.89770319737133], [2.344236533905734, 48.89759687610808], [2.34425397779003, 48.89748883306823], [2.344255910956805, 48.89746573746129], [2.344224421543194, 48.89745805392866], [2.344160859542101, 48.89745455015364], [2.344089645694794, 48.89744810773169], [2.344078607080912, 48.89744213335496], [2.344007097479754, 48.89730555875022], [2.343937809252771, 48.897171765255536], [2.343866300380996, 48.89703519143231], [2.343797012875666, 48.89690139782309], [2.343725504744593, 48.89676482388205], [2.343656217960906, 48.8966310301584], [2.3436554057838093, 48.896629780149944], [2.343573599429206, 48.8965262751711], [2.343489821917204, 48.896423786341906], [2.34340801484023, 48.89632028212228], [2.343324237985563, 48.89621779315795], [2.343322713047839, 48.89621465876083], [2.343297582973819, 48.89608405844222], [2.343273218481869, 48.89596024856847], [2.343248855469587, 48.89583643868324], [2.343223724399612, 48.89570583829656], [2.343199360260196, 48.89558202836501], [2.343174230801059, 48.89545142794508], [2.343149866898396, 48.8953276179747], [2.34312473767486, 48.89519701841331], [2.343100374020293, 48.895073207504865], [2.343075245043698, 48.89494260790275], [2.3430898891466843, 48.89492805268767], [2.343085136893457, 48.89491261855618], [2.343085567370536, 48.89490898496364], [2.343107200174716, 48.89485973631284], [2.343117039662612, 48.89482913783412], [2.343133833594984, 48.89480461194318], [2.343123774683907, 48.89479346994046], [2.343161302255103, 48.89470803614947], [2.343198155512098, 48.894637230595194], [2.343189879530875, 48.89462585196091], [2.343018444555015, 48.894585114814845], [2.342817080966309, 48.89453921115733], [2.342645646567425, 48.89449847347434], [2.342444284994988, 48.894452570093115], [2.342272849809229, 48.89441183186574], [2.342071488900559, 48.89436592785402], [2.341900054303151, 48.89432518819053], [2.341698694058259, 48.89427928354837], [2.341527261390321, 48.89423854425472], [2.341499927717849, 48.89424043721247]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 12, "roussel_fabien": 21.0, "nb_emargement": 1136.0, "nb_procuration": 34.0, "nb_vote_blanc": 17.0, "jadot_yannick": 64.0, "le_pen_marine": 91.0, "nb_exprime": 1113.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1662.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "70", "geo_point_2d": [48.89609165112589, 2.34254674151687], "melenchon_jean_luc": 545.0, "poutou_philippe": 7.0, "macron_emmanuel": 248.0}, "geometry": {"type": "Point", "coordinates": [2.34254674151687, 48.89609165112589]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "167c46479cf8c385701a146d270a15fd19c50771", "fields": {"lassalle_jean": 23.0, "pecresse_valerie": 71, "zemmour_eric": 69.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-27", "geo_shape": {"coordinates": [[[2.336693413753543, 48.839680198857884], [2.336707825535255, 48.839663547859985], [2.336811482424082, 48.8396364589788], [2.336994168272866, 48.839587257345165], [2.3371721079524272, 48.83954075601229], [2.337354793125359, 48.83949155382372], [2.337532730782724, 48.839445052842166], [2.337715415279805, 48.83939585009862], [2.337893353662456, 48.839349347684944], [2.338076037483677, 48.83930014438648], [2.33825397385556, 48.839253641424804], [2.338431911272243, 48.83920713820411], [2.338614594086641, 48.839157934076916], [2.33879253084355, 48.839111431215095], [2.338975212982081, 48.83906222653297], [2.339153147739426, 48.83901572222391], [2.339335829202086, 48.83896651698685], [2.339513764673458, 48.83892001214494], [2.339696445460241, 48.838870806352915], [2.33969717523513, 48.83887063140735], [2.339893153567888, 48.8388277565104], [2.340051240207065, 48.83879573355748], [2.340209328014288, 48.8387637104022], [2.3404053055351293, 48.83872083376279], [2.340563392897755, 48.83868881013744], [2.340686125475771, 48.838661957961385], [2.34071542818666, 48.838659033741195], [2.34072635025688, 48.838654680745734], [2.340799594604138, 48.83863865567471], [2.340986566651542, 48.83859911906794], [2.341182542914173, 48.83855624114888], [2.341369514375371, 48.838516703940634], [2.341565490013112, 48.83847382539101], [2.341752460899657, 48.83843428668198], [2.341948435901142, 48.83839140840111], [2.342038967572819, 48.83837226333562], [2.342066752321616, 48.8383640457558], [2.342062706425465, 48.83830225948236], [2.342060523881398, 48.83824051223416], [2.342050902895166, 48.838164475396624], [2.342055363961157, 48.838152246958174], [2.342041973008171, 48.838132234334815], [2.3420343242007, 48.83807179436792], [2.342016400100226, 48.83793535261446], [2.341999130508173, 48.83779887576871], [2.341981206582318, 48.83766243487595], [2.341963937172732, 48.8375259579918], [2.341946013432846, 48.83738951706044], [2.341928744205824, 48.8372530401379], [2.341910820652005, 48.837116599168006], [2.341893551607547, 48.83698012220707], [2.341875628239589, 48.83684368119854], [2.34185835937769, 48.836707204199236], [2.341840436195692, 48.836570763152125], [2.341819566727314, 48.83643687177119], [2.341801643739811, 48.83630043068531], [2.341780774479204, 48.83616653926524], [2.341762851686191, 48.836030098140576], [2.341741981259881, 48.835896207573164], [2.341724058672716, 48.83575976551043], [2.341703189816496, 48.835625874911386], [2.341703138039911, 48.835625551752926], [2.34167880738254, 48.835495228764735], [2.341657938748557, 48.83536133812614], [2.341633608316154, 48.8352310159973], [2.3416127399153, 48.83509712441994], [2.341588409719219, 48.83496680225112], [2.3415675415402353, 48.834832910634184], [2.341562970705896, 48.83479614082196], [2.341562897385538, 48.83479568983407], [2.341557420671894, 48.834768512208605], [2.341555528070129, 48.834766269554116], [2.341488969104543, 48.83477301714604], [2.341294191904879, 48.834766571802874], [2.341099375522341, 48.83475999641712], [2.340904597068688, 48.83475354953264], [2.340709780783964, 48.83474697351226], [2.340515002415782, 48.834740526892595], [2.340320186240261, 48.83473394933828], [2.340125407968929, 48.834727502084135], [2.339930591879861, 48.83472092479448], [2.339735813716778, 48.8347144760065], [2.339540997725552, 48.834707898082286], [2.339346219647846, 48.834701449559105], [2.339151403754574, 48.834694871000224], [2.338956625785147, 48.834688420943266], [2.338761809989735, 48.834681841749784], [2.33856703346808, 48.83467539196515], [2.338372217781851, 48.834668811237755], [2.338177439994907, 48.834662360811095], [2.337982624395145, 48.834655780348356], [2.337787846716529, 48.83464932838791], [2.337593031214657, 48.834642747290545], [2.337398253621534, 48.83463629559495], [2.337203438217559, 48.83462971386298], [2.3371961983667893, 48.83463080695066], [2.337027681714637, 48.83469172900086], [2.3368580253482643, 48.83475310946805], [2.336689507905609, 48.834814031035094], [2.336519850742986, 48.83487541101591], [2.336351332509628, 48.83493633209987], [2.336181674550755, 48.83499771159431], [2.336013155526896, 48.835058632195185], [2.335843496771772, 48.83512001120322], [2.335674976957211, 48.83518093132096], [2.335505317405838, 48.835242309842656], [2.3353367968122463, 48.835303228577985], [2.335167136464626, 48.8353646066133], [2.334998615068869, 48.83542552576482], [2.334828953925001, 48.835486903313715], [2.33481395520229, 48.83548606982856], [2.334659949560011, 48.83540564331289], [2.3345056227522463, 48.835325652796705], [2.334351618059534, 48.83524522587249], [2.334197292211331, 48.83516523404775], [2.334043288468287, 48.83508480671499], [2.333888963568165, 48.835004814480975], [2.333734960774783, 48.83492438673971], [2.333580638173531, 48.83484439500334], [2.333426634967514, 48.834763966845976], [2.333272313325824, 48.83468397380106], [2.3331183124317523, 48.834603545242786], [2.3329639903758412, 48.83452355178095], [2.33295018990278, 48.83452236499383], [2.33277666059568, 48.83457168092725], [2.332603363587558, 48.83462144848956], [2.332583432313573, 48.834623573110576], [2.332578033630232, 48.834628972487074], [2.33258178751583, 48.83475767359533], [2.3325857206008243, 48.83488557434928], [2.332589474535393, 48.83501427452845], [2.332593407647094, 48.83514217615213], [2.3325971616191232, 48.83527087630153], [2.332601096142866, 48.835398777003945], [2.332604850140843, 48.83552747802289], [2.332608783340508, 48.83565537868808], [2.332612537375944, 48.835784079677275], [2.332616470613833, 48.835911980312915], [2.33262022468683, 48.83604068127234], [2.332624157962944, 48.83616858187834], [2.332627912084814, 48.836297281908685], [2.332631846761384, 48.836425182492725], [2.332635600909306, 48.83655388339264], [2.332639534261873, 48.83668178393944], [2.332643288447156, 48.83681048480955], [2.33264722183795, 48.83693838532675], [2.332650976060695, 48.83706708616713], [2.332654909489715, 48.837194986654715], [2.332658663749923, 48.83732368746528], [2.33266259857953, 48.83745158793091], [2.332659883478646, 48.83746018963264], [2.332673969696005, 48.83746965942485], [2.332817597174863, 48.83755419542124], [2.332961506030852, 48.83763881824525], [2.333105133068381, 48.83772335477529], [2.333249042858205, 48.83780797724063], [2.333392672201953, 48.83789251252094], [2.333536582925619, 48.83797713462751], [2.33368021320182, 48.838061669549745], [2.333824124859333, 48.83814629129756], [2.33396775469422, 48.83823082675351], [2.334111667285586, 48.83831544814257], [2.334255299426708, 48.8383999823487], [2.334399212951931, 48.838484603379065], [2.3345428460140383, 48.83856913812645], [2.334686760484707, 48.83865375789872], [2.334830393116901, 48.838738292280475], [2.334974308509854, 48.83882291259329], [2.335117943448396, 48.83890744572526], [2.335261859775325, 48.838992065679335], [2.335405495634884, 48.8390765993525], [2.335549412895592, 48.839161218947815], [2.335693048336704, 48.83924575135604], [2.335836966531293, 48.83933037059257], [2.335980604267405, 48.83941490265032], [2.336124523395883, 48.83949952152807], [2.336268162052943, 48.83958405412701], [2.336412082115317, 48.83966867264603], [2.336480124877803, 48.839727218402835], [2.336484579465971, 48.83972588686731], [2.33653070769151, 48.83970996312339], [2.336604989845162, 48.839690551268845], [2.336693413753543, 48.839680198857884]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 27, "roussel_fabien": 7.0, "nb_emargement": 898.0, "nb_procuration": 56.0, "nb_vote_blanc": 8.0, "jadot_yannick": 82.0, "le_pen_marine": 40.0, "nb_exprime": 887.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 0, "nb_inscrit": 1111.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 898, "quartier_bv": "53", "geo_point_2d": [48.83689355576169, 2.3374170834297856], "melenchon_jean_luc": 174.0, "poutou_philippe": 4.0, "macron_emmanuel": 397.0}, "geometry": {"type": "Point", "coordinates": [2.3374170834297856, 48.83689355576169]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5ed2b999870dc55c8ad1258e1416442ff347e08a", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 165, "zemmour_eric": 172.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "16-37", "geo_shape": {"coordinates": [[[2.260498110109778, 48.84528557828538], [2.260502458392488, 48.84531879999166], [2.260577443568366, 48.845433478894705], [2.260650416197827, 48.845545868995686], [2.260725402038745, 48.84566054688336], [2.260798375305325, 48.84577293687118], [2.260873361798531, 48.84588761464272], [2.260946334339466, 48.84600000450897], [2.261021321484963, 48.84611468216447], [2.2610942960255, 48.846227071925995], [2.261167269518304, 48.84633946162325], [2.261242257625649, 48.846454140004624], [2.261315233117977, 48.84656652959714], [2.261390221890387, 48.84668120696308], [2.261463198019767, 48.846793596442474], [2.261538187444602, 48.84690827369233], [2.26154437299629, 48.84691267650558], [2.2616828159824838, 48.84696055261394], [2.2618464683782102, 48.84701117068273], [2.261858294891296, 48.84702523871506], [2.261904550562075, 48.84702415435665], [2.262068203385628, 48.847074771219965], [2.262220007269722, 48.84712196554042], [2.262383662069417, 48.8471725819762], [2.262535466524099, 48.847219775892285], [2.2625375293765773, 48.84722056566159], [2.262705087607193, 48.84729843676383], [2.262874277443204, 48.84737640761238], [2.263041836678066, 48.8474542782321], [2.263211027536562, 48.84753224769418], [2.263378587775771, 48.84761011783138], [2.263547780993837, 48.84768808771411], [2.26371534087468, 48.84776595736042], [2.263884535115229, 48.847843925856665], [2.263896115284987, 48.84784519326423], [2.264063200414724, 48.84781336099098], [2.26424509886647, 48.84777915351929], [2.26441218355861, 48.84774732165605], [2.264594081550778, 48.84771311365178], [2.264761165830707, 48.847681280400025], [2.264943063350603, 48.847647072762406], [2.265110147205521, 48.8476152390214], [2.265246192927464, 48.84758965300293], [2.265268890106423, 48.84759632899355], [2.265290844327671, 48.84758688375854], [2.265336694306384, 48.847578260682035], [2.265544314357943, 48.84753713026402], [2.2657262095106923, 48.84750292052371], [2.2657311604841572, 48.84750261184831], [2.265874190805352, 48.84751146427976], [2.266051734405249, 48.847521964561906], [2.266194764834012, 48.84753081660997], [2.266372307189156, 48.847541317307154], [2.266373567141501, 48.847541356511016], [2.266475360501071, 48.84754141855875], [2.266488651988805, 48.84753040725692], [2.266443475894098, 48.84740094878013], [2.266399362670982, 48.847276058377986], [2.266354187031227, 48.847146598938636], [2.266310072874787, 48.8470217084667], [2.266264897664659, 48.84689224986339], [2.26622078530009, 48.846767359338365], [2.2661756105322413, 48.8466379006718], [2.266131497234349, 48.846513010076954], [2.266087385510467, 48.846388119460215], [2.266042211402727, 48.84625866069924], [2.266039126058856, 48.846254711532225], [2.265919447366403, 48.84616565120245], [2.2657999542644642, 48.84607679424019], [2.2656802750268312, 48.84598773364859], [2.265560782727841, 48.845898877332516], [2.265441105670063, 48.84580981649586], [2.265321612836996, 48.84572095901907], [2.265201936596399, 48.84563189792893], [2.265082444566366, 48.84554304109838], [2.264962769155825, 48.84545397885548], [2.264843277941499, 48.8453651217719], [2.264839854986918, 48.84535951745507], [2.264833627963948, 48.845258553798004], [2.264827447232918, 48.84516368004412], [2.264821267887041, 48.845068806290236], [2.264815039584952, 48.84496784169819], [2.2648185187986822, 48.84494975068088], [2.264795705219666, 48.844940400041224], [2.264699743348456, 48.84483469647511], [2.264604007576412, 48.84472854452473], [2.264508046484086, 48.84462284078475], [2.264412311504346, 48.84451668776153], [2.264316351190897, 48.8444109838477], [2.264220615615643, 48.844304831541784], [2.264124656081064, 48.844199127454154], [2.264028922660533, 48.84409297408378], [2.263932963904815, 48.84398726982229], [2.263837231251171, 48.843881117177666], [2.263741273274304, 48.84377541274234], [2.263645541412943, 48.84366925902486], [2.263629837997148, 48.84366526089604], [2.2634982439886953, 48.84369189420029], [2.263274443896273, 48.84373257522609], [2.26314284954896, 48.84375920723853], [2.263133780345716, 48.84377036382802], [2.263187287445373, 48.84388938240405], [2.2632419248025952, 48.844009818115175], [2.263295432407867, 48.844128835717974], [2.2633500689035, 48.844249271345504], [2.263403577001576, 48.844368288874385], [2.263458215360675, 48.84448872443503], [2.263511723938854, 48.844607742789286], [2.263566362798905, 48.84472817827467], [2.263619870520073, 48.84484719564732], [2.263674509881078, 48.8449676310575], [2.263662546303737, 48.844979175476645], [2.263469116417803, 48.8449894175503], [2.263279204893054, 48.84499897767137], [2.263085774845476, 48.84500922002433], [2.262895863178354, 48.84501877953672], [2.26270243299467, 48.84502902037044], [2.262512519809812, 48.84503858016502], [2.262319089477316, 48.845048820378764], [2.262129177525273, 48.84505837867379], [2.262102448924176, 48.8450665842468], [2.26209799858352, 48.845075434473266], [2.262151138313946, 48.845152090814906], [2.262206466258588, 48.845225307043314], [2.262194969584533, 48.84523830217953], [2.2619846028919532, 48.845245406529706], [2.261784754895003, 48.84524949507759], [2.2615743881013293, 48.84525659870639], [2.261374541404682, 48.845260685678106], [2.261164173147275, 48.84526778857714], [2.260964326362802, 48.845271875762855], [2.260753958004423, 48.845278977940474], [2.260554111157536, 48.84528306354167], [2.2605000160128492, 48.84528416906269], [2.260498110109778, 48.84528557828538]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 37, "roussel_fabien": 2.0, "nb_emargement": 1178.0, "nb_procuration": 87.0, "nb_vote_blanc": 10.0, "jadot_yannick": 56.0, "le_pen_marine": 73.0, "nb_exprime": 1168.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1437.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1179, "quartier_bv": "61", "geo_point_2d": [48.84616050253608, 2.2636459278537115], "melenchon_jean_luc": 90.0, "poutou_philippe": 4.0, "macron_emmanuel": 577.0}, "geometry": {"type": "Point", "coordinates": [2.2636459278537115, 48.84616050253608]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c57cc79ef6c3e87d52cfac8abc71093ad4ac8b7f", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 59, "zemmour_eric": 64.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-53", "geo_shape": {"coordinates": [[[2.3862948844937533, 48.85286993782607], [2.386285384370615, 48.85288195839073], [2.386282293093665, 48.85290802551476], [2.386278087194377, 48.85294009458597], [2.3862600464087, 48.852947815612104], [2.386082074302101, 48.85290709912505], [2.385909743130341, 48.85286708403585], [2.385731772935965, 48.85282636703177], [2.385559442300205, 48.85278635143513], [2.385381471292618, 48.8527456339001], [2.385209141192862, 48.852705617796055], [2.385031170734637, 48.852664899737064], [2.384858841170888, 48.8526248831256], [2.384855483353479, 48.852624406294204], [2.38465960099667, 48.85261330656308], [2.384463058710022, 48.852601779521294], [2.3842671765218633, 48.8525906791475], [2.384070633033981, 48.85257915235315], [2.38387475101448, 48.852568051336725], [2.383678209072052, 48.85255652300525], [2.383482327221219, 48.852545421346186], [2.383285785451071, 48.85253389236992], [2.383219885516924, 48.852524974673145], [2.383212026593937, 48.8525388669174], [2.383157384865134, 48.85262631338659], [2.383081939363523, 48.85274415406994], [2.383003714939965, 48.85286934155643], [2.382928268738966, 48.85298718211717], [2.382850042218615, 48.853112369468796], [2.382774595318217, 48.8532302099069], [2.38277452313404, 48.853230321054056], [2.382696297242094, 48.85335550828488], [2.382617468238271, 48.85347416934829], [2.382539240240145, 48.85359935644191], [2.38246041050977, 48.85371801737579], [2.382382183131027, 48.85384320434634], [2.382303351311399, 48.853961865143724], [2.382288726573597, 48.8539868041819], [2.38231922530563, 48.85400284235634], [2.382475001548404, 48.85403756449907], [2.382619993039202, 48.85407015509122], [2.382639557131637, 48.85407669268408], [2.382648687130565, 48.8540761012508], [2.382688624366127, 48.854085077761056], [2.382881736026166, 48.854131479380776], [2.383066664038086, 48.85417304585368], [2.383259776360782, 48.85421944685962], [2.383444706349271, 48.854261012752005], [2.383629635269988, 48.854302578350044], [2.383822748574059, 48.85434897844202], [2.384007678108529, 48.854390543452496], [2.384200792075243, 48.85443694293067], [2.384200836930366, 48.85443695305436], [2.384397705011833, 48.854481701438246], [2.384590819663692, 48.85452810028319], [2.384787688424537, 48.854572848021746], [2.384980805124274, 48.85461924624053], [2.385177673201575, 48.85466399332677], [2.385370790586371, 48.854710390912345], [2.385382124479758, 48.854711644364855], [2.385412929381984, 48.85466763912359], [2.38556016072248, 48.85457866082763], [2.385703017261477, 48.854492412796375], [2.3858502462486912, 48.85440343412247], [2.385993101837728, 48.854317184832034], [2.386135956943151, 48.85423093626368], [2.386283184452369, 48.85414195703613], [2.386426038607834, 48.854055707208545], [2.386573265116013, 48.85396672850932], [2.386716118311033, 48.85388047832185], [2.386863345191465, 48.85379149925867], [2.38700619606315, 48.853705248704316], [2.3871534219637223, 48.85361626837089], [2.387296273227088, 48.853530018362896], [2.387443496774436, 48.8534410376516], [2.387586347087847, 48.85335478638441], [2.3877335696342, 48.85326580620145], [2.38776847964742, 48.85324589603458], [2.387782729133772, 48.85322922303459], [2.387767136018932, 48.853218163078104], [2.387582964721041, 48.853173877280064], [2.3874054866793992, 48.85313120921973], [2.387221317358974, 48.853086922868606], [2.387043839909627, 48.85304425426853], [2.386866362751033, 48.8530015854036], [2.386682194346844, 48.85295729821746], [2.386504717780552, 48.85291462881276], [2.3863205499911633, 48.85287034106659], [2.3862948844937533, 48.85286993782607]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 53, "roussel_fabien": 25.0, "nb_emargement": 1421.0, "nb_procuration": 110.0, "nb_vote_blanc": 18.0, "jadot_yannick": 143.0, "le_pen_marine": 59.0, "nb_exprime": 1403.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1762.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1424, "quartier_bv": "44", "geo_point_2d": [48.85354403425363, 2.3847966729174925], "melenchon_jean_luc": 461.0, "poutou_philippe": 7.0, "macron_emmanuel": 517.0}, "geometry": {"type": "Point", "coordinates": [2.3847966729174925, 48.85354403425363]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a516ab66bb1386783afe87710c126f837b6411ce", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 36, "zemmour_eric": 61.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-3", "geo_shape": {"coordinates": [[[2.383696277362706, 48.8585219333621], [2.383700110263813, 48.85851488693481], [2.383801951028917, 48.85841273925937], [2.383904238443213, 48.85831128358858], [2.384006078410158, 48.85820913572074], [2.384108363664458, 48.858107679849844], [2.384210202833256, 48.85800553178953], [2.384312488642555, 48.85790407663188], [2.384414325650314, 48.85780192837209], [2.384516610673173, 48.85770047212204], [2.384618448245699, 48.85759832367683], [2.38472073247129, 48.85749686723369], [2.384822567882801, 48.85739471858905], [2.384924851311339, 48.85729326195282], [2.3850266872876222, 48.85719111312274], [2.385128969908296, 48.857089657192724], [2.385129012666268, 48.85708961424376], [2.385229293909874, 48.85699025331027], [2.385347825228572, 48.856874305823524], [2.385448105651028, 48.8567749437881], [2.385566635993003, 48.85665899606213], [2.385666915573307, 48.85655963472337], [2.385785444938575, 48.85644368675815], [2.385885725050001, 48.85634432522378], [2.385885777463253, 48.85634427243122], [2.38600430585158, 48.85622832422676], [2.386120012357535, 48.856115394021835], [2.386238541066827, 48.85599944556846], [2.386354246556858, 48.8558865151138], [2.386354372067413, 48.8558863889493], [2.38645172086453, 48.85578762882249], [2.386567425422269, 48.855674698140156], [2.386664773420066, 48.855575937821214], [2.386780477045974, 48.85546300691137], [2.38687782424446, 48.85536424640029], [2.386993526938545, 48.85525131526295], [2.387090873337729, 48.85515255455973], [2.38709950997941, 48.8551142019836], [2.387094454585837, 48.85510995274553], [2.386900920140281, 48.855066083008396], [2.386701308284831, 48.85502006653615], [2.386507774514827, 48.85497619526031], [2.386308163350926, 48.85493017812859], [2.386114630235103, 48.85488630711263], [2.385915019773453, 48.854840288422025], [2.385774769843163, 48.85480675850591], [2.385575159986404, 48.85476073924507], [2.385434910488927, 48.85472720892821], [2.385415670873289, 48.85472604258335], [2.385392770300355, 48.85476996071544], [2.385426325355724, 48.854832851904526], [2.385454830919514, 48.85488916448629], [2.385450911172707, 48.854898763797486], [2.385299516202072, 48.85498672676881], [2.385150028902836, 48.8550736381143], [2.384998631564054, 48.8551615997848], [2.384849143261258, 48.85524851074068], [2.384697746258654, 48.855336472922964], [2.384548256952293, 48.85542338348931], [2.384398767147245, 48.85551029386212], [2.38424736862371, 48.85559825545384], [2.38409787781509, 48.85568516543705], [2.38394647692329, 48.85577312572791], [2.383796986473936, 48.8558600353286], [2.383645584555341, 48.85594799612417], [2.383496091739655, 48.85603490532826], [2.383344690167844, 48.85612286573634], [2.383195196348566, 48.85620977455083], [2.383043793771333, 48.856297733665045], [2.382894298948361, 48.856384642089914], [2.382742893981643, 48.85647260170186], [2.382593398155064, 48.85655950973713], [2.382441993535125, 48.85664746896154], [2.382424269456665, 48.856647631105254], [2.382388369211433, 48.85662791467012], [2.382343560410761, 48.85660329575962], [2.382302169147561, 48.85660207573339], [2.38229470466842, 48.856609640292895], [2.382353591555781, 48.85669492998042], [2.3823971477177173, 48.85675877379112], [2.382396817725583, 48.85676660631083], [2.382303215857521, 48.85688569512078], [2.382208540459977, 48.85700677755541], [2.382114936356591, 48.85712586708455], [2.382020261447991, 48.857246949351065], [2.381926656493472, 48.85736603780789], [2.381831980710932, 48.85748711989924], [2.381738374894608, 48.857606208183014], [2.381643698238117, 48.85772729009922], [2.3815500915493, 48.85784637910924], [2.381455414029523, 48.85796745995096], [2.381462698829336, 48.85797999403741], [2.381643400164003, 48.85802515513071], [2.381822346282052, 48.858069859005596], [2.382003048240112, 48.85811501955219], [2.382181994975269, 48.8581597228856], [2.38236269619391, 48.85820488287842], [2.382541643546269, 48.858249585670414], [2.382722346751202, 48.858294745123516], [2.38290129471011, 48.858339448273384], [2.383081998548974, 48.85838460628044], [2.383260947125084, 48.85842930888887], [2.383441651587419, 48.858474466349236], [2.383620600780727, 48.85851916841621], [2.383664456729465, 48.85853857287062], [2.383677208580201, 48.85853190423919], [2.383696277362706, 48.8585219333621]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 3, "roussel_fabien": 27.0, "nb_emargement": 1227.0, "nb_procuration": 58.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 86.0, "nb_exprime": 1210.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1566.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "43", "geo_point_2d": [48.856680042562324, 2.3841943476846814], "melenchon_jean_luc": 493.0, "poutou_philippe": 13.0, "macron_emmanuel": 322.0}, "geometry": {"type": "Point", "coordinates": [2.3841943476846814, 48.856680042562324]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "12048237ad31d5d73ccda4f6b31fbcab604ea2ea", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 52, "zemmour_eric": 66.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "20-24", "geo_shape": {"coordinates": [[[2.401434135087281, 48.86832123279652], [2.401417653866528, 48.868344463892385], [2.401411010951338, 48.86835382604623], [2.40145203957185, 48.86837701109303], [2.401561737953306, 48.868489230312974], [2.401669281358715, 48.86859885305219], [2.401778980685763, 48.868711071151274], [2.401886525006229, 48.868820693673314], [2.401994069779432, 48.868930316087855], [2.402103770493857, 48.86904253475488], [2.402104302175472, 48.8690431273756], [2.402200964263664, 48.86916303128937], [2.402298147950967, 48.869281475393585], [2.402394810927538, 48.86940137912496], [2.40249199550028, 48.869519823046254], [2.402589181878187, 48.86963826688276], [2.402685844823637, 48.86975817033365], [2.402693749407677, 48.86976669951133], [2.402713268626075, 48.869767299644934], [2.402930052212183, 48.86978210868784], [2.403152874745165, 48.86979767141573], [2.403369658582642, 48.86981247966207], [2.403592481366573, 48.86982804247045], [2.403604422828674, 48.869835255288464], [2.403639828699027, 48.869954418316375], [2.403675787452211, 48.87007662562771], [2.403711193649878, 48.87019578860854], [2.403747152737111, 48.87031799587175], [2.403782559262097, 48.87043715880539], [2.403818518683384, 48.870559366020466], [2.403853925545985, 48.870678528007716], [2.403889885291039, 48.87080073607393], [2.403925292480968, 48.870919898014066], [2.403961252560084, 48.871042106032114], [2.403996660077345, 48.87116126792508], [2.40403262049053, 48.871283475895], [2.404033201874896, 48.87128366045528], [2.404064141230003, 48.871278736853306], [2.404145203177379, 48.871206785340085], [2.404288023498449, 48.87108194639584], [2.40436908346708, 48.8710099947114], [2.404371769226588, 48.87100438633437], [2.404366766955477, 48.870882808244275], [2.404362224255904, 48.87076121983673], [2.404357220667288, 48.8706396417127], [2.404352678011102, 48.87051805327804], [2.404347674468125, 48.870396475126846], [2.404343131845245, 48.87027488756435], [2.404343674452949, 48.87027214369432], [2.40440156405004, 48.870141420175344], [2.404460082318069, 48.87000969968111], [2.4045179713417513, 48.86987897517551], [2.404576487647204, 48.869747255485585], [2.404634376087005, 48.86961653089267], [2.40469289317668, 48.86948481022204], [2.4047507810225293, 48.86935408644105], [2.404809296159939, 48.869222365675526], [2.404867183421927, 48.86909164180717], [2.404925697970191, 48.86895992095343], [2.404921690618726, 48.86895068013372], [2.404761765072199, 48.86885657695988], [2.404590247403784, 48.86875612503707], [2.404430324416487, 48.8686620214106], [2.404285795231106, 48.86857737425963], [2.4042655107954483, 48.86856135413983], [2.404257678607092, 48.868561745939004], [2.404230691420516, 48.86854594066795], [2.404230102601542, 48.86854557440498], [2.404101904812788, 48.868461592878475], [2.403973743888651, 48.868377046606206], [2.403845546927933, 48.86829306479232], [2.403717386824094, 48.868208519131954], [2.403589190691403, 48.868124537030695], [2.403461030065478, 48.86803999017688], [2.403457194005444, 48.868034986031155], [2.403423425587348, 48.86788881390064], [2.403390190220601, 48.86774158407841], [2.403384155474023, 48.867735376447584], [2.403200123675198, 48.86765616622678], [2.403020441440374, 48.867578708634326], [2.402840759750097, 48.867501249867445], [2.402656729604645, 48.867422038794416], [2.40247704898536, 48.86734458036982], [2.402293019946419, 48.86726536872632], [2.402250386452694, 48.86725616063326], [2.402240953962413, 48.86726546933822], [2.402153140969424, 48.86738373256114], [2.402063290038571, 48.8675065874396], [2.401975476235894, 48.86762485050643], [2.401885624470156, 48.86774770522477], [2.401797808494415, 48.867865968128584], [2.401707955893776, 48.86798882268679], [2.401620140471388, 48.86810708544129], [2.401530287035945, 48.86822993983932], [2.401529444118161, 48.86823092759365], [2.401485740319282, 48.868273051657354], [2.401440358679704, 48.86831917745785], [2.401434135087281, 48.86832123279652]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 24, "roussel_fabien": 20.0, "nb_emargement": 1188.0, "nb_procuration": 63.0, "nb_vote_blanc": 14.0, "jadot_yannick": 117.0, "le_pen_marine": 51.0, "nb_exprime": 1174.0, "nb_vote_nul": 0.0, "arr_bv": "20", "arthaud_nathalie": 1, "nb_inscrit": 1449.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1188, "quartier_bv": "78", "geo_point_2d": [48.86894181608867, 2.4032493846567418], "melenchon_jean_luc": 416.0, "poutou_philippe": 3.0, "macron_emmanuel": 395.0}, "geometry": {"type": "Point", "coordinates": [2.4032493846567418, 48.86894181608867]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "29385a29373e6b257fb9516f74dbf4d97ab47326", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 91, "zemmour_eric": 97.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "13-66", "geo_shape": {"coordinates": [[[2.349000486381855, 48.8370909161456], [2.34901528094075, 48.83708000549672], [2.349022493440884, 48.83706103662299], [2.348990091003469, 48.8370302736946], [2.348923828278958, 48.83689731931321], [2.348862393312346, 48.83676760549759], [2.348800957300492, 48.83663789072867], [2.348734696919535, 48.83650493620326], [2.348673261523699, 48.836375222237564], [2.34860700181358, 48.836242266710904], [2.348545568407417, 48.8361125526566], [2.348479309345648, 48.83597959792726], [2.348465290968431, 48.83597344273978], [2.348258920998663, 48.83598424677272], [2.348054651515211, 48.83599463379942], [2.34784828137654, 48.83600543712367], [2.347644011728124, 48.83601582344891], [2.347437641431719, 48.83602662516522], [2.3472333716184552, 48.836037010788985], [2.347027001141813, 48.83604781269592], [2.346822731163809, 48.83605819761824], [2.346815236107176, 48.83605715209479], [2.346727366750187, 48.836025980379986], [2.346635754123361, 48.83599183552597], [2.346626372777686, 48.8359908498377], [2.346458386856408, 48.836013134911816], [2.346285929879833, 48.836035273900215], [2.346117943669847, 48.83605755849529], [2.345945486401809, 48.836079696991945], [2.345777499903016, 48.83610198110808], [2.3456050437056453, 48.83612411912045], [2.345437056918256, 48.83614640275756], [2.345264599067108, 48.83616854027074], [2.34524852561618, 48.83616104688819], [2.345220328937586, 48.8360370126398], [2.345195062552067, 48.83591528330481], [2.345166866133628, 48.835791249016594], [2.345141599980887, 48.83566952054285], [2.345113402471588, 48.835545485307975], [2.345088137925127, 48.83542375680371], [2.345059940664685, 48.835299722428296], [2.345034675011182, 48.83517799297925], [2.345025005390149, 48.83515941302548], [2.344990945607632, 48.8351586931864], [2.344860238945743, 48.83519506372575], [2.344723523011938, 48.835233032656454], [2.344551251633656, 48.83528096856854], [2.344414535260791, 48.83531893624385], [2.344406559016045, 48.83532518181375], [2.344360721840995, 48.83545494425327], [2.34431666055402, 48.835584416007336], [2.344270821564906, 48.835714178374865], [2.344226761197727, 48.83584365007325], [2.344180921745539, 48.835973413275596], [2.344136860947259, 48.83610288401156], [2.344091021043403, 48.83623264714936], [2.344046958440368, 48.83636211781475], [2.344001119446967, 48.836491880895494], [2.3439570564015, 48.836621351497705], [2.343911216956323, 48.83675111451394], [2.343867153457195, 48.836880585952365], [2.343821313571557, 48.83701034800473], [2.343777249629878, 48.83713981938], [2.34373140928113, 48.83726958226719], [2.343687344908318, 48.83739905267998], [2.343681976387558, 48.837404397843585], [2.343522110936445, 48.837479841793304], [2.343369447457607, 48.83755242550176], [2.343209582462511, 48.83762786903127], [2.343056918114829, 48.83770045233124], [2.342904251979708, 48.837773035424185], [2.342744385623352, 48.83784847921642], [2.34259171999319, 48.837921061009055], [2.342431852730379, 48.83799650437361], [2.342279184857749, 48.838069086649575], [2.34211931670003, 48.83814452868714], [2.342055363961157, 48.838152246958174], [2.342050902895166, 48.838164475396624], [2.342060523881398, 48.83824051223416], [2.342062706425465, 48.83830225948236], [2.342066752321616, 48.8383640457558], [2.342108871753802, 48.83837026899938], [2.342205311713789, 48.83834987470547], [2.342394055594936, 48.83830979433178], [2.3425810252645682, 48.83827025432188], [2.342769768568396, 48.8382301733525], [2.342956737667415, 48.83819063275254], [2.343145480394122, 48.83815055118746], [2.343332448911091, 48.838111010896725], [2.343521192434274, 48.838070927844214], [2.343708160380625, 48.83803138696343], [2.34389690196419, 48.83799130330772], [2.344083869340015, 48.837951761836884], [2.344272610334918, 48.837911678484815], [2.344459577151428, 48.83787213552459], [2.344648317569185, 48.83783205157688], [2.344835283814951, 48.83779250802665], [2.345024023655456, 48.83775242348323], [2.345210989330675, 48.837712879342966], [2.345399729956187, 48.83767279421137], [2.3455866950607502, 48.83763324948101], [2.345775433746732, 48.837593163746334], [2.34596239826925, 48.83755361932525], [2.346151136389245, 48.837513532095585], [2.346338100341104, 48.83747398708451], [2.346526837883816, 48.83743389925916], [2.346713801265111, 48.83739435365802], [2.34684739144957, 48.83736609658799], [2.34703612819867, 48.83732600885456], [2.347044777897476, 48.83732625483188], [2.347098152100599, 48.83731496502677], [2.347286762805244, 48.83729285456082], [2.347467224917923, 48.837270180410655], [2.347655835292806, 48.83724807026116], [2.347836297101141, 48.83722539465396], [2.348024908519668, 48.83720328392909], [2.348205368638789, 48.8371806086561], [2.348385829963359, 48.83715793311775], [2.348574440915909, 48.83713582062573], [2.348754900562406, 48.837113144522306], [2.348943511196321, 48.83709103144749], [2.349000486381855, 48.8370909161456]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 66, "roussel_fabien": 30.0, "nb_emargement": 1462.0, "nb_procuration": 86.0, "nb_vote_blanc": 20.0, "jadot_yannick": 136.0, "le_pen_marine": 62.0, "nb_exprime": 1439.0, "nb_vote_nul": 2.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1758.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1461, "quartier_bv": "52", "geo_point_2d": [48.83682753939881, 2.3457155017607736], "melenchon_jean_luc": 447.0, "poutou_philippe": 15.0, "macron_emmanuel": 496.0}, "geometry": {"type": "Point", "coordinates": [2.3457155017607736, 48.83682753939881]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e2d698d2c219fe9e5cb3e5ea7c306806e12d31ff", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 137, "zemmour_eric": 205.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-51", "geo_shape": {"coordinates": [[[2.304824654034126, 48.883804149586815], [2.304795779685412, 48.883800401681796], [2.304617216776229, 48.88376300734615], [2.304439732469801, 48.88372583934442], [2.304261170071952, 48.883688444475226], [2.304083686285683, 48.88365127504391], [2.303905124387156, 48.88361388054046], [2.303727641109243, 48.88357671057882], [2.303550158084692, 48.88353954035284], [2.303371598315859, 48.883502145057804], [2.303194115799569, 48.88346497430155], [2.303015555190659, 48.88342757756581], [2.302838073170499, 48.88339040717846], [2.302659513072947, 48.88335300990918], [2.302482031573199, 48.88331583809233], [2.302303473338517, 48.883278441196715], [2.302125992346943, 48.883241268849524], [2.301947433272122, 48.88320387051321], [2.301939227664323, 48.883199135339716], [2.301854887668873, 48.88308118688667], [2.301768632617708, 48.88296055976438], [2.301684293395115, 48.88284261116563], [2.3015980404976872, 48.88272198390222], [2.301513702047838, 48.882604035157726], [2.3014274485772592, 48.88248340773734], [2.301343110900147, 48.882365458847076], [2.301256859583275, 48.882244831285576], [2.301172522678884, 48.88212688224959], [2.301086270776684, 48.88200625543034], [2.300996003153951, 48.88198622634388], [2.300993042449004, 48.88198868852557], [2.30103348770785, 48.88204521856392], [2.300967342782576, 48.88215355033558], [2.300913834700236, 48.88224457349898], [2.300908615403261, 48.88226575834154], [2.300927875985473, 48.882270665163354], [2.300999905442894, 48.8823708741636], [2.301085397711814, 48.8824898112143], [2.301157426411812, 48.882590020091826], [2.30124291938818, 48.88270895790563], [2.301314950058035, 48.88280916667638], [2.301400442402453, 48.88292810344679], [2.3014802659531792, 48.88303915317844], [2.301565760416165, 48.88315808981386], [2.301645584659886, 48.88326914031132], [2.301731079878112, 48.88338807680387], [2.301810904838956, 48.883499126268646], [2.301896399448767, 48.88361806261027], [2.301976226478243, 48.88372911194958], [2.302061721843205, 48.883848048148316], [2.302141548202143, 48.8839590982455], [2.302227045685736, 48.884078034309205], [2.302306872761815, 48.88418908337364], [2.302399223872645, 48.884317553486405], [2.3024919877671888, 48.8844465969917], [2.30258433977923, 48.88457506783086], [2.302677104591217, 48.88470411116248], [2.302769457528674, 48.884832580929476], [2.302862223258115, 48.8849616240875], [2.3029545771090563, 48.885090093681576], [2.303047343755863, 48.88521913666593], [2.303052046417568, 48.88522907198777], [2.303067223679581, 48.88523145902761], [2.303277995411062, 48.88528995161533], [2.303497858320387, 48.885350967178454], [2.303504989221613, 48.8853555430948], [2.303581782069177, 48.8854672480016], [2.30365958919867, 48.88558042825373], [2.303736382709503, 48.885692133038475], [2.30381419052305, 48.88580531226773], [2.303890984697056, 48.88591701693052], [2.303968793170619, 48.886030196935394], [2.304045588008011, 48.886141901476144], [2.304123397153621, 48.886255081357376], [2.304200192666322, 48.88636678487685], [2.304278003847522, 48.886479964642405], [2.304354800011509, 48.8865916689391], [2.304432610501241, 48.886704848573096], [2.304509407328536, 48.88681655274778], [2.304587218502248, 48.88692973135886], [2.304664015992858, 48.88704143541154], [2.304741827826741, 48.887154614798234], [2.30476360127625, 48.887160742461894], [2.304781822928655, 48.88714791858376], [2.304797413899934, 48.88701762950544], [2.304812817408977, 48.88688891405047], [2.304828408225159, 48.88675862493742], [2.304843811580974, 48.88662990944811], [2.304859403593696, 48.886499621207456], [2.304874805444754, 48.88637090477663], [2.304890397302376, 48.88624061650127], [2.304905800351741, 48.886111900943305], [2.304921390702642, 48.885981611726], [2.3049367935987872, 48.885852896133684], [2.304952383794702, 48.88572260688168], [2.304967786537628, 48.88559389125506], [2.304974915355172, 48.88558668132215], [2.305142082764251, 48.88552730550558], [2.305306101090614, 48.885469048838495], [2.305473269108059, 48.88540967256108], [2.305637285329801, 48.88535141542624], [2.305801301184562, 48.88529315806358], [2.305968468060745, 48.88523378198455], [2.305974680331063, 48.885232708218496], [2.306179025582422, 48.885230192692724], [2.306384120963898, 48.88522766767393], [2.3065884661756932, 48.88522515144941], [2.306793562868989, 48.88522262663647], [2.306997908041215, 48.88522010971311], [2.307203004706762, 48.88521758329952], [2.307222232187715, 48.885214751039825], [2.307226316033292, 48.88520504299553], [2.307194801869762, 48.88509860184002], [2.307149467503745, 48.88494548358015], [2.30711795365437, 48.88483904237932], [2.307072621103865, 48.88468592406207], [2.307041107568637, 48.88457948281589], [2.3070339921067182, 48.88457321914984], [2.306863111050037, 48.8845148930393], [2.306693586528225, 48.884457028697945], [2.306522706246054, 48.88439870119618], [2.306353182480633, 48.88434083636671], [2.30618230432459, 48.88428250838085], [2.306012781315763, 48.88422464306333], [2.305841902558582, 48.88416631457761], [2.305672380306251, 48.884108448772004], [2.305502858430661, 48.88405058272331], [2.305331980815784, 48.88399225350062], [2.3053300692954313, 48.883991718098414], [2.305279952242394, 48.883980576846], [2.305229449090667, 48.883969348794565], [2.305226878042867, 48.883968573038814], [2.305098207421208, 48.8839185212401], [2.304910861935697, 48.8838449645354], [2.304910701865569, 48.88384490155206], [2.304856450495538, 48.88382313297416], [2.304827661998816, 48.883811829374466], [2.304824654034126, 48.883804149586815]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 51, "roussel_fabien": 4.0, "nb_emargement": 1209.0, "nb_procuration": 73.0, "nb_vote_blanc": 5.0, "jadot_yannick": 53.0, "le_pen_marine": 39.0, "nb_exprime": 1201.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1470.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "66", "geo_point_2d": [48.88462986818319, 2.3042227901811145], "melenchon_jean_luc": 94.0, "poutou_philippe": 2.0, "macron_emmanuel": 633.0}, "geometry": {"type": "Point", "coordinates": [2.3042227901811145, 48.88462986818319]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7e22ad634d990f7ff563e22d6ddcebe8daef9b6e", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 201, "zemmour_eric": 178.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "16-27", "geo_shape": {"coordinates": [[[2.268915618631627, 48.85325364741423], [2.268945170159148, 48.85324747667591], [2.269084906228803, 48.85313537765602], [2.269221967575935, 48.8530237792628], [2.269361702462859, 48.852911678997806], [2.269498762628691, 48.85280008026509], [2.26963849767042, 48.85268798056191], [2.269775556655167, 48.852576381489655], [2.269812285635519, 48.85256409280639], [2.269813059173651, 48.85254730732609], [2.269880479988756, 48.852434490788916], [2.269944657479547, 48.85231930348043], [2.270012077702142, 48.85220648774526], [2.270076253258499, 48.85209130033426], [2.27014367427642, 48.85197848361085], [2.270207849261189, 48.85186329610565], [2.2702028514091213, 48.851852815021786], [2.270044666053886, 48.851780058406085], [2.269887350001436, 48.851708707187015], [2.269729165524168, 48.85163595014476], [2.269571851688883, 48.851564599409265], [2.269413668089473, 48.851491841940486], [2.269256353758612, 48.85142049077262], [2.269098171049776, 48.851347731978045], [2.2689408589485662, 48.85127638039443], [2.2687826771051762, 48.851203622072646], [2.268625364508291, 48.85113227005667], [2.268467183542857, 48.85105951130836], [2.268309873188337, 48.850988157977405], [2.26830412383063, 48.850982120462064], [2.268276805064236, 48.85086547584774], [2.268250030706244, 48.85075306335451], [2.268222710805793, 48.85063641959481], [2.268195936682181, 48.85052400706629], [2.2681686183981142, 48.85040736237928], [2.268141844508874, 48.85029494981554], [2.268115069372465, 48.85018253722611], [2.2680877514358873, 48.85006589338416], [2.268091317609502, 48.85005833984969], [2.268255874167997, 48.84994350548952], [2.268424815187319, 48.849825578707], [2.268423540141617, 48.84981243838309], [2.268327304440814, 48.849760503356364], [2.268265886677993, 48.849730562919746], [2.26825450626134, 48.84972871707172], [2.268095984750674, 48.84975030622446], [2.267937862552305, 48.849771981251756], [2.267779340766317, 48.84979357088344], [2.267621216942297, 48.84981524548307], [2.267462694906059, 48.849836833795095], [2.267304572181839, 48.849858507983775], [2.267269587350131, 48.84985811026394], [2.267255118378192, 48.84987646043472], [2.26724931347426, 48.850001251351316], [2.267243067372919, 48.850125531410576], [2.267237261062244, 48.85025032139099], [2.267231014902305, 48.85037460142179], [2.267225209885059, 48.850499392281364], [2.267218962303934, 48.8506236722754], [2.267213157242727, 48.85074846220712], [2.267206909602893, 48.850872742172704], [2.267196754496164, 48.85088114209452], [2.267031037657445, 48.8509098932739], [2.266871050635713, 48.850935099863484], [2.2667053334329452, 48.85096385148967], [2.266545347450711, 48.85098905765087], [2.266536144012435, 48.85099402867838], [2.266447805339627, 48.851120031251725], [2.2663653116433, 48.85123807244217], [2.266276972143606, 48.85136407486176], [2.266194479049344, 48.851482115017646], [2.266193262815269, 48.85148660977403], [2.266212952162537, 48.851648750017915], [2.266228903917844, 48.85180891929128], [2.266228923807177, 48.851809829569234], [2.266217751514322, 48.851867599125065], [2.266222951146851, 48.85186959792116], [2.266214603592304, 48.8520243649595], [2.266209113252506, 48.85215459238321], [2.266200765611205, 48.85230935938094], [2.2661952765821, 48.852439585879736], [2.2661977272277, 48.85244498629547], [2.266309622076115, 48.8525527677296], [2.266440728087908, 48.85267661253112], [2.266453124070928, 48.85268041818556], [2.266662990816844, 48.85266792369182], [2.2668743596618413, 48.85265579148374], [2.267084224844921, 48.85264329624256], [2.267295593491942, 48.85263116329012], [2.267505459850106, 48.852618666418905], [2.2677168282865, 48.852606533621355], [2.2679266930818, 48.85259403600274], [2.268138061332833, 48.85258190156151], [2.268151405528171, 48.85258680466597], [2.268213118505851, 48.85266738189074], [2.268331110558964, 48.85282286758988], [2.268392825456854, 48.852903444713206], [2.268401996234107, 48.852908188264394], [2.268540905665278, 48.85292897459479], [2.268677511086723, 48.852948271726234], [2.268686901271922, 48.85295311552614], [2.268792180947835, 48.85309522594823], [2.268905703565616, 48.8532506567105], [2.268915618631627, 48.85325364741423]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 27, "roussel_fabien": 5.0, "nb_emargement": 1138.0, "nb_procuration": 91.0, "nb_vote_blanc": 8.0, "jadot_yannick": 42.0, "le_pen_marine": 64.0, "nb_exprime": 1128.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1365.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1138, "quartier_bv": "61", "geo_point_2d": [48.8516954422737, 2.2679940123422013], "melenchon_jean_luc": 61.0, "poutou_philippe": 1.0, "macron_emmanuel": 533.0}, "geometry": {"type": "Point", "coordinates": [2.2679940123422013, 48.8516954422737]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "28c724fd6ce41847e037637f31a8f66339821abc", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 110, "zemmour_eric": 90.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-46", "geo_shape": {"coordinates": [[[2.303133881011982, 48.83208742668051], [2.303132970510524, 48.832098265148126], [2.303228943754893, 48.83220726561749], [2.303325041144479, 48.83231658869647], [2.303421015192295, 48.83242558899045], [2.303517113387143, 48.83253491189376], [2.303613088238619, 48.83264391201243], [2.303709187238636, 48.83275323474009], [2.3038051629056913, 48.832862233784056], [2.3039012626990782, 48.8329715572354], [2.303997239169707, 48.833080556103965], [2.30409333978029, 48.83318987848039], [2.304189317042496, 48.83329887807289], [2.304285417096228, 48.83340820026573], [2.304381396524277, 48.833517199690746], [2.304477497383209, 48.83362652170792], [2.304573477614868, 48.83373552095755], [2.30466957927921, 48.83384484279913], [2.304765558964219, 48.8339538409661], [2.304861662784048, 48.83406316353926], [2.3049576432726733, 48.83417216153085], [2.305053747909931, 48.83428148302903], [2.305149729190093, 48.83439048174455], [2.305245834632693, 48.834499803067025], [2.305243816613529, 48.834506985434174], [2.305255413433361, 48.83451850541735], [2.305403934042194, 48.83455959608351], [2.305528144442855, 48.8345934592515], [2.305538853282921, 48.83459340900708], [2.305707905558037, 48.83454476569642], [2.305872294780113, 48.83449658704264], [2.306041347792252, 48.8344479432644], [2.306205735050503, 48.83439976324102], [2.3063701219929102, 48.834351583888896], [2.30653917407024, 48.834302939400786], [2.306703560399127, 48.83425475958626], [2.3068726118513982, 48.83420611462264], [2.306873336509092, 48.83420591826175], [2.307007333754591, 48.834172586856184], [2.307208313617287, 48.83412079692202], [2.307342310429789, 48.834087465138694], [2.307404622378229, 48.834071407910685], [2.307428109519348, 48.834061750632564], [2.30741653709882, 48.834044777196716], [2.307358804373402, 48.83390230135727], [2.307302387352292, 48.83376428139336], [2.307245970617876, 48.8336262622851], [2.307188238822148, 48.83348378631007], [2.307187905880445, 48.83348269883688], [2.307164603020529, 48.833368628430065], [2.30714143688616, 48.833258525938746], [2.307118270849651, 48.83314842343218], [2.30709496829154, 48.833034352977705], [2.307093019873916, 48.83303078826117], [2.306980596749304, 48.832912042726534], [2.30686808162387, 48.83279226315591], [2.306755658163819, 48.832673517376655], [2.306643144058094, 48.83255373846824], [2.306530722987052, 48.83243499246018], [2.306418209924943, 48.83231521241533], [2.306305788506481, 48.83219646706196], [2.306193277838232, 48.83207668678793], [2.306192915456561, 48.8320762781681], [2.3061077248680872, 48.83197306808119], [2.3060280047998702, 48.83187728433005], [2.3059482850366813, 48.83178149961829], [2.305863095414256, 48.83167828933], [2.3058453824482052, 48.83167444062711], [2.305684834646521, 48.831723814400185], [2.305531713678681, 48.831770533853714], [2.305371166646082, 48.83181990720941], [2.305218045114886, 48.8318666262574], [2.305213950757538, 48.831867392124536], [2.305039345692848, 48.83188119940095], [2.304831812492348, 48.83189777038627], [2.304657208575015, 48.83191157801172], [2.304449675132108, 48.831928148333496], [2.304275069661505, 48.831941954493466], [2.304067535976204, 48.831958524151695], [2.30393919361524, 48.83196867233114], [2.303929884897299, 48.831964807501066], [2.303907762856833, 48.83196999136382], [2.303861499540977, 48.83197364877392], [2.303806181299151, 48.83197861331468], [2.303804890458713, 48.83197877128591], [2.303641469023716, 48.83200430922426], [2.303481191396946, 48.83202925097445], [2.303317768270897, 48.83205478936073], [2.303157491696263, 48.83207973068396], [2.303133881011982, 48.83208742668051]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 46, "roussel_fabien": 15.0, "nb_emargement": 1146.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 108.0, "le_pen_marine": 67.0, "nb_exprime": 1128.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1474.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "57", "geo_point_2d": [48.83308302982724, 2.305465675568877], "melenchon_jean_luc": 197.0, "poutou_philippe": 9.0, "macron_emmanuel": 483.0}, "geometry": {"type": "Point", "coordinates": [2.305465675568877, 48.83308302982724]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fa59bd22e74eda6b9a0429b86d685da397ffb7d3", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 75, "zemmour_eric": 93.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "13-36", "geo_shape": {"coordinates": [[[2.355495726112641, 48.83138338298704], [2.355539635587149, 48.83140139476936], [2.355597012349995, 48.83142493018507], [2.355629739024484, 48.83140833413676], [2.355750070592703, 48.83129705563563], [2.355877653130352, 48.83118576569144], [2.355997983655738, 48.831074486918844], [2.356125563768358, 48.83096319578145], [2.356147610322429, 48.83095505553995], [2.356158690663821, 48.83093919541444], [2.356250179639403, 48.8308270371098], [2.356344378217454, 48.830708441216295], [2.356435866388679, 48.83059628274654], [2.356530064127351, 48.830477686682364], [2.356621551505226, 48.83036552714816], [2.356715749755604, 48.83024693181994], [2.356807236328931, 48.83013477212067], [2.356901432388973, 48.830016175715116], [2.356992918146774, 48.82990401674997], [2.357087113367467, 48.829785420173835], [2.357178598320848, 48.82967326104358], [2.357272794064257, 48.82955466430409], [2.357364278213326, 48.829442505008714], [2.357458471755248, 48.82932390809123], [2.357549955099916, 48.82921174863077], [2.35764414780252, 48.829093151542665], [2.357735630342797, 48.82898099191707], [2.357829823568231, 48.82886239466565], [2.357921305304021, 48.82875023487493], [2.35797427588998, 48.82868353753924], [2.357984679924485, 48.82867218124552], [2.357987598504449, 48.82866316091125], [2.358028818924289, 48.82861125991268], [2.358096341117851, 48.82853364758781], [2.358190531352456, 48.8284150499977], [2.358258053051153, 48.82833743756797], [2.35825845697312, 48.828336936985664], [2.358352646483441, 48.82821833924706], [2.358442654649445, 48.82809788966751], [2.358536844670982, 48.82797929176586], [2.35862685200978, 48.82785884112273], [2.358721039818413, 48.827740243043436], [2.35881104630779, 48.827619793135305], [2.358905233265544, 48.82750119488568], [2.358995238927836, 48.82738074391393], [2.359089425034622, 48.827262145494], [2.359179431209715, 48.827141695264594], [2.3592736164656403, 48.82702309667431], [2.359363620451465, 48.826902645374], [2.359385569279532, 48.826875006456106], [2.359388070714937, 48.82687374454262], [2.359403574208034, 48.82685472037908], [2.359475809725629, 48.82676376052385], [2.359569397694079, 48.82664355308521], [2.359663581152059, 48.826524955034465], [2.359757168258904, 48.8264047474233], [2.359851350869393, 48.82628614830014], [2.359925493875003, 48.82619091462336], [2.3599355063921372, 48.8261732064569], [2.359867360071008, 48.82615357709198], [2.359658673197849, 48.82615488636799], [2.359451682642463, 48.82615604607583], [2.359242995748987, 48.82615735462649], [2.35903600517456, 48.82615851361485], [2.358827318260678, 48.82615982144015], [2.35862032766722, 48.826160979709066], [2.358411640733145, 48.826162286809], [2.3582046487586013, 48.82616344435114], [2.357995963166312, 48.82616475073304], [2.357788971172762, 48.826165907555676], [2.3575802855601, 48.826167213212216], [2.3573732935476572, 48.82616836931541], [2.35732067418349, 48.82616484070128], [2.357315882793068, 48.82617948825832], [2.35728219525646, 48.826281739747955], [2.357241739066492, 48.82641316294359], [2.357198817693249, 48.82654344054771], [2.357158362452112, 48.82667486369183], [2.3571154392929943, 48.82680514122834], [2.357074983638609, 48.82693656431358], [2.357032061428866, 48.827066840897785], [2.356991603988042, 48.827198264816175], [2.356948681354495, 48.82732854134006], [2.356918934318606, 48.827425172943556], [2.356912703157349, 48.82745271874722], [2.356914217809396, 48.82745482333331], [2.356903506993046, 48.82748961468869], [2.356863381265411, 48.827621259748675], [2.356822922980227, 48.82775268264573], [2.356782798197553, 48.82788432855446], [2.356742339505082, 48.828015751393444], [2.356702212965535, 48.82814739633766], [2.356661753865766, 48.82827881911853], [2.35662162827118, 48.828410464911464], [2.356581168764111, 48.82854188763424], [2.356541041412628, 48.828673532462616], [2.35650058149815, 48.82880495512731], [2.356460455091727, 48.82893660080441], [2.356419994770037, 48.82906802341102], [2.356379866606493, 48.82919966812353], [2.356339405877482, 48.82933109067204], [2.3562992786590993, 48.829462736233275], [2.356258817522662, 48.82959415872369], [2.356218688547235, 48.82972580332038], [2.356178227003566, 48.829857225752676], [2.356177955080803, 48.82985795547856], [2.356122898173897, 48.82998244339209], [2.356065253934061, 48.83010451961109], [2.356007609424156, 48.83022659578907], [2.355952553083332, 48.83035108359054], [2.355894908036983, 48.830473159687344], [2.355839849804455, 48.83059764740221], [2.355825191927975, 48.83062157448593], [2.355825594641131, 48.83062337989539], [2.355770536084433, 48.83074786756166], [2.355720972252234, 48.83086533011942], [2.355665913190167, 48.8309898177107], [2.355616347530101, 48.83110728019236], [2.355561287962654, 48.831231767708566], [2.3555117231989042, 48.83134923012888], [2.355495726112641, 48.83138338298704]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 36, "roussel_fabien": 23.0, "nb_emargement": 1172.0, "nb_procuration": 55.0, "nb_vote_blanc": 11.0, "jadot_yannick": 114.0, "le_pen_marine": 56.0, "nb_exprime": 1157.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1443.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1172, "quartier_bv": "51", "geo_point_2d": [48.82802323791411, 2.357608942888355], "melenchon_jean_luc": 334.0, "poutou_philippe": 7.0, "macron_emmanuel": 395.0}, "geometry": {"type": "Point", "coordinates": [2.357608942888355, 48.82802323791411]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ec017b3359478381e372fe26d037579e182a3a8b", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 49, "zemmour_eric": 77.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "14-48", "geo_shape": {"coordinates": [[[2.31400478574274, 48.830585730713274], [2.314004210663224, 48.830595580976144], [2.314123665389991, 48.83068961139516], [2.314238406819843, 48.830781075721994], [2.314357863768088, 48.830875105000054], [2.314472606017111, 48.830966569087074], [2.314592063812832, 48.83106059811563], [2.314706806881032, 48.83115206196288], [2.314826265512414, 48.83124609164126], [2.314941009399801, 48.83133755524863], [2.315060468890495, 48.831431583778226], [2.315175213597072, 48.83152304714575], [2.315226109111446, 48.83156260976371], [2.315243024783565, 48.83155460774158], [2.315264438039824, 48.83154447836292], [2.315257335681986, 48.8315063725558], [2.315351028625744, 48.83139087067083], [2.31543764260426, 48.831279116352995], [2.315531333377901, 48.83116361429555], [2.315617946592419, 48.83105185982454], [2.315711636558155, 48.83093635760245], [2.315798249008483, 48.830824602978154], [2.315891939528501, 48.83070910059915], [2.315978551226547, 48.83059734492235], [2.3160651625415563, 48.83048559007097], [2.316158850498769, 48.830370087440166], [2.316165067123547, 48.83036619361269], [2.316358418534105, 48.830306227779396], [2.316553136637234, 48.83024557692347], [2.316746487154056, 48.83018561045634], [2.316941204343402, 48.83012495986139], [2.317134553966589, 48.83006499276047], [2.317329270265721, 48.83000434062786], [2.31752261898329, 48.829944373792415], [2.317717334380421, 48.82988372102155], [2.317910682216121, 48.82982375265297], [2.31810539669948, 48.82976310014307], [2.318110781492194, 48.82976008915502], [2.318144267003884, 48.82972818673372], [2.318196178702501, 48.82968602583769], [2.318200412477737, 48.82968373767769], [2.318214639764114, 48.829681332008995], [2.318222822236538, 48.82967178410996], [2.318382253754029, 48.8296164647668], [2.318539258868582, 48.829561765444886], [2.31869868972559, 48.82950644477511], [2.31885569417679, 48.82945174503245], [2.319015124349807, 48.829396424834776], [2.319172128137654, 48.829341724671316], [2.319176389530785, 48.82933940245744], [2.319273833619195, 48.82926354702373], [2.3193659672066422, 48.829187817776], [2.319369531926116, 48.829185851340746], [2.319523087185893, 48.82912716573532], [2.319677848991081, 48.829068273642896], [2.319831403557473, 48.82900958763548], [2.319986166039099, 48.828950694246366], [2.320139719912103, 48.82889200783693], [2.320294481684766, 48.828833114941965], [2.320301300274527, 48.828825222991654], [2.320300416556596, 48.8287727465379], [2.320300434925571, 48.82871878404201], [2.3203071795959103, 48.82871102297954], [2.320467136665085, 48.828649264288494], [2.320626383136076, 48.82858796272587], [2.3207863380756, 48.82852620449271], [2.320945583795364, 48.82846490249833], [2.321105539353026, 48.82840314293989], [2.321264784321559, 48.82834184051378], [2.321424737749791, 48.82828008141323], [2.321583981966997, 48.82821877855539], [2.321636419017082, 48.82819066378495], [2.321628386885376, 48.82818055869273], [2.32158377282338, 48.82813833709002], [2.321485228539945, 48.8280438740763], [2.321369983537302, 48.82793481194792], [2.321271440025934, 48.827840348740885], [2.32115619728242, 48.827731286394446], [2.321057653169396, 48.82763682388572], [2.3210174528308922, 48.82759737200354], [2.321003804424643, 48.82759052669807], [2.320951510059606, 48.82761837400038], [2.320791401269175, 48.827688615441446], [2.320630385805272, 48.82775930480191], [2.320470277523213, 48.82782954491268], [2.320309261176921, 48.82790023473123], [2.320149150667405, 48.827970474395535], [2.319988133450436, 48.828041163772845], [2.319828022075363, 48.82811140299842], [2.319667003987719, 48.8281820919345], [2.3195068931093052, 48.82825233072907], [2.319345874162825, 48.82832301832462], [2.319185761045097, 48.828393257572], [2.31902474122784, 48.82846394472631], [2.318864628618519, 48.82853418264338], [2.318703607918938, 48.82860487025575], [2.318543493082033, 48.82867510772632], [2.318382471511668, 48.828745794897415], [2.31822235717143, 48.828816031936995], [2.318061333380111, 48.828886717759794], [2.318061105905166, 48.82888682079043], [2.317870550677875, 48.828973610383905], [2.317691922196155, 48.829055522042616], [2.317513293153218, 48.82913743342854], [2.317322736097824, 48.82922422212978], [2.317307093408082, 48.82922414183081], [2.317258240278694, 48.82920114020097], [2.31722996217787, 48.829182089158024], [2.317218906145881, 48.82917451624391], [2.317188478340823, 48.82918251785885], [2.317028642195708, 48.829252297095415], [2.31687108878542, 48.829322070268496], [2.316711251787628, 48.8293918490722], [2.316553696168764, 48.8294616218107], [2.316393859680443, 48.8295314001893], [2.316236303214943, 48.82960117250099], [2.316078746327811, 48.82967094460077], [2.31591890856191, 48.82974072233165], [2.31576135082824, 48.82981049400463], [2.315601510847605, 48.82988027129481], [2.315443952267394, 48.82995004254097], [2.315284112796134, 48.830019819406104], [2.315126553369383, 48.830089590225434], [2.314966711683376, 48.83015936664989], [2.314809152772148, 48.830229137050196], [2.314649310233455, 48.830298913041744], [2.314491749113615, 48.830368683007435], [2.314331905722233, 48.83043845856609], [2.31417434511792, 48.83050822811278], [2.314014500873847, 48.830578003238536], [2.31400478574274, 48.830585730713274]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 48, "roussel_fabien": 15.0, "nb_emargement": 1149.0, "nb_procuration": 43.0, "nb_vote_blanc": 12.0, "jadot_yannick": 87.0, "le_pen_marine": 90.0, "nb_exprime": 1132.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 8, "nb_inscrit": 1548.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "56", "geo_point_2d": [48.82948265375696, 2.3176920579565805], "melenchon_jean_luc": 398.0, "poutou_philippe": 9.0, "macron_emmanuel": 348.0}, "geometry": {"type": "Point", "coordinates": [2.3176920579565805, 48.82948265375696]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2206cf0e04618bb00f80e1c48ddd0e1aedbefaa3", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 62, "zemmour_eric": 63.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "3-1", "geo_shape": {"coordinates": [[[2.362764268569242, 48.86388972575837], [2.36278069908804, 48.86387851388036], [2.362827051592377, 48.86385469601547], [2.362935637066064, 48.8637989013752], [2.363098398928118, 48.863715268863956], [2.363206983820592, 48.86365947397047], [2.363209092775683, 48.86364663176129], [2.363104199978856, 48.86356332671192], [2.363001362209856, 48.86348165401893], [2.362896470077362, 48.86339834877505], [2.362793632959777, 48.8633166758914], [2.362688741491609, 48.8632333704531], [2.362585903662195, 48.863151697371514], [2.362582827743088, 48.863146857802185], [2.362577175862297, 48.86309041269199], [2.36256739111036, 48.86302672382564], [2.362570523315342, 48.863011811381526], [2.36256105699479, 48.86300609778576], [2.362538361678571, 48.86285836109869], [2.362517730673796, 48.86272406530553], [2.362514989454202, 48.8627195018156], [2.362383646929544, 48.862606399242765], [2.362250767266386, 48.86249197257747], [2.362119425888949, 48.862378869691454], [2.36198654739745, 48.86226444181004], [2.361855208530232, 48.8621513386181], [2.361722331188352, 48.86203691131909], [2.361590992105319, 48.861923807806704], [2.36145811593508, 48.86180937929158], [2.361446797454276, 48.86176830871719], [2.361426896861782, 48.86176851820127], [2.361343221654405, 48.8617796966355], [2.361250840998093, 48.861785721160565], [2.36124470213129, 48.861787691238696], [2.361232995800469, 48.86179427672276], [2.36109112846268, 48.861874035174104], [2.3609512808437962, 48.861953897770896], [2.360809412629043, 48.8620336567761], [2.360669562786839, 48.86211351902491], [2.36052769371718, 48.86219327678537], [2.360387844366629, 48.86227313960008], [2.360245974430926, 48.86235289701507], [2.360106124231096, 48.86243275858979], [2.359964253418501, 48.86251251655866], [2.359824402358348, 48.86259237779263], [2.359824027707402, 48.86259258353737], [2.359784038339644, 48.86260360424364], [2.359780544358232, 48.862610956588796], [2.359604077776785, 48.862704651468135], [2.359441571842803, 48.862791876269576], [2.359265104027765, 48.862885571533134], [2.35910259833602, 48.86297279496809], [2.358940090725934, 48.863060019067525], [2.358763621111917, 48.86315371266964], [2.358762801016591, 48.86315411567893], [2.358691976532753, 48.86318626369628], [2.358565382161833, 48.86324175386279], [2.35841734438983, 48.86331197443028], [2.358290749432001, 48.86336746340069], [2.358283739798079, 48.863374367860054], [2.358292603811606, 48.863399842572655], [2.358374600531167, 48.8634979879504], [2.358478208619735, 48.863608509877594], [2.35847875603937, 48.863609108178274], [2.358582190974935, 48.863712915464845], [2.358685801294387, 48.86382343719813], [2.358789237067939, 48.86392724428568], [2.358892846889832, 48.86403776581105], [2.358893230894924, 48.86403813030396], [2.359024622503817, 48.86415678490082], [2.3591286942806162, 48.86424778300375], [2.359232767795111, 48.86433878011665], [2.359364160935595, 48.8644574343086], [2.359468233906077, 48.86454843209152], [2.359547683684313, 48.864621339010746], [2.359548464930417, 48.86462199071912], [2.359586796115155, 48.86465106837376], [2.359657488232442, 48.86468525476276], [2.359657706245982, 48.864685705601175], [2.359675797116321, 48.86470029442088], [2.359678922727964, 48.864702407514216], [2.359795422541862, 48.864816416431], [2.359922877929078, 48.86493712726437], [2.360039378801752, 48.86505113591952], [2.360166833954465, 48.865171847359505], [2.360171727464953, 48.865183185462676], [2.360252809918133, 48.865177360374595], [2.360409138389205, 48.865097041848195], [2.360571908373806, 48.865013411971695], [2.360728235871969, 48.86493309211735], [2.36089100618422, 48.86484946270107], [2.361047331335358, 48.864769142410765], [2.361210100623016, 48.86468551254816], [2.361366424790217, 48.86460519182916], [2.361529193053489, 48.86452156152019], [2.361685517599827, 48.86444124037981], [2.361848283475446, 48.86435760961717], [2.36200460703785, 48.864277288048115], [2.362167371889098, 48.864193656839205], [2.362323694467574, 48.86411333484149], [2.362486458294351, 48.86402970318625], [2.362642779888801, 48.86394938075985], [2.36275919017811, 48.86388956561529], [2.362764268569242, 48.86388972575837]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 1, "roussel_fabien": 15.0, "nb_emargement": 1143.0, "nb_procuration": 73.0, "nb_vote_blanc": 10.0, "jadot_yannick": 115.0, "le_pen_marine": 41.0, "nb_exprime": 1132.0, "nb_vote_nul": 1.0, "arr_bv": "03", "arthaud_nathalie": 1, "nb_inscrit": 1428.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1143, "quartier_bv": "10", "geo_point_2d": [48.86348076148894, 2.360768406133836], "melenchon_jean_luc": 273.0, "poutou_philippe": 4.0, "macron_emmanuel": 517.0}, "geometry": {"type": "Point", "coordinates": [2.360768406133836, 48.86348076148894]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b210a39ba58138e6d114be728d0eff9ab1246c7d", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 65, "zemmour_eric": 63.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-1", "geo_shape": {"coordinates": [[[2.32946307121139, 48.83086493055073], [2.329435457585104, 48.83087800192676], [2.329256121699719, 48.83092582152301], [2.329075668695033, 48.83097393767245], [2.328896332149594, 48.83102175672514], [2.328715879842944, 48.83106987233526], [2.328536542637456, 48.83111769084436], [2.328356089678242, 48.83116580500824], [2.328176751801123, 48.831213623873076], [2.327996296815575, 48.83126173748231], [2.327816958278407, 48.83130955580358], [2.3276365039909193, 48.8313576688735], [2.327457164793707, 48.83140548665114], [2.327276709842089, 48.83145359917415], [2.327097369984836, 48.83150141640822], [2.326916913006887, 48.83154952837658], [2.326737572489596, 48.83159734506705], [2.326557116209726, 48.83164545649611], [2.326377775032403, 48.83169327264299], [2.326197318088415, 48.83174138352508], [2.326017976251063, 48.83178919912837], [2.325837517280747, 48.831837309455786], [2.325658176145582, 48.831885124523176], [2.325477716511152, 48.83193323430359], [2.325298373353752, 48.83198104881967], [2.325117914417427, 48.83202915806081], [2.325110192422142, 48.8320344594647], [2.325045979743365, 48.832152587772775], [2.324962877594591, 48.83228593474775], [2.324921778167149, 48.832302046189504], [2.324926543768533, 48.83231854061416], [2.32498682949052, 48.83240703024503], [2.325073384413976, 48.83252521698395], [2.325157839183622, 48.832649181060276], [2.325244393534614, 48.83276736764222], [2.325244595585081, 48.832767650285824], [2.325332257470757, 48.832885237759726], [2.325418812609028, 48.83300342419052], [2.325506475284167, 48.833121011511935], [2.325593031208903, 48.83323919779177], [2.325680694673515, 48.83335678496076], [2.325767251384723, 48.83347497108962], [2.32585491563882, 48.83359255810616], [2.32594147313651, 48.83371074408406], [2.3260291381801, 48.833828330948144], [2.3261156978149238, 48.83394651768206], [2.326203363648021, 48.83406410439365], [2.326265515088514, 48.83414896577003], [2.326273151041003, 48.83416277456605], [2.326286068881383, 48.83416877868563], [2.326310475171826, 48.83420210297278], [2.326402664374089, 48.834328479360465], [2.32648922433574, 48.834446664864245], [2.326581415766154, 48.834573041094245], [2.326667976539181, 48.834691226442864], [2.3267545377046153, 48.83480941171634], [2.3268467290576043, 48.83493578769321], [2.326876641892137, 48.83495862918078], [2.3269076301180363, 48.83495284343635], [2.326965936849255, 48.83493131322422], [2.327140679709503, 48.8348668230477], [2.327314491792638, 48.83480263766297], [2.327489233778711, 48.83473814786912], [2.327663046365901, 48.834673961978154], [2.327837787501006, 48.83460947076839], [2.3280115978560803, 48.83454528525522], [2.328186338128618, 48.834480793528826], [2.328360148999331, 48.83441660661013], [2.328534888397709, 48.83435211526644], [2.32870869704791, 48.83428792782622], [2.328883435595304, 48.83422343506662], [2.329023134246089, 48.8341718448338], [2.329046366380772, 48.83416115392197], [2.329014060534956, 48.83412626594835], [2.328910135365356, 48.83402847971608], [2.328806665496141, 48.833932712329116], [2.328703196007206, 48.83383694484441], [2.328599272009029, 48.83373915741745], [2.328597209772964, 48.83373627504631], [2.328540900929078, 48.83359831277381], [2.328487468976416, 48.833464207826296], [2.328484294895579, 48.833460389259386], [2.328418922584313, 48.833413722538914], [2.328356544394118, 48.83336782626747], [2.3283545662048, 48.83336593007489], [2.3282769102228382, 48.83326353394251], [2.328192119932142, 48.83315459431475], [2.328114464584092, 48.833052198057544], [2.328029674976619, 48.83294325829407], [2.328031552315338, 48.832926661027834], [2.328007491571086, 48.83291795842323], [2.327920380214648, 48.83281204000546], [2.327838150773735, 48.83271221791549], [2.32775104010517, 48.83260629935493], [2.327668811301562, 48.832506478029494], [2.327586582824365, 48.83240665573935], [2.3274994745397652, 48.83230073697431], [2.327417246699753, 48.832200915448695], [2.327330137752385, 48.832094995633945], [2.327336866495749, 48.83208240357827], [2.327519461484616, 48.832032141818125], [2.3277041497919813, 48.83198220992385], [2.32788674408738, 48.83193194669924], [2.328071431687977, 48.83188201423337], [2.328254025266708, 48.83183175134282], [2.328438712172123, 48.83178181740606], [2.328621305045778, 48.83173155395031], [2.328805991232731, 48.831681620341264], [2.328988583401411, 48.831631356320315], [2.32917326889316, 48.831581421240344], [2.329355858994552, 48.8315311566466], [2.32954054513015, 48.83148122190197], [2.329723134538025, 48.831430955843715], [2.329907818604631, 48.83138102051989], [2.329914397791757, 48.831368137878954], [2.329806407239831, 48.8312469411723], [2.329705109754706, 48.831129896498695], [2.329597120194425, 48.83100869867798], [2.329495825004206, 48.83089165380986], [2.3294752682405813, 48.830868582938514], [2.32946307121139, 48.83086493055073]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 1, "roussel_fabien": 24.0, "nb_emargement": 1108.0, "nb_procuration": 69.0, "nb_vote_blanc": 18.0, "jadot_yannick": 104.0, "le_pen_marine": 56.0, "nb_exprime": 1090.0, "nb_vote_nul": 0.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1332.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1108, "quartier_bv": "55", "geo_point_2d": [48.83290372972864, 2.3271798162078254], "melenchon_jean_luc": 314.0, "poutou_philippe": 7.0, "macron_emmanuel": 392.0}, "geometry": {"type": "Point", "coordinates": [2.3271798162078254, 48.83290372972864]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e4e463781973bc7803be0ed2461d7ba904e83856", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 142, "zemmour_eric": 217.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-61", "geo_shape": {"coordinates": [[[2.291604429701444, 48.86910007338389], [2.291605938546789, 48.86910400436604], [2.291481204877838, 48.86920424293722], [2.291360403348827, 48.86930060418551], [2.291235668736633, 48.869400842482975], [2.2911148662851533, 48.86949720436561], [2.290990130729806, 48.86959744238938], [2.290869327380426, 48.86969380310773], [2.29074459088182, 48.86979404085781], [2.290623786610047, 48.86989040221052], [2.290622985752258, 48.8699011581438], [2.290739128487753, 48.87001488886037], [2.290855192595536, 48.87012812344391], [2.290971334968718, 48.87024185480297], [2.291087401450199, 48.87035508914619], [2.291203544848562, 48.87046881935732], [2.291319612340547, 48.870582053452075], [2.29143575673973, 48.870695784313796], [2.291551823879107, 48.87080901815208], [2.291667970666814, 48.87092274787392], [2.291784038816608, 48.87103598146377], [2.29178407917485, 48.871036021273746], [2.291789265192737, 48.87104895936263], [2.291802739425198, 48.871052828926686], [2.291915459764537, 48.87116406220637], [2.292023152431821, 48.871269894739314], [2.292135872348428, 48.87138112778151], [2.292243567275457, 48.87148696010339], [2.292351262640006, 48.87159279231825], [2.292463983956125, 48.87170402501896], [2.2924647521411172, 48.871704882138516], [2.292550431017398, 48.87181378747196], [2.292635186177666, 48.87192156848781], [2.292720865754496, 48.872030474577116], [2.29280562162011, 48.872138255451176], [2.292891303272976, 48.872247161405184], [2.292976059843844, 48.87235494213737], [2.293060816753162, 48.87246272369835], [2.293146498122257, 48.87257162853038], [2.293231257100218, 48.87267940995754], [2.293316939182106, 48.87278831464619], [2.293321834005834, 48.872791806017524], [2.293502799442403, 48.87286613209329], [2.293682236344912, 48.87293940473009], [2.293863204183925, 48.87301372935982], [2.294042640738699, 48.87308700143855], [2.294223609604779, 48.873161325513486], [2.294403048538185, 48.8732345970502], [2.294582487964249, 48.873307869212304], [2.294763457004822, 48.87338219244819], [2.294942897458418, 48.87345546316101], [2.295123868889353, 48.873529785850124], [2.295216810770912, 48.87355738714551], [2.295228777812901, 48.873543133769324], [2.295288752751952, 48.873475236629766], [2.2953885461517682, 48.87335998960849], [2.295486650573209, 48.87324892529186], [2.295586441726126, 48.87313367897324], [2.295684546662738, 48.87302261447969], [2.295784336956382, 48.872907367073196], [2.295882441044782, 48.87279630239469], [2.295982230467, 48.87268105479957], [2.296080333707093, 48.872569989936125], [2.296180122245745, 48.872454743051705], [2.296278224637746, 48.872343678003304], [2.2963780123171462, 48.87222843003103], [2.2964761138608623, 48.872117364797674], [2.296575900668867, 48.87200211663683], [2.296674001364508, 48.87189105121853], [2.296773787288987, 48.87177580376839], [2.296871887148503, 48.87166473726585], [2.29697167220161, 48.871549489627135], [2.297069771200933, 48.871438423838974], [2.297169555394817, 48.87132317511238], [2.297267653545891, 48.87121210913931], [2.297367436868419, 48.871096860224156], [2.29746553417146, 48.87098579406615], [2.297466471777958, 48.87098450631138], [2.297566114341426, 48.87085304209653], [2.29763662693444, 48.870732572225286], [2.297707137838078, 48.87061210229139], [2.297806779093809, 48.87048063693261], [2.297877290626122, 48.87036016687899], [2.29794038352152, 48.870247227546], [2.298003477518657, 48.870134287276926], [2.2980739867639253, 48.870013817061704], [2.298137080188676, 48.869900876698345], [2.298207590172323, 48.86978040638698], [2.298270681661495, 48.86966746592136], [2.298327160350966, 48.86957096715994], [2.298339810747454, 48.86955169818825], [2.298249066616893, 48.86952550785555], [2.29812291866366, 48.8694355485723], [2.298003805537358, 48.86935085650596], [2.297884694173579, 48.869266163423354], [2.297758547477647, 48.86917620373497], [2.297639435536673, 48.869091511286165], [2.297513291050515, 48.869001551333106], [2.297512824091898, 48.869001200545355], [2.2973776485625, 48.86889404948699], [2.297245764642495, 48.8687896156287], [2.297110590223614, 48.86868246334893], [2.296978707362451, 48.868578030075646], [2.296843534041946, 48.86847087747378], [2.296711652251949, 48.86836644388628], [2.296579769627581, 48.86826201013557], [2.296444599310767, 48.86815485706058], [2.296312717769601, 48.86805042209638], [2.296177547175935, 48.86794326959054], [2.296164752959124, 48.867940159955964], [2.295946416717425, 48.867964996465915], [2.2957263602001943, 48.8679903117008], [2.295508023539385, 48.86801514740996], [2.295287965221942, 48.868040462728956], [2.2952733005295, 48.868035448859686], [2.295202221161751, 48.86793631164827], [2.295130034050493, 48.86783705184459], [2.295058953850783, 48.86773791542157], [2.294986767287334, 48.867638655513645], [2.29491568899412, 48.86753951899579], [2.2948435029908483, 48.86744025808442], [2.29482577872978, 48.86743590064137], [2.2946468398343622, 48.86748720807283], [2.294469189353291, 48.86753847696465], [2.294290249754316, 48.867589783858236], [2.294112597209347, 48.86764105220798], [2.293933658269963, 48.867692358571745], [2.29375600503643, 48.867743625488195], [2.293577064030354, 48.86779493130602], [2.29339941008388, 48.86784619858773], [2.293220469737406, 48.86789750387571], [2.293042815090183, 48.86794877062338], [2.292863874040167, 48.86800007537351], [2.2926862186921992, 48.868051341587154], [2.292673563706344, 48.86805074158145], [2.292484121321234, 48.86797314045039], [2.292304547102244, 48.86790021820896], [2.292124972010742, 48.86782729658456], [2.291935531267668, 48.867749693670255], [2.291929479091182, 48.867739923322986], [2.291960931128955, 48.86765480532593], [2.291992166358921, 48.86756767778769], [2.292023618202493, 48.86748255886158], [2.2920548545873682, 48.86739543130147], [2.292046229389301, 48.86738490557392], [2.291887550135233, 48.867347010854374], [2.2917352339570582, 48.867310668978405], [2.291576555143121, 48.86727277474326], [2.291424239398964, 48.8672364324691], [2.291271923867331, 48.867200089999876], [2.29111324572725, 48.86716219514677], [2.291105917895899, 48.86716183427485], [2.29091742895714, 48.86718684919496], [2.290734544974229, 48.86721189433582], [2.290551660803119, 48.867236940096014], [2.290363171326461, 48.867261954141554], [2.290341761189676, 48.86726821526948], [2.290345844511028, 48.86728549168403], [2.290365746078557, 48.86731361719595], [2.29044584260929, 48.86742577136274], [2.290535621030049, 48.86755264582862], [2.290615716930895, 48.86766479984939], [2.290705496164993, 48.867791675059735], [2.290705526929097, 48.86779171841075], [2.290785624938726, 48.86790387140238], [2.290872871331262, 48.868025495443064], [2.290952970048394, 48.868137649198296], [2.291040217223084, 48.86825927309127], [2.291120316659971, 48.86837142671078], [2.2912075646170242, 48.86849305045605], [2.291287664773677, 48.8686052039399], [2.291374913512901, 48.86872682753747], [2.291455014389328, 48.868838980885585], [2.291542263910936, 48.86896060433547], [2.291622365507145, 48.869072757547876], [2.291620571241569, 48.8690822961948], [2.291604429701444, 48.86910007338389]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 61, "roussel_fabien": 5.0, "nb_emargement": 1107.0, "nb_procuration": 62.0, "nb_vote_blanc": 5.0, "jadot_yannick": 32.0, "le_pen_marine": 79.0, "nb_exprime": 1099.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1425.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1107, "quartier_bv": "64", "geo_point_2d": [48.87011112710949, 2.2943477893967215], "melenchon_jean_luc": 81.0, "poutou_philippe": 2.0, "macron_emmanuel": 512.0}, "geometry": {"type": "Point", "coordinates": [2.2943477893967215, 48.87011112710949]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "df3ab4bb1d402542458f07efa732fc45a7f93e6f", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 134, "zemmour_eric": 126.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "15-28", "geo_shape": {"coordinates": [[[2.304805011224089, 48.844786399657586], [2.304814734593913, 48.844772635613516], [2.304896359449793, 48.84464375778402], [2.304978742169229, 48.844512992024185], [2.305060366200906, 48.84438411495207], [2.30514274673599, 48.84425334904088], [2.305224369955475, 48.84412447182688], [2.305306749668554, 48.843993705772355], [2.305388373450367, 48.84386482752503], [2.305470752341654, 48.84373406132717], [2.305552373936683, 48.84360518382935], [2.305634752006092, 48.84347441748808], [2.305653106020129, 48.84346972320127], [2.305829421721084, 48.843524144501984], [2.306010207589712, 48.84357996210419], [2.306186524048456, 48.84363438197391], [2.30636731068192, 48.843690199030924], [2.30640521206823, 48.84368216350127], [2.306406257166062, 48.84368062894655], [2.306425990321979, 48.84365165425851], [2.306375573170047, 48.84363637041412], [2.306297924039064, 48.84354659692958], [2.30618981037606, 48.84342580384014], [2.306108014509038, 48.843346851620716], [2.305999901700527, 48.843226058338], [2.305918106422697, 48.8431471068739], [2.30591377760417, 48.843144130936686], [2.3057384010304762, 48.84306921682172], [2.305566604242904, 48.84299237609322], [2.305391228678873, 48.84291746145908], [2.305219431540979, 48.842840620213664], [2.305044056986612, 48.84276570506045], [2.304872262223185, 48.84268886331388], [2.304696888678477, 48.84261394764153], [2.30452509356473, 48.8425371053781], [2.304349721029681, 48.84246218918659], [2.30417792829039, 48.8423853464221], [2.304002556764996, 48.842310429711496], [2.303830763675389, 48.842233586430076], [2.303829522579051, 48.8422329595433], [2.303692673380164, 48.84215526175078], [2.303551148243186, 48.84207511997058], [2.303414299873722, 48.84199742184864], [2.303272774230805, 48.84191727971983], [2.303212890780797, 48.841901421333766], [2.303208823708636, 48.841904365557916], [2.303126367744612, 48.842023668437925], [2.303052015572732, 48.84213443759732], [2.303035594831824, 48.84215322505092], [2.303035468043946, 48.8421547586334], [2.303020784116454, 48.84217663563827], [2.302928397871048, 48.842308703682654], [2.302839359419062, 48.84244135055951], [2.302746972256734, 48.84257341753313], [2.30265793289078, 48.84270606424346], [2.302650231648316, 48.842710848053215], [2.302543774923883, 48.84273702138323], [2.3024823946580852, 48.842747021519855], [2.302463673981149, 48.84274989016816], [2.30244813517711, 48.84276006943622], [2.302377826491876, 48.84277735449467], [2.30218399689389, 48.84282490045272], [2.302007229409065, 48.842868358196476], [2.301813399134662, 48.84291590355017], [2.301636631032078, 48.842959360742825], [2.301459863997315, 48.843002817680514], [2.301266032735483, 48.84305036124234], [2.301089263720574, 48.84309381762093], [2.300895431770183, 48.84314136147771], [2.300883406387012, 48.8431487163757], [2.3009118957711863, 48.84318657533642], [2.301084778196721, 48.84325323029402], [2.301255672668459, 48.843319099928344], [2.30142855597325, 48.84338575438123], [2.301599452676521, 48.843451623524565], [2.3017723368605703, 48.84351827747272], [2.301943233070253, 48.843584146109194], [2.30211611813366, 48.843650799552655], [2.302287015212365, 48.843716667690195], [2.302301613335885, 48.843727922959914], [2.302322690943706, 48.84372256424677], [2.302432921114654, 48.84365956518498], [2.302532859232691, 48.843602681065676], [2.302535945515289, 48.84360013586475], [2.302636135723055, 48.84347694103249], [2.302736146423229, 48.84335480451312], [2.30273926685172, 48.84335225141126], [2.302896812017774, 48.84326314834984], [2.303049047017716, 48.843177073786244], [2.30320128015242, 48.84309099901432], [2.303358823726871, 48.84300189622293], [2.3033723105730353, 48.84300026506446], [2.303555886462151, 48.843044782344265], [2.30375675776655, 48.843092577462535], [2.303765750446831, 48.84310066384322], [2.303773702160732, 48.843226861593024], [2.303781389908416, 48.843350178019826], [2.303789341698254, 48.843476375740316], [2.303797029519646, 48.84359969213855], [2.303804981385423, 48.843725889829834], [2.303812669280726, 48.8438492061994], [2.303820357200296, 48.843972523454234], [2.303828309191456, 48.84409872020247], [2.303826994814179, 48.844102963856585], [2.3037630418838653, 48.844191506590015], [2.303695011730337, 48.84428484705267], [2.3036310597151433, 48.84437338970904], [2.303563029087925, 48.84446673008142], [2.303570129952623, 48.84447894793076], [2.303717615935434, 48.84451893332043], [2.303857677071274, 48.84455760271816], [2.304005162134739, 48.844597587742534], [2.304145225069855, 48.84463625590955], [2.304145844337584, 48.84463641240372], [2.304303298815317, 48.84467292683208], [2.304484389776423, 48.844715353294916], [2.304641846092388, 48.844751867283016], [2.304791021010089, 48.844786815707714], [2.304805011224089, 48.844786399657586]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 28, "roussel_fabien": 18.0, "nb_emargement": 1249.0, "nb_procuration": 60.0, "nb_vote_blanc": 11.0, "jadot_yannick": 106.0, "le_pen_marine": 70.0, "nb_exprime": 1229.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1514.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1244, "quartier_bv": "58", "geo_point_2d": [48.84331262285078, 2.3039124987695496], "melenchon_jean_luc": 189.0, "poutou_philippe": 3.0, "macron_emmanuel": 535.0}, "geometry": {"type": "Point", "coordinates": [2.3039124987695496, 48.84331262285078]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "121eb60f412f6f3811c585eb762b6fc8624f7e4e", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 22, "zemmour_eric": 50.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "20-64", "geo_shape": {"coordinates": [[[2.3984712624924622, 48.86491594152737], [2.398423776452043, 48.86490268669909], [2.398222197278766, 48.86491098507122], [2.39802407214612, 48.86491917367028], [2.397822492845384, 48.8649274713691], [2.397624367597512, 48.864935658407056], [2.39742278816933, 48.86494395543252], [2.397224662785652, 48.86495214270802], [2.3970230818669442, 48.86496043905329], [2.396824956368076, 48.8649686247677], [2.396626830796633, 48.864976811053324], [2.396425251050361, 48.86498510639837], [2.396227125353329, 48.86499329202221], [2.396025545490071, 48.865001585794666], [2.396024901893857, 48.865001602332256], [2.395764598053955, 48.86500422124587], [2.395513232288747, 48.86500649082675], [2.395512916005339, 48.86500649372594], [2.395512056929905, 48.86500651906519], [2.395510834041072, 48.86500653177481], [2.395322936086941, 48.86501610038303], [2.395136700398473, 48.865025729259145], [2.3949488009329523, 48.86503529817218], [2.394762565106706, 48.86504492646599], [2.394576329201069, 48.86505455536922], [2.3943884295391102, 48.865064122502936], [2.394386285320147, 48.865064121545586], [2.394222006384551, 48.86505550276427], [2.394061587779984, 48.86504689700621], [2.394059914091578, 48.86504687504241], [2.393846784589001, 48.86505274860155], [2.393633466278136, 48.865058794397505], [2.393420336689292, 48.86506466629792], [2.393207019643131, 48.86507071134066], [2.392993889946993, 48.86507658338089], [2.392780571439567, 48.86508262765657], [2.392567441646514, 48.86508849893732], [2.392354123040823, 48.86509454245291], [2.392354031683827, 48.86509454468708], [2.392187309065786, 48.86509969220125], [2.39199291154924, 48.865105910305346], [2.3918261888696453, 48.86511105641712], [2.391631791267593, 48.86511727393461], [2.39146506851596, 48.86512241954328], [2.391325742180515, 48.86512687506177], [2.391320524990081, 48.86513006097341], [2.391321390428026, 48.865146408193986], [2.391305854438481, 48.86525107088916], [2.391290420900773, 48.865355709811624], [2.391274884786488, 48.86546037248301], [2.391259449761465, 48.86556501137475], [2.391243913522639, 48.86566967402235], [2.391228479736399, 48.865774312897244], [2.391229628528161, 48.86577889278473], [2.391284605083783, 48.86585949877265], [2.391390891853555, 48.86601440292446], [2.391445868896732, 48.86609500972046], [2.391440080964152, 48.866106552996705], [2.391284371756766, 48.86616388370234], [2.391138639037223, 48.86621785466018], [2.390992904663111, 48.86627182453171], [2.390837194459196, 48.86632915554634], [2.390827453498478, 48.86633006016692], [2.390651964248391, 48.86630304101613], [2.390472029042892, 48.86627562483901], [2.390296540160425, 48.866248605165794], [2.390116603966882, 48.86622118844607], [2.3901014653616413, 48.86622577348103], [2.390006000159354, 48.86634583987992], [2.389913607188059, 48.86646194407257], [2.389818139756975, 48.86658201028903], [2.389725745937485, 48.8666981152112], [2.389633351706248, 48.866814220049804], [2.389537884346784, 48.86693428601146], [2.389445487914729, 48.86705039067336], [2.3893500197000073, 48.86717045556024], [2.389349571800979, 48.86718098723523], [2.389366413477385, 48.86718837309726], [2.389535409690284, 48.86720489807015], [2.389759256629854, 48.86722659578294], [2.389928254454614, 48.86724312020755], [2.390152101722046, 48.867264817184896], [2.390321098432263, 48.86728134104729], [2.390544947390595, 48.86730303729611], [2.390713944349409, 48.867319560603256], [2.390725028558226, 48.86733098467288], [2.390677545675058, 48.867437943251296], [2.390628401357683, 48.867547421384046], [2.390580918078735, 48.86765437990318], [2.390531773354103, 48.86776385797484], [2.390546544514228, 48.86777533410588], [2.390710078076673, 48.86776176919116], [2.390839435508636, 48.867750550963834], [2.390845903682306, 48.86774882747531], [2.390998580518083, 48.867673919681046], [2.391155048419387, 48.86759664412918], [2.391307724364599, 48.86752173593031], [2.391464191350213, 48.867444459963664], [2.391616865041815, 48.86736955135322], [2.391773332474792, 48.867292274978745], [2.39192600527584, 48.86721736596366], [2.39208247179313, 48.867140089174434], [2.392235143703626, 48.8670651797547], [2.392391609305232, 48.86698790255075], [2.392420938681542, 48.86697351092716], [2.39244008684082, 48.86696982820699], [2.3924446941587503, 48.86696132046395], [2.392568035756415, 48.866900801338694], [2.392680273911826, 48.86684565595348], [2.392792510455993, 48.8667905113527], [2.392945181683995, 48.86671560101054], [2.392966479279402, 48.866725152992565], [2.392956048576356, 48.866750734855096], [2.392945499156713, 48.866779484486116], [2.392967662968452, 48.866788403229265], [2.3931473106624033, 48.866685945986724], [2.39328756586684, 48.86660640990208], [2.393288286692953, 48.86660596748376], [2.393412813022993, 48.86652385674761], [2.393555222601616, 48.86642780769697], [2.393570588057305, 48.86642678296218], [2.393581319981274, 48.86641054130773], [2.393701471901956, 48.86633010425157], [2.393843879045224, 48.866234055733024], [2.393964030153449, 48.86615361840047], [2.394106437693198, 48.86605756956114], [2.394226586625957, 48.86597713194527], [2.3943339837830813, 48.8659046949543], [2.394357812391328, 48.86590524542151], [2.394373290310603, 48.86588597264897], [2.394408299706754, 48.86586235956173], [2.394433317219464, 48.86584424393595], [2.394435041525509, 48.86584307992122], [2.394582543879407, 48.86573626869289], [2.394734339262533, 48.865630775834575], [2.394881841764763, 48.86552396422377], [2.3950336359335402, 48.865418470066366], [2.395044142852119, 48.86541567766328], [2.395253783077448, 48.86542197848891], [2.395460872628163, 48.865428066409756], [2.395670514316844, 48.86543436651232], [2.395877603965501, 48.865440453712004], [2.396087245754321, 48.86544675308453], [2.396294335501007, 48.865452839563126], [2.396501425285563, 48.86545892658266], [2.39671106723456, 48.86546522396307], [2.3969181571170353, 48.86547131026147], [2.397127797803237, 48.86547760690504], [2.397334887783618, 48.8654836924823], [2.397544529933117, 48.865489988402715], [2.397751620011395, 48.86549607325885], [2.397961262250579, 48.865502369348526], [2.398005267567087, 48.86551382435188], [2.39801162103385, 48.86550959613622], [2.398084760228158, 48.8654160126564], [2.398176402250356, 48.86530369808304], [2.398194642295544, 48.86528036019633], [2.398200059579208, 48.865277282015114], [2.398207733463245, 48.86526058298477], [2.398262633362272, 48.865190336373836], [2.398356548979579, 48.86507064769351], [2.398429686927626, 48.86497706486507], [2.3984658793790232, 48.86493093974898], [2.3984712624924622, 48.86491594152737]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 64, "roussel_fabien": 17.0, "nb_emargement": 970.0, "nb_procuration": 64.0, "nb_vote_blanc": 13.0, "jadot_yannick": 78.0, "le_pen_marine": 47.0, "nb_exprime": 955.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1239.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 970, "quartier_bv": "79", "geo_point_2d": [48.866012199432234, 2.392997052819295], "melenchon_jean_luc": 451.0, "poutou_philippe": 6.0, "macron_emmanuel": 236.0}, "geometry": {"type": "Point", "coordinates": [2.392997052819295, 48.866012199432234]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ce4e65163648103e4f26ef1a2573d97d4349d10b", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 47, "zemmour_eric": 55.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "11-52", "geo_shape": {"coordinates": [[[2.3862948844937533, 48.85286993782607], [2.386286229967778, 48.85285853013534], [2.386299396802083, 48.85274751431291], [2.386314994853974, 48.85261613254704], [2.386331251433092, 48.852479049555576], [2.386346849324206, 48.852347667753804], [2.38636310572518, 48.85221058562423], [2.386378703466313, 48.8520792028873], [2.386394959699738, 48.85194212072029], [2.386410557280098, 48.85181073794752], [2.386426813345977, 48.85167365574307], [2.386442410765769, 48.851542272934445], [2.386458668026835, 48.85140519069954], [2.386474265285857, 48.85127380785508], [2.386490521016646, 48.851136725575806], [2.386506118115105, 48.85100534269545], [2.386521715134815, 48.85087395979756], [2.386537970616052, 48.85073687746258], [2.386553567475204, 48.85060549452882], [2.386569822788905, 48.850468412156474], [2.386583081956576, 48.85046012334717], [2.386798593182733, 48.85045670520592], [2.38702336554799, 48.85045457702944], [2.387238876711851, 48.85045115899445], [2.387463650397905, 48.85044902999783], [2.387464150555641, 48.850449028061625], [2.387648360561464, 48.850450574450925], [2.387850761464339, 48.850452409686575], [2.388034971483127, 48.850453956379894], [2.388186117438481, 48.850455326527], [2.388196434906515, 48.85045126654399], [2.3881968362230213, 48.85043101337053], [2.388195885581274, 48.850401946819915], [2.388195914162448, 48.85035853879758], [2.388182652415912, 48.850349544906095], [2.388000294187744, 48.85034630633428], [2.387817455411369, 48.85034233025424], [2.387635097231148, 48.85033909112581], [2.3874522585185263, 48.8503351135884], [2.387439087299774, 48.85032584937186], [2.387446308830303, 48.85017048082591], [2.38745094429053, 48.85001912902036], [2.387458165743204, 48.84986376043085], [2.38746280114171, 48.84971240858314], [2.387447490984741, 48.84966624282742], [2.387429658462935, 48.84966679186814], [2.387298617525453, 48.84968667380971], [2.38711078816295, 48.84971593816732], [2.386913921921483, 48.84974580615673], [2.386726092129817, 48.849775069908866], [2.386529225433891, 48.849804938163004], [2.386341395213064, 48.84983420130966], [2.386144528073366, 48.849864068929236], [2.385956697423387, 48.84989333147041], [2.38575982983972, 48.84992319845544], [2.385571998760596, 48.849952460391165], [2.385375130743676, 48.84998232584231], [2.385187300598113, 48.850011587179544], [2.385139206333206, 48.85000857901805], [2.385126224282179, 48.85001416114206], [2.384938392519411, 48.850043422080724], [2.384774681611848, 48.850073235748994], [2.384610970527584, 48.850103048293214], [2.384423138155114, 48.85013230842063], [2.384364269612659, 48.85013462714513], [2.384358242859247, 48.850180936220404], [2.384413107596928, 48.85031543981009], [2.384468442865373, 48.85044232106105], [2.384468002060547, 48.850448143004726], [2.384378383660372, 48.850596272153], [2.384313620596201, 48.850734002193875], [2.384241029173457, 48.8508421121801], [2.384164889745057, 48.85096824396985], [2.384092297698075, 48.851076352943736], [2.384038439328312, 48.851165573873175], [2.384033373439181, 48.85117690751697], [2.384036392177805, 48.85118611624051], [2.384014110406578, 48.851223026978566], [2.383935890495232, 48.851348216144984], [2.383859749588663, 48.85147434768317], [2.383781528939867, 48.85159953582112], [2.383705387292548, 48.85172566723254], [2.383627165885025, 48.85185085614061], [2.383551023496741, 48.851976987425346], [2.383472799989003, 48.85210217529786], [2.383396658211955, 48.85222830736213], [2.3833184339561, 48.85235349510546], [2.383242290086057, 48.85247962613673], [2.383218708139877, 48.85251736728401], [2.383219885516924, 48.852524974673145], [2.383285785451071, 48.85253389236992], [2.383482327221219, 48.852545421346186], [2.383678209072052, 48.85255652300525], [2.38387475101448, 48.852568051336725], [2.384070633033981, 48.85257915235315], [2.3842671765218633, 48.8525906791475], [2.384463058710022, 48.852601779521294], [2.38465960099667, 48.85261330656308], [2.384855483353479, 48.852624406294204], [2.384858841170888, 48.8526248831256], [2.385031170734637, 48.852664899737064], [2.385209141192862, 48.852705617796055], [2.385381471292618, 48.8527456339001], [2.385559442300205, 48.85278635143513], [2.385731772935965, 48.85282636703177], [2.385909743130341, 48.85286708403585], [2.386082074302101, 48.85290709912505], [2.3862600464087, 48.852947815612104], [2.386278087194377, 48.85294009458597], [2.386282293093665, 48.85290802551476], [2.386285384370615, 48.85288195839073], [2.3862948844937533, 48.85286993782607]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 52, "roussel_fabien": 31.0, "nb_emargement": 1448.0, "nb_procuration": 112.0, "nb_vote_blanc": 8.0, "jadot_yannick": 154.0, "le_pen_marine": 63.0, "nb_exprime": 1456.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1804.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1469, "quartier_bv": "44", "geo_point_2d": [48.851300879532715, 2.3853992336017824], "melenchon_jean_luc": 516.0, "poutou_philippe": 18.0, "macron_emmanuel": 492.0}, "geometry": {"type": "Point", "coordinates": [2.3853992336017824, 48.851300879532715]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ef983c2acd7be4240e4eb3c510a18d30aef5a8ee", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 46, "zemmour_eric": 77.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-63", "geo_shape": {"coordinates": [[[2.375382081203287, 48.845339031857364], [2.375396361217535, 48.84536498634251], [2.375574494262065, 48.84546700227408], [2.375735600049217, 48.845556880381324], [2.375896706381377, 48.845646759163714], [2.376074840016604, 48.845748773418116], [2.376091929476477, 48.84574918361252], [2.3762339670113333, 48.845679087247014], [2.376371659835729, 48.84561037645708], [2.376513696605282, 48.84554028065005], [2.376651388694146, 48.84547156952965], [2.376793423357447, 48.84540147247536], [2.376931114699926, 48.845332761923785], [2.376943915779156, 48.8453314660648], [2.377125411395757, 48.84537424478841], [2.377296849094408, 48.84541331049558], [2.377468287039231, 48.845452376855], [2.377649783507423, 48.8454951547785], [2.377657207214438, 48.845499371813226], [2.377752483285917, 48.84561653928369], [2.377845967865243, 48.8457330255272], [2.377941246150734, 48.84585019282993], [2.37803473020861, 48.84596667889443], [2.378068504198473, 48.84598877001441], [2.378095760136119, 48.845978361340144], [2.378261731324473, 48.84589802910454], [2.378431458099813, 48.845817756618885], [2.378597428259245, 48.845737423906016], [2.378767154005196, 48.84565715003323], [2.378933121773231, 48.845576816836044], [2.379102846468255, 48.84549654337476], [2.379268814569954, 48.84541620970736], [2.3794385382355863, 48.84533593485898], [2.379604505308373, 48.84525560071433], [2.379774226560726, 48.8451753262704], [2.379789851829873, 48.845175211215974], [2.379982389618664, 48.845262052021475], [2.380170752081977, 48.845346215071444], [2.380363292499885, 48.84543305525766], [2.380551656185683, 48.845517218594274], [2.380566534148798, 48.84551739006104], [2.380683534757894, 48.845468961922535], [2.380797705444998, 48.845419919150196], [2.380914705609778, 48.84537149168069], [2.381028875865716, 48.84532244868347], [2.381043587617205, 48.84532238359952], [2.381182104168693, 48.845380146417035], [2.381326614971066, 48.84543873689872], [2.381339305494678, 48.845439285479955], [2.381524232751941, 48.8453847512777], [2.381705559826132, 48.8453323755273], [2.381890486310127, 48.84527784165298], [2.382071812644273, 48.845225465342466], [2.382253138603298, 48.845173089653976], [2.382438063959769, 48.84511855402614], [2.382619389189405, 48.845066176878206], [2.382804313772514, 48.84501164157833], [2.382985638262095, 48.8449592638703], [2.383170562093347, 48.84490472709977], [2.383254382317696, 48.84485107456463], [2.3832483424209983, 48.844844230791516], [2.383082401795289, 48.84483532144832], [2.38298997794378, 48.844827734485655], [2.382984985870422, 48.84482665109413], [2.382817946755571, 48.844764724864184], [2.38264428778952, 48.84469928821596], [2.382477248125148, 48.84463736149619], [2.3823035900112552, 48.844571924346], [2.382136552522469, 48.84450999715049], [2.381962895250069, 48.84444456039757], [2.381795857222433, 48.84438263181299], [2.38162220216463, 48.8443171945651], [2.381455164950136, 48.84425526549775], [2.381281509381939, 48.84418982774081], [2.3811144729698093, 48.844127899090026], [2.380940819626983, 48.84406245993882], [2.380773784027788, 48.844000530805275], [2.380600130174682, 48.843935091145035], [2.380433095388526, 48.84387316152875], [2.380259443750112, 48.84380772137355], [2.380092409776991, 48.84374579127452], [2.379975178866406, 48.84370161250002], [2.379938742829772, 48.84369087866849], [2.379897686600898, 48.84373634610711], [2.379751905156772, 48.843810126544014], [2.379586169669329, 48.843895907791556], [2.379440388700324, 48.843969687845345], [2.379274652192847, 48.84405546864907], [2.379128868973989, 48.84412924830562], [2.378963131446371, 48.844215028665516], [2.378817348702736, 48.844288807939], [2.378651608792429, 48.84437458784792], [2.378505825161473, 48.84444836673126], [2.3783400855935612, 48.84453414620343], [2.37819429971273, 48.8446079246895], [2.3781752478941662, 48.844606304849016], [2.378049652612259, 48.84449958252239], [2.377924501539682, 48.84439530052217], [2.377907204527871, 48.844393022438894], [2.377722350584035, 48.84446078914129], [2.377547141154919, 48.84452726479376], [2.377362286277404, 48.84459503003233], [2.377187074564428, 48.84466150604171], [2.377002218742697, 48.84472927071576], [2.376827007481709, 48.84479574619687], [2.376651794421951, 48.84486222051099], [2.376466937181445, 48.84492998524506], [2.376291724573683, 48.84499645903098], [2.376106866388856, 48.84506422320051], [2.375931652870535, 48.845130696451086], [2.375746793752262, 48.84519845915682], [2.375571577950039, 48.845264932764195], [2.375386717887349, 48.8453326949054], [2.375382081203287, 48.845339031857364]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 63, "roussel_fabien": 27.0, "nb_emargement": 1033.0, "nb_procuration": 48.0, "nb_vote_blanc": 15.0, "jadot_yannick": 84.0, "le_pen_marine": 75.0, "nb_exprime": 1016.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1359.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1033, "quartier_bv": "48", "geo_point_2d": [48.84488121028322, 2.37939083006451], "melenchon_jean_luc": 362.0, "poutou_philippe": 10.0, "macron_emmanuel": 278.0}, "geometry": {"type": "Point", "coordinates": [2.37939083006451, 48.84488121028322]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b796227f78420c9ad364d7f557f47ff6b4845230", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 40, "zemmour_eric": 48.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-9", "geo_shape": {"coordinates": [[[2.395732594956854, 48.87164593763228], [2.395722106949341, 48.8716325403526], [2.395685902098766, 48.87154081425589], [2.395641654293513, 48.87142848513125], [2.395592326465035, 48.87130351175296], [2.395548077710239, 48.8711911816634], [2.395498751694241, 48.87106620822657], [2.395454503332484, 48.87095387897757], [2.395410255161466, 48.870841549700835], [2.39536092981765, 48.870716575268375], [2.39536127042686, 48.87071130867978], [2.395407235725706, 48.87062564439669], [2.3954549164818832, 48.87053534818084], [2.395500880097888, 48.87044968474056], [2.395548560530672, 48.87035938847304], [2.395549350063259, 48.87035819724243], [2.39565951003639, 48.87022027281358], [2.395757379407438, 48.870102920595926], [2.395772435449023, 48.87007941600362], [2.395738105807134, 48.870059988809146], [2.395489659060851, 48.870022661920274], [2.395270756149163, 48.86999532162093], [2.395268550058272, 48.86999511352045], [2.395098948239593, 48.86998837036486], [2.394919582642749, 48.869981630671916], [2.394749980902696, 48.869974887921046], [2.394570614034212, 48.869968147698216], [2.394535606849802, 48.86995861662335], [2.394524109236797, 48.86996117553222], [2.394482782351715, 48.86997037173332], [2.394476079716223, 48.869998584185566], [2.394343285775696, 48.870098593032836], [2.39421504866223, 48.87019415688598], [2.394082253732432, 48.870294164526705], [2.393954015658517, 48.87038972808328], [2.393821219729089, 48.87048973541671], [2.393692980694817, 48.87058529867671], [2.393560183755078, 48.87068530660212], [2.393431943760541, 48.87078086956553], [2.393299147194764, 48.87088087629127], [2.393170904876612, 48.87097643895118], [2.393042662087816, 48.87107200146543], [2.392909864032444, 48.871172007732945], [2.39278162028336, 48.87126756995062], [2.392648821217739, 48.871367576810066], [2.392520576518744, 48.87146313783188], [2.392387776453345, 48.87156314438403], [2.3923877063093, 48.87156319708873], [2.3923584722248012, 48.87158532522409], [2.39235560117633, 48.871589173294716], [2.392402196525504, 48.87161945482072], [2.392535618872726, 48.871702587564236], [2.392671080166351, 48.871786742247934], [2.392804502018421, 48.87186987377296], [2.392939965544769, 48.87195402814653], [2.393073388243987, 48.872037160258515], [2.393208852650277, 48.872121313415796], [2.393209525649946, 48.872121706239405], [2.393376777243449, 48.87221294700804], [2.3935449505988142, 48.87230492785833], [2.393712203357712, 48.87239616904243], [2.3938803792706, 48.87248814851382], [2.394047633205376, 48.872579389214096], [2.3942158089284993, 48.87267136909135], [2.394218937555646, 48.87268276150374], [2.3941708973077622, 48.87273808823805], [2.394114339472205, 48.87280202613119], [2.394116980208429, 48.872810002202804], [2.394135245657401, 48.872817212884634], [2.3943323985587073, 48.87280933597744], [2.394525481941597, 48.872801564068105], [2.394722634724656, 48.87279368651809], [2.394915716628012, 48.87278591397228], [2.395112870656105, 48.87277803578636], [2.395305952443212, 48.87277026261101], [2.395503104989746, 48.87276238377531], [2.395696188013452, 48.87275461087659], [2.395893340452143, 48.87274673049876], [2.396086421996398, 48.8727389569636], [2.39614572298008, 48.87273723982626], [2.396146150417474, 48.87271918605182], [2.396101060661816, 48.87260110713327], [2.396051730631041, 48.872476133177706], [2.395998960352948, 48.87233794139649], [2.395949632169218, 48.87221296827521], [2.395900302869346, 48.8720879942133], [2.395847533375884, 48.87194980321602], [2.395798204570197, 48.871824829082286], [2.395745436987799, 48.87168663711469], [2.395732313559328, 48.87165338900096], [2.395732594956854, 48.87164593763228]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 9, "roussel_fabien": 33.0, "nb_emargement": 1263.0, "nb_procuration": 75.0, "nb_vote_blanc": 11.0, "jadot_yannick": 107.0, "le_pen_marine": 69.0, "nb_exprime": 1245.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1648.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1263, "quartier_bv": "77", "geo_point_2d": [48.8714953601981, 2.394476442605772], "melenchon_jean_luc": 621.0, "poutou_philippe": 12.0, "macron_emmanuel": 253.0}, "geometry": {"type": "Point", "coordinates": [2.394476442605772, 48.8714953601981]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7d3f17a8975093d208cfbec7f822d6c0e8d2aaf8", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 82, "zemmour_eric": 112.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-80", "geo_shape": {"coordinates": [[[2.273026632472476, 48.84421373175207], [2.273040130957492, 48.844220738020745], [2.2730408060175, 48.844221088379946], [2.2731025947020242, 48.84419778614453], [2.273274333537404, 48.84413643220699], [2.2734463774356533, 48.844074962956725], [2.273618115461596, 48.84401360851892], [2.273790158548927, 48.84395213876752], [2.273961895765331, 48.84389078382948], [2.274133938029323, 48.84382931447619], [2.274305674436289, 48.84376795903787], [2.274477715901891, 48.8437064882842], [2.274649451499418, 48.84364513234561], [2.274821492154101, 48.843583661090776], [2.274993226942188, 48.84352230465197], [2.275165266785951, 48.84346083289597], [2.275337000764598, 48.84339947595687], [2.275509039797441, 48.843338003699785], [2.275680772966645, 48.84327664626047], [2.27585281117607, 48.843215174401536], [2.276024543535835, 48.84315381646194], [2.276196580946837, 48.84309234320257], [2.276368312497158, 48.84303098476279], [2.276540349097238, 48.84296951100228], [2.276712079838115, 48.842908152062286], [2.27688411562727, 48.842846677800644], [2.277055845558702, 48.842785318360356], [2.277227880536933, 48.84272384359763], [2.277231429476333, 48.84272201863353], [2.277278679069288, 48.84268806239093], [2.277325626542582, 48.84265436961796], [2.277328305508678, 48.842652885652754], [2.277438448644538, 48.842604886075456], [2.2775823559033173, 48.84254402964918], [2.277588554388263, 48.842545396349735], [2.277615074661725, 48.84253100919054], [2.277645052591213, 48.8425178408648], [2.277705356565783, 48.84249233820958], [2.277724696182922, 48.84249563694904], [2.2778105318116753, 48.84260053513709], [2.277898585385515, 48.842705875639005], [2.277984423072983, 48.84281077369076], [2.278072477365934, 48.84291611314552], [2.278089473285929, 48.84292011717563], [2.278149427962184, 48.842901159606754], [2.278266255777254, 48.84287027414668], [2.278273305313665, 48.84285781184283], [2.278192424712291, 48.84275404564464], [2.278110030669649, 48.84264889780911], [2.278029150717545, 48.842545131481145], [2.277946758709405, 48.8424399826224], [2.277953524062934, 48.84242757707627], [2.278147715946582, 48.84237301147037], [2.278332482774372, 48.842318428263546], [2.278526673842149, 48.84226386293643], [2.278711439886229, 48.84220927913899], [2.278905630150488, 48.84215471319141], [2.279090395410754, 48.842100128803345], [2.279284584871591, 48.84204556223527], [2.279469349348041, 48.84199097725657], [2.279473700986075, 48.84198893491589], [2.279573864153905, 48.841918749645814], [2.279680894722855, 48.84183739589018], [2.279781057320454, 48.84176721043708], [2.2798880872547063, 48.84168585648501], [2.279890201677001, 48.841685776578075], [2.279915570792681, 48.84165857494069], [2.279919932759328, 48.84165637345704], [2.28011428301279, 48.84159442087385], [2.280309280228513, 48.841531564401755], [2.280503629553778, 48.841469611179086], [2.2806986258331072, 48.841406754065304], [2.280704530321517, 48.841394272130245], [2.280610796844379, 48.841284005058604], [2.280519700992706, 48.84117743668729], [2.280425969658994, 48.84106716945756], [2.280334874576522, 48.84096060002554], [2.280241144023774, 48.840850332629614], [2.280150049685864, 48.8407437639354], [2.280058955720361, 48.84063719516168], [2.279965224970597, 48.84052692750945], [2.279874131761961, 48.84042035857429], [2.2797804031554723, 48.84031009076399], [2.279779999186334, 48.840309645841025], [2.279762913963445, 48.840301507988414], [2.279742792841116, 48.84030955582971], [2.279539053489077, 48.84032973306157], [2.27934221407491, 48.84034919784225], [2.279138474412847, 48.84036937439111], [2.278941634699382, 48.84038883851194], [2.278744794839005, 48.84040830230856], [2.278541054714648, 48.84042847783887], [2.278540005879397, 48.84042855425537], [2.278342372812014, 48.84043807275304], [2.278143350187731, 48.84044747191661], [2.277945716976079, 48.8404569897588], [2.277746694208139, 48.840466388262286], [2.2775490608523308, 48.840475905449], [2.27735003794054, 48.84048530329242], [2.277152404440689, 48.84049481982367], [2.276953382735112, 48.840504217914535], [2.276940070246561, 48.84049905959561], [2.276850665683099, 48.84037296776871], [2.276761076279705, 48.84024638278422], [2.276671672582678, 48.84012029079504], [2.276582084048303, 48.83999370564788], [2.276492681217701, 48.83986761349639], [2.27640309353985, 48.839741029085836], [2.276391697815419, 48.83973414201015], [2.276372265500584, 48.83973740340045], [2.2761924363532993, 48.839797402578796], [2.276013416711572, 48.83985706462406], [2.27583358673836, 48.83991706325653], [2.275654566274783, 48.83997672475837], [2.275474736850563, 48.84003672195392], [2.275295714190421, 48.84009638380339], [2.275115883940287, 48.84015638045305], [2.27493686045829, 48.84021604175907], [2.274757029382242, 48.84027603786286], [2.274578005078594, 48.84033569862547], [2.274398173176635, 48.840395694183336], [2.274219149413564, 48.84045535441079], [2.274039315323267, 48.84051534941448], [2.273860290738551, 48.84057500909851], [2.273681264394101, 48.84063466760384], [2.273501430415883, 48.8406946626969], [2.273322403249693, 48.840754320658746], [2.273142568445461, 48.8408143152059], [2.272963541819973, 48.840873972632615], [2.272783704827494, 48.84093396662554], [2.272604677380271, 48.84099362350883], [2.272424839561881, 48.84105361695587], [2.272245811292825, 48.84111327329566], [2.272065972648525, 48.841173266196805], [2.271886943557841, 48.84123292199317], [2.271707104087633, 48.841292914348344], [2.2715280741751203, 48.84135256960124], [2.271348233879007, 48.841412561410486], [2.271169203144867, 48.841472216119904], [2.270989362022849, 48.841532207383224], [2.270810330466986, 48.84159186154921], [2.270630488519066, 48.84165185226659], [2.2705804494630533, 48.8416822759823], [2.27058489507456, 48.84168824343711], [2.270682834514889, 48.841788503510635], [2.270788039065012, 48.84189814325172], [2.270885979277963, 48.84199840403937], [2.270991184679109, 48.84210804358121], [2.27099135345056, 48.842108154333], [2.27109387610043, 48.84221752290028], [2.271205858266943, 48.842332826384045], [2.271308381808879, 48.84244219474549], [2.271420366295251, 48.842557498013605], [2.271522890729266, 48.84266686616917], [2.27163487617283, 48.842782169213265], [2.271635111236142, 48.84278241167569], [2.271742055852751, 48.84288872618545], [2.271854042257876, 48.84300402900146], [2.271960987763153, 48.8431103441937], [2.2720729737789718, 48.843225645874234], [2.272179920185593, 48.84333196084961], [2.272291908511891, 48.84344726320993], [2.272389371902433, 48.84354802963432], [2.272501361156381, 48.84366333177622], [2.272598825355944, 48.84376409801044], [2.272710815537553, 48.84387939993391], [2.272808280546144, 48.843980165977975], [2.27290574593162, 48.84408093193355], [2.273017737473052, 48.84419623353697], [2.273026632472476, 48.84421373175207]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 80, "roussel_fabien": 17.0, "nb_emargement": 1206.0, "nb_procuration": 44.0, "nb_vote_blanc": 9.0, "jadot_yannick": 65.0, "le_pen_marine": 110.0, "nb_exprime": 1190.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1552.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1206, "quartier_bv": "60", "geo_point_2d": [48.841827760806034, 2.275387754556343], "melenchon_jean_luc": 313.0, "poutou_philippe": 10.0, "macron_emmanuel": 425.0}, "geometry": {"type": "Point", "coordinates": [2.275387754556343, 48.841827760806034]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "771dc4215ce3e89807e0975e3ff152230a26cd9a", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 102, "zemmour_eric": 210.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "16-68", "geo_shape": {"coordinates": [[[2.291789265192737, 48.87104895936263], [2.291769117966052, 48.871058693382544], [2.2916315167484482, 48.871166268225906], [2.291492128988597, 48.871274445682545], [2.291354526629012, 48.87138202018653], [2.291215136353331, 48.8714901972914], [2.291077532851752, 48.87159777145595], [2.290938142786712, 48.871705948225184], [2.290800538130887, 48.87181352294958], [2.290661145562227, 48.87192169846779], [2.290643307529922, 48.87192340583617], [2.2904675957959713, 48.871847758355], [2.290291305234322, 48.87177200465043], [2.290115593146899, 48.87169635753338], [2.289939303609578, 48.87162060330001], [2.289763593907226, 48.87154495566393], [2.289587304031091, 48.87146920089371], [2.289411595350659, 48.87139355273059], [2.289235307862092, 48.87131779743963], [2.289059598852615, 48.87124214784208], [2.288883312388376, 48.87116639202234], [2.288865209738211, 48.87116832328936], [2.288747159853447, 48.87126605704364], [2.288616443091067, 48.87137405516837], [2.288498392285478, 48.871471787759845], [2.28836767449104, 48.87157978559276], [2.288249621377007, 48.87167751881184], [2.288118903913643, 48.87178551636111], [2.288000849878872, 48.87188324841738], [2.287870131383436, 48.87199124567483], [2.287752076403335, 48.87208897836681], [2.287621356888113, 48.87219697443323], [2.287503300974967, 48.87229470686166], [2.28737257905219, 48.872402703527406], [2.287254523581456, 48.87250043480114], [2.287123800626571, 48.8726084311751], [2.287005744210577, 48.87270616308454], [2.286875020223472, 48.872814159166644], [2.286756962886722, 48.87291188991326], [2.286752292230287, 48.87292820047132], [2.286757773336997, 48.87293255448038], [2.286928828564262, 48.87295295357042], [2.287098065042873, 48.872972566348146], [2.287269120534905, 48.87299296495118], [2.287438355920666, 48.873012576339704], [2.287609411677253, 48.8730329744557], [2.287778648684411, 48.87305258537052], [2.287949704705751, 48.87307298299951], [2.288118940595445, 48.87309259432371], [2.288129835390829, 48.87310356096491], [2.288084635837508, 48.873227124625345], [2.288040547223752, 48.87334819468786], [2.287995347234038, 48.87347175918643], [2.287951258205772, 48.873592829189235], [2.287906057804243, 48.873716392727474], [2.287861968348965, 48.8738374635698], [2.287816767523324, 48.87396102704693], [2.287772677665718, 48.874082096930294], [2.287727476415958, 48.87420566034631], [2.287683386131427, 48.87432673106918], [2.287639294291006, 48.874447800855194], [2.2875940937707773, 48.87457136418801], [2.287548240007078, 48.87469582114736], [2.287503039055605, 48.874819384418025], [2.287457184855986, 48.87494384131454], [2.287411982109925, 48.87506740451494], [2.287366780512731, 48.875190967692525], [2.287320925660393, 48.875315424494914], [2.287275722268594, 48.87543898760223], [2.2872298683436663, 48.87556344434988], [2.287184664520595, 48.87568700739502], [2.287138810159733, 48.875811464079796], [2.2870936059053832, 48.87593502706278], [2.28704775112089, 48.87605948278543], [2.287049312502285, 48.8760662389464], [2.287119386864245, 48.87614315247733], [2.287183522579116, 48.87621376398623], [2.287239677917422, 48.876260980133225], [2.287253129787413, 48.87625609676059], [2.287346715484226, 48.87622594142043], [2.287530164703475, 48.87616789539254], [2.287709047224489, 48.876110254493476], [2.287892496983427, 48.876052208811615], [2.288071378706127, 48.87599456736508], [2.28825482630272, 48.87593652021456], [2.28843370859046, 48.87587887822861], [2.288617155375769, 48.87582083051676], [2.288796035501829, 48.87576318797528], [2.2889086227479742, 48.87572756208683], [2.288953471148676, 48.87572491192364], [2.288970164242481, 48.875714489677385], [2.2890410229260842, 48.87569206725597], [2.289219495951583, 48.87563411588633], [2.289402940999159, 48.87557606695745], [2.2895814132367542, 48.87551811414284], [2.289764858823388, 48.87546006556061], [2.289943330260904, 48.87540211220037], [2.290126773684527, 48.87534406215004], [2.290305244309503, 48.8752861091434], [2.290488686921201, 48.8752280585324], [2.290667156758348, 48.87517010408085], [2.290850598545869, 48.87511205380841], [2.291029067582831, 48.87505409881117], [2.291212509933898, 48.87499604708683], [2.291390978158434, 48.87493809244324], [2.291574418334332, 48.87488004015014], [2.291752885770912, 48.87482208406165], [2.291936325122647, 48.874764032107116], [2.292114791758933, 48.87470607547299], [2.292298230311056, 48.87464802205853], [2.29247669613493, 48.87459006577798], [2.292660135238333, 48.8745320118109], [2.292838600274226, 48.874474054085475], [2.292947539654188, 48.87443957738081], [2.292959591176914, 48.87443754140507], [2.292972099987721, 48.8744317488776], [2.293046597501473, 48.87440817193026], [2.293213041436553, 48.87435617633865], [2.293396477532192, 48.87429812122285], [2.293562919403011, 48.87424612513153], [2.2937463560844122, 48.87418806948183], [2.293912797254283, 48.87413607289882], [2.29409623178273, 48.874078017598436], [2.294262673614966, 48.87402602053184], [2.294446107377944, 48.87396796379024], [2.29461254714592, 48.873915966223976], [2.294795980131339, 48.87385790894041], [2.294962420561667, 48.873805910890496], [2.295026595615515, 48.87380921352094], [2.295033474633914, 48.873789517956645], [2.295089913863394, 48.87372874538448], [2.295119487663505, 48.87371913378719], [2.295134330843662, 48.87365223993472], [2.295177002161947, 48.87360629195204], [2.295215133881909, 48.873563124973096], [2.295216810770912, 48.87355738714551], [2.295123868889353, 48.873529785850124], [2.294942897458418, 48.87345546316101], [2.294763457004822, 48.87338219244819], [2.294582487964249, 48.873307869212304], [2.294403048538185, 48.8732345970502], [2.294223609604779, 48.873161325513486], [2.294042640738699, 48.87308700143855], [2.293863204183925, 48.87301372935982], [2.293682236344912, 48.87293940473009], [2.293502799442403, 48.87286613209329], [2.293321834005834, 48.872791806017524], [2.293316939182106, 48.87278831464619], [2.293231257100218, 48.87267940995754], [2.293146498122257, 48.87257162853038], [2.293060816753162, 48.87246272369835], [2.292976059843844, 48.87235494213737], [2.292891303272976, 48.872247161405184], [2.29280562162011, 48.872138255451176], [2.292720865754496, 48.872030474577116], [2.292635186177666, 48.87192156848781], [2.292550431017398, 48.87181378747196], [2.2924647521411172, 48.871704882138516], [2.292463983956125, 48.87170402501896], [2.292351262640006, 48.87159279231825], [2.292243567275457, 48.87148696010339], [2.292135872348428, 48.87138112778151], [2.292023152431821, 48.871269894739314], [2.291915459764537, 48.87116406220637], [2.291802739425198, 48.871052828926686], [2.291789265192737, 48.87104895936263]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 68, "roussel_fabien": 8.0, "nb_emargement": 1013.0, "nb_procuration": 62.0, "nb_vote_blanc": 10.0, "jadot_yannick": 32.0, "le_pen_marine": 63.0, "nb_exprime": 1009.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1430.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1022, "quartier_bv": "64", "geo_point_2d": [48.873504654099186, 2.2903833103815248], "melenchon_jean_luc": 113.0, "poutou_philippe": 1.0, "macron_emmanuel": 459.0}, "geometry": {"type": "Point", "coordinates": [2.2903833103815248, 48.873504654099186]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9451280ed2a57f1c2c880b579c7fb1917b43dc9a", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 48, "zemmour_eric": 80.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-8", "geo_shape": {"coordinates": [[[2.357984679924485, 48.82867218124552], [2.35797427588998, 48.82868353753924], [2.357921305304021, 48.82875023487493], [2.357829823568231, 48.82886239466565], [2.357735630342797, 48.82898099191707], [2.35764414780252, 48.829093151542665], [2.357549955099916, 48.82921174863077], [2.357458471755248, 48.82932390809123], [2.357364278213326, 48.829442505008714], [2.357272794064257, 48.82955466430409], [2.357178598320848, 48.82967326104358], [2.357087113367467, 48.829785420173835], [2.356992918146774, 48.82990401674997], [2.356901432388973, 48.830016175715116], [2.356807236328931, 48.83013477212067], [2.356715749755604, 48.83024693181994], [2.356621551505226, 48.83036552714816], [2.356530064127351, 48.830477686682364], [2.356435866388679, 48.83059628274654], [2.356344378217454, 48.830708441216295], [2.356250179639403, 48.8308270371098], [2.356158690663821, 48.83093919541444], [2.356147610322429, 48.83095505553995], [2.356197609774762, 48.830985135261514], [2.356374320626866, 48.831044518516805], [2.356547569981593, 48.83110338103371], [2.356724281621959, 48.83116276466498], [2.356897531764805, 48.83122162666873], [2.357074244215834, 48.83128100887739], [2.357247495146794, 48.83133987036796], [2.357424208386198, 48.83139925295258], [2.357597460105273, 48.83145811393001], [2.357770712226662, 48.8315169737541], [2.357947426662305, 48.83157635555629], [2.358120679560726, 48.8316352157665], [2.358297394807006, 48.83169459614604], [2.358336337433609, 48.83168005629929], [2.35836198811936, 48.831659221486966], [2.358451545767481, 48.831553611238505], [2.358556761446186, 48.83142693079059], [2.358646318300764, 48.83132132037445], [2.3587515330483972, 48.83119463882963], [2.358841090471435, 48.83108902825301], [2.358946302914743, 48.830962346503306], [2.359035859533091, 48.83085673665826], [2.35914107239658, 48.83073005471826], [2.359230626870176, 48.8306244437989], [2.359231489208721, 48.83062355444374], [2.3593515761518002, 48.83051433414], [2.359475328113919, 48.830401699535344], [2.359595414024046, 48.83029247986444], [2.3597191649325993, 48.83017984498517], [2.359839249831881, 48.830070624148505], [2.359963001049144, 48.829957989002], [2.360083084915602, 48.829848768798186], [2.3602068337172533, 48.82973613336975], [2.360203820601559, 48.82972358000403], [2.36005004506685, 48.829649713862416], [2.359899522308747, 48.82957700982611], [2.359745746275374, 48.829503143276334], [2.359595224375883, 48.82943043794825], [2.359441450568156, 48.82935657100483], [2.35929092950518, 48.82928386618359], [2.359137155198793, 48.82920999883196], [2.358986634983272, 48.829137293618274], [2.358832861540475, 48.82906342586571], [2.3586823435346522, 48.828990720266845], [2.358531824597681, 48.82891801356722], [2.358378052445992, 48.82884414521549], [2.358227534345509, 48.828771439022695], [2.358073763057303, 48.82869757027003], [2.357984679924485, 48.82867218124552]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 8, "roussel_fabien": 27.0, "nb_emargement": 1168.0, "nb_procuration": 47.0, "nb_vote_blanc": 14.0, "jadot_yannick": 83.0, "le_pen_marine": 84.0, "nb_exprime": 1148.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1488.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1169, "quartier_bv": "50", "geo_point_2d": [48.83022777005464, 2.358143168056982], "melenchon_jean_luc": 451.0, "poutou_philippe": 12.0, "macron_emmanuel": 294.0}, "geometry": {"type": "Point", "coordinates": [2.358143168056982, 48.83022777005464]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "69e0a1ec27b1a8a10bd2b256721eeb0c7d584490", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 59, "zemmour_eric": 85.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-29", "geo_shape": {"coordinates": [[[2.322263719093833, 48.891902436302416], [2.322248552201005, 48.89190155275901], [2.322202641209596, 48.89191198227939], [2.322157400467331, 48.89192225999296], [2.322148956945161, 48.89192235429027], [2.322119002657058, 48.8919154271939], [2.322113741636482, 48.891917778824606], [2.321938324771169, 48.89188226955508], [2.321753912884002, 48.89184324757511], [2.321578496515186, 48.89180773777607], [2.321394083797788, 48.891768715231606], [2.321218669289251, 48.89173320491081], [2.321034257105509, 48.89169418180955], [2.321033997320519, 48.89169412727632], [2.320826336729786, 48.891649073353285], [2.320641926501835, 48.89161004965256], [2.320434266597422, 48.891564994146925], [2.320249856949467, 48.89152597073873], [2.320042197719649, 48.89148091454968], [2.319857788674971, 48.89144188963547], [2.319673378531202, 48.8914028653274], [2.319497557602145, 48.891364927366645], [2.3193217355536753, 48.891326990037946], [2.319137327594141, 48.891287964008775], [2.319124424431638, 48.89128962004554], [2.319111208702037, 48.89129723953339], [2.319096386551567, 48.89131318753712], [2.319088300715057, 48.89133349330696], [2.319182414620271, 48.89145080321416], [2.3192768402604163, 48.891568503313344], [2.319370955003341, 48.89168581394656], [2.319465382871515, 48.891803512980324], [2.319559497100244, 48.89192082343242], [2.319653925820722, 48.89203852229234], [2.319748042262928, 48.89215583257887], [2.319842470472034, 48.892273531257146], [2.319936587763742, 48.89239084137036], [2.32003101682537, 48.8925085398747], [2.320125134966691, 48.892625849814586], [2.32021956488075, 48.89274354814502], [2.320313683871697, 48.89286085791156], [2.320408114638096, 48.892978556068115], [2.320502234478778, 48.893095865661316], [2.320596666097629, 48.89321356364395], [2.3206907867878552, 48.89333087306382], [2.320785219259271, 48.893448570872515], [2.320879340799152, 48.89356588011907], [2.320973774111311, 48.8936835786531], [2.321067896512587, 48.89380088682698], [2.321162330677133, 48.89391858518712], [2.321179978060292, 48.89392258199365], [2.321363518257439, 48.89386818345458], [2.32154628447221, 48.893814014072866], [2.321729822540082, 48.893759614959286], [2.32191258800425, 48.89370544411393], [2.3220961253067802, 48.89365104443355], [2.322278889997014, 48.89359687392303], [2.322462427897824, 48.89354247368357], [2.322645191825938, 48.893488302608624], [2.322648585787781, 48.89348762932672], [2.322785215208441, 48.893472271800604], [2.322920716140269, 48.893457683854805], [2.32305734541377, 48.89344232511854], [2.323192846191415, 48.893427736864446], [2.323198724509095, 48.8934279535496], [2.323280626407578, 48.893443084385545], [2.323408490546635, 48.89346670727209], [2.3234128230200772, 48.89347683205684], [2.323460186460876, 48.89347531449222], [2.323494347356696, 48.89347327086385], [2.323550316243148, 48.89346992229116], [2.323561062783862, 48.89345666670785], [2.323458725436596, 48.893332693250905], [2.323357617222876, 48.89321020602299], [2.323255280844451, 48.893086232364304], [2.323154172212441, 48.89296374582863], [2.323051836814536, 48.89283977106896], [2.322950730503535, 48.89271728434169], [2.322848396062754, 48.892593310279544], [2.322747289356834, 48.89247082244603], [2.322644955884859, 48.89234684818217], [2.322543850124421, 48.89222436104861], [2.322441518996627, 48.8921003856915], [2.322340414193456, 48.89197789835869], [2.322328309909536, 48.891952540833955], [2.322310060437244, 48.891953561711446], [2.322286275786125, 48.89193744699322], [2.322283385764664, 48.891934513225856], [2.322276071586474, 48.89192244785199], [2.322271144708091, 48.891914322442965], [2.322263719093833, 48.891902436302416]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 29, "roussel_fabien": 21.0, "nb_emargement": 1380.0, "nb_procuration": 80.0, "nb_vote_blanc": 12.0, "jadot_yannick": 137.0, "le_pen_marine": 57.0, "nb_exprime": 1359.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 4, "nb_inscrit": 1706.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1380, "quartier_bv": "68", "geo_point_2d": [48.892618511704825, 2.3213560560010973], "melenchon_jean_luc": 437.0, "poutou_philippe": 6.0, "macron_emmanuel": 497.0}, "geometry": {"type": "Point", "coordinates": [2.3213560560010973, 48.892618511704825]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0d330ffa55b62afd33201ecebc98ee6a5a9fc999", "fields": {"lassalle_jean": 1.0, "pecresse_valerie": 15, "zemmour_eric": 44.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-12", "geo_shape": {"coordinates": [[[2.376979976833088, 48.87206026672861], [2.376938042343983, 48.872041440288804], [2.376763667734424, 48.87197891806524], [2.376595904215065, 48.871919366347015], [2.376428142431907, 48.87185981529684], [2.376253769042402, 48.87179729232023], [2.37608600669107, 48.87173773987761], [2.375911635484162, 48.871675216402764], [2.37574387390638, 48.87161566437331], [2.375569503518798, 48.87155314039318], [2.375401742736018, 48.87149358697837], [2.375227371804617, 48.87143106248582], [2.37505961315863, 48.87137150949132], [2.37488524304656, 48.8713089844935], [2.374717483832439, 48.8712494301065], [2.374543115902853, 48.87118690461052], [2.374375357462362, 48.871127350636755], [2.374212365707602, 48.871064944363155], [2.374211109361093, 48.87106443866258], [2.374098219092402, 48.87101329485004], [2.373941012282581, 48.87094750546077], [2.373758734533771, 48.87087957916981], [2.373601527193038, 48.870813789319605], [2.373600789021726, 48.87081350126587], [2.373418512185498, 48.87074557444858], [2.3732596771074093, 48.87068800815439], [2.373077401144214, 48.870620081709184], [2.372918566836583, 48.87056251405653], [2.372909581831252, 48.870538921417534], [2.372892709578863, 48.87055320084476], [2.372838036396119, 48.87055362576561], [2.372817325252856, 48.87059970724056], [2.372703125033484, 48.870609195772495], [2.3726541017629073, 48.87061286355369], [2.372629320025755, 48.8706187295516], [2.372631022194467, 48.87063519096083], [2.372553107009943, 48.87074634001852], [2.372475390397849, 48.87085716089944], [2.372397473186076, 48.870968309826324], [2.372319755911694, 48.87107913058394], [2.372241839398941, 48.87119027939432], [2.372164121462266, 48.871301100028624], [2.372086202911296, 48.871412249607474], [2.372008485686413, 48.871523069226384], [2.371930566471301, 48.87163421868159], [2.371852847220958, 48.87174503816997], [2.371858258532133, 48.87175654660456], [2.371895492256228, 48.87177113498024], [2.371933593897767, 48.871784524585166], [2.371938956799347, 48.87179699685084], [2.371837723553813, 48.87191135683236], [2.371730050545425, 48.87203184517432], [2.371628817748084, 48.872146204962036], [2.371521143771004, 48.872266693090424], [2.37153633487977, 48.872279960722615], [2.371705372337409, 48.872250816558], [2.371920314622639, 48.87221363733654], [2.372089350286925, 48.87218449262083], [2.372304293387767, 48.8721473127148], [2.372473328621869, 48.872118167455085], [2.372688269822497, 48.872080985950895], [2.372857305989776, 48.87205184015438], [2.372868910484685, 48.8720533282009], [2.373031851613387, 48.872133430423496], [2.373187274902087, 48.872209982038626], [2.373342697295166, 48.87228653254025], [2.373505639881969, 48.87236663410103], [2.373661064573633, 48.87244318418553], [2.373824008140164, 48.87252328530155], [2.373979432403858, 48.872599834954705], [2.374142378313206, 48.87267993563312], [2.374297803512211, 48.87275648486202], [2.374460749037908, 48.872836585088585], [2.374461078346877, 48.87284174540039], [2.374492545440557, 48.87285449874257], [2.374496834489817, 48.872858023169314], [2.37456935082353, 48.87296444817226], [2.374642500462284, 48.873071974516954], [2.374715017391487, 48.87317839941106], [2.374788166257319, 48.87328592653808], [2.374860683782017, 48.873392351323275], [2.374933834623125, 48.873499877448296], [2.375006352743328, 48.87360630212461], [2.375079504174833, 48.87371382903904], [2.375108339691617, 48.873737001654334], [2.375132622571581, 48.87373849720492], [2.375156086351849, 48.8737174664248], [2.375260550601046, 48.87362383329637], [2.375373097073986, 48.87352287938725], [2.3754856444738612, 48.87342192537024], [2.375613570948773, 48.87330726105153], [2.375726116053369, 48.8732063067816], [2.375854042832546, 48.873091642190616], [2.375966587005281, 48.872990687674886], [2.376094511362238, 48.8728760227974], [2.376155423290847, 48.872821383656216], [2.376168133825924, 48.8728171717585], [2.37617988671829, 48.87280742934957], [2.376231519358169, 48.872761113725154], [2.376362162068235, 48.87263953422539], [2.376474704279198, 48.872538579190575], [2.376605345874262, 48.87241699850159], [2.376717887133186, 48.87231604321781], [2.376848527602489, 48.872194462238895], [2.3769610679091793, 48.8720935067061], [2.376979976833088, 48.87206026672861]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 12, "roussel_fabien": 16.0, "nb_emargement": 1216.0, "nb_procuration": 98.0, "nb_vote_blanc": 12.0, "jadot_yannick": 157.0, "le_pen_marine": 41.0, "nb_exprime": 1199.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1579.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "40", "geo_point_2d": [48.87198520594471, 2.3743171344434733], "melenchon_jean_luc": 582.0, "poutou_philippe": 6.0, "macron_emmanuel": 300.0}, "geometry": {"type": "Point", "coordinates": [2.3743171344434733, 48.87198520594471]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "74c1f3780df58d7267afd3dded38eed3d82935a9", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 148, "zemmour_eric": 271.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "16-59", "geo_shape": {"coordinates": [[[2.275767169851129, 48.86828932154005], [2.275771674965379, 48.86830602093628], [2.275850309781504, 48.86841331062521], [2.2759325166699442, 48.86852971967433], [2.2760111521550233, 48.86863700923587], [2.276093361131481, 48.868753417259974], [2.276163879285969, 48.86885627507392], [2.276246087586585, 48.86897268296177], [2.276316606326973, 48.86907554156464], [2.276398815314921, 48.86919194932452], [2.2764693346662073, 48.8692948069177], [2.276551544341494, 48.869411214549565], [2.276622064291189, 48.86951407203238], [2.276622135127807, 48.86951417408684], [2.276704346853954, 48.86963058159893], [2.27678512542351, 48.869744585416946], [2.276867336501955, 48.86986099368384], [2.276948117161113, 48.86997499647712], [2.277030328967444, 48.87009140460777], [2.277111108977531, 48.87020540725901], [2.277193322874862, 48.87032181526172], [2.277274103586511, 48.87043581867844], [2.277356318224329, 48.87055222564565], [2.277437099650025, 48.870666228928634], [2.277519313652439, 48.87078263575137], [2.277600097155414, 48.87089663890876], [2.277682311885846, 48.87101304559526], [2.277763096102895, 48.871127048618916], [2.277780595782213, 48.871131566404344], [2.277974239351986, 48.871079442959996], [2.278170288285922, 48.87102745422037], [2.278363931078808, 48.87097533014066], [2.278559980595183, 48.87092334076608], [2.278753622610973, 48.87087121605106], [2.278949669995774, 48.870819225125835], [2.279143311234665, 48.87076709977547], [2.279339357826216, 48.87071510910639], [2.279345137590842, 48.87071643896461], [2.279381383339366, 48.87069864686481], [2.27948557556699, 48.870580981201606], [2.279586293219731, 48.87046600605684], [2.279690485869928, 48.870348341097994], [2.279791201257462, 48.87023336574839], [2.2798953929918993, 48.870115699687105], [2.279996108840455, 48.870000724149094], [2.280096822881207, 48.86988574850618], [2.280201013217557, 48.86976808304116], [2.280301726356245, 48.869653107201614], [2.280405915776956, 48.86953544063418], [2.280506629376779, 48.86942046460624], [2.280610817856805, 48.86930279873497], [2.280711529191397, 48.869187822502234], [2.280815716755696, 48.869070155528554], [2.280916427175842, 48.8689551799985], [2.281020613812006, 48.86883751282172], [2.281018044214966, 48.86882634097107], [2.2808859133942843, 48.868746605990744], [2.280755774100224, 48.86866681537279], [2.280623644097941, 48.86858707919217], [2.280493505591823, 48.86850728917685], [2.280491092056186, 48.86849607957692], [2.280583832032549, 48.86839397190123], [2.2806728632247832, 48.86829742051704], [2.280765601128024, 48.868195312674], [2.280854631631514, 48.868098762036546], [2.280947368824806, 48.86799665403432], [2.281036398651776, 48.867900103244324], [2.281077840372629, 48.867858865205555], [2.281051469124352, 48.867844502481645], [2.28096778333898, 48.86772278818946], [2.280904657514628, 48.86763143886918], [2.28084153054853, 48.86754008949984], [2.280757845730385, 48.86741837592665], [2.280757801629211, 48.86741831180785], [2.280673838703251, 48.86729929273885], [2.280587414166819, 48.86718560543321], [2.280503451992795, 48.86706658711894], [2.28041702821427, 48.86695289966635], [2.2803330668045882, 48.866833881207505], [2.280246643783964, 48.866720193607996], [2.280219948866264, 48.86668235210042], [2.2802119593070582, 48.866674840345084], [2.280136480284598, 48.86668872742712], [2.279935041215603, 48.86675111681517], [2.279733736812784, 48.86681368924206], [2.279532296765808, 48.866876078844534], [2.279330992759371, 48.866938650595195], [2.279129550396267, 48.86700103860528], [2.2789282454232023, 48.8670636096715], [2.27892776475859, 48.867063766859935], [2.278742956428912, 48.867126966716775], [2.27855497589692, 48.86719111756449], [2.27837016665083, 48.867254317737704], [2.278182186563349, 48.867318468000796], [2.277997376425557, 48.867381666691806], [2.27780939405643, 48.86744581635379], [2.277624583014581, 48.86750901446193], [2.277436601077402, 48.86757316443857], [2.277251789131601, 48.86763636196381], [2.277063804925142, 48.86770051044], [2.277037642896059, 48.867699249811174], [2.277021570770991, 48.86771307106228], [2.276866196201691, 48.86778407498593], [2.276712498696493, 48.86785434058172], [2.276557121921415, 48.86792534408683], [2.276403424958154, 48.86799560838577], [2.276248047340442, 48.86806661148061], [2.276094348167837, 48.8681368762647], [2.27593897107064, 48.86820787895747], [2.275785271064329, 48.86827814333568], [2.275767169851129, 48.86828932154005]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 59, "roussel_fabien": 5.0, "nb_emargement": 1257.0, "nb_procuration": 51.0, "nb_vote_blanc": 10.0, "jadot_yannick": 48.0, "le_pen_marine": 71.0, "nb_exprime": 1245.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1536.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1258, "quartier_bv": "63", "geo_point_2d": [48.86883128158596, 2.2786239507681785], "melenchon_jean_luc": 53.0, "poutou_philippe": 1.0, "macron_emmanuel": 616.0}, "geometry": {"type": "Point", "coordinates": [2.2786239507681785, 48.86883128158596]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "619b4aa7246e0e6ae78ecedb6d80cd8267746292", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 17, "zemmour_eric": 26.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-33", "geo_shape": {"coordinates": [[[2.372450360997428, 48.84015615094252], [2.372458051720241, 48.84014307228635], [2.372511216614016, 48.84010344376185], [2.372662336228529, 48.839988804079425], [2.372796352886692, 48.83988890861405], [2.372930367679546, 48.83978901208314], [2.373081485460519, 48.839674371838946], [2.3730822313557463, 48.839673754288285], [2.373203941120949, 48.83956383250272], [2.373324322481785, 48.83945443335072], [2.37344603122431, 48.83934451129725], [2.37356641157049, 48.83923511188016], [2.37368811929035, 48.839125189558814], [2.373808498621884, 48.83901578987661], [2.373930205319088, 48.838905867287366], [2.374050583635986, 48.83879646734008], [2.374172289310545, 48.838686544482975], [2.374292666612821, 48.83857714427061], [2.374413043409885, 48.83846774392636], [2.374534748914794, 48.83835782067527], [2.374655124697146, 48.838248420065966], [2.374776827817147, 48.83813849653989], [2.374776852630893, 48.8381384723868], [2.3748270804248612, 48.838095317212215], [2.374758483164997, 48.83805336938176], [2.3745974157504373, 48.83797599058681], [2.374433047815517, 48.837894281854815], [2.374271981375661, 48.837816902610626], [2.37410761444165, 48.83773519431918], [2.373946547625024, 48.837657813719346], [2.373782183065184, 48.837576104976186], [2.373621117212457, 48.83749872482647], [2.373456752312852, 48.83741701471808], [2.373295688797087, 48.8373396341263], [2.373131324898566, 48.83725792445842], [2.372970262357488, 48.83718054341747], [2.372805899481474, 48.83709883239151], [2.372644837915184, 48.83702145090137], [2.372488605418334, 48.8369466559124], [2.372327544793188, 48.836869273984426], [2.37217131321857, 48.83679447767158], [2.372010253534667, 48.83671709530592], [2.371854022860617, 48.83664229946771], [2.371692964117951, 48.8365649166643], [2.371536734355296, 48.83649012040155], [2.371375676553966, 48.836412737160394], [2.371219449075783, 48.83633793958089], [2.371058390853353, 48.83626055589485], [2.370902164275709, 48.83618575879009], [2.370741106994511, 48.83610837466629], [2.37058488132835, 48.83603357713693], [2.370423824988281, 48.835956192575395], [2.370267600244362, 48.83588139372217], [2.370111374575606, 48.83580659555207], [2.369950321002117, 48.835729210344454], [2.369794097607055, 48.835654411756956], [2.369633043612468, 48.835577026104446], [2.369476821139656, 48.83550222619306], [2.36931576808629, 48.83542484010284], [2.36915954651397, 48.83535004066623], [2.368998494401922, 48.835272654138265], [2.3689595704629482, 48.83526440845074], [2.368922794077662, 48.83529292310931], [2.368886559609413, 48.83542228031436], [2.368850000876562, 48.83554836118955], [2.368813767412325, 48.83567771835024], [2.368777206962037, 48.8358037991672], [2.368740973139595, 48.83593315627627], [2.368704413696301, 48.83605923704939], [2.368668179504762, 48.836188595006185], [2.368631618354901, 48.83631467482175], [2.368595383805146, 48.83644403272695], [2.3685588236513873, 48.83657011339797], [2.368522588754411, 48.83669947035227], [2.368486026883067, 48.83682555096505], [2.368449791627866, 48.836954907867764], [2.368413230763624, 48.83708098843668], [2.368380257986154, 48.837193718862125], [2.368343696786217, 48.837319799382854], [2.368310723696402, 48.83743253066437], [2.368274162171666, 48.83755861023762], [2.368241190142665, 48.837671341483066], [2.3682143510468032, 48.837763890976426], [2.368195621921522, 48.83779511423317], [2.368199142464581, 48.837799385025406], [2.368189418321229, 48.837832915047635], [2.368188891774984, 48.83783420465372], [2.368123516238422, 48.83795718022609], [2.368057447514393, 48.83808134194814], [2.367992071357747, 48.8382043174215], [2.367926002007253, 48.83832847904349], [2.367860625230617, 48.838451454417815], [2.367794555253749, 48.83857561593978], [2.367729177867921, 48.83869859031577], [2.367663107264673, 48.83882275173762], [2.367597729247829, 48.83894572691387], [2.367531658018191, 48.839069888235684], [2.367466279381229, 48.83919286331289], [2.367400207525192, 48.83931702453462], [2.367334828268104, 48.839439999512784], [2.367268755796578, 48.83956415973517], [2.367203375919356, 48.83968713461428], [2.367137304172923, 48.83981129564307], [2.367071922313134, 48.839934270415945], [2.367005849940284, 48.840058431344644], [2.366940467460336, 48.84018140601844], [2.36687439446106, 48.8403055668471], [2.366809011371871, 48.84042854052253], [2.366742937746161, 48.840552701251084], [2.366677554025874, 48.84067567572676], [2.366611479773721, 48.84079983635524], [2.3665460967956022, 48.84092281073903], [2.366480020554644, 48.84104697126025], [2.366414636956342, 48.841169945544955], [2.36634856009985, 48.841294105066744], [2.366283175881354, 48.841417079252416], [2.366217098387455, 48.841541239573395], [2.366151713548757, 48.84166421365999], [2.366085635428374, 48.84178837388088], [2.3660202499694662, 48.841911347868354], [2.36595417122259, 48.842035507989166], [2.365888785154404, 48.84215848097829], [2.365822705781028, 48.84228264099893], [2.365757319081676, 48.84240561478829], [2.365691239081789, 48.84252977470887], [2.3656258517622, 48.8426527483991], [2.365559771135796, 48.842776908219555], [2.365494383195963, 48.842899881810695], [2.365428301943032, 48.84302404153103], [2.365362913393897, 48.84314701412378], [2.36529683151433, 48.843271173744], [2.365231442334085, 48.84339414713694], [2.365165359827975, 48.84351830665704], [2.36509997002746, 48.84364127995087], [2.365033886894798, 48.843765439370834], [2.364968496484963, 48.843888411666285], [2.364902412725741, 48.84401257098609], [2.364810706512178, 48.84404715735081], [2.364814331532489, 48.844065116134615], [2.364858916936097, 48.84412529250543], [2.364895143567318, 48.84421548918689], [2.3649835454248462, 48.84433480438318], [2.364986972382852, 48.844337712216976], [2.365155654407847, 48.84443710715608], [2.365309477290173, 48.844523226708546], [2.365478160530666, 48.84462262117639], [2.365631984493551, 48.844708740299865], [2.365800668949445, 48.84480813429644], [2.365954493992795, 48.84489425299093], [2.366023035887259, 48.844926576768316], [2.366095300602782, 48.844875661142254], [2.366228817511015, 48.84477389282851], [2.366362858815685, 48.84467400409997], [2.366496376058325, 48.844572234577136], [2.366630414958061, 48.844472346422855], [2.366764453354927, 48.844372457210156], [2.36689796902983, 48.844270688110896], [2.367032006395263, 48.84417079858038], [2.36716552104213, 48.84406902826485], [2.367299557365218, 48.84396913931579], [2.367433070973032, 48.84386736868326], [2.367567107627241, 48.843767479423605], [2.367700618833482, 48.84366570846687], [2.367834654467194, 48.84356581799006], [2.367968165986018, 48.84346404762288], [2.3681021992258042, 48.8433641568211], [2.368235709705607, 48.8432623861369], [2.368369741914007, 48.84316249501732], [2.368503251354697, 48.84306072401614], [2.368637282531716, 48.84296083257877], [2.368770790933505, 48.842859061260604], [2.368904821079154, 48.84275916950545], [2.369033690275191, 48.84266448825088], [2.3691677194057172, 48.84256459708301], [2.369296586280575, 48.842469915521576], [2.369425452676448, 48.84237523471258], [2.369559480323172, 48.84227534218059], [2.369688347133648, 48.842180660179785], [2.369822373776154, 48.8420807673359], [2.369951238254609, 48.84198608592749], [2.37008526389291, 48.84188619277166], [2.3702141287752, 48.841791511070745], [2.370348153409302, 48.84169161760293], [2.370477015981337, 48.841596934695865], [2.37061103961125, 48.841497040916174], [2.370739901213792, 48.841402358608704], [2.37087392520199, 48.84130246452423], [2.37100278584591, 48.841207781917106], [2.371136807467468, 48.84110788751351], [2.371265667163624, 48.841013203707405], [2.371399689143472, 48.8409133089991], [2.371528547870169, 48.84081862579261], [2.371662567483405, 48.84071873076524], [2.371791425251506, 48.84062404725907], [2.37192544522304, 48.84052415192688], [2.372054302043385, 48.840429467221796], [2.37218831964833, 48.840329571570585], [2.372317175499257, 48.84023488746511], [2.372398028480192, 48.84017462090516], [2.372450360997428, 48.84015615094252]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 33, "roussel_fabien": 6.0, "nb_emargement": 444.0, "nb_procuration": 12.0, "nb_vote_blanc": 9.0, "jadot_yannick": 19.0, "le_pen_marine": 35.0, "nb_exprime": 431.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 694.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 444, "quartier_bv": "49", "geo_point_2d": [48.8398370420721, 2.369500615610428], "melenchon_jean_luc": 192.0, "poutou_philippe": 3.0, "macron_emmanuel": 108.0}, "geometry": {"type": "Point", "coordinates": [2.369500615610428, 48.8398370420721]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f195e345cff17b5b2d48793b3b4eaf681911f06c", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 53, "zemmour_eric": 54.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "13-2", "geo_shape": {"coordinates": [[[2.35489554894409, 48.83591008132773], [2.354922422749195, 48.83590320220225], [2.355120561036322, 48.83594236422688], [2.355317663776487, 48.83598211122338], [2.355515802660598, 48.83602127259053], [2.355712904638185, 48.83606101892564], [2.355911045481394, 48.836100179642614], [2.356108148058822, 48.836139925323636], [2.3563062894989, 48.83617908538318], [2.356503392664857, 48.83621883130939], [2.35670153335067, 48.83625798980482], [2.356898638478688, 48.83629773508425], [2.357096779750154, 48.83633689382153], [2.35729388548899, 48.83637663754758], [2.357492027357403, 48.83641579562732], [2.357689133695952, 48.836455538699276], [2.357887276161101, 48.836494696121584], [2.358084383099355, 48.83653443853939], [2.358100555509508, 48.83652984952069], [2.358190827738342, 48.836410301728364], [2.358256347064051, 48.83631137035235], [2.358251169840933, 48.83629964900609], [2.358069560781263, 48.83622761730757], [2.357891778271001, 48.836157319162275], [2.357710170214829, 48.83608528600964], [2.357532387312363, 48.83601498731392], [2.3573507802488223, 48.83594295360651], [2.357172999678703, 48.83587265437498], [2.356991393596596, 48.83580062101204], [2.356813612634375, 48.83573032123012], [2.356632007555786, 48.835658286413086], [2.356454228926006, 48.83558798609538], [2.356272624828938, 48.83551595162287], [2.35609484580686, 48.83544565075474], [2.356093490996317, 48.83544503818676], [2.355944289261711, 48.835368152861136], [2.355789318620193, 48.83528870724829], [2.355640117781591, 48.83521182153254], [2.355485146706118, 48.835132375507115], [2.355335946763621, 48.8350554894012], [2.355180977978793, 48.83497604297799], [2.355177959585148, 48.834963989559846], [2.355281173945232, 48.83486065271211], [2.355397470970793, 48.83474561084249], [2.355500683089914, 48.834642274677165], [2.355616979143832, 48.834527232571645], [2.355720190406438, 48.83442389529743], [2.355836485488822, 48.834308852956056], [2.35593969587279, 48.83420551637156], [2.356055989994662, 48.83409047289502], [2.356159199511116, 48.833987136100966], [2.356275492650265, 48.83387209328789], [2.3563787012992172, 48.833768756284265], [2.356494993477866, 48.83365371233597], [2.3565982026215853, 48.83355037513014], [2.356617542080424, 48.8335466343578], [2.356628820411381, 48.83352988761064], [2.356610269434217, 48.83350120316531], [2.356532802416928, 48.83338032938091], [2.356448834972283, 48.83325050060757], [2.356445508302512, 48.83324740146775], [2.356303922699511, 48.83316176425071], [2.356138783405247, 48.833059339239526], [2.356124390457592, 48.83305063320452], [2.356120095638085, 48.833044080659256], [2.356120064800991, 48.832964630162074], [2.356123223444448, 48.83287820602699], [2.356121403027501, 48.832873493421616], [2.356029308061879, 48.83275847992305], [2.355930225685651, 48.832645165396286], [2.355928832926444, 48.832642448094006], [2.355894676970294, 48.832507849684895], [2.355867459043611, 48.83239102779521], [2.35584024125003, 48.83227420498778], [2.355806085752782, 48.832139607408436], [2.355778866865785, 48.83202278455352], [2.355744711702845, 48.83188818602707], [2.355717494435759, 48.831771364038616], [2.355683339595905, 48.83163676546448], [2.355656122597717, 48.83151994343581], [2.35565310367796, 48.83151940193887], [2.355597029554355, 48.831570218281534], [2.355574404273118, 48.83172465507717], [2.355554182330923, 48.8318710149574], [2.355531556792202, 48.83202545170347], [2.355511334613026, 48.83217181153719], [2.35550948293178, 48.83217558431183], [2.355424950520136, 48.83226962833212], [2.355303724186092, 48.83240455054705], [2.355219191031966, 48.83249859440271], [2.355097963621795, 48.832633517280776], [2.355013429725179, 48.83272756097174], [2.355012689155968, 48.832728509411126], [2.354930622550697, 48.832850918984256], [2.354850470387151, 48.8329719447928], [2.354768403006589, 48.83309435512735], [2.354688250092126, 48.833215380800894], [2.35460618194739, 48.83333779099749], [2.354526028282, 48.833458816536016], [2.354443958010819, 48.83358122658735], [2.354363804967789, 48.83370225109887], [2.354283650179275, 48.83382327643559], [2.354201578765132, 48.83394568628075], [2.354121424587937, 48.83406671148977], [2.354039352409578, 48.834189121197014], [2.353959196119147, 48.83431014626362], [2.353877124538843, 48.83443255584028], [2.3537969674973382, 48.83455358077183], [2.353714895163955, 48.834675989311236], [2.353634737371573, 48.834797014107814], [2.353552664262802, 48.83491942340854], [2.353554964357737, 48.83492905638486], [2.35368893301306, 48.83502801118266], [2.353820366793263, 48.83512388977538], [2.353954337815442, 48.83522284426602], [2.354085772575067, 48.83531872255037], [2.354219743239609, 48.83541767671915], [2.354351178989698, 48.835513553795906], [2.354482615212257, 48.83560943161929], [2.354616587377295, 48.83570838531789], [2.354748024590425, 48.83580426193363], [2.354881999111133, 48.83590321622437], [2.35489554894409, 48.83591008132773]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 2, "roussel_fabien": 31.0, "nb_emargement": 1136.0, "nb_procuration": 51.0, "nb_vote_blanc": 16.0, "jadot_yannick": 99.0, "le_pen_marine": 74.0, "nb_exprime": 1118.0, "nb_vote_nul": 2.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1448.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "49", "geo_point_2d": [48.83446795228585, 2.355427482099909], "melenchon_jean_luc": 398.0, "poutou_philippe": 8.0, "macron_emmanuel": 342.0}, "geometry": {"type": "Point", "coordinates": [2.355427482099909, 48.83446795228585]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "14e63e73d39b5194a417532c9e8dd1e3e8443ed4", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 86, "zemmour_eric": 74.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "9-16", "geo_shape": {"coordinates": [[[2.328669006883791, 48.88075248824939], [2.328629644811415, 48.880760314757744], [2.328440572226513, 48.88076066267449], [2.328252170905264, 48.88076076854102], [2.328063098304594, 48.88076111676092], [2.327874696980836, 48.88076122203341], [2.327685624387608, 48.880761568757926], [2.327497223049944, 48.880761674335666], [2.327308150452463, 48.880762020464026], [2.32711974776053, 48.88076212454082], [2.327067573536651, 48.88077035966964], [2.327062995373592, 48.88077853676068], [2.327064461663372, 48.8808111089831], [2.327069301306119, 48.88093159385734], [2.327075112554157, 48.88106067641304], [2.327079953608241, 48.881181161267214], [2.327085764910427, 48.881310243793195], [2.327090604648948, 48.8814307286119], [2.327096417368895, 48.88155981111574], [2.327101257155152, 48.88168029590671], [2.327105166909924, 48.88176712241347], [2.327110089853369, 48.881784717654924], [2.327165123299927, 48.88178903258323], [2.327327523836311, 48.88179817225735], [2.327562322523027, 48.8818098920554], [2.327724724569394, 48.881819030298956], [2.327959523439533, 48.881830749317814], [2.3281219242570153, 48.88183988701478], [2.328130622635025, 48.881842634727576], [2.328259306440148, 48.881931437480176], [2.328388910606832, 48.882020279422456], [2.32851759391622, 48.88210908277469], [2.328647198965626, 48.882197924423025], [2.328775883165998, 48.882286726584084], [2.328905490461564, 48.8823755679461], [2.329034175529845, 48.88246437071449], [2.329163782344617, 48.882553211774926], [2.329292468292303, 48.8826420142513], [2.329422077353358, 48.88273085502544], [2.329550764191936, 48.882819656310616], [2.3296803727722972, 48.88290849678315], [2.329692218428633, 48.88291115587826], [2.329865852400556, 48.882894008143424], [2.330088045239534, 48.88287322517699], [2.330261680329864, 48.8828560759759], [2.330483872849027, 48.88283529227417], [2.330657506307325, 48.882818143390075], [2.330879698506671, 48.88279735895304], [2.331053333071791, 48.88278020950197], [2.331061526587503, 48.88277727399678], [2.331196479435577, 48.882676654352494], [2.33133507266092, 48.88257220753919], [2.331470023085529, 48.88247158756022], [2.331608615216511, 48.88236714041082], [2.331743565944739, 48.88226652011236], [2.331882156981266, 48.882162072626826], [2.33190304457878, 48.88214794196641], [2.331908030955918, 48.882126708676715], [2.331883856365048, 48.88200399836675], [2.331850598179189, 48.88185658663905], [2.331826423849037, 48.88173387628739], [2.331793164646275, 48.881586463600705], [2.3317689905653, 48.88146375410656], [2.331735733061021, 48.88131634137537], [2.331718732151085, 48.88123004090912], [2.331705168465485, 48.881215602846595], [2.331667365517034, 48.8812178703825], [2.331525930085596, 48.881245035616374], [2.331388894712787, 48.881269550640035], [2.3312474590072902, 48.8812967146444], [2.331110423367312, 48.88132122934819], [2.331102449935429, 48.8813210615912], [2.330926501798422, 48.88128145745623], [2.330729602503194, 48.881236232020306], [2.330553654924866, 48.8811966282336], [2.33035675491064, 48.881151402173415], [2.33018080791391, 48.881111796936466], [2.329983909907805, 48.88106657026725], [2.329807963469649, 48.88102696537855], [2.329611064744463, 48.88098173808502], [2.329435118888131, 48.88094213174607], [2.329238222170968, 48.88089690384352], [2.329062276873106, 48.880857297852835], [2.3288653794370813, 48.88081206932597], [2.328689436084456, 48.880772461892725], [2.328669006883791, 48.88075248824939]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 16, "roussel_fabien": 13.0, "nb_emargement": 1198.0, "nb_procuration": 90.0, "nb_vote_blanc": 9.0, "jadot_yannick": 110.0, "le_pen_marine": 55.0, "nb_exprime": 1186.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1435.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1198, "quartier_bv": "33", "geo_point_2d": [48.881741469786846, 2.329562055143736], "melenchon_jean_luc": 256.0, "poutou_philippe": 4.0, "macron_emmanuel": 547.0}, "geometry": {"type": "Point", "coordinates": [2.329562055143736, 48.881741469786846]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f853db22cb84144470640e0f70d5e579ee0a61d8", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 45, "zemmour_eric": 97.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 28.0, "date_tour": "2022-04-10", "id_bvote": "13-20", "geo_shape": {"coordinates": [[[2.37048459660303, 48.818361244369875], [2.370439796262135, 48.81833989824226], [2.370269469375441, 48.81828396373827], [2.370040601861919, 48.8182087499463], [2.3698702744699602, 48.818152814859985], [2.369704134207811, 48.81809821379452], [2.3695338075378363, 48.81804227822344], [2.369367666607455, 48.817987677577264], [2.369197342021317, 48.8179317415286], [2.369031201795534, 48.81787714040952], [2.369005068409506, 48.81786855101894], [2.368834744601439, 48.817812614447824], [2.368697954725819, 48.81776765805071], [2.368527630214999, 48.81771172102992], [2.368364480456148, 48.817660069440045], [2.368194156654473, 48.81760413193887], [2.368031007562559, 48.81755247988903], [2.367860684470031, 48.81749654190753], [2.3676975360341492, 48.81744489029704], [2.367527213661573, 48.817388950935865], [2.367339082422236, 48.81732938882463], [2.36733482783124, 48.817328042423135], [2.367164507580341, 48.817272103445994], [2.366984146907098, 48.817215001229044], [2.366942305240288, 48.81721219847784], [2.366933038272629, 48.81722570938747], [2.366847098709123, 48.81733839832082], [2.366755963570951, 48.81745643167152], [2.366670023255453, 48.81756911955518], [2.366578885951381, 48.81768715273947], [2.366492944862136, 48.81779984137209], [2.366401808126671, 48.817917873505124], [2.366315866274495, 48.81803056198738], [2.366224727362271, 48.81814859485334], [2.366138786119844, 48.818261282293136], [2.366047646403533, 48.81837931499993], [2.365961703025463, 48.818492003181454], [2.365870562515884, 48.81861003482977], [2.365784619736726, 48.8187227228681], [2.3656934784122052, 48.81884075525658], [2.365607533519042, 48.818953442238005], [2.365516392752285, 48.8190714744745], [2.365430447085203, 48.81918416220486], [2.365339304152434, 48.81930219427494], [2.36525335773341, 48.8194148809556], [2.365162215358295, 48.81953291287377], [2.365076268165327, 48.81964560030331], [2.364985123635222, 48.81976363115574], [2.364899177041049, 48.81987631844215], [2.364808031695835, 48.819994350034655], [2.364750924507155, 48.82006922398867], [2.364736249581307, 48.82008629898969], [2.364735278392521, 48.82009200848668], [2.364706436838158, 48.82012982165695], [2.364682855510298, 48.82016157307026], [2.364671547778451, 48.82019537911841], [2.364744800224012, 48.82021674542679], [2.364798587214104, 48.82035014468707], [2.364852460083171, 48.820480094343914], [2.364906248982275, 48.820613493531724], [2.364960122391647, 48.82074344310962], [2.365013910475929, 48.82087684221058], [2.365067784425711, 48.821006791709564], [2.3651215730572, 48.82114019073084], [2.365175448909242, 48.82127014015809], [2.365229238087848, 48.821403539099684], [2.365283113118482, 48.82153348844078], [2.365336902844108, 48.8216668873027], [2.365390778415176, 48.82179683656482], [2.365444570049992, 48.8219302353543], [2.365498446161507, 48.822060184537484], [2.365552236981404, 48.82219358324007], [2.365606113633371, 48.82232353234431], [2.365613857396247, 48.82232941578266], [2.36577118376588, 48.82237538647536], [2.365977421242766, 48.822434115845866], [2.366134748237825, 48.82248008695532], [2.36634098790043, 48.82253881570051], [2.366498315531957, 48.82258478632737], [2.366704554656124, 48.82264351443284], [2.366861882935136, 48.82268948367778], [2.36688094645037, 48.822709419473775], [2.36690113947945, 48.822706778787], [2.366939185661328, 48.82268735310357], [2.366975749171383, 48.82266911033428], [2.367001781636821, 48.82266497969596], [2.367009017241141, 48.822649012682035], [2.367109859255594, 48.8225986992539], [2.367297178247505, 48.82250899281904], [2.367434581540278, 48.82244043622115], [2.3676219007669053, 48.8223507292722], [2.36775930321555, 48.822282172291544], [2.3677646516900612, 48.82227309257535], [2.367720768553148, 48.82213122299571], [2.367686641412763, 48.82201510738213], [2.367652514435385, 48.821898990847465], [2.367608631918438, 48.82175712117948], [2.367574505272731, 48.821641005495245], [2.367530624547105, 48.82149913577329], [2.367496496892934, 48.82138301913361], [2.36745261659657, 48.82124114935048], [2.367418490636001, 48.821125033568414], [2.367437175966159, 48.82111503959209], [2.367609963881482, 48.82116341371039], [2.367801452437102, 48.82121695444244], [2.367974239666165, 48.821265328022804], [2.368165730332053, 48.82131886817386], [2.368338518247687, 48.82136724032415], [2.368530009661796, 48.82142077988703], [2.368702798242202, 48.82146915240587], [2.368894289042788, 48.821522691373374], [2.36906707966081, 48.82157106336864], [2.3692585712205902, 48.82162460084862], [2.369431361152325, 48.82167297230597], [2.369622854811487, 48.82172651010421], [2.369795645418883, 48.8217748810308], [2.369987139826254, 48.82182841824085], [2.370159931109307, 48.821876788636644], [2.370332722713053, 48.82192515878068], [2.370524218234652, 48.82197869422421], [2.370541772673827, 48.8219743509023], [2.370619013138847, 48.82186963194363], [2.370697830873719, 48.82176194878497], [2.370716327323263, 48.82175786581774], [2.370893450394445, 48.821818077568835], [2.37107244052008, 48.821878910448675], [2.371249564424429, 48.82193912076646], [2.37142855538106, 48.821999953106676], [2.371447168266257, 48.821995704254405], [2.371513618198491, 48.82190941740846], [2.371592440588028, 48.82179588774476], [2.371586172967079, 48.82178410264249], [2.371416118335701, 48.821727711857605], [2.371255803395313, 48.82167395594968], [2.371095487423636, 48.82162019981709], [2.370925435208493, 48.82156380923266], [2.370765119916079, 48.821510052651895], [2.370595068417459, 48.821453661592166], [2.370577289977054, 48.821457056699096], [2.370476902758761, 48.82156706716577], [2.37037920436883, 48.82167702514341], [2.370361264348541, 48.82168048412241], [2.370192150488237, 48.82162347146915], [2.370035538237461, 48.82156944561284], [2.369866426455403, 48.82151243250047], [2.369709814886414, 48.82145840531292], [2.3695532036312033, 48.82140437881697], [2.369384092911914, 48.82134736501412], [2.369377075240562, 48.821337167731876], [2.369425013770472, 48.82121092302149], [2.36947733658458, 48.821054136029936], [2.369525275973459, 48.82092789125472], [2.369568099202392, 48.820815750506874], [2.369616038152246, 48.82068950566855], [2.369658860990199, 48.8205773648644], [2.36965254054777, 48.82056740600435], [2.36952390612225, 48.82051763705114], [2.369398596406306, 48.820468217360244], [2.369269962467869, 48.820418448129466], [2.369144651869064, 48.82036902816096], [2.369138682181165, 48.820364085158374], [2.369070966028194, 48.82022640981893], [2.369009444085319, 48.82009765926935], [2.369010464479943, 48.82009054606921], [2.369100206262616, 48.81998283059807], [2.369205150379666, 48.81986213446591], [2.369294891367054, 48.81975441882681], [2.369399833211862, 48.819633722492085], [2.369489573393099, 48.81952600758433], [2.369594515689581, 48.81940531106139], [2.369684255086427, 48.81929759508638], [2.369789196472487, 48.81917689836814], [2.369878935074074, 48.81906918222511], [2.369983874187942, 48.81894848530431], [2.370073611994282, 48.81884076899331], [2.370178551559735, 48.818720071884364], [2.370268288559975, 48.81861235630471], [2.37037322721514, 48.81849165900039], [2.370462963431012, 48.81838394235347], [2.37048459660303, 48.818361244369875]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 20, "roussel_fabien": 28.0, "nb_emargement": 1306.0, "nb_procuration": 16.0, "nb_vote_blanc": 9.0, "jadot_yannick": 48.0, "le_pen_marine": 127.0, "nb_exprime": 1292.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1870.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1307, "quartier_bv": "50", "geo_point_2d": [48.81995031634519, 2.367461601048723], "melenchon_jean_luc": 432.0, "poutou_philippe": 11.0, "macron_emmanuel": 434.0}, "geometry": {"type": "Point", "coordinates": [2.367461601048723, 48.81995031634519]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "843014eecb324a5c1a8862d3228eb01a5ca7dee5", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 37, "zemmour_eric": 64.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "10-3", "geo_shape": {"coordinates": [[[2.355771192225159, 48.868973609020735], [2.355799799798088, 48.86901783878668], [2.355872697634584, 48.869135543811076], [2.355945756496646, 48.86925359319129], [2.356018653629668, 48.86937129809436], [2.356091713153249, 48.869489347360314], [2.35616461229798, 48.86960705305598], [2.356237672494104, 48.869725101308404], [2.356310570935369, 48.86984280688273], [2.356383631792925, 48.86996085502087], [2.356456532257147, 48.87007856048855], [2.356529593776146, 48.870196608512394], [2.356602493537007, 48.87031431385875], [2.356675555706348, 48.870432362667636], [2.356748457501202, 48.87055006700797], [2.356821520332005, 48.87066811570256], [2.356894421423398, 48.87078581992161], [2.356967484915669, 48.870903868501905], [2.357040388030077, 48.87102157261423], [2.357113452183826, 48.871139621080275], [2.357186354594881, 48.871257325071284], [2.357259419410013, 48.87137537342298], [2.35733232384411, 48.87149307730728], [2.357405389320739, 48.87161112554473], [2.357420282481658, 48.87162547440163], [2.357444089980739, 48.87161764575852], [2.357494321598304, 48.87159267006776], [2.357680911340759, 48.871498923473794], [2.357818406605392, 48.8714305587408], [2.35782612374895, 48.871428727720335], [2.358030499634623, 48.871423351476864], [2.3582330445073882, 48.871417867039646], [2.3584374216716952, 48.87141249010862], [2.358639966459378, 48.8714070049828], [2.358844342175806, 48.87140162734968], [2.359046886878397, 48.871396141535214], [2.359249431538323, 48.871390655378036], [2.359453807127673, 48.871385276704224], [2.359656351702491, 48.87137978985841], [2.359860728570438, 48.87137441049709], [2.359865868707558, 48.871374929924436], [2.360075074366522, 48.871425370976866], [2.360302773582744, 48.87147916430135], [2.360326921160137, 48.87149644463131], [2.360338312719935, 48.87149491817597], [2.360352734608763, 48.87149119823896], [2.360355100638718, 48.87147360273755], [2.3604320119090803, 48.871388361628206], [2.360520198106995, 48.87129241382067], [2.360597108839654, 48.871207172591255], [2.360667009550692, 48.871131120179484], [2.360677891121223, 48.87111426713759], [2.360656275768275, 48.87110405480965], [2.360596312043212, 48.87101842054478], [2.360549941550464, 48.870952925807096], [2.36055653763231, 48.87094100973237], [2.360634767501717, 48.87091685229669], [2.360716463285929, 48.870892878799125], [2.360722118508741, 48.87087952953989], [2.360622181752051, 48.870784662303876], [2.360528831197327, 48.87069625683724], [2.360428895155213, 48.87060138852484], [2.360335545256974, 48.8705129828928], [2.36024219431227, 48.8704245771736], [2.360142260676735, 48.87032970860582], [2.360126341233332, 48.870326404768285], [2.359929827626923, 48.87037429611423], [2.359732359222394, 48.87042197608142], [2.359535844882056, 48.870469867675695], [2.359338377117826, 48.87051754699608], [2.359141860691587, 48.87056543793209], [2.358944392204442, 48.870613116598356], [2.358927640634947, 48.87060885664481], [2.358833490469261, 48.87049075295726], [2.358740155703987, 48.870373557385236], [2.358646006388572, 48.87025545352504], [2.358552672466716, 48.87013825778192], [2.358458524001663, 48.8700201537491], [2.358365190923212, 48.869902957834825], [2.358271043308511, 48.869784853629405], [2.35817771243656, 48.869667657551304], [2.358083565672298, 48.869549553173265], [2.357990234280525, 48.869432356916725], [2.357988600410454, 48.86943075272339], [2.357872008931459, 48.8693392552517], [2.357740245648335, 48.869235634079054], [2.357745073481083, 48.86922165995274], [2.357910924071314, 48.86917219210637], [2.358074970354772, 48.86912342033516], [2.358240820318839, 48.869073952027314], [2.358404867347235, 48.86902517980698], [2.35857071532205, 48.868975711030295], [2.358734761743261, 48.868926937454184], [2.358900609081043, 48.86887746911528], [2.359064654883992, 48.86882869508273], [2.359230502958795, 48.86877922628965], [2.359394546780295, 48.86873045179331], [2.359402370485528, 48.86872069445096], [2.359368558550588, 48.86859393936995], [2.359332475041798, 48.86846279771096], [2.359379874403786, 48.86839145218922], [2.359376786673979, 48.868389788969424], [2.359276412548231, 48.8684039936872], [2.359070031206364, 48.86843450954003], [2.358871828077912, 48.868462557884975], [2.358848069092037, 48.86846536156837], [2.358845183551177, 48.8684664334144], [2.358638800346251, 48.86849694851466], [2.358433056862821, 48.8685277463836], [2.3582266745255582, 48.86855826167818], [2.358020930556413, 48.86858905883699], [2.357814547745907, 48.868619572519954], [2.357608803290858, 48.86865036896865], [2.357402418632963, 48.86868088193199], [2.35719667369212, 48.868711677670554], [2.356990289902003, 48.86874219082818], [2.356784544475372, 48.86877298585662], [2.356578158848776, 48.868803497395334], [2.356372412936472, 48.86883429171364], [2.35637092349171, 48.86883457509073], [2.356225317685882, 48.86886709281304], [2.356020728065027, 48.868914369569985], [2.355875121817454, 48.8689468868639], [2.355786990529972, 48.86896725207449], [2.355771192225159, 48.868973609020735]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 3, "roussel_fabien": 27.0, "nb_emargement": 1276.0, "nb_procuration": 105.0, "nb_vote_blanc": 12.0, "jadot_yannick": 151.0, "le_pen_marine": 51.0, "nb_exprime": 1262.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1583.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1277, "quartier_bv": "39", "geo_point_2d": [48.870139384298085, 2.3580445689393477], "melenchon_jean_luc": 468.0, "poutou_philippe": 12.0, "macron_emmanuel": 394.0}, "geometry": {"type": "Point", "coordinates": [2.3580445689393477, 48.870139384298085]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "da9aec2090aa1d65f03e40388f5180453b09a637", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 140, "zemmour_eric": 122.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-41", "geo_shape": {"coordinates": [[[2.304991850477375, 48.840601838543314], [2.305035177429998, 48.840627677302535], [2.305185065048304, 48.84066870210935], [2.305378180026864, 48.84072579763607], [2.305528068197316, 48.84076682200951], [2.305721183915058, 48.84082391697749], [2.305871072637654, 48.840864940917555], [2.306064189094675, 48.84092203532681], [2.306260749232314, 48.840976661737486], [2.306453866530136, 48.84103375551195], [2.3066504274975053, 48.84108838127691], [2.306843545636124, 48.84114547441656], [2.307022563362277, 48.84119959229029], [2.307215682320591, 48.841256684823506], [2.307394700815111, 48.84131080213498], [2.30758782059322, 48.841367894061754], [2.307766841206618, 48.84142201171809], [2.307798311226255, 48.841431289127065], [2.30782353739137, 48.84140953279183], [2.307894871521778, 48.84130920734291], [2.307979629109207, 48.84119697542173], [2.308065521893051, 48.84108223716349], [2.308150278743926, 48.840970005098605], [2.308236170777969, 48.84085526669448], [2.3083209268924, 48.84074303448587], [2.308406818176752, 48.84062829593593], [2.308491573554647, 48.84051606358358], [2.308577465451751, 48.84040132489568], [2.308662218730685, 48.84028909239174], [2.30874810987811, 48.84017435355802], [2.308832862420533, 48.84006212091036], [2.308918752818286, 48.83994738193079], [2.309003504624104, 48.83983514913944], [2.309089394272297, 48.83972041001401], [2.30917414534162, 48.83960817707897], [2.3091978287004222, 48.83958305597097], [2.309190414142491, 48.83957554209325], [2.309055526596234, 48.83952236309847], [2.308887706211851, 48.83945564884086], [2.308695256793199, 48.839379774932205], [2.308527437329039, 48.83931306016065], [2.308334988961195, 48.83923718566272], [2.308167169054957, 48.839170470369346], [2.308160663307472, 48.83916173763813], [2.308180781730792, 48.83904646128428], [2.308210216285751, 48.83889836503258], [2.308230334497823, 48.8387830886432], [2.308259768763158, 48.83863499234438], [2.308279886764086, 48.83851971591951], [2.308309320739906, 48.83837161957363], [2.308328123244967, 48.838263876727005], [2.308329437167216, 48.83825634310538], [2.308327575845706, 48.83825050622225], [2.308215728584747, 48.8381288887282], [2.3080965278325642, 48.83800518071196], [2.307984681637109, 48.83788356297514], [2.307865481994301, 48.83775985470156], [2.307864935850447, 48.83774609117021], [2.307842612445556, 48.837733657707915], [2.30779564622692, 48.837707499342294], [2.307773597256765, 48.83771461887457], [2.307728434482097, 48.837750456446926], [2.307684109254331, 48.83778764970376], [2.307658504506676, 48.83779587824395], [2.307647132941533, 48.8378210523623], [2.307589032291316, 48.83786980460275], [2.307478527936795, 48.83795719437945], [2.30737610266274, 48.838043140573475], [2.307265597583647, 48.83813053013994], [2.30716317025561, 48.838216476130434], [2.307162356928532, 48.838217189117074], [2.307046260735414, 48.83833011248638], [2.30692878891517, 48.83844193862675], [2.306812691715548, 48.83855486174663], [2.306695218887679, 48.838666687635126], [2.30657912068144, 48.838779610505625], [2.306461648208329, 48.83889143615012], [2.30634554763307, 48.83900435876329], [2.306228074152318, 48.83911618415596], [2.306227366321524, 48.839116953508636], [2.306115605348863, 48.839253229799716], [2.306018141183497, 48.83937164019972], [2.30590637911771, 48.83950791626427], [2.305808915363202, 48.8396263264747], [2.305728810600839, 48.83972224429155], [2.305631346054139, 48.839840653435346], [2.3055512406356122, 48.83993657111485], [2.305453775284738, 48.84005498009121], [2.305374259475046, 48.8401471947614], [2.305276791953837, 48.840265604462594], [2.305197276884118, 48.84035781810637], [2.305099808566973, 48.840476227641076], [2.305020292862811, 48.84056844114979], [2.304991850477375, 48.840601838543314]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 41, "roussel_fabien": 17.0, "nb_emargement": 1316.0, "nb_procuration": 89.0, "nb_vote_blanc": 14.0, "jadot_yannick": 126.0, "le_pen_marine": 84.0, "nb_exprime": 1298.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1625.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1316, "quartier_bv": "58", "geo_point_2d": [48.83979812581645, 2.3072264302771943], "melenchon_jean_luc": 268.0, "poutou_philippe": 5.0, "macron_emmanuel": 463.0}, "geometry": {"type": "Point", "coordinates": [2.3072264302771943, 48.83979812581645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3cdf33b865dd5c286279cb0fad79705f818a66d4", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 83, "zemmour_eric": 79.0, "hidalgo_anne": 42.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "13-1", "geo_shape": {"coordinates": [[[2.3555863607667, 48.83148520800616], [2.3555339645260602, 48.83149758613042], [2.355449711024573, 48.83161874505999], [2.355367643182365, 48.831737293133926], [2.355283388906908, 48.83185845192042], [2.355201320309106, 48.83197699985486], [2.35511706662179, 48.832098158505595], [2.355034997268388, 48.83221670630057], [2.354950741444965, 48.83233786480088], [2.354868671347079, 48.83245641155701], [2.35478441610066, 48.832577570820874], [2.35470234388492, 48.83269611743015], [2.3546180878757292, 48.832817275651585], [2.354536016255464, 48.83293582302803], [2.354451758110016, 48.83305698109901], [2.354369685734008, 48.83317552833595], [2.354285428176783, 48.83329668627119], [2.354203353682972, 48.83341523336127], [2.354119095351713, 48.833536391153395], [2.354037021464496, 48.83365493811131], [2.353952760996933, 48.83377609575295], [2.353870686365091, 48.83389464167199], [2.353786426474593, 48.83401580007722], [2.353704351087178, 48.83413434585674], [2.353620089060338, 48.83425550411146], [2.353538012917133, 48.83437404975147], [2.353453750127366, 48.83449520696374], [2.353371673217412, 48.83461375336353], [2.353287411015846, 48.834734910440055], [2.353205333350186, 48.83485345670029], [2.353121069012232, 48.834974613626336], [2.353038990590751, 48.83509315974706], [2.352956911807211, 48.835211704899564], [2.352872646301579, 48.83533286251108], [2.352790566762309, 48.83545140752406], [2.352706301855929, 48.83557256410048], [2.3526242215497533, 48.83569110987323], [2.352539954507032, 48.83581226629913], [2.3524578734451023, 48.83593081193232], [2.352373606990562, 48.83605196822248], [2.352291523810544, 48.83617051370871], [2.352207256581755, 48.83629166985573], [2.352125174008293, 48.83641021520981], [2.352040904643114, 48.836531371206235], [2.3520191460162723, 48.836562795048515], [2.352011488359354, 48.83656823970548], [2.352005849739367, 48.83658815442859], [2.351945523634231, 48.83667527488545], [2.351896868964983, 48.83675791494269], [2.351872406428179, 48.83680473475904], [2.351920248226039, 48.836819147320426], [2.35204017907292, 48.83685682759754], [2.352223511061517, 48.836915371079044], [2.352407536433474, 48.836973186842876], [2.352590869232643, 48.83703173065456], [2.352774895422865, 48.83708954584718], [2.352958229055147, 48.837148088190446], [2.353142256063628, 48.83720590281189], [2.3533255905176462, 48.837264444586005], [2.35350961833323, 48.837322259535604], [2.353692953609186, 48.83738080074057], [2.353876980891819, 48.8374386142123], [2.354060318351869, 48.83749715485548], [2.354244346452749, 48.837554967756056], [2.354380263371579, 48.83759836647455], [2.354402235353492, 48.83760969566561], [2.354411962752887, 48.83761082650654], [2.354459382774218, 48.837625967841994], [2.354631255554059, 48.83768118461866], [2.354814593352148, 48.83773972408572], [2.354986466894496, 48.83779493944712], [2.355169805491624, 48.83785347836382], [2.3552629315512, 48.83788339591539], [2.355284993199261, 48.8378818833761], [2.355295524500348, 48.83782815984888], [2.355365548776683, 48.83776457073077], [2.35542651866521, 48.83769983645089], [2.355428314219591, 48.83769334730691], [2.355390677002573, 48.837567419390155], [2.355352205137911, 48.837440913152435], [2.35531456692468, 48.83731498517595], [2.35527609543115, 48.83718847888523], [2.355238458946419, 48.837062550863706], [2.3551999878239123, 48.836936044519945], [2.355162350354095, 48.836810115539386], [2.355123879591384, 48.83668361004191], [2.355086243850045, 48.83655768101632], [2.355047773469574, 48.836431174566485], [2.355010136720899, 48.83630524638047], [2.35497166671144, 48.83617873987762], [2.3549340303288933, 48.83605281163926], [2.354895560690439, 48.835926305083376], [2.35489554894409, 48.83591008132773], [2.354881999111133, 48.83590321622437], [2.354748024590425, 48.83580426193363], [2.354616587377295, 48.83570838531789], [2.354482615212257, 48.83560943161929], [2.354351178989698, 48.835513553795906], [2.354219743239609, 48.83541767671915], [2.354085772575067, 48.83531872255037], [2.353954337815442, 48.83522284426602], [2.353820366793263, 48.83512388977538], [2.35368893301306, 48.83502801118266], [2.353554964357737, 48.83492905638486], [2.353552664262802, 48.83491942340854], [2.353634737371573, 48.834797014107814], [2.353714895163955, 48.834675989311236], [2.3537969674973382, 48.83455358077183], [2.353877124538843, 48.83443255584028], [2.353959196119147, 48.83431014626362], [2.354039352409578, 48.834189121197014], [2.354121424587937, 48.83406671148977], [2.354201578765132, 48.83394568628075], [2.354283650179275, 48.83382327643559], [2.354363804967789, 48.83370225109887], [2.354443958010819, 48.83358122658735], [2.354526028282, 48.833458816536016], [2.35460618194739, 48.83333779099749], [2.354688250092126, 48.833215380800894], [2.354768403006589, 48.83309435512735], [2.354850470387151, 48.8329719447928], [2.354930622550697, 48.832850918984256], [2.355012689155968, 48.832728509411126], [2.355013429725179, 48.83272756097174], [2.355097963621795, 48.832633517280776], [2.355219191031966, 48.83249859440271], [2.355303724186092, 48.83240455054705], [2.355424950520136, 48.83226962833212], [2.35550948293178, 48.83217558431183], [2.355511334613026, 48.83217181153719], [2.355531556792202, 48.83202545170347], [2.355554182330923, 48.8318710149574], [2.355574404273118, 48.83172465507717], [2.355597029554355, 48.831570218281534], [2.35565310367796, 48.83151940193887], [2.355624066766794, 48.83150452549416], [2.3555863607667, 48.83148520800616]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 1, "roussel_fabien": 32.0, "nb_emargement": 1366.0, "nb_procuration": 73.0, "nb_vote_blanc": 11.0, "jadot_yannick": 132.0, "le_pen_marine": 58.0, "nb_exprime": 1348.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1686.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1365, "quartier_bv": "49", "geo_point_2d": [48.835903434754314, 2.353883776582259], "melenchon_jean_luc": 400.0, "poutou_philippe": 6.0, "macron_emmanuel": 479.0}, "geometry": {"type": "Point", "coordinates": [2.353883776582259, 48.835903434754314]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "59e94f1e9d15e4c410617c0166ab46c8a3bc4891", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 27, "zemmour_eric": 39.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-72", "geo_shape": {"coordinates": [[[2.38444273502644, 48.87059886399937], [2.384469871308765, 48.87059598537509], [2.384679086423589, 48.87058755328262], [2.384886805230846, 48.870578488096164], [2.3850960202078992, 48.87057005527485], [2.385303738872916, 48.87056098936474], [2.385511457465526, 48.87055192309412], [2.38572067223475, 48.87054348918078], [2.385928390685003, 48.870534422186445], [2.386137605305827, 48.87052598844355], [2.386142790006715, 48.870526442218285], [2.386328270784766, 48.8705676719047], [2.3865127171008362, 48.87060867116445], [2.386698198464484, 48.870649900274564], [2.386882646715533, 48.87069089986752], [2.387067093904381, 48.87073189826847], [2.3872525761455, 48.87077312651493], [2.387437023916669, 48.870814124342786], [2.387622506732901, 48.87085535291223], [2.387806956449526, 48.870896350173965], [2.387992439861913, 48.87093757726781], [2.388176888797605, 48.870978573949465], [2.388362372795567, 48.871019800467025], [2.3883694063225662, 48.871023378892545], [2.388437251443425, 48.87107699772692], [2.388548573975687, 48.87118856340742], [2.3886366599591913, 48.87128184100686], [2.388747983356433, 48.87139340648124], [2.388836071406584, 48.87148668392358], [2.388947395668616, 48.87159824919183], [2.389035483059113, 48.87169152646315], [2.389040037346827, 48.871694480643676], [2.389174475786842, 48.87174772752934], [2.389316739109578, 48.87180407192209], [2.389327669177189, 48.871804976657685], [2.389550065189746, 48.87176103007102], [2.389775389204195, 48.87171650443698], [2.389997784461274, 48.871672557015025], [2.390223109083981, 48.87162802964227], [2.390239539261965, 48.871633083968476], [2.39027543211678, 48.87168799227005], [2.390311604996339, 48.8717433264704], [2.390328478025088, 48.87174828770976], [2.390512133240536, 48.87170744886686], [2.390684272412848, 48.871666358663326], [2.390856409960933, 48.871625267304545], [2.391040065681365, 48.87158442855333], [2.39121220267802, 48.87154333667982], [2.391395856467472, 48.871502497372745], [2.39140631245105, 48.871495551906705], [2.391401517783687, 48.87147757319411], [2.391399796823617, 48.87147632875693], [2.391231609725357, 48.8713755752994], [2.391066332373453, 48.87127635537385], [2.39089814521314, 48.871175600523344], [2.3907328691310332, 48.871076380119376], [2.39056468325089, 48.87097562568138], [2.39039940844889, 48.870876403899686], [2.390395042088778, 48.870870787791624], [2.39036964591403, 48.87072616839986], [2.390344371667386, 48.87058372330004], [2.390319097548446, 48.870441279075834], [2.390293701804577, 48.87029665871243], [2.390268427963479, 48.87015421444052], [2.3902430311263902, 48.87000959492115], [2.390217757573662, 48.86986714970223], [2.39019236238052, 48.86972253014151], [2.390195923915909, 48.86971536887871], [2.39029975047353, 48.869641760946024], [2.39040984949442, 48.86956241291931], [2.390513675444883, 48.86948880479089], [2.390623773806105, 48.86940945745572], [2.390623689252818, 48.86939967133618], [2.390610646315029, 48.86939121771211], [2.390392558065693, 48.86937810820771], [2.39018324630137, 48.869365489091756], [2.389965158267317, 48.86935237880829], [2.38975584669949, 48.86933975984392], [2.389537758891267, 48.869326647882176], [2.389328447530269, 48.8693140281701], [2.389119134918137, 48.86930140718563], [2.388901048783409, 48.86928829496954], [2.388888011522952, 48.869292746678], [2.3887985686569673, 48.86939471372736], [2.388709706780471, 48.86949604963662], [2.388620261863824, 48.869598015627744], [2.388531400646297, 48.86969935229223], [2.388441955031432, 48.869801318131344], [2.388353091757101, 48.86990265463788], [2.3883423826607473, 48.86990711548451], [2.388152170786206, 48.86991718268065], [2.38796240473962, 48.86992712414863], [2.387772192718583, 48.86993719074078], [2.387582427889709, 48.86994713161313], [2.387392215722286, 48.869957197601245], [2.387202450758595, 48.869967136971745], [2.3870122384341173, 48.86997720325514], [2.386822471961828, 48.86998714201608], [2.386632259501464, 48.86999720679617], [2.386442494236431, 48.870007145860775], [2.386252281629606, 48.87001721003687], [2.386062516219204, 48.87002714849887], [2.385872303465825, 48.87003721207092], [2.385682536546946, 48.87004714992335], [2.385492323647124, 48.8700572128914], [2.385302557946111, 48.87006715014821], [2.385112344899854, 48.870077212512264], [2.384922579064014, 48.870087148267174], [2.384732365860815, 48.87009721092653], [2.384542598516426, 48.8701071460718], [2.384535164788854, 48.870109087289414], [2.3844626814061, 48.87014731591397], [2.384388017646582, 48.87018626893765], [2.384376304930164, 48.870187948014596], [2.3841549140924823, 48.87015202277034], [2.383938798828126, 48.87011695705341], [2.383722683844197, 48.87008189184441], [2.383501293908058, 48.87004596538781], [2.383499905288999, 48.87004568753498], [2.383351077446117, 48.87001010933416], [2.383158393664595, 48.86996539610635], [2.383145931289606, 48.8699718988435], [2.383159698757779, 48.86999955067619], [2.383247756547541, 48.870061068558805], [2.383390297439131, 48.8701609890656], [2.38350892414337, 48.87024386159542], [2.383651464683549, 48.8703437808684], [2.383770092219569, 48.87042665312566], [2.38391263511351, 48.87052657297742], [2.384031262118086, 48.87060944495512], [2.384041906252401, 48.870612250802175], [2.384230134748341, 48.87060556772553], [2.38443934992973, 48.87059713695146], [2.38444273502644, 48.87059886399937]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 72, "roussel_fabien": 27.0, "nb_emargement": 1287.0, "nb_procuration": 85.0, "nb_vote_blanc": 15.0, "jadot_yannick": 91.0, "le_pen_marine": 56.0, "nb_exprime": 1269.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 1, "nb_inscrit": 1716.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1288, "quartier_bv": "77", "geo_point_2d": [48.87049893702301, 2.3883122349631485], "melenchon_jean_luc": 749.0, "poutou_philippe": 15.0, "macron_emmanuel": 206.0}, "geometry": {"type": "Point", "coordinates": [2.3883122349631485, 48.87049893702301]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "94289b5d062999cce061f9978600ba643fe18bb3", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 109, "zemmour_eric": 118.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "6-22", "geo_shape": {"coordinates": [[[2.336693413753543, 48.839680198857884], [2.336604989845162, 48.839690551268845], [2.33653070769151, 48.83970996312339], [2.336484579465971, 48.83972588686731], [2.336480124877803, 48.839727218402835], [2.336459903701895, 48.83973838249176], [2.336328187571037, 48.83978384953527], [2.336150624057885, 48.83984198320243], [2.33597277885656, 48.83990337344521], [2.335795213188866, 48.839961505671724], [2.335617367149647, 48.84002289627888], [2.335439802040704, 48.84008102797913], [2.33526195382409, 48.84014241714444], [2.3350843879002072, 48.84020054921025], [2.334906540219594, 48.84026193784814], [2.334728972129703, 48.840320069372616], [2.334551123622661, 48.84038145747552], [2.334423196891541, 48.840423337036256], [2.334397694893718, 48.84043303690255], [2.334462144843922, 48.84051068070358], [2.334487510220407, 48.8405569260145], [2.334518195005112, 48.84061607533144], [2.334511616790946, 48.84062695883462], [2.334360300733326, 48.84067916512589], [2.334162760280596, 48.84074741944402], [2.334011443535327, 48.84079962438913], [2.333813903531665, 48.84086787813135], [2.333662586075768, 48.84092008352885], [2.333465045170227, 48.84098833578839], [2.333313727015196, 48.841040540738916], [2.333310770388981, 48.84104192097581], [2.3331797073350202, 48.84112063861429], [2.333039622926496, 48.84120656818392], [2.333035463236293, 48.84121465097221], [2.333064339651362, 48.84132770930261], [2.333094742546162, 48.84144116914654], [2.333091261937295, 48.84144888967934], [2.33293573694014, 48.84155828829869], [2.332782183247823, 48.84166680733238], [2.332626656951663, 48.84177620552853], [2.332473101973794, 48.8418847241443], [2.332469455721321, 48.841890367998076], [2.332457867578766, 48.842029169766526], [2.332447149578638, 48.84216524230386], [2.332435561315665, 48.842304044035984], [2.332424841838284, 48.84244011653025], [2.33241412367884, 48.842576188115245], [2.3324025352250253, 48.84271499069232], [2.332391816950919, 48.8428510622418], [2.332380228376477, 48.842989864782545], [2.332369509987604, 48.84312593629649], [2.3323579212927372, 48.843264738800876], [2.332357718592423, 48.84326588345912], [2.332323310715738, 48.84339052761602], [2.332290392932043, 48.84351020568663], [2.332255983382046, 48.84363484888995], [2.332223065278014, 48.843754527815136], [2.3322205999264902, 48.84376678946513], [2.332234570761769, 48.843773480468826], [2.332364881648895, 48.84383580157921], [2.332558347134027, 48.84392745599141], [2.332688657430875, 48.84398977673294], [2.332882124056967, 48.84408143060886], [2.3330124351259602, 48.84414375098909], [2.333076565762341, 48.84416327754586], [2.333090377509283, 48.84414600043364], [2.333172687127905, 48.84406070498705], [2.33327964189938, 48.84395080445157], [2.333388725231114, 48.84383776520352], [2.3334956791009223, 48.84372786355363], [2.333604761497477, 48.84361482408599], [2.333711714454325, 48.84350492222104], [2.333820794553197, 48.8433918825262], [2.333927746585402, 48.843281981345434], [2.334036827123124, 48.84316894053938], [2.334143778242395, 48.843059039143526], [2.334252856482464, 48.84294599811029], [2.334359806688709, 48.842836096499326], [2.3344688853560402, 48.84272305525411], [2.334575834649268, 48.84261315342806], [2.334684911007599, 48.84250011285503], [2.334791859399303, 48.84239020991462], [2.334898807328494, 48.842280307767076], [2.335007883663614, 48.84216726597411], [2.335114830679813, 48.84205736361148], [2.33522390470598, 48.84194432249071], [2.335330850820672, 48.841834419013686], [2.335439925274127, 48.84172137768095], [2.335546870475842, 48.84161147398889], [2.335655942631852, 48.841498432429006], [2.335762886920605, 48.84138852852192], [2.335871959503913, 48.841275486750106], [2.335978902868254, 48.8411655835272], [2.3360879745280583, 48.841052540636554], [2.336194916979458, 48.84094263719861], [2.336294907745327, 48.84085870653312], [2.3362990079796813, 48.84085599970829], [2.336413482374326, 48.84080136158546], [2.336632667075794, 48.840708429891315], [2.336653818341145, 48.84070214999632], [2.336709211037169, 48.84069512012815], [2.336798628994606, 48.840677022419484], [2.3367922196362843, 48.84062895087441], [2.336783137887378, 48.84051485377439], [2.336773670797145, 48.84036958161001], [2.336764589133936, 48.84025548448207], [2.3367551221425122, 48.84011021228255], [2.336746041927525, 48.83999611513425], [2.336736573672481, 48.83985084289197], [2.336727493543385, 48.83973674571574], [2.336693413753543, 48.839680198857884]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 22, "roussel_fabien": 14.0, "nb_emargement": 1126.0, "nb_procuration": 97.0, "nb_vote_blanc": 5.0, "jadot_yannick": 86.0, "le_pen_marine": 34.0, "nb_exprime": 1120.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 1336.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "23", "geo_point_2d": [48.841803028477756, 2.3342427901981333], "melenchon_jean_luc": 185.0, "poutou_philippe": 4.0, "macron_emmanuel": 541.0}, "geometry": {"type": "Point", "coordinates": [2.3342427901981333, 48.841803028477756]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8cef0536eaebc58c44ae54599be9af4fba851ce6", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 61, "zemmour_eric": 67.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "12-51", "geo_shape": {"coordinates": [[[2.372450360997428, 48.84015615094252], [2.372398028480192, 48.84017462090516], [2.372317175499257, 48.84023488746511], [2.37218831964833, 48.840329571570585], [2.372054302043385, 48.840429467221796], [2.37192544522304, 48.84052415192688], [2.371791425251506, 48.84062404725907], [2.371662567483405, 48.84071873076524], [2.371528547870169, 48.84081862579261], [2.371399689143472, 48.8409133089991], [2.371265667163624, 48.841013203707405], [2.371136807467468, 48.84110788751351], [2.37100278584591, 48.841207781917106], [2.37087392520199, 48.84130246452423], [2.370739901213792, 48.841402358608704], [2.37061103961125, 48.841497040916174], [2.370477015981337, 48.841596934695865], [2.370348153409302, 48.84169161760293], [2.3702141287752, 48.841791511070745], [2.37008526389291, 48.84188619277166], [2.369951238254609, 48.84198608592749], [2.369822373776154, 48.8420807673359], [2.369688347133648, 48.842180660179785], [2.369559480323172, 48.84227534218059], [2.369425452676448, 48.84237523471258], [2.369296586280575, 48.842469915521576], [2.3691677194057172, 48.84256459708301], [2.369033690275191, 48.84266448825088], [2.368904821079154, 48.84275916950545], [2.368770790933505, 48.842859061260604], [2.368637282531716, 48.84296083257877], [2.368503251354697, 48.84306072401614], [2.368369741914007, 48.84316249501732], [2.368235709705607, 48.8432623861369], [2.3681021992258042, 48.8433641568211], [2.367968165986018, 48.84346404762288], [2.367834654467194, 48.84356581799006], [2.367700618833482, 48.84366570846687], [2.367567107627241, 48.843767479423605], [2.367433070973032, 48.84386736868326], [2.367299557365218, 48.84396913931579], [2.36716552104213, 48.84406902826485], [2.367032006395263, 48.84417079858038], [2.36689796902983, 48.844270688110896], [2.366764453354927, 48.844372457210156], [2.366630414958061, 48.844472346422855], [2.366496376058325, 48.844572234577136], [2.366362858815685, 48.84467400409997], [2.366228817511015, 48.84477389282851], [2.366095300602782, 48.844875661142254], [2.366023035887259, 48.844926576768316], [2.366026786559822, 48.84493895024383], [2.365893267471665, 48.8450407183098], [2.36576102052608, 48.84514036148326], [2.36562750175458, 48.84524213014073], [2.36549525378968, 48.845341773002424], [2.365361733994159, 48.84544354044564], [2.365229485010039, 48.84554318299551], [2.365095964179543, 48.84564495012375], [2.364963714176194, 48.845744592361804], [2.364830190937171, 48.845846360067135], [2.364697941277165, 48.84594600200064], [2.364564417014104, 48.84604776849162], [2.364492530632786, 48.84610193095058], [2.364459463410004, 48.846128386198444], [2.36450648016751, 48.8461703167227], [2.364649446292286, 48.846255911632156], [2.364799199975114, 48.8463448871132], [2.3649421656969523, 48.84643048165223], [2.365091921743764, 48.846519456760134], [2.365234888425261, 48.846605050936], [2.365384644110966, 48.84669402565633], [2.365527613114736, 48.846779619476195], [2.365677369790791, 48.84686859471547], [2.365820338402571, 48.846954187265595], [2.365970096080033, 48.84704316212453], [2.365970451815795, 48.8470433798556], [2.366113421377489, 48.847128972941384], [2.366240762394423, 48.84721022819984], [2.366383732868739, 48.84729582005045], [2.366511074714928, 48.84737707500907], [2.366514660334797, 48.8473809666273], [2.366573680669043, 48.84751138553647], [2.36662950238438, 48.84763546858354], [2.366685324365538, 48.847759551590784], [2.366744345555643, 48.84788997037144], [2.366800169445497, 48.848014053303935], [2.366859191222074, 48.84814447109887], [2.366874901426411, 48.84817939171452], [2.366884943737877, 48.84818742574707], [2.366941183361826, 48.84818266356005], [2.367091847418281, 48.84813305173371], [2.367303998845033, 48.84806674726748], [2.367454662221066, 48.84801713497909], [2.367666814087864, 48.8479508289705], [2.367817476783268, 48.847901216220066], [2.367824887931678, 48.84789441217467], [2.367855472760549, 48.847749803412164], [2.367885278584227, 48.847604131964914], [2.367915863085968, 48.847459522249935], [2.3679456685748193, 48.84731385074968], [2.367976252727723, 48.84716924188093], [2.368006057892662, 48.84702356942835], [2.368016799428745, 48.847015966342724], [2.368206555960309, 48.846990044502306], [2.3683937069553043, 48.84696422732114], [2.368583461748492, 48.8469383048745], [2.368770612370963, 48.84691248710261], [2.3689603681507903, 48.846886564064164], [2.369147518400832, 48.846860745701484], [2.369337272442168, 48.84683482205687], [2.369524422319572, 48.846809003103374], [2.369531435564856, 48.846806448113604], [2.369603651905782, 48.84675709598514], [2.3697029617851992, 48.84668433327806], [2.369739275253223, 48.84668323220825], [2.369752477071936, 48.84664839229158], [2.369795250034707, 48.84661705285602], [2.369916751176476, 48.846528671696106], [2.370058834192249, 48.84642456918619], [2.370180334427388, 48.84633618864259], [2.370322416391873, 48.846232085801674], [2.370443914368775, 48.846143704967965], [2.370585995281983, 48.846039601796015], [2.370707493736496, 48.84595121978728], [2.370849573598431, 48.84584711628435], [2.37097107114635, 48.84575873489193], [2.371113149957023, 48.845654631058025], [2.371234646609215, 48.84556624938267], [2.371247154426547, 48.84556341378907], [2.371444596875958, 48.84558657371503], [2.371641692078348, 48.84560950305288], [2.371839133515115, 48.8456326623196], [2.372036229065383, 48.84565559100652], [2.372233672214655, 48.845678749628284], [2.372430768112796, 48.84570167766432], [2.372628211611984, 48.84572483563401], [2.372825306495506, 48.845747763011936], [2.373022750344501, 48.84577092032957], [2.373219846938458, 48.84579384706374], [2.373417291137352, 48.84581700372927], [2.37361438671657, 48.845839929805386], [2.373811831265455, 48.84586308581879], [2.3740089285549892, 48.845886011251146], [2.374062998575882, 48.845892352232035], [2.374081099688326, 48.84590508471161], [2.374108850815545, 48.84590331696402], [2.374252225738379, 48.84592013128938], [2.374399843347833, 48.8459245169193], [2.374409772068965, 48.84592209470479], [2.374562243663564, 48.84582779380453], [2.374717053624445, 48.84573026094267], [2.374869524101701, 48.845635959634656], [2.375024331544423, 48.84553842725052], [2.375176800915231, 48.84544412463536], [2.375331608575541, 48.84534659184399], [2.375334400525028, 48.84534523490081], [2.375382081203287, 48.845339031857364], [2.375386717887349, 48.8453326949054], [2.375571577950039, 48.845264932764195], [2.375746793752262, 48.84519845915682], [2.375931652870535, 48.845130696451086], [2.376106866388856, 48.84506422320051], [2.376291724573683, 48.84499645903098], [2.376466937181445, 48.84492998524506], [2.376651794421951, 48.84486222051099], [2.376827007481709, 48.84479574619687], [2.377002218742697, 48.84472927071576], [2.377187074564428, 48.84466150604171], [2.377362286277404, 48.84459503003233], [2.377547141154919, 48.84452726479376], [2.377722350584035, 48.84446078914129], [2.377907204527871, 48.844393022438894], [2.377924501539682, 48.84439530052217], [2.378049652612259, 48.84449958252239], [2.3781752478941662, 48.844606304849016], [2.37819429971273, 48.8446079246895], [2.3783400855935612, 48.84453414620343], [2.378505825161473, 48.84444836673126], [2.378651608792429, 48.84437458784792], [2.378817348702736, 48.844288807939], [2.378963131446371, 48.844215028665516], [2.379128868973989, 48.84412924830562], [2.379274652192847, 48.84405546864907], [2.379440388700324, 48.843969687845345], [2.379586169669329, 48.843895907791556], [2.379751905156772, 48.843810126544014], [2.379897686600898, 48.84373634610711], [2.379938742829772, 48.84369087866849], [2.37993252232595, 48.84368483241267], [2.3798761024858432, 48.84366357050956], [2.379818591051261, 48.843642096967024], [2.379813384725685, 48.84363693373674], [2.379783202776344, 48.84362576461216], [2.379667789426432, 48.843582671484874], [2.379489572152148, 48.8435158718613], [2.379316649644365, 48.84345130376671], [2.379138431896211, 48.84338450450444], [2.378965510259309, 48.843319935894705], [2.37878729478365, 48.843253135209224], [2.378614374017528, 48.84318856608436], [2.378444511639508, 48.84311311415362], [2.378443356492609, 48.843112630591854], [2.378285214403582, 48.84303886626333], [2.378115351638199, 48.84296341294875], [2.377957210466064, 48.842889648176744], [2.377787350013629, 48.84281419529271], [2.377629208406819, 48.8427404291709], [2.377459348915448, 48.84266497581106], [2.377301209577392, 48.842591210152165], [2.377131349695532, 48.84251575541012], [2.376973211274462, 48.84244198930779], [2.376803353716166, 48.84236653409706], [2.376645214849587, 48.842292767544215], [2.376475358252457, 48.842217311857695], [2.376317220302862, 48.8421435448614], [2.376316773261495, 48.84214332758351], [2.376157892657049, 48.84206220422367], [2.375999200062327, 48.8419815789716], [2.375840320445247, 48.84190045517823], [2.375681628834268, 48.84181982949316], [2.375522748842071, 48.84173870525917], [2.375364058204159, 48.841658080040446], [2.375205180572475, 48.84157695448074], [2.375046490918292, 48.841496328829145], [2.374887612900812, 48.84141520372807], [2.374728924241044, 48.8413345767442], [2.374570048573382, 48.841253451216765], [2.374411360897344, 48.84117282379995], [2.374252484854566, 48.841091697831885], [2.374093798151453, 48.84101107088145], [2.373934924458475, 48.840929944487016], [2.373776238749879, 48.84084931620435], [2.373617366044238, 48.840768189376405], [2.373458681319359, 48.840687560660776], [2.373299808238602, 48.84060643339226], [2.373141124486723, 48.840525805143045], [2.372982253755639, 48.84044467744814], [2.372823570998281, 48.84036404786667], [2.372664699892184, 48.840282919731166], [2.37250601811843, 48.840202289716814], [2.372450360997428, 48.84015615094252]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 51, "roussel_fabien": 19.0, "nb_emargement": 1172.0, "nb_procuration": 59.0, "nb_vote_blanc": 14.0, "jadot_yannick": 69.0, "le_pen_marine": 62.0, "nb_exprime": 1155.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1533.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1175, "quartier_bv": "48", "geo_point_2d": [48.84407178349361, 2.3717826965723687], "melenchon_jean_luc": 426.0, "poutou_philippe": 3.0, "macron_emmanuel": 382.0}, "geometry": {"type": "Point", "coordinates": [2.3717826965723687, 48.84407178349361]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8e055dbf6bb5465d36beb9960cd1450426918789", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 42, "zemmour_eric": 70.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-68", "geo_shape": {"coordinates": [[[2.368461751970471, 48.82729287911847], [2.368468168675353, 48.82729628925085], [2.3685974137741272, 48.827314142524976], [2.368795855987361, 48.82734152011755], [2.368993890025143, 48.82736887543918], [2.3691923326548032, 48.82739625237256], [2.369390365746511, 48.827423607029175], [2.36958881015479, 48.82745098331051], [2.369786843662315, 48.82747833730928], [2.369985288487206, 48.82750571293139], [2.370183322421502, 48.82753306537296], [2.370381766289926, 48.82756044122804], [2.37057980200222, 48.82758779301893], [2.370712738236183, 48.827606131095166], [2.370720949438279, 48.82761143203525], [2.370751893249731, 48.82761024219677], [2.37081740267475, 48.82761927930205], [2.370996779787348, 48.82763872927508], [2.371195224485096, 48.82766610377779], [2.371273968129024, 48.827674641811555], [2.371299582513622, 48.8276764412086], [2.371305588903471, 48.82765832074452], [2.371320696278731, 48.82752868272711], [2.371333924331046, 48.8274015980269], [2.371347152329614, 48.82727451241154], [2.371362259490307, 48.827144874344555], [2.37136283855622, 48.82714282861641], [2.371422748329056, 48.82701522027597], [2.371482946560877, 48.826887161923096], [2.371542855745946, 48.8267595534934], [2.371603054749635, 48.82663149505806], [2.371662963346941, 48.82650388653911], [2.371723161760311, 48.82637582801419], [2.371783069769864, 48.826248219406025], [2.371843266231057, 48.82612016078427], [2.371903175014934, 48.825992552094], [2.371963370885934, 48.82586449338264], [2.371962130797866, 48.82584983966327], [2.371942282793857, 48.82584490488796], [2.371839627575381, 48.82577018263569], [2.371742797737501, 48.82570117044121], [2.371738773287563, 48.82569919765645], [2.371551619339992, 48.82563896170798], [2.371364699860048, 48.825578633158706], [2.371177546788293, 48.825518395719044], [2.370990628173341, 48.82545806657861], [2.370803475955713, 48.82539782944638], [2.370616558216811, 48.82533749881548], [2.37042940686416, 48.8252772610914], [2.370242489979398, 48.82521693076868], [2.370055338140546, 48.825156691546226], [2.369868422120987, 48.82509636063236], [2.369847607240984, 48.82508953172146], [2.369833658254481, 48.82509987207954], [2.369817727497688, 48.825124741287226], [2.369803182070461, 48.82514757531244], [2.369796399661278, 48.82515223520655], [2.369685708684805, 48.82518643425323], [2.369573452627366, 48.825219946817924], [2.369566227936175, 48.82522513409898], [2.369497376946676, 48.8253532378076], [2.369429076392067, 48.82548040092211], [2.369360226090533, 48.82560850452979], [2.369291924867005, 48.82573566753708], [2.369223072540202, 48.82586377013019], [2.369154770647744, 48.82599093303022], [2.369085918998023, 48.826119036421694], [2.369017616436525, 48.82624619921448], [2.3689487627506223, 48.82637430249072], [2.368880459520275, 48.82650146517621], [2.368812155956737, 48.8266286278083], [2.368743302623023, 48.82675673092979], [2.368674998390524, 48.82688389345463], [2.368606143020588, 48.827011996460776], [2.368537838119114, 48.82713915887838], [2.368468983437126, 48.82726726178362], [2.368461751970471, 48.82729287911847]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 68, "roussel_fabien": 21.0, "nb_emargement": 1272.0, "nb_procuration": 68.0, "nb_vote_blanc": 12.0, "jadot_yannick": 119.0, "le_pen_marine": 62.0, "nb_exprime": 1255.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1591.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1273, "quartier_bv": "50", "geo_point_2d": [48.826458196499544, 2.370272880139566], "melenchon_jean_luc": 498.0, "poutou_philippe": 14.0, "macron_emmanuel": 356.0}, "geometry": {"type": "Point", "coordinates": [2.370272880139566, 48.826458196499544]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "83bbbbb45baa32ebafd21b795675c9d190653b47", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 60, "zemmour_eric": 91.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-11", "geo_shape": {"coordinates": [[[2.3855371860379613, 48.84304200642837], [2.3855190400468063, 48.84305176660037], [2.385431103764056, 48.84313507488742], [2.385329396373332, 48.84323957859032], [2.385328567751311, 48.84324028662506], [2.385294548212197, 48.8432665170027], [2.385277546851168, 48.8432699074629], [2.385264495468792, 48.84328416808427], [2.385211458426132, 48.8433250618896], [2.385095023022655, 48.84342116972206], [2.385007967231409, 48.843488294644466], [2.384891531088015, 48.843584402264845], [2.38476218160694, 48.84369560114633], [2.384645745909599, 48.843791708516626], [2.384516395389611, 48.84390290711169], [2.384399957413454, 48.843999014217935], [2.384270605854543, 48.844110212526566], [2.384154168313806, 48.84420632028201], [2.384024815726587, 48.844317517404924], [2.383908375907004, 48.84441362489628], [2.383779022270211, 48.844524822632074], [2.383662582907397, 48.844620928974045], [2.383533228231652, 48.84473212642341], [2.383416786589765, 48.84482823250126], [2.383375269106144, 48.84487313390191], [2.383402619847566, 48.84489488194271], [2.383406699303316, 48.84489812626655], [2.383475949627302, 48.84489992123573], [2.383648277863918, 48.84499195459954], [2.383824614594745, 48.84508072659433], [2.383996944044919, 48.84517275944096], [2.384173280618928, 48.845261530900395], [2.384345611271939, 48.84535356412921], [2.384521949062219, 48.84544233416103], [2.3845499163270523, 48.84543928801861], [2.3845628840747, 48.845424325570036], [2.384592475704535, 48.84530472207428], [2.384630607870482, 48.84516690913087], [2.384660199209355, 48.84504730469139], [2.38469833235972, 48.84490949260092], [2.384727923397114, 48.84478988811709], [2.384766054817495, 48.84465207596617], [2.384795645553317, 48.84453247143797], [2.384833776606285, 48.84439465923369], [2.38486336840298, 48.84427505466814], [2.384901499088639, 48.844137242410426], [2.384931089221223, 48.844017637793506], [2.384969219539378, 48.84387982548244], [2.384998810733035, 48.84376022082817], [2.385000977335971, 48.84375674964991], [2.385108861783702, 48.843652927352636], [2.385219484853825, 48.8435458489561], [2.385327368429615, 48.84344202644211], [2.385437989240748, 48.84333494781631], [2.385545873307227, 48.84323112509266], [2.385656493221702, 48.84312404624456], [2.385654548316573, 48.84311241473952], [2.385611097617236, 48.843085563372874], [2.38557849094932, 48.84306582405662], [2.3855371860379613, 48.84304200642837]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 11, "roussel_fabien": 27.0, "nb_emargement": 1042.0, "nb_procuration": 71.0, "nb_vote_blanc": 13.0, "jadot_yannick": 96.0, "le_pen_marine": 77.0, "nb_exprime": 1026.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 7, "nb_inscrit": 1318.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1042, "quartier_bv": "46", "geo_point_2d": [48.844478048250785, 2.3844207734210774], "melenchon_jean_luc": 316.0, "poutou_philippe": 7.0, "macron_emmanuel": 298.0}, "geometry": {"type": "Point", "coordinates": [2.3844207734210774, 48.844478048250785]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "49a681a7829a8d8e5876299ce4940ef0bedcd729", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 109, "zemmour_eric": 123.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "17-38", "geo_shape": {"coordinates": [[[2.300364069315359, 48.88836044878199], [2.300355202595591, 48.888348332456275], [2.300196983535855, 48.888258016212085], [2.300039793583916, 48.88816828763103], [2.299881574254632, 48.88807797094729], [2.299724385377511, 48.8879882428367], [2.299566167142458, 48.887897925721425], [2.299408979364434, 48.887808196282805], [2.299250762223405, 48.887717878735934], [2.299093575532483, 48.88762814886861], [2.298935359485573, 48.887537830890174], [2.298778175233096, 48.88744810150132], [2.298619960280293, 48.88735778309134], [2.298462775763348, 48.887268052366494], [2.298458844812347, 48.887264253941396], [2.298394883096112, 48.887145089168136], [2.298331334109302, 48.88702669029732], [2.298267371625138, 48.88690752452296], [2.298203823206054, 48.886789126458126], [2.298194469691643, 48.88677170014004], [2.298195186991492, 48.88677068989802], [2.298185094898884, 48.88675423412557], [2.298130486549368, 48.886652494569525], [2.298068155973341, 48.886536365360584], [2.298004196045123, 48.88641720029969], [2.29794186603248, 48.88630107100016], [2.297877906682266, 48.88618190584631], [2.297815577232795, 48.886065776456185], [2.297751618472809, 48.88594661031008], [2.297689289586605, 48.885830480829355], [2.297625331392482, 48.885711315489516], [2.297563003069538, 48.88559518591822], [2.297557294731523, 48.885590528058756], [2.297538435765742, 48.88558287381053], [2.29751032432952, 48.88557146361896], [2.297503948519504, 48.88556371892738], [2.297484059628983, 48.88556306533019], [2.2972881685642372, 48.88553133666981], [2.297053516253145, 48.88549332941098], [2.297012819835487, 48.88548673758465], [2.296990634090703, 48.88548702461185], [2.296985492019997, 48.88550083155761], [2.2968753521364302, 48.885617048631744], [2.296764619666402, 48.88573388984895], [2.296654478809215, 48.88585010579599], [2.296543746711538, 48.8859669467922], [2.296433604856328, 48.88608316341069], [2.296322871779629, 48.88620000327857], [2.296212728938532, 48.88631621966922], [2.296101993507119, 48.88643305930008], [2.296106155427506, 48.886445378539904], [2.296263040945713, 48.88651225237862], [2.29641995396914, 48.886579138757675], [2.296576840281077, 48.88664601307638], [2.296733754110633, 48.88671289903603], [2.296890641240702, 48.88677977203615], [2.297047555876383, 48.88684665757646], [2.297204443800398, 48.88691353105658], [2.297361359242109, 48.88698041617745], [2.297518247972115, 48.88704728923825], [2.297675165595741, 48.8871141730485], [2.297832055131738, 48.88718104568999], [2.297988972185716, 48.88724792997207], [2.297993026763032, 48.887260359122614], [2.297866416993099, 48.88738971222984], [2.297750664346026, 48.887507972664366], [2.2977408534743082, 48.8875120223693], [2.297573048161609, 48.88752548042234], [2.297407102213384, 48.88753878817077], [2.297239296728176, 48.887552245755735], [2.2970733506093612, 48.88756555304131], [2.297068405040275, 48.887566608601105], [2.296925628917362, 48.88761860154029], [2.29677504753302, 48.88767343801877], [2.296632270812033, 48.88772543150238], [2.296481687458409, 48.887780266699345], [2.296338911515263, 48.887832259836095], [2.2961883275316293, 48.88788709555808], [2.2961814583735762, 48.88789980140128], [2.296184958504341, 48.8879053978282], [2.296378484247091, 48.88795090102232], [2.29656381290298, 48.88799447524225], [2.29675733930785, 48.88803997782038], [2.296942668597799, 48.888083551450386], [2.296951184317214, 48.88809453281874], [2.296904151419944, 48.88820124464764], [2.296857398320219, 48.88830731956709], [2.296810365026408, 48.88841403223769], [2.296763611544574, 48.88852010709996], [2.296716576502665, 48.88862681970508], [2.296669824002412, 48.88873289451814], [2.296675165752103, 48.88874280234129], [2.29683221901619, 48.888814382430326], [2.296986606557318, 48.88888474694861], [2.29714366067766, 48.88895632661992], [2.297298047708937, 48.88902668982035], [2.297455104049234, 48.88909826908192], [2.2976094919100882, 48.889168632770925], [2.297763881551905, 48.88923899626436], [2.297920937821344, 48.88931057399384], [2.29807532830488, 48.88938093707661], [2.298232385418452, 48.88945251528758], [2.298386776743714, 48.889522877959685], [2.298543834725662, 48.88959445485365], [2.298698226892647, 48.889664817115104], [2.298855285718744, 48.88973639449055], [2.298875259517741, 48.88973298877246], [2.298885634452278, 48.88971918006328], [2.298904969379017, 48.889702854430936], [2.298925794789138, 48.88969990965068], [2.298928882759531, 48.88968732632707], [2.299048016296629, 48.88957672097366], [2.2991652710921002, 48.88946785908933], [2.299284403624945, 48.889357253478614], [2.299401656068393, 48.8892483913331], [2.299520787596997, 48.88913778546513], [2.299638040415648, 48.88902892307434], [2.299757170940122, 48.88891831694903], [2.299874421406682, 48.88880945429707], [2.299991671370991, 48.88870059241876], [2.300110800405119, 48.888589985009325], [2.300228050744649, 48.888481122885715], [2.300347178774567, 48.88837051521903], [2.300364069315359, 48.88836044878199]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 38, "roussel_fabien": 17.0, "nb_emargement": 1147.0, "nb_procuration": 47.0, "nb_vote_blanc": 13.0, "jadot_yannick": 33.0, "le_pen_marine": 102.0, "nb_exprime": 1129.0, "nb_vote_nul": 10.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1470.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1152, "quartier_bv": "66", "geo_point_2d": [48.887856742892986, 2.298065903256059], "melenchon_jean_luc": 327.0, "poutou_philippe": 7.0, "macron_emmanuel": 361.0}, "geometry": {"type": "Point", "coordinates": [2.298065903256059, 48.887856742892986]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2423ded66ad42e80f4ee343e61dd8e971ec3ef35", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 53, "zemmour_eric": 112.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "8-17", "geo_shape": {"coordinates": [[[2.306409003172263, 48.87016285412039], [2.306433807784023, 48.870161560700424], [2.306505608663342, 48.87013839321541], [2.306690300451652, 48.87007859281699], [2.306866571412237, 48.87002171570311], [2.30705126100926, 48.86996191473353], [2.307227531180986, 48.86990503708204], [2.307412221313133, 48.86984523555708], [2.307588490695793, 48.86978835736807], [2.307773179999855, 48.86972855527982], [2.30794944859365, 48.869671676553196], [2.308134137069522, 48.86961187390172], [2.308310404874349, 48.86955499463757], [2.308486672294233, 48.86949811511087], [2.308671359537987, 48.86943831162109], [2.3088476261689, 48.86938143155684], [2.3090323125846632, 48.869321627503794], [2.309208578414576, 48.8692647478013], [2.309393264014168, 48.869204942285684], [2.309569529055213, 48.869148062045646], [2.3097542138266, 48.869088255966815], [2.309930478078673, 48.86903137518922], [2.310115162022056, 48.868971568547096], [2.310129592498877, 48.868972570852456], [2.310283128082511, 48.86905218346868], [2.310433925292143, 48.869129121639375], [2.310587461802418, 48.86920873385397], [2.310738261277926, 48.86928567163817], [2.310891798726541, 48.8693652825518], [2.311042597741651, 48.86944221993389], [2.311196136104915, 48.86952183134514], [2.311346937385815, 48.86959876834071], [2.31150047532442, 48.869678378443204], [2.311651277508019, 48.86975531504447], [2.311804817724388, 48.8698349256524], [2.311955619447592, 48.86991186185146], [2.311994758805409, 48.86992542590683], [2.312037645686316, 48.86990122374253], [2.312204582698057, 48.869847533577946], [2.312374658671825, 48.8697932487595], [2.312541593615104, 48.86973955901113], [2.312711668885231, 48.86968527370853], [2.312878603146991, 48.869631582585605], [2.313048677713269, 48.86957729679887], [2.313215612632975, 48.869523606107805], [2.313385685132312, 48.869469319829065], [2.31355261937048, 48.86941562776345], [2.313722692529362, 48.8693613410084], [2.31388962471094, 48.869307648459724], [2.314059697165968, 48.86925336122052], [2.314226630005496, 48.86919966910366], [2.314396700393687, 48.8691453813725], [2.314563632551655, 48.869091687881124], [2.314733703599173, 48.869037399673665], [2.3147402245411772, 48.86902565469305], [2.314675464716527, 48.86892945333424], [2.3146146067739872, 48.868854388192915], [2.314614305563427, 48.86884630135801], [2.314675806907171, 48.868765216040536], [2.314768326842989, 48.86863619961203], [2.31477030271522, 48.86863419099508], [2.314844800652209, 48.86855415217515], [2.314972870158722, 48.868455640699416], [2.315052536290728, 48.8684093468708], [2.315057708129514, 48.86840688258337], [2.315169524677196, 48.8683760534307], [2.315368697266738, 48.86832213136399], [2.315373526504309, 48.86832146109553], [2.315506876554321, 48.868316249435026], [2.31564556932361, 48.86831392809215], [2.315778919327121, 48.86830871612853], [2.31591761205252, 48.868306395369686], [2.315919944697959, 48.868306488743535], [2.316070530744927, 48.86831836179664], [2.316308204793589, 48.86834146314124], [2.316458791018349, 48.86835333660473], [2.316466284561084, 48.86835252142452], [2.316645156420774, 48.86829615020151], [2.316822879432729, 48.86823961746562], [2.317001750518949, 48.868183245703925], [2.317179474121777, 48.868126712440606], [2.317358344446208, 48.86807033924098], [2.317536067276839, 48.86801380544239], [2.317714935452752, 48.86795743259562], [2.317892657511292, 48.86790089826176], [2.318071526276682, 48.86784452488412], [2.318249247563025, 48.86778799001502], [2.318428114191684, 48.867731616090964], [2.318605834717594, 48.86767507978737], [2.318784701935817, 48.86761870533244], [2.318962421677759, 48.86756216939284], [2.319140141033947, 48.8675056331865], [2.319319007092135, 48.86744925792447], [2.319496724312978, 48.86739272117514], [2.319675589597581, 48.86733634537447], [2.319853307421099, 48.86727980719837], [2.320032171932108, 48.867223430859084], [2.320209888971673, 48.867166893047035], [2.320388751345955, 48.86711051616136], [2.320566467613311, 48.86705397781411], [2.320745330577133, 48.866997600397546], [2.320923046072275, 48.86694106151506], [2.32110190691109, 48.86688468265286], [2.321279621634015, 48.86682814323518], [2.321458483050638, 48.86677176474142], [2.321636197001345, 48.866715224788486], [2.321815057644364, 48.86665884575607], [2.321992769459732, 48.86660230526024], [2.32217162932925, 48.866545925689245], [2.322349341735414, 48.866489384665904], [2.322528200843021, 48.86643300365699], [2.322705912476958, 48.8663764620985], [2.322884769436145, 48.86632008144257], [2.323062480297958, 48.866263539348815], [2.323241337846547, 48.86620715816203], [2.323298353092091, 48.86618323506923], [2.323301952661925, 48.866172997479005], [2.323209372703416, 48.866053634385686], [2.323120089471796, 48.86593782787898], [2.323027508973127, 48.865818465511204], [2.322938226548935, 48.86570265884422], [2.322845648247877, 48.865583296318114], [2.322756366630997, 48.86546748949088], [2.322663789176233, 48.86534812589943], [2.322574508366656, 48.86523231891194], [2.32248193037181, 48.86511295604605], [2.322392650369428, 48.8649971488983], [2.322300074583946, 48.86487778497481], [2.322210795388846, 48.86476197766679], [2.322118220426236, 48.86464261447659], [2.322028942038512, 48.864526807008325], [2.321936366559, 48.86440744274509], [2.321847088978542, 48.86429163511656], [2.321754515685044, 48.86417227159434], [2.321665238911738, 48.86405646380559], [2.321572666452778, 48.86393710011732], [2.321483390486713, 48.86382129216832], [2.321390817510951, 48.86370192740711], [2.321301543715164, 48.86358611930558], [2.321208971562213, 48.863466755277585], [2.32111969721071, 48.863350947008115], [2.321030423256002, 48.86323513865995], [2.320937853722636, 48.86311577349289], [2.320897579145885, 48.863075951128465], [2.320854148799568, 48.863080900215735], [2.320670935801236, 48.86313656882067], [2.320484937837243, 48.863196502232405], [2.320301724037755, 48.86325217026633], [2.3201157252363043, 48.86331210309801], [2.319932510635762, 48.86336777056093], [2.319746510996854, 48.8634277028125], [2.319563295595264, 48.863483369704376], [2.319377295118902, 48.86354330137595], [2.319194078916262, 48.863598967696774], [2.31900807760245, 48.86365889878827], [2.318824860598867, 48.86371456453807], [2.318638858447503, 48.863774495049455], [2.318632490312877, 48.86377540400928], [2.318438091895043, 48.86377253256052], [2.3182413077210953, 48.863768851281755], [2.318046907986333, 48.863765979189864], [2.317850125227728, 48.863762297275606], [2.317655725527214, 48.86375942544755], [2.31745894146975, 48.863755741983084], [2.317264543178308, 48.86375286952738], [2.31706775917327, 48.86374918541969], [2.316873360927866, 48.86374631232857], [2.316676576975263, 48.86374262757766], [2.316482177412861, 48.86373975384335], [2.316285394863944, 48.86373606935629], [2.316090995359402, 48.863733194087246], [2.315894211499888, 48.86372950894922], [2.315699813404463, 48.863726633052565], [2.315503029597406, 48.86372294727129], [2.315308631548064, 48.86372007073926], [2.315111847793473, 48.86371638431475], [2.314917448415353, 48.863713508038785], [2.314720666088108, 48.86370982007959], [2.314526266756083, 48.863706943168246], [2.314329483118388, 48.86370325455803], [2.3141350851954092, 48.86370037701903], [2.313938301598375, 48.86369668866489], [2.313743903733351, 48.8636938095912], [2.3135471201888222, 48.86369012059387], [2.313352721006989, 48.86368724087694], [2.313155938877915, 48.86368355124422], [2.312961539742221, 48.86368067089186], [2.312764756302629, 48.863676980608105], [2.312570358576126, 48.86367409962819], [2.312373575189069, 48.86367040870121], [2.312179177496852, 48.86366752798514], [2.311982394174211, 48.86366383551568], [2.311787995165114, 48.86366095415641], [2.3115912132580743, 48.863657261051564], [2.311396814295149, 48.86365437905684], [2.311200031065748, 48.863650686200195], [2.311005633523934, 48.86364780267867], [2.310808850347104, 48.86364410917885], [2.310614452851488, 48.863641225021865], [2.31041766972724, 48.863637530878826], [2.310406032157752, 48.863633663172074], [2.310335820340431, 48.863645516720446], [2.310139037231642, 48.86364182121999], [2.309937541127487, 48.86363817916237], [2.309740758062754, 48.86363448390634], [2.309539262026743, 48.86363084027882], [2.309342479017984, 48.86362714436792], [2.309140983026294, 48.86362350096915], [2.308944200085445, 48.863619803504065], [2.308742704150005, 48.863616159434756], [2.308545922628197, 48.86361246132265], [2.308344425385874, 48.863608816574875], [2.308147643908134, 48.8636051187072], [2.307946148097167, 48.86360147239743], [2.307749365312401, 48.86359777386698], [2.30754786955772, 48.86359412688668], [2.3073510868289793, 48.86359042770131], [2.307149591118635, 48.863586780949746], [2.306952808457888, 48.86358308021024], [2.3067513128038453, 48.863579432788065], [2.306554530187179, 48.86357573229298], [2.306353034601417, 48.863572083300944], [2.306156253403842, 48.86356838215887], [2.305954756511371, 48.86356473248841], [2.305757975369861, 48.86356103069146], [2.305556479884677, 48.863557381257586], [2.30546943106729, 48.86355574293604], [2.305451234853161, 48.863555123807345], [2.305430440312914, 48.86356034886172], [2.30532070668576, 48.863558283788464], [2.305120020569476, 48.86355445664884], [2.304923238163067, 48.86355075347146], [2.304722553480032, 48.863546924773985], [2.304525771130432, 48.86354322094301], [2.304325085130581, 48.86353939247036], [2.304128302837592, 48.86353568798589], [2.303927616907987, 48.863531857947414], [2.3037308360347613, 48.863528152817324], [2.303530150151385, 48.863524323011646], [2.303333367971853, 48.863520617220054], [2.303132682158858, 48.86351678584856], [2.302935900036073, 48.86351307940344], [2.302735214269212, 48.86350924826474], [2.302538433566215, 48.863505541173986], [2.302337747869669, 48.86350170846949], [2.302140965860402, 48.86349800071724], [2.301940280210197, 48.86349416824552], [2.3017886510750962, 48.863491310549485], [2.301743498269755, 48.863490458940426], [2.301730742060196, 48.863471960420064], [2.301704073851147, 48.863491701150394], [2.3016141732220072, 48.86349090316266], [2.301602811254177, 48.86353790706394], [2.301594110201049, 48.86367844633903], [2.301584507904985, 48.863812084118976], [2.301574906922705, 48.86394572188996], [2.301566205738245, 48.86408626021201], [2.301556603295435, 48.864219897940494], [2.301547902015804, 48.864360436226434], [2.301573456972186, 48.864466982034614], [2.301581895793492, 48.86446894419811], [2.301572293320393, 48.86460258188168], [2.301562326245087, 48.86473931388112], [2.301552725035023, 48.864872951538445], [2.301542757856732, 48.86500968350288], [2.301533156558598, 48.86514332022671], [2.301523189277218, 48.865280052156116], [2.3015135878671, 48.86541368974504], [2.301503620482528, 48.86555042163943], [2.30149401897238, 48.86568405919414], [2.301484416049876, 48.86581769672395], [2.301474449886597, 48.865954427674666], [2.301464846864053, 48.8660880651703], [2.3014548792226233, 48.866224796977306], [2.301459688865042, 48.86623209358178], [2.301617024116873, 48.86631995625737], [2.301775504620306, 48.86640703217226], [2.301932842284105, 48.86649489532606], [2.302091323859675, 48.86658196990974], [2.302248661221482, 48.866669832626485], [2.302407143857136, 48.86675690677826], [2.302564483643089, 48.86684476907391], [2.302722965975712, 48.866931842785725], [2.302723057992647, 48.86693189368529], [2.302880398839841, 48.86701975555175], [2.303039178038826, 48.867108561797785], [2.303196519952893, 48.86719642323467], [2.303355301592398, 48.86728522905509], [2.303512643222132, 48.86737308915517], [2.303671425939027, 48.867461894542075], [2.303828768623513, 48.867549755111796], [2.303987552417706, 48.86763856006511], [2.304144896168979, 48.867726420205265], [2.304303681052689, 48.86781522382576], [2.3044610272339, 48.86790308354417], [2.304619811819858, 48.86799188762244], [2.304620563079033, 48.868005154650376], [2.304462955241903, 48.86810755578724], [2.304306969529815, 48.86821032857583], [2.304149360467487, 48.86831272838145], [2.303993373522236, 48.8684155007423], [2.303835763210675, 48.86851790101522], [2.303679775032454, 48.86862067294834], [2.303680677346604, 48.868633942653474], [2.303831188819415, 48.86871676030244], [2.303980455628564, 48.86879900212861], [2.304130968054888, 48.86888181938828], [2.304280234447218, 48.868964060820424], [2.30443074919024, 48.86904687769864], [2.304580016528726, 48.86912911874468], [2.304730532225275, 48.869211935233565], [2.304879800510024, 48.86929417589343], [2.305030317160105, 48.86937699199301], [2.305179586391223, 48.86945923226674], [2.305330103994842, 48.86954204797696], [2.30547937417213, 48.86962428786456], [2.305629892729291, 48.86970710318544], [2.305779163852857, 48.869789342686914], [2.305929682000361, 48.86987215761051], [2.306078955433513, 48.86995439673371], [2.306229474534562, 48.870037211267935], [2.306378748913903, 48.87011945000503], [2.306409003172263, 48.87016285412039]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 17, "roussel_fabien": 0.0, "nb_emargement": 649.0, "nb_procuration": 31.0, "nb_vote_blanc": 6.0, "jadot_yannick": 24.0, "le_pen_marine": 55.0, "nb_exprime": 642.0, "nb_vote_nul": 1.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 913.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 649, "quartier_bv": "29", "geo_point_2d": [48.86620020357731, 2.3114893618906938], "melenchon_jean_luc": 72.0, "poutou_philippe": 3.0, "macron_emmanuel": 308.0}, "geometry": {"type": "Point", "coordinates": [2.3114893618906938, 48.86620020357731]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bd6d86d9f9d72056453c32e715d3d9e8436bcbf4", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 130, "zemmour_eric": 127.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "15-22", "geo_shape": {"coordinates": [[[2.301488231655742, 48.84786220089448], [2.301429119798029, 48.84790226954194], [2.301226881378428, 48.8479135357035], [2.301027699954985, 48.84792466109549], [2.300825461349647, 48.847935927477614], [2.300626278404469, 48.847947051293836], [2.300424039625462, 48.847958316997165], [2.300224856496852, 48.8479694410442], [2.300022617556262, 48.84798070516945], [2.299823435619029, 48.847991828555934], [2.2996211964928133, 48.84800309290175], [2.299422013021705, 48.84801421561175], [2.299219773733839, 48.8480254783795], [2.299020591454129, 48.84803660042895], [2.299003179984042, 48.848040353084265], [2.299000232279701, 48.84805181168832], [2.2989243918537188, 48.84818267163055], [2.298852563751057, 48.84830810038845], [2.298780736653175, 48.84843352999647], [2.298704893757962, 48.848564389746734], [2.298697879933326, 48.848569340997486], [2.298535617598592, 48.84861880534351], [2.298330764379563, 48.848681408507076], [2.29816850133532, 48.8487308732495], [2.297963645884106, 48.84879347487095], [2.297801382142462, 48.84884293911048], [2.297801101591845, 48.84884302740019], [2.297700752903678, 48.848875550236194], [2.29769917671274, 48.84887824356897], [2.297710599521177, 48.848894093536295], [2.297828516489628, 48.848990326730586], [2.297938121213912, 48.84908008237879], [2.298047726315751, 48.849169837919334], [2.298165643168033, 48.84926607074951], [2.298179766356614, 48.84926933284176], [2.298197053682985, 48.84925955385165], [2.298285366742898, 48.849215717090125], [2.2983864206175593, 48.84916616308396], [2.298404223851663, 48.84916704903035], [2.298535166025065, 48.84925420506267], [2.298661346119085, 48.8493384029054], [2.298792289153178, 48.849425558642956], [2.298918470077536, 48.8495097562016], [2.2990446513975398, 48.84959395452007], [2.29917559571473, 48.849681109818064], [2.299301777877178, 48.849765306953145], [2.299432723055073, 48.84985246195634], [2.29956366867087, 48.84993961680938], [2.299713934792115, 48.85003974276684], [2.299732910711734, 48.85003999143379], [2.299887338232708, 48.84994494318483], [2.300041708906137, 48.84985012823323], [2.300196136663816, 48.84975507957747], [2.300350506200894, 48.84966026511055], [2.300504931470139, 48.84956521603208], [2.300659299895027, 48.84947040025129], [2.300678398333392, 48.849470744818085], [2.30079988689508, 48.849553986601], [2.300912951539869, 48.849632231642026], [2.301026017874902, 48.84971047747793], [2.301147506200139, 48.84979371798272], [2.301151228549124, 48.84980098588175], [2.301127958530169, 48.84993436648011], [2.301104122875858, 48.850067643026115], [2.301080851242409, 48.8502010244747], [2.301057015357714, 48.85033430008008], [2.301033744847301, 48.850467681495516], [2.301009908708096, 48.850600957958875], [2.300986636607495, 48.85073433842592], [2.300962800225834, 48.85086761484796], [2.300966711350419, 48.85087503673964], [2.301084258185647, 48.850952398440796], [2.301187696147569, 48.85102124071395], [2.301269031993292, 48.851049981738754], [2.301273033008735, 48.85104724856389], [2.3013040791961368, 48.85102740020489], [2.30143939732523, 48.85093980116781], [2.3015849641980592, 48.85084673612623], [2.30172028137379, 48.85075913765659], [2.301865848603018, 48.85066607226612], [2.302001164849494, 48.85057847256525], [2.302146729709824, 48.85048540681005], [2.302282046377693, 48.85039780678526], [2.302427610231629, 48.85030474067318], [2.302562924583472, 48.85021714120787], [2.302708488793916, 48.850124074746915], [2.302843802216508, 48.850036474050476], [2.302989364057884, 48.84994340722477], [2.303124676539197, 48.849855806196445], [2.303270238736979, 48.849762739021855], [2.303405550265095, 48.84967513856093], [2.303551110093937, 48.849582071021615], [2.303686420692709, 48.849494469329564], [2.303750855612954, 48.849453271323334], [2.303758500733415, 48.849439699477216], [2.303694069328341, 48.84939262156355], [2.303557696148765, 48.84929851184306], [2.303418780367481, 48.84920064580752], [2.303282406824875, 48.849106535749065], [2.303143492084352, 48.849008668477715], [2.303007119541174, 48.848914558089284], [2.302868205817457, 48.84881669138075], [2.302731834273798, 48.84872258066228], [2.302592921578701, 48.84862471361725], [2.302456552397196, 48.84853060257676], [2.302317639380308, 48.848432734288], [2.302181271198305, 48.84833862291753], [2.302042360560724, 48.84824075519955], [2.301905992015576, 48.8481466434911], [2.301767082406589, 48.84804877543664], [2.301725201003935, 48.848019871905095], [2.301721469541685, 48.848015626717924], [2.301705004525965, 48.84800601805676], [2.301610518445502, 48.84794080863385], [2.30151106133171, 48.84787398003516], [2.301488231655742, 48.84786220089448]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 22, "roussel_fabien": 15.0, "nb_emargement": 1174.0, "nb_procuration": 76.0, "nb_vote_blanc": 4.0, "jadot_yannick": 69.0, "le_pen_marine": 49.0, "nb_exprime": 1168.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1462.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1174, "quartier_bv": "59", "geo_point_2d": [48.84916036552661, 2.3009131131939435], "melenchon_jean_luc": 165.0, "poutou_philippe": 2.0, "macron_emmanuel": 579.0}, "geometry": {"type": "Point", "coordinates": [2.3009131131939435, 48.84916036552661]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7ff3887aca1062a9176f639825a03387441d1a46", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 37, "zemmour_eric": 37.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-47", "geo_shape": {"coordinates": [[[2.340137807950283, 48.895269928659], [2.340140911658806, 48.89526976319862], [2.3401756717390683, 48.89524200203611], [2.340296553871495, 48.89514546222247], [2.34042835913698, 48.895042694390824], [2.340549240338117, 48.89494615430459], [2.3406810432364082, 48.89484338616865], [2.340734989423991, 48.894829824626086], [2.34072660555379, 48.89480234018477], [2.340687274660138, 48.894674213204], [2.340646596028948, 48.89453642276072], [2.34060726553307, 48.89440829572265], [2.340566587321386, 48.894270505218756], [2.340527257223176, 48.89414237812327], [2.340486579430992, 48.89400458755874], [2.340447249730646, 48.89387646040594], [2.340406572357955, 48.893738669780824], [2.340367243055367, 48.89361054257061], [2.340326566102164, 48.89347275188488], [2.340287237197326, 48.89334462461735], [2.340246560674898, 48.893206832971735], [2.340221938747015, 48.893126618044604], [2.340206481863266, 48.89311617268613], [2.340159100737354, 48.893126044284344], [2.339963145555715, 48.893152708477785], [2.339758387201911, 48.89317886785843], [2.339562432979973, 48.89320553140242], [2.339357672841882, 48.893231690988365], [2.339161718215936, 48.893258353875346], [2.338956959044022, 48.89328451188315], [2.338761002650259, 48.89331117410562], [2.338556243069304, 48.89333733142702], [2.338360286271655, 48.893363992992484], [2.338155526281568, 48.89339014962746], [2.338084687096186, 48.89339978733189], [2.3380516308034203, 48.89339588860925], [2.338030004082699, 48.893406998900524], [2.337904887394965, 48.89342402205486], [2.337692195150916, 48.89345463065384], [2.337496237469355, 48.89348129080258], [2.337283544739579, 48.89351189957345], [2.337087587996961, 48.893538559059664], [2.336874894804561, 48.893569166203825], [2.3366789376371733, 48.89359582501994], [2.33661420681966, 48.893605140458575], [2.336588136242574, 48.89361666833841], [2.336598746532369, 48.893645102540376], [2.336686619180984, 48.893788841470936], [2.336772381327448, 48.893929126920746], [2.336858142583683, 48.894069411384365], [2.336946016664546, 48.894213150068936], [2.336953395387761, 48.89421808233589], [2.337121467654057, 48.89426451759289], [2.33727900092435, 48.89430915319998], [2.337447072411182, 48.89435558798859], [2.337604607600015, 48.89440022317122], [2.337762143058857, 48.89444485814477], [2.337930215414651, 48.89449129224957], [2.338087751428287, 48.894535926791086], [2.338255824368456, 48.89458236043504], [2.338264333752212, 48.89458280225889], [2.338282402242624, 48.89457996941354], [2.338483809804043, 48.89454751228492], [2.338675122713339, 48.8945175234672], [2.338876529788267, 48.894485065676264], [2.339085910644364, 48.8944522432625], [2.339287318574521, 48.89441978478629], [2.339496697533759, 48.89438696254407], [2.339512236265284, 48.894391942355774], [2.339586913603549, 48.894498618038895], [2.33965923127159, 48.89460478602494], [2.339733910568673, 48.894711462502414], [2.339806228832003, 48.89481763037907], [2.339880907383207, 48.894924305837385], [2.339953226242033, 48.89503047360467], [2.340027906763483, 48.89513714895809], [2.34010022621761, 48.895243316615996], [2.340137807950283, 48.895269928659]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 47, "roussel_fabien": 23.0, "nb_emargement": 1092.0, "nb_procuration": 86.0, "nb_vote_blanc": 9.0, "jadot_yannick": 138.0, "le_pen_marine": 47.0, "nb_exprime": 1072.0, "nb_vote_nul": 11.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1321.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1092, "quartier_bv": "69", "geo_point_2d": [48.893998804281445, 2.338949396540412], "melenchon_jean_luc": 353.0, "poutou_philippe": 5.0, "macron_emmanuel": 390.0}, "geometry": {"type": "Point", "coordinates": [2.338949396540412, 48.893998804281445]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "351a7a0ab32ef26f793a6cc9137842efdc78d176", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 57, "zemmour_eric": 69.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-23", "geo_shape": {"coordinates": [[[2.323997144386479, 48.83099929774732], [2.323939642423708, 48.83100996217826], [2.323772021924389, 48.83107405642049], [2.323600388650469, 48.83113986712245], [2.323432765965832, 48.83120395997477], [2.323261131824273, 48.8312697710816], [2.323093508304944, 48.831333863451036], [2.322921873318993, 48.831399673164036], [2.322754248964873, 48.831463765050586], [2.322582613111272, 48.83152957516843], [2.32241498792236, 48.831593666572026], [2.322243351224579, 48.8316594752961], [2.322075726562982, 48.83172356622455], [2.32190408899744, 48.83178937535344], [2.321736462138945, 48.83185346579124], [2.321564823729236, 48.83191927352634], [2.321397196035848, 48.831983363481214], [2.321225556758466, 48.832049171621115], [2.3210579282302852, 48.83211326109309], [2.320886288108646, 48.83217906783921], [2.320718658733954, 48.83224315772754], [2.32058122850502, 48.83229584848916], [2.320568632884913, 48.83229645956242], [2.320556882476364, 48.832306955056964], [2.320522673076503, 48.83232007054759], [2.320482652479535, 48.83233482764658], [2.320476909080851, 48.83234642301918], [2.320551370696611, 48.83245379687176], [2.320623091247098, 48.832559216046704], [2.320697552105675, 48.83266658978016], [2.320769273232823, 48.83277200974672], [2.320843736058688, 48.8328793833765], [2.320915457774229, 48.83298480323537], [2.320916068846664, 48.83298558196456], [2.320943922475804, 48.83301719028789], [2.320965806952315, 48.83304248529171], [2.3209814268952202, 48.8330549628351], [2.321003971815097, 48.83304681389338], [2.32115526239711, 48.83298513116244], [2.3213408792984103, 48.83290939694577], [2.321492169094562, 48.8328477128818], [2.321677785017198, 48.832771978133025], [2.321829072653645, 48.83271029362761], [2.322014687597516, 48.83263455834669], [2.322165975787035, 48.83257287431458], [2.322351589752145, 48.832497138501516], [2.322502877155888, 48.83243545313642], [2.322521822716376, 48.83243859763685], [2.322622929603154, 48.83255385930021], [2.3227248766271122, 48.83266687988611], [2.322740712322063, 48.832670848553924], [2.3229140817387792, 48.832634415306515], [2.323114836911383, 48.83259214337409], [2.323288204442743, 48.832555709574144], [2.323488960371095, 48.83251343701852], [2.323488982224704, 48.83251343264525], [2.3236623492328, 48.83247699830042], [2.32386924149401, 48.8324336931499], [2.3240426093332722, 48.83239725825903], [2.32424950096212, 48.832353952447654], [2.324422866908192, 48.8323175169953], [2.324629757904671, 48.832274210523074], [2.324803124681994, 48.83223777452465], [2.324847135495301, 48.83221986192372], [2.324841360791146, 48.83220849632089], [2.324787022768644, 48.83213004120958], [2.324703144736964, 48.832011009527406], [2.324626541473057, 48.83190040820928], [2.3245426641771862, 48.83178137639019], [2.3244660629535, 48.831670774954276], [2.324382186405186, 48.83155174209892], [2.324305584497194, 48.831441140529876], [2.324221708673121, 48.831322108436886], [2.3241451088051193, 48.831211506750115], [2.324061233716928, 48.83109247452015], [2.324006486157966, 48.831013424859925], [2.323997144386479, 48.83099929774732]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 23, "roussel_fabien": 32.0, "nb_emargement": 1254.0, "nb_procuration": 55.0, "nb_vote_blanc": 11.0, "jadot_yannick": 137.0, "le_pen_marine": 70.0, "nb_exprime": 1236.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1560.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1254, "quartier_bv": "56", "geo_point_2d": [48.832065509172224, 2.322774434219275], "melenchon_jean_luc": 418.0, "poutou_philippe": 8.0, "macron_emmanuel": 387.0}, "geometry": {"type": "Point", "coordinates": [2.322774434219275, 48.832065509172224]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a15475dd87bd81f6797fd4c0cb773ae09707d0d5", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 68, "zemmour_eric": 99.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "2-6", "geo_shape": {"coordinates": [[[2.347030400002883, 48.86567729401474], [2.347020949209386, 48.86566728401336], [2.346996859506008, 48.86555329828423], [2.346963314693378, 48.865422156314665], [2.3469279285974283, 48.8652834974424], [2.346894384143321, 48.86515235452222], [2.346894320273281, 48.86515212124341], [2.346858934544493, 48.865013462316924], [2.346827196845827, 48.8649066537868], [2.346795459266024, 48.86479984613718], [2.34676061577852, 48.864697885174046], [2.346725772427303, 48.86459592419135], [2.346694035256017, 48.864489115585634], [2.346673932271626, 48.86444537410953], [2.346612958926629, 48.86445625967942], [2.346429221936912, 48.86450002135427], [2.346232930262086, 48.86454703005264], [2.346049193996078, 48.86459079114794], [2.345852901625038, 48.864637800118444], [2.345669164730968, 48.864681559727444], [2.345472870311932, 48.86472856806339], [2.345289132767217, 48.86477232798465], [2.345092839037637, 48.86481933480164], [2.344909100853578, 48.86486309413591], [2.344714379597745, 48.864910527134626], [2.344530640774162, 48.86495428588427], [2.344335918832895, 48.865001718263365], [2.344152179369694, 48.86504547642837], [2.343957456743097, 48.865092908187854], [2.343773716640383, 48.86513666576825], [2.343578993328362, 48.865184096908045], [2.343395252586141, 48.865227853903846], [2.343200529951689, 48.86527528443141], [2.3430167872069783, 48.86531904083514], [2.34301655477125, 48.86531909621793], [2.34283264586575, 48.86536141157553], [2.342648902508273, 48.86540516741101], [2.34246499162585, 48.86544748309215], [2.342281249019089, 48.86549123836734], [2.342097337545536, 48.86553355258098], [2.34191359432641, 48.86557730728828], [2.341831147473735, 48.86559627707143], [2.341806451900686, 48.865599439159304], [2.341793693798264, 48.86560722387384], [2.341692229888543, 48.86563056861092], [2.341558127922366, 48.86566207782858], [2.341374215247085, 48.8657043918238], [2.341240112898529, 48.86573590068304], [2.341203584597329, 48.865749757277676], [2.341221044893861, 48.86578634519944], [2.341346360287512, 48.86591775196258], [2.34148237100267, 48.86604663540472], [2.341482961748429, 48.86605630211182], [2.341372694348231, 48.866181137722485], [2.341282251448198, 48.866279976163995], [2.341277183645212, 48.86628327674534], [2.341177421209887, 48.86632049379757], [2.341047672581298, 48.8663681642327], [2.341041143426298, 48.866378361024196], [2.341040248359989, 48.866384675788446], [2.341100883651003, 48.86640477810352], [2.341277200398917, 48.866467266486126], [2.341454609473843, 48.86653029482385], [2.341630927070981, 48.8665927826783], [2.341808336989966, 48.866655811383836], [2.341984655436228, 48.866718298710104], [2.342162067585126, 48.866781325992406], [2.342338386880512, 48.866843812790464], [2.342515798521601, 48.86690683953378], [2.342692118666106, 48.866969325803694], [2.34286953252585, 48.867032352023024], [2.343045853519475, 48.8670948377647], [2.343223266871504, 48.86715786344508], [2.343399588714246, 48.86722034865858], [2.343577002921591, 48.867283373807474], [2.343753326965265, 48.867345859399535], [2.343930742028129, 48.8674088840169], [2.343970831087213, 48.86741410950272], [2.343982740645499, 48.867394584388144], [2.3440057383166453, 48.867341630302874], [2.3440577279851, 48.86722118110578], [2.344115108617004, 48.867089060959096], [2.3441670977805122, 48.866968611687014], [2.344224476493701, 48.866836491450265], [2.344276465152272, 48.866716042103135], [2.344333844684336, 48.866583920892026], [2.3443858328378733, 48.86646347146992], [2.344443211803048, 48.86633135107549], [2.34449519945176, 48.86621090157837], [2.3445116921804052, 48.866204652430106], [2.344739296214976, 48.86624311810612], [2.344946951065447, 48.86627361389656], [2.344953529780122, 48.866273506906936], [2.345142486871303, 48.86623919851586], [2.345328394821494, 48.86620734094813], [2.345514303918716, 48.86617548219886], [2.345703258922013, 48.86614117291199], [2.345889167542456, 48.866109314477896], [2.346078122058866, 48.86607500459714], [2.346078739415675, 48.86607490904236], [2.3462363279710052, 48.86605300755826], [2.346468709029125, 48.86602096318678], [2.346626297268593, 48.86599906028893], [2.34685867919802, 48.86596701606547], [2.347016265747227, 48.865945112645605], [2.34707446392451, 48.865937601363996], [2.347074877020607, 48.86592073911743], [2.347051758842205, 48.86581024818223], [2.347027669005305, 48.865696262474], [2.347030400002883, 48.86567729401474]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 6, "roussel_fabien": 19.0, "nb_emargement": 1184.0, "nb_procuration": 70.0, "nb_vote_blanc": 13.0, "jadot_yannick": 94.0, "le_pen_marine": 45.0, "nb_exprime": 1167.0, "nb_vote_nul": 4.0, "arr_bv": "02", "arthaud_nathalie": 3, "nb_inscrit": 1455.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1184, "quartier_bv": "07", "geo_point_2d": [48.865851739646274, 2.3441828535635736], "melenchon_jean_luc": 236.0, "poutou_philippe": 3.0, "macron_emmanuel": 556.0}, "geometry": {"type": "Point", "coordinates": [2.3441828535635736, 48.865851739646274]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e3c489953f8d54d3e187362baca6c460d2ac47d7", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 56, "zemmour_eric": 56.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "3-2", "geo_shape": {"coordinates": [[[2.363863178922768, 48.86750003402926], [2.363893051866114, 48.86746256885744], [2.364072881642818, 48.86735703705953], [2.364242338233378, 48.86725338796599], [2.364245721817435, 48.86725014043025], [2.36431065292954, 48.8671433341752], [2.3643864685195, 48.8670141066372], [2.3644513990488383, 48.866907300283025], [2.364527213946241, 48.86677807262826], [2.364592145255846, 48.86667126618216], [2.364667958097471, 48.86654203840346], [2.364732888835283, 48.866435230959006], [2.364732943103841, 48.86643514041349], [2.364808755252565, 48.866305912518015], [2.364879260021274, 48.866186200217044], [2.364955072807872, 48.86605697220707], [2.365025576903435, 48.86593725979295], [2.365101388964797, 48.865808031661246], [2.365171892387221, 48.86568831913404], [2.365247703723357, 48.86555909088058], [2.365318206472753, 48.865439378240225], [2.365297658844149, 48.86541717152226], [2.365244671806072, 48.86539342485743], [2.365125591171978, 48.865275458669565], [2.365009163087242, 48.86516012081149], [2.364890082167603, 48.865042153457935], [2.364773656488664, 48.86492681535365], [2.364654576624737, 48.864808848640216], [2.364538150625514, 48.864693510275316], [2.364530375349823, 48.864689815858185], [2.364354303993463, 48.86465830046958], [2.3641783919869273, 48.8646268135461], [2.364002322419607, 48.86459529764509], [2.3638264108385503, 48.8645638102025], [2.363650341696995, 48.86453229378189], [2.363474430541425, 48.86450080582016], [2.363467160820915, 48.864497579881615], [2.363352024933311, 48.86439796860363], [2.363237767582475, 48.864299118226064], [2.363122631209028, 48.86419950670229], [2.36300837473961, 48.86410065518874], [2.362893239243386, 48.86400104342645], [2.36277898363359, 48.863902192575466], [2.362764268569242, 48.86388972575837], [2.36275919017811, 48.86388956561529], [2.362642779888801, 48.86394938075985], [2.362486458294351, 48.86402970318625], [2.362323694467574, 48.86411333484149], [2.362167371889098, 48.864193656839205], [2.36200460703785, 48.864277288048115], [2.361848283475446, 48.86435760961717], [2.361685517599827, 48.86444124037981], [2.361529193053489, 48.86452156152019], [2.361366424790217, 48.86460519182916], [2.361210100623016, 48.86468551254816], [2.361047331335358, 48.864769142410765], [2.36089100618422, 48.86484946270107], [2.360728235871969, 48.86493309211735], [2.360571908373806, 48.865013411971695], [2.360409138389205, 48.865097041848195], [2.360252809918133, 48.865177360374595], [2.360171727464953, 48.865183185462676], [2.360170302714883, 48.865192861976276], [2.360286804700934, 48.865306870364236], [2.360377202368259, 48.86538970547974], [2.360391920898774, 48.86540465388082], [2.360393346866594, 48.86540531172664], [2.360413219004848, 48.865423521704784], [2.360526647691432, 48.8655306783983], [2.360636918424355, 48.86563172325348], [2.360747189585147, 48.865732767997855], [2.360860619631925, 48.86583992434494], [2.36097089166722, 48.86594096886419], [2.361084322616548, 48.86604812587839], [2.361194595537485, 48.86614916927324], [2.361308028763316, 48.86625632606252], [2.361418301184833, 48.866357370124256], [2.36153173532417, 48.866464526681376], [2.361642009994458, 48.866565569626005], [2.361755443684184, 48.86667272594369], [2.361759851054434, 48.866675382720246], [2.361927485646021, 48.866743830612705], [2.362094926065048, 48.86680701967579], [2.362262561520499, 48.866875467090814], [2.362430001406042, 48.86693865567032], [2.362597639088492, 48.867007102615176], [2.362765079803477, 48.86707029071843], [2.362932520924664, 48.867133478583796], [2.363100159905319, 48.867201923913456], [2.363267601856149, 48.86726511130261], [2.36343524032653, 48.86733355704681], [2.363602683106802, 48.86739674395962], [2.363770323804195, 48.867465189233656], [2.36379812373917, 48.86750136102104], [2.363832727741581, 48.86750402713534], [2.363863178922768, 48.86750003402926]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 2, "roussel_fabien": 21.0, "nb_emargement": 1216.0, "nb_procuration": 79.0, "nb_vote_blanc": 11.0, "jadot_yannick": 110.0, "le_pen_marine": 52.0, "nb_exprime": 1204.0, "nb_vote_nul": 1.0, "arr_bv": "03", "arthaud_nathalie": 9, "nb_inscrit": 1551.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "10", "geo_point_2d": [48.8656663530734, 2.3629401690277674], "melenchon_jean_luc": 362.0, "poutou_philippe": 4.0, "macron_emmanuel": 485.0}, "geometry": {"type": "Point", "coordinates": [2.3629401690277674, 48.8656663530734]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ed410ab41e330877d87ab82c834ebdf3fca641e1", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 141, "zemmour_eric": 127.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "8-6", "geo_shape": {"coordinates": [[[2.323313424692168, 48.88267735664509], [2.32334315785773, 48.88262450453346], [2.323331196755073, 48.88250556222243], [2.32331969563855, 48.88238669444348], [2.3233077346441, 48.88226775210442], [2.323296233633648, 48.882148884297564], [2.323284272747402, 48.88202994193043], [2.323272771843019, 48.881911074095655], [2.323260812428495, 48.88179213170817], [2.323249311630177, 48.88167326384546], [2.32323735097202, 48.881554320522945], [2.323225850268085, 48.88143545353155], [2.323230671916858, 48.88142800282783], [2.323424467421225, 48.8813203120623], [2.323608691892992, 48.8812199135621], [2.323647882068012, 48.881203465816576], [2.323629445760274, 48.88118042325059], [2.323663608257213, 48.88106697011658], [2.323694239796957, 48.880960171873], [2.32372840201984, 48.88084671779854], [2.323759033285489, 48.88073992041627], [2.323755902905631, 48.880732331239095], [2.323638575323559, 48.88064378280314], [2.323516150491503, 48.880552240334815], [2.323514935934789, 48.88054139918999], [2.32360984883571, 48.880444854110344], [2.323701726306794, 48.880348713589555], [2.323702839867652, 48.880340559318185], [2.323648712547466, 48.880251912797334], [2.323555157138656, 48.88009585506844], [2.323501031687639, 48.88000720846882], [2.323470703115328, 48.879994654143054], [2.323449341725218, 48.880003999826286], [2.32329397658497, 48.880052253288305], [2.323093429071996, 48.88011641213484], [2.322938061891473, 48.88016466602166], [2.322737513507164, 48.880228824265444], [2.322582145661622, 48.880277077685435], [2.322381597769461, 48.880341235334164], [2.322226229258699, 48.88038948828737], [2.32221689535499, 48.88039003889776], [2.322037100576146, 48.8803583085814], [2.321851114423575, 48.88032393575036], [2.321671318732321, 48.88029220487508], [2.321485333057238, 48.88025783147375], [2.321469573222304, 48.88026232156562], [2.321442799228034, 48.88029606484642], [2.321410779662849, 48.880325617165425], [2.321396291500372, 48.880329099106596], [2.321212919138996, 48.88029801997025], [2.321032686756614, 48.88026645653009], [2.320849314832789, 48.88023537683502], [2.320669081524088, 48.88020381283794], [2.320485710037821, 48.88017273258421], [2.320305478529759, 48.880141168045654], [2.320296000713291, 48.88014177704535], [2.320115492242019, 48.880199857266575], [2.319934909318952, 48.88025796916798], [2.31975439867889, 48.88031604883084], [2.319573814938272, 48.88037416108073], [2.319393304868025, 48.880432239301506], [2.319212720321603, 48.880490351000574], [2.319032208082467, 48.88054842866306], [2.318851622730141, 48.88060653981134], [2.318671111049087, 48.88066461693101], [2.318490523527573, 48.880722727520705], [2.318310011041119, 48.88078080408979], [2.318129424077295, 48.88083891413645], [2.317948910785342, 48.88089699015496], [2.317768321652331, 48.88095509964306], [2.317756762391089, 48.88095522263166], [2.317720320939831, 48.880946475776355], [2.317643996258733, 48.88092389466425], [2.317633358915719, 48.88091141512228], [2.317592716540386, 48.88091638971522], [2.317439924372387, 48.88095653015972], [2.317297321492236, 48.88099681035324], [2.317154717039789, 48.881037089468386], [2.317001924168391, 48.88107723024878], [2.316994055509729, 48.88108269917892], [2.316931338431133, 48.881204802852615], [2.316870432902515, 48.881316850567806], [2.316842473543886, 48.88136792251348], [2.3168461793976682, 48.881370133539235], [2.31689766994038, 48.881380615903446], [2.317085781012917, 48.88141853570398], [2.317273240110207, 48.88145669790568], [2.317461350367406, 48.88149461710573], [2.317648810013865, 48.881532778716775], [2.317836922182838, 48.88157069733187], [2.318024382378257, 48.8816088583522], [2.31821249509549, 48.88164677637458], [2.318399955828194, 48.88168493770347], [2.3185880691055543, 48.88172285423388], [2.318775529023796, 48.88176101496434], [2.318963642837536, 48.88179893180124], [2.319151104680203, 48.881837091049505], [2.319339219042186, 48.88187500729365], [2.319526681433789, 48.881913165951225], [2.319714796344007, 48.88195108160265], [2.319902259284642, 48.88198923966952], [2.320090373379668, 48.882027154720454], [2.320277836869326, 48.882065312196595], [2.320290622039939, 48.88206948844205], [2.320344551116603, 48.882080357276436], [2.320348225824229, 48.882082148925015], [2.320370095001681, 48.882087290453114], [2.320504281998945, 48.8821143351364], [2.320694977398154, 48.882152526483715], [2.320883094023551, 48.882190440291275], [2.321073788615708, 48.882228631024866], [2.321261905791791, 48.88226654423457], [2.321452602303947, 48.882304734369924], [2.321640720030712, 48.8823426469818], [2.321831417099332, 48.8823808365111], [2.32201953401324, 48.88241874851748], [2.322210231638316, 48.882456937440786], [2.3223983504781263, 48.88249484795778], [2.322589048647954, 48.88253303717434], [2.32277716803842, 48.882570947093456], [2.32296786677639, 48.88260913480475], [2.323155985342277, 48.88264704501764], [2.323281759906328, 48.88267223134034], [2.323313424692168, 48.88267735664509]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 6, "roussel_fabien": 9.0, "nb_emargement": 1205.0, "nb_procuration": 102.0, "nb_vote_blanc": 17.0, "jadot_yannick": 76.0, "le_pen_marine": 58.0, "nb_exprime": 1185.0, "nb_vote_nul": 3.0, "arr_bv": "08", "arthaud_nathalie": 3, "nb_inscrit": 1418.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1205, "quartier_bv": "32", "geo_point_2d": [48.88124292359146, 2.3209569655862112], "melenchon_jean_luc": 181.0, "poutou_philippe": 6.0, "macron_emmanuel": 534.0}, "geometry": {"type": "Point", "coordinates": [2.3209569655862112, 48.88124292359146]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "52c8fab9edd8eae64b7a8ad3da21e5092165bc13", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 83, "zemmour_eric": 71.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-26", "geo_shape": {"coordinates": [[[2.341110405583818, 48.83181941345034], [2.341079233375822, 48.83181718215592], [2.340914559444624, 48.83186164813679], [2.340732938358955, 48.83191203997438], [2.340568265183472, 48.83195650638148], [2.340386643432577, 48.832006897688935], [2.340221968299848, 48.83205136360797], [2.340040345883828, 48.832101754385356], [2.339875671529682, 48.83214621893203], [2.339694048436954, 48.83219661007858], [2.33952937212557, 48.832241074137194], [2.339452044716424, 48.83226252791769], [2.339427378556021, 48.832264388294064], [2.339405409602678, 48.83227668728403], [2.339301114573279, 48.83230562318717], [2.339121535595352, 48.83235393911154], [2.338939911050046, 48.832404329103575], [2.338760332759547, 48.83245264448892], [2.338578707532507, 48.83250303302874], [2.338399128555806, 48.832551348766835], [2.338217502635835, 48.83260173675366], [2.338037921622104, 48.832650051937634], [2.337856296371238, 48.83270043937907], [2.337676714694139, 48.832748753117166], [2.337495088738824, 48.832799140904974], [2.337315506387043, 48.832847454096445], [2.337133878376461, 48.832897841323785], [2.3369542967120402, 48.832946153976216], [2.336772668019977, 48.83299653975128], [2.336593085669339, 48.83304485275646], [2.336411456284162, 48.83309523797855], [2.336231871896602, 48.83314355042958], [2.33614368250801, 48.83316801494081], [2.336099845112892, 48.83317598018271], [2.336080492291658, 48.83319638562536], [2.335987051519686, 48.833222305733216], [2.335806421644515, 48.83327241587965], [2.335624790706117, 48.83332279989696], [2.335444160145965, 48.83337290859248], [2.335262528495822, 48.83342329295442], [2.335081897239232, 48.833473401098395], [2.334900264888807, 48.833523784905715], [2.334719632935783, 48.83357389249811], [2.334537999885079, 48.83362427575079], [2.334357365873466, 48.83367438278402], [2.334175733484645, 48.83372476548964], [2.333995098776603, 48.83377487197126], [2.333813465687616, 48.833825254122196], [2.333632830283046, 48.83387536005224], [2.333451195131525, 48.83392574164098], [2.3332705603928, 48.833975847027], [2.333088924552522, 48.83402622716178], [2.332908289105875, 48.83407633289553], [2.332726652565342, 48.83412671247562], [2.332546016422277, 48.83417681765776], [2.332364379181493, 48.83422719668322], [2.332298052661816, 48.834221602891475], [2.332271813382877, 48.83423812175639], [2.332360706315069, 48.83434632575794], [2.332484058565115, 48.834499992730784], [2.332572952395957, 48.834608195649956], [2.332583432313573, 48.834623573110576], [2.332603363587558, 48.83462144848956], [2.33277666059568, 48.83457168092725], [2.33295018990278, 48.83452236499383], [2.3329639903758412, 48.83452355178095], [2.3331183124317523, 48.834603545242786], [2.333272313325824, 48.83468397380106], [2.333426634967514, 48.834763966845976], [2.333580638173531, 48.83484439500334], [2.333734960774783, 48.83492438673971], [2.333888963568165, 48.835004814480975], [2.334043288468287, 48.83508480671499], [2.334197292211331, 48.83516523404775], [2.334351618059534, 48.83524522587249], [2.3345056227522463, 48.835325652796705], [2.334659949560011, 48.83540564331289], [2.33481395520229, 48.83548606982856], [2.334828953925001, 48.835486903313715], [2.334998615068869, 48.83542552576482], [2.335167136464626, 48.8353646066133], [2.3353367968122463, 48.835303228577985], [2.335505317405838, 48.835242309842656], [2.335674976957211, 48.83518093132096], [2.335843496771772, 48.83512001120322], [2.336013155526896, 48.835058632195185], [2.336181674550755, 48.83499771159431], [2.336351332509628, 48.83493633209987], [2.336519850742986, 48.83487541101591], [2.336689507905609, 48.834814031035094], [2.3368580253482643, 48.83475310946805], [2.337027681714637, 48.83469172900086], [2.3371961983667893, 48.83463080695066], [2.337203438217559, 48.83462971386298], [2.337398253621534, 48.83463629559495], [2.337593031214657, 48.834642747290545], [2.337787846716529, 48.83464932838791], [2.337982624395145, 48.834655780348356], [2.338177439994907, 48.834662360811095], [2.338372217781851, 48.834668811237755], [2.33856703346808, 48.83467539196515], [2.338761809989735, 48.834681841749784], [2.338956625785147, 48.834688420943266], [2.339151403754574, 48.834694871000224], [2.339346219647846, 48.834701449559105], [2.339540997725552, 48.834707898082286], [2.339735813716778, 48.8347144760065], [2.339930591879861, 48.83472092479448], [2.340125407968929, 48.834727502084135], [2.340320186240261, 48.83473394933828], [2.340515002415782, 48.834740526892595], [2.340709780783964, 48.83474697351226], [2.340904597068688, 48.83475354953264], [2.341099375522341, 48.83475999641712], [2.341294191904879, 48.834766571802874], [2.341488969104543, 48.83477301714604], [2.341555528070129, 48.834766269554116], [2.341552991012434, 48.8347494715486], [2.341530552930468, 48.8346250137406], [2.341504713131934, 48.83449678321569], [2.341482275273901, 48.834372325370516], [2.341458491885067, 48.83424492725217], [2.341436054245796, 48.83412046937034], [2.341412271084832, 48.83399307121415], [2.341389833664322, 48.83386861329563], [2.341366050742588, 48.833741214202256], [2.341343613540835, 48.83361675624707], [2.341319830835602, 48.833489358015186], [2.341297393852601, 48.8333649000233], [2.341273611386593, 48.83323750085423], [2.341266797906052, 48.833199701436314], [2.341271258498326, 48.83319115679555], [2.3412657758971163, 48.8331752509015], [2.341250153973316, 48.8330885931957], [2.341230703808657, 48.83298006686921], [2.34120826725765, 48.832855608804], [2.341188817267224, 48.83274708244813], [2.341166379554262, 48.83262262434167], [2.341146929726601, 48.83251409885572], [2.341146835636396, 48.83251313600973], [2.341145049627134, 48.83240696973459], [2.3411476584103372, 48.83229584423959], [2.341147019575435, 48.83225789712254], [2.341148983354215, 48.83225611639161], [2.341149236112166, 48.83222383033437], [2.341148088918791, 48.83215561295226], [2.341143042861307, 48.8320566758242], [2.341141258226358, 48.83195051041253], [2.341136212201691, 48.83185157326608], [2.341110405583818, 48.83181941345034]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 26, "roussel_fabien": 22.0, "nb_emargement": 1012.0, "nb_procuration": 41.0, "nb_vote_blanc": 7.0, "jadot_yannick": 87.0, "le_pen_marine": 55.0, "nb_exprime": 1003.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1278.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1012, "quartier_bv": "53", "geo_point_2d": [48.83381975832292, 2.3377049053294945], "melenchon_jean_luc": 225.0, "poutou_philippe": 4.0, "macron_emmanuel": 404.0}, "geometry": {"type": "Point", "coordinates": [2.3377049053294945, 48.83381975832292]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e65bb8bfaae3e4bb92cde0c397cecdf2083886c3", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 104, "zemmour_eric": 90.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-41", "geo_shape": {"coordinates": [[[2.33042225389913, 48.82240469177225], [2.330457955137191, 48.82241078171832], [2.330489218614768, 48.82250100455904], [2.330530497613378, 48.8226264222559], [2.330559095161294, 48.82270895212302], [2.33056415699187, 48.82272355582077], [2.33060543634693, 48.82284897346689], [2.330608778874077, 48.822858623642446], [2.330608788095974, 48.822858647977355], [2.330657171373316, 48.82299653928784], [2.330698451168238, 48.823121956871425], [2.330746834938592, 48.823259847214025], [2.330788115157658, 48.82338526473728], [2.330836498035948, 48.823523155903004], [2.330877778679164, 48.823648573365894], [2.330926163412469, 48.823786463571295], [2.3309674444797412, 48.82391188097385], [2.330993737581507, 48.82393739507181], [2.331025658393933, 48.82394776271812], [2.331180789575611, 48.82391550540962], [2.331339581354595, 48.823884772131194], [2.331494712154532, 48.82385251441366], [2.331653504918634, 48.82382178072428], [2.331808633974926, 48.82378952259006], [2.3319674263621373, 48.82375878848212], [2.331973659032307, 48.8237584842338], [2.332165252183586, 48.823778620325164], [2.332365824394735, 48.82380098183795], [2.332557417865245, 48.82382111640088], [2.332757991769963, 48.823843477262635], [2.332949585548069, 48.82386361119655], [2.3331501584225443, 48.823885971392116], [2.333341752508138, 48.8239061046969], [2.333542327076267, 48.82392846424148], [2.33373392146944, 48.82394859691724], [2.333934495007204, 48.8239709557956], [2.3341260897080502, 48.82399108784227], [2.334326663577445, 48.82401344606202], [2.33451825994776, 48.82403357748721], [2.3347188341487772, 48.82405593504836], [2.334910429464638, 48.82407606583688], [2.335111003997267, 48.82409842273944], [2.335302600982684, 48.82411855290641], [2.335503175846917, 48.82414090915037], [2.33569477177796, 48.824161038680735], [2.335895346973789, 48.82418339426607], [2.336086943212257, 48.82420352316736], [2.336087215243919, 48.82420355345774], [2.336287790771566, 48.824225908384015], [2.3364704769746982, 48.82424760789618], [2.336671052836146, 48.82426996217874], [2.336853739353145, 48.82429166110459], [2.337054315559819, 48.8243140138441], [2.337237002390774, 48.8243357121836], [2.337276628720122, 48.82434371681603], [2.337284866493097, 48.824342121102774], [2.337467553518483, 48.82436381908952], [2.3376487065011142, 48.82438330302314], [2.337831392460091, 48.824405000445715], [2.338012545721768, 48.82442448382745], [2.338195233338466, 48.82444618070096], [2.338376386890594, 48.82446566263156], [2.3385590748030882, 48.82448735894842], [2.338740227260812, 48.82450684121891], [2.338740273500303, 48.8245068468709], [2.338929130714941, 48.82452971804487], [2.339111034808165, 48.82455182019763], [2.339299890986422, 48.82457469077764], [2.339481795405112, 48.82459679146627], [2.33967065325943, 48.82461966236669], [2.339852557992181, 48.82464176249044], [2.339875152541124, 48.82461851957626], [2.339887525038397, 48.824584478959046], [2.339892445517699, 48.82457152269767], [2.339939519711388, 48.8244475667208], [2.339986344736265, 48.82432466161037], [2.340033418472347, 48.824200706468595], [2.340080243054177, 48.82407780129438], [2.340127316355629, 48.82395384518908], [2.340174140494416, 48.82383093995108], [2.340221213338377, 48.82370698468093], [2.340268037034129, 48.823584079379145], [2.340314861882505, 48.82346117315377], [2.34036193269609, 48.823337217779944], [2.340408757089953, 48.823214312390114], [2.340455827457452, 48.82309035695208], [2.340502651419765, 48.822967450599165], [2.340549721341186, 48.822843495096905], [2.340596544849102, 48.822720589579596], [2.340643614324449, 48.822596634013124], [2.340690437400724, 48.82247372753271], [2.340737506429902, 48.822349771902076], [2.340784329051796, 48.82222686625723], [2.3408313976350152, 48.822102910562435], [2.340878219825277, 48.82198000395452], [2.340925287962439, 48.821856048195535], [2.340972109698336, 48.82173314242316], [2.341019177400817, 48.821609185700666], [2.341065998693623, 48.82148627986456], [2.341113065938694, 48.82136232397722], [2.341159886788618, 48.82123941807736], [2.341206953599015, 48.821115461226555], [2.341223198281845, 48.8211088818153], [2.341274444105243, 48.82111661370122], [2.341328133519489, 48.82112336431019], [2.341344071301978, 48.82111617251261], [2.34137459860388, 48.82100764779362], [2.341405905424391, 48.820899076985135], [2.341436432470597, 48.82079055222939], [2.341467739032009, 48.82068198138375], [2.341498265822318, 48.82057345659131], [2.34152957211338, 48.82046488660781], [2.341542882541417, 48.820457575084944], [2.341759613939587, 48.820456850871416], [2.341966129497063, 48.82045673918632], [2.342172643691838, 48.82045662713709], [2.342389376439228, 48.82045590178966], [2.342595890629773, 48.82045578900941], [2.3428126220058703, 48.82045506288739], [2.342826306695475, 48.82046429289865], [2.342823837242873, 48.82052644185068], [2.342815301144586, 48.82059131855694], [2.34281503084401, 48.82059288109497], [2.342771450030029, 48.82073387585891], [2.342737099992112, 48.82083753496739], [2.342702751179547, 48.82094119406397], [2.342659168408998, 48.82108218873582], [2.342624819291673, 48.82118584688813], [2.342632264303796, 48.82118992963328], [2.342696435069202, 48.82117654795144], [2.342845771462912, 48.82107373492082], [2.342991518558532, 48.820973610911], [2.343140853777849, 48.820870798392676], [2.343286601101425, 48.820770674012586], [2.343435933795873, 48.820667861099736], [2.343581679985582, 48.820567736341935], [2.343731011516899, 48.820464923042], [2.343876756572853, 48.820364797906485], [2.343878418074754, 48.82036340039129], [2.343951370742694, 48.820287683345924], [2.344041530211677, 48.82018600377308], [2.344114482383252, 48.820110287515526], [2.344170038339151, 48.820047631947666], [2.344181723604957, 48.82004290683194], [2.344190290498037, 48.820033589459285], [2.344224891988627, 48.81999456620076], [2.344343140367316, 48.819862401195806], [2.34443329832559, 48.81976072218845], [2.344523455943655, 48.819659042204606], [2.3446417027934, 48.819526877764304], [2.344643367589711, 48.8195206631673], [2.344608499418383, 48.81939653095287], [2.344571638639985, 48.81926678284314], [2.344536769447298, 48.81914265057227], [2.344499909026851, 48.81901290241116], [2.344465041536569, 48.81888877009885], [2.344428181474068, 48.81875902188638], [2.344393312951123, 48.818634890416995], [2.344356453246563, 48.81850514215312], [2.344321586437307, 48.81838100974296], [2.344284727090681, 48.81825126142772], [2.344249859260073, 48.81812712896117], [2.34421300027148, 48.81799738059459], [2.344178134143131, 48.817873248086606], [2.344141275512461, 48.81774349966859], [2.344106408351553, 48.81761936800357], [2.344069550078703, 48.81748961953422], [2.344069325836557, 48.81748828271974], [2.344060358824836, 48.81736368421043], [2.344053167826734, 48.81723107022986], [2.34404420225968, 48.81710647169832], [2.344037011338238, 48.81697385768648], [2.344028044492087, 48.8168492591178], [2.344020855009024, 48.81671664508216], [2.344011888245706, 48.816592046483855], [2.344004697477381, 48.8164594324095], [2.343995732158707, 48.816334833788986], [2.343988541466934, 48.81620221968334], [2.343979574869282, 48.81607762102572], [2.343972385615866, 48.815945006896314], [2.343963419101145, 48.815820408209], [2.343967120859901, 48.8158023140121], [2.34393260555334, 48.81581185327039], [2.343784316651025, 48.815865588075006], [2.343586726306974, 48.81593880522311], [2.343438438049044, 48.81599253960021], [2.34324084673823, 48.816065756168534], [2.343092557762887, 48.81611949011059], [2.34308961411058, 48.81612029777393], [2.342917990394802, 48.81615177123568], [2.342750269803322, 48.81618322903217], [2.342578645675617, 48.81621470200508], [2.342410924677022, 48.816246159323846], [2.342243202114369, 48.81627761639899], [2.342071577381331, 48.816309087742084], [2.341903855773279, 48.81634054434696], [2.341732230616983, 48.81637201610053], [2.341729580510368, 48.81637233068502], [2.3417142777231312, 48.81637314042216], [2.341513189017539, 48.81638361090259], [2.34127736602652, 48.816396082387406], [2.341076277144635, 48.816406552132825], [2.340875588124674, 48.81641716494807], [2.340674499080929, 48.81642763401755], [2.340473809898068, 48.81643824615826], [2.340272720692269, 48.816448714551846], [2.340072031346518, 48.81645932601795], [2.339870941978777, 48.81646979373565], [2.339670252470146, 48.816480404527184], [2.339469162940575, 48.81649087156895], [2.339268473269075, 48.81650148168596], [2.339067383577483, 48.816511948051826], [2.338866693754524, 48.816522556594926], [2.338665603889619, 48.816533023184206], [2.338464913903819, 48.81654363105274], [2.338263822515292, 48.81655409695857], [2.33806313236666, 48.81656470415254], [2.337862042177948, 48.816575169390006], [2.337635671210699, 48.81658713382129], [2.337434580861138, 48.816597597440314], [2.337208208336642, 48.81660956105453], [2.337007117814824, 48.816620023954435], [2.336820379552798, 48.816629891584626], [2.336619288863328, 48.81664035473141], [2.336432551816928, 48.81665022176327], [2.336231459620876, 48.81666068335074], [2.336044722416846, 48.81667055067607], [2.335843631426416, 48.816681011618634], [2.335656892714389, 48.816690878330526], [2.335455801567873, 48.81670133862065], [2.335269062721141, 48.81671120382734], [2.335067971406882, 48.81672166436438], [2.334881232413994, 48.816731528965164], [2.334680140955034, 48.81674198795042], [2.334493403166344, 48.816751852852214], [2.334292311551227, 48.81676231118505], [2.334105572254574, 48.816772175473396], [2.333918832898762, 48.816782038570686], [2.333717741052011, 48.816792495936916], [2.333716145204866, 48.8167925796807], [2.333518639183645, 48.81682029520557], [2.333336419890227, 48.81684654510002], [2.333154200413354, 48.8168727947162], [2.332956693801154, 48.81690050841152], [2.332774473944567, 48.81692675744776], [2.332576966926173, 48.816954470514524], [2.332394746689878, 48.81698071897077], [2.332197240615605, 48.81700843231589], [2.332015019999607, 48.81703468019221], [2.3318175121688443, 48.81706239200183], [2.33182629772941, 48.81707908331655], [2.3318378620188582, 48.817101054258075], [2.331841245659636, 48.817107484881205], [2.3318430046209953, 48.81711082783085], [2.331843392876229, 48.81711156299915], [2.3319063929541572, 48.817227862826165], [2.331956531348617, 48.81732312249239], [2.332014357362285, 48.817432989711094], [2.332077359583105, 48.81754928852314], [2.332135186090739, 48.81765915656069], [2.332198188854298, 48.81777545528571], [2.332256017240586, 48.817885322351], [2.332319019173628, 48.81800162188072], [2.332376848065317, 48.81811148886552], [2.332439850541006, 48.81822778830814], [2.332441601626245, 48.818231114113004], [2.332442661309996, 48.818233127454114], [2.332434111448052, 48.818244696162374], [2.332239171444105, 48.818287230455745], [2.332094212997534, 48.81831847306099], [2.3319492543888822, 48.818349714590276], [2.331754313596735, 48.81839224808924], [2.331746884152876, 48.81839384884264], [2.331654416145266, 48.81841377771392], [2.331459476234992, 48.81845631073739], [2.331285606084609, 48.81849378262902], [2.331090665574514, 48.81853631504818], [2.330916794903874, 48.81857378550149], [2.330742923971809, 48.81861125660008], [2.3305479825797972, 48.81865378813008], [2.330374111127492, 48.81869125779038], [2.330179169135574, 48.81873378871611], [2.329978196404439, 48.81877894770648], [2.3297832523999, 48.818821477975746], [2.329582278987918, 48.8188666362972], [2.329387335694503, 48.81890916592534], [2.3293211292968152, 48.81892404274006], [2.329288645107042, 48.818951491395104], [2.329294352016007, 48.81896597110538], [2.329333363448371, 48.81909062413817], [2.329377180502509, 48.819223925585376], [2.329416190963983, 48.81934857855493], [2.329460009808618, 48.819481879948846], [2.329499020660986, 48.819606532862814], [2.329542839934145, 48.81973983419581], [2.329581851177617, 48.81986448705416], [2.329625670890766, 48.81999778742694], [2.329664682513684, 48.820122441128994], [2.329708501293457, 48.82025574143321], [2.329747514669297, 48.82038039508729], [2.329791333877606, 48.82051369533059], [2.329830346282554, 48.82063834892142], [2.329874167281423, 48.820771649111414], [2.329913180088855, 48.82089630174735], [2.32991327194333, 48.820896572976054], [2.329957092009183, 48.82102987309743], [2.329999855471045, 48.82114800908448], [2.3300436773315942, 48.82128130915194], [2.330086439833907, 48.82139944507396], [2.3301302621270272, 48.82153274507988], [2.33017302639377, 48.82165088095216], [2.330216847757623, 48.82178418088892], [2.330259612426662, 48.82190231670378], [2.330302377301138, 48.82202045159164], [2.330346199306285, 48.82215375143717], [2.330367567976446, 48.82221867689543], [2.330410333354992, 48.82233681171144], [2.330430243159131, 48.8223973040247], [2.33042225389913, 48.82240469177225]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 41, "roussel_fabien": 23.0, "nb_emargement": 1420.0, "nb_procuration": 97.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 54.0, "nb_exprime": 1402.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1756.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1420, "quartier_bv": "54", "geo_point_2d": [48.82013372520821, 2.336901404665788], "melenchon_jean_luc": 421.0, "poutou_philippe": 4.0, "macron_emmanuel": 534.0}, "geometry": {"type": "Point", "coordinates": [2.336901404665788, 48.82013372520821]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4c216ac32ace8639a2f311dd12495131cce7af4c", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 92, "zemmour_eric": 95.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 22.0, "date_tour": "2022-04-10", "id_bvote": "14-55", "geo_shape": {"coordinates": [[[2.312352222732879, 48.82591468416059], [2.312361922304944, 48.82592977666371], [2.312522120869176, 48.826033652396276], [2.3126685372973492, 48.82612869053141], [2.312814952897257, 48.82622372847141], [2.312975154629386, 48.82632760357773], [2.313012979356864, 48.82635215537703], [2.313016810758298, 48.82637915966505], [2.313034896403892, 48.826384296483866], [2.313143488490435, 48.82645478221043], [2.31328231505347, 48.8265462692736], [2.313428734307096, 48.82664130643462], [2.313567561855506, 48.82673279405081], [2.31371398216468, 48.82682782994748], [2.313819312855264, 48.82689724223396], [2.313849651028741, 48.826917620847865], [2.313891030788552, 48.826892052382355], [2.314089900008809, 48.82686311703784], [2.314287993251594, 48.82683413014615], [2.314486862018766, 48.826805195039384], [2.314684954820763, 48.826776207488656], [2.314883823146679, 48.826747271720286], [2.315081915507879, 48.826718283510516], [2.31528078339263, 48.82668934708056], [2.315478875312923, 48.826660358211825], [2.315677742756399, 48.82663142112026], [2.315875834235879, 48.826602431592484], [2.316074701238073, 48.826573493839355], [2.316272792288625, 48.826544502753244], [2.316471658849422, 48.82651556433853], [2.316669749447346, 48.826486573492716], [2.316868614204773, 48.82645763440865], [2.317066705723928, 48.82642864291161], [2.317265570040046, 48.82639970316596], [2.317463661118352, 48.826370711009915], [2.317662524993256, 48.82634177060269], [2.317860615630603, 48.82631277778763], [2.318059479064182, 48.82628383671885], [2.318257569272422, 48.82625484234546], [2.3184564322646652, 48.82622590061512], [2.318654522020368, 48.82619690648204], [2.318853384571168, 48.826167964090104], [2.319051473885987, 48.826138969298064], [2.319250335995435, 48.826110026244564], [2.319448424869363, 48.82608103079349], [2.3194741539010533, 48.82607041704017], [2.319475167643268, 48.826062984046075], [2.319406417168346, 48.825987698814515], [2.319307955876793, 48.82588394366681], [2.319209176669756, 48.825775774262226], [2.319110717521147, 48.8256720198396], [2.319011937774534, 48.825563849344626], [2.3189134794187503, 48.82546009474002], [2.318814701833158, 48.82535192496881], [2.3187162429198, 48.82524816927514], [2.318617466144819, 48.82513999932062], [2.318519008024175, 48.825036243444984], [2.3184202320600003, 48.82492807330712], [2.318321774732064, 48.82482431724952], [2.318328706571454, 48.82481108011553], [2.318482583259656, 48.824774530359704], [2.318651046055564, 48.82473707599348], [2.318804920925614, 48.824700526712036], [2.318973383262596, 48.824663070989985], [2.319127259050293, 48.82462652129912], [2.31929571955457, 48.82458906511277], [2.319299018609285, 48.82457309920909], [2.319139787583903, 48.82450178025367], [2.318965387630388, 48.82442397380345], [2.318806157516806, 48.82435265439432], [2.31863175857174, 48.824274846547986], [2.318472529369958, 48.82420352668517], [2.318298131421597, 48.824125718341946], [2.318138901769605, 48.82405439801764], [2.317964506179953, 48.82397658918533], [2.31780527743976, 48.82390526840733], [2.317708984765206, 48.82386230603916], [2.317709348973257, 48.8238486303333], [2.317704263642849, 48.823838170299226], [2.317546317983901, 48.823768885487404], [2.3174682163024842, 48.82373403931655], [2.317464432069777, 48.82373323615545], [2.317411800515451, 48.82377596032746], [2.317243275921268, 48.82382381395485], [2.317074428533376, 48.823871954202325], [2.3169059033192783, 48.82391980735016], [2.316737055309022, 48.823967947117175], [2.316568529463221, 48.824015800684826], [2.316399680830601, 48.82406393997133], [2.316231154376676, 48.82411179216014], [2.316062305121796, 48.8241599309662], [2.316055057889419, 48.824171526604324], [2.31613723577021, 48.82430722566523], [2.316219707936818, 48.82444378254382], [2.316301886675258, 48.82457948145872], [2.316384359703868, 48.82471603819063], [2.316466537937942, 48.82485173695169], [2.316549011840149, 48.82498829263764], [2.316540566229248, 48.825000178243165], [2.316343204288115, 48.825042480274135], [2.316148016314299, 48.825084754838755], [2.31595065237248, 48.82512705621093], [2.315755465125886, 48.82516933013944], [2.31555810054532, 48.825211630860586], [2.315362912663817, 48.82525390414521], [2.315165547444714, 48.825296204215284], [2.31497035892821, 48.82533847685604], [2.314772993070474, 48.82538077627508], [2.314577803919076, 48.82542304827193], [2.314380437422713, 48.82546534703992], [2.314185247624699, 48.82550761929221], [2.314177896298267, 48.82551144626526], [2.314140915022945, 48.82555107310451], [2.314098696033637, 48.82559393104124], [2.314086111098852, 48.82559798791133], [2.313968192777776, 48.82559129016255], [2.313857607953859, 48.825584919477556], [2.313852233165458, 48.82558532124078], [2.313665150501302, 48.825625268394965], [2.313482653405223, 48.825664627304974], [2.313300157395757, 48.825703985942866], [2.31311307389455, 48.8257439313299], [2.312930575966448, 48.825783289393215], [2.312743491885663, 48.8258232350986], [2.312560994763026, 48.82586259260297], [2.312373908764322, 48.82590253682022], [2.3123735945483093, 48.825902606963865], [2.312352222732879, 48.82591468416059]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 55, "roussel_fabien": 28.0, "nb_emargement": 1313.0, "nb_procuration": 36.0, "nb_vote_blanc": 20.0, "jadot_yannick": 77.0, "le_pen_marine": 98.0, "nb_exprime": 1288.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 6, "nb_inscrit": 1751.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1313, "quartier_bv": "56", "geo_point_2d": [48.82555024775716, 2.3163602791998708], "melenchon_jean_luc": 425.0, "poutou_philippe": 4.0, "macron_emmanuel": 390.0}, "geometry": {"type": "Point", "coordinates": [2.3163602791998708, 48.82555024775716]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8c498234152c062456d044c3f70691526b60e4ab", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 140, "zemmour_eric": 133.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "15-2", "geo_shape": {"coordinates": [[[2.304239583298501, 48.840414100401034], [2.304184087131303, 48.840394268495565], [2.304015909326103, 48.84034599950846], [2.303838542800433, 48.840296218928884], [2.303670365631609, 48.840247949451715], [2.303492999769623, 48.84019816835545], [2.303324823237176, 48.84014989838824], [2.303147458038875, 48.84010011677529], [2.302979282154836, 48.84005184541875], [2.302801916257805, 48.84000206328114], [2.302633742360547, 48.83995379234189], [2.3025144291972452, 48.83992030390429], [2.302487375088198, 48.839914723856204], [2.302480867341755, 48.839915061845716], [2.302422816638534, 48.83989876851987], [2.302245451793897, 48.839848985550354], [2.302029815404108, 48.839786939150265], [2.302029256278193, 48.83978677310198], [2.301832306746698, 48.83972444414729], [2.301616670001552, 48.83966239698761], [2.301419721433406, 48.83960006734675], [2.301218903991414, 48.839538642025175], [2.301021955004143, 48.83947631171453], [2.30082113851968, 48.839414884819135], [2.300624191838104, 48.83935255385467], [2.300423376299221, 48.839291126284735], [2.300405426594263, 48.83929531130318], [2.300351757700749, 48.839367215033775], [2.300313116141646, 48.83941816767176], [2.300298867471119, 48.83942911060414], [2.300296319648924, 48.83943631404521], [2.300244405361626, 48.83950476630841], [2.300160621905739, 48.83961920845101], [2.300070065211823, 48.83973861408827], [2.29998628099725, 48.83985305608482], [2.299895722135334, 48.83997246155712], [2.299810805461899, 48.84007601081371], [2.299720247172941, 48.84019541613727], [2.299635329787653, 48.84029896524866], [2.299544770709327, 48.84041837041554], [2.299459852612182, 48.840521919381715], [2.299458363517019, 48.84052484890061], [2.299455007152114, 48.840532892989756], [2.299517749378787, 48.84055776102698], [2.29968421257893, 48.840616668546794], [2.299854397190955, 48.8406768954005], [2.300020861152063, 48.84073580244555], [2.300191046554156, 48.840796027914614], [2.300191313731041, 48.84079612031388], [2.300376470554788, 48.84085820395424], [2.30054665676745, 48.84091842891076], [2.300734393980449, 48.84098120339843], [2.300919552108577, 48.84104328618793], [2.301104709303393, 48.84110536957874], [2.301292449224211, 48.84116814318805], [2.301477607318803, 48.841230225095444], [2.301665348138464, 48.84129299811253], [2.301850508483123, 48.84135507944374], [2.302038248839273, 48.84141785186065], [2.302223410071643, 48.84147993260774], [2.302411151326631, 48.84154270443239], [2.302596313446712, 48.84160478459538], [2.302784055600535, 48.84166755582777], [2.302791326464542, 48.84167710722252], [2.3027545038432082, 48.841818049306106], [2.302715112559734, 48.84195583759577], [2.30271886259759, 48.841963862028834], [2.302854074562481, 48.84205318923693], [2.302974794253818, 48.842131655618616], [2.303035594831824, 48.84215322505092], [2.303052015572732, 48.84213443759732], [2.303126367744612, 48.842023668437925], [2.303208823708636, 48.841904365557916], [2.303212890780797, 48.841901421333766], [2.303220203340752, 48.8418856440475], [2.303302658871627, 48.84176634108809], [2.30338634247527, 48.84164759022965], [2.303468795886785, 48.84152828712233], [2.303552478717672, 48.841409537021654], [2.303634932734767, 48.84129023378228], [2.303718614804824, 48.8411714835401], [2.303801066702592, 48.84105218015291], [2.303884749386491, 48.840933428877754], [2.303967200527397, 48.8408141253506], [2.304050881076128, 48.84069537482535], [2.304133332822522, 48.84057607116615], [2.304217012622558, 48.84045731960006], [2.304239583298501, 48.840414100401034]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 2, "roussel_fabien": 10.0, "nb_emargement": 1134.0, "nb_procuration": 103.0, "nb_vote_blanc": 11.0, "jadot_yannick": 74.0, "le_pen_marine": 52.0, "nb_exprime": 1119.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1366.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1134, "quartier_bv": "57", "geo_point_2d": [48.84056883266287, 2.3018979353743636], "melenchon_jean_luc": 173.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}, "geometry": {"type": "Point", "coordinates": [2.3018979353743636, 48.84056883266287]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "568c30a8a7fb17917e65e5a4a967178284d4696b", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 33, "zemmour_eric": 50.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-14", "geo_shape": {"coordinates": [[[2.347097710621428, 48.89467927683702], [2.347068822910928, 48.894688062180144], [2.347005450444734, 48.894758004835786], [2.346909498919769, 48.89486034856906], [2.346806131301344, 48.89497443286449], [2.346710178997095, 48.895076775518554], [2.346606810512225, 48.89519085961937], [2.346510856042141, 48.89529320298534], [2.346407486690811, 48.8954072868916], [2.346311532805103, 48.895509629185845], [2.34620816258741, 48.895623712897496], [2.346112207899718, 48.89572605591107], [2.346087772638705, 48.89573604523188], [2.3460841145299662, 48.89574961757699], [2.346148189494207, 48.89587122541585], [2.346234794531521, 48.896031297792945], [2.346264048678796, 48.896086816904216], [2.34627487246916, 48.89610924476351], [2.346317140852941, 48.89610725506956], [2.346360024429815, 48.89610037282312], [2.346408064775815, 48.89609058692375], [2.34642330709993, 48.896094063242685], [2.346512406270886, 48.896178973085036], [2.346606423239959, 48.89627537150942], [2.346643495145639, 48.89628543570307], [2.346649873069846, 48.896288913992464], [2.34679619796515, 48.89632863743254], [2.346979818185913, 48.896377387283835], [2.347163215688589, 48.89642717434907], [2.347346836600541, 48.896475923633254], [2.347530234801297, 48.89652571013194], [2.347713856404434, 48.896574458848995], [2.347897255303265, 48.89662424478118], [2.3480808775863222, 48.89667299383038], [2.348264277194484, 48.8967227782968], [2.348447900168827, 48.89677152677884], [2.348631300463798, 48.89682131157794], [2.34881492414047, 48.896870058593684], [2.348998325133505, 48.89691984282625], [2.349181949501346, 48.89696858927482], [2.34936535119244, 48.89701837294085], [2.349548976251445, 48.89706711882231], [2.349732378640594, 48.8971169019218], [2.349916004390761, 48.89716564723614], [2.350099407477961, 48.89721542976907], [2.3502830339080623, 48.89726417541547], [2.350466437693413, 48.897313957381925], [2.350650064825894, 48.897362701561924], [2.350833469309188, 48.897412482961784], [2.351017097132817, 48.89746122657467], [2.35120050231415, 48.897511007407964], [2.351384130828924, 48.897559750453716], [2.351567538072228, 48.89760953072788], [2.351751165914207, 48.89765827319906], [2.3519345738555453, 48.89770805290663], [2.352118202377467, 48.897756795709945], [2.352301611016839, 48.89780657485095], [2.352485240241187, 48.89785531618784], [2.352552385821931, 48.897857557880535], [2.352552959956132, 48.89785701869595], [2.352578388180046, 48.89772482518508], [2.352603855731823, 48.89759472367911], [2.352629285073505, 48.89746252923388], [2.352654752358499, 48.89733242858515], [2.352680180079008, 48.89720023409005], [2.352705647119691, 48.89707013250009], [2.352731074571579, 48.89693793886178], [2.352756541356877, 48.89680783722982], [2.352781968562613, 48.89667564264977], [2.352807435081145, 48.89654554187507], [2.352832863393557, 48.896413347259966], [2.352858329667785, 48.896283245544026], [2.352883756358862, 48.89615105087903], [2.352909222366537, 48.89602095002036], [2.352917556440277, 48.89592819882234], [2.352942982807574, 48.89579600410196], [2.35294307121895, 48.89579437771135], [2.3529514051961202, 48.89570162649178], [2.352942013130747, 48.895589128462944], [2.352940462385223, 48.895496828335965], [2.352931070391514, 48.89538432938597], [2.352929519671591, 48.895292029241574], [2.352920127727293, 48.895179531168964], [2.35291171739295, 48.89508133667224], [2.3529221763994332, 48.895060788872286], [2.352911624031342, 48.89504802536473], [2.352908406861658, 48.89501046587723], [2.352895944632822, 48.89489128722262], [2.352884317254097, 48.894755533201504], [2.352871855141526, 48.894636354516656], [2.352860229246399, 48.894500600468966], [2.352847767249885, 48.894381421753884], [2.35283614012182, 48.89424566676563], [2.352827201157295, 48.89416017941733], [2.35281600723839, 48.89414747357645], [2.3527688862673, 48.894155520536025], [2.352575299008953, 48.89419106474145], [2.352380752752133, 48.89422649103285], [2.352187164953745, 48.894262035507815], [2.351992618167645, 48.89429746116643], [2.3517990298516, 48.89433300411238], [2.351604482536229, 48.894368429138176], [2.351410893680145, 48.89440397235364], [2.351216345835508, 48.894439396746606], [2.351022756461795, 48.89447493843307], [2.35082820807669, 48.89451036309244], [2.35063461817415, 48.89454590414919], [2.350440069271007, 48.89458132727642], [2.35024647882843, 48.894616868602704], [2.350051929396042, 48.89465229109711], [2.349858339799737, 48.89468783090175], [2.349663788474255, 48.894723252755924], [2.349470198337915, 48.894758792830096], [2.349275646483202, 48.89479421405141], [2.3492673469767062, 48.89479399448466], [2.349060401550411, 48.894744265113005], [2.348849769382435, 48.8946932616803], [2.348642824755381, 48.894643531582474], [2.348432192051396, 48.894592526503985], [2.3482252495873492, 48.894542795687414], [2.34801461769998, 48.89449178986979], [2.348005302364453, 48.89449176883041], [2.347991625736046, 48.894494972391115], [2.347852330008406, 48.89452760297746], [2.347647525861834, 48.89457614707312], [2.3474945530116322, 48.89461198076037], [2.347289748199568, 48.89466052424041], [2.347136774855216, 48.89469635746791], [2.347097710621428, 48.89467927683702]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 14, "roussel_fabien": 27.0, "nb_emargement": 1385.0, "nb_procuration": 74.0, "nb_vote_blanc": 8.0, "jadot_yannick": 113.0, "le_pen_marine": 68.0, "nb_exprime": 1372.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1892.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1385, "quartier_bv": "70", "geo_point_2d": [48.895846975583545, 2.3500898353991713], "melenchon_jean_luc": 689.0, "poutou_philippe": 8.0, "macron_emmanuel": 324.0}, "geometry": {"type": "Point", "coordinates": [2.3500898353991713, 48.895846975583545]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "abe9f4719a9918d190f503f138310c84f4f4fc05", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 13, "zemmour_eric": 44.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-33", "geo_shape": {"coordinates": [[[2.411531165921626, 48.85885140348506], [2.411527875104838, 48.85886629752732], [2.411504810825615, 48.858997575564274], [2.411481324597793, 48.8591302400936], [2.411458261437218, 48.859261518996355], [2.411434773608846, 48.85939418347831], [2.411411710224301, 48.85952546144157], [2.41138822215851, 48.85965812588278], [2.411365158529674, 48.859789404705126], [2.411341670226358, 48.85992206910566], [2.4113186063735452, 48.86005334698847], [2.411295117832602, 48.860186011348276], [2.411272053735487, 48.8603172900902], [2.411248564957114, 48.860449954409304], [2.411225500636019, 48.86058123221171], [2.411202011620111, 48.86071389649009], [2.411187518868764, 48.860721824835714], [2.411005385225688, 48.860713383076835], [2.410825626448573, 48.86070538711494], [2.4106434929216, 48.86069694480518], [2.410463732893769, 48.860688948292875], [2.410281599482906, 48.860680505432235], [2.410101839567342, 48.86067250837623], [2.409919706272599, 48.86066406496465], [2.409739946469411, 48.86065606736494], [2.409557813290691, 48.86064762340248], [2.40937805496266, 48.860639625265776], [2.409350249727626, 48.86064173998864], [2.409345875068653, 48.86064997706188], [2.40934201150057, 48.8606716834161], [2.409337945099395, 48.86069769482174], [2.409331032412055, 48.86070617747855], [2.40933424202241, 48.8607158243816], [2.409317417952661, 48.86082343852787], [2.409297480226262, 48.860954771841925], [2.409276590904107, 48.86108839736101], [2.409256651610301, 48.86121973063013], [2.409235762077296, 48.861353356110115], [2.409215822579164, 48.86148468934106], [2.4091949328352023, 48.86161831478199], [2.409174994495748, 48.86174964798148], [2.40915410316752, 48.86188327427586], [2.409134164634041, 48.86201460653791], [2.40911327445786, 48.86214823279997], [2.409093334356936, 48.86227956501701], [2.40907244396989, 48.86241319124], [2.409052505027654, 48.8625445234256], [2.409031613066614, 48.862678149602786], [2.409011673920045, 48.86280948175016], [2.408990781747922, 48.86294310788829], [2.408970842397118, 48.86307443999746], [2.408949951377056, 48.863208066103184], [2.408930010458767, 48.86333939816745], [2.408941619237955, 48.86334919535953], [2.409116999153018, 48.863365956328735], [2.409294325131673, 48.8633831268521], [2.409469703911486, 48.863399887297255], [2.409647031484824, 48.86341705730421], [2.409822410492327, 48.863433817232014], [2.409999736944631, 48.86345098580981], [2.410175117532582, 48.863467746126254], [2.410352444216602, 48.863484914180965], [2.410527823679462, 48.86350167307404], [2.410705151947967, 48.86351884151161], [2.410713791811943, 48.86353337782245], [2.410586010729228, 48.86363815665242], [2.410460237745143, 48.863741303035304], [2.410332454279425, 48.863846081568184], [2.410206681654313, 48.86394922767195], [2.410078897158455, 48.86405400681371], [2.4099531235294522, 48.86415715263166], [2.409825338023807, 48.864261930583766], [2.409699563390805, 48.86436507611587], [2.409571776865185, 48.86446985377757], [2.4094459998549, 48.86457299991642], [2.409424585869497, 48.864618139124204], [2.409435788488985, 48.86462267401396], [2.409628878018554, 48.86466642891671], [2.409818034427629, 48.86470965238531], [2.410011124600618, 48.864753406667944], [2.410200281642644, 48.86479662952902], [2.410393372448867, 48.86484038409082], [2.410582530123842, 48.864883606344364], [2.410775621583653, 48.86492735938674], [2.410964779891568, 48.86497058103276], [2.411153938513355, 48.865013802378115], [2.411347030935629, 48.86505755449346], [2.411536190180189, 48.86510077613059], [2.411729283245859, 48.86514452762576], [2.411733537582671, 48.86514501439441], [2.411943502276261, 48.86514677559492], [2.412151580750781, 48.86514826275681], [2.412361544108599, 48.86515002321723], [2.412569623960974, 48.86515151055834], [2.412779587345904, 48.86515327028537], [2.412987665870217, 48.865154755993686], [2.413197630645438, 48.86515651499407], [2.41340570919473, 48.865157999975565], [2.4136156739971373, 48.86515975824254], [2.413823752561074, 48.86516124339657], [2.413825171154466, 48.86516128272067], [2.413861209995438, 48.86514408220066], [2.41386066734351, 48.865126646760615], [2.413856491378196, 48.86499210410781], [2.413850912583845, 48.86486072743597], [2.413846735312073, 48.864726183844546], [2.4138411565707, 48.8645948071407], [2.41383711456606, 48.86446460079304], [2.413831535866842, 48.864333224956965], [2.413827493906543, 48.86420301857824], [2.413821915269817, 48.864071641811364], [2.413821959427096, 48.86407062487452], [2.413834665951038, 48.863973990108164], [2.413851968503737, 48.86384031335109], [2.413864674905825, 48.86374367946072], [2.413866140129818, 48.86373254381547], [2.413883441148395, 48.8635988679173], [2.4138949891593082, 48.86351104635956], [2.413906537131287, 48.86342322479379], [2.413923837953606, 48.863289547953144], [2.413926966790254, 48.8632657523426], [2.413927241067333, 48.86326366631696], [2.4139429462800113, 48.86314422719253], [2.413960246916258, 48.86301055031295], [2.413976017594257, 48.86289060964615], [2.413993319424357, 48.86275693273786], [2.413993346062556, 48.86275674580546], [2.414009116587523, 48.8626368051068], [2.4140303848206273, 48.86250494446771], [2.414046155184002, 48.86238500373699], [2.414067423220568, 48.86225314306133], [2.41408992602533, 48.862117409553434], [2.414111193841875, 48.86198554883821], [2.414133613164759, 48.8618503095195], [2.4141548807617, 48.86171844876471], [2.414177299866254, 48.86158320850597], [2.4141985672435933, 48.86145134771165], [2.414220987482905, 48.861316107418794], [2.414242254640641, 48.86118424658497], [2.41426467327851, 48.86104900714394], [2.414285940216652, 48.860917146270545], [2.4143083586362, 48.86078190588949], [2.414329625354851, 48.860650044976566], [2.414352044909044, 48.86051480456143], [2.414373311408001, 48.86038294360897], [2.414395729360887, 48.86024770404571], [2.41441699564026, 48.86011584305372], [2.414439413374831, 48.8599806025504], [2.414460679434724, 48.8598487415189], [2.41448309830393, 48.85971350098149], [2.41450436414414, 48.85958163991047], [2.414526781412072, 48.85944640022496], [2.414548047032707, 48.85931453911443], [2.4145704640823342, 48.85917929848885], [2.414591729483498, 48.8590474373388], [2.414595373691653, 48.85902636735623], [2.414593777755645, 48.85901883564], [2.414564806723511, 48.85901016993346], [2.414374387996889, 48.858999867961735], [2.414187485892677, 48.858989804140094], [2.4139970673150972, 48.85897950156778], [2.413810165356828, 48.858969437156645], [2.413619746928297, 48.85895913398378], [2.413432845115981, 48.85894906898315], [2.413245943365748, 48.85893900458985], [2.413055525170151, 48.85892869961961], [2.412868623565876, 48.8589186346368], [2.412678205519358, 48.85890832906596], [2.412491304061049, 48.858898263493685], [2.4123008861635142, 48.858887957322274], [2.412113984851282, 48.858877891160525], [2.411923567102841, 48.85886758438852], [2.411736665936492, 48.8588575176373], [2.411546248337255, 48.85884721026471], [2.411531165921626, 48.85885140348506]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 33, "roussel_fabien": 22.0, "nb_emargement": 923.0, "nb_procuration": 15.0, "nb_vote_blanc": 9.0, "jadot_yannick": 27.0, "le_pen_marine": 98.0, "nb_exprime": 906.0, "nb_vote_nul": 8.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1445.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 923, "quartier_bv": "80", "geo_point_2d": [48.86211678629697, 2.411987606384063], "melenchon_jean_luc": 484.0, "poutou_philippe": 6.0, "macron_emmanuel": 173.0}, "geometry": {"type": "Point", "coordinates": [2.411987606384063, 48.86211678629697]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3217196f71e2f509ff514e27965f07ed696f14b3", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 88, "zemmour_eric": 124.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "15-67", "geo_shape": {"coordinates": [[[2.291020235957023, 48.840758877655155], [2.291063063906882, 48.84073325840423], [2.29114381282714, 48.840606412217525], [2.291223663218991, 48.840480284633344], [2.2913044099940603, 48.840353438301385], [2.291384260972158, 48.84022731058955], [2.291465006964482, 48.840100464120454], [2.291544857166298, 48.83997433627279], [2.291625602363666, 48.839847490565944], [2.291705451789418, 48.83972136258251], [2.291786196216287, 48.83959451583924], [2.291866043503476, 48.83946838771196], [2.291946788510038, 48.83934154083961], [2.292026635021087, 48.839215412576614], [2.292031479028835, 48.839211473220736], [2.292187670196518, 48.83914004403082], [2.292359600390606, 48.839061886014164], [2.292515792022671, 48.838990456394306], [2.292687721243624, 48.838912296996284], [2.292843910615487, 48.83884086693039], [2.293015838838699, 48.838762707949634], [2.2931720273126572, 48.83869127744576], [2.293343954550437, 48.83861311798292], [2.293500143500963, 48.838541686149796], [2.293672069753412, 48.83846352620494], [2.293774130959552, 48.83841684885866], [2.293774959285662, 48.838409512179105], [2.293752575838581, 48.83839660625026], [2.293588459794074, 48.83831913211498], [2.293418237864311, 48.83823842890916], [2.293254122814881, 48.838160954304215], [2.293083901919337, 48.838080250611206], [2.292919787864781, 48.838002775536594], [2.292749568003551, 48.83792207135641], [2.292747886902787, 48.837908403552504], [2.292801412775892, 48.8378731120821], [2.292857881231593, 48.83783723540358], [2.292856354456363, 48.83782343810369], [2.292700830251615, 48.83775009123864], [2.292558301482041, 48.83768116139396], [2.29240277813342, 48.83760781323277], [2.292260250147037, 48.83753888302419], [2.292117721175265, 48.837469952633434], [2.29196219906458, 48.837396604784864], [2.29194405177704, 48.83739798042963], [2.291794568911204, 48.83751010523577], [2.291658366872479, 48.837611676114314], [2.291522162940581, 48.83771324682042], [2.29137267827532, 48.83782537016844], [2.291347421262226, 48.837844204488626], [2.291326795864887, 48.83785056406993], [2.291324826176741, 48.83785935185853], [2.291213878062504, 48.83794208877698], [2.291089606224026, 48.838035038141314], [2.290953400065312, 48.838136609060676], [2.290829127286234, 48.83822955903748], [2.290692921486244, 48.838331128751356], [2.290568646416618, 48.83842407843332], [2.290444372266042, 48.83851702798653], [2.29030816496511, 48.83861859723617], [2.290290631088188, 48.838620216402965], [2.290095198900355, 48.8385378479425], [2.289896801460142, 48.83845406302665], [2.289701370517638, 48.83837169391053], [2.289502972980531, 48.83828790832094], [2.289482575483551, 48.838292911785274], [2.2894251615986843, 48.838419916423014], [2.289376484053818, 48.83853129686913], [2.289367965619123, 48.838569891373666], [2.289375803847603, 48.83857269361458], [2.28945663516755, 48.83869181891912], [2.289535521823201, 48.83880770296034], [2.289616352510231, 48.838926828123846], [2.289695239876658, 48.839042712035344], [2.289776072643309, 48.839161837973265], [2.289854959370376, 48.83927772084769], [2.289935792866521, 48.8393968466526], [2.290014681666781, 48.8395127294054], [2.2900955145300212, 48.83963185506926], [2.290174404041081, 48.83974773769235], [2.29025523763393, 48.8398668632232], [2.290334127843452, 48.83998274661587], [2.290334648546235, 48.83998343052856], [2.290346964109875, 48.83999805001191], [2.290429544071928, 48.84009594262186], [2.290488067742705, 48.84016541717381], [2.290492286988714, 48.84018246548366], [2.290497461841021, 48.84018626633791], [2.290515327653106, 48.8402074445522], [2.290630619803129, 48.840342055343136], [2.290731068179757, 48.84046112681182], [2.290831515653001, 48.84058019817537], [2.290946809444157, 48.840714808616625], [2.290977598676787, 48.84073452093166], [2.290980232605871, 48.840736712119266], [2.291012675984076, 48.84075642343658], [2.291020235957023, 48.840758877655155]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 67, "roussel_fabien": 19.0, "nb_emargement": 1285.0, "nb_procuration": 76.0, "nb_vote_blanc": 23.0, "jadot_yannick": 94.0, "le_pen_marine": 73.0, "nb_exprime": 1254.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1645.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1284, "quartier_bv": "57", "geo_point_2d": [48.83887562775003, 2.291395270586177], "melenchon_jean_luc": 280.0, "poutou_philippe": 6.0, "macron_emmanuel": 524.0}, "geometry": {"type": "Point", "coordinates": [2.291395270586177, 48.83887562775003]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "453d559ad76a991412ba8b1dd63b433c09d485e9", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 141, "zemmour_eric": 133.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "17-15", "geo_shape": {"coordinates": [[[2.310769188790851, 48.88799956021916], [2.310766928067725, 48.88799829443984], [2.31058751147771, 48.887929418813506], [2.310410222473478, 48.88785881855877], [2.310230805460369, 48.8877899432806], [2.310053518778208, 48.887719342496645], [2.309874102729401, 48.88765046577595], [2.309696817005841, 48.88757986445488], [2.3095174018974, 48.88751098809025], [2.309340117132337, 48.8874403862321], [2.309160702988311, 48.88737150842502], [2.308983419181644, 48.88730090602978], [2.308804005978073, 48.887232028578694], [2.308626723130003, 48.88716142564635], [2.308447310890656, 48.887092546752854], [2.308270029001084, 48.88702194328344], [2.308211270074663, 48.88698784293448], [2.30819376606958, 48.887000197530355], [2.308089071495136, 48.88707620205799], [2.307958180656871, 48.8871739546832], [2.307826462598023, 48.887269575460834], [2.307695570792564, 48.88736732688248], [2.307563853114153, 48.887462948261536], [2.307462854672361, 48.88753837464116], [2.307443241708042, 48.88755208030993], [2.3074419955564798, 48.887554004863624], [2.307412101195843, 48.88757632959584], [2.3072775208940532, 48.88767823569627], [2.307146627019002, 48.88777598738076], [2.307012045681653, 48.887877893164294], [2.306881149454549, 48.887975643633624], [2.306750254087707, 48.88807339485833], [2.306615671205983, 48.888175300168754], [2.306484774850961, 48.888273050186235], [2.30635019092168, 48.88837495607901], [2.306219293566295, 48.888472705788466], [2.306084708613405, 48.88857461046506], [2.305953810245766, 48.8886723607658], [2.30581922425728, 48.88877426512546], [2.305688324901348, 48.88887201421898], [2.305553737877359, 48.88897391826173], [2.305422837509146, 48.88907166794645], [2.305288249449441, 48.88917357167227], [2.305157348092928, 48.88927132014974], [2.305022758985598, 48.88937322445787], [2.304891855265166, 48.889470972619414], [2.304757266497923, 48.88957287571926], [2.304709036179225, 48.88960888988921], [2.304694563378126, 48.88961553822607], [2.304685829003985, 48.88962650968204], [2.304603154534333, 48.889688244247886], [2.304452524734573, 48.88980404468965], [2.304321620212195, 48.88990179309661], [2.304170989168552, 48.89001759316169], [2.30404008358079, 48.89011534124189], [2.30402350418232, 48.89011734391143], [2.3039565748204662, 48.89009409124973], [2.303918041629505, 48.890056648542476], [2.30385826285365, 48.89008062606206], [2.3037289611998473, 48.89017892362203], [2.303591819951682, 48.89028098409842], [2.303462518649154, 48.89037928225988], [2.303325374987283, 48.89048134240459], [2.303196072696138, 48.89057963936115], [2.303058929348039, 48.890681699189976], [2.302929624680659, 48.890779996732206], [2.302792480282577, 48.89088205623724], [2.302663175990323, 48.890980352582474], [2.302526029178598, 48.891082411755775], [2.302472473986093, 48.89112312444116], [2.302457994213878, 48.89114052212786], [2.302496443698615, 48.89116281560469], [2.302614802177577, 48.89115120217129], [2.302698586756594, 48.891142981907166], [2.302703559991615, 48.89114181206345], [2.302808661050704, 48.89110051536511], [2.302910725054746, 48.89106041228846], [2.302912139721123, 48.89105977390718], [2.303013543515041, 48.891007543059565], [2.30316710193669, 48.89092879318644], [2.303373615175076, 48.890823109652594], [2.303527172520251, 48.89074435840525], [2.303527520032941, 48.890744174265606], [2.303641470261064, 48.89068181567313], [2.303755718356688, 48.89061929322589], [2.303869668038221, 48.89055693440913], [2.303983914210061, 48.890494412628364], [2.303985521367386, 48.890493655742446], [2.304157806864581, 48.89042434486063], [2.304357739131754, 48.89034391946677], [2.304392172486504, 48.890330066597464], [2.304420622363052, 48.890324307089955], [2.304421808095475, 48.89031425948719], [2.304559657797946, 48.8902588017861], [2.304702609447101, 48.89020322695987], [2.304874893028796, 48.890133915028], [2.305017842634897, 48.89007833981123], [2.30501875268672, 48.890078004247684], [2.305195004765682, 48.89001876218323], [2.305372296235002, 48.889959170653285], [2.305548546145851, 48.88989992805415], [2.305725836817931, 48.88984033509505], [2.305902087288017, 48.889781091977056], [2.306079377138868, 48.88972149938733], [2.306255626804462, 48.88966225574253], [2.306432914482358, 48.889602662615054], [2.306609163343361, 48.88954341844343], [2.306786451587814, 48.88948382389467], [2.30696269964432, 48.889424579196344], [2.307139987067457, 48.88936498501694], [2.307316234319568, 48.889305739791816], [2.307493519581716, 48.88924614417541], [2.307669766029328, 48.88918689842348], [2.307847051833982, 48.88912730318436], [2.308023297477096, 48.8890680569057], [2.308200581108802, 48.889008461128796], [2.308376825959361, 48.88894921342411], [2.308554110145526, 48.88888961712523], [2.308730354179534, 48.88883036979304], [2.308907637556451, 48.8887707729643], [2.309083880786058, 48.88871152510536], [2.309261162001961, 48.88865192683962], [2.309276153859508, 48.888651834356054], [2.309285297547133, 48.888643539528275], [2.309456448119171, 48.88858198823749], [2.309625581189393, 48.88852116251867], [2.309796730956959, 48.888459610734614], [2.309965863232293, 48.8883987845284], [2.31013701218347, 48.888337233150395], [2.310306142300028, 48.88827640644887], [2.31047729045865, 48.88821485367839], [2.310646421144006, 48.88815402649728], [2.310651625470164, 48.88815071455127], [2.310703358604331, 48.88809311534212], [2.310762505173716, 48.888027262466935], [2.310769188790851, 48.88799956021916]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 15, "roussel_fabien": 11.0, "nb_emargement": 1177.0, "nb_procuration": 67.0, "nb_vote_blanc": 13.0, "jadot_yannick": 64.0, "le_pen_marine": 78.0, "nb_exprime": 1164.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1452.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1178, "quartier_bv": "67", "geo_point_2d": [48.88868588237849, 2.3072578950610647], "melenchon_jean_luc": 204.0, "poutou_philippe": 3.0, "macron_emmanuel": 499.0}, "geometry": {"type": "Point", "coordinates": [2.3072578950610647, 48.88868588237849]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3b627f89a633f21a25a62b1d29a1537dc8d1c64e", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 93, "zemmour_eric": 134.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "9-7", "geo_shape": {"coordinates": [[[2.33416542691612, 48.87096059173772], [2.334137696711494, 48.870949858528775], [2.334031568909159, 48.87093170216631], [2.333836873564461, 48.870899283907995], [2.333650943540435, 48.870867475316665], [2.333456248672683, 48.87083505643739], [2.333270319110445, 48.87080324725297], [2.333075624719548, 48.8707708277527], [2.33288969563052, 48.87073901707597], [2.332695003068398, 48.87070659786157], [2.332509074440975, 48.870674786591735], [2.332314381004112, 48.870642365849534], [2.332128452826979, 48.8706105548859], [2.331933759866992, 48.87057813352267], [2.331737882430308, 48.870544756421936], [2.33154318995935, 48.87051233442149], [2.331347313031904, 48.870478955780364], [2.331152621049985, 48.87044653314278], [2.330956744620248, 48.870413153860476], [2.330762053127376, 48.87038073058567], [2.330566177195256, 48.870347350662264], [2.3303714861799802, 48.87031492764952], [2.330175609382467, 48.87028154707737], [2.329980920230927, 48.87024912253576], [2.329785043931149, 48.8702157413225], [2.329590355268677, 48.87018331614372], [2.32939447946654, 48.87014993428932], [2.329199789918453, 48.87011750936502], [2.329003915977276, 48.870084126877146], [2.328809226929851, 48.87005170041635], [2.328613353486431, 48.87001831728736], [2.328418664928099, 48.869985890189376], [2.328222791982444, 48.86995250641928], [2.328133629800614, 48.86993765605531], [2.328088167837108, 48.869917934587434], [2.328025719375111, 48.86994365685338], [2.327920193500364, 48.8699260802864], [2.327725155833976, 48.86989224172243], [2.32753046829978, 48.8698598131761], [2.327335432497886, 48.86982597398273], [2.327140745453883, 48.869793544800544], [2.326945708790181, 48.86975970496245], [2.326751023588062, 48.86972727605142], [2.326555987425558, 48.86969343557626], [2.326361301362267, 48.86966100512242], [2.326166267064274, 48.86962716401791], [2.3259715814912, 48.86959473292825], [2.325895962744216, 48.86958161194355], [2.325858813652172, 48.86958792115501], [2.325842425475586, 48.869619962381265], [2.325877725255418, 48.86975391869185], [2.325911829989011, 48.86988584472308], [2.325947130127503, 48.870019800981], [2.325981236574062, 48.8701517269684], [2.326016535708107, 48.87028568316597], [2.326050642504536, 48.870417609101814], [2.326085941997142, 48.87055156524667], [2.326120049143546, 48.87068349113102], [2.326155350358051, 48.870817447230834], [2.326189456491103, 48.87094937305601], [2.326224758064289, 48.87108332910313], [2.326258865910358, 48.87121525488442], [2.32629416647899, 48.871349210871166], [2.326328274663419, 48.871481137500204], [2.326363575602366, 48.87161509253497], [2.326397684136691, 48.87174701911248], [2.326432986785957, 48.87188097500146], [2.326467094318553, 48.87201290062048], [2.326502397326522, 48.87214685645673], [2.326536506572186, 48.87227878203187], [2.326541268305974, 48.872315088233165], [2.326542416691566, 48.87231579168341], [2.326576526137689, 48.872447718126274], [2.326608758098352, 48.87257829845974], [2.326642867896028, 48.87271022395305], [2.326675098810535, 48.872840805129236], [2.326709208948142, 48.872972730572236], [2.3267414401914, 48.87310331169954], [2.326742347352811, 48.8731053807876], [2.326799884684336, 48.8732063945133], [2.3268529090825822, 48.87328876648396], [2.326910446842717, 48.8733897792405], [2.32696142282836, 48.87350050390871], [2.327018959669632, 48.87360151658599], [2.327069936093171, 48.873712241186794], [2.327070617606027, 48.87371689820144], [2.327066645473578, 48.87373245693075], [2.327067691489037, 48.87373412209282], [2.327037934900936, 48.87385067649575], [2.3270037810860362, 48.873975790352866], [2.326970052027026, 48.87410790343526], [2.326935899255238, 48.874233016352214], [2.326902169857479, 48.8743651293847], [2.326868015379123, 48.87449024314472], [2.326834285642505, 48.87462235612731], [2.326800132207371, 48.87474746894717], [2.326766402131994, 48.87487958187982], [2.326732246990165, 48.875004695542785], [2.326698516576121, 48.875136808425495], [2.326664362477418, 48.8752619211483], [2.326630631724606, 48.875394033981074], [2.326596475919284, 48.875519147546946], [2.326580807580767, 48.875563737628106], [2.326614372629533, 48.875582290031744], [2.326721668352579, 48.87559765258957], [2.326807633915939, 48.875591654530915], [2.326814621228703, 48.87559346911846], [2.326886060570802, 48.875572611388485], [2.326890162899287, 48.87557273518169], [2.327078005064657, 48.87559746724015], [2.327281522755682, 48.87562241300226], [2.327469365286047, 48.87564714444549], [2.32767288337033, 48.875672088641885], [2.32786072625407, 48.87569682036919], [2.328064244719784, 48.875721763899094], [2.328252087980107, 48.87574649411193], [2.328455606815848, 48.875771437874604], [2.328643450441139, 48.8757961674722], [2.328846969658297, 48.875821110568445], [2.329034813648549, 48.8758458395508], [2.329238331883959, 48.87587078197292], [2.329426176239162, 48.87589551034006], [2.329629696231013, 48.87592045120409], [2.329817540951157, 48.875945178956], [2.330021061312822, 48.87597012005279], [2.330208906397902, 48.875994847189524], [2.330210511662647, 48.875995126871864], [2.33036235078669, 48.87602772835142], [2.33057789022642, 48.87607464718591], [2.330729729812241, 48.87610724819714], [2.330945269900437, 48.87615416726604], [2.331097109948032, 48.87618676780894], [2.331099705594915, 48.87618753865538], [2.331253225495493, 48.87624658799908], [2.331431126162588, 48.87631876333392], [2.331584645462422, 48.876377812238], [2.331712227578203, 48.87642957271259], [2.331736831994473, 48.87643300883442], [2.331762358248057, 48.87640752921788], [2.331819606562731, 48.87627874714101], [2.331876036997572, 48.87615035346886], [2.331933284748493, 48.87602157130765], [2.331989714636004, 48.87589317665269], [2.3320469618230772, 48.87576439440705], [2.332103389776939, 48.8756360005603], [2.332160636400279, 48.87550721823024], [2.332217065158654, 48.875378824307546], [2.332274311218265, 48.87525004189311], [2.332330739429226, 48.87512164698763], [2.332387984925217, 48.87499286448884], [2.332444412565817, 48.87486447039911], [2.332501657498095, 48.87473568781592], [2.332558084579871, 48.87460729364268], [2.332615328959966, 48.87447851007585], [2.332671755482925, 48.87435011581913], [2.3327289992877, 48.87422133306718], [2.332785425251851, 48.874092938726946], [2.332842667129724, 48.87396415588306], [2.332899092546697, 48.873835760560034], [2.332956335224104, 48.87370697763937], [2.333012760070666, 48.87357858313211], [2.333070002184503, 48.87344980012708], [2.333126426472281, 48.87332140553639], [2.333183668033966, 48.8731926215477], [2.333240091762967, 48.87306422687351], [2.333297332749483, 48.87293544369975], [2.333353755919716, 48.872807048942036], [2.333410996342482, 48.87267826568393], [2.333467418965462, 48.87254986994349], [2.333524658824689, 48.872421086601044], [2.333581079514241, 48.87229269166876], [2.3336383188097383, 48.87216390824204], [2.3336947403037183, 48.87203551323387], [2.3337511615310502, 48.87190711728492], [2.333808399982439, 48.87177833373184], [2.333864820639536, 48.8716499385987], [2.333922058527314, 48.8715211549613], [2.333978478625687, 48.871392759744694], [2.3340357159498613, 48.87126397602295], [2.334092135501016, 48.87113557982362], [2.334149372261594, 48.87100679601756], [2.33416542691612, 48.87096059173772]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 7, "roussel_fabien": 13.0, "nb_emargement": 1121.0, "nb_procuration": 66.0, "nb_vote_blanc": 18.0, "jadot_yannick": 82.0, "le_pen_marine": 58.0, "nb_exprime": 1100.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1419.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1121, "quartier_bv": "34", "geo_point_2d": [48.872849888260085, 2.329778325443047], "melenchon_jean_luc": 199.0, "poutou_philippe": 4.0, "macron_emmanuel": 464.0}, "geometry": {"type": "Point", "coordinates": [2.329778325443047, 48.872849888260085]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dda8c5f6715300ecc5212c4ef8d6d5c61f5eccf7", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 67, "zemmour_eric": 81.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "12-31", "geo_shape": {"coordinates": [[[2.402237766441933, 48.844953937936474], [2.402266044683617, 48.8449822317708], [2.402289584293044, 48.845046953721656], [2.402308492569278, 48.845086234927685], [2.402333739833379, 48.84510412603814], [2.4023812600466092, 48.84511160594196], [2.402472110875893, 48.84511155340328], [2.40259040734901, 48.84511473883106], [2.402601631863601, 48.845119205322945], [2.402695531964154, 48.84522582335307], [2.402786737447922, 48.845329800827905], [2.402880636944121, 48.8454364186858], [2.402971843165743, 48.84554039599992], [2.403063049751298, 48.84564437323476], [2.403156950379549, 48.84575099084571], [2.403158724301806, 48.84575458092855], [2.403180129046722, 48.845890549718995], [2.403201504661172, 48.84602657320382], [2.403222909629514, 48.84616254195346], [2.403244285467185, 48.846298565397454], [2.403265690658755, 48.84643453410624], [2.40328706671975, 48.8465705575094], [2.403308472134651, 48.84670652617736], [2.403329848418771, 48.84684254953968], [2.4033512540571103, 48.846978518166765], [2.4033726305747543, 48.84711454058894], [2.403394036426036, 48.8472505100745], [2.403415413167015, 48.84738653245578], [2.403436820604272, 48.84752250190729], [2.403458196205753, 48.84765852424098], [2.403477098791983, 48.847698342946316], [2.4034941023344603, 48.847699782150634], [2.403552735369352, 48.84769461808989], [2.403751230316229, 48.84767664461133], [2.403951289553973, 48.84765902304963], [2.404149784227915, 48.84764104890929], [2.404349843194244, 48.8476234266806], [2.404548337595037, 48.847605451878444], [2.404748396289939, 48.847587828982775], [2.404946889055145, 48.84756985351205], [2.405146947478611, 48.84755222994936], [2.405345441333284, 48.84753425382362], [2.405545499485305, 48.847516629593954], [2.405743993067005, 48.84749865280643], [2.405944050947571, 48.84748102790973], [2.406142544256084, 48.84746305046044], [2.406342601865186, 48.847445424896776], [2.406354083845668, 48.84743920438104], [2.406331287485421, 48.84738800887146], [2.40630227896292, 48.84725425781905], [2.406272463101751, 48.847119259829086], [2.406243454879713, 48.84698550873014], [2.406213640697539, 48.846850509800404], [2.406184631413549, 48.84671675864819], [2.40615481752715, 48.84658176057053], [2.406125809906327, 48.84644800937855], [2.40609599497369, 48.84631301034761], [2.406066987653419, 48.846179259109114], [2.406037173016755, 48.846044260930306], [2.406008165996928, 48.84591050964528], [2.405978353039218, 48.84577551052667], [2.405949344957448, 48.84564175918842], [2.405919532295488, 48.84550676092192], [2.405890525887092, 48.84537300864456], [2.405860712168656, 48.84523801032414], [2.40583170605054, 48.8451042588996], [2.405801892638308, 48.84496926053192], [2.40579431688688, 48.84493432700084], [2.4058047385753882, 48.84491887656746], [2.4057931563119412, 48.84490393829917], [2.405771724908169, 48.84480511945025], [2.405736530385556, 48.84468952218842], [2.4057156095194943, 48.84468014140789], [2.405679040539975, 48.844692975224646], [2.405491734881316, 48.84470583799623], [2.405305543550098, 48.844718240147756], [2.405118237698196, 48.84473110323359], [2.404932046187839, 48.84474350480354], [2.404744740163229, 48.84475636640503], [2.404558548473846, 48.844768767393404], [2.404371242266171, 48.844781628409834], [2.404185050397669, 48.844794028816665], [2.403997744007142, 48.84480688924805], [2.403811551959427, 48.84481928907329], [2.403624245375661, 48.84483214981894], [2.403438053159237, 48.844844548163316], [2.403250746392426, 48.844857408323925], [2.403064553986611, 48.84486980698604], [2.402877247047165, 48.84488266566227], [2.402691053099699, 48.844895063736026], [2.402503747339995, 48.844907921834], [2.402317553213451, 48.84492031932618], [2.402243872347027, 48.84493338488207], [2.402241248846854, 48.844942216041495], [2.402237766441933, 48.844953937936474]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 31, "roussel_fabien": 19.0, "nb_emargement": 1115.0, "nb_procuration": 58.0, "nb_vote_blanc": 14.0, "jadot_yannick": 110.0, "le_pen_marine": 49.0, "nb_exprime": 1098.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 6, "nb_inscrit": 1405.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1117, "quartier_bv": "45", "geo_point_2d": [48.846152613831876, 2.4045709966632893], "melenchon_jean_luc": 334.0, "poutou_philippe": 7.0, "macron_emmanuel": 363.0}, "geometry": {"type": "Point", "coordinates": [2.4045709966632893, 48.846152613831876]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "baaa201c2373f4c5426154e49033a26fbbabcff4", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 69, "zemmour_eric": 78.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "5-16", "geo_shape": {"coordinates": [[[2.349665047624097, 48.84142925475163], [2.349705056221332, 48.84142976184401], [2.349798553232253, 48.84132765266954], [2.349888460866336, 48.84122882906991], [2.349981957157507, 48.84112671973372], [2.350071864097343, 48.84102789597845], [2.350165359668772, 48.84092578648055], [2.350255267276613, 48.84082696257704], [2.350348760765858, 48.840724852910036], [2.350438667679462, 48.84062602885092], [2.3504443664763652, 48.8406225783566], [2.350599236249722, 48.840572631201816], [2.350742672948456, 48.840527054759754], [2.35088610939644, 48.84048147814388], [2.351040978327124, 48.840431530410875], [2.35105407645479, 48.840431941427745], [2.351229496777975, 48.84050286618135], [2.351404028113325, 48.84057442709724], [2.3515794493922613, 48.84064535132865], [2.351753980322858, 48.84071691171742], [2.351766238241252, 48.84071762028894], [2.351938876932572, 48.84067194614239], [2.35210852981034, 48.84062782586472], [2.352281167893008, 48.840582152119794], [2.352450820200028, 48.84053803045386], [2.352623457685323, 48.840492356211314], [2.352793109399139, 48.8404482349557], [2.352801887341748, 48.84044796227377], [2.352984665422642, 48.84048284445747], [2.353170921375451, 48.840518783930584], [2.353353698589332, 48.84055366554089], [2.353539955049678, 48.84058960443721], [2.353722734110173, 48.84062448638806], [2.353908991078054, 48.840660424707465], [2.353918628879568, 48.84065992545114], [2.353943395547547, 48.840651881296495], [2.353935030490649, 48.840627416590074], [2.35395120310673, 48.84049697384715], [2.353967193287258, 48.84036541399111], [2.353983365741552, 48.84023497121323], [2.353999355760622, 48.84010341132203], [2.35401552805313, 48.839972968509166], [2.3540315178993962, 48.83984140948213], [2.3540476900412672, 48.83971096573502], [2.354063679725978, 48.8395794066728], [2.354079851706067, 48.83944896289075], [2.354095841229329, 48.839317403793416], [2.354112013036496, 48.83918696087573], [2.354128002409251, 48.839055400843904], [2.354117400140439, 48.839045905659795], [2.353904963210515, 48.839014494785694], [2.353685154521997, 48.83898481635094], [2.353472718101542, 48.8389534047075], [2.353252909927826, 48.838923724577526], [2.353242034829243, 48.838916247813174], [2.353211658334516, 48.83891692717435], [2.353211031416892, 48.838916832049286], [2.353004236218955, 48.838882123318626], [2.352801331045869, 48.83884753150703], [2.3525945363956993, 48.838812822066], [2.352391633126588, 48.83877822956465], [2.352184837661798, 48.838743519405824], [2.351981934934372, 48.838708926207396], [2.351779031113979, 48.8386743326564], [2.351572237820552, 48.83863962234198], [2.351369334541754, 48.838605028093895], [2.35116254180731, 48.83857031616972], [2.350959640432714, 48.838535721231985], [2.350752846883688, 48.83850100859002], [2.35074732392443, 48.83849911332828], [2.350604099334011, 48.838418977608086], [2.350436975512783, 48.838324152092845], [2.350293751869145, 48.838244016887835], [2.350126629173486, 48.838149190924106], [2.349983407850002, 48.8380690553424], [2.349816284917527, 48.83797422892288], [2.349673064551907, 48.837894092957036], [2.349505944107467, 48.837799266096454], [2.349362723348564, 48.83771912883981], [2.349287101287632, 48.83773200202517], [2.349283634976099, 48.837736497989084], [2.349342122109992, 48.837855542432315], [2.349405488355769, 48.837990747105245], [2.349463977415726, 48.838109791469215], [2.349527344286571, 48.83824499604683], [2.349585832547745, 48.83836404031674], [2.349649200043864, 48.83849924479904], [2.349707690231032, 48.83861828898969], [2.349771058352237, 48.83875349337665], [2.349829547729406, 48.83887253837255], [2.349888038747363, 48.838991582435256], [2.349951407790214, 48.83912678668152], [2.349951754723928, 48.839131196357094], [2.349918689954768, 48.839241109791644], [2.349890966420153, 48.839353717954246], [2.349857900019232, 48.83946363134267], [2.349830176235027, 48.83957623946878], [2.349797110927066, 48.839686152825934], [2.349769385530747, 48.839798760908074], [2.3497692282533063, 48.83980066490817], [2.349781107824374, 48.8398980857345], [2.349790398138546, 48.84001739470775], [2.349790391788104, 48.84001888671945], [2.349776012206787, 48.84012928562318], [2.349756192322231, 48.84027024503036], [2.349741812599131, 48.84038064390513], [2.349741802052487, 48.840380724790606], [2.349721981979696, 48.8405216841604], [2.349705268544561, 48.840637728221324], [2.34969719054534, 48.840644470910505], [2.349700712799196, 48.84066542545998], [2.349693467413398, 48.84071572978498], [2.34967710430527, 48.84080914682561], [2.349665134720023, 48.840912763147124], [2.349648771499256, 48.84100618016738], [2.349648697098248, 48.84100679222975], [2.34963672603756, 48.84111040942195], [2.349627332567805, 48.84124287422163], [2.349621072185037, 48.841315667966384], [2.349621136604501, 48.841317056934294], [2.349627107557608, 48.841356665898346], [2.349636666368592, 48.84141492288665], [2.349665047624097, 48.84142925475163]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 16, "roussel_fabien": 17.0, "nb_emargement": 1244.0, "nb_procuration": 88.0, "nb_vote_blanc": 11.0, "jadot_yannick": 96.0, "le_pen_marine": 50.0, "nb_exprime": 1230.0, "nb_vote_nul": 3.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1502.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1244, "quartier_bv": "18", "geo_point_2d": [48.839609420411264, 2.351621687304778], "melenchon_jean_luc": 386.0, "poutou_philippe": 7.0, "macron_emmanuel": 467.0}, "geometry": {"type": "Point", "coordinates": [2.351621687304778, 48.839609420411264]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2557706101f007690eb2fe1a440489b2c1b68650", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 45, "zemmour_eric": 66.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-42", "geo_shape": {"coordinates": [[[2.359619368839235, 48.8189556379889], [2.359615087880348, 48.81894125105127], [2.359630609838141, 48.81889102551711], [2.359668994778405, 48.81875295757038], [2.359708307213621, 48.81862574109728], [2.359746691752876, 48.81848767309307], [2.359786005160399, 48.81836045657177], [2.3598243892986472, 48.81822238851007], [2.359863702305567, 48.81809517283256], [2.359902086042713, 48.817957104713344], [2.359944875414595, 48.81781559393271], [2.359983258731019, 48.817677525753176], [2.360026049014942, 48.81753601491563], [2.360031835957429, 48.817516469044264], [2.360031915287668, 48.817516219440705], [2.360074893815634, 48.8173940831616], [2.360100875966142, 48.817317862884394], [2.360142998207027, 48.817192897019126], [2.360185976197199, 48.81707076156433], [2.360228099396371, 48.8169457956489], [2.360271076983563, 48.816823660136734], [2.360313198417268, 48.816698694156635], [2.3603561756015923, 48.81657655858706], [2.360398297993581, 48.81645159255686], [2.360441274774837, 48.816329456929914], [2.360483395401587, 48.81620449083505], [2.360526371779884, 48.81608235515068], [2.360527122456578, 48.816065451664855], [2.360465454624009, 48.81605276070788], [2.360346772006044, 48.81605140452636], [2.3601418718991622, 48.816048622720324], [2.359962943153282, 48.81604657858139], [2.359758043096883, 48.816043795218256], [2.359575462363272, 48.81604170845912], [2.359370562335648, 48.81603892533125], [2.359187981634596, 48.81603683798042], [2.358983081657847, 48.81603405328919], [2.358800500989369, 48.816031965346625], [2.358630111445791, 48.81603001627112], [2.35842521151458, 48.81602723152317], [2.358254820638801, 48.81602528190552], [2.358049920746236, 48.8160224965145], [2.357898767684696, 48.81602076659677], [2.357693867839972, 48.81601797969623], [2.357528874706062, 48.816016091317756], [2.357323974888397, 48.8160133046826], [2.35715898043196, 48.816011414887036], [2.356993987338094, 48.81600952577047], [2.356789087574817, 48.816006738218675], [2.356683549424571, 48.81600552915655], [2.356478649693595, 48.816002741072815], [2.356388716380947, 48.8160017101732], [2.3563851528716, 48.81600166940568], [2.356292197997133, 48.816000604180715], [2.356272858104196, 48.81600038223827], [2.356067958415406, 48.815997593450646], [2.355960339657682, 48.81599635995316], [2.355929627827792, 48.81599693650968], [2.355795663998269, 48.81609456327602], [2.355669965326814, 48.816185981914366], [2.3555442648640392, 48.81627739950654], [2.355410300954368, 48.81637502582414], [2.355284599569568, 48.81646644402731], [2.3551506346881093, 48.81656407003758], [2.355024933754105, 48.81665548795973], [2.354890966539034, 48.816753113655345], [2.354765264705335, 48.816844530389865], [2.3546312978691573, 48.81694215668482], [2.354505593762706, 48.817033573123645], [2.3543716259657472, 48.81713119821196], [2.354245920937222, 48.81722261526176], [2.354111952168548, 48.81732024004275], [2.353986246229073, 48.81741165680421], [2.353852276488575, 48.817509281277836], [2.353726571011132, 48.81760069685899], [2.353632033888669, 48.817669586683685], [2.353578117554481, 48.8177097584195], [2.353571190929565, 48.8177148060796], [2.353527338790526, 48.817746760582594], [2.353497603747897, 48.81776842781824], [2.353420427302874, 48.81782593072143], [2.353370363689546, 48.81786323257924], [2.353238817351591, 48.81795908866799], [2.353229830059039, 48.817965784521206], [2.353087560195703, 48.81807178682088], [2.35295601281176, 48.81816764258075], [2.352934956352286, 48.81818298451285], [2.3529242088906273, 48.81819081662947], [2.352781937803305, 48.81829681764503], [2.352674381581515, 48.81837519034567], [2.352532109483292, 48.81848119104658], [2.3524245525057133, 48.818559563509666], [2.352409340481652, 48.818565748914146], [2.352409317609737, 48.818584478415], [2.35249743552537, 48.81870661318718], [2.352582677064227, 48.81882855782484], [2.35267079579838, 48.818950692442826], [2.352756038141564, 48.819072636930436], [2.35284415769425, 48.81919477139412], [2.352929400841974, 48.819316715731745], [2.352927991180923, 48.81932582782758], [2.3528112671564863, 48.81943019975041], [2.352691148174031, 48.81953779184435], [2.352574423212201, 48.819642162617015], [2.352454303252758, 48.81974975445276], [2.352337577331194, 48.8198541258739], [2.352217456394752, 48.81996171745144], [2.352224505625946, 48.81997566815911], [2.352426006907579, 48.82001558855454], [2.352620899644735, 48.820054345904715], [2.352629941084084, 48.820065702766556], [2.352565825943631, 48.82019777591728], [2.352501755917455, 48.82033090603601], [2.352437640126221, 48.82046297908683], [2.35237357080881, 48.820596109112884], [2.352309453004863, 48.82072818205645], [2.352245383034295, 48.82086131198244], [2.352250200595289, 48.820870178084824], [2.352276093049729, 48.8208720802281], [2.352461188518326, 48.820872516107784], [2.352645193773708, 48.82087278211164], [2.352830289247779, 48.82087321741996], [2.353014295869446, 48.82087348286323], [2.353199391338028, 48.82087391849954], [2.353383396613268, 48.82087418246811], [2.353567401879118, 48.820874447052894], [2.353752497355739, 48.82087488183307], [2.353936502626029, 48.82087514584988], [2.354121598119244, 48.82087557915938], [2.35430560339386, 48.82087584260823], [2.354490698892713, 48.8208762753464], [2.354494411716225, 48.820875943731885], [2.354662498222596, 48.82084493380586], [2.354829001341217, 48.82081429823638], [2.35499550562611, 48.820783662441585], [2.355163590186182, 48.820752650901966], [2.355330094077629, 48.82072201463959], [2.355498179590785, 48.82069100353461], [2.355504602447033, 48.82068838318404], [2.355644299298382, 48.820586653520316], [2.355786408410343, 48.82048310104887], [2.355926104150802, 48.820381371936705], [2.356068212143639, 48.82027781911143], [2.356207905433526, 48.820176088744844], [2.356350012307248, 48.820072535565785], [2.356368531504149, 48.82007150922651], [2.356495857082741, 48.82013773144514], [2.356618037579961, 48.820201512802356], [2.356745363792882, 48.82026773474764], [2.356867544899924, 48.820331515842575], [2.356875367488978, 48.82033344481518], [2.3570597002977, 48.82033901933447], [2.3572432907071, 48.82034438541945], [2.357427623593832, 48.82034995937157], [2.35761121409069, 48.820355323992324], [2.357795547044342, 48.82036089827651], [2.357979137617566, 48.82036626233234], [2.358163470649217, 48.82037183604929], [2.358347061298799, 48.820377199540204], [2.358531394408441, 48.820382772689946], [2.358714985134474, 48.82038813561588], [2.358899318333156, 48.820393707299075], [2.359082909124372, 48.820399070559375], [2.359147364788384, 48.82040662454988], [2.3591534768857763, 48.82039746654636], [2.359167732997421, 48.82035400757692], [2.359207047862797, 48.820226791449656], [2.359250748302279, 48.82009357385083], [2.35929006413056, 48.81996635767417], [2.35933376276683, 48.819833140906205], [2.359373078196211, 48.81970592467276], [2.359416776413087, 48.819572706944314], [2.359456091432527, 48.81944549155344], [2.359499789219167, 48.819312273763785], [2.359539103850765, 48.81918505741689], [2.359582801206974, 48.81905183956604], [2.359606593463713, 48.81897484869396], [2.359619368839235, 48.8189556379889]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 42, "roussel_fabien": 13.0, "nb_emargement": 1109.0, "nb_procuration": 13.0, "nb_vote_blanc": 15.0, "jadot_yannick": 44.0, "le_pen_marine": 108.0, "nb_exprime": 1088.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1551.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1109, "quartier_bv": "51", "geo_point_2d": [48.818431507510375, 2.3564466696850856], "melenchon_jean_luc": 495.0, "poutou_philippe": 8.0, "macron_emmanuel": 239.0}, "geometry": {"type": "Point", "coordinates": [2.3564466696850856, 48.818431507510375]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c2e1528ab9ff9963931941a2299e3206eb76a932", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 36, "zemmour_eric": 63.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-53", "geo_shape": {"coordinates": [[[2.303481595359494, 48.82701156477349], [2.303486344923119, 48.82701699141236], [2.303513343698968, 48.82703906743763], [2.303643273123221, 48.82714344969153], [2.303770513202592, 48.827247494157], [2.303900443661168, 48.82735187611219], [2.304027684762346, 48.827455920284734], [2.304157616267256, 48.82756030104178], [2.304284858390452, 48.827664344921374], [2.304414792279802, 48.827768726286884], [2.30454203406272, 48.827872769865614], [2.304617866332633, 48.82793368775956], [2.304612879459895, 48.82794859025089], [2.30461414253854, 48.82795816518756], [2.304736826419062, 48.82805440870328], [2.304790927947292, 48.828097870910234], [2.304920863930241, 48.828202251685575], [2.305043547601255, 48.828298493958485], [2.305173484590112, 48.828402874440656], [2.305296169187605, 48.828499117336534], [2.305418855600089, 48.82859536010619], [2.305548794092253, 48.82869973925368], [2.3056714800811973, 48.82879598173905], [2.305801419567208, 48.82890036149271], [2.3059241064945413, 48.82899660370175], [2.30605404698639, 48.82910098316225], [2.306176734864292, 48.82919722419557], [2.306306676361986, 48.82930160336296], [2.306429365166323, 48.829397845019194], [2.306559307669872, 48.82950222389341], [2.306681997424786, 48.829598464373994], [2.306811940934199, 48.82970284295502], [2.306811996195502, 48.82970288734481], [2.306934686877184, 48.829799128448265], [2.307054101605994, 48.82989630827068], [2.307176794551888, 48.82999254911706], [2.307257327168186, 48.83005808643257], [2.307267353505037, 48.83007006394957], [2.307276306660282, 48.83007464057279], [2.30731518834091, 48.83010628190739], [2.307439033380077, 48.830210109081115], [2.307558448628269, 48.83030728835649], [2.307682294617589, 48.83041111615902], [2.307801712141852, 48.83050829518197], [2.30792555910512, 48.830612121814696], [2.3080449761811153, 48.83070930056944], [2.308063612956157, 48.83072492443309], [2.308064699152362, 48.830725504519314], [2.308134611497737, 48.830696989528214], [2.308271575965771, 48.830629944513], [2.308449741011874, 48.83054312015756], [2.308586704658548, 48.83047607567157], [2.308764868653951, 48.83038925083477], [2.308901831491002, 48.83032220597871], [2.309079993073645, 48.830235380652745], [2.309216955101176, 48.83016833542658], [2.309221749194262, 48.830158234337006], [2.309160949104649, 48.8300393237176], [2.309100510268581, 48.829920003225475], [2.309039710721424, 48.82980109341853], [2.30897927243903, 48.829681772839756], [2.308981364650826, 48.82967346209322], [2.3090517375795923, 48.82961262110251], [2.309120197805002, 48.82955547805017], [2.309123119099453, 48.82954946550145], [2.3091131808401633, 48.82941343305219], [2.309092878871696, 48.82928901283364], [2.3090918559987292, 48.829285609076855], [2.309063761413229, 48.82927646828633], [2.30889310319434, 48.82919829046345], [2.308727016034856, 48.82912224695079], [2.308560929359993, 48.829046203202346], [2.30839027264891, 48.82896802464592], [2.308224186956453, 48.8288919804194], [2.308053529893156, 48.828813801363836], [2.307887445183205, 48.828737756659194], [2.307716790479807, 48.82865957801961], [2.307714918798847, 48.828645832783856], [2.307842105717263, 48.828561774693256], [2.307967810018046, 48.82848131798803], [2.307969553070561, 48.82846976476988], [2.307852573514277, 48.82835744889707], [2.307736501152939, 48.82824732723377], [2.30761952259784, 48.828135011110724], [2.307503449861894, 48.82802488919155], [2.307386472320019, 48.827912571918965], [2.307270400571473, 48.82780244975173], [2.307153425380918, 48.82769013313618], [2.3070373546198573, 48.82758001072092], [2.307035045605858, 48.827576125515286], [2.307012178431539, 48.82746875016349], [2.30697839502847, 48.827312997791395], [2.306955528086339, 48.827205622403575], [2.306921745023015, 48.82704986997895], [2.306898878312864, 48.82694249455511], [2.306900719078887, 48.82692852347062], [2.306886024540061, 48.82692152117827], [2.3068111296753, 48.82680025904248], [2.306736633540445, 48.82667853957306], [2.306661739372098, 48.82655727731745], [2.306587243945168, 48.82643555682933], [2.306512350473431, 48.82631429445388], [2.306437855730397, 48.82619257474566], [2.3064191914254, 48.826187881459425], [2.306244699125165, 48.8262448280743], [2.306074631299189, 48.82630070556198], [2.305900136894908, 48.82635765076118], [2.305730068319642, 48.82641352865253], [2.305555574523479, 48.8264704733512], [2.305385505210795, 48.826526350746946], [2.305211009298719, 48.826583294929215], [2.305040940622776, 48.82663917093796], [2.305039142874552, 48.82663965964669], [2.304876075598243, 48.82667651195204], [2.304704347766142, 48.826713956739454], [2.3045412800328, 48.82675080768656], [2.304369551715425, 48.826788251990784], [2.304358148533456, 48.82678737441954], [2.304279077066689, 48.826755285951585], [2.304176648861948, 48.82671808886131], [2.304156560126096, 48.826724899898124], [2.304145587496136, 48.82678545245687], [2.304140437169415, 48.82683484700765], [2.304131176521919, 48.82684275623097], [2.30397893708055, 48.82687644963921], [2.303824317438304, 48.8269113899282], [2.30367207896029, 48.82694508295161], [2.303517458908848, 48.82698002284177], [2.303481595359494, 48.82701156477349]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 53, "roussel_fabien": 24.0, "nb_emargement": 1051.0, "nb_procuration": 19.0, "nb_vote_blanc": 16.0, "jadot_yannick": 52.0, "le_pen_marine": 102.0, "nb_exprime": 1028.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1471.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1051, "quartier_bv": "56", "geo_point_2d": [48.82833901399143, 2.306570444461804], "melenchon_jean_luc": 379.0, "poutou_philippe": 11.0, "macron_emmanuel": 301.0}, "geometry": {"type": "Point", "coordinates": [2.306570444461804, 48.82833901399143]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8824ab481cbcaaf863274be1066ee1631d9be504", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 50, "zemmour_eric": 75.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-2", "geo_shape": {"coordinates": [[[2.391768095308219, 48.840496872181205], [2.391774791486288, 48.84051781726095], [2.391800210352951, 48.84064508999612], [2.3918291347897, 48.840778343292364], [2.39185455255366, 48.84090561597937], [2.3918834772845132, 48.84103886833211], [2.391908895297628, 48.84116614187716], [2.391937821674463, 48.84129939419259], [2.391954613736113, 48.84130684350542], [2.392134558856136, 48.84127713391087], [2.3923119245507403, 48.84124730391883], [2.392491867899063, 48.84121759377834], [2.392669233196931, 48.84118776235562], [2.392849177488103, 48.84115805258232], [2.393026541016382, 48.84112822062135], [2.393206484898213, 48.84109851030895], [2.393383848019464, 48.84106867781662], [2.39339706936385, 48.84107118302612], [2.393549000700137, 48.841176262018635], [2.393698585943675, 48.841283369561815], [2.393742675612691, 48.84129826966713], [2.393768154257284, 48.84126774590993], [2.393885390016883, 48.84116803527308], [2.394011222823139, 48.841060238751], [2.394045741578093, 48.841030880427255], [2.39406569060765, 48.84102650985889], [2.394078019209328, 48.841010758859916], [2.394160735196266, 48.84094040716578], [2.394258565338118, 48.84085481404475], [2.394375797868375, 48.840755102883506], [2.394473627298895, 48.84066951047173], [2.394571455045556, 48.84058391796644], [2.39468868773038, 48.84048420648128], [2.394706796186077, 48.84048214504257], [2.394852324013813, 48.8405436241183], [2.394987405775333, 48.84059771409859], [2.395005596979921, 48.84059521684351], [2.395086857232567, 48.840519349447774], [2.395162878605486, 48.84044663654176], [2.395244138387218, 48.8403707699284], [2.39532015796157, 48.84029805690587], [2.395355679482551, 48.84027188249851], [2.395339187001464, 48.84025785814816], [2.39521638119826, 48.84021169192121], [2.395083345731242, 48.84015873942357], [2.395079618721078, 48.840145524258766], [2.39518964570318, 48.840051939133076], [2.395297220315366, 48.83996335993623], [2.395407247884555, 48.83986977460202], [2.395514821740537, 48.839781196094314], [2.395624847182587, 48.83968760963854], [2.3957324216552323, 48.8395990309276], [2.395738619310015, 48.83958612672611], [2.395726601881687, 48.83957123196], [2.395541162365662, 48.83954049742897], [2.395364426416171, 48.83951059893891], [2.395178987329425, 48.83947986384477], [2.395002251793181, 48.83944996481801], [2.394816813146268, 48.83941922826143], [2.39464007802338, 48.83938932869796], [2.39445463979522, 48.839358592477616], [2.394277905085793, 48.83932869237742], [2.394271402710042, 48.8393261691198], [2.394132148160671, 48.839229252009034], [2.393994450056081, 48.839133742016756], [2.393855196535771, 48.83903682456695], [2.393717500809324, 48.83894131424633], [2.3935798042251, 48.83884580375208], [2.393440552245044, 48.83874888579461], [2.393302858039044, 48.83865337497208], [2.393163607088029, 48.83855645667552], [2.393149621824548, 48.83854343940976], [2.393135864976559, 48.838544037843675], [2.392985613938437, 48.83862531708018], [2.392837754151734, 48.83870514050327], [2.392687502184353, 48.83878641935361], [2.392539641484209, 48.838866242396705], [2.392389387235642, 48.83894751995466], [2.392241526984258, 48.8390273426247], [2.3920912717959393, 48.83910862069578], [2.391943410631007, 48.8391884429858], [2.391933322957943, 48.8391904233654], [2.391736781072011, 48.83917641845242], [2.391536933876607, 48.839161251515584], [2.391340392196682, 48.839147246850295], [2.391140545228473, 48.83913207925082], [2.390944005137875, 48.8391180730415], [2.390744158386463, 48.8391029056787], [2.390547617149979, 48.83908889881083], [2.390347770625774, 48.83907373078543], [2.390334168255286, 48.839078463152134], [2.390236056682922, 48.839201003858584], [2.390142608122375, 48.83930912899508], [2.3901323861011172, 48.83933422752939], [2.390155384609402, 48.839341918306154], [2.39022195622502, 48.839369541614225], [2.390393026135464, 48.839440699544575], [2.39055140460487, 48.83950641618037], [2.390722475414311, 48.839577573630876], [2.390880854704484, 48.839643290721725], [2.3910519264234322, 48.83971444679307], [2.391210306544787, 48.8397801634397], [2.391381379152328, 48.83985131993046], [2.39153976010497, 48.839917036132825], [2.39171083362201, 48.83998819124443], [2.391869215405937, 48.84005390700258], [2.39202759895168, 48.84011962255407], [2.392198672437185, 48.84019077694819], [2.392203836896043, 48.840194698320225], [2.392257372477289, 48.84026524457057], [2.392324670973004, 48.84036405836174], [2.392316372118009, 48.840376316759475], [2.392182481186157, 48.84040441156448], [2.39199497721026, 48.8404440495343], [2.391861085931176, 48.84047214397786], [2.3917992241523223, 48.840485221848894], [2.391768095308219, 48.840496872181205]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 2, "roussel_fabien": 25.0, "nb_emargement": 1054.0, "nb_procuration": 67.0, "nb_vote_blanc": 17.0, "jadot_yannick": 97.0, "le_pen_marine": 64.0, "nb_exprime": 1034.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1320.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1054, "quartier_bv": "46", "geo_point_2d": [48.83994082880645, 2.3931106318798787], "melenchon_jean_luc": 317.0, "poutou_philippe": 4.0, "macron_emmanuel": 342.0}, "geometry": {"type": "Point", "coordinates": [2.3931106318798787, 48.83994082880645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5bae6035326d81679b9098ba8af25d72f55246d9", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 78, "zemmour_eric": 76.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "14-40", "geo_shape": {"coordinates": [[[2.34165717176254, 48.826301274889715], [2.341695006491482, 48.82626643805787], [2.341697560205179, 48.82623388299029], [2.34169578680955, 48.82623236407427], [2.3416948111626033, 48.826132283263696], [2.341697030646132, 48.826034394725625], [2.341696998234035, 48.82603361748568], [2.34167884576634, 48.82589969208512], [2.341664854368187, 48.825770754133316], [2.341646703436632, 48.82563682870407], [2.341632712177153, 48.82550789161762], [2.341632687605461, 48.825507680128695], [2.341619464611485, 48.8253749707697], [2.3416054735009952, 48.82524603275067], [2.341592250642647, 48.82511332335775], [2.341578259658415, 48.8249843862048], [2.341565036935692, 48.82485167677794], [2.341551046100228, 48.824722738692465], [2.34153782351313, 48.82459002923167], [2.341523834165838, 48.8244610920198], [2.341510611714358, 48.82432838252509], [2.341496621154009, 48.82419944437317], [2.341482630662756, 48.824070506204805], [2.341469408415206, 48.823937796659365], [2.341455419412101, 48.8238088593646], [2.341442197300163, 48.8236761497853], [2.341442435591812, 48.82367378303347], [2.34147743220532, 48.82355907742757], [2.341514628566742, 48.82343325050248], [2.341549624848621, 48.823318545750155], [2.341586819513596, 48.82319271786889], [2.341621816837196, 48.82307801307839], [2.341659011144908, 48.82295218604702], [2.34169400679772, 48.82283748030404], [2.341731202121609, 48.8227116532308], [2.341766197454061, 48.822596947442136], [2.341767055149507, 48.82259514441055], [2.341842887559166, 48.82245201902956], [2.34192731331781, 48.82232351622406], [2.342003146254472, 48.822180390714394], [2.342087569827827, 48.82205188685788], [2.342158005099263, 48.821957162236984], [2.342242429291475, 48.82182865825311], [2.342312862629421, 48.821733932615395], [2.342397286067095, 48.821605429395994], [2.342467720184115, 48.821510703655754], [2.342483792721902, 48.82149120263124], [2.342476487079033, 48.8214732575957], [2.3425609097027262, 48.82134475333168], [2.342641330115797, 48.821220371339614], [2.342632264303796, 48.82118992963328], [2.342624819291673, 48.82118584688813], [2.342659168408998, 48.82108218873582], [2.342702751179547, 48.82094119406397], [2.342737099992112, 48.82083753496739], [2.342771450030029, 48.82073387585891], [2.34281503084401, 48.82059288109497], [2.342815301144586, 48.82059131855694], [2.342823837242873, 48.82052644185068], [2.342826306695475, 48.82046429289865], [2.3428126220058703, 48.82045506288739], [2.342595890629773, 48.82045578900941], [2.342389376439228, 48.82045590178966], [2.342172643691838, 48.82045662713709], [2.341966129497063, 48.82045673918632], [2.341759613939587, 48.820456850871416], [2.341542882541417, 48.820457575084944], [2.34152957211338, 48.82046488660781], [2.341498265822318, 48.82057345659131], [2.341467739032009, 48.82068198138375], [2.341436432470597, 48.82079055222939], [2.341405905424391, 48.820899076985135], [2.34137459860388, 48.82100764779362], [2.341344071301978, 48.82111617251261], [2.341328133519489, 48.82112336431019], [2.341274444105243, 48.82111661370122], [2.341223198281845, 48.8211088818153], [2.341206953599015, 48.821115461226555], [2.341159886788618, 48.82123941807736], [2.341113065938694, 48.82136232397722], [2.341065998693623, 48.82148627986456], [2.341019177400817, 48.821609185700666], [2.340972109698336, 48.82173314242316], [2.340925287962439, 48.821856048195535], [2.340878219825277, 48.82198000395452], [2.3408313976350152, 48.822102910562435], [2.340784329051796, 48.82222686625723], [2.340737506429902, 48.822349771902076], [2.340690437400724, 48.82247372753271], [2.340643614324449, 48.822596634013124], [2.340596544849102, 48.822720589579596], [2.340549721341186, 48.822843495096905], [2.340502651419765, 48.822967450599165], [2.340455827457452, 48.82309035695208], [2.340408757089953, 48.823214312390114], [2.34036193269609, 48.823337217779944], [2.340314861882505, 48.82346117315377], [2.340268037034129, 48.823584079379145], [2.340221213338377, 48.82370698468093], [2.340174140494416, 48.82383093995108], [2.340127316355629, 48.82395384518908], [2.340080243054177, 48.82407780129438], [2.340033418472347, 48.824200706468595], [2.339986344736265, 48.82432466161037], [2.339939519711388, 48.8244475667208], [2.339892445517699, 48.82457152269767], [2.339887525038397, 48.824584478959046], [2.339875152541124, 48.82461851957626], [2.339885373226222, 48.824629316368465], [2.339955881443016, 48.82469898734529], [2.340064072591172, 48.824804259455725], [2.340100604924876, 48.824840357925375], [2.340207646207988, 48.82494612629643], [2.340315838377427, 48.825051398155914], [2.340422880530449, 48.825157166314426], [2.340531072198891, 48.82526243885122], [2.340638115221828, 48.82536820679722], [2.340746309136316, 48.825473478227714], [2.340853353029182, 48.82557924596116], [2.340961547804739, 48.82568451807646], [2.341068592567541, 48.825790285597336], [2.341176786865058, 48.82589555659129], [2.341283832497802, 48.826001323899625], [2.34139202901847, 48.82610659558587], [2.34149907552117, 48.826212362681694], [2.341607272925867, 48.82631763325408], [2.34165717176254, 48.826301274889715]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 40, "roussel_fabien": 23.0, "nb_emargement": 1272.0, "nb_procuration": 54.0, "nb_vote_blanc": 6.0, "jadot_yannick": 118.0, "le_pen_marine": 63.0, "nb_exprime": 1263.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1590.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1272, "quartier_bv": "54", "geo_point_2d": [48.82313368557708, 2.3412704687284807], "melenchon_jean_luc": 392.0, "poutou_philippe": 5.0, "macron_emmanuel": 435.0}, "geometry": {"type": "Point", "coordinates": [2.3412704687284807, 48.82313368557708]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "07a1cb5c90a415d52f955b28c09772a9dbcf427a", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 17, "zemmour_eric": 37.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-68", "geo_shape": {"coordinates": [[[2.38705292203713, 48.8680307919529], [2.387076413499519, 48.86803620666063], [2.387168466206163, 48.86805884222405], [2.387354213737224, 48.868104529840984], [2.387537173837392, 48.868149517606646], [2.387722922015149, 48.86819520464764], [2.387905882752205, 48.868240191846006], [2.388091632929262, 48.86828587921728], [2.388274594303207, 48.868330865848336], [2.388460343774344, 48.86837655173747], [2.388643305785169, 48.86842153780121], [2.388829057266165, 48.86846722312134], [2.3890120199138662, 48.8685122086178], [2.389197770667817, 48.86855789425431], [2.389380733952493, 48.868602879183435], [2.389566486726744, 48.86864856335166], [2.389749450648286, 48.86869354771349], [2.389960066847799, 48.86874412541851], [2.390143031444762, 48.868789109174806], [2.390353649765547, 48.86883968708913], [2.390536615038031, 48.86888467023992], [2.3907472327641432, 48.868935247450366], [2.390930198712141, 48.86898022999565], [2.390961554667608, 48.86898793859072], [2.390964745369719, 48.86898776236798], [2.390984402303057, 48.868956726420436], [2.391037901526821, 48.868845605760846], [2.391091283707162, 48.86873421556983], [2.391144783848102, 48.86862309394771], [2.391198164208792, 48.868511703679694], [2.391251663882703, 48.86840058288675], [2.391305045149909, 48.868289192555565], [2.391358544377813, 48.8681780707932], [2.391411923825391, 48.86806668038501], [2.391418086216636, 48.86806161067199], [2.391637928410529, 48.86797754656481], [2.39185110173156, 48.86789598969662], [2.39185630449212, 48.86789242597312], [2.39194302882429, 48.86778460782484], [2.39202713899787, 48.86767952020813], [2.392113861248366, 48.86757170280764], [2.392197970733568, 48.86746661505067], [2.392282079879524, 48.86736152722456], [2.392368801072993, 48.8672537096084], [2.39245290953048, 48.86714862164201], [2.392539630015957, 48.867040803881295], [2.392536688694602, 48.86702989256098], [2.392492887296394, 48.86700398242058], [2.392453470554261, 48.866981179253536], [2.39244008684082, 48.86696982820699], [2.392420938681542, 48.86697351092716], [2.392391609305232, 48.86698790255075], [2.392235143703626, 48.8670651797547], [2.39208247179313, 48.867140089174434], [2.39192600527584, 48.86721736596366], [2.391773332474792, 48.867292274978745], [2.391616865041815, 48.86736955135322], [2.391464191350213, 48.867444459963664], [2.391307724364599, 48.86752173593031], [2.391155048419387, 48.86759664412918], [2.390998580518083, 48.867673919681046], [2.390845903682306, 48.86774882747531], [2.390839435508636, 48.867750550963834], [2.390710078076673, 48.86776176919116], [2.390546544514228, 48.86777533410588], [2.390531773354103, 48.86776385797484], [2.390580918078735, 48.86765437990318], [2.390628401357683, 48.867547421384046], [2.390677545675058, 48.867437943251296], [2.390725028558226, 48.86733098467288], [2.390713944349409, 48.867319560603256], [2.390544947390595, 48.86730303729611], [2.390321098432263, 48.86728134104729], [2.390152101722046, 48.867264817184896], [2.389928254454614, 48.86724312020755], [2.389759256629854, 48.86722659578294], [2.389535409690284, 48.86720489807015], [2.389366413477385, 48.86718837309726], [2.389349571800979, 48.86718098723523], [2.389332598390744, 48.8671877464051], [2.389280617720109, 48.867237544693864], [2.389230588319807, 48.86728856882224], [2.389212853541089, 48.86729166287986], [2.389023184986881, 48.867226598016636], [2.388835280126261, 48.86716194655534], [2.388645612505377, 48.867096881985454], [2.388457707218205, 48.86703222991681], [2.388268040551653, 48.86696716384168], [2.388080136200979, 48.8669025111727], [2.387890470478411, 48.866837444491644], [2.387702568427369, 48.8667727912293], [2.387512903638009, 48.86670772484157], [2.387325001160329, 48.86664307097193], [2.387299457725554, 48.86663855053442], [2.387292559254509, 48.86664197408039], [2.387249987549928, 48.866734165099075], [2.3872169794635, 48.866800895290254], [2.387224469534909, 48.86681173021154], [2.387435930359314, 48.866873908408465], [2.387647180413466, 48.86693886770397], [2.387654200486465, 48.86695014986156], [2.387579837725291, 48.867082251982836], [2.387506201373253, 48.86721306181341], [2.387431837861469, 48.86734516381132], [2.38735819941368, 48.8674759726135], [2.38728383515117, 48.86760807448806], [2.3872101973126663, 48.86773888407437], [2.387135832299625, 48.86787098582558], [2.387062192365138, 48.86800179438345], [2.38705292203713, 48.8680307919529]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 68, "roussel_fabien": 21.0, "nb_emargement": 1129.0, "nb_procuration": 54.0, "nb_vote_blanc": 5.0, "jadot_yannick": 91.0, "le_pen_marine": 49.0, "nb_exprime": 1122.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 10, "nb_inscrit": 1504.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1132, "quartier_bv": "79", "geo_point_2d": [48.86784425814443, 2.389537392693086], "melenchon_jean_luc": 639.0, "poutou_philippe": 7.0, "macron_emmanuel": 218.0}, "geometry": {"type": "Point", "coordinates": [2.389537392693086, 48.86784425814443]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8eab8ecce41fabe3ad104536ab4a9b8f91d5137e", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 98, "zemmour_eric": 111.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "6-18", "geo_shape": {"coordinates": [[[2.323962774471304, 48.84390329583252], [2.323985814671428, 48.84394185316106], [2.324090227647832, 48.844053483115076], [2.324195748025467, 48.844166334260656], [2.324300161901253, 48.84427796400897], [2.324405683187861, 48.84439081494669], [2.324510099325582, 48.84450244449702], [2.324615621521277, 48.84461529522683], [2.324720037207514, 48.84472692366445], [2.324825560300753, 48.84483977508568], [2.324929976886399, 48.844951403317594], [2.325035500888645, 48.845064254530925], [2.32513991973627, 48.845175882564824], [2.325245444647742, 48.845288733570264], [2.325349863032137, 48.84540036139076], [2.325455388864377, 48.84551321128901], [2.325559808136673, 48.84562483980308], [2.325665334877948, 48.84573768949342], [2.325665375498855, 48.84574781924191], [2.325678815703179, 48.84575484617039], [2.32578931571844, 48.84586481882632], [2.325900047273509, 48.845974625389964], [2.3260105468591172, 48.846084597812215], [2.326121280698144, 48.846194405056416], [2.326231781228214, 48.84630437635332], [2.326342514637875, 48.8464141833634], [2.326453017451655, 48.84652415534127], [2.326563751794445, 48.84663396212497], [2.326674255552807, 48.84674393297752], [2.326784990828635, 48.84685373953478], [2.32679756608563, 48.846857713525004], [2.326923469176424, 48.8468504625648], [2.327068509201496, 48.84684177311144], [2.327079784072552, 48.846836386398536], [2.327140184154069, 48.846744197103625], [2.327202037600563, 48.84664971627739], [2.327262438612069, 48.846557526912974], [2.327324291615273, 48.846463046007656], [2.327342283216731, 48.846458379649874], [2.327532703851347, 48.84651362318571], [2.327719423432357, 48.84656773850202], [2.327909844866331, 48.846622981432205], [2.328096565230767, 48.84667709615462], [2.328286987464096, 48.846732338479065], [2.328473708611854, 48.84678645260758], [2.328664131644532, 48.84684169432635], [2.328850853575811, 48.8468958078609], [2.3288529187712372, 48.84689627991925], [2.329025601857736, 48.846925590082066], [2.329241439518669, 48.84696244835967], [2.329414123043027, 48.846991757959984], [2.329629962615389, 48.84702861554214], [2.329802646577499, 48.847057924579914], [2.329893866082279, 48.847073501638036], [2.329924922074566, 48.84707707426628], [2.3299320905334753, 48.847059106510166], [2.329927132955916, 48.84692113114784], [2.329922730514066, 48.84678661422312], [2.329917772987211, 48.84664863882668], [2.329913370592437, 48.84651412186869], [2.32990896957152, 48.84637960580127], [2.329904010757224, 48.8462416303462], [2.329898855106217, 48.84623479599911], [2.329760199697345, 48.846162243032026], [2.329595621543107, 48.84607686453503], [2.32945696835082, 48.8460043103146], [2.329292391180416, 48.84591893228767], [2.329153738830456, 48.845846377705506], [2.328989162667232, 48.84576099835009], [2.328850511147913, 48.845688444305544], [2.328794221488201, 48.84565924189434], [2.328775845315838, 48.8456487286767], [2.328770093116251, 48.84564897610502], [2.328661806293006, 48.84559279870152], [2.328575295223453, 48.845547586121945], [2.32857165597349, 48.84554470122835], [2.328482211303552, 48.845432440834074], [2.328393193439494, 48.84532060995272], [2.328303749538564, 48.84520834940248], [2.328214732428715, 48.84509651926513], [2.328125289296682, 48.84498425855889], [2.328036272964115, 48.84487242736698], [2.327946830601174, 48.8447601665048], [2.327857815022589, 48.844648336056935], [2.327768373428629, 48.84453607503875], [2.327679358627415, 48.84442424353631], [2.327589917802325, 48.844311982362136], [2.327500903755172, 48.84420015160377], [2.327411463699146, 48.84408789027366], [2.327322450429148, 48.843976058460704], [2.327233011142078, 48.84386379697462], [2.327143998626217, 48.84375196590574], [2.327054985129828, 48.843640134751766], [2.326965548357761, 48.84352787303958], [2.326876535638622, 48.843416040831094], [2.326787099635583, 48.84330377896291], [2.3266980876703522, 48.84319194749849], [2.326608652436229, 48.84307968547433], [2.32655977385956, 48.84300703486323], [2.326555510826873, 48.843007630527], [2.326497181149885, 48.84302695506417], [2.3264340217490522, 48.84304770395375], [2.326426182438248, 48.84304857716645], [2.326391526530743, 48.843063022786446], [2.32627111075284, 48.84310258135867], [2.326111268243301, 48.84315701445225], [2.325927692216034, 48.843217322257416], [2.32576784899593, 48.84327175488655], [2.325584272178774, 48.843332061259254], [2.325424428248107, 48.84338649342393], [2.32526458398356, 48.84344092537239], [2.325081005976564, 48.84350123186298], [2.324921161001452, 48.84355566334697], [2.324737582192934, 48.843615969304366], [2.324713524963893, 48.84361706743699], [2.324673581380932, 48.84364349641682], [2.324490001988217, 48.843703801090264], [2.324318742392551, 48.84376129889798], [2.324135162162654, 48.84382160391984], [2.323963900425999, 48.84387910120582], [2.323962774471304, 48.84390329583252]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 18, "roussel_fabien": 9.0, "nb_emargement": 873.0, "nb_procuration": 62.0, "nb_vote_blanc": 10.0, "jadot_yannick": 56.0, "le_pen_marine": 40.0, "nb_exprime": 860.0, "nb_vote_nul": 3.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1033.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 873, "quartier_bv": "23", "geo_point_2d": [48.845136131017306, 2.3268797656336044], "melenchon_jean_luc": 112.0, "poutou_philippe": 3.0, "macron_emmanuel": 395.0}, "geometry": {"type": "Point", "coordinates": [2.3268797656336044, 48.845136131017306]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "252d7da3f28c6c65f94c37a9ca1fbcf242221a3c", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 44, "zemmour_eric": 68.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-35", "geo_shape": {"coordinates": [[[2.351055376122695, 48.87536582589609], [2.351054256094054, 48.87534213311179], [2.35103552714582, 48.875280825463385], [2.351019820738741, 48.87521253106431], [2.351028704370954, 48.87520271530694], [2.351199675580812, 48.87516233287193], [2.3513920716767682, 48.87511786458286], [2.3515630423374683, 48.87507748072646], [2.351755437809762, 48.875033011849986], [2.351926407899109, 48.8749926283708], [2.352118804122267, 48.87494815801504], [2.352289773651249, 48.87490777401376], [2.352482167876202, 48.874863303962435], [2.352653136845021, 48.874822919439126], [2.352845530457473, 48.87477844790114], [2.353016498865917, 48.874738062855755], [2.353062818580231, 48.87472735658058], [2.353089850137819, 48.87471489756868], [2.3530883172503643, 48.87470011228875], [2.353024691037632, 48.874576758084935], [2.35295761600489, 48.874446796650076], [2.352893989047911, 48.87432344234116], [2.352826914656326, 48.874193481702534], [2.352763289692718, 48.87407012640386], [2.352696215953549, 48.87394016566214], [2.352632591608903, 48.87381681026571], [2.352565517158731, 48.87368684941358], [2.352501893421862, 48.87356349481865], [2.352452498020965, 48.87346778453659], [2.352451057716208, 48.87345872941031], [2.352439959964908, 48.873449948499484], [2.352422282956722, 48.87341569693205], [2.352397966165273, 48.87337115339398], [2.352380732938059, 48.87336568931536], [2.352189335735806, 48.87340881112731], [2.352000893674964, 48.87345042515299], [2.351809495846884, 48.873493546354304], [2.351621051812713, 48.8735351597715], [2.351429653358811, 48.87357828036216], [2.35124120871462, 48.87361989317818], [2.351049809634902, 48.873663013158236], [2.350861365744006, 48.873704625380434], [2.350669966027268, 48.87374774564912], [2.350481520174265, 48.87378935636353], [2.350474899478793, 48.87378969366392], [2.350267416906599, 48.87376634323068], [2.350058263517264, 48.8737426245287], [2.349850779956038, 48.87371927336488], [2.349641628319977, 48.873695553042104], [2.349434145133043, 48.87367220115512], [2.3492249938645022, 48.87364848100267], [2.34901751105187, 48.87362512839256], [2.348808358810021, 48.87360140660443], [2.348600876360557, 48.87357805417042], [2.348391725860688, 48.87355433166076], [2.3481842437967932, 48.87353097760438], [2.347975093675712, 48.873507254365755], [2.347914368107593, 48.87350982933587], [2.347909518882458, 48.873533218978295], [2.347909375968846, 48.87366181000957], [2.347909402355624, 48.87377992736307], [2.347909428753779, 48.87389804380466], [2.347909285838943, 48.874026634793495], [2.347909403273404, 48.87402781806188], [2.347932596796547, 48.87415363579636], [2.347960294919112, 48.87429210024595], [2.347983488671614, 48.87441791883969], [2.348011187070011, 48.874556383244354], [2.34803438107439, 48.874682200898846], [2.348062081111857, 48.874820665265936], [2.348085273993622, 48.87494648287301], [2.348112974306935, 48.8750849471952], [2.348136167418065, 48.87521076566155], [2.348163868007227, 48.87534922993877], [2.348187061370237, 48.87547504746581], [2.3482147622352523, 48.87561351169811], [2.348237955838888, 48.87573932918515], [2.34824794537053, 48.875789258048336], [2.348264600907194, 48.87581433228072], [2.348307299063864, 48.87581230380744], [2.348520697779183, 48.87586641646166], [2.348729915410953, 48.87590863295224], [2.348738409661194, 48.8759085208816], [2.348935441590148, 48.875863015153], [2.349124494402221, 48.87581816000363], [2.349313545525407, 48.87577330454645], [2.349510576440249, 48.87572779786565], [2.349699628266209, 48.875682941802495], [2.349896658501994, 48.87563743448245], [2.35008570966746, 48.87559257780596], [2.350282739212862, 48.875547070746045], [2.350471788365689, 48.87550221254942], [2.350668818595282, 48.875456704857775], [2.350857867076392, 48.87541184694705], [2.3510548952746673, 48.87536633770958], [2.351055376122695, 48.87536582589609]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 35, "roussel_fabien": 14.0, "nb_emargement": 1132.0, "nb_procuration": 86.0, "nb_vote_blanc": 5.0, "jadot_yannick": 115.0, "le_pen_marine": 48.0, "nb_exprime": 1120.0, "nb_vote_nul": 6.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1404.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1131, "quartier_bv": "38", "geo_point_2d": [48.874543094305636, 2.350183249539021], "melenchon_jean_luc": 328.0, "poutou_philippe": 9.0, "macron_emmanuel": 443.0}, "geometry": {"type": "Point", "coordinates": [2.350183249539021, 48.874543094305636]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6c9c469527d9d59d1e83b1b6feb1a57409986328", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 64, "zemmour_eric": 68.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-53", "geo_shape": {"coordinates": [[[2.371177052195169, 48.84936806480326], [2.371204300505971, 48.84934409449698], [2.371370287214822, 48.84926357687399], [2.371535930254896, 48.84918292500714], [2.371701915937898, 48.849102406912436], [2.371867557963376, 48.8490217536755], [2.372033542620633, 48.84894123510907], [2.372199183620571, 48.848860581401375], [2.3723651672520862, 48.84878006236321], [2.372530807226384, 48.84869940818474], [2.372572452676343, 48.8486792058172], [2.372592042898785, 48.848679679983874], [2.37261512798118, 48.848659370376375], [2.372739463666901, 48.848599054080736], [2.372895712513065, 48.848521867534494], [2.373061693989553, 48.84844134750556], [2.373217943237336, 48.848364161434006], [2.373383922351001, 48.8482836409395], [2.373540170659489, 48.84820645353691], [2.37370615013563, 48.848125932591124], [2.3738623961205603, 48.848048745648946], [2.373870566812814, 48.848037070698986], [2.373846800817817, 48.84801941427204], [2.373717694162452, 48.84792552833927], [2.373584468854845, 48.84782889474347], [2.373455361781445, 48.847735008504415], [2.373322137447323, 48.84763837460003], [2.373193032691967, 48.84754448716967], [2.373059809320505, 48.84744785385592], [2.372930704147112, 48.847353966119265], [2.37279748175994, 48.84725733159762], [2.372668377520312, 48.847163444461145], [2.372535156106604, 48.84706680963088], [2.372406054174064, 48.84697292220238], [2.372272833733808, 48.84687628706348], [2.37214373138332, 48.846782399328795], [2.372010511916514, 48.84668576388126], [2.371987355816971, 48.84668929102376], [2.371937739976611, 48.84680120290833], [2.371888100559592, 48.84691211365383], [2.371838485645725, 48.84702402638134], [2.371788845805231, 48.84713493706351], [2.371739230476925, 48.84724684882815], [2.371689590212953, 48.84735775944693], [2.371639974448521, 48.84746967204735], [2.371590333761062, 48.847580582602795], [2.371568000848826, 48.84758462931869], [2.371410322416613, 48.8474881409023], [2.37125508139726, 48.84739410862868], [2.371097405483478, 48.84729761979059], [2.370942165596168, 48.84720358709486], [2.37078449083828, 48.847107097827845], [2.370629252083109, 48.84701306471002], [2.370471578480905, 48.84691657501415], [2.37031634086883, 48.84682254057495], [2.370158667059802, 48.84672605044298], [2.370003430568987, 48.846632016480996], [2.36998909960556, 48.84663030778196], [2.369899162925082, 48.8466543623232], [2.369755582528949, 48.846693017686135], [2.369739275253223, 48.84668323220825], [2.3697029617851992, 48.84668433327806], [2.369603651905782, 48.84675709598514], [2.369531435564856, 48.846806448113604], [2.369524422319572, 48.846809003103374], [2.369337272442168, 48.84683482205687], [2.369147518400832, 48.846860745701484], [2.3689603681507903, 48.846886564064164], [2.368770612370963, 48.84691248710261], [2.368583461748492, 48.8469383048745], [2.3683937069553043, 48.84696422732114], [2.368206555960309, 48.846990044502306], [2.368016799428745, 48.847015966342724], [2.368006057892662, 48.84702356942835], [2.367976252727723, 48.84716924188093], [2.3679456685748193, 48.84731385074968], [2.367915863085968, 48.847459522249935], [2.367885278584227, 48.847604131964914], [2.367855472760549, 48.847749803412164], [2.367824887931678, 48.84789441217467], [2.367817476783268, 48.847901216220066], [2.367666814087864, 48.8479508289705], [2.367454662221066, 48.84801713497909], [2.367303998845033, 48.84806674726748], [2.367091847418281, 48.84813305173371], [2.366941183361826, 48.84818266356005], [2.366884943737877, 48.84818742574707], [2.366881820843543, 48.84821498259556], [2.36692193375182, 48.84830414481806], [2.36696965983533, 48.84840949794386], [2.367025483455634, 48.848533580706125], [2.367073211332185, 48.84863893287683], [2.367129035444821, 48.84876301556523], [2.367176762378182, 48.84886836766571], [2.367191056222446, 48.8488883262316], [2.367245971384638, 48.84887856456993], [2.367466428596544, 48.8488578525573], [2.367682475138832, 48.84883742350898], [2.367898522874392, 48.84881699407734], [2.368118978192901, 48.84879628175327], [2.368122409946961, 48.84879624771498], [2.368322321813713, 48.84881096456993], [2.368519460041297, 48.84882618088233], [2.368719372124106, 48.84884089797277], [2.368916510580754, 48.84885611363053], [2.36911364915252, 48.84887132896333], [2.369313561576322, 48.848886045060354], [2.369510700377341, 48.84890125973849], [2.369710613038958, 48.84891597427241], [2.369907752058142, 48.848931189195206], [2.370107664946682, 48.848945903065314], [2.370304805568637, 48.84896111644136], [2.370504717310557, 48.848975830539764], [2.370512368741709, 48.84897811109181], [2.370668893907423, 48.84907193508694], [2.370815173276942, 48.84916022521337], [2.370961454504795, 48.849248515161115], [2.371117979917711, 48.84934233943809], [2.371159401203739, 48.849367339785886], [2.371177052195169, 48.84936806480326]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 53, "roussel_fabien": 16.0, "nb_emargement": 1327.0, "nb_procuration": 0.0, "nb_vote_blanc": 11.0, "jadot_yannick": 137.0, "le_pen_marine": 51.0, "nb_exprime": 1311.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1641.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1329, "quartier_bv": "48", "geo_point_2d": [48.84799260648645, 2.3703138394823875], "melenchon_jean_luc": 403.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}, "geometry": {"type": "Point", "coordinates": [2.3703138394823875, 48.84799260648645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1883b0ae5f83161c020f9bfc449e8969d23d6b87", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 65, "zemmour_eric": 106.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "4-7", "geo_shape": {"coordinates": [[[2.36809244888894, 48.850876192765675], [2.368020765178399, 48.850890363909706], [2.367828136823684, 48.85087695049496], [2.367642041655381, 48.85086399219629], [2.367449413484824, 48.8508505790708], [2.36726331986749, 48.85083762019002], [2.367077224969177, 48.85082466191173], [2.36688459710032, 48.85081124697719], [2.366873323807384, 48.85080555916376], [2.366804918729574, 48.85068929555343], [2.36673624021316, 48.850572569074004], [2.366667835747036, 48.85045630536097], [2.366599159196515, 48.85033957968495], [2.366530753979366, 48.85022331586195], [2.366462078053984, 48.85010658918355], [2.366393674811203, 48.84999032526505], [2.366324999499818, 48.84987359848351], [2.366256595495074, 48.84975733535441], [2.366187920797781, 48.84964060846973], [2.36617185227676, 48.84963514879827], [2.366001958391675, 48.84966372772887], [2.365842759267643, 48.8496905068347], [2.365683561342575, 48.849717285735345], [2.365513666921927, 48.84974586397043], [2.365354468658739, 48.84977264243186], [2.365184573877143, 48.84980122019829], [2.365177266957045, 48.849815526148596], [2.365286425989006, 48.8499062737551], [2.365392509444269, 48.84999446516031], [2.365501669225883, 48.85008521255583], [2.365607754783327, 48.85017340286395], [2.365716915314602, 48.8502641500485], [2.365823000237889, 48.85035234014436], [2.365932161518827, 48.85044308711799], [2.366038247170759, 48.85053127700882], [2.366039616301593, 48.8505326584774], [2.366123170584889, 48.85063672751887], [2.366223983618526, 48.85076229165166], [2.366307538638214, 48.850866360542916], [2.366408352560348, 48.85099192449446], [2.366491908316434, 48.85109599323548], [2.3665927231270762, 48.85122155700581], [2.366676279619569, 48.851325625596544], [2.366777095318729, 48.85145118918562], [2.36686065254764, 48.851555257626124], [2.3668455722279242, 48.85156823554526], [2.366657311932235, 48.851539814276556], [2.3664713262559163, 48.851511736615294], [2.366283066368362, 48.85148331475634], [2.366097081106288, 48.851455235612626], [2.365908821626982, 48.85142681316335], [2.365722836757283, 48.851398734335795], [2.3655345776863292, 48.85137031129628], [2.365348591857222, 48.85134223187832], [2.365160333194427, 48.851313808248555], [2.364974349142332, 48.851285727355375], [2.364786090876944, 48.8512573040346], [2.364600107228088, 48.85122922255831], [2.364411849381935, 48.851200797747985], [2.364225866125457, 48.85117271658785], [2.364037608687584, 48.851144291187246], [2.363851624471833, 48.85111620943674], [2.363663367442248, 48.85108778344584], [2.3634773850034563, 48.85105970022015], [2.36328912837118, 48.85103127453834], [2.363103146335755, 48.85100319072948], [2.363091771435805, 48.851004842550886], [2.362978117789775, 48.851062830456996], [2.36286893721441, 48.85111853522809], [2.362759757768343, 48.85117423990404], [2.362646103394492, 48.85123222658667], [2.362634414129394, 48.85124074506064], [2.362638241119477, 48.85124974730053], [2.362651569859221, 48.85126328703434], [2.362652169452773, 48.85126384692871], [2.362803947543067, 48.851397132933684], [2.362951138037277, 48.85152427419463], [2.362958011687034, 48.85152741985941], [2.363152477310425, 48.85156634127686], [2.363348257833871, 48.85160552568775], [2.363542724051201, 48.85164444556895], [2.363738505161638, 48.851683629338574], [2.363747552808066, 48.85168954393741], [2.363803274747726, 48.85180676974467], [2.363858955747752, 48.851923908956714], [2.363914676825893, 48.85204113468017], [2.363970358315696, 48.85215827471496], [2.364026081268788, 48.852275499469805], [2.364081763259559, 48.85239263942806], [2.364137485340157, 48.85250986499835], [2.364193167842773, 48.8526270039808], [2.364201397509324, 48.85263273612063], [2.364368421324969, 48.85267396311091], [2.364535252455274, 48.8527151429748], [2.364702278150992, 48.852756370402496], [2.364869109819827, 48.85279754889857], [2.365036136043825, 48.85283877585722], [2.365202966866697, 48.85287995477682], [2.365369993629926, 48.852921180367105], [2.365536826343123, 48.85296235882536], [2.365544580013804, 48.85296724205496], [2.365619065107057, 48.85308203286549], [2.365691666957772, 48.85319392311318], [2.365764270482957, 48.85330581331276], [2.365838755181359, 48.853420603944365], [2.36584570846116, 48.853437286011754], [2.365847935686113, 48.85343804247961], [2.365874884880621, 48.85343264529252], [2.366011553077135, 48.85341131468662], [2.366150699759777, 48.85338990621957], [2.366287369105107, 48.853368574405735], [2.366426515560298, 48.85334716561715], [2.366427596623847, 48.85334702654567], [2.366599027348343, 48.85332976723404], [2.366799657158401, 48.853309568427555], [2.366971087636426, 48.853292308582276], [2.367171717169055, 48.853272108251964], [2.367305645213191, 48.85325862381709], [2.367506274486427, 48.85323842292525], [2.367640202357407, 48.85322493811553], [2.367641283404268, 48.85322479993232], [2.367811156048731, 48.85319829070482], [2.367981074941259, 48.85317177428585], [2.368150948613573, 48.85314526368256], [2.368320865797498, 48.853118746772594], [2.368490739113268, 48.85309223658493], [2.368660657314037, 48.85306571919837], [2.368830528921294, 48.85303920851986], [2.369000446776227, 48.85301269064956], [2.369074993844418, 48.85300244891157], [2.369074958335598, 48.85299491394888], [2.369045098000452, 48.85293058768825], [2.368984742905408, 48.85280021132486], [2.368927305825765, 48.85267648213203], [2.368866951319756, 48.85254610567943], [2.368809516162543, 48.85242237640899], [2.368749162245556, 48.85229199986716], [2.368691727648102, 48.85216827051188], [2.3686313743201293, 48.8520378938809], [2.368573940282425, 48.85191416444077], [2.368513586180719, 48.85178378771342], [2.368456152702761, 48.851660058188486], [2.368395800552896, 48.85152968137912], [2.368338367634673, 48.8514059517694], [2.368278016084597, 48.8512755739715], [2.368220583715197, 48.85115184517632], [2.368160231391387, 48.85102146728207], [2.368102799581707, 48.850897738402075], [2.36809303155216, 48.850876692286505], [2.36809244888894, 48.850876192765675]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 7, "roussel_fabien": 17.0, "nb_emargement": 1082.0, "nb_procuration": 81.0, "nb_vote_blanc": 16.0, "jadot_yannick": 89.0, "le_pen_marine": 61.0, "nb_exprime": 1063.0, "nb_vote_nul": 3.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1329.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1082, "quartier_bv": "15", "geo_point_2d": [48.851924589512045, 2.366291692581843], "melenchon_jean_luc": 192.0, "poutou_philippe": 6.0, "macron_emmanuel": 458.0}, "geometry": {"type": "Point", "coordinates": [2.366291692581843, 48.851924589512045]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d18a457dd37f122e0581829f6ad06626f6f4b1cc", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 44, "zemmour_eric": 46.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-20", "geo_shape": {"coordinates": [[[2.346941628254585, 48.883418069010865], [2.346927708826154, 48.883449449843866], [2.346952656714841, 48.88356882985647], [2.346977556249532, 48.88368696401507], [2.347002504354998, 48.883806344890786], [2.347027404116435, 48.88392447901348], [2.347052353824715, 48.884043858961185], [2.347077253801527, 48.8841619939473], [2.347102202374394, 48.884281373851394], [2.34712710258913, 48.88439950790234], [2.347152052753555, 48.88451888777768], [2.347176953183674, 48.88463702269203], [2.347201902212678, 48.8847564025238], [2.347226802880626, 48.884874536502934], [2.347224105830207, 48.8848812577698], [2.347079223506403, 48.88500548883451], [2.346931095689711, 48.88512715871032], [2.34692888707099, 48.88513581439087], [2.346985545364607, 48.885240413137716], [2.347035327121142, 48.88534574956581], [2.3470919858457, 48.88545034914156], [2.347141769393232, 48.88555568461347], [2.347198428560014, 48.885660284118906], [2.347248211159833, 48.88576561951895], [2.347236741486965, 48.885777230264296], [2.34702976599314, 48.88579282918064], [2.346823808649689, 48.8858083514552], [2.346616832919761, 48.88582394875805], [2.346410875330144, 48.885839470321905], [2.346203900705189, 48.885855067817204], [2.345997942880711, 48.88587058777103], [2.345790966644766, 48.885886184544674], [2.345585008574154, 48.88590170378776], [2.345378032090859, 48.88591729984715], [2.345172073774121, 48.8859328183795], [2.345159986379739, 48.88594167540363], [2.345158444773214, 48.886059058040864], [2.345156999473999, 48.886169107174474], [2.345155554157367, 48.886279157196306], [2.345154013894502, 48.88639653980491], [2.345153553443617, 48.88643152742378], [2.345191871179961, 48.886442687197], [2.345204542078206, 48.88644014214675], [2.345381883036656, 48.88647597158497], [2.34558280257711, 48.886513994487295], [2.345760144036036, 48.88654982426209], [2.345961064137537, 48.88658784652718], [2.346138406119635, 48.88662367484004], [2.346339328145925, 48.88666169647524], [2.346516670639684, 48.88669752422549], [2.346717591863559, 48.88673554521594], [2.346894934869075, 48.88677137240355], [2.347095856653973, 48.886809392756696], [2.347273200171342, 48.88684521938164], [2.347474123881014, 48.88688323910496], [2.34765146789876, 48.886919066066476], [2.347687835557719, 48.88692637338134], [2.347698193773999, 48.88692119932696], [2.347682916607794, 48.88685125907967], [2.347663826924663, 48.88676386909673], [2.347635113225543, 48.88663241899442], [2.347616025066507, 48.88654502899389], [2.347621883900881, 48.886536296073196], [2.347796311587811, 48.886458531811826], [2.34796932214119, 48.88638139809882], [2.3481437474156213, 48.88630363421222], [2.348316758303361, 48.88622649999374], [2.348491182551252, 48.88614873469074], [2.348664192409811, 48.88607159995936], [2.348838615620007, 48.88599383413931], [2.349011624449186, 48.88591669889507], [2.349186046621688, 48.885838932557924], [2.34935905442169, 48.88576179680078], [2.349532060345526, 48.88568466078083], [2.349706482315999, 48.88560689457577], [2.34974956021165, 48.88559016451523], [2.349744998697582, 48.88558055200829], [2.349645435822591, 48.88546862229655], [2.349536151711954, 48.88534719133593], [2.349534246599063, 48.88534282823841], [2.349535530290437, 48.88533110977356], [2.349520969178908, 48.885317002947545], [2.349516066477209, 48.88518864309201], [2.349513012255575, 48.885065360079224], [2.349508109585948, 48.88493700109325], [2.34950505676151, 48.884813718059476], [2.349500154146417, 48.884685358144516], [2.349497099992073, 48.884562075074925], [2.349492197409049, 48.88443371602958], [2.349489144651787, 48.88431043293892], [2.349486090556628, 48.88418714892771], [2.349481188036037, 48.884058789838136], [2.34947813396334, 48.88393550669776], [2.349473231497285, 48.883807146679224], [2.349473420884013, 48.88380541290205], [2.34947786916821, 48.883788159156985], [2.349486606162556, 48.883766316053354], [2.349492552366671, 48.88373099842288], [2.349443078326057, 48.88371951766867], [2.349237088109658, 48.88369517662513], [2.34903348974391, 48.883669975880814], [2.348827499914926, 48.883645634131504], [2.348623901941083, 48.88362043268956], [2.348417912499523, 48.883596090234505], [2.348214314917491, 48.88357088809493], [2.34800832586347, 48.88354654493408], [2.347804728673362, 48.883521342096884], [2.347598740006786, 48.88349699823027], [2.34739514320861, 48.883471794695446], [2.347191546607609, 48.883446590813826], [2.346985558523258, 48.8834222458906], [2.346941628254585, 48.883418069010865]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 20, "roussel_fabien": 38.0, "nb_emargement": 1394.0, "nb_procuration": 89.0, "nb_vote_blanc": 17.0, "jadot_yannick": 159.0, "le_pen_marine": 46.0, "nb_exprime": 1370.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1768.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1394, "quartier_bv": "70", "geo_point_2d": [48.88518918133008, 2.3478272204130333], "melenchon_jean_luc": 564.0, "poutou_philippe": 10.0, "macron_emmanuel": 381.0}, "geometry": {"type": "Point", "coordinates": [2.3478272204130333, 48.88518918133008]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5796ea5b0302d85911af620dcafa6ed80b454eee", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 103, "zemmour_eric": 104.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-57", "geo_shape": {"coordinates": [[[2.295844056095913, 48.8392611750742], [2.295857468451068, 48.83924584241115], [2.295989623926685, 48.839152651324476], [2.296133429577786, 48.83905128230878], [2.296265584066612, 48.83895809090098], [2.296409388656381, 48.83885672063662], [2.296541542158622, 48.83876352890772], [2.2966853456749208, 48.83866215829397], [2.296817496828101, 48.83856896623599], [2.296961299270939, 48.838467595272824], [2.297093450799733, 48.83837440290177], [2.297237252169118, 48.83827303158924], [2.2973694027113503, 48.838179838897084], [2.29751320300729, 48.83807846723515], [2.297605980923968, 48.83801303957185], [2.297612924436276, 48.83801239952002], [2.297627050559336, 48.83799560036523], [2.2976664221858583, 48.83796783410862], [2.297713709068964, 48.83793586118258], [2.297712794641892, 48.83792273218419], [2.297542023481288, 48.837826707230015], [2.297372336502836, 48.83773085387298], [2.297371401136223, 48.837717768815324], [2.297503824262466, 48.83762737818305], [2.297636748927553, 48.837537042508096], [2.297769171134512, 48.83744665156746], [2.297902093516508, 48.83735631557507], [2.298034514804293, 48.83726592432608], [2.298167437627805, 48.83717558803218], [2.29829985799632, 48.83708519647485], [2.298432778536764, 48.836994859863495], [2.298432602730246, 48.83698221096069], [2.298260666056851, 48.83686956600016], [2.29808265538778, 48.83675558374156], [2.298081052580257, 48.8367504685985], [2.298055558935102, 48.83674207444617], [2.2980549325263, 48.83674164716571], [2.297932354055917, 48.83665204097445], [2.297813005750235, 48.836565003332026], [2.297690428099012, 48.836475397778], [2.297571079239511, 48.83638835987246], [2.2974517321408, 48.836301321849], [2.297329155730681, 48.83621171590369], [2.297327849309713, 48.83621059480529], [2.297232630234325, 48.836114028225374], [2.297135351059144, 48.83601487185028], [2.297040132697895, 48.83591830510025], [2.296942854242022, 48.83581914945057], [2.296847636594907, 48.835722582530394], [2.296750358870459, 48.83562342670679], [2.296732961908594, 48.835614887397696], [2.296712468817709, 48.83562458176734], [2.296579465205828, 48.83570536114267], [2.296423378128498, 48.83580027044835], [2.296290373620336, 48.83588104948955], [2.296134286852772, 48.83597595841111], [2.296001281460577, 48.83605673621884], [2.295845192266099, 48.836151645639546], [2.295712185977619, 48.836232423113145], [2.295556097093001, 48.8363273321497], [2.295423089908231, 48.83640810928913], [2.29526699860882, 48.83650301792553], [2.295133990527651, 48.836583794730785], [2.295135005617339, 48.83659759079704], [2.295307547179195, 48.8366835756847], [2.295482894301725, 48.836771089582996], [2.295655437023905, 48.836857073056215], [2.29583078395191, 48.83694458642301], [2.296003327822154, 48.837030569381064], [2.296178677280217, 48.83711808223225], [2.296174611798959, 48.83713382160972], [2.295970825432871, 48.83717685256701], [2.295774270556237, 48.8372182673101], [2.295570483517356, 48.837261298481366], [2.295373928004209, 48.83730271256352], [2.295170140316845, 48.837345742150205], [2.294973584167196, 48.83738715557138], [2.294769795819207, 48.83743018447277], [2.294573239033062, 48.83747159723296], [2.294550564852667, 48.8374766645804], [2.2945472972084078, 48.83748324580173], [2.294587436956841, 48.83757348090202], [2.29462554937055, 48.837658794353445], [2.294665689389636, 48.83774902941333], [2.294703802047715, 48.8378343437257], [2.2947033817569142, 48.83784023213365], [2.294640642750565, 48.83794359843904], [2.2945798140598432, 48.83804290811072], [2.294569917725604, 48.83805907621374], [2.294580918423576, 48.83806731368007], [2.294610061394989, 48.83817936018714], [2.294640533415726, 48.838288146196014], [2.2946696766388612, 48.83840019266644], [2.294700148913121, 48.838508978638615], [2.294702733369776, 48.83851281530629], [2.294767727435203, 48.8385687796597], [2.294837811860973, 48.838628064782014], [2.294839159488571, 48.83862906113547], [2.294963249837209, 48.838708179993674], [2.2951237076728193, 48.838811078345366], [2.29524780026126, 48.838890196004236], [2.2954082592190392, 48.83899309395749], [2.295532352672636, 48.8390722113083], [2.295692811390091, 48.83917510885511], [2.295816905709051, 48.83925422589779], [2.295817655887236, 48.83925467010624], [2.295844056095913, 48.8392611750742]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 57, "roussel_fabien": 18.0, "nb_emargement": 1284.0, "nb_procuration": 65.0, "nb_vote_blanc": 22.0, "jadot_yannick": 102.0, "le_pen_marine": 67.0, "nb_exprime": 1258.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1567.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1283, "quartier_bv": "57", "geo_point_2d": [48.83746975123956, 2.29633622282218], "melenchon_jean_luc": 203.0, "poutou_philippe": 1.0, "macron_emmanuel": 607.0}, "geometry": {"type": "Point", "coordinates": [2.29633622282218, 48.83746975123956]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "df5e8259fd7cd529102def409a6180e261da7bfa", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 209, "zemmour_eric": 219.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-22", "geo_shape": {"coordinates": [[[2.268915618631627, 48.85325364741423], [2.268905703565616, 48.8532506567105], [2.268792180947835, 48.85309522594823], [2.268686901271922, 48.85295311552614], [2.268677511086723, 48.852948271726234], [2.268540905665278, 48.85292897459479], [2.268401996234107, 48.852908188264394], [2.268392825456854, 48.852903444713206], [2.268331110558964, 48.85282286758988], [2.268213118505851, 48.85266738189074], [2.268151405528171, 48.85258680466597], [2.268138061332833, 48.85258190156151], [2.2679266930818, 48.85259403600274], [2.2677168282865, 48.852606533621355], [2.267505459850106, 48.852618666418905], [2.267295593491942, 48.85263116329012], [2.267084224844921, 48.85264329624256], [2.2668743596618413, 48.85265579148374], [2.266662990816844, 48.85266792369182], [2.266453124070928, 48.85268041818556], [2.266440728087908, 48.85267661253112], [2.266309622076115, 48.8525527677296], [2.2661977272277, 48.85244498629547], [2.2661952765821, 48.852439585879736], [2.266200765611205, 48.85230935938094], [2.266209113252506, 48.85215459238321], [2.266214603592304, 48.8520243649595], [2.266222951146851, 48.85186959792116], [2.266217751514322, 48.851867599125065], [2.2661793911911188, 48.85186592937954], [2.266065921090349, 48.85196299961828], [2.265937496949761, 48.8520712443261], [2.265824025963974, 48.85216831341824], [2.265695599439497, 48.852276558737366], [2.265582127556016, 48.852373627582146], [2.2654537000230333, 48.85248187262163], [2.265340228604594, 48.85257894122755], [2.265211800075782, 48.8526871850881], [2.26509832638421, 48.852784254337564], [2.264969896846877, 48.852892497918525], [2.264856422270267, 48.85298956602138], [2.264822891656124, 48.8530152895335], [2.264834346245792, 48.85302863180956], [2.2648433156813113, 48.85303352189326], [2.26498613362185, 48.853057530905346], [2.265108052249447, 48.853083093194655], [2.26511530333977, 48.85308671449519], [2.265244056920376, 48.853215587036686], [2.265369549184637, 48.85333628757609], [2.265495043380259, 48.85345698887839], [2.265623797452177, 48.85358586095998], [2.265625551353236, 48.85359321771531], [2.265585845931057, 48.85368756983234], [2.265541649944074, 48.85378915671411], [2.265501944207891, 48.853883509685936], [2.265457746528465, 48.853985096510485], [2.265464420926139, 48.85399550982449], [2.265647971001775, 48.85406025551947], [2.265808437155675, 48.85411677402547], [2.265968903670447, 48.85417329141409], [2.266152454986502, 48.854238037224114], [2.266312920872291, 48.854294555036184], [2.266496473042966, 48.85435930031141], [2.26665694105088, 48.85441581676503], [2.266840494076172, 48.85448056150548], [2.267000961455206, 48.854537078382535], [2.267184515335117, 48.85460182258822], [2.267344984836066, 48.854658338106795], [2.267346098058109, 48.85467376806798], [2.267192376163829, 48.85474100370571], [2.267050283444118, 48.85480688489129], [2.266896560775319, 48.85487412014091], [2.266754468694048, 48.85494000007642], [2.266600745238176, 48.855007235837256], [2.266458651057083, 48.85507311540524], [2.266304926839547, 48.85514034987874], [2.266162833284149, 48.85520622909592], [2.2661570924176972, 48.85521437897142], [2.266175484003337, 48.85535175940392], [2.266191794644052, 48.8554727757787], [2.266208527912858, 48.85550746420734], [2.266231024081094, 48.85550892422048], [2.266291865235296, 48.85549542825482], [2.266495687972125, 48.85545040125824], [2.266680187872454, 48.85540947439809], [2.266884009937485, 48.855364446736594], [2.267068510578718, 48.85532352018216], [2.267253009579847, 48.85528259243414], [2.267456830653543, 48.855237563791796], [2.267458042587416, 48.85523725103885], [2.267597265049921, 48.85519623623445], [2.267762676551388, 48.855146614564454], [2.267901897169119, 48.85510559939394], [2.26806730945556, 48.85505597730711], [2.26826385782228, 48.85499940087858], [2.268429268076705, 48.85494977737902], [2.26862581564982, 48.85489320035059], [2.268791226572586, 48.854843577253554], [2.268987773351992, 48.85478699962518], [2.269153182230218, 48.85473737601474], [2.269200029880853, 48.85472332183476], [2.269205101826737, 48.8547236666884], [2.2692430849002783, 48.854709827260315], [2.269345124449903, 48.85468040273535], [2.269463685153028, 48.8546448338282], [2.269509822967783, 48.854631528857524], [2.269516525299605, 48.85461483446516], [2.269487820220334, 48.854589451931304], [2.269489054144369, 48.85450056481929], [2.269490415270584, 48.85441183946239], [2.2694916491859862, 48.85432295233611], [2.269493008927748, 48.85423422785595], [2.269489422487708, 48.85422805612777], [2.269339212933102, 48.85412004483285], [2.269197877677187, 48.854023597564485], [2.269194436912101, 48.8540194808574], [2.26914783375719, 48.85389362285573], [2.2691032721805158, 48.85377380481334], [2.269056670815578, 48.85364794765601], [2.269012109658623, 48.85352812955319], [2.268967550069264, 48.85340831142917], [2.268920947996344, 48.85328245416923], [2.268915618631627, 48.85325364741423]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 22, "roussel_fabien": 4.0, "nb_emargement": 1313.0, "nb_procuration": 103.0, "nb_vote_blanc": 21.0, "jadot_yannick": 40.0, "le_pen_marine": 76.0, "nb_exprime": 1291.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1679.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1313, "quartier_bv": "61", "geo_point_2d": [48.853747002150044, 2.267271110642355], "melenchon_jean_luc": 101.0, "poutou_philippe": 3.0, "macron_emmanuel": 601.0}, "geometry": {"type": "Point", "coordinates": [2.267271110642355, 48.853747002150044]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4fdc5193b709177c3d91e505c54da18c27c58e57", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 155, "zemmour_eric": 275.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 1.0, "date_tour": "2022-04-10", "id_bvote": "16-56", "geo_shape": {"coordinates": [[[2.275788866506544, 48.86423164186134], [2.275761824161512, 48.86423117513637], [2.275668877539173, 48.864236916197605], [2.275467332495839, 48.86425281809965], [2.275278769114811, 48.864264465193486], [2.275077223858237, 48.864280365538924], [2.274888660290391, 48.86429201201783], [2.274687114795665, 48.86430791260523], [2.274498551040905, 48.864319558469234], [2.274494850690594, 48.86431951625181], [2.274278284808916, 48.86429742547723], [2.2740964815999503, 48.86428133069927], [2.273879916045937, 48.8642592392031], [2.273698113093308, 48.86424314381943], [2.273516308877527, 48.86422704905036], [2.273299745170684, 48.86420495561225], [2.273117941211245, 48.86418886023754], [2.272901377819648, 48.86416676697713], [2.272898609213766, 48.864166283392585], [2.272683849911882, 48.86411808708544], [2.272524419000087, 48.86407802410829], [2.272364986983118, 48.86403796000977], [2.272150230066941, 48.863989762747785], [2.272071527639071, 48.8639699857587], [2.272031383195794, 48.86394755543648], [2.272002868397546, 48.86394868065245], [2.271922140776341, 48.86392839390221], [2.271920322022481, 48.863927832433504], [2.271743461406845, 48.863862937345395], [2.271561919849919, 48.86379573004031], [2.271385060141774, 48.863730833515596], [2.271203519494959, 48.8636636265581], [2.271026660681834, 48.86359872949602], [2.270845122333321, 48.8635315210959], [2.270844401164879, 48.86353123430502], [2.270667541872927, 48.86346633759549], [2.270492685624909, 48.8633918882005], [2.270315828607159, 48.863326990971345], [2.270140971966423, 48.863252541044844], [2.269964115872343, 48.86318764238849], [2.269815365222626, 48.86314859060644], [2.2698118391680833, 48.86314769222268], [2.269663090109495, 48.8631086402583], [2.269441290371756, 48.863074470868526], [2.26943924862633, 48.863074262345584], [2.269202768845098, 48.863076699245056], [2.26901383015108, 48.86306700598683], [2.268824890164455, 48.86305731242192], [2.268588411794453, 48.86305974811584], [2.268399471913206, 48.863050053879206], [2.268388091462913, 48.86305314733729], [2.268260659615007, 48.86315067216383], [2.268095625994766, 48.863240800841346], [2.267968193140371, 48.863338325339946], [2.267829198058716, 48.86343476449026], [2.2677017642311332, 48.86353228868811], [2.267562768138789, 48.86362872751214], [2.267435333338011, 48.8637262514092], [2.267296336222322, 48.86382269080616], [2.267168900448336, 48.863920214402484], [2.26702990233459, 48.86401665257386], [2.267036398883616, 48.86407847705518], [2.269813207646927, 48.86687162442718], [2.269847372627019, 48.8668810476087], [2.270015807012289, 48.866838249662514], [2.270178072087456, 48.866795974155814], [2.27034033688666, 48.86675369932679], [2.270508770467874, 48.86671089978271], [2.270671034733719, 48.8666686245021], [2.270839467768066, 48.86662582448929], [2.271001732863658, 48.86658354876544], [2.271170165351336, 48.86654074828398], [2.271187002860426, 48.86654479896744], [2.271239442444233, 48.8666075620292], [2.271289171062815, 48.86667156854863], [2.271305834996071, 48.866675947320246], [2.271485534197715, 48.8666341377284], [2.27166433467263, 48.86659282153763], [2.271844033312374, 48.866551010505106], [2.272022833217645, 48.86650969377569], [2.272202531270342, 48.866467883101095], [2.272381330618529, 48.86642656493375], [2.272561028096745, 48.866384753717746], [2.272739826875271, 48.86634343501177], [2.272919523779001, 48.86630162325438], [2.273098321987864, 48.866260304009714], [2.273278018317102, 48.86621849171094], [2.273456817306856, 48.866177172835194], [2.273636511698501, 48.86613535998681], [2.2738153101311243, 48.86609403967313], [2.27399500394827, 48.866052226283365], [2.274173801811214, 48.86601090543102], [2.274353495053857, 48.86596909149991], [2.274532292347116, 48.86592777010895], [2.274542229375072, 48.86592800931322], [2.2746310777539582, 48.86595346705657], [2.274723236635559, 48.8659737906125], [2.274732197892937, 48.86597371720902], [2.27491346651491, 48.86593042535822], [2.275093631064972, 48.86588798542632], [2.275274899088274, 48.86584469302477], [2.275455061684402, 48.86580225253722], [2.275636329109028, 48.86575895958495], [2.275816492477198, 48.865716518558315], [2.275863681469425, 48.86570780877022], [2.275864702869829, 48.865705624130314], [2.275908995792868, 48.86561026588159], [2.27594556850576, 48.86550277361993], [2.275945516244178, 48.865498687549916], [2.275893275670994, 48.86535635938634], [2.275844362389379, 48.86521514492406], [2.275844024231111, 48.86521338644401], [2.275839286156121, 48.865098828023875], [2.275834138473661, 48.864984024288106], [2.2758293990782033, 48.864869465835575], [2.275824251440297, 48.86475466207557], [2.275819513450405, 48.864640103607194], [2.275814364493888, 48.864525299814744], [2.275809626546598, 48.864410741322246], [2.27580447899759, 48.864295937513845], [2.275788866506544, 48.86423164186134]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 56, "roussel_fabien": 1.0, "nb_emargement": 1160.0, "nb_procuration": 78.0, "nb_vote_blanc": 7.0, "jadot_yannick": 33.0, "le_pen_marine": 54.0, "nb_exprime": 1147.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1515.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1161, "quartier_bv": "63", "geo_point_2d": [48.864949170446415, 2.2712793966515052], "melenchon_jean_luc": 66.0, "poutou_philippe": 1.0, "macron_emmanuel": 550.0}, "geometry": {"type": "Point", "coordinates": [2.2712793966515052, 48.864949170446415]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c39ef0628650038bef3830c2d24da1034edf599e", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 58, "zemmour_eric": 111.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "12-46", "geo_shape": {"coordinates": [[[2.393897812487401, 48.834281931255994], [2.393941883961651, 48.834270355800186], [2.394058936205458, 48.83416711800795], [2.394173954298329, 48.83406678643334], [2.394175302471735, 48.83406577787824], [2.394292945242579, 48.83398913707503], [2.394437221466862, 48.83389617800303], [2.394554863469871, 48.83381953693065], [2.394699138747239, 48.833726578427914], [2.394816779982423, 48.833649937086314], [2.394875240033221, 48.833612270633964], [2.394902060131402, 48.833601706565716], [2.394908551867776, 48.83358900888376], [2.39499436744642, 48.833533716485256], [2.395136767148517, 48.83344294060592], [2.395281040356343, 48.83334998047072], [2.395423440419484, 48.83325920424207], [2.3955677126075843, 48.833166243745836], [2.395710111669713, 48.833075467161], [2.395854382838093, 48.83298250630374], [2.395996780899117, 48.8328917293627], [2.396141051037365, 48.83279876904374], [2.396283448107605, 48.8327079908472], [2.396427717226152, 48.83261503016719], [2.3965701119227463, 48.83252425250692], [2.396714380032012, 48.832431290566575], [2.396856775089763, 48.832340512557], [2.397001042179336, 48.83224755025563], [2.397143436236009, 48.83215677188991], [2.397287702295396, 48.83206381012684], [2.397430095361395, 48.8319730305056], [2.39757436040121, 48.83188006838153], [2.3977167524557492, 48.83178928930346], [2.397861016486289, 48.831696325919054], [2.398003406177553, 48.83160554647795], [2.39814766918843, 48.831512582732536], [2.39829005924076, 48.83142180294218], [2.39843432123198, 48.83132883883578], [2.398576710283367, 48.831238058689244], [2.398720971244563, 48.83114509512117], [2.398863359305285, 48.83105431371917], [2.399007619246741, 48.8309613497901], [2.399150006296062, 48.83087056893131], [2.399294263866159, 48.83077760373509], [2.399436649914458, 48.830686822520136], [2.399580907827122, 48.83059385696978], [2.399723292874404, 48.83050307539868], [2.399867549757092, 48.83041011038671], [2.400009933813616, 48.8303193275602], [2.400154189676694, 48.83022636218719], [2.400296572721964, 48.83013557990385], [2.400440827575784, 48.83004261327061], [2.400583209620057, 48.82995183063113], [2.400727462092106, 48.82985886363012], [2.400869843135391, 48.82976808063458], [2.401014095949916, 48.82967511327939], [2.4011564759922193, 48.82958432992771], [2.401300727776929, 48.82949136311088], [2.401443106828584, 48.829400578503794], [2.401460178897957, 48.829388999133016], [2.401427007074385, 48.82936935458823], [2.40133180256927, 48.82934238085794], [2.401143327267287, 48.829289225300094], [2.400951629051062, 48.829234911099114], [2.400763154525241, 48.82918175493707], [2.400577005000426, 48.82912901214453], [2.400388532601581, 48.82907585539393], [2.400202382461301, 48.82902311290581], [2.400013910837631, 48.8289699546605], [2.399827761454584, 48.82891721158434], [2.399639290585395, 48.82886405364298], [2.399453143331986, 48.82881130908629], [2.399264671865489, 48.82875815054275], [2.399078525369225, 48.82870540539795], [2.39889005466757, 48.82865224625903], [2.39870472493457, 48.82859973216942], [2.398516256358227, 48.82854657244322], [2.39833092737741, 48.82849405776941], [2.398142459564243, 48.828440897449205], [2.397957131335613, 48.82838838219119], [2.397768662923494, 48.82833522127005], [2.397583336809186, 48.82828270543475], [2.397394869160253, 48.82822954391954], [2.397209543798137, 48.82817702750003], [2.397021076912394, 48.82812386539079], [2.396835750940451, 48.82807134838025], [2.396647286180025, 48.828018185683796], [2.396461960960183, 48.827965668089114], [2.396273496962952, 48.82791250479865], [2.396088172495315, 48.82785998661973], [2.395899707899166, 48.82780682272834], [2.395714385545855, 48.82775430397219], [2.395545047588934, 48.827728309007426], [2.395367622439815, 48.82770021335626], [2.395198284831486, 48.82767421789927], [2.395020860042888, 48.82764612263159], [2.394851522783256, 48.82762012668235], [2.39467409701384, 48.827592029992665], [2.39465387196413, 48.827588827489635], [2.3944845350735893, 48.82756283101943], [2.394351535358984, 48.827541769710784], [2.39434712827938, 48.82754052065031], [2.394177213707589, 48.8274666176283], [2.393982172334309, 48.827381537362], [2.393812260160001, 48.82730763381792], [2.3936172186045033, 48.827222553836755], [2.393447307465768, 48.827148649763714], [2.393397377724994, 48.82712686826791], [2.393321784522761, 48.82709389339917], [2.393151874222021, 48.8270199888979], [2.393015733371807, 48.826960600522895], [2.392879592831752, 48.8269012119898], [2.392709683785891, 48.82682730684759], [2.392573543953006, 48.82676791705974], [2.3924036357752883, 48.82669401147397], [2.392227660399768, 48.82661724448262], [2.392057753203495, 48.82654333839549], [2.391881778856324, 48.82646656998555], [2.391711872641394, 48.82639266339717], [2.391665804047345, 48.82637256643278], [2.391569140491672, 48.82633039688404], [2.391562829166829, 48.826327643274354], [2.3913929238567793, 48.82625373622364], [2.391332854630053, 48.82622753128974], [2.391287766155439, 48.82620786186868], [2.391212381611827, 48.82617497572592], [2.391042477296085, 48.82610106816727], [2.390895336847621, 48.82603687800448], [2.390725432069284, 48.82596296997939], [2.390578292411317, 48.82589877851933], [2.390408389894522, 48.82582487004163], [2.3902612496546842, 48.82576067817663], [2.390164647701979, 48.82576455654777], [2.390161707586004, 48.825770086186544], [2.390027108503753, 48.825866702838255], [2.389892811581983, 48.8259608520969], [2.389758211519462, 48.826057467530205], [2.389623913610299, 48.82615161737021], [2.389489311194804, 48.8262482324775], [2.389355013670736, 48.82634238200645], [2.389220410264431, 48.826438996794685], [2.389086110411837, 48.82653314509941], [2.3889515073662553, 48.82662976047481], [2.388817206536672, 48.82672390846158], [2.388682602510909, 48.826820522618604], [2.388548300693683, 48.82691467118667], [2.388413694314997, 48.82701128501764], [2.388279392893508, 48.827105432375404], [2.388144785513327, 48.82720204678662], [2.388010481752729, 48.82729619381939], [2.387875874754353, 48.82739280701914], [2.387741570006175, 48.827486954633294], [2.387606962017048, 48.82758356751393], [2.387472656291736, 48.82767771481004], [2.387338045949634, 48.82777432736464], [2.387203739257952, 48.82786847344342], [2.387069129276421, 48.82796508658517], [2.386934821607697, 48.828059232345986], [2.386933967929363, 48.82805989260498], [2.386819349793031, 48.82815869897292], [2.3866970714921782, 48.828262961097884], [2.386582452460423, 48.82836176722091], [2.386460173209515, 48.82846602908475], [2.386345553282326, 48.82856483496283], [2.386223273081355, 48.828669096565626], [2.3861086522587263, 48.82876790219876], [2.38598637110758, 48.82887216354042], [2.385871749389604, 48.828970968928644], [2.385749467298973, 48.829075229109904], [2.385634844674943, 48.82917403515252], [2.385512561634225, 48.82927829507266], [2.385397938114727, 48.82937710087031], [2.385275654123914, 48.82948136052936], [2.385161029719441, 48.82958016518275], [2.385038744768019, 48.829684425479975], [2.385038376107479, 48.82968472937012], [2.384905972525631, 48.829789180324646], [2.384783685211673, 48.82989344033467], [2.384651280589462, 48.82999789098778], [2.384528992276569, 48.83010215071799], [2.38445096551672, 48.83016370312729], [2.384387661635174, 48.83018787972224], [2.384380899442515, 48.830198612166825], [2.38432652043509, 48.830241510975355], [2.384199927300437, 48.83034256532383], [2.384067520357414, 48.8304470161882], [2.383940926211045, 48.8305480711433], [2.383808518237766, 48.830652520802445], [2.383681923090398, 48.83075357546486], [2.383549514076129, 48.83085802481812], [2.38342291792765, 48.83095907918788], [2.383290507872483, 48.831063528235205], [2.383163910722886, 48.831164582312304], [2.3830314996162683, 48.83126903195307], [2.383031474862834, 48.83126905161148], [2.382904876722553, 48.83137010449653], [2.382780991539716, 48.83146726168613], [2.382654393784204, 48.831568315194495], [2.3825305076634002, 48.83166547210741], [2.382403907578767, 48.83176652532574], [2.38228002188241, 48.831863681969054], [2.382153420830759, 48.83196473490435], [2.382029532834301, 48.83206189126399], [2.381902930815825, 48.83216294391633], [2.381779043243604, 48.83226010000633], [2.381652440258196, 48.8323611523756], [2.381528550385948, 48.832458308181906], [2.381401947795732, 48.832559360275205], [2.38127805698558, 48.832656515804864], [2.381151452066276, 48.83275756760806], [2.381027561680352, 48.83285472286811], [2.380992355690572, 48.832882822183045], [2.380989544481681, 48.8328863286582], [2.381061864333926, 48.832940908711066], [2.381208238060168, 48.83302235104507], [2.381359866493073, 48.83310403891716], [2.381506241142942, 48.83318548087458], [2.38165787187948, 48.83326716836402], [2.381804246090724, 48.83334860993784], [2.381955877768848, 48.83343029703756], [2.382102254265988, 48.83351173824191], [2.3822538855232382, 48.83359342494492], [2.382400262944019, 48.833674865772636], [2.38255189514286, 48.83375655208596], [2.382698273487287, 48.833837992537156], [2.382849907989794, 48.83391967846777], [2.3829962858957, 48.834001118535355], [2.383147921339711, 48.83408280407625], [2.383294301531444, 48.83416424377429], [2.383445936554685, 48.83424592891849], [2.383592317670077, 48.83432736823991], [2.383743954997213, 48.834409053001416], [2.383890335663354, 48.83449049283853], [2.384041973942535, 48.834572176310985], [2.384188355532447, 48.834653615771565], [2.384339994753143, 48.83473529885433], [2.384486378628924, 48.834816737945275], [2.384579340489042, 48.834866813616614], [2.384612606258869, 48.83487872509257], [2.384623690919496, 48.83487845115551], [2.384682367899289, 48.83491005814812], [2.384843858247883, 48.83499372577837], [2.384995498112219, 48.83507540889755], [2.385156989475667, 48.83515907609263], [2.385308630311691, 48.8352407588028], [2.385460272985367, 48.835322441321736], [2.385621765860026, 48.83540610787087], [2.385773408153686, 48.83548778907442], [2.385934902032611, 48.835571456087735], [2.386086545297965, 48.835653136882236], [2.386248040191866, 48.83573680346041], [2.386399685791141, 48.83581848385283], [2.386520361486408, 48.83588100252919], [2.386561180337598, 48.835902149988875], [2.386580335569537, 48.83590248925577], [2.386587960183192, 48.83588182228294], [2.3866967367453, 48.83578875440317], [2.386803120060104, 48.83569561479154], [2.386911895839011, 48.835602547599905], [2.387018278389346, 48.83550940778141], [2.387127054768326, 48.835416339486315], [2.387233436554297, 48.83532319946098], [2.38734221078768, 48.835230131847034], [2.387448591809197, 48.83513699161483], [2.3875573652804443, 48.83504392289044], [2.387663745537512, 48.834950782451386], [2.387664250406042, 48.8349503668311], [2.387801521734534, 48.834841567264036], [2.3879444564591, 48.834730738763724], [2.388081726624287, 48.83462193885371], [2.388224660150885, 48.834511109996804], [2.388361929152881, 48.83440230974386], [2.388504861470973, 48.83429148142968], [2.388642129320438, 48.834182679934536], [2.38878506044049, 48.83407185126375], [2.388796190879184, 48.83406870190159], [2.3889933409869872, 48.834075950787835], [2.3891859849238593, 48.834083631415915], [2.389383136504607, 48.834090879666505], [2.389575780554078, 48.83409855966667], [2.389772930883202, 48.83410580726774], [2.389965575045265, 48.83411348664], [2.390158219264085, 48.834121165701994], [2.390355369759678, 48.834128412342835], [2.390548014091075, 48.83413609077694], [2.39074516605958, 48.83414333678214], [2.3909378105035453, 48.83415101458831], [2.391134961220391, 48.834158259944], [2.3913276057769153, 48.83416593712228], [2.391524756593876, 48.8341731827347], [2.3917174012734472, 48.834180858385714], [2.391914553563299, 48.83418810336249], [2.392107198355402, 48.83419577838563], [2.392304349393573, 48.834203022712884], [2.39249699428772, 48.834210698007375], [2.392694145446961, 48.83421794079277], [2.392886790453629, 48.83422561545937], [2.393083943085627, 48.834232857609074], [2.393276588204909, 48.834240531647765], [2.393473739585187, 48.834247773147965], [2.393666384816972, 48.83425544655872], [2.3938635362973493, 48.834262688315675], [2.393897812487401, 48.834281931255994]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 46, "roussel_fabien": 25.0, "nb_emargement": 1157.0, "nb_procuration": 56.0, "nb_vote_blanc": 14.0, "jadot_yannick": 90.0, "le_pen_marine": 63.0, "nb_exprime": 1136.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1518.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1157, "quartier_bv": "47", "geo_point_2d": [48.83088455083713, 2.3906893897682298], "melenchon_jean_luc": 412.0, "poutou_philippe": 8.0, "macron_emmanuel": 323.0}, "geometry": {"type": "Point", "coordinates": [2.3906893897682298, 48.83088455083713]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a921c2008539dd42dc4741d27dc3732dcfde4cf1", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 65, "zemmour_eric": 82.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-37", "geo_shape": {"coordinates": [[[2.376398457101918, 48.86281064218306], [2.376396361942451, 48.8628215816772], [2.3763642215084833, 48.86286178754391], [2.376270478676233, 48.86298488594466], [2.376172650661402, 48.86310726237767], [2.376078906934904, 48.86323036060109], [2.375981077998253, 48.86335273774965], [2.375887333388165, 48.86347583489642], [2.375789504903599, 48.86359821186841], [2.375695759399043, 48.86372130883784], [2.375610408841322, 48.86383576636267], [2.375516662475344, 48.86395886406471], [2.375431312497915, 48.8640733214444], [2.375337565292167, 48.86419641808046], [2.375252214532072, 48.86431087530784], [2.375166863396941, 48.86442533246255], [2.375073114922003, 48.86454842975166], [2.37498776300419, 48.86466288675403], [2.374894013689464, 48.86478598297713], [2.3748086609889603, 48.864900439827295], [2.374714910812652, 48.86502353678297], [2.374715076166839, 48.86502441090822], [2.374777387183255, 48.865045979801785], [2.374784436734105, 48.86504841967104], [2.374818123415327, 48.865034289807085], [2.375008726198971, 48.86499686540227], [2.375197621706856, 48.86495958287076], [2.375388223933763, 48.86492215875833], [2.37557711889928, 48.86488487562534], [2.37576772195399, 48.86484745001387], [2.375956616377024, 48.864810166279405], [2.376147217522683, 48.864772740053915], [2.37633611140323, 48.864735455718005], [2.376526712002915, 48.86469802888566], [2.376715605340968, 48.86466074394829], [2.376904498408641, 48.8646234587115], [2.377095098179471, 48.86458603186948], [2.377283990715392, 48.86454874513198], [2.377474589940341, 48.864511317683046], [2.377663481922902, 48.86447403124339], [2.377854080612602, 48.86443660228832], [2.377863550788666, 48.86443701754983], [2.377973434236881, 48.864469557631544], [2.378089347019359, 48.86450586121259], [2.378107159699939, 48.86450204253306], [2.378205605231825, 48.86438292800767], [2.378303654547588, 48.86426328072051], [2.378402099189754, 48.86414416510853], [2.378500148967936, 48.864024517641674], [2.378598592709655, 48.86390540184239], [2.378696640224143, 48.863785754181684], [2.378795083054809, 48.86366663909437], [2.3788931296793, 48.8635469903476], [2.378991572972593, 48.863427875080056], [2.379089618685752, 48.86330822704584], [2.379188059726307, 48.86318911068467], [2.37928610453887, 48.86306946246369], [2.379294095579778, 48.86306621141302], [2.379298608495775, 48.86305239302403], [2.379298893240589, 48.863052061743765], [2.379375510652569, 48.86296734792195], [2.379453896984069, 48.862881042386505], [2.379530512529469, 48.86279632844531], [2.379608898357588, 48.86271002189576], [2.379605078335103, 48.86269805790929], [2.379447145777708, 48.862624349081585], [2.379291250954707, 48.862551255865526], [2.379133319286236, 48.86247754661394], [2.378977423979789, 48.86240445297238], [2.37881949456346, 48.862330743303936], [2.378663600136587, 48.86225764924387], [2.378505670246159, 48.86218393914451], [2.378349778061869, 48.862110844673026], [2.378191849060559, 48.86203713414974], [2.378035956392829, 48.86196403925273], [2.377878029643437, 48.86189032831266], [2.377722137855274, 48.86181723299717], [2.377564210631991, 48.86174352162613], [2.377408321086392, 48.861670425899305], [2.377358855522124, 48.86164363248344], [2.377342037462166, 48.86165577427136], [2.37725791543048, 48.8617447853872], [2.377160092063539, 48.8618671627643], [2.377057982412487, 48.861975204670934], [2.376960159506278, 48.86209758186625], [2.376959551220656, 48.862098295477], [2.376864986678411, 48.86222217796146], [2.376767161492119, 48.86234455496467], [2.376672596045411, 48.862468437269634], [2.3765747699448, 48.86259081408837], [2.376480203593617, 48.86271469621377], [2.37641451697262, 48.862796867874856], [2.376398457101918, 48.86281064218306]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 37, "roussel_fabien": 19.0, "nb_emargement": 1289.0, "nb_procuration": 95.0, "nb_vote_blanc": 14.0, "jadot_yannick": 117.0, "le_pen_marine": 40.0, "nb_exprime": 1275.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1595.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "42", "geo_point_2d": [48.86342225795018, 2.377294949801649], "melenchon_jean_luc": 430.0, "poutou_philippe": 7.0, "macron_emmanuel": 445.0}, "geometry": {"type": "Point", "coordinates": [2.377294949801649, 48.86342225795018]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a8114b03baa3c09e925e0de69167f4d253f5aa7f", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 150, "zemmour_eric": 104.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-83", "geo_shape": {"coordinates": [[[2.277057042221043, 48.848106680496954], [2.277071955384674, 48.84811741999694], [2.277199565328532, 48.848219253599915], [2.277341366301367, 48.8483291114693], [2.277468977277579, 48.84843094566485], [2.27761077803173, 48.848540803185806], [2.277738390065241, 48.84864263617537], [2.277880191963349, 48.84875249335614], [2.278007805029239, 48.8488543269383], [2.278149609433969, 48.8489641837871], [2.278277223557172, 48.84906601616323], [2.278398732025126, 48.849162412681316], [2.2785263471205672, 48.84926424477358], [2.278647857874212, 48.849360641029755], [2.278775473941901, 48.84946247283816], [2.2788969856185908, 48.84955886882415], [2.279024602658537, 48.8496607003487], [2.279146113895608, 48.84975709605629], [2.279165751540855, 48.849771462992926], [2.279166567615131, 48.84977197155338], [2.279277687248153, 48.849853268043425], [2.279385587081565, 48.84993239105352], [2.279493487242532, 48.85001151396062], [2.279624245806947, 48.85010717608732], [2.279773762780749, 48.8502230004907], [2.27990452102755, 48.85031866228473], [2.279921402745421, 48.85036158887217], [2.279957551666905, 48.85036544614882], [2.279975405022352, 48.85036567320603], [2.280030287344241, 48.85032164687203], [2.280174983793788, 48.850231813998896], [2.280322809935234, 48.85013991594671], [2.280467505363486, 48.85005008360443], [2.280615330473453, 48.84995818517581], [2.280760024892841, 48.84986835246511], [2.280907847621273, 48.84977645275261], [2.281052541031806, 48.849686619673506], [2.281200364079034, 48.84959472049211], [2.28134505648082, 48.84950488704457], [2.281492877134025, 48.84941298747854], [2.28151721178006, 48.84938027535259], [2.281469823377001, 48.849346575797625], [2.281339844374339, 48.84925307608971], [2.281204103913186, 48.84915494946272], [2.281074125865232, 48.84906144945006], [2.280938386403562, 48.848963322504744], [2.280808409310205, 48.848869822187325], [2.280672672210758, 48.848771694931855], [2.280542694709446, 48.848678194301485], [2.280406958609359, 48.84858006672768], [2.280276983425477, 48.84848656580076], [2.280141246962204, 48.848388437900425], [2.280011272732999, 48.84829493666877], [2.279875538631808, 48.84819680845828], [2.279745564006968, 48.8481033060144], [2.279609830892887, 48.8480051783849], [2.279479858585343, 48.847911675644475], [2.279344125120497, 48.84781354678915], [2.279214153755176, 48.847720044643296], [2.279078422652273, 48.847621915477866], [2.278948450879083, 48.847528413019106], [2.278812720775594, 48.84743028353535], [2.278814231566184, 48.84741721946066], [2.278967271039896, 48.84733577886064], [2.279118548688296, 48.84725616485056], [2.279271587225927, 48.84717472295019], [2.279422863929381, 48.84709510944312], [2.27957590151849, 48.84701366714174], [2.279727177289547, 48.846934053238336], [2.279880212567646, 48.84685261052771], [2.280031488768906, 48.84677299623628], [2.280184523098396, 48.846691553124636], [2.280335798367264, 48.8466119384369], [2.280488831748249, 48.84653049492425], [2.280640106084831, 48.84645087984022], [2.280793138517317, 48.84636943592653], [2.280944410558829, 48.84628982043807], [2.281097443405403, 48.84620837613161], [2.28124871451464, 48.84612876024684], [2.281401746412719, 48.846047315539344], [2.281553016589484, 48.84596769925833], [2.28155341065424, 48.8459674830787], [2.281706441590183, 48.84588603886897], [2.281848844018633, 48.84580513593354], [2.282001872653712, 48.845723691325865], [2.282144274179945, 48.84564278802703], [2.282297303239097, 48.8455613430378], [2.282439702500656, 48.84548043936734], [2.28259273062142, 48.84539899398838], [2.282735128980776, 48.8453180899545], [2.282888156163158, 48.84523664418581], [2.283030554982865, 48.8451557397967], [2.28305138062436, 48.845144222294984], [2.283032851044538, 48.845105125476636], [2.282935569167687, 48.84499620283808], [2.282839231505739, 48.84488444466573], [2.282741950457747, 48.844775520948886], [2.282645613618914, 48.84466376259852], [2.282548333375224, 48.84455483960193], [2.282451997371879, 48.844443080174266], [2.282354717944653, 48.844334156998706], [2.282258382752025, 48.8442223982923], [2.282161104153842, 48.844113474038465], [2.282064769784303, 48.84400171515403], [2.282068158952244, 48.843990215485164], [2.282226643806394, 48.84390744428988], [2.282386924467968, 48.84382405049849], [2.282545409673097, 48.84374127887675], [2.282705689325978, 48.84365788374655], [2.282709386987277, 48.84364672856605], [2.282653238844166, 48.84357421757087], [2.282618980225466, 48.84352740236234], [2.282595601450293, 48.84351428427641], [2.282565334438702, 48.8435280132992], [2.282502754830571, 48.84355598608288], [2.282343943205342, 48.84362934920534], [2.282196096749511, 48.84369543636345], [2.282037284267694, 48.8437687990696], [2.281889437027425, 48.84383488584046], [2.281843605572969, 48.843856057056534], [2.281826985348759, 48.843860443331806], [2.281819513927236, 48.8438678767269], [2.281706532005932, 48.84392006687815], [2.281530220455322, 48.84400096936469], [2.28137140474266, 48.84407433115867], [2.281195092149963, 48.84415523314018], [2.281036275507895, 48.84422859357974], [2.280859961873111, 48.84430949505616], [2.280701145639357, 48.844382855948254], [2.280524830962483, 48.84446375691952], [2.2803660124367973, 48.844537116449054], [2.280189696705411, 48.84461801781455], [2.280030877237909, 48.84469137688904], [2.280020321469042, 48.844692818004674], [2.279771781828571, 48.84465908952277], [2.279550210845085, 48.84463182660552], [2.279529079391982, 48.84462510967646], [2.279511408150894, 48.8446297905883], [2.279358358624299, 48.84470934329583], [2.279206113694225, 48.84478802736616], [2.279053061874388, 48.844867579663635], [2.278900816021145, 48.844946263334315], [2.278747764633152, 48.845025815238074], [2.278595517856739, 48.84510449850907], [2.278442464163038, 48.84518405090213], [2.278290216463446, 48.845262733773424], [2.27813716185148, 48.84534228486525], [2.277984913228709, 48.84542096733687], [2.277831859048586, 48.84550051803508], [2.277679609502632, 48.845579200107], [2.277526553029229, 48.84565875039513], [2.277374302547619, 48.84573743296664], [2.277221246506056, 48.8458169828611], [2.277068995113622, 48.845895664133636], [2.276915936778864, 48.84597521361798], [2.276763684463234, 48.84605389449077], [2.276610625197745, 48.846133443573216], [2.276458371946532, 48.84621212494563], [2.276306118247976, 48.84629080521941], [2.276153058950748, 48.84637035370784], [2.276000804329092, 48.846449033581905], [2.275847742738539, 48.846528581660145], [2.275695487193674, 48.8466072611345], [2.275542426034967, 48.846686808819115], [2.275494527156276, 48.84671870439867], [2.2755012292449, 48.846727888846985], [2.275532934730887, 48.84676151750051], [2.275603527061012, 48.84684740996853], [2.275688558916205, 48.84693759974233], [2.275689411702329, 48.846938402643396], [2.275807840213197, 48.847038630878885], [2.275930484147136, 48.84714169231955], [2.276048913583511, 48.84724192029811], [2.276171557110001, 48.847344981464616], [2.27628998748448, 48.84744520828697], [2.276412633316257, 48.84754827009508], [2.2765310646164583, 48.847648496660504], [2.276667633171185, 48.847765182325205], [2.27678606545465, 48.84786540861865], [2.276922635148877, 48.84798209396961], [2.277041068415719, 48.84808231999115], [2.277041376959102, 48.848082573677914], [2.277052217987355, 48.84809117506484], [2.277057042221043, 48.848106680496954]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 83, "roussel_fabien": 10.0, "nb_emargement": 1280.0, "nb_procuration": 73.0, "nb_vote_blanc": 5.0, "jadot_yannick": 75.0, "le_pen_marine": 64.0, "nb_exprime": 1273.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1595.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1280, "quartier_bv": "60", "geo_point_2d": [48.84682627986237, 2.279313125622738], "melenchon_jean_luc": 191.0, "poutou_philippe": 2.0, "macron_emmanuel": 616.0}, "geometry": {"type": "Point", "coordinates": [2.279313125622738, 48.84682627986237]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fc8bd2919a56b41d7bb5241f44c7629152843273", "fields": {"lassalle_jean": 31.0, "pecresse_valerie": 47, "zemmour_eric": 74.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 27.0, "date_tour": "2022-04-10", "id_bvote": "14-56", "geo_shape": {"coordinates": [[[2.312352222732879, 48.82591468416059], [2.3123735945483093, 48.825902606963865], [2.312373908764322, 48.82590253682022], [2.312560994763026, 48.82586259260297], [2.312743491885663, 48.8258232350986], [2.312930575966448, 48.825783289393215], [2.31311307389455, 48.8257439313299], [2.313300157395757, 48.825703985942866], [2.313482653405223, 48.825664627304974], [2.313665150501302, 48.825625268394965], [2.313852233165458, 48.82558532124078], [2.313857607953859, 48.825584919477556], [2.313968192777776, 48.82559129016255], [2.314086111098852, 48.82559798791133], [2.314098696033637, 48.82559393104124], [2.314140915022945, 48.82555107310451], [2.314177896298267, 48.82551144626526], [2.314185247624699, 48.82550761929221], [2.314380437422713, 48.82546534703992], [2.314577803919076, 48.82542304827193], [2.314772993070474, 48.82538077627508], [2.31497035892821, 48.82533847685604], [2.315165547444714, 48.825296204215284], [2.315362912663817, 48.82525390414521], [2.31555810054532, 48.825211630860586], [2.315755465125886, 48.82516933013944], [2.31595065237248, 48.82512705621093], [2.316148016314299, 48.825084754838755], [2.316343204288115, 48.825042480274135], [2.316540566229248, 48.825000178243165], [2.316549011840149, 48.82498829263764], [2.316466537937942, 48.82485173695169], [2.316384359703868, 48.82471603819063], [2.316301886675258, 48.82457948145872], [2.316219707936818, 48.82444378254382], [2.31613723577021, 48.82430722566523], [2.316055057889419, 48.824171526604324], [2.316062305121796, 48.8241599309662], [2.316231154376676, 48.82411179216014], [2.316399680830601, 48.82406393997133], [2.316568529463221, 48.824015800684826], [2.316737055309022, 48.823967947117175], [2.3169059033192783, 48.82391980735016], [2.317074428533376, 48.823871954202325], [2.317243275921268, 48.82382381395485], [2.317411800515451, 48.82377596032746], [2.317464432069777, 48.82373323615545], [2.3174396460428452, 48.823718693794746], [2.317281701097465, 48.823649408626046], [2.317118759331686, 48.82357709167397], [2.316960815253455, 48.82350780517337], [2.316797873013181, 48.823435487767156], [2.316639929778638, 48.82336620173337], [2.316476988425962, 48.823293883880815], [2.316319046058476, 48.82322459651514], [2.316156106943687, 48.82315227912335], [2.315998165431568, 48.823082991325165], [2.315835225854185, 48.82301067257994], [2.31567728518563, 48.82294138524852], [2.31551434649574, 48.82286906605696], [2.315356406694454, 48.82279977739373], [2.315193468892156, 48.822727457755825], [2.31503553129629, 48.822658169567156], [2.314872594381681, 48.82258584948298], [2.314714656279201, 48.82251656085394], [2.314551720252179, 48.82244424032346], [2.314393783016877, 48.822374950362615], [2.314336114347697, 48.822349353357154], [2.314230847877341, 48.822302629385796], [2.31420999263569, 48.82228903973136], [2.314146364356806, 48.822288048833954], [2.314108208234204, 48.822296534204256], [2.314098401463315, 48.82229871471752], [2.31390633786676, 48.82234101798949], [2.313713257683273, 48.82238395637847], [2.313521193460246, 48.82242625902867], [2.313328111270228, 48.82246919768403], [2.313136046432578, 48.8225114988131], [2.312942964971596, 48.82255443685116], [2.312750899507494, 48.822596737358374], [2.312557817413694, 48.82263967477133], [2.312365751311284, 48.82268197555608], [2.31217266723456, 48.82272491143677], [2.311980600505701, 48.82276721159971], [2.311787517158149, 48.82281014686306], [2.311595449802848, 48.822852446404205], [2.311402365822604, 48.82289538104243], [2.311210297840867, 48.82293767996177], [2.311017211853871, 48.822980614866296], [2.310825143257588, 48.82302291226451], [2.31064396844042, 48.823062815042874], [2.310451899226656, 48.823105112737814], [2.310270722476233, 48.823145014939946], [2.310078652656875, 48.82318731203231], [2.309891242066386, 48.823228586126135], [2.309703831179187, 48.82326985992476], [2.3095117604400572, 48.82331215610187], [2.309510677151919, 48.82331239537806], [2.309330060419801, 48.82335217167737], [2.309137989074247, 48.82339446725111], [2.309069619318723, 48.82340952452065], [2.308877547562544, 48.82345181877453], [2.30872986421172, 48.82348434211534], [2.308582180676653, 48.82351686527282], [2.308390108129654, 48.82355915873977], [2.3083693562382273, 48.82356372899538], [2.308334413670309, 48.82357142346584], [2.308317437471057, 48.82358903050789], [2.308324405819537, 48.82359724619596], [2.308282104995606, 48.823707320604505], [2.308239745233566, 48.823805808810775], [2.308244501390295, 48.82381537336885], [2.3084093419351293, 48.82389976605971], [2.308557000389272, 48.823975833421756], [2.30870465926234, 48.82405190149565], [2.30886949993789, 48.824136293526514], [2.3090171597212112, 48.824212361203685], [2.3091820027718972, 48.82429675279969], [2.309329663477492, 48.824372819180795], [2.3094945075413102, 48.82445721033392], [2.309642169145352, 48.824533277217625], [2.3098070128602908, 48.824617667920045], [2.309954675386704, 48.824693733507736], [2.310119521476699, 48.82477812377519], [2.310267184901578, 48.82485418986539], [2.310432032004721, 48.82493857969006], [2.310579694989837, 48.82501464447634], [2.310744543106127, 48.82509903385815], [2.310892208351755, 48.825175099154876], [2.310889233609198, 48.825190445229985], [2.310705000327054, 48.82524300810918], [2.310527477712786, 48.825294961840775], [2.310343245070447, 48.825347523266345], [2.310165721739835, 48.82539947645612], [2.310158389692701, 48.82541067821415], [2.310217176730299, 48.82552120669175], [2.310274524916414, 48.825629316490634], [2.310333312458739, 48.82573984399033], [2.31039066112606, 48.82584795371248], [2.310449449161116, 48.82595848113353], [2.310506798309853, 48.82606659077894], [2.310565586825652, 48.826177119020684], [2.310622936455709, 48.826285228589335], [2.3106314758468383, 48.82630077592408], [2.310655136310416, 48.82629902451467], [2.310701381511274, 48.826288487729315], [2.310871307216917, 48.82624916045002], [2.311068355726674, 48.82620426103422], [2.311238280880985, 48.826164933230544], [2.311435330118327, 48.826120033214565], [2.311605254721402, 48.826080704886536], [2.311802301962306, 48.82603580425468], [2.311972226014039, 48.82599647540227], [2.312169273982617, 48.82595157417019], [2.312339197483002, 48.82591224479345], [2.312352222732879, 48.82591468416059]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 56, "roussel_fabien": 13.0, "nb_emargement": 1055.0, "nb_procuration": 32.0, "nb_vote_blanc": 19.0, "jadot_yannick": 60.0, "le_pen_marine": 121.0, "nb_exprime": 1032.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1489.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1055, "quartier_bv": "56", "geo_point_2d": [48.82416768659747, 2.3128825896880736], "melenchon_jean_luc": 377.0, "poutou_philippe": 6.0, "macron_emmanuel": 240.0}, "geometry": {"type": "Point", "coordinates": [2.3128825896880736, 48.82416768659747]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8eb5bc1958d2717370992f71762fca73ee134472", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 80, "zemmour_eric": 67.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "14-17", "geo_shape": {"coordinates": [[[2.326273151041003, 48.83416277456605], [2.326229968383852, 48.83418229681138], [2.32602351296984, 48.83419744014498], [2.325829110091385, 48.83421090177949], [2.325634708463065, 48.8342243640049], [2.325428252721165, 48.83423950541114], [2.325233849520479, 48.834252966977004], [2.32502739353722, 48.83426810859026], [2.324832991500171, 48.834281568612646], [2.3246265352873, 48.83429670953358], [2.324432131677811, 48.83431016889647], [2.324225675235137, 48.83432530912512], [2.324225604328043, 48.83432531412071], [2.324031200508462, 48.834338772831565], [2.323844703936107, 48.83435179206546], [2.323650299919338, 48.834365250156935], [2.3234638031688, 48.834378267897286], [2.323269398943385, 48.83439172626865], [2.3230829020030033, 48.83440474341481], [2.322888497580513, 48.8344182011668], [2.3227020004503, 48.834431217718766], [2.322507595830642, 48.834444674851326], [2.322321098510604, 48.834457690809074], [2.322126693705685, 48.83447114642293], [2.321940196184137, 48.834484162685776], [2.321933284315829, 48.83448599149769], [2.321760434528446, 48.834574205785174], [2.3215910787028182, 48.8346628317628], [2.321418227738238, 48.83475104644115], [2.321248870767974, 48.83483967102097], [2.321076018637892, 48.834927885190844], [2.320906660499571, 48.83501651017141], [2.320733807215595, 48.83510472293351], [2.32056444792092, 48.835193347415526], [2.32054195460175, 48.83520435925692], [2.320556070789801, 48.83522824760564], [2.320597469671389, 48.8352522630441], [2.320739391748182, 48.835333668960146], [2.320879160480709, 48.835414750391344], [2.321021083451625, 48.83549615506201], [2.321160851695683, 48.83557723614459], [2.321302776899402, 48.83565864137623], [2.321442546017304, 48.835739722117815], [2.321584472115048, 48.83582112610412], [2.321724242106797, 48.83590220650481], [2.321866169086859, 48.83598361014503], [2.322005939952459, 48.83606469020476], [2.322023104528803, 48.8360651310565], [2.322196575232612, 48.835979279049276], [2.322372932640809, 48.83589423728537], [2.322546402188148, 48.835808385657], [2.322722758447439, 48.835723343364315], [2.322896226849806, 48.83563749121549], [2.323072580609669, 48.83555244748704], [2.323080807355294, 48.83555071778764], [2.323102317733762, 48.835550742388186], [2.323227446819609, 48.83555088834132], [2.32338500966249, 48.83555233555719], [2.323531650482885, 48.83555250664492], [2.323689211976895, 48.835553953452326], [2.32370219198933, 48.83556525009294], [2.323660475013658, 48.83566915056108], [2.323608597101858, 48.83579667847454], [2.323566879754414, 48.83590057888851], [2.323515001383203, 48.836028106734986], [2.323473283663984, 48.83613200709482], [2.323438655589936, 48.83621712910721], [2.323469218042102, 48.83623268930025], [2.323529218516613, 48.83620296089902], [2.323694769957329, 48.83614243858874], [2.3238685905369, 48.83607825828457], [2.324034141187425, 48.836017735497805], [2.324207962283965, 48.83595355560035], [2.3243735107821832, 48.835893032329444], [2.324547331056694, 48.83582885103234], [2.324712880127036, 48.83576832729272], [2.32488669820554, 48.83570414548759], [2.325052246485891, 48.83564362127152], [2.325226065093013, 48.835579438973795], [2.325391611220962, 48.83551891427363], [2.32556542899429, 48.835454731475586], [2.325730975694454, 48.835394206306624], [2.325904791271884, 48.83533002300062], [2.326070337181953, 48.83526949735527], [2.32624415328789, 48.835205313556614], [2.326409697045566, 48.83514478742714], [2.3265835123179093, 48.83508060312824], [2.326749056647789, 48.83502007653002], [2.32686456429832, 48.83497742282079], [2.326876641892137, 48.83495862918078], [2.3268467290576043, 48.83493578769321], [2.3267545377046153, 48.83480941171634], [2.326667976539181, 48.834691226442864], [2.326581415766154, 48.834573041094245], [2.32648922433574, 48.834446664864245], [2.326402664374089, 48.834328479360465], [2.326310475171826, 48.83420210297278], [2.326286068881383, 48.83416877868563], [2.326273151041003, 48.83416277456605]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 17, "roussel_fabien": 28.0, "nb_emargement": 1225.0, "nb_procuration": 48.0, "nb_vote_blanc": 12.0, "jadot_yannick": 114.0, "le_pen_marine": 47.0, "nb_exprime": 1211.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1482.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1225, "quartier_bv": "56", "geo_point_2d": [48.83506092912161, 2.323766602035103], "melenchon_jean_luc": 328.0, "poutou_philippe": 8.0, "macron_emmanuel": 487.0}, "geometry": {"type": "Point", "coordinates": [2.323766602035103, 48.83506092912161]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6d14aeef13701f5caee0f6fd989862376467ad5d", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 99, "zemmour_eric": 105.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "5-2", "geo_shape": {"coordinates": [[[2.343030253980965, 48.846091329779675], [2.342995744637534, 48.8460948995977], [2.342973672119568, 48.84609718417005], [2.342955154053835, 48.84611195519507], [2.342843601143352, 48.84617983868854], [2.342673821349989, 48.846313735397274], [2.342613453235005, 48.84638703613036], [2.342606543787364, 48.84639109115272], [2.342449886252191, 48.84643245789922], [2.342279638633479, 48.846476843527505], [2.3421229819550042, 48.84651820895095], [2.341952732415148, 48.84656259410318], [2.341796075208077, 48.84660395999467], [2.341625825109773, 48.846648344678286], [2.341618636003155, 48.84666072078362], [2.341697949522302, 48.84676575011649], [2.341789297742454, 48.84687720766946], [2.341868611934915, 48.84698223686878], [2.341959960888173, 48.84709369516909], [2.341952271626528, 48.84710650832542], [2.341775600809148, 48.847145251285575], [2.341618363683524, 48.84717768399933], [2.341441692376521, 48.84721642646398], [2.341284456202333, 48.847248857845024], [2.3411077830433022, 48.84728759980659], [2.340950546435104, 48.847320031646056], [2.340864290464701, 48.847349045568755], [2.340895396350439, 48.847406816429235], [2.340895527087027, 48.84740703839199], [2.3409667181270812, 48.84752374474675], [2.341040981268394, 48.84764560330838], [2.3411121729714512, 48.84776230865231], [2.341186436792742, 48.84788416709756], [2.341257630498806, 48.848000873236735], [2.341331895000187, 48.8481227315656], [2.3414030879951673, 48.84823943758572], [2.34147735318801, 48.84836129489893], [2.341548546834747, 48.84847800080747], [2.341622812696331, 48.84859985890358], [2.341694006994634, 48.848716564700545], [2.341768273536434, 48.84883842268025], [2.341839469860431, 48.8489551274739], [2.341913737082255, 48.8490769853372], [2.34198493268402, 48.849193690911065], [2.342059200585976, 48.849315548657955], [2.342130396850684, 48.849432253220975], [2.342204665432881, 48.84955411085144], [2.342275862337937, 48.84967081620219], [2.342350131600183, 48.84979267371625], [2.342421330530981, 48.849909378063614], [2.34249560047349, 48.85003123546125], [2.342566798681973, 48.850147940588855], [2.342609271794021, 48.85021762772689], [2.342641007660244, 48.850257399892506], [2.3427374939289862, 48.850230739699974], [2.342890077460927, 48.85018285872124], [2.343048429964031, 48.85013697791676], [2.343201014309765, 48.85008909564565], [2.343359366254188, 48.85004321442578], [2.343511950028347, 48.84999533265339], [2.343670301414088, 48.84994945101817], [2.343681965212882, 48.849949671488794], [2.343837274136107, 48.850001882035336], [2.344001699789556, 48.85005369538136], [2.344157009343147, 48.850105905507995], [2.344321436994102, 48.85015771931655], [2.344476747189374, 48.85020992812397], [2.344641175486463, 48.85026174148828], [2.344660568009317, 48.850252502489774], [2.344633874315004, 48.85011249096395], [2.344610590184585, 48.85001702886419], [2.34458389675648, 48.84987701639828], [2.344535488998399, 48.849710489708436], [2.34454352377513, 48.84970052297796], [2.344712688328782, 48.849652891490024], [2.344920427740277, 48.849594975471554], [2.345089590244124, 48.849547343438836], [2.345297328804682, 48.849489427659776], [2.345466491995477, 48.84944179419776], [2.345674228353723, 48.84938387775135], [2.345843390845989, 48.849336244651255], [2.345866373193013, 48.84933507433094], [2.345876879768014, 48.8493297680043], [2.3460592363025983, 48.84927613426999], [2.3462402270791403, 48.849220538490144], [2.346422581494772, 48.84916690418931], [2.34660357151559, 48.84911130695509], [2.346785925175036, 48.849057672095235], [2.346966914417571, 48.84900207520517], [2.347149268683594, 48.848948439793716], [2.347330255807726, 48.848892841441874], [2.347512609317453, 48.848839205471386], [2.347693595663312, 48.84878360746378], [2.347875948416946, 48.848729970934244], [2.348056934007047, 48.84867437147229], [2.34823928600438, 48.84862073438373], [2.348420272178868, 48.84856513527337], [2.348424908322237, 48.84854365147539], [2.348412964369666, 48.84852335626787], [2.348254562233893, 48.848479187594904], [2.348091248463853, 48.84843420051136], [2.347932846871748, 48.84839003140893], [2.347769535032735, 48.848345042990715], [2.347611133984302, 48.848300873458854], [2.347447821328516, 48.84825588548981], [2.347447662442375, 48.84825584145399], [2.347261006894851, 48.84820562384663], [2.347097696202353, 48.84816063540323], [2.347095549745754, 48.84815988891379], [2.347023360628493, 48.84813233341763], [2.346847544548251, 48.84805735561497], [2.346686600282618, 48.84798758779864], [2.346510783812684, 48.847912609483906], [2.346349840456198, 48.84784284030621], [2.346174026321743, 48.84776786149432], [2.346013082489112, 48.8476980927464], [2.345837269327495, 48.84762311342988], [2.345676327766751, 48.84755334332806], [2.345500514215349, 48.847478363499505], [2.345339573541076, 48.8474085938349], [2.3451786332978353, 48.84733882394944], [2.345002821186204, 48.84726384337508], [2.344997212253352, 48.84725897321448], [2.344935802600768, 48.8471293270898], [2.344876202284892, 48.847000162988344], [2.344814793226908, 48.84687051767075], [2.344755193506929, 48.84674135347904], [2.344693785055041, 48.84661170806925], [2.344634185930953, 48.84648254378721], [2.344625553923643, 48.84647665335901], [2.344431182234262, 48.84643284454446], [2.344233048367709, 48.846388183780256], [2.344038677326918, 48.84634437522382], [2.343840545495566, 48.84629971381354], [2.343646175114679, 48.84625590461597], [2.343448042593551, 48.84621124254465], [2.343253672883908, 48.84616743180667], [2.343055541035506, 48.846122769081774], [2.343030253980965, 48.846091329779675]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 2, "roussel_fabien": 20.0, "nb_emargement": 1279.0, "nb_procuration": 80.0, "nb_vote_blanc": 12.0, "jadot_yannick": 90.0, "le_pen_marine": 76.0, "nb_exprime": 1265.0, "nb_vote_nul": 1.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1613.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "20", "geo_point_2d": [48.84822142016084, 2.343964904592303], "melenchon_jean_luc": 287.0, "poutou_philippe": 5.0, "macron_emmanuel": 529.0}, "geometry": {"type": "Point", "coordinates": [2.343964904592303, 48.84822142016084]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ee69a4d6c2c1d88ad14f9a42206907f649850413", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 66, "zemmour_eric": 81.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "12-20", "geo_shape": {"coordinates": [[[2.389289675742523, 48.83899149285755], [2.389335684990893, 48.8390086915118], [2.389494062166284, 48.839074410479135], [2.389682932967212, 48.83915329498575], [2.38984131101981, 48.83921901348485], [2.390030184222146, 48.83929789833921], [2.390121990199188, 48.839335993036336], [2.3901323861011172, 48.83933422752939], [2.390142608122375, 48.83930912899508], [2.390236056682922, 48.839201003858584], [2.390334168255286, 48.839078463152134], [2.390347770625774, 48.83907373078543], [2.390547617149979, 48.83908889881083], [2.390744158386463, 48.8391029056787], [2.390944005137875, 48.8391180730415], [2.391140545228473, 48.83913207925082], [2.391340392196682, 48.839147246850295], [2.391536933876607, 48.839161251515584], [2.391736781072011, 48.83917641845242], [2.391933322957943, 48.8391904233654], [2.391943410631007, 48.8391884429858], [2.3920912717959393, 48.83910862069578], [2.392241526984258, 48.8390273426247], [2.392389387235642, 48.83894751995466], [2.392539641484209, 48.838866242396705], [2.392687502184353, 48.83878641935361], [2.392837754151734, 48.83870514050327], [2.392985613938437, 48.83862531708018], [2.393135864976559, 48.838544037843675], [2.393149621824548, 48.83854343940976], [2.393161182466494, 48.83853218588291], [2.393273823894738, 48.83840560725862], [2.393389996442203, 48.838277957296214], [2.393502636765394, 48.838151378427696], [2.393618808185884, 48.83802372821403], [2.393626538606647, 48.83801975174863], [2.393775245771441, 48.837990032396206], [2.393926395286115, 48.837960341422324], [2.394075102110549, 48.837930621695534], [2.394226251282139, 48.837900930341185], [2.39424269398214, 48.83789406063908], [2.394242601368808, 48.83788221736503], [2.394145288273296, 48.837782328771326], [2.394027809105662, 48.83766237837337], [2.3939304968321933, 48.837562489585224], [2.393813018654318, 48.83744253895277], [2.393715707192421, 48.83734265086959], [2.393598230004293, 48.83722270000258], [2.393500919374879, 48.8371228108257], [2.39338344317649, 48.837002859724166], [2.393286133369091, 48.836902970352874], [2.393270454056152, 48.83689928437574], [2.393072179037407, 48.83694193448536], [2.392870218619356, 48.83698503053125], [2.392671941574133, 48.837027680866576], [2.3924699804929492, 48.83707077623341], [2.392271704156435, 48.83711342590897], [2.392069742412128, 48.837156520596736], [2.391871464059613, 48.837199169598605], [2.391669501652185, 48.83724226360729], [2.3914712240084, 48.83728491194944], [2.391269260937862, 48.837328005279076], [2.391209390212452, 48.837307397454886], [2.391189639457199, 48.837325571091625], [2.391097694597774, 48.837401067793344], [2.390973681107354, 48.8375039306512], [2.390842023965488, 48.83761203370851], [2.390718009468701, 48.83771489628189], [2.390586349901445, 48.83782299903049], [2.390462334398075, 48.83792586131938], [2.39033067512997, 48.838033963773086], [2.390206658620212, 48.83813682577749], [2.390074996916166, 48.83824492882176], [2.389950979399803, 48.83834779054167], [2.389826961393965, 48.838450652123555], [2.389695299482649, 48.838558753827186], [2.389678295387445, 48.838575333152946], [2.389677366811048, 48.83857912012669], [2.389575599865742, 48.838679030832765], [2.389477672155707, 48.838789042890305], [2.38937590441766, 48.838888953407725], [2.389300579708736, 48.838973572078295], [2.389289675742523, 48.83899149285755]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 20, "roussel_fabien": 15.0, "nb_emargement": 1115.0, "nb_procuration": 58.0, "nb_vote_blanc": 7.0, "jadot_yannick": 115.0, "le_pen_marine": 57.0, "nb_exprime": 1104.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1351.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1115, "quartier_bv": "46", "geo_point_2d": [48.83815411476451, 2.391819838519277], "melenchon_jean_luc": 321.0, "poutou_philippe": 11.0, "macron_emmanuel": 384.0}, "geometry": {"type": "Point", "coordinates": [2.391819838519277, 48.83815411476451]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "104294bfc7d0e5908d34b7295084e26009643eb9", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 74, "zemmour_eric": 78.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "6-9", "geo_shape": {"coordinates": [[[2.330425124109578, 48.854453537962456], [2.330439195256774, 48.85446821862832], [2.330466660227743, 48.85451179226782], [2.330466980130919, 48.85451235165786], [2.330522469524675, 48.854619293244596], [2.330590660167311, 48.854751672150556], [2.330646150081214, 48.85485861275758], [2.330714339976891, 48.854990992456216], [2.330769831762412, 48.85509793299049], [2.330770515665579, 48.855099015141384], [2.330861153523872, 48.85522032690615], [2.330957123232585, 48.8553480259334], [2.331047760595656, 48.85546933752199], [2.331143732571624, 48.85559703727789], [2.331234370813855, 48.85571834779862], [2.331330343705813, 48.855846047376225], [2.331420982804026, 48.85596735862771], [2.331516956623527, 48.8560950571277], [2.3316075965894782, 48.85621636821066], [2.3316652698076172, 48.85629310570376], [2.331669110100596, 48.85629919598916], [2.331735805313551, 48.856294488029974], [2.331937111478129, 48.85622322133367], [2.332120424670322, 48.85615783996818], [2.332303738765217, 48.85609245832566], [2.332505043372467, 48.856021190661004], [2.332505063906995, 48.85602118358074], [2.332688375675623, 48.85595580133331], [2.332863747163858, 48.85589346471375], [2.333047058044588, 48.85582808101001], [2.333222430036578, 48.85576574386522], [2.333405740006382, 48.855700360503825], [2.333581109776652, 48.85563802281859], [2.333756479138705, 48.85557568397354], [2.333939789132562, 48.85551029979045], [2.333940105366821, 48.85551019003081], [2.334105675155474, 48.85545452508891], [2.334283164499309, 48.85539512915972], [2.334448733567444, 48.85533946283803], [2.334626222116698, 48.85528006729314], [2.3347917904527202, 48.855224400491046], [2.334969278218985, 48.85516500443116], [2.335134845822891, 48.85510933714862], [2.335312332806271, 48.85504994057372], [2.335502429192297, 48.854986135875485], [2.335679915337007, 48.85492673874882], [2.335870010812092, 48.854862934358835], [2.336047496129493, 48.854803535781066], [2.336237589342192, 48.85473973079249], [2.336415073809563, 48.85468033256223], [2.336434042221743, 48.8546852708838], [2.336521082712935, 48.854842719616904], [2.336605584443409, 48.85499665300144], [2.336617453594727, 48.855002561907085], [2.336694537398701, 48.85500609380423], [2.336763607800944, 48.85500927365645], [2.336820125503579, 48.85501463228331], [2.3368263556770428, 48.85500110905246], [2.3368337495029152, 48.85494552229153], [2.336852985184955, 48.854813818674586], [2.336869210402615, 48.854691841059456], [2.336888447264184, 48.85456013741429], [2.336904672331281, 48.854438158867204], [2.336923909009461, 48.854306455186276], [2.336940133914556, 48.8541844766065], [2.336959369046759, 48.854052772882284], [2.336975593789854, 48.85393079426986], [2.336975491538395, 48.853928655037606], [2.336964266855664, 48.853893643013485], [2.336954782702759, 48.85385251512614], [2.336954488533304, 48.85385057088962], [2.336956546468474, 48.853702232804046], [2.336963349147895, 48.853553949770095], [2.336965408408801, 48.853405611652335], [2.336972211024179, 48.853257328578295], [2.336974268885467, 48.85310899041324], [2.336981071448453, 48.852960706399855], [2.33694051327118, 48.85293351177794], [2.336885270752354, 48.85292547207865], [2.336688474672682, 48.85297426313366], [2.33647452270207, 48.85302777028182], [2.336277725851457, 48.85307656065678], [2.336063774401818, 48.85313006707314], [2.336054545297788, 48.85313016875249], [2.335877833758847, 48.85309038267314], [2.335712128590326, 48.853051894948614], [2.335662045801379, 48.85304043789932], [2.335631679861826, 48.85309360018519], [2.335445499966998, 48.853117377708166], [2.3352721525845572, 48.85313943381724], [2.335085973724583, 48.8531632107874], [2.334912626037495, 48.85318526637474], [2.334726445475563, 48.85320904367621], [2.33455309748383, 48.85323109874179], [2.334366917968247, 48.853254874591165], [2.334193569671878, 48.85327692913498], [2.33419234471118, 48.85327712377439], [2.334097458303265, 48.85329532482516], [2.334006752589028, 48.85331281519645], [2.334005397924015, 48.85331302799849], [2.333872968790704, 48.85332911326842], [2.33374139677503, 48.853345094342664], [2.333609824678653, 48.85336107527195], [2.333477395289623, 48.85337716100269], [2.333472934249022, 48.85337826034718], [2.333301189207179, 48.853445159001616], [2.333132408751633, 48.85351114129888], [2.332963629219913, 48.85357712426106], [2.332791881517486, 48.853644021265616], [2.332789927286783, 48.85364465160897], [2.332624230425199, 48.85368769793082], [2.332460627523607, 48.85373014324408], [2.332294928766973, 48.8537731881997], [2.33213132667999, 48.85381563396631], [2.331967722963684, 48.85385807950002], [2.331802024755733, 48.853901123775756], [2.331638420502872, 48.85394356885595], [2.331472720388255, 48.85398661266478], [2.331472539902881, 48.85398665842283], [2.33129002871183, 48.85403181327114], [2.331108968173388, 48.85407689950516], [2.330926454976856, 48.85412205468695], [2.330745395173058, 48.85416714037473], [2.330562881356934, 48.85421229409902], [2.33038181955064, 48.85425738012472], [2.330334621038398, 48.854268793210494], [2.330334399419735, 48.85427532668456], [2.330351659035854, 48.85430299031124], [2.330375717417147, 48.85435361024754], [2.330428519466483, 48.854437383861566], [2.330425124109578, 48.854453537962456]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 9, "roussel_fabien": 10.0, "nb_emargement": 735.0, "nb_procuration": 56.0, "nb_vote_blanc": 5.0, "jadot_yannick": 42.0, "le_pen_marine": 39.0, "nb_exprime": 730.0, "nb_vote_nul": 0.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 914.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 735, "quartier_bv": "24", "geo_point_2d": [48.85447715238955, 2.333767292469145], "melenchon_jean_luc": 106.0, "poutou_philippe": 2.0, "macron_emmanuel": 348.0}, "geometry": {"type": "Point", "coordinates": [2.333767292469145, 48.85447715238955]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ba2accd5d0f688bd5c542582acf5539ff80d34d0", "fields": {"lassalle_jean": 23.0, "pecresse_valerie": 43, "zemmour_eric": 78.0, "hidalgo_anne": 56.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-48", "geo_shape": {"coordinates": [[[2.398634541858228, 48.8551614658539], [2.398634982235981, 48.85515613763057], [2.398708934792448, 48.85511224065404], [2.398761705656347, 48.855080829876236], [2.398763166138488, 48.855079812857014], [2.398856048441931, 48.85500099207869], [2.3989683061859832, 48.85490955985562], [2.3989683458302062, 48.85490730448919], [2.398947854746695, 48.85489515029493], [2.398800787292235, 48.854830456111905], [2.398651689753193, 48.85476515077542], [2.398504623033462, 48.854700456220826], [2.398355526227202, 48.85463515140699], [2.398208460252378, 48.85457045558153], [2.398059364189277, 48.85450515039105], [2.397912298949186, 48.85444045419403], [2.3977632036292422, 48.85437514862688], [2.397758034428896, 48.85436440506956], [2.397822479273077, 48.8542547030626], [2.397887097703124, 48.85414446227547], [2.397951542003569, 48.85403476017729], [2.398016158535403, 48.8539245183925], [2.398080603654914, 48.85381481620994], [2.398145219630568, 48.853704575232975], [2.398209664206348, 48.853594872959206], [2.398274279646603, 48.85348463099143], [2.398338722315874, 48.85337492861955], [2.39840333856275, 48.85326468746642], [2.398394752819873, 48.85325287181107], [2.39819665594506, 48.853211359935955], [2.3980011324527393, 48.8531703166472], [2.397803036205351, 48.85312880411735], [2.397607513322443, 48.85308776108169], [2.397409417702484, 48.8530462478971], [2.397213895439385, 48.853005204215194], [2.397163743050979, 48.8529830757587], [2.397162546575666, 48.852983539191335], [2.397144435693963, 48.8530067644928], [2.397133069726132, 48.85302372292888], [2.397133317430843, 48.853025636195056], [2.397040061064166, 48.85314746080047], [2.39695448632127, 48.85325576543894], [2.396861229124745, 48.85337758987978], [2.396775653621708, 48.85348589526724], [2.39669007777335, 48.85359419968363], [2.396596817990162, 48.85371602387441], [2.396511241392261, 48.85382432814047], [2.39641798214189, 48.85394615217354], [2.3963324047838173, 48.85405445718856], [2.396239144713879, 48.854176280157766], [2.396153566606143, 48.85428458502243], [2.396091521877762, 48.854365631509516], [2.396078257105748, 48.854373273781135], [2.396072086010579, 48.85438244837115], [2.396040868440512, 48.85442322557542], [2.395950535780647, 48.854536353767195], [2.395857272592708, 48.854658176379075], [2.395766939126927, 48.854771304408324], [2.395673675089115, 48.854893126851316], [2.395583340817507, 48.85500625471807], [2.395490075929917, 48.85512807699216], [2.395399739489538, 48.85524120468951], [2.395306475114989, 48.85536302680168], [2.395216137868556, 48.85547615433647], [2.395215707154043, 48.85547674483002], [2.395122441917195, 48.855598567672196], [2.39503566325453, 48.85572958128557], [2.394944353610569, 48.85586390219747], [2.394857574068661, 48.855994914751115], [2.394766263500633, 48.856129235495054], [2.394679483058582, 48.85626024878757], [2.394588172929336, 48.85639456937041], [2.394501390234711, 48.856525582495514], [2.394514220855114, 48.85655618835677], [2.394523142721813, 48.85656156932875], [2.394739920908772, 48.856591286835865], [2.394934716100724, 48.85662668998709], [2.395151494793346, 48.85665640674691], [2.395346290508501, 48.856691809226085], [2.395347353598498, 48.85669192611689], [2.395528163069376, 48.85670701601793], [2.395703568188726, 48.85672143891731], [2.39588437922805, 48.85673652828655], [2.396059783192901, 48.85675094975726], [2.3962405944377903, 48.85676603858787], [2.396415998590157, 48.85678046043536], [2.396596810040605, 48.856795548727355], [2.396772215764196, 48.85680996915983], [2.396947620211593, 48.856824390227466], [2.397128431968425, 48.85683947771563], [2.397145805468825, 48.85683981256399], [2.397159443794171, 48.8567980400555], [2.397247100627408, 48.85666938845676], [2.3973340669933743, 48.85654171359202], [2.397421721611762, 48.856413060929476], [2.39750868712192, 48.85628538590838], [2.397596342240798, 48.85615673309511], [2.397683306895357, 48.856029057917596], [2.397770961141477, 48.85590040584604], [2.397857924950742, 48.85577272961289], [2.397944888323436, 48.85564505420111], [2.398032539914869, 48.8555164018866], [2.398035804264572, 48.85551343427203], [2.398154855509564, 48.855442209391995], [2.398285412012268, 48.85536389962419], [2.398285465525562, 48.8553638684161], [2.398402499175929, 48.855294399457485], [2.398569546391168, 48.8551970699473], [2.398612626691254, 48.85517149766252], [2.398634541858228, 48.8551614658539]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 48, "roussel_fabien": 34.0, "nb_emargement": 1461.0, "nb_procuration": 80.0, "nb_vote_blanc": 13.0, "jadot_yannick": 145.0, "le_pen_marine": 54.0, "nb_exprime": 1446.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1814.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1463, "quartier_bv": "80", "geo_point_2d": [48.85516042179597, 2.39679136217293], "melenchon_jean_luc": 595.0, "poutou_philippe": 11.0, "macron_emmanuel": 395.0}, "geometry": {"type": "Point", "coordinates": [2.39679136217293, 48.85516042179597]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a74d0ffca9fe39d0f07ccfc9c24fd1ca6edef08a", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 74, "zemmour_eric": 63.0, "hidalgo_anne": 66.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-54", "geo_shape": {"coordinates": [[[2.345530093985815, 48.82789024961494], [2.345533385937471, 48.827886595482205], [2.345486554862152, 48.827755251689666], [2.345441214474149, 48.82762605923201], [2.345394383865067, 48.82749471537292], [2.345349043943341, 48.82736552195102], [2.345302212438396, 48.82723417801786], [2.345256872960357, 48.827104985430346], [2.345210043283735, 48.82697364143801], [2.345164704271962, 48.82684444788625], [2.345117875061558, 48.82671310382737], [2.345072536493452, 48.826583911109985], [2.345025707749259, 48.82645256698447], [2.344980369647407, 48.82632337330289], [2.344980433761518, 48.826319137591945], [2.345022876832105, 48.826205390300935], [2.345065931322653, 48.82609305205815], [2.345066250867667, 48.8260899518589], [2.345046460586015, 48.825966763804935], [2.34502717036007, 48.82585224486552], [2.345026792328282, 48.825850892830736], [2.344979994515589, 48.825733627609885], [2.344926234661414, 48.82559948608816], [2.344879437300653, 48.82548222080168], [2.34482567796443, 48.82534807920476], [2.344778881055494, 48.82523081385264], [2.344725122237211, 48.825096672180464], [2.344678325779992, 48.82497940676279], [2.344624567468442, 48.824845265914696], [2.344577771474339, 48.82472799953209], [2.344524013680613, 48.82459385860873], [2.344477218138421, 48.824476592160515], [2.344423460862614, 48.82434245116197], [2.344376665772121, 48.82422518464814], [2.344389761111357, 48.824213899997346], [2.344481826000292, 48.82421356288309], [2.344568844817867, 48.8242124308715], [2.344581832423886, 48.82420136955443], [2.34456389020469, 48.82415127029525], [2.344546101753726, 48.824103244040806], [2.344554619618668, 48.82408682311573], [2.3445479181324558, 48.824080000576735], [2.344497098741023, 48.82407459196625], [2.344339755542347, 48.824046721054366], [2.344342047524063, 48.82405368491445], [2.344378384737698, 48.82407613835198], [2.344247489242639, 48.82418720254163], [2.344118231555036, 48.82429687703026], [2.343987334951529, 48.82440794091335], [2.343858074807419, 48.82451761509177], [2.343727177095653, 48.82462867866824], [2.343597917218969, 48.82473835255139], [2.3434686554365483, 48.8248480262766], [2.343337756054382, 48.8249590902935], [2.343208494539377, 48.82506876372344], [2.343077594060148, 48.82517982653437], [2.3430773408088292, 48.825180034698136], [2.34294779369773, 48.8252836408616], [2.342813426841049, 48.82539092582536], [2.342683878681497, 48.825494531683475], [2.342549512100291, 48.82560181633802], [2.342419961530225, 48.82570542188332], [2.342285593862543, 48.825812706221186], [2.342156043606057, 48.82591631146859], [2.342021673489624, 48.82602359548228], [2.341892122184655, 48.826127200424345], [2.341757752343685, 48.826234484128825], [2.341697560205179, 48.82623388299029], [2.341695006491482, 48.82626643805787], [2.34165717176254, 48.826301274889715], [2.34166923719578, 48.82631975334684], [2.341667314572818, 48.826392617443965], [2.341665455034008, 48.82646307425294], [2.341659666901217, 48.826575828686195], [2.34165588333248, 48.826719149551714], [2.341650095150557, 48.826831903958734], [2.341650088201795, 48.82683223848842], [2.341650739960886, 48.826960982367915], [2.341646957690391, 48.827104304090824], [2.341647183065525, 48.82714880465277], [2.341652886701497, 48.82715946307684], [2.341728180466617, 48.82716494912497], [2.341775464138086, 48.827161044372275], [2.341831895861563, 48.827161041974286], [2.341844838649874, 48.82716723075871], [2.341910658202103, 48.82729965191679], [2.341975473593509, 48.82742790968247], [2.342041293795298, 48.82756033163723], [2.342106108481409, 48.8276885883955], [2.342171930706226, 48.827821010255064], [2.342236746037798, 48.827949266912725], [2.342302568923554, 48.82808168866962], [2.342367384900699, 48.82820994522669], [2.342368340557525, 48.8282113966767], [2.342434904370953, 48.828293552740945], [2.342505401560159, 48.82837912462621], [2.342571965803728, 48.82846128060187], [2.342642463433373, 48.82854685329289], [2.3426548915743632, 48.828551543490704], [2.342730851584336, 48.828549839352576], [2.342782165223813, 48.82854814272791], [2.342794891367094, 48.828541405295525], [2.342842042177017, 48.828420941326094], [2.342883659032399, 48.828303327617455], [2.342892044375023, 48.82829697643769], [2.343063872155015, 48.828253456228715], [2.343232687530457, 48.828210825799616], [2.343404513380028, 48.82816730509046], [2.343573329548753, 48.82812467508403], [2.3437451548413453, 48.82808115298279], [2.343913969090444, 48.82803852248478], [2.344082783063464, 48.82799589174685], [2.344254608868426, 48.82795236891612], [2.344423422283931, 48.82790973769413], [2.344595246147258, 48.82786621526252], [2.344764060378662, 48.82782358266455], [2.344935883673571, 48.82778005974023], [2.344944912957256, 48.82777989064936], [2.345079948460493, 48.82780840921259], [2.345223904524044, 48.82783816093955], [2.34535894033072, 48.8278666791863], [2.34550289671438, 48.82789643057588], [2.345530093985815, 48.82789024961494]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 54, "roussel_fabien": 36.0, "nb_emargement": 1405.0, "nb_procuration": 66.0, "nb_vote_blanc": 21.0, "jadot_yannick": 134.0, "le_pen_marine": 78.0, "nb_exprime": 1380.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1731.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1404, "quartier_bv": "51", "geo_point_2d": [48.82655991778598, 2.3435746292007473], "melenchon_jean_luc": 464.0, "poutou_philippe": 10.0, "macron_emmanuel": 416.0}, "geometry": {"type": "Point", "coordinates": [2.3435746292007473, 48.82655991778598]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fdc3c7da606140dd3d95b082ef265b221060764b", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 49, "zemmour_eric": 73.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-59", "geo_shape": {"coordinates": [[[2.374081099688326, 48.84590508471161], [2.374068275936786, 48.84592844499022], [2.374081535524144, 48.846058154082], [2.37409387883211, 48.84618156286019], [2.374107137185095, 48.84631127191254], [2.374119480624334, 48.84643467976074], [2.374131824122134, 48.84655808759397], [2.374145082665351, 48.84668779659834], [2.374157426272927, 48.84681120530019], [2.374170686306773, 48.846940914279394], [2.374181340995856, 48.84694909030744], [2.374364833768251, 48.84697585254928], [2.374542499430163, 48.84700061175516], [2.374725993931937, 48.84702737344895], [2.374903659941071, 48.84705213211741], [2.374912953214741, 48.84705680606504], [2.374979306359755, 48.847141658985876], [2.375089626554904, 48.84729152397862], [2.37515598029721, 48.84737637588432], [2.37515814260252, 48.8474018569537], [2.375181532215016, 48.847409434773404], [2.37527493815336, 48.84747907316699], [2.375453839906446, 48.84760496917367], [2.375547246559028, 48.84767460734244], [2.375549431672848, 48.847676822170214], [2.375622561908343, 48.847782152415036], [2.37571048117946, 48.84790858042296], [2.375783612065786, 48.84801391054744], [2.375871532129378, 48.848140337511396], [2.375944663655571, 48.848245668414805], [2.376000218634306, 48.84832555565509], [2.376014106759669, 48.84832959154896], [2.3760480949234, 48.84831666609439], [2.376179181427929, 48.848242516969286], [2.376352495552413, 48.84814738101243], [2.376483581198107, 48.84807323154257], [2.376656894203801, 48.84797809513033], [2.376787980363857, 48.84790394442345], [2.376961292250961, 48.847808807555786], [2.377092376178796, 48.84773465739637], [2.377109588606968, 48.84773087708227], [2.377122502306085, 48.847708920883385], [2.377271361320716, 48.847612483485925], [2.377422043999051, 48.847513572265186], [2.377570901912125, 48.84741713357879], [2.377689705663625, 48.8473391469595], [2.377721583457108, 48.847318221963455], [2.377722712770191, 48.84730923607263], [2.377696704932974, 48.84730087528309], [2.377577377735352, 48.8472197252747], [2.377422703831367, 48.847113524000186], [2.37730337747864, 48.84703237460413], [2.377148704699718, 48.84692617205827], [2.377029379202619, 48.84684502237529], [2.376874707527361, 48.84673882035665], [2.376755382896638, 48.84665766948745], [2.376756904656225, 48.84664425271357], [2.3769176298677, 48.846563450757905], [2.377083604735483, 48.84648312019892], [2.377244328943487, 48.84640231779265], [2.377410302794526, 48.84632198676882], [2.377571025988321, 48.846241184811326], [2.377736998833358, 48.846160852423324], [2.377897721023696, 48.84608005001525], [2.378063692841258, 48.84599971806174], [2.378068504198473, 48.84598877001441], [2.37803473020861, 48.84596667889443], [2.377941246150734, 48.84585019282993], [2.377845967865243, 48.8457330255272], [2.377752483285917, 48.84561653928369], [2.377657207214438, 48.845499371813226], [2.377649783507423, 48.8454951547785], [2.377468287039231, 48.845452376855], [2.377296849094408, 48.84541331049558], [2.377125411395757, 48.84537424478841], [2.376943915779156, 48.8453314660648], [2.376931114699926, 48.845332761923785], [2.376793423357447, 48.84540147247536], [2.376651388694146, 48.84547156952965], [2.376513696605282, 48.84554028065005], [2.376371659835729, 48.84561037645708], [2.3762339670113333, 48.845679087247014], [2.376091929476477, 48.84574918361252], [2.376074840016604, 48.845748773418116], [2.375896706381377, 48.845646759163714], [2.375735600049217, 48.845556880381324], [2.375574494262065, 48.84546700227408], [2.375396361217535, 48.84536498634251], [2.375382081203287, 48.845339031857364], [2.375334400525028, 48.84534523490081], [2.375331608575541, 48.84534659184399], [2.375176800915231, 48.84544412463536], [2.375024331544423, 48.84553842725052], [2.374869524101701, 48.845635959634656], [2.374717053624445, 48.84573026094267], [2.374562243663564, 48.84582779380453], [2.374409772068965, 48.84592209470479], [2.374399843347833, 48.8459245169193], [2.374252225738379, 48.84592013128938], [2.374108850815545, 48.84590331696402], [2.374081099688326, 48.84590508471161]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 59, "roussel_fabien": 22.0, "nb_emargement": 1039.0, "nb_procuration": 59.0, "nb_vote_blanc": 12.0, "jadot_yannick": 84.0, "le_pen_marine": 53.0, "nb_exprime": 1024.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1267.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1039, "quartier_bv": "48", "geo_point_2d": [48.84660687308235, 2.376025166285733], "melenchon_jean_luc": 334.0, "poutou_philippe": 3.0, "macron_emmanuel": 338.0}, "geometry": {"type": "Point", "coordinates": [2.376025166285733, 48.84660687308235]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c4fcb080acb87f47f7e7ea310841e15929bbc315", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 35, "zemmour_eric": 72.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "18-63", "geo_shape": {"coordinates": [[[2.361944752834472, 48.89322343234297], [2.361932886619072, 48.89322669120614], [2.361883673438917, 48.893228581945316], [2.361652936774793, 48.89325223008931], [2.361455188779358, 48.89325982546266], [2.361429694579939, 48.89326953078039], [2.361418949881959, 48.89328331762206], [2.3614657460012882, 48.89340845397722], [2.361513323344547, 48.89353596776994], [2.361560119917773, 48.89366110405942], [2.361607697712007, 48.89378861868455], [2.36165449473914, 48.89391375490826], [2.361702074359227, 48.89404126947377], [2.3617488718513, 48.89416640473253], [2.361796450569563, 48.89429391922383], [2.361843248504427, 48.894419055316135], [2.361890827684714, 48.894546569740555], [2.361937626073605, 48.89467170576712], [2.361985205726941, 48.894799219225376], [2.362032004569763, 48.89492435518617], [2.362079584674116, 48.895051869476816], [2.362126383970875, 48.8951770053719], [2.36217396453727, 48.89530451959561], [2.362162826431227, 48.89531555336844], [2.362013778912943, 48.895330903990704], [2.361859978686647, 48.89534719676893], [2.361710930988486, 48.89536254701382], [2.361557130573842, 48.89537883940263], [2.361547473614267, 48.89539220485404], [2.361640501881144, 48.895498742136226], [2.361749178049418, 48.8956201655139], [2.361842205772375, 48.895726702610006], [2.361950882886906, 48.89584812577935], [2.362043912793928, 48.89595466270387], [2.362152590854729, 48.89607608566488], [2.362245621581739, 48.89618262241053], [2.3623543005888212, 48.89630404516326], [2.362447330772124, 48.89641058172273], [2.362556012089405, 48.89653200427438], [2.362649043092709, 48.89663854065501], [2.362742075840669, 48.89674507696032], [2.362850757179815, 48.896866499200115], [2.362859284338874, 48.896892059997725], [2.362881854222789, 48.896898075996084], [2.363007666002266, 48.89688097384027], [2.363205161131065, 48.896854341360424], [2.363398580413595, 48.89682804841499], [2.363596075130657, 48.896801416188424], [2.363789492666211, 48.89677512170392], [2.363986988346443, 48.89674848883871], [2.364180405476949, 48.89672219462078], [2.364377900767408, 48.89669556021041], [2.364571317503743, 48.896669265359876], [2.364768811018649, 48.89664263119557], [2.364962227371882, 48.89661633481321], [2.365159721849929, 48.8965897000102], [2.365353137798106, 48.896563403894525], [2.365550631886233, 48.896536767546344], [2.365744047440421, 48.89651047079804], [2.36594153975289, 48.89648383469597], [2.366134956287836, 48.89645753642303], [2.3663324481995103, 48.89643089967504], [2.3665258629654913, 48.89640460166154], [2.366723355851209, 48.89637796337559], [2.366916770223071, 48.8963516647295], [2.367114262697036, 48.89632502669688], [2.367307676685704, 48.89629872651894], [2.367505167394943, 48.896272087833225], [2.367698582353373, 48.89624578702989], [2.367896072661781, 48.89621914769825], [2.368089485851245, 48.89619284715442], [2.36828697712272, 48.89616620718406], [2.3684803899289433, 48.89613990510836], [2.368677880799569, 48.896113264492094], [2.368871293211526, 48.896086961783844], [2.369068782317499, 48.896060320514444], [2.369262195688285, 48.896034018080044], [2.369459684393397, 48.89600737616474], [2.369653096017001, 48.89598107219135], [2.369850585685036, 48.89595442963732], [2.370043996914551, 48.89592812503134], [2.370241484817911, 48.89590148182426], [2.370434897006144, 48.89587517749212], [2.370632384508518, 48.89584853363914], [2.37082579494963, 48.895822227767965], [2.371023283414997, 48.895795583276275], [2.371216693461894, 48.89576927677255], [2.371263052971316, 48.8957763855649], [2.371278281042891, 48.8957651305161], [2.371289958854494, 48.89574968669154], [2.371262027643416, 48.89571694788628], [2.371082452294729, 48.89566998417673], [2.3708922063759132, 48.89561980573597], [2.370712633059766, 48.89557284147484], [2.370522387852349, 48.89552266244213], [2.370342813841075, 48.895475697615154], [2.370152569334182, 48.8954255188898], [2.369972997366229, 48.89537855261202], [2.369782753570737, 48.89532837329476], [2.369603180896687, 48.89528140735039], [2.36941293782349, 48.89523122654191], [2.369233367181985, 48.89518426004603], [2.369043124820305, 48.89513407864563], [2.368863553483598, 48.89508711158387], [2.368673311833239, 48.89503692959151], [2.368493741165212, 48.894989961971106], [2.368303500215367, 48.89493978028611], [2.368123931590801, 48.894892811214945], [2.367933691352377, 48.89484262893805], [2.367754122021818, 48.89479566020027], [2.367563882505745, 48.89474547643219], [2.3673843152076373, 48.89469850714295], [2.367194076402999, 48.89464832278293], [2.3670145084097243, 48.89460135292779], [2.366824270316531, 48.894551167975905], [2.366644704355813, 48.89450419756934], [2.366454466974166, 48.89445401202553], [2.366274900318293, 48.89440704105309], [2.366272422957616, 48.894406184381744], [2.366116148819455, 48.89433776985691], [2.365958586564063, 48.894268988574], [2.365802313250084, 48.89420057363107], [2.365644750449675, 48.89413179281864], [2.365488477959876, 48.8940633774576], [2.365330917353091, 48.89399459623092], [2.365174645687469, 48.893926180451786], [2.365017085910459, 48.89385739880354], [2.36486081506891, 48.893788982606324], [2.364703256121775, 48.89372020053658], [2.364546986104399, 48.89365178392127], [2.364389427986934, 48.89358300142999], [2.36423315879383, 48.89351458439659], [2.364075601506137, 48.893445801483864], [2.3639193331372033, 48.89337738403239], [2.363761776690266, 48.893308599798836], [2.363605509145504, 48.89324018192927], [2.363447953517348, 48.89317139817354], [2.363439686011836, 48.893169917112], [2.363255217410645, 48.89317651045731], [2.363057468572745, 48.89318410846979], [2.3628729998728772, 48.893190701226246], [2.36267525228913, 48.893198298614784], [2.36249078349049, 48.893204890782386], [2.3622930344333612, 48.893212487532374], [2.362108565536061, 48.89321907911113], [2.361960030899349, 48.89322478538606], [2.361944752834472, 48.89322343234297]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 63, "roussel_fabien": 19.0, "nb_emargement": 1305.0, "nb_procuration": 52.0, "nb_vote_blanc": 21.0, "jadot_yannick": 60.0, "le_pen_marine": 84.0, "nb_exprime": 1271.0, "nb_vote_nul": 12.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1858.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1304, "quartier_bv": "72", "geo_point_2d": [48.89517588624688, 2.365024156352848], "melenchon_jean_luc": 661.0, "poutou_philippe": 13.0, "macron_emmanuel": 265.0}, "geometry": {"type": "Point", "coordinates": [2.365024156352848, 48.89517588624688]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b5f77d341e1bcdadabfb11307bc17db8d3c26ae2", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 35, "zemmour_eric": 53.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-57", "geo_shape": {"coordinates": [[[2.3711232160205, 48.88947551409239], [2.37113487224985, 48.88945801783394], [2.371194653990132, 48.88937286285511], [2.371258653986187, 48.88926419381349], [2.371284511479185, 48.889227360222456], [2.371283459126775, 48.88920393992741], [2.3712532184560082, 48.88919232106885], [2.371132734668498, 48.88904782546684], [2.371019707909341, 48.88891784349777], [2.371011816613123, 48.88891370742724], [2.370823132461357, 48.88887616583669], [2.370629316251935, 48.888837984532174], [2.370440631286728, 48.88880044232915], [2.370246815639635, 48.888762260402856], [2.370058131213723, 48.88872471849377], [2.369864316128963, 48.888686535945794], [2.369675632264107, 48.8886489925321], [2.36948181774169, 48.888610809362326], [2.369293134427021, 48.88857326534337], [2.369099320466954, 48.888535081551815], [2.368910637702479, 48.88849753692755], [2.368716824304768, 48.88845935251429], [2.368710433559291, 48.88845149110749], [2.368665810579239, 48.88844535987029], [2.368471997555271, 48.88840717505897], [2.368271765895579, 48.888370314046114], [2.368077953439899, 48.88833212859433], [2.367877722347732, 48.88829526692006], [2.367683910460348, 48.88825708082786], [2.367483679935609, 48.88822021849212], [2.367419587654645, 48.88822705021772], [2.367416479284974, 48.88824728657243], [2.367448988755849, 48.88832989304876], [2.367484083716694, 48.888421955168376], [2.367533612936628, 48.88854780826055], [2.367568706819334, 48.88863987122915], [2.36756896709941, 48.888640449070294], [2.367628919419789, 48.88875725689243], [2.367692520086414, 48.88888338743756], [2.367752472963665, 48.889000195171974], [2.367816074215388, 48.88912632652282], [2.367876027660436, 48.88924313327025], [2.367939629508185, 48.88936926452758], [2.367999583510118, 48.8894860711873], [2.368063185953903, 48.88961220235106], [2.36808940413386, 48.88966328195492], [2.368093080223761, 48.889682780685604], [2.3681110008038733, 48.88969399268349], [2.368144737218986, 48.88975972054299], [2.36816704053574, 48.88981065086097], [2.368179003285404, 48.88982586397235], [2.368240625399721, 48.88981730200089], [2.368445033791453, 48.88979282693421], [2.368649158342321, 48.8897687996838], [2.368853566351617, 48.88974432391863], [2.369057690523826, 48.88972029597077], [2.369262099514409, 48.88969581951434], [2.369466223307948, 48.88967179086898], [2.369670345549362, 48.889647761867934], [2.369874753967201, 48.88962328436406], [2.370078877193661, 48.88959925467277], [2.370283283865301, 48.88957477646324], [2.370487406713067, 48.88955074607448], [2.370691813002228, 48.8895262671665], [2.370895935471288, 48.88950223608023], [2.371100342741685, 48.889477756481], [2.3711232160205, 48.88947551409239]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 57, "roussel_fabien": 8.0, "nb_emargement": 896.0, "nb_procuration": 13.0, "nb_vote_blanc": 12.0, "jadot_yannick": 28.0, "le_pen_marine": 60.0, "nb_exprime": 880.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 9, "nb_inscrit": 1368.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 896, "quartier_bv": "73", "geo_point_2d": [48.88908245154523, 2.3691821179490513], "melenchon_jean_luc": 504.0, "poutou_philippe": 5.0, "macron_emmanuel": 147.0}, "geometry": {"type": "Point", "coordinates": [2.3691821179490513, 48.88908245154523]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "213b5ffa7444e2ea019e99486ffd7a461da54566", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 51, "zemmour_eric": 55.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-43", "geo_shape": {"coordinates": [[[2.406122738258313, 48.85268477560632], [2.406061806921723, 48.852695500092416], [2.406015118658011, 48.85268719397009], [2.405975145042133, 48.85268008222521], [2.405952448438288, 48.85268081493273], [2.4059478441197752, 48.8526948632959], [2.405908817798938, 48.852821377978785], [2.405869642206573, 48.852949015181565], [2.405830615515877, 48.85307552891072], [2.405791438167747, 48.85320316695125], [2.405752411096831, 48.85332968062597], [2.405713234739099, 48.853457317719204], [2.405674207277702, 48.85358383223881], [2.405635030537434, 48.85371146927722], [2.405596002695705, 48.85383798374239], [2.40555682557279, 48.85396562072604], [2.40554820737057, 48.853972267265306], [2.405374947448114, 48.85401467493921], [2.405199624328233, 48.8540577592083], [2.405026363837818, 48.854100166374245], [2.404851040142066, 48.85414325012928], [2.404677779083697, 48.8541856567872], [2.4045024561748862, 48.854228740034976], [2.404329193175577, 48.854271147077384], [2.404153869701087, 48.85431422891179], [2.403980606133822, 48.85435663544622], [2.403805282083482, 48.8543997167666], [2.403632017948265, 48.85444212279301], [2.4034566933221813, 48.85448520359926], [2.4032834299817303, 48.85452760912447], [2.4031081034066872, 48.85457069030919], [2.403095792771207, 48.85458625957121], [2.403112789337232, 48.85459909171813], [2.403206811708232, 48.85465794367922], [2.4033200707685722, 48.854731716342656], [2.403443586161742, 48.85480902859697], [2.403556845885709, 48.85488280102626], [2.403680361977936, 48.85496011392494], [2.403793622365637, 48.8550338861201], [2.403796584780656, 48.855043815290685], [2.403721662765838, 48.8551597132407], [2.4036476838719922, 48.855274629249344], [2.403572762556934, 48.85539052708886], [2.40349878164415, 48.85550544297475], [2.40342385966601, 48.855621340697006], [2.4033498794599613, 48.85573625647371], [2.403349523512699, 48.85573687165117], [2.403294179714825, 48.85584520894905], [2.403239507730339, 48.8559510358872], [2.4031848355237733, 48.85605686279025], [2.403129492406456, 48.85616519998759], [2.403074818388869, 48.856271026813204], [2.403019474815328, 48.85637936393875], [2.403009439985314, 48.856385281940796], [2.402833409269811, 48.85641039292], [2.402662306859741, 48.856434538960656], [2.402486274447771, 48.85645964942129], [2.4023151730778523, 48.856483794971325], [2.402298736798641, 48.85648624183774], [2.402293546314729, 48.85649602598601], [2.402265327217317, 48.856525947493054], [2.402234007434465, 48.85655907676211], [2.402235956796587, 48.856570210519415], [2.402336149543876, 48.85663602333665], [2.402433592712682, 48.856698816717895], [2.4025337873196753, 48.8567646293689], [2.402631230956968, 48.85682742348123], [2.40263129994687, 48.856827468792936], [2.40263134729614, 48.8568274996071], [2.402770788222946, 48.856917789417324], [2.402926020325657, 48.85701880700759], [2.403065462274968, 48.857109096458906], [2.403220695518939, 48.8572101136495], [2.403360137128078, 48.85730040273506], [2.4035153728865, 48.85740141863352], [2.403654815507961, 48.857491708259424], [2.403762395982243, 48.857561714301916], [2.4037628459751432, 48.857565506387054], [2.403781133472993, 48.85757567917036], [2.403828788559437, 48.857606688611966], [2.40387937394823, 48.85763758762201], [2.403901487748579, 48.85764819764271], [2.403919342749605, 48.857635778484614], [2.404032635875819, 48.8575131207168], [2.404145665868711, 48.85739137705466], [2.404258957930717, 48.85726871904555], [2.404371988217113, 48.85714697604895], [2.404377224952106, 48.85714372849518], [2.404470955546108, 48.85711093988153], [2.404565326841632, 48.85707848803956], [2.404570135521829, 48.85707572399418], [2.404674955546327, 48.856978448824044], [2.40477831791411, 48.85688275005362], [2.404881678539334, 48.856787051178905], [2.404986497401473, 48.8566897757106], [2.405089858624301, 48.85659407664619], [2.405194676709577, 48.8564968009786], [2.405195800334537, 48.85649555647219], [2.405267770238146, 48.85640055647846], [2.40537783591583, 48.85625278771799], [2.405449803789261, 48.856157787587286], [2.405481893986539, 48.856116660714676], [2.4054905037467282, 48.85610433567363], [2.405481095583387, 48.85609585395723], [2.405450916908299, 48.85597471848013], [2.405423638358732, 48.85586375911357], [2.405423825894696, 48.85586022381305], [2.405469782678786, 48.855732449890816], [2.405515669247734, 48.85560495708421], [2.405561625571203, 48.85547718399661], [2.40560751170089, 48.85534969022617], [2.405653467574005, 48.855221917073926], [2.405699353243921, 48.855094424138294], [2.405745308676946, 48.85496665002216], [2.405791193897355, 48.85483915702197], [2.405837148869783, 48.854711383740515], [2.405883033650947, 48.85458388977655], [2.405928988173041, 48.854456116430455], [2.405974872494457, 48.85432862330128], [2.406020826576477, 48.85420084899127], [2.406066710448405, 48.85407335579757], [2.4061126640801023, 48.853945581422956], [2.40615854750255, 48.85381808816476], [2.406204499310889, 48.853690314618056], [2.406250383646657, 48.85356282130215], [2.4062963350149422, 48.85343504679154], [2.406342217538452, 48.85330755340435], [2.406388169819224, 48.853179778835894], [2.406434051893272, 48.85305228538426], [2.4064800037135052, 48.85292451165047], [2.406525885338098, 48.85279701813434], [2.40653653351374, 48.852767903248825], [2.4065241756156652, 48.85276310058453], [2.406343864160831, 48.8527315526824], [2.406129880434985, 48.85269305898943], [2.406122738258313, 48.85268477560632]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 43, "roussel_fabien": 29.0, "nb_emargement": 1450.0, "nb_procuration": 83.0, "nb_vote_blanc": 13.0, "jadot_yannick": 112.0, "le_pen_marine": 56.0, "nb_exprime": 1434.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1810.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1451, "quartier_bv": "80", "geo_point_2d": [48.855478025524064, 2.4045110618654926], "melenchon_jean_luc": 694.0, "poutou_philippe": 13.0, "macron_emmanuel": 355.0}, "geometry": {"type": "Point", "coordinates": [2.4045110618654926, 48.855478025524064]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b01c2b7a487b3f0313a7983dfdeceee843ee60e8", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 22, "zemmour_eric": 36.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-67", "geo_shape": {"coordinates": [[[2.393290112604787, 48.86957687727724], [2.3933116797848353, 48.869537754821636], [2.393430008553743, 48.86944419935018], [2.3935466185637972, 48.86935151729719], [2.393664946487705, 48.86925796157769], [2.393781555662848, 48.86916527928019], [2.393899882752229, 48.86907172241347], [2.394016491092465, 48.868979039871455], [2.394134817326394, 48.86888548365599], [2.394251424831631, 48.868792800869485], [2.394369748857501, 48.86869924439911], [2.39448635689103, 48.868606561375024], [2.394488134502794, 48.86860539313499], [2.394541767866586, 48.868576120312134], [2.394604052877742, 48.86854269041894], [2.394607429699476, 48.86853142261003], [2.394518410300864, 48.86842328652248], [2.394431964453352, 48.868317312794474], [2.394342945774309, 48.86820917745473], [2.394256500639059, 48.86810320357952], [2.39416748270069, 48.86799506718905], [2.394081038277593, 48.86788909316655], [2.394079745211601, 48.86788681219415], [2.3940386843413233, 48.86776686642104], [2.393997334175966, 48.86764508720282], [2.393956275059489, 48.867525140482876], [2.393914923915506, 48.86740336120261], [2.393873865179406, 48.86728341442822], [2.393832514419953, 48.86716163509289], [2.393791456053659, 48.86704168916326], [2.39375010705223, 48.866919908880476], [2.393709047703063, 48.8667999628895], [2.39366769908625, 48.86667818255163], [2.393626641480478, 48.86655823651304], [2.393585291874574, 48.86643645701249], [2.393570588057305, 48.86642678296218], [2.393555222601616, 48.86642780769697], [2.393412813022993, 48.86652385674761], [2.393288286692953, 48.86660596748376], [2.39328756586684, 48.86660640990208], [2.3931473106624033, 48.866685945986724], [2.392967662968452, 48.866788403229265], [2.392945499156713, 48.866779484486116], [2.392956048576356, 48.866750734855096], [2.392966479279402, 48.866725152992565], [2.392945181683995, 48.86671560101054], [2.392792510455993, 48.8667905113527], [2.392680273911826, 48.86684565595348], [2.392568035756415, 48.866900801338694], [2.3924446941587503, 48.86696132046395], [2.39244008684082, 48.86696982820699], [2.392453470554261, 48.866981179253536], [2.392492887296394, 48.86700398242058], [2.392536688694602, 48.86702989256098], [2.392539630015957, 48.867040803881295], [2.39245290953048, 48.86714862164201], [2.392368801072993, 48.8672537096084], [2.392282079879524, 48.86736152722456], [2.392197970733568, 48.86746661505067], [2.392113861248366, 48.86757170280764], [2.39202713899787, 48.86767952020813], [2.39194302882429, 48.86778460782484], [2.39185630449212, 48.86789242597312], [2.39185110173156, 48.86789598969662], [2.391637928410529, 48.86797754656481], [2.391418086216636, 48.86806161067199], [2.391411923825391, 48.86806668038501], [2.391358544377813, 48.8681780707932], [2.391305045149909, 48.868289192555565], [2.391251663882703, 48.86840058288675], [2.391198164208792, 48.868511703679694], [2.391144783848102, 48.86862309394771], [2.391091283707162, 48.86873421556983], [2.391037901526821, 48.868845605760846], [2.390984402303057, 48.868956726420436], [2.390964745369719, 48.86898776236798], [2.390989338144517, 48.86899559662412], [2.391140949858403, 48.86903287026422], [2.391295286866338, 48.86906793260876], [2.391318870687714, 48.86907578684655], [2.391323009257615, 48.8690756927775], [2.39147734787806, 48.86911075489283], [2.391643790634315, 48.869144800922705], [2.39179812967543, 48.86917986262221], [2.391964572862153, 48.86921390820384], [2.392115411919886, 48.86923666586334], [2.392281855505864, 48.86927071010274], [2.39243269486669, 48.86929346736121], [2.39259913884152, 48.86932751115767], [2.392602618647012, 48.869328380488774], [2.392785254486959, 48.86939398209084], [2.39294290673044, 48.869452760235646], [2.393125543424539, 48.869518362210385], [2.393283195065217, 48.869577139893465], [2.393290112604787, 48.86957687727724]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 67, "roussel_fabien": 29.0, "nb_emargement": 1081.0, "nb_procuration": 67.0, "nb_vote_blanc": 11.0, "jadot_yannick": 82.0, "le_pen_marine": 62.0, "nb_exprime": 1068.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1368.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1081, "quartier_bv": "79", "geo_point_2d": [48.868208527822844, 2.3928848756565624], "melenchon_jean_luc": 521.0, "poutou_philippe": 9.0, "macron_emmanuel": 258.0}, "geometry": {"type": "Point", "coordinates": [2.3928848756565624, 48.868208527822844]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "18bff0baf00e9f8d0bb8fc90255890cd82f03c42", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 89, "zemmour_eric": 84.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-31", "geo_shape": {"coordinates": [[[2.334397694893718, 48.84043303690255], [2.334423196891541, 48.840423337036256], [2.334551123622661, 48.84038145747552], [2.334728972129703, 48.840320069372616], [2.334906540219594, 48.84026193784814], [2.3350843879002072, 48.84020054921025], [2.33526195382409, 48.84014241714444], [2.335439802040704, 48.84008102797913], [2.335617367149647, 48.84002289627888], [2.335795213188866, 48.839961505671724], [2.33597277885656, 48.83990337344521], [2.336150624057885, 48.83984198320243], [2.336328187571037, 48.83978384953527], [2.336459903701895, 48.83973838249176], [2.336480124877803, 48.839727218402835], [2.336412082115317, 48.83966867264603], [2.336268162052943, 48.83958405412701], [2.336124523395883, 48.83949952152807], [2.335980604267405, 48.83941490265032], [2.335836966531293, 48.83933037059257], [2.335693048336704, 48.83924575135604], [2.335549412895592, 48.839161218947815], [2.335405495634884, 48.8390765993525], [2.335261859775325, 48.838992065679335], [2.335117943448396, 48.83890744572526], [2.334974308509854, 48.83882291259329], [2.334830393116901, 48.838738292280475], [2.334686760484707, 48.83865375789872], [2.3345428460140383, 48.83856913812645], [2.334399212951931, 48.838484603379065], [2.334255299426708, 48.8383999823487], [2.334111667285586, 48.83831544814257], [2.33396775469422, 48.83823082675351], [2.333824124859333, 48.83814629129756], [2.33368021320182, 48.838061669549745], [2.333536582925619, 48.83797713462751], [2.333392672201953, 48.83789251252094], [2.333249042858205, 48.83780797724063], [2.333105133068381, 48.83772335477529], [2.332961506030852, 48.83763881824525], [2.332817597174863, 48.83755419542124], [2.332673969696005, 48.83746965942485], [2.332659883478646, 48.83746018963264], [2.332641587156128, 48.83746520676075], [2.332459904401477, 48.8375171882672], [2.332263572398742, 48.83757331475275], [2.332081888890401, 48.83762529568003], [2.331885556073432, 48.83768142153972], [2.331703871822834, 48.83773340098854], [2.331507538191639, 48.837789526222345], [2.331325853175731, 48.83784150599127], [2.331165893203759, 48.83788723223867], [2.3311588968413632, 48.83789584863868], [2.331166358435736, 48.83790799315887], [2.331333446362211, 48.83798507052024], [2.33149704843273, 48.83806032942259], [2.331500924348147, 48.83807235315105], [2.331364310617837, 48.838221857797166], [2.33123352673509, 48.83836323939766], [2.33123153359319, 48.83836811362058], [2.331235505381493, 48.83849392860553], [2.331238971558339, 48.8386141277956], [2.33123852864636, 48.8386165787944], [2.3311868533849562, 48.83874673415877], [2.33113483721328, 48.83887253913911], [2.331082819439653, 48.83899834317573], [2.331031144761907, 48.83912849933527], [2.331030740989986, 48.839131827434265], [2.331053136539718, 48.83926947582031], [2.331075316872328, 48.83940511199629], [2.331097712657201, 48.839542760340365], [2.331119894584421, 48.83967839648253], [2.331142289242022, 48.83981604477693], [2.331164471401648, 48.83995168087763], [2.331186867645279, 48.84008933003695], [2.331209048674784, 48.84022496608859], [2.331231229819732, 48.84036060211968], [2.331253626426918, 48.84049825031677], [2.331275807804172, 48.840633886306385], [2.331298204646515, 48.84077153446143], [2.331320386256079, 48.84090717040961], [2.331342783333585, 48.84104481852263], [2.331364966537919, 48.84118045443692], [2.3313873624881323, 48.841318102500345], [2.3314468574794702, 48.8413963938134], [2.331452475022061, 48.84139534686908], [2.331519476178924, 48.841373479992086], [2.331697051425611, 48.84131535418587], [2.331872697557052, 48.84125802946784], [2.332050272028004, 48.84119990223203], [2.332225917381987, 48.84114257698941], [2.332403491054148, 48.84108445012258], [2.332579135642086, 48.841027123456136], [2.33275670852698, 48.84096899605895], [2.332932352325837, 48.84091166976729], [2.333109924434972, 48.84085354094045], [2.333285567456262, 48.84079621412424], [2.333463138766619, 48.84073808566643], [2.333638781021842, 48.84068075742635], [2.333816351544925, 48.84062262843823], [2.333991993011081, 48.84056530057295], [2.334169562758381, 48.840507170155185], [2.334345203446862, 48.84044984176536], [2.334394845616431, 48.84043359124664], [2.334397694893718, 48.84043303690255]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 31, "roussel_fabien": 20.0, "nb_emargement": 1239.0, "nb_procuration": 100.0, "nb_vote_blanc": 11.0, "jadot_yannick": 126.0, "le_pen_marine": 36.0, "nb_exprime": 1228.0, "nb_vote_nul": 1.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1461.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1240, "quartier_bv": "53", "geo_point_2d": [48.8394119103783, 2.333082602036967], "melenchon_jean_luc": 246.0, "poutou_philippe": 5.0, "macron_emmanuel": 569.0}, "geometry": {"type": "Point", "coordinates": [2.333082602036967, 48.8394119103783]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "683424911e572dad3c8ea9ecf5d80d170104af32", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 107, "zemmour_eric": 92.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-8", "geo_shape": {"coordinates": [[[2.317615840296678, 48.886923574417175], [2.317619655779021, 48.886935455624034], [2.317717474897938, 48.88703931817304], [2.317815163669029, 48.88714337504195], [2.317912982204925, 48.887247237403805], [2.318010671756659, 48.887351294093506], [2.318108492424977, 48.887455157183005], [2.31820618275757, 48.88755921369352], [2.318304004218116, 48.88766307570441], [2.3184016953314712, 48.88776713203572], [2.318499517572577, 48.88787099386716], [2.318597209466704, 48.887975050019264], [2.318695031124797, 48.888078911663605], [2.3187927251632843, 48.8881829676442], [2.318890547601947, 48.88828682910915], [2.318988241057638, 48.88839088490281], [2.318985442177732, 48.88840249190503], [2.318847335825045, 48.88847934446466], [2.318708603993904, 48.88855654494047], [2.318570496812371, 48.888633398069274], [2.318431764160348, 48.888710598213514], [2.318293656173398, 48.88878745011299], [2.318154922700491, 48.88886464992562], [2.318153687790121, 48.88887761660136], [2.3182644537406603, 48.888956910628245], [2.3183723286566282, 48.88903413222378], [2.318483095273062, 48.8891134260371], [2.318590969462054, 48.8891906483162], [2.318701738108099, 48.88926994192369], [2.3188096129456, 48.88934716399479], [2.318844287856841, 48.88937475477278], [2.318863923241996, 48.88936509887128], [2.3189848070377312, 48.88930035676409], [2.319115607645232, 48.88922855094577], [2.319263305164974, 48.88914944767034], [2.319394106384701, 48.88907764064641], [2.319417268754517, 48.88906492450237], [2.319417909850586, 48.88906481123363], [2.319438598254298, 48.88905345519666], [2.319546235331932, 48.8889943641417], [2.319710354156923, 48.88890565976718], [2.319710725099875, 48.88890545143191], [2.319865047497709, 48.88881746550464], [2.32001172774918, 48.888732223892504], [2.320166049125008, 48.88864423756342], [2.320312727020327, 48.88855899646062], [2.320467047374158, 48.888471009729756], [2.320613725652573, 48.888385768252554], [2.32076804498441, 48.88829778111984], [2.320914720918338, 48.888212539252756], [2.321069039228191, 48.888124551718256], [2.321215715545114, 48.888039309476774], [2.321370032832985, 48.88795132154051], [2.321516706817261, 48.88786607800987], [2.321667756617769, 48.88777591277776], [2.321814430984352, 48.8876906688765], [2.32196547977212, 48.887600502355205], [2.322112151781856, 48.8875152589672], [2.322134220924656, 48.887502085534116], [2.322134925109458, 48.88750194293012], [2.322154576563221, 48.88749011289309], [2.322283555112489, 48.88741312029141], [2.32242121947038, 48.8873311611428], [2.322572266164717, 48.88724099382652], [2.322709929613143, 48.88715903433311], [2.32284759262822, 48.887077074675304], [2.322998637835544, 48.88698690769957], [2.3230251131480832, 48.886980835833306], [2.323012063134382, 48.88694227165648], [2.323004430403813, 48.88694069334518], [2.322963179082898, 48.88690523157134], [2.322928826184554, 48.88687569939807], [2.3229115664201982, 48.88686388083773], [2.322892137778457, 48.88687370945704], [2.322716682618779, 48.88693100714467], [2.322542789737748, 48.886987793601435], [2.322367333809274, 48.88704509077118], [2.3221934401663002, 48.8871018767147], [2.32201798346903, 48.887159173366584], [2.321844090427671, 48.88721595880457], [2.321670195631774, 48.8872727448786], [2.321494737794752, 48.88733003985556], [2.321320843600573, 48.8873868254241], [2.321145384994769, 48.88744411988318], [2.320971488674984, 48.88750090493069], [2.320796029300396, 48.88755819887195], [2.320622132218568, 48.887614983406166], [2.320446672075199, 48.887672276829534], [2.320434447958037, 48.8876722362305], [2.320339599147859, 48.8876404785725], [2.320254103078359, 48.8876118514377], [2.320248852289995, 48.8876087450243], [2.320137250911082, 48.8874958706431], [2.320024456132052, 48.887381789661156], [2.319912855725959, 48.887268915047486], [2.319800061941993, 48.887154832931294], [2.319787676330645, 48.88715077404368], [2.319593961045108, 48.88715980613906], [2.319402333487599, 48.88716874007018], [2.319392076704998, 48.88716634980702], [2.3192658822014742, 48.88708882967915], [2.319099650024358, 48.88698671529771], [2.3189734550278462, 48.88690919484121], [2.318807223997625, 48.886807080037094], [2.318681031235424, 48.88672955926749], [2.318514801352089, 48.88662744404072], [2.318388609460539, 48.88654992295026], [2.318375625677554, 48.88654042765498], [2.318359972530104, 48.88654347720486], [2.31817727990138, 48.886637252465185], [2.3179977029187953, 48.88672955499951], [2.317815008984745, 48.8868233296912], [2.317635429354663, 48.88691563165878], [2.317615840296678, 48.886923574417175]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 8, "roussel_fabien": 10.0, "nb_emargement": 1278.0, "nb_procuration": 81.0, "nb_vote_blanc": 7.0, "jadot_yannick": 120.0, "le_pen_marine": 57.0, "nb_exprime": 1265.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 4, "nb_inscrit": 1527.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "67", "geo_point_2d": [48.887854569318556, 2.3196839614031504], "melenchon_jean_luc": 208.0, "poutou_philippe": 1.0, "macron_emmanuel": 619.0}, "geometry": {"type": "Point", "coordinates": [2.3196839614031504, 48.887854569318556]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "87dd17dfc0c64c2bd875446636f6decbb16abc19", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 52, "zemmour_eric": 78.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "1-10", "geo_shape": {"coordinates": [[[2.330722891963308, 48.868164905690875], [2.330718396525403, 48.86813664205628], [2.330725071266602, 48.86800006004819], [2.330732016820877, 48.86786308742337], [2.330738690139718, 48.86772650447383], [2.330745635621711, 48.867589531814346], [2.330752310221391, 48.86745294973718], [2.3307592556311, 48.867315977043035], [2.3307659287968843, 48.86717939492371], [2.330772874134313, 48.867042422194906], [2.330779548592478, 48.86690584004868], [2.330786492494499, 48.86676886727758], [2.33079316688191, 48.866632285096834], [2.330800112074678, 48.8664953122987], [2.330806785039872, 48.866358729176504], [2.33081373014881, 48.866221757243025], [2.330820404406267, 48.86608517409392], [2.33082734945458, 48.865948201226495], [2.330834022266628, 48.86581161893454], [2.330840967242668, 48.865674646032474], [2.330839050934485, 48.86566974017883], [2.330742200226696, 48.865562579384466], [2.33064518946254, 48.86545379608308], [2.330548338191901, 48.865346635103315], [2.330451329597871, 48.86523785163115], [2.330354479127466, 48.8651306904736], [2.330257469977175, 48.86502190681547], [2.330160621658512, 48.86491474638706], [2.330063613326803, 48.864805961651335], [2.330061852628388, 48.86480019957453], [2.330063190649299, 48.864793143595996], [2.330078843401758, 48.86471059024953], [2.33011221656157, 48.86454739812401], [2.330129207154298, 48.864457789670666], [2.330081351003498, 48.86440566725811], [2.330078801594294, 48.86440590570409], [2.330039660047538, 48.864418549059465], [2.329860324164304, 48.86447587396253], [2.329682845796154, 48.86453320270444], [2.329503510488784, 48.864590527074554], [2.329326031348969, 48.864647854382135], [2.329146693891231, 48.864705178204034], [2.32896921531967, 48.864762505883455], [2.328789877074529, 48.86481982916474], [2.328612397731323, 48.864877155409864], [2.328433058698989, 48.86493447815053], [2.328255578560961, 48.864991804759846], [2.328076238741229, 48.86504912695993], [2.327898756468591, 48.865106452127215], [2.327719417224649, 48.86516377379434], [2.327541934157078, 48.86522109932589], [2.327364452073603, 48.8652784236996], [2.3271851102867602, 48.86533574454953], [2.327007627420068, 48.865393068388215], [2.326828284834217, 48.8654503895968], [2.326650801184306, 48.86550771290039], [2.32647145782289, 48.865565032669096], [2.326293972026671, 48.865622355429906], [2.326114627877972, 48.865679674657976], [2.325937142649998, 48.86573699779073], [2.3257577977139148, 48.86579431647816], [2.325580311714366, 48.86585163817645], [2.325400965991107, 48.86590895632325], [2.3252234791967012, 48.865966278385784], [2.3250441326860622, 48.86602359599195], [2.324866645120097, 48.86608091662009], [2.324687297822285, 48.86613823368562], [2.324509808098346, 48.86619555467025], [2.32433046001326, 48.86625287119513], [2.324152970880886, 48.866310190753076], [2.3239736220084293, 48.86636750673733], [2.323796132081183, 48.866424826659426], [2.3236167824215572, 48.866482142103], [2.323566356910999, 48.86649030017954], [2.323553237521357, 48.866519380126086], [2.323642890537215, 48.86664181920363], [2.323729618923431, 48.86676506907089], [2.323819271413548, 48.86688750798143], [2.323906002000804, 48.867010756801946], [2.323995655316642, 48.867133196452464], [2.32408238536722, 48.86725644511008], [2.324172040895267, 48.86737888370971], [2.324258771760439, 48.86750213311143], [2.324348428125905, 48.867624571551744], [2.324435159829216, 48.86774781989899], [2.324524815657297, 48.86787025907154], [2.324611548186886, 48.86799350726358], [2.324699578312613, 48.868124899966425], [2.3247863116680962, 48.86824814890276], [2.324874341301779, 48.86837954143913], [2.324961075506278, 48.868502789321106], [2.325049107362605, 48.86863418260564], [2.325135842404579, 48.86875743033265], [2.325223873780524, 48.86888882255142], [2.325310611011616, 48.869012071030305], [2.325311592064544, 48.86901768756548], [2.325279654823631, 48.869119052421816], [2.325235280983522, 48.86923173733551], [2.32520334346288, 48.86933310215188], [2.325158969275355, 48.86944578701545], [2.325168974895086, 48.869456792033425], [2.325337733700482, 48.86948357162286], [2.325532766922583, 48.86951741408178], [2.3257015261230363, 48.86954419225748], [2.325820941104605, 48.86956491308954], [2.325858813652172, 48.86958792115501], [2.325895962744216, 48.86958161194355], [2.3259715814912, 48.86959473292825], [2.326166267064274, 48.86962716401791], [2.326361301362267, 48.86966100512242], [2.326555987425558, 48.86969343557626], [2.326751023588062, 48.86972727605142], [2.326945708790181, 48.86975970496245], [2.327140745453883, 48.869793544800544], [2.327335432497886, 48.86982597398273], [2.32753046829978, 48.8698598131761], [2.327725155833976, 48.86989224172243], [2.327920193500364, 48.8699260802864], [2.328025719375111, 48.86994365685338], [2.328088167837108, 48.869917934587434], [2.328083984881728, 48.86988520291259], [2.328225376900042, 48.869782939072984], [2.328355233627943, 48.869687022645806], [2.328496623212622, 48.869584758459766], [2.328626478958519, 48.869488840821866], [2.328767867472776, 48.869386576297096], [2.328897722213698, 48.86929065924699], [2.329039111020731, 48.86918839439118], [2.32916896341657, 48.869092476122674], [2.329310351153193, 48.868990210928054], [2.329440203907065, 48.86889429325504], [2.329570054831232, 48.86879837452591], [2.329711440982194, 48.868696108830335], [2.329841290901335, 48.86860019068905], [2.329982675981912, 48.86849792465476], [2.33000429838006, 48.868499411796385], [2.330183109515576, 48.86841547319318], [2.330323101897267, 48.86835029418295], [2.330463092565571, 48.86828511499749], [2.330641902226221, 48.868201175692654], [2.3307054321156, 48.86816974815358], [2.330722891963308, 48.868164905690875]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 10, "roussel_fabien": 1.0, "nb_emargement": 675.0, "nb_procuration": 48.0, "nb_vote_blanc": 1.0, "jadot_yannick": 37.0, "le_pen_marine": 40.0, "nb_exprime": 673.0, "nb_vote_nul": 1.0, "arr_bv": "01", "arthaud_nathalie": 0, "nb_inscrit": 874.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 675, "quartier_bv": "04", "geo_point_2d": [48.86725534153516, 2.327655007155463], "melenchon_jean_luc": 87.0, "poutou_philippe": 0.0, "macron_emmanuel": 355.0}, "geometry": {"type": "Point", "coordinates": [2.327655007155463, 48.86725534153516]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6fa9f93f15db3b7e2f86f62f31723eb1f68516e3", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 36, "zemmour_eric": 53.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-37", "geo_shape": {"coordinates": [[[2.354054930285193, 48.872254593994036], [2.35403416681363, 48.872260074029896], [2.353824563828918, 48.87223690622424], [2.353617713653215, 48.87221450386291], [2.353408111025947, 48.87219133622637], [2.353201259847053, 48.87216893313714], [2.352991657588395, 48.87214576477044], [2.352784806769591, 48.872123360960565], [2.352575204879553, 48.87210019186369], [2.352368354420852, 48.872077787333296], [2.352158752899443, 48.87205461750619], [2.351951904164122, 48.872032212262624], [2.351742303011354, 48.87200904170537], [2.351535453272889, 48.87198663573383], [2.3515299585766583, 48.87198678223677], [2.3513326087419752, 48.8720191116714], [2.35113450482645, 48.87205165253457], [2.350937154489444, 48.872083982214605], [2.350739051443424, 48.872116522428826], [2.3505417006150973, 48.87214885145495], [2.350343595712156, 48.87218139100542], [2.350146244392617, 48.87221371937768], [2.349948140359098, 48.87224625827915], [2.34975078854846, 48.87227858599751], [2.349552684021202, 48.872311124242586], [2.349355330356094, 48.87234345129967], [2.349157225335107, 48.872375988888344], [2.3489598725419842, 48.872408315298976], [2.348761767027277, 48.87244085223129], [2.348564413743076, 48.87247317798801], [2.348366306371378, 48.87250571425649], [2.348168952596005, 48.872538039359334], [2.347970846093881, 48.87257057497886], [2.347910556201139, 48.872566750824326], [2.347904800238378, 48.87258035523927], [2.347904696282853, 48.87267370871275], [2.347905401635748, 48.87282090008548], [2.347905260077115, 48.87294949120722], [2.347905964072044, 48.87309668253576], [2.347905822514049, 48.87322527362533], [2.347906526514294, 48.873372464917104], [2.3479063849569393, 48.873501055974586], [2.347914368107593, 48.87350982933587], [2.347975093675712, 48.873507254365755], [2.3481842437967932, 48.87353097760438], [2.348391725860688, 48.87355433166076], [2.348600876360557, 48.87357805417042], [2.348808358810021, 48.87360140660443], [2.34901751105187, 48.87362512839256], [2.3492249938645022, 48.87364848100267], [2.349434145133043, 48.87367220115512], [2.349641628319977, 48.873695553042104], [2.349850779956038, 48.87371927336488], [2.350058263517264, 48.8737426245287], [2.350267416906599, 48.87376634323068], [2.350474899478793, 48.87378969366392], [2.350481520174265, 48.87378935636353], [2.350669966027268, 48.87374774564912], [2.350861365744006, 48.873704625380434], [2.351049809634902, 48.873663013158236], [2.35124120871462, 48.87361989317818], [2.351429653358811, 48.87357828036216], [2.351621051812713, 48.8735351597715], [2.351809495846884, 48.873493546354304], [2.352000893674964, 48.87345042515299], [2.352189335735806, 48.87340881112731], [2.352380732938059, 48.87336568931536], [2.352397966165273, 48.87337115339398], [2.352422282956722, 48.87341569693205], [2.352439959964908, 48.873449948499484], [2.352451057716208, 48.87345872941031], [2.352491401987054, 48.87344638840476], [2.352680306437602, 48.87338355174487], [2.352872097952411, 48.873319954265455], [2.353061000121958, 48.87325711699029], [2.353252792069692, 48.873193518901004], [2.353441693321335, 48.873130681017834], [2.353633482975499, 48.87306708230395], [2.353822383309338, 48.87300424381284], [2.3540141733963162, 48.872940644489105], [2.354203072812347, 48.87287780539003], [2.354394860605757, 48.872814205441735], [2.354401830444036, 48.872808676132315], [2.354412363364183, 48.872784726017066], [2.35440909166174, 48.872780628075915], [2.35438576532842, 48.87277375543367], [2.354306006021738, 48.87264478015758], [2.354236747956877, 48.87253095235654], [2.35416749155799, 48.87241712451107], [2.354087731974589, 48.87228814904052], [2.354073069510852, 48.87226405039306], [2.354054930285193, 48.872254593994036]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 37, "roussel_fabien": 25.0, "nb_emargement": 1072.0, "nb_procuration": 74.0, "nb_vote_blanc": 6.0, "jadot_yannick": 110.0, "le_pen_marine": 41.0, "nb_exprime": 1058.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 0, "nb_inscrit": 1331.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1069, "quartier_bv": "38", "geo_point_2d": [48.87286667411503, 2.3509573485217046], "melenchon_jean_luc": 344.0, "poutou_philippe": 6.0, "macron_emmanuel": 390.0}, "geometry": {"type": "Point", "coordinates": [2.3509573485217046, 48.87286667411503]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ffe3dfa8a8257cdcfe62af610bed38dcd9555154", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 36, "zemmour_eric": 76.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-60", "geo_shape": {"coordinates": [[[2.376893693204376, 48.88351412494778], [2.37688904917793, 48.88349573472212], [2.376738859738104, 48.88341168428249], [2.376592510920566, 48.88333285984855], [2.37644232379264, 48.88324880903165], [2.376295975881667, 48.88316998422356], [2.37614578970207, 48.88308593302223], [2.375999442697656, 48.88300710783999], [2.375849257466382, 48.88292305625426], [2.375702911368526, 48.882844230697934], [2.375687522644424, 48.882829471627545], [2.375654487838816, 48.88282445738118], [2.375508143687183, 48.88274563068755], [2.375361280376478, 48.88266703672234], [2.3752149371110303, 48.88258820965904], [2.375068074697661, 48.88250961442366], [2.374921730944063, 48.88243078788286], [2.374774869417139, 48.88235219227658], [2.374628527924057, 48.88227336447396], [2.374481667272775, 48.882194769396065], [2.374335325302334, 48.88211594121665], [2.374188465548292, 48.88203734486859], [2.374186459362072, 48.88203601146973], [2.37406894446521, 48.881939497246634], [2.373961908039988, 48.88184761527323], [2.373844393984395, 48.88175110081317], [2.373737358342557, 48.88165921862327], [2.373619843764706, 48.88156270391918], [2.373512810269767, 48.88147082151994], [2.373395296533074, 48.88137430657892], [2.373288263821604, 48.8812824239632], [2.37326826779806, 48.8812645692277], [2.373236710199148, 48.8812625639945], [2.373201763989875, 48.88126034315962], [2.373177900687899, 48.88129586583091], [2.373017741793864, 48.881362368950086], [2.372843798558507, 48.88143471992859], [2.372683640174225, 48.88150122259962], [2.372509696011041, 48.88157357308359], [2.37234953540958, 48.881640075292125], [2.372175590318363, 48.88171242528156], [2.372015428863342, 48.88177892703472], [2.3718414828441903, 48.88185127652965], [2.37168132189893, 48.881917777834644], [2.371507374941095, 48.88199012773429], [2.371347211789495, 48.88205662767751], [2.37117326390372, 48.88212897708257], [2.371013101261993, 48.88219547657761], [2.3708391524481742, 48.88226782548816], [2.370678987589355, 48.88233432452067], [2.3705050378475923, 48.88240667293666], [2.3703448734985493, 48.882473171521], [2.370282631125606, 48.882458560125066], [2.370252437302103, 48.882468668043494], [2.370254032666183, 48.88255132741511], [2.37024507384373, 48.882592816671966], [2.370246197305219, 48.8826150431862], [2.370326767945178, 48.88261771618254], [2.370505424677884, 48.8826654890874], [2.370684689060266, 48.88271367051292], [2.370863346450491, 48.88276144287947], [2.371042611494316, 48.882809623764906], [2.371221268178603, 48.882857395586065], [2.371400533883766, 48.88290557593136], [2.371579192589114, 48.88295334722142], [2.371758458966664, 48.883001526127295], [2.371937116965857, 48.883049296871974], [2.372116383993986, 48.883097476137024], [2.37229504401434, 48.88314524635053], [2.372474311703797, 48.883193425075476], [2.372652972381649, 48.88324119475077], [2.372832239379901, 48.883289372029154], [2.373010900704315, 48.88333714206542], [2.373190169727545, 48.88338531881083], [2.373368831720276, 48.883433087409564], [2.373548100030528, 48.883481264507], [2.373552919324156, 48.883481926446855], [2.373756875447273, 48.88348529121605], [2.373944047497234, 48.88348824501572], [2.374131219568424, 48.88349119852274], [2.374335174401645, 48.883494562299646], [2.374522346506919, 48.883497516094536], [2.374726302753712, 48.88350087921227], [2.374913474914667, 48.88350383149637], [2.375117429847879, 48.88350719394071], [2.3753046020537, 48.88351014561334], [2.375508558400463, 48.883513507398504], [2.375695730651141, 48.88351645845972], [2.375899685684302, 48.88351981957146], [2.376086857979828, 48.883522770021166], [2.37629081306305, 48.88352613046663], [2.376477985403314, 48.88352908030487], [2.376681941899954, 48.883532440091116], [2.37686911428515, 48.883535389317935], [2.376893693204376, 48.88351412494778]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 60, "roussel_fabien": 25.0, "nb_emargement": 1243.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 120.0, "le_pen_marine": 61.0, "nb_exprime": 1229.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1703.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1243, "quartier_bv": "73", "geo_point_2d": [48.88261786518081, 2.3734019004887013], "melenchon_jean_luc": 574.0, "poutou_philippe": 10.0, "macron_emmanuel": 275.0}, "geometry": {"type": "Point", "coordinates": [2.3734019004887013, 48.88261786518081]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6e38f9e1e0755984de0e06f86f8a9d3efe967d98", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 46, "zemmour_eric": 70.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "2-9", "geo_shape": {"coordinates": [[[2.347739095070011, 48.86879007099488], [2.347746981620367, 48.86880987430811], [2.347759059558723, 48.86891519367424], [2.347773908302475, 48.86905094925277], [2.347788847742302, 48.86918120943151], [2.347803696650772, 48.8693169640744], [2.347818634878284, 48.869447224210646], [2.347833485303414, 48.86958297882462], [2.347848423670341, 48.86971323982504], [2.34785050516745, 48.86983924342718], [2.347865443661789, 48.86996950349601], [2.347867523847094, 48.87009550706118], [2.347867562888902, 48.870096090945935], [2.347869781208775, 48.87023578051373], [2.347871862778426, 48.870361784055866], [2.347874081109885, 48.87050147448925], [2.347876162711815, 48.870627477101756], [2.34790656477507, 48.87069854851033], [2.347949401404555, 48.870697648704954], [2.348132854731769, 48.87065782509245], [2.348325547931895, 48.870615844524366], [2.348509000683434, 48.870576020332415], [2.348701693289041, 48.87053403825645], [2.3488851441016703, 48.870494213477635], [2.349077837453487, 48.870452231699716], [2.34926128769043, 48.87041240634147], [2.3494539804477013, 48.87037042305563], [2.349637430097722, 48.87033059801726], [2.349830122249204, 48.87028861412277], [2.350013571334757, 48.87024878760569], [2.350206262869221, 48.87020680400189], [2.350389711379074, 48.87016697690536], [2.350582402319057, 48.87012499179364], [2.350765850253198, 48.87008516411771], [2.350958540576063, 48.87004317929663], [2.351141987934493, 48.87000335104126], [2.351334676299538, 48.86996136470494], [2.351518124434261, 48.8699215367768], [2.35171081219349, 48.86987954983186], [2.351894259763683, 48.86983972042505], [2.3520869469059003, 48.86979773377073], [2.352270392537153, 48.86975790377716], [2.352463080447935, 48.86971591562233], [2.352599380343051, 48.869686321764846], [2.352646525492274, 48.86967608594862], [2.35264955594884, 48.869648340596044], [2.352612789226424, 48.869599907408706], [2.352513202780265, 48.86945904371158], [2.352408530313291, 48.86930010442137], [2.352403667191732, 48.86929322513229], [2.3523968208076402, 48.86928862573353], [2.352217513727847, 48.869234674375555], [2.352040901524711, 48.86918143342313], [2.351861596545609, 48.86912748153411], [2.3516849850696753, 48.869074240051305], [2.351505679465089, 48.86902028761655], [2.351329068716259, 48.86896704560344], [2.351149765212466, 48.86891309263763], [2.350973155190843, 48.868859850094246], [2.350793851061475, 48.86880589658263], [2.350617241767166, 48.86875265350889], [2.350437939738487, 48.86869869946629], [2.350261331171391, 48.86864545586228], [2.35008472296522, 48.868592211995036], [2.34990542067727, 48.86853825713953], [2.34972881456149, 48.86848501274944], [2.349549513011159, 48.868431057355494], [2.349372906259527, 48.868377812427696], [2.349193606809886, 48.868323856502805], [2.349017000785476, 48.86827061104468], [2.348837700710393, 48.86821665457399], [2.348661095413108, 48.868163408585595], [2.348481797438816, 48.868109451583955], [2.348305192868759, 48.86805620506524], [2.348125894268935, 48.868002247517815], [2.34794929042621, 48.867949000468826], [2.347769993927076, 48.86789504239043], [2.347593390811585, 48.86784179481117], [2.347414093687029, 48.86778783618699], [2.347368349436485, 48.867789023913474], [2.347359372276749, 48.867799495471985], [2.347363381086998, 48.86783554589181], [2.3473640554743183, 48.86783775475692], [2.3473679094678452, 48.867864836088], [2.347423935105355, 48.86797476331597], [2.347479250461207, 48.868076767924364], [2.34753527519844, 48.868186695071735], [2.3475905909973562, 48.86828869960911], [2.347646616197578, 48.86839862668331], [2.347701933791372, 48.86850063205639], [2.347702690949001, 48.868502982565886], [2.347717630053693, 48.86863324281805], [2.347739102977224, 48.868761132920035], [2.347741962961127, 48.86878607376091], [2.347739095070011, 48.86879007099488]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 9, "roussel_fabien": 19.0, "nb_emargement": 1331.0, "nb_procuration": 110.0, "nb_vote_blanc": 12.0, "jadot_yannick": 132.0, "le_pen_marine": 59.0, "nb_exprime": 1318.0, "nb_vote_nul": 1.0, "arr_bv": "02", "arthaud_nathalie": 2, "nb_inscrit": 1734.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "08", "geo_point_2d": [48.86934995063152, 2.349526531524736], "melenchon_jean_luc": 390.0, "poutou_philippe": 5.0, "macron_emmanuel": 541.0}, "geometry": {"type": "Point", "coordinates": [2.349526531524736, 48.86934995063152]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a3c65a1ce03450b9743418267b7dd38e3fd8b533", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 69, "zemmour_eric": 67.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-29", "geo_shape": {"coordinates": [[[2.327793961205971, 48.83618509354181], [2.327783187871335, 48.83616920588388], [2.327676309886412, 48.83603414037134], [2.327560884904469, 48.83588903379176], [2.3275657690480402, 48.83587720844932], [2.327746465925227, 48.83580326434323], [2.327924763559773, 48.83573182202007], [2.328105458061412, 48.83565787735442], [2.328283756068955, 48.83558643449451], [2.32846444955736, 48.83551248927692], [2.32864274521328, 48.83544104586496], [2.328823439050758, 48.835367100103134], [2.329001733717262, 48.83529565614679], [2.32900444551181, 48.83529422876917], [2.329122038171806, 48.835214171676185], [2.3292867566024, 48.83510243488311], [2.329404348396257, 48.835022377498895], [2.329569066977944, 48.83491064030554], [2.329686657905465, 48.83483058263002], [2.329688915137031, 48.83482011041432], [2.329601201332252, 48.83471084260264], [2.32951586659467, 48.83460358555331], [2.329428153517068, 48.834494317593624], [2.329342819501573, 48.83438705950081], [2.329255107150941, 48.834277791393056], [2.32916977384596, 48.83417053315601], [2.329146125861017, 48.834129910818284], [2.329136736075128, 48.83412920790698], [2.329084625752974, 48.834148197241085], [2.329050515274945, 48.83416079406335], [2.329046366380772, 48.83416115392197], [2.329023134246089, 48.8341718448338], [2.328883435595304, 48.83422343506662], [2.32870869704791, 48.83428792782622], [2.328534888397709, 48.83435211526644], [2.328360148999331, 48.83441660661013], [2.328186338128618, 48.834480793528826], [2.3280115978560803, 48.83454528525522], [2.327837787501006, 48.83460947076839], [2.327663046365901, 48.834673961978154], [2.327489233778711, 48.83473814786912], [2.327314491792638, 48.83480263766297], [2.327140679709503, 48.8348668230477], [2.326965936849255, 48.83493131322422], [2.3269076301180363, 48.83495284343635], [2.326876641892137, 48.83495862918078], [2.32686456429832, 48.83497742282079], [2.326749056647789, 48.83502007653002], [2.3265835123179093, 48.83508060312824], [2.326409697045566, 48.83514478742714], [2.32624415328789, 48.835205313556614], [2.326070337181953, 48.83526949735527], [2.325904791271884, 48.83533002300062], [2.325730975694454, 48.835394206306624], [2.32556542899429, 48.835454731475586], [2.325391611220962, 48.83551891427363], [2.325226065093013, 48.835579438973795], [2.325052246485891, 48.83564362127152], [2.32488669820554, 48.83570414548759], [2.324712880127036, 48.83576832729272], [2.324547331056694, 48.83582885103234], [2.3243735107821832, 48.835893032329444], [2.324207962283965, 48.83595355560035], [2.324034141187425, 48.836017735497805], [2.3238685905369, 48.83607825828457], [2.323694769957329, 48.83614243858874], [2.323529218516613, 48.83620296089902], [2.323469218042102, 48.83623268930025], [2.323475157276775, 48.83624923443261], [2.323457906551141, 48.83629163930445], [2.323409093492176, 48.836417550246104], [2.323357214220414, 48.83654507796523], [2.323308399318551, 48.83667098882954], [2.323256519548295, 48.83679851647605], [2.323207705528201, 48.836924427278426], [2.323155825259243, 48.837051954852384], [2.323107010758576, 48.83717786558515], [2.32305512999101, 48.837305393086496], [2.323006313647406, 48.837431303741916], [2.32298339746375, 48.8374876346527], [2.322981006320095, 48.83750263968826], [2.323059725207365, 48.83752351168435], [2.323248325373993, 48.83756804809597], [2.323435930405211, 48.83761244187391], [2.32362453121515, 48.83765697768882], [2.323812138249112, 48.837701370880914], [2.32399974424037, 48.83774576376928], [2.324188346014432, 48.83779029868995], [2.324375952646163, 48.83783469098475], [2.324564555063318, 48.837879225308725], [2.324752163697887, 48.837923617017644], [2.324940765384317, 48.837968151636495], [2.325128374659355, 48.83801254275188], [2.325316977000516, 48.83805707587476], [2.325504586916014, 48.83810146639652], [2.32569319126283, 48.83814599893037], [2.325880800456406, 48.838190388850876], [2.326069405446297, 48.838234920788], [2.3262570152803193, 48.83827931011493], [2.326445620913481, 48.83832384145534], [2.326468449655675, 48.83832673375835], [2.32648778877771, 48.83831067560369], [2.326503120929127, 48.83828101352268], [2.326570253810929, 48.838153897917806], [2.326634404687451, 48.83802978465634], [2.326701538287892, 48.83790266895692], [2.326765688542618, 48.837778555597154], [2.326832821499224, 48.837651439795465], [2.326896971132161, 48.837527326337394], [2.326964103445147, 48.83740021043347], [2.327028252456203, 48.83727609687709], [2.327095384113865, 48.837148981770234], [2.327159532503253, 48.837024868115584], [2.327226663528821, 48.83689775200718], [2.327290811296346, 48.83677363825423], [2.327354958758493, 48.8366495244531], [2.32742208882409, 48.836522408192344], [2.327486235664386, 48.83639829429294], [2.327553365086299, 48.83627117792999], [2.327560043365439, 48.83626612593976], [2.327667284372543, 48.836230045279464], [2.327782647594997, 48.836193140478684], [2.327793961205971, 48.83618509354181]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 29, "roussel_fabien": 18.0, "nb_emargement": 1328.0, "nb_procuration": 96.0, "nb_vote_blanc": 17.0, "jadot_yannick": 168.0, "le_pen_marine": 49.0, "nb_exprime": 1305.0, "nb_vote_nul": 6.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1631.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1328, "quartier_bv": "53", "geo_point_2d": [48.836356390486486, 2.326090722824814], "melenchon_jean_luc": 396.0, "poutou_philippe": 11.0, "macron_emmanuel": 465.0}, "geometry": {"type": "Point", "coordinates": [2.326090722824814, 48.836356390486486]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "45c2704496352964a78df4549d7ba16d1272ac0f", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 19, "zemmour_eric": 34.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "19-19", "geo_shape": {"coordinates": [[[2.398363943371222, 48.88412904974182], [2.3983509573749773, 48.88412137799886], [2.398179351147353, 48.88408760205166], [2.397973452130424, 48.88404722955134], [2.397801846391991, 48.884013453060824], [2.397595949324489, 48.88397307991547], [2.397424342711669, 48.88393930287474], [2.397218446240421, 48.88389892817821], [2.397046841480289, 48.883865150600975], [2.396840944220907, 48.88382477614498], [2.396669339950085, 48.88379099802442], [2.396651882624675, 48.883798652341426], [2.396626238104591, 48.88395564866763], [2.396599655406774, 48.88410627571714], [2.39659089299006, 48.88411365818044], [2.396403757591461, 48.88415986200696], [2.396220637122445, 48.884204948141914], [2.396033502430882, 48.884251151392775], [2.395850381320295, 48.884296236957724], [2.395663244619024, 48.88434243871991], [2.395480122866872, 48.88438752371481], [2.395297000797643, 48.88443260842778], [2.3951098644684032, 48.88447881022549], [2.394926741757615, 48.8845238943684], [2.39473960340834, 48.884570095576684], [2.394730288941932, 48.88457015460981], [2.394650622611759, 48.8845516286564], [2.394547887297517, 48.88452865125088], [2.394542851836164, 48.88452989653291], [2.394533967904962, 48.884549106147325], [2.394504354670237, 48.88464234764891], [2.3944738794479132, 48.88474133955344], [2.394444264643132, 48.884834580117676], [2.394413789183623, 48.88493357288893], [2.394401576150872, 48.884941900912075], [2.394408282828449, 48.88495713071668], [2.394403687660421, 48.88508385373316], [2.394396816512948, 48.88522910209048], [2.394392221293018, 48.88535582507515], [2.394385348714153, 48.88550107338897], [2.394380754805944, 48.885627796348786], [2.394376723863961, 48.88574855782721], [2.39437212991293, 48.885875280758135], [2.394368098942349, 48.885996041309824], [2.394363504948395, 48.88612276421186], [2.394359473928196, 48.88624352563534], [2.39434606737421, 48.886252319752046], [2.394247886060827, 48.886253396892066], [2.394151079025971, 48.88625532267195], [2.394147807750501, 48.886255653258075], [2.394132519999664, 48.88626156989033], [2.394137043360991, 48.886279388586914], [2.394121302384715, 48.886396806405926], [2.394105006819526, 48.88651335985287], [2.394089265700184, 48.886630777642694], [2.394072971353727, 48.88674733106732], [2.394057230091525, 48.88686474882793], [2.394040934236486, 48.886981302216505], [2.39404262169639, 48.886986529525736], [2.3941203668464333, 48.88707788044132], [2.394226743693939, 48.88720287411893], [2.394304490843205, 48.88729422580311], [2.394372518142908, 48.88737415633476], [2.394378191850599, 48.88737504388514], [2.394401262184126, 48.88736530310019], [2.394639061850255, 48.88730649112607], [2.39488039234919, 48.887244217045115], [2.3948890594066983, 48.8872358359944], [2.394888951724095, 48.88714394448589], [2.394887997256908, 48.887051693457934], [2.394887889576459, 48.88695980193404], [2.394886935124979, 48.88686754999127], [2.39489503225937, 48.88685927127807], [2.395060815258469, 48.88681067591172], [2.39522530085082, 48.88676233276704], [2.395391081869429, 48.886713736932265], [2.395555566838524, 48.886665394228906], [2.395721348614393, 48.88661679704016], [2.395885832970571, 48.886568453878866], [2.396051612755616, 48.886519857120945], [2.3962160965094093, 48.886471512602405], [2.396222924279147, 48.88646707020341], [2.396307379813432, 48.88634651823517], [2.396394491539142, 48.88622348756248], [2.39640479051927, 48.886218401649046], [2.396627289429502, 48.88619601568914], [2.396848956458799, 48.88617314398791], [2.397071454995119, 48.88615075630244], [2.397293121636562, 48.88612788377797], [2.397301981665423, 48.88612434187642], [2.397381670449642, 48.886053190134625], [2.397534479929995, 48.88591747784741], [2.397614168079973, 48.88584632593749], [2.3976163053169, 48.88584346784893], [2.397669346034009, 48.885721802636006], [2.397722400245461, 48.88560036408477], [2.397775440466975, 48.885478698797975], [2.397828494183335, 48.88535726017289], [2.397881533909465, 48.88523559481217], [2.397934588483857, 48.885114157019345], [2.397987627714504, 48.88499249158469], [2.398040680440598, 48.88487105281187], [2.398093719175773, 48.88474938730335], [2.3981467714068962, 48.88462794845668], [2.398199824743692, 48.88450651047918], [2.398252862735768, 48.88438484485986], [2.398305914224393, 48.884263405902374], [2.398358951720913, 48.884141740209124], [2.398363943371222, 48.88412904974182]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 19, "roussel_fabien": 15.0, "nb_emargement": 862.0, "nb_procuration": 17.0, "nb_vote_blanc": 10.0, "jadot_yannick": 25.0, "le_pen_marine": 78.0, "nb_exprime": 843.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1296.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 862, "quartier_bv": "75", "geo_point_2d": [48.88539200436449, 2.3960449675505333], "melenchon_jean_luc": 472.0, "poutou_philippe": 12.0, "macron_emmanuel": 147.0}, "geometry": {"type": "Point", "coordinates": [2.3960449675505333, 48.88539200436449]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b5be41d0152d3bf0ee96db830e1ad219c9ee9b93", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 62, "zemmour_eric": 72.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-28", "geo_shape": {"coordinates": [[[2.354808712597005, 48.88021630963243], [2.354798253285149, 48.880214730695734], [2.354654433138037, 48.88024772812109], [2.35447852111605, 48.880288028483584], [2.354291952970004, 48.88033083330983], [2.354116040397968, 48.8803711322374], [2.3539294702817513, 48.88041393738749], [2.353753557148525, 48.88045423577939], [2.353716367428838, 48.880442817659414], [2.353699049078561, 48.88045137483902], [2.353523135640585, 48.88049167289098], [2.353350547121058, 48.880531903207164], [2.353174633141413, 48.88057220074411], [2.353002045449202, 48.880612430562316], [2.352826130927893, 48.880652727584234], [2.352653541325047, 48.880692957789], [2.352477626262075, 48.880733254295905], [2.352305037497834, 48.88077348310344], [2.352129121893207, 48.88081377909533], [2.351956531229411, 48.880854007390134], [2.351949488255156, 48.88085774555924], [2.351856879518777, 48.88095619496742], [2.351762153796223, 48.88105587930765], [2.351669545716884, 48.88115432856059], [2.35157481927537, 48.881254012734686], [2.351482209126058, 48.88135246181758], [2.351387481954375, 48.8814521467248], [2.351294871109785, 48.88155059474581], [2.351200143219121, 48.88165027948684], [2.351186693163274, 48.88165440917053], [2.35101697660638, 48.88163868631387], [2.350794774573988, 48.881620210855196], [2.350625059610282, 48.88160448744983], [2.350402857851629, 48.88158601216252], [2.350233141754185, 48.88157028819373], [2.350010941655229, 48.881551811286556], [2.349841225787574, 48.88153608676171], [2.349788427532074, 48.88152901007505], [2.349780979802955, 48.88153445734446], [2.349768840635295, 48.881657689703495], [2.349755446720184, 48.881795789266725], [2.349743307442418, 48.881919020694646], [2.349729913392285, 48.88205712022224], [2.349717772618525, 48.882180352510154], [2.34970437980823, 48.88231845111025], [2.349692238913024, 48.8824416833663], [2.349678844604373, 48.88257978192332], [2.349666704951362, 48.88270301415493], [2.349653310496452, 48.88284111357559], [2.349641170722203, 48.88296434577529], [2.349627776143595, 48.883102444261006], [2.349615636247901, 48.88322567642889], [2.34960349493129, 48.88334890857434], [2.349590100153859, 48.88348700700757], [2.34958990717115, 48.88348804648347], [2.349554945334908, 48.88358899964086], [2.349528501603935, 48.88368463725657], [2.34951931133085, 48.88372017288942], [2.349572029488045, 48.88373143561171], [2.349760751168921, 48.88374570243495], [2.349955190279891, 48.88375967534441], [2.350143913531649, 48.88377394157073], [2.350338351487289, 48.88378791385019], [2.350527074946346, 48.88380217947217], [2.3507215131102193, 48.88381615112899], [2.350910289067078, 48.883831800497695], [2.351104727444358, 48.883845771531824], [2.351293503623748, 48.883861420295894], [2.351487943578002, 48.88387539071467], [2.351676718616338, 48.88389103886677], [2.351871158783983, 48.883905008662836], [2.352059935408409, 48.88392065621766], [2.352254374425859, 48.88393462538365], [2.352443151272789, 48.88395027233385], [2.3526375905037122, 48.88396424087711], [2.352826367573139, 48.88397988722266], [2.353020808380903, 48.88399385515062], [2.353209584309238, 48.88400950088415], [2.353404025330359, 48.88402346818937], [2.353592801481173, 48.88403911331829], [2.353787242715638, 48.88405308000081], [2.353976020452505, 48.88406872453247], [2.354106773450398, 48.88407811568963], [2.3541424804970292, 48.884084283451514], [2.354152197471186, 48.88408288615041], [2.35421588456734, 48.88408746102146], [2.354417034511424, 48.884100611199536], [2.354611476196558, 48.88411457654271], [2.354812626345271, 48.88412772605584], [2.355007066874146, 48.884141690748876], [2.355208217227478, 48.884154839597095], [2.355402659327253, 48.8841688036547], [2.355603809874065, 48.884181952737265], [2.355798250817565, 48.88419591614473], [2.355999401580108, 48.88420906366309], [2.356193844094491, 48.88422302643513], [2.356388285349554, 48.88423698888392], [2.356589436419705, 48.884250135410504], [2.356783879245639, 48.884264097223806], [2.356985030520365, 48.88427724308547], [2.3571794721899852, 48.88429120424865], [2.3573806236692763, 48.88430434944538], [2.357575066909746, 48.88431830997311], [2.357776217218913, 48.88433145539688], [2.357970660666644, 48.884345415281814], [2.358171812555037, 48.88435855914867], [2.358366254846421, 48.88437251838354], [2.358521812929146, 48.88438268245587], [2.358550752753721, 48.88438631250834], [2.358566709362223, 48.88433867155859], [2.358581948124179, 48.88422409426792], [2.358601550384985, 48.88408948711963], [2.358613461350347, 48.88408388246199], [2.358616959518589, 48.88406934557463], [2.358511120610417, 48.88396235204122], [2.358399771170104, 48.88384986365281], [2.35829393315413, 48.88374286990607], [2.358182584652255, 48.88363038129324], [2.358076747528671, 48.88352338733311], [2.35796539997631, 48.883410897596605], [2.357859563733919, 48.88330390432244], [2.357748217119978, 48.8831914143615], [2.357642381780844, 48.88308441997472], [2.357531036094221, 48.88297193068865], [2.357425201647449, 48.88286493608854], [2.3573138568992222, 48.88275244657802], [2.3572080233447, 48.88264545176462], [2.357096679545961, 48.88253296113043], [2.356990846872477, 48.88242596700299], [2.356879504012117, 48.88231347614435], [2.35677367224207, 48.88220648090433], [2.356662330308972, 48.88209399072059], [2.356556499431146, 48.881986995267255], [2.356445158436404, 48.88187450485911], [2.3563393284506873, 48.881767509192485], [2.356227988394393, 48.88165501855995], [2.356122159300879, 48.88154802267997], [2.356010820193939, 48.88143553092379], [2.355904991981598, 48.8813285357298], [2.355793653812986, 48.881216043749234], [2.355687826503849, 48.88110904744268], [2.355576489262531, 48.88099655613698], [2.3554706628455673, 48.880889559617174], [2.355359326542452, 48.88077706808708], [2.355253501017753, 48.88067007135399], [2.355142165652933, 48.880557579599525], [2.355036341020387, 48.880450582653154], [2.354925006604991, 48.88033808977503], [2.354819182853348, 48.88023109351468], [2.354808712597005, 48.88021630963243]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 28, "roussel_fabien": 30.0, "nb_emargement": 1083.0, "nb_procuration": 72.0, "nb_vote_blanc": 13.0, "jadot_yannick": 119.0, "le_pen_marine": 33.0, "nb_exprime": 1069.0, "nb_vote_nul": 1.0, "arr_bv": "10", "arthaud_nathalie": 6, "nb_inscrit": 1381.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1083, "quartier_bv": "37", "geo_point_2d": [48.88258021136814, 2.3537885552359086], "melenchon_jean_luc": 387.0, "poutou_philippe": 5.0, "macron_emmanuel": 317.0}, "geometry": {"type": "Point", "coordinates": [2.3537885552359086, 48.88258021136814]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2c094504ddb378a22d8f6a2ae8794c8df7a91815", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 11, "zemmour_eric": 42.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "18-44", "geo_shape": {"coordinates": [[[2.328987482641769, 48.89764527437474], [2.328988268380803, 48.89767320715605], [2.329021242013969, 48.89777014432511], [2.329065040801843, 48.89789871094092], [2.329109121282926, 48.89802829803147], [2.329152921868954, 48.89815686459247], [2.329197002787365, 48.898286451620145], [2.329240802443659, 48.89841501811104], [2.329284883799404, 48.89854460507576], [2.329328683889914, 48.89867317150418], [2.329372765682999, 48.898802758406], [2.329416567571598, 48.89893132477957], [2.329460649802132, 48.89906091161848], [2.3295044507611, 48.89918947792192], [2.329548533428884, 48.89931906469788], [2.3295923348220873, 48.89944763093885], [2.329636417927228, 48.89957721765193], [2.329680221118561, 48.899705783838066], [2.329724304661172, 48.899835370488155], [2.329768106922769, 48.89996393660416], [2.32981219090275, 48.90009352319134], [2.329855993598603, 48.90022208924485], [2.329900078027537, 48.90035167486984], [2.329943882510083, 48.900480241767724], [2.329987967376403, 48.90060982732977], [2.330031770929214, 48.900738394157564], [2.330075856232923, 48.90086797965665], [2.330119660231582, 48.90099654552268], [2.330128724278723, 48.90101014353028], [2.330166729208784, 48.9010262713007], [2.330168293449863, 48.90102630073335], [2.330248949274399, 48.901027826475136], [2.330448024664685, 48.90103235875086], [2.330569810328441, 48.90103466188486], [2.330764301104896, 48.90103833973853], [2.330963376580247, 48.90104287115761], [2.331157867415275, 48.901046548372186], [2.3313569429677212, 48.90105107823783], [2.331444155858344, 48.90105272701457], [2.331643231447885, 48.901057257303606], [2.331837205306168, 48.9010617902763], [2.3320362796005423, 48.90106631990443], [2.332230253526714, 48.90107085224052], [2.332429329253962, 48.90107538122292], [2.332623301884192, 48.901079912914824], [2.33282237768028, 48.90108444124388], [2.333016350366957, 48.90108897319848], [2.333215426243397, 48.90109349997488], [2.333409400361966, 48.901098031300464], [2.333619651280963, 48.90110253596399], [2.333813625479991, 48.90110706573566], [2.334023876458843, 48.901111570588796], [2.334217850726705, 48.90111609970572], [2.334411823652795, 48.90112062940018], [2.334622076113706, 48.901125132311485], [2.334660349510075, 48.901126025716465], [2.334768040309564, 48.90112854035509], [2.334978292833234, 48.901133042641035], [2.335026834839825, 48.90113417640581], [2.33513508616418, 48.90113670281946], [2.335170306585649, 48.901077152242706], [2.335184073822365, 48.90107335440772], [2.335213606638325, 48.90103307697249], [2.335248637250617, 48.900973849967656], [2.335315124561376, 48.90085409455839], [2.335385373517791, 48.900735316847985], [2.335451861573266, 48.900615561344246], [2.335522109895818, 48.9004967835277], [2.335588595968193, 48.900377027914416], [2.3356588450208973, 48.900258249999325], [2.33572533047409, 48.900138494283965], [2.33579557889284, 48.9000197162628], [2.33586206372686, 48.899899960445445], [2.335932310159347, 48.899781181411335], [2.335998795738191, 48.89966142549951], [2.336069041525377, 48.89954264725852], [2.336135525121076, 48.899422891237165], [2.336205771638319, 48.89930411289766], [2.336272254614869, 48.89918435677427], [2.336342500498394, 48.89906557832867], [2.336435803466419, 48.89895849281418], [2.336436664346384, 48.89895730239023], [2.336536216033909, 48.89884226186797], [2.336629519567206, 48.8987351761883], [2.336729070403916, 48.898620135482375], [2.336822371789924, 48.89851304872387], [2.336921921775728, 48.89839800783436], [2.337015223719462, 48.89829092181068], [2.337114772854368, 48.8981758807375], [2.337208072650837, 48.898068793635055], [2.337307620934857, 48.897953752378186], [2.337400921289065, 48.897846666010565], [2.337405078431434, 48.897835442128226], [2.337361179784952, 48.89780462779639], [2.337294289648631, 48.89780315510848], [2.337097438978637, 48.89779934162167], [2.336897213157112, 48.89779493355915], [2.336700362547294, 48.89779111941962], [2.336500136802477, 48.89778670979396], [2.336303286241383, 48.897782895901024], [2.336103060561932, 48.89777848561147], [2.335906208708561, 48.89777467015902], [2.335705984446748, 48.89777026011242], [2.335509132653685, 48.89776644400727], [2.33530890846863, 48.89776203239754], [2.335112056735686, 48.89775821563969], [2.334911832604439, 48.897753804265335], [2.334714980931719, 48.897749986854826], [2.334514756877367, 48.89774557391732], [2.334317905253389, 48.897741756753376], [2.334117681264248, 48.897737343152016], [2.333920829712015, 48.8977335244361], [2.333720605788303, 48.89772911017088], [2.333523754284816, 48.89772529170155], [2.333323530426337, 48.89772087677246], [2.333126678994627, 48.897717056751155], [2.332926455190075, 48.89771264205742], [2.332729603818641, 48.89770882138346], [2.332529380090864, 48.897704405126575], [2.332332528779719, 48.897700583799946], [2.332132305105773, 48.897696167778456], [2.332054603177637, 48.897694658847406], [2.332023233759803, 48.897689868577416], [2.332009659592209, 48.897695254433046], [2.331890510270232, 48.89769294134002], [2.331680138197535, 48.8976891802079], [2.331483287006307, 48.8976853574853], [2.331272913641396, 48.897681594730976], [2.3310760624972, 48.897677772238275], [2.33086569055621, 48.89767400877626], [2.3306688394706, 48.89767018561416], [2.330458466225876, 48.897666421429136], [2.330261616562797, 48.897662597605326], [2.33005124337808, 48.897658832704984], [2.329854392409676, 48.897655008204204], [2.329644020649114, 48.89765124259611], [2.329447169739328, 48.897647417425965], [2.329250318870055, 48.89764359103298], [2.329039947187639, 48.89763982526301], [2.328987482641769, 48.89764527437474]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 44, "roussel_fabien": 8.0, "nb_emargement": 804.0, "nb_procuration": 5.0, "nb_vote_blanc": 9.0, "jadot_yannick": 26.0, "le_pen_marine": 109.0, "nb_exprime": 791.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1300.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 804, "quartier_bv": "69", "geo_point_2d": [48.899256428504906, 2.3328925076858846], "melenchon_jean_luc": 393.0, "poutou_philippe": 4.0, "macron_emmanuel": 161.0}, "geometry": {"type": "Point", "coordinates": [2.3328925076858846, 48.899256428504906]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9b998c1763780f7e42814f0329d6b11129eb6c16", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 153, "zemmour_eric": 179.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-9", "geo_shape": {"coordinates": [[[2.281173159425829, 48.86021337248446], [2.281094349686772, 48.86020490200142], [2.281026645965569, 48.86021648366397], [2.281025671776726, 48.86021685104352], [2.281015758632076, 48.86024320644794], [2.28099032265595, 48.8603802187795], [2.280963406504748, 48.860520276405616], [2.280958842794313, 48.86052592301538], [2.28081254525246, 48.86061009409968], [2.280671342231329, 48.86069071709114], [2.280530140148568, 48.860771339019024], [2.280383841224991, 48.860855509560615], [2.280242636875329, 48.86093613202838], [2.28009633702453, 48.86102030220599], [2.280059703190456, 48.8610315683823], [2.280057594772273, 48.861038061629955], [2.280115970068544, 48.86109165459559], [2.280240342842999, 48.861203212170054], [2.280357062000623, 48.86131036800305], [2.280481435813428, 48.86142192530495], [2.280598155956907, 48.861529080881674], [2.280722530820591, 48.86164063701171], [2.280839250586946, 48.86174779232396], [2.280963627839469, 48.8618593490889], [2.281080348591693, 48.861966504144846], [2.281204725519608, 48.86207806062905], [2.281321448620707, 48.862185215436895], [2.281445826599521, 48.862296770749225], [2.281562550686513, 48.86240392530077], [2.281679273890648, 48.86251107971993], [2.281803653401112, 48.86262263552684], [2.281806070595388, 48.86262962541642], [2.281774428142977, 48.86274071968336], [2.281730787496704, 48.86288572577471], [2.281699143365191, 48.86299681998792], [2.281655503657769, 48.86314182602647], [2.281623859210267, 48.86325292019408], [2.281580217703346, 48.863397927062756], [2.281548574302675, 48.86350902119295], [2.28154400520542, 48.86358146538658], [2.281596572476344, 48.86358484504296], [2.28178809898158, 48.863562448639016], [2.281985416792743, 48.86353968826142], [2.282176942952513, 48.863517292133594], [2.282374259059731, 48.86349453110581], [2.28256578489871, 48.86347213345553], [2.2827631020156582, 48.86344937269319], [2.282954627521447, 48.86342697441973], [2.283151944309846, 48.86340421211611], [2.283343468119404, 48.86338181321132], [2.283540784554495, 48.86335905116494], [2.283732309393876, 48.86333665164516], [2.283929625500387, 48.86331388805752], [2.284121150006449, 48.86329148791453], [2.284318464396723, 48.863268724575995], [2.2845099885695612, 48.863246323809896], [2.284707303994151, 48.86322355893823], [2.284898827821511, 48.863201158448184], [2.285096142905129, 48.86317839293454], [2.285287666411593, 48.86315599092203], [2.285484979778868, 48.863133225657556], [2.285676502952084, 48.86311082302188], [2.285873817353727, 48.86308805622423], [2.286065340193681, 48.86306565296541], [2.286262654242002, 48.86304288642506], [2.28645417538567, 48.86302048253494], [2.286651489105305, 48.862997714453314], [2.286843011278616, 48.86297530994817], [2.286958025212416, 48.862962038215], [2.28702849386446, 48.862966314474924], [2.287042366379441, 48.86295962859325], [2.287124664442055, 48.862950131536664], [2.28716939062065, 48.86293758577366], [2.287173529242881, 48.8629357757456], [2.287297456118243, 48.86285675925088], [2.287424586039135, 48.862767867019606], [2.287485315683467, 48.862729144538356], [2.287497166014852, 48.86271402952323], [2.287447663427613, 48.862667304817975], [2.287292677228064, 48.86256978875331], [2.287140817494903, 48.8624718513156], [2.286985832451045, 48.86237433483636], [2.2868339738767363, 48.86227639609271], [2.286678988625768, 48.8621788791908], [2.286527131185685, 48.862080940939826], [2.286524074561943, 48.86207949094662], [2.286344007738487, 48.86201694919299], [2.286163330548245, 48.86195501418247], [2.285983265951157, 48.861892471887174], [2.285802589609017, 48.861830537224364], [2.285622525887529, 48.86176799347997], [2.285441850406015, 48.86170605826564], [2.28526178753537, 48.861643514870764], [2.28508111291438, 48.86158157910484], [2.284901049556367, 48.861519034252765], [2.284720377158888, 48.86145709794344], [2.284540314651811, 48.861394553440846], [2.284359641764233, 48.86133261567254], [2.284179581483514, 48.86127007062833], [2.283998909444013, 48.86120813320777], [2.283818850026568, 48.861145587613784], [2.2836381788600653, 48.86108364874237], [2.283469539960068, 48.86102506967499], [2.283288870989737, 48.860963130277725], [2.283120232872688, 48.860904550711744], [2.282939563372598, 48.86084261077218], [2.282770926038296, 48.86078403070763], [2.282590258721993, 48.86072209114145], [2.282421622183024, 48.86066350967902], [2.282240954336965, 48.860601569570626], [2.282072318580752, 48.86054298760965], [2.281891652930852, 48.86048104697537], [2.281723017957598, 48.86042246451577], [2.281542351777952, 48.86036052333925], [2.281373718950404, 48.8603019403893], [2.281193053603965, 48.8602399986787], [2.281173159425829, 48.86021337248446]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 9, "roussel_fabien": 5.0, "nb_emargement": 1013.0, "nb_procuration": 71.0, "nb_vote_blanc": 7.0, "jadot_yannick": 26.0, "le_pen_marine": 52.0, "nb_exprime": 1003.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1260.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1013, "quartier_bv": "62", "geo_point_2d": [48.86208057255922, 2.2833980889872105], "melenchon_jean_luc": 66.0, "poutou_philippe": 1.0, "macron_emmanuel": 495.0}, "geometry": {"type": "Point", "coordinates": [2.2833980889872105, 48.86208057255922]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1b9cb54fb3119d95591e121b82156af9299d44d3", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 137, "zemmour_eric": 121.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 22.0, "date_tour": "2022-04-10", "id_bvote": "15-36", "geo_shape": {"coordinates": [[[2.314911979706466, 48.8420150090722], [2.314940416522766, 48.84201436519165], [2.315050618951622, 48.8420730224594], [2.315217357041538, 48.84216174261185], [2.315355218804486, 48.84223512135411], [2.31552195794319, 48.84232384016984], [2.315659821914426, 48.842397219457524], [2.315826562090212, 48.84248593783578], [2.315964425556586, 48.842559316753984], [2.31596654223601, 48.84256072377384], [2.316079995033245, 48.84265501892357], [2.316197970096618, 48.842753300612024], [2.3163114223693633, 48.84284759551819], [2.316429398305054, 48.842945876961466], [2.316542852778108, 48.84304017163969], [2.316660829586229, 48.84313845283775], [2.316691580236126, 48.843159250036265], [2.316712338535782, 48.84315763912378], [2.316744943727367, 48.84312646627646], [2.316845280539289, 48.84303289462274], [2.316913869874166, 48.84296731782782], [2.317015062543984, 48.842870568053854], [2.317115398378307, 48.84277699615211], [2.317216590304399, 48.84268024619117], [2.317316926761229, 48.84258667501154], [2.317418117955481, 48.84248992396434], [2.317518452321624, 48.84239635259191], [2.317520761129319, 48.84239235099411], [2.317544082069583, 48.842268369729176], [2.31756395511448, 48.842153688908915], [2.31758727585698, 48.842029706709745], [2.317607148715836, 48.84191502585778], [2.317611756112758, 48.84190925572387], [2.317756780758823, 48.84182618821143], [2.317888134155368, 48.84175397436558], [2.318019487199693, 48.84168175947152], [2.318164510562918, 48.841598691447864], [2.3182958628212083, 48.8415264771396], [2.318440885311885, 48.84144340876933], [2.318455200276551, 48.84144194071865], [2.318635636398572, 48.84149318562229], [2.31881964534566, 48.841547253919636], [2.319000082190587, 48.84159849826873], [2.319184090525177, 48.84165256599261], [2.31936452944373, 48.84170381069425], [2.319548538539824, 48.84175787695313], [2.319728976818816, 48.84180912109245], [2.319912988027232, 48.84186318679343], [2.320093427029126, 48.84191443037822], [2.320277437613291, 48.84196849640504], [2.320293674234116, 48.8419658509909], [2.320409375573174, 48.841869077314904], [2.320551730653371, 48.84176237391575], [2.320667429710842, 48.841665599065465], [2.320809785069546, 48.8415588953475], [2.320925483196183, 48.84146212023], [2.32106783747073, 48.84135541618548], [2.321183534654827, 48.84125864170008], [2.321325886482977, 48.84115193732132], [2.321441584110425, 48.841055161677154], [2.321463630534895, 48.84099922021241], [2.321498887053822, 48.84099536674488], [2.321521892105984, 48.840966258814106], [2.3215432648433643, 48.840912028602354], [2.321594952432269, 48.84078922630504], [2.321638373835815, 48.84067905547346], [2.321690060981204, 48.84055625221011], [2.321733480627192, 48.84044608131331], [2.32178516730587, 48.84032327888255], [2.321828586568455, 48.84021310702895], [2.32184832217711, 48.84016621707829], [2.321846134667822, 48.84014951511715], [2.321784127524602, 48.84012926956775], [2.321688412447549, 48.84004879647747], [2.32158517293132, 48.83996159653027], [2.321489458469248, 48.83988112326874], [2.321386219629793, 48.83979392223742], [2.321367168042673, 48.83979233739405], [2.321222908998714, 48.83986572842399], [2.321079907875779, 48.83993874868248], [2.320935648010297, 48.84001214025569], [2.320792647445657, 48.840085160168925], [2.320648386770463, 48.84015855138609], [2.320505384039264, 48.840231570938634], [2.320361122566179, 48.840304960900454], [2.32021812039328, 48.84037798010775], [2.320073858098649, 48.84045137061283], [2.319930853759178, 48.84052438945945], [2.319911979546728, 48.84052297717414], [2.31978995849103, 48.840424706534975], [2.31966505754953, 48.84032111221401], [2.319543037420221, 48.84022284220455], [2.319418137453221, 48.840119247607035], [2.31929611691135, 48.84002097642085], [2.319171219281265, 48.83991738155457], [2.319049199665764, 48.839819110998064], [2.318924301647741, 48.83971551584752], [2.318802284344412, 48.839617244129876], [2.318677387289108, 48.8395136496021], [2.318555370923975, 48.83941537761481], [2.31843047485489, 48.83931178191123], [2.3183084580536812, 48.839213510545925], [2.318183564321455, 48.83910991457354], [2.31806154847009, 48.8390116420393], [2.317936654349912, 48.83890804578269], [2.317814640787249, 48.83880977388589], [2.317689747641407, 48.838706177352776], [2.317595473888141, 48.83863024637227], [2.317582092168624, 48.83861273126584], [2.317578357624232, 48.838610547877245], [2.3175506174202, 48.83858820577994], [2.317426733136191, 48.83848755383976], [2.317304721531003, 48.83838928048661], [2.317295500753363, 48.83837573102647], [2.317207399384866, 48.838392628262085], [2.317083597508907, 48.8385096570434], [2.316963192843852, 48.83862368770287], [2.316839389870788, 48.838740716207234], [2.316718984137729, 48.838854746597356], [2.316595180055858, 48.83897177572405], [2.316474773266576, 48.839085804945455], [2.316350968087469, 48.839202833795255], [2.3162305602301663, 48.83931686274727], [2.316230026747188, 48.83931733546373], [2.316103960830978, 48.83942122483386], [2.315973742652753, 48.839528766938635], [2.315847675702439, 48.83963265691835], [2.315717456467204, 48.83974019872377], [2.3155913898690033, 48.83984408752219], [2.315461168214333, 48.83995162902052], [2.315335100582106, 48.840055518428464], [2.315204879244645, 48.84016305873593], [2.315078809227661, 48.84026694784631], [2.314948586821346, 48.840374488753746], [2.314939342241684, 48.84037479465951], [2.314922807023131, 48.84039219176884], [2.314917957344007, 48.84039471729999], [2.314772313218475, 48.84043987767346], [2.314557921711589, 48.840506280954784], [2.314412278324697, 48.84055144089322], [2.314197885900231, 48.84061784352266], [2.314052240515478, 48.84066300390968], [2.314046723464579, 48.84066612545669], [2.313924892517391, 48.84078566594357], [2.313800947405505, 48.8409080253783], [2.31367911669154, 48.84102756559682], [2.313555170415678, 48.8411499256497], [2.3135309458331133, 48.84115883067668], [2.313529918270993, 48.84116112266359], [2.313606659642937, 48.84124972890023], [2.31367115236023, 48.84132330922769], [2.313672609959279, 48.841324678333], [2.313836599964917, 48.8414517355422], [2.313997580914243, 48.84157589368014], [2.313999840746424, 48.84157728716761], [2.314147837468817, 48.8416496687214], [2.314291126905297, 48.841715222090386], [2.314434416714047, 48.841780774384596], [2.314582414617762, 48.84185315538754], [2.314725705160254, 48.84191870822404], [2.314873703860265, 48.84199108885772], [2.314874494460712, 48.8419914792139], [2.314902152921952, 48.84200620105905], [2.314911979706466, 48.8420150090722]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 36, "roussel_fabien": 24.0, "nb_emargement": 1354.0, "nb_procuration": 91.0, "nb_vote_blanc": 17.0, "jadot_yannick": 94.0, "le_pen_marine": 68.0, "nb_exprime": 1333.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1610.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1354, "quartier_bv": "58", "geo_point_2d": [48.84081485560384, 2.3174931775609857], "melenchon_jean_luc": 289.0, "poutou_philippe": 2.0, "macron_emmanuel": 526.0}, "geometry": {"type": "Point", "coordinates": [2.3174931775609857, 48.84081485560384]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2172b49891b87b7bcac1bafbbccdfe90f82e1dba", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 93, "zemmour_eric": 83.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-9", "geo_shape": {"coordinates": [[[2.323799011839277, 48.83070128693545], [2.323846486837172, 48.83068508959103], [2.323972681381225, 48.830598497055576], [2.324109111086574, 48.83050783679255], [2.324235304776884, 48.830421243066986], [2.324371733561644, 48.83033058249006], [2.324497926386655, 48.8302439884737], [2.324634352888664, 48.8301533275752], [2.324760544848488, 48.830066733268005], [2.324896971792088, 48.8299760720633], [2.325023162886525, 48.82988947746536], [2.325129359679461, 48.829818905599616], [2.325145239128845, 48.82981880993274], [2.325157980240595, 48.82979996346635], [2.325188209437034, 48.82977987470522], [2.325332919855952, 48.82968469629582], [2.325469344804409, 48.82959403440727], [2.325614054194308, 48.82949885564194], [2.325750476805491, 48.82940819341003], [2.32589518516628, 48.829313014288736], [2.326031608164291, 48.82922235172881], [2.32603526606703, 48.829218004973875], [2.326076654778273, 48.82909974185076], [2.326116650774859, 48.82898308613351], [2.326158039114981, 48.828864822957435], [2.326198034749338, 48.828748167188536], [2.326239422718347, 48.828629903959545], [2.326279417990374, 48.828513248139004], [2.326320805588172, 48.828394984857056], [2.326360800486256, 48.828278329884185], [2.326400795216976, 48.82816167398647], [2.326442182260438, 48.828043410625455], [2.326443082230774, 48.828041652016566], [2.326519066520329, 48.827932089772204], [2.3265944771280083, 48.82781650740953], [2.326589836646599, 48.827805608713426], [2.326422270259322, 48.827727295256736], [2.326254447316957, 48.82764852952369], [2.326086880587974, 48.82757021467911], [2.325919060020059, 48.8274914484721], [2.325751494288121, 48.82741313404596], [2.325583673370453, 48.82733436734962], [2.325416110020808, 48.827256051550975], [2.325248290115483, 48.827177284372986], [2.325235104940891, 48.8271615572141], [2.32520724094703, 48.82716930911987], [2.325146157339685, 48.827195722717356], [2.325085450485736, 48.82722217528404], [2.3250538235542, 48.82723123429811], [2.325052696746392, 48.82723504489639], [2.324939085737038, 48.82728454933209], [2.324775564679531, 48.82735571308215], [2.324601247174258, 48.82743166867359], [2.324437725194171, 48.82750283195235], [2.324263405342697, 48.827578787033715], [2.324099882440125, 48.82764994984124], [2.323925562966648, 48.82772590442791], [2.3237620391413882, 48.82779706676419], [2.3235877173216988, 48.827873020840755], [2.32342419257385, 48.82794418270573], [2.32324987113216, 48.82802013628759], [2.323086345473399, 48.828091296782006], [2.322912021673809, 48.82816725075307], [2.322748495092564, 48.82823841077621], [2.3225741716709702, 48.82831436425255], [2.322410644167036, 48.82838552380436], [2.322247116205003, 48.8284566840274], [2.322072789972678, 48.828532635851154], [2.322021220228849, 48.82854118708435], [2.322022683231891, 48.82855742283117], [2.322064191843153, 48.828594851856266], [2.322100691083803, 48.828623946727916], [2.322102241779795, 48.828625479061735], [2.322187088919924, 48.82873070586024], [2.322269322734838, 48.82883338603275], [2.322354169188436, 48.82893861268552], [2.322436403648683, 48.82904129362342], [2.322521250789675, 48.82914651923885], [2.322603485906852, 48.82924920004283], [2.322628636875989, 48.82928020998106], [2.322636317737857, 48.82928120772189], [2.322726945493752, 48.82938486771318], [2.3228138547218, 48.829486745591105], [2.322904483199693, 48.82959040452957], [2.322991394479485, 48.8296922822675], [2.323082023667701, 48.8297959410524], [2.323168934274937, 48.82989781863493], [2.3232595641618072, 48.83000147816564], [2.323346476820712, 48.83010335560821], [2.323437107429596, 48.83020701408602], [2.323501097486493, 48.830283859821115], [2.323501699112594, 48.830284632189894], [2.323568402678732, 48.83038144676606], [2.323649398087068, 48.83049662011583], [2.323716102198642, 48.830593434591314], [2.323776685364393, 48.830679581103766], [2.323799011839277, 48.83070128693545]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 9, "roussel_fabien": 34.0, "nb_emargement": 1296.0, "nb_procuration": 81.0, "nb_vote_blanc": 19.0, "jadot_yannick": 118.0, "le_pen_marine": 50.0, "nb_exprime": 1274.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1579.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1296, "quartier_bv": "55", "geo_point_2d": [48.828780069963955, 2.3244233198239175], "melenchon_jean_luc": 334.0, "poutou_philippe": 4.0, "macron_emmanuel": 494.0}, "geometry": {"type": "Point", "coordinates": [2.3244233198239175, 48.828780069963955]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "79a4df8ef750c9d9c7559cb072d1731b53407afa", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 73, "zemmour_eric": 87.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "6-6", "geo_shape": {"coordinates": [[[2.339740860663706, 48.85196142190459], [2.339771532672716, 48.8519839644371], [2.339912903840351, 48.852022061415816], [2.340054959212535, 48.85206006127095], [2.340196330805217, 48.852098157012904], [2.340338387942889, 48.85213615743575], [2.340346121012751, 48.85214150447063], [2.340405624978294, 48.85225298929484], [2.340461014293607, 48.85235837984594], [2.340461786216997, 48.85236124225336], [2.34046419669176, 48.852475187713786], [2.34046643509394, 48.852587331704186], [2.340468672143096, 48.85269947567575], [2.340471082637079, 48.8528134220007], [2.340473319705944, 48.85292556594931], [2.340475730231931, 48.85303951135169], [2.340474577535739, 48.85304325890647], [2.340405277804032, 48.8531472074976], [2.340335398475622, 48.853251272459254], [2.340266098189731, 48.8533552209503], [2.3401962183157963, 48.85345928491192], [2.340126917475613, 48.85356323330292], [2.340057037033373, 48.85366729806306], [2.340056489444862, 48.853673624701145], [2.3401222072552192, 48.85381238073133], [2.340187920373872, 48.85395013569876], [2.340253638882851, 48.85408889162226], [2.340319352686397, 48.854226647382525], [2.340321149031117, 48.85423826704946], [2.340340912692989, 48.854242951022165], [2.34049386390564, 48.85427081883177], [2.340653241124384, 48.854301171694544], [2.340658552589187, 48.85430146717123], [2.3408431236525162, 48.8542876825008], [2.3410295787494713, 48.85427384676571], [2.341214149616707, 48.854260061522645], [2.341400604516305, 48.854246225209046], [2.341585175187643, 48.85423243939334], [2.341771628527079, 48.854218602493795], [2.34195619900241, 48.854204816105444], [2.342142653495918, 48.854190979534195], [2.34215572808601, 48.85419514347734], [2.342257224006964, 48.854302114803204], [2.342357389309654, 48.85440807503827], [2.342458886059359, 48.85451504617259], [2.3425590535556102, 48.85462100532674], [2.342660551133977, 48.85472797626948], [2.342760718075485, 48.85483393612632], [2.34284116507217, 48.85489035192852], [2.342860754145458, 48.854879306628035], [2.342975201775532, 48.85482608901046], [2.343139034725837, 48.854746487354525], [2.34331546231365, 48.85466444719431], [2.343479292873007, 48.854584845053466], [2.3436557193777903, 48.85450280437963], [2.343819550272026, 48.854423201768775], [2.343995975693783, 48.85434116058134], [2.344159805559884, 48.85426155749312], [2.344336229898618, 48.854179515792055], [2.344500057373998, 48.85409991221891], [2.344596464246878, 48.85405686572072], [2.3445288866827783, 48.85398177542415], [2.344397816623101, 48.8538644156263], [2.344275734388952, 48.85374116379005], [2.344274114031798, 48.8537388831415], [2.344214134583396, 48.85361002770936], [2.3441567657757982, 48.85348763041458], [2.344096788269567, 48.853358774901956], [2.344039420014223, 48.853236377523224], [2.3439820506656153, 48.853113980096026], [2.343922074021502, 48.85298512445257], [2.343864706587912, 48.85286272694893], [2.343804729171725, 48.85273387031072], [2.343747362290375, 48.85261147272315], [2.343687386804982, 48.85248261690382], [2.343630019113107, 48.852360219224835], [2.3435700442070653, 48.85223136331758], [2.343512678430165, 48.8521089655622], [2.343452702740719, 48.85198010955949], [2.343395337516034, 48.851857711720214], [2.343335363768662, 48.85172885563706], [2.343277997744785, 48.851606456807126], [2.34321802457684, 48.851477600636066], [2.34316066045646, 48.85135520262896], [2.343100686505109, 48.851226346362495], [2.34304332293692, 48.851103948271515], [2.342983350927597, 48.8509750919246], [2.342925986548981, 48.85085269374225], [2.342866015118858, 48.850723837307456], [2.342808652666369, 48.850601438149376], [2.342748680452937, 48.85047258161919], [2.342710640436854, 48.850391410729245], [2.34269012933611, 48.8503638649586], [2.342594895023913, 48.850389241412735], [2.342436229145397, 48.85045014365055], [2.342281293844856, 48.850511503271804], [2.342122628590279, 48.85057240509451], [2.341967692545619, 48.850633765202225], [2.341809026552176, 48.850694666602415], [2.341654088423499, 48.850756025390524], [2.341499151292663, 48.850817383982104], [2.341340484192561, 48.8508782847509], [2.34133635358644, 48.85087936372405], [2.341251757443836, 48.85089143862284], [2.341190337638037, 48.850883718526056], [2.341179318717364, 48.85088550782983], [2.341121480902551, 48.850915788159234], [2.34112054605448, 48.85091632532336], [2.3409682977705, 48.85101056322586], [2.340828432264617, 48.85109857904924], [2.340676184282507, 48.85119281657211], [2.34053631779396, 48.85128083203962], [2.340396449470313, 48.85136884732918], [2.340244199917461, 48.85146308427949], [2.340242428742891, 48.851464446931004], [2.340112276107496, 48.85158755167841], [2.339987966618847, 48.85170312042293], [2.33985781413742, 48.85182622577391], [2.339733503526451, 48.85194179333001], [2.339740860663706, 48.85196142190459]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 6, "roussel_fabien": 11.0, "nb_emargement": 947.0, "nb_procuration": 59.0, "nb_vote_blanc": 7.0, "jadot_yannick": 74.0, "le_pen_marine": 57.0, "nb_exprime": 939.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 3, "nb_inscrit": 1191.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 947, "quartier_bv": "21", "geo_point_2d": [48.85274392298177, 2.3421066217122557], "melenchon_jean_luc": 164.0, "poutou_philippe": 5.0, "macron_emmanuel": 427.0}, "geometry": {"type": "Point", "coordinates": [2.3421066217122557, 48.85274392298177]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9bb858a16508dd0d29e21d3b47b57a9dd6d7992e", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 40, "zemmour_eric": 56.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-38", "geo_shape": {"coordinates": [[[2.354054930285193, 48.872254593994036], [2.354058393314032, 48.87223985094321], [2.354003800078001, 48.872150121625275], [2.353926894304639, 48.87202250232722], [2.353857637906791, 48.87190867334341], [2.353780732848016, 48.87178105392354], [2.353711477079441, 48.87166722572956], [2.353634572746401, 48.87153960528861], [2.353565317618246, 48.8714257769852], [2.353488413988615, 48.871298157321704], [2.353419159512032, 48.87118432800957], [2.353342256596958, 48.8710567082243], [2.353273004112855, 48.870942879709375], [2.353257527350804, 48.87093743062739], [2.353194199628636, 48.87094627698959], [2.353130889016931, 48.87095550023404], [2.353115329613286, 48.87095011993621], [2.353107827787345, 48.87093800845936], [2.353101414164047, 48.87092532548711], [2.353084344396089, 48.87091960246799], [2.352857600417299, 48.870967252285205], [2.352637703040053, 48.87101365624413], [2.352410959595342, 48.87106130611781], [2.352191061423261, 48.87110770925229], [2.352186509506679, 48.87110813338718], [2.352003986781977, 48.87110462186598], [2.351822682253104, 48.87110105101128], [2.351640159577645, 48.871097538935295], [2.351458855087274, 48.87109396842876], [2.351276332461166, 48.87109045579796], [2.351095028031493, 48.871086883841066], [2.35091372497872, 48.87108331251623], [2.350731201063578, 48.871079799046754], [2.350724332195626, 48.87107841817458], [2.350568362496551, 48.871013591222564], [2.350412133868304, 48.870949115197384], [2.350256164944937, 48.87088428783099], [2.350099937090937, 48.87081981139075], [2.349943968943173, 48.87075498360996], [2.349787741874643, 48.870690505855485], [2.349773019576835, 48.87069061654], [2.349622127109576, 48.870756538562354], [2.349441312849236, 48.87083498295761], [2.349290418169518, 48.87090090544506], [2.349109602908615, 48.870979349328955], [2.348958708754034, 48.871045271397044], [2.348777891140466, 48.87112371386295], [2.348626996147886, 48.87118963550427], [2.348446177522406, 48.87126807835813], [2.348295281691823, 48.87133399957262], [2.34811446206567, 48.87141244191515], [2.347963565397183, 48.871478362702916], [2.34790658774028, 48.87148383776209], [2.347905805834208, 48.871485202297094], [2.34790566429146, 48.871613792675085], [2.347906342716858, 48.87174483910397], [2.347906201163471, 48.871873430351], [2.347906879593602, 48.87200447674911], [2.347906738040834, 48.8721330679659], [2.347907416475697, 48.872264114333156], [2.347907274934809, 48.87239270462045], [2.347907953374301, 48.872523750956944], [2.347907914398134, 48.87255898952982], [2.347910556201139, 48.872566750824326], [2.347970846093881, 48.87257057497886], [2.348168952596005, 48.872538039359334], [2.348366306371378, 48.87250571425649], [2.348564413743076, 48.87247317798801], [2.348761767027277, 48.87244085223129], [2.3489598725419842, 48.872408315298976], [2.349157225335107, 48.872375988888344], [2.349355330356094, 48.87234345129967], [2.349552684021202, 48.872311124242586], [2.34975078854846, 48.87227858599751], [2.349948140359098, 48.87224625827915], [2.350146244392617, 48.87221371937768], [2.350343595712156, 48.87218139100542], [2.3505417006150973, 48.87214885145495], [2.350739051443424, 48.872116522428826], [2.350937154489444, 48.872083982214605], [2.35113450482645, 48.87205165253457], [2.3513326087419752, 48.8720191116714], [2.3515299585766583, 48.87198678223677], [2.351535453272889, 48.87198663573383], [2.351742303011354, 48.87200904170537], [2.351951904164122, 48.872032212262624], [2.352158752899443, 48.87205461750619], [2.352368354420852, 48.872077787333296], [2.352575204879553, 48.87210019186369], [2.352784806769591, 48.872123360960565], [2.352991657588395, 48.87214576477044], [2.353201259847053, 48.87216893313714], [2.353408111025947, 48.87219133622637], [2.353617713653215, 48.87221450386291], [2.353824563828918, 48.87223690622424], [2.35403416681363, 48.872260074029896], [2.354054930285193, 48.872254593994036]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 38, "roussel_fabien": 31.0, "nb_emargement": 1332.0, "nb_procuration": 87.0, "nb_vote_blanc": 7.0, "jadot_yannick": 165.0, "le_pen_marine": 35.0, "nb_exprime": 1317.0, "nb_vote_nul": 8.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1615.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1332, "quartier_bv": "38", "geo_point_2d": [48.87164068446581, 2.350675980972926], "melenchon_jean_luc": 425.0, "poutou_philippe": 4.0, "macron_emmanuel": 507.0}, "geometry": {"type": "Point", "coordinates": [2.350675980972926, 48.87164068446581]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "273b54142ba5545a1cf1245333d248bdc42e5039", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 71, "zemmour_eric": 84.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "9-22", "geo_shape": {"coordinates": [[[2.348614986831003, 48.876622508117784], [2.348564976277597, 48.87662471724778], [2.34836407482461, 48.87662114794818], [2.348158828812391, 48.87661751868101], [2.347957927403648, 48.87661394959907], [2.347752681448101, 48.876610319635574], [2.34755178010633, 48.876606748972705], [2.347346534207469, 48.87660311831286], [2.347145632910051, 48.876599547867684], [2.346940387067782, 48.87659591651145], [2.346739485837269, 48.87659234448537], [2.346534240040525, 48.87658871333203], [2.346333338865656, 48.87658514062432], [2.346128094500193, 48.87658150788287], [2.346115444550245, 48.876591484363864], [2.346133283066921, 48.876632284824986], [2.34623975638654, 48.87665740381259], [2.34643877650463, 48.876702897918314], [2.346610664791112, 48.87674344834858], [2.346809686914084, 48.87678894274083], [2.3469815757734143, 48.876829492635316], [2.347153464900392, 48.87687004228156], [2.3473524866291102, 48.876915534859464], [2.347361587102505, 48.8769249438542], [2.347338689183005, 48.877073236279216], [2.347318066056462, 48.877212772568136], [2.347295169238643, 48.87736106585279], [2.34727454588143, 48.8775006020978], [2.347253922413814, 48.87764013832159], [2.347231023873333, 48.877788430629764], [2.347220985233601, 48.8777962063954], [2.34708255763563, 48.8778206472394], [2.346934824968748, 48.877845780012535], [2.346926262666767, 48.87785879613455], [2.347016086177791, 48.87796735822467], [2.347105828313484, 48.87807265250971], [2.347195652567631, 48.87818121444398], [2.347285396787008, 48.87828650948071], [2.34737522178429, 48.87839507125919], [2.347464965371778, 48.87850036613343], [2.347554791112202, 48.87860892775612], [2.3476445354425, 48.87871422157602], [2.347643349602685, 48.878724203113165], [2.347516785855883, 48.87882987575237], [2.347357181006377, 48.87895740719325], [2.347311935134795, 48.87899518343989], [2.347289402034467, 48.8790127765565], [2.347293184519296, 48.879023540615954], [2.347211865439276, 48.879091435769865], [2.347098582068588, 48.8791827460568], [2.346972016102128, 48.87928841807611], [2.346858731882461, 48.87937972811974], [2.346732166314101, 48.87948539987402], [2.346618881234066, 48.8795767105736], [2.346623906520651, 48.87961980525822], [2.346648414440347, 48.87962602030127], [2.346842481164784, 48.87961088406737], [2.347069668292501, 48.8795944199794], [2.347263734788022, 48.879579282162986], [2.347402427079671, 48.8795692309941], [2.347413153587642, 48.87957002511994], [2.347429563195444, 48.87956712788418], [2.347518057753466, 48.87956071414513], [2.347705044963907, 48.87954630326218], [2.347884951361248, 48.87952545836112], [2.348071939718304, 48.87951104601283], [2.348251844483645, 48.879490200552354], [2.348438832601328, 48.87947578852983], [2.348618738461381, 48.879454942524795], [2.348626344085699, 48.87945549922461], [2.348787106722312, 48.879471767700174], [2.348969771272581, 48.87952200505438], [2.349181240086863, 48.87957535482482], [2.349363904017166, 48.879625591565514], [2.349365952518002, 48.87962599031107], [2.349432479313852, 48.87963527143133], [2.349476474715252, 48.87962788056458], [2.349487564156728, 48.87959612872639], [2.349490050115221, 48.87958901412326], [2.349475691615845, 48.87956700317545], [2.349434646761053, 48.87944571645216], [2.34938526559426, 48.87931547200632], [2.34934421978493, 48.879194185216896], [2.349294839082667, 48.879063940704015], [2.349294651187332, 48.87906326428354], [2.34926518687058, 48.87892838670896], [2.34924310505368, 48.87878813885064], [2.34921364101483, 48.878653262129], [2.349191558089948, 48.878513014218775], [2.349191432716426, 48.878512135787545], [2.349182403588875, 48.87837956448685], [2.349172091682111, 48.87825352165442], [2.349163062648525, 48.87812095032116], [2.349152752203192, 48.877994907464945], [2.349143723263666, 48.87786233609909], [2.349133411552918, 48.8777362932042], [2.349124382707556, 48.87760372180579], [2.349114072446882, 48.87747767978638], [2.349094901857978, 48.877442121088414], [2.349098090997859, 48.87743590514102], [2.349069110491839, 48.87740512522274], [2.349013379335212, 48.87730174853528], [2.348946135170046, 48.87717394621962], [2.3488712342184233, 48.87703501070638], [2.348803990757578, 48.876907207380704], [2.348729090568828, 48.8767682717449], [2.348661847789911, 48.876640469207736], [2.348614986831003, 48.876622508117784]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 22, "roussel_fabien": 18.0, "nb_emargement": 1158.0, "nb_procuration": 95.0, "nb_vote_blanc": 10.0, "jadot_yannick": 114.0, "le_pen_marine": 35.0, "nb_exprime": 1145.0, "nb_vote_nul": 4.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1414.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1159, "quartier_bv": "36", "geo_point_2d": [48.87813603301632, 2.348129898072157], "melenchon_jean_luc": 254.0, "poutou_philippe": 5.0, "macron_emmanuel": 508.0}, "geometry": {"type": "Point", "coordinates": [2.348129898072157, 48.87813603301632]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3fe6908b73f246f362294a66ceb1738d155585f0", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 61.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "18-38", "geo_shape": {"coordinates": [[[2.337263603064736, 48.891437729256495], [2.337245270642668, 48.89144144902201], [2.337159686750511, 48.89145075905882], [2.33695660122138, 48.89147148650518], [2.336754706813703, 48.89149344778257], [2.336551620956958, 48.89151417454131], [2.336349726212847, 48.891536135135034], [2.336146640039864, 48.89155686030687], [2.335944744959434, 48.89157882021694], [2.335741658447294, 48.89159954560043], [2.335539763030551, 48.891621504826844], [2.335336676190726, 48.8916422295227], [2.335134780437681, 48.89166418806543], [2.335017458214007, 48.89167558484714], [2.334997530569917, 48.891686722029725], [2.335008835854684, 48.89172716896491], [2.3349995580798693, 48.891774006404475], [2.33498577581239, 48.891812061207666], [2.334985399736714, 48.8918245273484], [2.335037923209351, 48.89183936919144], [2.335187914250532, 48.89191438365187], [2.335338119752247, 48.891988444025266], [2.335488113019152, 48.89206345810705], [2.335638319377922, 48.89213751809384], [2.335788313506774, 48.8922125317894], [2.335938519358907, 48.89228659138201], [2.336088514349606, 48.892361604691345], [2.33623872242259, 48.89243566390486], [2.33638871827524, 48.892510676828046], [2.336538927205288, 48.89258473565496], [2.336688922556191, 48.89265974818431], [2.336839132343201, 48.89273380662457], [2.336989129919864, 48.89280881877524], [2.337139340563943, 48.89288287682889], [2.337289337638755, 48.892957888585826], [2.337439549139904, 48.89303194625283], [2.337589548440492, 48.89310695763103], [2.337739760798715, 48.89318101491141], [2.337740398868149, 48.89318135478686], [2.337871700219313, 48.89326729258101], [2.3380418065521322, 48.89336350006095], [2.3380516308034203, 48.89339588860925], [2.338084687096186, 48.89339978733189], [2.338155526281568, 48.89339014962746], [2.338360286271655, 48.893363992992484], [2.338556243069304, 48.89333733142702], [2.338761002650259, 48.89331117410562], [2.338956959044022, 48.89328451188315], [2.339161718215936, 48.893258353875346], [2.339357672841882, 48.893231690988365], [2.339562432979973, 48.89320553140242], [2.339758387201911, 48.89317886785843], [2.339963145555715, 48.893152708477785], [2.340159100737354, 48.893126044284344], [2.340206481863266, 48.89311617268613], [2.340206921210862, 48.8930952793476], [2.340192214642927, 48.89304736784588], [2.340159720507534, 48.89294369385363], [2.340120392412902, 48.89281556646944], [2.340087898565185, 48.89271189243578], [2.340087876292712, 48.8927118203672], [2.340048548550019, 48.892583692932305], [2.340007881546915, 48.892448367099696], [2.339968554200068, 48.89232023960774], [2.339927887622042, 48.892184912816184], [2.339888560659634, 48.892056786166464], [2.339847894495284, 48.89192145931519], [2.339808567928707, 48.891793332608444], [2.339767902178024, 48.89165800569751], [2.339728576018678, 48.89152987803442], [2.339687910670253, 48.891394551963074], [2.339648584906729, 48.89126642424295], [2.339626829787306, 48.89122280576012], [2.339598478053115, 48.89117594300151], [2.339573813325068, 48.891174307797854], [2.339564061826847, 48.891175710021095], [2.339502512612272, 48.89120284759113], [2.33947292418706, 48.891210691064714], [2.339469107242797, 48.89121130133553], [2.339276333118527, 48.89122319707165], [2.339073902248125, 48.89124653436], [2.338872009605693, 48.891268499211556], [2.338696590323447, 48.891286812081695], [2.338521170906383, 48.89130512559377], [2.338319276439936, 48.89132708950476], [2.338143856765901, 48.8913454015642], [2.337941963347897, 48.89136736484575], [2.337766542041706, 48.89138567634425], [2.337564648308382, 48.89140763898887], [2.33738922808614, 48.89142595084076], [2.337272917920037, 48.89143860279181], [2.337263603064736, 48.891437729256495]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 38, "roussel_fabien": 22.0, "nb_emargement": 1330.0, "nb_procuration": 79.0, "nb_vote_blanc": 20.0, "jadot_yannick": 139.0, "le_pen_marine": 81.0, "nb_exprime": 1307.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1683.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1330, "quartier_bv": "69", "geo_point_2d": [48.89223502874685, 2.3380556963311263], "melenchon_jean_luc": 414.0, "poutou_philippe": 8.0, "macron_emmanuel": 461.0}, "geometry": {"type": "Point", "coordinates": [2.3380556963311263, 48.89223502874685]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "16dab657ad2c37fc9117e141d2755fd05de85e50", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 102, "zemmour_eric": 151.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-40", "geo_shape": {"coordinates": [[[2.263523092752335, 48.839540598515036], [2.2635374830626622, 48.839558562166516], [2.263673715646183, 48.83964031928272], [2.263832649361689, 48.83973712216276], [2.263968881512594, 48.839818878921434], [2.264127816333461, 48.83991568049453], [2.264264050776469, 48.83999743691233], [2.264422986677311, 48.84009423897706], [2.264559220687603, 48.840175995037306], [2.264718157693811, 48.840272795795094], [2.264854393996126, 48.84035455151446], [2.265013332082433, 48.84045135276389], [2.265149567952033, 48.840533108125655], [2.265158699316614, 48.84053544682825], [2.265340047071393, 48.8405357467786], [2.265524868381504, 48.84053610915265], [2.265706216140691, 48.840536408547884], [2.265891037455693, 48.840536770356195], [2.266072385219281, 48.840537069196365], [2.266257206539164, 48.84053743043895], [2.266270581495979, 48.84054485315776], [2.266305561930129, 48.84067501176963], [2.266336908465389, 48.84079173032982], [2.266368253765944, 48.84090844976055], [2.2664032360505733, 48.84103860830984], [2.266434581660791, 48.84115532679807], [2.266469562914207, 48.84128548529084], [2.266479098398464, 48.84132098711523], [2.266494356979502, 48.841342713273555], [2.266515689067219, 48.8413399966626], [2.266662171198841, 48.84140504604164], [2.2667926133043332, 48.84146276777204], [2.266807215087383, 48.84146300746395], [2.266987625137284, 48.84139147530856], [2.267164201333858, 48.84132007678296], [2.267344609036629, 48.84124854407165], [2.267521185622399, 48.841177145018314], [2.267701592340492, 48.841105611759524], [2.267878166590666, 48.841034212161794], [2.268054741719406, 48.840962812307176], [2.268235146963347, 48.84089127823001], [2.268411719769019, 48.840819876931725], [2.268592124015663, 48.84074834320637], [2.268768697210516, 48.84067694138035], [2.268949100485105, 48.84060540620818], [2.2691256713317562, 48.8405340047371], [2.269306073621572, 48.84046246901741], [2.26935166957181, 48.840428705377754], [2.269340525578126, 48.840416260146135], [2.269282485124215, 48.840353562014684], [2.269181533873017, 48.84024381993321], [2.269081470111873, 48.84013572453116], [2.268980521068241, 48.84002598226692], [2.268880456779867, 48.83991788666735], [2.268779508581369, 48.83980814421207], [2.268679446490486, 48.83970004843158], [2.268578497762085, 48.839590306676286], [2.268478436506166, 48.83948221070655], [2.268377488635504, 48.83937246786092], [2.268277428214745, 48.83926437170198], [2.268176481189194, 48.83915462866533], [2.268076421603383, 48.83904653231718], [2.267975475423036, 48.838936789089516], [2.2678754166722648, 48.83882869255215], [2.267774471324277, 48.83871895003274], [2.267674413408635, 48.83861085330619], [2.267674138118282, 48.838610567418584], [2.267573193629244, 48.838500823808616], [2.267503276907842, 48.83843132374159], [2.267486393782077, 48.83842158715597], [2.267433002588827, 48.83844379580796], [2.267256512360056, 48.838492838734176], [2.2670886089391002, 48.83853959294139], [2.26692070656666, 48.8385863478186], [2.266744215373191, 48.838635389982684], [2.266576311020864, 48.83868214436419], [2.266399819178992, 48.83873118601591], [2.266231914221817, 48.83877793901069], [2.266055421731545, 48.838826980150095], [2.265887517506596, 48.83887373356511], [2.265711023005539, 48.838922774183835], [2.265704929974102, 48.838921227631396], [2.265670991717959, 48.83893284606083], [2.265494498175411, 48.83898188636583], [2.265323656701694, 48.83902980542879], [2.265152814913852, 48.83907772424571], [2.26497631901813, 48.83912676467074], [2.264805476593168, 48.83917468298742], [2.264628981417314, 48.83922372200477], [2.264458138355237, 48.83927163982128], [2.264281642524389, 48.8393206783219], [2.264110798825202, 48.839368595638135], [2.263934300976858, 48.839417633613685], [2.263763456640563, 48.83946555042969], [2.263586959499529, 48.83951458789687], [2.263541098645543, 48.839527450803836], [2.263523092752335, 48.839540598515036]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 40, "roussel_fabien": 10.0, "nb_emargement": 1085.0, "nb_procuration": 43.0, "nb_vote_blanc": 9.0, "jadot_yannick": 43.0, "le_pen_marine": 112.0, "nb_exprime": 1067.0, "nb_vote_nul": 9.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1543.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1085, "quartier_bv": "61", "geo_point_2d": [48.83988915625032, 2.266707591194073], "melenchon_jean_luc": 213.0, "poutou_philippe": 4.0, "macron_emmanuel": 390.0}, "geometry": {"type": "Point", "coordinates": [2.266707591194073, 48.83988915625032]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e95f05959c3bbb006decc07c3b8634cab18f3245", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 164, "zemmour_eric": 160.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-62", "geo_shape": {"coordinates": [[[2.291686164198487, 48.87946962248362], [2.291676830673419, 48.87946080770358], [2.291573836669957, 48.879369826444226], [2.2914622999964482, 48.87925472732485], [2.291439975922767, 48.879235006701634], [2.291430454957071, 48.87922484178254], [2.291407101460182, 48.87922335904493], [2.291326432375731, 48.87915209818435], [2.291279352503504, 48.87911050835087], [2.291262262944849, 48.87909541160307], [2.291258743225763, 48.87909324044644], [2.291089301153431, 48.879020948397724], [2.290918314122539, 48.87894799582927], [2.290748873007534, 48.878875702389934], [2.290577885567018, 48.87880274931758], [2.290408445384748, 48.87873045628615], [2.290237460261373, 48.87865750272606], [2.290068021036438, 48.87858520830401], [2.289897036866768, 48.8785122542481], [2.289727598586918, 48.8784399593347], [2.28955661537095, 48.878367004783016], [2.28955155817949, 48.878355804972884], [2.289646404793404, 48.878214887290355], [2.289742816571704, 48.8780716423189], [2.289837662150748, 48.877930724448504], [2.289934072876997, 48.87778747928613], [2.289922614291557, 48.87777486192863], [2.289739370449464, 48.87776594251816], [2.289556594041001, 48.877757045386254], [2.289373350324277, 48.877748125415394], [2.289190574028496, 48.877739228623795], [2.28900733043725, 48.87773030809251], [2.288824554278802, 48.877721409842664], [2.28864131081284, 48.877712488751], [2.28845853476728, 48.877703590841485], [2.288275291426709, 48.87769466918939], [2.288092516881814, 48.877685769829725], [2.288080470472916, 48.87767419562845], [2.288134695709325, 48.87755604798385], [2.288191048330419, 48.8774332678593], [2.28824527306515, 48.8773151201388], [2.288301625164892, 48.87719233993539], [2.28835584939795, 48.877074192138984], [2.288412199612961, 48.87695141184857], [2.28846642470774, 48.876833263984366], [2.288522774401418, 48.876710483615085], [2.288576998982249, 48.87659233657425], [2.288633348166885, 48.87646955522678], [2.288687570882792, 48.87635140810193], [2.288743920909376, 48.87622862668373], [2.288798143123639, 48.876110479483], [2.288854492628905, 48.8759876979859], [2.288887371375206, 48.875916056590675], [2.288899230640108, 48.875914058553086], [2.288912354460852, 48.87590402431407], [2.288933698775473, 48.87585751753653], [2.288978560442498, 48.8757763018468], [2.288953471148676, 48.87572491192364], [2.2889086227479742, 48.87572756208683], [2.288796035501829, 48.87576318797528], [2.288617155375769, 48.87582083051676], [2.28843370859046, 48.87587887822861], [2.28825482630272, 48.87593652021456], [2.288071378706127, 48.87599456736508], [2.287892496983427, 48.876052208811615], [2.287709047224489, 48.876110254493476], [2.287530164703475, 48.87616789539254], [2.287346715484226, 48.87622594142043], [2.287253129787413, 48.87625609676059], [2.287239677917422, 48.876260980133225], [2.287229185659581, 48.87626848651909], [2.287143888004141, 48.87629597151318], [2.2869592446238283, 48.87635423467], [2.28678036043507, 48.87641187443594], [2.28659571487384, 48.87647013701782], [2.286416829884703, 48.87652777623446], [2.286232184869302, 48.87658603825763], [2.286053299092118, 48.87664367602572], [2.285868653259282, 48.8767019374821], [2.28568976530602, 48.87675957559202], [2.285505118655545, 48.87681783648155], [2.285326231265291, 48.876875474050316], [2.285141583797281, 48.876933734373004], [2.284962694243272, 48.87699137138433], [2.284778045957728, 48.877049631140174], [2.284599156966738, 48.87710726761036], [2.284414507863664, 48.87716552679933], [2.28423561807231, 48.87722316272023], [2.284196667687581, 48.87723545135117], [2.284195341468934, 48.87723621235774], [2.284241161150622, 48.87729624394077], [2.284359950097984, 48.877396396057684], [2.284477271674274, 48.877495309875464], [2.284596062905342, 48.877595460848866], [2.284713385366115, 48.87769437531662], [2.28483070964828, 48.87779328876939], [2.2849495008753182, 48.87789343935689], [2.284951875109644, 48.87789500040394], [2.285109779945, 48.877975898433], [2.285266389502377, 48.87805613289252], [2.285422999554719, 48.87813636624207], [2.2855809044903292, 48.87821726362387], [2.285737515499273, 48.878297497449495], [2.285895422787691, 48.87837839351351], [2.286052034765682, 48.878458626915965], [2.286209943018834, 48.878539523452574], [2.286366555965877, 48.87861975643185], [2.286524463844987, 48.87870065163434], [2.286681077761084, 48.87878088419041], [2.286838987968376, 48.87886177987361], [2.286995602853533, 48.87894201200654], [2.287153512686773, 48.87902290635565], [2.287310128540991, 48.87910313806533], [2.2874680407024393, 48.87918403289513], [2.287485548904963, 48.87918360109433], [2.287593181997922, 48.87911940918744], [2.287699052398715, 48.879056268813315], [2.287806684965374, 48.87899207670704], [2.287912553485048, 48.878928936128716], [2.287924083320868, 48.8789267518648], [2.288123333765133, 48.8789501019754], [2.288320384463359, 48.878973193156206], [2.28851963526287, 48.87899654260624], [2.288716686312612, 48.879019633133765], [2.288915937479741, 48.87904298102396], [2.289112988868609, 48.879066071797475], [2.2893100404443762, 48.87908916134693], [2.28950929213123, 48.879112509147376], [2.289706344058489, 48.87913559804356], [2.289905596112921, 48.87915894428415], [2.290102648379302, 48.87918203342633], [2.290301900789034, 48.87920537900636], [2.290498953419046, 48.879228466596004], [2.290698206171818, 48.87925181241476], [2.290709090214898, 48.87925859676015], [2.290740738762596, 48.8793468349238], [2.290771832992341, 48.87943353191849], [2.290803481752748, 48.87952177005152], [2.290834577554837, 48.87960846702419], [2.290838583337139, 48.879612995539524], [2.291023946125355, 48.879726171671635], [2.291204605028535, 48.879836475043895], [2.291220445844594, 48.879844655679086], [2.291233635917217, 48.87984091428002], [2.2913483567475152, 48.87974781851171], [2.291456450815732, 48.87966010012266], [2.291564544519827, 48.87957238162904], [2.291679264154972, 48.879479286420185], [2.291686164198487, 48.87946962248362]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 62, "roussel_fabien": 7.0, "nb_emargement": 1236.0, "nb_procuration": 77.0, "nb_vote_blanc": 11.0, "jadot_yannick": 61.0, "le_pen_marine": 54.0, "nb_exprime": 1222.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1498.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1236, "quartier_bv": "65", "geo_point_2d": [48.877804527398666, 2.287630197336887], "melenchon_jean_luc": 137.0, "poutou_philippe": 1.0, "macron_emmanuel": 593.0}, "geometry": {"type": "Point", "coordinates": [2.287630197336887, 48.877804527398666]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "da0cf0703a5306026345035fe44a8a5d2fdcf621", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 56, "zemmour_eric": 78.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-19", "geo_shape": {"coordinates": [[[2.391982229045942, 48.84280618886307], [2.391952017235913, 48.84280604250177], [2.3918366881312503, 48.84289188732153], [2.3917267202888812, 48.84297295131463], [2.391611391816807, 48.84305879501197], [2.391501421909337, 48.84313985877892], [2.391386092686341, 48.84322570314555], [2.391276122076272, 48.84330676669327], [2.391258114855988, 48.843308114037704], [2.391113390128353, 48.843240688289214], [2.3909394130142543, 48.84315935684549], [2.390794690474511, 48.84309193070941], [2.390620714354311, 48.84301059879136], [2.390475991287944, 48.8429431713545], [2.390302016151125, 48.842861839861456], [2.390157295272644, 48.842794412036994], [2.389983319777733, 48.842713079163374], [2.389838599714097, 48.84264565184376], [2.389833545234901, 48.84264117603497], [2.389767781130883, 48.84251235994585], [2.3897071987959873, 48.84239032262866], [2.389646616734264, 48.84226828616674], [2.389580853573392, 48.842139469032546], [2.389520272099084, 48.84201743247919], [2.389454509566895, 48.841888615246596], [2.389462676867886, 48.8418773133066], [2.389599928667476, 48.84184366447368], [2.389738377285913, 48.841809956834716], [2.38987562737818, 48.84177630677725], [2.390014075628965, 48.84174259971649], [2.390022094095425, 48.8417309633162], [2.389962777197577, 48.841628074468794], [2.389912856885446, 48.84153796124545], [2.389862936735404, 48.84144784889337], [2.389803620484474, 48.841344959041635], [2.389788352610041, 48.8413393213169], [2.389627177837017, 48.84135945684094], [2.389475002661369, 48.84138422571487], [2.3894588552569402, 48.841378417077756], [2.38941278261952, 48.84128991872243], [2.389334326838255, 48.84113492002137], [2.38928825461698, 48.841046422498096], [2.389285745992529, 48.84102272053874], [2.389261808655076, 48.841018121314164], [2.389091137811805, 48.84105605004626], [2.3889245978504112, 48.841095259640426], [2.388753926509263, 48.84113318788882], [2.388587386047615, 48.84117239701082], [2.38841671420849, 48.84121032477552], [2.388250173246795, 48.84124953342534], [2.388235848802299, 48.84124734667421], [2.388100678402572, 48.841155990819225], [2.387968294441619, 48.84106513201435], [2.387833124983308, 48.840973775842144], [2.387700743314033, 48.840882916733335], [2.387663930169626, 48.840855491161626], [2.387635127255867, 48.840857175718675], [2.38760320849195, 48.84089154237294], [2.387525940922438, 48.8409747333648], [2.387420297495344, 48.841084104178314], [2.38731111157502, 48.841201660712144], [2.387205465864124, 48.84131103220603], [2.387096278983868, 48.84142858851987], [2.386990632362186, 48.84153795980181], [2.386881444522087, 48.84165551589571], [2.38677579698961, 48.84176488696567], [2.386670150386705, 48.84187425703933], [2.386560961108656, 48.84199181370457], [2.386455312232465, 48.84210118355926], [2.386353608902434, 48.84220568912905], [2.386247960509595, 48.84231505968597], [2.386146256346351, 48.84241956505946], [2.38604455177535, 48.842524070336694], [2.385938902099085, 48.842633439690154], [2.385917363576595, 48.84265557118626], [2.385916576686025, 48.84265863666047], [2.385961723409579, 48.84268469260567], [2.38612655520737, 48.84275920327321], [2.386290765061271, 48.84283345869509], [2.386455599162463, 48.8429079689063], [2.386619809943291, 48.842982224765855], [2.386784643633457, 48.84305673360751], [2.3869488553518, 48.843130989005545], [2.387113689972283, 48.84320549828318], [2.387277902638721, 48.843279752320335], [2.387442738200105, 48.84335426113462], [2.387606953156014, 48.84342851561649], [2.38777178966887, 48.84350302306819], [2.387936004199781, 48.84357727708149], [2.388100841642978, 48.843651784969175], [2.388265057121973, 48.8437260376216], [2.388429273058331, 48.84380029094299], [2.388594111912045, 48.84387479813612], [2.388758330159018, 48.84394905010357], [2.388923169953544, 48.84402355683335], [2.389087387765069, 48.844097809231585], [2.38925222851105, 48.84417231459873], [2.389416447260108, 48.84424656653533], [2.389581288936466, 48.84432107233845], [2.389745508633593, 48.84439532291415], [2.38991035261342, 48.844469828260884], [2.389940400511669, 48.84448091678009], [2.389958551423595, 48.84447280270041], [2.389988064400653, 48.84444833597669], [2.390150781396228, 48.844314210661565], [2.390275840156136, 48.844210530709084], [2.390294491696457, 48.84420887921528], [2.390447903950943, 48.84428254043137], [2.390601473384926, 48.84435584789744], [2.390754885143254, 48.8444295087032], [2.390908456804642, 48.84450281577251], [2.391061869429563, 48.844576476174936], [2.39121544195571, 48.84464978284048], [2.391368855447127, 48.84472344283953], [2.39152242883824, 48.84479674910135], [2.391675843196052, 48.844870408697055], [2.391829417452032, 48.84494371455512], [2.391982832676446, 48.845017373747424], [2.392136407797294, 48.84509067920181], [2.392289823888111, 48.84516433799071], [2.39244339851126, 48.8452376430344], [2.392596816831254, 48.84531130142689], [2.392750392319274, 48.845384606066844], [2.392903811505681, 48.84545826405592], [2.393057387858573, 48.8455315682921], [2.393210806559486, 48.84560522497161], [2.393364385139732, 48.84567852881097], [2.393384707043861, 48.845675060511375], [2.393411022777196, 48.84563802894362], [2.393430190396993, 48.84560928197201], [2.3934472468027073, 48.845597785639036], [2.393444984696413, 48.84558608883328], [2.393509973511237, 48.84548862319743], [2.393589257397524, 48.845373128631024], [2.393673413029343, 48.84524691587828], [2.39375269619609, 48.84513142027924], [2.393836851031343, 48.845005208283446], [2.393916133468299, 48.844889712551065], [2.394000287517464, 48.844763500412945], [2.394079569224535, 48.84464800454724], [2.394158850580115, 48.84453250861701], [2.394243003464715, 48.84440629626772], [2.3943222854530752, 48.84429080021106], [2.394406437551607, 48.84416458771946], [2.394485717447454, 48.84404909152254], [2.394569868759932, 48.843922878888655], [2.394649147926031, 48.8438073825584], [2.394733298452464, 48.843681169782236], [2.394775812359232, 48.84361923295293], [2.394772631322506, 48.84360850370944], [2.394722558891564, 48.84359807324331], [2.394550261406639, 48.84354939060959], [2.39435843012511, 48.84349403542665], [2.394186133313796, 48.843445353163276], [2.393994302812399, 48.84338999649203], [2.393822005322726, 48.8433413136928], [2.393630176953435, 48.8432859564394], [2.39345788014783, 48.843237273111214], [2.393266052548227, 48.843181915268794], [2.393093756426693, 48.84313323141164], [2.392901929596782, 48.843077872980196], [2.392729634159322, 48.843029188594095], [2.3925378067366943, 48.842973829566716], [2.3923655133457222, 48.84292514465858], [2.392173686692795, 48.842869785042176], [2.392001393985901, 48.84282109960509], [2.391982229045942, 48.84280618886307]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 19, "roussel_fabien": 26.0, "nb_emargement": 1177.0, "nb_procuration": 50.0, "nb_vote_blanc": 11.0, "jadot_yannick": 82.0, "le_pen_marine": 86.0, "nb_exprime": 1163.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 6, "nb_inscrit": 1565.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1178, "quartier_bv": "46", "geo_point_2d": [48.843267077388326, 2.3902834097520715], "melenchon_jean_luc": 423.0, "poutou_philippe": 10.0, "macron_emmanuel": 337.0}, "geometry": {"type": "Point", "coordinates": [2.3902834097520715, 48.843267077388326]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "acf91b1c42d81eb551be78c582e167b88802f710", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 62, "zemmour_eric": 65.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-60", "geo_shape": {"coordinates": [[[2.352721686911827, 48.83052008317587], [2.352708137444169, 48.830508387258234], [2.352590148013904, 48.83047084018457], [2.352418062387597, 48.83041576092737], [2.352235464177794, 48.83035765205513], [2.352063379299854, 48.83030257228205], [2.351880783232847, 48.830244463769155], [2.351708699103269, 48.83018938348015], [2.351526102465782, 48.83013127441251], [2.351354019084673, 48.83007619360767], [2.351171423250177, 48.83001808309334], [2.350999340617339, 48.82996300177262], [2.35081674692572, 48.82990489161764], [2.350644665041251, 48.82984980978106], [2.350462070779268, 48.82979169907129], [2.350289989643173, 48.82973661671884], [2.350107396184207, 48.82967850456242], [2.349935315796491, 48.829623421694095], [2.34993307236937, 48.829622862681155], [2.349846340709048, 48.82960877830974], [2.349626652736577, 48.829568193991605], [2.349541429640393, 48.8295617191035], [2.349535430172627, 48.82956151919024], [2.349508247388261, 48.82956661738912], [2.349505769930633, 48.82961167060541], [2.349401557396646, 48.82976444686007], [2.349309418708757, 48.8299059035345], [2.349307640181979, 48.82990782391251], [2.349184078936724, 48.83000994362166], [2.349063346105323, 48.83010959182492], [2.348942614185877, 48.83020923900556], [2.348819050149012, 48.83031135830273], [2.34869831729524, 48.8304110052188], [2.348574752301602, 48.830513124245236], [2.348454018513699, 48.83061277089677], [2.348330452563279, 48.830714889652384], [2.348328944282362, 48.83071643644899], [2.348233979601025, 48.83083992712918], [2.348140222637665, 48.83096364824903], [2.348045258421039, 48.83108713875957], [2.347951500565187, 48.83121085970416], [2.347856534089077, 48.83133435003021], [2.347762775340721, 48.83145807079955], [2.347667807967205, 48.8315815609485], [2.347574049688543, 48.83170528154998], [2.347479081417613, 48.83182877152182], [2.347385320884214, 48.831952491940676], [2.347290351715855, 48.832075981735414], [2.347196591652038, 48.832199701986426], [2.347195702871311, 48.8322011613119], [2.347142518423814, 48.832316828751686], [2.347089190400895, 48.83243306377593], [2.34703600548047, 48.832548731144385], [2.346982676982822, 48.8326649660971], [2.346951953735971, 48.83268512503284], [2.346981292560179, 48.83270892608574], [2.34698640696759, 48.83271129417253], [2.347174648525135, 48.83276095526249], [2.347363440777397, 48.83281029258536], [2.347551683040352, 48.83285995397687], [2.347740476007985, 48.83290929070027], [2.347928720349853, 48.83295895150142], [2.348117514032855, 48.833008287625326], [2.348305757729146, 48.83305794782124], [2.34849455212751, 48.83310728334564], [2.348682796540463, 48.83315694294379], [2.348871593016435, 48.83320627787615], [2.3490598381460472, 48.83325593687646], [2.34924863398635, 48.833305270302596], [2.34943687983261, 48.83335492870515], [2.349625677739288, 48.833404262438435], [2.349813924302198, 48.833453920243194], [2.350002721561965, 48.833503253369585], [2.350021247599103, 48.833515073737836], [2.350057332393901, 48.83350419138904], [2.350214403246721, 48.833455672995846], [2.3503742420561062, 48.833407372687354], [2.350531312322237, 48.83335885387382], [2.350691150541118, 48.83331055313766], [2.350848218847209, 48.83326203479563], [2.351008056475487, 48.833213733631816], [2.351165125568341, 48.83316521397754], [2.3513249626061112, 48.83311691238604], [2.351328495692036, 48.833116207554546], [2.351523366411874, 48.83309676312031], [2.351712956655571, 48.83307687963502], [2.351902546754536, 48.833056995848885], [2.352097418401245, 48.83303755048574], [2.352287008210524, 48.833017666089475], [2.352481878215719, 48.83299821919255], [2.352491767853801, 48.83299367425299], [2.352569280651751, 48.83290100004976], [2.352644741042119, 48.832806720098006], [2.352722253290133, 48.83271404578019], [2.352797711759813, 48.83261976660815], [2.352875223457899, 48.83252709217573], [2.352950682753803, 48.832432811999496], [2.352956719453808, 48.832428942288566], [2.353125559998294, 48.832374168349745], [2.353298237815837, 48.83231554762645], [2.353467077623162, 48.83226077409931], [2.3536397546921, 48.83220215197771], [2.353808593773323, 48.83214737796293], [2.353981270082598, 48.83208875534232], [2.354150108437715, 48.832033980839896], [2.354322783987427, 48.831975357720296], [2.354329575981705, 48.83196471885503], [2.354281120315997, 48.83186060870216], [2.35424278754748, 48.83177126778399], [2.35420445491035, 48.831681926846414], [2.354155998395169, 48.831577816609176], [2.3541408522824, 48.83157157502677], [2.353951479977038, 48.83159132142926], [2.3537587306976873, 48.831612035895844], [2.353569358100505, 48.831631781692565], [2.35337660988193, 48.83165249554994], [2.353187236993139, 48.831672240740964], [2.35299448712199, 48.83169295307509], [2.352805113930334, 48.831712698559684], [2.352612365120088, 48.83173341028463], [2.352596600931797, 48.831725282777306], [2.352579035123647, 48.83158646147663], [2.352561981133814, 48.83145777074775], [2.352544415507995, 48.83131894940878], [2.352527361679968, 48.83119025954356], [2.3525103093094, 48.83106156876914], [2.352492743954676, 48.83092274737357], [2.352493518926773, 48.83091892114451], [2.352545335560449, 48.83082500325299], [2.352594803502218, 48.83073470338312], [2.352644271272616, 48.83064440348557], [2.352696088724028, 48.83055048551307], [2.352721686911827, 48.83052008317587]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 60, "roussel_fabien": 29.0, "nb_emargement": 1257.0, "nb_procuration": 56.0, "nb_vote_blanc": 11.0, "jadot_yannick": 127.0, "le_pen_marine": 62.0, "nb_exprime": 1237.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1593.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "52", "geo_point_2d": [48.831706757766824, 2.350334272778008], "melenchon_jean_luc": 429.0, "poutou_philippe": 9.0, "macron_emmanuel": 382.0}, "geometry": {"type": "Point", "coordinates": [2.350334272778008, 48.831706757766824]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "185bc51b1fd7cbdf8e0559505f41d02f352a1832", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 56, "zemmour_eric": 46.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-39", "geo_shape": {"coordinates": [[[2.388367632499064, 48.86099808145293], [2.388318157905506, 48.86098626391544], [2.388142672687273, 48.86094974739789], [2.387964299713715, 48.86091285881213], [2.387788814980177, 48.860876342672526], [2.387610442508478, 48.860839453556885], [2.387434958280773, 48.86080293599672], [2.387256586310939, 48.86076604635124], [2.387081102578508, 48.86072952826977], [2.386902732462937, 48.86069263900068], [2.386727247862808, 48.86065612039097], [2.386548878259691, 48.86061922969275], [2.386373394154848, 48.860582710561715], [2.386195025043015, 48.86054582023296], [2.3861782030586722, 48.86055121275948], [2.386106542948389, 48.86067592695581], [2.386034420838673, 48.86080257231784], [2.385962760049083, 48.86092728550054], [2.385890637241901, 48.86105393074721], [2.385872674336483, 48.86105907994762], [2.38581274711443, 48.861042748781976], [2.385765144635744, 48.86102987946767], [2.385743060220355, 48.86102656085084], [2.385731534984692, 48.86104234364717], [2.385686331149576, 48.86113458041274], [2.385637770680194, 48.86123600381284], [2.385619809766869, 48.86124167010819], [2.385421130130115, 48.8611903999899], [2.385222332655474, 48.86113933038519], [2.385023653800134, 48.86108805960229], [2.384824855732011, 48.86103699022492], [2.384626177658092, 48.860985718777414], [2.384427381733067, 48.860934648742074], [2.384228704440572, 48.86088337662998], [2.3840299093063, 48.86083230503038], [2.383831232795237, 48.86078103225369], [2.3836324384304612, 48.860729960888406], [2.38343376133786, 48.86067868744012], [2.383234967763862, 48.86062761451057], [2.383217436690946, 48.860632544301744], [2.383141808735341, 48.8607526235602], [2.383072668582716, 48.860867975972866], [2.382997039940949, 48.86098805601367], [2.382927897803028, 48.86110340741187], [2.382858756721927, 48.86121875876519], [2.382783127078034, 48.86133883863276], [2.382713985353308, 48.861454190777245], [2.3826383550445343, 48.86157426962856], [2.382639240156498, 48.861584810913016], [2.382670995674, 48.86159501770379], [2.382842711618116, 48.86165306928434], [2.383013988268628, 48.86171061021919], [2.383185265308017, 48.86176815000663], [2.383356982385145, 48.86182620173954], [2.383528260183355, 48.86188374103009], [2.383699979386657, 48.861941792271764], [2.383871257943789, 48.86199933106549], [2.384042976547252, 48.86205738180194], [2.384045214507077, 48.86205797519597], [2.384050077362347, 48.86205894633415], [2.384060647303707, 48.86206257652664], [2.384063114896423, 48.862063231358206], [2.384228478903157, 48.86209513577134], [2.384436017446599, 48.86213642300244], [2.384601380550992, 48.86216832689118], [2.384808919681508, 48.862209613472906], [2.384937175380138, 48.862234780714495], [2.385144713689081, 48.862276065805084], [2.385272969713614, 48.862301232685304], [2.385274246094312, 48.862301533326864], [2.38545761629319, 48.862352980416325], [2.385632220565169, 48.862400640951584], [2.385815591466269, 48.862452087487945], [2.3859901977609, 48.86249974750368], [2.386164803011969, 48.86254740725564], [2.386348174955556, 48.862598852969136], [2.3865227822292763, 48.862646512201536], [2.38670615487518, 48.86269795736198], [2.386743428643895, 48.862708131976305], [2.386751016002119, 48.86271388618094], [2.386772808369797, 48.862716373912015], [2.386910141203679, 48.86275385886185], [2.387135964213062, 48.86281721317277], [2.387310572939277, 48.8628648712464], [2.387311049895633, 48.862864997797516], [2.387383845758343, 48.86288331054663], [2.38743790382218, 48.86290180703948], [2.387447077798647, 48.86289760190264], [2.387471160080744, 48.86289732315612], [2.387461882660972, 48.86287693793274], [2.387522289053413, 48.86275081926388], [2.387586832673018, 48.8626185072623], [2.387647238473811, 48.86249238760165], [2.387711781456026, 48.86236007550177], [2.387772188007151, 48.862233956654926], [2.387836728999336, 48.862101643550574], [2.387897134948454, 48.86197552461121], [2.387961676655609, 48.86184321231491], [2.388022080650086, 48.861717092376836], [2.388086621719776, 48.861584779982294], [2.388147026464702, 48.861458660858005], [2.388211565544502, 48.86132634745895], [2.388271969687244, 48.86120022824222], [2.388336509492688, 48.86106791475192], [2.388363139138455, 48.86101231219584], [2.388367632499064, 48.86099808145293]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 39, "roussel_fabien": 30.0, "nb_emargement": 1139.0, "nb_procuration": 68.0, "nb_vote_blanc": 14.0, "jadot_yannick": 127.0, "le_pen_marine": 54.0, "nb_exprime": 1124.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1438.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1142, "quartier_bv": "43", "geo_point_2d": [48.861600977130266, 2.3857710152705933], "melenchon_jean_luc": 462.0, "poutou_philippe": 10.0, "macron_emmanuel": 288.0}, "geometry": {"type": "Point", "coordinates": [2.3857710152705933, 48.861600977130266]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e1961e25f7dd2bb6b19370433b86c53959823397", "fields": {"lassalle_jean": 23.0, "pecresse_valerie": 51, "zemmour_eric": 88.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-26", "geo_shape": {"coordinates": [[[2.371962130797866, 48.82584983966327], [2.371963370885934, 48.82586449338264], [2.371903175014934, 48.825992552094], [2.371843266231057, 48.82612016078427], [2.371783069769864, 48.826248219406025], [2.371723161760311, 48.82637582801419], [2.371662963346941, 48.82650388653911], [2.371603054749635, 48.82663149505806], [2.371542855745946, 48.8267595534934], [2.371482946560877, 48.826887161923096], [2.371422748329056, 48.82701522027597], [2.37136283855622, 48.82714282861641], [2.371362259490307, 48.827144874344555], [2.371347152329614, 48.82727451241154], [2.371333924331046, 48.8274015980269], [2.371320696278731, 48.82752868272711], [2.371305588903471, 48.82765832074452], [2.371299582513622, 48.8276764412086], [2.371302299624631, 48.82767873540232], [2.371402933409189, 48.82768964675021], [2.371663472918262, 48.82771546085187], [2.371842850666582, 48.82773491045352], [2.371849305472882, 48.82773676378787], [2.37199777051002, 48.82781419612138], [2.372160505366244, 48.82789961225894], [2.372308969978148, 48.8279770432884], [2.3724717058524503, 48.82806245899009], [2.372620172752418, 48.82813988962918], [2.372782909645008, 48.82822530489501], [2.372931376097884, 48.828302736028675], [2.373058442716952, 48.82836942780969], [2.373061641202734, 48.828379050769165], [2.373082392469513, 48.82838564941823], [2.37311806379174, 48.82840437156045], [2.373168435432681, 48.82842551270605], [2.373186801372514, 48.828423174366485], [2.373227938576361, 48.82838541308588], [2.373270418024573, 48.828343300467495], [2.373291428292508, 48.82834195268733], [2.373440634941967, 48.82844130474757], [2.37358301861494, 48.82853932217949], [2.373732227747089, 48.82863867386553], [2.373874612507225, 48.828736690933084], [2.3740238213979072, 48.82883604223073], [2.374166207245314, 48.82893405893384], [2.374315418618712, 48.82903340985733], [2.3744578055534022, 48.82913142619607], [2.374459733502167, 48.829132526318084], [2.374502250633643, 48.82915252227034], [2.374511043894019, 48.829151484517155], [2.374534312708021, 48.82913290288662], [2.3745701075751953, 48.829013673359505], [2.374613443547308, 48.82887774234382], [2.374649236696281, 48.82875851275877], [2.374692572249977, 48.828622581683426], [2.37472836640483, 48.82850335205472], [2.374771701540111, 48.82836742091979], [2.374807493976788, 48.82824819123315], [2.374850828693662, 48.82811226003865], [2.374886622136318, 48.82799303030827], [2.374929956434789, 48.8278570990542], [2.374965748159088, 48.82773786926591], [2.375009082039166, 48.827601937952245], [2.375044874769543, 48.82748270812028], [2.375057408421863, 48.8274444972208], [2.375051192489528, 48.8274414599348], [2.374866001744394, 48.827393652719465], [2.3746984081856812, 48.82734512868815], [2.374530816311828, 48.82729660352762], [2.374345626558422, 48.827248795500346], [2.374336918784944, 48.8272485251013], [2.374153157957468, 48.82728323720588], [2.373967936086623, 48.82731765537961], [2.373784174769916, 48.827352366915086], [2.373598952409882, 48.827386784515255], [2.373415190603747, 48.82742149548164], [2.373229967754532, 48.82745591250818], [2.373046204097074, 48.82749062289833], [2.372860980758682, 48.82752503935131], [2.372677217974014, 48.827559749179485], [2.372491994146452, 48.82759416505886], [2.372308230872374, 48.827628874317945], [2.37212300655565, 48.8276632896237], [2.372106857208571, 48.827658266381064], [2.372062557306297, 48.8275920531077], [2.37204939598892, 48.82756231279583], [2.372057715977705, 48.82755011062254], [2.372253457555186, 48.82750888121338], [2.37243737229868, 48.82747004381121], [2.372633113275409, 48.82742881377772], [2.37281702745363, 48.82738997578892], [2.373012767829499, 48.827348745131104], [2.373196682804542, 48.82730990656284], [2.373380596154276, 48.827271066803924], [2.373576335627201, 48.82722983611869], [2.373760248411641, 48.82719099577317], [2.3739559872943943, 48.82714976356426], [2.374139899502837, 48.8271109235315], [2.374335637784707, 48.827069690698266], [2.374519549427852, 48.82703085007889], [2.374715287108834, 48.82698961662136], [2.374899198186572, 48.826950775415355], [2.375094935266761, 48.82690954133354], [2.375278845789964, 48.82687069864163], [2.375474582258476, 48.82682946483482], [2.3756584922163553, 48.82679062155632], [2.375854228094633, 48.82674938622588], [2.376038137476518, 48.82671054326011], [2.376233872753881, 48.82666930730535], [2.376417781570438, 48.82663046375301], [2.376613516246882, 48.82658922717397], [2.376797424498003, 48.82655038303502], [2.376993158573622, 48.82650914583168], [2.377177066259402, 48.82647030110617], [2.377372799734089, 48.826429063278525], [2.377556706865261, 48.82639021706709], [2.377578290021258, 48.82635061937718], [2.377552209609245, 48.8263343830553], [2.377450277617688, 48.82631241680634], [2.37725616098764, 48.82626703015203], [2.377072865987308, 48.826227529286385], [2.376878751363942, 48.82618214202312], [2.376695456947994, 48.82614264057602], [2.376501341607274, 48.82609725268966], [2.3763180491269242, 48.826057751567575], [2.376123934441583, 48.82601236216585], [2.375940641183656, 48.82597286045521], [2.375746528494144, 48.8259274713439], [2.375563235831379, 48.825887968152536], [2.37537994344627, 48.825848464678856], [2.375185830346079, 48.825803074645314], [2.375002539896659, 48.82576357149663], [2.374808427451889, 48.82571817994775], [2.374625136224919, 48.82567867621054], [2.374431025775968, 48.8256332849521], [2.374423387113338, 48.82562078956203], [2.374482637969515, 48.825542447431104], [2.3745888642923862, 48.825389695690085], [2.374648115999339, 48.825311353468166], [2.37464370585228, 48.825300307674645], [2.3745929616564663, 48.82527613423896], [2.3745711535373992, 48.82526654527752], [2.374552543332324, 48.825268224210575], [2.374459394286175, 48.825345183020815], [2.374368937541341, 48.825421033420625], [2.374275786578217, 48.82549799296956], [2.374185329301246, 48.82557384322016], [2.374171774243865, 48.825577072987386], [2.373995876289979, 48.825552194815344], [2.373781209562204, 48.8255229267899], [2.373605311977261, 48.82549804804218], [2.373390645691682, 48.82546877931423], [2.373214748475789, 48.825443899990894], [2.373000082632414, 48.825414630560445], [2.372824185785681, 48.82538975066145], [2.372609520384518, 48.825360480528545], [2.372433623906751, 48.82533560005384], [2.372411682795473, 48.8253269057763], [2.3723953586582702, 48.82533827094269], [2.372371528844857, 48.825366757679284], [2.37226606244334, 48.82549443422115], [2.372173384856144, 48.825605223694524], [2.372080706885905, 48.82571601218583], [2.371975237703743, 48.825843688424364], [2.371962130797866, 48.82584983966327]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 26, "roussel_fabien": 25.0, "nb_emargement": 1387.0, "nb_procuration": 87.0, "nb_vote_blanc": 15.0, "jadot_yannick": 99.0, "le_pen_marine": 92.0, "nb_exprime": 1364.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1741.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1387, "quartier_bv": "50", "geo_point_2d": [48.8268877612146, 2.373744342285104], "melenchon_jean_luc": 546.0, "poutou_philippe": 9.0, "macron_emmanuel": 370.0}, "geometry": {"type": "Point", "coordinates": [2.373744342285104, 48.8268877612146]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "112c0529dc1ba7c5fa2574ca1449eb6140cb4f85", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 67, "zemmour_eric": 92.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "9-24", "geo_shape": {"coordinates": [[[2.340427435702178, 48.88039119213905], [2.340408956163783, 48.88041320492403], [2.340350642202997, 48.88052904685893], [2.3402871097561, 48.88065941030259], [2.340228796612099, 48.88077525215976], [2.340165263559851, 48.880905615509604], [2.34010694851704, 48.88102145637474], [2.340043414847929, 48.881151820530064], [2.339985100621906, 48.88126766131742], [2.339921566358925, 48.881398024479644], [2.339863250211272, 48.88151386607353], [2.33979971534291, 48.88164422914192], [2.339741400011939, 48.88176007065804], [2.3396778645381913, 48.88189043363265], [2.33961954729706, 48.882006275056], [2.339627516030271, 48.8820312331959], [2.339678621867769, 48.882039981384885], [2.339754985151782, 48.88202930298436], [2.3398178379111663, 48.88202066526357], [2.339824436930396, 48.88202083565249], [2.340005145067045, 48.882055588388795], [2.340209833619652, 48.882097128960545], [2.340390542278217, 48.88213188111275], [2.34059523007457, 48.88217342101521], [2.340775939255145, 48.8822081725833], [2.340980629022197, 48.88224971183152], [2.341161338713195, 48.88228446371477], [2.341366029098988, 48.882326001401914], [2.341546737948458, 48.88236075269356], [2.34175142893003, 48.882402290618224], [2.341887883568617, 48.88242853051841], [2.341910006096793, 48.88243376212146], [2.341914432131729, 48.88243378105413], [2.341958688248107, 48.882442290959816], [2.341958859641796, 48.88244232427779], [2.342142512702073, 48.88247798747745], [2.342315784299409, 48.882512937752196], [2.34249943785313, 48.882548600402124], [2.3426727085727572, 48.88258354925133], [2.342845980877239, 48.882618498755406], [2.343029635166201, 48.88265416058857], [2.3432029065816122, 48.88268910956638], [2.343386562727548, 48.88272477085728], [2.343559834628761, 48.88275971841701], [2.343715280227841, 48.88278990138131], [2.343741171785771, 48.882795268417055], [2.343762546107252, 48.88275071672148], [2.343823619939628, 48.8826136966822], [2.343884415622972, 48.88247729830848], [2.343945210987853, 48.88234089988699], [2.344006282495586, 48.88220387969602], [2.344067077222096, 48.88206748117876], [2.344128148088556, 48.88193046089158], [2.344188942176705, 48.88179406227854], [2.344250013765317, 48.88165704190265], [2.34431080721511, 48.881520643193845], [2.34437187679905, 48.88138362271431], [2.3443716878432213, 48.881378160937174], [2.344311004307356, 48.881261853470455], [2.344250404903645, 48.88114570829979], [2.344189721909498, 48.88102940074704], [2.344129123058077, 48.8809132545912], [2.344068440594317, 48.88079694785167], [2.344007842283852, 48.88068080160992], [2.343947160373123, 48.88056449388511], [2.343886562592281, 48.88044834845674], [2.343825881223249, 48.88033204064589], [2.343765283983349, 48.88021589513161], [2.343754590411022, 48.88018434637768], [2.343731755727726, 48.8801863481276], [2.34354001443578, 48.88019859532804], [2.343335782766853, 48.88021096347108], [2.343144041291167, 48.88022321003706], [2.3429398094316802, 48.88023557750434], [2.342730386629645, 48.88024911763347], [2.342526154581686, 48.88026148349556], [2.342316731568039, 48.88027502290077], [2.342112499308817, 48.880287388956184], [2.341903076083463, 48.8803009276375], [2.34169884362454, 48.880313292986955], [2.3414894201987613, 48.8803268300451], [2.34128518754005, 48.8803391946886], [2.341075763891219, 48.88035273192213], [2.340871531032728, 48.880365095859695], [2.340667296713783, 48.8803774594412], [2.340457874125353, 48.88039099470162], [2.340427435702178, 48.88039119213905]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 24, "roussel_fabien": 26.0, "nb_emargement": 1210.0, "nb_procuration": 87.0, "nb_vote_blanc": 11.0, "jadot_yannick": 113.0, "le_pen_marine": 46.0, "nb_exprime": 1195.0, "nb_vote_nul": 4.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1475.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1210, "quartier_bv": "36", "geo_point_2d": [48.881401346244694, 2.3421958634899673], "melenchon_jean_luc": 259.0, "poutou_philippe": 1.0, "macron_emmanuel": 542.0}, "geometry": {"type": "Point", "coordinates": [2.3421958634899673, 48.881401346244694]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1a255d338fdddd378d4980e8a4db547738761b3b", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 65, "zemmour_eric": 71.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "18-30", "geo_shape": {"coordinates": [[[2.326048312823655, 48.88652289205446], [2.326104227136295, 48.88653908083084], [2.32616231117436, 48.88654694321055], [2.326251628553694, 48.886558700044304], [2.326267119915618, 48.88655294067464], [2.326325893777965, 48.886445821311725], [2.326387935827863, 48.88633335579756], [2.3264467078302102, 48.88622623634627], [2.326508749369192, 48.886113769847775], [2.326567522238815, 48.886006650323424], [2.3266295618799973, 48.88589418463148], [2.326652047911447, 48.88589091881846], [2.326806062127671, 48.88599309525265], [2.326957264963411, 48.88609347949666], [2.327111279014082, 48.88619565551174], [2.327262483026259, 48.88629603935182], [2.327416498274911, 48.88639821495553], [2.327567703463639, 48.88649859839161], [2.327721721273925, 48.886600773591525], [2.327872927639213, 48.886701156623694], [2.327893118638123, 48.88670054420566], [2.328014629921499, 48.88660346736608], [2.328132747640938, 48.88650703865692], [2.328254259389689, 48.88640996156475], [2.328372374862821, 48.88631353259458], [2.328393086491543, 48.88631314334898], [2.328525178917677, 48.88640923378743], [2.328654225139471, 48.88650332576708], [2.328786318541401, 48.88659941500156], [2.328915365694866, 48.88669350758276], [2.329047460061106, 48.88678959651247], [2.329176508169231, 48.88688368789671], [2.329308603488304, 48.88697977742102], [2.329437652539605, 48.887073868507464], [2.329569748834587, 48.887169956827734], [2.329698798817494, 48.8872640485157], [2.329830896076707, 48.88736013653127], [2.329959947002912, 48.88745422792152], [2.32999969841667, 48.887473329059574], [2.330027138027797, 48.88745490607681], [2.330124611431734, 48.887347101281826], [2.33022226112675, 48.88723934235172], [2.330319733723116, 48.88713153737674], [2.330417382621672, 48.88702377736716], [2.33051485441068, 48.88691597221219], [2.330612502489556, 48.886808212921565], [2.330709973471114, 48.88670040758662], [2.330807620753642, 48.88659264721646], [2.330905090927757, 48.88648484170154], [2.331002737390631, 48.886377082050394], [2.3311002067573128, 48.88626927635548], [2.331197852412199, 48.88616151652406], [2.331295320971458, 48.88605371064918], [2.331392965830014, 48.88594594973825], [2.3314904335818563, 48.8858381436834], [2.331588077620792, 48.88573038349149], [2.331685544565228, 48.885622577256676], [2.331783187807743, 48.88551481598521], [2.331880653944782, 48.885407009570436], [2.331978296367905, 48.88529924901802], [2.332075761697554, 48.88519144242326], [2.332173403324166, 48.88508368079137], [2.332270867846435, 48.88497587401662], [2.332368508653579, 48.88486811310373], [2.332370041714617, 48.884865643998054], [2.332414438589106, 48.88474589034253], [2.332458768592713, 48.88461974204781], [2.332503165041994, 48.88449998923185], [2.332547493257755, 48.884373840868484], [2.332591889293264, 48.88425408799285], [2.332636218459885, 48.88412793867675], [2.332680614081827, 48.8840081857414], [2.332724942812677, 48.88388203726356], [2.332753359330356, 48.883871969343026], [2.332726375233381, 48.88382388552171], [2.332698043280204, 48.88377340285876], [2.332695387903462, 48.88377321808537], [2.332646848294405, 48.88378763451059], [2.332597385961687, 48.88379924615541], [2.332591836155218, 48.883798802425744], [2.33255428527524, 48.883810092839916], [2.332424034619093, 48.88384067056707], [2.332232598581505, 48.88388653908163], [2.332052884968258, 48.883928727875265], [2.331861448291595, 48.88397459489343], [2.331681734073686, 48.88401678312658], [2.331490295371403, 48.88406265043933], [2.331310580548934, 48.88410483811201], [2.331119142571179, 48.88415070393599], [2.330939427144158, 48.884192891048194], [2.330747988515814, 48.884238756275025], [2.330568272472687, 48.88428094372601], [2.330376831830173, 48.88432680834815], [2.33019711519406, 48.884368994339376], [2.330005675264553, 48.884414858372], [2.32982595801233, 48.88445704470202], [2.329634516068658, 48.884502908129875], [2.3294547995870643, 48.88454509300779], [2.329440677979947, 48.884543040787136], [2.329308386353795, 48.88445746593618], [2.32918160480902, 48.884374184518364], [2.329049314037557, 48.88428860936801], [2.328922533306706, 48.884205328562295], [2.328790243401516, 48.8841197522133], [2.328663463495965, 48.88403647112049], [2.328531174433864, 48.88395089537136], [2.328404396728978, 48.88386761309986], [2.328272107157977, 48.88378203704371], [2.328145330266779, 48.88369875538433], [2.328141332364619, 48.8836969351863], [2.328012538033067, 48.88365209297344], [2.327800954258062, 48.88358888913319], [2.327799178962469, 48.883588453782046], [2.327610187506627, 48.883553628941705], [2.32748041071501, 48.883528432822985], [2.327435317309578, 48.883521403054964], [2.32741082020501, 48.883558831420075], [2.327392281114434, 48.88358715694122], [2.327399940017413, 48.88359660517717], [2.32734406460046, 48.8837189762738], [2.3272833661813372, 48.88384817133945], [2.327227490232049, 48.88397054145442], [2.327166791230498, 48.88409973643141], [2.327110914725732, 48.88422210736329], [2.327050213778159, 48.88435130224396], [2.326994336741246, 48.88447367219414], [2.32693363657481, 48.88460286699382], [2.326877758993922, 48.884725236861605], [2.326817058245033, 48.88485443157263], [2.32676118010864, 48.88497680225728], [2.326700478777289, 48.885105996879645], [2.326644600108633, 48.88522836658262], [2.326583896831201, 48.88535756110863], [2.326528017607119, 48.88547993162845], [2.326467315110816, 48.885609126073476], [2.326411435354358, 48.88573149561161], [2.326350732275571, 48.88586068996795], [2.326294851963568, 48.885983060322964], [2.326234148313921, 48.88611225369136], [2.326178267457998, 48.88623462396393], [2.326117561850678, 48.88636381813524], [2.326061681826102, 48.886486187433775], [2.326047218070718, 48.88651696740622], [2.326048312823655, 48.88652289205446]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 30, "roussel_fabien": 26.0, "nb_emargement": 1381.0, "nb_procuration": 88.0, "nb_vote_blanc": 17.0, "jadot_yannick": 137.0, "le_pen_marine": 65.0, "nb_exprime": 1360.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1752.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1382, "quartier_bv": "69", "geo_point_2d": [48.88533568556706, 2.3293555253119016], "melenchon_jean_luc": 414.0, "poutou_philippe": 9.0, "macron_emmanuel": 521.0}, "geometry": {"type": "Point", "coordinates": [2.3293555253119016, 48.88533568556706]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2d02aae0762ecb24a083d33c8fdcf700aec44c69", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 38, "zemmour_eric": 37.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-14", "geo_shape": {"coordinates": [[[2.395357761111863, 48.87526701909679], [2.395372310323058, 48.87520851098903], [2.395446906497292, 48.875070510196494], [2.395522879851696, 48.87493211069761], [2.395597475231138, 48.874794109776666], [2.395673449145533, 48.87465571015446], [2.395748042366855, 48.87451770909827], [2.395824015478109, 48.87437930934582], [2.395824811805619, 48.87437671429331], [2.395834019327629, 48.87425983490631], [2.395846669689448, 48.87413187781175], [2.395855877119129, 48.87401499839715], [2.395868527367686, 48.873887041271864], [2.395877734715571, 48.873770160930405], [2.3958903848509703, 48.87364220377441], [2.395890609386631, 48.87364106455289], [2.395925515257519, 48.87352731584831], [2.3959672147144673, 48.8733865197722], [2.396002121610786, 48.87327277102592], [2.396043820656879, 48.87313197489066], [2.396078725852023, 48.87301822608895], [2.3961204258608912, 48.87287742900218], [2.396155330718166, 48.87276368015189], [2.396155188719769, 48.87275969988232], [2.396147509019601, 48.87273958710492], [2.39614572298008, 48.87273723982626], [2.396086421996398, 48.8727389569636], [2.395893340452143, 48.87274673049876], [2.395696188013452, 48.87275461087659], [2.395503104989746, 48.87276238377531], [2.395305952443212, 48.87277026261101], [2.395112870656105, 48.87277803578636], [2.394915716628012, 48.87278591397228], [2.394722634724656, 48.87279368651809], [2.394525481941597, 48.872801564068105], [2.3943323985587073, 48.87280933597744], [2.394135245657401, 48.872817212884634], [2.394116980208429, 48.872810002202804], [2.394095345790296, 48.87282296182014], [2.394094838116176, 48.87282359148232], [2.3940105100959013, 48.872939080679345], [2.393926464839535, 48.873055662130646], [2.393842136070222, 48.8731711511848], [2.393758091425849, 48.873287732500295], [2.393673761907492, 48.87340322141153], [2.3935897151484973, 48.87351980257738], [2.393505384881083, 48.873635291345714], [2.3934213373708593, 48.873751872368835], [2.393337007717597, 48.87386736100122], [2.393252959445459, 48.87398394278086], [2.393168627690383, 48.874099430364154], [2.393084578666993, 48.87421601200107], [2.393000246162735, 48.87433149944141], [2.392916197751219, 48.87444808094254], [2.392912780555876, 48.874449647337556], [2.392910612371951, 48.8744688640805], [2.392831313794188, 48.874583675429356], [2.392751437944211, 48.874699322864615], [2.392672138675305, 48.874814133184756], [2.392592260755138, 48.87492978048272], [2.392512960774004, 48.87504459157273], [2.392433083510328, 48.875160238747235], [2.3923537828273442, 48.87527504970784], [2.392273903493549, 48.87539069674503], [2.392278871731363, 48.87542587326801], [2.392288921972566, 48.87542770137035], [2.392336378841783, 48.87542428110066], [2.3923899140188762, 48.87542096091315], [2.392406264069194, 48.87542505672191], [2.392433171017569, 48.87541828731714], [2.3925676645034413, 48.87540994685392], [2.392754266956471, 48.87539957099439], [2.392942296813761, 48.875387909742535], [2.393128899113206, 48.87537753329889], [2.3933169288070593, 48.87536587145835], [2.393503530942438, 48.87535549532979], [2.393691560483318, 48.87534383200132], [2.393878162465103, 48.87533345528854], [2.394066191842524, 48.875321791371455], [2.394252793670704, 48.875311414074474], [2.394440822884657, 48.87529974956866], [2.394627423195868, 48.875289371680665], [2.394815452235896, 48.875277707485466], [2.395002053767295, 48.87526732812093], [2.395190082643845, 48.875255663337015], [2.395306076001185, 48.87526427137008], [2.395357761111863, 48.87526701909679]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 14, "roussel_fabien": 26.0, "nb_emargement": 1269.0, "nb_procuration": 74.0, "nb_vote_blanc": 15.0, "jadot_yannick": 136.0, "le_pen_marine": 48.0, "nb_exprime": 1249.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 12, "nb_inscrit": 1556.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1269, "quartier_bv": "77", "geo_point_2d": [48.87414693382351, 2.394444974914093], "melenchon_jean_luc": 593.0, "poutou_philippe": 15.0, "macron_emmanuel": 283.0}, "geometry": {"type": "Point", "coordinates": [2.394444974914093, 48.87414693382351]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3ae6b87b6ec900c404f167688030d0877ef5fb24", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 133, "zemmour_eric": 270.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-17", "geo_shape": {"coordinates": [[[2.291919703001268, 48.850969054619064], [2.291931034073408, 48.85098243402686], [2.292022039702638, 48.85103531989897], [2.292115583175153, 48.85108939977611], [2.292118038664876, 48.85110105653828], [2.292031070844425, 48.851189598544124], [2.2919237640743733, 48.85129821437783], [2.29183679558256, 48.851386757126036], [2.291729488001573, 48.851495372766266], [2.291642517500214, 48.85158391445024], [2.291601155371271, 48.851625781253404], [2.291588479585692, 48.851641440526855], [2.291610820167022, 48.85165166362888], [2.291742111743706, 48.8517218679501], [2.291871607958146, 48.85179043275246], [2.292001104525582, 48.85185899651113], [2.292132397150557, 48.85192920039102], [2.292261894405978, 48.85199776385893], [2.29239318773183, 48.852067967443894], [2.292396008066778, 48.85207002657129], [2.29251828557339, 48.85219320928896], [2.29264661622469, 48.85232229687607], [2.292768894927902, 48.85244547841041], [2.292897228183948, 48.852574565707506], [2.292918109316167, 48.85257608851099], [2.293062700866386, 48.85248355422012], [2.293202775638201, 48.85239422357105], [2.2933473648277323, 48.85230168801372], [2.2934874386226722, 48.85221235701679], [2.293632028164803, 48.85211982110841], [2.293772100982873, 48.85203048976362], [2.293912173308501, 48.85194115914697], [2.29405676134389, 48.85184862270275], [2.294060881198914, 48.85184167696478], [2.294053613506885, 48.8517536424297], [2.294046726323876, 48.85166367740567], [2.294052523399663, 48.85165585479296], [2.294226257644933, 48.851575629663046], [2.294401759065477, 48.85149438673013], [2.294575492234753, 48.85141416108145], [2.2947509939297213, 48.85133291763252], [2.2949247246724562, 48.8512526905578], [2.29510022527913, 48.851171446584814], [2.295112981362483, 48.851154902441316], [2.295109854420044, 48.85115031886227], [2.294907232653566, 48.851098933424744], [2.294726214489963, 48.85105276986693], [2.294721150967669, 48.85105050870421], [2.294600407414566, 48.850964934072216], [2.294477920792871, 48.850878084529015], [2.294357178038713, 48.850792509638275], [2.294234692239857, 48.85070565893329], [2.294113950272456, 48.85062008468321], [2.293991465284157, 48.850533233715794], [2.293870724115684, 48.85044765920693], [2.29374823857545, 48.85036080796905], [2.293736811811899, 48.850345314662405], [2.293709800165065, 48.85035125108681], [2.2936486714799322, 48.850371457727356], [2.293449947630123, 48.85043716181593], [2.29327118778072, 48.85049625087567], [2.293072464341763, 48.850561954337934], [2.292893703624043, 48.850621043726356], [2.292694979233247, 48.85068674655432], [2.292516216296704, 48.850745835364094], [2.292484078933557, 48.85075397431796], [2.292482696468801, 48.85075883618677], [2.2923404218440933, 48.850810890740945], [2.292209372329366, 48.85085852371457], [2.292067097159457, 48.850910577939125], [2.291936047144297, 48.85095821060915], [2.291919703001268, 48.850969054619064]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 17, "roussel_fabien": 9.0, "nb_emargement": 1249.0, "nb_procuration": 95.0, "nb_vote_blanc": 17.0, "jadot_yannick": 67.0, "le_pen_marine": 93.0, "nb_exprime": 1229.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1543.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1249, "quartier_bv": "59", "geo_point_2d": [48.8513789752234, 2.2932184151230017], "melenchon_jean_luc": 194.0, "poutou_philippe": 1.0, "macron_emmanuel": 408.0}, "geometry": {"type": "Point", "coordinates": [2.2932184151230017, 48.8513789752234]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "315f1e675bbe7c2360814eefdde1ae962b709555", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 106, "zemmour_eric": 115.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "17-12", "geo_shape": {"coordinates": [[[2.315366195202698, 48.8862419497477], [2.315377936833792, 48.88624329303599], [2.315394716486717, 48.8862413852709], [2.31551077218164, 48.886151774888944], [2.315622216356877, 48.88606572456144], [2.315738271268819, 48.885976113944665], [2.315849716055811, 48.88589006339942], [2.315961159110965, 48.885804012735925], [2.316077212856378, 48.885714401769285], [2.31618865515957, 48.88562835088028], [2.316304708122018, 48.88553873967882], [2.316303038822222, 48.88552597493425], [2.3161613694539582, 48.885448561755275], [2.316021509408224, 48.88537213720913], [2.315879840876996, 48.885294723686215], [2.315739981657607, 48.88521829880059], [2.315598313963511, 48.8851408849337], [2.315458455582284, 48.885064458809225], [2.3154535336493263, 48.885057124499234], [2.315459382113132, 48.88497260727977], [2.31546585009327, 48.884879136252195], [2.315470413346151, 48.884869043961004], [2.315458121525576, 48.88486102898816], [2.315310341827987, 48.88477511349311], [2.31516177630948, 48.8846887427461], [2.31501399622624, 48.884602826864025], [2.314865433066078, 48.884516454844274], [2.314717653948844, 48.88443053948224], [2.314569091771702, 48.88434416708129], [2.314421313632293, 48.884258251340036], [2.314272752438166, 48.884171878557844], [2.3141249752765782, 48.88408596243736], [2.313976413701988, 48.883999589266146], [2.313828638881686, 48.88391367277427], [2.313680078290105, 48.883827299221785], [2.313645473463882, 48.883791566414054], [2.31362323560607, 48.88380011389343], [2.313605693267694, 48.8838077970494], [2.313566949907999, 48.88382657692892], [2.313561952845777, 48.8838310746207], [2.313597340815183, 48.88386387741872], [2.313623969369974, 48.883930152613694], [2.313646147117938, 48.88398535038544], [2.313643353574871, 48.883993479626255], [2.313506318061269, 48.884099757711546], [2.313368540770663, 48.88420660964963], [2.313231504147125, 48.88431288650051], [2.313093725728859, 48.8844197381017], [2.3129566879717602, 48.884526015516684], [2.312818908437589, 48.88463286588163], [2.312681869558777, 48.88473914296153], [2.312544090248452, 48.88484599389658], [2.312407048896193, 48.88495226973422], [2.312269268458183, 48.885059120332365], [2.3122702185608253, 48.885071436743324], [2.312395817598213, 48.88515086853692], [2.312518102313571, 48.88522820280474], [2.312643703470679, 48.885307634334836], [2.312765988922393, 48.88538496833847], [2.312891590835725, 48.885464399597154], [2.313013877023597, 48.8855417333366], [2.31301531075716, 48.885542523081945], [2.313171144695554, 48.88561703098022], [2.313329403456026, 48.885692697423295], [2.313485238293226, 48.8857672049026], [2.313643496602866, 48.88584287091235], [2.313799332338977, 48.885917377972646], [2.313957592925031, 48.885993043564724], [2.313962557926791, 48.88600310315012], [2.31388254213671, 48.88616551526741], [2.313802514606718, 48.88632795242402], [2.313807521621832, 48.88633803203877], [2.313951082897348, 48.88640612103728], [2.31408109743879, 48.88646778567718], [2.314093000468196, 48.886469094042496], [2.314246348932028, 48.886438570495926], [2.314399075102186, 48.88640816999546], [2.314552423219031, 48.886377645155974], [2.314705149031812, 48.886347244263426], [2.314715190782464, 48.88634781165762], [2.314799510033892, 48.88637563387204], [2.314888877735214, 48.88640512349324], [2.31490566052522, 48.8864026717196], [2.315056532537226, 48.886277332736995], [2.315209902175134, 48.88614991689513], [2.3152300949382623, 48.886149063803316], [2.315302656335507, 48.88619564950715], [2.315357761065535, 48.886231026815516], [2.315366195202698, 48.8862419497477]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 12, "roussel_fabien": 16.0, "nb_emargement": 1232.0, "nb_procuration": 84.0, "nb_vote_blanc": 15.0, "jadot_yannick": 78.0, "le_pen_marine": 57.0, "nb_exprime": 1213.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1475.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1232, "quartier_bv": "67", "geo_point_2d": [48.88524400921598, 2.3142706707849294], "melenchon_jean_luc": 181.0, "poutou_philippe": 1.0, "macron_emmanuel": 617.0}, "geometry": {"type": "Point", "coordinates": [2.3142706707849294, 48.88524400921598]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a7d38ccd77d4c21437c886b2b45b78ad10775338", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 18, "zemmour_eric": 46.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-7", "geo_shape": {"coordinates": [[[2.346741570126894, 48.891206622365154], [2.346751010916994, 48.891205511042884], [2.346950256283987, 48.89126187114442], [2.347145939979694, 48.8913171233097], [2.347345186201263, 48.891373482748385], [2.347540872099282, 48.89142873427011], [2.347740117811651, 48.89148509303852], [2.347935804548306, 48.89154034390923], [2.348135052478916, 48.89159670202223], [2.348330738690326, 48.891651952234504], [2.348339441187612, 48.89165240608796], [2.348527260258178, 48.891621179233184], [2.348716093658743, 48.891589527724676], [2.3489039122766, 48.89155830027735], [2.349092745220259, 48.891526648173084], [2.349280563385402, 48.89149542013324], [2.349469395871946, 48.89146376743319], [2.349507579101044, 48.891463356127076], [2.349516537673937, 48.89143970853004], [2.349517948127894, 48.89130879813366], [2.349519042782036, 48.891169978256876], [2.3495204532336222, 48.891039066929025], [2.34952154922794, 48.890900247924755], [2.349522958302161, 48.89076933655726], [2.349524054295358, 48.890630516619574], [2.349525464708496, 48.89049960612656], [2.349526559325587, 48.890360786147326], [2.349527969725121, 48.890229875622076], [2.349529065693601, 48.890091055616146], [2.349530474715793, 48.88996014505125], [2.349531570671918, 48.889821325011184], [2.349532981055475, 48.88969041352226], [2.349534075624282, 48.88955159433986], [2.349535035398739, 48.889462538538176], [2.349519317696331, 48.88944900195543], [2.349490092152242, 48.889447105691666], [2.349313251240161, 48.889520944375704], [2.349145402360496, 48.88958891771456], [2.348968560478001, 48.88966275587999], [2.348800712054967, 48.8897307287343], [2.348623867838326, 48.88980456637375], [2.348456018508196, 48.88987253873615], [2.348449496643266, 48.889873859430146], [2.348283005734836, 48.88987881068865], [2.34813205683172, 48.889877323526484], [2.348091375094615, 48.88987662990516], [2.348087685653655, 48.88990639544392], [2.348101316178479, 48.890045118488636], [2.348113280089998, 48.89019180225167], [2.3481075155594953, 48.89020190895053], [2.348126294198524, 48.890217243035494], [2.34825977592481, 48.890313341152506], [2.348427378075774, 48.89042851417862], [2.348419995327776, 48.890443586245496], [2.3482328679750353, 48.89046619219119], [2.348050018509211, 48.890488491084284], [2.347862890823306, 48.890511097350156], [2.347680041041246, 48.89053339567738], [2.347492911680854, 48.89055600045743], [2.347310061582771, 48.8905782982188], [2.347122933264038, 48.89060090242723], [2.34694008283856, 48.890623200521986], [2.346752954197842, 48.890645804151305], [2.34657010346753, 48.89066810078092], [2.346382973141186, 48.89069070382371], [2.346200122094671, 48.890712999887484], [2.346012992810113, 48.89073560235861], [2.345830141436306, 48.89075789875577], [2.345819480001686, 48.89076433542857], [2.345817885782997, 48.89076953830123], [2.345807764205647, 48.890793576791935], [2.3458135265951, 48.89080354580233], [2.345965618959057, 48.89086806313573], [2.346151599620422, 48.89094435310404], [2.346151991673981, 48.89094451982104], [2.346304084869108, 48.89100903671627], [2.346433255154188, 48.89106616176657], [2.346585349053141, 48.891130678297394], [2.346714519948565, 48.891187803037965], [2.346741570126894, 48.891206622365154]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 7, "roussel_fabien": 25.0, "nb_emargement": 1128.0, "nb_procuration": 79.0, "nb_vote_blanc": 18.0, "jadot_yannick": 134.0, "le_pen_marine": 38.0, "nb_exprime": 1109.0, "nb_vote_nul": 1.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1440.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1128, "quartier_bv": "70", "geo_point_2d": [48.890749857822385, 2.3482967148713207], "melenchon_jean_luc": 440.0, "poutou_philippe": 14.0, "macron_emmanuel": 342.0}, "geometry": {"type": "Point", "coordinates": [2.3482967148713207, 48.890749857822385]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "198a23f43cbaaa5ab0bb21ab5e32b5ea3e23a8c4", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 79, "zemmour_eric": 93.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "9-10", "geo_shape": {"coordinates": [[[2.339233678113393, 48.87678668404288], [2.339186712702442, 48.876787943776606], [2.339020874937968, 48.87679932843829], [2.3388460739028822, 48.876809837776754], [2.338680235994239, 48.87682122196638], [2.338505436180334, 48.8768317308148], [2.338339598116104, 48.87684311543156], [2.338164796796602, 48.876853623774814], [2.338160753376643, 48.87685346831842], [2.337978624104684, 48.876829700850536], [2.33781012318109, 48.876806332252514], [2.337641623771987, 48.876782963424404], [2.337459493620191, 48.87675919515767], [2.337290993157521, 48.87673582582746], [2.337108864682513, 48.8767120579331], [2.3371046038838, 48.876711949801354], [2.337041657090346, 48.87671376681818], [2.336969015600657, 48.87671947819307], [2.336942419280763, 48.87672777744878], [2.336950489640751, 48.87676118932213], [2.336989659785881, 48.87689084412782], [2.337028241547004, 48.87702335643365], [2.337067412082856, 48.87715301118306], [2.337105995610754, 48.877285522540596], [2.337145166537337, 48.87741517723376], [2.3371837490825262, 48.87754768942643], [2.337222920399843, 48.877677344063315], [2.337261503348515, 48.877809855300136], [2.33725722983704, 48.87781823952759], [2.337113952978192, 48.877903198766674], [2.336970008716613, 48.87798881514529], [2.336826730920087, 48.878073774027484], [2.336682785726369, 48.87815938914823], [2.336539505617078, 48.8782443485652], [2.336395559479766, 48.878329963327346], [2.336252279807564, 48.87841492149568], [2.336108332726657, 48.87850053589921], [2.335965052105196, 48.878585494609936], [2.335821104080686, 48.878671108654835], [2.33567782253299, 48.878756066109375], [2.335533873553402, 48.87884168069491], [2.335390591067799, 48.878926637792546], [2.335246641156067, 48.879012251120216], [2.335103357721175, 48.87909720876018], [2.334959406865825, 48.879182821729216], [2.334816122504595, 48.879267778113004], [2.334672170705624, 48.87935339072338], [2.334668894797053, 48.879363799399485], [2.334675251320684, 48.879372998043394], [2.334689544003255, 48.879397640991826], [2.334691878945731, 48.87939834285804], [2.334759583554612, 48.87951054321594], [2.334826448173648, 48.87961988796626], [2.33489415200857, 48.87973208731861], [2.33496101718309, 48.87984143287105], [2.3350287229594002, 48.87995363213232], [2.335095587337427, 48.880062977580025], [2.335163293691667, 48.88017517674262], [2.335230158648149, 48.88028452119391], [2.335253500553791, 48.880296225225976], [2.33528151831886, 48.88028462290714], [2.335317542628667, 48.88025658564718], [2.335454060612669, 48.88014990643813], [2.335576731442817, 48.88005443145822], [2.335713248354525, 48.87994775283327], [2.3358359182333652, 48.87985227757027], [2.335958586298975, 48.879756802165744], [2.3360951030118082, 48.87965012308412], [2.336110105950265, 48.87964745342248], [2.336188935492515, 48.87966600762683], [2.336278676783882, 48.879680443969384], [2.336293366317489, 48.87967658092985], [2.336403328790405, 48.879564112753144], [2.336510736034712, 48.87945513680867], [2.336620698934121, 48.87934266841725], [2.336728105266805, 48.87923369225583], [2.336838065877254, 48.8791212227353], [2.336945471287078, 48.879012247256235], [2.336952926407524, 48.87900854641642], [2.337110221173878, 48.87897690655498], [2.337266161734073, 48.87894902000679], [2.337423457493797, 48.87891737973964], [2.337579396333258, 48.87888949367365], [2.337588485226118, 48.87888415785098], [2.337667689583259, 48.87875375190752], [2.337738546014286, 48.878631719288734], [2.337809402124698, 48.8785096857152], [2.337888605347877, 48.87837928048053], [2.337959460763248, 48.878257246790234], [2.338038663238136, 48.87812684052713], [2.338039931838104, 48.87812518826882], [2.338141763373155, 48.878020887941915], [2.338240578693024, 48.87791892980369], [2.338342409422981, 48.87781462928661], [2.338441222583891, 48.877712671855434], [2.338543052508768, 48.87760837114816], [2.338641866248985, 48.87750641353981], [2.338642034865765, 48.877506234604255], [2.33874386398488, 48.87740193370669], [2.338832044809972, 48.877306078540784], [2.33892022529907, 48.87721022420081], [2.339022053282345, 48.877105923038606], [2.339110234457576, 48.877010067649586], [2.339212061669016, 48.87690576630678], [2.339264988756017, 48.876898663207264], [2.339268318893229, 48.87688292792086], [2.339256388871439, 48.87683970114404], [2.339249466521938, 48.87681638362478], [2.339233678113393, 48.87678668404288]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 10, "roussel_fabien": 13.0, "nb_emargement": 1186.0, "nb_procuration": 102.0, "nb_vote_blanc": 16.0, "jadot_yannick": 91.0, "le_pen_marine": 34.0, "nb_exprime": 1164.0, "nb_vote_nul": 6.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1430.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "33", "geo_point_2d": [48.87835746614296, 2.3369175596718748], "melenchon_jean_luc": 232.0, "poutou_philippe": 9.0, "macron_emmanuel": 576.0}, "geometry": {"type": "Point", "coordinates": [2.3369175596718748, 48.87835746614296]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d4968ea645f657606c1a8b6b7f6db15eb4b9032b", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 30, "zemmour_eric": 40.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-18", "geo_shape": {"coordinates": [[[2.35097398503259, 48.88713549810737], [2.35095717200125, 48.88710494048952], [2.350909910123675, 48.88702150378496], [2.350855868843989, 48.886916992353065], [2.350790422743362, 48.88680145175924], [2.350736381931858, 48.88669694025249], [2.350735369817926, 48.88669553721041], [2.350635802693458, 48.88658360753651], [2.350540064897472, 48.88647564658269], [2.350440499976888, 48.88636371673138], [2.350344762990084, 48.8862557555998], [2.350245197546191, 48.886143825556296], [2.35014946136846, 48.886035864247], [2.350053725599023, 48.885927901951256], [2.349954161396329, 48.8858159725316], [2.349858426435955, 48.88570801005811], [2.349758864437089, 48.88559608046106], [2.34974956021165, 48.88559016451523], [2.349706482315999, 48.88560689457577], [2.349532060345526, 48.88568466078083], [2.34935905442169, 48.88576179680078], [2.349186046621688, 48.885838932557924], [2.349011624449186, 48.88591669889507], [2.348838615620007, 48.88599383413931], [2.348664192409811, 48.88607159995936], [2.348491182551252, 48.88614873469074], [2.348316758303361, 48.88622649999374], [2.3481437474156213, 48.88630363421222], [2.34796932214119, 48.88638139809882], [2.347796311587811, 48.886458531811826], [2.347621883900881, 48.886536296073196], [2.347616025066507, 48.88654502899389], [2.347635113225543, 48.88663241899442], [2.347663826924663, 48.88676386909673], [2.347682916607794, 48.88685125907967], [2.347698193773999, 48.88692119932696], [2.347687835557719, 48.88692637338134], [2.34768549268632, 48.88694868910538], [2.347698929452669, 48.88701019892264], [2.347726984965819, 48.88713619545697], [2.347755699174547, 48.88726764547699], [2.347783753600199, 48.887393641961054], [2.347812468094195, 48.88752509193667], [2.347840524159484, 48.887651088385354], [2.34786923893886, 48.88778253831651], [2.347897295280226, 48.88790853472238], [2.347926010344882, 48.88803998460908], [2.347954065598642, 48.888165980964686], [2.34798278094858, 48.888297430806965], [2.34801083784211, 48.888423427127144], [2.348039553477339, 48.88855487692501], [2.3480676106469582, 48.88868087320234], [2.348096326567481, 48.88881232295577], [2.348124382649485, 48.88893831918283], [2.348132097841051, 48.88894515828483], [2.348306240136554, 48.888998872301975], [2.348471169362683, 48.88905136501025], [2.348636098910095, 48.889103858388076], [2.348810242256149, 48.889157571664484], [2.348975173856747, 48.889210063678384], [2.349149317907865, 48.88926377645649], [2.349314248811727, 48.889316268890084], [2.34948839357904, 48.88936998027059], [2.349524377639228, 48.88936655777138], [2.349533787354559, 48.88934355739651], [2.349535197708369, 48.88921264674982], [2.3495371576974122, 48.88907998628903], [2.34953856803561, 48.888949075610924], [2.349540529358617, 48.88881641602488], [2.349541939681199, 48.88868550531528], [2.349543900996922, 48.88855284479806], [2.349545311303788, 48.88842193405701], [2.349547272589862, 48.88828927440718], [2.349548681517423, 48.88815836362726], [2.349550642796218, 48.888025703046246], [2.349552053071857, 48.88789479224229], [2.3495540143209013, 48.88776213252865], [2.349555424580925, 48.88763122169322], [2.349557385822585, 48.887498561048425], [2.349570586173517, 48.88748966107725], [2.349822292381807, 48.88748436232252], [2.35005378073296, 48.88748346251665], [2.3500606957907673, 48.8874821888348], [2.350201775803856, 48.88742658298108], [2.350344452392195, 48.887371856170404], [2.350485531814666, 48.88731624907748], [2.350628207802372, 48.8872615219232], [2.350769286611686, 48.88720591538966], [2.350911962010172, 48.88715118699248], [2.35097398503259, 48.88713549810737]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 18, "roussel_fabien": 24.0, "nb_emargement": 1516.0, "nb_procuration": 108.0, "nb_vote_blanc": 15.0, "jadot_yannick": 177.0, "le_pen_marine": 50.0, "nb_exprime": 1497.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1881.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1516, "quartier_bv": "70", "geo_point_2d": [48.88733221667778, 2.349072241791637], "melenchon_jean_luc": 720.0, "poutou_philippe": 8.0, "macron_emmanuel": 382.0}, "geometry": {"type": "Point", "coordinates": [2.349072241791637, 48.88733221667778]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3de22ebfa02838e2fcc5bf79cd618c36951a9ae6", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 28, "zemmour_eric": 57.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-12", "geo_shape": {"coordinates": [[[2.37983994096226, 48.87470489708], [2.379842412349696, 48.87470825630506], [2.379826253748266, 48.87479398343402], [2.379809774646942, 48.874918644650286], [2.37979788331294, 48.87500575276124], [2.379781402702653, 48.875130414841905], [2.379769511272954, 48.87521752293331], [2.379770278016294, 48.87522137335543], [2.379844523500838, 48.875355742512504], [2.379920601460979, 48.8754939198811], [2.379994847721841, 48.87562828891174], [2.380070926489586, 48.87576646525136], [2.380145173526771, 48.87590083415557], [2.380221253080826, 48.87603901126481], [2.380238494491142, 48.87604444706255], [2.380393961810195, 48.8760092497627], [2.3806171983435043, 48.875958351631446], [2.380772665149648, 48.875923153837064], [2.380995900933176, 48.87587225589493], [2.38115136722641, 48.875837057605956], [2.381155704424799, 48.8758354405438], [2.381288290398384, 48.87576205502995], [2.38142331271866, 48.87568703887452], [2.381555896574059, 48.87561365304742], [2.381690919476782, 48.87553863748639], [2.381705827229468, 48.87553748150073], [2.381761836381607, 48.87555588064697], [2.381844092350385, 48.87558316671451], [2.381850028092152, 48.87558700873922], [2.381858180161875, 48.87560170007044], [2.381872713167296, 48.875604664671435], [2.3819205204656573, 48.875664507620286], [2.381962820192441, 48.875717868498505], [2.381983398487058, 48.87572073389318], [2.3820372049287473, 48.87569245335077], [2.38208389598433, 48.87566793213964], [2.382084299260988, 48.87566772737475], [2.382246042973911, 48.875589174446155], [2.3824132298657412, 48.87550790191572], [2.382574971222898, 48.87542934852432], [2.382742158441149, 48.87534807642905], [2.382903898816666, 48.87526952168258], [2.383071083645185, 48.8751882491091], [2.383232824391657, 48.87510969391386], [2.383400008193906, 48.875028420869256], [2.38356174658463, 48.87494986521122], [2.383728930723962, 48.874868591702466], [2.383890668111654, 48.874790036487894], [2.384057849872117, 48.87470876160172], [2.384219587630664, 48.8746302059384], [2.384386768364866, 48.87454893058108], [2.384548503767796, 48.87447037445496], [2.384715684828346, 48.87438909953284], [2.384877419249521, 48.87431054205165], [2.385044597920489, 48.874229266651355], [2.385206332712614, 48.87415070872142], [2.385330262468885, 48.87409045844777], [2.38533686448769, 48.874090646134405], [2.385353692800937, 48.87407793232413], [2.385396939306304, 48.874056906710685], [2.385443801287435, 48.87403508754463], [2.385477740216804, 48.874003173544416], [2.385471960569157, 48.873997880970826], [2.385378257120701, 48.87395001217685], [2.385292949170311, 48.873911762529175], [2.385275783236315, 48.873902142334735], [2.385270906808333, 48.87390107046743], [2.385235538419359, 48.87388521163835], [2.385104019169173, 48.87382419529508], [2.384983342028904, 48.87377008653539], [2.384979643861596, 48.87376887501754], [2.384835900605238, 48.87373861395142], [2.384587132268618, 48.873695003588075], [2.384443389444265, 48.873664742048604], [2.384441894100127, 48.87366448794138], [2.384249784323571, 48.87363734994089], [2.384046393201054, 48.87361075793348], [2.383854283828834, 48.87358361929698], [2.383650893128586, 48.873557025717005], [2.383458784160613, 48.87352988644444], [2.383255393861467, 48.87350329309049], [2.383179646364025, 48.87349259192114], [2.383173557130018, 48.873491707075004], [2.383143992590217, 48.87348007022246], [2.383111344949194, 48.87348666677218], [2.38299498391781, 48.87347022796641], [2.38292119397157, 48.87345771467082], [2.382905280381395, 48.873454637849164], [2.382874413420565, 48.87349321216342], [2.382816574884592, 48.873547892987574], [2.382751283298493, 48.87360861844927], [2.382739471257575, 48.8736123967991], [2.382549406829038, 48.87360602415168], [2.382358234672779, 48.87359936669286], [2.382168170349102, 48.87359299254074], [2.381976996915321, 48.873586335365225], [2.381786932685852, 48.87357996060774], [2.381595760722618, 48.87357330193104], [2.38140569657669, 48.873566927467465], [2.381214523346822, 48.87356026817481], [2.3810244593058, 48.87355389220654], [2.380833287525038, 48.87354723321127], [2.380643223578251, 48.87354085663761], [2.380452050541462, 48.87353419612715], [2.380261986678222, 48.87352781984739], [2.380070815101344, 48.873521158735], [2.380056531718634, 48.87352923723249], [2.380042679731034, 48.873619853517084], [2.380027626410139, 48.87371013891105], [2.380013775687356, 48.87380075518452], [2.3799987222639762, 48.873891040560075], [2.37998439477549, 48.873899035180244], [2.379815617123799, 48.87389268571359], [2.37964725105414, 48.87388543700845], [2.379478473487612, 48.873879087066406], [2.379310107508934, 48.87387183788692], [2.379295737801034, 48.873879476969265], [2.379279959347704, 48.873948810294465], [2.379268082763503, 48.87399813116984], [2.379278211514998, 48.87400818339356], [2.379444232180965, 48.874035977444834], [2.379611641249925, 48.87406294477687], [2.379777662257651, 48.87409073926361], [2.379945071675248, 48.874117706127976], [2.379955366639154, 48.874127552306554], [2.379931889565968, 48.87425211710861], [2.37990705978635, 48.874388257410295], [2.379883582480127, 48.87451282217347], [2.379858752439258, 48.87464896333224], [2.379851433480231, 48.87468780092472], [2.37983994096226, 48.87470489708]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 12, "roussel_fabien": 29.0, "nb_emargement": 1301.0, "nb_procuration": 79.0, "nb_vote_blanc": 8.0, "jadot_yannick": 148.0, "le_pen_marine": 49.0, "nb_exprime": 1289.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1665.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1301, "quartier_bv": "76", "geo_point_2d": [48.87452196072711, 2.38199794589192], "melenchon_jean_luc": 608.0, "poutou_philippe": 9.0, "macron_emmanuel": 309.0}, "geometry": {"type": "Point", "coordinates": [2.38199794589192, 48.87452196072711]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6084843b305e753751c5cb4ce47d2d050a9f8b49", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 79, "zemmour_eric": 78.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-28", "geo_shape": {"coordinates": [[[2.318558221008657, 48.891595010160515], [2.318572011820725, 48.891593273800034], [2.318691090173298, 48.891527786166556], [2.31882768882184, 48.891452661975165], [2.318946766531265, 48.89138717407905], [2.319083364430266, 48.89131205048563], [2.319089648878269, 48.8913088288623], [2.319096386551567, 48.89131318753712], [2.319111208702037, 48.89129723953339], [2.319124424431638, 48.89128962004554], [2.319137327594141, 48.891287964008775], [2.3193217355536753, 48.891326990037946], [2.319497557602145, 48.891364927366645], [2.319673378531202, 48.8914028653274], [2.319857788674971, 48.89144188963547], [2.320042197719649, 48.89148091454968], [2.320249856949467, 48.89152597073873], [2.320434266597422, 48.891564994146925], [2.320641926501835, 48.89161004965256], [2.320826336729786, 48.891649073353285], [2.321033997320519, 48.89169412727632], [2.321034257105509, 48.89169418180955], [2.321218669289251, 48.89173320491081], [2.321394083797788, 48.891768715231606], [2.321578496515186, 48.89180773777607], [2.321753912884002, 48.89184324757511], [2.321938324771169, 48.89188226955508], [2.322113741636482, 48.891917778824606], [2.322119002657058, 48.8919154271939], [2.322124146177456, 48.89189821624565], [2.322026893261762, 48.891781968360036], [2.321925031516437, 48.89166190722305], [2.321827779474959, 48.89154566004993], [2.321725918662769, 48.89142559781849], [2.321628667507304, 48.89130935045856], [2.321526807616527, 48.8911892880319], [2.321429557346863, 48.89107304048526], [2.321327697013733, 48.89095297785562], [2.321230448993715, 48.890836730129976], [2.321128589570361, 48.890716668204355], [2.321031342447942, 48.89060041939275], [2.320929483945869, 48.89048035727188], [2.320928656516103, 48.89047948922598], [2.320896230992245, 48.8904494234102], [2.32089552482594, 48.89044845982385], [2.320893079506087, 48.89043559727655], [2.3208825277610012, 48.890431508450035], [2.320829257110217, 48.8903462793039], [2.320777217043291, 48.89026301763905], [2.320756520410294, 48.890259204005595], [2.320701424921041, 48.89028596659308], [2.32064850893229, 48.890311670422015], [2.3206289190871843, 48.8903092632977], [2.320530645085187, 48.890207574596104], [2.320438975776837, 48.890110532335775], [2.320340701157132, 48.89000884345217], [2.320249032552751, 48.88991180102885], [2.320248920867701, 48.88991168528098], [2.320148884572102, 48.88980929463393], [2.320050612451194, 48.88970760549203], [2.319950576925881, 48.889605215559506], [2.319852304213693, 48.88950352622821], [2.31975403324906, 48.88940183681462], [2.319653998894366, 48.88929944660583], [2.319555727338348, 48.88919775700282], [2.319455695141124, 48.889095365717765], [2.319417909850586, 48.88906481123363], [2.319417268754517, 48.88906492450237], [2.319394106384701, 48.88907764064641], [2.319263305164974, 48.88914944767034], [2.319115607645232, 48.88922855094577], [2.3189848070377312, 48.88930035676409], [2.318863923241996, 48.88936509887128], [2.318844287856841, 48.88937475477278], [2.318842893217991, 48.889376591360275], [2.318816078631231, 48.8893909521692], [2.318671493150005, 48.88946964900767], [2.318523793823053, 48.88954875153007], [2.318379207473679, 48.88962744710507], [2.318231505879599, 48.88970655014705], [2.318086918650308, 48.88978524535778], [2.3179392175400872, 48.889864347136324], [2.317794629419095, 48.88994304288212], [2.317646927417133, 48.89002214428876], [2.317502338428101, 48.890100838771026], [2.317354635534496, 48.890179939805805], [2.317304208745713, 48.89016826863126], [2.3172849572472938, 48.89017959741188], [2.317243289187177, 48.89020607434583], [2.317208109843098, 48.89025524501282], [2.317209601385573, 48.890264537271534], [2.3172426674700652, 48.89029311397354], [2.31727730954329, 48.890331931294874], [2.3173065094476533, 48.890362679392254], [2.317324676857099, 48.89038306998774], [2.317352567225985, 48.89038305182503], [2.317381282077906, 48.890415226167654], [2.317382372068173, 48.89041676393517], [2.317401928165732, 48.89044691293671], [2.317416548762596, 48.89047392932344], [2.317417759658538, 48.890475399430926], [2.317530748964033, 48.890586578824355], [2.317643227100118, 48.89069725425927], [2.3177562173566812, 48.89080843431677], [2.317868696451263, 48.890919109517554], [2.317981176012228, 48.891029785500784], [2.318094166360021, 48.891140964298636], [2.318206646891276, 48.89125163914842], [2.318319639553933, 48.891362818618106], [2.318432121043711, 48.89147349323371], [2.318545114681031, 48.89158467156886], [2.318558221008657, 48.891595010160515]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 28, "roussel_fabien": 18.0, "nb_emargement": 1276.0, "nb_procuration": 78.0, "nb_vote_blanc": 9.0, "jadot_yannick": 112.0, "le_pen_marine": 64.0, "nb_exprime": 1262.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1611.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1277, "quartier_bv": "68", "geo_point_2d": [48.89058957388882, 2.3194964547785286], "melenchon_jean_luc": 353.0, "poutou_philippe": 7.0, "macron_emmanuel": 501.0}, "geometry": {"type": "Point", "coordinates": [2.3194964547785286, 48.89058957388882]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5c0900740418f5c19c7fa981bf8f7fc6d7feb820", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 28, "zemmour_eric": 82.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-29", "geo_shape": {"coordinates": [[[2.392166270706374, 48.879243727493034], [2.392166598828379, 48.87922577765001], [2.392150507630289, 48.87911809300999], [2.392134785749587, 48.87900902886234], [2.392118694684342, 48.87890134419687], [2.392102972946189, 48.87879227912432], [2.392086883366535, 48.87868459533958], [2.392071161760428, 48.878575530241385], [2.3920716203546633, 48.87857222033896], [2.392126350100213, 48.87844522060996], [2.392176944410455, 48.87831679239472], [2.392231674983804, 48.87818979349429], [2.392282268786198, 48.878061365204765], [2.392336997481269, 48.87793436532061], [2.392387590775824, 48.877805936956804], [2.392442320309189, 48.877678937001974], [2.392492913095908, 48.87755050856393], [2.392492952392403, 48.87754608765463], [2.392443059159718, 48.87741304559646], [2.392391113974058, 48.87727429312713], [2.39239231879335, 48.87726790679952], [2.392494115991166, 48.87714194785231], [2.392600180085994, 48.87700537047231], [2.392599390387952, 48.87699077841843], [2.392570564046824, 48.876987161635405], [2.392377629316195, 48.87696996486983], [2.39218016342696, 48.87695222767075], [2.391987228965041, 48.87693502937616], [2.391789763341214, 48.87691729153253], [2.391596829137626, 48.87690009260823], [2.3913993637792172, 48.8768823541201], [2.391206429834072, 48.876865154566055], [2.391008963367176, 48.87684741632573], [2.390816031043674, 48.87683021614893], [2.390618564852727, 48.87681247636482], [2.3906031678493003, 48.876822339193815], [2.390623219952649, 48.87694658224921], [2.390643847112711, 48.87707354149566], [2.390663899409914, 48.8771977845159], [2.390684526768625, 48.877324743726376], [2.390704579259482, 48.877448986711535], [2.390725206816947, 48.877575945886086], [2.390745259491042, 48.877700189735336], [2.390765887257581, 48.877827147974735], [2.390785940125541, 48.87795139178885], [2.390806568090735, 48.87807834999224], [2.390806573165674, 48.878078382393966], [2.39083019820233, 48.87821991058764], [2.390850826371245, 48.87834686965177], [2.390836634738119, 48.878356810578914], [2.390592922750675, 48.878349308175174], [2.390358003889788, 48.87834274758529], [2.3903448845371322, 48.87834820535907], [2.390274257913219, 48.87845747579086], [2.390203899139284, 48.87856666929432], [2.390133273297296, 48.87867593872896], [2.390062913932645, 48.87878513212789], [2.389992286124628, 48.87889440235002], [2.3899219261692473, 48.87900359564448], [2.389909659975249, 48.879009069407324], [2.389864212305096, 48.879009688556515], [2.389837088252218, 48.879010477523785], [2.389812893373513, 48.87900658151865], [2.389805099288675, 48.87901102495004], [2.389667811176444, 48.879012897193725], [2.389441997133524, 48.879015920431236], [2.38925925993628, 48.87901841207036], [2.389033445845738, 48.87902143453725], [2.388850708609704, 48.879023925552715], [2.388624894471553, 48.879026947248974], [2.388442157196538, 48.87902943764086], [2.388428818484581, 48.879038913186676], [2.38843609843463, 48.879127960623464], [2.388449398341726, 48.879302354591985], [2.388456678363686, 48.879391402006185], [2.388448883208505, 48.8793999858554], [2.388412413259525, 48.87941134783808], [2.388391389547519, 48.87941734688038], [2.388343132519765, 48.87942320048665], [2.388343597759341, 48.87943803730077], [2.388351897691479, 48.87949224181286], [2.388369471781446, 48.879538135337405], [2.388375754696856, 48.87955707853122], [2.388378463892296, 48.8795591797153], [2.388554446580555, 48.879559491398375], [2.388780434138406, 48.879557691099734], [2.3889564168134862, 48.87955800309119], [2.389182402987511, 48.87955620202683], [2.389358385659964, 48.8795565134274], [2.389422260597705, 48.87955600374018], [2.389464996236693, 48.87957798815359], [2.389507515037042, 48.87954682109557], [2.389669626222259, 48.87954552884427], [2.389763195799823, 48.87954445629027], [2.389772959479616, 48.87954706195174], [2.389904853726986, 48.87963328285062], [2.390051436915058, 48.87972411375049], [2.390183332071743, 48.87981033432873], [2.390329916254446, 48.879901163973734], [2.390340126318469, 48.879901870679824], [2.390359152058853, 48.879894155097176], [2.390517934313695, 48.879830781162106], [2.390675548402826, 48.87976582634438], [2.390834329881515, 48.87970245198231], [2.39099194183471, 48.87963749583427], [2.391150722526528, 48.87957412194446], [2.391308333696845, 48.879509165372326], [2.391309500270286, 48.8795087504177], [2.391454793970813, 48.879465762785685], [2.391661891387961, 48.87940028475985], [2.391807184495025, 48.87935729669593], [2.392014282411781, 48.879291817161686], [2.392159574914881, 48.879248829565164], [2.392166270706374, 48.879243727493034]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 29, "roussel_fabien": 17.0, "nb_emargement": 1135.0, "nb_procuration": 57.0, "nb_vote_blanc": 13.0, "jadot_yannick": 87.0, "le_pen_marine": 72.0, "nb_exprime": 1115.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1497.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1135, "quartier_bv": "75", "geo_point_2d": [48.87845916107695, 2.3909620858024887], "melenchon_jean_luc": 496.0, "poutou_philippe": 9.0, "macron_emmanuel": 275.0}, "geometry": {"type": "Point", "coordinates": [2.3909620858024887, 48.87845916107695]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6f405624426e1bdd153910581878b18638363387", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 86, "zemmour_eric": 91.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-35", "geo_shape": {"coordinates": [[[2.322652224423197, 48.88935056410989], [2.322652521425378, 48.88934891012841], [2.322741903065877, 48.88929899851998], [2.322868341879752, 48.8892283933416], [2.323026647511983, 48.889139991540425], [2.323153085553654, 48.88906938605112], [2.323311391582655, 48.88898098386845], [2.323437828852123, 48.888910378068275], [2.323451647122941, 48.888906880418205], [2.32345462699467, 48.88889575368665], [2.323526556546201, 48.888753541100705], [2.323599683871922, 48.88860895919744], [2.323596998065702, 48.88860018187432], [2.323454081714321, 48.88849278791158], [2.32331222886267, 48.88838619208271], [2.323169313685929, 48.88827879775918], [2.323027462011871, 48.88817220067294], [2.322884548009764, 48.88806480598857], [2.322742696137924, 48.88795820853652], [2.322599784674116, 48.887850813499085], [2.322457933956469, 48.887744216588146], [2.322315023667264, 48.88763682118991], [2.3221731741271983, 48.8875302230216], [2.322134925109458, 48.88750194293012], [2.322134220924656, 48.887502085534116], [2.322112151781856, 48.8875152589672], [2.32196547977212, 48.887600502355205], [2.321814430984352, 48.8876906688765], [2.321667756617769, 48.88777591277776], [2.321516706817261, 48.88786607800987], [2.321370032832985, 48.88795132154051], [2.321215715545114, 48.888039309476774], [2.321069039228191, 48.888124551718256], [2.320914720918338, 48.888212539252756], [2.32076804498441, 48.88829778111984], [2.320613725652573, 48.888385768252554], [2.320467047374158, 48.888471009729756], [2.320312727020327, 48.88855899646062], [2.320166049125008, 48.88864423756342], [2.32001172774918, 48.888732223892504], [2.319865047497709, 48.88881746550464], [2.319710725099875, 48.88890545143191], [2.319710354156923, 48.88890565976718], [2.319546235331932, 48.8889943641417], [2.319438598254298, 48.88905345519666], [2.319417909850586, 48.88906481123363], [2.319455695141124, 48.889095365717765], [2.319555727338348, 48.88919775700282], [2.319653998894366, 48.88929944660583], [2.31975403324906, 48.88940183681462], [2.319852304213693, 48.88950352622821], [2.319950576925881, 48.889605215559506], [2.320050612451194, 48.88970760549203], [2.320148884572102, 48.88980929463393], [2.320248920867701, 48.88991168528098], [2.320249032552751, 48.88991180102885], [2.320340701157132, 48.89000884345217], [2.320438975776837, 48.890110532335775], [2.320530645085187, 48.890207574596104], [2.3206289190871843, 48.8903092632977], [2.32064850893229, 48.890311670422015], [2.320701424921041, 48.89028596659308], [2.320756520410294, 48.890259204005595], [2.320777217043291, 48.89026301763905], [2.320829257110217, 48.8903462793039], [2.3208825277610012, 48.890431508450035], [2.320893079506087, 48.89043559727655], [2.320912863192851, 48.89042900229778], [2.321032209590117, 48.89034869741227], [2.321189325081746, 48.8902429784064], [2.321308670626256, 48.89016267323172], [2.321465783619809, 48.89005695473674], [2.321585128311572, 48.88997664927289], [2.321742241546253, 48.88987093040499], [2.321861585385274, 48.88979062465199], [2.321862511993846, 48.88979005612905], [2.321990397052258, 48.88971864529606], [2.322148705653789, 48.88963024559433], [2.322276589927207, 48.88955883444523], [2.3224348975686953, 48.88947043345305], [2.322562781045418, 48.88939902288719], [2.322631707386777, 48.889360534003096], [2.322652224423197, 48.88935056410989]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 35, "roussel_fabien": 11.0, "nb_emargement": 1330.0, "nb_procuration": 101.0, "nb_vote_blanc": 21.0, "jadot_yannick": 152.0, "le_pen_marine": 44.0, "nb_exprime": 1307.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1577.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "68", "geo_point_2d": [48.88894556579762, 2.3215236001729744], "melenchon_jean_luc": 301.0, "poutou_philippe": 4.0, "macron_emmanuel": 569.0}, "geometry": {"type": "Point", "coordinates": [2.3215236001729744, 48.88894556579762]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1e7d8994dd6f0218d7e05f7ec263edcadecb9a74", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 140, "zemmour_eric": 130.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "6-16", "geo_shape": {"coordinates": [[[2.320342844469031, 48.84509823834866], [2.32032396477212, 48.84510046223917], [2.320244862210604, 48.84512701529776], [2.320170473725115, 48.84515329830211], [2.320154407874964, 48.84515572882084], [2.3201354707523523, 48.84516496379305], [2.320027705840962, 48.84520303835009], [2.319868770282483, 48.84526079407483], [2.319686616003297, 48.845325151087856], [2.319527679682681, 48.84538290725242], [2.31934552320467, 48.84544726283198], [2.31918658749622, 48.845505018544834], [2.319184932155648, 48.84550572771595], [2.319029294989689, 48.84558590962563], [2.318867686474769, 48.84566669677991], [2.318712048340008, 48.84574687826528], [2.318550438822397, 48.84582766587862], [2.318394801093168, 48.845907846048206], [2.318233189222039, 48.84598863321355], [2.318077550524009, 48.846068812958876], [2.317915937661931, 48.846149599684], [2.317760297983325, 48.846229779904306], [2.317598684142068, 48.84631056528989], [2.317443043494649, 48.846390745085884], [2.317281428650658, 48.846471530930586], [2.317125787046203, 48.84655170940298], [2.316964172573748, 48.846632494815196], [2.316808528626192, 48.846712673754794], [2.316646913174566, 48.84679345782751], [2.316634938902151, 48.84680845285433], [2.31664700878013, 48.84684706397533], [2.316841109347889, 48.846915860302765], [2.3170186048817722, 48.846978823584244], [2.317212705068201, 48.84704761929287], [2.3173902014997863, 48.84711058201563], [2.317584304030098, 48.84717937712105], [2.31776180137116, 48.84724233838577], [2.317955903520128, 48.84731113287239], [2.318133401747115, 48.847374094477686], [2.318133834355244, 48.84737425433162], [2.318289117660065, 48.84743424620467], [2.3184678409574992, 48.84750289645021], [2.318623125030128, 48.847562887882845], [2.318801850583001, 48.84763153673001], [2.318957134060911, 48.84769152771444], [2.319135860495041, 48.847760176054706], [2.319227096452244, 48.84779542318054], [2.319242000472739, 48.84781012350863], [2.319263074749956, 48.84781565038103], [2.319327123080203, 48.84784039377949], [2.31932813402811, 48.84784082492903], [2.319498501262858, 48.84790832343674], [2.3196327331490902, 48.84797129028041], [2.319782326065862, 48.84804405380753], [2.319916558644637, 48.84810702032507], [2.320050791547787, 48.84816998668847], [2.320200386981275, 48.84824274968763], [2.320207549064037, 48.84824455312975], [2.320252123551564, 48.84820694329176], [2.320351401842285, 48.84809982051091], [2.320451839327705, 48.8479910305127], [2.320551116796578, 48.84788390754535], [2.320651554799864, 48.84777511826544], [2.320750831458516, 48.847667994212316], [2.3208512686287692, 48.84755920474361], [2.320950544465685, 48.84745208050403], [2.3210509794402983, 48.84734329083888], [2.321150254443574, 48.84723616731209], [2.321250689959504, 48.84712737656666], [2.321349964141064, 48.84702025285342], [2.321450398812175, 48.84691146281852], [2.321470246092167, 48.84690896543586], [2.321633820053903, 48.84699049025103], [2.321798660839439, 48.847072509469065], [2.321962234454038, 48.847154034714826], [2.322127076285438, 48.84723605256904], [2.322290650927112, 48.84731757735382], [2.322455493780983, 48.847399595642806], [2.322619070823947, 48.84748111907503], [2.322783913349471, 48.847563136891765], [2.322799091215022, 48.84756260314449], [2.3228120986090532, 48.84755030065922], [2.322813881600275, 48.8474094203996], [2.322815708486727, 48.84727197773037], [2.322817491470354, 48.84713109653619], [2.32281931833753, 48.846993653832584], [2.322821101301876, 48.84685277260317], [2.322822928149877, 48.84671532986514], [2.322824712445751, 48.84657444950753], [2.32282653791188, 48.84643700672741], [2.322828364730868, 48.846299563938025], [2.322830149009598, 48.84615868262842], [2.322831974446725, 48.84602123979698], [2.322833758694483, 48.84588035935146], [2.322825691789322, 48.845872073730106], [2.32265209822897, 48.845820872399095], [2.322476181557901, 48.845769156710574], [2.322302587321162, 48.84571795485997], [2.322126671344317, 48.84566623865277], [2.321953079156341, 48.845615036298035], [2.321777163873722, 48.84556331957213], [2.321603572371937, 48.84551211670555], [2.321427657783548, 48.84546039946098], [2.32125406559368, 48.84540919697409], [2.321078151699621, 48.84535747921081], [2.320904561570125, 48.84530627532053], [2.320728648370301, 48.84525455703859], [2.320555057564546, 48.84520335262868], [2.3203791450588582, 48.84515163382804], [2.320342844469031, 48.84509823834866]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 16, "roussel_fabien": 16.0, "nb_emargement": 1254.0, "nb_procuration": 107.0, "nb_vote_blanc": 12.0, "jadot_yannick": 100.0, "le_pen_marine": 47.0, "nb_exprime": 1238.0, "nb_vote_nul": 4.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1581.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1254, "quartier_bv": "23", "geo_point_2d": [48.84657894739698, 2.3201055372426183], "melenchon_jean_luc": 173.0, "poutou_philippe": 2.0, "macron_emmanuel": 589.0}, "geometry": {"type": "Point", "coordinates": [2.3201055372426183, 48.84657894739698]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "284b73caf3d1db19a50d206dc84fb7f1a91dc3a3", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 40, "zemmour_eric": 53.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-32", "geo_shape": {"coordinates": [[[2.389641997276682, 48.87527228488151], [2.389618462367168, 48.87530820383489], [2.389578475716908, 48.87539699968453], [2.389537903320078, 48.87548887993551], [2.389537499460415, 48.87549006769278], [2.389506004585014, 48.875624520945735], [2.389474814785533, 48.87575642972119], [2.389443320939976, 48.8758908838314], [2.389412129469402, 48.87602279165248], [2.389380635300963, 48.8761572457137], [2.389349443501571, 48.87628915438588], [2.389349484367145, 48.876292064831986], [2.389388117499889, 48.87643894560018], [2.389429060824611, 48.87658894171133], [2.389467694401978, 48.8767358224143], [2.389508639552551, 48.87688581846481], [2.3894979043701072, 48.87689622923619], [2.389371528410493, 48.87691296155633], [2.389247134779498, 48.876928768552325], [2.389236202185312, 48.87693880057384], [2.389263785590621, 48.87707373845944], [2.389291262860112, 48.877207158608456], [2.389318846560741, 48.87734209554922], [2.3893463241022133, 48.877475516552416], [2.389373908087622, 48.87761045344767], [2.389401387285792, 48.8777438735134], [2.389428971545446, 48.877878811262384], [2.389456449662733, 48.87801223127604], [2.389456701052521, 48.87801311839859], [2.389501007572497, 48.87813548240633], [2.389545599271082, 48.878257730024934], [2.389589907571452, 48.878380093979565], [2.389634499677499, 48.87850234243723], [2.389678808405379, 48.87862470543248], [2.389723400929636, 48.878746953829896], [2.389767710074493, 48.87886931676512], [2.389812303016865, 48.87899156510226], [2.389812893373513, 48.87900658151865], [2.389837088252218, 48.879010477523785], [2.389864212305096, 48.879009688556515], [2.389909659975249, 48.879009069407324], [2.3899219261692473, 48.87900359564448], [2.389992286124628, 48.87889440235002], [2.390062913932645, 48.87878513212789], [2.390133273297296, 48.87867593872896], [2.390203899139284, 48.87856666929432], [2.390274257913219, 48.87845747579086], [2.3903448845371322, 48.87834820535907], [2.390358003889788, 48.87834274758529], [2.390592922750675, 48.878349308175174], [2.390836634738119, 48.878356810578914], [2.390850826371245, 48.87834686965177], [2.39083019820233, 48.87821991058764], [2.390806573165674, 48.878078382393966], [2.390806568090735, 48.87807834999224], [2.390785940125541, 48.87795139178885], [2.390765887257581, 48.877827147974735], [2.390745259491042, 48.877700189735336], [2.390725206816947, 48.877575945886086], [2.390704579259482, 48.877448986711535], [2.390684526768625, 48.877324743726376], [2.390663899409914, 48.8771977845159], [2.390643847112711, 48.87707354149566], [2.390623219952649, 48.87694658224921], [2.3906031678493003, 48.876822339193815], [2.390618564852727, 48.87681247636482], [2.390816031043674, 48.87683021614893], [2.391008963367176, 48.87684741632573], [2.391206429834072, 48.876865154566055], [2.3913993637792172, 48.8768823541201], [2.391596829137626, 48.87690009260823], [2.391789763341214, 48.87691729153253], [2.391987228965041, 48.87693502937616], [2.39218016342696, 48.87695222767075], [2.392377629316195, 48.87696996486983], [2.392570564046824, 48.876987161635405], [2.392599390387952, 48.87699077841843], [2.392605667760843, 48.87698633519818], [2.392612746620752, 48.87698132676768], [2.392605937176004, 48.876963233652454], [2.392594511454761, 48.87686876481094], [2.392583547287828, 48.876773069815684], [2.392572121638525, 48.87667860185505], [2.39256115891605, 48.876582906848164], [2.3925605609343013, 48.87658087042585], [2.392507117405995, 48.876467988557025], [2.392454117173684, 48.876357565874976], [2.392401115792332, 48.876247144050744], [2.392347672952028, 48.876134262076576], [2.392294672034073, 48.8760238392836], [2.392241229653592, 48.87591095723905], [2.3921882291779433, 48.87580053527585], [2.392134787257279, 48.87568765316091], [2.392137225779367, 48.87567929725881], [2.392267163707583, 48.875573949127876], [2.392410817484746, 48.875457114946286], [2.392406264069194, 48.87542505672191], [2.3923899140188762, 48.87542096091315], [2.392336378841783, 48.87542428110066], [2.392288921972566, 48.87542770137035], [2.392278871731363, 48.87542587326801], [2.3922576295424562, 48.8754296235608], [2.392162794924686, 48.87543645812543], [2.391940893796665, 48.87544971059831], [2.391798602169847, 48.87545996498707], [2.391796780056682, 48.875460015085324], [2.391623085286955, 48.87545714853366], [2.39139666573668, 48.87545451641078], [2.391222970996803, 48.875451650177794], [2.390996550127395, 48.875449017291224], [2.390822856801756, 48.87544614958533], [2.39059643597649, 48.87544351594195], [2.3904227413278702, 48.87544064764857], [2.390419574882999, 48.875440348234584], [2.390261606765599, 48.87541423200613], [2.39010801448709, 48.875387260113655], [2.389950046686924, 48.875361143472794], [2.38979645336295, 48.875334171172376], [2.389792998786232, 48.87533321286088], [2.389727439965252, 48.87530752377443], [2.389653658167048, 48.87527313305178], [2.389641997276682, 48.87527228488151]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 32, "roussel_fabien": 31.0, "nb_emargement": 1258.0, "nb_procuration": 91.0, "nb_vote_blanc": 11.0, "jadot_yannick": 145.0, "le_pen_marine": 38.0, "nb_exprime": 1244.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1567.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1258, "quartier_bv": "75", "geo_point_2d": [48.87671312764681, 2.3906182162877436], "melenchon_jean_luc": 559.0, "poutou_philippe": 14.0, "macron_emmanuel": 299.0}, "geometry": {"type": "Point", "coordinates": [2.3906182162877436, 48.87671312764681]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5974fb12462050c086081af686a88004edfe9738", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 92, "zemmour_eric": 71.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-50", "geo_shape": {"coordinates": [[[2.346488859041595, 48.8280878850493], [2.34650591546788, 48.82807274104612], [2.346624243947016, 48.827974203627186], [2.346744999148243, 48.827872532428046], [2.346863326709824, 48.82777399565428], [2.34698408098118, 48.8276723241956], [2.346991055984882, 48.82766922616084], [2.347167842784, 48.82763586579309], [2.347340316862361, 48.82760271096879], [2.347517103212441, 48.82756935008274], [2.347689576848642, 48.82753619475282], [2.347862051627574, 48.82750303918056], [2.348038837305814, 48.827469677520334], [2.348211310280476, 48.82743652143502], [2.348388095509664, 48.82740315925656], [2.348560568042153, 48.82737000266559], [2.34873735283352, 48.82733663906956], [2.348752284550271, 48.8273401568948], [2.348873548408247, 48.82745546411798], [2.3489974446235, 48.82757305375616], [2.349016218941386, 48.82757538550345], [2.349182083496481, 48.82750187487329], [2.349342113757268, 48.82743150166587], [2.349507977395093, 48.8273579905743], [2.349668008136522, 48.82728761692913], [2.349833870857077, 48.82721410537617], [2.349993899354855, 48.827143731278504], [2.350153928782597, 48.82707335696973], [2.350319790136356, 48.82699984472881], [2.350479818682541, 48.82692946997493], [2.350645679119136, 48.826855957272606], [2.350658653122514, 48.826838281245315], [2.35063432673405, 48.82682721095512], [2.350634241316227, 48.82682717901317], [2.350458281779789, 48.82676240016543], [2.350280398471615, 48.826696705829335], [2.350104439826286, 48.826631925554075], [2.349926558771219, 48.82656623069147], [2.349750601005899, 48.82650144988809], [2.349572719479785, 48.82643575448411], [2.349396762583354, 48.826370974051926], [2.349218883310237, 48.82630527812141], [2.349042927305034, 48.8262404962618], [2.348865047560879, 48.82617479978995], [2.348689092424452, 48.8261100183015], [2.348511213571427, 48.82604432129571], [2.348335259326143, 48.82597953837983], [2.348157382726211, 48.82591384084756], [2.34815081312506, 48.82590382196164], [2.348166252501303, 48.82585711246832], [2.348191932636653, 48.82578891422789], [2.348207906184449, 48.825782276652866], [2.3484065239957133, 48.82580935459311], [2.34860252419735, 48.82583608967124], [2.348801143780625, 48.82586316696219], [2.348997143024957, 48.82588990138488], [2.349195763006845, 48.825916978918514], [2.349391762655821, 48.82594371269315], [2.349590383058874, 48.825970788670745], [2.349786383112482, 48.82599752179736], [2.349791932497693, 48.825997516894105], [2.3500003861706222, 48.82597272647165], [2.350235369403263, 48.825940212092064], [2.350243694828018, 48.82592621536838], [2.350126281621263, 48.82581664043932], [2.350015507057588, 48.82571303285072], [2.349898094810499, 48.82560345767682], [2.349787319779859, 48.825499850749054], [2.349669908492428, 48.82539027533031], [2.349559135741544, 48.825286667279606], [2.349448363430819, 48.82518305911672], [2.349330952195999, 48.8250734842262], [2.34931631911245, 48.82506998877334], [2.349108497106243, 48.825106634330794], [2.348899484765688, 48.82514368046431], [2.348691662184105, 48.82518032439571], [2.3484826478899192, 48.825217369790856], [2.348274824710402, 48.82525401389476], [2.348065809824627, 48.82529105855892], [2.347857987431609, 48.82532770104413], [2.347648971954361, 48.82536474497736], [2.3474411476013692, 48.82540138762767], [2.34723213153245, 48.82543843082989], [2.347216489006644, 48.82543385935261], [2.347123010962393, 48.82531388483195], [2.347036586672727, 48.82520323840255], [2.346950162761247, 48.82509259100047], [2.346856685941705, 48.82497261623518], [2.346855427079506, 48.82496676700565], [2.346834534990304, 48.82495862235844], [2.346676444450502, 48.82494410173682], [2.346509571292598, 48.824929460962004], [2.34650232061075, 48.82492502158622], [2.34648103449653, 48.824926909974295], [2.346438416188609, 48.82492317039189], [2.346406883677866, 48.82492098165199], [2.346403517170463, 48.8249203894497], [2.346227973228578, 48.82487292668322], [2.346047802349806, 48.82482406770188], [2.345872259067333, 48.82477660350987], [2.345692088854766, 48.82472774398847], [2.345516546209143, 48.82468028016952], [2.345336376662782, 48.82463142010805], [2.345313570350664, 48.82463299687585], [2.345306662183806, 48.82464533179287], [2.345287634803928, 48.8247895057597], [2.345269347886698, 48.824932736715276], [2.345250320298748, 48.825076910639275], [2.345232031816265, 48.825220141544996], [2.345213004020136, 48.82536431542619], [2.345194716685074, 48.82550754719634], [2.345195686909104, 48.82551174540378], [2.345279494280854, 48.825646441649845], [2.345358996698006, 48.82576983247215], [2.345359946474548, 48.82577208071671], [2.345389299546872, 48.82590763804419], [2.345418502632679, 48.82604376203276], [2.34544785601021, 48.82617931931305], [2.345477059401081, 48.82631544325438], [2.345506411721749, 48.82645100048003], [2.345535615417786, 48.82658712437411], [2.345564969405639, 48.82672268156004], [2.345594173406748, 48.826858805406836], [2.345623526337735, 48.82699436253808], [2.345652730643917, 48.827130486337666], [2.345682085242214, 48.827266043429184], [2.34571128985348, 48.8274021671815], [2.345740644757006, 48.82753772422581], [2.345769848311252, 48.827673847923435], [2.345799203520011, 48.82780940492053], [2.345828408741451, 48.82794552857834], [2.3458379336105812, 48.827952871910774], [2.345995764720016, 48.82798454770923], [2.346149877990746, 48.82801594754861], [2.346307709480564, 48.82804762293359], [2.346461824499017, 48.82807902147733], [2.346488859041595, 48.8280878850493]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 50, "roussel_fabien": 28.0, "nb_emargement": 1407.0, "nb_procuration": 83.0, "nb_vote_blanc": 16.0, "jadot_yannick": 154.0, "le_pen_marine": 67.0, "nb_exprime": 1387.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1693.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1407, "quartier_bv": "51", "geo_point_2d": [48.82635171863679, 2.3474632900923225], "melenchon_jean_luc": 456.0, "poutou_philippe": 11.0, "macron_emmanuel": 441.0}, "geometry": {"type": "Point", "coordinates": [2.3474632900923225, 48.82635171863679]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c52c3c72ad1aba4bf298058df6788100550d3ee4", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 155, "zemmour_eric": 216.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "16-7", "geo_shape": {"coordinates": [[[2.279679494323125, 48.859912634764996], [2.27966583936113, 48.85991589817435], [2.2796246083765173, 48.85990668430584], [2.279456276763666, 48.85986107542626], [2.2792843701739782, 48.85982266300499], [2.279276637062114, 48.85981827703996], [2.279181746246051, 48.85969727187198], [2.279084788094012, 48.85957834066458], [2.27898989952343, 48.85945733532651], [2.278892942255721, 48.85933840393795], [2.278798054567673, 48.8592173984216], [2.278701098184385, 48.85909846685189], [2.278691517083685, 48.859093877244106], [2.278517351828688, 48.859073120616884], [2.278338937803353, 48.85905072106958], [2.2783309422257743, 48.85904758536062], [2.278215871825715, 48.858954902473045], [2.278082560571285, 48.85885161123342], [2.27806271593236, 48.85885097348476], [2.277945814758602, 48.858925470578164], [2.277833258802648, 48.85899778315856], [2.277716356958841, 48.859072280917275], [2.277603801730186, 48.85914459328052], [2.277588969906487, 48.859146429266474], [2.277352247028806, 48.85908016446507], [2.277146246839748, 48.85901999444593], [2.277138152204567, 48.85901329570674], [2.277105110980159, 48.85889113525216], [2.27707275322917, 48.85877120121384], [2.277039712311523, 48.858649040714546], [2.277007356211846, 48.858529107539894], [2.276974315601055, 48.85840694699588], [2.276941958451837, 48.858287012869845], [2.276908918147898, 48.85816485228117], [2.276876562649972, 48.858044919018845], [2.276864281835512, 48.858009297702644], [2.276858801499388, 48.85800800638359], [2.276815665825088, 48.858012727245004], [2.276605594223363, 48.858030961873574], [2.276400742018455, 48.85804708542565], [2.276190670132996, 48.85806531932525], [2.275985817664508, 48.85808144216654], [2.275780965056742, 48.85809756555619], [2.275570894113858, 48.85811579837526], [2.275366041255127, 48.85813192015487], [2.275155968665544, 48.85815015223671], [2.275154626489518, 48.8581502241496], [2.275051057058374, 48.85815240904524], [2.274914337877941, 48.85815924142819], [2.274891999412555, 48.858166330609855], [2.274904595323255, 48.85820693288387], [2.2749331838214832, 48.85834013996409], [2.274961327337388, 48.858471738971765], [2.274989469619941, 48.858603338848205], [2.275018058552773, 48.85873654586059], [2.275046201134162, 48.85886814479303], [2.275074791720252, 48.85900135176828], [2.27510293457546, 48.859132951555274], [2.2751315241015, 48.85926615757764], [2.275159667243039, 48.85939775731984], [2.275188258409849, 48.85953096420441], [2.275185508149231, 48.85955092854779], [2.2752133984679253, 48.85955924204397], [2.275217180243981, 48.85955908957426], [2.275405610211283, 48.859533858843726], [2.275595853946271, 48.85950835010321], [2.275784282196263, 48.85948311786773], [2.275974525560679, 48.859457608524075], [2.276162954806595, 48.85943237569946], [2.276353196437402, 48.85940686574442], [2.27654162531641, 48.85938163232239], [2.276731867939451, 48.85935612177245], [2.276748004862289, 48.85936337368249], [2.276782356610116, 48.8594920264659], [2.276815235985491, 48.85961737508457], [2.276849588079282, 48.85974602691993], [2.276882467776596, 48.859871375491444], [2.276916821566812, 48.860000027286304], [2.276949701586278, 48.86012537581065], [2.276984054334568, 48.86025402844776], [2.277016934675983, 48.860379376924925], [2.277049815175713, 48.86050472537886], [2.277084168433821, 48.86063337704395], [2.277086678917625, 48.860637226161145], [2.277209639166185, 48.86074581416903], [2.277331916016141, 48.860852805152035], [2.277454875909174, 48.860961393777885], [2.277577153768699, 48.86106838448953], [2.27770011469422, 48.861176971942974], [2.277822393563322, 48.86128396238323], [2.277945355496202, 48.86139255046287], [2.278067635374893, 48.861499540631755], [2.278190599703153, 48.86160812754724], [2.278312880591444, 48.86171511744472], [2.278331536306712, 48.86173642323023], [2.278347513291961, 48.86173718419817], [2.278501559655044, 48.86165207449648], [2.27865436153999, 48.86156791220613], [2.278808408264284, 48.86148280210469], [2.27896120914464, 48.86139864030897], [2.279115253516534, 48.86131352889206], [2.279268053404757, 48.86122936669172], [2.279422098125523, 48.86114425577439], [2.279574897034054, 48.86106009227012], [2.279728939389993, 48.86097498093659], [2.279881737293967, 48.86089081792701], [2.279901158914207, 48.86089213903036], [2.279981016588071, 48.860958682536044], [2.280039358053057, 48.86101224566164], [2.280059703190456, 48.8610315683823], [2.28009633702453, 48.86102030220599], [2.280242636875329, 48.86093613202838], [2.280383841224991, 48.860855509560615], [2.280530140148568, 48.860771339019024], [2.280671342231329, 48.86069071709114], [2.28081254525246, 48.86061009409968], [2.280958842794313, 48.86052592301538], [2.280963406504748, 48.860520276405616], [2.28099032265595, 48.8603802187795], [2.281015758632076, 48.86024320644794], [2.281025671776726, 48.86021685104352], [2.280987077825877, 48.860210005306996], [2.280815167605881, 48.86017159418935], [2.280603627723643, 48.86012417767793], [2.280431719432381, 48.860085766014656], [2.280220180260021, 48.86003834792248], [2.280048271159392, 48.85999993659651], [2.279836732684501, 48.85995251782287], [2.279706056522634, 48.8599233189066], [2.279679494323125, 48.859912634764996]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 7, "roussel_fabien": 3.0, "nb_emargement": 1126.0, "nb_procuration": 75.0, "nb_vote_blanc": 6.0, "jadot_yannick": 22.0, "le_pen_marine": 46.0, "nb_exprime": 1120.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1424.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1127, "quartier_bv": "62", "geo_point_2d": [48.85982746970532, 2.2778142011823346], "melenchon_jean_luc": 80.0, "poutou_philippe": 6.0, "macron_emmanuel": 555.0}, "geometry": {"type": "Point", "coordinates": [2.2778142011823346, 48.85982746970532]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d94dd0d8b77d24957fda915fbd00b1dcf20438a8", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 70, "zemmour_eric": 67.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-34", "geo_shape": {"coordinates": [[[2.326066219950201, 48.88897670486859], [2.32599233078743, 48.888987512577586], [2.325912908994304, 48.88901167827913], [2.325818330325154, 48.88904045577595], [2.325810673611775, 48.88905038980196], [2.325854632659544, 48.88919489567957], [2.325898585447164, 48.889339377203584], [2.325942546346597, 48.889483883018585], [2.325986498258369, 48.88962836446461], [2.326030459634124, 48.88977287110856], [2.326074413409139, 48.88991735159272], [2.326066883952658, 48.889927246773475], [2.32591930639627, 48.88997338520896], [2.325707385374776, 48.89003963971055], [2.325559807169643, 48.89008577859753], [2.325347883869643, 48.8901520324484], [2.325200305039063, 48.89019816998834], [2.325184245591218, 48.89019600114215], [2.325061213511003, 48.890104229340096], [2.324938631654561, 48.89001279358987], [2.324815599076395, 48.88992102151241], [2.324693018070901, 48.88982958639472], [2.324569987722239, 48.8897378140573], [2.324447407591007, 48.88964637777369], [2.32432437673272, 48.889554606060166], [2.324201798827802, 48.8894631695175], [2.324078768846947, 48.88937139663705], [2.323956190429222, 48.8892799607193], [2.323833161314124, 48.889188187571186], [2.323710585134366, 48.88909675049518], [2.32358755688502, 48.889004977079416], [2.323464980192441, 48.88891354062829], [2.323451647122941, 48.888906880418205], [2.323437828852123, 48.888910378068275], [2.323311391582655, 48.88898098386845], [2.323153085553654, 48.88906938605112], [2.323026647511983, 48.889139991540425], [2.322868341879752, 48.8892283933416], [2.322741903065877, 48.88929899851998], [2.322652521425378, 48.88934891012841], [2.322652224423197, 48.88935056410989], [2.322668737693305, 48.8893634234722], [2.322793857806979, 48.88945976742749], [2.322918952719042, 48.8895560922126], [2.323044072383234, 48.88965243678108], [2.323169168220947, 48.88974876128788], [2.323294288822768, 48.88984510467875], [2.323419386949969, 48.889941428914916], [2.323544508466153, 48.89003777292669], [2.323669606155392, 48.89013409687688], [2.323788005401518, 48.89022526299223], [2.323907683822281, 48.89031741287162], [2.324026085265829, 48.89040857874404], [2.324145763165431, 48.89050072836233], [2.324264165442671, 48.890591893984165], [2.324383844185061, 48.89068404334913], [2.324502247295998, 48.89077520872031], [2.324621926881081, 48.89086735783194], [2.324740330825724, 48.89095852295245], [2.324860011253403, 48.891050671810724], [2.324866449401928, 48.891061861547236], [2.324886171597829, 48.891062301894856], [2.325109076926695, 48.89103496255812], [2.32533130995623, 48.8910077044551], [2.325341093043207, 48.891008944886224], [2.325495295477467, 48.891073243925256], [2.325653205640109, 48.891139088896175], [2.325807410208983, 48.891203387533324], [2.325965321172654, 48.8912692311856], [2.326119525148515, 48.89133352940552], [2.326277436889928, 48.89139937353767], [2.326431643000515, 48.8914636713557], [2.32658955554295, 48.89152951416917], [2.326743761060619, 48.89159381156999], [2.326901674392332, 48.89165965396403], [2.326954827597477, 48.89165175807972], [2.326956770044336, 48.89163907232689], [2.326943566781413, 48.89159928212378], [2.326898823132281, 48.8914678145942], [2.32685861502804, 48.89134664372127], [2.326846137937533, 48.89130998273349], [2.326850767885342, 48.89129808550609], [2.326833116065812, 48.89127790613904], [2.326800849982268, 48.89118309952895], [2.326755844130099, 48.89104570206415], [2.326711101430649, 48.89091423439809], [2.326666097411453, 48.890776836873556], [2.326621355169638, 48.89064536914175], [2.326576350256, 48.89050797154215], [2.326531609835457, 48.890376503752265], [2.326486605391022, 48.89023910608527], [2.326441864064458, 48.89010763822199], [2.326396861452852, 48.88997024049527], [2.326352120583902, 48.88983877256624], [2.326307117089387, 48.889701373865165], [2.326275458614029, 48.889608347454605], [2.3262755520575, 48.88958204806863], [2.326266449181781, 48.88957463316318], [2.326253367260922, 48.8895361915768], [2.326212279135488, 48.88940864087591], [2.326167540578836, 48.88927717281831], [2.326126452856392, 48.8891496229571], [2.326081713375274, 48.889018154828754], [2.326069893775289, 48.88898146230283], [2.326066219950201, 48.88897670486859]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 34, "roussel_fabien": 16.0, "nb_emargement": 1222.0, "nb_procuration": 57.0, "nb_vote_blanc": 22.0, "jadot_yannick": 132.0, "le_pen_marine": 44.0, "nb_exprime": 1196.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1488.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1224, "quartier_bv": "68", "geo_point_2d": [48.89024143127485, 2.3250321797227618], "melenchon_jean_luc": 325.0, "poutou_philippe": 3.0, "macron_emmanuel": 482.0}, "geometry": {"type": "Point", "coordinates": [2.3250321797227618, 48.89024143127485]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8855e0e4f285aed1b62522546ed8c7eca47f4b14", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 27, "zemmour_eric": 26.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "20-8", "geo_shape": {"coordinates": [[[2.394535606849802, 48.86995861662335], [2.394570614034212, 48.869968147698216], [2.394749980902696, 48.869974887921046], [2.394919582642749, 48.869981630671916], [2.395098948239593, 48.86998837036486], [2.395268550058272, 48.86999511352045], [2.395270756149163, 48.86999532162093], [2.395489659060851, 48.870022661920274], [2.395738105807134, 48.870059988809146], [2.395772435449023, 48.87007941600362], [2.395793226199165, 48.870075354330105], [2.395804184519731, 48.87007321346693], [2.395811275062916, 48.87003547353623], [2.395907688636342, 48.869952489166], [2.396038328389218, 48.869844210909214], [2.396149134865005, 48.869752975598374], [2.3962797736052153, 48.86964469795784], [2.396390579233619, 48.869553462407], [2.396521216971601, 48.869445184483375], [2.396632021752835, 48.869353948692584], [2.39676265986221, 48.869245669593504], [2.39687346378566, 48.869154434462025], [2.39700409952962, 48.869046155073], [2.397114902605919, 48.86895491970155], [2.397115120036987, 48.86895474362731], [2.397236502447584, 48.86885918614994], [2.397355271179268, 48.86876538707793], [2.3974766527081, 48.86866982934059], [2.397595420565332, 48.86857603091352], [2.397716801212308, 48.8684804729163], [2.397835568215794, 48.8683866733356], [2.39795694798112, 48.86829111507852], [2.398075715473146, 48.868197316149555], [2.398076706022555, 48.868196535109995], [2.3980796570780543, 48.868194204478336], [2.398080204994128, 48.868193741376906], [2.398210263962695, 48.86807466205175], [2.398340763425178, 48.86795669637124], [2.398470821196024, 48.86783761763669], [2.398601319474642, 48.867719651646816], [2.398731817162328, 48.86760168550203], [2.398861873152836, 48.86748260630439], [2.398875752801482, 48.86747048638537], [2.398870190380978, 48.86746025455788], [2.398696556077831, 48.86738157072025], [2.398527332762103, 48.86730508698671], [2.3983536994940162, 48.86722640264067], [2.398184475812195, 48.86714991930407], [2.398010843589659, 48.86707123355037], [2.397841622278416, 48.866994749725144], [2.397667991080442, 48.866916064362286], [2.397498769423889, 48.86683957913547], [2.397329549616976, 48.86676309457027], [2.397155919974988, 48.86668440754878], [2.39711317200064, 48.86667107446772], [2.397098797603249, 48.86668799866644], [2.397029881528669, 48.86677668514498], [2.396945790620318, 48.866884524781035], [2.396859757597232, 48.86699523964093], [2.396775665994321, 48.86710307823687], [2.396689632248825, 48.86721379295261], [2.396605538567373, 48.86732163230014], [2.396519504109669, 48.86743234597239], [2.396435411086378, 48.867540185185966], [2.396419385654951, 48.86754908516415], [2.396416865772922, 48.867562319709464], [2.396416792401658, 48.86756241646802], [2.3963328466289022, 48.867671040564446], [2.39623968370223, 48.867788964020086], [2.396155737205518, 48.86789758707076], [2.396062574835928, 48.86801551037126], [2.395978627604833, 48.86812413327548], [2.395885464429159, 48.86824205641399], [2.3958015164636732, 48.868350679171755], [2.395708351118725, 48.86846860214131], [2.395624402418838, 48.86857722475261], [2.395531237630961, 48.86869514756708], [2.395447288196663, 48.868803770031874], [2.395447138793616, 48.86880395723874], [2.395353973198954, 48.86892187989104], [2.395267261908097, 48.869027847805015], [2.39517409550581, 48.8691457702934], [2.395087383476346, 48.86925173805555], [2.394994214903219, 48.86936966037321], [2.394907502135238, 48.869475627983576], [2.394814334117665, 48.869593550144224], [2.394727620610958, 48.869699517602825], [2.394640906741, 48.86980548588771], [2.394547737529938, 48.86992340780565], [2.394535606849802, 48.86995861662335]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 8, "roussel_fabien": 24.0, "nb_emargement": 1133.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 121.0, "le_pen_marine": 47.0, "nb_exprime": 1122.0, "nb_vote_nul": 0.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1336.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1134, "quartier_bv": "79", "geo_point_2d": [48.86837992085987, 2.3967202272658823], "melenchon_jean_luc": 502.0, "poutou_philippe": 7.0, "macron_emmanuel": 310.0}, "geometry": {"type": "Point", "coordinates": [2.3967202272658823, 48.86837992085987]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "72220f3d4c7adf7c43db2a8b2bec0eecaf50e2e0", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 131, "zemmour_eric": 171.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-3", "geo_shape": {"coordinates": [[[2.319948405697291, 48.854969219236025], [2.31994162446951, 48.854943386278364], [2.319895831306559, 48.85482194862821], [2.319847915732324, 48.85470118419105], [2.319802124363426, 48.8545797464863], [2.319754209229191, 48.85445898198527], [2.319708416928728, 48.854337544210495], [2.3196605035853413, 48.85421678055264], [2.319614711716212, 48.854095342715496], [2.319566797461658, 48.853974578086806], [2.319521006023661, 48.85385314018733], [2.319473093560129, 48.853732376401815], [2.319427302553352, 48.85361093844003], [2.319379389178556, 48.85349017368362], [2.319333599965772, 48.85336873566727], [2.319285687019198, 48.85324797174637], [2.31923989687485, 48.85312653365996], [2.319191985742552, 48.85300576878361], [2.319146196029409, 48.852884330634886], [2.319098283974305, 48.85276356568704], [2.319097860311964, 48.85276177895093], [2.31908720738294, 48.85263305534488], [2.319071025761944, 48.85246916685204], [2.319066615565198, 48.85241588179039], [2.319070834846115, 48.85239992781263], [2.319063897122823, 48.852389153596185], [2.319057654535441, 48.85231371411428], [2.319044130678706, 48.85215659847074], [2.319033478006128, 48.85202787478988], [2.31901995564735, 48.85187076001025], [2.319009303092924, 48.85174203629416], [2.319009239400495, 48.85171479167096], [2.31897393532483, 48.851702423312865], [2.318766785562289, 48.85170848660506], [2.318569274027082, 48.85171440747148], [2.318362122818855, 48.85172046915597], [2.318164612554985, 48.851726389362106], [2.317957461240287, 48.85173245124527], [2.3177599495223022, 48.851738370775614], [2.317552799475634, 48.851744431965884], [2.317355287666274, 48.851750350828176], [2.317157775812047, 48.85175626936441], [2.316950624261462, 48.85176232950428], [2.316753112327666, 48.851768246473206], [2.316545962045142, 48.85177430592019], [2.316348450008209, 48.85178022312037], [2.316141298268293, 48.85178628185891], [2.315943787502751, 48.85179219839883], [2.315736635668185, 48.85179825643675], [2.3155391234485823, 48.851804172300845], [2.315331972893821, 48.85181022874661], [2.315134460583005, 48.851816143942656], [2.31492730855907, 48.851822200579285], [2.314819471782131, 48.85182542965314], [2.314804036305077, 48.85181840270848], [2.314778067092298, 48.85181794820664], [2.314688391477854, 48.85182063362969], [2.314591634380797, 48.851816296698736], [2.314521026956872, 48.851819105615704], [2.314504352179108, 48.85183967644666], [2.314519177604395, 48.85196735428587], [2.314536167535872, 48.85209780823685], [2.314550991749809, 48.85222548603468], [2.314567981856924, 48.85235593905159], [2.314582807584998, 48.85248361682369], [2.314599797844098, 48.85261407070505], [2.314614622360814, 48.85274174843572], [2.314631612783728, 48.852872202282356], [2.314646438814598, 48.85299987998723], [2.314663429413158, 48.85313033289974], [2.3146782542326623, 48.85325801056326], [2.314695246345884, 48.85338846434803], [2.314710071316887, 48.85351614197795], [2.314727062231162, 48.85364659572013], [2.314714635809828, 48.853656326645755], [2.314515849938545, 48.853667450728295], [2.314321015501553, 48.853679047702606], [2.314122229459461, 48.85369017113097], [2.313927394861858, 48.853701766564875], [2.31372860863723, 48.853712890238384], [2.313533773866988, 48.8537244850311], [2.31333498748362, 48.853735607151215], [2.313140152528999, 48.85374720220203], [2.31294136461217, 48.853758323660145], [2.312746530859669, 48.85376991717841], [2.312547742772175, 48.85378103798236], [2.312352908835302, 48.85379263175869], [2.312154120577149, 48.8538037519085], [2.311959286479645, 48.85381534414443], [2.31176049803897, 48.85382646453937], [2.311565663768976, 48.85383805613412], [2.31136687516954, 48.8538491749756], [2.311172039352398, 48.85386076682065], [2.310973251945115, 48.85387188501585], [2.310778415967391, 48.85388347532044], [2.310579628389493, 48.85389459286145], [2.31038479222741, 48.85390618342418], [2.310186004478902, 48.853917300311046], [2.309991168156269, 48.85392888933331], [2.309792380225253, 48.853940006465315], [2.309597543730177, 48.853951594846414], [2.309561137163643, 48.85396406032071], [2.309561408545262, 48.854007451384405], [2.309575267900573, 48.854134760738546], [2.309589095085395, 48.8542629602541], [2.309602954576209, 48.85439026957575], [2.309616781896952, 48.854518469058625], [2.309630641523373, 48.85464577834781], [2.309644468980038, 48.85477397779802], [2.309658327379256, 48.85490128704685], [2.309672154971842, 48.855029486464375], [2.30968601486948, 48.85515679568857], [2.309699842597993, 48.85528499507342], [2.309713702631243, 48.85541230426515], [2.309727530507598, 48.855540502718], [2.309741390664549, 48.855667812776524], [2.309755218676834, 48.8557960111967], [2.309769077606666, 48.855923321214874], [2.309782905754778, 48.85605151960236], [2.309796766183063, 48.856178829595905], [2.309810594467212, 48.85630702795067], [2.309824455031015, 48.85643433791172], [2.309838283451101, 48.85656253623381], [2.309852144150529, 48.856689846162354], [2.309865972706551, 48.856818044451735], [2.309879832178739, 48.85694535433993], [2.309893660870698, 48.8570735525966], [2.3098850195683758, 48.8571021741938], [2.309894898663411, 48.85711356393812], [2.309908727425173, 48.85724176307294], [2.30992170718797, 48.85737829341291], [2.309935536085955, 48.85750649251403], [2.309948515984948, 48.857643022818515], [2.309962345019057, 48.85777122188596], [2.309975325054249, 48.85790775215498], [2.309989154224686, 48.858035951188775], [2.310002134384169, 48.858172482321606], [2.310015963702744, 48.85830068042241], [2.3100289439983293, 48.858437211519764], [2.310042773453135, 48.8585654095869], [2.3100557552479373, 48.85870194065661], [2.31006958483898, 48.85883013869005], [2.310082565406982, 48.85896666971648], [2.310096395134258, 48.85909486771623], [2.31010937583857, 48.85923139870713], [2.310123205702084, 48.8593595966732], [2.310136186542608, 48.85949612762861], [2.310150016530352, 48.859624326460306], [2.3101629975189972, 48.85976085648091], [2.310172908727814, 48.85985273302012], [2.310176827643084, 48.8598890552789], [2.31015123714295, 48.85990159402919], [2.310188741706864, 48.8599155217517], [2.310194036892395, 48.85993385859532], [2.310269801840738, 48.85994076704082], [2.3104492420543012, 48.85993937288083], [2.310619598249547, 48.85993948200161], [2.310789954433711, 48.85993959177914], [2.310969394629201, 48.8599381968392], [2.311139750809796, 48.859938306118806], [2.311319190991591, 48.859936910654376], [2.311329941085355, 48.85993330765812], [2.311454664383286, 48.85982338431176], [2.3115801422764832, 48.85971325382067], [2.311704864519764, 48.85960333019177], [2.31183033997932, 48.859493200307924], [2.311955061179944, 48.85938327549715], [2.312080536943621, 48.859273145336985], [2.312205257077639, 48.85916322114292], [2.312330730431464, 48.85905308979148], [2.312340821554165, 48.85904951619225], [2.312524208119573, 48.85904237226562], [2.312699201217916, 48.859034819210656], [2.312882587682555, 48.85902767473469], [2.313057580667721, 48.85902012205487], [2.313232574976927, 48.85901256822765], [2.313415959927184, 48.85900542292638], [2.313590954134957, 48.85899786857502], [2.313774340347243, 48.8589907227323], [2.313785935813379, 48.85899420856515], [2.313896940417064, 48.85908918087407], [2.314011228690557, 48.859186136079444], [2.314122234101979, 48.8592811090622], [2.314236523215722, 48.85937806403568], [2.314347529458569, 48.85947303589372], [2.314461819412671, 48.859569990635215], [2.3145728251003392, 48.85966496315939], [2.314687117257542, 48.85976191767676], [2.314798123776738, 48.85985688907617], [2.314912416774217, 48.859953843361616], [2.31493393209113, 48.859953845118596], [2.315053783037426, 48.85985222536928], [2.315184136574361, 48.859740263688415], [2.315303986541342, 48.85963864366895], [2.315434340369181, 48.85952668170177], [2.315554189356853, 48.85942506141216], [2.315684542112563, 48.8593130991509], [2.315804390120936, 48.85921147859117], [2.315934740453616, 48.85909951512874], [2.316054587470896, 48.85899789519813], [2.316184938094489, 48.85888593144941], [2.316276662045509, 48.85880815700005], [2.31629025791878, 48.85878260582229], [2.31625152122424, 48.858768305126965], [2.316113935688815, 48.858684681317506], [2.315979677477908, 48.858604288849264], [2.315842094163001, 48.858520665621974], [2.3157078354313683, 48.85844027282908], [2.315573578465038, 48.858359880786786], [2.315435996459009, 48.85827625617493], [2.3154316817344602, 48.85827061862761], [2.31540495693566, 48.85810927822537], [2.315389444641391, 48.85796127819877], [2.315390523311693, 48.85795667158528], [2.3154735672916162, 48.85783243148715], [2.315555235174187, 48.857710094575644], [2.315638278368253, 48.85758585433562], [2.315719946840482, 48.85746351729236], [2.315802987874116, 48.857339277801884], [2.315884655584936, 48.85721693971974], [2.315967697195819, 48.85709270009518], [2.316049362770558, 48.85697036186569], [2.316131029312865, 48.856848024474004], [2.316214069760025, 48.856723783737905], [2.316295734166279, 48.8566014461989], [2.316378773827734, 48.85647720532094], [2.316460438823663, 48.856354867650175], [2.316543476336671, 48.85623062662249], [2.316625140559429, 48.856108288812145], [2.316708178649498, 48.8559840476504], [2.316789840736253, 48.85586170969271], [2.316872878040646, 48.85573746838907], [2.316880536292654, 48.85573268347088], [2.317070444417328, 48.85568539116039], [2.31725857221477, 48.855638412158385], [2.31744848101557, 48.85559111925171], [2.317636608119921, 48.85554414055065], [2.317826516234009, 48.85549684704002], [2.318014642669023, 48.85544986684137], [2.318204548733566, 48.855402572718994], [2.318392674487256, 48.855355591922], [2.318582581228004, 48.85530829720347], [2.318770706300465, 48.855261315808185], [2.318960610991561, 48.85521402047788], [2.319148735371141, 48.85516703938358], [2.319338640738327, 48.85511974345713], [2.319526764448321, 48.85507276086519], [2.319714887819063, 48.85502577797561], [2.319904790794807, 48.854978481136854], [2.319948405697291, 48.854969219236025]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 3, "roussel_fabien": 14.0, "nb_emargement": 1071.0, "nb_procuration": 72.0, "nb_vote_blanc": 8.0, "jadot_yannick": 58.0, "le_pen_marine": 37.0, "nb_exprime": 1059.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1330.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1070, "quartier_bv": "26", "geo_point_2d": [48.855643095022124, 2.314244289070314], "melenchon_jean_luc": 84.0, "poutou_philippe": 4.0, "macron_emmanuel": 523.0}, "geometry": {"type": "Point", "coordinates": [2.314244289070314, 48.855643095022124]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d8b862b3be447ea7d8e12b29a0e85e8405e367bd", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 66, "zemmour_eric": 89.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-51", "geo_shape": {"coordinates": [[[2.406268890887341, 48.851498326578785], [2.406267101834236, 48.851491842377825], [2.406275552754072, 48.851414912502015], [2.406293022707165, 48.851292996889086], [2.406307967445569, 48.85115695791795], [2.406325437246593, 48.85103504137272], [2.406340380453431, 48.85089900325851], [2.406357851454862, 48.85077708668704], [2.406372794513355, 48.850641047637936], [2.406390265342123, 48.85051913193278], [2.406380948806757, 48.850509740551416], [2.406214797872432, 48.8504737379706], [2.406033889730927, 48.85044192662239], [2.405867739252599, 48.850405923557446], [2.405686831558484, 48.850374111682584], [2.4055206815361583, 48.85033810813345], [2.405519818089383, 48.85033794106074], [2.405338912206273, 48.85030612866464], [2.4051260044263882, 48.85027005854187], [2.404945097656646, 48.850238245541625], [2.404732190436972, 48.85020217381655], [2.404551285506017, 48.85017036022572], [2.4043383788363, 48.850134287797694], [2.404157474381432, 48.85010247360949], [2.403976570147553, 48.85007065914685], [2.403763664282908, 48.85003458569295], [2.403762295448858, 48.85003440259866], [2.403534804190726, 48.85000977225109], [2.403344673112242, 48.84999096132441], [2.403154542160827, 48.849972150994574], [2.402927051461713, 48.84994751949011], [2.402925642054015, 48.84994742881697], [2.402748618205667, 48.84994218432042], [2.4025278766441422, 48.84994746221979], [2.402407266521311, 48.84994388841438], [2.402386818607371, 48.84994613269164], [2.402391714336367, 48.849997878879655], [2.402340777948838, 48.85011570037072], [2.402289468945317, 48.85023438424451], [2.402238532095441, 48.850352205667], [2.40218722126358, 48.85047088946492], [2.402136283951349, 48.85058871081886], [2.4020849740060353, 48.85070739545376], [2.402034036241762, 48.85082521583986], [2.401982724467982, 48.85094390039889], [2.401993442243634, 48.85095522193906], [2.402180148659671, 48.85097715031073], [2.402366596639685, 48.85099904921907], [2.402553303369875, 48.85102097700757], [2.402739753026233, 48.85104287534039], [2.40292646006006, 48.851064803445055], [2.40311291004034, 48.851086700296214], [2.403299617388209, 48.85110862781775], [2.4034860676820893, 48.85113052408656], [2.403672773981369, 48.85115245101814], [2.403859224588841, 48.8511743467046], [2.404045932564775, 48.85119627305982], [2.404232383485833, 48.85121816816395], [2.40424343030805, 48.851228529729426], [2.404212632186607, 48.85134813033103], [2.404181766976532, 48.851467984195324], [2.404150967209299, 48.8515875847485], [2.404120101715561, 48.851707438571104], [2.404089303028009, 48.851827039089464], [2.404058437250608, 48.85194689287033], [2.404027636917248, 48.85206649334026], [2.403996770856175, 48.85218634707948], [2.404009289684323, 48.85219682660909], [2.40419262776981, 48.8522049848487], [2.404361652792132, 48.852212505864834], [2.404363104220454, 48.85221262191155], [2.404560069192721, 48.852235564386156], [2.404762561350255, 48.85225915098576], [2.404959526674264, 48.852282092801815], [2.405162017841021, 48.85230567781836], [2.405162811114002, 48.85230578698593], [2.405319297008447, 48.85233041469639], [2.405549640229093, 48.85236691004412], [2.40570612647966, 48.85239153814658], [2.405936471614428, 48.852428031855084], [2.406092956868608, 48.85245265944356], [2.406151310339723, 48.85245620831637], [2.406155509216923, 48.85244807295346], [2.406160338206943, 48.85240880253247], [2.4061752822489932, 48.85227276370758], [2.406192958032653, 48.85212900491149], [2.406207901909303, 48.85199296604828], [2.406225577518311, 48.85184920631191], [2.406240521219419, 48.85171316830971], [2.406258196643531, 48.85156940853234], [2.406264689262998, 48.85151029946692], [2.406268890887341, 48.851498326578785]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 51, "roussel_fabien": 24.0, "nb_emargement": 1406.0, "nb_procuration": 80.0, "nb_vote_blanc": 13.0, "jadot_yannick": 123.0, "le_pen_marine": 83.0, "nb_exprime": 1387.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1773.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1406, "quartier_bv": "80", "geo_point_2d": [48.85105025378115, 2.4045253395866544], "melenchon_jean_luc": 502.0, "poutou_philippe": 6.0, "macron_emmanuel": 429.0}, "geometry": {"type": "Point", "coordinates": [2.4045253395866544, 48.85105025378115]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0ca9c615ad12c1b410f0599b8d184c839c3c885c", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 66, "zemmour_eric": 69.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "3-15", "geo_shape": {"coordinates": [[[2.352534088752133, 48.86624257367389], [2.352543651885313, 48.866251315762064], [2.35257040456418, 48.86629901235898], [2.352640119681416, 48.86642282071615], [2.352711312268, 48.86654974603654], [2.352781028044493, 48.86667355518286], [2.352852221316954, 48.86680048039067], [2.352921937763992, 48.86692428942688], [2.35299313172244, 48.86705121452213], [2.353062848839931, 48.86717502344818], [2.353134043484375, 48.86730194843081], [2.353203761283393, 48.86742575634744], [2.353274956602779, 48.86755268211679], [2.353306011763645, 48.867607830299924], [2.353312119007659, 48.86761518574177], [2.353398959173826, 48.8675945086849], [2.353589510719954, 48.86754434651055], [2.353780168591052, 48.86749415492835], [2.353970719403117, 48.867443992142576], [2.354161377902672, 48.867393799955885], [2.354351926628568, 48.86734363565206], [2.354542584382486, 48.86729344375291], [2.3545449826298013, 48.86729297463882], [2.354748402267588, 48.867266342953414], [2.354951353357206, 48.867239772250876], [2.355154771227483, 48.86721313896692], [2.355357721902547, 48.867186567574045], [2.355561140709318, 48.86715993450477], [2.3557640896178063, 48.86713336151493], [2.355967039671264, 48.86710678908695], [2.356170456491848, 48.867080154972896], [2.356373406141845, 48.8670535809553], [2.356576823910027, 48.86702694615664], [2.35677977177119, 48.86700037234069], [2.356983189134928, 48.86697373595084], [2.35698637833208, 48.866973571417624], [2.357170253599414, 48.86697833997539], [2.357351391107665, 48.866983036891824], [2.357532528648579, 48.86698773353408], [2.357716404015889, 48.86699250125281], [2.357897541622617, 48.866997197342606], [2.3580814170567352, 48.86700196450053], [2.358091907684482, 48.867005662201095], [2.358208169296093, 48.86711114897359], [2.35832429253926, 48.867216508071515], [2.358440555080827, 48.867321995497434], [2.358556677900856, 48.86742735434252], [2.358569102169098, 48.86743455540566], [2.35858520010752, 48.867430368903705], [2.358783292097787, 48.86739686772276], [2.358986088528996, 48.86736257031099], [2.359184180014698, 48.86732906756522], [2.359386975918023, 48.867294769472124], [2.359396913386145, 48.86728415466806], [2.359365579231017, 48.86718866750814], [2.35933586529221, 48.867098118297335], [2.359304531360881, 48.86700263110538], [2.3592748176343, 48.866912081864236], [2.359273240430855, 48.86690942036155], [2.359178193435548, 48.8668029761862], [2.359081596412253, 48.86669479688538], [2.358986550200017, 48.8665883525372], [2.358889955335885, 48.86648017306805], [2.358794909906812, 48.866373728546975], [2.358698315838501, 48.866265548902206], [2.358603271192683, 48.86615910420832], [2.358506676557174, 48.866050924380566], [2.358411632683325, 48.86594448041319], [2.358315040206833, 48.865836300417094], [2.358322920943887, 48.865823111533494], [2.358524810320045, 48.86578373682801], [2.358725033700975, 48.86574468561269], [2.358926922469271, 48.86570531022615], [2.359127146599275, 48.865666259241934], [2.359329034759703, 48.86562688317431], [2.359529256923852, 48.86558783150738], [2.359731144476406, 48.865548454758674], [2.359931366048738, 48.86550940151697], [2.360133252993407, 48.865470024087216], [2.360333475314809, 48.865430971076634], [2.360391920898774, 48.86540465388082], [2.360377202368259, 48.86538970547974], [2.360286804700934, 48.865306870364236], [2.360170302714883, 48.865192861976276], [2.360171727464953, 48.865183185462676], [2.360166833954465, 48.865171847359505], [2.360039378801752, 48.86505113591952], [2.359922877929078, 48.86493712726437], [2.359795422541862, 48.864816416431], [2.359678922727964, 48.864702407514216], [2.359675797116321, 48.86470029442088], [2.359657706245982, 48.864685705601175], [2.359600014449952, 48.86471627408787], [2.359397317411115, 48.86475865819809], [2.359202303402952, 48.8647994355038], [2.359007290463647, 48.86484021159829], [2.358804591097289, 48.86488259469263], [2.3586095775354, 48.86492337013603], [2.358406877522023, 48.86496575255357], [2.358211863326478, 48.865006528245196], [2.358009162665883, 48.865048909986], [2.357814147858841, 48.86508968412719], [2.357611446551242, 48.865132065191254], [2.357556070136642, 48.86514364378272], [2.357529049545795, 48.865149293207416], [2.357412842218833, 48.86517358925045], [2.357266473490999, 48.86520419218751], [2.357073864251817, 48.865244461818364], [2.356892655597137, 48.86528234798409], [2.356700045780038, 48.86532261701053], [2.356518836581648, 48.865360502607565], [2.356326226175526, 48.86540077192885], [2.356145017807639, 48.86543865606531], [2.356136914833934, 48.8654386835219], [2.35595838636055, 48.865402677329506], [2.355761977189331, 48.86536306358223], [2.355583450597327, 48.865327056835426], [2.355387040633226, 48.865287442462815], [2.355208514559517, 48.8652514351543], [2.355012106528723, 48.865211820171034], [2.354833579610225, 48.86517581229348], [2.354637172149756, 48.865136196692234], [2.354458645749464, 48.86510018825292], [2.354262238859225, 48.86506057203368], [2.354083714340327, 48.86502456304], [2.353887306657242, 48.86498494619541], [2.353708782656763, 48.86494893664004], [2.3535123769069, 48.864909319184825], [2.353333852061664, 48.864873309060364], [2.353252956988113, 48.86485720446133], [2.353252587174807, 48.86485712691795], [2.35326064475418, 48.86483154184317], [2.353248759661374, 48.8648250491038], [2.353056302911146, 48.86478275509741], [2.352848757909101, 48.864733980356554], [2.352656300457075, 48.86469168569609], [2.352448756192342, 48.86464291025759], [2.352256300753291, 48.86460061585707], [2.352048757237059, 48.86455183882162], [2.351856302459189, 48.8645095437744], [2.351648759669097, 48.86446076694059], [2.351600217822997, 48.864470448018984], [2.351585488954518, 48.86451864954761], [2.351655943241291, 48.864649061199465], [2.351727129643013, 48.86477598730127], [2.351797584632477, 48.86490639883942], [2.351868773093915, 48.86503332483485], [2.351939227422899, 48.86516373625196], [2.351992518576465, 48.86525875092908], [2.352010416581188, 48.865290662133624], [2.351991953570594, 48.865307679386085], [2.352031632457327, 48.86531731934244], [2.352091618151401, 48.86542846756347], [2.352162808042638, 48.86555539332411], [2.352222792938802, 48.86566654054882], [2.352293983463893, 48.86579346710344], [2.352353970277163, 48.865904614245856], [2.352425161458281, 48.8660315397959], [2.352485148814389, 48.86614268774798], [2.352529587978494, 48.86622191749063], [2.352534088752133, 48.86624257367389]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 15, "roussel_fabien": 25.0, "nb_emargement": 1215.0, "nb_procuration": 83.0, "nb_vote_blanc": 13.0, "jadot_yannick": 115.0, "le_pen_marine": 57.0, "nb_exprime": 1199.0, "nb_vote_nul": 3.0, "arr_bv": "03", "arthaud_nathalie": 3, "nb_inscrit": 1512.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1215, "quartier_bv": "09", "geo_point_2d": [48.866042552979025, 2.3557167185087615], "melenchon_jean_luc": 297.0, "poutou_philippe": 6.0, "macron_emmanuel": 516.0}, "geometry": {"type": "Point", "coordinates": [2.3557167185087615, 48.866042552979025]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "017071db2e8eb1757b101eb6d24f9f5d448e57a2", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 51, "zemmour_eric": 62.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-6", "geo_shape": {"coordinates": [[[2.379401365660513, 48.854852777389134], [2.379423392718306, 48.85486008732929], [2.379607352183602, 48.854793550420645], [2.379788973885156, 48.854727925642436], [2.379972932417035, 48.85466138816385], [2.380154551834687, 48.85459576281593], [2.380338510795862, 48.854529224774474], [2.380520129292429, 48.85446359886387], [2.380704087320283, 48.85439706025248], [2.380885704895766, 48.854331433779215], [2.381069660616709, 48.85426489549012], [2.381251278644594, 48.85419926756193], [2.381435233432124, 48.854132728702915], [2.381616849176111, 48.85406710020506], [2.381800804393029, 48.85400056078314], [2.381982419215921, 48.853934931722605], [2.381992466189335, 48.85393412833205], [2.382113497778381, 48.8539553638023], [2.382269273752687, 48.85399008531503], [2.382288726573597, 48.8539868041819], [2.382303351311399, 48.853961865143724], [2.382382183131027, 48.85384320434634], [2.38246041050977, 48.85371801737579], [2.382539240240145, 48.85359935644191], [2.382617468238271, 48.85347416934829], [2.382696297242094, 48.85335550828488], [2.38277452313404, 48.853230321054056], [2.382774595318217, 48.8532302099069], [2.382850042218615, 48.853112369468796], [2.382928268738966, 48.85298718211717], [2.383003714939965, 48.85286934155643], [2.383081939363523, 48.85274415406994], [2.383157384865134, 48.85262631338659], [2.383212026593937, 48.8525388669174], [2.383219885516924, 48.852524974673145], [2.383218708139877, 48.85251736728401], [2.383242290086057, 48.85247962613673], [2.3833184339561, 48.85235349510546], [2.383396658211955, 48.85222830736213], [2.383472799989003, 48.85210217529786], [2.383551023496741, 48.851976987425346], [2.383627165885025, 48.85185085614061], [2.383705387292548, 48.85172566723254], [2.383781528939867, 48.85159953582112], [2.383859749588663, 48.85147434768317], [2.383935890495232, 48.851348216144984], [2.384014110406578, 48.851223026978566], [2.384036392177805, 48.85118611624051], [2.384033373439181, 48.85117690751697], [2.383976382381903, 48.851174434975576], [2.383774896003954, 48.85117500997485], [2.383571598305461, 48.85117582981983], [2.383370111917656, 48.85117640413747], [2.383166814207359, 48.851177223294705], [2.382965329172332, 48.85117779693774], [2.382762031450244, 48.8511786154072], [2.382560545042759, 48.851179188361556], [2.382357247308888, 48.851180006143224], [2.382155760880916, 48.85118057931528], [2.38195246313527, 48.85118139640922], [2.381939700122152, 48.85117569603561], [2.381879463998033, 48.85107468162313], [2.381819923522167, 48.85097397834287], [2.381759687863401, 48.85087296385181], [2.381700147849376, 48.85077226049366], [2.381639912666734, 48.8506712450247], [2.381580373114648, 48.850570541588716], [2.381567295724948, 48.85056482155928], [2.381344254067038, 48.85056894770094], [2.38113392637009, 48.85057289816274], [2.380923600014647, 48.85057684736254], [2.3807005582436203, 48.85058097320351], [2.380490231811953, 48.850584922540826], [2.380267189982855, 48.8505890466746], [2.380254651923093, 48.85060089726518], [2.3803205856009573, 48.85073061165296], [2.380386020252543, 48.85085934310831], [2.380451954573723, 48.850989058292825], [2.380517389874368, 48.85111778964642], [2.380583324860258, 48.85124750382916], [2.380648760809969, 48.851376235080956], [2.380714696439198, 48.85150595006048], [2.380780133038088, 48.85163468121054], [2.380846070694679, 48.85176439519526], [2.3809115065799142, 48.85189312623654], [2.380977444879874, 48.852022841018005], [2.381042882776847, 48.85215157196457], [2.381108820368222, 48.85228128663645], [2.381174258924981, 48.852410016581956], [2.381171900639294, 48.852418559919876], [2.381010107678909, 48.852549510458765], [2.38085159821636, 48.852681730555275], [2.38084965176368, 48.85268393828458], [2.380784045640948, 48.85279102993925], [2.380719980888161, 48.85289557536821], [2.38065591724098, 48.85300012076001], [2.380590310322005, 48.85310721227808], [2.380526246154467, 48.85321175758059], [2.380460638702532, 48.853318849007074], [2.380396572662546, 48.85342339331392], [2.38033096604043, 48.85353048465602], [2.380299296537302, 48.85355051017372], [2.380309435847463, 48.853563253428376], [2.380361775908946, 48.85357415031811], [2.380401684230819, 48.853586525198196], [2.380407900073058, 48.85359891266935], [2.380307994396148, 48.853721930150215], [2.380222913921102, 48.85382645543031], [2.380137834467415, 48.85393098064723], [2.380037927516244, 48.85405399786584], [2.379952845957254, 48.85415852292271], [2.37987758559151, 48.85425119230834], [2.379870847369093, 48.85425372952965], [2.37986591774785, 48.85427011622924], [2.379841271636375, 48.85430046388672], [2.379743218460894, 48.85441830208088], [2.379643309643722, 48.854541318916084], [2.379545255577926, 48.85465915602319], [2.379445345820969, 48.85478217356569], [2.379412731383639, 48.854821368975436], [2.379401365660513, 48.854852777389134]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 6, "roussel_fabien": 33.0, "nb_emargement": 1350.0, "nb_procuration": 88.0, "nb_vote_blanc": 14.0, "jadot_yannick": 150.0, "le_pen_marine": 51.0, "nb_exprime": 1332.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1682.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1350, "quartier_bv": "44", "geo_point_2d": [48.85248456338235, 2.3817461460575355], "melenchon_jean_luc": 481.0, "poutou_philippe": 9.0, "macron_emmanuel": 425.0}, "geometry": {"type": "Point", "coordinates": [2.3817461460575355, 48.85248456338235]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "907e9ea7a4eabe6792269a31a1e3eb97302d799d", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 102, "zemmour_eric": 125.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 24.0, "date_tour": "2022-04-10", "id_bvote": "15-85", "geo_shape": {"coordinates": [[[2.287869606095156, 48.841100447169616], [2.287859612311145, 48.84109104322116], [2.287851356203035, 48.84108778961563], [2.287836852742003, 48.84108295010183], [2.28780953885173, 48.84109335778538], [2.28761206532134, 48.84109285377822], [2.287415477107818, 48.84109257326574], [2.287218003584215, 48.84109206860808], [2.287021416738126, 48.84109178745613], [2.286824829894158, 48.841091505981076], [2.286627355017979, 48.84109100034035], [2.286430768179112, 48.84109071821774], [2.286233293309743, 48.841090211926485], [2.2860367064759872, 48.841089929156304], [2.285839231613441, 48.84108942221452], [2.285642644784804, 48.84108913879681], [2.285445169916657, 48.84108863210384], [2.285248583105481, 48.841088347139205], [2.285051108244269, 48.84108783979573], [2.285049647004932, 48.8410877842952], [2.284806277178639, 48.84106905620505], [2.284558096176074, 48.84105074223366], [2.284548051675135, 48.841046565741244], [2.284455883457385, 48.84094907492045], [2.284360900594362, 48.84084860735114], [2.284268733076731, 48.840751116368885], [2.2841737509351008, 48.840650648633186], [2.284153587339221, 48.84064843693507], [2.284097187423904, 48.84067876076099], [2.284052481918291, 48.84070323849137], [2.2840307970966, 48.84071247924846], [2.284029982861052, 48.84071749736046], [2.283923353321748, 48.840775881212735], [2.283781055631172, 48.84085357225771], [2.283629719618014, 48.84093643434751], [2.2834874210514178, 48.84101412503202], [2.28333608546771, 48.84109698674663], [2.283193786037461, 48.84117467617138], [2.2830424481583123, 48.841257537494435], [2.282900147839668, 48.84133522745801], [2.282748809027515, 48.84141808839767], [2.282606507832838, 48.8414957780008], [2.282455169450134, 48.84157863856524], [2.282312867379424, 48.84165632780791], [2.282311593390086, 48.841657119704685], [2.28219440194391, 48.8417390219057], [2.282081948411919, 48.84181850073952], [2.281964757604376, 48.84190040271189], [2.281852303361711, 48.84197988221767], [2.281739848788367, 48.84205936071277], [2.281622656901674, 48.84214126233235], [2.281620060798123, 48.84214267674029], [2.281467535730194, 48.84220630217497], [2.281313977077674, 48.8422707459264], [2.281161451249003, 48.84233437186285], [2.281007890478213, 48.84239881520578], [2.280855363900988, 48.842462440744704], [2.280701803736887, 48.842526883695534], [2.2806781407931043, 48.84253264487407], [2.280676092402585, 48.84254353651385], [2.280770888659647, 48.84265259743507], [2.280863585615711, 48.842759186772426], [2.280958382657443, 48.84286824752402], [2.281051079018007, 48.842974836687304], [2.281145878206713, 48.84308389727739], [2.281238575334378, 48.843190486274814], [2.281333373945173, 48.84329954668709], [2.2814260732022458, 48.84340613552679], [2.281520872597738, 48.84351519576941], [2.28161357125932, 48.84362178443506], [2.281706270287772, 48.84372837391799], [2.281801072230535, 48.84383743301592], [2.281826985348759, 48.843860443331806], [2.281843605572969, 48.843856057056534], [2.281889437027425, 48.84383488584046], [2.282037284267694, 48.8437687990696], [2.282196096749511, 48.84369543636345], [2.282343943205342, 48.84362934920534], [2.282502754830571, 48.84355598608288], [2.282565334438702, 48.8435280132992], [2.282595601450293, 48.84351428427641], [2.28259535176615, 48.84350470630224], [2.28268061778171, 48.84346659061913], [2.282842321084463, 48.84339383166775], [2.282990164515159, 48.84332774278568], [2.283151866967252, 48.84325498250754], [2.283299710974059, 48.84318889324292], [2.2834614125509543, 48.84311613343662], [2.283621901263206, 48.843043947138966], [2.283783601952965, 48.84297118598845], [2.28394408977264, 48.842898999249186], [2.2841057882004048, 48.84282623764556], [2.284266275115157, 48.842754051364], [2.2844279740059212, 48.84268128932361], [2.284588460040451, 48.842609101701136], [2.284750158031618, 48.84253633921584], [2.284910643173678, 48.842464151151795], [2.285072340253014, 48.84239138912083], [2.285232824502508, 48.842319200615215], [2.285394520694692, 48.842246437240014], [2.285555004051517, 48.842174248292835], [2.285573317280216, 48.84217243211359], [2.285579860113467, 48.842163401048026], [2.285647702358414, 48.84212372129513], [2.285710541849308, 48.842088664968955], [2.285712048418983, 48.842087900506975], [2.285720602106263, 48.842084157141066], [2.285740559521185, 48.842073023393226], [2.285898085450294, 48.842004090926736], [2.286052620961807, 48.841936789847495], [2.286210146066443, 48.84186785696164], [2.286364682133431, 48.841800555479175], [2.286522206413594, 48.84173162217405], [2.286676741673793, 48.841664320280245], [2.28683426512938, 48.84159538655576], [2.286988799582689, 48.84152808425062], [2.287146322213907, 48.84145915010682], [2.287300854497769, 48.841391847382276], [2.287458376304521, 48.84132291281914], [2.287612909144053, 48.84125560969137], [2.287640753854655, 48.8412439568891], [2.287641081079198, 48.84124224643738], [2.287748445497638, 48.84117970140634], [2.287871080923523, 48.8411088821468], [2.287869606095156, 48.841100447169616]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 85, "roussel_fabien": 23.0, "nb_emargement": 1455.0, "nb_procuration": 75.0, "nb_vote_blanc": 19.0, "jadot_yannick": 109.0, "le_pen_marine": 103.0, "nb_exprime": 1430.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 6, "nb_inscrit": 1781.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1455, "quartier_bv": "60", "geo_point_2d": [48.84211639651835, 2.283703453025529], "melenchon_jean_luc": 363.0, "poutou_philippe": 6.0, "macron_emmanuel": 518.0}, "geometry": {"type": "Point", "coordinates": [2.283703453025529, 48.84211639651835]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c1bb1e4111a1bdc7a972aa60ab4eda570d95f8f7", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 128, "zemmour_eric": 149.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-43", "geo_shape": {"coordinates": [[[2.258084587232748, 48.83810057816587], [2.258068957582319, 48.83810417945494], [2.257958588424072, 48.838196450685665], [2.257856790190153, 48.83828144687573], [2.257746420280966, 48.83837371789609], [2.257644621354764, 48.83845871389207], [2.25763968248498, 48.83846129052991], [2.257464572940814, 48.83851508442982], [2.257291843215369, 48.83856601394929], [2.257116734322776, 48.83861980734342], [2.256944003897605, 48.83867073725512], [2.256936514647416, 48.838676355896645], [2.2568753117131, 48.83881055818695], [2.256816248549022, 48.83894182467552], [2.256755043618125, 48.83907602776323], [2.256695979863171, 48.83920729326192], [2.256634775673283, 48.83934149626468], [2.256575709939398, 48.839472762563595], [2.256514505140947, 48.83960696457366], [2.256455438803335, 48.83973823078202], [2.256394233383487, 48.83987243269862], [2.256335167804453, 48.84000369882487], [2.256334679617256, 48.840005255304725], [2.256312469229714, 48.8401316897446], [2.256290681998732, 48.840256820906546], [2.256268471397263, 48.84038325530977], [2.256246683955496, 48.84050838643549], [2.256224897771546, 48.84063351755173], [2.256202686849977, 48.84075995190009], [2.256180899105645, 48.84088508207233], [2.2561586879573072, 48.84101151728335], [2.256136900002285, 48.841136647419354], [2.256114688639907, 48.841263082593706], [2.256114713666695, 48.84129006394503], [2.256149738417271, 48.84129546932649], [2.256306209897797, 48.84130390969451], [2.256506708017467, 48.84131206319224], [2.256521102805587, 48.841303980054875], [2.256538908015015, 48.84118633848414], [2.256558374553093, 48.84106837715376], [2.256576178235471, 48.840950735544205], [2.256595644614133, 48.84083277328359], [2.256613449494343, 48.84071513165212], [2.256632914325402, 48.840597170251364], [2.256650719040908, 48.84047952858952], [2.256670183712458, 48.84036156625853], [2.256687988263465, 48.84024392456633], [2.256707452749857, 48.84012596310366], [2.256727664163123, 48.84011909335841], [2.256889077883888, 48.840178868493474], [2.257080370494625, 48.84025107934626], [2.257241785015812, 48.840310854897616], [2.257433078599705, 48.840383065177875], [2.257594493946948, 48.840442839346906], [2.257785788503791, 48.84051504905461], [2.257947204651468, 48.84057482363998], [2.257953538938049, 48.84058535772324], [2.257894883610623, 48.840708796216646], [2.257841554039949, 48.84083597402884], [2.257782899540621, 48.84095941154882], [2.25772956944017, 48.84108658928255], [2.257730504152631, 48.84109299861941], [2.257819291855784, 48.841210654191556], [2.257911279567629, 48.84133431396181], [2.258000066740293, 48.84145196846661], [2.258092055307042, 48.841575628071105], [2.25818084464842, 48.84169328332402], [2.2582728340699862, 48.84181694276277], [2.258294877427743, 48.841846153453766], [2.258312143853237, 48.84185706377058], [2.258344859437514, 48.84184984588292], [2.258550109168781, 48.84179655508528], [2.258770228696541, 48.84173919557632], [2.25897547755714, 48.84168590404359], [2.259195594799882, 48.841628542838535], [2.259203010960986, 48.841616479612085], [2.259120602278268, 48.84149590390627], [2.259034211426414, 48.841377232617006], [2.258951803512574, 48.84125665676906], [2.258865414804049, 48.84113798534092], [2.258783006283641, 48.84101741024172], [2.258696618356086, 48.84089873866626], [2.25861421061723, 48.84077816252563], [2.258527823470534, 48.84065949080284], [2.258528166730479, 48.84065126096549], [2.258623463067212, 48.84053690898693], [2.258722487978301, 48.84041308893906], [2.258817783466033, 48.84029873588199], [2.258916807462996, 48.8401749156469], [2.259012102076158, 48.84006056330994], [2.259111125159007, 48.83993674288757], [2.259206418923181, 48.83982238947216], [2.259305441091928, 48.839698568862545], [2.259363299978398, 48.83962913657936], [2.259382106807334, 48.839624230916264], [2.259393528493781, 48.83960007878731], [2.259430961100398, 48.83955515745686], [2.259511561403999, 48.839453481216374], [2.259606854755635, 48.83933912834019], [2.259687454382061, 48.83923745196154], [2.259782745590457, 48.83912309891472], [2.25986334453972, 48.839021422397906], [2.259958636329671, 48.83890706919731], [2.260039234601773, 48.83880539254231], [2.260033630624458, 48.83879330715337], [2.259871307946397, 48.83873551637859], [2.259681449044953, 48.83866810252882], [2.259519127147179, 48.83861031126962], [2.259329269144508, 48.838542897752646], [2.259166948040004, 48.838485105109804], [2.258977090948882, 48.83841769102629], [2.258814770624673, 48.83835989789907], [2.258624914445098, 48.83829248324904], [2.258462594901387, 48.83823468963752], [2.258272739633363, 48.838167274420954], [2.25811042087005, 48.838109480325045], [2.258084587232748, 48.83810057816587]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 43, "roussel_fabien": 8.0, "nb_emargement": 1019.0, "nb_procuration": 69.0, "nb_vote_blanc": 9.0, "jadot_yannick": 42.0, "le_pen_marine": 79.0, "nb_exprime": 1005.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1298.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1019, "quartier_bv": "61", "geo_point_2d": [48.83975168084318, 2.258041024629783], "melenchon_jean_luc": 134.0, "poutou_philippe": 3.0, "macron_emmanuel": 424.0}, "geometry": {"type": "Point", "coordinates": [2.258041024629783, 48.83975168084318]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d47a7afa4e065105312608d5ee81538c549cb205", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 35, "zemmour_eric": 57.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-45", "geo_shape": {"coordinates": [[[2.3989683458302062, 48.85490730448919], [2.3989683061859832, 48.85490955985562], [2.398856048441931, 48.85500099207869], [2.398763166138488, 48.855079812857014], [2.398761705656347, 48.855080829876236], [2.398708934792448, 48.85511224065404], [2.398634982235981, 48.85515613763057], [2.398634541858228, 48.8551614658539], [2.398652642162698, 48.85517293806943], [2.398835476398054, 48.855224546723626], [2.3990182878773663, 48.8552763870118], [2.399201122837968, 48.85532799510251], [2.399383936396374, 48.85537983573334], [2.39956677208202, 48.85543144326057], [2.399749585014783, 48.85548328242181], [2.39993242141531, 48.85553489028482], [2.400115235074691, 48.85558672888265], [2.400298072210714, 48.855638335282855], [2.4004808865865632, 48.85569017421651], [2.400489133948595, 48.855698545294146], [2.400487447235442, 48.855790533798995], [2.400487452068411, 48.85588072937822], [2.400492200988017, 48.85588755133778], [2.400604872450384, 48.855951407347746], [2.400715029454691, 48.85601385576605], [2.400726460523042, 48.8560225944138], [2.400741649797441, 48.856020847505334], [2.400912719762151, 48.856002211644544], [2.401087087740743, 48.85598322871009], [2.401258157468726, 48.85596459145551], [2.401432526558526, 48.85594560802387], [2.401444140055594, 48.855947966646774], [2.40158605688862, 48.856037086774876], [2.401725142158633, 48.85612441905555], [2.401867059952778, 48.856213538836286], [2.4020061461647852, 48.85630087077646], [2.402145231480268, 48.85638820254133], [2.402287150711398, 48.85647732180264], [2.402298736798641, 48.85648624183774], [2.4023151730778523, 48.856483794971325], [2.402486274447771, 48.85645964942129], [2.402662306859741, 48.856434538960656], [2.402833409269811, 48.85641039292], [2.403009439985314, 48.856385281940796], [2.403019474815328, 48.85637936393875], [2.403074818388869, 48.856271026813204], [2.403129492406456, 48.85616519998759], [2.4031848355237733, 48.85605686279025], [2.403239507730339, 48.8559510358872], [2.403294179714825, 48.85584520894905], [2.403349523512699, 48.85573687165117], [2.4033498794599613, 48.85573625647371], [2.40342385966601, 48.855621340697006], [2.40349878164415, 48.85550544297475], [2.403572762556934, 48.85539052708886], [2.4036476838719922, 48.855274629249344], [2.403721662765838, 48.8551597132407], [2.403796584780656, 48.855043815290685], [2.403793622365637, 48.8550338861201], [2.403680361977936, 48.85496011392494], [2.403556845885709, 48.85488280102626], [2.403443586161742, 48.85480902859697], [2.4033200707685722, 48.854731716342656], [2.403206811708232, 48.85465794367922], [2.403112789337232, 48.85459909171813], [2.403095792771207, 48.85458625957121], [2.403079021096038, 48.8545874646715], [2.403049530154373, 48.85456900502094], [2.403046782860418, 48.85456743634201], [2.403043768719472, 48.8545646540103], [2.4029740635046792, 48.854464128731394], [2.402904139534691, 48.854362260481984], [2.402834433497212, 48.85426173509669], [2.402764510071795, 48.85415986674715], [2.402694804574441, 48.85405934126215], [2.402624881683278, 48.85395747371174], [2.402620895662815, 48.85395411632841], [2.402458837381238, 48.853869959094304], [2.402298270644157, 48.85378615263357], [2.402137704423567, 48.853702345951085], [2.401975647705299, 48.85361818804348], [2.401815083883954, 48.85353438092224], [2.401653028209219, 48.853450222565], [2.401492464061536, 48.853366414991314], [2.40133040943013, 48.85328225618445], [2.401329394045587, 48.853281669225055], [2.401230180477929, 48.85321789275739], [2.401102835540225, 48.85313668450669], [2.401003621163231, 48.85307290783604], [2.400909239255783, 48.85301271939673], [2.4009078982282, 48.85300537039144], [2.400885474529387, 48.85299740139739], [2.400852512236149, 48.852976380428196], [2.400810664140157, 48.852946842178206], [2.400788604057347, 48.85294885417116], [2.400701878606342, 48.85305956776142], [2.400616162015052, 48.85316832215379], [2.400529437195175, 48.853279035604025], [2.40044371850983, 48.853387790743916], [2.400356992958395, 48.85349850404729], [2.400271274925148, 48.85360725814972], [2.400184547279256, 48.85371797129941], [2.400098828514714, 48.853826726156115], [2.400012101499939, 48.8539374391658], [2.399926382014547, 48.854046193877494], [2.399925337475965, 48.85404731012728], [2.399819934099324, 48.854144091035295], [2.399715251001777, 48.854239713498835], [2.399609846835474, 48.854336495104356], [2.399505162976216, 48.85443211646824], [2.399399756667683, 48.8545288978651], [2.399295073399162, 48.854624519035454], [2.399189666311205, 48.85472130023051], [2.399084980897308, 48.85481692209297], [2.39908452387427, 48.85481731641046], [2.399036975276782, 48.854855173112476], [2.398987526103852, 48.8548954493884], [2.3989683458302062, 48.85490730448919]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 45, "roussel_fabien": 34.0, "nb_emargement": 1435.0, "nb_procuration": 75.0, "nb_vote_blanc": 9.0, "jadot_yannick": 106.0, "le_pen_marine": 66.0, "nb_exprime": 1424.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1883.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1436, "quartier_bv": "80", "geo_point_2d": [48.85486323014301, 2.4014264608246805], "melenchon_jean_luc": 677.0, "poutou_philippe": 13.0, "macron_emmanuel": 364.0}, "geometry": {"type": "Point", "coordinates": [2.4014264608246805, 48.85486323014301]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "359588626752b6cbbbc1b7b538c3921fca8449d3", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 26, "zemmour_eric": 56.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-14", "geo_shape": {"coordinates": [[[2.37983994096226, 48.87470489708], [2.379851433480231, 48.87468780092472], [2.379858752439258, 48.87464896333224], [2.379883582480127, 48.87451282217347], [2.37990705978635, 48.874388257410295], [2.379931889565968, 48.87425211710861], [2.379955366639154, 48.874127552306554], [2.379945071675248, 48.874117706127976], [2.379777662257651, 48.87409073926361], [2.379611641249925, 48.87406294477687], [2.379444232180965, 48.874035977444834], [2.379278211514998, 48.87400818339356], [2.379268082763503, 48.87399813116984], [2.379279959347704, 48.873948810294465], [2.379295737801034, 48.873879476969265], [2.379310107508934, 48.87387183788692], [2.379478473487612, 48.873879087066406], [2.37964725105414, 48.87388543700845], [2.379815617123799, 48.87389268571359], [2.37998439477549, 48.873899035180244], [2.3799987222639762, 48.873891040560075], [2.380013775687356, 48.87380075518452], [2.380027626410139, 48.87371013891105], [2.380042679731034, 48.873619853517084], [2.380056531718634, 48.87352923723249], [2.380070815101344, 48.873521158735], [2.380261986678222, 48.87352781984739], [2.380452050541462, 48.87353419612715], [2.380643223578251, 48.87354085663761], [2.380833287525038, 48.87354723321127], [2.3810244593058, 48.87355389220654], [2.381214523346822, 48.87356026817481], [2.38140569657669, 48.873566927467465], [2.381595760722618, 48.87357330193104], [2.381786932685852, 48.87357996060774], [2.381976996915321, 48.873586335365225], [2.382168170349102, 48.87359299254074], [2.382358234672779, 48.87359936669286], [2.382549406829038, 48.87360602415168], [2.382739471257575, 48.8736123967991], [2.382751283298493, 48.87360861844927], [2.382816574884592, 48.873547892987574], [2.382874413420565, 48.87349321216342], [2.382905280381395, 48.873454637849164], [2.382894335990171, 48.87344836252853], [2.382773473639146, 48.87342786588472], [2.382587426483404, 48.87339571928846], [2.382392776064573, 48.87336270781917], [2.382206729376523, 48.87333056062931], [2.382163435039785, 48.873322917663415], [2.382165991034877, 48.873308806802164], [2.382137237158841, 48.87331793053019], [2.381934157526778, 48.873276425549335], [2.381748111429867, 48.873244277644204], [2.381747342895812, 48.87324412888184], [2.381556956624701, 48.87320320863049], [2.381353876539015, 48.873161702653846], [2.381163490878299, 48.873120781773686], [2.38096041142752, 48.87307927512641], [2.380770026366512, 48.87303835451665], [2.380566948924634, 48.87299684630657], [2.380376564474025, 48.87295592506797], [2.380172010470964, 48.8729085160929], [2.380171961521742, 48.87290850504739], [2.379981576351755, 48.87286758227099], [2.379843708153157, 48.87283601906886], [2.379842675013856, 48.87283576639904], [2.379704806983641, 48.872804203036], [2.379529703231814, 48.87275593470624], [2.37938842361953, 48.87271597777812], [2.379213321820764, 48.87266770898874], [2.379072042690377, 48.872627751684036], [2.379071838854923, 48.87262769576722], [2.378896737646408, 48.87257942651085], [2.378706020634591, 48.87252787430774], [2.37853091873736, 48.87247960450485], [2.378340202442361, 48.87242805261349], [2.378165101219599, 48.87237978227113], [2.377974385662986, 48.87232822889298], [2.3777992864780773, 48.87227995801825], [2.377608571638175, 48.87222840495186], [2.377433471764668, 48.87218013353056], [2.377242757663071, 48.87212857897743], [2.377067659827318, 48.87208030702372], [2.377026212960931, 48.872051369216585], [2.376999173102074, 48.872056573240656], [2.376979976833088, 48.87206026672861], [2.3769610679091793, 48.8720935067061], [2.376848527602489, 48.872194462238895], [2.376717887133186, 48.87231604321781], [2.376605345874262, 48.87241699850159], [2.376474704279198, 48.872538579190575], [2.376362162068235, 48.87263953422539], [2.376231519358169, 48.872761113725154], [2.37617988671829, 48.87280742934957], [2.376168133825924, 48.8728171717585], [2.37621388845346, 48.872852076900095], [2.37627663996853, 48.87298775032018], [2.376335762385136, 48.87311876870624], [2.376398514528182, 48.87325444292899], [2.376457637554061, 48.87338546122321], [2.376460848258449, 48.87338910766536], [2.376603046426042, 48.87348727149135], [2.376745264712436, 48.87358459616203], [2.376887465313046, 48.8736827596399], [2.377029683301329, 48.87378008394832], [2.377032702700617, 48.87378935741585], [2.376974571738035, 48.873896437257606], [2.376914662652091, 48.87400739473131], [2.376924211731184, 48.87401913848579], [2.3771519810258, 48.874056558935294], [2.377371461458681, 48.874092594027736], [2.377599231395827, 48.87413001362375], [2.377818711084322, 48.87416604788672], [2.377820927434661, 48.87416654774519], [2.377982040001862, 48.874213948984746], [2.378172934862981, 48.87426956275378], [2.3783340494325023, 48.874316963522276], [2.3785249450577473, 48.8743725758255], [2.378686060266257, 48.87441997611577], [2.378812899205145, 48.87445692702402], [2.378814935641056, 48.8744593675928], [2.3788401350212802, 48.87446361820731], [2.378904192468283, 48.874482279920315], [2.379029027756093, 48.87451875344541], [2.379219924852209, 48.87457436552947], [2.37934476059243, 48.87461083782302], [2.379349717204078, 48.87461329981816], [2.379401472864441, 48.87465417667916], [2.379453993234635, 48.874698392210426], [2.379464953467735, 48.87470183771745], [2.3796378281438972, 48.87469993322199], [2.379813725399563, 48.87469986618727], [2.37983994096226, 48.87470489708]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 14, "roussel_fabien": 25.0, "nb_emargement": 1276.0, "nb_procuration": 65.0, "nb_vote_blanc": 3.0, "jadot_yannick": 119.0, "le_pen_marine": 60.0, "nb_exprime": 1266.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 1, "nb_inscrit": 1778.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1275, "quartier_bv": "76", "geo_point_2d": [48.873339907270875, 2.378672275042249], "melenchon_jean_luc": 621.0, "poutou_philippe": 13.0, "macron_emmanuel": 300.0}, "geometry": {"type": "Point", "coordinates": [2.378672275042249, 48.873339907270875]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "45c9b0dcb74998536fae15cd09413492e39227fb", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 32, "zemmour_eric": 57.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-58", "geo_shape": {"coordinates": [[[2.382154149656492, 48.885845916760154], [2.38212296241876, 48.88583278036724], [2.382000159242771, 48.8857854365566], [2.381836607360342, 48.88572182390022], [2.381665352390334, 48.885655800613435], [2.381501801323953, 48.88559218749223], [2.381330547215451, 48.885526162819545], [2.381166995591012, 48.88546255012574], [2.380995743696961, 48.88539652497344], [2.380832192888668, 48.88533291181477], [2.3806609418453393, 48.885266886175856], [2.38049739185319, 48.88520327255237], [2.3803261416607873, 48.8851372464268], [2.380162592495487, 48.88507363143925], [2.379991341779493, 48.88500760571922], [2.379827794793953, 48.884943990273904], [2.37982764003069, 48.88494393191542], [2.379671638658641, 48.8848855786185], [2.379508091072574, 48.88482196362161], [2.379450528214113, 48.88480043221233], [2.379438966701756, 48.884801949706784], [2.3794139394659912, 48.88484015824272], [2.379312630110972, 48.884875839943994], [2.379109796295841, 48.88494496534982], [2.379104235332145, 48.884942556896334], [2.379039651087961, 48.88496184164664], [2.378836815211983, 48.88503096657754], [2.378630662864856, 48.88510827580071], [2.378626049808803, 48.88511111171532], [2.378512172256542, 48.88522399126031], [2.378399606649296, 48.8853347658831], [2.378285726742837, 48.88544764608192], [2.378173160170425, 48.88555842046931], [2.378059279294737, 48.88567129953053], [2.377946711757154, 48.88578207368245], [2.377834143729909, 48.88589284861669], [2.377720262751616, 48.886005727328225], [2.377716931293099, 48.88600800509089], [2.377566134893497, 48.886080002729685], [2.377414349382068, 48.88615120272769], [2.377263553513078, 48.88622319998313], [2.377111765806892, 48.88629439958118], [2.376960969104875, 48.886366396446164], [2.3768091819311152, 48.88643759565847], [2.37665838303242, 48.886509592125876], [2.376506595038409, 48.88658079004606], [2.376355796659564, 48.88665278702936], [2.376204006470681, 48.88672398454957], [2.376162978727478, 48.886759186191064], [2.376198978642075, 48.88677769928453], [2.376322138070506, 48.88683821248478], [2.376478349652249, 48.88691654511773], [2.376638146135091, 48.886995058080885], [2.376794358662615, 48.887073390290396], [2.376954154739569, 48.887151902813535], [2.377110368223738, 48.8872302337003], [2.377270166622134, 48.88730874579757], [2.377426381041536, 48.8873870771602], [2.377586179034043, 48.88746558881741], [2.377742394399235, 48.88754391975653], [2.377902194723947, 48.887622430088626], [2.378058411035036, 48.887700760604275], [2.378218210943111, 48.8877792713956], [2.378374428200201, 48.88785760148779], [2.378534229076799, 48.88793611094688], [2.378690448643376, 48.888014440622676], [2.378850250467033, 48.88809295054806], [2.379006469615832, 48.88817127979327], [2.37905924590904, 48.888197207581214], [2.379093156450539, 48.888194968748365], [2.379110737658329, 48.888171320486414], [2.379321716745312, 48.88810305582327], [2.379520888785581, 48.88803952569351], [2.379731868153845, 48.8879712612058], [2.3799310391895983, 48.88790773038622], [2.379938450676277, 48.887901471706286], [2.379988888053118, 48.88774210931354], [2.380032598794942, 48.88759755358317], [2.380035365806967, 48.88759366034996], [2.380166279989031, 48.88748682400325], [2.380296600990506, 48.88738016789772], [2.380427514099861, 48.88727333124458], [2.380557834032069, 48.88716667483401], [2.380590533182292, 48.88713998839173], [2.380609872656811, 48.88713731222383], [2.380624938783051, 48.887116358575426], [2.380723150208191, 48.887036208021186], [2.380847409772576, 48.886933578582415], [2.380978320629105, 48.8868267412837], [2.381102577827085, 48.88672411155351], [2.381233488997146, 48.88661727396244], [2.38135774519239, 48.88651464394788], [2.381488653948688, 48.88640780605046], [2.381612910504851, 48.88630517575859], [2.381743818211047, 48.8861983375618], [2.381868073764488, 48.8860957069856], [2.38199898042049, 48.885988868489456], [2.382123233607686, 48.88588623762185], [2.382154149656492, 48.885845916760154]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 58, "roussel_fabien": 23.0, "nb_emargement": 1302.0, "nb_procuration": 77.0, "nb_vote_blanc": 14.0, "jadot_yannick": 149.0, "le_pen_marine": 46.0, "nb_exprime": 1283.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1636.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1302, "quartier_bv": "73", "geo_point_2d": [48.88646451363026, 2.3792420270815926], "melenchon_jean_luc": 633.0, "poutou_philippe": 9.0, "macron_emmanuel": 262.0}, "geometry": {"type": "Point", "coordinates": [2.3792420270815926, 48.88646451363026]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3a9884942b2bcd5332f5de2c1392e2f95bf9baf9", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 76, "zemmour_eric": 88.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-49", "geo_shape": {"coordinates": [[[2.3937893453381083, 48.851315094074195], [2.393812285630549, 48.8513211433233], [2.393914971538242, 48.85136099127171], [2.394029120615819, 48.85140770257953], [2.3940489389756783, 48.8514034258046], [2.394113252057404, 48.851298264742255], [2.394177363014991, 48.85119429065689], [2.394241675579443, 48.85108912950573], [2.394305786023495, 48.850985155332005], [2.394370098060226, 48.85087999499134], [2.394434207990749, 48.85077602072928], [2.394450110908407, 48.85077068172086], [2.394641499988703, 48.85080201322897], [2.394829537547103, 48.85083269972952], [2.395020927083303, 48.85086403062895], [2.395208966441099, 48.85089471743771], [2.395400355070478, 48.8509260477216], [2.395588394875496, 48.85095673393235], [2.395779783960766, 48.85098806360754], [2.395967824212997, 48.85101874922029], [2.396155864686687, 48.85104943453664], [2.396347254453692, 48.851080763301546], [2.396535295384997, 48.851111447120594], [2.396726685607771, 48.851142775276806], [2.396749394611617, 48.851150814859935], [2.396756571310889, 48.85114890664537], [2.396809089316728, 48.85107293158521], [2.396842669938567, 48.851025100676594], [2.396834242205251, 48.851012764953765], [2.396624530998103, 48.85097062700018], [2.396418620170814, 48.850927964638764], [2.396409151367133, 48.85092033713515], [2.39638900779119, 48.85079554488134], [2.396369021196448, 48.850673326447655], [2.396348877812089, 48.850548534159394], [2.396328891395684, 48.850426316591154], [2.396308903720743, 48.85030409810001], [2.396288760623175, 48.85017930576019], [2.3962687744997933, 48.85005708724208], [2.396248631593699, 48.849932294867855], [2.396228645648749, 48.84981007721518], [2.39620850293433, 48.84968528480652], [2.396188515825962, 48.84956306621386], [2.396168374665699, 48.8494382737776], [2.39617753703118, 48.84942880666246], [2.396368179435802, 48.849386027709684], [2.396542697348485, 48.84934609811786], [2.396544217547607, 48.84934568039136], [2.39668579895719, 48.849300009373636], [2.396822048179448, 48.84925441832913], [2.396824470455147, 48.849253416070546], [2.396934962661613, 48.84919756113162], [2.397054069724754, 48.849135942380535], [2.397056879319432, 48.84913397076764], [2.397188044107978, 48.84900715467571], [2.39731916396898, 48.84888169352793], [2.3973205045065242, 48.848880076947836], [2.39739888465928, 48.84876019312342], [2.397478186219542, 48.84863589895035], [2.3974792302153363, 48.84863293903931], [2.397487418989958, 48.848541459360845], [2.397504264586692, 48.8483757636334], [2.397512453287455, 48.84828428303277], [2.397477910342506, 48.848252196407294], [2.39746140441503, 48.84825568551512], [2.397344380211628, 48.8482660889056], [2.39715028628404, 48.84828241643436], [2.396964427544809, 48.84829893894646], [2.396770333386243, 48.848315264959055], [2.396584473036333, 48.848331787772835], [2.396390378636394, 48.848348113168576], [2.396204518059287, 48.84836463449234], [2.396010423407564, 48.84838096017052], [2.396009855844534, 48.848381018461374], [2.395840222314597, 48.84840093705538], [2.395642184265597, 48.848429906025515], [2.395472550435998, 48.84844982409738], [2.3954093400531082, 48.848459070220194], [2.395390404684311, 48.84845864177155], [2.395370607607886, 48.848466710557105], [2.395235780879847, 48.848486432757674], [2.3950450583012612, 48.8485146031178], [2.39484702074096, 48.84854357077568], [2.394656297743114, 48.84857174051469], [2.394458259760039, 48.84860070662832], [2.394267536342945, 48.84862887574612], [2.394069497916206, 48.84865784211405], [2.393878774079769, 48.848686010610756], [2.393680735219821, 48.848714976333696], [2.393490010964249, 48.84874314420924], [2.393291971671101, 48.84877210928724], [2.393138027432695, 48.84879484394465], [2.393107244512517, 48.84880119732447], [2.393123300629202, 48.84884058592351], [2.393081810668385, 48.84897179442114], [2.393041585480041, 48.849099578272465], [2.393000095107282, 48.849230786711246], [2.392959870881327, 48.84935857051229], [2.39291837873394, 48.849489778885314], [2.392878154107697, 48.84961756262914], [2.392837927921495, 48.84974534633787], [2.392796436521811, 48.849876554629944], [2.392756209935305, 48.85000433828145], [2.392714718123658, 48.8501355465146], [2.392705973739471, 48.85014217532802], [2.392508553520565, 48.85018884870055], [2.392310024139475, 48.85023501337554], [2.392301163082659, 48.85024182503447], [2.392279493293555, 48.8503181770325], [2.392251896871307, 48.850414502316916], [2.392256531574369, 48.85042268658379], [2.392279505065385, 48.85042607421966], [2.392481461434916, 48.85042325510733], [2.392687981126554, 48.85042048309958], [2.392701065560507, 48.85042640070091], [2.392732335290055, 48.85048313857719], [2.392763539286476, 48.850545406226324], [2.392773674003311, 48.850550918529414], [2.392796819496554, 48.850546686725274], [2.39296392354112, 48.85057018753728], [2.393175943400794, 48.85060057742779], [2.393343047778674, 48.85062407860849], [2.393555069451884, 48.85065446693337], [2.393722172810836, 48.85067796757655], [2.393934194913926, 48.850708356127406], [2.394101299989829, 48.85073185534754], [2.394111218234499, 48.85074381119659], [2.394030815295674, 48.850885205754814], [2.39395709301153, 48.85101188920769], [2.393883368995752, 48.85113857349312], [2.393802964829591, 48.85127996784806], [2.3937895331500982, 48.85130305000863], [2.3937893453381083, 48.851315094074195]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 49, "roussel_fabien": 24.0, "nb_emargement": 1471.0, "nb_procuration": 114.0, "nb_vote_blanc": 18.0, "jadot_yannick": 150.0, "le_pen_marine": 76.0, "nb_exprime": 1451.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 6, "nb_inscrit": 1796.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1471, "quartier_bv": "44", "geo_point_2d": [48.84965520821719, 2.3949259962487894], "melenchon_jean_luc": 505.0, "poutou_philippe": 11.0, "macron_emmanuel": 444.0}, "geometry": {"type": "Point", "coordinates": [2.3949259962487894, 48.84965520821719]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0c0e2a4734789c2f2484b5e9fa3d2f4e8b4ab838", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 192, "zemmour_eric": 185.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "8-9", "geo_shape": {"coordinates": [[[2.323331753483813, 48.879022669472924], [2.323365775025564, 48.87900522489575], [2.323397441035874, 48.87887228059273], [2.323427473180431, 48.87874061218343], [2.323459138872362, 48.87860766783215], [2.323489172071785, 48.87847599938346], [2.32352083744534, 48.87834305498395], [2.32355086898455, 48.87821138558114], [2.323582534039633, 48.8780784411334], [2.323612566622025, 48.8779467725905], [2.32364423135874, 48.8778138280945], [2.323674263632573, 48.87768215950451], [2.323705928050925, 48.87754921496027], [2.3237359586527973, 48.877417546315506], [2.323767622764472, 48.87728460082378], [2.323797654421199, 48.87715293213959], [2.323829318202844, 48.87701998749891], [2.3238593495510242, 48.87688831876765], [2.32389101301432, 48.87675537407874], [2.323921042690576, 48.876623705292744], [2.323952705835532, 48.87649076055559], [2.323982736578309, 48.87635909083092], [2.324014399404926, 48.87622614604553], [2.324044428464129, 48.87609447716539], [2.324076090972414, 48.87596153233181], [2.324106121086462, 48.8758298634123], [2.324137783276418, 48.87569691853048], [2.324167813093612, 48.87556524866459], [2.324199474965244, 48.8754323037346], [2.324229503098901, 48.87530063471322], [2.324246654948643, 48.875248094145576], [2.324239595796119, 48.87524415566263], [2.324176938276406, 48.875235332862815], [2.3239687610690343, 48.875205099747205], [2.3237739950601313, 48.87517767511918], [2.323772309288, 48.87517751001059], [2.323574374946917, 48.875166353284484], [2.323372051158927, 48.87515377924314], [2.323174116993766, 48.875142621854984], [2.322971793406281, 48.875130046237636], [2.322773859417055, 48.87511888818742], [2.322571537370052, 48.87510631280027], [2.322373602193424, 48.87509515408032], [2.322171280347062, 48.875082577117176], [2.32197334670963, 48.87507141774287], [2.321771023677071, 48.875058840994534], [2.321770319520772, 48.87505878484324], [2.3215774957146342, 48.87503980792997], [2.321381518954458, 48.87502079304532], [2.321188696793866, 48.87500181551287], [2.320992720318483, 48.874982799991], [2.3207998984285823, 48.8749638227309], [2.320603922249828, 48.87494480567261], [2.320411100642245, 48.87492582778562], [2.320215124736672, 48.87490681098945], [2.320208214850765, 48.874904729349666], [2.320094913775097, 48.87484331121639], [2.319939939450985, 48.874755329862445], [2.319939674244967, 48.87475475727516], [2.319903644146542, 48.874732562827695], [2.319737270563662, 48.87464764343794], [2.319582297425955, 48.87455966160535], [2.319577401731925, 48.874558073423124], [2.319385546093475, 48.87452499051612], [2.319181732350673, 48.8744902330674], [2.318989875850102, 48.874457149516466], [2.318786064000025, 48.87442239139973], [2.318594208000768, 48.87438930721265], [2.318390396680198, 48.87435454842011], [2.318198541182062, 48.874321463596814], [2.317994729027789, 48.87428670412075], [2.317802875394201, 48.874253618669044], [2.317599063769454, 48.874218858517146], [2.3174888136501552, 48.87419984564685], [2.317465656560742, 48.87420128655666], [2.317446271839698, 48.87424019300085], [2.317357322876968, 48.87436249067416], [2.31726821959216, 48.87448789640839], [2.31717926978835, 48.87461019392196], [2.317090165651098, 48.8747355994955], [2.317001215006198, 48.874857896849285], [2.316912110016493, 48.87498330226215], [2.316912109465941, 48.87499093315561], [2.316954952484083, 48.875056196281264], [2.317012401418785, 48.875137095000355], [2.317027439827446, 48.87514209569185], [2.317203652664732, 48.87511868386212], [2.317384673399781, 48.87509220636173], [2.31756088591949, 48.87506879310582], [2.317741904936204, 48.875042315056234], [2.317918117126538, 48.87501890127343], [2.318099137151592, 48.87499242269023], [2.318275349000775, 48.87496900927977], [2.318456368682487, 48.87494252925593], [2.318472810483909, 48.874952608232505], [2.318449250674133, 48.8750590907873], [2.318412823333768, 48.87521241589616], [2.318389261908719, 48.875318899305604], [2.318352834210056, 48.8754722243601], [2.318329273919958, 48.87557870684112], [2.318340498353728, 48.87558897016139], [2.318547402593886, 48.875611749398225], [2.318741874340679, 48.87563417872781], [2.318753110831635, 48.875642276468916], [2.318771136181499, 48.87578231976952], [2.318787347397443, 48.8759177373195], [2.31880537292293, 48.87605778147924], [2.318821584313728, 48.876193198990734], [2.318839608674994, 48.87633324220334], [2.318855820240543, 48.876468659676384], [2.318872033253672, 48.876604077138374], [2.3188900578927782, 48.876744120291164], [2.318890956821368, 48.87674669571374], [2.31896391860691, 48.87686941178387], [2.319038218878277, 48.876992917831615], [2.319111181367575, 48.87711563288529], [2.319185482339404, 48.877239138814055], [2.319258445508852, 48.877361854649855], [2.319332747181152, 48.87748536045964], [2.319405711042414, 48.87760807617829], [2.319480013415197, 48.87773158186906], [2.3195529779684882, 48.877854297470535], [2.3196272796783433, 48.8779778030346], [2.319700244923565, 48.87810051851886], [2.319774548697335, 48.87822402397169], [2.319772281584093, 48.87825405972687], [2.319825462868991, 48.87826048727968], [2.319974060861239, 48.87834595545093], [2.320121630772781, 48.87843166940393], [2.320270229739462, 48.878517137194336], [2.320417800635193, 48.87860284986966], [2.320566400576312, 48.878688317279156], [2.320713972432767, 48.878774030475334], [2.32086257336016, 48.87885949660462], [2.321010146189078, 48.87894520942246], [2.321158748079091, 48.87903067607015], [2.3213063218804812, 48.87911638850951], [2.321454924756667, 48.879201853877014], [2.321602499530532, 48.879287565938], [2.32175110336946, 48.87937303182386], [2.321898679127618, 48.879458742607184], [2.321913493565333, 48.87946013145427], [2.322088487115446, 48.879405843952725], [2.322266042349801, 48.8793505103803], [2.322441035164094, 48.879296222358015], [2.3226185896384592, 48.8792408891565], [2.322793581728626, 48.87918659971421], [2.322971135454702, 48.87913126598433], [2.323146128160798, 48.879076976928296], [2.323323681138584, 48.87902164267009], [2.323331753483813, 48.879022669472924]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 9, "roussel_fabien": 14.0, "nb_emargement": 1359.0, "nb_procuration": 76.0, "nb_vote_blanc": 6.0, "jadot_yannick": 80.0, "le_pen_marine": 55.0, "nb_exprime": 1352.0, "nb_vote_nul": 1.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1660.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1359, "quartier_bv": "32", "geo_point_2d": [48.87667360972727, 2.3212087421623906], "melenchon_jean_luc": 164.0, "poutou_philippe": 6.0, "macron_emmanuel": 609.0}, "geometry": {"type": "Point", "coordinates": [2.3212087421623906, 48.87667360972727]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e4b5d248f0847e7779cec910606c0be9b681cb22", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 55, "zemmour_eric": 60.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "11-1", "geo_shape": {"coordinates": [[[2.382664689821651, 48.859540007538186], [2.382679554821073, 48.85953160338826], [2.382753627320985, 48.85945727679779], [2.382874074253629, 48.85933704206846], [2.3828740866689992, 48.85933702954165], [2.382979800694581, 48.85923058303927], [2.383100246581228, 48.85911034805775], [2.383205961047652, 48.85900390134085], [2.383326405888368, 48.85888366610715], [2.383432118069986, 48.858777219161674], [2.383552563227604, 48.85865698368279], [2.383658274487253, 48.85855053651587], [2.383664456729465, 48.85853857287062], [2.383620600780727, 48.85851916841621], [2.383441651587419, 48.858474466349236], [2.383260947125084, 48.85842930888887], [2.383081998548974, 48.85838460628044], [2.38290129471011, 48.858339448273384], [2.382722346751202, 48.858294745123516], [2.382541643546269, 48.858249585670414], [2.38236269619391, 48.85820488287842], [2.382181994975269, 48.8581597228856], [2.382003048240112, 48.85811501955219], [2.381822346282052, 48.858069859005596], [2.381643400164003, 48.85802515513071], [2.381462698829336, 48.85797999403741], [2.381455414029523, 48.85796745995096], [2.3815500915493, 48.85784637910924], [2.381643698238117, 48.85772729009922], [2.381738374894608, 48.857606208183014], [2.381831980710932, 48.85748711989924], [2.381926656493472, 48.85736603780789], [2.382020261447991, 48.857246949351065], [2.382114936356591, 48.85712586708455], [2.382208540459977, 48.85700677755541], [2.382303215857521, 48.85688569512078], [2.382396817725583, 48.85676660631083], [2.3823971477177173, 48.85675877379112], [2.382353591555781, 48.85669492998042], [2.38229470466842, 48.856609640292895], [2.382302169147561, 48.85660207573339], [2.382296502423087, 48.856583079223235], [2.382261932095381, 48.856564085495016], [2.382243996695549, 48.856564370631055], [2.382090112991911, 48.85665755801715], [2.381952196684389, 48.8567411066157], [2.381814281297344, 48.856824655056094], [2.381660394693581, 48.856917841860664], [2.381522478370833, 48.85700138995144], [2.381368592086193, 48.85709457637299], [2.381230673464858, 48.85717812410711], [2.381076786136256, 48.85727131013855], [2.380938867942088, 48.85735485753012], [2.380784978206837, 48.857448043164425], [2.380647059076949, 48.857531590206364], [2.380493169660612, 48.85762477545762], [2.380411762329498, 48.85767836790747], [2.380396324911662, 48.857680136135635], [2.380233415286944, 48.85762946054622], [2.380073325481995, 48.857579280490384], [2.379910416486765, 48.85752860445666], [2.379750328665664, 48.85747842397123], [2.379735263968665, 48.85747750859321], [2.379723435604674, 48.85748683917224], [2.379647467311701, 48.857626393791506], [2.379573109778192, 48.85776479114379], [2.379497140677318, 48.8579043456327], [2.379422780985036, 48.85804274284982], [2.379346812439053, 48.858182297215386], [2.379272451950779, 48.85832069430449], [2.37926883108445, 48.85832430888548], [2.37912355636442, 48.858412455707594], [2.378976635225372, 48.858501128016876], [2.378831358155073, 48.858589274463185], [2.378684436030964, 48.858677945500276], [2.3785391593254, 48.85876609248417], [2.378392236205403, 48.8588547631484], [2.3782469571602762, 48.858942908857166], [2.3781000330336513, 48.85903158004777], [2.377954753001251, 48.85911972538775], [2.377807827889357, 48.859208395306226], [2.377662548232517, 48.859296540284454], [2.377515622114077, 48.859385210729336], [2.377370340106812, 48.85947335533174], [2.377223413003202, 48.85956202450442], [2.377078129997897, 48.8596501696373], [2.376931201898266, 48.85973883843709], [2.376921422847988, 48.859756686312366], [2.37693441092214, 48.85976706224386], [2.377018179545685, 48.85979242194424], [2.377141293562373, 48.85983004391229], [2.377173344476279, 48.859828132337746], [2.377182982325233, 48.859808521889185], [2.37736439630812, 48.85974922680092], [2.3775418455312423, 48.859691360560404], [2.37772326006071, 48.859632064928945], [2.377900708496862, 48.85957419725087], [2.378082122199224, 48.859514901968474], [2.378259569837759, 48.85945703375216], [2.378440981360918, 48.859397737912396], [2.378618428201838, 48.8593398691579], [2.378799840271467, 48.85928057277493], [2.378977286314767, 48.859222703482196], [2.379158696205096, 48.85916340654189], [2.379336141450877, 48.85910553671095], [2.379343384122402, 48.8590994955911], [2.3793846488140042, 48.85898140324197], [2.37942716822268, 48.8588605986482], [2.379468431161544, 48.85874250713698], [2.379510950180904, 48.85862170248747], [2.37952875388861, 48.85861525474913], [2.379731696246864, 48.85866241814974], [2.379927570176603, 48.85870755072426], [2.380130513255363, 48.858754713444604], [2.380326387877541, 48.85879984536261], [2.380529333039727, 48.85884700740974], [2.380725208354238, 48.858892138671195], [2.380730477056832, 48.85889436843648], [2.380844903052866, 48.85897243384522], [2.380956955198513, 48.859049913973564], [2.380961465358523, 48.859051977022546], [2.381126689065468, 48.85909851930803], [2.381292830743834, 48.859145029234774], [2.381458055031089, 48.859191571958114], [2.381624197302081, 48.85923808142096], [2.381789422191102, 48.859284622783605], [2.381955565054613, 48.85933113178242], [2.382120790524052, 48.859377673583], [2.38228693397998, 48.85942418211786], [2.382452160051269, 48.85947072255769], [2.382618304099711, 48.859517230628676], [2.382664689821651, 48.859540007538186]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 1, "roussel_fabien": 28.0, "nb_emargement": 1443.0, "nb_procuration": 125.0, "nb_vote_blanc": 15.0, "jadot_yannick": 176.0, "le_pen_marine": 52.0, "nb_exprime": 1424.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1817.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1443, "quartier_bv": "43", "geo_point_2d": [48.858442933980164, 2.3808597599704533], "melenchon_jean_luc": 504.0, "poutou_philippe": 6.0, "macron_emmanuel": 476.0}, "geometry": {"type": "Point", "coordinates": [2.3808597599704533, 48.858442933980164]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3d4ce02bf9de37def96217fc19b8e306cf9adbb1", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 41, "zemmour_eric": 64.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-32", "geo_shape": {"coordinates": [[[2.405024907974186, 48.86510827984656], [2.405047705852851, 48.86511550695448], [2.40514578354635, 48.86522169743173], [2.405242317769014, 48.865325807169135], [2.405340396255129, 48.86543199746678], [2.405436931256411, 48.86553610702742], [2.405535010535152, 48.86564229714538], [2.405631546315056, 48.86574640652929], [2.405729626386431, 48.86585259646761], [2.40582616294507, 48.865956705674755], [2.405924243809087, 48.86606289543338], [2.406020779783145, 48.86616700445701], [2.406022014250995, 48.86616813026001], [2.406158129937363, 48.86627395906101], [2.406297344078211, 48.866382113464546], [2.406312514767361, 48.866398273384874], [2.406320910058477, 48.86639855964851], [2.406469580564049, 48.86649732398577], [2.406616486946057, 48.86659519443177], [2.40676515857318, 48.866693958384325], [2.406912067438388, 48.866791827557606], [2.407060738813799, 48.866890592017974], [2.407207648788738, 48.86698846081107], [2.407356322659092, 48.86708722399421], [2.4075032323704972, 48.86718509329965], [2.40765190736243, 48.86728385609805], [2.4077988195468363, 48.86738172503], [2.407818306107718, 48.86738164607453], [2.4079549423407283, 48.86728838263595], [2.4080861869627093, 48.86719760871848], [2.408222822243633, 48.86710434405928], [2.408354065924949, 48.86701357073225], [2.408365169017423, 48.867010822381644], [2.408563281773913, 48.86702275455648], [2.408765046829484, 48.8670349085943], [2.408963158406119, 48.86704684010027], [2.409164923658367, 48.86705899256441], [2.409363036771127, 48.86707092431426], [2.409564800846791, 48.867083076097295], [2.409762914152915, 48.86709500628574], [2.409964679768086, 48.86710715830045], [2.410162791894224, 48.86711908782002], [2.410364557706122, 48.86713123826108], [2.410562671368376, 48.86714316802446], [2.410764437366804, 48.867155317791244], [2.410962549859227, 48.867167245986465], [2.4111643160340073, 48.86717939597813], [2.411362430072706, 48.86719132351796], [2.411564196444163, 48.86720347193597], [2.411611570887943, 48.86720632460886], [2.411636122114187, 48.86721187819719], [2.41164430614688, 48.867207950552164], [2.41179504456202, 48.86721702560831], [2.411981056635425, 48.8672282055531], [2.412179169683591, 48.86724013173379], [2.41236518329523, 48.8672513101888], [2.41256329650896, 48.8672632366327], [2.412749308922375, 48.86727441448382], [2.412947423685297, 48.867286339399044], [2.413133436253497, 48.86729751755222], [2.413331551192108, 48.86730944183142], [2.413517563935347, 48.86732061848808], [2.413715679039718, 48.86733254303047], [2.413901691947857, 48.86734371908993], [2.413925986926249, 48.86734505575924], [2.41393358552271, 48.867337413528574], [2.413932284666378, 48.867295521438365], [2.413927067568896, 48.867163339212006], [2.413923568851816, 48.86705060006091], [2.413922758264937, 48.86702450362135], [2.413917542592027, 48.866892320469596], [2.413914738994105, 48.866802009672526], [2.413912687551996, 48.86673596127984], [2.413907471923308, 48.86660377899246], [2.413903801589801, 48.8664855817621], [2.413898584655822, 48.86635339853844], [2.413894915713125, 48.86623520218703], [2.4138896988266643, 48.86610301893309], [2.413885512628671, 48.86596816068298], [2.413880295792811, 48.86583597739675], [2.413876373767786, 48.86570962904684], [2.413871156981005, 48.86557744572932], [2.413867234997608, 48.86545109734962], [2.413862019623002, 48.86531891400749], [2.41385809768123, 48.865192565597965], [2.413825171154466, 48.86516128272067], [2.413823752561074, 48.86516124339657], [2.4136156739971373, 48.86515975824254], [2.41340570919473, 48.865157999975565], [2.413197630645438, 48.86515651499407], [2.412987665870217, 48.865154755993686], [2.412779587345904, 48.86515327028537], [2.412569623960974, 48.86515151055834], [2.412361544108599, 48.86515002321723], [2.412151580750781, 48.86514826275681], [2.411943502276261, 48.86514677559492], [2.411733537582671, 48.86514501439441], [2.411729283245859, 48.86514452762576], [2.411536190180189, 48.86510077613059], [2.411347030935629, 48.86505755449346], [2.411153938513355, 48.865013802378115], [2.410964779891568, 48.86497058103276], [2.410775621583653, 48.86492735938674], [2.410582530123842, 48.864883606344364], [2.410393372448867, 48.86484038409082], [2.410200281642644, 48.86479662952902], [2.410011124600618, 48.864753406667944], [2.409818034427629, 48.86470965238531], [2.409628878018554, 48.86466642891671], [2.409435788488985, 48.86462267401396], [2.409424585869497, 48.864618139124204], [2.409405601690046, 48.8646164401231], [2.409212512533282, 48.86457268485815], [2.40903718327491, 48.8645330729964], [2.408861854272958, 48.86449346177563], [2.408668766028695, 48.86444970562858], [2.408493437587441, 48.86441009386517], [2.408300349971719, 48.86436633622117], [2.408293160394054, 48.864362535139854], [2.408196917243647, 48.86425906416731], [2.408084875302271, 48.864144728284714], [2.407988632957804, 48.864041258023605], [2.407876591941969, 48.86392692192352], [2.407780350423665, 48.86382345057527], [2.407700602599017, 48.86374206762744], [2.407686407958135, 48.86373168733809], [2.407627432750471, 48.863757961961234], [2.407459673054499, 48.8638372024631], [2.407290477088948, 48.863917076843244], [2.407122716367986, 48.86399631686145], [2.406953519369059, 48.86407619075377], [2.406785757633445, 48.864155429388966], [2.40661655960114, 48.86423530279343], [2.406448796830394, 48.86431454184423], [2.406279597764706, 48.86439441476086], [2.406111833969162, 48.86447365332792], [2.405942635233064, 48.86455352576347], [2.4057748690598, 48.864632762940765], [2.40560566929032, 48.864712634888456], [2.405603973642289, 48.86471358246529], [2.405461955309643, 48.86480543170489], [2.405318427627587, 48.864899894846296], [2.405176408273329, 48.86499174463089], [2.405032879560197, 48.865086207413945], [2.405029613624037, 48.86508965453485], [2.405024907974186, 48.86510827984656]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 32, "roussel_fabien": 23.0, "nb_emargement": 1151.0, "nb_procuration": 70.0, "nb_vote_blanc": 12.0, "jadot_yannick": 77.0, "le_pen_marine": 83.0, "nb_exprime": 1137.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1534.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1152, "quartier_bv": "78", "geo_point_2d": [48.865831022540966, 2.4095774374517167], "melenchon_jean_luc": 504.0, "poutou_philippe": 4.0, "macron_emmanuel": 290.0}, "geometry": {"type": "Point", "coordinates": [2.4095774374517167, 48.865831022540966]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "be5425277143cc62b17ec94f3bde9bbb5ee6d4cf", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 30, "zemmour_eric": 48.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "18-61", "geo_shape": {"coordinates": [[[2.361944752834472, 48.89322343234297], [2.361939798706475, 48.89319275530751], [2.361910125686837, 48.89305812090522], [2.361879994189246, 48.89292140210775], [2.361850321478896, 48.89278676765733], [2.361820190295477, 48.89265004881097], [2.361790517883287, 48.89251541521164], [2.361760387013932, 48.89237869631642], [2.361730714922143, 48.89224406176971], [2.361700583003057, 48.8921073428183], [2.361712298229492, 48.892097134115254], [2.361914802800122, 48.8920795389439], [2.362117090152314, 48.892061962058506], [2.362319594460368, 48.89204436530279], [2.362521880175461, 48.8920267877258], [2.362724385562691, 48.892009191191555], [2.362926671004473, 48.89199161293018], [2.363129174765404, 48.89197401480427], [2.3633314612975482, 48.89195643586585], [2.363343275352733, 48.89194681568533], [2.363328332447605, 48.89182138072963], [2.36331352324289, 48.89169706342562], [2.363298580492109, 48.89157162753844], [2.363283770065688, 48.89144731019517], [2.363268827447262, 48.891321875174945], [2.363254018526689, 48.891197557806954], [2.363239076062607, 48.89107212185522], [2.3632242672841, 48.89094780445524], [2.363209324952366, 48.89082236937049], [2.363194516315922, 48.890698051938514], [2.363179574138529, 48.89057261592224], [2.363164765644147, 48.89044829845832], [2.363149823610094, 48.890322862409796], [2.363135013894131, 48.890198544906625], [2.363120071992423, 48.89007310972508], [2.363105263782162, 48.889948792197224], [2.363099555942766, 48.88991235994054], [2.363076513383155, 48.889912786862766], [2.363075447377302, 48.889912858534295], [2.362882760702642, 48.889930962952626], [2.362689623905901, 48.889948615903336], [2.362496936975681, 48.88996671880092], [2.362303801268239, 48.88998437203531], [2.362111112707931, 48.89000247430417], [2.361917976737061, 48.890020126915694], [2.361725287910308, 48.89003822856311], [2.361532151687048, 48.89005587965251], [2.361339463946469, 48.890073981585054], [2.361146326096066, 48.89009163204428], [2.360953638100193, 48.89010973245611], [2.360760499975358, 48.89012738319174], [2.360567811712965, 48.89014548298213], [2.360374673335784, 48.890163132195596], [2.360181984796037, 48.890181232263785], [2.359988847519221, 48.89019888086168], [2.35989632354429, 48.890197804433924], [2.359889095507885, 48.89021498693263], [2.3598884901627493, 48.89034299153579], [2.359883294088604, 48.89047067300808], [2.359882688726233, 48.890598677581416], [2.3598774912485903, 48.8907263590164], [2.359876885868982, 48.890854363559846], [2.359871689715248, 48.89098204497214], [2.359871082943684, 48.891110050377726], [2.35986588676126, 48.89123773086071], [2.359865281336223, 48.891365736243706], [2.359860083750381, 48.89149341668945], [2.359859478308003, 48.891621422042554], [2.359854282035033, 48.8917491033648], [2.359853676586577, 48.89187710778879], [2.359848478910072, 48.89200478907371], [2.359848398552068, 48.892005556664785], [2.359830210331504, 48.892116245955144], [2.359808424494767, 48.89224343563369], [2.359790237469925, 48.892354124901246], [2.359768451436009, 48.89248131454493], [2.359750264243098, 48.89259200378242], [2.359737836415816, 48.89266455661456], [2.359717757023316, 48.89271427793569], [2.359728128386498, 48.89272167184924], [2.359718769962127, 48.89277630862229], [2.35969903863419, 48.892900085477834], [2.359677252149047, 48.89302727504158], [2.359657522002181, 48.89315105096999], [2.359635735310504, 48.89327824049705], [2.359631487840821, 48.8933048799405], [2.359632651744564, 48.89330794385438], [2.359694287031265, 48.893312183680464], [2.359905197291447, 48.89330701059437], [2.360124450470077, 48.893300502159306], [2.360335362003918, 48.89329532832279], [2.360554615079576, 48.89328881910009], [2.360765526523341, 48.893283644505864], [2.360984779484977, 48.893277135394776], [2.361195690838656, 48.893271960042945], [2.361363633224144, 48.89326697245551], [2.361414943708337, 48.89326544924492], [2.361429694579939, 48.89326953078039], [2.361455188779358, 48.89325982546266], [2.361652936774793, 48.89325223008931], [2.361883673438917, 48.893228581945316], [2.361932886619072, 48.89322669120614], [2.361944752834472, 48.89322343234297]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 61, "roussel_fabien": 23.0, "nb_emargement": 1338.0, "nb_procuration": 92.0, "nb_vote_blanc": 14.0, "jadot_yannick": 107.0, "le_pen_marine": 77.0, "nb_exprime": 1322.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1763.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1338, "quartier_bv": "72", "geo_point_2d": [48.89151343425908, 2.361356193074261], "melenchon_jean_luc": 648.0, "poutou_philippe": 11.0, "macron_emmanuel": 315.0}, "geometry": {"type": "Point", "coordinates": [2.361356193074261, 48.89151343425908]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b997a8d85483ecd78f7c62c252742117f876fb8e", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 50, "zemmour_eric": 74.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-24", "geo_shape": {"coordinates": [[[2.341910006096793, 48.88243376212146], [2.341887883568617, 48.88242853051841], [2.34175142893003, 48.882402290618224], [2.341546737948458, 48.88236075269356], [2.341366029098988, 48.882326001401914], [2.341161338713195, 48.88228446371477], [2.340980629022197, 48.88224971183152], [2.340775939255145, 48.8822081725833], [2.34059523007457, 48.88217342101521], [2.340390542278217, 48.88213188111275], [2.340209833619652, 48.882097128960545], [2.340005145067045, 48.882055588388795], [2.339824436930396, 48.88202083565249], [2.3398178379111663, 48.88202066526357], [2.339754985151782, 48.88202930298436], [2.339678621867769, 48.882039981384885], [2.339627516030271, 48.8820312331959], [2.339602101024591, 48.8820506085051], [2.339487609272295, 48.88206661814093], [2.339301276146337, 48.882095420826], [2.339110422045632, 48.882122108218354], [2.33892408716041, 48.882150909408146], [2.338733232663063, 48.88217759619789], [2.338546898722815, 48.88220639770601], [2.3383560424653, 48.88223308388555], [2.338169708129344, 48.88226188390591], [2.337978852838631, 48.88228856949042], [2.337854658386668, 48.88230776510576], [2.337839576141004, 48.88232283902547], [2.337851268236495, 48.88234328074599], [2.337937704625321, 48.882454931428605], [2.338033672855814, 48.8825771092508], [2.338120110023807, 48.88268875977808], [2.338216079101713, 48.88281093832735], [2.338302517060309, 48.88292258779989], [2.33839848699717, 48.883044766177036], [2.338484925734848, 48.88315641549417], [2.338580896530573, 48.8832785936991], [2.3386673360474433, 48.883390242860806], [2.338763307702043, 48.883512420893574], [2.338849747986696, 48.88362407079909], [2.3389457205116, 48.88374624776039], [2.339004172066557, 48.883821745496334], [2.339026877664354, 48.88384197987272], [2.33907735662409, 48.88382805091994], [2.339208709769609, 48.88377647000137], [2.339426905013426, 48.88368424442822], [2.339558257449994, 48.88363266311944], [2.339578826367677, 48.88363967084729], [2.3395954406512818, 48.883776255649416], [2.339612453781432, 48.88391085960878], [2.339629068239755, 48.884047444372555], [2.339646081545423, 48.88418204829394], [2.3396621955403942, 48.88419013850689], [2.339734052021726, 48.88418120874522], [2.339784156378024, 48.88417511059553], [2.33979751776866, 48.884176054824806], [2.339813752678797, 48.884171059534744], [2.339952335116154, 48.88415419404088], [2.340128874879077, 48.88412914054839], [2.340317562693813, 48.88410617632339], [2.340494103481822, 48.884081122298774], [2.340682790950124, 48.884058158396506], [2.340859330036155, 48.88403310382479], [2.341048017180796, 48.88401013844664], [2.341224555928217, 48.8839850833353], [2.341413242726423, 48.88396211827987], [2.341589781146702, 48.883937061729675], [2.341599663452027, 48.883931457490576], [2.341647240606338, 48.88384866059832], [2.341738066549255, 48.88369059551773], [2.3417856432522, 48.88360779945161], [2.341786002523485, 48.88360213924398], [2.341754135698659, 48.88352866773625], [2.341722773854201, 48.88345635552987], [2.341722332346396, 48.8834528789894], [2.341743066310867, 48.88333109325447], [2.341763586631963, 48.88321055909576], [2.341784106846702, 48.88309002581962], [2.341804840533607, 48.88296823913454], [2.341825360557381, 48.88284770582478], [2.341846092687791, 48.88272591909823], [2.341866612520605, 48.88260538575483], [2.34188734581025, 48.88248359990107], [2.341910006096793, 48.88243376212146]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 24, "roussel_fabien": 22.0, "nb_emargement": 1319.0, "nb_procuration": 102.0, "nb_vote_blanc": 14.0, "jadot_yannick": 134.0, "le_pen_marine": 53.0, "nb_exprime": 1305.0, "nb_vote_nul": 0.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1634.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1319, "quartier_bv": "70", "geo_point_2d": [48.88302149805283, 2.3400776748590633], "melenchon_jean_luc": 430.0, "poutou_philippe": 6.0, "macron_emmanuel": 472.0}, "geometry": {"type": "Point", "coordinates": [2.3400776748590633, 48.88302149805283]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "97c374aee4c53dd3ed017dccc4b983f026588159", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 104, "zemmour_eric": 108.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-23", "geo_shape": {"coordinates": [[[2.352948138053721, 48.85132692070365], [2.352930982751185, 48.85128229095008], [2.352859802059771, 48.85113640015779], [2.352791040703701, 48.85099358199656], [2.352722279724638, 48.85085076377754], [2.35265110020696, 48.85070487280447], [2.352645818841353, 48.85070020445264], [2.352475699079734, 48.850623454701214], [2.352306849827984, 48.85054660275554], [2.352136731067049, 48.850469852511544], [2.351967882812799, 48.850393000076906], [2.351797765052543, 48.8503162493404], [2.351628917795993, 48.850239396416825], [2.351458801036416, 48.85016264518774], [2.351289953414771, 48.85008579176784], [2.351119837667067, 48.85000903914694], [2.3509509924056102, 48.849932185245464], [2.350780877647486, 48.84985543303138], [2.350612033383621, 48.849778578640965], [2.350607488697422, 48.84977507166443], [2.35052077387505, 48.8496560108765], [2.350436025690591, 48.849539480686424], [2.3503512765225762, 48.84942295041666], [2.35026456422286, 48.849303890312065], [2.350179815821392, 48.84918735989625], [2.350093104316735, 48.84906829874289], [2.350008356681705, 48.848951768180946], [2.349921644598126, 48.84883270687078], [2.349921935902059, 48.848824539587866], [2.350004164752707, 48.8487239893775], [2.350089331439164, 48.84861982345508], [2.350171561017572, 48.84851927221933], [2.35025672703497, 48.84841510615859], [2.350338954593512, 48.84831455568117], [2.35042411994166, 48.84821038948214], [2.350506348228161, 48.848109837979315], [2.350591512895954, 48.84800567254126], [2.350582759626143, 48.847987131524235], [2.3505541656757503, 48.84798299934921], [2.350358783214383, 48.84792312685872], [2.350164171739971, 48.84786473497766], [2.349968791532686, 48.84780486185132], [2.349774180948115, 48.84774646843044], [2.349578801621058, 48.84768659556016], [2.349384191915218, 48.847628201498715], [2.349188812116982, 48.84756832797783], [2.348994204652299, 48.84750993328326], [2.348798825745516, 48.84745005911914], [2.348604219159466, 48.84739166378402], [2.348550332078651, 48.84737799510924], [2.348534590498914, 48.84739683550369], [2.348507372674637, 48.84744954711467], [2.348485348600054, 48.84749436454827], [2.348484718426787, 48.847498337182195], [2.348513951216733, 48.84765909397269], [2.348538214324901, 48.847810374110324], [2.348538278260374, 48.847811691119475], [2.34853024320049, 48.8479265197394], [2.34852275307844, 48.8480464803556], [2.348514717936904, 48.84816130984958], [2.348507227745371, 48.84828127043952], [2.348499192533424, 48.84839609990827], [2.348491702272407, 48.84851606047194], [2.34847716708255, 48.84853974595716], [2.34849901014381, 48.84855783947289], [2.3485503196793323, 48.848675759381635], [2.348598827037832, 48.84878969693065], [2.348650137027604, 48.84890761677196], [2.348698646182822, 48.84902155426425], [2.348749956615513, 48.849139474937516], [2.34879846485337, 48.849253411458896], [2.348849777102796, 48.849371332072174], [2.348898285774721, 48.84948526852934], [2.348946796010206, 48.84959920586189], [2.348998107584423, 48.849717125468246], [2.348997519615484, 48.84972317494189], [2.348925122099005, 48.84983377064396], [2.348848578197933, 48.84993252437902], [2.348776180063274, 48.85004312086943], [2.348699635572444, 48.85014187449062], [2.348698810975178, 48.850148753678184], [2.348756421699648, 48.85026554565084], [2.348784315330437, 48.85035295934493], [2.34884192646106, 48.8504697521543], [2.348907154814169, 48.850595782292224], [2.348964766499794, 48.85071257411763], [2.349029995454042, 48.85083860416107], [2.349087607683437, 48.850955395901885], [2.349152837238628, 48.85108142585085], [2.349210451374522, 48.8511982175144], [2.3492756801681463, 48.851324247361454], [2.3492766106510983, 48.8513256904918], [2.349374687547127, 48.85144722226218], [2.349464330993186, 48.85155605415221], [2.349562408760592, 48.85167758574363], [2.349652052995102, 48.851786417470464], [2.349750131633897, 48.8519079488828], [2.349839776656665, 48.85201678044645], [2.34987324567205, 48.852060931775874], [2.349910885797012, 48.85205345579655], [2.350090189170987, 48.85200771465625], [2.350262736834881, 48.851954318124754], [2.350263541017099, 48.85195408955872], [2.350442845102243, 48.851908347893264], [2.350624793917456, 48.8518611975328], [2.350804096003222, 48.85181545531479], [2.35098604415591, 48.85176830530036], [2.351165345616135, 48.851722561637914], [2.351347293117604, 48.85167541107024], [2.351526593929884, 48.8516296677619], [2.351708540791319, 48.85158251574167], [2.351709211917366, 48.85158235569529], [2.351888513465569, 48.85153661094893], [2.352081219748975, 48.851494217572345], [2.352260519304714, 48.851448472257516], [2.352453224959431, 48.85140607827845], [2.352454818833121, 48.851405797312154], [2.35263159766474, 48.85137455429362], [2.352843728120003, 48.851346086076575], [2.352928203402632, 48.85133447000873], [2.352948138053721, 48.85132692070365]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 23, "roussel_fabien": 20.0, "nb_emargement": 1201.0, "nb_procuration": 59.0, "nb_vote_blanc": 17.0, "jadot_yannick": 83.0, "le_pen_marine": 68.0, "nb_exprime": 1181.0, "nb_vote_nul": 3.0, "arr_bv": "05", "arthaud_nathalie": 4, "nb_inscrit": 1487.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1201, "quartier_bv": "17", "geo_point_2d": [48.85003737346792, 2.3501838201793817], "melenchon_jean_luc": 278.0, "poutou_philippe": 2.0, "macron_emmanuel": 466.0}, "geometry": {"type": "Point", "coordinates": [2.3501838201793817, 48.85003737346792]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ac8591b1c1c9e38fbadd56dbcbc7926fac9d533b", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 24, "zemmour_eric": 61.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "20-54", "geo_shape": {"coordinates": [[[2.4080067874618543, 48.85302325576382], [2.408019283161785, 48.853027942039226], [2.408073293446138, 48.853037663197604], [2.408268149777766, 48.8530726889379], [2.408461352027164, 48.853107462457544], [2.408656208890849, 48.85314248666439], [2.4088494116578962, 48.853177259555295], [2.4090442690333163, 48.85321228402729], [2.409237472328305, 48.8532470553901], [2.409432328862775, 48.853282079221245], [2.409625532665406, 48.85331685085462], [2.409676129924555, 48.85332594468569], [2.409687291204269, 48.85333066826916], [2.409704187864009, 48.85333125256451], [2.409848449062681, 48.853357181003915], [2.410069593913093, 48.853397046930205], [2.41026445293053, 48.85343206940824], [2.410485597054347, 48.85347193455624], [2.410618705037968, 48.85349585732231], [2.410629981470563, 48.85350089345768], [2.410647207537503, 48.853501759838686], [2.410708960506816, 48.85351285886282], [2.410906541125752, 48.85354904125953], [2.411101401274089, 48.853584062369805], [2.41129898243551, 48.85362024411622], [2.411493843123923, 48.85365526368586], [2.411552500011179, 48.853666005291345], [2.4115665923870733, 48.853666319217545], [2.411580929907921, 48.85363068380017], [2.411613896706528, 48.85352378928894], [2.411646475766589, 48.853418151041005], [2.4116790533420263, 48.8533125118681], [2.411712019738048, 48.85320561729926], [2.41171217728456, 48.85320264752541], [2.411690748378061, 48.85309543243974], [2.411669354465494, 48.8529883847904], [2.411647927097991, 48.852881169683066], [2.411626533351208, 48.85277412290474], [2.411626526772687, 48.852771808847514], [2.411652026506748, 48.852639888214995], [2.41167755942453, 48.85250779325144], [2.411703060252805, 48.85237587348273], [2.411728592922006, 48.85224377757763], [2.411754092129129, 48.85211185776], [2.411779625892202, 48.85197976271866], [2.411805124851089, 48.851847841959554], [2.41183065835543, 48.85171574687597], [2.411856157055932, 48.85158382607467], [2.411881690301543, 48.85145173094882], [2.411907188743665, 48.851319810105345], [2.411932720367823, 48.85118771493056], [2.411958219904149, 48.851055794950895], [2.411983751269592, 48.850923699733876], [2.412009249194969, 48.850791778806055], [2.412034781664421, 48.8506596835535], [2.412060279331429, 48.85052776258348], [2.412085811542167, 48.850395667288694], [2.412111308950811, 48.85026374627648], [2.412136840902841, 48.850131650939474], [2.412162338042978, 48.84999973078444], [2.412187868383752, 48.849867634499205], [2.412213366628228, 48.84973571430868], [2.412238896700163, 48.84960361888055], [2.412264393333739, 48.84947169774181], [2.412289924509667, 48.84933960227815], [2.412315420884894, 48.84920768109729], [2.412340951802028, 48.8490755855914], [2.41233853241399, 48.84906922967977], [2.412222233017007, 48.84896148351754], [2.412101593097507, 48.848854769042646], [2.412092244394048, 48.84884091715108], [2.412066564552273, 48.848844002548454], [2.411912147600009, 48.8488808590398], [2.4117426502150723, 48.848921486815534], [2.411557611645155, 48.84896565151263], [2.411388113708031, 48.84900627878304], [2.411381061181591, 48.84900667847363], [2.411156324879336, 48.84898013264392], [2.410937492294375, 48.84895393292855], [2.4109360096724233, 48.84895381051189], [2.41074514669346, 48.848945008513816], [2.4105598728986, 48.84893639473088], [2.410374599154816, 48.8489277815603], [2.410183736365912, 48.84891897866646], [2.409998462756398, 48.848910364013975], [2.4098076000846422, 48.8489015614193], [2.409793420062385, 48.84890837870915], [2.40977362628861, 48.84896133834882], [2.409755331777999, 48.84901198505071], [2.409747056106153, 48.849020513251105], [2.409751739617758, 48.84902991300229], [2.409705564276427, 48.84915774034215], [2.409659720707269, 48.849284650149926], [2.409613544914506, 48.849412477424984], [2.40956769953447, 48.84953938716177], [2.409521523290263, 48.84966721437209], [2.40947567882461, 48.84979412405125], [2.409429500766365, 48.84992195119011], [2.409383655852502, 48.85004886080497], [2.409337478705395, 48.85017668788574], [2.409291631980717, 48.85030359742958], [2.409245454382149, 48.85043142444558], [2.40919960858215, 48.850558333032524], [2.409153430521922, 48.850686160883065], [2.40910758291098, 48.85081306939895], [2.409061404399275, 48.850940897184735], [2.40901555770282, 48.851067805643034], [2.408969378749836, 48.85119563246469], [2.4089235302321113, 48.85132254175127], [2.408877350827741, 48.85145036850815], [2.4088315032245, 48.85157727773712], [2.4087853233685372, 48.851705104429215], [2.408739473954403, 48.85183201358712], [2.408693293646938, 48.851959840214434], [2.408647445147289, 48.85208674931475], [2.408601595061561, 48.85221365837628], [2.4085554140776493, 48.8523414849065], [2.408554125599116, 48.85234370083031], [2.408465487439231, 48.85245110006062], [2.4083760958052203, 48.852559412827546], [2.408287456911475, 48.85266681190515], [2.40819806453736, 48.852775124518075], [2.408109424909746, 48.852882523442965], [2.408020031795518, 48.85299083590185], [2.4080067874618543, 48.85302325576382]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 54, "roussel_fabien": 22.0, "nb_emargement": 1091.0, "nb_procuration": 22.0, "nb_vote_blanc": 14.0, "jadot_yannick": 34.0, "le_pen_marine": 69.0, "nb_exprime": 1069.0, "nb_vote_nul": 8.0, "arr_bv": "20", "arthaud_nathalie": 10, "nb_inscrit": 1588.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1091, "quartier_bv": "80", "geo_point_2d": [48.85127465755602, 2.410465298726831], "melenchon_jean_luc": 615.0, "poutou_philippe": 11.0, "macron_emmanuel": 186.0}, "geometry": {"type": "Point", "coordinates": [2.410465298726831, 48.85127465755602]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ecf4f02a893641a2795627f563e96215ce5a73b2", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 60, "zemmour_eric": 98.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "1-6", "geo_shape": {"coordinates": [[[2.344799167345059, 48.86164017532197], [2.34478645417646, 48.86161772994517], [2.344754261595293, 48.86155669392002], [2.344675891330682, 48.86140690828862], [2.344631187394768, 48.861322151751], [2.344621266966182, 48.86131630921903], [2.344417007992169, 48.86128627459945], [2.344229881292964, 48.861260153041385], [2.344223609203429, 48.86126020680825], [2.344042545169462, 48.861290085512344], [2.343864188244996, 48.861319291683266], [2.343685831120562, 48.86134849758759], [2.343504766471349, 48.86137837547565], [2.3433264103060543, 48.86140758085027], [2.343145343871162, 48.86143745908478], [2.342966987313464, 48.86146666302288], [2.342785920467018, 48.86149654071196], [2.342607563494345, 48.86152574501216], [2.342426497610788, 48.86155562126408], [2.342425103717467, 48.86155590409444], [2.342233826419697, 48.86160222968069], [2.3420444898212223, 48.8616481204537], [2.341853211846459, 48.86169444542775], [2.341663875940498, 48.86174033560228], [2.341472595925852, 48.86178665995665], [2.341283259349515, 48.861832549525175], [2.341091980020884, 48.86187887327488], [2.3409026427741813, 48.86192476223743], [2.340713303819661, 48.861970651790315], [2.340522023488505, 48.862016973724025], [2.3403326852265183, 48.86206286267842], [2.340141402855497, 48.86210918399238], [2.340136169927322, 48.862109728023725], [2.340011960928313, 48.862106497041964], [2.33987941824338, 48.86210293127262], [2.339868271118422, 48.86210625672924], [2.3397823982669212, 48.86217619925879], [2.339697142210022, 48.86224327350926], [2.339691103222266, 48.862246004784325], [2.339491569763537, 48.8622909646868], [2.339297232028315, 48.86233538725153], [2.339231234832674, 48.86235243065175], [2.339233891739859, 48.86236229767569], [2.339255177074249, 48.86241016966018], [2.33930575730536, 48.86252547996765], [2.339366388090272, 48.86266183829041], [2.339416968811764, 48.86277714852468], [2.339477600180642, 48.86291350676012], [2.339528181392623, 48.86302881692118], [2.339588813345475, 48.863165175069355], [2.339639395048054, 48.86328048515722], [2.339689975611404, 48.86339579520423], [2.339750608426226, 48.8635321523259], [2.339750866287128, 48.86353267177222], [2.339815974646739, 48.86364998108944], [2.339880051300206, 48.86376719203387], [2.339945161618245, 48.86388450036421], [2.340009238850711, 48.86400171121467], [2.3400743483783, 48.864119020341654], [2.340138427564324, 48.864236230206345], [2.340203537675913, 48.86435353923819], [2.340267616078091, 48.86447074900142], [2.340268170785514, 48.86447161722995], [2.340355276170492, 48.864596753890496], [2.340445248340923, 48.864719332342496], [2.340532354554048, 48.86484446974542], [2.340622326205871, 48.86496704802938], [2.340709434633003, 48.865092184383684], [2.340799407129302, 48.865214762507094], [2.340889381411992, 48.86533734055679], [2.340976489736781, 48.86546247666734], [2.341066463500872, 48.865585054548966], [2.341153574028326, 48.865710190510164], [2.341174447450702, 48.86574496256572], [2.3411867422059602, 48.86574698631921], [2.341203584597329, 48.865749757277676], [2.341240112898529, 48.86573590068304], [2.341374215247085, 48.8657043918238], [2.341558127922366, 48.86566207782858], [2.341692229888543, 48.86563056861092], [2.341793693798264, 48.86560722387384], [2.341806451900686, 48.865599439159304], [2.341779671999218, 48.8655595579259], [2.34166906157092, 48.86546821913917], [2.341533301862923, 48.865356551581144], [2.34142269230888, 48.86526521165067], [2.34128693365801, 48.865153543792715], [2.341176324967055, 48.865062203617796], [2.341040567373202, 48.8649505354599], [2.340929959533848, 48.86485919593984], [2.340794202997202, 48.864747527482066], [2.340683596032195, 48.86465618681825], [2.340686294977397, 48.86464326819572], [2.340831139684104, 48.864574657239885], [2.341011447883738, 48.864488446925364], [2.341156291731765, 48.86441983556644], [2.341336598857484, 48.86433362474998], [2.341481441846832, 48.86426501298798], [2.34166174789864, 48.86417880166965], [2.341806590029313, 48.86411018950454], [2.341807206928392, 48.86410991320059], [2.341973835459382, 48.86404001226992], [2.342134005202986, 48.86397258207985], [2.342300632856351, 48.86390268068553], [2.342460801754752, 48.86383525004979], [2.342620970238633, 48.86376781919554], [2.342787596583593, 48.8636979171103], [2.342789535315442, 48.863697238857505], [2.342982263591384, 48.86364246294399], [2.343175961200946, 48.86358796634021], [2.343368688666348, 48.86353318979905], [2.343562385465308, 48.86347869256448], [2.343755112120168, 48.8634239153956], [2.343948808108724, 48.863369417530265], [2.343956451415963, 48.86336386909155], [2.344016937726739, 48.863238318216986], [2.344078374922864, 48.86311365476992], [2.344138860649213, 48.86298810380536], [2.344200298621551, 48.862863440274985], [2.344260783774897, 48.86273788832122], [2.3443222197974, 48.862613224692645], [2.344382704355219, 48.86248767354816], [2.344444139790824, 48.86236300982882], [2.344504623775655, 48.86223745769509], [2.344566058624471, 48.862112793885046], [2.344626542013693, 48.86198724256065], [2.3446879762757282, 48.86186257865985], [2.344695082338499, 48.8618572385729], [2.344793591871487, 48.86182631156981], [2.3448858788545692, 48.861796362188564], [2.344911476464087, 48.861787104127934], [2.344912444099819, 48.861783321372414], [2.344855903339362, 48.8617181248233], [2.344811603718068, 48.86166663926595], [2.344810583727055, 48.861665155154014], [2.34479807331154, 48.86164143561393], [2.344799167345059, 48.86164017532197]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 6, "roussel_fabien": 13.0, "nb_emargement": 965.0, "nb_procuration": 68.0, "nb_vote_blanc": 13.0, "jadot_yannick": 67.0, "le_pen_marine": 59.0, "nb_exprime": 951.0, "nb_vote_nul": 1.0, "arr_bv": "01", "arthaud_nathalie": 2, "nb_inscrit": 1229.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 965, "quartier_bv": "02", "geo_point_2d": [48.862911946721844, 2.341939158207875], "melenchon_jean_luc": 222.0, "poutou_philippe": 0.0, "macron_emmanuel": 384.0}, "geometry": {"type": "Point", "coordinates": [2.341939158207875, 48.862911946721844]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "be11251b5ab312b388e090a9ec981602964c0259", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 50, "zemmour_eric": 72.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "2-4", "geo_shape": {"coordinates": [[[2.347739095070011, 48.86879007099488], [2.347696174243389, 48.86879400913478], [2.347515521840853, 48.86882980304067], [2.347331620180805, 48.86886693246536], [2.347150967274778, 48.868902725818714], [2.346967065097446, 48.86893985468084], [2.346786411688136, 48.86897564748157], [2.346602508993425, 48.86901277578117], [2.346421855080737, 48.86904856802932], [2.346237951857569, 48.86908569666563], [2.346057297452794, 48.86912148746192], [2.345873393712251, 48.86915861553566], [2.345856219594092, 48.86915230003144], [2.345815507261729, 48.869050038222184], [2.345759183276247, 48.86890477896313], [2.345718471327827, 48.86880251709796], [2.345662147880561, 48.868657257760695], [2.345621436316079, 48.86855499583964], [2.345621205100124, 48.86855430208212], [2.345586063096229, 48.86842530166878], [2.345548194691893, 48.86828860503891], [2.345513054399805, 48.86815960547988], [2.345475186380197, 48.86802290879404], [2.345440046459433, 48.86789390828332], [2.345402178824549, 48.867757211541544], [2.345384318489137, 48.86775032741849], [2.345175850186302, 48.867797827109946], [2.345003179575212, 48.867836348151464], [2.344830507334185, 48.867874869834324], [2.34462203803939, 48.86792236765659], [2.344449365231389, 48.86796088878659], [2.344240896607893, 48.86800838594877], [2.344068223244348, 48.86804690562667], [2.343859752554618, 48.86809440301311], [2.343687078624117, 48.86813292213817], [2.343669612496694, 48.868121915537394], [2.343721675096659, 48.86800261812134], [2.343779056078577, 48.8678704982216], [2.343831118165308, 48.86775120163009], [2.343888499967091, 48.86761908075607], [2.343940560188876, 48.86749978408237], [2.343974942371112, 48.86742061810019], [2.343970831087213, 48.86741410950272], [2.343930742028129, 48.8674088840169], [2.343753326965265, 48.867345859399535], [2.343577002921591, 48.867283373807474], [2.343399588714246, 48.86722034865858], [2.343223266871504, 48.86715786344508], [2.343045853519475, 48.8670948377647], [2.34286953252585, 48.867032352023024], [2.342692118666106, 48.866969325803694], [2.342515798521601, 48.86690683953378], [2.342338386880512, 48.866843812790464], [2.342162067585126, 48.866781325992406], [2.341984655436228, 48.866718298710104], [2.341808336989966, 48.866655811383836], [2.341630927070981, 48.8665927826783], [2.341454609473843, 48.86653029482385], [2.341277200398917, 48.866467266486126], [2.341100883651003, 48.86640477810352], [2.341040248359989, 48.866384675788446], [2.3410246045701992, 48.86640007276735], [2.341079299038953, 48.86653398586907], [2.3411334450029972, 48.86666041606412], [2.341188138661748, 48.8667943290771], [2.341242285160543, 48.866920759193164], [2.341296979372417, 48.8670546721249], [2.341351126394598, 48.86718110306121], [2.341405821159606, 48.867315015911736], [2.341459970091068, 48.867441445877326], [2.341514665409218, 48.86757535864652], [2.341568813512313, 48.86770178852561], [2.341622961866876, 48.867828219265], [2.341677658010222, 48.867962131912925], [2.341731806910937, 48.868088561674064], [2.341786503607341, 48.868222474240696], [2.341840654406018, 48.86834890393033], [2.341895351655592, 48.86848281641573], [2.341895775478586, 48.86848423071378], [2.341904493820449, 48.86853405186006], [2.341900082179466, 48.86858942170097], [2.341900644598983, 48.86859249065158], [2.341955004330398, 48.86871398040573], [2.34201571648927, 48.868846740524134], [2.342070078117665, 48.86896823020555], [2.342130790866138, 48.86910099023506], [2.342185151665054, 48.86922247982879], [2.342245865003136, 48.86935523976938], [2.342300226335658, 48.869476729282944], [2.342360940263354, 48.869609489134604], [2.342415303492899, 48.86973097857544], [2.342476018010222, 48.8698637383382], [2.34253038041029, 48.86998522769131], [2.34253057733923, 48.86998571891401], [2.342591292447259, 48.87011847858766], [2.342640237835834, 48.870256050700675], [2.34268103069242, 48.870374848331714], [2.342729975184317, 48.870512421267854], [2.342770769809661, 48.870631218848295], [2.342819714779456, 48.870768791715804], [2.342860508446907, 48.8708875892306], [2.342909453905947, 48.87102516113021], [2.342950249330836, 48.87114395949362], [2.342999195267786, 48.871281531324634], [2.343039989746122, 48.87140032872314], [2.343071572268657, 48.87147071173339], [2.343129989984442, 48.871464598451496], [2.343323533193588, 48.871433187045156], [2.343519191984273, 48.871402104396196], [2.343712734715181, 48.87137069325804], [2.343908393038877, 48.87133960997112], [2.344101936677448, 48.871308197310086], [2.344297594522822, 48.87127711428452], [2.344491136331225, 48.87124570098494], [2.344686793720916, 48.87121461642215], [2.344880335051077, 48.87118320339082], [2.345075991973756, 48.871152118190125], [2.345269534211532, 48.87112070363585], [2.345465190667085, 48.871089617797224], [2.345658731063477, 48.871058203503694], [2.345854387052002, 48.871027117027154], [2.346047928355976, 48.87099570121076], [2.346243582503039, 48.870964614988104], [2.346437123339951, 48.870933198540655], [2.346632778394393, 48.87090211078826], [2.346826317389922, 48.87087069460155], [2.347021971977312, 48.87083960621121], [2.347215511880377, 48.87080818850162], [2.347411166000703, 48.87077709947342], [2.347604704062284, 48.87074568202462], [2.347800357715543, 48.87071459235845], [2.347865697833232, 48.87071711127966], [2.347880171149339, 48.87071053681509], [2.34790656477507, 48.87069854851033], [2.347876162711815, 48.870627477101756], [2.347874081109885, 48.87050147448925], [2.347871862778426, 48.870361784055866], [2.347869781208775, 48.87023578051373], [2.347867562888902, 48.870096090945935], [2.347867523847094, 48.87009550706118], [2.347865443661789, 48.86996950349601], [2.34785050516745, 48.86983924342718], [2.347848423670341, 48.86971323982504], [2.347833485303414, 48.86958297882462], [2.347818634878284, 48.869447224210646], [2.347803696650772, 48.8693169640744], [2.347788847742302, 48.86918120943151], [2.347773908302475, 48.86905094925277], [2.347759059558723, 48.86891519367424], [2.347746981620367, 48.86880987430811], [2.347739095070011, 48.86879007099488]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 4, "roussel_fabien": 15.0, "nb_emargement": 1213.0, "nb_procuration": 86.0, "nb_vote_blanc": 9.0, "jadot_yannick": 107.0, "le_pen_marine": 49.0, "nb_exprime": 1201.0, "nb_vote_nul": 3.0, "arr_bv": "02", "arthaud_nathalie": 1, "nb_inscrit": 1581.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1213, "quartier_bv": "07", "geo_point_2d": [48.869296661570864, 2.3443968233070804], "melenchon_jean_luc": 314.0, "poutou_philippe": 4.0, "macron_emmanuel": 539.0}, "geometry": {"type": "Point", "coordinates": [2.3443968233070804, 48.869296661570864]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "03b95544e05d291783450cf808bd2479ab7e3349", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 51, "zemmour_eric": 65.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-53", "geo_shape": {"coordinates": [[[2.3412863345711212, 48.830266367043095], [2.34135811731166, 48.830266532140485], [2.341491652881057, 48.83026414303779], [2.341657520698882, 48.83026234098164], [2.341670917539963, 48.830253453368705], [2.341673275339521, 48.83011927982798], [2.3416784377486533, 48.82998803657898], [2.341680795516853, 48.829853863006306], [2.3416859578807703, 48.82972261972592], [2.341688315617512, 48.829588446121335], [2.341693477947673, 48.829457201910245], [2.341695835641699, 48.82932302917308], [2.341700997926647, 48.829191784930586], [2.341703355600671, 48.82905761126216], [2.34170851782895, 48.82892636788759], [2.341709498568561, 48.82892324346274], [2.341773070690241, 48.8288216771485], [2.341840765605955, 48.828710643280445], [2.341852053940475, 48.82870505193353], [2.342056778915686, 48.82869160582421], [2.342254185828055, 48.82867871540258], [2.342458910596023, 48.8286652686046], [2.342656318660022, 48.828652378425744], [2.342661409495054, 48.82865267981692], [2.342838269983835, 48.82868604275515], [2.343012494437973, 48.82871878836781], [2.343189355364366, 48.82875215168421], [2.343363580259949, 48.8287848967835], [2.343537804012359, 48.8288176416205], [2.343714665621498, 48.82885100325783], [2.343888891177475, 48.82888374758895], [2.344065753224227, 48.828917109604454], [2.344239979221638, 48.82894985342221], [2.344416841728633, 48.8289832140172], [2.344591068167468, 48.829015957321594], [2.344767931123382, 48.82904931739541], [2.3447762391106712, 48.82905377254344], [2.34486081273211, 48.829159730637244], [2.344952760278772, 48.829274261407804], [2.345037334616672, 48.829380219355976], [2.34512928156646, 48.82949475086015], [2.345213857982985, 48.82960070867011], [2.345305805709561, 48.82971524001606], [2.34539038148041, 48.82982119767289], [2.345482331345741, 48.82993572886802], [2.345566907833078, 48.83004168637921], [2.345658857124338, 48.83015621650936], [2.345743434328167, 48.83026217387486], [2.345835385746922, 48.830376704753476], [2.345849284066544, 48.8303752392466], [2.345852866169504, 48.830313190414934], [2.3458385774532, 48.830185209728015], [2.3458249584442, 48.83005825257665], [2.345810669866281, 48.82993027185729], [2.345797050991842, 48.8298033146739], [2.345783432172448, 48.82967635837391], [2.345769143801142, 48.829548377605974], [2.345755525127593, 48.829421420374615], [2.345741238256815, 48.82929343958167], [2.3457276183556752, 48.829166482310804], [2.3457133316232692, 48.82903850148543], [2.345699713218828, 48.82891154419], [2.345685425262655, 48.82878356332474], [2.345671806981481, 48.82865660689657], [2.34565751916368, 48.8285286259989], [2.345643901028343, 48.82840166863936], [2.345629614711037, 48.82827368771669], [2.345615995348129, 48.82814673031769], [2.345601709169187, 48.828018749362606], [2.345601100432123, 48.828016674771476], [2.345572360857998, 48.82796503729245], [2.345547685082356, 48.827914022824764], [2.345530093985815, 48.82789024961494], [2.34550289671438, 48.82789643057588], [2.34535894033072, 48.8278666791863], [2.345223904524044, 48.82783816093955], [2.345079948460493, 48.82780840921259], [2.344944912957256, 48.82777989064936], [2.344935883673571, 48.82778005974023], [2.344764060378662, 48.82782358266455], [2.344595246147258, 48.82786621526252], [2.344423422283931, 48.82790973769413], [2.344254608868426, 48.82795236891612], [2.344082783063464, 48.82799589174685], [2.343913969090444, 48.82803852248478], [2.3437451548413453, 48.82808115298279], [2.343573329548753, 48.82812467508403], [2.343404513380028, 48.82816730509046], [2.343232687530457, 48.828210825799616], [2.343063872155015, 48.828253456228715], [2.342892044375023, 48.82829697643769], [2.342883659032399, 48.828303327617455], [2.342842042177017, 48.828420941326094], [2.342794891367094, 48.828541405295525], [2.342782165223813, 48.82854814272791], [2.342730851584336, 48.828549839352576], [2.3426548915743632, 48.828551543490704], [2.342642463433373, 48.82854685329289], [2.342571965803728, 48.82846128060187], [2.342505401560159, 48.82837912462621], [2.342434904370953, 48.828293552740945], [2.342368340557525, 48.8282113966767], [2.342367384900699, 48.82820994522669], [2.342302568923554, 48.82808168866962], [2.342236746037798, 48.827949266912725], [2.342171930706226, 48.827821010255064], [2.342106108481409, 48.8276885883955], [2.342041293795298, 48.82756033163723], [2.341975473593509, 48.82742790968247], [2.341910658202103, 48.82729965191679], [2.341844838649874, 48.82716723075871], [2.341831895861563, 48.827161041974286], [2.341775464138086, 48.827161044372275], [2.341728180466617, 48.82716494912497], [2.341652886701497, 48.82715946307684], [2.341641087313451, 48.82718526956714], [2.341641515056775, 48.82726951195894], [2.341641526437475, 48.827395786174925], [2.341642178182366, 48.8275245299898], [2.341642189564626, 48.82765080417708], [2.341642842676452, 48.827779547970216], [2.341642854071734, 48.82790582122944], [2.341642808005482, 48.827906556664864], [2.341643461122038, 48.828035300428596], [2.341624437224388, 48.828188652480634], [2.341607189636767, 48.82827857237826], [2.341589941989649, 48.828368492266264], [2.34157091781299, 48.82852184426422], [2.341570814980682, 48.82852243638606], [2.341544017885917, 48.828643439126964], [2.341513786372784, 48.82877728939276], [2.34148698901466, 48.828898292093356], [2.341456757195962, 48.82903214321366], [2.341429960936515, 48.82915314588147], [2.341399727472925, 48.829286996050115], [2.341372930950116, 48.829407998677645], [2.341372824946502, 48.829408625857006], [2.341355138592991, 48.82955250744838], [2.341338210913422, 48.829701347848165], [2.341320523003011, 48.82984522938933], [2.341303595140826, 48.82999406884604], [2.341296811477464, 48.83004924582954], [2.341290927570785, 48.83006361599163], [2.34129721695373, 48.83007893098859], [2.341286312495048, 48.8301676364006], [2.341282135230092, 48.83025005176456], [2.3412863345711212, 48.830266367043095]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 53, "roussel_fabien": 27.0, "nb_emargement": 1017.0, "nb_procuration": 31.0, "nb_vote_blanc": 14.0, "jadot_yannick": 63.0, "le_pen_marine": 81.0, "nb_exprime": 998.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1321.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1017, "quartier_bv": "51", "geo_point_2d": [48.8286489027876, 2.3437861087883225], "melenchon_jean_luc": 384.0, "poutou_philippe": 6.0, "macron_emmanuel": 264.0}, "geometry": {"type": "Point", "coordinates": [2.3437861087883225, 48.8286489027876]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "56903311a1423d1a5f09d045af5b0637ff0e959a", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 55, "zemmour_eric": 91.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-28", "geo_shape": {"coordinates": [[[2.408919902824959, 48.869105682342315], [2.408920462414071, 48.869084239540506], [2.4089236697265872, 48.86893890559024], [2.408926432448697, 48.8687899810739], [2.408929639716235, 48.86864464798405], [2.408932402405773, 48.86849572342792], [2.408935609648741, 48.86835038939996], [2.408938372305505, 48.86820146480407], [2.408924040249863, 48.86819237368078], [2.408784297919407, 48.8681971172902], [2.408669818339504, 48.86820190910644], [2.4086595583270283, 48.868205543898156], [2.408548395139979, 48.86830473376948], [2.408438783605479, 48.86840229980313], [2.40832762094136, 48.86850148945846], [2.408218008579452, 48.86859905527258], [2.408106845085296, 48.86869824380599], [2.407997231895771, 48.86879580940051], [2.407887618295744, 48.86889337488611], [2.407776453534086, 48.86899256398551], [2.407666839106531, 48.86909012925156], [2.407555673514929, 48.86918931722897], [2.407553065825336, 48.86919553132405], [2.40756223138836, 48.86925794474076], [2.407572431468691, 48.86933116519686], [2.407559467515042, 48.869345254778224], [2.407560943812971, 48.86934969940857], [2.407585561455566, 48.86936301001533], [2.407593786036431, 48.869365043650454], [2.407772184707959, 48.8693686370789], [2.407961824271476, 48.86937335875034], [2.408140221643981, 48.8693769507242], [2.408329862634225, 48.86938167181929], [2.4083403651704662, 48.869395954824455], [2.408223664288407, 48.86950159844155], [2.4081094010653032, 48.86960502813589], [2.407992699246543, 48.869710671507804], [2.407878435106233, 48.86981410096205], [2.407761730987341, 48.86991974408207], [2.407647465929814, 48.870023173296254], [2.407530762237418, 48.87012881617784], [2.407416496262667, 48.87023224515197], [2.407419728862902, 48.870244924694134], [2.407528427138819, 48.87029480210601], [2.407639450958055, 48.87034315845784], [2.40764272354005, 48.87035616374955], [2.407518569681068, 48.87046208268958], [2.407395041932301, 48.87056744610611], [2.407270887076339, 48.870673363869734], [2.407147358325536, 48.87077872701049], [2.407023202452119, 48.870884645396245], [2.406899671346264, 48.870990007355196], [2.406775514465715, 48.8710959254638], [2.406651983721055, 48.87120128715372], [2.406527825833161, 48.87130720498515], [2.406404292723185, 48.87141256639256], [2.406280135191299, 48.87151848395358], [2.406156601068995, 48.8716238459845], [2.406032441176841, 48.871729762362285], [2.405908907415714, 48.87183512412418], [2.405784746516293, 48.87194104022478], [2.405661210389901, 48.87204640170413], [2.405653770311826, 48.87206005711953], [2.405661135521777, 48.872067181339766], [2.405831005277371, 48.8721157918812], [2.405989286533376, 48.8721608597522], [2.406159156910864, 48.87220946892457], [2.406317438725198, 48.87225453725713], [2.406475722186859, 48.872299604486074], [2.406645592107586, 48.872348212955195], [2.406664174710696, 48.87234231910407], [2.40668654742124, 48.87228794837514], [2.406709780012697, 48.87223360708289], [2.4067281671611083, 48.87222775272269], [2.406908738449885, 48.87227762886017], [2.407090339561328, 48.87232761054765], [2.407270911543066, 48.87237748613424], [2.407452513350282, 48.87242746726777], [2.407633087388163, 48.87247734231023], [2.407814689891044, 48.87252732288977], [2.407995263258698, 48.87257719737468], [2.40817686645714, 48.872627177400204], [2.408357440517745, 48.87267705133424], [2.408539044411949, 48.872727030805784], [2.408557892338402, 48.872719375281356], [2.408572317101002, 48.87258676884163], [2.408586094655107, 48.8724549631908], [2.408600520635968, 48.87232235672266], [2.408614296685592, 48.872190551030286], [2.408628722521425, 48.872057944526986], [2.4086424984296553, 48.871926138799815], [2.408656924120466, 48.87179353226137], [2.408670699887506, 48.8716617264994], [2.408685125433294, 48.871529119925825], [2.408698902422203, 48.87139731413579], [2.408713326459714, 48.87126470752033], [2.40872710330733, 48.87113290169551], [2.408741528563077, 48.87100029505162], [2.408755303906256, 48.87086848918528], [2.408769729016989, 48.87073588250631], [2.408783504218785, 48.87060407660515], [2.408783534228793, 48.87060383483236], [2.408797959194369, 48.87047122811819], [2.408816903145419, 48.87034116364291], [2.408824676626126, 48.870329628494865], [2.408819754071142, 48.87032287895539], [2.408829792915886, 48.87019798482273], [2.408839712820057, 48.87007948256225], [2.408849751559834, 48.86995458929973], [2.4088596727456713, 48.869836086118966], [2.408869592512949, 48.869717583817256], [2.408879631121549, 48.86959268961202], [2.408889552160279, 48.86947418728925], [2.4088995906639132, 48.869349293954116], [2.408909510257887, 48.869230790697614], [2.408919548666764, 48.86910589733332], [2.408919902824959, 48.869105682342315]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 28, "roussel_fabien": 37.0, "nb_emargement": 1165.0, "nb_procuration": 35.0, "nb_vote_blanc": 16.0, "jadot_yannick": 72.0, "le_pen_marine": 91.0, "nb_exprime": 1146.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1509.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1165, "quartier_bv": "78", "geo_point_2d": [48.8708669394322, 2.407838282503966], "melenchon_jean_luc": 442.0, "poutou_philippe": 3.0, "macron_emmanuel": 295.0}, "geometry": {"type": "Point", "coordinates": [2.407838282503966, 48.8708669394322]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "75d33b175e6e4cb4ce6075afcc307fccbded5455", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 163, "zemmour_eric": 170.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-21", "geo_shape": {"coordinates": [[[2.271413926259588, 48.85061399360973], [2.271399136864491, 48.850629326742805], [2.27136146906654, 48.85065284056505], [2.271301287046603, 48.85069308482787], [2.271303591073209, 48.85070695536104], [2.271459761133295, 48.85077354017587], [2.271620088191818, 48.85084411628168], [2.271776260430069, 48.85091070068349], [2.271936586989101, 48.850981275448916], [2.272092760042817, 48.85104785942942], [2.272253088802533, 48.851118434669615], [2.272409261309113, 48.85118501822054], [2.272529926341788, 48.85123813265936], [2.272542000610937, 48.85125639929336], [2.272571661975811, 48.85125718400212], [2.272611326582088, 48.85127464435659], [2.272772729633807, 48.85134675522557], [2.272933060234056, 48.85141732953567], [2.273094464172941, 48.851489439961405], [2.273254795648036, 48.851560013831346], [2.273416200473988, 48.851632123813836], [2.273576531461105, 48.85170269723531], [2.273737938537053, 48.851774806782814], [2.273898270398814, 48.85184537976413], [2.273899562908528, 48.85184602435661], [2.274057042066778, 48.851934357508576], [2.274212161033362, 48.85202183252418], [2.27436964125282, 48.85211016525068], [2.274524761267403, 48.852197639847205], [2.274682242548074, 48.85228597214837], [2.274837363623379, 48.85237344542653], [2.274994845952754, 48.85246177820161], [2.275149968076064, 48.852549251060616], [2.275305089345013, 48.852636724602725], [2.27546257463819, 48.85272505585025], [2.275617698330406, 48.85281252808224], [2.275775183309569, 48.85290085979536], [2.275835782564283, 48.85292682420487], [2.275854989973744, 48.85291489979666], [2.27593179315544, 48.85275317369079], [2.275980382781448, 48.852618980741326], [2.275984882822296, 48.852614178397715], [2.276141743455636, 48.85252740639637], [2.276289654247613, 48.85244874895834], [2.276446512512621, 48.85236197653631], [2.2765944223874692, 48.85228331781059], [2.276751281009834, 48.852196544984345], [2.276899189942585, 48.85211788676945], [2.2770470984411793, 48.852039227466875], [2.2772039555749872, 48.851952454028165], [2.277351863131599, 48.85187379523647], [2.277508717897109, 48.85178702137706], [2.277556037631563, 48.851761856044945], [2.277561229403085, 48.85175599836736], [2.2775140352792, 48.851711852392825], [2.27742059700332, 48.85162838670161], [2.277320483837743, 48.851541000762786], [2.277227046178334, 48.85145753490763], [2.277126933665572, 48.851370148793436], [2.277117558634617, 48.85136663320315], [2.2769119132974422, 48.85135165730541], [2.276701433853703, 48.85133670669146], [2.276495790116834, 48.85132173008642], [2.276285310913368, 48.85130677874007], [2.276079666051591, 48.85129180141119], [2.275869188451019, 48.851276849340685], [2.27566354382696, 48.851261871296174], [2.27545306646668, 48.85124691849329], [2.275440925741214, 48.85123855284502], [2.2754306898107908, 48.85113318802498], [2.275415266246998, 48.85101857510285], [2.275396724850359, 48.85100724595603], [2.275364516205337, 48.851009914464385], [2.275192498674489, 48.85093907024499], [2.275029049363702, 48.850872153045145], [2.274857031380974, 48.850801308326474], [2.274693582933076, 48.850734390660094], [2.274521567236489, 48.850663544559296], [2.274358119638853, 48.85059662732567], [2.27418610485309, 48.85052578073379], [2.274022656755745, 48.85045886302535], [2.273859210453399, 48.85039194419862], [2.273687197021462, 48.85032109687649], [2.273523751569466, 48.85025417848244], [2.273351739048349, 48.850183330669296], [2.273188293096548, 48.850116411800464], [2.273016281486353, 48.85004556349628], [2.272852837772659, 48.8499786432699], [2.272680827060632, 48.84990779537397], [2.272632655960209, 48.849888071763736], [2.272602831242891, 48.849882058065496], [2.272584355031154, 48.849898445476484], [2.272446318202384, 48.84998565844092], [2.272290130876188, 48.85008316289648], [2.272152093065714, 48.85017037550698], [2.271995905985489, 48.85026788046979], [2.27185786720577, 48.8503550918271], [2.2717016776588013, 48.85045259638138], [2.271563639247491, 48.85053980829233], [2.2714451163873752, 48.850613796810755], [2.271413926259588, 48.85061399360973]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 21, "roussel_fabien": 8.0, "nb_emargement": 1191.0, "nb_procuration": 82.0, "nb_vote_blanc": 11.0, "jadot_yannick": 72.0, "le_pen_marine": 86.0, "nb_exprime": 1178.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1496.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1191, "quartier_bv": "61", "geo_point_2d": [48.851347623425916, 2.2744558885623363], "melenchon_jean_luc": 136.0, "poutou_philippe": 4.0, "macron_emmanuel": 506.0}, "geometry": {"type": "Point", "coordinates": [2.2744558885623363, 48.851347623425916]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f00ebcb2276a308a0ac1792c30cf1342eb4a00c6", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 87, "zemmour_eric": 103.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "9-9", "geo_shape": {"coordinates": [[[2.332531995975023, 48.876752538534376], [2.332497117413056, 48.87678827255566], [2.332442372059718, 48.876913553341915], [2.33238837717949, 48.87703547205938], [2.332333631304754, 48.877160752767814], [2.332279635913705, 48.8772826714089], [2.33222488951746, 48.87740795203948], [2.332170893615584, 48.87752987060417], [2.332116898824323, 48.877651789138646], [2.332062150285317, 48.87777706964527], [2.332008154983225, 48.877898988103325], [2.331953405922787, 48.87802426853215], [2.331953306934932, 48.878029009277405], [2.332005407424058, 48.878161999674205], [2.332055449576276, 48.87828997104659], [2.332105490610982, 48.87841794237556], [2.332157593229584, 48.8785509335661], [2.33220763476601, 48.878678904822124], [2.332259736554598, 48.87881189502976], [2.332309779956191, 48.87893986622036], [2.332361882255247, 48.87907285725138], [2.332411926158581, 48.879200828368944], [2.332464028990968, 48.87933381842472], [2.332482009817057, 48.87933999099097], [2.332691161735399, 48.87928836516637], [2.332895517210599, 48.87924039772187], [2.333104668319085, 48.87918877117023], [2.333309024386096, 48.879140803023134], [2.3333240540016282, 48.87914350558372], [2.333462229926698, 48.879252455036244], [2.333584518094376, 48.87935291789043], [2.333706806722331, 48.87945338150976], [2.333844984270233, 48.8795623304899], [2.333850644139364, 48.879581105008256], [2.333895560630986, 48.87958481467048], [2.33408987981374, 48.879539675321055], [2.33427305016963, 48.87949679484155], [2.33446736869679, 48.87945165487583], [2.334650539795757, 48.879408773822895], [2.334689544003255, 48.879397640991826], [2.334675251320684, 48.879372998043394], [2.334668894797053, 48.879363799399485], [2.334672170705624, 48.87935339072338], [2.334816122504595, 48.879267778113004], [2.334959406865825, 48.879182821729216], [2.335103357721175, 48.87909720876018], [2.335246641156067, 48.879012251120216], [2.335390591067799, 48.878926637792546], [2.335533873553402, 48.87884168069491], [2.33567782253299, 48.878756066109375], [2.335821104080686, 48.878671108654835], [2.335965052105196, 48.878585494609936], [2.336108332726657, 48.87850053589921], [2.336252279807564, 48.87841492149568], [2.336395559479766, 48.878329963327346], [2.336539505617078, 48.8782443485652], [2.336682785726369, 48.87815938914823], [2.336826730920087, 48.878073774027484], [2.336970008716613, 48.87798881514529], [2.337113952978192, 48.877903198766674], [2.33725722983704, 48.87781823952759], [2.337261503348515, 48.877809855300136], [2.337222920399843, 48.877677344063315], [2.3371837490825262, 48.87754768942643], [2.337145166537337, 48.87741517723376], [2.337105995610754, 48.877285522540596], [2.337067412082856, 48.87715301118306], [2.337028241547004, 48.87702335643365], [2.336989659785881, 48.87689084412782], [2.336950489640751, 48.87676118932213], [2.336942419280763, 48.87672777744878], [2.336923967974801, 48.876724211904246], [2.336789318288659, 48.876734798538166], [2.336604925405208, 48.87674859699649], [2.336397632611999, 48.8767648942917], [2.336213239518232, 48.8767786921463], [2.336005946494252, 48.87679498786358], [2.335821553190183, 48.876808785114534], [2.335614259912416, 48.87682508105238], [2.335429866398048, 48.8768388776996], [2.335245071350533, 48.876850155490466], [2.335060677649601, 48.876863951568716], [2.334875882433181, 48.876875228789444], [2.334691488557178, 48.87688902339945], [2.334506693171868, 48.87690030004998], [2.334322299097831, 48.87691409499029], [2.334319744911033, 48.87691412755264], [2.334127244148675, 48.87690462836892], [2.333938798897078, 48.87689551657048], [2.333750352348027, 48.87688640446773], [2.333557851792091, 48.87687690436823], [2.333369406740422, 48.876867791673206], [2.333176906322667, 48.876858290960996], [2.33298846004161, 48.87684917765859], [2.332795959750725, 48.8768396772329], [2.332790922518198, 48.87683876600938], [2.332676836748166, 48.876801467739455], [2.332566076562875, 48.87676076952165], [2.332531995975023, 48.876752538534376]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 9, "roussel_fabien": 8.0, "nb_emargement": 1229.0, "nb_procuration": 93.0, "nb_vote_blanc": 10.0, "jadot_yannick": 91.0, "le_pen_marine": 45.0, "nb_exprime": 1215.0, "nb_vote_nul": 4.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1470.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1229, "quartier_bv": "33", "geo_point_2d": [48.877970875468186, 2.334417252304478], "melenchon_jean_luc": 232.0, "poutou_philippe": 1.0, "macron_emmanuel": 602.0}, "geometry": {"type": "Point", "coordinates": [2.334417252304478, 48.877970875468186]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1e6a5dcb5eb50121d993d622d883c26c53e16302", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 67, "zemmour_eric": 85.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-41", "geo_shape": {"coordinates": [[[2.334813040388867, 48.8947115198629], [2.334841642397488, 48.89470647345908], [2.334977214566718, 48.894739030916966], [2.3352257995671772, 48.89479723205802], [2.335361372213061, 48.89482978907826], [2.335379454289578, 48.894819714508785], [2.335367976366894, 48.89477850594378], [2.335355564052796, 48.89474638792937], [2.335361445814756, 48.89473951198459], [2.335341563892427, 48.89471279340673], [2.335308208770977, 48.894626486527166], [2.335264415783556, 48.894512285882136], [2.33521864876137, 48.894393861825584], [2.335174856166158, 48.89427966112354], [2.3351290881998032, 48.894161236100814], [2.335085295996698, 48.894047035341764], [2.33503952979079, 48.89392861116652], [2.334995736615948, 48.89381441034289], [2.334979431636347, 48.893807854567584], [2.334790010100806, 48.89383683626679], [2.33460165702769, 48.89386469315537], [2.334412236438816, 48.8938936742631], [2.334223881594229, 48.893921530548496], [2.334034460588297, 48.893950511057156], [2.333846105335978, 48.89397836674694], [2.333656683912995, 48.89400734665658], [2.333468329616688, 48.89403520175827], [2.333278906412822, 48.89406418106127], [2.333090551708901, 48.89409203556736], [2.332901128087997, 48.8941210142713], [2.3327127729763673, 48.89414886818176], [2.332698777281532, 48.89414539884875], [2.332652997863176, 48.89410663115705], [2.332580096813307, 48.89404085852093], [2.332580706223339, 48.89403438859398], [2.332554368375005, 48.89401816281355], [2.332507916136956, 48.893976252674875], [2.332384556348871, 48.89386409396835], [2.332265204119739, 48.8937564118123], [2.332141845386904, 48.89364425193397], [2.332022494152057, 48.893536570413715], [2.331899136462931, 48.893424410262895], [2.331779786245634, 48.893316727579844], [2.331656429600205, 48.89320456715655], [2.331537081740978, 48.89309688511691], [2.331413726139234, 48.89298472442109], [2.331294377933727, 48.89287704121106], [2.331171023364107, 48.892764881142035], [2.3310516761643783, 48.892657197668534], [2.330928322649974, 48.89254503642778], [2.33080897644466, 48.89243735359005], [2.330793327741577, 48.8924047483815], [2.330774593945179, 48.89240238728288], [2.330660475065847, 48.89242495831614], [2.330540824715524, 48.89244855142518], [2.330519272382751, 48.89244476528872], [2.330493398174274, 48.89245252209046], [2.330418132937931, 48.89246736278985], [2.330231381955245, 48.89250531219828], [2.330036464418064, 48.892543744428465], [2.329849712883339, 48.89258169323908], [2.329654796142199, 48.89262012485295], [2.329468042691538, 48.89265807305806], [2.32927312538285, 48.89269650404802], [2.329086372743762, 48.892734451662896], [2.328891453503625, 48.89277288202131], [2.328704700312416, 48.89281082903833], [2.328509781868447, 48.89284925878049], [2.328323026761415, 48.89288720519196], [2.3281281077497162, 48.89292563431022], [2.327941353454384, 48.892963580131465], [2.327746432511352, 48.893002008618126], [2.327559677663815, 48.89303995384155], [2.327556354793607, 48.89304537339333], [2.327581159453632, 48.89308088668144], [2.327772285611961, 48.893119956171596], [2.327955289447521, 48.89315685556831], [2.328146416165454, 48.89319592445864], [2.328329420521573, 48.89323282418033], [2.32852054779921, 48.89327189247084], [2.328703552687389, 48.89330879161821], [2.328894680536213, 48.89334785840962], [2.329077685956546, 48.89338475698268], [2.329268814353366, 48.89342382407353], [2.32945182030585, 48.893460722072305], [2.329460744488512, 48.89346642608886], [2.329525350301556, 48.89359167144956], [2.329588887894189, 48.89372024636828], [2.3296534943304392, 48.89384549163084], [2.329717032537693, 48.89397406735106], [2.329781639597159, 48.89409931251548], [2.329845178442195, 48.89422788723867], [2.32986395621986, 48.89423323717048], [2.3300107712903833, 48.89418765901007], [2.330154264032668, 48.89414416739972], [2.3303010785978913, 48.89409858887966], [2.33044457084063, 48.89405509781723], [2.330461802814777, 48.89405847039584], [2.330571424699855, 48.89417303731759], [2.330682257884086, 48.894288798000154], [2.330791879363807, 48.89440336558763], [2.330902713528606, 48.894519126041864], [2.331012337353796, 48.894633692511846], [2.331123172487523, 48.89474945363693], [2.331232797282688, 48.894864019881005], [2.331343633396913, 48.89497978077775], [2.331453257798399, 48.8950943467883], [2.331564096256999, 48.895210107464294], [2.331587002995533, 48.89521026949518], [2.331683546268974, 48.89511406918212], [2.331804777204337, 48.89498933256178], [2.331901319654272, 48.894893132953], [2.332022549564884, 48.8947683951878], [2.332119091202762, 48.89467219538408], [2.33224032006576, 48.89454745827253], [2.332336860903125, 48.894451257374605], [2.332350589868705, 48.894447239303595], [2.332430764169555, 48.89445606255393], [2.332486351767583, 48.89446472082524], [2.332508502236811, 48.89446841909765], [2.332526394799612, 48.894460181212104], [2.332602709655429, 48.89435991214007], [2.332685163266949, 48.894254105918236], [2.332701540785074, 48.894249669991645], [2.332879190550352, 48.89428804910601], [2.333083894094119, 48.894330996093636], [2.333261544407318, 48.894369375537224], [2.333466249949973, 48.894412321875684], [2.33364390083402, 48.894450699849976], [2.333848605648059, 48.89449364552405], [2.334026257079824, 48.894532023827544], [2.334230963892844, 48.89457496885243], [2.334408615895536, 48.89461334568659], [2.334613321979818, 48.894656290047166], [2.334790974530231, 48.89469466721053], [2.334791292782729, 48.89469473822615], [2.334813040388867, 48.8947115198629]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 41, "roussel_fabien": 19.0, "nb_emargement": 1256.0, "nb_procuration": 57.0, "nb_vote_blanc": 19.0, "jadot_yannick": 104.0, "le_pen_marine": 83.0, "nb_exprime": 1230.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1646.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "69", "geo_point_2d": [48.89372654931279, 2.3313545613278213], "melenchon_jean_luc": 431.0, "poutou_philippe": 9.0, "macron_emmanuel": 372.0}, "geometry": {"type": "Point", "coordinates": [2.3313545613278213, 48.89372654931279]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "16b9dca7c70d19232a21b0b1719cc08a13a88a25", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 51, "zemmour_eric": 93.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-34", "geo_shape": {"coordinates": [[[2.355556543236465, 48.87652927552366], [2.355550849325481, 48.876496890406905], [2.355488066605222, 48.87639573518191], [2.355430315405815, 48.87629908389448], [2.35538058306717, 48.87621585335762], [2.355317802379733, 48.8761146980249], [2.355309782390553, 48.87610127812445], [2.355300652786571, 48.876095991229505], [2.355108765036361, 48.87606249974972], [2.354919743458267, 48.87602956030818], [2.354727856197738, 48.875996068215805], [2.354538835090489, 48.87596312907012], [2.354346948319542, 48.875929636365186], [2.354157927694381, 48.875896696616074], [2.353966041413126, 48.8758632032985], [2.353777022644381, 48.87583026205407], [2.353585135489562, 48.8757967681166], [2.353396117191661, 48.875763827168015], [2.353204230526551, 48.87573033261792], [2.353015212721826, 48.875697390166664], [2.35282332789852, 48.875663895910655], [2.352634309212453, 48.87563095284861], [2.352442424890142, 48.87559745708075], [2.352253406674922, 48.87556451431454], [2.352064388709991, 48.87553157034962], [2.351872505120336, 48.87549807366526], [2.35168348898961, 48.87546513000357], [2.351491604526336, 48.87543163269923], [2.351302588888846, 48.87539868753488], [2.351110704904015, 48.875365190517265], [2.351055376122695, 48.87536582589609], [2.3510548952746673, 48.87536633770958], [2.350857867076392, 48.87541184694705], [2.350668818595282, 48.875456704857775], [2.350471788365689, 48.87550221254942], [2.350282739212862, 48.875547070746045], [2.35008570966746, 48.87559257780596], [2.349896658501994, 48.87563743448245], [2.349699628266209, 48.875682941802495], [2.349510576440249, 48.87572779786565], [2.349313545525407, 48.87577330454645], [2.349124494402221, 48.87581816000363], [2.348935441590148, 48.875863015153], [2.348738409661194, 48.8759085208816], [2.348729915410953, 48.87590863295224], [2.348520697779183, 48.87586641646166], [2.348307299063864, 48.87581230380744], [2.348264600907194, 48.87581433228072], [2.348252199742758, 48.87582822785293], [2.348269911361221, 48.87591676407261], [2.348270617051945, 48.87591866191588], [2.348337857938993, 48.87604646475646], [2.348410943975258, 48.87617897500446], [2.348478185542601, 48.87630677773604], [2.348551272312413, 48.87643928696788], [2.348598154067966, 48.87652839192038], [2.348589513303225, 48.87655165657156], [2.348597774557991, 48.87656364110078], [2.348618135063789, 48.87660233876966], [2.348614986831003, 48.876622508117784], [2.348661847789911, 48.876640469207736], [2.348729090568828, 48.8767682717449], [2.348803990757578, 48.876907207380704], [2.3488712342184233, 48.87703501070638], [2.348946135170046, 48.87717394621962], [2.349013379335212, 48.87730174853528], [2.349069110491839, 48.87740512522274], [2.349098090997859, 48.87743590514102], [2.349144261515252, 48.87742190261926], [2.349343711024043, 48.87739427737457], [2.349521933926855, 48.87737034873994], [2.349700155302599, 48.87734641983209], [2.349899605590877, 48.87731879366675], [2.350077826616585, 48.8772948641955], [2.350277276507203, 48.87726723739965], [2.350455497182968, 48.87724330736508], [2.350654946675717, 48.87721567993871], [2.350833167001634, 48.877191749340746], [2.351032616096606, 48.8771641212839], [2.351210837435865, 48.87714019012993], [2.351210949423167, 48.87714017544819], [2.351410396768138, 48.87711254585396], [2.35159796895865, 48.877086270758014], [2.351797415891783, 48.87705864051764], [2.351984987692912, 48.87703236481397], [2.352184434214403, 48.877004733927485], [2.352372004262644, 48.87697845760879], [2.352571451735778, 48.87695082608355], [2.352759021394725, 48.87692454915716], [2.352958468444822, 48.876896917885055], [2.353146037725536, 48.876870639451745], [2.35334548436387, 48.87684300753345], [2.3535330532551653, 48.87681672849247], [2.353732498118437, 48.87678909592075], [2.353920067983697, 48.87676281627945], [2.354107636285029, 48.876736537235544], [2.354307081910911, 48.87670890281261], [2.354494649822913, 48.87668262316103], [2.354694093673506, 48.87665498808464], [2.354881662559457, 48.87662870783275], [2.355081105998346, 48.876601072110205], [2.355268674494746, 48.87657479125065], [2.35546811751069, 48.87654715578129], [2.355532337040073, 48.87653815744259], [2.355556543236465, 48.87652927552366]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 34, "roussel_fabien": 9.0, "nb_emargement": 1177.0, "nb_procuration": 86.0, "nb_vote_blanc": 6.0, "jadot_yannick": 127.0, "le_pen_marine": 89.0, "nb_exprime": 1169.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 1, "nb_inscrit": 1453.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "38", "geo_point_2d": [48.87635459413939, 2.351484297589363], "melenchon_jean_luc": 342.0, "poutou_philippe": 1.0, "macron_emmanuel": 412.0}, "geometry": {"type": "Point", "coordinates": [2.351484297589363, 48.87635459413939]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3900d095bc72c03a96c07a970c60652573f7ce83", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 47, "zemmour_eric": 61.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-40", "geo_shape": {"coordinates": [[[2.3810970876223, 48.861092703068394], [2.381111483039187, 48.86112641211398], [2.381072751122227, 48.86116527484901], [2.381037234526506, 48.86120047048413], [2.381042738153853, 48.86121357991948], [2.381187096318873, 48.86125875319402], [2.381364052011901, 48.861318510400345], [2.381508409383369, 48.86136368327599], [2.38168536716422, 48.861423440008636], [2.3818297251050202, 48.861468612492416], [2.381884487228541, 48.86148710527904], [2.381908024040154, 48.86150379996464], [2.381921006285863, 48.861502838164576], [2.382043201360289, 48.86154410248421], [2.382193999758305, 48.861595649953124], [2.382370959113389, 48.8616554056595], [2.382521758147193, 48.86170695360956], [2.382540276869632, 48.86170291307403], [2.382583894322654, 48.86164395046444], [2.382621709351214, 48.86159681755664], [2.382639240156498, 48.861584810913016], [2.3826383550445343, 48.86157426962856], [2.382713985353308, 48.861454190777245], [2.382783127078034, 48.86133883863276], [2.382858756721927, 48.86121875876519], [2.382927897803028, 48.86110340741187], [2.382997039940949, 48.86098805601367], [2.383072668582716, 48.860867975972866], [2.383141808735341, 48.8607526235602], [2.383217436690946, 48.860632544301744], [2.383234967763862, 48.86062761451057], [2.38343376133786, 48.86067868744012], [2.3836324384304612, 48.860729960888406], [2.383831232795237, 48.86078103225369], [2.3840299093063, 48.86083230503038], [2.384228704440572, 48.86088337662998], [2.384427381733067, 48.860934648742074], [2.384626177658092, 48.860985718777414], [2.384824855732011, 48.86103699022492], [2.385023653800134, 48.86108805960229], [2.385222332655474, 48.86113933038519], [2.385421130130115, 48.8611903999899], [2.385619809766869, 48.86124167010819], [2.385637770680194, 48.86123600381284], [2.385686331149576, 48.86113458041274], [2.385731534984692, 48.86104234364717], [2.385743060220355, 48.86102656085084], [2.38573873516655, 48.86102148433482], [2.385618160460979, 48.86098888828809], [2.385411136846159, 48.8609324535318], [2.385242958969472, 48.86088698762176], [2.385035936165981, 48.86083055221118], [2.384867758945755, 48.8607850857697], [2.384660736964222, 48.86072864880562], [2.384492560389637, 48.86068318273196], [2.384486987997131, 48.860669364415735], [2.384610340862789, 48.860564262810996], [2.384732743764537, 48.86046003664644], [2.384856095649351, 48.86035493386923], [2.384978497567786, 48.860250707433664], [2.385101848450628, 48.86014560528263], [2.385224249385561, 48.860041378576014], [2.385347599287772, 48.85993627525253], [2.38546999923931, 48.8598320482749], [2.385593348139578, 48.85972694557759], [2.3857157471077333, 48.85962271832891], [2.385839095027177, 48.85951761445916], [2.385961493012058, 48.859413386939515], [2.386084839929586, 48.85930828369593], [2.386207236931003, 48.859204055905224], [2.386216936517382, 48.85918862431363], [2.386211343887069, 48.85918274628249], [2.386057666183826, 48.859136026558545], [2.385921871740128, 48.85909446531917], [2.38592093838918, 48.859094208712776], [2.385738248885489, 48.859048388331594], [2.38552705552153, 48.85899632554069], [2.385344365333915, 48.858950505446444], [2.38513317276041, 48.85889844195583], [2.384950484625331, 48.85885262126324], [2.3847392914792582, 48.8588005570659], [2.384629528399497, 48.85877302667334], [2.384627537416029, 48.85876976709623], [2.384601505911982, 48.8587638720166], [2.384528580206008, 48.85874558108697], [2.384315868721917, 48.85869174110791], [2.384133182041007, 48.8586459182598], [2.38392047136175, 48.858592078472334], [2.383737785377929, 48.85854625501652], [2.383696277362706, 48.8585219333621], [2.383677208580201, 48.85853190423919], [2.383664456729465, 48.85853857287062], [2.383658274487253, 48.85855053651587], [2.383552563227604, 48.85865698368279], [2.383432118069986, 48.858777219161674], [2.383326405888368, 48.85888366610715], [2.383205961047652, 48.85900390134085], [2.383100246581228, 48.85911034805775], [2.382979800694581, 48.85923058303927], [2.3828740866689992, 48.85933702954165], [2.382874074253629, 48.85933704206846], [2.382753627320985, 48.85945727679779], [2.382679554821073, 48.85953160338826], [2.382664689821651, 48.859540007538186], [2.382659760483005, 48.859549155438394], [2.382627965186317, 48.85958105939088], [2.382520316540487, 48.85968834815375], [2.382414449173676, 48.859794579380285], [2.382306801009954, 48.859901867937474], [2.382200932784598, 48.86000809805538], [2.38209328236641, 48.860115387292076], [2.381987413271835, 48.860221617200665], [2.38187976197278, 48.86032890622464], [2.381773892008978, 48.860435135923844], [2.3816662398290482, 48.86054242473509], [2.381560368996008, 48.86064865422496], [2.381452715945871, 48.860755941924175], [2.3813468442330112, 48.86086217210399], [2.381239191664863, 48.86096945959753], [2.381133319082747, 48.861075689567976], [2.3810970876223, 48.861092703068394]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 40, "roussel_fabien": 32.0, "nb_emargement": 1160.0, "nb_procuration": 58.0, "nb_vote_blanc": 11.0, "jadot_yannick": 91.0, "le_pen_marine": 71.0, "nb_exprime": 1143.0, "nb_vote_nul": 6.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1498.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1160, "quartier_bv": "43", "geo_point_2d": [48.86006245126645, 2.3836433030353175], "melenchon_jean_luc": 427.0, "poutou_philippe": 5.0, "macron_emmanuel": 338.0}, "geometry": {"type": "Point", "coordinates": [2.3836433030353175, 48.86006245126645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eaa5959a92e29c1b566219fc7fc713befde0ca51", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 49, "zemmour_eric": 83.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "4-12", "geo_shape": {"coordinates": [[[2.355037123824084, 48.86068990694381], [2.355048748289836, 48.86068799642395], [2.355233138300135, 48.86062634956281], [2.355407110343699, 48.86056854677278], [2.355581083375326, 48.86051074283489], [2.355765472117303, 48.86044909604298], [2.355939442978491, 48.860391292469885], [2.356123830884715, 48.860329644219874], [2.356297800949451, 48.86027184011961], [2.356482188008997, 48.86021019131084], [2.356656158640136, 48.86015238669069], [2.356840543478844, 48.86009073821509], [2.356860162191347, 48.860069809703916], [2.3568206365463062, 48.86003630611327], [2.356714506484622, 48.85993175214361], [2.356601682987028, 48.85982102492919], [2.356495553803255, 48.85971647074506], [2.356382729874327, 48.8596057432954], [2.356276602931294, 48.85950118890414], [2.356163779944983, 48.85939046032721], [2.3560576538799403, 48.85928590572151], [2.355944831813908, 48.859175177816], [2.355838706626742, 48.859070622995866], [2.355725885492194, 48.85895989486245], [2.355619759819974, 48.85885533982049], [2.35550693962813, 48.85874461055989], [2.355400816196592, 48.85864005531082], [2.355287996925088, 48.858529326721616], [2.355181874371502, 48.858424771258115], [2.355076163781685, 48.858321543549714], [2.354970040713494, 48.85821698787143], [2.354864330964934, 48.858113759956595], [2.35475821010794, 48.858009204078215], [2.354652499837729, 48.85790597594956], [2.35454637982902, 48.85780141986376], [2.354440671762947, 48.85769819153605], [2.354334551239622, 48.85759363523547], [2.354257192458602, 48.85751809059102], [2.354250170108948, 48.85750602658473], [2.354244528267039, 48.857502003923514], [2.354216179838799, 48.857474320030356], [2.354214608044097, 48.85747225563319], [2.354140989154871, 48.857354961658345], [2.354083469244832, 48.857246502505845], [2.354025948222533, 48.85713804240847], [2.353952330219074, 48.85702074918153], [2.353948850006792, 48.8570175017233], [2.35385653153928, 48.85696273734512], [2.353751973676154, 48.85690855432528], [2.353723712559626, 48.85689178888768], [2.353702764167097, 48.85689552676734], [2.353676161105877, 48.85691814924698], [2.353519907908956, 48.85696596276185], [2.353314707929218, 48.8570287528593], [2.353158455431802, 48.85707656590484], [2.3529532545809, 48.85713935537621], [2.352797001420117, 48.85718716794499], [2.352591799686777, 48.8572499576896], [2.352435545873806, 48.857297768882376], [2.352429336396993, 48.85731026053481], [2.352532610840013, 48.85743422554881], [2.352635708524556, 48.85755797635489], [2.352738983949577, 48.85768194116314], [2.35284208124037, 48.85780569265574], [2.352945359010401, 48.85792965726555], [2.35304845728152, 48.85805340855274], [2.353049025683541, 48.85805417337509], [2.353049100940015, 48.8580643580203], [2.353060961685231, 48.85807038033591], [2.353138522926431, 48.85818882670075], [2.353214219858657, 48.85830442727469], [2.353291780433761, 48.85842287350781], [2.353367478057316, 48.85853847306118], [2.353445039329233, 48.85865691916997], [2.35352073763286, 48.858772518601995], [2.35359643627229, 48.85888811797407], [2.3536739985740462, 48.85900656479647], [2.353675024963394, 48.859011175007254], [2.35365802121913, 48.85910723257459], [2.353640993798323, 48.85920343569811], [2.353642187506431, 48.85920829233435], [2.353711699665767, 48.859306258811245], [2.353780246269002, 48.85940286200702], [2.353849758947518, 48.85950082838655], [2.353918306051666, 48.859597432385556], [2.353986853409906, 48.859694036336876], [2.354056366865386, 48.85979200257068], [2.354059881214774, 48.85979504065276], [2.354193309678605, 48.8598699039634], [2.354327767262572, 48.85994534465622], [2.354332133246019, 48.859949944995854], [2.354365056927618, 48.860033979654425], [2.354397465464098, 48.86011669667091], [2.35439926279605, 48.86011937653178], [2.354505171228264, 48.860225964790345], [2.354609942514953, 48.860331408235474], [2.354714714225723, 48.860436851578875], [2.354820623948749, 48.86054343952773], [2.354823099271104, 48.86054530642847], [2.354910588031285, 48.860595308744514], [2.35500473868506, 48.860649118763156], [2.355037123824084, 48.86068990694381]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 12, "roussel_fabien": 12.0, "nb_emargement": 1031.0, "nb_procuration": 78.0, "nb_vote_blanc": 15.0, "jadot_yannick": 104.0, "le_pen_marine": 33.0, "nb_exprime": 1011.0, "nb_vote_nul": 5.0, "arr_bv": "04", "arthaud_nathalie": 2, "nb_inscrit": 1265.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "13", "geo_point_2d": [48.858889581897095, 2.3545721390438445], "melenchon_jean_luc": 239.0, "poutou_philippe": 6.0, "macron_emmanuel": 434.0}, "geometry": {"type": "Point", "coordinates": [2.3545721390438445, 48.858889581897095]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3216c7c0317c2c93c2da95c79795e9271a025af5", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 26, "zemmour_eric": 58.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-2", "geo_shape": {"coordinates": [[[2.382154149656492, 48.885845916760154], [2.382162303379082, 48.88584589947945], [2.382210754686711, 48.88586457844572], [2.38227460101946, 48.885887719227775], [2.382287281979509, 48.88588622702066], [2.382306174691178, 48.8858378194165], [2.382432963649057, 48.88572688614416], [2.382558449109418, 48.88562014675321], [2.382685236999795, 48.885509213191746], [2.382810720044348, 48.88540247440752], [2.38293750686734, 48.88529154055697], [2.3830629902338, 48.88518480149423], [2.383188473096499, 48.88507806139039], [2.383315258324922, 48.884967127107075], [2.383315298273666, 48.88496709313848], [2.383351439122823, 48.884936041218054], [2.383351119961523, 48.88493431916505], [2.383281157622052, 48.88492228737288], [2.383143276618493, 48.884858324834106], [2.383022918228832, 48.884802603013796], [2.383017213583221, 48.88479423777007], [2.38303991247384, 48.88466170063543], [2.383062204723485, 48.884528255764856], [2.3830849033943142, 48.88439571769034], [2.383107195414807, 48.88426227277917], [2.383099375474549, 48.884253128611775], [2.3829062157418113, 48.88419409340747], [2.382725710243727, 48.88413869614934], [2.382545203766096, 48.88408329860929], [2.382352045280862, 48.8840242634011], [2.382333571867181, 48.88402921691652], [2.382262775911553, 48.88415160967145], [2.382192660463131, 48.884273165913704], [2.382121863855344, 48.88439555765892], [2.382051749113244, 48.88451711379873], [2.381980951831852, 48.88463950633272], [2.381910836432372, 48.88476106236303], [2.381896345045975, 48.8847667837054], [2.381703700016295, 48.884750374583035], [2.381526273289477, 48.884735024027094], [2.381348845314445, 48.884719672301706], [2.381156201995175, 48.884703262304775], [2.381144610925868, 48.88469247074071], [2.3811871540341363, 48.88456065432638], [2.381229304014015, 48.88442977114941], [2.381271846693292, 48.884297954673485], [2.38131399624758, 48.884167071435414], [2.381356538497872, 48.88403525489789], [2.381398687637361, 48.8839043706995], [2.381441230822249, 48.88377255410747], [2.381483379525575, 48.883641670747245], [2.381525920917911, 48.883509854086576], [2.381568069206548, 48.883378969766014], [2.381610610169916, 48.88324715304382], [2.381652758022308, 48.883116269561455], [2.381695298556717, 48.882984452777634], [2.38173744599443, 48.88285356833495], [2.381735943498263, 48.88284723380978], [2.381669283219077, 48.882770403580274], [2.381565659873786, 48.882650159813544], [2.381516402855648, 48.88259338804187], [2.3815006657270272, 48.88258773990839], [2.381482311986677, 48.88259539729293], [2.381366224115798, 48.88264922209905], [2.381245217485686, 48.882703962966126], [2.3811291291278502, 48.882757787537045], [2.381008121985464, 48.88281252905833], [2.380997616603433, 48.882813914566775], [2.380851953051419, 48.88279381414233], [2.380700892996378, 48.88277378095422], [2.38055522967115, 48.882753680168044], [2.38040416984657, 48.88273364660482], [2.380389503612614, 48.88273816626642], [2.380296015741467, 48.882851498566914], [2.380203082584311, 48.88296401796686], [2.380109595265578, 48.883077350105594], [2.380016661291884, 48.88318987023698], [2.379923173161902, 48.88330320220692], [2.379830238393075, 48.88341572127123], [2.3797367480777583, 48.88352905396452], [2.379643813866652, 48.88364157286804], [2.379550322750874, 48.88375490449323], [2.3794573877232, 48.88386742412825], [2.37936389579624, 48.883980755584616], [2.379270958609833, 48.88409327414544], [2.379177467235168, 48.884206605440035], [2.379084529232161, 48.884319124732336], [2.3789910370464042, 48.88443245585806], [2.378898098248233, 48.88454497408328], [2.378868981363138, 48.8845783606984], [2.3788771370194812, 48.88458422434481], [2.378976642358344, 48.88462386568397], [2.379132642178315, 48.88468221900104], [2.379298942061936, 48.88474846942726], [2.379397379796583, 48.88478529088263], [2.379438966701756, 48.884801949706784], [2.379450528214113, 48.88480043221233], [2.379508091072574, 48.88482196362161], [2.379671638658641, 48.8848855786185], [2.37982764003069, 48.88494393191542], [2.379827794793953, 48.884943990273904], [2.379991341779493, 48.88500760571922], [2.380162592495487, 48.88507363143925], [2.3803261416607873, 48.8851372464268], [2.38049739185319, 48.88520327255237], [2.3806609418453393, 48.885266886175856], [2.380832192888668, 48.88533291181477], [2.380995743696961, 48.88539652497344], [2.381166995591012, 48.88546255012574], [2.381330547215451, 48.885526162819545], [2.381501801323953, 48.88559218749223], [2.381665352390334, 48.885655800613435], [2.381836607360342, 48.88572182390022], [2.382000159242771, 48.8857854365566], [2.38212296241876, 48.88583278036724], [2.382154149656492, 48.885845916760154]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 2, "roussel_fabien": 21.0, "nb_emargement": 1137.0, "nb_procuration": 55.0, "nb_vote_blanc": 13.0, "jadot_yannick": 104.0, "le_pen_marine": 67.0, "nb_exprime": 1122.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1542.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1138, "quartier_bv": "76", "geo_point_2d": [48.88433849086602, 2.3810824300779756], "melenchon_jean_luc": 541.0, "poutou_philippe": 6.0, "macron_emmanuel": 253.0}, "geometry": {"type": "Point", "coordinates": [2.3810824300779756, 48.88433849086602]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0616c77fa8b84ff43958b229c85fe2728a6b0423", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 45, "zemmour_eric": 105.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-53", "geo_shape": {"coordinates": [[[2.3711232160205, 48.88947551409239], [2.371100342741685, 48.889477756481], [2.370895935471288, 48.88950223608023], [2.370691813002228, 48.8895262671665], [2.370487406713067, 48.88955074607448], [2.370283283865301, 48.88957477646324], [2.370078877193661, 48.88959925467277], [2.369874753967201, 48.88962328436406], [2.369670345549362, 48.889647761867934], [2.369466223307948, 48.88967179086898], [2.369262099514409, 48.88969581951434], [2.369057690523826, 48.88972029597077], [2.368853566351617, 48.88974432391863], [2.368649158342321, 48.8897687996838], [2.368445033791453, 48.88979282693421], [2.368240625399721, 48.88981730200089], [2.368179003285404, 48.88982586397235], [2.368176203648653, 48.889839330945385], [2.368209494819863, 48.8899153545702], [2.368266072346919, 48.89004493967569], [2.368321666050698, 48.89017189262728], [2.368378244135665, 48.8903014776495], [2.368433838386942, 48.8904284305193], [2.368490418393478, 48.89055801546548], [2.368546013181254, 48.890684969152744], [2.36860259238207, 48.89081455400838], [2.368658187728164, 48.89094150671466], [2.368714767486913, 48.89107109148702], [2.368770363380325, 48.891198044111505], [2.36882694506079, 48.89132762880776], [2.368882541490834, 48.89145458224976], [2.368939122365379, 48.89158416685549], [2.368994719353758, 48.89171111931643], [2.36905130215015, 48.89184070384606], [2.369106899685975, 48.891967656225255], [2.369163481676448, 48.89209724066435], [2.369219079748828, 48.892224193861004], [2.369275662297379, 48.892353778216815], [2.369331260928114, 48.892480730432396], [2.369387845398351, 48.89261031471205], [2.369443444576555, 48.8927372668459], [2.369500028241081, 48.89286685103503], [2.369555627955871, 48.89299380398633], [2.369612212178294, 48.89312338809213], [2.369667812451454, 48.893250340062416], [2.369724398595814, 48.893379924092045], [2.369779999416468, 48.893506875980506], [2.369836584754915, 48.89363645991964], [2.369892186112184, 48.89376341262556], [2.369948773372597, 48.893892996488525], [2.370004375288158, 48.89401994821339], [2.370005419845246, 48.8940216552202], [2.370089249955671, 48.8941262526313], [2.37018652808394, 48.89424814265521], [2.370270358911896, 48.89435274081717], [2.370367636523475, 48.8944746306616], [2.370406091705215, 48.89452261094198], [2.370436532627646, 48.89453618251678], [2.370485177694631, 48.894513555980865], [2.370601322532691, 48.89448105176239], [2.37072470467861, 48.89444873205066], [2.370752489105638, 48.89443326947462], [2.370729191743997, 48.894400565640765], [2.370720046191537, 48.894332447253426], [2.370703243965691, 48.89426373824259], [2.370696120067941, 48.894257207725076], [2.370483898243345, 48.89418372951547], [2.370257212772253, 48.89410494892012], [2.370252690926587, 48.8940915702548], [2.370370856015615, 48.893988486630576], [2.370488508637007, 48.89388668801355], [2.370606672805127, 48.893783603238106], [2.37072432313854, 48.89368180436319], [2.370842486363919, 48.89357872023505], [2.370960137148006, 48.893476920217346], [2.371078299441521, 48.89337383583727], [2.371195949301681, 48.893272035568835], [2.371314110663239, 48.89316895093683], [2.371431758224703, 48.89306715130978], [2.371549918665377, 48.89296406552658], [2.371667566666555, 48.892862265656014], [2.371785726164537, 48.89275918052016], [2.37190337188886, 48.89265737949251], [2.372021530454913, 48.89255429410469], [2.372139176619056, 48.8924524928335], [2.372257334253292, 48.89234940719373], [2.37237497948261, 48.89224760657113], [2.372377203730114, 48.89223959089623], [2.372320390582258, 48.89211368594329], [2.37226491127507, 48.891989614459575], [2.372208098671407, 48.891863709424676], [2.372152619898152, 48.89173963786069], [2.372095809213402, 48.89161373185167], [2.372040329610395, 48.89148966020021], [2.3719835194590733, 48.891363755008506], [2.37192804038989, 48.891239683276766], [2.3718712307828342, 48.891113778003074], [2.371815752247568, 48.89098970619105], [2.371760273976798, 48.89086563433929], [2.371703465183515, 48.89073972894306], [2.371647987446551, 48.890615657011026], [2.371591179208367, 48.890489750633606], [2.3715357033583, 48.890365679527704], [2.371478894300608, 48.89023977306116], [2.371423418995177, 48.89011570097569], [2.371366610470867, 48.88998979532651], [2.371311135699316, 48.88986572316074], [2.371254329082968, 48.88973981743675], [2.371198853481656, 48.88961574518359], [2.371142047420385, 48.88948983847836], [2.3711232160205, 48.88947551409239]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 53, "roussel_fabien": 18.0, "nb_emargement": 1043.0, "nb_procuration": 27.0, "nb_vote_blanc": 15.0, "jadot_yannick": 54.0, "le_pen_marine": 64.0, "nb_exprime": 1027.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 11, "nb_inscrit": 1504.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "73", "geo_point_2d": [48.89152582445995, 2.3703494224026875], "melenchon_jean_luc": 418.0, "poutou_philippe": 8.0, "macron_emmanuel": 254.0}, "geometry": {"type": "Point", "coordinates": [2.3703494224026875, 48.89152582445995]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "058e40485a4425e4a5e9574cb8ef625297898f36", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 199, "zemmour_eric": 215.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "17-53", "geo_shape": {"coordinates": [[[2.291008312662198, 48.88531016554851], [2.2910110640106662, 48.8853101080954], [2.291032564202527, 48.8853238135492], [2.291039946879572, 48.885328346738696], [2.291053439638246, 48.88533032152887], [2.291083369668035, 48.885323931811385], [2.291103418294982, 48.885319651874994], [2.291118212226606, 48.885315600731595], [2.291120311377336, 48.88530545158761], [2.291115245486725, 48.88518392429218], [2.291110221705172, 48.88506341258033], [2.291105154498057, 48.88494188524968], [2.291100130763307, 48.884821373510874], [2.291095063603192, 48.884699846153], [2.291090039902902, 48.88457933528649], [2.291085016238005, 48.884458823507316], [2.29107995051212, 48.884337296116804], [2.291074925530345, 48.88421678430264], [2.291069859851553, 48.88409525688497], [2.291068257323166, 48.88409126694035], [2.290996982508731, 48.884003258667725], [2.290925858129785, 48.88391543649813], [2.29092428694801, 48.883911849638565], [2.290910766510746, 48.88378885655163], [2.290897396860439, 48.88366721244549], [2.290884025909135, 48.88354556831632], [2.290870505662056, 48.88342257518392], [2.2908571361998282, 48.88330093103277], [2.290843616079769, 48.88317793786995], [2.290830245391958, 48.88305629278144], [2.290816726762363, 48.88293329959632], [2.2908196412147452, 48.88292706377842], [2.290948914864297, 48.88281948557077], [2.291081732644913, 48.882708957695506], [2.291211006562933, 48.88260138009091], [2.291343823231038, 48.88249085190297], [2.291473096078475, 48.88238327309479], [2.291605911634179, 48.88227274459424], [2.291605717467156, 48.88226566656868], [2.291589687642929, 48.882257287934195], [2.291410217873387, 48.88223429285085], [2.291231373056512, 48.882211378539765], [2.2910519036034, 48.88218838291834], [2.290873059114094, 48.88216546717176], [2.290693589977421, 48.88214247101228], [2.2905147458034563, 48.8821195547295], [2.290335276983229, 48.88209655803193], [2.290156433124713, 48.88207364121298], [2.2899769646208368, 48.882050643977344], [2.289798121077674, 48.882027726622205], [2.289782758013473, 48.882021177350346], [2.289770705959933, 48.8820242139619], [2.2896046703770763, 48.88200293714188], [2.289445725544121, 48.881982569134834], [2.289279690214539, 48.8819612927626], [2.2891207456357883, 48.8819409243234], [2.288961799817752, 48.881920555664735], [2.288795766259488, 48.88189927772898], [2.288788085430166, 48.88189635692136], [2.288661514413251, 48.88180052526555], [2.288534756278627, 48.88170455025759], [2.288408187557446, 48.88160871832534], [2.288281430356531, 48.88151274303248], [2.288154861204263, 48.88141691080762], [2.28802810630045, 48.8813209352379], [2.287901538080595, 48.88122510272859], [2.287774782746975, 48.881129126865844], [2.287648216822816, 48.8810332940801], [2.287521462422985, 48.880937317932435], [2.287394897431013, 48.880841484862195], [2.287268143964861, 48.88074550842963], [2.287141578541791, 48.88064967506679], [2.28701482737269, 48.880553698357446], [2.287003754983605, 48.88055062682747], [2.286873957105077, 48.88055559600822], [2.286722776799228, 48.880561382859554], [2.286710056962777, 48.88057157212004], [2.286745117477409, 48.880741688443315], [2.286777526384546, 48.880898937394484], [2.286781865745616, 48.88090437995758], [2.286919399948383, 48.88098685549693], [2.287058159955873, 48.88107006393478], [2.287195696397346, 48.881152539152446], [2.287334455911933, 48.881235748148676], [2.2874719932285252, 48.88131822303656], [2.287610753626016, 48.88140143170005], [2.287748291817734, 48.88148390625807], [2.287887053110432, 48.88156711368952], [2.288024592177176, 48.88164958791774], [2.288163354340594, 48.881732795915696], [2.288164545741453, 48.88174529389103], [2.288022507199504, 48.88185485368531], [2.287885374236241, 48.88196062929428], [2.287743333156254, 48.88207018872783], [2.287606200422353, 48.882175964004475], [2.287469065767967, 48.88228173910576], [2.287327022936341, 48.88239129801344], [2.287189887147883, 48.882497072774214], [2.287047844505031, 48.88260663133736], [2.2870265942544012, 48.88260620171444], [2.286912147072379, 48.88250610475957], [2.28680037777879, 48.882408348421045], [2.286685932829906, 48.8823082512401], [2.286574164373365, 48.88221049557206], [2.286561300072103, 48.88220701132626], [2.286411415269892, 48.882221495815884], [2.286232934386753, 48.88223874327336], [2.286218496360391, 48.88224850043663], [2.286218571552845, 48.88225475397355], [2.286364298053186, 48.882348094298095], [2.286505329349998, 48.882438008759536], [2.286651056877098, 48.88253134871949], [2.286792089165389, 48.88262126282818], [2.286937817731469, 48.8827146015243], [2.287078851011142, 48.882804515280206], [2.28722458059168, 48.882897854511036], [2.287365616226287, 48.882987767922245], [2.287506650984255, 48.883077681151896], [2.287652382096071, 48.88317101983882], [2.28779341784544, 48.8832609327157], [2.287939149984048, 48.88335427103801], [2.288080186724927, 48.88344418356211], [2.288225919890231, 48.88353752151987], [2.288366957634813, 48.883627432791855], [2.288512691826921, 48.883720770385], [2.288653730550631, 48.88381068220354], [2.288799465769552, 48.88390401943202], [2.288940505484691, 48.88399393089776], [2.289086241730533, 48.88408726776163], [2.289227283800579, 48.88417717888266], [2.289373019709673, 48.88427051537383], [2.289514062771164, 48.88436042614204], [2.289659799707088, 48.88445376226859], [2.289800843772297, 48.88454367178473], [2.289946581735053, 48.88463700754669], [2.289995656580432, 48.88466829053952], [2.290013011776844, 48.88468341503892], [2.290019827619379, 48.8846837009747], [2.290111796509341, 48.88474232801698], [2.2902704309485, 48.88484173658598], [2.290411475743057, 48.884931646242265], [2.290570111318752, 48.88503105529637], [2.290711157143492, 48.8851209645841], [2.290869792504388, 48.88522037321598], [2.29098933917876, 48.885296576677355], [2.291008312662198, 48.88531016554851]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 53, "roussel_fabien": 7.0, "nb_emargement": 1341.0, "nb_procuration": 61.0, "nb_vote_blanc": 11.0, "jadot_yannick": 69.0, "le_pen_marine": 71.0, "nb_exprime": 1328.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1674.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1340, "quartier_bv": "65", "geo_point_2d": [48.883008754981475, 2.2892954584748253], "melenchon_jean_luc": 114.0, "poutou_philippe": 2.0, "macron_emmanuel": 606.0}, "geometry": {"type": "Point", "coordinates": [2.2892954584748253, 48.883008754981475]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2c0ace357106abbaf295bccac84395adee77d3d9", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 75, "zemmour_eric": 63.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "14-50", "geo_shape": {"coordinates": [[[2.321003804424643, 48.82759052669807], [2.320995936440431, 48.82757975784876], [2.320931815672655, 48.82751683037255], [2.320814927255967, 48.82740161646284], [2.320710607049445, 48.827299236883825], [2.3205937196211748, 48.82718402183626], [2.320489400272615, 48.82708164294373], [2.320372513821137, 48.82696642765763], [2.320268195342349, 48.82686404855226], [2.3202679453295962, 48.82686379170786], [2.320172937235788, 48.82676290263276], [2.320076042134259, 48.82665925424219], [2.319981034796165, 48.82655836409695], [2.319884141806617, 48.82645471643905], [2.319789135212602, 48.82635382612298], [2.319692241622613, 48.826250178283004], [2.319655032735942, 48.82621066375442], [2.319640179567349, 48.82617750010148], [2.319582680498335, 48.826178051658395], [2.319524885018453, 48.82611667567111], [2.319494855451094, 48.826083791687], [2.3194741539010533, 48.82607041704017], [2.319448424869363, 48.82608103079349], [2.319250335995435, 48.826110026244564], [2.319051473885987, 48.826138969298064], [2.318853384571168, 48.826167964090104], [2.318654522020368, 48.82619690648204], [2.3184564322646652, 48.82622590061512], [2.318257569272422, 48.82625484234546], [2.318059479064182, 48.82628383671885], [2.317860615630603, 48.82631277778763], [2.317662524993256, 48.82634177060269], [2.317463661118352, 48.826370711009915], [2.317265570040046, 48.82639970316596], [2.317066705723928, 48.82642864291161], [2.316868614204773, 48.82645763440865], [2.316669749447346, 48.826486573492716], [2.316471658849422, 48.82651556433853], [2.316272792288625, 48.826544502753244], [2.316074701238073, 48.826573493839355], [2.315875834235879, 48.826602431592484], [2.315677742756399, 48.82663142112026], [2.315478875312923, 48.826660358211825], [2.31528078339263, 48.82668934708056], [2.315081915507879, 48.826718283510516], [2.314883823146679, 48.826747271720286], [2.314684954820763, 48.826776207488656], [2.314486862018766, 48.826805195039384], [2.314287993251594, 48.82683413014615], [2.314089900008809, 48.82686311703784], [2.313891030788552, 48.826892052382355], [2.313849651028741, 48.826917620847865], [2.31384984415525, 48.826918782154515], [2.3138833420370712, 48.82694085712892], [2.314022171180875, 48.82703234419296], [2.3141636298998662, 48.82712765413475], [2.31430246003293, 48.82721914085815], [2.314443918409069, 48.82731445044473], [2.314582749531399, 48.82740593682756], [2.314724210288873, 48.827501246074526], [2.314863042400479, 48.82759273211672], [2.315004502815106, 48.82768804100848], [2.315143335915992, 48.82777952671009], [2.315284797349871, 48.82787483525443], [2.315423631440046, 48.82796632061541], [2.315565095255296, 48.82806162882015], [2.315703930334767, 48.828153113840514], [2.315845393807177, 48.82824842169], [2.315984229875951, 48.82833990636974], [2.316125694367636, 48.82843521387185], [2.316264532799637, 48.828526697319404], [2.316405998298813, 48.82862200537336], [2.316544836358004, 48.82871348847251], [2.316686302876475, 48.82880879617904], [2.316825141924984, 48.82890027893759], [2.316966610824893, 48.82899558630443], [2.317105450862731, 48.8290870687223], [2.317218641333309, 48.829163324688004], [2.317218906145881, 48.82917451624391], [2.31722996217787, 48.829182089158024], [2.317258240278694, 48.82920114020097], [2.317307093408082, 48.82922414183081], [2.317322736097824, 48.82922422212978], [2.317513293153218, 48.82913743342854], [2.317691922196155, 48.829055522042616], [2.317870550677875, 48.828973610383905], [2.318061105905166, 48.82888682079043], [2.318061333380111, 48.828886717759794], [2.31822235717143, 48.828816031936995], [2.318382471511668, 48.828745794897415], [2.318543493082033, 48.82867510772632], [2.318703607918938, 48.82860487025575], [2.318864628618519, 48.82853418264338], [2.31902474122784, 48.82846394472631], [2.319185761045097, 48.828393257572], [2.319345874162825, 48.82832301832462], [2.3195068931093052, 48.82825233072907], [2.319667003987719, 48.8281820919345], [2.319828022075363, 48.82811140299842], [2.319988133450436, 48.828041163772845], [2.320149150667405, 48.827970474395535], [2.320309261176921, 48.82790023473123], [2.320470277523213, 48.82782954491268], [2.320630385805272, 48.82775930480191], [2.320791401269175, 48.827688615441446], [2.320951510059606, 48.82761837400038], [2.321003804424643, 48.82759052669807]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 50, "roussel_fabien": 27.0, "nb_emargement": 1205.0, "nb_procuration": 75.0, "nb_vote_blanc": 9.0, "jadot_yannick": 110.0, "le_pen_marine": 58.0, "nb_exprime": 1191.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1541.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1205, "quartier_bv": "56", "geo_point_2d": [48.827476455835125, 2.3176775191912777], "melenchon_jean_luc": 308.0, "poutou_philippe": 8.0, "macron_emmanuel": 468.0}, "geometry": {"type": "Point", "coordinates": [2.3176775191912777, 48.827476455835125]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "93271748d463a631eeb013f58bd8a1348ebaf62f", "fields": {"lassalle_jean": 0.0, "pecresse_valerie": 4, "zemmour_eric": 6.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 0.0, "date_tour": "2022-04-10", "id_bvote": "15-99", "geo_shape": {"coordinates": [[[2.4623965389855402, 48.81940599996399], [2.4624101578019353, 48.81940606119362], [2.462410250522558, 48.819397067893696], [2.462396631708514, 48.819397006664076], [2.4623965389855402, 48.81940599996399]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 99, "roussel_fabien": 1.0, "nb_emargement": 66.0, "nb_procuration": 21.0, "nb_vote_blanc": 1.0, "jadot_yannick": 8.0, "le_pen_marine": 3.0, "nb_exprime": 65.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 901.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 66, "quartier_bv": "14", "geo_point_2d": [48.81940153392898, 2.462403394754635], "melenchon_jean_luc": 16.0, "poutou_philippe": 1.0, "macron_emmanuel": 22.0}, "geometry": {"type": "Point", "coordinates": [2.462403394754635, 48.81940153392898]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d684db753930937ad18c0dc9e9b5365872caf4e1", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 60, "zemmour_eric": 82.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "3-14", "geo_shape": {"coordinates": [[[2.36379812373917, 48.86750136102104], [2.363770323804195, 48.867465189233656], [2.363602683106802, 48.86739674395962], [2.36343524032653, 48.86733355704681], [2.363267601856149, 48.86726511130261], [2.363100159905319, 48.867201923913456], [2.362932520924664, 48.867133478583796], [2.362765079803477, 48.86707029071843], [2.362597639088492, 48.867007102615176], [2.362430001406042, 48.86693865567032], [2.362262561520499, 48.866875467090814], [2.362094926065048, 48.86680701967579], [2.361927485646021, 48.866743830612705], [2.361759851054434, 48.866675382720246], [2.361755443684184, 48.86667272594369], [2.361642009994458, 48.866565569626005], [2.36153173532417, 48.866464526681376], [2.361418301184833, 48.866357370124256], [2.361308028763316, 48.86625632606252], [2.361194595537485, 48.86614916927324], [2.361084322616548, 48.86604812587839], [2.36097089166722, 48.86594096886419], [2.360860619631925, 48.86583992434494], [2.360747189585147, 48.865732767997855], [2.360636918424355, 48.86563172325348], [2.360526647691432, 48.8655306783983], [2.360413219004848, 48.865423521704784], [2.360393346866594, 48.86540531172664], [2.360391920898774, 48.86540465388082], [2.360333475314809, 48.865430971076634], [2.360133252993407, 48.865470024087216], [2.359931366048738, 48.86550940151697], [2.359731144476406, 48.865548454758674], [2.359529256923852, 48.86558783150738], [2.359329034759703, 48.86562688317431], [2.359127146599275, 48.865666259241934], [2.358926922469271, 48.86570531022615], [2.358725033700975, 48.86574468561269], [2.358524810320045, 48.86578373682801], [2.358322920943887, 48.865823111533494], [2.358315040206833, 48.865836300417094], [2.358411632683325, 48.86594448041319], [2.358506676557174, 48.866050924380566], [2.358603271192683, 48.86615910420832], [2.358698315838501, 48.866265548902206], [2.358794909906812, 48.866373728546975], [2.358889955335885, 48.86648017306805], [2.358986550200017, 48.8665883525372], [2.359081596412253, 48.86669479688538], [2.359178193435548, 48.8668029761862], [2.359273240430855, 48.86690942036155], [2.3592748176343, 48.866912081864236], [2.359304531360881, 48.86700263110538], [2.35933586529221, 48.867098118297335], [2.359365579231017, 48.86718866750814], [2.359396913386145, 48.86728415466806], [2.359386975918023, 48.867294769472124], [2.359184180014698, 48.86732906756522], [2.358986088528996, 48.86736257031099], [2.358783292097787, 48.86739686772276], [2.35858520010752, 48.867430368903705], [2.358569102169098, 48.86743455540566], [2.358566754335396, 48.86744421794199], [2.358600048406453, 48.86756642354903], [2.358632873087732, 48.867686906176786], [2.35866616610575, 48.86780911173132], [2.3586989910818, 48.86792959521375], [2.358732285773296, 48.86805180073039], [2.358765111066268, 48.86817228326898], [2.35879840470472, 48.86829448873313], [2.358831230292475, 48.86841497212639], [2.358848069092037, 48.86846536156837], [2.358871828077912, 48.868462557884975], [2.359070031206364, 48.86843450954003], [2.359276412548231, 48.8684039936872], [2.359376786673979, 48.868389788969424], [2.359379874403786, 48.86839145218922], [2.359410715638037, 48.868399599807354], [2.359601288445834, 48.86837208442462], [2.359699116914951, 48.86835823994226], [2.359897319201034, 48.86833019022475], [2.360087891486929, 48.868302674964774], [2.360286093352255, 48.86827462460209], [2.360476663877389, 48.86824710781519], [2.360674865310907, 48.8682190577066], [2.360865436790461, 48.86819154030656], [2.361063637814344, 48.868163488653515], [2.361254208874212, 48.868135971532396], [2.361444778369682, 48.86810845409995], [2.361642978765358, 48.868080401485436], [2.36183354922625, 48.86805288254057], [2.3620317492012273, 48.868024829280856], [2.362241266908732, 48.86799507059352], [2.362439465081017, 48.86796701664997], [2.362637664402886, 48.86793896238473], [2.362847181418887, 48.867909202634486], [2.363045380301313, 48.86788114769264], [2.363254896851857, 48.86785138722713], [2.363261215752229, 48.867849239042215], [2.363398611552325, 48.86776653623508], [2.363526267151505, 48.86769205361043], [2.363663662116126, 48.86760935048731], [2.363791318314299, 48.86753486757665], [2.36379812373917, 48.86750136102104]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 14, "roussel_fabien": 26.0, "nb_emargement": 1352.0, "nb_procuration": 94.0, "nb_vote_blanc": 13.0, "jadot_yannick": 138.0, "le_pen_marine": 42.0, "nb_exprime": 1334.0, "nb_vote_nul": 5.0, "arr_bv": "03", "arthaud_nathalie": 6, "nb_inscrit": 1654.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1352, "quartier_bv": "09", "geo_point_2d": [48.867082924251896, 2.3605930979022407], "melenchon_jean_luc": 349.0, "poutou_philippe": 3.0, "macron_emmanuel": 577.0}, "geometry": {"type": "Point", "coordinates": [2.3605930979022407, 48.867082924251896]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "700aab1f1dc4e8ad1a30a750dbdee1c329b21caf", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 52, "zemmour_eric": 75.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "11-22", "geo_shape": {"coordinates": [[[2.365199393664297, 48.868074698922484], [2.365206171001911, 48.86808068040846], [2.365318245905936, 48.868125460268224], [2.365418285030078, 48.868165651626114], [2.365419490353062, 48.86816608070665], [2.365604298073769, 48.86822407948018], [2.365777634677853, 48.86827781546119], [2.365950971650392, 48.868331550289284], [2.366135779186801, 48.86838954822631], [2.366309116889627, 48.868443283429606], [2.366493926584355, 48.86850128081499], [2.36666726503935, 48.86855501459489], [2.366852074155109, 48.86861301231351], [2.36685282538973, 48.868613229431], [2.367026164576518, 48.86866696358502], [2.367236007289261, 48.868722869018015], [2.367307074302928, 48.868744899009435], [2.367326129974688, 48.86875296339196], [2.367335367901616, 48.868752916892205], [2.367437640878711, 48.868784619570825], [2.367624434385123, 48.86884638850184], [2.367797775154607, 48.86890012062776], [2.367906092504648, 48.86893593782693], [2.36792817021484, 48.86893201818115], [2.367936236876111, 48.86889143490635], [2.368032189155993, 48.868768626797625], [2.368122634591748, 48.86867584546866], [2.368132233168532, 48.86867112784133], [2.368316020078697, 48.86864833198459], [2.368512990859372, 48.86862485265714], [2.368696778791925, 48.868602057121294], [2.3688937492369, 48.868578576266955], [2.369077535476384, 48.86855578013834], [2.369274506927033, 48.86853229956294], [2.369458292847506, 48.868509501949404], [2.369591691612902, 48.868493599220706], [2.369628131469514, 48.86848488767818], [2.3696209229351313, 48.868445437039746], [2.369693705630618, 48.86833034599045], [2.369767478058491, 48.86821432478434], [2.369840261470345, 48.868099233629046], [2.369914033255389, 48.86798321140909], [2.369986814657484, 48.86786812013347], [2.370060585777954, 48.867752098698205], [2.37013336789652, 48.86763700731656], [2.370207138374173, 48.86752098486747], [2.370279918482908, 48.86740589336549], [2.370353688295906, 48.86728987170111], [2.370426469121116, 48.86717478009316], [2.370500238280542, 48.867058758314215], [2.370573017095949, 48.866943666585904], [2.3706467856125792, 48.866827643793144], [2.370719565144465, 48.86671255195886], [2.37079333299657, 48.86659652995079], [2.370866110518681, 48.86648143799623], [2.3709398777278983, 48.86636541497437], [2.370940009828495, 48.8663651998267], [2.371012788066497, 48.866250107766014], [2.371073798120681, 48.86614672079801], [2.371073859258431, 48.86614662488973], [2.371132547742816, 48.866056775166754], [2.371193557322153, 48.86595338901895], [2.371175999146482, 48.86592565010167], [2.371142094794267, 48.865925158991864], [2.370956609597815, 48.86595967588021], [2.370794650982769, 48.86598439013168], [2.370786425406568, 48.86598395387552], [2.370618448472584, 48.86593869263317], [2.37045398958428, 48.865896412988526], [2.370286013221396, 48.86585115127599], [2.37012155351625, 48.865808871164056], [2.369953577735347, 48.8657636080821], [2.369789119939374, 48.86572132751718], [2.369757765705138, 48.8657128785728], [2.369748844703977, 48.86570570340949], [2.369731378237035, 48.86570515726259], [2.369594757300381, 48.86566834262454], [2.369435240852773, 48.8656256702991], [2.369267264884908, 48.86558040713856], [2.369107748974717, 48.865537734373206], [2.368939774938035, 48.86549247075667], [2.368780258202368, 48.86544979754432], [2.36876245984564, 48.86545482452883], [2.368686876594858, 48.8655809264656], [2.36861125622769, 48.8657066863963], [2.3685356722455833, 48.86583278820887], [2.368460052510807, 48.86595854802258], [2.368384467797267, 48.866084649711006], [2.368308845968861, 48.86621040939337], [2.368233260512969, 48.86633651185684], [2.368157639327853, 48.866462270523], [2.368139846126594, 48.866467288446316], [2.367976758856388, 48.86642366454412], [2.367822122095936, 48.866383310092054], [2.367813582946285, 48.86638298619207], [2.3676141835601943, 48.86641820503872], [2.367419039516335, 48.866452546702774], [2.367223893852068, 48.866486888040384], [2.3670244936697182, 48.866522105901296], [2.366829347484793, 48.86655644659348], [2.366629946758433, 48.86659166469413], [2.36643480142692, 48.8666260038488], [2.366235400167586, 48.86666122128995], [2.366040252952312, 48.86669555979195], [2.365840851160113, 48.866730776573554], [2.36583157438462, 48.86674255376322], [2.365877070058337, 48.866824605228345], [2.365918415799315, 48.86690076198345], [2.365918249829087, 48.86690711765014], [2.365849309562669, 48.86702149667885], [2.365781847323907, 48.867134257480465], [2.365712906457401, 48.86724863640714], [2.36564544362923, 48.86736139710873], [2.365577979145852, 48.86747415775358], [2.365509038734089, 48.86758853743419], [2.365441573661284, 48.867701297978975], [2.365372632660272, 48.86781567665822], [2.365305166998135, 48.86792843710299], [2.365236224033953, 48.86804281567297], [2.365199393664297, 48.868074698922484]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 22, "roussel_fabien": 31.0, "nb_emargement": 1390.0, "nb_procuration": 60.0, "nb_vote_blanc": 15.0, "jadot_yannick": 158.0, "le_pen_marine": 56.0, "nb_exprime": 1371.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1710.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1390, "quartier_bv": "41", "geo_point_2d": [48.867276468856524, 2.368255235622022], "melenchon_jean_luc": 438.0, "poutou_philippe": 7.0, "macron_emmanuel": 483.0}, "geometry": {"type": "Point", "coordinates": [2.368255235622022, 48.867276468856524]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "785ac72608417884ed089efd37e11a36433ff426", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 66, "zemmour_eric": 81.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "18-4", "geo_shape": {"coordinates": [[[2.341499927717849, 48.89424043721247], [2.341482035990529, 48.89423028890953], [2.341477090532832, 48.89419566571511], [2.341477265456555, 48.8941931584693], [2.341511794329721, 48.8940802541559], [2.341544616709542, 48.893965307971555], [2.341579145285552, 48.8938524036153], [2.341611967372942, 48.89373745738859], [2.341646495651798, 48.89362455298944], [2.341679317446964, 48.89350960672037], [2.341713844064846, 48.89339670227084], [2.341746666931515, 48.893281755966925], [2.341747640613522, 48.89327971715969], [2.341764570180714, 48.8932586068975], [2.341758682931147, 48.8932478735009], [2.3418305755404862, 48.8931429634116], [2.341890962682005, 48.893056783181244], [2.341951348248541, 48.892970603805374], [2.3420232400980883, 48.892865692674604], [2.342031308328528, 48.89286087526852], [2.342198452788606, 48.89282368114682], [2.342380713920557, 48.892778738507225], [2.34238894365376, 48.892767609618396], [2.342330864132074, 48.892646253515736], [2.342274310337127, 48.89252732942514], [2.342216231350754, 48.89240597324027], [2.342159678067257, 48.89228704996873], [2.342101599616085, 48.89216569370172], [2.342045046866755, 48.8920467694507], [2.3419869689393122, 48.89192541400072], [2.341930416712777, 48.89180648966956], [2.341872339331988, 48.89168513323811], [2.341815787616877, 48.89156620972605], [2.341757710771268, 48.891444853212434], [2.341701159590309, 48.89132592872089], [2.341692748264976, 48.891297707561826], [2.341659232820709, 48.891296877589284], [2.341624298567333, 48.8912820589172], [2.341618504333427, 48.89127682447078], [2.341565365970033, 48.89114614470846], [2.341515081693105, 48.891025008939515], [2.341464797650147, 48.8909038731361], [2.341411661416885, 48.89077319326863], [2.341361377869087, 48.89065205649474], [2.341308242152463, 48.890521376551405], [2.341315235780634, 48.89051103052149], [2.341432812695511, 48.89047162671113], [2.341566027575433, 48.890416213562105], [2.34156662167925, 48.89040126375841], [2.341395886781191, 48.89032168786372], [2.341243619527254, 48.890249355754385], [2.3410728856208323, 48.89016977938818], [2.340920619259819, 48.89009744685812], [2.340768353321848, 48.89002511412966], [2.340597620888532, 48.88994553617029], [2.340445355843484, 48.8898732030211], [2.340274624390413, 48.88979362548946], [2.340221122386045, 48.889802348238454], [2.340218477178395, 48.88980574750191], [2.340254346015099, 48.88992515518641], [2.340290876988861, 48.8900468894508], [2.340326746146215, 48.890166297986575], [2.340363277458526, 48.89028803220214], [2.340399146959422, 48.89040743979076], [2.340435678610083, 48.890529173957454], [2.340471549795597, 48.890648582404914], [2.340508080420963, 48.89077031651529], [2.34054395194993, 48.89088972401557], [2.340580484277615, 48.89101145808457], [2.3406163547636, 48.89113086642866], [2.34065288742965, 48.89125260044886], [2.340637374189252, 48.89126322777566], [2.340469778222653, 48.891245714081016], [2.340250818231712, 48.89122243398696], [2.340083222537841, 48.89120491885137], [2.339864262891289, 48.89118163804969], [2.33969666744726, 48.89116412327167], [2.339636748938194, 48.89115775209048], [2.339598478053115, 48.89117594300151], [2.339626829787306, 48.89122280576012], [2.339648584906729, 48.89126642424295], [2.339687910670253, 48.891394551963074], [2.339728576018678, 48.89152987803442], [2.339767902178024, 48.89165800569751], [2.339808567928707, 48.891793332608444], [2.339847894495284, 48.89192145931519], [2.339888560659634, 48.892056786166464], [2.339927887622042, 48.892184912816184], [2.339968554200068, 48.89232023960774], [2.340007881546915, 48.892448367099696], [2.340048548550019, 48.892583692932305], [2.340087876292712, 48.8927118203672], [2.340087898565185, 48.89271189243578], [2.340120392412902, 48.89281556646944], [2.340159720507534, 48.89294369385363], [2.340192214642927, 48.89304736784588], [2.340206921210862, 48.8930952793476], [2.340206481863266, 48.89311617268613], [2.340221938747015, 48.893126618044604], [2.340246560674898, 48.893206832971735], [2.340287237197326, 48.89334462461735], [2.340326566102164, 48.89347275188488], [2.340367243055367, 48.89361054257061], [2.340406572357955, 48.893738669780824], [2.340447249730646, 48.89387646040594], [2.340486579430992, 48.89400458755874], [2.340527257223176, 48.89414237812327], [2.340566587321386, 48.894270505218756], [2.34060726553307, 48.89440829572265], [2.340646596028948, 48.89453642276072], [2.340687274660138, 48.894674213204], [2.34072660555379, 48.89480234018477], [2.340734989423991, 48.894829824626086], [2.340745403530421, 48.89483484980671], [2.34075614569528, 48.8948400341735], [2.340810230960756, 48.89482593556878], [2.340868549630116, 48.89483760240684], [2.3409258049982142, 48.894845886413705], [2.340938776129398, 48.89484318339522], [2.341086678261108, 48.89473693310472], [2.341225856291096, 48.89463519509054], [2.34136503514091, 48.89453345691266], [2.341512935534266, 48.89442720516644], [2.341516372460878, 48.89441977678511], [2.341498834359446, 48.89434348984059], [2.341488129020518, 48.89426853818196], [2.341499927717849, 48.89424043721247]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 4, "roussel_fabien": 26.0, "nb_emargement": 1509.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 141.0, "le_pen_marine": 77.0, "nb_exprime": 1488.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1855.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1508, "quartier_bv": "70", "geo_point_2d": [48.892334304074794, 2.3409682076066596], "melenchon_jean_luc": 489.0, "poutou_philippe": 10.0, "macron_emmanuel": 529.0}, "geometry": {"type": "Point", "coordinates": [2.3409682076066596, 48.892334304074794]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ea699516eb4237f144d089bd40e7d508b3dffc00", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 138, "zemmour_eric": 129.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "7-5", "geo_shape": {"coordinates": [[[2.3317447380596352, 48.856418916679374], [2.3317389443221073, 48.85640318341451], [2.331706790646753, 48.856363930541484], [2.331668489111632, 48.85631296971484], [2.331669110100596, 48.85629919598916], [2.3316652698076172, 48.85629310570376], [2.3316075965894782, 48.85621636821066], [2.331516956623527, 48.8560950571277], [2.331420982804026, 48.85596735862771], [2.331330343705813, 48.855846047376225], [2.331234370813855, 48.85571834779862], [2.331143732571624, 48.85559703727789], [2.331047760595656, 48.85546933752199], [2.330957123232585, 48.8553480259334], [2.330861153523872, 48.85522032690615], [2.330770515665579, 48.855099015141384], [2.330769831762412, 48.85509793299049], [2.330714339976891, 48.854990992456216], [2.330646150081214, 48.85485861275758], [2.330590660167311, 48.854751672150556], [2.330522469524675, 48.854619293244596], [2.330466980130919, 48.85451235165786], [2.330466660227743, 48.85451179226782], [2.330439195256774, 48.85446821862832], [2.330425124109578, 48.854453537962456], [2.33036984905342, 48.85446187234164], [2.330198147650263, 48.85451216736932], [2.330028022743158, 48.85456129821834], [2.329856320682434, 48.85461159275105], [2.329686195128509, 48.854660723109724], [2.329514491047413, 48.85471101713976], [2.329344366220855, 48.85476014611635], [2.329172661470619, 48.85481044055072], [2.32900253463444, 48.854859569029315], [2.328832407465771, 48.85490869816314], [2.328660703106267, 48.854958990964455], [2.328490575290787, 48.85500811960789], [2.328318870273627, 48.85505841191423], [2.328148741822833, 48.85510753916797], [2.327977034773807, 48.855157831870926], [2.327806905676112, 48.85520695863426], [2.3276351993322493, 48.855257250849846], [2.327633090511402, 48.85525802233815], [2.327461597953036, 48.85533501734232], [2.327291153465099, 48.85541112852878], [2.327119659897556, 48.85548812303227], [2.326949214409219, 48.85556423372118], [2.326778768423045, 48.8556403441621], [2.326607273343964, 48.855717337915394], [2.326436826345863, 48.85579344875803], [2.326265330269122, 48.85587044111139], [2.326094883633553, 48.85594655146413], [2.3259233865477382, 48.856023543316816], [2.325921529621009, 48.85602454013288], [2.325872975090785, 48.85605565496072], [2.325828074688566, 48.85608717617878], [2.325801848996777, 48.856099105845324], [2.325800575103193, 48.856108657003105], [2.325712428684276, 48.85617053862833], [2.325564484732291, 48.85627477370367], [2.3254314368675493, 48.85636817620701], [2.325283493155237, 48.85647241092408], [2.325150444282131, 48.85656581309838], [2.325002498083673, 48.8566700474418], [2.324869449565055, 48.85676344929472], [2.324721502243197, 48.85686768327219], [2.324588451365095, 48.856961083889125], [2.32458682908751, 48.85696247952265], [2.324485747281126, 48.85706963080319], [2.324384121581496, 48.85717780688042], [2.324283040303283, 48.85728495797666], [2.324181413762816, 48.857393133860754], [2.324080330287119, 48.85750028475727], [2.323978704268688, 48.85760846045595], [2.323877619958476, 48.85771561116043], [2.323775991736304, 48.85782378665825], [2.323674907965927, 48.85793093627916], [2.323573278891217, 48.85803911248316], [2.323472192923316, 48.858146261904295], [2.3233705630077273, 48.85825443791514], [2.323269477568187, 48.85836158715201], [2.323167846811611, 48.85846976296966], [2.323113624581028, 48.858489065756295], [2.323118933322234, 48.85850659268596], [2.32319273836722, 48.858583339069305], [2.3232872070565262, 48.858681033951214], [2.323398099024498, 48.858796343684936], [2.323492568484974, 48.85889403838604], [2.323603461360892, 48.85900934790733], [2.323697930229724, 48.859107042419815], [2.323792400815853, 48.85920473685683], [2.323903295016533, 48.859320046067964], [2.323908624578301, 48.8593224459703], [2.323963467386761, 48.85930840754777], [2.324135441523914, 48.85924729040962], [2.324319538499222, 48.85918265126094], [2.324491511791943, 48.85912153450346], [2.3246756065183343, 48.85905689479197], [2.324847580341113, 48.85899577752356], [2.325031674181405, 48.85893113725703], [2.325203647183168, 48.85887001857073], [2.325387740137259, 48.85880537774905], [2.3255597122946012, 48.85874425944342], [2.325743804362696, 48.85867961806675], [2.325915775687168, 48.85861849924249], [2.3260998668691633, 48.8585538573107], [2.326271837360865, 48.858492737967836], [2.32645592765676, 48.858428095480996], [2.3266278973274153, 48.85836697472027], [2.326811986737104, 48.85830233167835], [2.3269839555633602, 48.858241211298285], [2.327164184461294, 48.85817643717846], [2.327336152458875, 48.858115316285335], [2.327516380495083, 48.858050540728456], [2.327688346301088, 48.857989419314634], [2.327868574815247, 48.85792464412694], [2.328040539804177, 48.857863521300764], [2.3282207660821053, 48.857798745567614], [2.328392731593647, 48.857737623135336], [2.328572956998241, 48.85767284686446], [2.328744921692589, 48.85761172301984], [2.328925146223946, 48.85754694621116], [2.329097110078023, 48.85748582275282], [2.329277333747621, 48.8574210445071], [2.329449295410135, 48.8573599205281], [2.329629519557694, 48.85729514265154], [2.329801480403098, 48.85723401726023], [2.3298023378752752, 48.857233685704735], [2.329960625190337, 48.857167474106156], [2.330118467850325, 48.85710115098561], [2.330276755735463, 48.85703493806935], [2.330434597591549, 48.85696861452388], [2.330592884660767, 48.85690240208079], [2.330750725712953, 48.85683607811047], [2.3309090106265, 48.8567698643344], [2.3310668508747883, 48.856703539939176], [2.331225136335294, 48.85663732664396], [2.331382975779685, 48.85657100182384], [2.331541260447374, 48.85650478720333], [2.331699097725012, 48.85643846195069], [2.3317447380596352, 48.856418916679374]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 5, "roussel_fabien": 15.0, "nb_emargement": 1115.0, "nb_procuration": 116.0, "nb_vote_blanc": 6.0, "jadot_yannick": 61.0, "le_pen_marine": 40.0, "nb_exprime": 1105.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1361.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1115, "quartier_bv": "25", "geo_point_2d": [48.85683248669293, 2.3274807481385276], "melenchon_jean_luc": 109.0, "poutou_philippe": 2.0, "macron_emmanuel": 575.0}, "geometry": {"type": "Point", "coordinates": [2.3274807481385276, 48.85683248669293]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c1cfd7217c0092bc99a04965608f518b6ea35eda", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 31, "zemmour_eric": 128.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "10-17", "geo_shape": {"coordinates": [[[2.367851148840063, 48.876672591519885], [2.367834856030693, 48.87668401065427], [2.367791284828504, 48.87670158645777], [2.367613139558922, 48.87677258139055], [2.367458317237714, 48.876835035118056], [2.367280171057922, 48.87690602954676], [2.36712534794066, 48.87696848283608], [2.3671189638521932, 48.87697771311682], [2.367150708284095, 48.87709876300705], [2.367181478851645, 48.87721536502168], [2.367213223573691, 48.87733641486926], [2.367243993058194, 48.87745301683544], [2.367246514962247, 48.877456875712475], [2.36736937778516, 48.87756507536271], [2.367491460625738, 48.87767253689697], [2.367614324466264, 48.87778073627462], [2.36773640968128, 48.877888197545325], [2.367859273176007, 48.87799639664318], [2.367981359401853, 48.87810385764304], [2.368104223925118, 48.87821205556911], [2.368226311151095, 48.87831951719739], [2.368349178055428, 48.878427714858084], [2.3684712649397293, 48.878535175309054], [2.368593353680374, 48.87864263653154], [2.368716222109507, 48.87875083378377], [2.368838310497781, 48.87885829472822], [2.368961179944578, 48.87896649170788], [2.368988035602227, 48.8789855201241], [2.368994663677617, 48.87898439222442], [2.369084989793894, 48.878930921890834], [2.369207439313586, 48.87886186536461], [2.369353902247251, 48.87877516262268], [2.369476351044276, 48.87870610581168], [2.369622814455686, 48.878619402735715], [2.36974526251906, 48.878550346539136], [2.36974894540294, 48.87854053893056], [2.369688305963808, 48.8784321892433], [2.369629269449555, 48.87832773576558], [2.369568630507061, 48.87821938599675], [2.369509593110716, 48.87811493243266], [2.36950922230145, 48.878109408580755], [2.369551456584745, 48.87800802446353], [2.369592982189241, 48.87791133020606], [2.369634506287113, 48.877814635019234], [2.369676740076611, 48.877713251729965], [2.369683443216668, 48.8777077093643], [2.369789108514452, 48.877670332729636], [2.369905013849619, 48.877631227422185], [2.369910407692886, 48.87761849878129], [2.369809056705066, 48.877510170399056], [2.369711091732037, 48.87740510183991], [2.369609742937447, 48.87729677327514], [2.369511778767886, 48.877191704532514], [2.369410430803, 48.877083375778035], [2.369312466073601, 48.876978306844805], [2.369214503113642, 48.876873236929306], [2.369113156375868, 48.876764908791124], [2.369015194219359, 48.87665983869223], [2.368913848311466, 48.87655151036435], [2.368815885595014, 48.8764464400748], [2.368714540516896, 48.87633811155725], [2.368695839877605, 48.876335155755456], [2.368556803467984, 48.87639108406097], [2.368401984764735, 48.876453539936975], [2.368262949086828, 48.87650946790236], [2.368108128326935, 48.87657192248517], [2.367969092017465, 48.876627850103276], [2.367857841738199, 48.876672728487314], [2.367851148840063, 48.876672591519885]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 17, "roussel_fabien": 25.0, "nb_emargement": 964.0, "nb_procuration": 57.0, "nb_vote_blanc": 8.0, "jadot_yannick": 49.0, "le_pen_marine": 78.0, "nb_exprime": 954.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1335.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 964, "quartier_bv": "40", "geo_point_2d": [48.877582325368714, 2.3685902077997887], "melenchon_jean_luc": 353.0, "poutou_philippe": 5.0, "macron_emmanuel": 233.0}, "geometry": {"type": "Point", "coordinates": [2.3685902077997887, 48.877582325368714]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9213e86e337283c6277060bec51b1e4008cf9b96", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 59, "zemmour_eric": 64.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "10-30", "geo_shape": {"coordinates": [[[2.354808712597005, 48.88021630963243], [2.35482804737725, 48.88020555080255], [2.354870796141917, 48.880195741930955], [2.355059081786024, 48.88015345537607], [2.355245650040632, 48.880110648455556], [2.355433935072631, 48.880068361307885], [2.3556205013509173, 48.88002555379257], [2.355808785770904, 48.87998326605212], [2.355995352799715, 48.87994045795667], [2.356183635244212, 48.8798981696161], [2.356370201660066, 48.87985536093319], [2.356558484856014, 48.87981307200715], [2.356745049295435, 48.87977026272949], [2.356933331879354, 48.87972797321066], [2.357119897069277, 48.87968516335284], [2.357308177677697, 48.87964287323391], [2.357494742254647, 48.87960006278869], [2.357683023614494, 48.87955777208429], [2.357869586215001, 48.8795149610443], [2.357882100561446, 48.8795161883056], [2.358017292133303, 48.87958120568982], [2.358157171626956, 48.87964591079984], [2.358292363890027, 48.87971092696652], [2.358432245426132, 48.87977563265409], [2.358567438369338, 48.87984064850254], [2.358707319243319, 48.879905352954495], [2.358728408841452, 48.879907479526665], [2.358744049539278, 48.87989721919321], [2.358770677676634, 48.87983324487129], [2.358786963342213, 48.87977945763459], [2.358800047468939, 48.87975600928944], [2.358769542785383, 48.87974402059143], [2.358682860210314, 48.8796545413111], [2.358609734790051, 48.87957674676641], [2.358607711225881, 48.87957309992623], [2.358588628335605, 48.87947923783651], [2.358566435888277, 48.87938167541061], [2.358547353142528, 48.87928781329801], [2.358525162228621, 48.87919024995553], [2.358510627005345, 48.87918261857938], [2.358300568614214, 48.8791933325234], [2.358100100062121, 48.87920446624503], [2.357890041498525, 48.87921517946854], [2.357689574137933, 48.87922631250987], [2.357489105328285, 48.879237445208055], [2.357279046505897, 48.879248157359186], [2.357273623064425, 48.87924920923964], [2.357111868102176, 48.87930677392438], [2.356925302074508, 48.879365220461935], [2.356906460670058, 48.87935982578176], [2.356846743865507, 48.879236148967685], [2.356783291134804, 48.87911259592909], [2.35672357490622, 48.878988919025815], [2.356665962492766, 48.87887101180992], [2.356606246830909, 48.87874733392172], [2.356548633586875, 48.8786294266162], [2.35648891846942, 48.87850574954164], [2.356431307121681, 48.8783878421611], [2.35637369467136, 48.87826993473289], [2.356313980381608, 48.87814625753073], [2.356251652025653, 48.87801777008162], [2.356191938325941, 48.87789409189098], [2.356129610572939, 48.87776560434893], [2.356069897440928, 48.87764192696842], [2.35601018459261, 48.877518249544266], [2.355947857748885, 48.877389760964476], [2.35594106737653, 48.87738449030853], [2.3557878341379572, 48.87733294336861], [2.35563679676267, 48.8772824683629], [2.355485759669003, 48.87723199406357], [2.355332528704245, 48.8771804456418], [2.355291535599481, 48.87716858209947], [2.355278337686371, 48.87718088046302], [2.355240446338716, 48.87722189467028], [2.355142518656269, 48.87732566926645], [2.355034319320319, 48.87744278221601], [2.354936390811843, 48.87754655662274], [2.354828191905783, 48.87766367026916], [2.354730262571271, 48.87776744448649], [2.354622062753864, 48.87788455702386], [2.354524131229989, 48.87798833104444], [2.354501550384089, 48.877988887387325], [2.354382435470114, 48.87788145638351], [2.354296369824072, 48.87779410037276], [2.3542833972133392, 48.877790064338946], [2.354088092778558, 48.87780469780964], [2.35389924138497, 48.87781890982766], [2.35370393538183, 48.87783354176461], [2.353515085142247, 48.877847753183644], [2.353319778911859, 48.87786238539279], [2.353130927110621, 48.877876595298744], [2.352935620664153, 48.87789122688077], [2.352746770005769, 48.87790543708706], [2.352737279880642, 48.87790381104288], [2.352597569053091, 48.87783774685112], [2.352464807329893, 48.87777131897591], [2.352325097192187, 48.87770525535753], [2.352192336165424, 48.877638826272886], [2.35207338087538, 48.87758257667593], [2.351940619118975, 48.877516147297406], [2.351919865012634, 48.87750633382568], [2.351910370216931, 48.8775045431114], [2.351749195220829, 48.87751436892395], [2.351605622362475, 48.877523234040794], [2.35144444589893, 48.87753305853622], [2.351300874300494, 48.87754192329482], [2.351290173285391, 48.87754655533542], [2.3512242950848172, 48.877625827177795], [2.351101816121775, 48.87776985451458], [2.351035937352167, 48.877849126237216], [2.351034397745476, 48.8778547252385], [2.351053827758758, 48.87794256958838], [2.3510756318247372, 48.878042877174444], [2.3510950619665563, 48.87813072240191], [2.351116866190619, 48.87823102996335], [2.351154567406582, 48.878247843202985], [2.351164556819767, 48.87824551051333], [2.351319574159316, 48.878232709496146], [2.351504916494097, 48.87822180736878], [2.351659933690633, 48.8782090050113], [2.351845275858615, 48.87819810325603], [2.351859957895173, 48.87820567059851], [2.351889491483301, 48.87833022901086], [2.351921967270305, 48.87845240750455], [2.351951501157739, 48.87857696497442], [2.351983977244168, 48.87869914342394], [2.352013511408633, 48.87882370174987], [2.352045987794289, 48.87894588015525], [2.3520755222470813, 48.879070438438], [2.352108000306709, 48.87919261590724], [2.352114017932804, 48.87919861194969], [2.352237347846396, 48.879251289541614], [2.352447523155923, 48.879341073799516], [2.352570855107758, 48.87939375104845], [2.352580510174358, 48.87939507312039], [2.352712733720792, 48.879380519234516], [2.352887094187005, 48.87936750780024], [2.35301931757778, 48.879352953575406], [2.3531936765117543, 48.879339941686965], [2.353207170353895, 48.87935319520916], [2.353109230835463, 48.87947121334757], [2.353024461417407, 48.8795758260742], [2.352926521077449, 48.87969384314001], [2.3528417522934912, 48.879798455723474], [2.352743811109656, 48.8799164735152], [2.352659040244129, 48.8800210850415], [2.352657852751096, 48.88002754481811], [2.352691149970074, 48.880120506246335], [2.3527398224667992, 48.880246508600536], [2.352757281827592, 48.88025283446401], [2.35295216579039, 48.88021069750511], [2.353153579133072, 48.88016419597613], [2.353348462443543, 48.88012205836874], [2.353549875089571, 48.88007555616928], [2.353567522790008, 48.880081651804105], [2.353607136822553, 48.88017632522541], [2.353679078447763, 48.88032886888406], [2.353718692882304, 48.88042354134793], [2.353716367428838, 48.880442817659414], [2.353753557148525, 48.88045423577939], [2.3539294702817513, 48.88041393738749], [2.354116040397968, 48.8803711322374], [2.354291952970004, 48.88033083330983], [2.35447852111605, 48.880288028483584], [2.354654433138037, 48.88024772812109], [2.354798253285149, 48.880214730695734], [2.354808712597005, 48.88021630963243]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 30, "roussel_fabien": 17.0, "nb_emargement": 1124.0, "nb_procuration": 68.0, "nb_vote_blanc": 5.0, "jadot_yannick": 112.0, "le_pen_marine": 45.0, "nb_exprime": 1116.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 0, "nb_inscrit": 1428.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1124, "quartier_bv": "37", "geo_point_2d": [48.878865060432766, 2.3545032195581093], "melenchon_jean_luc": 398.0, "poutou_philippe": 13.0, "macron_emmanuel": 364.0}, "geometry": {"type": "Point", "coordinates": [2.3545032195581093, 48.878865060432766]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "79ac89e92f5ef3fd027135dd66fdb676de1b58a2", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 139, "zemmour_eric": 255.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-52", "geo_shape": {"coordinates": [[[2.279584075658858, 48.86380229645341], [2.279581778982223, 48.86380139496744], [2.279482457111313, 48.86381273595147], [2.279289364860695, 48.86383367398362], [2.279086362827955, 48.86385685255493], [2.278893271617576, 48.86387778995541], [2.278690269236709, 48.863900967853915], [2.2784971763405952, 48.863921904606315], [2.278294173611612, 48.86394508183208], [2.278101081755856, 48.86396601795281], [2.277898078678766, 48.86398919450576], [2.277800320712056, 48.864000355567626], [2.277607227090032, 48.86402129088232], [2.277501981712102, 48.86403330585859], [2.277473318197191, 48.86405125386842], [2.277495183800244, 48.86409138997163], [2.27760759862119, 48.86418697453184], [2.277725716113387, 48.86428490202922], [2.277838130424279, 48.86438048544871], [2.277956250151616, 48.86447841270971], [2.278068665290578, 48.86457399679522], [2.278186784527055, 48.86467192380334], [2.278299201881982, 48.864767506764565], [2.278417321978104, 48.86486543442732], [2.27841733275788, 48.86486544348583], [2.278519908209552, 48.864952416742476], [2.278638029152158, 48.865050343271754], [2.278740605323891, 48.86513731722401], [2.278858727100695, 48.86523524351914], [2.2789478983574822, 48.865311498975586], [2.279066020918886, 48.86540942505072], [2.279155192789793, 48.86548567944148], [2.279155906290078, 48.86548632857365], [2.2792626224920562, 48.86558908809672], [2.279359884683033, 48.865686385488665], [2.279454423029506, 48.86578135865772], [2.279551685937681, 48.86587865587692], [2.279646224982643, 48.865973628877995], [2.27974348997112, 48.86607092593261], [2.27983802835168, 48.86616589875748], [2.279935294057273, 48.866263195639306], [2.279936273195975, 48.866264352698735], [2.280001793347175, 48.866359759646556], [2.2800857532234238, 48.866478779288066], [2.280151275281188, 48.86657418614373], [2.280208540961495, 48.86665536324697], [2.2802119593070582, 48.866674840345084], [2.280219948866264, 48.86668235210042], [2.280246643783964, 48.866720193607996], [2.2803330668045882, 48.866833881207505], [2.28041702821427, 48.86695289966635], [2.280503451992795, 48.86706658711894], [2.280587414166819, 48.86718560543321], [2.280673838703251, 48.86729929273885], [2.280757801629211, 48.86741831180785], [2.280757845730385, 48.86741837592665], [2.28084153054853, 48.86754008949984], [2.280904657514628, 48.86763143886918], [2.28096778333898, 48.86772278818946], [2.281051469124352, 48.867844502481645], [2.281077840372629, 48.867858865205555], [2.2810866978906432, 48.867859910390976], [2.281105929061456, 48.867871962062715], [2.281123080526544, 48.86785018751515], [2.281302431453147, 48.86779489250867], [2.281475665456389, 48.867740367227405], [2.281655015630632, 48.86768507168711], [2.281828247536477, 48.86763054588195], [2.282001479067283, 48.867576020722666], [2.282180828129951, 48.86752072348697], [2.28235405892651, 48.867466197811964], [2.282533408587555, 48.86741090094991], [2.282706638662247, 48.867356373859934], [2.28288598620779, 48.86730107645587], [2.283059215548223, 48.86724654885022], [2.283238562341396, 48.867191250912356], [2.283411790947568, 48.86713672279099], [2.283591138351496, 48.8670814243275], [2.283591247882123, 48.86708138990849], [2.283764475741437, 48.86702686217055], [2.283957968526213, 48.86696580563132], [2.284131195617317, 48.866911277356905], [2.284264394475437, 48.86686924605238], [2.284293344569686, 48.86685717003334], [2.284262380468583, 48.8668105496522], [2.284184232930116, 48.86670054870503], [2.284105955000475, 48.86659152900391], [2.284027677410824, 48.866482508341605], [2.283949530860151, 48.86637250720858], [2.283871253914599, 48.86626348732163], [2.283793108022674, 48.866153486064704], [2.283714831745935, 48.866044465154665], [2.283636686512955, 48.86593446377379], [2.283558409517201, 48.86582544363095], [2.283480264942957, 48.86571544212625], [2.283401989979103, 48.86560642096839], [2.283323846063789, 48.86549641933976], [2.283318368687049, 48.86549246627052], [2.283154560107802, 48.865429464214095], [2.282991672204306, 48.86536674894002], [2.28282786441556, 48.8653037464293], [2.2826649759354662, 48.865241030695316], [2.282501168937019, 48.86517802773028], [2.282338282618671, 48.86511531065349], [2.282174476410728, 48.86505230723418], [2.282011590866372, 48.8649895906049], [2.281847785448827, 48.86492658673134], [2.281684899327781, 48.864863869642164], [2.281521096063705, 48.864800865322486], [2.281358210741446, 48.86473814688228], [2.281351510905523, 48.8647312248138], [2.281339281500072, 48.864645692292925], [2.281327658879933, 48.864564991127544], [2.281321021360691, 48.86455809910898], [2.281152657580762, 48.86449248663306], [2.28097437747847, 48.86442340669384], [2.280806014558002, 48.86435779462159], [2.28062773537619, 48.864288714157645], [2.28045937332769, 48.86422310158975], [2.2802810950664583, 48.864154020601056], [2.28011273390225, 48.86408840663827], [2.279934456561603, 48.864019325124836], [2.279766096256837, 48.86395371156569], [2.27958781983677, 48.8638846295275], [2.279584075658858, 48.86380229645341]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 52, "roussel_fabien": 7.0, "nb_emargement": 1338.0, "nb_procuration": 74.0, "nb_vote_blanc": 21.0, "jadot_yannick": 47.0, "le_pen_marine": 82.0, "nb_exprime": 1314.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1679.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1338, "quartier_bv": "63", "geo_point_2d": [48.8657630291585, 2.281080686397169], "melenchon_jean_luc": 136.0, "poutou_philippe": 6.0, "macron_emmanuel": 615.0}, "geometry": {"type": "Point", "coordinates": [2.281080686397169, 48.8657630291585]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d5e42d3416d356f51de26d15ffdbf17639892caa", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 79, "zemmour_eric": 86.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "5-12", "geo_shape": {"coordinates": [[[2.349088036291388, 48.83742056094927], [2.349024488960998, 48.837433066181575], [2.349043193989878, 48.83756123242503], [2.349063444564471, 48.83768663521276], [2.34908214978013, 48.83781480142107], [2.349102400547058, 48.83794020417376], [2.349121105949502, 48.838068370346875], [2.349141356908668, 48.83819377306457], [2.349160062509025, 48.83832193830322], [2.349180313649203, 48.83844734188515], [2.349199019436451, 48.838575507088585], [2.349219270768871, 48.8387009106355], [2.3492379767429092, 48.8388290758038], [2.349258228278805, 48.83895447841632], [2.349246464110154, 48.83896434791147], [2.349058449696833, 48.83898073574816], [2.348891908882095, 48.83899375783199], [2.348703894251217, 48.839010145111], [2.348537353265175, 48.83902316580156], [2.348537210057989, 48.83902317761277], [2.348343941661237, 48.839039661625215], [2.348155926692504, 48.839056048042295], [2.347962658053294, 48.83907253143826], [2.347774642846232, 48.83908891725558], [2.347586627509601, 48.839105303676455], [2.347393358507725, 48.83912178615187], [2.347205344306434, 48.83913817108111], [2.347012073699715, 48.839154652932564], [2.346824059259915, 48.83917103726206], [2.34663078977317, 48.839187518504474], [2.346442773721387, 48.83920390312606], [2.346249503992217, 48.839220383751986], [2.346061487713212, 48.83923676687447], [2.345868217741732, 48.83925324688387], [2.3458564184655613, 48.83926314283584], [2.345880779266258, 48.83941038260014], [2.345908182553531, 48.839556434725395], [2.3459325436262493, 48.8397036753398], [2.3459599458616323, 48.839849726508085], [2.345984307217759, 48.83999696707329], [2.346011709752383, 48.84014301819136], [2.34599943816087, 48.8401530797496], [2.345887295029553, 48.840159893542854], [2.345794571313625, 48.84016662277069], [2.345789366290285, 48.84016772930337], [2.3456362184512862, 48.84023239689627], [2.34545550120867, 48.84029967449225], [2.345302351205213, 48.84036434164266], [2.345171063126731, 48.84041321670817], [2.345142926964185, 48.840423872151106], [2.345168551716736, 48.84046388576891], [2.3452721132110312, 48.84057778788743], [2.345395641109925, 48.84071287307652], [2.345414093616902, 48.84071602379641], [2.345583806239039, 48.84065165398153], [2.345751516612451, 48.840586439262566], [2.345921227033487, 48.84052206895406], [2.346088937930089, 48.84045685376196], [2.346258647512571, 48.84039248296724], [2.346426356207685, 48.8403272672871], [2.346442376907265, 48.8403283261312], [2.346611206347958, 48.84042843485667], [2.346739450640074, 48.84050315837915], [2.346867696651077, 48.84057788266589], [2.347036527717027, 48.84067799076873], [2.347164773232935, 48.84075271381858], [2.347333605435788, 48.84085282148645], [2.347461853158968, 48.84092754511285], [2.34747783545441, 48.84092853165793], [2.347635808860709, 48.840866493523485], [2.347795654436617, 48.84080583511824], [2.347953627081595, 48.840743797456554], [2.348113470548896, 48.84068313861255], [2.348271442443715, 48.84062110052437], [2.348431286527301, 48.84056044125646], [2.348589257671957, 48.840498402741794], [2.348749101009384, 48.84043774304252], [2.348762683848749, 48.84043774414089], [2.348897076608192, 48.84048876277795], [2.349032434067611, 48.84053838080338], [2.349166827350585, 48.84058939913279], [2.349302183965804, 48.84063901684109], [2.349308314857899, 48.84064014201854], [2.349354128235116, 48.84064121772744], [2.349412822100993, 48.84064158732024], [2.349436272538122, 48.840645937371534], [2.3494485194879893, 48.840641735592065], [2.349565508033413, 48.840642472485676], [2.349654730320521, 48.840641428665826], [2.34969719054534, 48.840644470910505], [2.349705268544561, 48.840637728221324], [2.349721981979696, 48.8405216841604], [2.349741802052487, 48.840380724790606], [2.349741812599131, 48.84038064390513], [2.349756192322231, 48.84027024503036], [2.349776012206787, 48.84012928562318], [2.349790391788104, 48.84001888671945], [2.349790398138546, 48.84001739470775], [2.349781107824374, 48.8398980857345], [2.3497692282533063, 48.83980066490817], [2.349769385530747, 48.839798760908074], [2.349797110927066, 48.839686152825934], [2.349830176235027, 48.83957623946878], [2.349857900019232, 48.83946363134267], [2.349890966420153, 48.839353717954246], [2.349918689954768, 48.839241109791644], [2.349951754723928, 48.839131196357094], [2.349951407790214, 48.83912678668152], [2.349888038747363, 48.838991582435256], [2.349829547729406, 48.83887253837255], [2.349771058352237, 48.83875349337665], [2.349707690231032, 48.83861828898969], [2.349649200043864, 48.83849924479904], [2.349585832547745, 48.83836404031674], [2.349527344286571, 48.83824499604683], [2.349463977415726, 48.838109791469215], [2.349405488355769, 48.837990747105245], [2.349342122109992, 48.837855542432315], [2.349283634976099, 48.837736497989084], [2.349287101287632, 48.83773200202517], [2.349263872206633, 48.83768590992455], [2.349205385452917, 48.83756686452566], [2.349141469578388, 48.83743036970517], [2.349088036291388, 48.83742056094927]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 12, "roussel_fabien": 29.0, "nb_emargement": 1244.0, "nb_procuration": 84.0, "nb_vote_blanc": 13.0, "jadot_yannick": 113.0, "le_pen_marine": 39.0, "nb_exprime": 1230.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1513.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1245, "quartier_bv": "19", "geo_point_2d": [48.83974157611225, 2.347988005287791], "melenchon_jean_luc": 349.0, "poutou_philippe": 2.0, "macron_emmanuel": 472.0}, "geometry": {"type": "Point", "coordinates": [2.347988005287791, 48.83974157611225]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fd00f9146e9cc46d607f5fbf47fd1961def61094", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 27, "zemmour_eric": 50.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "10-4", "geo_shape": {"coordinates": [[[2.360677891121223, 48.87111426713759], [2.360667009550692, 48.871131120179484], [2.360597108839654, 48.871207172591255], [2.360520198106995, 48.87129241382067], [2.3604320119090803, 48.871388361628206], [2.360355100638718, 48.87147360273755], [2.360352734608763, 48.87149119823896], [2.360364791832273, 48.87150507380883], [2.360443352775027, 48.871617581717125], [2.360527199942557, 48.87173795193589], [2.360605762950494, 48.87185045972114], [2.360689609505033, 48.871970829793455], [2.360768173215006, 48.87208333744837], [2.360852020519721, 48.87220370738155], [2.360930584920704, 48.87231621580544], [2.361014432986636, 48.8724365847002], [2.361092998089675, 48.872549092993786], [2.361176848268982, 48.87266946175665], [2.361176857635401, 48.872669476196045], [2.361270467873304, 48.87280412268091], [2.361354318873269, 48.87292449129165], [2.361447930028217, 48.873059137606624], [2.361531781837885, 48.87317950696454], [2.361544344987813, 48.87318119547786], [2.361564006993688, 48.87317400043076], [2.361609103208505, 48.873043500745155], [2.361651300751552, 48.872922341373354], [2.361696397893174, 48.872791841632385], [2.361738595029294, 48.872670682202155], [2.361742901465321, 48.872665929683954], [2.361869697271872, 48.87259269457401], [2.361996018129455, 48.872519582702544], [2.362122814598173, 48.87244634642273], [2.3622491333822833, 48.87237323426719], [2.362375929127857, 48.87229999860887], [2.362502248565158, 48.87222688618377], [2.362506415739662, 48.87222247554266], [2.362553992033922, 48.87210651741323], [2.36260511630382, 48.871982695451784], [2.362636465126662, 48.871963613854554], [2.362636166221048, 48.87196197007228], [2.362616036264183, 48.87194517657175], [2.362518805464905, 48.871852778842566], [2.362393576370344, 48.87173420864536], [2.36229634499622, 48.87164181071056], [2.362171116915141, 48.87152324025797], [2.362073886329528, 48.87143084212478], [2.361948659273041, 48.87131227051752], [2.3618514294647133, 48.8712198730853], [2.361852601691769, 48.8712086519942], [2.361991560089434, 48.87110913989716], [2.362123169861595, 48.87101629663735], [2.362262127229323, 48.870916784208845], [2.362393734669991, 48.87082394062814], [2.36252534299384, 48.8707310978015], [2.362664298832344, 48.87063158488043], [2.362795904835624, 48.87053874083358], [2.362934859644214, 48.8704392275811], [2.363066466031489, 48.87034638412716], [2.363205419809971, 48.87024687054326], [2.363337023876896, 48.87015402586915], [2.363475976625378, 48.870054511953846], [2.363495610355337, 48.870038132374475], [2.363504475493552, 48.87000792034927], [2.363451920422014, 48.86988402847974], [2.36340056613304, 48.86976185170332], [2.363348011545909, 48.86963796065987], [2.363296657743133, 48.86951578381169], [2.363245304181354, 48.86939360692794], [2.363192748982807, 48.86926971486854], [2.36314139590722, 48.869147537913015], [2.363088842567252, 48.86902364578765], [2.363037489967055, 48.86890146965964], [2.362984937122458, 48.86877757746109], [2.362971932220723, 48.86876516390147], [2.362954977477386, 48.86876706120471], [2.362838959877134, 48.86881630128243], [2.362735040219888, 48.86886069436259], [2.3627307015448222, 48.86886365797132], [2.362637084172162, 48.86896963327655], [2.362529093450065, 48.869089323329916], [2.362435473898497, 48.86919529844856], [2.362327482245335, 48.869314988295606], [2.362233863241236, 48.869420963242206], [2.362125869293797, 48.86954065287562], [2.362032249473963, 48.86964662764289], [2.361924254595431, 48.86976631706999], [2.361830633959853, 48.86987229165792], [2.361722638150217, 48.86999198087867], [2.361629016698986, 48.87009795528725], [2.361521021321352, 48.87021764430892], [2.361427397702165, 48.87032361763166], [2.361319401393414, 48.870443306447], [2.361225778310552, 48.87054928049691], [2.361225420531317, 48.87054966260533], [2.361138671495559, 48.87064302046376], [2.361008737591064, 48.870774551288186], [2.360921989155567, 48.87086790897787], [2.36079205414296, 48.87099943954031], [2.360705303581343, 48.87109279704671], [2.360687017356293, 48.871112692575934], [2.360677891121223, 48.87111426713759]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 4, "roussel_fabien": 16.0, "nb_emargement": 1090.0, "nb_procuration": 85.0, "nb_vote_blanc": 12.0, "jadot_yannick": 122.0, "le_pen_marine": 20.0, "nb_exprime": 1074.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1394.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1090, "quartier_bv": "39", "geo_point_2d": [48.87095419410141, 2.361920597495808], "melenchon_jean_luc": 416.0, "poutou_philippe": 3.0, "macron_emmanuel": 370.0}, "geometry": {"type": "Point", "coordinates": [2.361920597495808, 48.87095419410141]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b3bdf17b1c3a2c2a0067766518899560d95d6623", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 24, "zemmour_eric": 55.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-64", "geo_shape": {"coordinates": [[[2.362859284338874, 48.896892059997725], [2.362850757179815, 48.896866499200115], [2.362742075840669, 48.89674507696032], [2.362649043092709, 48.89663854065501], [2.362556012089405, 48.89653200427438], [2.362447330772124, 48.89641058172273], [2.3623543005888212, 48.89630404516326], [2.362245621581739, 48.89618262241053], [2.362152590854729, 48.89607608566488], [2.362043912793928, 48.89595466270387], [2.361950882886906, 48.89584812577935], [2.361842205772375, 48.895726702610006], [2.361749178049418, 48.8956201655139], [2.361640501881144, 48.895498742136226], [2.361547473614267, 48.89539220485404], [2.361557130573842, 48.89537883940263], [2.361710930988486, 48.89536254701382], [2.361859978686647, 48.89534719676893], [2.362013778912943, 48.895330903990704], [2.362162826431227, 48.89531555336844], [2.36217396453727, 48.89530451959561], [2.362126383970875, 48.8951770053719], [2.362079584674116, 48.895051869476816], [2.362032004569763, 48.89492435518617], [2.361985205726941, 48.894799219225376], [2.361937626073605, 48.89467170576712], [2.361890827684714, 48.894546569740555], [2.361843248504427, 48.894419055316135], [2.361796450569563, 48.89429391922383], [2.3617488718513, 48.89416640473253], [2.361702074359227, 48.89404126947377], [2.36165449473914, 48.89391375490826], [2.361607697712007, 48.89378861868455], [2.361560119917773, 48.89366110405942], [2.361513323344547, 48.89353596776994], [2.3614657460012882, 48.89340845397722], [2.361418949881959, 48.89328331762206], [2.361429694579939, 48.89326953078039], [2.361414943708337, 48.89326544924492], [2.361363633224144, 48.89326697245551], [2.361195690838656, 48.893271960042945], [2.360984779484977, 48.893277135394776], [2.360765526523341, 48.893283644505864], [2.360554615079576, 48.89328881910009], [2.360335362003918, 48.89329532832279], [2.360124450470077, 48.893300502159306], [2.359905197291447, 48.89330701059437], [2.359694287031265, 48.893312183680464], [2.359632651744564, 48.89330794385438], [2.359628617281933, 48.893323030865126], [2.359613131661585, 48.893420168197615], [2.359596040587319, 48.893541596570685], [2.35957631004143, 48.89366537332688], [2.359559218811958, 48.89378680076826], [2.359539486721769, 48.89391057748342], [2.3595223953147633, 48.89403200579165], [2.359502663044204, 48.89415578247306], [2.359485571470823, 48.894277210748875], [2.359465840394606, 48.894400986504515], [2.35944874865485, 48.89452241474791], [2.359429016023345, 48.89464619136178], [2.35941192411721, 48.8947676195727], [2.359392191316188, 48.894891395253566], [2.359375099243673, 48.89501282343204], [2.359360496876791, 48.89504076180597], [2.359369331693982, 48.89505412528715], [2.35935731997778, 48.89518388403577], [2.359345894548381, 48.89531409826202], [2.359333882713889, 48.89544385697751], [2.359322458532602, 48.89557407117793], [2.359310446579721, 48.895703829860246], [2.359299020918883, 48.89583404402021], [2.3592870088476072, 48.8959638026694], [2.359275584434994, 48.8960940168035], [2.359263572245327, 48.896223775419564], [2.359252146364212, 48.89635398861397], [2.359240134045079, 48.89648374809609], [2.359228709412201, 48.89661396126464], [2.359216696974671, 48.89674372071363], [2.359205270862208, 48.896873933841725], [2.359193258317344, 48.897003692358254], [2.359181833442059, 48.897133906359805], [2.359169820778794, 48.89726366484317], [2.359158394423906, 48.897393878804245], [2.359163567518475, 48.89740012886158], [2.359238349435721, 48.89739763319491], [2.359431771375779, 48.89737134666182], [2.359629519912555, 48.89734404603885], [2.359822941467074, 48.89731775797345], [2.360020690959002, 48.89729045671054], [2.360214112105955, 48.89726416891137], [2.360411859825272, 48.89723686699393], [2.360605281950583, 48.8972105776697], [2.360803029261207, 48.89718327510509], [2.3609964496148192, 48.89715698603984], [2.361194196516847, 48.89712968282796], [2.361387617848783, 48.89710339223768], [2.361585364342, 48.897076088378604], [2.36177878390244, 48.89704979804728], [2.361976531350865, 48.897022493548256], [2.362169950525675, 48.8969962016846], [2.36236769620145, 48.8969688965311], [2.362561114968482, 48.8969426049337], [2.362758861599446, 48.89691529914023], [2.362826468163939, 48.89690610810806], [2.362859284338874, 48.896892059997725]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 64, "roussel_fabien": 18.0, "nb_emargement": 1174.0, "nb_procuration": 34.0, "nb_vote_blanc": 13.0, "jadot_yannick": 44.0, "le_pen_marine": 76.0, "nb_exprime": 1159.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1796.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1176, "quartier_bv": "72", "geo_point_2d": [48.89543373427171, 2.3606786456050126], "melenchon_jean_luc": 685.0, "poutou_philippe": 9.0, "macron_emmanuel": 202.0}, "geometry": {"type": "Point", "coordinates": [2.3606786456050126, 48.89543373427171]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7e4523eee03c21ca7c070bca43423f32ae98d665", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 121, "zemmour_eric": 83.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "6-10", "geo_shape": {"coordinates": [[[2.33775344081474, 48.84928835133392], [2.337762303855312, 48.84928150680923], [2.337955634871401, 48.8492511360805], [2.338127010990296, 48.84922437862261], [2.338320342955877, 48.849194006411274], [2.338491717337067, 48.84916724842208], [2.338496946706663, 48.84916559553465], [2.338651494694069, 48.84908626041947], [2.338792668440181, 48.84901336074723], [2.338933841802727, 48.84894046000429], [2.339088388445933, 48.84886112520801], [2.339091871218174, 48.8488584679555], [2.339182178685478, 48.84875353046238], [2.339282145490576, 48.84862972822376], [2.339372453540895, 48.84852479057303], [2.339472419443787, 48.84840098904928], [2.339562726725972, 48.848296050334056], [2.339662691738067, 48.84817224862593], [2.339752996866696, 48.8480673106373], [2.339852960999404, 48.84794350784546], [2.339943266711157, 48.847838569699206], [2.3400432299417, 48.84771476762225], [2.340133533522712, 48.84760982840401], [2.340134900134666, 48.84760758214637], [2.340179659119692, 48.84749017657564], [2.340236401476046, 48.84734618003752], [2.3402811613705152, 48.847228774408805], [2.34033790315031, 48.84708477868799], [2.340382661228992, 48.846967372986285], [2.340439402455212, 48.84682337628427], [2.340489716826535, 48.84680860556016], [2.340501325365297, 48.846739699415956], [2.340432209288686, 48.84661253107861], [2.34036394758724, 48.84648646731352], [2.340294833544283, 48.84635929887541], [2.340226572495543, 48.846233235902616], [2.3401574591350123, 48.84610606645697], [2.340089198750151, 48.845980003377115], [2.340020086049265, 48.84585283472251], [2.339951826339762, 48.84572677063636], [2.339882712947427, 48.845599601866006], [2.339814453890499, 48.845473538572136], [2.339745342531651, 48.84534636970104], [2.339677084150066, 48.84522030540083], [2.339607973462222, 48.845093136421504], [2.339539715733288, 48.84496707291361], [2.339470604353883, 48.84483990381852], [2.3394023473001813, 48.84471383930432], [2.339333237954318, 48.844586670108534], [2.33926498155314, 48.84446060638659], [2.339195872878252, 48.84433343708257], [2.339127617152493, 48.84420737235437], [2.33905850914857, 48.844080202942145], [2.338990254075211, 48.84395413900623], [2.338988237801611, 48.843920697656536], [2.338965203739557, 48.8439037747838], [2.338896949123042, 48.843777710774745], [2.338825647829981, 48.84364984014013], [2.33875739389499, 48.84352377512346], [2.338686091917796, 48.843395905268395], [2.338617838652916, 48.84326984014334], [2.338546537376927, 48.84314196927668], [2.338478284770633, 48.84301590494266], [2.338406985547031, 48.842888033971235], [2.338338733610823, 48.842761969528944], [2.338267433714488, 48.84263409843769], [2.338199182459781, 48.84250803298776], [2.338127884615599, 48.84238016179182], [2.338059634019641, 48.84225409713288], [2.337988335502722, 48.84212622581712], [2.337920085576825, 48.8420001610499], [2.337848789112127, 48.8418722896294], [2.337780539867603, 48.84174622385461], [2.337709242718836, 48.84161835321359], [2.337640994144358, 48.841492287330524], [2.337569699059208, 48.84136441568551], [2.33750145114333, 48.84123835059344], [2.337430155385431, 48.841110478828654], [2.3373619081395782, 48.840984413628284], [2.337290614433732, 48.8408565417588], [2.337251743299759, 48.84082780573596], [2.337245319325385, 48.840822959440096], [2.337193589757331, 48.840784717814], [2.336979466835368, 48.840710080045035], [2.336819968844122, 48.84068868588198], [2.336798628994606, 48.840677022419484], [2.336709211037169, 48.84069512012815], [2.336653818341145, 48.84070214999632], [2.336632667075794, 48.840708429891315], [2.336413482374326, 48.84080136158546], [2.3362990079796813, 48.84085599970829], [2.336294907745327, 48.84085870653312], [2.336194916979458, 48.84094263719861], [2.3360879745280583, 48.841052540636554], [2.335978902868254, 48.8411655835272], [2.335871959503913, 48.841275486750106], [2.335762886920605, 48.84138852852192], [2.335655942631852, 48.841498432429006], [2.335546870475842, 48.84161147398889], [2.335439925274127, 48.84172137768095], [2.335330850820672, 48.841834419013686], [2.33522390470598, 48.84194432249071], [2.335114830679813, 48.84205736361148], [2.335007883663614, 48.84216726597411], [2.334898807328494, 48.842280307767076], [2.334791859399303, 48.84239020991462], [2.334684911007599, 48.84250011285503], [2.334575834649268, 48.84261315342806], [2.3344688853560402, 48.84272305525411], [2.334359806688709, 48.842836096499326], [2.334252856482464, 48.84294599811029], [2.334143778242395, 48.843059039143526], [2.334036827123124, 48.84316894053938], [2.333927746585402, 48.843281981345434], [2.333820794553197, 48.8433918825262], [2.333711714454325, 48.84350492222104], [2.333604761497477, 48.84361482408599], [2.3334956791009223, 48.84372786355363], [2.333388725231114, 48.84383776520352], [2.33327964189938, 48.84395080445157], [2.333172687127905, 48.84406070498705], [2.333090377509283, 48.84414600043364], [2.333076565762341, 48.84416327754586], [2.333076383465221, 48.84416602318427], [2.333049610150211, 48.84419376766944], [2.3329383777406703, 48.84430947739696], [2.332829292433342, 48.844422517085846], [2.332718059046443, 48.844538226584824], [2.332608974156527, 48.84465126515797], [2.332499887419447, 48.8447643045119], [2.332388652571729, 48.844880013669105], [2.332279566251959, 48.844993051907245], [2.332168330426858, 48.84510876083588], [2.332059241776336, 48.8452217997416], [2.331948006336405, 48.84533750844926], [2.331838916740726, 48.8454505462316], [2.3317276789608252, 48.84556625470302], [2.331618589759493, 48.845679293168196], [2.331507351002175, 48.845795001411055], [2.331505236337071, 48.84580008717787], [2.331511320832437, 48.84593498047946], [2.3315188439306382, 48.84606597407625], [2.331524928480733, 48.84620086824423], [2.3315324502890302, 48.84633186180129], [2.33153997213514, 48.84646285534249], [2.331546058160291, 48.84659774856971], [2.331553580078981, 48.84672874207879], [2.331559666170507, 48.84686363527311], [2.331567188150243, 48.84699462964937], [2.3315732743079423, 48.84712952281082], [2.331578011813548, 48.84714125266115], [2.331586124917956, 48.84714818439416], [2.331593647016804, 48.847279177836], [2.331602083219832, 48.84740668864841], [2.331609605396104, 48.84753768205886], [2.331618043042753, 48.847665192848176], [2.331625565296354, 48.847796186227214], [2.331634001661273, 48.84792369697823], [2.331641523992402, 48.84805469032585], [2.331649961800756, 48.84818220105373], [2.331657484209317, 48.84831319436998], [2.331665920747565, 48.84844070416022], [2.331683069182043, 48.84847056606018], [2.331738292135533, 48.84846057505388], [2.331893925186553, 48.84849984510098], [2.332046376186661, 48.848540097265705], [2.332202009707327, 48.848579366909256], [2.33235446252906, 48.84861961958542], [2.332510096519375, 48.84865888882542], [2.332662548460676, 48.84869914019929], [2.332663714257551, 48.848699407516044], [2.332864340509862, 48.8487382545157], [2.333037004520143, 48.84877225783965], [2.3332096674046, 48.84880626000652], [2.333410295837904, 48.84884510609455], [2.333582959207286, 48.848879107720485], [2.333783588199304, 48.84891795318002], [2.3339562520536052, 48.84895195426502], [2.33415688160433, 48.84899079909601], [2.334319684930961, 48.84902353963408], [2.334520315028085, 48.849062383853195], [2.334683120169347, 48.849095123902245], [2.334883749450401, 48.84913396750184], [2.3350465550436272, 48.84916670705421], [2.335047742152038, 48.84916690791336], [2.335221371503156, 48.84919083520691], [2.335391025562789, 48.84921585716841], [2.3355606797854422, 48.84924087888876], [2.335734310981197, 48.8492648054439], [2.335736216632694, 48.84926497700931], [2.33592797409226, 48.84927316261473], [2.336119477595637, 48.849280107187155], [2.336311235171177, 48.84928829217822], [2.336502737430005, 48.84929523523024], [2.336694495121303, 48.84930341960696], [2.336885998838108, 48.849310362952295], [2.337077756645261, 48.84931854671465], [2.337269260480052, 48.84932548854714], [2.337271476613226, 48.84932546394902], [2.337495518405378, 48.84931088502766], [2.337706887724221, 48.84929192581349], [2.33775344081474, 48.84928835133392]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 10, "roussel_fabien": 13.0, "nb_emargement": 943.0, "nb_procuration": 75.0, "nb_vote_blanc": 12.0, "jadot_yannick": 78.0, "le_pen_marine": 20.0, "nb_exprime": 930.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1104.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 943, "quartier_bv": "22", "geo_point_2d": [48.84579014987118, 2.3360103230961395], "melenchon_jean_luc": 132.0, "poutou_philippe": 1.0, "macron_emmanuel": 443.0}, "geometry": {"type": "Point", "coordinates": [2.3360103230961395, 48.84579014987118]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "990c883a8468b50a76f725e2a85793efa2d7dad2", "fields": {"lassalle_jean": 26.0, "pecresse_valerie": 129, "zemmour_eric": 117.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-13", "geo_shape": {"coordinates": [[[2.293852837405086, 48.848707693627766], [2.293826952024895, 48.84871696437362], [2.293813176141099, 48.848720786299], [2.293796320819244, 48.84871724224839], [2.293767584218005, 48.84868672091228], [2.293742763961153, 48.8486578217547], [2.2937279609041212, 48.84865347588497], [2.293531315763925, 48.84868223760435], [2.293334399042875, 48.848711213244194], [2.293137753467704, 48.848739974315265], [2.292940837684514, 48.848768948414616], [2.292744191674176, 48.8487977088373], [2.292547274079156, 48.84882668317866], [2.292350627633859, 48.848855442953024], [2.292153710964516, 48.84888441665319], [2.291957064084066, 48.848913175779224], [2.291760145627328, 48.84894214792281], [2.29156349831194, 48.84897090640046], [2.291366580768679, 48.848999878802154], [2.291169933018154, 48.84902863663152], [2.2909730136752913, 48.84905760837585], [2.290958026722404, 48.84905306501328], [2.290917957660986, 48.849003515455905], [2.290882649574477, 48.84895921130733], [2.2908674012637302, 48.84894453505554], [2.290841422049309, 48.84895354288646], [2.290670956148751, 48.84900965902444], [2.290499176467246, 48.84906625548228], [2.290328708454651, 48.84912237201818], [2.290156928029912, 48.849178967978915], [2.289986460654884, 48.849235083130296], [2.289814679474661, 48.84929167949322], [2.2896442113624, 48.849347794151306], [2.289472428076379, 48.849404390008964], [2.289301959226886, 48.84946050417376], [2.289130176560192, 48.84951709954245], [2.28911938090576, 48.84951749227569], [2.288954546236067, 48.849477433651295], [2.288755976721965, 48.849429597124384], [2.288591142609745, 48.84938953799613], [2.288441269557656, 48.84935343218087], [2.288432040026695, 48.84935599893361], [2.288424911705399, 48.84937155059836], [2.2884452990508732, 48.849508435314405], [2.288463125809964, 48.84963694160453], [2.288480952644798, 48.849765448776466], [2.288501338928904, 48.84990233342641], [2.2885132513726862, 48.849910380714924], [2.288686971189526, 48.84992436536154], [2.288858029073324, 48.84993878901089], [2.289031750440068, 48.84995277316464], [2.289202808512544, 48.8499671963207], [2.289206015954148, 48.84996773340857], [2.289368494151519, 48.85000983630346], [2.289530185695563, 48.85005128316479], [2.289692664415341, 48.85009338561629], [2.28985435783903, 48.850134832044546], [2.2900160501573392, 48.85017627824462], [2.290178529659385, 48.8502183800316], [2.290180455359526, 48.850218772785844], [2.290406738023035, 48.85025313062396], [2.290637317740206, 48.85028819432521], [2.290863602369065, 48.850322551305226], [2.291094182712941, 48.850357613224524], [2.291104450253431, 48.85036449752034], [2.291120679015053, 48.85041462698962], [2.291136352862567, 48.8504635759016], [2.291145676681429, 48.85047031160329], [2.291309600901702, 48.85050361563715], [2.291477242981768, 48.85053782283545], [2.291641167626311, 48.85057112641309], [2.291808808778514, 48.85060533313665], [2.291972735222238, 48.85063863536679], [2.292140376809264, 48.85067284162371], [2.292304303665031, 48.85070614429683], [2.292471945686879, 48.85074035008715], [2.292484078933557, 48.85075397431796], [2.292516216296704, 48.850745835364094], [2.292694979233247, 48.85068674655432], [2.292893703624043, 48.850621043726356], [2.293072464341763, 48.850561954337934], [2.29327118778072, 48.85049625087567], [2.293449947630123, 48.85043716181593], [2.2936486714799322, 48.850371457727356], [2.293709800165065, 48.85035125108681], [2.293736811811899, 48.850345314662405], [2.293738728411743, 48.85034195696613], [2.29385635867733, 48.850303073947615], [2.294017620787485, 48.85025000182316], [2.294196378945878, 48.85019091163518], [2.294357640362648, 48.850137839047086], [2.294536397762804, 48.8500787474459], [2.294697658474113, 48.85002567529349], [2.294876415103951, 48.8499665831783], [2.295037675121777, 48.84991351056231], [2.295043584488248, 48.84990118994341], [2.2949932345653, 48.84983963501118], [2.294951055375455, 48.849788592282756], [2.294940205412542, 48.84977486883096], [2.2949179153203962, 48.849777645113036], [2.294879307985343, 48.849790156156374], [2.294835414846534, 48.849804150559855], [2.294817718542423, 48.849800587312636], [2.294721796418219, 48.84969214789976], [2.294627664190291, 48.84958540525413], [2.29453174148281, 48.84947696655919], [2.294437611407607, 48.849370222852144], [2.294341689491686, 48.84926178398388], [2.294247558831898, 48.84915504009864], [2.2941516390701873, 48.84904660106508], [2.294057509176084, 48.848939857908995], [2.293961588855443, 48.84883141779479], [2.29386746110205, 48.848724674476586], [2.293852837405086, 48.848707693627766]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 13, "roussel_fabien": 18.0, "nb_emargement": 1390.0, "nb_procuration": 94.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 79.0, "nb_exprime": 1375.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1688.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1390, "quartier_bv": "59", "geo_point_2d": [48.84969240208603, 2.292006686955136], "melenchon_jean_luc": 242.0, "poutou_philippe": 4.0, "macron_emmanuel": 596.0}, "geometry": {"type": "Point", "coordinates": [2.292006686955136, 48.84969240208603]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "551f6aa074a2a00775e286fbadf1354fd743f3ba", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 68, "zemmour_eric": 76.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "14-54", "geo_shape": {"coordinates": [[[2.312352222732879, 48.82591468416059], [2.312339197483002, 48.82591224479345], [2.312169273982617, 48.82595157417019], [2.311972226014039, 48.82599647540227], [2.311802301962306, 48.82603580425468], [2.311605254721402, 48.826080704886536], [2.311435330118327, 48.826120033214565], [2.311238280880985, 48.826164933230544], [2.311068355726674, 48.82620426103422], [2.310871307216917, 48.82624916045002], [2.310701381511274, 48.826288487729315], [2.310655136310416, 48.82629902451467], [2.3106314758468383, 48.82630077592408], [2.310626445875113, 48.82630589407807], [2.310475640531105, 48.82634025605628], [2.310292768550545, 48.82638173227465], [2.31009571870222, 48.82642663040545], [2.309912846104451, 48.82646810693895], [2.309715794240526, 48.826513004432464], [2.309532921049458, 48.82655447948249], [2.309335868531807, 48.82659937634654], [2.3091529960858033, 48.82664085171962], [2.308955942914531, 48.8266857479542], [2.308773068513179, 48.82672722183597], [2.3087707805149362, 48.82672760074077], [2.3085849135926892, 48.82674716434423], [2.308369394303634, 48.82676996931763], [2.308183525705716, 48.826789533187934], [2.307968006065948, 48.82681233743713], [2.307782138540486, 48.826831899791465], [2.307566617187942, 48.82685470330856], [2.307380749348788, 48.826874265937654], [2.307243154081842, 48.826889079489106], [2.307057284636787, 48.82690864160695], [2.306919689187211, 48.826923454785764], [2.306900719078887, 48.82692852347062], [2.306898878312864, 48.82694249455511], [2.306921745023015, 48.82704986997895], [2.306955528086339, 48.827205622403575], [2.30697839502847, 48.827312997791395], [2.307012178431539, 48.82746875016349], [2.307035045605858, 48.827576125515286], [2.3070373546198573, 48.82758001072092], [2.307153425380918, 48.82769013313618], [2.307270400571473, 48.82780244975173], [2.307386472320019, 48.827912571918965], [2.307503449861894, 48.82802488919155], [2.30761952259784, 48.828135011110724], [2.307736501152939, 48.82824732723377], [2.307852573514277, 48.82835744889707], [2.307969553070561, 48.82846976476988], [2.307967810018046, 48.82848131798803], [2.307842105717263, 48.828561774693256], [2.307714918798847, 48.828645832783856], [2.307716790479807, 48.82865957801961], [2.307887445183205, 48.828737756659194], [2.308053529893156, 48.828813801363836], [2.308224186956453, 48.8288919804194], [2.30839027264891, 48.82896802464592], [2.308560929359993, 48.829046203202346], [2.308727016034856, 48.82912224695079], [2.30889310319434, 48.82919829046345], [2.309063761413229, 48.82927646828633], [2.3090918559987292, 48.829285609076855], [2.30910640618665, 48.82927088938159], [2.309225204872033, 48.829185928802964], [2.309360433477138, 48.82908591117045], [2.309479232689258, 48.82900095033333], [2.309614460327097, 48.828900932397154], [2.309733258703716, 48.828815971293686], [2.309868485374502, 48.828715953053745], [2.3099872815534, 48.82863099167608], [2.310076979493974, 48.828564646721176], [2.310092800538283, 48.82856307234192], [2.310109488031568, 48.82853719817221], [2.310155015761565, 48.828503523670996], [2.310285076367562, 48.828406722796004], [2.310420300906281, 48.82830670479495], [2.310550360528798, 48.828209903614514], [2.310685584059966, 48.82810988439665], [2.31081564406102, 48.828013082918545], [2.310950866572642, 48.827913063383214], [2.311080924216134, 48.827816262491105], [2.311216145708428, 48.827716242638246], [2.311346202380247, 48.82761944054138], [2.311469593319753, 48.82752636022234], [2.311599649035424, 48.82742955873275], [2.311723039073132, 48.827336478136495], [2.311853093844546, 48.82723967635493], [2.311976482980262, 48.82714659548145], [2.3121065368192912, 48.82704979250854], [2.3122299250413603, 48.8269567122571], [2.31235997793614, 48.82685990899229], [2.312483365256237, 48.826766828463604], [2.312613417206776, 48.82667002490676], [2.312736803636965, 48.82657694320154], [2.312866854631417, 48.826480140252016], [2.312990240159643, 48.82638705826959], [2.313016810758298, 48.82637915966505], [2.313012979356864, 48.82635215537703], [2.312975154629386, 48.82632760357773], [2.312814952897257, 48.82622372847141], [2.3126685372973492, 48.82612869053141], [2.312522120869176, 48.826033652396276], [2.312361922304944, 48.82592977666371], [2.312352222732879, 48.82591468416059]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 54, "roussel_fabien": 26.0, "nb_emargement": 1176.0, "nb_procuration": 49.0, "nb_vote_blanc": 13.0, "jadot_yannick": 77.0, "le_pen_marine": 103.0, "nb_exprime": 1159.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1539.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "56", "geo_point_2d": [48.82745033154724, 2.3096978710244893], "melenchon_jean_luc": 330.0, "poutou_philippe": 9.0, "macron_emmanuel": 401.0}, "geometry": {"type": "Point", "coordinates": [2.3096978710244893, 48.82745033154724]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2ebb48cd05b630c7565f8c988c0ddc89fcdef0be", "fields": {"lassalle_jean": 23.0, "pecresse_valerie": 208, "zemmour_eric": 153.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "7-11", "geo_shape": {"coordinates": [[[2.310029781001381, 48.85096974555505], [2.310040961805252, 48.85100007258772], [2.310093767619398, 48.8511272677461], [2.31015291109793, 48.851258241640906], [2.310205717434942, 48.85138543761969], [2.310264861487867, 48.851516411428726], [2.310317668371765, 48.851643606429256], [2.310376812998988, 48.85177458015261], [2.310391627209423, 48.85178093047152], [2.310572284494464, 48.8517654575313], [2.310755035246771, 48.85174985877629], [2.3109356936789123, 48.85173438529479], [2.31111844285073, 48.851718785976466], [2.311299101067231, 48.85170331194584], [2.311481851384013, 48.85168771207984], [2.311662508022139, 48.85167223749229], [2.311845258121148, 48.8516566370708], [2.312025915906348, 48.85164116194196], [2.312208665787575, 48.85162556096499], [2.312224028979456, 48.85163411044739], [2.312232384276291, 48.85176824120797], [2.312241856108619, 48.851902655372], [2.31225021150627, 48.85203678519962], [2.312259683433396, 48.85217119932978], [2.312268038919993, 48.85230532912383], [2.312277510941918, 48.85243974322012], [2.312285866505597, 48.85257387387978], [2.312295337259669, 48.852708287934355], [2.312303692924163, 48.85284241766113], [2.312313165135687, 48.85297683168968], [2.312328021910908, 48.85298537014116], [2.312575655777076, 48.85297039599987], [2.312777527451642, 48.852960319936514], [2.312789103616876, 48.85295441558622], [2.312854509344052, 48.8528347233338], [2.312918308708337, 48.852713012644244], [2.31298371383573, 48.85259332029526], [2.313047513953463, 48.85247161041753], [2.313112918481178, 48.852351917971895], [2.313176718013424, 48.85223020709954], [2.313242121929415, 48.852110515456616], [2.313305919501688, 48.85198880448112], [2.313371322829774, 48.851869111842305], [2.313435121155508, 48.851747401678615], [2.31344892277456, 48.851741368830574], [2.313675506022475, 48.851751526536404], [2.313909167761083, 48.85175961630499], [2.3141357498154242, 48.851769773131245], [2.314369413070026, 48.85177786200875], [2.314499238264496, 48.8517836809575], [2.314521026956872, 48.851819105615704], [2.314591634380797, 48.851816296698736], [2.314688391477854, 48.85182063362969], [2.314778067092298, 48.85181794820664], [2.314804036305077, 48.85181840270848], [2.314821439027314, 48.85177645645071], [2.314866338313747, 48.85165579837836], [2.3149106645343682, 48.851535073141505], [2.3149555620435, 48.85141441500173], [2.314999887852086, 48.851293689705635], [2.315044784946655, 48.85117303150614], [2.315089110343212, 48.85105230615085], [2.315134007011403, 48.850931648791004], [2.315178331995938, 48.85081092337641], [2.315223228261396, 48.85069026505764], [2.315267552833913, 48.85056953958382], [2.315312450047522, 48.85044888121318], [2.31535677284533, 48.85032815567234], [2.31540166964439, 48.85020749724203], [2.315445992030199, 48.850086771641976], [2.315490888403007, 48.84996611405129], [2.315535210376822, 48.849845388391984], [2.315534901238711, 48.84984039247651], [2.315489151704252, 48.84975005622293], [2.315436007641448, 48.849643462168466], [2.315390259825795, 48.849553124969596], [2.315350971314162, 48.84947432303139], [2.315360190249999, 48.84945016050421], [2.315348155795431, 48.84944113760583], [2.315334299295027, 48.84941334541782], [2.315334017136328, 48.84940837213819], [2.315385156167582, 48.849272136439374], [2.315437143975988, 48.84913143573708], [2.315488283828536, 48.84899519996804], [2.31554026973139, 48.84885449827891], [2.315591409042575, 48.84871826243189], [2.315643394378924, 48.84857756156221], [2.315694533148756, 48.848441325637296], [2.315746517942232, 48.84830062378852], [2.315738143310064, 48.84829009293573], [2.315561421083287, 48.848245532305256], [2.315385796560426, 48.84820405170917], [2.315209074926708, 48.8481594905548], [2.31503345097427, 48.848118009438274], [2.314856729933513, 48.84807344776006], [2.314681106551502, 48.848031966123145], [2.314504386092084, 48.84798740482034], [2.314328764654964, 48.847945921771526], [2.314152043425981, 48.84790135993704], [2.313976422559198, 48.8478598763678], [2.313799703285913, 48.847815314017254], [2.313624081627048, 48.84777382991983], [2.313599160454583, 48.847761104869825], [2.3135666025672093, 48.84776432125999], [2.313527472809473, 48.84783019176073], [2.313453603340667, 48.84795947386831], [2.313384086812165, 48.848076491119926], [2.313310216638526, 48.84820577311033], [2.313240700810194, 48.84832279115988], [2.313171184669673, 48.84843980915676], [2.313097313452863, 48.848569090973555], [2.313027796673673, 48.848686107961925], [2.312953923389356, 48.848815389653765], [2.31293994044275, 48.84882117319148], [2.312762143464362, 48.84881051268934], [2.312583450893371, 48.84880080819397], [2.312405654057393, 48.8487901471619], [2.312226960248101, 48.84878044302541], [2.312049163554537, 48.848769781463346], [2.311870471255992, 48.84876007590282], [2.311692674704851, 48.848749413810815], [2.31151398253066, 48.84873970861697], [2.311336184759397, 48.84872904598717], [2.311157492733225, 48.84871933936143], [2.311143421345402, 48.84872551160498], [2.311082205358218, 48.848849263816106], [2.311021749092793, 48.84897366430143], [2.310960532525272, 48.84909741642271], [2.31090007568151, 48.84922181681884], [2.310838858533439, 48.849345568850296], [2.310778401111433, 48.84946996915724], [2.310717183382909, 48.8495937210988], [2.310656725382446, 48.84971812131651], [2.310595507073559, 48.84984187316828], [2.310535049857418, 48.84996627330463], [2.310473829605378, 48.85009002505866], [2.310413371810874, 48.85021442510579], [2.310352150978246, 48.85033817677001], [2.31029169260537, 48.85046257672791], [2.31023047119235, 48.850586328302235], [2.310170012241096, 48.850710728170924], [2.310108790247575, 48.850834479655425], [2.3100483307179323, 48.85095887943487], [2.310029781001381, 48.85096974555505]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 11, "roussel_fabien": 8.0, "nb_emargement": 1053.0, "nb_procuration": 70.0, "nb_vote_blanc": 9.0, "jadot_yannick": 46.0, "le_pen_marine": 40.0, "nb_exprime": 1042.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1254.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1053, "quartier_bv": "27", "geo_point_2d": [48.850185433518895, 2.3130286315151207], "melenchon_jean_luc": 76.0, "poutou_philippe": 2.0, "macron_emmanuel": 463.0}, "geometry": {"type": "Point", "coordinates": [2.3130286315151207, 48.850185433518895]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f0893f6290146309d459d9dd3c7e74880a325e55", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 48, "zemmour_eric": 62.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-9", "geo_shape": {"coordinates": [[[2.341499927717849, 48.89424043721247], [2.341527261390321, 48.89423854425472], [2.341698694058259, 48.89427928354837], [2.341900054303151, 48.89432518819053], [2.342071488900559, 48.89436592785402], [2.342272849809229, 48.89441183186574], [2.342444284994988, 48.894452570093115], [2.342645646567425, 48.89449847347434], [2.342817080966309, 48.89453921115733], [2.343018444555015, 48.894585114814845], [2.343189879530875, 48.89462585196091], [2.343198155512098, 48.894637230595194], [2.343161302255103, 48.89470803614947], [2.343123774683907, 48.89479346994046], [2.343133833594984, 48.89480461194318], [2.343171623129027, 48.89480771413208], [2.343352999738639, 48.89475984871145], [2.343524535806508, 48.894713994811575], [2.343705911765284, 48.894666128852364], [2.34387744720223, 48.89462027534234], [2.344058822521294, 48.89457240794526], [2.344230357338752, 48.89452655392584], [2.344401891853964, 48.89448069965879], [2.34458326620463, 48.89443283146132], [2.34475480010035, 48.89438697668485], [2.344936173788743, 48.89433910884806], [2.345107707076079, 48.89429325266295], [2.345289080113618, 48.89424538428754], [2.345296854299344, 48.89423400721066], [2.345235575695282, 48.89412104119086], [2.345167224216369, 48.89400231946487], [2.345105946154939, 48.89388935425412], [2.34503759527577, 48.893770632428996], [2.34497631776827, 48.89365766712804], [2.344929564738269, 48.89357645984412], [2.344925011707842, 48.89356174361815], [2.344897024345798, 48.89355167369433], [2.344875427129991, 48.89351415904732], [2.344803768792627, 48.89338706514738], [2.344735419261772, 48.89326834309541], [2.344663760251982, 48.89314124817642], [2.344595412726885, 48.89302252602537], [2.344527064138449, 48.89290380471425], [2.344455406138965, 48.892776709628386], [2.344387058203675, 48.89265798731145], [2.344315402248057, 48.892530892120746], [2.344300055430199, 48.8925251936167], [2.344067161169074, 48.89255458864083], [2.343874938883765, 48.89258061687284], [2.343868525862993, 48.89258267985415], [2.34373427650427, 48.89266008453515], [2.343598391935383, 48.892737559239386], [2.343464141775725, 48.89281496360662], [2.343328256411914, 48.89289243709413], [2.343194005451422, 48.892969841147604], [2.343058119270103, 48.893047315216876], [2.342923868872383, 48.89312471896404], [2.342787980521176, 48.89320219270836], [2.342653729322514, 48.89327959614174], [2.342517841540205, 48.8933570686768], [2.342506272034225, 48.89335908798448], [2.342327259993088, 48.893335724446466], [2.342157350617664, 48.89331215433815], [2.34197833754201, 48.8932887893708], [2.34180842984153, 48.89326521877392], [2.341764570180714, 48.8932586068975], [2.341747640613522, 48.89327971715969], [2.341746666931515, 48.893281755966925], [2.341713844064846, 48.89339670227084], [2.341679317446964, 48.89350960672037], [2.341646495651798, 48.89362455298944], [2.341611967372942, 48.89373745738859], [2.341579145285552, 48.8938524036153], [2.341544616709542, 48.893965307971555], [2.341511794329721, 48.8940802541559], [2.341477265456555, 48.8941931584693], [2.341477090532832, 48.89419566571511], [2.341482035990529, 48.89423028890953], [2.341499927717849, 48.89424043721247]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 9, "roussel_fabien": 25.0, "nb_emargement": 1311.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 129.0, "le_pen_marine": 49.0, "nb_exprime": 1298.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1628.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1313, "quartier_bv": "70", "geo_point_2d": [48.893756535334866, 2.3434464468635636], "melenchon_jean_luc": 507.0, "poutou_philippe": 10.0, "macron_emmanuel": 404.0}, "geometry": {"type": "Point", "coordinates": [2.3434464468635636, 48.893756535334866]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "acda6d4666a565d67e66820d713209c04fb23e44", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 36, "zemmour_eric": 51.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-61", "geo_shape": {"coordinates": [[[2.371336936477543, 48.87905180093435], [2.37132081019942, 48.879045812140546], [2.371284217857946, 48.87900873750228], [2.371172651905376, 48.878891328406745], [2.371062633249701, 48.87877985571353], [2.370951066923513, 48.8786624463799], [2.370841049225604, 48.87855097345991], [2.370729485252673, 48.87843356390256], [2.370619468512518, 48.87832209075581], [2.37061891596949, 48.87832155364779], [2.370533762740918, 48.87824484978992], [2.370423746818208, 48.878133376444204], [2.370338594173865, 48.87805667333367], [2.370281257939034, 48.878056005718555], [2.370275239559288, 48.87811272191189], [2.370273861090035, 48.87818252260806], [2.370274047976573, 48.87831760953785], [2.370271530753191, 48.878445052296385], [2.370271717634727, 48.87858013919402], [2.370269200381979, 48.8787075828214], [2.370269387258413, 48.87884266968684], [2.370266868634799, 48.87897011237736], [2.370267056869479, 48.87910519921782], [2.370264538227467, 48.87923264187791], [2.370264726457153, 48.87936772868616], [2.370262207785868, 48.87949517221513], [2.370262396010356, 48.8796302589912], [2.370259877331546, 48.87975770159044], [2.37026006555104, 48.87989278833432], [2.370257546853729, 48.88002023090317], [2.370257735068127, 48.88015531761483], [2.370255216341646, 48.88028276105247], [2.370255403187458, 48.88041784772478], [2.370252885816837, 48.880545290239915], [2.370250367070502, 48.88067273273308], [2.370250555268635, 48.88080781936472], [2.370248036492923, 48.88093526272672], [2.37024822468596, 48.88107034932617], [2.370245705902824, 48.881197791758424], [2.370245894090662, 48.881332878325665], [2.370243375289125, 48.88146032072749], [2.370243563471969, 48.881595407262495], [2.3702163276897013, 48.8816313414836], [2.370242973331527, 48.881663490569075], [2.370243160150435, 48.881798577071955], [2.370245510639383, 48.881920274039466], [2.370245697465795, 48.88205536051085], [2.370248047972161, 48.8821770574499], [2.370248234806176, 48.88231214388976], [2.370250585319186, 48.8824338416996], [2.370282631125606, 48.882458560125066], [2.3703448734985493, 48.882473171521], [2.3705050378475923, 48.88240667293666], [2.370678987589355, 48.88233432452067], [2.3708391524481742, 48.88226782548816], [2.371013101261993, 48.88219547657761], [2.37117326390372, 48.88212897708257], [2.371347211789495, 48.88205662767751], [2.371507374941095, 48.88199012773429], [2.37168132189893, 48.881917777834644], [2.3718414828441903, 48.88185127652965], [2.372015428863342, 48.88177892703472], [2.372175590318363, 48.88171242528156], [2.37234953540958, 48.881640075292125], [2.372509696011041, 48.88157357308359], [2.372683640174225, 48.88150122259962], [2.372843798558507, 48.88143471992859], [2.373017741793864, 48.881362368950086], [2.373177900687899, 48.88129586583091], [2.373201763989875, 48.88126034315962], [2.373184974101508, 48.88124744521048], [2.373100002958307, 48.881136215531775], [2.373012690972209, 48.88103211779309], [2.372927720548291, 48.88092088797037], [2.3728404092783872, 48.88081678918639], [2.372839320323002, 48.880814820245384], [2.372790063832658, 48.88067798370907], [2.37274263425, 48.880543001231395], [2.372740932508931, 48.8805402862319], [2.372641073484765, 48.880434262602876], [2.372537038259713, 48.88032360342737], [2.372437180055372, 48.88021758050666], [2.372333145696396, 48.88010692113221], [2.372233288333439, 48.88000089712129], [2.372129254840432, 48.87989023754789], [2.372029398308015, 48.87978421334608], [2.371925365681169, 48.87967355357368], [2.371825509968437, 48.879567530080244], [2.371721478207538, 48.87945687010893], [2.371621623336174, 48.879350845525266], [2.371517592441418, 48.879240185355066], [2.371417738400566, 48.879134160580456], [2.371344309701044, 48.87905976365977], [2.371336936477543, 48.87905180093435]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 61, "roussel_fabien": 23.0, "nb_emargement": 1189.0, "nb_procuration": 74.0, "nb_vote_blanc": 11.0, "jadot_yannick": 84.0, "le_pen_marine": 43.0, "nb_exprime": 1171.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1543.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "73", "geo_point_2d": [48.88055534442239, 2.3712743851004743], "melenchon_jean_luc": 606.0, "poutou_philippe": 5.0, "macron_emmanuel": 260.0}, "geometry": {"type": "Point", "coordinates": [2.3712743851004743, 48.88055534442239]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e5908a50431ffa99e74a0982a841974c5fb975e8", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 38, "zemmour_eric": 56.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "20-44", "geo_shape": {"coordinates": [[[2.403095792771207, 48.85458625957121], [2.4031081034066872, 48.85457069030919], [2.4032834299817303, 48.85452760912447], [2.4034566933221813, 48.85448520359926], [2.403632017948265, 48.85444212279301], [2.403805282083482, 48.8543997167666], [2.403980606133822, 48.85435663544622], [2.404153869701087, 48.85431422891179], [2.404329193175577, 48.854271147077384], [2.4045024561748862, 48.854228740034976], [2.404677779083697, 48.8541856567872], [2.404851040142066, 48.85414325012928], [2.405026363837818, 48.854100166374245], [2.405199624328233, 48.8540577592083], [2.405374947448114, 48.85401467493921], [2.40554820737057, 48.853972267265306], [2.40555682557279, 48.85396562072604], [2.405596002695705, 48.85383798374239], [2.405635030537434, 48.85371146927722], [2.405674207277702, 48.85358383223881], [2.405713234739099, 48.853457317719204], [2.405752411096831, 48.85332968062597], [2.405791438167747, 48.85320316695125], [2.405830615515877, 48.85307552891072], [2.405869642206573, 48.852949015181565], [2.405908817798938, 48.852821377978785], [2.4059478441197752, 48.8526948632959], [2.405952448438288, 48.85268081493273], [2.405946444394443, 48.85267598529551], [2.405797755622207, 48.85264953099039], [2.405611168399706, 48.8526166197734], [2.405422506501057, 48.852583053120114], [2.405235918390837, 48.85255014130919], [2.405047256974703, 48.852516574062236], [2.404860670702298, 48.852483661670945], [2.404672009768482, 48.852450093830335], [2.404485422608373, 48.8524171808452], [2.404296762157085, 48.852383612410904], [2.404110175472044, 48.852350698838606], [2.404110156434866, 48.85235069514642], [2.403921496465935, 48.852317126118436], [2.403744071067504, 48.85228564170973], [2.4035554115699362, 48.8522520721026], [2.403377986614097, 48.852220587149205], [2.403189327587997, 48.852187016962894], [2.403011901712103, 48.852155531458024], [2.4028232431573793, 48.85212196069253], [2.402645819086944, 48.852090474649806], [2.40246839523092, 48.85205898834308], [2.402279737375878, 48.85202541671772], [2.402102312599818, 48.85199392985953], [2.401913655216065, 48.85196035765503], [2.401736232245575, 48.851928870258945], [2.401579327770728, 48.85190094772016], [2.401550200612978, 48.851894539862585], [2.401540020297149, 48.85191425397062], [2.401463737858532, 48.85204816971197], [2.40138608211048, 48.852184270236684], [2.40130979888098, 48.85231818584736], [2.401232142328471, 48.85245428623913], [2.401155858297741, 48.85258820261848], [2.401078200940758, 48.852724302877256], [2.401001916129455, 48.85285821822662], [2.400924257967891, 48.852994318352465], [2.4009078982282, 48.85300537039144], [2.400909239255783, 48.85301271939673], [2.401003621163231, 48.85307290783604], [2.401102835540225, 48.85313668450669], [2.401230180477929, 48.85321789275739], [2.401329394045587, 48.853281669225055], [2.40133040943013, 48.85328225618445], [2.401492464061536, 48.853366414991314], [2.401653028209219, 48.853450222565], [2.401815083883954, 48.85353438092224], [2.401975647705299, 48.85361818804348], [2.402137704423567, 48.853702345951085], [2.402298270644157, 48.85378615263357], [2.402458837381238, 48.853869959094304], [2.402620895662815, 48.85395411632841], [2.402624881683278, 48.85395747371174], [2.402694804574441, 48.85405934126215], [2.402764510071795, 48.85415986674715], [2.402834433497212, 48.85426173509669], [2.402904139534691, 48.854362260481984], [2.4029740635046792, 48.854464128731394], [2.403043768719472, 48.8545646540103], [2.403046782860418, 48.85456743634201], [2.403049530154373, 48.85456900502094], [2.403079021096038, 48.8545874646715], [2.403095792771207, 48.85458625957121]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 44, "roussel_fabien": 24.0, "nb_emargement": 1546.0, "nb_procuration": 89.0, "nb_vote_blanc": 15.0, "jadot_yannick": 124.0, "le_pen_marine": 89.0, "nb_exprime": 1524.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1953.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1543, "quartier_bv": "80", "geo_point_2d": [48.85317024873588, 2.4034613679748578], "melenchon_jean_luc": 779.0, "poutou_philippe": 12.0, "macron_emmanuel": 323.0}, "geometry": {"type": "Point", "coordinates": [2.4034613679748578, 48.85317024873588]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7ee787714d947c2501e16c233eff9e1ff4c35cef", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 44, "zemmour_eric": 57.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-27", "geo_shape": {"coordinates": [[[2.336195696826763, 48.88273008052474], [2.336217572113024, 48.88276676412688], [2.336289388878265, 48.88288431367104], [2.336362017502301, 48.88300452428217], [2.336433836284924, 48.88312207372183], [2.336506464210427, 48.8832422842118], [2.336578283646996, 48.88335983353936], [2.336650913601086, 48.88348004392331], [2.336722732328148, 48.88359759313126], [2.336795362947174, 48.88371780340161], [2.336867182328191, 48.88383535249751], [2.336939813612366, 48.883955562654194], [2.336932390453143, 48.88396719305315], [2.3368148018887602, 48.883999505827944], [2.336690865830257, 48.884026751568065], [2.336682344267055, 48.884038321905955], [2.336730128469045, 48.8841260752781], [2.336779348340209, 48.88421578902169], [2.336827132868505, 48.88430354234091], [2.33687635308597, 48.884393255130895], [2.3368706390317913, 48.88440398846315], [2.336686682149268, 48.88447809948345], [2.336532318710636, 48.88454260029482], [2.336377954878153, 48.88460710180269], [2.336193997952025, 48.88468121116061], [2.336039633289615, 48.88474571222416], [2.335855674028873, 48.8848198210454], [2.335701308536431, 48.88488432166461], [2.3355173483045633, 48.884958429956676], [2.335362983345795, 48.88502293013913], [2.335179022142804, 48.88509703790206], [2.335024654990602, 48.885161537632676], [2.335020112681265, 48.88517359579657], [2.3351114318314172, 48.88527899264297], [2.335205182405725, 48.8853918979186], [2.335296502324752, 48.88549729370368], [2.335390255045377, 48.885610199718805], [2.335384038298964, 48.885622674878796], [2.33524199551258, 48.88566619088149], [2.335101788701399, 48.885708158373546], [2.335093926444729, 48.88571717275488], [2.335116920164853, 48.88574597465171], [2.335164811215229, 48.88581171083981], [2.335230151543001, 48.88589267419625], [2.335248871287437, 48.88589628821027], [2.335435039382093, 48.88582727563532], [2.3356204830551652, 48.88575717865543], [2.335806650160005, 48.88568816549395], [2.335992092825992, 48.88561806882894], [2.336178258952483, 48.88554905418165], [2.336363700622857, 48.88547895693225], [2.336549865759526, 48.88540994169848], [2.336735306434288, 48.885339843864635], [2.336921470581234, 48.88527082804432], [2.337106910260383, 48.88520072962607], [2.337293072042352, 48.885131714111004], [2.3374785121009403, 48.885061614216646], [2.337516734236828, 48.885047496695776], [2.337537668811833, 48.885020102940544], [2.337639819783451, 48.88489086427606], [2.337727907307717, 48.884800930264625], [2.337729133119404, 48.884799653701755], [2.337817220323703, 48.884709720516405], [2.3378980829014893, 48.88463938417274], [2.33797894526094, 48.88456904776993], [2.338087797823043, 48.88448928099736], [2.338088943490121, 48.884488407786534], [2.338218407998293, 48.884401623155355], [2.338327259832207, 48.88432185705217], [2.338456723517841, 48.8842350730494], [2.338565574650007, 48.884155305818254], [2.338567714060305, 48.88415413771635], [2.3386853471610323, 48.884102258549355], [2.338818420104388, 48.884045267302646], [2.338936054073007, 48.883993387891756], [2.339069125100211, 48.88393639635321], [2.339074336486692, 48.883925474877415], [2.339052518539188, 48.88388998647669], [2.3390245289988982, 48.88385383446832], [2.339026877664354, 48.88384197987272], [2.339004172066557, 48.883821745496334], [2.3389457205116, 48.88374624776039], [2.338849747986696, 48.88362407079909], [2.338763307702043, 48.883512420893574], [2.3386673360474433, 48.883390242860806], [2.338580896530573, 48.8832785936991], [2.338484925734848, 48.88315641549417], [2.33839848699717, 48.883044766177036], [2.338302517060309, 48.88292258779989], [2.338216079101713, 48.88281093832735], [2.338120110023807, 48.88268875977808], [2.338033672855814, 48.8825771092508], [2.337937704625321, 48.882454931428605], [2.337851268236495, 48.88234328074599], [2.337839576141004, 48.88232283902547], [2.337800574408771, 48.88232121945394], [2.337738432716766, 48.882330824134], [2.337510338433968, 48.88236810214999], [2.337324003147338, 48.88239690085061], [2.337321757920298, 48.882397386652855], [2.337191657343042, 48.8824340318962], [2.337011567193136, 48.88248809093492], [2.336881467534551, 48.88252473584574], [2.33677295097983, 48.882557310193796], [2.336748768762548, 48.88255526874878], [2.336722699112342, 48.882568017141004], [2.336651124834496, 48.88258950222963], [2.336465965283371, 48.88264450363629], [2.336285873652225, 48.88269856157305], [2.336216420783186, 48.88271919210547], [2.336195696826763, 48.88273008052474]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 27, "roussel_fabien": 22.0, "nb_emargement": 1164.0, "nb_procuration": 76.0, "nb_vote_blanc": 12.0, "jadot_yannick": 109.0, "le_pen_marine": 40.0, "nb_exprime": 1150.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1452.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1164, "quartier_bv": "69", "geo_point_2d": [48.88400754777912, 2.3371857771745237], "melenchon_jean_luc": 374.0, "poutou_philippe": 7.0, "macron_emmanuel": 448.0}, "geometry": {"type": "Point", "coordinates": [2.3371857771745237, 48.88400754777912]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "709e477805010b6139f821b3338007b51cb64c98", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 138, "zemmour_eric": 180.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "17-63", "geo_shape": {"coordinates": [[[2.291686164198487, 48.87946962248362], [2.291702243302413, 48.8794687013637], [2.291881885695603, 48.879427666042886], [2.292062321123654, 48.879386448979155], [2.292241962949416, 48.87934541311497], [2.292422399183196, 48.87930419461428], [2.292602040441522, 48.879263158206705], [2.292782474729689, 48.87922194005146], [2.292962115420579, 48.87918090310052], [2.293142549138798, 48.879139684399505], [2.293322189274447, 48.87909864600595], [2.293502623786154, 48.8790574267672], [2.29368226334215, 48.879016388729525], [2.293862695920558, 48.878975168937004], [2.294042334921293, 48.87893412945673], [2.294222768293073, 48.87889290912646], [2.294238075927538, 48.8788939625631], [2.294248273363528, 48.878886542880174], [2.294445550446962, 48.87883311046366], [2.294639601470838, 48.878780551757266], [2.294836879102466, 48.87872711959803], [2.29503092797308, 48.878674560244264], [2.295228204814018, 48.87862112653577], [2.295422254258125, 48.878568566550705], [2.29561952893266, 48.878515132184226], [2.295813577574767, 48.87846257245905], [2.295815390943414, 48.878462176624495], [2.296001586918282, 48.87843088653364], [2.296189645348637, 48.87839928424056], [2.29637584087381, 48.87836799356582], [2.2965639002134, 48.87833639069099], [2.29675009528887, 48.8783050994324], [2.2969381541864, 48.87827349506866], [2.297124348800022, 48.878242204125456], [2.297312407243341, 48.878210599172], [2.297498600043834, 48.87817930763693], [2.2976866580329363, 48.87814770209377], [2.297872851747132, 48.87811640998285], [2.2980609092820092, 48.87808480384999], [2.298116340505461, 48.87806936614475], [2.298134632376498, 48.87805394989939], [2.298116118089266, 48.87802850427284], [2.298031966916903, 48.87791126136023], [2.297965133809766, 48.877819411151336], [2.2978797882338933, 48.87770211613416], [2.2977956381330102, 48.87758487212141], [2.297710291959786, 48.87746757695043], [2.297626142619503, 48.87735033279357], [2.297540797212226, 48.87723303747678], [2.297456648620302, 48.877115794075145], [2.297371303991294, 48.876998497713295], [2.297287156159745, 48.87688125416757], [2.297201812296767, 48.87676395765995], [2.297117665225787, 48.87664671397017], [2.297032322128731, 48.87652941731675], [2.296948175818208, 48.87641217348288], [2.296862834838496, 48.87629487759096], [2.29677868793709, 48.87617763270574], [2.29669334772337, 48.87606033666803], [2.296609201582514, 48.87594309163877], [2.296523862134678, 48.875825795455306], [2.296439716742111, 48.87570855118122], [2.2963543780725, 48.87559125395274], [2.296270233440258, 48.875474009534585], [2.296184895536614, 48.875356712160354], [2.296100751664889, 48.87523946759813], [2.296015414514947, 48.87512217097737], [2.295931271415785, 48.87500492537186], [2.29584593503189, 48.87488762860536], [2.295761794056355, 48.874770382863815], [2.295676457075068, 48.87465308594356], [2.295592316859917, 48.874535840057916], [2.295506980644563, 48.874418542991904], [2.295422841177725, 48.87430129786156], [2.2953375057404592, 48.87418399975052], [2.295253367033881, 48.87406675447609], [2.295168032362533, 48.87394945621935], [2.295083894416308, 48.873832210800884], [2.295026595615515, 48.87380921352094], [2.294962420561667, 48.873805910890496], [2.294795980131339, 48.87385790894041], [2.29461254714592, 48.873915966223976], [2.294446107377944, 48.87396796379024], [2.294262673614966, 48.87402602053184], [2.29409623178273, 48.874078017598436], [2.293912797254283, 48.87413607289882], [2.2937463560844122, 48.87418806948183], [2.293562919403011, 48.87424612513153], [2.293396477532192, 48.87429812122285], [2.293213041436553, 48.87435617633865], [2.293046597501473, 48.87440817193026], [2.292972099987721, 48.8744317488776], [2.292959591176914, 48.87443754140507], [2.292990982719838, 48.87448039521993], [2.293057358734995, 48.87457784156931], [2.293124365943572, 48.87467621522363], [2.2931907424456153, 48.874773662381045], [2.293257750158034, 48.87487203594325], [2.293262497270605, 48.87487577645429], [2.293400970439254, 48.87493816197336], [2.293542037694233, 48.8750017146932], [2.293680511544715, 48.875064098982506], [2.293821579469674, 48.87512765226492], [2.293960055353029, 48.875190036231814], [2.294101123972359, 48.875253588278284], [2.294104900411488, 48.87526588026608], [2.293984752716914, 48.8753890686082], [2.293867566101952, 48.875509220122616], [2.293747418647966, 48.87563240820738], [2.293630229574659, 48.875752559454895], [2.293628435831386, 48.87575533413043], [2.293584770073719, 48.87587577705149], [2.293541435589234, 48.87599530367233], [2.2934977680536353, 48.87611574742668], [2.293454434533201, 48.87623527399811], [2.293411099462705, 48.87635479963355], [2.293367432687673, 48.87647524330916], [2.293324097205657, 48.87659476978638], [2.293280428677063, 48.8767152124967], [2.293237094159098, 48.876834738924465], [2.293193425215909, 48.87695518247607], [2.293150088947433, 48.87707470793904], [2.293106420965232, 48.87719515144072], [2.293063084285214, 48.87731467774542], [2.293019415900613, 48.87743512118917], [2.293023100638642, 48.877443614733004], [2.2932049181806162, 48.877561906519055], [2.293377153976189, 48.8776739638888], [2.293387032807372, 48.877676552042885], [2.293554725227949, 48.87767408828317], [2.293727323072068, 48.87767155340286], [2.293895015460452, 48.87766908916648], [2.29406761327154, 48.877666553795535], [2.294081468797229, 48.877676532733275], [2.294059156411122, 48.87780963203401], [2.294038462629632, 48.87793225186375], [2.29401776876289, 48.878054870776985], [2.293995456039617, 48.87818797091943], [2.293974760606697, 48.878310589788754], [2.293952447676148, 48.87844368899305], [2.293935315781029, 48.87845138702009], [2.293951426161731, 48.87847448353327], [2.293999411952966, 48.87852449548658], [2.294054561438459, 48.87858197370508], [2.294047626595763, 48.87859525202074], [2.293862192000063, 48.878638940057435], [2.293675664705146, 48.878682844396], [2.293490229473364, 48.87872653275236], [2.293303701551077, 48.878770436507956], [2.2931182657076112, 48.878814123385375], [2.29293173578252, 48.87885802744915], [2.2927462993151773, 48.87890171374694], [2.292559770138369, 48.87894561633646], [2.292374333034938, 48.8789893029539], [2.292187801867538, 48.87903320495232], [2.292002364152457, 48.879076890090886], [2.291815833721149, 48.879120791514325], [2.291630395369979, 48.879164476972505], [2.291443864311428, 48.87920837781287], [2.291430454957071, 48.87922484178254], [2.291439975922767, 48.879235006701634], [2.2914622999964482, 48.87925472732485], [2.291573836669957, 48.879369826444226], [2.291676830673419, 48.87946080770358], [2.291686164198487, 48.87946962248362]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 63, "roussel_fabien": 8.0, "nb_emargement": 1196.0, "nb_procuration": 69.0, "nb_vote_blanc": 13.0, "jadot_yannick": 59.0, "le_pen_marine": 63.0, "nb_exprime": 1182.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1514.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1196, "quartier_bv": "65", "geo_point_2d": [48.876690701465215, 2.295066603607127], "melenchon_jean_luc": 144.0, "poutou_philippe": 0.0, "macron_emmanuel": 547.0}, "geometry": {"type": "Point", "coordinates": [2.295066603607127, 48.876690701465215]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "675cabba8bf22ea35d828ffe6c9dfd8f64458c73", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 75, "zemmour_eric": 85.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-50", "geo_shape": {"coordinates": [[[2.305243816613529, 48.834506985434174], [2.305245834632693, 48.834499803067025], [2.305149729190093, 48.83439048174455], [2.305053747909931, 48.83428148302903], [2.3049576432726733, 48.83417216153085], [2.304861662784048, 48.83406316353926], [2.304765558964219, 48.8339538409661], [2.30466957927921, 48.83384484279913], [2.304573477614868, 48.83373552095755], [2.304477497383209, 48.83362652170792], [2.304381396524277, 48.833517199690746], [2.304285417096228, 48.83340820026573], [2.304189317042496, 48.83329887807289], [2.30409333978029, 48.83318987848039], [2.303997239169707, 48.833080556103965], [2.3039012626990782, 48.8329715572354], [2.3038051629056913, 48.832862233784056], [2.303709187238636, 48.83275323474009], [2.303613088238619, 48.83264391201243], [2.303517113387143, 48.83253491189376], [2.303421015192295, 48.83242558899045], [2.303325041144479, 48.83231658869647], [2.303228943754893, 48.83220726561749], [2.303132970510524, 48.832098265148126], [2.303133881011982, 48.83208742668051], [2.303118028899529, 48.8320782865973], [2.303116761883747, 48.83207635634956], [2.303053328730938, 48.83193710422383], [2.302992496330756, 48.83180194227409], [2.302929063855822, 48.831662689149056], [2.302868233448119, 48.83152752801023], [2.302865571424454, 48.831524277437715], [2.302740875755607, 48.831427046574824], [2.3026155963752952, 48.83132898294224], [2.302490901639716, 48.83123175180182], [2.302365623198953, 48.83113368789033], [2.302363286677402, 48.831131057974886], [2.302294917468717, 48.83101111671391], [2.302225230951275, 48.83089028272696], [2.3021568623759903, 48.830770341361294], [2.3020871778746113, 48.83064950637663], [2.302018809920777, 48.8305295658056], [2.301949124699058, 48.830408730706544], [2.301948481624139, 48.8304072115026], [2.301916540914727, 48.83029408487974], [2.301884809102094, 48.83018103500319], [2.301852868669426, 48.83006790834045], [2.301821137132535, 48.829954858424195], [2.301789195614451, 48.8298417317137], [2.301757465715355, 48.829728681765644], [2.301725524474012, 48.82961555501533], [2.301693793488598, 48.82950250501964], [2.301690130155077, 48.829497849135514], [2.301526464614385, 48.82938756501078], [2.301363778810115, 48.8292800546563], [2.301201092302642, 48.82917254496164], [2.30103742882978, 48.829062259236345], [2.30100153741031, 48.82904211924296], [2.300986673288183, 48.82904737197491], [2.300970868647509, 48.82913251907788], [2.300959726546338, 48.8291889385047], [2.300953292604127, 48.8292082528193], [2.300955996668407, 48.82921068705278], [2.300938659373391, 48.82929847924617], [2.300915770430506, 48.82941505775072], [2.300887289378926, 48.82955926931567], [2.300864401568921, 48.829675847791286], [2.300835920232665, 48.829820059310485], [2.300813030831137, 48.829936637741156], [2.300804098673155, 48.82994394602854], [2.300625117814875, 48.82998608404508], [2.3004446697012693, 48.83002851360367], [2.3002656869000733, 48.83007065107115], [2.300085238201219, 48.830113080084246], [2.2999062561813313, 48.83015521701862], [2.2997258055350702, 48.83019764547826], [2.299546822934333, 48.830239781871605], [2.299366373064999, 48.8302822097937], [2.299187389883419, 48.83032434564595], [2.299006938066684, 48.830366773014546], [2.2988279543042642, 48.83040890832573], [2.298647501902298, 48.83045133514884], [2.298468517558941, 48.830493469918956], [2.298288065933923, 48.8305358962045], [2.2981090810098372, 48.830578030433536], [2.297928627437424, 48.83062045616563], [2.297921969622051, 48.83062706438094], [2.297929952504972, 48.830642031913214], [2.2980736860525193, 48.83073146243969], [2.29821667077817, 48.830820189573444], [2.298360405308779, 48.83090961974114], [2.298503391011168, 48.83099834651802], [2.298647126536946, 48.83108777542766], [2.298790113215976, 48.8311765018476], [2.298933849712727, 48.83126593129774], [2.299076837368305, 48.831354657360855], [2.299220573486043, 48.83144408644419], [2.29936356349256, 48.83153281125905], [2.299507300593277, 48.83162223998362], [2.299650291564474, 48.831710965340875], [2.299794029648279, 48.83180039370663], [2.299937021596049, 48.831889118707], [2.300080760675125, 48.83197854581462], [2.300223753599572, 48.83206727045812], [2.300367493649572, 48.832156698106225], [2.300510487550805, 48.83224542239277], [2.300654228583913, 48.83233484968207], [2.300797223473799, 48.83242357271238], [2.300940965490121, 48.8325129996429], [2.301083961344641, 48.83260172321557], [2.30108565268075, 48.83260299132539], [2.301201775459051, 48.83270852532566], [2.301318518742745, 48.83281445225473], [2.301434642463523, 48.832919986008996], [2.301551385331729, 48.833025912682835], [2.30166751135723, 48.83313144619904], [2.301784255172191, 48.833237372625575], [2.301900380777945, 48.83334290588779], [2.302017125539769, 48.83344883206703], [2.302133253450176, 48.83355436509118], [2.302249999158774, 48.83366029102311], [2.302366126649442, 48.83376582379328], [2.302482874667081, 48.833871749485844], [2.3025990031123023, 48.83397728111066], [2.302715750702442, 48.83408320744731], [2.30283188009019, 48.83418873882608], [2.3029486300014312, 48.834294664024014], [2.30306476031969, 48.83440019605607], [2.303181509815472, 48.83450612099875], [2.303297642438559, 48.834611652792695], [2.303414392881161, 48.83471757748805], [2.303530525084631, 48.83482310902802], [2.303647277836249, 48.83492903348397], [2.303666268609064, 48.83493724380116], [2.303683502352774, 48.8349300223317], [2.303875982219828, 48.83487800234154], [2.304066277617201, 48.834825895582746], [2.30425875671778, 48.83477387497176], [2.304449052714686, 48.83472176760707], [2.304641531048782, 48.83466974637531], [2.304831824920649, 48.83461763838889], [2.30502211976236, 48.83456553100449], [2.305214596959646, 48.83451350794399], [2.305243816613529, 48.834506985434174]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 50, "roussel_fabien": 9.0, "nb_emargement": 1106.0, "nb_procuration": 36.0, "nb_vote_blanc": 11.0, "jadot_yannick": 70.0, "le_pen_marine": 76.0, "nb_exprime": 1088.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1472.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1106, "quartier_bv": "57", "geo_point_2d": [48.83203232636239, 2.301785502467222], "melenchon_jean_luc": 322.0, "poutou_philippe": 5.0, "macron_emmanuel": 386.0}, "geometry": {"type": "Point", "coordinates": [2.301785502467222, 48.83203232636239]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6fe040ca16c52c7569c0f68db4a26d9a28de09fb", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 49, "zemmour_eric": 56.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "20-27", "geo_shape": {"coordinates": [[[2.404647357834585, 48.87178481754342], [2.404679637509012, 48.87179003864349], [2.404743501923375, 48.8718082053395], [2.404903238199296, 48.871853437488994], [2.405107350313139, 48.87191149863659], [2.405267087231941, 48.87195672939705], [2.405471198792833, 48.872014789911994], [2.405630937697453, 48.87206002108878], [2.405653770311826, 48.87206005711953], [2.405661210389901, 48.87204640170413], [2.405784746516293, 48.87194104022478], [2.405908907415714, 48.87183512412418], [2.406032441176841, 48.871729762362285], [2.406156601068995, 48.8716238459845], [2.406280135191299, 48.87151848395358], [2.406404292723185, 48.87141256639256], [2.406527825833161, 48.87130720498515], [2.406651983721055, 48.87120128715372], [2.406775514465715, 48.8710959254638], [2.406899671346264, 48.870990007355196], [2.407023202452119, 48.870884645396245], [2.407147358325536, 48.87077872701049], [2.407270887076339, 48.870673363869734], [2.407395041932301, 48.87056744610611], [2.407518569681068, 48.87046208268958], [2.40764272354005, 48.87035616374955], [2.407639450958055, 48.87034315845784], [2.407528427138819, 48.87029480210601], [2.407419728862902, 48.870244924694134], [2.407416496262667, 48.87023224515197], [2.407530762237418, 48.87012881617784], [2.407647465929814, 48.870023173296254], [2.407761730987341, 48.86991974408207], [2.407878435106233, 48.86981410096205], [2.407992699246543, 48.869710671507804], [2.4081094010653032, 48.86960502813589], [2.408223664288407, 48.86950159844155], [2.4083403651704662, 48.869395954824455], [2.408329862634225, 48.86938167181929], [2.408140221643981, 48.8693769507242], [2.407961824271476, 48.86937335875034], [2.407772184707959, 48.8693686370789], [2.407593786036431, 48.869365043650454], [2.407585561455566, 48.86936301001533], [2.407560943812971, 48.86934969940857], [2.407559467515042, 48.869345254778224], [2.407529986176853, 48.86933730351561], [2.407387455144725, 48.869260234401295], [2.407229605976463, 48.86917475150423], [2.407062458443585, 48.86908437130843], [2.4069046117047472, 48.86899888797594], [2.406737465300141, 48.86890850731191], [2.40657961962752, 48.868823023537225], [2.4064217731097672, 48.86873753954101], [2.4062546283813813, 48.86864715818138], [2.406253319347001, 48.868646349479526], [2.40621570349184, 48.868620038945885], [2.406178469871913, 48.8685938049409], [2.40617479585136, 48.868587953615815], [2.406173629200447, 48.86856449043077], [2.406173794426992, 48.86854174522839], [2.406170025451721, 48.86853549412625], [2.405994747002584, 48.86841430301897], [2.405826171923459, 48.86829709480268], [2.405820864831883, 48.868294827309306], [2.405770112244108, 48.86828295591486], [2.405719919151784, 48.86827055846654], [2.405714748485307, 48.868268282652394], [2.40566300695938, 48.868232093627235], [2.405602683791671, 48.86818958998479], [2.405599050373135, 48.86818269740883], [2.405612368671617, 48.86807712202597], [2.405625851433947, 48.86796704446747], [2.405639170986142, 48.86786146906784], [2.40565265363592, 48.86775139148481], [2.405665971715496, 48.86764581605485], [2.405679454252825, 48.86753573844735], [2.405671402962656, 48.86752834548448], [2.405646316123832, 48.86752915442227], [2.405530127244552, 48.867563656949685], [2.405423089963347, 48.86759727850911], [2.4054194525603663, 48.867598862159554], [2.405277338188312, 48.86768515169968], [2.405137893008597, 48.86777092102569], [2.404995777690385, 48.867857211117354], [2.404856330223445, 48.8679429800952], [2.404854034249411, 48.86794479703127], [2.4047577504192272, 48.868045446000444], [2.404663501004585, 48.86814590085449], [2.404567216434562, 48.868246549652085], [2.40447296628864, 48.86834700433788], [2.404376680978772, 48.86844765296388], [2.4042824301118513, 48.868548106582026], [2.4042655107954483, 48.86856135413983], [2.404285795231106, 48.86857737425963], [2.404430324416487, 48.8686620214106], [2.404590247403784, 48.86875612503707], [2.404761765072199, 48.86885657695988], [2.404921690618726, 48.86895068013372], [2.404925697970191, 48.86895992095343], [2.404867183421927, 48.86909164180717], [2.404809296159939, 48.869222365675526], [2.4047507810225293, 48.86935408644105], [2.40469289317668, 48.86948481022204], [2.404634376087005, 48.86961653089267], [2.404576487647204, 48.869747255485585], [2.4045179713417513, 48.86987897517551], [2.404460082318069, 48.87000969968111], [2.40440156405004, 48.870141420175344], [2.404343674452949, 48.87027214369432], [2.404343131845245, 48.87027488756435], [2.404347674468125, 48.870396475126846], [2.404352678011102, 48.87051805327804], [2.404357220667288, 48.8706396417127], [2.404362224255904, 48.87076121983673], [2.404366766955477, 48.870882808244275], [2.404371769226588, 48.87100438633437], [2.40436908346708, 48.8710099947114], [2.404288023498449, 48.87108194639584], [2.404145203177379, 48.871206785340085], [2.404064141230003, 48.871278736853306], [2.404033201874896, 48.87128366045528], [2.404041979895155, 48.87130906899279], [2.404043532547536, 48.87131182329099], [2.404129167581641, 48.871410487531584], [2.404212378981617, 48.87150712422869], [2.404295590700527, 48.87160375996024], [2.404381226692121, 48.87170242399446], [2.40438745123017, 48.87170615302987], [2.404504939090549, 48.871741117332014], [2.404645184565742, 48.87178101244339], [2.404647357834585, 48.87178481754342]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 27, "roussel_fabien": 18.0, "nb_emargement": 1041.0, "nb_procuration": 53.0, "nb_vote_blanc": 5.0, "jadot_yannick": 96.0, "le_pen_marine": 48.0, "nb_exprime": 1033.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1350.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1041, "quartier_bv": "78", "geo_point_2d": [48.86999915602853, 2.4057962527169665], "melenchon_jean_luc": 380.0, "poutou_philippe": 9.0, "macron_emmanuel": 314.0}, "geometry": {"type": "Point", "coordinates": [2.4057962527169665, 48.86999915602853]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7ae748f2ca8ed5be87c5586271b2176d66e9761e", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 180, "zemmour_eric": 272.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-4", "geo_shape": {"coordinates": [[[2.272736959326859, 48.8621699743396], [2.272790760065486, 48.86214832284892], [2.272849161114399, 48.86212482053411], [2.27283770167931, 48.862104016285656], [2.27293278085165, 48.8620095861452], [2.273063255564741, 48.86188130337539], [2.273158335284805, 48.86178687304509], [2.273288808897413, 48.861658589104316], [2.273383886439131, 48.86156415856755], [2.273385384387487, 48.86156220886749], [2.273458033018112, 48.861433123037415], [2.27352815775183, 48.86130534388113], [2.273600805670431, 48.86117625793448], [2.273670928345289, 48.861048478656706], [2.273741052039047, 48.86092069933136], [2.273813698893929, 48.86079161321067], [2.273814414854067, 48.8607896317782], [2.273841861522308, 48.86063999086571], [2.273867348390122, 48.86049902401407], [2.27389283512012, 48.86035805713915], [2.273920281335774, 48.86020841615038], [2.273920264915285, 48.86020617125817], [2.27389802301478, 48.86008273639025], [2.273875534760135, 48.859969063419896], [2.273853046603618, 48.85985539043371], [2.273830805024645, 48.85973195461491], [2.273808317067957, 48.859618281596006], [2.27378607568374, 48.859494846641816], [2.273800698873004, 48.85948482031913], [2.273972654570597, 48.85949391563897], [2.274143186374944, 48.85950278622901], [2.274315143541917, 48.85951188196417], [2.274485674112974, 48.859520751158485], [2.274657631399128, 48.85952984640132], [2.274828163450108, 48.859538715115704], [2.275000120855336, 48.85954780986632], [2.27517065164807, 48.85955667898351], [2.275185508149231, 48.85955092854779], [2.275188258409849, 48.85953096420441], [2.275159667243039, 48.85939775731984], [2.2751315241015, 48.85926615757764], [2.27510293457546, 48.859132951555274], [2.275074791720252, 48.85900135176828], [2.275046201134162, 48.85886814479303], [2.275018058552773, 48.85873654586059], [2.274989469619941, 48.858603338848205], [2.274961327337388, 48.858471738971765], [2.2749331838214832, 48.85834013996409], [2.274904595323255, 48.85820693288387], [2.274891999412555, 48.858166330609855], [2.274873826077237, 48.85816471406347], [2.274809957214352, 48.858167905567875], [2.274579488519156, 48.85817772275548], [2.274378900284432, 48.858187746773076], [2.274148430044937, 48.85819756402136], [2.273947843026225, 48.858207586425195], [2.273944774946272, 48.85820748866651], [2.273753571328979, 48.85818695354338], [2.273558401399023, 48.85816486692617], [2.273367198090423, 48.85814433118492], [2.273172028496559, 48.85812224303739], [2.272980825496663, 48.85810170667801], [2.272785656213711, 48.858079618798804], [2.272782731981043, 48.85807907850099], [2.272638756026587, 48.85803856785344], [2.272436972517964, 48.85798466488207], [2.272436523042669, 48.85798454523276], [2.272302490335323, 48.85795048996356], [2.272302274368611, 48.857950436487485], [2.272100491536944, 48.85789653384377], [2.27193145263779, 48.85785574486462], [2.271729670556369, 48.857801841591034], [2.271560630904417, 48.857761051177015], [2.271559909389533, 48.85776089209529], [2.271373627415195, 48.85772309564066], [2.271186297914371, 48.85768556771684], [2.271000016493043, 48.857647769778794], [2.270812686169262, 48.857610241259216], [2.270626405275587, 48.85757244363631], [2.270439076867302, 48.857534913638375], [2.270252796513969, 48.857497115431315], [2.270065467270049, 48.85745958573695], [2.269879187469766, 48.85742178604644], [2.269691860128658, 48.85738425577302], [2.269505580856026, 48.85734645639764], [2.269318252704704, 48.85730892462924], [2.269260060367037, 48.85729711594768], [2.269243326681337, 48.85728734385318], [2.269222371562456, 48.85728692538966], [2.269094286574571, 48.857260934079456], [2.268900944988165, 48.85722043750723], [2.2687146668749962, 48.857182636895104], [2.26852132587418, 48.857142139706674], [2.268521153285762, 48.85714210357669], [2.268305707580858, 48.857096308590286], [2.268112367205605, 48.85705581163728], [2.267896922216903, 48.857010015911314], [2.267703582492215, 48.85696951739544], [2.2674881382068808, 48.856923721829226], [2.267294799120133, 48.85688322264975], [2.267293855048796, 48.85688299652601], [2.267103795545391, 48.85683212771552], [2.266944533103116, 48.856789722274534], [2.266785272282929, 48.856747316628265], [2.266595212408215, 48.85669644699545], [2.266388303355659, 48.856637600764735], [2.266198244268715, 48.85658673049643], [2.266195398071622, 48.85658569226929], [2.2660483457903933, 48.85651575104669], [2.265871069918398, 48.85643696607824], [2.265724019855107, 48.85636702445612], [2.265546743616679, 48.8562882389883], [2.265399694408474, 48.85621829695825], [2.265278797586149, 48.85615531088677], [2.265131749125444, 48.85608536761985], [2.265010852922762, 48.85602238216943], [2.265008830610364, 48.856021203277336], [2.264920148981491, 48.855954828050265], [2.264806568482284, 48.85587404670997], [2.264787514487668, 48.85584625002198], [2.264747141435631, 48.8558448363831], [2.264746408357204, 48.855845017146926], [2.264583534950248, 48.855888746844215], [2.264387372372215, 48.855943342804856], [2.264224498356585, 48.85598707200961], [2.264028335032188, 48.85604166737683], [2.263865459045054, 48.85608539608062], [2.263858055779687, 48.85609724907434], [2.263938862175101, 48.85622250902722], [2.264014586872833, 48.85634388749262], [2.264095394027148, 48.85646914731199], [2.264171119447968, 48.856590525651384], [2.26425192736099, 48.85671578533721], [2.2643276535176042, 48.856837162651296], [2.26440846217685, 48.8569624231029], [2.264484189056569, 48.85708380029097], [2.264564998474646, 48.85720906060904], [2.264640726077479, 48.85733043767109], [2.264650717890405, 48.85739166899472], [2.264687293416085, 48.85739792125771], [2.264875944333007, 48.85734110854518], [2.2650520564128263, 48.85729699122489], [2.265240705216398, 48.85724017702453], [2.2654168166336373, 48.857196060062705], [2.265605466036801, 48.85713924529047], [2.2657815768040432, 48.857095127787844], [2.265791424909631, 48.85709517202453], [2.265940707432743, 48.857134119988395], [2.266145022776067, 48.85718184576308], [2.266294305811822, 48.857220793282785], [2.266498621818901, 48.85726851845001], [2.266647905354636, 48.85730746642485], [2.266655074947647, 48.85731179491023], [2.266666900352551, 48.85732852351142], [2.266746884822129, 48.857433675665455], [2.266810827166716, 48.85752412747209], [2.266886596652899, 48.857631306921135], [2.266966582030662, 48.85773645889964], [2.2670423507832362, 48.85784363822124], [2.267122338164175, 48.857948790083874], [2.267198107545822, 48.858055969286355], [2.267278094204278, 48.85816112101639], [2.267353865565351, 48.85826830100737], [2.267433852864017, 48.85837345261322], [2.267434491935897, 48.85837443412782], [2.267507519105337, 48.858507966376074], [2.267578363520949, 48.858639822288985], [2.267649208295136, 48.85877167814427], [2.267722236571652, 48.8589052102137], [2.267793082070797, 48.85903706595226], [2.267866111088027, 48.859170597901986], [2.26793695731214, 48.85930245352383], [2.268009987082728, 48.859435984454514], [2.268080834019086, 48.85956784085894], [2.2681538645304062, 48.85970137166985], [2.268154575228891, 48.859705504064905], [2.268131163622357, 48.8598333133012], [2.268109068033251, 48.85996378187145], [2.268085656186392, 48.86009159196834], [2.2680635590234832, 48.86022205959221], [2.268040146948926, 48.860349869650406], [2.268018049562512, 48.86048033723549], [2.267994637260252, 48.86060814725505], [2.267972539650332, 48.86073861480132], [2.267949128483327, 48.860866424790515], [2.267927030637264, 48.86099689319728], [2.267903617892229, 48.8611247022402], [2.267881519822548, 48.86125517060814], [2.267858106849903, 48.8613829796124], [2.267836008556705, 48.86151344794155], [2.267812596706586, 48.86164125781471], [2.26779049820261, 48.861771725205784], [2.267803286770623, 48.86178170355451], [2.267991290707026, 48.86178860324706], [2.268198436044422, 48.86179727630722], [2.268386440089349, 48.86180417537889], [2.268593585554334, 48.86181284775498], [2.268781589707775, 48.86181974620581], [2.268988733937557, 48.86182841788951], [2.269176739562488, 48.861835315727845], [2.26938388391984, 48.86184398672745], [2.269571889653268, 48.86185088394492], [2.269779034138382, 48.861859554260455], [2.269967039980295, 48.861866450857114], [2.270174184605556, 48.861875119589286], [2.270362189180361, 48.86188201645602], [2.270569335296345, 48.86189068451244], [2.270757339979624, 48.86189758075834], [2.270945346088246, 48.86190447581783], [2.271152491014975, 48.861913143755714], [2.2711610222289, 48.86191560238662], [2.271300196876469, 48.86200293097173], [2.271435687838566, 48.86209248174884], [2.271446508375811, 48.86209508829972], [2.271621758571623, 48.862085085801915], [2.271793313759485, 48.862072519887064], [2.271968563812794, 48.86206251688119], [2.2721401174796982, 48.86204995046063], [2.272315368753492, 48.86203994695504], [2.272486922262423, 48.862027380037055], [2.2724969319628983, 48.86202929175869], [2.272619996402465, 48.86209414220876], [2.272711739179797, 48.86214568149856], [2.272736959326859, 48.8621699743396]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 4, "roussel_fabien": 3.0, "nb_emargement": 1332.0, "nb_procuration": 98.0, "nb_vote_blanc": 8.0, "jadot_yannick": 29.0, "le_pen_marine": 54.0, "nb_exprime": 1322.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1695.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1334, "quartier_bv": "62", "geo_point_2d": [48.859333960858855, 2.270311780437744], "melenchon_jean_luc": 53.0, "poutou_philippe": 3.0, "macron_emmanuel": 699.0}, "geometry": {"type": "Point", "coordinates": [2.270311780437744, 48.859333960858855]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "259cf91252bd0f85e407d5bf2effaec47abb684e", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 97, "zemmour_eric": 86.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "14-28", "geo_shape": {"coordinates": [[[2.327793961205971, 48.83618509354181], [2.327809369371572, 48.83618524488722], [2.327841192817159, 48.83617506477897], [2.327988377809085, 48.83612798055248], [2.328172694920917, 48.83606100648852], [2.328191317689797, 48.836064694175946], [2.328285773167134, 48.83618306820038], [2.328380460132959, 48.836300004443345], [2.328474916454639, 48.83641837919281], [2.328569602909992, 48.8365353152538], [2.32866406146143, 48.836653688937346], [2.328758748768548, 48.83677062482401], [2.328853208175941, 48.836888998333286], [2.328947896334832, 48.837005934045614], [2.329042356586615, 48.8371243082799], [2.329137045597293, 48.83724124381791], [2.329231505354375, 48.837359616970964], [2.329326196579101, 48.837476552342274], [2.329420657192164, 48.83759492532104], [2.329515349268704, 48.83771186051798], [2.329609810726191, 48.83783023422175], [2.329704502292181, 48.83794716923673], [2.329798965979609, 48.83806554187454], [2.329893658397427, 48.83818247671518], [2.329988122940873, 48.83830084917868], [2.330082816198968, 48.83841778474421], [2.330177281598446, 48.83853615703347], [2.33027197572005, 48.838653091525345], [2.330282327466517, 48.83865777762935], [2.330516750266796, 48.83867731376889], [2.330775290635388, 48.83869830555072], [2.330790203311056, 48.83869147644122], [2.330837087563014, 48.838562395261114], [2.330883940687778, 48.8384341287022], [2.330930824476122, 48.83830504745565], [2.33097767712745, 48.838176781729786], [2.331024560452188, 48.838047700416766], [2.331071412641432, 48.837919434624645], [2.331079242454732, 48.837913289857795], [2.331096384659853, 48.83790650195455], [2.331132760508373, 48.8378961036118], [2.3311588968413632, 48.83789584863868], [2.331165893203759, 48.83788723223867], [2.331325853175731, 48.83784150599127], [2.331507538191639, 48.837789526222345], [2.331703871822834, 48.83773340098854], [2.331885556073432, 48.83768142153972], [2.332081888890401, 48.83762529568003], [2.332263572398742, 48.83757331475275], [2.332459904401477, 48.8375171882672], [2.332641587156128, 48.83746520676075], [2.332659883478646, 48.83746018963264], [2.33266259857953, 48.83745158793091], [2.332658663749923, 48.83732368746528], [2.332654909489715, 48.837194986654715], [2.332650976060695, 48.83706708616713], [2.33264722183795, 48.83693838532675], [2.332643288447156, 48.83681048480955], [2.332639534261873, 48.83668178393944], [2.332635600909306, 48.83655388339264], [2.332631846761384, 48.836425182492725], [2.332627912084814, 48.836297281908685], [2.332624157962944, 48.83616858187834], [2.33262022468683, 48.83604068127234], [2.332616470613833, 48.835911980312915], [2.332612537375944, 48.835784079677275], [2.332608783340508, 48.83565537868808], [2.332604850140843, 48.83552747802289], [2.332601096142866, 48.835398777003945], [2.3325971616191232, 48.83527087630153], [2.332593407647094, 48.83514217615213], [2.332589474535393, 48.83501427452845], [2.3325857206008243, 48.83488557434928], [2.33258178751583, 48.83475767359533], [2.332578033630232, 48.834628972487074], [2.332583432313573, 48.834623573110576], [2.332572952395957, 48.834608195649956], [2.332484058565115, 48.834499992730784], [2.332360706315069, 48.83434632575794], [2.332271813382877, 48.83423812175639], [2.332298052661816, 48.834221602891475], [2.332284613880097, 48.83417197971539], [2.332204272503842, 48.83407518064354], [2.33211538035874, 48.833966976499525], [2.332035039612697, 48.83387017729624], [2.331946148168457, 48.83376197300665], [2.331865808052719, 48.83366517367198], [2.331776917297706, 48.83355697013611], [2.331776603123245, 48.833556610430946], [2.331692941995991, 48.83346599627129], [2.331604051939534, 48.83335779258769], [2.33152039279355, 48.83326717829887], [2.331502175872416, 48.83326398534107], [2.331324893414099, 48.833328595434224], [2.331162810883387, 48.833388783509896], [2.330985527580134, 48.83345339309282], [2.330823445631716, 48.83351358070954], [2.330646161483326, 48.83357818978224], [2.330484077392895, 48.83363837692475], [2.33030679239957, 48.83370298548727], [2.330144707529179, 48.83376317216317], [2.329982622284505, 48.8338233586162], [2.329805336040566, 48.83388796642473], [2.329643250016033, 48.83394815241119], [2.329465962927059, 48.834012759709545], [2.329303876122769, 48.834072945229366], [2.329178698496561, 48.834118561765614], [2.329146125861017, 48.834129910818284], [2.32916977384596, 48.83417053315601], [2.329255107150941, 48.834277791393056], [2.329342819501573, 48.83438705950081], [2.329428153517068, 48.834494317593624], [2.32951586659467, 48.83460358555331], [2.329601201332252, 48.83471084260264], [2.329688915137031, 48.83482011041432], [2.329686657905465, 48.83483058263002], [2.329569066977944, 48.83491064030554], [2.329404348396257, 48.835022377498895], [2.3292867566024, 48.83510243488311], [2.329122038171806, 48.835214171676185], [2.32900444551181, 48.83529422876917], [2.329001733717262, 48.83529565614679], [2.328823439050758, 48.835367100103134], [2.32864274521328, 48.83544104586496], [2.32846444955736, 48.83551248927692], [2.328283756068955, 48.83558643449451], [2.328105458061412, 48.83565787735442], [2.327924763559773, 48.83573182202007], [2.327746465925227, 48.83580326434323], [2.3275657690480402, 48.83587720844932], [2.327560884904469, 48.83588903379176], [2.327676309886412, 48.83603414037134], [2.327783187871335, 48.83616920588388], [2.327793961205971, 48.83618509354181]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 28, "roussel_fabien": 19.0, "nb_emargement": 1251.0, "nb_procuration": 123.0, "nb_vote_blanc": 17.0, "jadot_yannick": 126.0, "le_pen_marine": 47.0, "nb_exprime": 1232.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1535.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1251, "quartier_bv": "53", "geo_point_2d": [48.83592222417641, 2.330680583958719], "melenchon_jean_luc": 261.0, "poutou_philippe": 4.0, "macron_emmanuel": 541.0}, "geometry": {"type": "Point", "coordinates": [2.330680583958719, 48.83592222417641]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "42b12f5c73b9bedec2447fefe2a6904fa4c2da6d", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 71, "zemmour_eric": 58.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "17-30", "geo_shape": {"coordinates": [[[2.323034328562558, 48.88698204177591], [2.323032937200318, 48.88698185943943], [2.3230251131480832, 48.886980835833306], [2.322998637835544, 48.88698690769957], [2.32284759262822, 48.887077074675304], [2.322709929613143, 48.88715903433311], [2.322572266164717, 48.88724099382652], [2.32242121947038, 48.8873311611428], [2.322283555112489, 48.88741312029141], [2.322154576563221, 48.88749011289309], [2.322134925109458, 48.88750194293012], [2.3221731741271983, 48.8875302230216], [2.322315023667264, 48.88763682118991], [2.322457933956469, 48.887744216588146], [2.322599784674116, 48.887850813499085], [2.322742696137924, 48.88795820853652], [2.322884548009764, 48.88806480598857], [2.323027462011871, 48.88817220067294], [2.323169313685929, 48.88827879775918], [2.32331222886267, 48.88838619208271], [2.323454081714321, 48.88849278791158], [2.323596998065702, 48.88860018187432], [2.323599683871922, 48.88860895919744], [2.323526556546201, 48.888753541100705], [2.32345462699467, 48.88889575368665], [2.323451647122941, 48.888906880418205], [2.323464980192441, 48.88891354062829], [2.32358755688502, 48.889004977079416], [2.323710585134366, 48.88909675049518], [2.323833161314124, 48.889188187571186], [2.323956190429222, 48.8892799607193], [2.324078768846947, 48.88937139663705], [2.324201798827802, 48.8894631695175], [2.32432437673272, 48.889554606060166], [2.324447407591007, 48.88964637777369], [2.324569987722239, 48.8897378140573], [2.324693018070901, 48.88982958639472], [2.324815599076395, 48.88992102151241], [2.324938631654561, 48.89001279358987], [2.325061213511003, 48.890104229340096], [2.325184245591218, 48.89019600114215], [2.325200305039063, 48.89019816998834], [2.325347883869643, 48.8901520324484], [2.325559807169643, 48.89008577859753], [2.325707385374776, 48.89003963971055], [2.32591930639627, 48.88997338520896], [2.326066883952658, 48.889927246773475], [2.326074413409139, 48.88991735159272], [2.326030459634124, 48.88977287110856], [2.325986498258369, 48.88962836446461], [2.325942546346597, 48.889483883018585], [2.325898585447164, 48.889339377203584], [2.325854632659544, 48.88919489567957], [2.325810673611775, 48.88905038980196], [2.325818330325154, 48.88904045577595], [2.325912908994304, 48.88901167827913], [2.32599233078743, 48.888987512577586], [2.326066219950201, 48.88897670486859], [2.326063850225127, 48.88896349300363], [2.326034582549473, 48.88887263470654], [2.325988790777239, 48.88873399654192], [2.325947703921253, 48.888606446556274], [2.325901912614419, 48.88846780832484], [2.32586082619292, 48.88834025737914], [2.325815035339735, 48.88820161998018], [2.325773949341077, 48.888074068973786], [2.3257281589650223, 48.88793543060867], [2.325687074752875, 48.8878078795493], [2.325641283466878, 48.88766924200893], [2.325600199677552, 48.88754169088874], [2.325590582264499, 48.88753444748728], [2.325521542365857, 48.887539104734635], [2.325442331512105, 48.88757977491025], [2.325441999191402, 48.887579952004415], [2.325293375996986, 48.887660843786], [2.325112562268497, 48.887759841786846], [2.324963939412552, 48.88784073315394], [2.32478312444466, 48.88793972974183], [2.324634499188166, 48.88802062157838], [2.3246162399653683, 48.88802008601081], [2.3244724985840293, 48.8879265265208], [2.324344177272157, 48.88784193113189], [2.324200436871429, 48.88774837130012], [2.324072115077003, 48.88766377559825], [2.323943795063085, 48.88757917976001], [2.323800056107037, 48.88748561942523], [2.323671736974128, 48.887401023281704], [2.323527998986993, 48.8873074635044], [2.323399680746766, 48.887222866156385], [2.323255943740315, 48.88712930603731], [2.323254586552855, 48.88712827762796], [2.3232291119526662, 48.88710572146203], [2.323100793319803, 48.88702112466972], [2.323056019696209, 48.886992035450405], [2.323034328562558, 48.88698204177591]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 30, "roussel_fabien": 20.0, "nb_emargement": 1050.0, "nb_procuration": 60.0, "nb_vote_blanc": 18.0, "jadot_yannick": 110.0, "le_pen_marine": 47.0, "nb_exprime": 1031.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1308.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1050, "quartier_bv": "68", "geo_point_2d": [48.88855993321933, 2.3244728529070215], "melenchon_jean_luc": 276.0, "poutou_philippe": 3.0, "macron_emmanuel": 393.0}, "geometry": {"type": "Point", "coordinates": [2.3244728529070215, 48.88855993321933]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5552ffef0de3bd9f7555ecc5c627a992ae85afed", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 58, "zemmour_eric": 88.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "18-43", "geo_shape": {"coordinates": [[[2.327556354793607, 48.89304537339333], [2.32749793365377, 48.893058703350036], [2.327465192460444, 48.893066174518054], [2.327455204193698, 48.89308395201245], [2.327494494840969, 48.89320001995877], [2.327527770630257, 48.89329836710474], [2.3275287274215373, 48.893310245347855], [2.327533648321551, 48.89331595041148], [2.327544163531067, 48.893347029828135], [2.327584058333919, 48.89346809595007], [2.327627849773671, 48.89359752244925], [2.327667744974665, 48.89371858761643], [2.327711536833234, 48.89384801405541], [2.327751431045312, 48.893969080058625], [2.327795223322599, 48.894098506437395], [2.327835119296559, 48.89421957149349], [2.327878911992573, 48.89434899781209], [2.32791880834157, 48.894470063711836], [2.327962601456318, 48.89459948997025], [2.328002498203473, 48.89472055491521], [2.328046291736857, 48.89484998111343], [2.328086188858962, 48.894971046902086], [2.328129982811193, 48.89510047304011], [2.328169880331464, 48.89522153787396], [2.328213674702345, 48.89535096395177], [2.328243268935832, 48.89544076806509], [2.328253248123047, 48.8954651470985], [2.328316085327402, 48.89545680041765], [2.328495963503924, 48.895473809917334], [2.328679063802784, 48.895490474781816], [2.328858942214334, 48.89550748373583], [2.329042042747801, 48.89552414804484], [2.329221920041978, 48.89554115554622], [2.329405022173921, 48.895557819307356], [2.329584899691319, 48.89557482716231], [2.329768002057854, 48.89559149036798], [2.329773008433678, 48.8955913331267], [2.329993377495176, 48.89555538200192], [2.330186713472099, 48.895525201306455], [2.330194348932574, 48.89552540948787], [2.330362420098091, 48.89556278542168], [2.330531655185245, 48.89559855244235], [2.3306997268290273, 48.89563592790029], [2.330868962374097, 48.895671695341186], [2.331037034507597, 48.89570906942394], [2.3312062705221432, 48.89574483638582], [2.331217492064372, 48.89574396735677], [2.3313429204411, 48.89569394153718], [2.33145597216987, 48.89564454256712], [2.331569023684111, 48.89559514348807], [2.331694449989108, 48.89554511818514], [2.331699581806326, 48.8955414569081], [2.331796716949674, 48.89541383844177], [2.331898099569379, 48.89528574625604], [2.3319952337490513, 48.89515812759892], [2.332096615382417, 48.89503003521523], [2.332193748598324, 48.8949024163673], [2.332295130620754, 48.894774322894015], [2.332392261509252, 48.894646703847656], [2.332493642533829, 48.894518611075696], [2.332514458897983, 48.89449126090777], [2.332508502236811, 48.89446841909765], [2.332486351767583, 48.89446472082524], [2.332430764169555, 48.89445606255393], [2.332350589868705, 48.894447239303595], [2.332336860903125, 48.894451257374605], [2.33224032006576, 48.89454745827253], [2.332119091202762, 48.89467219538408], [2.332022549564884, 48.8947683951878], [2.331901319654272, 48.894893132953], [2.331804777204337, 48.89498933256178], [2.331683546268974, 48.89511406918212], [2.331587002995533, 48.89521026949518], [2.331564096256999, 48.895210107464294], [2.331453257798399, 48.8950943467883], [2.331343633396913, 48.89497978077775], [2.331232797282688, 48.894864019881005], [2.331123172487523, 48.89474945363693], [2.331012337353796, 48.894633692511846], [2.330902713528606, 48.894519126041864], [2.330791879363807, 48.89440336558763], [2.330682257884086, 48.894288798000154], [2.330571424699855, 48.89417303731759], [2.330461802814777, 48.89405847039584], [2.33044457084063, 48.89405509781723], [2.3303010785978913, 48.89409858887966], [2.330154264032668, 48.89414416739972], [2.3300107712903833, 48.89418765901007], [2.32986395621986, 48.89423323717048], [2.329845178442195, 48.89422788723867], [2.329781639597159, 48.89409931251548], [2.329717032537693, 48.89397406735106], [2.3296534943304392, 48.89384549163084], [2.329588887894189, 48.89372024636828], [2.329525350301556, 48.89359167144956], [2.329460744488512, 48.89346642608886], [2.32945182030585, 48.893460722072305], [2.329268814353366, 48.89342382407353], [2.329077685956546, 48.89338475698268], [2.328894680536213, 48.89334785840962], [2.328703552687389, 48.89330879161821], [2.32852054779921, 48.89327189247084], [2.328329420521573, 48.89323282418033], [2.328146416165454, 48.89319592445864], [2.327955289447521, 48.89315685556831], [2.327772285611961, 48.893119956171596], [2.327581159453632, 48.89308088668144], [2.327556354793607, 48.89304537339333]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 43, "roussel_fabien": 18.0, "nb_emargement": 1290.0, "nb_procuration": 63.0, "nb_vote_blanc": 13.0, "jadot_yannick": 80.0, "le_pen_marine": 93.0, "nb_exprime": 1269.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1734.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1290, "quartier_bv": "69", "geo_point_2d": [48.894582580509706, 2.329493820825836], "melenchon_jean_luc": 513.0, "poutou_philippe": 12.0, "macron_emmanuel": 345.0}, "geometry": {"type": "Point", "coordinates": [2.329493820825836, 48.894582580509706]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4e7b9300b3e4e3649b01cd9eccef62f8c34d6026", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 37, "zemmour_eric": 65.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "18-21", "geo_shape": {"coordinates": [[[2.345263086613731, 48.8830996029625], [2.345247081128082, 48.88313598417374], [2.345144090044061, 48.88323990417672], [2.345042700713566, 48.883342205957746], [2.344939708813855, 48.88344612576543], [2.34483831866915, 48.88354842825349], [2.344735324601488, 48.88365234695919], [2.344633935017344, 48.88375464926244], [2.344532543682486, 48.883856950563604], [2.344429548383138, 48.88396086987633], [2.344424728914002, 48.88396382116757], [2.344238948077588, 48.884031508955445], [2.344050767999403, 48.88410007004787], [2.343864986179519, 48.88416775814639], [2.343676805116541, 48.884236318642536], [2.3434910223358463, 48.88430400525311], [2.34330284165177, 48.88437256516052], [2.343296489809175, 48.8843832638176], [2.343354677410599, 48.88449917375864], [2.343416866197697, 48.88461357494165], [2.343475054324402, 48.88472948479992], [2.3435372450145913, 48.88484388590391], [2.343595433666586, 48.8849597956794], [2.343657623532676, 48.88507419668946], [2.343715812698631, 48.8851901072814], [2.34377800311556, 48.8853045073057], [2.343836192806817, 48.8854204178149], [2.343898383752027, 48.88553481865194], [2.343956573979823, 48.88565072817905], [2.344018766828175, 48.88576512893708], [2.344019444643474, 48.88576696458221], [2.344023331766989, 48.88578261440389], [2.344027020269919, 48.88578566894532], [2.344051310698676, 48.885904730972214], [2.344074924473412, 48.8860207909143], [2.344099215121273, 48.88613985290603], [2.344122829120724, 48.88625591191456], [2.34413151508226, 48.88626312623751], [2.344327541407893, 48.8863120782708], [2.344526224764498, 48.88636047614966], [2.344722251827542, 48.88640942753239], [2.344920935922425, 48.88645782475204], [2.344929846906121, 48.88646635056628], [2.344927870461474, 48.88659722607588], [2.344925890209399, 48.88672786142863], [2.34492391374488, 48.88685873690699], [2.344921933472832, 48.88698937222861], [2.344919956988444, 48.88712024767574], [2.3449179766965242, 48.88725088296619], [2.344916000192265, 48.88738175838212], [2.344914019880473, 48.88751239364142], [2.34492612817693, 48.887521419877885], [2.345040211611986, 48.88752990588507], [2.345123656664745, 48.88753529420969], [2.345155630073249, 48.887540461240576], [2.345172563497718, 48.887518460091684], [2.345276285362162, 48.887432143343226], [2.345388508917619, 48.8873438342064], [2.345391510208872, 48.88733658945045], [2.345355970703281, 48.887194965209375], [2.345319974655519, 48.88705213873995], [2.345284435538521, 48.886910514441], [2.3452484398722913, 48.88676768881232], [2.345212899791741, 48.88662606354874], [2.345176905881988, 48.88648323786906], [2.34517672084614, 48.88648168551716], [2.345191871179961, 48.886442687197], [2.345153553443617, 48.88643152742378], [2.345154013894502, 48.88639653980491], [2.345155554157367, 48.886279157196306], [2.345156999473999, 48.886169107174474], [2.345158444773214, 48.886059058040864], [2.345159986379739, 48.88594167540363], [2.345172073774121, 48.8859328183795], [2.345378032090859, 48.88591729984715], [2.345585008574154, 48.88590170378776], [2.345790966644766, 48.885886184544674], [2.345997942880711, 48.88587058777103], [2.346203900705189, 48.885855067817204], [2.346410875330144, 48.885839470321905], [2.346616832919761, 48.88582394875805], [2.346823808649689, 48.8858083514552], [2.34702976599314, 48.88579282918064], [2.347236741486965, 48.885777230264296], [2.347248211159833, 48.88576561951895], [2.347198428560014, 48.885660284118906], [2.347141769393232, 48.88555568461347], [2.3470919858457, 48.88545034914156], [2.347035327121142, 48.88534574956581], [2.346985545364607, 48.885240413137716], [2.34692888707099, 48.88513581439087], [2.346931095689711, 48.88512715871032], [2.347079223506403, 48.88500548883451], [2.347224105830207, 48.8848812577698], [2.347226802880626, 48.884874536502934], [2.347201902212678, 48.8847564025238], [2.347176953183674, 48.88463702269203], [2.347152052753555, 48.88451888777768], [2.34712710258913, 48.88439950790234], [2.347102202374394, 48.884281373851394], [2.347077253801527, 48.8841619939473], [2.347052353824715, 48.884043858961185], [2.347027404116435, 48.88392447901348], [2.347002504354998, 48.883806344890786], [2.346977556249532, 48.88368696401507], [2.346952656714841, 48.88356882985647], [2.346927708826154, 48.883449449843866], [2.346941628254585, 48.883418069010865], [2.346935756382048, 48.883412637405684], [2.346734444306284, 48.88337428081331], [2.346534012780533, 48.88333695392166], [2.346332701293344, 48.88329859665114], [2.346132271699012, 48.88326126999113], [2.3459309608003, 48.88322291204251], [2.345730531785214, 48.88318558470741], [2.345529221474885, 48.88314722608066], [2.345328793039155, 48.88310989807044], [2.345275395913546, 48.88309972333759], [2.345263086613731, 48.8830996029625]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 21, "roussel_fabien": 18.0, "nb_emargement": 1416.0, "nb_procuration": 152.0, "nb_vote_blanc": 15.0, "jadot_yannick": 164.0, "le_pen_marine": 51.0, "nb_exprime": 1392.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 7, "nb_inscrit": 1740.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1415, "quartier_bv": "70", "geo_point_2d": [48.88484642823342, 2.3454121195655917], "melenchon_jean_luc": 539.0, "poutou_philippe": 7.0, "macron_emmanuel": 439.0}, "geometry": {"type": "Point", "coordinates": [2.3454121195655917, 48.88484642823342]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "675afdb76b1f0837edff8cd874bc041b362b3ff4", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 83, "zemmour_eric": 72.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-2", "geo_shape": {"coordinates": [[[2.319627116842173, 48.885701685984365], [2.31961205497688, 48.885705116777224], [2.319607824857234, 48.88570772058302], [2.319607402649289, 48.88570799247961], [2.319483290695167, 48.88579129809591], [2.319331660899288, 48.885893015621946], [2.319207546699337, 48.88597632093067], [2.319055915814324, 48.88607803898962], [2.318931802095991, 48.88616134400624], [2.318780168781722, 48.88626306079186], [2.3186560541811723, 48.88634636550862], [2.318504421141378, 48.88644808283494], [2.318380304295065, 48.88653138724408], [2.318375625677554, 48.88654042765498], [2.318388609460539, 48.88654992295026], [2.318514801352089, 48.88662744404072], [2.318681031235424, 48.88672955926749], [2.318807223997625, 48.886807080037094], [2.3189734550278462, 48.88690919484121], [2.319099650024358, 48.88698671529771], [2.3192658822014742, 48.88708882967915], [2.319392076704998, 48.88716634980702], [2.319402333487599, 48.88716874007018], [2.319593961045108, 48.88715980613906], [2.319787676330645, 48.88715077404368], [2.319800061941993, 48.887154832931294], [2.319912855725959, 48.887268915047486], [2.320024456132052, 48.887381789661156], [2.320137250911082, 48.8874958706431], [2.320248852289995, 48.8876087450243], [2.320254103078359, 48.8876118514377], [2.320339599147859, 48.8876404785725], [2.320434447958037, 48.8876722362305], [2.320446672075199, 48.887672276829534], [2.320622132218568, 48.887614983406166], [2.320796029300396, 48.88755819887195], [2.320971488674984, 48.88750090493069], [2.321145384994769, 48.88744411988318], [2.321320843600573, 48.8873868254241], [2.321494737794752, 48.88733003985556], [2.321670195631774, 48.8872727448786], [2.321844090427671, 48.88721595880457], [2.32201798346903, 48.887159173366584], [2.3221934401663002, 48.8871018767147], [2.322367333809274, 48.88704509077118], [2.322542789737748, 48.886987793601435], [2.322716682618779, 48.88693100714467], [2.322892137778457, 48.88687370945704], [2.3229115664201982, 48.88686388083773], [2.322911905986113, 48.88686115419274], [2.322839506386089, 48.88679891496439], [2.322715536155522, 48.88669234112395], [2.322601886196185, 48.886594639858906], [2.322477915574612, 48.886488065744935], [2.3223642678705723, 48.88639036424391], [2.322240298233332, 48.8862837889648], [2.322126651409231, 48.88618608811936], [2.322002682744615, 48.88607951257445], [2.321889035448518, 48.885981811477585], [2.321765069120143, 48.88587523567456], [2.3216514227273892, 48.885777533434734], [2.321638371144195, 48.88577185126538], [2.321624278295635, 48.88577575365378], [2.321473529569799, 48.88586816090064], [2.321322194702318, 48.885960926161296], [2.321171444904366, 48.886053333012235], [2.321020108960604, 48.88614609787547], [2.320869358102258, 48.88623850343123], [2.32071802108211, 48.886331267897], [2.3206996814337, 48.886331404869665], [2.320566075529016, 48.88625313173486], [2.320435161858974, 48.88617643585981], [2.320301556737763, 48.886098163318024], [2.320170643846904, 48.88602146714299], [2.3200370395208942, 48.885943194295024], [2.319906127409215, 48.88586649781993], [2.319775214319641, 48.885789801188636], [2.319641611194029, 48.88571152698366], [2.319627116842173, 48.885701685984365]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 2, "roussel_fabien": 16.0, "nb_emargement": 1189.0, "nb_procuration": 103.0, "nb_vote_blanc": 14.0, "jadot_yannick": 114.0, "le_pen_marine": 41.0, "nb_exprime": 1171.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 4, "nb_inscrit": 1439.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "67", "geo_point_2d": [48.88666854776881, 2.320623038749283], "melenchon_jean_luc": 195.0, "poutou_philippe": 8.0, "macron_emmanuel": 580.0}, "geometry": {"type": "Point", "coordinates": [2.320623038749283, 48.88666854776881]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "056e3afb347626c8c44f9d130884da2bc5936a2c", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 156, "zemmour_eric": 127.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-19", "geo_shape": {"coordinates": [[[2.293736811811899, 48.850345314662405], [2.29374823857545, 48.85036080796905], [2.293870724115684, 48.85044765920693], [2.293991465284157, 48.850533233715794], [2.294113950272456, 48.85062008468321], [2.294234692239857, 48.85070565893329], [2.294357178038713, 48.850792509638275], [2.294477920792871, 48.850878084529015], [2.294600407414566, 48.850964934072216], [2.294721150967669, 48.85105050870421], [2.294726214489963, 48.85105276986693], [2.294907232653566, 48.851098933424744], [2.295109854420044, 48.85115031886227], [2.295112981362483, 48.851154902441316], [2.295138718196821, 48.8511600104419], [2.295143779180587, 48.85116225987994], [2.295272305574824, 48.85125287932962], [2.295397369500252, 48.851340981614996], [2.295525896776188, 48.85143160077772], [2.295650961571551, 48.85151970188461], [2.295776025414824, 48.851607803745075], [2.295904554007353, 48.85169842247932], [2.296029620071135, 48.8517865240686], [2.29615814954548, 48.85187714251584], [2.296283216479, 48.8519652429266], [2.296411746835266, 48.852055861086896], [2.296414434921527, 48.852058642426684], [2.296420467822785, 48.85208460465987], [2.296436760348183, 48.85208733019294], [2.296506863965215, 48.85220199711233], [2.296572412103952, 48.85230827404628], [2.296595335203594, 48.85231077232709], [2.296742790980386, 48.85219844024266], [2.2968572352865, 48.85211129841869], [2.296971679221981, 48.85202415557913], [2.297119134727041, 48.85191182390926], [2.297233576423727, 48.85182468079559], [2.297381030799663, 48.85171234878281], [2.297473140315158, 48.851642210701094], [2.297490419498612, 48.851637551840156], [2.297494082811701, 48.85162602196243], [2.29751641410307, 48.85160901666017], [2.297542024528604, 48.85159088212194], [2.297538195137615, 48.85157672169176], [2.297429454344691, 48.85154050811718], [2.29728519828448, 48.85149353276333], [2.297285066684903, 48.851493488821106], [2.297114936564193, 48.851438338096855], [2.296970681070449, 48.85139136235948], [2.2968005516158962, 48.85133621118317], [2.296656296700315, 48.851289234163154], [2.296652231518483, 48.85128721098703], [2.29651269858653, 48.85118595363696], [2.29636880016679, 48.85108123757787], [2.296229268337207, 48.850979979878545], [2.296085371067844, 48.85087526255989], [2.2959458403283692, 48.85077400541055], [2.295801944197434, 48.850669287731705], [2.295804063621051, 48.85065595458093], [2.295937072853045, 48.85059260208119], [2.296127025471227, 48.85050211613845], [2.2962600339057833, 48.85043876417019], [2.296449984039822, 48.85034827769425], [2.296582991701134, 48.85028492445891], [2.29659421860046, 48.85028348403214], [2.296783648079998, 48.85031420003679], [2.296973257504953, 48.85034512994544], [2.297162688794687, 48.850375845356304], [2.297352298668915, 48.85040677466258], [2.297541729043556, 48.85043748946364], [2.297731339379168, 48.850468417268225], [2.2979207701890783, 48.85049913236678], [2.298110380973939, 48.85053005956901], [2.298299813594136, 48.85056077407377], [2.298489424828243, 48.850591700673554], [2.298503251724134, 48.85058865556251], [2.298623865451375, 48.85049109935252], [2.298739123551527, 48.8503981613236], [2.298854381240462, 48.85030522317589], [2.298974993654344, 48.85020766658706], [2.299090250501389, 48.85011472819623], [2.299210860670121, 48.850017171344945], [2.299210251176795, 48.85000534026995], [2.299082103208339, 48.84991498260657], [2.29895421676633, 48.84982446444327], [2.29882606968671, 48.849734106490985], [2.298698184133317, 48.84964358803929], [2.298570037942325, 48.84955322979811], [2.298442151914972, 48.84946271105011], [2.298314006612705, 48.84937235252], [2.298186122836623, 48.849281833491595], [2.298185494241042, 48.84928135494102], [2.298179766356614, 48.84926933284176], [2.298165643168033, 48.84926607074951], [2.298047726315751, 48.849169837919334], [2.297938121213912, 48.84908008237879], [2.297828516489628, 48.848990326730586], [2.297710599521177, 48.848894093536295], [2.29769917671274, 48.84887824356897], [2.29767256945676, 48.8488843973108], [2.297604668782843, 48.84890640452418], [2.297435667700079, 48.84896117092762], [2.2972674175976042, 48.84901570047349], [2.297098417156394, 48.84907046730253], [2.296930166348256, 48.84912499636879], [2.296761165198173, 48.849179762716034], [2.296592913696308, 48.84923429040344], [2.296423911837456, 48.849289056268915], [2.296255659617694, 48.84934358437599], [2.29608665704987, 48.84939834975975], [2.29591840412445, 48.84945287738721], [2.295749400859911, 48.8495076413899], [2.295581147228634, 48.84956216853774], [2.295412141880507, 48.84961693294993], [2.295243887543472, 48.84967145961813], [2.295074882861213, 48.84972622265733], [2.294945235139952, 48.84976823779367], [2.294940205412542, 48.84977486883096], [2.294951055375455, 48.849788592282756], [2.2949932345653, 48.84983963501118], [2.295043584488248, 48.84990118994341], [2.295037675121777, 48.84991351056231], [2.294876415103951, 48.8499665831783], [2.294697658474113, 48.85002567529349], [2.294536397762804, 48.8500787474459], [2.294357640362648, 48.850137839047086], [2.294196378945878, 48.85019091163518], [2.294017620787485, 48.85025000182316], [2.29385635867733, 48.850303073947615], [2.293738728411743, 48.85034195696613], [2.293736811811899, 48.850345314662405]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 19, "roussel_fabien": 13.0, "nb_emargement": 1171.0, "nb_procuration": 83.0, "nb_vote_blanc": 16.0, "jadot_yannick": 78.0, "le_pen_marine": 78.0, "nb_exprime": 1151.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1417.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1171, "quartier_bv": "59", "geo_point_2d": [48.850333058813625, 2.2965241748497673], "melenchon_jean_luc": 155.0, "poutou_philippe": 4.0, "macron_emmanuel": 494.0}, "geometry": {"type": "Point", "coordinates": [2.2965241748497673, 48.850333058813625]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "16c42d8d100dbb3d2d0d610bf808c05bb40998ad", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 149, "zemmour_eric": 229.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-42", "geo_shape": {"coordinates": [[[2.300042578670279, 48.88371384153399], [2.300057563682489, 48.88370938660298], [2.300127429831778, 48.88358917992446], [2.300198020682605, 48.88346910693399], [2.300267886173338, 48.88334890104651], [2.3003384750109612, 48.88322882793906], [2.300408341230768, 48.88310862105206], [2.3004789294068733, 48.882988548734815], [2.300548793616475, 48.88286834173166], [2.300619382518675, 48.882748268414076], [2.30068924608173, 48.8826280613027], [2.300759834322328, 48.88250798877536], [2.300829697238946, 48.882387781555785], [2.300900283478474, 48.88226770801218], [2.300908615403261, 48.88226575834154], [2.300913834700236, 48.88224457349898], [2.300967342782576, 48.88215355033558], [2.30103348770785, 48.88204521856392], [2.300993042449004, 48.88198868852557], [2.300996003153951, 48.88198622634388], [2.301005597487539, 48.88196407776693], [2.300965531575982, 48.88190804276526], [2.300917048884703, 48.88184027892821], [2.3009284003503723, 48.88182314901488], [2.300831009393713, 48.88179064758674], [2.300742083614072, 48.88166635355625], [2.300655144535699, 48.88154483650623], [2.30056621959562, 48.881420542317336], [2.300479281337847, 48.8812990251125], [2.300390357225137, 48.881174731664515], [2.300303418436742, 48.88105321339759], [2.300214495163369, 48.88092891979121], [2.300127558559155, 48.880807401377425], [2.300038636125308, 48.88068310761269], [2.299951700341665, 48.88056158904406], [2.299864764963823, 48.88044007039888], [2.299775843784351, 48.880315776397524], [2.299776028048348, 48.88030785251781], [2.299862028375156, 48.8801966425499], [2.29994780906624, 48.88008571721603], [2.300033810022886, 48.87997450711027], [2.3001195899942, 48.879863580731644], [2.300205588853855, 48.87975237047208], [2.300291368081341, 48.87964144484732], [2.300377366207384, 48.87953023444192], [2.300463144715215, 48.87941930777242], [2.300549142107654, 48.87930809722124], [2.30063491987168, 48.87919717130554], [2.300720917893866, 48.87908596061647], [2.300806694926274, 48.87897503455536], [2.300892690851427, 48.878863823712514], [2.300978467164198, 48.87875289660669], [2.30101524815268, 48.878686652076674], [2.301000684795902, 48.87868195164026], [2.300995978021257, 48.87868072623937], [2.30095939703278, 48.878697428292035], [2.300914747683084, 48.87873752356745], [2.3007640311475193, 48.87883593657306], [2.300614060983137, 48.87893386180596], [2.300463344674553, 48.87903227442346], [2.300313372003916, 48.879130200153526], [2.300162654571052, 48.87922861147567], [2.300012682133114, 48.87932653681956], [2.299861962200537, 48.879424947737654], [2.299711988631846, 48.87952287268741], [2.299561268914151, 48.87962128411668], [2.299411292851237, 48.879719208664305], [2.299407559699012, 48.87972750299157], [2.299445432503277, 48.87984282991981], [2.299495186665982, 48.87996713607971], [2.299533059838551, 48.880082462955194], [2.29958281443934, 48.880206769051625], [2.299620687980218, 48.88032209587427], [2.299670444382576, 48.88044640191523], [2.299649490873129, 48.88046746501848], [2.299650467617809, 48.8804776737091], [2.299647466915855, 48.88048595073889], [2.299521121718716, 48.88057952680707], [2.299391832744476, 48.880676705339724], [2.299265485261855, 48.88077028111393], [2.299136195337049, 48.88086745935369], [2.299009846932317, 48.88096103484193], [2.298880556056937, 48.88105821278878], [2.298754206730086, 48.88115178799098], [2.298624914904122, 48.88124896564493], [2.298498564655147, 48.88134254056115], [2.298369271878593, 48.881439717922206], [2.29824292207089, 48.88153329256041], [2.298113626980333, 48.88163046962051], [2.297987276250493, 48.88172404397268], [2.297857980209328, 48.88182122073987], [2.297731628557345, 48.881914794806065], [2.2976023315655603, 48.88201197128034], [2.297475978991426, 48.88210554506051], [2.29734668241254, 48.882202721249826], [2.297220327552723, 48.88229629473598], [2.297148753731379, 48.88235008652356], [2.2971464713416783, 48.88235440882127], [2.297183413915058, 48.88237586170314], [2.297342080626516, 48.88245100079527], [2.297499719222073, 48.882524350254585], [2.29765735962502, 48.88259769950944], [2.297816026344876, 48.882672837051075], [2.297973667642909, 48.88274618587954], [2.298132335259417, 48.88282132389113], [2.29828997745244, 48.88289467229324], [2.298448645989849, 48.882969808976235], [2.298606289077759, 48.88304315695199], [2.298764958511839, 48.88311829410487], [2.298922601131295, 48.883191641646256], [2.299081272849818, 48.88326677747857], [2.299238916364266, 48.88334012459355], [2.29939758897948, 48.88341526089577], [2.299555233401018, 48.88348860668511], [2.299713906924926, 48.88356374255796], [2.299871552229367, 48.88363708882019], [2.300030225298614, 48.88371222425572], [2.300042578670279, 48.88371384153399]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 42, "roussel_fabien": 3.0, "nb_emargement": 1282.0, "nb_procuration": 83.0, "nb_vote_blanc": 9.0, "jadot_yannick": 61.0, "le_pen_marine": 56.0, "nb_exprime": 1271.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1563.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1282, "quartier_bv": "66", "geo_point_2d": [48.881861363925374, 2.299434544875729], "melenchon_jean_luc": 98.0, "poutou_philippe": 0.0, "macron_emmanuel": 642.0}, "geometry": {"type": "Point", "coordinates": [2.299434544875729, 48.881861363925374]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3de1405853a891dafd2ed05f751a2a13dc350cd9", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 37, "zemmour_eric": 66.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "12-60", "geo_shape": {"coordinates": [[[2.3832776231006942, 48.8448640911662], [2.383277064044487, 48.8448637780058], [2.383254382317696, 48.84485107456463], [2.383170562093347, 48.84490472709977], [2.382985638262095, 48.8449592638703], [2.382804313772514, 48.84501164157833], [2.382619389189405, 48.845066176878206], [2.382438063959769, 48.84511855402614], [2.382253138603298, 48.845173089653976], [2.382071812644273, 48.845225465342466], [2.381890486310127, 48.84527784165298], [2.381705559826132, 48.8453323755273], [2.381524232751941, 48.8453847512777], [2.381339305494678, 48.845439285479955], [2.381326614971066, 48.84543873689872], [2.381182104168693, 48.845380146417035], [2.381043587617205, 48.84532238359952], [2.381028875865716, 48.84532244868347], [2.380914705609778, 48.84537149168069], [2.380797705444998, 48.845419919150196], [2.380683534757894, 48.845468961922535], [2.380566534148798, 48.84551739006104], [2.380551656185683, 48.845517218594274], [2.380363292499885, 48.84543305525766], [2.380170752081977, 48.845346215071444], [2.379982389618664, 48.845262052021475], [2.379789851829873, 48.845175211215974], [2.379774226560726, 48.8451753262704], [2.379604505308373, 48.84525560071433], [2.3794385382355863, 48.84533593485898], [2.379268814569954, 48.84541620970736], [2.379102846468255, 48.84549654337476], [2.378933121773231, 48.845576816836044], [2.378767154005196, 48.84565715003323], [2.378597428259245, 48.845737423906016], [2.378431458099813, 48.845817756618885], [2.378261731324473, 48.84589802910454], [2.378095760136119, 48.845978361340144], [2.378068504198473, 48.84598877001441], [2.378063692841258, 48.84599971806174], [2.377897721023696, 48.84608005001525], [2.377736998833358, 48.846160852423324], [2.377571025988321, 48.846241184811326], [2.377410302794526, 48.84632198676882], [2.377244328943487, 48.84640231779265], [2.377083604735483, 48.84648312019892], [2.3769176298677, 48.846563450757905], [2.376756904656225, 48.84664425271357], [2.376755382896638, 48.84665766948745], [2.376874707527361, 48.84673882035665], [2.377029379202619, 48.84684502237529], [2.377148704699718, 48.84692617205827], [2.37730337747864, 48.84703237460413], [2.377422703831367, 48.847113524000186], [2.377577377735352, 48.8472197252747], [2.377696704932974, 48.84730087528309], [2.377722712770191, 48.84730923607263], [2.377749852659921, 48.84730861008026], [2.377750170008332, 48.847308394985916], [2.377899299412111, 48.847203724582876], [2.378050093020943, 48.847098287393386], [2.3781992212211, 48.846993616596734], [2.37835001361519, 48.84688817900937], [2.378499140611735, 48.84678350781916], [2.378649931780372, 48.846678070733205], [2.378799057573318, 48.84657339914942], [2.3789498475379602, 48.84646796076623], [2.378961921639298, 48.846465254323455], [2.379147862878639, 48.84648500066809], [2.379320968173114, 48.84650472959527], [2.37949407223615, 48.84652445826457], [2.379680013888451, 48.84654420378109], [2.379690356028053, 48.84654951054738], [2.379771936351617, 48.846673941306335], [2.379850530609452, 48.84679809929946], [2.379932113067207, 48.84692252992857], [2.380010708092346, 48.84704668688946], [2.380092291321596, 48.84717111738155], [2.380170887103244, 48.84729527420952], [2.380252469741576, 48.84741970455755], [2.380331067642268, 48.847543861259666], [2.380412651052211, 48.847668291470654], [2.380491249709438, 48.84779244803984], [2.38051974580266, 48.84782654716779], [2.380561262252201, 48.847814467933475], [2.380647645056226, 48.84770679999967], [2.380729469935765, 48.84760572946042], [2.380815852046273, 48.84749806138502], [2.380897676261265, 48.84739699161108], [2.380984057678266, 48.847289323394016], [2.381065879887366, 48.847188252579784], [2.381152260610868, 48.84708058422114], [2.381234083528541, 48.84697951327993], [2.381237546166643, 48.84697675217753], [2.381353303935204, 48.846915123448476], [2.381466227218521, 48.84686071527317], [2.3815819844483412, 48.84679908721578], [2.381694907241384, 48.84674467881892], [2.381698695902847, 48.84674188521217], [2.381798036547261, 48.84662741494632], [2.381894226496634, 48.84651545370396], [2.38199356627995, 48.846400983252494], [2.382089756743165, 48.84628902273648], [2.382189095665495, 48.846174552099434], [2.382285283928133, 48.84606259139647], [2.382381471788247, 48.84595062970556], [2.382480809424715, 48.84583615879157], [2.382576996436106, 48.84572419782003], [2.382676333211513, 48.84560972672043], [2.3827725193957052, 48.84549776466966], [2.38287185531006, 48.845383293384465], [2.382968042008125, 48.84527133206009], [2.383067377061437, 48.845156860589256], [2.383163561559098, 48.84504489907792], [2.38326289575138, 48.84493042742153], [2.3832776231006942, 48.8448640911662]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 60, "roussel_fabien": 25.0, "nb_emargement": 1107.0, "nb_procuration": 77.0, "nb_vote_blanc": 7.0, "jadot_yannick": 100.0, "le_pen_marine": 61.0, "nb_exprime": 1093.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1426.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1107, "quartier_bv": "48", "geo_point_2d": [48.8462154391667, 2.3801149392677563], "melenchon_jean_luc": 421.0, "poutou_philippe": 10.0, "macron_emmanuel": 329.0}, "geometry": {"type": "Point", "coordinates": [2.3801149392677563, 48.8462154391667]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6c0972ca390e15c13479963ca6515194de078e5c", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 48, "zemmour_eric": 75.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "4-11", "geo_shape": {"coordinates": [[[2.348200138179429, 48.85853067900081], [2.3482081029715163, 48.85853365876092], [2.348237131802848, 48.85858595488459], [2.348311224740725, 48.85871488180011], [2.348381398069803, 48.85884130330567], [2.348455493090613, 48.85897023010963], [2.34852566711366, 48.85909665150149], [2.348595840114322, 48.85922307283039], [2.348669936208696, 48.859351999457196], [2.348740111277611, 48.85947841978056], [2.34881420809213, 48.85960734628835], [2.3488224355068192, 48.85961790175027], [2.3488938060327103, 48.85960051535636], [2.349043309691884, 48.85955203717349], [2.349189133040444, 48.859504752010125], [2.349334957476023, 48.85945746757371], [2.349484458951419, 48.85940898882608], [2.349491191826751, 48.85940410598579], [2.349519186986215, 48.85935538393093], [2.34954718771336, 48.85930664840771], [2.349553953414296, 48.859301754949804], [2.349722510751819, 48.8592474563623], [2.349890078316564, 48.85919347592528], [2.35005863495349, 48.859139176859095], [2.350226201821748, 48.8590851959462], [2.350231026530646, 48.859082596942635], [2.350255076350113, 48.85906196064953], [2.350280320661753, 48.85904029838362], [2.350288534929117, 48.85903695063579], [2.350420981010243, 48.85902002621591], [2.350551235904152, 48.85900338204642], [2.35055650327261, 48.85900189972593], [2.350739142723757, 48.85891683923379], [2.350921530700679, 48.8588318949104], [2.351104168959958, 48.85874683384814], [2.351286554383732, 48.85866188894804], [2.351290669063487, 48.85866058920977], [2.351444162053951, 48.85863165002226], [2.351596974508595, 48.85860283915499], [2.351599919110869, 48.8586020277084], [2.351778676437393, 48.8585355871998], [2.3519574442557483, 48.85846914288206], [2.352136200670349, 48.85840270183142], [2.352314967588007, 48.858336256072356], [2.352493724453688, 48.85826981448707], [2.352672489085484, 48.85820336907792], [2.352851245039338, 48.85813692695062], [2.3530300087704292, 48.8580704801001], [2.353049100940015, 48.8580643580203], [2.353049025683541, 48.85805417337509], [2.35304845728152, 48.85805340855274], [2.352945359010401, 48.85792965726555], [2.35284208124037, 48.85780569265574], [2.352738983949577, 48.85768194116314], [2.352635708524556, 48.85755797635489], [2.352532610840013, 48.85743422554881], [2.352429336396993, 48.85731026053481], [2.352435545873806, 48.857297768882376], [2.352591799686777, 48.8572499576896], [2.352797001420117, 48.85718716794499], [2.3529532545809, 48.85713935537621], [2.353158455431802, 48.85707656590484], [2.353314707929218, 48.8570287528593], [2.353519907908956, 48.85696596276185], [2.353676161105877, 48.85691814924698], [2.353702764167097, 48.85689552676734], [2.353708418820787, 48.85687664216206], [2.353641444875853, 48.856756929366576], [2.353576074315786, 48.856637744106166], [2.353509099619235, 48.85651803120349], [2.353443729672775, 48.85639884494589], [2.3533767569501203, 48.85627913195071], [2.353311387595044, 48.85615994649446], [2.353244414120664, 48.85604023339213], [2.353179045379186, 48.85592104693865], [2.353112073878776, 48.855801333743834], [2.353046705728556, 48.855682148091745], [2.352979733476419, 48.855562434789725], [2.352914365939786, 48.855443248140396], [2.352847395661591, 48.855323534745956], [2.352782028716095, 48.85520434889799], [2.352715057686269, 48.855084635396395], [2.35264969135435, 48.8549654485512], [2.352582720935619, 48.854845734949826], [2.352517355194923, 48.854726548906], [2.352487307873652, 48.85468902989994], [2.352445765513761, 48.85469213089681], [2.352369298681432, 48.85472455961481], [2.352192631142418, 48.85480062475358], [2.352020431623431, 48.85487365062984], [2.351843763069645, 48.85494971524334], [2.35167156119511, 48.855022741499695], [2.351494891626443, 48.85509880558791], [2.351322690144272, 48.85517183044046], [2.351146019560831, 48.855247894003405], [2.350973817085815, 48.85532091924342], [2.350797145487594, 48.85539698228101], [2.350624940679298, 48.8554700061025], [2.350448268066398, 48.85554606861482], [2.3502760636279723, 48.85561909283112], [2.3500993900002882, 48.85569515481809], [2.349927184580205, 48.85576817852251], [2.349925423884975, 48.85576881918878], [2.34973482121733, 48.85582656789977], [2.349564082952179, 48.85587795434671], [2.349393342976291, 48.8559293414395], [2.349202739131646, 48.85598708929462], [2.349031999815862, 48.85603847497495], [2.34884139516039, 48.85609622314811], [2.34867065376769, 48.8561476083004], [2.348480049686618, 48.85620535500046], [2.348309307568809, 48.85625674053139], [2.348118702687951, 48.85631448665022], [2.347947959867428, 48.8563658707612], [2.347757352824138, 48.85642361629136], [2.347586610641152, 48.85647500078841], [2.347396002798181, 48.85653274573728], [2.347238879599986, 48.856578478738115], [2.347048270993002, 48.85663622312774], [2.346891148529151, 48.856681956574384], [2.34680498857657, 48.85670701797934], [2.34680123388875, 48.85672863678201], [2.346842451024499, 48.85679219140408], [2.346924874298133, 48.8569265088345], [2.347007180896932, 48.85705342209308], [2.347016745825538, 48.857062900388755], [2.347021083323208, 48.857066549342754], [2.347161866777979, 48.857136423638714], [2.347286940740113, 48.857205034824254], [2.347427726299741, 48.85727490790685], [2.347552799581508, 48.85734351879851], [2.347556885541114, 48.857347341733835], [2.347627053835207, 48.85747376383008], [2.347686482318393, 48.85758669012444], [2.3477566526121603, 48.85771311212488], [2.347816080275078, 48.857826039222395], [2.347875509569753, 48.85793896538704], [2.3479456807966033, 48.85806538723651], [2.348005109282269, 48.85817831330507], [2.348075281145928, 48.85830473505125], [2.348134711548397, 48.85841766103845], [2.348175855273241, 48.858491786547944], [2.348200138179429, 48.85853067900081]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 11, "roussel_fabien": 11.0, "nb_emargement": 824.0, "nb_procuration": 65.0, "nb_vote_blanc": 12.0, "jadot_yannick": 69.0, "le_pen_marine": 42.0, "nb_exprime": 807.0, "nb_vote_nul": 5.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1041.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 824, "quartier_bv": "13", "geo_point_2d": [48.85715337364875, 2.3504532840243564], "melenchon_jean_luc": 198.0, "poutou_philippe": 8.0, "macron_emmanuel": 326.0}, "geometry": {"type": "Point", "coordinates": [2.3504532840243564, 48.85715337364875]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "31db7e785ea0df5e4f345f3dacf7458f6f18d94b", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 71, "zemmour_eric": 80.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "3-10", "geo_shape": {"coordinates": [[[2.358131932621784, 48.863399752593686], [2.358113664136512, 48.86336966954775], [2.358013520454923, 48.86325089098312], [2.357886594011077, 48.863100343143934], [2.357786451364893, 48.86298156436045], [2.357697814480037, 48.862876430945114], [2.35759767405768, 48.86275765198696], [2.357509037934725, 48.862652518410556], [2.357420400795392, 48.862547385650494], [2.3573202616378772, 48.862428606424984], [2.35730264017851, 48.86242481098478], [2.357122690322205, 48.862479578729825], [2.356939906186436, 48.86253280388479], [2.356759954212782, 48.86258757107178], [2.35657717069057, 48.86264079567484], [2.356397217962486, 48.86269556231108], [2.356214432327792, 48.862748786347666], [2.356034480208508, 48.86280355244045], [2.355851693824357, 48.8628567759178], [2.355671739587724, 48.86291154145248], [2.355488953817148, 48.86296476437798], [2.355466296593542, 48.86295725782974], [2.355454667685441, 48.86295706389599], [2.355329503284978, 48.86291559540971], [2.355183234722711, 48.862867043153074], [2.355035413653587, 48.86281806774876], [2.354889146991099, 48.86276951603502], [2.354741326475154, 48.862720540263204], [2.354595059008663, 48.862671987279114], [2.354587756993487, 48.86266241033514], [2.354624894465255, 48.86252177930979], [2.354661948773134, 48.86238146347819], [2.354699085844368, 48.862240832394114], [2.354736139741374, 48.86210051740327], [2.354773276412181, 48.861959886260564], [2.354810328557697, 48.861819570304554], [2.354804712694084, 48.861810657180776], [2.354650241364986, 48.861739382952734], [2.354494623846413, 48.86166758071486], [2.354340153354601, 48.86159630697669], [2.3541845353389013, 48.8615245034197], [2.354030065695512, 48.86145322927206], [2.353874449897528, 48.86138142530995], [2.353719981102559, 48.86131015075285], [2.353564366159294, 48.861238346378286], [2.3535409050217853, 48.86120848992282], [2.353522445583153, 48.861211755563296], [2.353463633361138, 48.86123245558953], [2.353386687937771, 48.861260441252554], [2.353340058847075, 48.861270906820266], [2.353334003367725, 48.861274375257935], [2.353358079956737, 48.861310865965415], [2.353360949703271, 48.861316425048145], [2.353428618398423, 48.86144746401438], [2.353494036585969, 48.861574144223205], [2.353561705950596, 48.86170518308371], [2.353627124774297, 48.861831864089595], [2.353627812029943, 48.86183546788672], [2.353613144551209, 48.86195880242138], [2.353598428098707, 48.86208256296667], [2.353583760480745, 48.86220589747024], [2.353569043888642, 48.8623296579843], [2.353554376131654, 48.86245299245676], [2.353539659399949, 48.862576752939624], [2.353524991503831, 48.862700087381], [2.353510274632522, 48.86282384783264], [2.353513231676974, 48.86283017901403], [2.353636662699584, 48.862931683981365], [2.353764360807943, 48.86303669681606], [2.353887792809027, 48.863138201505464], [2.3540154905557, 48.86324321494458], [2.354009510487843, 48.863257296096414], [2.353812299523808, 48.86330452180141], [2.3536177582848232, 48.86335110777636], [2.353420546610556, 48.863398332831814], [2.353226004671062, 48.863444918166024], [2.353028792286569, 48.86349214257194], [2.352834248283423, 48.86353872725806], [2.352825325921578, 48.86354800792038], [2.352837980355126, 48.863638482150655], [2.3528493439789813, 48.863719737397794], [2.352851638806192, 48.86372396054166], [2.3528872144905852, 48.863758553764775], [2.352921381428836, 48.863791775951775], [2.352922375995172, 48.86379291450424], [2.352995154253564, 48.863892357363206], [2.3530671110982, 48.863990680539466], [2.353067776498854, 48.863991762451064], [2.353129845355258, 48.8641153459927], [2.353192072833463, 48.86423924241668], [2.353254142279475, 48.86436282586622], [2.353316370348891, 48.86448672219793], [2.353378440384721, 48.8646103055554], [2.353440669045358, 48.86473420179474], [2.35345763431215, 48.864760156793125], [2.353478501383587, 48.86475619818702], [2.353552566428629, 48.86473500050832], [2.353714754784741, 48.864688400949085], [2.353892214294817, 48.86463761082743], [2.354054402055068, 48.86459100990455], [2.354231859539189, 48.864540219267475], [2.354394046692418, 48.86449361788018], [2.354394205385349, 48.86449357197032], [2.354604048008828, 48.864431414185525], [2.354766234479253, 48.8643848131886], [2.354945093560019, 48.864333444474454], [2.355107279431505, 48.86428684211198], [2.355107403913496, 48.86428680680894], [2.355270940342378, 48.86424108656409], [2.35544979706908, 48.864189717081736], [2.3556133328927, 48.86414399636497], [2.355841435057414, 48.86407991389138], [2.356004970192645, 48.864034192634975], [2.356138294001789, 48.86399719415208], [2.356301828616828, 48.863951472486605], [2.356435152003554, 48.86391447367021], [2.356598686098397, 48.86386875159574], [2.356742508591159, 48.86383168926684], [2.356743352589445, 48.86383145008071], [2.356913965755954, 48.86377803305605], [2.357091995045264, 48.863722758008876], [2.357262607498339, 48.86366934048196], [2.357440636046308, 48.863614064910735], [2.357611247785949, 48.863560646881574], [2.357802212112528, 48.86350311090107], [2.357972821755022, 48.863449692343806], [2.358118576271132, 48.86340577672014], [2.358131932621784, 48.863399752593686]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 10, "roussel_fabien": 16.0, "nb_emargement": 1329.0, "nb_procuration": 90.0, "nb_vote_blanc": 11.0, "jadot_yannick": 135.0, "le_pen_marine": 48.0, "nb_exprime": 1315.0, "nb_vote_nul": 3.0, "arr_bv": "03", "arthaud_nathalie": 0, "nb_inscrit": 1723.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1329, "quartier_bv": "12", "geo_point_2d": [48.8632489863126, 2.3550633766667857], "melenchon_jean_luc": 389.0, "poutou_philippe": 9.0, "macron_emmanuel": 508.0}, "geometry": {"type": "Point", "coordinates": [2.3550633766667857, 48.8632489863126]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "22f4267229eb69b8bf7cffaddeea5afdeaae71fb", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 116, "zemmour_eric": 124.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "9-17", "geo_shape": {"coordinates": [[[2.328669006883791, 48.88075248824939], [2.328674716939923, 48.880740261449965], [2.328726829195336, 48.8806306011052], [2.328785613833674, 48.88051210530875], [2.328837725627179, 48.88040244489297], [2.328896509755666, 48.88028394901752], [2.328948619735483, 48.88017428762384], [2.3290074047176033, 48.88005579167704], [2.329059514224042, 48.87994613111163], [2.3291182986963213, 48.87982763508584], [2.329181328517325, 48.87970409235992], [2.32924011243915, 48.87958559624827], [2.329303141666688, 48.879462054330375], [2.329361925038169, 48.87934355813287], [2.329424953695416, 48.879220015224405], [2.32948373651666, 48.87910151894104], [2.32950013936763, 48.8790956140447], [2.329634092261345, 48.879118677609476], [2.329772214215801, 48.87913385021595], [2.329786310063072, 48.87912942076433], [2.32988583613484, 48.879013828789574], [2.329988498828325, 48.878898479111015], [2.330088023998455, 48.8787828878432], [2.330190685800472, 48.87866753706785], [2.33029020871711, 48.87855194560009], [2.3303928696161, 48.87843659462716], [2.330492393006129, 48.878321002974744], [2.330595053002102, 48.878205651804265], [2.330694574138672, 48.87809005995191], [2.330797233231639, 48.877974708583864], [2.33080798521599, 48.87797029269317], [2.331041583600723, 48.87795888885889], [2.331276784914203, 48.87794773094789], [2.331510383094988, 48.87793632619864], [2.331745584217674, 48.87792516646715], [2.331757873214024, 48.87791827150851], [2.331802966830232, 48.877792851825], [2.3318464864636272, 48.87766862483942], [2.331891581025142, 48.87754320420249], [2.331935100238676, 48.877418977156566], [2.33198019437065, 48.8772935564578], [2.332023711800828, 48.87716932934393], [2.332068805491739, 48.877043909482666], [2.332112323876899, 48.87691968141676], [2.332157417138282, 48.876794261493735], [2.332200935091965, 48.87667003426679], [2.332228334026457, 48.876638327203814], [2.332209938094903, 48.87662377044451], [2.3321470476779043, 48.87660066188181], [2.331969145055851, 48.87652848762932], [2.331800316189641, 48.876466449817656], [2.331749996700137, 48.87644603547466], [2.331736831994473, 48.87643300883442], [2.331712227578203, 48.87642957271259], [2.331584645462422, 48.876377812238], [2.331431126162588, 48.87631876333392], [2.331253225495493, 48.87624658799908], [2.331099705594915, 48.87618753865538], [2.331097109948032, 48.87618676780894], [2.330945269900437, 48.87615416726604], [2.330729729812241, 48.87610724819714], [2.33057789022642, 48.87607464718591], [2.33036235078669, 48.87602772835142], [2.330210511662647, 48.875995126871864], [2.330208906397902, 48.875994847189524], [2.330021061312822, 48.87597012005279], [2.329817540951157, 48.875945178956], [2.329629696231013, 48.87592045120409], [2.329426176239162, 48.87589551034006], [2.329238331883959, 48.87587078197292], [2.329034813648549, 48.8758458395508], [2.328846969658297, 48.875821110568445], [2.328643450441139, 48.8757961674722], [2.328455606815848, 48.875771437874604], [2.328252087980107, 48.87574649411193], [2.328064244719784, 48.875721763899094], [2.32786072625407, 48.87569682036919], [2.32767288337033, 48.875672088641885], [2.327469365286047, 48.87564714444549], [2.327281522755682, 48.87562241300226], [2.327078005064657, 48.87559746724015], [2.326890162899287, 48.87557273518169], [2.326886060570802, 48.875572611388485], [2.326814621228703, 48.87559346911846], [2.326843131609072, 48.87564455356802], [2.326848030296261, 48.87577885498405], [2.326853840409378, 48.87590793905342], [2.326858739148851, 48.87604224043696], [2.326864549329512, 48.87617132357571], [2.326869448121371, 48.87630562492674], [2.326875258346333, 48.87643470893341], [2.326881068611716, 48.87656379202544], [2.326885967483086, 48.87669809332796], [2.326891777792771, 48.876827177287886], [2.32689667671663, 48.87696147855791], [2.32690248709376, 48.87709056158722], [2.32690738607001, 48.87722486282469], [2.326913196491545, 48.877353946721925], [2.326918094156676, 48.87748824791919], [2.326923906009165, 48.877617330893436], [2.326928803726781, 48.877751632058214], [2.326934615635103, 48.8778807150011], [2.326939513393482, 48.878015017032595], [2.326945325357738, 48.8781440999441], [2.3269502231801242, 48.87827840104379], [2.3269560338369892, 48.878407483916284], [2.326960933063468, 48.87854178589038], [2.326966743776261, 48.87867086873149], [2.326971643066857, 48.87880516977376], [2.32697745383548, 48.878934252583484], [2.326982353166848, 48.87906855449251], [2.326988163991505, 48.87919763727083], [2.326993063386788, 48.87933193824803], [2.326998874267376, 48.87946102099498], [2.327003773715056, 48.87959532193964], [2.327009584639956, 48.87972440555446], [2.327014482776667, 48.87985870645891], [2.327020295132487, 48.87998778915076], [2.32702519332159, 48.88012209002261], [2.327031005721833, 48.880251173582344], [2.327035903963225, 48.88038547442167], [2.327041715067546, 48.88051455704304], [2.3270466147249182, 48.880648857857466], [2.327050959603858, 48.880745368223884], [2.327067573536651, 48.88077035966964], [2.32711974776053, 48.88076212454082], [2.327308150452463, 48.880762020464026], [2.327497223049944, 48.880761674335666], [2.327685624387608, 48.880761568757926], [2.327874696980836, 48.88076122203341], [2.328063098304594, 48.88076111676092], [2.328252170905264, 48.88076076854102], [2.328440572226513, 48.88076066267449], [2.328629644811415, 48.880760314757744], [2.328669006883791, 48.88075248824939]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 17, "roussel_fabien": 19.0, "nb_emargement": 1306.0, "nb_procuration": 99.0, "nb_vote_blanc": 10.0, "jadot_yannick": 126.0, "le_pen_marine": 55.0, "nb_exprime": 1293.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 0, "nb_inscrit": 1570.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1306, "quartier_bv": "33", "geo_point_2d": [48.87783909533699, 2.328892040912009], "melenchon_jean_luc": 233.0, "poutou_philippe": 4.0, "macron_emmanuel": 571.0}, "geometry": {"type": "Point", "coordinates": [2.328892040912009, 48.87783909533699]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3c09348fe27e72b873dc033de29547a61b7ade7e", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 49, "zemmour_eric": 92.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "13-32", "geo_shape": {"coordinates": [[[2.3729456214636713, 48.831656834844736], [2.372931924775362, 48.83166603823075], [2.372795757460938, 48.83165615516354], [2.372551803314069, 48.83163570643683], [2.372415636140215, 48.83162582383589], [2.372403405199723, 48.83162902796475], [2.372255199012659, 48.83174782314129], [2.372103915804055, 48.831868453772614], [2.371955708242993, 48.83198724945197], [2.371804422284316, 48.83210787967155], [2.371786388968101, 48.832109634056096], [2.371636085923976, 48.83204366811391], [2.371485373025581, 48.83197760449004], [2.371335070732188, 48.831911639061126], [2.371184359959288, 48.83184557505734], [2.371034058427359, 48.83177960924236], [2.370883347066266, 48.831713543945014], [2.370867297818724, 48.831714016233384], [2.370756571170868, 48.831767455265265], [2.370615696461728, 48.83184192739108], [2.370611562189494, 48.831852287056584], [2.370679901776659, 48.831965070533066], [2.370747421668383, 48.832081569436156], [2.370815761850054, 48.8321943528119], [2.370883283704493, 48.832310851621585], [2.370951623118552, 48.83242363488947], [2.371019145573592, 48.83254013359861], [2.371015607284513, 48.83254998916165], [2.370995125732302, 48.83256664658415], [2.370937966091881, 48.83260109847515], [2.370917982208525, 48.832601912522655], [2.3709036689518213, 48.83261350295112], [2.370893956052406, 48.83261584778115], [2.370690548321095, 48.832610637011285], [2.370499564548793, 48.83260567385746], [2.370296156896606, 48.83260046241683], [2.370105173199232, 48.83259549863321], [2.369914189527362, 48.83259053544393], [2.369710780630535, 48.83258532300052], [2.369519797044374, 48.832580358282144], [2.369316389588935, 48.832575145175184], [2.3691254060666402, 48.83257018072632], [2.368921998701345, 48.83256496604925], [2.368731015253906, 48.83256000097059], [2.368527606594556, 48.832554786514905], [2.368517954765538, 48.83253982401688], [2.368637652075392, 48.83245094981958], [2.368751805365144, 48.83236694869878], [2.368871500517144, 48.83227807424655], [2.368985653051417, 48.83219407288957], [2.36898481490537, 48.83218149618406], [2.368866749743183, 48.832108657464104], [2.36870917189303, 48.83200993667016], [2.368591107504531, 48.83193709766696], [2.368433530694952, 48.83183837649477], [2.368315467080038, 48.831765537208284], [2.368296600201687, 48.831765704673394], [2.368176375663395, 48.83184398481628], [2.368034518763274, 48.83193296455414], [2.3679142934458, 48.83201124442189], [2.367772435632284, 48.83210022473493], [2.367652209535516, 48.83217850432759], [2.367556723325658, 48.83223839750245], [2.367541910115169, 48.832237357745825], [2.367520815665809, 48.832252350206964], [2.367474443138017, 48.83228143610739], [2.367322553180145, 48.83237783028109], [2.367180693358926, 48.83246680986315], [2.367028802328676, 48.83256320274855], [2.366886941501708, 48.83265218196749], [2.3667350480149922, 48.83274857535598], [2.366593187544407, 48.83283755421898], [2.366441292985202, 48.83293394631915], [2.366299430146508, 48.83302292481184], [2.36629622179879, 48.833026070893446], [2.366249098730303, 48.833110166721205], [2.366181967181823, 48.83322103862879], [2.366196381349857, 48.83323329426314], [2.36642117190818, 48.8332139148795], [2.366609527192033, 48.833193968892864], [2.366620430229926, 48.83319595307886], [2.366759524882594, 48.83327282743592], [2.366888441039761, 48.8333445123518], [2.367017357540462, 48.83341619802342], [2.367156453377072, 48.833493071004426], [2.367285370613828, 48.83356475637767], [2.367424468604336, 48.833641629044024], [2.367424719830382, 48.833655279185656], [2.367282593311866, 48.833737787339125], [2.367140613493054, 48.833818610680254], [2.36699848743079, 48.833901119390575], [2.366856506726621, 48.83398194238267], [2.366714378418105, 48.83406444983683], [2.366572398190852, 48.834145272487106], [2.366430268987229, 48.83422777959168], [2.366288287874616, 48.83430860189289], [2.366260010367139, 48.83434339250953], [2.366276060229913, 48.83435425826998], [2.3663394439925822, 48.83437528313747], [2.366523816991454, 48.834436747641554], [2.366703696077636, 48.83449641360946], [2.366888069934431, 48.83455787754545], [2.367067949866448, 48.83461754205979], [2.367252324570245, 48.834679006326944], [2.367432203974876, 48.834738670279826], [2.367616579547509, 48.834800133079554], [2.367796461138425, 48.83485979738467], [2.367980837568977, 48.83492125961626], [2.368160719994802, 48.834980923367134], [2.368345097283271, 48.8350423850306], [2.3685249791817, 48.83510204822004], [2.368709358690386, 48.835163509322534], [2.368889241423716, 48.835223171957686], [2.368940346124472, 48.83523311788265], [2.368964943022033, 48.83520290301377], [2.369063740137023, 48.835093658267674], [2.369170521619821, 48.83497507244529], [2.369269317872166, 48.83486582750713], [2.369376097047412, 48.83474724236922], [2.369474892448004, 48.83463799633971], [2.369581672051082, 48.83451941100132], [2.369680466589147, 48.83441016477977], [2.369787245257873, 48.8342915792337], [2.369886038933318, 48.834182332820106], [2.369992815305426, 48.83406374705923], [2.370091608118265, 48.83395450045361], [2.370198384918321, 48.833835914492255], [2.370297176868459, 48.833726667694606], [2.3704039527342973, 48.8336080815256], [2.370502743821846, 48.83349883453592], [2.370609517391116, 48.83338024815211], [2.370708307616089, 48.83327100097041], [2.370815081613323, 48.83315241438614], [2.370913870975725, 48.833043167012434], [2.370944593293155, 48.83303418202097], [2.370944023747709, 48.8329971619189], [2.370945082156302, 48.83299615479659], [2.371077658584935, 48.83288670993486], [2.371191811661992, 48.83278429465817], [2.371324387044664, 48.83267484860288], [2.371438539162217, 48.832572433970626], [2.371441363874171, 48.83257068425391], [2.371606639816293, 48.83249426366194], [2.371773780419021, 48.832416812063364], [2.371939056759155, 48.83234039010937], [2.372106196374642, 48.83226293803564], [2.372271471728674, 48.83218651651114], [2.372438610357031, 48.83210906396222], [2.372603883373682, 48.83203264196076], [2.372771022377031, 48.83195518894382], [2.372936294418531, 48.831878766472514], [2.373103431072328, 48.83180131297331], [2.373106914741452, 48.83178893882404], [2.373061568152977, 48.83174434154157], [2.373007730535271, 48.831693517462575], [2.373015529223083, 48.83166602325356], [2.372974774397852, 48.8316606670054], [2.3729456214636713, 48.831656834844736]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 32, "roussel_fabien": 43.0, "nb_emargement": 1290.0, "nb_procuration": 42.0, "nb_vote_blanc": 7.0, "jadot_yannick": 98.0, "le_pen_marine": 77.0, "nb_exprime": 1277.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1710.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1291, "quartier_bv": "50", "geo_point_2d": [48.83335065745954, 2.3688928331782817], "melenchon_jean_luc": 533.0, "poutou_philippe": 16.0, "macron_emmanuel": 294.0}, "geometry": {"type": "Point", "coordinates": [2.3688928331782817, 48.83335065745954]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9ecf2a3dd6a42c24f9d296b8e82455080b317bdb", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 139, "zemmour_eric": 140.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-6", "geo_shape": {"coordinates": [[[2.293852837405086, 48.848707693627766], [2.29386746110205, 48.848724674476586], [2.293961588855443, 48.84883141779479], [2.294057509176084, 48.848939857908995], [2.2941516390701873, 48.84904660106508], [2.294247558831898, 48.84915504009864], [2.294341689491686, 48.84926178398388], [2.294437611407607, 48.849370222852144], [2.29453174148281, 48.84947696655919], [2.294627664190291, 48.84958540525413], [2.294721796418219, 48.84969214789976], [2.294817718542423, 48.849800587312636], [2.294835414846534, 48.849804150559855], [2.294879307985343, 48.849790156156374], [2.2949179153203962, 48.849777645113036], [2.294940205412542, 48.84977486883096], [2.294945235139952, 48.84976823779367], [2.295074882861213, 48.84972622265733], [2.295243887543472, 48.84967145961813], [2.295412141880507, 48.84961693294993], [2.295581147228634, 48.84956216853774], [2.295749400859911, 48.8495076413899], [2.29591840412445, 48.84945287738721], [2.29608665704987, 48.84939834975975], [2.296255659617694, 48.84934358437599], [2.296423911837456, 48.849289056268915], [2.296592913696308, 48.84923429040344], [2.296761165198173, 48.849179762716034], [2.296930166348256, 48.84912499636879], [2.297098417156394, 48.84907046730253], [2.2972674175976042, 48.84901570047349], [2.297435667700079, 48.84896117092762], [2.297604668782843, 48.84890640452418], [2.29767256945676, 48.8488843973108], [2.29769917671274, 48.84887824356897], [2.297700752903678, 48.848875550236194], [2.297801101591845, 48.84884302740019], [2.297801382142462, 48.84884293911048], [2.297963645884106, 48.84879347487095], [2.29816850133532, 48.8487308732495], [2.298330764379563, 48.848681408507076], [2.298535617598592, 48.84861880534351], [2.298697879933326, 48.848569340997486], [2.298704893757962, 48.848564389746734], [2.298780736653175, 48.84843352999647], [2.298852563751057, 48.84830810038845], [2.2989243918537188, 48.84818267163055], [2.299000232279701, 48.84805181168832], [2.299003179984042, 48.848040353084265], [2.298991069113365, 48.84803329317191], [2.298811317962609, 48.8479668183379], [2.298630710043337, 48.84789994428333], [2.298450961174822, 48.84783346890793], [2.298270354180115, 48.84776659430139], [2.298090604868587, 48.84770011836865], [2.297909998798549, 48.847633243210154], [2.29790359599016, 48.847627943458896], [2.297844913620725, 48.8474965824561], [2.297783785932324, 48.84736185242719], [2.297773928096513, 48.84735568968426], [2.297591366862076, 48.84732662079493], [2.297408888250738, 48.84729770500215], [2.297226327423045, 48.847268635554265], [2.297043850591928, 48.847239718311975], [2.29686128880848, 48.84721064829754], [2.296678812370822, 48.84718173139629], [2.296496250994132, 48.847152660823355], [2.29631377497421, 48.84712374246452], [2.296131214004187, 48.847094671333046], [2.295948738377724, 48.84706575331527], [2.295933167952685, 48.84705982660904], [2.295918794989676, 48.847063809848905], [2.295901088678873, 48.84706871600352], [2.2958987513433993, 48.84708225476923], [2.295791472329997, 48.847211421414436], [2.295692790040038, 48.84733151361137], [2.295687415210162, 48.847335068634294], [2.295507661596655, 48.84740040405416], [2.295326179258712, 48.84746637116659], [2.295146424751699, 48.84753170513673], [2.294964941499151, 48.847597671693464], [2.294785186074207, 48.84766300601246], [2.2946037019071532, 48.84772897201343], [2.294423945588616, 48.847794304882704], [2.29424246050706, 48.847860270327956], [2.294062703270581, 48.84792560354606], [2.293881217274623, 48.84799156843559], [2.293701459132272, 48.84805690110325], [2.2935199722218123, 48.848122865437006], [2.293514721894959, 48.848135212377], [2.293627780074244, 48.8482654863379], [2.293740883139209, 48.84839580810463], [2.293853943811757, 48.84852608182938], [2.293967046633056, 48.848656404243016], [2.293961658051096, 48.848668800744896], [2.293912757837664, 48.84868609381523], [2.293853066641705, 48.84870716885325], [2.293852837405086, 48.848707693627766]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 6, "roussel_fabien": 18.0, "nb_emargement": 1368.0, "nb_procuration": 72.0, "nb_vote_blanc": 12.0, "jadot_yannick": 110.0, "le_pen_marine": 47.0, "nb_exprime": 1353.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1666.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1368, "quartier_bv": "59", "geo_point_2d": [48.848349494481084, 2.296136707474572], "melenchon_jean_luc": 247.0, "poutou_philippe": 9.0, "macron_emmanuel": 589.0}, "geometry": {"type": "Point", "coordinates": [2.296136707474572, 48.848349494481084]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "44b1e89069fb82c0c566d15da87bba8790ac9993", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 52, "zemmour_eric": 45.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "20-6", "geo_shape": {"coordinates": [[[2.401434135087281, 48.86832123279652], [2.401385647314683, 48.86830228408712], [2.4012999204128382, 48.86818249885571], [2.401223416121883, 48.86807955391417], [2.401146912133199, 48.867976608914184], [2.40106118767943, 48.86785682348338], [2.401060768335266, 48.867856303366445], [2.400966226340829, 48.86774771814793], [2.4008924331343042, 48.867664236495614], [2.400818641527348, 48.86758075479836], [2.400742511435205, 48.86749331504479], [2.400726499111429, 48.867487514184205], [2.400707591980014, 48.867494691562484], [2.400617228015967, 48.86759061571678], [2.400525323201216, 48.867688560984796], [2.400434958565238, 48.86778448498466], [2.4003430530657512, 48.867882430095534], [2.400252687757837, 48.86797835394097], [2.400160781573603, 48.86807629889475], [2.40015789263365, 48.868076913952756], [2.400146251842186, 48.868094216424446], [2.400067357318584, 48.868178662700885], [2.399982479228037, 48.86827152010492], [2.399903584160158, 48.86835596715917], [2.399818704125601, 48.868448824425386], [2.399818595058225, 48.86844894349033], [2.399731152739257, 48.86854586273659], [2.3996462720879093, 48.8686387198646], [2.399629608535608, 48.868642444974185], [2.399561781641489, 48.868624845556525], [2.3993816257605403, 48.868580009935535], [2.399238980775944, 48.868542996797075], [2.399205556075694, 48.86853467833138], [2.39918998040871, 48.8685375742558], [2.3990588601741463, 48.8686488888815], [2.398931714622378, 48.868755947866795], [2.398800593286258, 48.86886726218759], [2.398673446681075, 48.86897431997811], [2.398546299542989, 48.86908137852253], [2.398415176564124, 48.869192692388324], [2.398412977397345, 48.869195427909595], [2.39836935431862, 48.86928386076733], [2.398317449218995, 48.869378673233946], [2.398315081191845, 48.86938139171615], [2.398186914602972, 48.869482376899605], [2.398056463145369, 48.869584973750754], [2.397928295564624, 48.8696859577394], [2.397797843087821, 48.86978855428983], [2.397669674504808, 48.86988953798294], [2.397539221008798, 48.869992134232575], [2.397411051413105, 48.87009311852943], [2.397280596897876, 48.87019571447833], [2.397262833491116, 48.87023104717901], [2.3972835888758093, 48.87023851995335], [2.397463784252526, 48.870258009260496], [2.397615417355976, 48.87027221664813], [2.397618702857193, 48.87027280695925], [2.397728042825322, 48.87030258559553], [2.397852397604806, 48.87034785878002], [2.397854361262973, 48.87034852067707], [2.397978716262007, 48.870393793728425], [2.39818908934914, 48.8704795474858], [2.398190037294911, 48.87047986162342], [2.3983692509196652, 48.87053357873425], [2.3985319579814472, 48.87058093796368], [2.398711172296269, 48.87063465545695], [2.398873881347776, 48.8706820142241], [2.39905309637333, 48.87073573030123], [2.399215804688285, 48.870783088592454], [2.399235486839229, 48.87078980469017], [2.399270174294686, 48.87076961243419], [2.399300221651299, 48.87073577464752], [2.399330547063766, 48.87070087433394], [2.3993479559070803, 48.870691334309], [2.399349754011362, 48.870686021064735], [2.399420353728764, 48.87060477231598], [2.399527608157503, 48.87048448198821], [2.399628533717154, 48.87036833182774], [2.399735785804727, 48.87024804218011], [2.399836710442083, 48.87013189181928], [2.3999439629356862, 48.87001160106695], [2.400044886640396, 48.86989545140503], [2.400152136803233, 48.86977516043359], [2.400253059596029, 48.869659009672006], [2.400360310144189, 48.869538719394434], [2.400461232014721, 48.86942256843248], [2.400568480242503, 48.86930227703654], [2.400669401180437, 48.86918612677348], [2.400669461956857, 48.86918605782888], [2.400669493734132, 48.86918602111521], [2.400683995149989, 48.869169509060384], [2.400777531389419, 48.86906243649567], [2.40087974785747, 48.86894604790102], [2.40097328329329, 48.86883897516167], [2.401075497522303, 48.868722586369515], [2.401169032154626, 48.86861551345558], [2.401271246870886, 48.86849912447956], [2.40136477933644, 48.86839205138416], [2.401365266462144, 48.86839153760099], [2.401397326768789, 48.868360118620956], [2.401411010951338, 48.86835382604623], [2.401417653866528, 48.868344463892385], [2.401434135087281, 48.86832123279652]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 6, "roussel_fabien": 24.0, "nb_emargement": 1139.0, "nb_procuration": 56.0, "nb_vote_blanc": 13.0, "jadot_yannick": 91.0, "le_pen_marine": 51.0, "nb_exprime": 1124.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1429.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1139, "quartier_bv": "79", "geo_point_2d": [48.869317456038274, 2.3995085567965098], "melenchon_jean_luc": 503.0, "poutou_philippe": 6.0, "macron_emmanuel": 300.0}, "geometry": {"type": "Point", "coordinates": [2.3995085567965098, 48.869317456038274]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0b266554c244eaf5a3022922821095581d05a77d", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 103, "zemmour_eric": 106.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-86", "geo_shape": {"coordinates": [[[2.282268143191398, 48.838974659773406], [2.282267027518881, 48.83897939456991], [2.282147574556074, 48.839060526944166], [2.282014171549168, 48.839151095319046], [2.281858750801997, 48.83925665609876], [2.2817253468036522, 48.8393472232363], [2.281714488680845, 48.83936198598338], [2.281724242748072, 48.839370983412195], [2.281916789277515, 48.839423945057746], [2.282104415798923, 48.83947555298596], [2.282296963100949, 48.83952851401464], [2.282484590375196, 48.83958012134171], [2.282677139812107, 48.83963308176169], [2.282864767851562, 48.839684687588345], [2.282870778360959, 48.83968791729042], [2.282965094111097, 48.839779072783266], [2.283099318405225, 48.83990872753635], [2.283193636317135, 48.83999988283919], [2.283327861748399, 48.84012953731017], [2.283422180459575, 48.84022069241477], [2.283422729557035, 48.840229016686024], [2.283440022049143, 48.84023698347488], [2.283584393028266, 48.84035362423979], [2.283726676582445, 48.84046872878105], [2.283871048844973, 48.8405853691758], [2.284013333664832, 48.840700473352236], [2.2840307970966, 48.84071247924846], [2.284052481918291, 48.84070323849137], [2.284097187423904, 48.84067876076099], [2.284153587339221, 48.84064843693507], [2.2841737509351008, 48.840650648633186], [2.284268733076731, 48.840751116368885], [2.284360900594362, 48.84084860735114], [2.284455883457385, 48.84094907492045], [2.284548051675135, 48.841046565741244], [2.284558096176074, 48.84105074223366], [2.284806277178639, 48.84106905620505], [2.285049647004932, 48.8410877842952], [2.285051108244269, 48.84108783979573], [2.285248583105481, 48.841088347139205], [2.285445169916657, 48.84108863210384], [2.285642644784804, 48.84108913879681], [2.285839231613441, 48.84108942221452], [2.2860367064759872, 48.841089929156304], [2.286233293309743, 48.841090211926485], [2.286430768179112, 48.84109071821774], [2.286627355017979, 48.84109100034035], [2.286824829894158, 48.841091505981076], [2.287021416738126, 48.84109178745613], [2.287218003584215, 48.84109206860808], [2.287415477107818, 48.84109257326574], [2.28761206532134, 48.84109285377822], [2.28780953885173, 48.84109335778538], [2.287836852742003, 48.84108295010183], [2.287849660414021, 48.84106770468206], [2.2876855970674113, 48.84100304256662], [2.287512843969269, 48.84093508623414], [2.287348781457969, 48.84087042364911], [2.287176029238533, 48.840802466822154], [2.28701196756244, 48.84073780376752], [2.286839216209508, 48.84066984734538], [2.28667515536872, 48.84060518382116], [2.286502404906695, 48.840537226005274], [2.286338343538886, 48.840472562003306], [2.286165593955569, 48.84040460369298], [2.2860015347855, 48.84033993922955], [2.285885070641868, 48.84029412258929], [2.28588364888986, 48.840291186649665], [2.285857345263857, 48.84028464408702], [2.285801062074993, 48.840262502816664], [2.285577530250969, 48.840172880370574], [2.285404782652883, 48.840104920943325], [2.285404381602335, 48.84010475666075], [2.285253396316596, 48.8400405811548], [2.285102081994769, 48.83997608420921], [2.284951096091557, 48.83991190830617], [2.284799782505112, 48.83984741187008], [2.284648798721497, 48.83978323468697], [2.284497484520254, 48.83971873785287], [2.284346501481689, 48.839654560280835], [2.284195188027961, 48.83959006305694], [2.284194662300392, 48.83958985035743], [2.284041326031255, 48.83953080001438], [2.283883230032245, 48.83946973156485], [2.283729894469205, 48.83941068081625], [2.283571797824656, 48.83934961283971], [2.283418462967913, 48.83929056168558], [2.283260368427351, 48.83922949239972], [2.283107034276703, 48.83917044084004], [2.282948940452993, 48.83910937203535], [2.2829453585300348, 48.83910431767734], [2.282922163993755, 48.83910092200948], [2.282764070609776, 48.839039852057354], [2.282610676026961, 48.83897953046809], [2.282608904695615, 48.83897894424664], [2.282497220173918, 48.838947415126746], [2.282374615866433, 48.83891398027479], [2.282359359275332, 48.838916223515895], [2.282323861272458, 48.838941849510526], [2.282287894676777, 48.83896627831632], [2.282268143191398, 48.838974659773406]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 86, "roussel_fabien": 20.0, "nb_emargement": 1083.0, "nb_procuration": 59.0, "nb_vote_blanc": 11.0, "jadot_yannick": 72.0, "le_pen_marine": 68.0, "nb_exprime": 1072.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1329.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1083, "quartier_bv": "60", "geo_point_2d": [48.840220969939004, 2.2845730879223214], "melenchon_jean_luc": 189.0, "poutou_philippe": 2.0, "macron_emmanuel": 449.0}, "geometry": {"type": "Point", "coordinates": [2.2845730879223214, 48.840220969939004]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a45f159a8bb403961325b2ea2b8e4fa2b10f1144", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 59, "zemmour_eric": 53.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "1-3", "geo_shape": {"coordinates": [[[2.345944253365866, 48.86295127213732], [2.345962916708627, 48.862938584526155], [2.34615088479657, 48.86289625862413], [2.346339317771371, 48.8628537937687], [2.346527285247693, 48.862811467272245], [2.346715717608908, 48.86276900182095], [2.34690368583642, 48.862726674737544], [2.347092116221325, 48.862684208682886], [2.347280083837101, 48.86264188100508], [2.347468514971429, 48.862599414362], [2.3476564806237032, 48.86255708518307], [2.347844911133269, 48.86251461884339], [2.34803287617379, 48.862472289070034], [2.348221306069855, 48.862429822134516], [2.348409271861632, 48.862387491774214], [2.348597699781177, 48.86234502423535], [2.348606158165279, 48.86233354064799], [2.34855815243296, 48.8622431207162], [2.348510135522539, 48.8621520819453], [2.348462130124074, 48.86206166196018], [2.348414113548785, 48.861970623135804], [2.348422851863117, 48.8619590979131], [2.348578300027644, 48.861926446176305], [2.348716959637853, 48.861896801124644], [2.348855619090363, 48.86186715591157], [2.3490110667205713, 48.86183450271064], [2.349027995857915, 48.86183997109601], [2.3490767400802, 48.86192750438483], [2.349125318264308, 48.86201546663085], [2.349174062803172, 48.86210300076546], [2.349222641326466, 48.86219096205877], [2.349239939338013, 48.86219637395998], [2.349385812900814, 48.86216278235979], [2.349503782431188, 48.86213565630691], [2.349512920210125, 48.862127163977945], [2.349512889519051, 48.8620014575857], [2.349513371356041, 48.86187978933568], [2.349513339301026, 48.861754082907986], [2.349513821134679, 48.86163241463082], [2.349514301591862, 48.86151074723212], [2.349514270909046, 48.861385039870704], [2.349513447848786, 48.86138196502445], [2.349454800398969, 48.86127568959424], [2.349394334628524, 48.86116637793332], [2.349335686301381, 48.86106010241665], [2.349275221042388, 48.86095078977502], [2.349216574552539, 48.860844515086015], [2.349156109793659, 48.860735202362925], [2.349164313719823, 48.860723653483916], [2.349264016135755, 48.86070006886313], [2.349354499143681, 48.86067908171532], [2.349397752655324, 48.86066793112625], [2.349410573119126, 48.86065409060719], [2.349397636196599, 48.86063119571868], [2.34932353648224, 48.86050226969116], [2.34926385318067, 48.86039664586704], [2.349191232016563, 48.86026812707737], [2.34911713332933, 48.86013920087982], [2.349044514248829, 48.860010681978665], [2.348970416290796, 48.859881755660346], [2.348897796568089, 48.85975323663294], [2.348823699339247, 48.859624310193844], [2.3488224355068192, 48.85961790175027], [2.34881420809213, 48.85960734628835], [2.348740111277611, 48.85947841978056], [2.348669936208696, 48.859351999457196], [2.348595840114322, 48.85922307283039], [2.34852566711366, 48.85909665150149], [2.348455493090613, 48.85897023010963], [2.348381398069803, 48.85884130330567], [2.348311224740725, 48.85871488180011], [2.348237131802848, 48.85858595488459], [2.3482081029715163, 48.85853365876092], [2.348200138179429, 48.85853067900081], [2.348119090516853, 48.858557855660834], [2.347941653776612, 48.85861521089149], [2.347760057342814, 48.858674156619706], [2.347582618448462, 48.85873151130455], [2.347401021214386, 48.85879045558248], [2.347223582891662, 48.85884780973638], [2.347041984834787, 48.858906754362614], [2.34686454572077, 48.858964107978125], [2.346682946863636, 48.85902305115403], [2.346505506946953, 48.85908040513047], [2.346323907278291, 48.85913934775536], [2.346146465218772, 48.85919670028673], [2.345964864738587, 48.859255642360594], [2.345787423239423, 48.85931299526028], [2.345605821947713, 48.85937193678313], [2.345428379668559, 48.85942928824512], [2.34524677755403, 48.85948823011625], [2.345069334483493, 48.859545581039875], [2.344887730205908, 48.859604521453186], [2.34484947858354, 48.85961688494846], [2.3448412091084, 48.859619601577386], [2.344847690063878, 48.85966297131008], [2.344948527114033, 48.859786663127736], [2.345047990051203, 48.85990856481343], [2.345148826689157, 48.86003225642744], [2.345248290575123, 48.86015415702045], [2.345349129526988, 48.86027784844576], [2.345448592987497, 48.86039974883779], [2.345449035112259, 48.86040025129392], [2.345545709892113, 48.86050243340667], [2.345644505727432, 48.86060647698761], [2.345741181273316, 48.860708658923485], [2.345839979241728, 48.860812703230465], [2.345936655553552, 48.86091488498939], [2.346035454314686, 48.86101892821635], [2.346032176471929, 48.8610308500503], [2.345879057404075, 48.86110801457372], [2.345731376509333, 48.86118159325058], [2.345578255189957, 48.8612587573712], [2.3454305734432133, 48.86133233566685], [2.345282891279237, 48.86140591377537], [2.345129769999324, 48.86148307731405], [2.34498208698324, 48.861556655041355], [2.344828963451888, 48.86163381817717], [2.344799167345059, 48.86164017532197], [2.34479807331154, 48.86164143561393], [2.344810583727055, 48.861665155154014], [2.344811603718068, 48.86166663926595], [2.344855903339362, 48.8617181248233], [2.344912444099819, 48.861783321372414], [2.344911476464087, 48.861787104127934], [2.344927097502068, 48.86180095774843], [2.344961960943642, 48.861841158755524], [2.345061939303108, 48.86195533670899], [2.345153344314917, 48.86206073409012], [2.34525332350388, 48.86217491276036], [2.345344730662516, 48.86228030908262], [2.345444709329277, 48.862394487562895], [2.345536117248938, 48.86249988461743], [2.345636096756617, 48.862614062915185], [2.345727505460009, 48.86271945890332], [2.34581891315903, 48.862824855703465], [2.345918895273052, 48.862939033738925], [2.345944253365866, 48.86295127213732]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 3, "roussel_fabien": 14.0, "nb_emargement": 1012.0, "nb_procuration": 112.0, "nb_vote_blanc": 7.0, "jadot_yannick": 73.0, "le_pen_marine": 79.0, "nb_exprime": 1002.0, "nb_vote_nul": 3.0, "arr_bv": "01", "arthaud_nathalie": 1, "nb_inscrit": 1243.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1012, "quartier_bv": "02", "geo_point_2d": [48.860820044773966, 2.3472191006559378], "melenchon_jean_luc": 249.0, "poutou_philippe": 7.0, "macron_emmanuel": 418.0}, "geometry": {"type": "Point", "coordinates": [2.3472191006559378, 48.860820044773966]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3184a1aef0f07fbdd6f06b272880aa275d394b94", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 47, "zemmour_eric": 89.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-15", "geo_shape": {"coordinates": [[[2.314361275443546, 48.83596307563906], [2.314374958071447, 48.83597332416219], [2.314432345148286, 48.8360196136737], [2.314556217784845, 48.83612026893709], [2.314686069891975, 48.83622501088639], [2.314764808181602, 48.83628899086982], [2.3147685008249432, 48.83629693098711], [2.314780849967387, 48.83630519949966], [2.314825985305871, 48.83634187539111], [2.314948982959836, 48.836443706971465], [2.315072857601853, 48.83654436166169], [2.315195856215899, 48.8366461929697], [2.315319730453494, 48.836746847378244], [2.315442730027728, 48.83684867841399], [2.315566606585484, 48.83694933255644], [2.315689607119815, 48.83705116331988], [2.315813483273156, 48.837151817180626], [2.315936484767592, 48.837253647671794], [2.316060363229421, 48.83735430216576], [2.316183365695774, 48.837456131485276], [2.316307245115559, 48.837556785705345], [2.316430247167875, 48.83765861564404], [2.316554127557519, 48.83775926869089], [2.3166771319322272, 48.83786109836511], [2.316801013279737, 48.83796175113802], [2.31692401861469, 48.83806358053992], [2.317047899557903, 48.838164233031144], [2.317170905852902, 48.838266062160706], [2.317294789116475, 48.83836671438582], [2.317295500753363, 48.83837573102647], [2.317304721531003, 48.83838928048661], [2.317426733136191, 48.83848755383976], [2.3175506174202, 48.83858820577994], [2.317578357624232, 48.838610547877245], [2.317582092168624, 48.83861273126584], [2.317656994417106, 48.83858437065412], [2.317747329705615, 48.83847457560959], [2.3178376408826082, 48.83836544858206], [2.317927975411186, 48.83825565337965], [2.318018285818901, 48.83814652709366], [2.318108620949828, 48.838036731741056], [2.318198929249538, 48.83792760439024], [2.318289263620545, 48.83781780887976], [2.318379571150904, 48.83770868227048], [2.318390399352159, 48.837704031276374], [2.318604426247804, 48.83769229165896], [2.3188244667340863, 48.83768045729479], [2.319038493435269, 48.83766871690051], [2.319258533723476, 48.8376568817376], [2.319472560229982, 48.8376451405664], [2.3196926003201, 48.8376333046048], [2.3197051149060393, 48.83762417882651], [2.319702551068412, 48.83753020889795], [2.3197044045612483, 48.83736418769098], [2.319701840737689, 48.83727021774059], [2.319693859448039, 48.83726219313794], [2.319536881049205, 48.83721506271909], [2.319369520836884, 48.83716347599673], [2.319363865546574, 48.83715042273801], [2.319479183334185, 48.83703339899484], [2.319590722394303, 48.836920148978614], [2.31970603916317, 48.83680312499264], [2.31981757587543, 48.83668987473381], [2.319932892987903, 48.836572850512816], [2.3200444287144553, 48.8364596000191], [2.320056888373835, 48.836446616484054], [2.320044165446219, 48.83643539466335], [2.319882982910483, 48.83636585811674], [2.319719304235864, 48.83629553548974], [2.319558121203745, 48.83622599848891], [2.319394443406563, 48.83615567540856], [2.319233262602507, 48.83608613796909], [2.319069585671011, 48.83601581533471], [2.319066934821695, 48.836002228736106], [2.319191086580358, 48.835912062104526], [2.319312982694989, 48.83582391238338], [2.319437133591599, 48.83573374638138], [2.31955902887316, 48.83564559639546], [2.319683178919473, 48.83555543012367], [2.319805072005665, 48.835467279865235], [2.319929221213524, 48.83537711242439], [2.320051114828965, 48.835288961908894], [2.320175263174702, 48.83519879509765], [2.320297154594797, 48.835110644309616], [2.320300828036059, 48.83509598024553], [2.320290027514264, 48.83508216028323], [2.320146583801315, 48.83500628169093], [2.319980357641982, 48.834918808204506], [2.319836914829312, 48.83484292922977], [2.319670688348145, 48.83475545529249], [2.319527246435752, 48.83467957593528], [2.3193610223692662, 48.83459210066333], [2.319217581345404, 48.83451622182303], [2.319051356957088, 48.83442874610019], [2.318907916833489, 48.83435286687744], [2.318741694848099, 48.834265390719274], [2.318598255624759, 48.83418951111411], [2.318432033317538, 48.83410203450505], [2.318288594994454, 48.83402615451746], [2.318277435231984, 48.834023610441264], [2.3182596173097663, 48.834032345219704], [2.318098265006881, 48.83413045624825], [2.317940980227922, 48.8342260567167], [2.31778369350978, 48.83432165696236], [2.31762233941564, 48.83441976732359], [2.317465052890916, 48.83451536714144], [2.317303697597454, 48.834613477055846], [2.317146409903867, 48.83470907643819], [2.316985053411075, 48.834807185905724], [2.316985132841209, 48.8348204628906], [2.317152176129545, 48.83492045101067], [2.317332384027745, 48.835027664928226], [2.317325972769297, 48.835043159589624], [2.31711358349794, 48.83507161206989], [2.316911497991977, 48.83509899700497], [2.316699108266784, 48.83512744874784], [2.316497023688809, 48.83515483298909], [2.316284632147696, 48.835183283986794], [2.316082547135526, 48.835210667526425], [2.316077605383936, 48.83521204858568], [2.315880737045889, 48.83530075380614], [2.31568407411071, 48.83538922423907], [2.315487204433841, 48.835477928797765], [2.315290540150497, 48.83556639946897], [2.31529007569001, 48.83556659826944], [2.315142491259545, 48.835627347703806], [2.314992235722346, 48.835689481079704], [2.314844649246467, 48.83575022923281], [2.31469439300004, 48.83581236222775], [2.314546805829038, 48.83587311000665], [2.314396548873383, 48.83593524262062], [2.314361275443546, 48.83596307563906]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 15, "roussel_fabien": 22.0, "nb_emargement": 1239.0, "nb_procuration": 76.0, "nb_vote_blanc": 17.0, "jadot_yannick": 109.0, "le_pen_marine": 59.0, "nb_exprime": 1220.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1588.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1239, "quartier_bv": "56", "geo_point_2d": [48.83622802896429, 2.317630123533854], "melenchon_jean_luc": 418.0, "poutou_philippe": 3.0, "macron_emmanuel": 412.0}, "geometry": {"type": "Point", "coordinates": [2.317630123533854, 48.83622802896429]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "62ed6753161bd74e6d354351aaaab5cc7bc8757e", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 36, "zemmour_eric": 37.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "18-15", "geo_shape": {"coordinates": [[[2.347097710621428, 48.89467927683702], [2.347136774855216, 48.89469635746791], [2.347289748199568, 48.89466052424041], [2.3474945530116322, 48.89461198076037], [2.347647525861834, 48.89457614707312], [2.347852330008406, 48.89452760297746], [2.347991625736046, 48.894494972391115], [2.348005302364453, 48.89449176883041], [2.34801461769998, 48.89449178986979], [2.3482252495873492, 48.894542795687414], [2.348432192051396, 48.894592526503985], [2.348642824755381, 48.894643531582474], [2.348849769382435, 48.8946932616803], [2.349060401550411, 48.894744265113005], [2.3492673469767062, 48.89479399448466], [2.349275646483202, 48.89479421405141], [2.349470198337915, 48.894758792830096], [2.349663788474255, 48.894723252755924], [2.349858339799737, 48.89468783090175], [2.350051929396042, 48.89465229109711], [2.35024647882843, 48.894616868602704], [2.350440069271007, 48.89458132727642], [2.35063461817415, 48.89454590414919], [2.35082820807669, 48.89451036309244], [2.351022756461795, 48.89447493843307], [2.351216345835508, 48.894439396746606], [2.351410893680145, 48.89440397235364], [2.351604482536229, 48.894368429138176], [2.3517990298516, 48.89433300411238], [2.351992618167645, 48.89429746116643], [2.352187164953745, 48.894262035507815], [2.352380752752133, 48.89422649103285], [2.352575299008953, 48.89419106474145], [2.3527688862673, 48.894155520536025], [2.35281600723839, 48.89414747357645], [2.352817985019203, 48.89413671220411], [2.352814462099847, 48.894103021705355], [2.352791603314726, 48.893986687959725], [2.352779141598404, 48.89386750918161], [2.3527790184079223, 48.893866776468734], [2.352756161169652, 48.89375044269862], [2.352730676068596, 48.893639901622564], [2.35270781767411, 48.893523567811755], [2.352682332797923, 48.89341302580327], [2.352659474599774, 48.89329669285843], [2.352633989937374, 48.89318615081677], [2.352633398601551, 48.89318456751251], [2.352616531370308, 48.89315988888242], [2.352562889196057, 48.89317034486418], [2.352367166616917, 48.89321084415287], [2.35216883789974, 48.89325272297098], [2.351973114693233, 48.89329322251183], [2.351774785345314, 48.89333510067421], [2.351579061533828, 48.89337559866872], [2.351380731544079, 48.893417477074564], [2.351185007116428, 48.89345797442203], [2.350986676495843, 48.89349985217209], [2.350979026166776, 48.89350391880854], [2.350928728495687, 48.89356134484435], [2.350875284747532, 48.89362627482538], [2.35086834774154, 48.89363033902586], [2.350851113263513, 48.893634951749355], [2.350648518131693, 48.89368820291658], [2.350474876888922, 48.89373467612421], [2.350284000757881, 48.893785761719315], [2.350081403095482, 48.89383901191242], [2.349890526195874, 48.893890096875516], [2.349687929077669, 48.893943347304536], [2.349497051409496, 48.893994431635605], [2.349294453494115, 48.894047680494644], [2.349275923387283, 48.89404069640241], [2.349243742943825, 48.89390301085773], [2.349209568403622, 48.893762943838674], [2.34917738830741, 48.89362525824126], [2.349143214128023, 48.89348519116774], [2.349111033015125, 48.89334750551019], [2.349076859196549, 48.89320743838229], [2.349044679794511, 48.89306975267943], [2.349010506336841, 48.8929296854971], [2.348978327270684, 48.892792000640796], [2.3489441528212502, 48.892651932497365], [2.3489234143958, 48.8926454444494], [2.348877694089341, 48.892664895508354], [2.348843296642209, 48.89270299530886], [2.348746789620633, 48.89281196115158], [2.348650655657332, 48.89291843871472], [2.348554147833262, 48.89302740438078], [2.348458014430778, 48.89313388267501], [2.348431747145734, 48.89316353968018], [2.348417789964298, 48.89317164486687], [2.348414963711183, 48.89318986683347], [2.348344722308471, 48.89326917530594], [2.348241360993933, 48.893383261005766], [2.348144851451595, 48.893492226295756], [2.348041489256202, 48.89360631179989], [2.347944978893481, 48.89371527600738], [2.347841615817325, 48.89382936131577], [2.347745104611484, 48.89393832623923], [2.347641740654654, 48.894052411351865], [2.347545228617047, 48.89416137609213], [2.347441863779332, 48.894275461009016], [2.34734535091005, 48.89438442556599], [2.3472419851915403, 48.894498510287164], [2.347145471490471, 48.894607474660894], [2.347105477263853, 48.894651616508895], [2.347097710621428, 48.89467927683702]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 15, "roussel_fabien": 21.0, "nb_emargement": 1100.0, "nb_procuration": 54.0, "nb_vote_blanc": 17.0, "jadot_yannick": 112.0, "le_pen_marine": 54.0, "nb_exprime": 1080.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1457.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "70", "geo_point_2d": [48.89397941635673, 2.350018626293876], "melenchon_jean_luc": 536.0, "poutou_philippe": 8.0, "macron_emmanuel": 213.0}, "geometry": {"type": "Point", "coordinates": [2.350018626293876, 48.89397941635673]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "39e1ca52e0aa29413fc9047e82d7073254993fc3", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 31, "zemmour_eric": 54.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-37", "geo_shape": {"coordinates": [[[2.4080067874618543, 48.85302325576382], [2.407992220260271, 48.853023127931216], [2.407853028838858, 48.852998074909586], [2.407672715776659, 48.85296652811728], [2.407479514576198, 48.85293175331988], [2.407299200596724, 48.85290020685542], [2.40710599989143, 48.852865431452834], [2.406925687740488, 48.85283388353104], [2.406732487520132, 48.852799108422595], [2.406552175824824, 48.85276755993608], [2.40653653351374, 48.852767903248825], [2.406525885338098, 48.85279701813434], [2.4064800037135052, 48.85292451165047], [2.406434051893272, 48.85305228538426], [2.406388169819224, 48.853179778835894], [2.406342217538452, 48.85330755340435], [2.4062963350149422, 48.85343504679154], [2.406250383646657, 48.85356282130215], [2.406204499310889, 48.853690314618056], [2.40615854750255, 48.85381808816476], [2.4061126640801023, 48.853945581422956], [2.406066710448405, 48.85407335579757], [2.406020826576477, 48.85420084899127], [2.405974872494457, 48.85432862330128], [2.405928988173041, 48.854456116430455], [2.405883033650947, 48.85458388977655], [2.405837148869783, 48.854711383740515], [2.405791193897355, 48.85483915702197], [2.405745308676946, 48.85496665002216], [2.405699353243921, 48.855094424138294], [2.405653467574005, 48.855221917073926], [2.40560751170089, 48.85534969022617], [2.405561625571203, 48.85547718399661], [2.405515669247734, 48.85560495708421], [2.405469782678786, 48.855732449890816], [2.405423825894696, 48.85586022381305], [2.405423638358732, 48.85586375911357], [2.405450916908299, 48.85597471848013], [2.405481095583387, 48.85609585395723], [2.4054905037467282, 48.85610433567363], [2.405508017765084, 48.85610404316251], [2.405661194031901, 48.85608420362697], [2.405817213961627, 48.856063461581556], [2.405827845191303, 48.85606496861481], [2.406020360915457, 48.85615601644979], [2.406215434112527, 48.85624479411326], [2.406220688104999, 48.85624623305807], [2.406389235486727, 48.856266227179994], [2.406587565881412, 48.85629048956987], [2.40675611492018, 48.85631048228167], [2.406954445654148, 48.85633474406251], [2.407122993603743, 48.85635473714933], [2.40732132467699, 48.856378998321105], [2.407489874283501, 48.85639898999784], [2.407569366332692, 48.85640871429816], [2.407599348172605, 48.85641144025745], [2.40760726050748, 48.856393047324275], [2.407562628387862, 48.856259571999075], [2.407517441157516, 48.85612567299727], [2.407472809496908, 48.855992197606454], [2.407427622729354, 48.855858298538486], [2.407438234136276, 48.855847527447814], [2.407634636560098, 48.85582141334889], [2.407836110008497, 48.8557947115679], [2.408032512033829, 48.855768596814755], [2.408233985063892, 48.85574189526193], [2.408242089249506, 48.855727581764114], [2.408180489945619, 48.85567492973485], [2.408128862709087, 48.855630350069944], [2.408128565323833, 48.85561969583428], [2.40825423368832, 48.85550248221759], [2.408377868422032, 48.85538703641391], [2.408503535664682, 48.85526982251086], [2.408627169293998, 48.85515437642544], [2.408752835414724, 48.85503716223605], [2.408876467939657, 48.854921715868855], [2.4088782551257752, 48.854919393589114], [2.408944498183294, 48.854789489002066], [2.409010744119858, 48.85466002236133], [2.409076987880053, 48.8545301176774], [2.409143233157677, 48.854400650933094], [2.409209476257934, 48.854270746145446], [2.409275720866432, 48.854141280196856], [2.409341963316753, 48.854011374406284], [2.409408207266333, 48.853881908354175], [2.409474450897027, 48.85375244135101], [2.409540692347402, 48.853622536304236], [2.409606935319089, 48.853493069197505], [2.409673174746775, 48.85336316404036], [2.409687291204269, 48.85333066826916], [2.409676129924555, 48.85332594468569], [2.409625532665406, 48.85331685085462], [2.409432328862775, 48.853282079221245], [2.409237472328305, 48.8532470553901], [2.4090442690333163, 48.85321228402729], [2.4088494116578962, 48.853177259555295], [2.408656208890849, 48.85314248666439], [2.408461352027164, 48.853107462457544], [2.408268149777766, 48.8530726889379], [2.408073293446138, 48.853037663197604], [2.408019283161785, 48.853027942039226], [2.4080067874618543, 48.85302325576382]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 37, "roussel_fabien": 22.0, "nb_emargement": 1116.0, "nb_procuration": 57.0, "nb_vote_blanc": 13.0, "jadot_yannick": 59.0, "le_pen_marine": 64.0, "nb_exprime": 1099.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1573.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1116, "quartier_bv": "80", "geo_point_2d": [48.854527908830285, 2.4073852193111565], "melenchon_jean_luc": 600.0, "poutou_philippe": 11.0, "macron_emmanuel": 222.0}, "geometry": {"type": "Point", "coordinates": [2.4073852193111565, 48.854527908830285]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8edf19116be8c60a177253754ced13aa39cfda07", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 28, "zemmour_eric": 38.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-55", "geo_shape": {"coordinates": [[[2.353510439422695, 48.887777276049924], [2.353552752322697, 48.887782445395594], [2.35362213373665, 48.88786609661053], [2.353663651115189, 48.88791877209086], [2.353665318805624, 48.88792285144032], [2.353669695409091, 48.88803258377968], [2.353673152222151, 48.88813808251525], [2.353677528871377, 48.88824781393359], [2.353680985703536, 48.888353313547505], [2.353681015734192, 48.888353750781626], [2.35368425806284, 48.88837633055246], [2.353718860241178, 48.88837967305284], [2.353901256476796, 48.88839672652902], [2.354111369027771, 48.888416603828894], [2.35429376688489, 48.888433656714014], [2.354503879734712, 48.88845353332442], [2.3546862764861363, 48.888470585603734], [2.354896389634693, 48.88849046152472], [2.355078786644006, 48.888507513205546], [2.35528890145519, 48.88852738844445], [2.355471298722383, 48.888544439526804], [2.355681412468586, 48.88856431406896], [2.355863809993651, 48.888581364552856], [2.356073924027641, 48.88860123930488], [2.356256323174275, 48.888618289197616], [2.356291127055679, 48.88861317388769], [2.356295868316474, 48.88859512744608], [2.3563217099505103, 48.888474138110276], [2.356349974321028, 48.88834392571263], [2.3563758157046832, 48.888222936337506], [2.356404079803448, 48.888092723897316], [2.356429920936726, 48.8879717344828], [2.356458184763845, 48.887841522000045], [2.356471145061974, 48.887834411442675], [2.356467147657207, 48.88780519066316], [2.356495411300839, 48.88767497815187], [2.356522654762248, 48.887542776224464], [2.356550918124646, 48.887412563668946], [2.356578161318854, 48.88728036079807], [2.3566064244001232, 48.88715014819839], [2.356633668679781, 48.88701794529063], [2.356661931479719, 48.886887732646734], [2.3566891741065, 48.88675553058667], [2.356717436625217, 48.88662531789856], [2.356744680348452, 48.88649311490241], [2.356772942586048, 48.88636290217007], [2.356800184667438, 48.88623069912236], [2.35678682227695, 48.88622049642522], [2.356592941132547, 48.88621909050045], [2.356405732399114, 48.886218473763414], [2.356211851272433, 48.886217067221565], [2.356024642550892, 48.88621644988873], [2.355830761430919, 48.88621504362905], [2.3556435527322, 48.88621442480109], [2.355449671630164, 48.886213017924376], [2.3552624629321253, 48.88621239939979], [2.355068581858965, 48.886210991006735], [2.354881373172744, 48.88621037188633], [2.354694163138582, 48.886209751566625], [2.354500283443147, 48.88620834315992], [2.354464334026801, 48.88621280516074], [2.354457434412627, 48.886222755885484], [2.354287684343184, 48.886310625696545], [2.354119635609893, 48.88639937498883], [2.353949884394695, 48.88648724430686], [2.353781834515711, 48.88657599311077], [2.3536120821546502, 48.88666386193578], [2.35344403113007, 48.88675261025133], [2.353438926992779, 48.88675994727398], [2.353445984014805, 48.88689187250314], [2.353455398830293, 48.88701326404819], [2.353464813689576, 48.88713465557906], [2.353471870827967, 48.88726658076176], [2.353481285771551, 48.887387972263376], [2.353488344349676, 48.887519897422], [2.353497759377364, 48.887641288894315], [2.353504816667987, 48.88777321401419], [2.353510439422695, 48.887777276049924]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 55, "roussel_fabien": 25.0, "nb_emargement": 1217.0, "nb_procuration": 80.0, "nb_vote_blanc": 12.0, "jadot_yannick": 100.0, "le_pen_marine": 57.0, "nb_exprime": 1198.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1616.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1217, "quartier_bv": "71", "geo_point_2d": [48.8873465334142, 2.355117851831783], "melenchon_jean_luc": 720.0, "poutou_philippe": 15.0, "macron_emmanuel": 171.0}, "geometry": {"type": "Point", "coordinates": [2.355117851831783, 48.8873465334142]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c39968cb96edf3002ce8ba602b5bb223e13da799", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 106, "zemmour_eric": 118.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-26", "geo_shape": {"coordinates": [[[2.301488231655742, 48.84786220089448], [2.30151106133171, 48.84787398003516], [2.301610518445502, 48.84794080863385], [2.301705004525965, 48.84800601805676], [2.301721469541685, 48.848015626717924], [2.301784611217527, 48.847975530184804], [2.301932613536871, 48.847913111943505], [2.302086464424328, 48.847848645609446], [2.302234467396346, 48.847786226096275], [2.302388317535805, 48.84772175936672], [2.302390630281707, 48.847707795848876], [2.3022951236125992, 48.84764500028722], [2.302200275104236, 48.84758293606808], [2.302104767530807, 48.84752014033948], [2.302009919488336, 48.84745807506317], [2.3020050702852313, 48.84744581812766], [2.301981719248786, 48.847443464960854], [2.301833527943167, 48.847435364889726], [2.301670784053096, 48.84742413984422], [2.3016586391904053, 48.84741431265935], [2.301679585697919, 48.84727414500099], [2.301700438576582, 48.84713485455449], [2.301721384859349, 48.84699468685365], [2.301742237526625, 48.84685539546564], [2.301763182210003, 48.84671522861363], [2.301784036016236, 48.84657593719135], [2.3018049804748832, 48.84643577029691], [2.301825834057575, 48.84629647883239], [2.301846778291494, 48.84615631189548], [2.30186763165065, 48.84601702038875], [2.301888575671891, 48.845876852510074], [2.301909427432997, 48.84573756185248], [2.301906969161079, 48.84573146150623], [2.301799632115465, 48.84563194366251], [2.301692958232497, 48.845532693096025], [2.301585623379537, 48.8454331741512], [2.301478948948417, 48.84533392336821], [2.301371614901433, 48.84523440511295], [2.301264942659232, 48.84513515323016], [2.301157608067713, 48.84503563475715], [2.3010509366279512, 48.844936383565106], [2.300943604216995, 48.84483686489036], [2.300836932241136, 48.844737612582584], [2.300826239652273, 48.844725325912776], [2.30081124552389, 48.844725511688395], [2.300628386373813, 48.84478145183291], [2.300446344962952, 48.84483724898316], [2.300263485029162, 48.84489318856438], [2.300081442837445, 48.84494898515379], [2.299898582119947, 48.84500492417159], [2.299716539147174, 48.845060720200195], [2.299533676283412, 48.84511665864672], [2.299351632529685, 48.84517245411445], [2.299339449562331, 48.845172221776586], [2.299155273674874, 48.84510697323586], [2.298967624675131, 48.845041233685045], [2.298783449716089, 48.84497598456429], [2.298595803019543, 48.84491024443054], [2.298579330534422, 48.84491213904795], [2.298419352194453, 48.84502831908633], [2.298262701076242, 48.845140625964746], [2.29810272132896, 48.84525680555591], [2.297946068841651, 48.84536911199671], [2.297901744292627, 48.84540373466842], [2.297904101933578, 48.845406344972865], [2.2979311285769, 48.84542496305714], [2.298056021107845, 48.84551132450058], [2.298190907955936, 48.845604246845355], [2.298315801334894, 48.84569060890297], [2.298450689110296, 48.84578353093992], [2.298575583361491, 48.84586989181318], [2.2987104720640072, 48.845962813542286], [2.298835367163236, 48.84604917502972], [2.2989702581555562, 48.846142096459], [2.299095154127029, 48.84622845676203], [2.299230044683999, 48.84632137787545], [2.299354941503526, 48.84640773879271], [2.299489832987834, 48.846500659598306], [2.299633444231815, 48.846597165789646], [2.299768336702892, 48.846690086265426], [2.2999119476221033, 48.846786592098105], [2.300046841080055, 48.84687951224405], [2.300190454399496, 48.84697601773403], [2.300325348844333, 48.847068937550155], [2.300468961826939, 48.84716544358072], [2.300603858633349, 48.84725836217573], [2.300747472653604, 48.847354867855564], [2.300882369084297, 48.847447786112774], [2.301025985505029, 48.847544291449864], [2.301160882910565, 48.847637210276524], [2.301304499018402, 48.84773371435561], [2.3014393974108502, 48.8478266328525], [2.301483560249067, 48.847856307074814], [2.301488231655742, 48.84786220089448]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 26, "roussel_fabien": 16.0, "nb_emargement": 1278.0, "nb_procuration": 72.0, "nb_vote_blanc": 12.0, "jadot_yannick": 85.0, "le_pen_marine": 82.0, "nb_exprime": 1263.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1592.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "58", "geo_point_2d": [48.846097551746055, 2.3004020479700205], "melenchon_jean_luc": 241.0, "poutou_philippe": 3.0, "macron_emmanuel": 552.0}, "geometry": {"type": "Point", "coordinates": [2.3004020479700205, 48.846097551746055]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a4e51eec9819f542a22497702daed37e722add06", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 38, "zemmour_eric": 63.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-31", "geo_shape": {"coordinates": [[[2.389641997276682, 48.87527228488151], [2.389625658551257, 48.87526515080548], [2.389556792409376, 48.87523305050436], [2.389380602236484, 48.875153531333716], [2.389237955133102, 48.875087039903654], [2.389061767304145, 48.87500752026019], [2.388919121007667, 48.87494102844139], [2.38889253223472, 48.87492902780764], [2.388891679529742, 48.87492826351818], [2.3888695604743813, 48.87491912848872], [2.388733623102882, 48.87486421183231], [2.388584025419711, 48.87479669214025], [2.388581409122945, 48.87479587297463], [2.3883776490263022, 48.874748817682224], [2.388214918147103, 48.87471464154188], [2.388211607880462, 48.87471417135999], [2.388036499649985, 48.87470476500436], [2.387822409134923, 48.874692344129194], [2.387647299684778, 48.87468293719713], [2.387493632157769, 48.87467402104115], [2.387458159729707, 48.874678963932524], [2.387455117034419, 48.87471521487581], [2.387447046842524, 48.87483695858292], [2.387436429927417, 48.87497236809969], [2.387428359641524, 48.87509411267644], [2.387417742625316, 48.87522952215997], [2.3874096722664753, 48.87535126580778], [2.387409824066149, 48.875501228508405], [2.387409818786096, 48.87550190927616], [2.387415226929278, 48.87561324104733], [2.387415378745708, 48.87576320371233], [2.387420786927906, 48.87587453545689], [2.387421276044122, 48.87587665229005], [2.387473400542616, 48.87599972732776], [2.387520811208206, 48.876112425098974], [2.387526865820916, 48.87612927178807], [2.387530382881371, 48.8761315264214], [2.3875825078927573, 48.876254601383174], [2.387629015804706, 48.876369323357444], [2.387681139923762, 48.87649239824273], [2.387727649628591, 48.87660712016094], [2.387774158164345, 48.876721842941386], [2.38782628435314, 48.876844916831836], [2.3878267115205, 48.876846390322555], [2.387844074192813, 48.87696769369709], [2.387863634662214, 48.877089592858965], [2.3878636699302, 48.87708984035542], [2.387877008149343, 48.87720264692238], [2.387894372420972, 48.8773239502574], [2.3879077107664672, 48.877436756796975], [2.38792507382424, 48.8775580600948], [2.387925227359544, 48.877558801928444], [2.387957560389692, 48.87767358515482], [2.387994926680281, 48.877811067117044], [2.388027258657222, 48.87792585029131], [2.388064626665644, 48.87806333310658], [2.3880969589528, 48.87817811623576], [2.38813432597334, 48.878315598091554], [2.388166659934151, 48.87843038118263], [2.388166812693076, 48.87843107354819], [2.388204180079502, 48.87856855535062], [2.388223039969146, 48.878685563730166], [2.38824189859075, 48.8788025711881], [2.3882641372643523, 48.87894780158039], [2.388282996062681, 48.87906480990327], [2.388305233599403, 48.87921004024637], [2.388324093948482, 48.87932704854189], [2.388338031788617, 48.879418074329344], [2.388343132519765, 48.87942320048665], [2.388391389547519, 48.87941734688038], [2.388412413259525, 48.87941134783808], [2.388448883208505, 48.8793999858554], [2.388456678363686, 48.879391402006185], [2.388449398341726, 48.879302354591985], [2.38843609843463, 48.879127960623464], [2.388428818484581, 48.879038913186676], [2.388442157196538, 48.87902943764086], [2.388624894471553, 48.879026947248974], [2.388850708609704, 48.879023925552715], [2.389033445845738, 48.87902143453725], [2.38925925993628, 48.87901841207036], [2.389441997133524, 48.879015920431236], [2.389667811176444, 48.879012897193725], [2.389805099288675, 48.87901102495004], [2.389812893373513, 48.87900658151865], [2.389812303016865, 48.87899156510226], [2.389767710074493, 48.87886931676512], [2.389723400929636, 48.878746953829896], [2.389678808405379, 48.87862470543248], [2.389634499677499, 48.87850234243723], [2.389589907571452, 48.878380093979565], [2.389545599271082, 48.878257730024934], [2.389501007572497, 48.87813548240633], [2.389456701052521, 48.87801311839859], [2.389456449662733, 48.87801223127604], [2.389428971545446, 48.877878811262384], [2.389401387285792, 48.8777438735134], [2.389373908087622, 48.87761045344767], [2.3893463241022133, 48.877475516552416], [2.389318846560741, 48.87734209554922], [2.389291262860112, 48.877207158608456], [2.389263785590621, 48.87707373845944], [2.389236202185312, 48.87693880057384], [2.389247134779498, 48.876928768552325], [2.389371528410493, 48.87691296155633], [2.3894979043701072, 48.87689622923619], [2.389508639552551, 48.87688581846481], [2.389467694401978, 48.8767358224143], [2.389429060824611, 48.87658894171133], [2.389388117499889, 48.87643894560018], [2.389349484367145, 48.876292064831986], [2.389349443501571, 48.87628915438588], [2.389380635300963, 48.8761572457137], [2.389412129469402, 48.87602279165248], [2.389443320939976, 48.8758908838314], [2.389474814785533, 48.87575642972119], [2.389506004585014, 48.875624520945735], [2.389537499460415, 48.87549006769278], [2.389537903320078, 48.87548887993551], [2.389578475716908, 48.87539699968453], [2.389618462367168, 48.87530820383489], [2.389641997276682, 48.87527228488151]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 31, "roussel_fabien": 27.0, "nb_emargement": 1200.0, "nb_procuration": 63.0, "nb_vote_blanc": 12.0, "jadot_yannick": 123.0, "le_pen_marine": 46.0, "nb_exprime": 1182.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1550.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1200, "quartier_bv": "75", "geo_point_2d": [48.87676723764834, 2.3885842620777993], "melenchon_jean_luc": 529.0, "poutou_philippe": 6.0, "macron_emmanuel": 284.0}, "geometry": {"type": "Point", "coordinates": [2.3885842620777993, 48.87676723764834]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7917e5ca5e96df18462e10689eb3cb44889c695c", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 52, "zemmour_eric": 67.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-57", "geo_shape": {"coordinates": [[[2.35283882049259, 48.8281197308478], [2.352818505672242, 48.82810627690255], [2.352809838912564, 48.828092164690695], [2.352962052089792, 48.827958170329296], [2.353064662059494, 48.82786644155158], [2.353167271679177, 48.82777471177896], [2.353254819052886, 48.82769310925681], [2.353342364790427, 48.82761150665728], [2.353444973408597, 48.827519777524905], [2.353446563746733, 48.827510935378434], [2.3534408779697022, 48.82750204490101], [2.353436877541282, 48.82749828907014], [2.353405054998624, 48.827494186753576], [2.353384646300178, 48.82748139073103], [2.353358056461253, 48.827469003775334], [2.353338973034829, 48.827471264144606], [2.353238833896251, 48.827567608644785], [2.353140979224829, 48.82766051181355], [2.353040840707809, 48.82775685703839], [2.352942985328354, 48.82784976002948], [2.352842844730988, 48.82794610416562], [2.352744988632329, 48.82803900787836], [2.352742902842631, 48.828040566896966], [2.35259081557746, 48.82813276594446], [2.352429473413319, 48.8282283358999], [2.352415694909758, 48.828230087021126], [2.352287361504662, 48.828199072345924], [2.352158049588735, 48.82816690103186], [2.35202971649245, 48.82813588607844], [2.351900403518938, 48.828103715375924], [2.351897516310852, 48.82810322665876], [2.351720553147814, 48.828085933091884], [2.351547189756574, 48.82806967327495], [2.351370226834929, 48.8280523782899], [2.351196863664531, 48.82803611796465], [2.351023499240262, 48.8280198573805], [2.350846536650143, 48.82800256251907], [2.350843179853557, 48.828001936321236], [2.35071873336059, 48.82796683540261], [2.350597039317888, 48.827930914679165], [2.350472593149068, 48.82789581440151], [2.350350898079625, 48.827859893417944], [2.35034670086139, 48.827859155615116], [2.350167010353602, 48.82784723397508], [2.349989106175986, 48.82783669781666], [2.349986373924984, 48.82783634749956], [2.349857299658934, 48.82781250137648], [2.349726264825557, 48.827786293487286], [2.349597190791184, 48.827762447981726], [2.349466156225488, 48.827736238907065], [2.349459262222346, 48.82773307517994], [2.349425868020462, 48.827704073959666], [2.34937932555015, 48.82767031725541], [2.349361236057984, 48.82766910091852], [2.349230212316784, 48.82773208083476], [2.349044305607411, 48.82782226296267], [2.348913282449208, 48.8278852434298], [2.348727373283336, 48.827975425045274], [2.348596349368683, 48.8280384042573], [2.348591151681709, 48.828043495186044], [2.348565569635079, 48.828111100325515], [2.348536226870846, 48.82818587187101], [2.34852224309169, 48.82819259406727], [2.348416126803135, 48.828188484115536], [2.348316227097087, 48.8281833215005], [2.348306509870758, 48.82818534160747], [2.348141118941525, 48.82827517092806], [2.347982665017698, 48.828359887119305], [2.347824210578906, 48.82844460309429], [2.347658817996165, 48.828534431727086], [2.347656544432998, 48.8285354158323], [2.347472879019364, 48.828598665156775], [2.347294170477447, 48.828658846504645], [2.3471105042006, 48.82872209436636], [2.346931793443974, 48.82878227605796], [2.346748126292556, 48.82884552335622], [2.346569416056643, 48.82890570450716], [2.346540994144193, 48.828915006133215], [2.346539219164335, 48.82891946362555], [2.346579801952959, 48.828997507291], [2.346648457952535, 48.82913528332459], [2.34671129864934, 48.82925613010079], [2.346779955348291, 48.82939390512778], [2.3468427966615533, 48.82951475180702], [2.346911454037349, 48.82965252762605], [2.346974295978445, 48.82977337330897], [2.34699220384194, 48.82977881246613], [2.347164530113572, 48.82973366936573], [2.347328930853843, 48.82969014120994], [2.347501256540787, 48.829644997620775], [2.347665656720282, 48.829601468998675], [2.347830055251939, 48.829557941040775], [2.34800238006795, 48.829512796724245], [2.348003948203073, 48.82951245271877], [2.348190442889497, 48.82947697809592], [2.348393979575132, 48.82944121649925], [2.348422911477812, 48.82944146046722], [2.348429739207231, 48.82943010350356], [2.348621394064756, 48.82935674413385], [2.34880497402613, 48.829287786091264], [2.348996627832444, 48.829214426110966], [2.349180205423062, 48.82914546837557], [2.349363783901301, 48.829076509462205], [2.349555436144578, 48.82900314857262], [2.349569040825855, 48.82900312543132], [2.3497464623318782, 48.82907025444125], [2.349922274351147, 48.829137476961506], [2.350099696769133, 48.829204605439344], [2.350275509708162, 48.829271826533], [2.3504529330383113, 48.8293389544788], [2.350628746885882, 48.829406175045115], [2.350806169765837, 48.82947330245145], [2.350981985872906, 48.829540523397164], [2.351159409665025, 48.829607650271434], [2.35133522669184, 48.82967486979047], [2.351512651396017, 48.829741996132675], [2.351688469331275, 48.829809215124385], [2.35186589494751, 48.82987634093452], [2.352041713791415, 48.829943559398885], [2.352219140319707, 48.83001068467693], [2.352394960060886, 48.830077903513235], [2.352401754850697, 48.83007911398691], [2.352499077883493, 48.83008245956427], [2.352623513235061, 48.83008264932674], [2.3526371119891, 48.8300744595005], [2.352654544366173, 48.829946122556535], [2.352674770489903, 48.82983106826328], [2.352674824887875, 48.82983019796497], [2.352672236296473, 48.82969715413219], [2.352670747493518, 48.829564950854255], [2.352669257324796, 48.82943274845267], [2.3526666687784, 48.829299703673314], [2.352665178627705, 48.829167501240406], [2.352662591455865, 48.82903445733613], [2.352661101334155, 48.82890225397261], [2.352658512823747, 48.828769210029414], [2.352657022720064, 48.828637006634565], [2.352654435595363, 48.82850396266719], [2.352652945509498, 48.828371759241], [2.352650357046243, 48.82823871523473], [2.352655185556027, 48.8282317307507], [2.352722881355415, 48.82819395470884], [2.3528423243226, 48.82812651130232], [2.35283882049259, 48.8281197308478]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 57, "roussel_fabien": 30.0, "nb_emargement": 1230.0, "nb_procuration": 54.0, "nb_vote_blanc": 9.0, "jadot_yannick": 138.0, "le_pen_marine": 74.0, "nb_exprime": 1217.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1561.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1230, "quartier_bv": "51", "geo_point_2d": [48.82880930295542, 2.350052311276821], "melenchon_jean_luc": 440.0, "poutou_philippe": 12.0, "macron_emmanuel": 343.0}, "geometry": {"type": "Point", "coordinates": [2.350052311276821, 48.82880930295542]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "74b84ae462ea0303160f09ae4500ebcdddae7657", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 65, "zemmour_eric": 101.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "3-7", "geo_shape": {"coordinates": [[[2.367829418244922, 48.85850936745307], [2.367835619160505, 48.85849886074958], [2.3678494344065992, 48.85844043832467], [2.367881833050112, 48.858309841531415], [2.367913484500079, 48.858175996818325], [2.367945882818616, 48.85804539997662], [2.367977533943406, 48.85791155521471], [2.368009930584983, 48.85778095741803], [2.3680415813736992, 48.857647113506594], [2.3680739790532073, 48.85751651566865], [2.368105629516758, 48.85738267170837], [2.368138025508523, 48.85725207381484], [2.368169675657722, 48.85711822890642], [2.368187662568569, 48.8570457203075], [2.368196154660804, 48.85703125324396], [2.36819289315969, 48.857016078389734], [2.368207303253601, 48.85695798995097], [2.368215236069919, 48.856924451925785], [2.368246761714811, 48.85679117559052], [2.368279156985071, 48.85666057758916], [2.368310682306806, 48.85652730120536], [2.368343078604649, 48.85639670406216], [2.368374602240476, 48.85626342762266], [2.368406998224946, 48.856132829531845], [2.368439394036221, 48.85600223231619], [2.368470917186934, 48.855868955803956], [2.368473189612423, 48.85585486238755], [2.368398884512231, 48.855843784126655], [2.368197817325823, 48.85587682243206], [2.368004740182239, 48.8559085490781], [2.36780367248509, 48.85594158761859], [2.367610594872341, 48.85597331272754], [2.367417517024578, 48.85600503752402], [2.367216448582756, 48.85603807507495], [2.367206118827502, 48.856047071509906], [2.367212253504776, 48.85618205953917], [2.367218382655633, 48.85631694409705], [2.367224517385532, 48.856451932992194], [2.367230647962747, 48.8565868175239], [2.367236782767117, 48.85672180548627], [2.367242912044967, 48.85685668997733], [2.3672331435187512, 48.85686558595132], [2.36704464683609, 48.85690226459844], [2.366791490501055, 48.85695152356624], [2.366602993207536, 48.85698820061548], [2.366425065715616, 48.85702282165938], [2.3662365665433542, 48.85705949812192], [2.366058638564492, 48.85709411861873], [2.365870138876367, 48.85713079450169], [2.365692210410568, 48.85716541445148], [2.365503711569468, 48.85720208976209], [2.365325782616738, 48.85723670916484], [2.36513728188595, 48.85727338478796], [2.364959352457252, 48.85730800274434], [2.364781422792119, 48.85734262043507], [2.364592921295103, 48.85737929519722], [2.364583263820952, 48.85738909808747], [2.364575972314895, 48.857440260227804], [2.364597738884904, 48.85754909634543], [2.3646192810854982, 48.85756692071521], [2.364622136970262, 48.85757135078445], [2.364647436468923, 48.85769784727064], [2.364669203295819, 48.85780668335002], [2.364694501671084, 48.857933178892885], [2.364716268694604, 48.858042014940665], [2.364706019667277, 48.858051923516264], [2.36458698999231, 48.858071287660216], [2.364473663298848, 48.85808972416726], [2.3644647495051663, 48.858094415496026], [2.364380037021932, 48.85820557115064], [2.364297381267199, 48.85831569171965], [2.364212669429946, 48.858426847240885], [2.364130012970442, 48.85853696767232], [2.364045299053441, 48.858648123045654], [2.363962641889157, 48.85875824333954], [2.363879984375576, 48.858868363565335], [2.363795270749264, 48.85897951873577], [2.363712612530791, 48.859089638824024], [2.363627896824696, 48.85920079384654], [2.363545237901421, 48.85931091379721], [2.363460522841397, 48.859422068686335], [2.363454869758114, 48.859437075712165], [2.363478295381187, 48.85944602741491], [2.363653258181956, 48.859441722815845], [2.363827057958788, 48.8594374468529], [2.364002020690948, 48.85943314264315], [2.364175819047594, 48.85942886616642], [2.364350781733096, 48.859424560547474], [2.364524581395424, 48.85942028357142], [2.364538710656489, 48.859428969855614], [2.3645450655374542, 48.85955442123254], [2.364551609210387, 48.859683617581034], [2.36455796415347, 48.85980906892846], [2.36456450926429, 48.859938264354554], [2.364585908085008, 48.85994534971861], [2.36474349371786, 48.8598731008902], [2.364901162523453, 48.859800813621334], [2.3650587486449233, 48.85972856437561], [2.3652164165757252, 48.85965627668199], [2.365374000459919, 48.8595840270045], [2.365531667516033, 48.859511738886134], [2.365689250525905, 48.85943948878408], [2.365846916696185, 48.85936720114022], [2.366004498831737, 48.859294950613666], [2.366162164138181, 48.85922266164575], [2.366319746762345, 48.85915041070189], [2.366477411194007, 48.85907812130925], [2.366634991580919, 48.8590058699336], [2.366792655137801, 48.85893358011623], [2.366950234650399, 48.858861328316095], [2.367107897332504, 48.85878903807395], [2.367265477333709, 48.8587167858565], [2.367423139141036, 48.8586444951896], [2.367580716905009, 48.858572242540426], [2.367738377837666, 48.8584999514488], [2.367829418244922, 48.85850936745307]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 7, "roussel_fabien": 14.0, "nb_emargement": 1187.0, "nb_procuration": 83.0, "nb_vote_blanc": 10.0, "jadot_yannick": 91.0, "le_pen_marine": 35.0, "nb_exprime": 1169.0, "nb_vote_nul": 8.0, "arr_bv": "03", "arthaud_nathalie": 3, "nb_inscrit": 1441.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1187, "quartier_bv": "11", "geo_point_2d": [48.85801787897877, 2.3661860439185083], "melenchon_jean_luc": 278.0, "poutou_philippe": 3.0, "macron_emmanuel": 531.0}, "geometry": {"type": "Point", "coordinates": [2.3661860439185083, 48.85801787897877]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bdb1291158377a5fd52b1429b4435b5717340d11", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 14, "zemmour_eric": 46.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-76", "geo_shape": {"coordinates": [[[2.378360102696906, 48.87080356918667], [2.378350514573967, 48.870815795343795], [2.378263759797075, 48.87088396957148], [2.378097822318264, 48.87101270111452], [2.377971594113233, 48.871111893208585], [2.377970637995658, 48.87111272912004], [2.377849928009008, 48.87123212188337], [2.377739139407144, 48.8713416077358], [2.3776184297226353, 48.87146100024799], [2.377507638784123, 48.871570485856374], [2.377386928049446, 48.87168987721109], [2.377276137489936, 48.87179936348892], [2.377155424330969, 48.87191875457836], [2.37704463279804, 48.87202824061917], [2.377026212960931, 48.872051369216585], [2.377067659827318, 48.87208030702372], [2.377242757663071, 48.87212857897743], [2.377433471764668, 48.87218013353056], [2.377608571638175, 48.87222840495186], [2.3777992864780773, 48.87227995801825], [2.377974385662986, 48.87232822889298], [2.378165101219599, 48.87237978227113], [2.378340202442361, 48.87242805261349], [2.37853091873736, 48.87247960450485], [2.378706020634591, 48.87252787430774], [2.378896737646408, 48.87257942651085], [2.379071838854923, 48.87262769576722], [2.379072042690377, 48.872627751684036], [2.379213321820764, 48.87266770898874], [2.37938842361953, 48.87271597777812], [2.379529703231814, 48.87275593470624], [2.379704806983641, 48.872804203036], [2.379842675013856, 48.87283576639904], [2.379843708153157, 48.87283601906886], [2.379981576351755, 48.87286758227099], [2.380171961521742, 48.87290850504739], [2.380172010470964, 48.8729085160929], [2.380376564474025, 48.87295592506797], [2.380566948924634, 48.87299684630657], [2.380770026366512, 48.87303835451665], [2.38096041142752, 48.87307927512641], [2.381163490878299, 48.873120781773686], [2.381353876539015, 48.873161702653846], [2.381556956624701, 48.87320320863049], [2.381747342895812, 48.87324412888184], [2.381748111429867, 48.873244277644204], [2.381934157526778, 48.873276425549335], [2.382137237158841, 48.87331793053019], [2.382165991034877, 48.873308806802164], [2.382197302238845, 48.87328557311125], [2.382208385831459, 48.873260216909806], [2.382223075215047, 48.87322660903226], [2.38223935021744, 48.873220355412506], [2.382244800271473, 48.873221216323266], [2.382442232598312, 48.87325239605837], [2.382645127476992, 48.87328443822125], [2.382661403906012, 48.87327817645795], [2.382716898377597, 48.873150816448174], [2.38277097711611, 48.87302670289346], [2.38282646968856, 48.872899342796856], [2.382880549257435, 48.87277523007068], [2.382936041304713, 48.87264786899496], [2.382990118988235, 48.872523756184016], [2.383044196424701, 48.87239964243538], [2.383099689024339, 48.872272282146795], [2.383153765927999, 48.87214816921969], [2.383209257991722, 48.87202080885129], [2.383206611526167, 48.87200943120703], [2.383188097264352, 48.87200565212459], [2.383056429065117, 48.87197289065612], [2.38292767778881, 48.87194053888679], [2.382798928046463, 48.871908186085804], [2.382667258975106, 48.87187542417931], [2.382661912025374, 48.871873007067194], [2.382537634754792, 48.871784149280764], [2.382392952570343, 48.871677511421], [2.382268674861744, 48.87158865333251], [2.382123995134081, 48.87148201513582], [2.381999718350823, 48.871393156752404], [2.381855038353524, 48.87128651820472], [2.38173076385875, 48.871197659533344], [2.38158608495506, 48.8710910206417], [2.381461810011584, 48.871002162567635], [2.381458586879679, 48.87100046415208], [2.381299793840997, 48.87093970357096], [2.381121889932656, 48.870872214052774], [2.380963097677683, 48.870811453017964], [2.3807851960175253, 48.870743962099255], [2.380626404546163, 48.87068320061074], [2.380448502397033, 48.87061570917675], [2.380289711709485, 48.8705549472345], [2.380111810423918, 48.870487456191576], [2.379953020520081, 48.87042669379563], [2.379775121482706, 48.87035920135224], [2.379616332362579, 48.87029843850257], [2.379438432836242, 48.87023094554386], [2.379279644499726, 48.870170182240535], [2.3792217009826713, 48.87013780236382], [2.379217819035133, 48.87013946129412], [2.379188266976501, 48.87016292732807], [2.379062042896447, 48.870262121547604], [2.3789277618697833, 48.87036469849952], [2.378801536804725, 48.87046389242623], [2.378667256097433, 48.87056646997356], [2.3785410300580923, 48.87066566270815], [2.378406746954425, 48.87076823993739], [2.37836727464675, 48.870799259037625], [2.378360102696906, 48.87080356918667]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 76, "roussel_fabien": 21.0, "nb_emargement": 1452.0, "nb_procuration": 90.0, "nb_vote_blanc": 11.0, "jadot_yannick": 92.0, "le_pen_marine": 37.0, "nb_exprime": 1436.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 2036.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1452, "quartier_bv": "77", "geo_point_2d": [48.871849034069704, 2.380247489869921], "melenchon_jean_luc": 924.0, "poutou_philippe": 8.0, "macron_emmanuel": 240.0}, "geometry": {"type": "Point", "coordinates": [2.380247489869921, 48.871849034069704]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7eb0e14ff1147be6a2e1d97ed4d006fdb0784100", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 64, "zemmour_eric": 79.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "3-11", "geo_shape": {"coordinates": [[[2.358131932621784, 48.863399752593686], [2.3581440867755292, 48.86339903355029], [2.3581892944156913, 48.863385411694395], [2.358237561244731, 48.863375519622], [2.358283739798079, 48.863374367860054], [2.358290749432001, 48.86336746340069], [2.35841734438983, 48.86331197443028], [2.358565382161833, 48.86324175386279], [2.358691976532753, 48.86318626369628], [2.358762801016591, 48.86315411567893], [2.358763621111917, 48.86315371266964], [2.358940090725934, 48.863060019067525], [2.35910259833602, 48.86297279496809], [2.359265104027765, 48.862885571533134], [2.359441571842803, 48.862791876269576], [2.359604077776785, 48.862704651468135], [2.359780544358232, 48.862610956588796], [2.359784038339644, 48.86260360424364], [2.359760607751837, 48.86257946367219], [2.359652373578705, 48.86248339746949], [2.3595342621937743, 48.86237885232851], [2.359426030228844, 48.862282785011764], [2.359307919753013, 48.86217823962848], [2.3591996872592, 48.86208217208233], [2.359081579055267, 48.86197762646401], [2.358973347384507, 48.861881559595076], [2.35885523872655, 48.86177701372719], [2.358747009263968, 48.86168094574417], [2.358628901515086, 48.86157639963397], [2.358520671512538, 48.86148033232091], [2.358402566035509, 48.86137578597571], [2.358308282573315, 48.861300166121765], [2.358307857626079, 48.86129980770185], [2.358189751622346, 48.86119526112233], [2.358079896745793, 48.86109745251244], [2.357961791658219, 48.86099290568884], [2.3578519376363962, 48.86089509685186], [2.357733834827845, 48.86079054979155], [2.357623980286581, 48.86069274161942], [2.357505878394266, 48.86058819431507], [2.357396024718605, 48.86049038501654], [2.357286172807271, 48.860392576515196], [2.357168070910271, 48.86028802884183], [2.35705821986463, 48.86019021921409], [2.356940118883749, 48.860085671296716], [2.356917038700995, 48.86006061554797], [2.356890784036394, 48.860064934324264], [2.356860162191347, 48.860069809703916], [2.356840543478844, 48.86009073821509], [2.356656158640136, 48.86015238669069], [2.356482188008997, 48.86021019131084], [2.356297800949451, 48.86027184011961], [2.356123830884715, 48.860329644219874], [2.355939442978491, 48.860391292469885], [2.355765472117303, 48.86044909604298], [2.355581083375326, 48.86051074283489], [2.355407110343699, 48.86056854677278], [2.355233138300135, 48.86062634956281], [2.355048748289836, 48.86068799642395], [2.355037123824084, 48.86068990694381], [2.355022804977552, 48.86069696429684], [2.354863948395486, 48.8607528784415], [2.354679557500547, 48.86081452472677], [2.3545207001916593, 48.86087043840989], [2.354336309848639, 48.86093208326783], [2.354177451801685, 48.860987997388655], [2.353993059273596, 48.861049641703815], [2.353834200510971, 48.86110555446377], [2.353649808512415, 48.86116719915023], [2.353549761223688, 48.86120241140882], [2.3535409050217853, 48.86120848992282], [2.353564366159294, 48.861238346378286], [2.353719981102559, 48.86131015075285], [2.353874449897528, 48.86138142530995], [2.354030065695512, 48.86145322927206], [2.3541845353389013, 48.8615245034197], [2.354340153354601, 48.86159630697669], [2.354494623846413, 48.86166758071486], [2.354650241364986, 48.861739382952734], [2.354804712694084, 48.861810657180776], [2.354810328557697, 48.861819570304554], [2.354773276412181, 48.861959886260564], [2.354736139741374, 48.86210051740327], [2.354699085844368, 48.862240832394114], [2.354661948773134, 48.86238146347819], [2.354624894465255, 48.86252177930979], [2.354587756993487, 48.86266241033514], [2.354595059008663, 48.862671987279114], [2.354741326475154, 48.862720540263204], [2.354889146991099, 48.86276951603502], [2.355035413653587, 48.86281806774876], [2.355183234722711, 48.862867043153074], [2.355329503284978, 48.86291559540971], [2.355454667685441, 48.86295706389599], [2.355466296593542, 48.86295725782974], [2.355488953817148, 48.86296476437798], [2.355671739587724, 48.86291154145248], [2.355851693824357, 48.8628567759178], [2.356034480208508, 48.86280355244045], [2.356214432327792, 48.862748786347666], [2.356397217962486, 48.86269556231108], [2.35657717069057, 48.86264079567484], [2.356759954212782, 48.86258757107178], [2.356939906186436, 48.86253280388479], [2.357122690322205, 48.862479578729825], [2.35730264017851, 48.86242481098478], [2.3573202616378772, 48.862428606424984], [2.357420400795392, 48.862547385650494], [2.357509037934725, 48.862652518410556], [2.35759767405768, 48.86275765198696], [2.357697814480037, 48.862876430945114], [2.357786451364893, 48.86298156436045], [2.357886594011077, 48.863100343143934], [2.358013520454923, 48.86325089098312], [2.358113664136512, 48.86336966954775], [2.358131932621784, 48.863399752593686]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 11, "roussel_fabien": 19.0, "nb_emargement": 1276.0, "nb_procuration": 88.0, "nb_vote_blanc": 7.0, "jadot_yannick": 104.0, "le_pen_marine": 45.0, "nb_exprime": 1266.0, "nb_vote_nul": 3.0, "arr_bv": "03", "arthaud_nathalie": 4, "nb_inscrit": 1609.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1276, "quartier_bv": "12", "geo_point_2d": [48.86175562611776, 2.3567190002832], "melenchon_jean_luc": 336.0, "poutou_philippe": 6.0, "macron_emmanuel": 566.0}, "geometry": {"type": "Point", "coordinates": [2.3567190002832, 48.86175562611776]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "04438bab3cba39ef6d89c588f645e2adaa0db8e9", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 169, "zemmour_eric": 201.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-37", "geo_shape": {"coordinates": [[[2.303918041629505, 48.890056648542476], [2.3039565748204662, 48.89009409124973], [2.30402350418232, 48.89011734391143], [2.30404008358079, 48.89011534124189], [2.304170989168552, 48.89001759316169], [2.304321620212195, 48.88990179309661], [2.304452524734573, 48.88980404468965], [2.304603154534333, 48.889688244247886], [2.304685829003985, 48.88962650968204], [2.304694563378126, 48.88961553822607], [2.30464309979387, 48.889586062451556], [2.304612309418724, 48.88946391664923], [2.304583002197676, 48.88934765115802], [2.304552212104484, 48.88922550531368], [2.304522905163823, 48.88910923888323], [2.304518964724247, 48.889104269684935], [2.304386533642144, 48.88901925933486], [2.304258731513266, 48.88893722102975], [2.304255551025465, 48.888935700669364], [2.304105438801371, 48.88888379409682], [2.303954781143066, 48.888831699798686], [2.303950781892301, 48.888829605394854], [2.30382780124871, 48.88873547526974], [2.303704856168581, 48.8886413703957], [2.303581876414229, 48.888547240001856], [2.303458932210956, 48.888453135758425], [2.303335953345628, 48.888359005095914], [2.303213008679578, 48.88826489967663], [2.303090030703475, 48.88817076874542], [2.302967088277945, 48.888076663964725], [2.302844111202894, 48.88798253186552], [2.302721169666222, 48.8878884268162], [2.302598193468339, 48.88779429534757], [2.302475251468896, 48.88770018912243], [2.302352276160116, 48.88760605738507], [2.30222933640104, 48.88751195179853], [2.30210636198135, 48.88741781979246], [2.301983423123268, 48.88732371303806], [2.301860449592664, 48.88722958076337], [2.301737510247702, 48.88713547463162], [2.30173430366988, 48.887133676155194], [2.301598526597923, 48.88707881556463], [2.3014005650988922, 48.8869988298236], [2.301264788718184, 48.88694396974708], [2.301066828256492, 48.88686398254521], [2.300931052578886, 48.886809122083555], [2.3009246422709, 48.88680146012378], [2.300906512918666, 48.88680023640385], [2.300727070718816, 48.886746413080445], [2.300546796264655, 48.88669234090266], [2.300367353444777, 48.886638517026945], [2.300187081101315, 48.88658444431019], [2.300007639025056, 48.8865306198901], [2.299827367428652, 48.8864765466265], [2.2998101715005452, 48.88647995076398], [2.299718130640033, 48.886576633857565], [2.2996288712022652, 48.88667039412732], [2.299618651279525, 48.88667456300449], [2.299443799131809, 48.886685861825896], [2.299268933259791, 48.88669716121134], [2.299094080960315, 48.886708459521856], [2.29891921493663, 48.886719758396275], [2.298744362485299, 48.88673105619587], [2.298569496309854, 48.88674235455934], [2.298394643706775, 48.886753651848], [2.298219777379574, 48.88676494970045], [2.298195186991492, 48.88677068989802], [2.298194469691643, 48.88677170014004], [2.298203823206054, 48.886789126458126], [2.298267371625138, 48.88690752452296], [2.298331334109302, 48.88702669029732], [2.298394883096112, 48.887145089168136], [2.298458844812347, 48.887264253941396], [2.298462775763348, 48.887268052366494], [2.298619960280293, 48.88735778309134], [2.298778175233096, 48.88744810150132], [2.298935359485573, 48.887537830890174], [2.299093575532483, 48.88762814886861], [2.299250762223405, 48.887717878735934], [2.299408979364434, 48.887808196282805], [2.299566167142458, 48.887897925721425], [2.299724385377511, 48.8879882428367], [2.299881574254632, 48.88807797094729], [2.300039793583916, 48.88816828763103], [2.300196983535855, 48.888258016212085], [2.300355202595591, 48.888348332456275], [2.300364069315359, 48.88836044878199], [2.300373935791455, 48.88836200111907], [2.300539176639551, 48.88844050586254], [2.300696209296796, 48.88851577070886], [2.300853243783765, 48.88859103445275], [2.301018486069222, 48.88866953941765], [2.3011755214857432, 48.88874480272839], [2.301340764745052, 48.888823307237544], [2.301497799715363, 48.88889857100639], [2.301663043960589, 48.88897707416057], [2.301820081224162, 48.88905233750417], [2.301985326431184, 48.889130841101846], [2.30214236463638, 48.88920610311302], [2.302307610817263, 48.889284606254925], [2.302464649952022, 48.88935986783288], [2.302629897106771, 48.889438370519024], [2.3027869358073803, 48.88951363165582], [2.302952183935993, 48.88959213388625], [2.303109224917852, 48.88966739549703], [2.303274474020339, 48.88974589727167], [2.303431515943808, 48.88982115754997], [2.303596766020168, 48.88989965886887], [2.303753807509486, 48.889974918705995], [2.303919058559721, 48.89005341956913], [2.303918041629505, 48.890056648542476]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 37, "roussel_fabien": 2.0, "nb_emargement": 1160.0, "nb_procuration": 63.0, "nb_vote_blanc": 4.0, "jadot_yannick": 55.0, "le_pen_marine": 56.0, "nb_exprime": 1152.0, "nb_vote_nul": 5.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1399.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1161, "quartier_bv": "66", "geo_point_2d": [48.88813023448712, 2.301564190697039], "melenchon_jean_luc": 94.0, "poutou_philippe": 3.0, "macron_emmanuel": 543.0}, "geometry": {"type": "Point", "coordinates": [2.301564190697039, 48.88813023448712]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bc08f25395d4509892c745fc4bda0ed4d9b5fdfd", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 26, "zemmour_eric": 48.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-15", "geo_shape": {"coordinates": [[[2.387526865820916, 48.87612927178807], [2.387520811208206, 48.876112425098974], [2.387473400542616, 48.87599972732776], [2.387421276044122, 48.87587665229005], [2.387420786927906, 48.87587453545689], [2.387415378745708, 48.87576320371233], [2.387415226929278, 48.87561324104733], [2.387409818786096, 48.87550190927616], [2.387409824066149, 48.875501228508405], [2.3874096722664753, 48.87535126580778], [2.387417742625316, 48.87522952215997], [2.387428359641524, 48.87509411267644], [2.387436429927417, 48.87497236809969], [2.387447046842524, 48.87483695858292], [2.387455117034419, 48.87471521487581], [2.387458159729707, 48.874678963932524], [2.387441311004044, 48.87467211023234], [2.387380889567606, 48.874668604797364], [2.387245983987933, 48.87465990934712], [2.387031893845771, 48.87464748705767], [2.386896988379058, 48.874638791213954], [2.3868919595996623, 48.87463779687565], [2.386739059277842, 48.87458250145823], [2.386570136016959, 48.87452378720536], [2.386568361371625, 48.874523050550366], [2.386415463093523, 48.87446775472088], [2.386241709141118, 48.87438262338921], [2.386078192300929, 48.87429909295135], [2.385904439462411, 48.874213961117135], [2.385740925055918, 48.87413043021279], [2.385567173331281, 48.87404529787605], [2.385497362124774, 48.874009635264834], [2.385477740216804, 48.874003173544416], [2.385443801287435, 48.87403508754463], [2.385396939306304, 48.874056906710685], [2.385353692800937, 48.87407793232413], [2.38533686448769, 48.874090646134405], [2.385352051237032, 48.87410300721805], [2.385510471608546, 48.874182353989994], [2.385671802465283, 48.874262233497085], [2.3856765681261782, 48.874272237861355], [2.385612364717177, 48.87440088539808], [2.385548789748154, 48.87452801084308], [2.385484585708272, 48.874656658281445], [2.385421010115084, 48.874783783629105], [2.3853568054338012, 48.87491243186839], [2.385293229227154, 48.875039556219456], [2.385229023914869, 48.87516820436039], [2.385165447084243, 48.87529532861411], [2.385101241141049, 48.87542397665666], [2.385037663686234, 48.87555110081305], [2.3849740859105513, 48.87567822582028], [2.384909877669941, 48.87580687280927], [2.38484629927005, 48.875933997719144], [2.384782091761977, 48.87606264461679], [2.384718512737975, 48.8761897694293], [2.384654304598861, 48.87631841622859], [2.3845907249508382, 48.876445540943756], [2.384526516180777, 48.87657418764463], [2.384516568921138, 48.87658014763672], [2.384314032907962, 48.87661010701012], [2.384093358359805, 48.87664297469043], [2.383890821858881, 48.876672933346086], [2.383670146788109, 48.87670579934509], [2.383632736325062, 48.87671133277785], [2.383616412939963, 48.87671791008237], [2.3836214707337993, 48.876733285022915], [2.383662795649407, 48.87681912138552], [2.383706351776077, 48.87691033462661], [2.383747676972051, 48.87699617094613], [2.383791233395438, 48.87708738414165], [2.383807074267022, 48.87709347861208], [2.383993423899756, 48.87706733810872], [2.384176894281686, 48.87704161058598], [2.3843632448959973, 48.877015470411955], [2.384546714912431, 48.876989742321214], [2.38473306516617, 48.87696360067101], [2.384916534817199, 48.87693787201227], [2.38510288333633, 48.876911729778215], [2.385286353985346, 48.87688600055848], [2.385289250924509, 48.87688580409126], [2.385398129040458, 48.87688633254932], [2.385535672498408, 48.87688674454404], [2.385538362119522, 48.87688840322716], [2.385565917326711, 48.87688680805215], [2.385649289805101, 48.87688705787717], [2.38580264139594, 48.87688710552153], [2.3860235573405513, 48.87688776661586], [2.386176908933817, 48.87688781378079], [2.386180060008526, 48.876887571829855], [2.38637843263055, 48.8768565168621], [2.386578476496595, 48.87682523990084], [2.386776848643652, 48.87679418427112], [2.386976892031031, 48.876762906642355], [2.387175263703212, 48.876731850350694], [2.3873753052485203, 48.87670057204742], [2.387384703635765, 48.876695346463116], [2.387467652506292, 48.876566965042564], [2.387543617226971, 48.87644648262447], [2.387544142861123, 48.87644039323993], [2.3874838585083, 48.8763066869006], [2.387422011855493, 48.87616974391637], [2.387428103436099, 48.87615944895738], [2.387462727006404, 48.876145849259], [2.387481368509905, 48.87613919155932], [2.387526865820916, 48.87612927178807]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 15, "roussel_fabien": 23.0, "nb_emargement": 1194.0, "nb_procuration": 89.0, "nb_vote_blanc": 9.0, "jadot_yannick": 131.0, "le_pen_marine": 38.0, "nb_exprime": 1179.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1485.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1194, "quartier_bv": "76", "geo_point_2d": [48.87580235845676, 2.3860233759362384], "melenchon_jean_luc": 527.0, "poutou_philippe": 7.0, "macron_emmanuel": 322.0}, "geometry": {"type": "Point", "coordinates": [2.3860233759362384, 48.87580235845676]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "81c66772bf0300a448e50f537e8081433568f99d", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 65, "zemmour_eric": 53.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-55", "geo_shape": {"coordinates": [[[2.3412863345711212, 48.830266367043095], [2.341282002997945, 48.83027507070568], [2.341279865399606, 48.830317242243], [2.341270229030553, 48.830457916810886], [2.341263914083327, 48.83058250457926], [2.341254277622197, 48.83072317911258], [2.341247962616183, 48.83084776595132], [2.341241647568621, 48.830972353675214], [2.341232009613047, 48.83111302815027], [2.341225695868787, 48.831237614952], [2.341216057821227, 48.8313782893925], [2.341200425891237, 48.8314832688828], [2.341190789092176, 48.83162394329788], [2.341175157037639, 48.831728922761904], [2.341197556149274, 48.83175648149526], [2.341232135818957, 48.83176331472837], [2.341413164458594, 48.83171347827879], [2.341589681202873, 48.83166512586361], [2.341770707808876, 48.831615287961675], [2.341947225251256, 48.83156693502211], [2.342128251163117, 48.831517097473984], [2.34230476657918, 48.831468743994996], [2.342485791808255, 48.83141890590135], [2.342662307922307, 48.831370551897926], [2.342843332468694, 48.83132071325878], [2.343019846556529, 48.83127235871593], [2.343200871793551, 48.83122251863945], [2.343377385217162, 48.83117416356474], [2.343558408397956, 48.83112432383454], [2.343734922519639, 48.83107596823538], [2.343915945017632, 48.831026127959724], [2.344092457112994, 48.83097777182119], [2.344273478928185, 48.830927931], [2.344449991721607, 48.83087957433704], [2.344631012865295, 48.83082973207105], [2.344807523632392, 48.83078137486876], [2.344988545444044, 48.830731532964], [2.345165055547105, 48.83068317522982], [2.345346075313859, 48.83063333277211], [2.34552258611486, 48.83058497451352], [2.345703605198694, 48.830535131510324], [2.345880113973471, 48.83048677271237], [2.345906535391015, 48.83045828028538], [2.345905166037229, 48.83042117276692], [2.345868437031815, 48.830377536674185], [2.345849284066544, 48.8303752392466], [2.345835385746922, 48.830376704753476], [2.345743434328167, 48.83026217387486], [2.345658857124338, 48.83015621650936], [2.345566907833078, 48.83004168637921], [2.345482331345741, 48.82993572886802], [2.34539038148041, 48.82982119767289], [2.345305805709561, 48.82971524001606], [2.345213857982985, 48.82960070867011], [2.34512928156646, 48.82949475086015], [2.345037334616672, 48.829380219355976], [2.344952760278772, 48.829274261407804], [2.34486081273211, 48.829159730637244], [2.3447762391106712, 48.82905377254344], [2.344767931123382, 48.82904931739541], [2.344591068167468, 48.829015957321594], [2.344416841728633, 48.8289832140172], [2.344239979221638, 48.82894985342221], [2.344065753224227, 48.828917109604454], [2.343888891177475, 48.82888374758895], [2.343714665621498, 48.82885100325783], [2.343537804012359, 48.8288176416205], [2.343363580259949, 48.8287848967835], [2.343189355364366, 48.82875215168421], [2.343012494437973, 48.82871878836781], [2.342838269983835, 48.82868604275515], [2.342661409495054, 48.82865267981692], [2.342656318660022, 48.828652378425744], [2.342458910596023, 48.8286652686046], [2.342254185828055, 48.82867871540258], [2.342056778915686, 48.82869160582421], [2.341852053940475, 48.82870505193353], [2.341840765605955, 48.828710643280445], [2.341773070690241, 48.8288216771485], [2.341709498568561, 48.82892324346274], [2.34170851782895, 48.82892636788759], [2.341703355600671, 48.82905761126216], [2.341700997926647, 48.829191784930586], [2.341695835641699, 48.82932302917308], [2.341693477947673, 48.829457201910245], [2.341688315617512, 48.829588446121335], [2.3416859578807703, 48.82972261972592], [2.341680795516853, 48.829853863006306], [2.3416784377486533, 48.82998803657898], [2.341673275339521, 48.83011927982798], [2.341670917539963, 48.830253453368705], [2.341657520698882, 48.83026234098164], [2.341491652881057, 48.83026414303779], [2.34135811731166, 48.830266532140485], [2.3412863345711212, 48.830266367043095]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 55, "roussel_fabien": 24.0, "nb_emargement": 972.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 60.0, "le_pen_marine": 79.0, "nb_exprime": 951.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1271.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 973, "quartier_bv": "51", "geo_point_2d": [48.83010015725705, 2.343209469816201], "melenchon_jean_luc": 317.0, "poutou_philippe": 8.0, "macron_emmanuel": 294.0}, "geometry": {"type": "Point", "coordinates": [2.343209469816201, 48.83010015725705]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e5138f9f0df93e077795164248230295bcf4515f", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 134, "zemmour_eric": 136.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-74", "geo_shape": {"coordinates": [[[2.282268143191398, 48.838974659773406], [2.282287894676777, 48.83896627831632], [2.282323861272458, 48.838941849510526], [2.282359359275332, 48.838916223515895], [2.282374615866433, 48.83891398027479], [2.282497220173918, 48.838947415126746], [2.282608904695615, 48.83897894424664], [2.282610676026961, 48.83897953046809], [2.282764070609776, 48.839039852057354], [2.282922163993755, 48.83910092200948], [2.2829453585300348, 48.83910431767734], [2.282955206986164, 48.83909071884832], [2.283059699927578, 48.838987111540064], [2.28316224023168, 48.83888606463657], [2.283264778775721, 48.838785017627835], [2.283369270501305, 48.83868140912152], [2.28337654108917, 48.83867781022103], [2.283560031533848, 48.8386398891867], [2.283741840112569, 48.838602287870096], [2.283925330037974, 48.83856436537356], [2.284107138077287, 48.838526764398495], [2.2842906274710533, 48.83848884133904], [2.28447243499576, 48.83845123890694], [2.284655923845536, 48.83841331618392], [2.28483773084338, 48.838375713194075], [2.285019537578806, 48.83833810992664], [2.285203026994662, 48.83830018636873], [2.285384833203216, 48.83826258254355], [2.28556832073727, 48.838224657515255], [2.285750126406522, 48.83818705403165], [2.285933613409011, 48.83814912844047], [2.286115418563503, 48.83811152349984], [2.286298905022004, 48.838073598245074], [2.286480709649611, 48.838035992746725], [2.286664195588752, 48.83799806602978], [2.286673649358086, 48.837998386822676], [2.286834285622441, 48.83804398231982], [2.286994822320081, 48.838089307192476], [2.287155460507849, 48.83813490226273], [2.287315997752496, 48.838180227599935], [2.287323980977667, 48.83818078330953], [2.287413352750509, 48.838168532971764], [2.287561185376247, 48.83814936654369], [2.287577026453004, 48.8381185818397], [2.287542132526863, 48.838101838149086], [2.287431828463828, 48.83807200546577], [2.287254394834185, 48.83802574318446], [2.2870846138278518, 48.83797982303902], [2.286907179457808, 48.83793356023075], [2.286737399057629, 48.83788763958872], [2.286559965309658, 48.837841376261586], [2.286390185515633, 48.837795455122965], [2.286212753751795, 48.83774919128511], [2.286042974564031, 48.8377032696499], [2.285865542059911, 48.83765700528509], [2.2856957634782082, 48.83761108315326], [2.285694909861242, 48.83761083792318], [2.28552309004011, 48.83755680899518], [2.285332837723082, 48.8374958515403], [2.285161020018636, 48.83744182209479], [2.285160074890904, 48.837441494470966], [2.2849698234194022, 48.83738053643243], [2.284785403475167, 48.8373103548046], [2.284611818624371, 48.83724083037485], [2.284427398293999, 48.83717064817817], [2.284253815748302, 48.83710112322837], [2.284069396394346, 48.837030940470946], [2.283895813441415, 48.836961414085515], [2.283711396413756, 48.836891231674834], [2.283537814403586, 48.83682170476121], [2.283537574535158, 48.836821611588306], [2.283381403157228, 48.83675933515117], [2.2832078220264442, 48.83668980775045], [2.28305165007515, 48.836627530867275], [2.282878071172977, 48.83655800388732], [2.282721900010546, 48.836495726566284], [2.282548320637272, 48.836426198192164], [2.282392151625929, 48.83636392044146], [2.282218573119026, 48.83629439247992], [2.2820624048965428, 48.83623211429136], [2.281888827280876, 48.836162584943814], [2.281732658484938, 48.83610030630922], [2.281695407499209, 48.836085384131884], [2.281695348945436, 48.836085381981455], [2.281656791566721, 48.83613727908115], [2.281668143215379, 48.83626243137145], [2.281679214089249, 48.83638729955667], [2.28169056722091, 48.83651245092578], [2.281701636839268, 48.836637319072786], [2.2817129900668283, 48.83676247131104], [2.281724059804389, 48.83688733852879], [2.281735413140243, 48.83701249073694], [2.281746482972224, 48.837137358824], [2.281757836428866, 48.83726251010277], [2.28176890636766, 48.83738737815978], [2.281757297979694, 48.83739680044551], [2.281594504633212, 48.83741268068203], [2.281423334100567, 48.83742921188391], [2.2814132420688242, 48.83744228840694], [2.281503630733532, 48.83755603283258], [2.281590830880599, 48.83766627565202], [2.281681220321355, 48.83778001992068], [2.281768421218738, 48.83789026258859], [2.281766742860967, 48.83790023555353], [2.281642889086589, 48.837996819279205], [2.28152257715882, 48.838089653073894], [2.281398722469531, 48.83818623742971], [2.281278409669681, 48.838279070963125], [2.281262818078173, 48.83828911770973], [2.28126755356062, 48.838300314576635], [2.281391966388374, 48.83838395545932], [2.281513291847868, 48.8384658472665], [2.281637705465057, 48.838549487881224], [2.281759031708329, 48.83863137852771], [2.281883446114956, 48.8387150188745], [2.282004773117225, 48.83879691015888], [2.282129188313297, 48.83888055023768], [2.282250516099346, 48.83896244036137], [2.282268143191398, 48.838974659773406]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 74, "roussel_fabien": 14.0, "nb_emargement": 1227.0, "nb_procuration": 59.0, "nb_vote_blanc": 13.0, "jadot_yannick": 92.0, "le_pen_marine": 70.0, "nb_exprime": 1211.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1572.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "60", "geo_point_2d": [48.83773805073916, 2.2833957350721037], "melenchon_jean_luc": 220.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}, "geometry": {"type": "Point", "coordinates": [2.2833957350721037, 48.83773805073916]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9b429dc877459ce217f2bdb9cf82b794614bab43", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 92, "zemmour_eric": 138.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-65", "geo_shape": {"coordinates": [[[2.291991049883198, 48.84126195194225], [2.291998127959426, 48.84126729112032], [2.292157841205554, 48.841346311438855], [2.292315513510645, 48.8414241520804], [2.292475227718636, 48.841503171964085], [2.292632902346827, 48.84158101128512], [2.292792617504478, 48.84166003163326], [2.292950291718847, 48.841737870516994], [2.293110007850569, 48.84181688953097], [2.293267684363647, 48.84189472889279], [2.293427401457242, 48.84197374747191], [2.293585077556501, 48.84205158639639], [2.293742755501285, 48.84212942421638], [2.293902474034339, 48.8422084421446], [2.294060151553013, 48.84228628042657], [2.294219871048048, 48.84236529791993], [2.294377550889937, 48.84244313488137], [2.294537271334581, 48.84252215283911], [2.29469495076254, 48.84259998936322], [2.294854672181347, 48.84267900598686], [2.294857895443827, 48.84268126531201], [2.294946985439282, 48.842770654266886], [2.295013365617513, 48.84284251554206], [2.295047376129512, 48.84288468586583], [2.295049395107086, 48.84288501524023], [2.295050939579329, 48.84288526807018], [2.295106280095529, 48.84286819410008], [2.2951317546060412, 48.84286620100895], [2.295378026363183, 48.8428536801471], [2.295566031281484, 48.842860823023386], [2.295592423782618, 48.8428607724781], [2.295602482595903, 48.84279905503131], [2.295701078011087, 48.842686082254325], [2.295800087907832, 48.84257245348966], [2.295898682466125, 48.84245948052691], [2.29599769013911, 48.84234585156767], [2.296096283840323, 48.84223287841908], [2.296195292026668, 48.84211924838193], [2.296293884870906, 48.842006275047574], [2.296392890821378, 48.8418926457151], [2.296491482808758, 48.84177967219495], [2.296590489260454, 48.84166604268388], [2.296689079040455, 48.84155306807069], [2.296788084630916, 48.841439438372994], [2.296886674904401, 48.841326464481284], [2.296985679633634, 48.84121283459704], [2.297084267687636, 48.84109986051156], [2.2971832715677802, 48.84098622954139], [2.29717772525543, 48.84097376047894], [2.297020406400129, 48.84091999544661], [2.296850647091336, 48.840861751967665], [2.296693328911409, 48.840807986499826], [2.296523571683231, 48.84074974345821], [2.296366254178876, 48.84069597755484], [2.296196496330707, 48.840637733135935], [2.29603917950183, 48.840583966797055], [2.295869422371827, 48.84052572280744], [2.295712106218324, 48.84047195603307], [2.295588613451407, 48.84042958447927], [2.29558540129874, 48.84042136960751], [2.295541654647019, 48.840418067624206], [2.29549539105092, 48.8404021938008], [2.295313641579213, 48.840339666628516], [2.29514388743024, 48.84028142070532], [2.29496213880125, 48.840218892992276], [2.294792384063936, 48.84016064745521], [2.294610637640185, 48.84009811920937], [2.294440883688916, 48.840039873167235], [2.2942711301292222, 48.83998162598188], [2.294089384955137, 48.839919096934096], [2.2940736180662222, 48.83992060566778], [2.293926399585369, 48.84001454121088], [2.293780886572636, 48.8401071591663], [2.29363366704948, 48.84020109343411], [2.29348815299576, 48.840293711018035], [2.293340932418113, 48.84038764490991], [2.293195417323401, 48.8404802621222], [2.293048195679057, 48.84057419653745], [2.29290267954334, 48.840666813378206], [2.292757164252811, 48.84075943004232], [2.292609939679963, 48.840853362987346], [2.292464423348426, 48.840945979279915], [2.292317197708846, 48.84103991274829], [2.292171680336293, 48.84113252866928], [2.292024453654392, 48.84122646086234], [2.291991049883198, 48.84126195194225]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 65, "roussel_fabien": 17.0, "nb_emargement": 1136.0, "nb_procuration": 57.0, "nb_vote_blanc": 21.0, "jadot_yannick": 87.0, "le_pen_marine": 60.0, "nb_exprime": 1113.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1376.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "57", "geo_point_2d": [48.84133637001086, 2.2946928793608494], "melenchon_jean_luc": 228.0, "poutou_philippe": 2.0, "macron_emmanuel": 432.0}, "geometry": {"type": "Point", "coordinates": [2.2946928793608494, 48.84133637001086]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "de73aed83459fa5667c139ffbdd5bd5b145d0b33", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 189, "zemmour_eric": 179.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "16-18", "geo_shape": {"coordinates": [[[2.264787514487668, 48.85584625002198], [2.264806568482284, 48.85587404670997], [2.264920148981491, 48.855954828050265], [2.265008830610364, 48.856021203277336], [2.265010852922762, 48.85602238216943], [2.265131749125444, 48.85608536761985], [2.265278797586149, 48.85615531088677], [2.265399694408474, 48.85621829695825], [2.265546743616679, 48.8562882389883], [2.265724019855107, 48.85636702445612], [2.265871069918398, 48.85643696607824], [2.2660483457903933, 48.85651575104669], [2.266195398071622, 48.85658569226929], [2.266198244268715, 48.85658673049643], [2.266388303355659, 48.856637600764735], [2.266595212408215, 48.85669644699545], [2.266785272282929, 48.856747316628265], [2.266944533103116, 48.856789722274534], [2.267103795545391, 48.85683212771552], [2.267293855048796, 48.85688299652601], [2.267294799120133, 48.85688322264975], [2.2674881382068808, 48.856923721829226], [2.267703582492215, 48.85696951739544], [2.267896922216903, 48.857010015911314], [2.268112367205605, 48.85705581163728], [2.268305707580858, 48.857096308590286], [2.268521153285762, 48.85714210357669], [2.26852132587418, 48.857142139706674], [2.2687146668749962, 48.857182636895104], [2.268900944988165, 48.85722043750723], [2.269094286574571, 48.857260934079456], [2.269222371562456, 48.85728692538966], [2.269243326681337, 48.85728734385318], [2.269261878483111, 48.85725747161986], [2.269268388186118, 48.85722674790188], [2.269276191476102, 48.85718483776141], [2.269292310596613, 48.857177105474136], [2.2694735454283013, 48.85720027870069], [2.269652353648086, 48.857223210202264], [2.269833588800166, 48.85724638288258], [2.270012398699493, 48.85726931385356], [2.270193632809294, 48.85729248597927], [2.270372443025189, 48.85731541641135], [2.270387812328221, 48.85730973264217], [2.270434333354473, 48.85722745425025], [2.270518389420055, 48.85707474383317], [2.270564911393163, 48.8569924653814], [2.270577155335245, 48.85697412474313], [2.270561802573491, 48.85696228013201], [2.270488641157371, 48.85684065899032], [2.270405008965004, 48.85669730388684], [2.270405115526533, 48.856690667265546], [2.270461641581588, 48.85659951378885], [2.270520475080777, 48.856500754074084], [2.27057700072799, 48.856409600527286], [2.270635833793988, 48.856310840738864], [2.27063115016175, 48.856300269898576], [2.2704926063765463, 48.85623397895429], [2.270350763740998, 48.85616444352384], [2.270212220661077, 48.85609815314614], [2.270070378769459, 48.85602861737486], [2.269931836420006, 48.85596232576514], [2.269789995272422, 48.855892789653], [2.26965145364074, 48.855826497710524], [2.269509613224478, 48.855756962156846], [2.269507699201812, 48.85574416426997], [2.269490062316984, 48.85573342256567], [2.269484753447307, 48.85572770799816], [2.269453528858609, 48.855606302507255], [2.269422195652178, 48.85548691899215], [2.269390972728858, 48.855365512567616], [2.269359639797938, 48.855246129909524], [2.269328417164658, 48.85512472344235], [2.269297084534466, 48.85500533984274], [2.269265860815906, 48.854883934223864], [2.269234528473729, 48.85476455058199], [2.269205101826737, 48.8547236666884], [2.269200029880853, 48.85472332183476], [2.269153182230218, 48.85473737601474], [2.268987773351992, 48.85478699962518], [2.268791226572586, 48.854843577253554], [2.26862581564982, 48.85489320035059], [2.268429268076705, 48.85494977737902], [2.26826385782228, 48.85499940087858], [2.26806730945556, 48.85505597730711], [2.267901897169119, 48.85510559939394], [2.267762676551388, 48.855146614564454], [2.267597265049921, 48.85519623623445], [2.267458042587416, 48.85523725103885], [2.267456830653543, 48.855237563791796], [2.267253009579847, 48.85528259243414], [2.267068510578718, 48.85532352018216], [2.266884009937485, 48.855364446736594], [2.266680187872454, 48.85540947439809], [2.266495687972125, 48.85545040125824], [2.266291865235296, 48.85549542825482], [2.266231024081094, 48.85550892422048], [2.266208527912858, 48.85550746420734], [2.266184964387597, 48.855518598585945], [2.2660613063475212, 48.85554602883908], [2.26588696596861, 48.85558531458609], [2.265702464822517, 48.855626240216715], [2.265528123904674, 48.85566552543808], [2.265343622205396, 48.855706449613216], [2.265169280735949, 48.855745735208174], [2.264984778470817, 48.855786658827085], [2.264810436462341, 48.855825943896384], [2.264787514487668, 48.85584625002198]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 18, "roussel_fabien": 1.0, "nb_emargement": 1124.0, "nb_procuration": 64.0, "nb_vote_blanc": 10.0, "jadot_yannick": 36.0, "le_pen_marine": 55.0, "nb_exprime": 1114.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1438.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1125, "quartier_bv": "62", "geo_point_2d": [48.85614100050123, 2.2681138984071945], "melenchon_jean_luc": 71.0, "poutou_philippe": 2.0, "macron_emmanuel": 562.0}, "geometry": {"type": "Point", "coordinates": [2.2681138984071945, 48.85614100050123]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "36f5bf43b5a6725c35491a5df6e82eaec677a08b", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 62, "zemmour_eric": 82.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "18-39", "geo_shape": {"coordinates": [[[2.3380516308034203, 48.89339588860925], [2.3380418065521322, 48.89336350006095], [2.337871700219313, 48.89326729258101], [2.337740398868149, 48.89318135478686], [2.337739760798715, 48.89318101491141], [2.337589548440492, 48.89310695763103], [2.337439549139904, 48.89303194625283], [2.337289337638755, 48.892957888585826], [2.337139340563943, 48.89288287682889], [2.336989129919864, 48.89280881877524], [2.336839132343201, 48.89273380662457], [2.336688922556191, 48.89265974818431], [2.336538927205288, 48.89258473565496], [2.33638871827524, 48.892510676828046], [2.33623872242259, 48.89243566390486], [2.336088514349606, 48.892361604691345], [2.335938519358907, 48.89228659138201], [2.335788313506774, 48.8922125317894], [2.335638319377922, 48.89213751809384], [2.335488113019152, 48.89206345810705], [2.335338119752247, 48.891988444025266], [2.335187914250532, 48.89191438365187], [2.335037923209351, 48.89183936919144], [2.334985399736714, 48.8918245273484], [2.334968616812121, 48.89183846179995], [2.3349390828267342, 48.89192001215648], [2.334886490772672, 48.89205658996704], [2.334843172703047, 48.892176195053636], [2.334790580138637, 48.89231277279022], [2.334747262999354, 48.89243237782174], [2.334694669913102, 48.89256895638353], [2.334651350976563, 48.892688561344855], [2.334598757391438, 48.892825138933375], [2.334555438021431, 48.89294474383204], [2.334551775464353, 48.892948946701004], [2.334422157546674, 48.89303289042537], [2.33426817778914, 48.89313280454865], [2.334138557592703, 48.8932167479444], [2.333984578111031, 48.893316661693866], [2.333854956999644, 48.89340060476855], [2.333700975066185, 48.89350051812901], [2.333571354403567, 48.89358446089024], [2.333417371382237, 48.89368437386927], [2.333287748440929, 48.89376831630185], [2.333133765695351, 48.89386822890705], [2.333004141839074, 48.89395217101855], [2.332997898301059, 48.89395447807882], [2.332802925181834, 48.89398666417883], [2.332609081691626, 48.89402040309209], [2.332580706223339, 48.89403438859398], [2.332580096813307, 48.89404085852093], [2.332652997863176, 48.89410663115705], [2.332698777281532, 48.89414539884875], [2.3327127729763673, 48.89414886818176], [2.332901128087997, 48.8941210142713], [2.333090551708901, 48.89409203556736], [2.333278906412822, 48.89406418106127], [2.333468329616688, 48.89403520175827], [2.333656683912995, 48.89400734665658], [2.333846105335978, 48.89397836674694], [2.334034460588297, 48.893950511057156], [2.334223881594229, 48.893921530548496], [2.334412236438816, 48.8938936742631], [2.33460165702769, 48.89386469315537], [2.334790010100806, 48.89383683626679], [2.334979431636347, 48.893807854567584], [2.334995736615948, 48.89381441034289], [2.33503952979079, 48.89392861116652], [2.335085295996698, 48.894047035341764], [2.3351290881998032, 48.894161236100814], [2.335174856166158, 48.89427966112354], [2.33521864876137, 48.894393861825584], [2.335264415783556, 48.894512285882136], [2.335308208770977, 48.894626486527166], [2.335341563892427, 48.89471279340673], [2.335361445814756, 48.89473951198459], [2.33539638599072, 48.894733182220136], [2.335586252600453, 48.89477247583977], [2.335776373071575, 48.89481145759959], [2.335966241617399, 48.89485075062154], [2.336156362658752, 48.89488973177531], [2.336346231776801, 48.894929024192], [2.336536352024718, 48.894968004732185], [2.336726221714882, 48.89500729654359], [2.336916343896983, 48.895046276485296], [2.33710621414801, 48.89508556859071], [2.337296336911776, 48.89512454702709], [2.337329211381299, 48.89511773762239], [2.33732767205649, 48.895091332229256], [2.33724537596756, 48.894972828303864], [2.337160835444948, 48.89485184234753], [2.337078540102854, 48.894733339180846], [2.336994001732007, 48.89461235218857], [2.336911707148183, 48.894493848881346], [2.336827168178677, 48.894372862636565], [2.336744874353115, 48.8942543591888], [2.336660337535448, 48.894133371908076], [2.336578044468137, 48.89401486831974], [2.336493507063156, 48.8938938808873], [2.33641121475409, 48.89377537715845], [2.336326679477897, 48.8936543904886], [2.336336159000185, 48.8936418408191], [2.336484121957677, 48.893620549102764], [2.336566047457889, 48.89361295227327], [2.336588136242574, 48.89361666833841], [2.33661420681966, 48.893605140458575], [2.3366789376371733, 48.89359582501994], [2.336874894804561, 48.893569166203825], [2.337087587996961, 48.893538559059664], [2.337283544739579, 48.89351189957345], [2.337496237469355, 48.89348129080258], [2.337692195150916, 48.89345463065384], [2.337904887394965, 48.89342402205486], [2.338030004082699, 48.893406998900524], [2.3380516308034203, 48.89339588860925]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 39, "roussel_fabien": 32.0, "nb_emargement": 1447.0, "nb_procuration": 85.0, "nb_vote_blanc": 13.0, "jadot_yannick": 133.0, "le_pen_marine": 62.0, "nb_exprime": 1428.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1786.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1447, "quartier_bv": "69", "geo_point_2d": [48.89349347391654, 2.335644414397406], "melenchon_jean_luc": 546.0, "poutou_philippe": 10.0, "macron_emmanuel": 445.0}, "geometry": {"type": "Point", "coordinates": [2.335644414397406, 48.89349347391654]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "037f5c1e2a27c81546b07be22067fe4a38c20c8d", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 109, "zemmour_eric": 83.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "15-58", "geo_shape": {"coordinates": [[[2.300633353877978, 48.835062881695634], [2.300640454686854, 48.83507871441518], [2.300664100964998, 48.83510667569245], [2.3007358087189322, 48.835191850989844], [2.300851052936317, 48.83532811960187], [2.300922761288297, 48.8354132956696], [2.300917233775838, 48.83542561085853], [2.300809557777811, 48.83546328398757], [2.300708312662295, 48.83549837564224], [2.300701271515023, 48.8355080477072], [2.300733641939695, 48.835618431750085], [2.300768477915661, 48.83572865121056], [2.300800849981856, 48.83583903522145], [2.300835686235297, 48.83594925553998], [2.300827757954052, 48.83595934692708], [2.300662065817757, 48.836006658415826], [2.300491467014453, 48.83605531612093], [2.300325774267773, 48.83610262713974], [2.300155174836469, 48.83615128436105], [2.29998948147961, 48.83619859490996], [2.299818881420307, 48.83624725164746], [2.2996531874652533, 48.8362945608272], [2.299482586765872, 48.83634321798017], [2.299316892200447, 48.83639052669001], [2.299176588573765, 48.83643054163239], [2.299159540651212, 48.836440375316144], [2.299169759580655, 48.836455816260866], [2.299307606821845, 48.83656073341405], [2.299447165852421, 48.836666255805426], [2.299585014208483, 48.83677117261916], [2.299724574352086, 48.83687669556634], [2.299862423823033, 48.83698161204062], [2.300001985103637, 48.837087133744966], [2.3000016471789912, 48.8370992094338], [2.29986920176078, 48.83719219200198], [2.299736544461453, 48.83728498880693], [2.299604096735834, 48.83737797105817], [2.299471438491837, 48.83747076755368], [2.299338991183606, 48.83756374950392], [2.299206331994733, 48.83765654568997], [2.299073883729541, 48.83774952823053], [2.298941222245617, 48.83784232319991], [2.298942281623173, 48.83785533432047], [2.299104585668568, 48.837946856655584], [2.299260467560087, 48.83803473915546], [2.299422772710714, 48.83812626194345], [2.299578655675134, 48.83821414401454], [2.299734539165299, 48.83830202587559], [2.299896845992705, 48.83839354709912], [2.300052730555778, 48.83848142853144], [2.300215038488445, 48.83857295020786], [2.300215672968241, 48.838573286686874], [2.30023451907637, 48.83857609415098], [2.300248183521738, 48.838563186273866], [2.300371382549207, 48.83845889367697], [2.300496421409693, 48.83835280037237], [2.300619619455273, 48.838248506600884], [2.300744657305701, 48.83814241301681], [2.300867854345368, 48.83803811986938], [2.3009928911858513, 48.837932026005845], [2.301116087243538, 48.83782773168378], [2.301241124436446, 48.8377216375488], [2.3012412209684, 48.83771067657458], [2.30110560335912, 48.83759279779463], [2.300972606259092, 48.83747512752395], [2.300970785057622, 48.83746656565592], [2.301026795572007, 48.837368879447354], [2.301081914598785, 48.83727619030184], [2.301082837951085, 48.83727337346856], [2.301089929497353, 48.837183749338166], [2.301098784146495, 48.837092082236005], [2.301105875640681, 48.83700245809013], [2.301114730231085, 48.83691079097196], [2.301118388197893, 48.83690521285458], [2.301253347130397, 48.836810190313365], [2.301389235967525, 48.83671446613938], [2.301524193900368, 48.83661944417567], [2.301660083105273, 48.83652371968559], [2.301795040050417, 48.83642869740009], [2.301930926898345, 48.83633297257806], [2.302065882867943, 48.836237949071446], [2.30220177008355, 48.836142223933344], [2.302336723691305, 48.83604720099636], [2.302472609912176, 48.83595147553422], [2.302607563894675, 48.83585645228341], [2.302743447758707, 48.835760726489305], [2.30274637869088, 48.835751630230305], [2.302671961092472, 48.83560994180144], [2.30259622114887, 48.835463152446444], [2.302603903736616, 48.835451944284955], [2.302659430565048, 48.8354367646318], [2.302708357901484, 48.83542311768475], [2.302726886486626, 48.83541414382998], [2.302715001302468, 48.8353969127074], [2.302619548711952, 48.835260653399885], [2.302520327200499, 48.83511928246542], [2.302424874276984, 48.834983022061444], [2.302325653821949, 48.834841650930436], [2.302308361556738, 48.834837048699505], [2.302187667908803, 48.83486798368344], [2.302076082475579, 48.83489762982734], [2.302066413388652, 48.83489775687971], [2.301924469338315, 48.83486428487256], [2.301781216585253, 48.834830481280804], [2.30163927290124, 48.83479700893321], [2.301496020518006, 48.83476320499791], [2.30148503683847, 48.834763733541095], [2.30127582503055, 48.83483720095152], [2.301069786908542, 48.834908944453225], [2.30086374821939, 48.8349806875954], [2.300654536027289, 48.835054153912864], [2.300633353877978, 48.835062881695634]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 58, "roussel_fabien": 19.0, "nb_emargement": 1233.0, "nb_procuration": 64.0, "nb_vote_blanc": 16.0, "jadot_yannick": 121.0, "le_pen_marine": 75.0, "nb_exprime": 1208.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1536.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1233, "quartier_bv": "57", "geo_point_2d": [48.83655043506987, 2.300858729119105], "melenchon_jean_luc": 217.0, "poutou_philippe": 8.0, "macron_emmanuel": 524.0}, "geometry": {"type": "Point", "coordinates": [2.300858729119105, 48.83655043506987]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7f7530d286ea77882cea9c8a667a3ba8b32bd047", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 41, "zemmour_eric": 63.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-27", "geo_shape": {"coordinates": [[[2.373488102983312, 48.868018144207106], [2.373488303752345, 48.86799997769166], [2.373500570929986, 48.86795252617498], [2.373524537208292, 48.867859512370096], [2.373558411759975, 48.86772848404166], [2.373582379195083, 48.8676354702135], [2.37356967199437, 48.8676249821519], [2.37339976362927, 48.86761895572675], [2.373232105377663, 48.867612865298604], [2.373062197101961, 48.867606837494854], [2.3728945402920782, 48.867600746601006], [2.372847847266017, 48.86758490648366], [2.372839442860768, 48.867590243198656], [2.372817863662454, 48.867619752595104], [2.372719165050766, 48.86775189524841], [2.37263456076243, 48.867867587209524], [2.3725499547350353, 48.86798327909156], [2.372451256118148, 48.86811542148772], [2.372442142588296, 48.868120202260165], [2.372250881775168, 48.86814981281955], [2.372055000819965, 48.86817534640872], [2.371863739584416, 48.868204956347995], [2.37166785824295, 48.86823048840302], [2.371476596573936, 48.86826009862147], [2.371280716198543, 48.86828563004881], [2.371280025262636, 48.86828572444747], [2.371083057011552, 48.8683092083356], [2.370887174884482, 48.868334740009885], [2.370690206270965, 48.86835822325051], [2.370494323778011, 48.86838375338145], [2.370297354802072, 48.86840723597456], [2.370101473284586, 48.8684327663679], [2.369904502583057, 48.86845624830628], [2.369708620699619, 48.86848177715633], [2.369645048373926, 48.86848935565894], [2.369628131469514, 48.86848488767818], [2.369591691612902, 48.868493599220706], [2.369458292847506, 48.868509501949404], [2.369274506927033, 48.86853229956294], [2.369077535476384, 48.86855578013834], [2.3688937492369, 48.868578576266955], [2.368696778791925, 48.868602057121294], [2.368512990859372, 48.86862485265714], [2.368316020078697, 48.86864833198459], [2.368132233168532, 48.86867112784133], [2.368122634591748, 48.86867584546866], [2.368032189155993, 48.868768626797625], [2.367936236876111, 48.86889143490635], [2.36792817021484, 48.86893201818115], [2.367956155824923, 48.86894026811664], [2.368034634217254, 48.86896621925426], [2.368173449447701, 48.869015391442396], [2.368369921895647, 48.869088668765734], [2.368508737768999, 48.86913784055959], [2.368509124560756, 48.86913798379658], [2.368674857764053, 48.86920136667178], [2.368871331629664, 48.86927464226049], [2.369037065697579, 48.869338025525586], [2.369233539224939, 48.86941130050348], [2.369328943127544, 48.86944778579283], [2.369345844018825, 48.86946508549708], [2.369378556069988, 48.86946999916619], [2.369448887177207, 48.86949689570364], [2.369570416291243, 48.8695394126908], [2.369570974359833, 48.86953959729666], [2.369750894833305, 48.869595326248806], [2.369925094140616, 48.869649694686835], [2.370105016736317, 48.869705423108265], [2.370279215418303, 48.86975979101831], [2.370459138773127, 48.86981551890191], [2.370633339556102, 48.86986988629832], [2.370813262306834, 48.86992561363692], [2.370987463827584, 48.86997998051257], [2.371197799330039, 48.87004124602716], [2.371372001649682, 48.8700956114382], [2.371546204321992, 48.87014997749232], [2.3717565411680273, 48.87021124201563], [2.37175675850972, 48.87021130700943], [2.371930961970509, 48.87026567249788], [2.372109913852125, 48.870320286572586], [2.372284118046049, 48.870374651541724], [2.372463069309093, 48.87042926507588], [2.37263727424688, 48.8704836286264], [2.372816227606869, 48.87053824253367], [2.372838036396119, 48.87055362576561], [2.372892709578863, 48.87055320084476], [2.372909581831252, 48.870538921417534], [2.37291746907202, 48.87050104934847], [2.372922513143743, 48.87049641540479], [2.372938041940238, 48.8704808257939], [2.372937509365534, 48.870475690481896], [2.372919348389834, 48.87046679171874], [2.372757969201408, 48.87041909513366], [2.372594153363383, 48.87037089451663], [2.372432774769821, 48.87032319748897], [2.372268959534292, 48.8702749964227], [2.372107581546437, 48.87022729805316], [2.371943766902567, 48.87017909743694], [2.371782389509586, 48.87013139862489], [2.371618575468212, 48.87008319755938], [2.371612148490285, 48.870070692692224], [2.371704899255984, 48.86995801223336], [2.371795095076551, 48.86984949481233], [2.371887845041809, 48.86973681508847], [2.371978041461458, 48.869628297514986], [2.37197841192288, 48.86962787407152], [2.37207435781552, 48.86952527095783], [2.372187673430965, 48.869403828683446], [2.3722836185096, 48.86930122448196], [2.37239693178662, 48.8691797819777], [2.372492876040419, 48.869077177587656], [2.372606189705418, 48.86895573486787], [2.37265638446127, 48.86890209426725], [2.372658580412137, 48.868900303500986], [2.372782309435597, 48.86882237306606], [2.372906225443678, 48.86874360079835], [2.373029953724557, 48.8686656700964], [2.373153868996215, 48.86858689666183], [2.373156801424268, 48.86858416993334], [2.373228444173221, 48.86848183604519], [2.3733008906625193, 48.86837759971445], [2.373372531481146, 48.86827526571378], [2.373444977394842, 48.86817102927634], [2.373446009691103, 48.868168848385096], [2.3734635620032742, 48.86810339098259], [2.3734851696817483, 48.86801981421582], [2.373488102983312, 48.868018144207106]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 27, "roussel_fabien": 42.0, "nb_emargement": 1509.0, "nb_procuration": 102.0, "nb_vote_blanc": 16.0, "jadot_yannick": 178.0, "le_pen_marine": 42.0, "nb_exprime": 1490.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 7, "nb_inscrit": 1784.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1509, "quartier_bv": "41", "geo_point_2d": [48.86892923605737, 2.3710409297278647], "melenchon_jean_luc": 575.0, "poutou_philippe": 13.0, "macron_emmanuel": 478.0}, "geometry": {"type": "Point", "coordinates": [2.3710409297278647, 48.86892923605737]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "08757bb8fd465107145fb44cdc4bab81edecc749", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 37, "zemmour_eric": 51.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-20", "geo_shape": {"coordinates": [[[2.364876063880095, 48.87652712603912], [2.364852171927879, 48.87653508069084], [2.364697258737835, 48.876599177972054], [2.36453299875611, 48.876662934051076], [2.364378084793097, 48.87672703091187], [2.364213824017449, 48.87679078654556], [2.364058909281366, 48.87685488298584], [2.363894646348399, 48.87691863816693], [2.363888660225885, 48.87692348164569], [2.36385647776684, 48.876985602970244], [2.363813435588781, 48.87704869990535], [2.363808156905179, 48.87705266489307], [2.363633114201774, 48.877123836780584], [2.363449190836029, 48.87719600531469], [2.363274148534752, 48.877267175776026], [2.363090224165428, 48.877339343749235], [2.363084538067805, 48.87735041576659], [2.363116545723171, 48.87740314399144], [2.363142418673732, 48.877457027588086], [2.363136162437619, 48.87746755877234], [2.3629616505128, 48.87753304690316], [2.362790718018307, 48.877595688555395], [2.362616205240816, 48.87766117527573], [2.3624452719102322, 48.8777238164275], [2.362270756894642, 48.877789303528644], [2.362099822728064, 48.87785194417988], [2.361925308223232, 48.877917429877805], [2.361754373220765, 48.87798007002849], [2.361704342455673, 48.87800133960642], [2.361711462957024, 48.87802044612677], [2.36178478392098, 48.87814579213697], [2.36186748825172, 48.87828487234982], [2.361940811326778, 48.878410218241676], [2.362023515130641, 48.87854929830611], [2.362025641134477, 48.87855172254468], [2.362152636955297, 48.8786551164984], [2.362276097702982, 48.87875283107675], [2.362403093147957, 48.87885622473865], [2.362526554842384, 48.878953939040834], [2.362653552638311, 48.87905733242546], [2.362777015279389, 48.879155046451544], [2.362904012699582, 48.87925843954431], [2.363027476287214, 48.87935615329428], [2.363154474695027, 48.879459546102495], [2.363277939229427, 48.87955725957627], [2.363404939988234, 48.87966065210719], [2.363528405469311, 48.879758365304866], [2.363558603232571, 48.879782949884344], [2.363566946463399, 48.879785871198926], [2.363619212153031, 48.87976690334892], [2.363780540231446, 48.87968464551041], [2.363937162684281, 48.879605924701536], [2.364093784663638, 48.87952720368217], [2.364255111249987, 48.87944494518624], [2.364411732264544, 48.87936622373937], [2.364573057839188, 48.87928396570229], [2.364729677900021, 48.879205242928734], [2.364891002473737, 48.87912298445113], [2.364895859923188, 48.87911812774873], [2.364941401804098, 48.879002365443725], [2.36498850931001, 48.878885330766316], [2.365034049417976, 48.87876956839437], [2.365081157868573, 48.878652533663036], [2.365126697567051, 48.87853677123135], [2.365173805587927, 48.87841973733812], [2.365219344876921, 48.878303974846766], [2.365266451126575, 48.878186939985845], [2.365311991369521, 48.87807117744202], [2.365359097200432, 48.8779541425199], [2.365404635670479, 48.87783837990917], [2.365451742446073, 48.87772134493307], [2.365454324822887, 48.87771799241861], [2.365554190398627, 48.87764008551219], [2.3656771675536152, 48.877539936372415], [2.365695480570041, 48.877537572831876], [2.365701060266765, 48.87749892028887], [2.365606929692783, 48.87738767673499], [2.365507105884641, 48.877269700188926], [2.3654129747757953, 48.87715845645221], [2.365313151846218, 48.877040479719845], [2.365219022940369, 48.87692923491546], [2.3651192008784863, 48.87681125889614], [2.365025071437666, 48.876700013908824], [2.364925250254527, 48.87658203770328], [2.364890906277205, 48.87654144843353], [2.364876063880095, 48.87652712603912]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 20, "roussel_fabien": 17.0, "nb_emargement": 1064.0, "nb_procuration": 97.0, "nb_vote_blanc": 12.0, "jadot_yannick": 107.0, "le_pen_marine": 56.0, "nb_exprime": 1048.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 6, "nb_inscrit": 1360.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "40", "geo_point_2d": [48.878161511903194, 2.3638618667588402], "melenchon_jean_luc": 436.0, "poutou_philippe": 6.0, "macron_emmanuel": 286.0}, "geometry": {"type": "Point", "coordinates": [2.3638618667588402, 48.878161511903194]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ef42b9fdf2c96d19ffc8663cd8ed6cb8c53162cc", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 54.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "11-8", "geo_shape": {"coordinates": [[[2.384327962955263, 48.85011352496086], [2.384261303514904, 48.85013060870136], [2.384093778030956, 48.8501558870536], [2.383888005200833, 48.8501883105473], [2.383720480713008, 48.85021358838257], [2.383527745674967, 48.85022890166037], [2.383526146436381, 48.850229077787844], [2.383342055290936, 48.850241971075285], [2.383149320026176, 48.85025728464242], [2.382965228687856, 48.85027017734973], [2.382772493218694, 48.850285489410204], [2.382588400324806, 48.850298381530386], [2.3823956646406073, 48.850313692983406], [2.382211572916566, 48.8503265845305], [2.38201883701734, 48.850341895376175], [2.381834745100449, 48.85035478634315], [2.381642008975532, 48.850370097480706], [2.381457916865799, 48.85038298786759], [2.381457393211999, 48.85038301753716], [2.381285056224974, 48.850391086737616], [2.381071163801709, 48.85040058205323], [2.380898826696793, 48.85040865069724], [2.380684934141651, 48.850418144422946], [2.38051259554546, 48.850426213402756], [2.380298704210675, 48.85043570644494], [2.3801263655073, 48.85044377396904], [2.380124552416401, 48.85044393994964], [2.379945864682096, 48.850468486452414], [2.37973574663488, 48.85049674956617], [2.379557058547058, 48.850521294587836], [2.379410729912804, 48.85054097710525], [2.379382101442356, 48.850540470668534], [2.379364985046201, 48.85054939700393], [2.379301193818077, 48.850557977783936], [2.379060400186553, 48.85058763555501], [2.378850281178681, 48.850615897110806], [2.378848045465192, 48.850616304602866], [2.378681958521319, 48.85065692852636], [2.378463297071868, 48.85071193318751], [2.378387247732863, 48.85073053425385], [2.378369694835437, 48.850737647780164], [2.378391759941147, 48.850777482364435], [2.378426461096961, 48.850891662884834], [2.3784645297278, 48.85101750660126], [2.378499231202797, 48.8511316870759], [2.378537298822094, 48.85125753073498], [2.378572001979106, 48.85137171117092], [2.378610069949386, 48.851497554779684], [2.3786100765377443, 48.85149757370034], [2.378649958138766, 48.85163031124558], [2.378688026486222, 48.85175615480027], [2.378727908494531, 48.85188889138937], [2.378765977219143, 48.85201473489001], [2.378805859623817, 48.85214747142228], [2.378843928725588, 48.85227331486887], [2.378883810164078, 48.85240605133719], [2.37892188100577, 48.85253189473682], [2.378961762840632, 48.8526646311483], [2.3789998326968362, 48.852790474486774], [2.379039716290943, 48.85292321084847], [2.379077786524222, 48.85304905413287], [2.379078736359561, 48.85305100346001], [2.379184955445764, 48.85320579070415], [2.379286559425583, 48.85335186525503], [2.379294873398478, 48.85335673160506], [2.379476901255747, 48.85339463007836], [2.379642357267747, 48.85342359273916], [2.379807813463774, 48.853452555170435], [2.379989840655358, 48.853490453752364], [2.380155297256721, 48.8535194157014], [2.3802849862685163, 48.85354641595964], [2.380299296537302, 48.85355051017372], [2.38033096604043, 48.85353048465602], [2.380396572662546, 48.85342339331392], [2.380460638702532, 48.853318849007074], [2.380526246154467, 48.85321175758059], [2.380590310322005, 48.85310721227808], [2.38065591724098, 48.85300012076001], [2.380719980888161, 48.85289557536821], [2.380784045640948, 48.85279102993925], [2.38084965176368, 48.85268393828458], [2.38085159821636, 48.852681730555275], [2.381010107678909, 48.852549510458765], [2.381171900639294, 48.852418559919876], [2.381174258924981, 48.852410016581956], [2.381108820368222, 48.85228128663645], [2.381042882776847, 48.85215157196457], [2.380977444879874, 48.852022841018005], [2.3809115065799142, 48.85189312623654], [2.380846070694679, 48.85176439519526], [2.380780133038088, 48.85163468121054], [2.380714696439198, 48.85150595006048], [2.380648760809969, 48.851376235080956], [2.380583324860258, 48.85124750382916], [2.380517389874368, 48.85111778964642], [2.380451954573723, 48.850989058292825], [2.380386020252543, 48.85085934310831], [2.3803205856009573, 48.85073061165296], [2.380254651923093, 48.85060089726518], [2.380267189982855, 48.8505890466746], [2.380490231811953, 48.850584922540826], [2.3807005582436203, 48.85058097320351], [2.380923600014647, 48.85057684736254], [2.38113392637009, 48.85057289816274], [2.381344254067038, 48.85056894770094], [2.381567295724948, 48.85056482155928], [2.381580373114648, 48.850570541588716], [2.381639912666734, 48.8506712450247], [2.381700147849376, 48.85077226049366], [2.381759687863401, 48.85087296385181], [2.381819923522167, 48.85097397834287], [2.381879463998033, 48.85107468162313], [2.381939700122152, 48.85117569603561], [2.38195246313527, 48.85118139640922], [2.382155760880916, 48.85118057931528], [2.382357247308888, 48.851180006143224], [2.382560545042759, 48.851179188361556], [2.382762031450244, 48.8511786154072], [2.382965329172332, 48.85117779693774], [2.383166814207359, 48.851177223294705], [2.383370111917656, 48.85117640413747], [2.383571598305461, 48.85117582981983], [2.383774896003954, 48.85117500997485], [2.383976382381903, 48.851174434975576], [2.384033373439181, 48.85117690751697], [2.384038439328312, 48.851165573873175], [2.384092297698075, 48.851076352943736], [2.384164889745057, 48.85096824396985], [2.384241029173457, 48.8508421121801], [2.384313620596201, 48.850734002193875], [2.384378383660372, 48.850596272153], [2.384468002060547, 48.850448143004726], [2.384468442865373, 48.85044232106105], [2.384413107596928, 48.85031543981009], [2.384358242859247, 48.850180936220404], [2.384364269612659, 48.85013462714513], [2.384353489270195, 48.850128361639165], [2.384327962955263, 48.85011352496086]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 8, "roussel_fabien": 22.0, "nb_emargement": 1232.0, "nb_procuration": 113.0, "nb_vote_blanc": 10.0, "jadot_yannick": 128.0, "le_pen_marine": 47.0, "nb_exprime": 1219.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 0, "nb_inscrit": 1530.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "44", "geo_point_2d": [48.851533874722804, 2.3807450768229605], "melenchon_jean_luc": 479.0, "poutou_philippe": 12.0, "macron_emmanuel": 374.0}, "geometry": {"type": "Point", "coordinates": [2.3807450768229605, 48.851533874722804]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bec0d6de548044f10ecae8d47d5fc4f694c7da29", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 67, "zemmour_eric": 74.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "14-38", "geo_shape": {"coordinates": [[[2.332120635373362, 48.826864253100304], [2.332123552008045, 48.82687805593928], [2.332149785596845, 48.82693698032736], [2.332205782205063, 48.82705462483947], [2.332265252852776, 48.827188201382], [2.332321249991376, 48.82730584581371], [2.332380721221498, 48.827439422268924], [2.332417437048132, 48.8275165571977], [2.332426233576045, 48.82752977856897], [2.33243464646378, 48.827534664175666], [2.332453928337718, 48.82757517269543], [2.332512744691742, 48.82768951672811], [2.332568741565166, 48.82780716098375], [2.332627558444337, 48.82792150403696], [2.332678386832106, 48.82802303942772], [2.332729215417757, 48.82812457478772], [2.332788031644867, 48.82823891772204], [2.332788503721215, 48.828239710007765], [2.332874929892092, 48.82836655894504], [2.332956354280622, 48.828486291026664], [2.333037779031546, 48.82860602393934], [2.333124206416314, 48.82873287265504], [2.333205631949361, 48.82885260452782], [2.33329206150186, 48.828979454001214], [2.333368799829989, 48.829093586174885], [2.333455228828369, 48.829220434596216], [2.333531967868426, 48.829334566640625], [2.333618397663334, 48.82946141491675], [2.333652978306199, 48.829512844973486], [2.333673751450219, 48.82953102555303], [2.333722028789069, 48.82951737939184], [2.333816155996284, 48.82937388595593], [2.333905316639007, 48.82923183794522], [2.33399944282629, 48.829088344328504], [2.334088602481267, 48.828946296144956], [2.3341031715256593, 48.828940841610944], [2.334247676626937, 48.82895488851655], [2.334404657838776, 48.82896897140519], [2.334419720382708, 48.828962204693], [2.334465646610054, 48.828838698157966], [2.3345088879324623, 48.828716881868246], [2.334554812370329, 48.82859337526445], [2.334598053280915, 48.82847155891583], [2.334643977291546, 48.82834805225069], [2.334687217790316, 48.82822623584323], [2.334733141373516, 48.828102729116885], [2.334776381460475, 48.82798091265053], [2.334822304616452, 48.82785740586291], [2.334865544291607, 48.827735589337664], [2.334911467020162, 48.82761208248882], [2.334954706283518, 48.82749026590472], [2.334959943617514, 48.82748505076624], [2.335114870678549, 48.82741046982283], [2.335262902544469, 48.827338837178964], [2.335417828737619, 48.827264255833335], [2.335565859783485, 48.82719262190581], [2.335720785108749, 48.82711804015802], [2.33586881531184, 48.82704640674552], [2.33601684510815, 48.826974773145196], [2.336171769140906, 48.826900190798675], [2.336319798117255, 48.82682855591474], [2.336474721282134, 48.82675397316604], [2.336517661987108, 48.82673319387351], [2.336524977840311, 48.82671951446964], [2.336507945163053, 48.82669963188564], [2.3363136219575082, 48.82667544862113], [2.336130242671321, 48.82665328013786], [2.335935919813638, 48.82662909625864], [2.335752540862549, 48.826606926295995], [2.335558218341381, 48.826582742701405], [2.335374838351872, 48.82656057215108], [2.335180517540855, 48.82653638794933], [2.334997137875008, 48.82651421681898], [2.334813759727202, 48.82649204541451], [2.334619438069694, 48.826467860292034], [2.334613658500433, 48.82646796573979], [2.334410862107291, 48.826500941603214], [2.334207932211564, 48.82653219137471], [2.334005135323573, 48.82656516564892], [2.3338022035726063, 48.826596414722594], [2.333599407528676, 48.826629389213856], [2.333396475284648, 48.826660637597264], [2.333193544159339, 48.82669188564306], [2.332990745997018, 48.82672485909178], [2.332787813016585, 48.8267561064397], [2.332585015709936, 48.82678907920614], [2.332382082236263, 48.8268203258638], [2.332179284423217, 48.826853297940325], [2.332120635373362, 48.826864253100304]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 38, "roussel_fabien": 24.0, "nb_emargement": 1093.0, "nb_procuration": 64.0, "nb_vote_blanc": 11.0, "jadot_yannick": 118.0, "le_pen_marine": 43.0, "nb_exprime": 1077.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1329.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1093, "quartier_bv": "54", "geo_point_2d": [48.827604059126735, 2.3339526677123117], "melenchon_jean_luc": 313.0, "poutou_philippe": 4.0, "macron_emmanuel": 381.0}, "geometry": {"type": "Point", "coordinates": [2.3339526677123117, 48.827604059126735]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b64441d29dcf30426f34c0fca31058e3f75ff171", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 43, "zemmour_eric": 85.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-40", "geo_shape": {"coordinates": [[[2.40086298663433, 48.84121592606624], [2.4009669690319733, 48.8412031102139], [2.401168776024749, 48.84118628991307], [2.4013861507288, 48.84116534536906], [2.401587957429746, 48.841148525259825], [2.401805330445381, 48.841127579946594], [2.402007138237606, 48.841110758237164], [2.402224510927273, 48.84108981216156], [2.40229107773661, 48.84108426387295], [2.402325570533197, 48.84108872345737], [2.402337303558284, 48.8410821555992], [2.402472542871403, 48.841070882310895], [2.402660559901596, 48.841055273100864], [2.402862367127517, 48.841038450846916], [2.403050383923971, 48.84102284102377], [2.403252189536036, 48.84100601810489], [2.403440206098741, 48.8409904076686], [2.403642011459403, 48.84097358409166], [2.403830027788353, 48.84095797304223], [2.404031832897601, 48.84094114880716], [2.404219848992787, 48.84092553714459], [2.4044216552232482, 48.840908711358914], [2.404609671074382, 48.84089309998256], [2.4046513722177663, 48.8408806895196], [2.404654261574816, 48.84087167073593], [2.404644069699931, 48.8408413979467], [2.404603351196599, 48.840713284818975], [2.404562618292963, 48.840592293617085], [2.404521898822096, 48.840464180426274], [2.4044811676749323, 48.84034318827714], [2.404440435354529, 48.84022219609428], [2.404399717825176, 48.84009408372548], [2.404399990271298, 48.84006487657287], [2.404356937051619, 48.84005830552787], [2.404230869507443, 48.84005618478874], [2.404086429273974, 48.84004567849557], [2.4040743905331152, 48.840037793192145], [2.404047985438485, 48.83989015402335], [2.404024131979355, 48.83975077557292], [2.403997727172487, 48.83960313635507], [2.4039738739791012, 48.83946375785884], [2.403950020913387, 48.8393243793404], [2.403923616532448, 48.839176740049844], [2.403930438738871, 48.839149428985955], [2.403916183905352, 48.83914067372691], [2.403794209328948, 48.83913802340109], [2.403579506708832, 48.83913262357533], [2.403381770589913, 48.839128325164275], [2.403167068052478, 48.83912292459821], [2.4029693319940693, 48.83911862640465], [2.402754628187317, 48.839113224192154], [2.402556892199723, 48.8391089253168], [2.402542822958954, 48.8391181130669], [2.402544944305036, 48.83918134872194], [2.4025478386992, 48.83924085408893], [2.402534092619312, 48.83925013518588], [2.40234561647853, 48.839248957128035], [2.402168344493791, 48.8392472555809], [2.401979868382009, 48.839246076047495], [2.401802595056597, 48.83924437395147], [2.401614118953192, 48.8392431947411], [2.401436845649627, 48.83924149210306], [2.401259572357542, 48.83923978920234], [2.40107109629334, 48.83923860823705], [2.400893823023118, 48.83923690479433], [2.400705348329608, 48.839235724158925], [2.400675234775407, 48.83920920222868], [2.400646715569431, 48.83921038589503], [2.400615670983024, 48.839239948823], [2.400544582131387, 48.83930764273141], [2.400429243900852, 48.83941194543349], [2.400327109662069, 48.839509202066665], [2.400320442095081, 48.83952598308769], [2.400296008298719, 48.8395874820852], [2.40027266444612, 48.83959699720368], [2.400305759407198, 48.83962290282146], [2.400300701413888, 48.83965148162619], [2.400300948529887, 48.83965451640811], [2.400348509303793, 48.83978248021026], [2.400393762364907, 48.839913987581596], [2.400441323603546, 48.84004195131714], [2.400486577113669, 48.840173459522106], [2.400534138816945, 48.840301423191015], [2.400579394159323, 48.840432930437856], [2.400600177756229, 48.84048885155084], [2.400596202113709, 48.84049831717798], [2.400607449691107, 48.84052721600526], [2.400634226929436, 48.840599258483635], [2.400680633897303, 48.84072628092203], [2.400728196581373, 48.84085424445043], [2.400774605367745, 48.84098126683018], [2.400822167152851, 48.841109230285184], [2.400849866321106, 48.84118504201032], [2.40086298663433, 48.84121592606624]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 40, "roussel_fabien": 19.0, "nb_emargement": 1058.0, "nb_procuration": 63.0, "nb_vote_blanc": 10.0, "jadot_yannick": 104.0, "le_pen_marine": 56.0, "nb_exprime": 1044.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1316.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1058, "quartier_bv": "45", "geo_point_2d": [48.8401452409281, 2.402378459224444], "melenchon_jean_luc": 289.0, "poutou_philippe": 8.0, "macron_emmanuel": 367.0}, "geometry": {"type": "Point", "coordinates": [2.402378459224444, 48.8401452409281]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fd324c510faff71a7697d0c953eb05386c3575d2", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 80, "zemmour_eric": 77.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-65", "geo_shape": {"coordinates": [[[2.345025005390149, 48.83515941302548], [2.345034675011182, 48.83517799297925], [2.345059940664685, 48.835299722428296], [2.345088137925127, 48.83542375680371], [2.345113402471588, 48.835545485307975], [2.345141599980887, 48.83566952054285], [2.345166866133628, 48.835791249016594], [2.345195062552067, 48.83591528330481], [2.345220328937586, 48.8360370126398], [2.34524852561618, 48.83616104688819], [2.345264599067108, 48.83616854027074], [2.345437056918256, 48.83614640275756], [2.3456050437056453, 48.83612411912045], [2.345777499903016, 48.83610198110808], [2.345945486401809, 48.836079696991945], [2.346117943669847, 48.83605755849529], [2.346285929879833, 48.836035273900215], [2.346458386856408, 48.836013134911816], [2.346626372777686, 48.8359908498377], [2.346635754123361, 48.83599183552597], [2.346727366750187, 48.836025980379986], [2.346815236107176, 48.83605715209479], [2.346822731163809, 48.83605819761824], [2.347027001141813, 48.83604781269592], [2.3472333716184552, 48.836037010788985], [2.347437641431719, 48.83602662516522], [2.347644011728124, 48.83601582344891], [2.34784828137654, 48.83600543712367], [2.348054651515211, 48.83599463379942], [2.348258920998663, 48.83598424677272], [2.348465290968431, 48.83597344273978], [2.348479309345648, 48.83597959792726], [2.348545568407417, 48.8361125526566], [2.34860700181358, 48.836242266710904], [2.348673261523699, 48.836375222237564], [2.348734696919535, 48.83650493620326], [2.348800957300492, 48.83663789072867], [2.348862393312346, 48.83676760549759], [2.348923828278958, 48.83689731931321], [2.348990091003469, 48.8370302736946], [2.349022493440884, 48.83706103662299], [2.349062108426458, 48.83707282886726], [2.349252573830123, 48.83705185230651], [2.3494433852757792, 48.83703075501098], [2.349633850372165, 48.83700977784232], [2.349824662860509, 48.83698868084456], [2.350015126298679, 48.83696770216132], [2.35020593847878, 48.8369466045545], [2.350396401598442, 48.836925626162675], [2.350587213481396, 48.83690452704759], [2.350777676293858, 48.8368835480479], [2.350968487868445, 48.83686244832376], [2.351158950373697, 48.83684146871617], [2.3513497616399093, 48.83682036838309], [2.351540225200289, 48.83679938817502], [2.351731036146932, 48.83677828813223], [2.351735756567389, 48.83677831551397], [2.3517993800098003, 48.836786084588596], [2.351863473678786, 48.836806220677175], [2.351872406428179, 48.83680473475904], [2.351896868964983, 48.83675791494269], [2.351945523634231, 48.83667527488545], [2.352005849739367, 48.83658815442859], [2.352011488359354, 48.83656823970548], [2.351950702851778, 48.83655434973287], [2.35184042265177, 48.83653902326033], [2.351711644615442, 48.83651344077443], [2.351703140789415, 48.836501147098936], [2.351790262251286, 48.836372991722655], [2.351881393309217, 48.8362406336667], [2.351968515259654, 48.83611247813814], [2.352059645409415, 48.83598011991554], [2.352146765124079, 48.83585196421991], [2.352237894365789, 48.835719605830704], [2.352225341311323, 48.8357068918347], [2.352014295553901, 48.83570843151341], [2.351807073451631, 48.835709357486344], [2.351596029034192, 48.8357108964344], [2.35138880555238, 48.835711821675325], [2.351177761101427, 48.83571336078474], [2.350970538964714, 48.83571428530843], [2.350759493140326, 48.83571582277316], [2.350552270986412, 48.83571674657223], [2.350341225139728, 48.83571828329897], [2.350134002968623, 48.83571920637342], [2.3499229570996523, 48.83572074236219], [2.349715734911371, 48.835721664712004], [2.3497030696804853, 48.83571613489114], [2.349634532221604, 48.83560311547169], [2.349550502684142, 48.83547017708244], [2.349481965879442, 48.83535715755072], [2.349397937127554, 48.835224219025065], [2.349329399614726, 48.835111199373664], [2.34924537163718, 48.834978261610935], [2.349176836152045, 48.8348652409554], [2.349092808960052, 48.834732303056256], [2.349024274129074, 48.83461928228843], [2.348997798643532, 48.83461421954163], [2.348976422993289, 48.834618604540196], [2.348932440299995, 48.83473196175814], [2.348875037439252, 48.83487438634972], [2.348831054309563, 48.83498774350449], [2.348773650878902, 48.83513016891415], [2.3487296673130142, 48.83524352600569], [2.348685683555729, 48.835356883069565], [2.348628279321366, 48.835499308362515], [2.348609663227209, 48.83550523814788], [2.348368916598444, 48.83543585181668], [2.348160576770116, 48.835382426423536], [2.348153015847371, 48.83537684870526], [2.348098626251378, 48.835261113811484], [2.348041009540828, 48.83514090491699], [2.347986620439599, 48.835025169947926], [2.347929005610326, 48.83490496098155], [2.347920717800242, 48.83489923268576], [2.3479003636840963, 48.83489403668611], [2.347706779277011, 48.834847053943236], [2.347542179987734, 48.83480503612599], [2.347357228317181, 48.83475782199546], [2.347163644905489, 48.83471083836783], [2.3469786925498273, 48.834663623640516], [2.346785109829141, 48.83461663939631], [2.346600159501577, 48.834569424986476], [2.346406576109611, 48.83452244011825], [2.346388712414033, 48.834528564340346], [2.346370328664154, 48.8345740978881], [2.346344588770244, 48.83461360682636], [2.346329094620138, 48.834629364543694], [2.346331330910157, 48.83463452655457], [2.346259907649712, 48.834744156060886], [2.346200487117801, 48.834815286169174], [2.346193208400204, 48.8348200346248], [2.346171031396555, 48.83482658851819], [2.346163072803547, 48.83483677174163], [2.345973542436243, 48.834888872972655], [2.345801273344876, 48.83493681069977], [2.34561174361462, 48.834988911360306], [2.345439473859931, 48.83503684856206], [2.345267202426097, 48.835084785506254], [2.345077671623921, 48.83513688531361], [2.345036107493764, 48.835148451150836], [2.345025005390149, 48.83515941302548]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 65, "roussel_fabien": 40.0, "nb_emargement": 1459.0, "nb_procuration": 90.0, "nb_vote_blanc": 17.0, "jadot_yannick": 155.0, "le_pen_marine": 43.0, "nb_exprime": 1441.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1736.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1461, "quartier_bv": "52", "geo_point_2d": [48.83583090204906, 2.3485515579006235], "melenchon_jean_luc": 424.0, "poutou_philippe": 8.0, "macron_emmanuel": 531.0}, "geometry": {"type": "Point", "coordinates": [2.3485515579006235, 48.83583090204906]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "09c694f6c0494035484ec64a76c579697f86fbdd", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 48, "zemmour_eric": 53.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-44", "geo_shape": {"coordinates": [[[2.350618118111718, 48.821323442543864], [2.350619585388253, 48.82133959617657], [2.350620962667907, 48.82147375692243], [2.350622272239902, 48.821606793060134], [2.350623581807378, 48.82173983008145], [2.35062495911919, 48.821873989880174], [2.350626268700232, 48.82200702686981], [2.350627646014815, 48.82214118753595], [2.350628955620626, 48.82227422359462], [2.350630332949078, 48.82240838422884], [2.3506316425684552, 48.82254142025584], [2.350633019910982, 48.822675580858096], [2.350634329543926, 48.82280861685348], [2.350635706900424, 48.822942777423826], [2.3506370165469352, 48.82307581338755], [2.350638393917305, 48.823209973925934], [2.350631412079577, 48.823223638039195], [2.350647056535054, 48.823232727567174], [2.350795417962924, 48.823264192010015], [2.350962864596233, 48.82329982774163], [2.351141813859323, 48.8233377785929], [2.351309260965706, 48.82337341383714], [2.351488209371591, 48.82341136416019], [2.351655656951042, 48.823446998917056], [2.351834605861504, 48.823484948719226], [2.35200205391402, 48.823520582988735], [2.352006292764318, 48.82352101337647], [2.352194595954857, 48.82352033827968], [2.352386238303943, 48.82351927445132], [2.352574541483178, 48.823518598756195], [2.352766182456218, 48.82351753431157], [2.352954485624241, 48.82351685801822], [2.3531461265831233, 48.82351579296472], [2.353161558444529, 48.82351966371846], [2.353175758438093, 48.82351358878388], [2.353325681639273, 48.82349882690356], [2.353459032662457, 48.82348526044732], [2.353482023176491, 48.82348458430088], [2.353488499248631, 48.82347617055914], [2.353630617438012, 48.82341725611866], [2.353770263127044, 48.823359443374834], [2.353912380668634, 48.82330052949272], [2.354052025743754, 48.82324271551454], [2.354194142648907, 48.823183801291414], [2.354333787098968, 48.82312598697822], [2.354340143265244, 48.823117782096304], [2.354336551965092, 48.82308145032126], [2.354332844361765, 48.823048681252466], [2.354334901979311, 48.823043217848564], [2.354439274111796, 48.82293381709586], [2.354543364452612, 48.822824478578625], [2.354647735698702, 48.82271507852197], [2.354751825165792, 48.822605739802036], [2.354856195547762, 48.822496338642864], [2.354960284141033, 48.82238699972015], [2.355064653636634, 48.82227759925709], [2.355168741356098, 48.82216826013166], [2.355170829261689, 48.82216331131764], [2.355167706608974, 48.82204906709335], [2.35516346428704, 48.82190146155748], [2.355160343028098, 48.82178721731373], [2.355156100759436, 48.82163961084391], [2.355152978170254, 48.821525366566014], [2.355148735932724, 48.82137776096086], [2.355145614737301, 48.82126351666352], [2.355131710248913, 48.821254687120096], [2.354934382792584, 48.82125743075932], [2.354731316798884, 48.82126031488794], [2.354533989300193, 48.82126305786643], [2.354330923262434, 48.82126594131511], [2.354133595721391, 48.821268683632866], [2.353930528277644, 48.82127156639423], [2.353733200694259, 48.82127430805123], [2.353530134568415, 48.82127719014002], [2.353332806942697, 48.82127993113629], [2.353129740772827, 48.82128281254512], [2.352932413104787, 48.82128555288064], [2.352729346890901, 48.8212884336095], [2.352532019169381, 48.82129117418365], [2.352366954200245, 48.82129351446919], [2.35235493395848, 48.82128917011856], [2.352337087428631, 48.821294005655616], [2.352299084788537, 48.82129454450283], [2.352100138355829, 48.82129766143042], [2.351897072048816, 48.821300540745945], [2.351698125569202, 48.82130365700466], [2.351495059216644, 48.82130653563749], [2.351296111328294, 48.821309651219984], [2.351093044930201, 48.8213125291701], [2.350894098356804, 48.821315644091115], [2.350691031913187, 48.82131852135855], [2.350641347024462, 48.821319299334334], [2.350618118111718, 48.821323442543864]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 44, "roussel_fabien": 21.0, "nb_emargement": 1046.0, "nb_procuration": 39.0, "nb_vote_blanc": 11.0, "jadot_yannick": 56.0, "le_pen_marine": 78.0, "nb_exprime": 1032.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1517.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1047, "quartier_bv": "51", "geo_point_2d": [48.82230626189862, 2.352762522681231], "melenchon_jean_luc": 456.0, "poutou_philippe": 10.0, "macron_emmanuel": 264.0}, "geometry": {"type": "Point", "coordinates": [2.352762522681231, 48.82230626189862]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ba09005e2c93d3779fec49819a8dc8016be7e2ea", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 21, "zemmour_eric": 41.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-42", "geo_shape": {"coordinates": [[[2.3744022678610612, 48.89468976860096], [2.3743780269092962, 48.894684199289856], [2.374278747341477, 48.89458178964293], [2.374178011638839, 48.894477098815806], [2.374078734223204, 48.89437468899081], [2.373977999323445, 48.89426999797568], [2.37387872269602, 48.89416758796551], [2.373777988599132, 48.89406289676234], [2.373678711385452, 48.89396048745914], [2.373577979466088, 48.89385579517584], [2.373554043356838, 48.89385689573502], [2.373474971809471, 48.89397176034915], [2.373389960574177, 48.894099616854675], [2.373310888285371, 48.89421448223432], [2.37322587626175, 48.89434233769576], [2.373146803242216, 48.89445720294159], [2.373061791772366, 48.89458505916467], [2.372982716669265, 48.89469992337031], [2.372897704400047, 48.89482777944857], [2.372818628566296, 48.894942643520416], [2.372733615497903, 48.89507049945386], [2.372654540297267, 48.895185363399065], [2.372569525065709, 48.89531321918057], [2.372490449134512, 48.895428082992], [2.372405434467434, 48.89555593863584], [2.372326356430838, 48.89567080320552], [2.3723087071801903, 48.89570245660545], [2.372319926421032, 48.895712351244285], [2.372370053936626, 48.89572958678555], [2.372543641030487, 48.895790283929564], [2.372715792673175, 48.89584947683367], [2.372889380569837, 48.89591017346989], [2.373061534376758, 48.89596936497836], [2.373235121701495, 48.89603006199893], [2.373407276297919, 48.89608925300392], [2.373580864436278, 48.89614994861742], [2.373753019811381, 48.89620914001824], [2.373926608752535, 48.896269835123945], [2.374098764917146, 48.89632902602123], [2.374272356025001, 48.8963897206263], [2.374444511626015, 48.89644891011368], [2.374618103525859, 48.8965096051102], [2.37479026128028, 48.89656879410124], [2.37496385262981, 48.89662948768359], [2.37513601116293, 48.89668867707036], [2.375309603315251, 48.896749370144875], [2.375481762648662, 48.8968085581289], [2.375655355592984, 48.89686925159487], [2.375827515715888, 48.89692843907541], [2.375835536857135, 48.896929386491834], [2.376032212842234, 48.89691296104342], [2.376226277145213, 48.896896382275344], [2.376422952893124, 48.896879955285456], [2.376617016948642, 48.896863375883726], [2.376813692437708, 48.89684694915095], [2.377007756256622, 48.896830368216264], [2.377204432861624, 48.896813940848396], [2.377398495058381, 48.89679736017224], [2.377595171426144, 48.89678093126297], [2.377789234739331, 48.896764349960215], [2.377985909484424, 48.89674792130092], [2.378179972550118, 48.896731339364514], [2.378376647057944, 48.89671490916378], [2.378570709876029, 48.8966983265937], [2.378767385499847, 48.89668189575789], [2.378961446706501, 48.8966653125471], [2.379155509153545, 48.896648729028655], [2.37935218439461, 48.89663229813097], [2.379546245230213, 48.896615713971805], [2.379742920233952, 48.89659928153268], [2.379936982185932, 48.896582696746925], [2.380133655577699, 48.89656626365857], [2.380327717282032, 48.896549678239204], [2.380524390415135, 48.89653324540794], [2.380718451871914, 48.89651665935485], [2.380915126131454, 48.89650022498923], [2.38110918597686, 48.89648363829548], [2.381305859977627, 48.89646720418692], [2.381499920950056, 48.89645061596732], [2.381696593338825, 48.89643418120955], [2.381890654052989, 48.89641759325555], [2.382087326204339, 48.896401156956344], [2.382281386670909, 48.8963845683687], [2.382478058563481, 48.89636813232661], [2.382672118782454, 48.89635154310535], [2.382868791801481, 48.89633510552885], [2.383062850408938, 48.896318515666884], [2.383259523179833, 48.89630207744822], [2.383453582903476, 48.89628548695965], [2.383650254051779, 48.89626904899107], [2.383844313527799, 48.896252457868854], [2.3840409844385, 48.89623601835884], [2.384067906935646, 48.896222712055334], [2.38406361144659, 48.89619634180388], [2.383986620160484, 48.89612668587458], [2.38390740365309, 48.89605306414974], [2.383793148865143, 48.89594969346584], [2.383713932889989, 48.895876072500386], [2.38370358727311, 48.89587238692141], [2.383500819981458, 48.89586573872111], [2.383309833362499, 48.89585919311063], [2.3831188454171173, 48.89585264808777], [2.382916078277014, 48.895845998897336], [2.38272509180399, 48.89583945235418], [2.382522324765571, 48.895832802497], [2.382331338379904, 48.8958262562251], [2.382128571443073, 48.89581960570118], [2.381937583802111, 48.89581305789494], [2.381734816967085, 48.895806406704224], [2.381543830777175, 48.89579985917629], [2.38134106404386, 48.89579320731888], [2.381150077962682, 48.895786658263646], [2.38094731133109, 48.895780005739454], [2.380756323973184, 48.89577345694841], [2.380553557454022, 48.89576680285818], [2.380362571558073, 48.895760253446184], [2.380159805129956, 48.895753599588495], [2.379968819342585, 48.895747048649234], [2.37976605301622, 48.89574039412478], [2.379575065952333, 48.895733843449676], [2.379372299727729, 48.89572718825845], [2.379181314136344, 48.89572063606315], [2.379169641448073, 48.89570622335428], [2.379104461322921, 48.895703675813486], [2.379038235881372, 48.89572850431605], [2.378850620542655, 48.89579809893312], [2.378677184392318, 48.895863120949734], [2.378489568085976, 48.895932714992604], [2.378316131047021, 48.89599773557913], [2.378142692200223, 48.896062756802785], [2.377955074459904, 48.896132349995625], [2.377781636088395, 48.896197369796226], [2.377594017380454, 48.89626696241486], [2.377583154291525, 48.896267685663915], [2.377373394096252, 48.89622320057108], [2.37716589528351, 48.89618217125083], [2.3769561371532, 48.8961376854308], [2.376748638999448, 48.89609665628366], [2.376538881580868, 48.89605216883007], [2.37633138409677, 48.89601113895678], [2.376123888314292, 48.89597010783022], [2.375914130564837, 48.89592562016947], [2.375907735378629, 48.89592274140339], [2.375780894083994, 48.89582013734825], [2.3756577507939163, 48.895720390670746], [2.3755309091210313, 48.89561778632476], [2.375407766788598, 48.8955180393718], [2.375284624917223, 48.895418293182374], [2.375157786079436, 48.895315688420006], [2.375034645176376, 48.895215941055866], [2.374907805960331, 48.895113336002666], [2.374784666014793, 48.89501358836305], [2.374657829148331, 48.89491098303327], [2.374534690149398, 48.89481123601749], [2.374407852904667, 48.89470863039689], [2.374406934146257, 48.894707791929456], [2.3744022678610612, 48.89468976860096]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 42, "roussel_fabien": 9.0, "nb_emargement": 816.0, "nb_procuration": 10.0, "nb_vote_blanc": 9.0, "jadot_yannick": 22.0, "le_pen_marine": 68.0, "nb_exprime": 804.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1236.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 818, "quartier_bv": "74", "geo_point_2d": [48.89590380878494, 2.3769503010342516], "melenchon_jean_luc": 491.0, "poutou_philippe": 1.0, "macron_emmanuel": 127.0}, "geometry": {"type": "Point", "coordinates": [2.3769503010342516, 48.89590380878494]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1fb078e5da19555a1f69d9addd140436a161eeb0", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 49, "zemmour_eric": 69.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-16", "geo_shape": {"coordinates": [[[2.397262833491116, 48.87023104717901], [2.397251066953359, 48.87023140521864], [2.397070871748261, 48.87021191559085], [2.396881959086802, 48.87019425868003], [2.396701764148308, 48.87017476849587], [2.396512853099492, 48.87015711190807], [2.396332658427607, 48.87013762116759], [2.396143746285826, 48.870119963090495], [2.395963551880561, 48.87010047179372], [2.395830548714453, 48.87007840531217], [2.395804184519731, 48.87007321346693], [2.395793226199165, 48.870075354330105], [2.395772435449023, 48.87007941600362], [2.395757379407438, 48.870102920595926], [2.39565951003639, 48.87022027281358], [2.395549350063259, 48.87035819724243], [2.395548560530672, 48.87035938847304], [2.395500880097888, 48.87044968474056], [2.3954549164818832, 48.87053534818084], [2.395407235725706, 48.87062564439669], [2.39536127042686, 48.87071130867978], [2.39536092981765, 48.870716575268375], [2.395410255161466, 48.870841549700835], [2.395454503332484, 48.87095387897757], [2.395498751694241, 48.87106620822657], [2.395548077710239, 48.8711911816634], [2.395592326465035, 48.87130351175296], [2.395641654293513, 48.87142848513125], [2.395685902098766, 48.87154081425589], [2.395722106949341, 48.8716325403526], [2.395732594956854, 48.87164593763228], [2.395790232631287, 48.87163365948162], [2.395956553713519, 48.87164444915931], [2.396111765737943, 48.87165448467585], [2.396266979185333, 48.87166451999794], [2.396433299101591, 48.87167530900601], [2.396444485381815, 48.87168070026591], [2.396520424882897, 48.87179697144338], [2.396596138413536, 48.87191324231898], [2.396672079955327, 48.872029513382635], [2.396747792809743, 48.872145783231666], [2.39682373502909, 48.87226205417461], [2.396899449912905, 48.87237832480933], [2.396975391446532, 48.87249459562474], [2.397051107006796, 48.8726108661391], [2.397127049217989, 48.87272713683381], [2.397202765465321, 48.87284340632843], [2.397278708354086, 48.87295967690241], [2.397354425267574, 48.873075947175934], [2.397430368833922, 48.87319221762924], [2.397506086434389, 48.87330848688303], [2.397582030678325, 48.87342475721561], [2.397657748944973, 48.87354102724825], [2.397671783861123, 48.8735464156286], [2.397855784849153, 48.873532903457324], [2.398026769704456, 48.87351903416348], [2.398055527200688, 48.87351773804653], [2.398057039746099, 48.87350058277595], [2.398056556443096, 48.87345038495534], [2.398055660149891, 48.87331134530277], [2.398054445251235, 48.873185128527155], [2.398053547594538, 48.87304608973359], [2.398052332707188, 48.87291987292761], [2.398051435060701, 48.872780834100624], [2.398050220184658, 48.872654617264345], [2.398049322558773, 48.872515577504636], [2.398048107694034, 48.872389360638], [2.398049860567856, 48.872384910553876], [2.398161956850292, 48.8722535931394], [2.398275030521031, 48.87212082090074], [2.3983871243042, 48.87198950323716], [2.398500196827708, 48.87185673075406], [2.398499479707524, 48.8718471690222], [2.398454515805677, 48.8718047993447], [2.398408539528976, 48.87176167811241], [2.398407879524706, 48.87175201234335], [2.398499710078003, 48.87164859707935], [2.398601321758937, 48.87153233711688], [2.398693151540905, 48.87142892168389], [2.398794762351183, 48.871312662433375], [2.398886591361832, 48.871209246831434], [2.398988201311848, 48.87109298739359], [2.399080029551187, 48.870989571622665], [2.3991816386513243, 48.870873311098244], [2.399243420088925, 48.870803732944125], [2.399235486839229, 48.87078980469017], [2.399215804688285, 48.870783088592454], [2.39905309637333, 48.87073573030123], [2.398873881347776, 48.8706820142241], [2.398711172296269, 48.87063465545695], [2.3985319579814472, 48.87058093796368], [2.3983692509196652, 48.87053357873425], [2.398190037294911, 48.87047986162342], [2.39818908934914, 48.8704795474858], [2.397978716262007, 48.870393793728425], [2.397854361262973, 48.87034852067707], [2.397852397604806, 48.87034785878002], [2.397728042825322, 48.87030258559553], [2.397618702857193, 48.87027280695925], [2.397615417355976, 48.87027221664813], [2.397463784252526, 48.870258009260496], [2.3972835888758093, 48.87023851995335], [2.397262833491116, 48.87023104717901]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 16, "roussel_fabien": 34.0, "nb_emargement": 1279.0, "nb_procuration": 87.0, "nb_vote_blanc": 13.0, "jadot_yannick": 99.0, "le_pen_marine": 66.0, "nb_exprime": 1262.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1548.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1279, "quartier_bv": "78", "geo_point_2d": [48.87138916834736, 2.397243575757512], "melenchon_jean_luc": 499.0, "poutou_philippe": 10.0, "macron_emmanuel": 373.0}, "geometry": {"type": "Point", "coordinates": [2.397243575757512, 48.87138916834736]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d3130db8d05da77dae846f72715c197ea7968fe7", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 135, "zemmour_eric": 165.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-45", "geo_shape": {"coordinates": [[[2.310061005422707, 48.88053100842669], [2.310042405965211, 48.880594339480965], [2.31004895669064, 48.880674195973604], [2.3100555706030432, 48.88075484244075], [2.310052081878518, 48.8807645711329], [2.310064442844185, 48.880772275029905], [2.310205382208668, 48.88087567796991], [2.310345405172082, 48.880978408145225], [2.310486345652367, 48.881081810735104], [2.310626368372632, 48.88118453965544], [2.310766392997007, 48.88128726930956], [2.310907335148934, 48.88139067137483], [2.311047359518263, 48.88149340067326], [2.311188302785912, 48.88159680238838], [2.311328329627217, 48.881699531346804], [2.3114692740106, 48.88180293271182], [2.311471631081631, 48.88180534928951], [2.311474024536317, 48.881825950621554], [2.311492206012705, 48.881853440819036], [2.311492522538888, 48.8818663202106], [2.311503319410722, 48.88187334135217], [2.311556957636255, 48.88195443791846], [2.311624733577274, 48.88204979195074], [2.311696553864229, 48.88215837860847], [2.311764330338249, 48.8822537316448], [2.31183615119753, 48.88236231819863], [2.311903926829035, 48.88245767113041], [2.311904916479306, 48.88245883156316], [2.312006553106095, 48.88255969859332], [2.312107741884536, 48.882660123178276], [2.312208932428654, 48.882760546777135], [2.312310568869584, 48.88286141351369], [2.312411760195953, 48.88296183692275], [2.312513397422586, 48.883062703468696], [2.312614589519344, 48.88316312758721], [2.312716227531689, 48.88326399394249], [2.312718912537375, 48.883265956412245], [2.312867294628406, 48.88334660144288], [2.313017645797046, 48.88342831609461], [2.313166028813202, 48.88350896074314], [2.313316380919346, 48.88359067500764], [2.313464764860734, 48.88367131927403], [2.313615117904388, 48.88375303315134], [2.313648055805615, 48.88378921777124], [2.313671960532795, 48.88378021848476], [2.313693650912101, 48.88377492703991], [2.313737311928949, 48.88375694243745], [2.313740935207666, 48.883754764337084], [2.313866514652993, 48.88364517911], [2.313992558031891, 48.883536048766004], [2.314118136408459, 48.883426464152485], [2.31424417874254, 48.883317332622624], [2.314369756062108, 48.88320774772344], [2.314495795964249, 48.88309861679844], [2.314621372238769, 48.88298903071425], [2.314747412447723, 48.88287989951052], [2.314872987665463, 48.88277031314064], [2.31499902545425, 48.882661181642526], [2.315124599615122, 48.88255159498695], [2.315250637710832, 48.88244246321011], [2.315369082554826, 48.88233603893343], [2.315495118253096, 48.88222690687001], [2.3155175761721543, 48.88220672920972], [2.315519610919721, 48.88220577675691], [2.315533681626171, 48.88219221250767], [2.315629667495992, 48.882105966513805], [2.315744400786363, 48.881998373974824], [2.315862843599588, 48.881891950066006], [2.315977574573207, 48.8817843572749], [2.316096016434899, 48.88167793221542], [2.31621074644349, 48.88157034007921], [2.316329187342046, 48.88146391476838], [2.316443916397432, 48.88135632238782], [2.316447888931375, 48.8813159829378], [2.316400792722384, 48.881304926513344], [2.316197446201427, 48.8812791324716], [2.316000424044486, 48.88125552812216], [2.315797077914711, 48.881229733399245], [2.315600056126022, 48.88120612838985], [2.315403033152537, 48.88118252304797], [2.315199688967211, 48.881156727316494], [2.315002666362094, 48.88113312131468], [2.314799322567871, 48.881107324902054], [2.314602300331129, 48.88108371824029], [2.314398956928223, 48.88105792114651], [2.314201935059866, 48.88103431382486], [2.313998592048081, 48.881008516049924], [2.313801570548118, 48.88098490806835], [2.31359822793952, 48.88095910871298], [2.313401208171356, 48.88093550007933], [2.313197864578656, 48.88090970093425], [2.313129300669778, 48.880901485164244], [2.313118722083282, 48.880897969225416], [2.313088871408928, 48.88089719540187], [2.312960415928822, 48.880881802734145], [2.3127571571942402, 48.880856837906904], [2.312560138194264, 48.88083322788697], [2.312356879841145, 48.88080826237908], [2.312159861206503, 48.88078465169939], [2.311956603234857, 48.88075968551082], [2.311759584965356, 48.88073607417138], [2.311556327375193, 48.88071110730214], [2.311359309471043, 48.880687495302965], [2.311156052262371, 48.88066252775306], [2.310959033359997, 48.880638915086294], [2.310755777896211, 48.88061394686358], [2.310558759359106, 48.880590333537064], [2.31035550427693, 48.88056536463368], [2.310158486105105, 48.88054175064741], [2.310072774251056, 48.88053122104276], [2.310061005422707, 48.88053100842669]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 45, "roussel_fabien": 9.0, "nb_emargement": 1349.0, "nb_procuration": 100.0, "nb_vote_blanc": 19.0, "jadot_yannick": 77.0, "le_pen_marine": 43.0, "nb_exprime": 1327.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1639.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1349, "quartier_bv": "66", "geo_point_2d": [48.88191523596216, 2.313324752969645], "melenchon_jean_luc": 135.0, "poutou_philippe": 6.0, "macron_emmanuel": 720.0}, "geometry": {"type": "Point", "coordinates": [2.313324752969645, 48.88191523596216]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1b8faeeb38e865a144f9a63bfdccd7e9e6e60100", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 117, "zemmour_eric": 105.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-75", "geo_shape": {"coordinates": [[[2.280546134494349, 48.831946869166174], [2.280481471346281, 48.83195143394854], [2.280455084629386, 48.83196113328819], [2.280422272036373, 48.831973194401485], [2.2803533126759, 48.83199854307728], [2.280175756054404, 48.832061686583714], [2.280001981548666, 48.83212556130359], [2.27982442406899, 48.83218870428132], [2.279650647347247, 48.8322525784753], [2.279473090371503, 48.8323157209325], [2.279299312795864, 48.832379594608796], [2.279121753587392, 48.832442737428366], [2.279091368095088, 48.83245390623084], [2.279039267321739, 48.832473055618046], [2.279021578393965, 48.83247862046566], [2.279019873974957, 48.83248207999099], [2.278901466131315, 48.83259157771398], [2.278785946332858, 48.83269877952764], [2.278667537505538, 48.83280827699786], [2.278552018120488, 48.832915477673744], [2.27843649824777, 48.833022679127104], [2.278318086588576, 48.83313217621147], [2.278202565754577, 48.83323937741813], [2.278084153111773, 48.833348874249715], [2.278080071156563, 48.83335136247173], [2.277908981704819, 48.83341907357762], [2.277733635811014, 48.83348865641976], [2.277562545458673, 48.83355636702183], [2.277387198628154, 48.83362595024687], [2.277216108749835, 48.83369365945399], [2.277040759632809, 48.83376324215442], [2.277034862627025, 48.83377380836614], [2.277080115390284, 48.83386292594445], [2.277125007374239, 48.833949777585616], [2.277170260456839, 48.83403889421652], [2.277215152742426, 48.83412574581022], [2.277213291413781, 48.83413392608526], [2.27710172524532, 48.83423561439469], [2.276992225580557, 48.83433541919934], [2.276880657174861, 48.834437108175344], [2.276771156663577, 48.83453691275961], [2.276659587395372, 48.83463860151109], [2.276550086037662, 48.83473840587504], [2.276539551628328, 48.83474845834189], [2.276545426737937, 48.83475784109538], [2.276599838158566, 48.834881066353745], [2.276654644309891, 48.835005121385365], [2.276709056234442, 48.835128347466124], [2.276763861555866, 48.83525240151276], [2.276818273996723, 48.83537562751661], [2.276873081200357, 48.835499681494], [2.27692749415753, 48.83562290742093], [2.276982300518784, 48.83574696131262], [2.277036713992278, 48.83587018716263], [2.277091522223296, 48.835994241884414], [2.277145936225491, 48.83611746675816], [2.277200743614234, 48.83624152139423], [2.277255159495084, 48.8363647461993], [2.277309967403669, 48.83648880075789], [2.277364382426174, 48.83661202637707], [2.277419190867173, 48.8367360799589], [2.277473607768363, 48.8368593055094], [2.277528416729318, 48.83698335901372], [2.277582832784531, 48.83710658447907], [2.277637642265447, 48.8372306379059], [2.277654379091553, 48.83723678367356], [2.277864809683662, 48.83719806539303], [2.2780722950068872, 48.83715969501213], [2.278282724964904, 48.83712097689304], [2.278490209686185, 48.8370826048853], [2.2787006390225573, 48.83704388602836], [2.278908123116783, 48.83700551419239], [2.2789205147644243, 48.837007261730676], [2.279065703642207, 48.837087037193676], [2.279209668749003, 48.83716588144055], [2.279354859860955, 48.83724565744875], [2.27949882585566, 48.83732450043712], [2.279644016489739, 48.83740427607483], [2.279787984709841, 48.8374831196115], [2.279933176240618, 48.83756289398765], [2.280077143973951, 48.83764173715692], [2.280222337751461, 48.837721511178934], [2.280366306360178, 48.83780035398899], [2.280510275404427, 48.83787919662019], [2.280655470506278, 48.83795897009957], [2.28079944042612, 48.83803781237158], [2.280944635037585, 48.83811758637971], [2.281089831468256, 48.8381973593148], [2.28124519287783, 48.83828519306737], [2.281262818078173, 48.83828911770973], [2.281278409669681, 48.838279070963125], [2.281398722469531, 48.83818623742971], [2.28152257715882, 48.838089653073894], [2.281642889086589, 48.837996819279205], [2.281766742860967, 48.83790023555353], [2.281768421218738, 48.83789026258859], [2.281681220321355, 48.83778001992068], [2.281590830880599, 48.83766627565202], [2.281503630733532, 48.83755603283258], [2.2814132420688242, 48.83744228840694], [2.281423334100567, 48.83742921188391], [2.281594504633212, 48.83741268068203], [2.281757297979694, 48.83739680044551], [2.28176890636766, 48.83738737815978], [2.281757836428866, 48.83726251010277], [2.281746482972224, 48.837137358824], [2.281735413140243, 48.83701249073694], [2.281724059804389, 48.83688733852879], [2.2817129900668283, 48.83676247131104], [2.281701636839268, 48.836637319072786], [2.28169056722091, 48.83651245092578], [2.281679214089249, 48.83638729955667], [2.281668143215379, 48.83626243137145], [2.281656791566721, 48.83613727908115], [2.281695348945436, 48.836085381981455], [2.281663350080702, 48.83607500529577], [2.281527025752458, 48.836020397610035], [2.281345960822534, 48.83594431730061], [2.281340512353181, 48.835937811764204], [2.2813044140990932, 48.835924674451526], [2.281298850232427, 48.835920017334374], [2.281242723715758, 48.83581249707492], [2.2811828247598402, 48.835683058821246], [2.281126700099938, 48.83557553849274], [2.281066801704414, 48.835446100153526], [2.281010677538859, 48.83533857974783], [2.281018093098734, 48.8353274118109], [2.281187856726334, 48.83527834863249], [2.281351792558114, 48.8352319941924], [2.281521554198583, 48.83518293052801], [2.281685489433534, 48.83513657562663], [2.281855251811457, 48.835087511492624], [2.282019186449475, 48.83504115612995], [2.282188946840369, 48.834992091509974], [2.282352880881553, 48.834945735686], [2.282354269967189, 48.834945279942666], [2.282510769529376, 48.83488712445715], [2.282677823560265, 48.834824179033404], [2.282834321035724, 48.834766023110156], [2.283001374287818, 48.83470307722771], [2.283157872401015, 48.834644920882994], [2.283324924874311, 48.83458197454183], [2.283481422262859, 48.83452381776748], [2.283648473957459, 48.834460870967675], [2.28380497062146, 48.834402713763744], [2.283972021537161, 48.83433976650521], [2.283975167288708, 48.83432577755835], [2.283843536101379, 48.83423385932078], [2.283702629697366, 48.834136346124524], [2.283570999468949, 48.83404442757153], [2.283430094099163, 48.83394691313843], [2.283298464829754, 48.83385499426989], [2.2831575604817322, 48.833757479499255], [2.283025932171222, 48.83366556031524], [2.282885027470435, 48.83356804609815], [2.282753401481064, 48.83347612660688], [2.282612497814501, 48.83337861115295], [2.28248087278401, 48.833286691346174], [2.282339970139294, 48.83318917555471], [2.282208346067674, 48.83309725543247], [2.282067444432411, 48.8329997402028], [2.281935821319654, 48.8329078197651], [2.281794920718708, 48.83281030329856], [2.281663298564705, 48.8327183825454], [2.281531675512762, 48.83262646163173], [2.281390776428208, 48.83252894466455], [2.281259155697338, 48.83243702344363], [2.281118257622195, 48.83233950703823], [2.280986637850162, 48.83224758550185], [2.280845740809222, 48.832150067859615], [2.28071412199602, 48.83205814600781], [2.280573225964567, 48.83196062892738], [2.280546134494349, 48.831946869166174]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 75, "roussel_fabien": 11.0, "nb_emargement": 1110.0, "nb_procuration": 54.0, "nb_vote_blanc": 10.0, "jadot_yannick": 70.0, "le_pen_marine": 94.0, "nb_exprime": 1097.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1438.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1110, "quartier_bv": "60", "geo_point_2d": [48.83492194642122, 2.2798879951545645], "melenchon_jean_luc": 198.0, "poutou_philippe": 4.0, "macron_emmanuel": 465.0}, "geometry": {"type": "Point", "coordinates": [2.2798879951545645, 48.83492194642122]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "62491afbcec0e7a51df4d48dbbb19276d74e2c76", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 53, "zemmour_eric": 65.0, "hidalgo_anne": 53.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "2-8", "geo_shape": {"coordinates": [[[2.352534088752133, 48.86624257367389], [2.352448983028002, 48.86626029526682], [2.352260450125579, 48.86630133555668], [2.352065576046575, 48.86634473347405], [2.351877043910823, 48.86638577226494], [2.351682169196561, 48.86642916955475], [2.3514936364419983, 48.86647020863788], [2.351298761092377, 48.86651360530009], [2.351110226367174, 48.86655464376875], [2.350915350382302, 48.86659803980336], [2.350726816412506, 48.86663907767237], [2.350531939792491, 48.86668247307941], [2.350343405226301, 48.866723509442004], [2.350148527970952, 48.866766904221485], [2.34995999142292, 48.86680794086884], [2.349765113532337, 48.86685133502075], [2.349576577739737, 48.86689237106847], [2.34938169921403, 48.86693576459279], [2.349381566621759, 48.866935793550326], [2.349178221054497, 48.86698157613708], [2.348983341863258, 48.86702496900928], [2.348779995597927, 48.86707075091577], [2.34858511574138, 48.8671141431361], [2.348381768777986, 48.86715992436232], [2.348186888256138, 48.86720331593075], [2.347983540594689, 48.86724909647671], [2.347788659407546, 48.86729248739323], [2.347585311048046, 48.867338267258994], [2.347390429195616, 48.8673816575236], [2.347335547485745, 48.867385471857126], [2.347328432070976, 48.8674090372089], [2.347338559314483, 48.86750011312116], [2.347346515027771, 48.86766865555485], [2.347357415373713, 48.86776668937603], [2.347368349436485, 48.867789023913474], [2.347414093687029, 48.86778783618699], [2.347593390811585, 48.86784179481117], [2.347769993927076, 48.86789504239043], [2.34794929042621, 48.867949000468826], [2.348125894268935, 48.868002247517815], [2.348305192868759, 48.86805620506524], [2.348481797438816, 48.868109451583955], [2.348661095413108, 48.868163408585595], [2.348837700710393, 48.86821665457399], [2.349017000785476, 48.86827061104468], [2.349193606809886, 48.868323856502805], [2.349372906259527, 48.868377812427696], [2.349549513011159, 48.868431057355494], [2.34972881456149, 48.86848501274944], [2.34990542067727, 48.86853825713953], [2.35008472296522, 48.868592211995036], [2.350261331171391, 48.86864545586228], [2.350437939738487, 48.86869869946629], [2.350617241767166, 48.86875265350889], [2.350793851061475, 48.86880589658263], [2.350973155190843, 48.868859850094246], [2.351149765212466, 48.86891309263763], [2.351329068716259, 48.86896704560344], [2.351505679465089, 48.86902028761655], [2.3516849850696753, 48.869074240051305], [2.351861596545609, 48.86912748153411], [2.352040901524711, 48.86918143342313], [2.352217513727847, 48.869234674375555], [2.3523968208076402, 48.86928862573353], [2.352403667191732, 48.86929322513229], [2.352408530313291, 48.86930010442137], [2.352513202780265, 48.86945904371158], [2.352612789226424, 48.869599907408706], [2.35264955594884, 48.869648340596044], [2.352689351812893, 48.86966902840956], [2.352872796530273, 48.86962919748811], [2.353057883600721, 48.86958772846997], [2.353241329102032, 48.86954789788741], [2.353426414227126, 48.86950642828901], [2.353609859171392, 48.86946659623941], [2.353794945066266, 48.869425126974754], [2.353978388079322, 48.869385294350074], [2.354163473403087, 48.86934382361321], [2.354195810076205, 48.86933920190737], [2.354230517797375, 48.869310250531846], [2.354249265539085, 48.8692940736129], [2.354211531871001, 48.869261407429036], [2.354148778290661, 48.86914353039082], [2.354079054583393, 48.86901972320956], [2.354016300230799, 48.868901846068766], [2.353946578536217, 48.86877803789138], [2.353883824774552, 48.8686601606553], [2.353814103718306, 48.86853635237368], [2.3537513505475642, 48.86841847504245], [2.353681630129646, 48.86829466665659], [2.353618877549818, 48.8681767892301], [2.3535491577590593, 48.86805298163932], [2.353486405770137, 48.86793510411764], [2.353416686628849, 48.86781129552334], [2.353353935230823, 48.8676934179064], [2.353315271908598, 48.86762475738783], [2.353312119007659, 48.86761518574177], [2.353306011763645, 48.867607830299924], [2.353274956602779, 48.86755268211679], [2.353203761283393, 48.86742575634744], [2.353134043484375, 48.86730194843081], [2.353062848839931, 48.86717502344818], [2.35299313172244, 48.86705121452213], [2.352921937763992, 48.86692428942688], [2.352852221316954, 48.86680048039067], [2.352781028044493, 48.86667355518286], [2.352711312268, 48.86654974603654], [2.352640119681416, 48.86642282071615], [2.35257040456418, 48.86629901235898], [2.352543651885313, 48.866251315762064], [2.352534088752133, 48.86624257367389]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 8, "roussel_fabien": 21.0, "nb_emargement": 1346.0, "nb_procuration": 93.0, "nb_vote_blanc": 14.0, "jadot_yannick": 117.0, "le_pen_marine": 65.0, "nb_exprime": 1328.0, "nb_vote_nul": 4.0, "arr_bv": "02", "arthaud_nathalie": 1, "nb_inscrit": 1788.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1346, "quartier_bv": "08", "geo_point_2d": [48.86788424179377, 2.3512358755928116], "melenchon_jean_luc": 410.0, "poutou_philippe": 6.0, "macron_emmanuel": 516.0}, "geometry": {"type": "Point", "coordinates": [2.3512358755928116, 48.86788424179377]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2e4d6dd287668c7224c792297e44ce6abc856a13", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 149, "zemmour_eric": 157.0, "hidalgo_anne": 2.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-5", "geo_shape": {"coordinates": [[[2.287537655015341, 48.855718905373585], [2.287536890939937, 48.855718667890386], [2.28740224153104, 48.855623493735735], [2.287267191269508, 48.85552527809876], [2.287132541502566, 48.85543010271666], [2.286997493601152, 48.855331887665585], [2.28686284482648, 48.85523671196341], [2.286727796584143, 48.85513849568347], [2.286593150152342, 48.8550433205687], [2.286458102919587, 48.8549451039673], [2.286323456117428, 48.85484992852431], [2.286188411256953, 48.854751711609595], [2.286053765447139, 48.8546565358466], [2.285918720233527, 48.85455831860229], [2.285784076778748, 48.854463142527365], [2.285649032574695, 48.85436492496159], [2.285514390124571, 48.854269747667374], [2.285379346917737, 48.85417153067946], [2.285244704097249, 48.8540763530571], [2.285109663262738, 48.85397813575583], [2.284975021434467, 48.85388295781344], [2.284839980259045, 48.853784739283334], [2.284705340773519, 48.853689561928384], [2.284570300607623, 48.85359134307683], [2.284519232406645, 48.85355524228309], [2.2845130030251832, 48.85355095555644], [2.284492792775069, 48.853542943717514], [2.284409222532514, 48.85348386681716], [2.284267740531632, 48.85338708762228], [2.284133103131157, 48.85329190869012], [2.283991622164304, 48.853195129152034], [2.283856984389141, 48.85309995078391], [2.28371550446867, 48.85300317000334], [2.283580869056488, 48.85290799131623], [2.283439390157666, 48.852811211091776], [2.2833047543954113, 48.8527160311701], [2.283163277893345, 48.852619250610665], [2.283028643131403, 48.85252407036186], [2.282887166300585, 48.85242728945107], [2.282752533889311, 48.85233210978259], [2.282611058104861, 48.852235327629366], [2.28247642533114, 48.85214014762561], [2.282334950568291, 48.85204336602847], [2.282225661687232, 48.8519661010263], [2.2822064685964962, 48.8519523848377], [2.282205446194003, 48.851952009965814], [2.282180104690548, 48.851934093741576], [2.282045703149954, 48.85183797117463], [2.281911072447998, 48.85174278960149], [2.281776670546753, 48.85164666580833], [2.281642042180677, 48.85155148482361], [2.281507641269209, 48.851455360711725], [2.281373013901173, 48.851360178508614], [2.281238613966971, 48.85126405497731], [2.281103986221858, 48.85116887244695], [2.280969588652331, 48.85107274770583], [2.280834961880541, 48.850977565755684], [2.28070056530066, 48.850881440695865], [2.2805659395144913, 48.85078625842665], [2.280431543924249, 48.85069013304814], [2.28029691913601, 48.85059494956061], [2.280162524535505, 48.8504988238634], [2.280027900720452, 48.85040364095608], [2.279975405022352, 48.85036567320603], [2.279957551666905, 48.85036544614882], [2.279921402745421, 48.85036158887217], [2.27990213420601, 48.85040065636649], [2.2797555929674562, 48.85048989770717], [2.279616297380993, 48.85057537638493], [2.279477001325115, 48.85066085579323], [2.279330458639135, 48.85075009569308], [2.279191161647346, 48.850835574755195], [2.279044619343334, 48.850924814299155], [2.278905320052924, 48.85101029300689], [2.27875877676797, 48.85109953218674], [2.278619476541632, 48.85118501054823], [2.2784729322758333, 48.85127424936399], [2.278453320329711, 48.851301500501734], [2.278496350063222, 48.85133699072306], [2.27864407794433, 48.85142786539093], [2.278793029217632, 48.85151693592396], [2.278940758126354, 48.85160781021083], [2.2790897104335652, 48.85169687946088], [2.279237438994639, 48.85178775425779], [2.279386392323416, 48.85187682312409], [2.279534123287075, 48.85196769664892], [2.279683077624792, 48.85205676603076], [2.279830809616084, 48.852147639174596], [2.279979763625077, 48.85223670726517], [2.280127496631375, 48.8523275809273], [2.280276453024592, 48.85241664864234], [2.28042418705844, 48.852507521923435], [2.280573144473049, 48.8525965892547], [2.280720878184319, 48.85268746124733], [2.280869836608013, 48.852776529094115], [2.280870723232375, 48.852813701427095], [2.280908978134606, 48.85280768437609], [2.280963520165967, 48.852840297423086], [2.281057937223485, 48.85289675197907], [2.281198449958281, 48.85297544128259], [2.281347410021504, 48.853064508511764], [2.281487922283039, 48.85314319745528], [2.281636883333007, 48.853232263411364], [2.281777397834509, 48.85331095291056], [2.281917912760298, 48.85338964223913], [2.282066875249741, 48.85347870764019], [2.282207389702275, 48.853557396608785], [2.282356353166074, 48.85364646163603], [2.282496869870898, 48.853725150260985], [2.282645834309161, 48.85381421491441], [2.282647048160606, 48.85381504060953], [2.2827663941830982, 48.8538993273035], [2.282885009038203, 48.853991018416274], [2.283004355848669, 48.85407530485954], [2.283122971522995, 48.85416699572191], [2.283242319121439, 48.85425128191451], [2.283360935602825, 48.854342973425716], [2.283480283989156, 48.85442725936761], [2.283598901302245, 48.85451894972913], [2.283591398317235, 48.85454157136718], [2.283643927730668, 48.85456727298278], [2.283644115141342, 48.85456742070038], [2.283772977010535, 48.85467147094614], [2.28389917567574, 48.85477209563073], [2.28402803856053, 48.854876145582686], [2.284154238213902, 48.85497676997975], [2.284283102114197, 48.85508081963786], [2.284409302755951, 48.855181443747384], [2.284535505235495, 48.85528206862211], [2.284664369301701, 48.85538611693359], [2.284790572769547, 48.8554867415208], [2.284919437851272, 48.855590789538425], [2.2850456423197683, 48.85569141293877], [2.28517450840468, 48.85579546156186], [2.285300713861595, 48.85589608467465], [2.285429580962048, 48.856000133003796], [2.285555787407186, 48.85610075582906], [2.285684655523191, 48.85620480386435], [2.285686126350468, 48.856214728966016], [2.285604494479318, 48.85631565863777], [2.28552484938201, 48.856416096468834], [2.28544321688308, 48.85651702601224], [2.285363571167089, 48.85661746371773], [2.285281936677312, 48.8567183931247], [2.285202291705485, 48.85681883071281], [2.285120656587909, 48.85691975999143], [2.285041009622187, 48.85702019834509], [2.285040337699566, 48.85702754747679], [2.285115507282227, 48.857158767634466], [2.285183349915675, 48.8572937671266], [2.285183707804118, 48.857298577228036], [2.285139870369491, 48.857426766037044], [2.285097551819754, 48.85755122436435], [2.285055233067948, 48.85767568266275], [2.285011394999858, 48.85780387138115], [2.284969074474161, 48.85792832961261], [2.284925235981524, 48.85805651827028], [2.284882916407701, 48.85818097645107], [2.284839077502861, 48.8583091641487], [2.284796757505678, 48.85843362316997], [2.2847529181762862, 48.85856181080687], [2.284745328173253, 48.85858649593771], [2.284762305781468, 48.85861051129397], [2.284963670905382, 48.858658840934204], [2.285168949572485, 48.858704487446644], [2.2853703154366922, 48.85875281639852], [2.285575594830405, 48.858798462209556], [2.28577696279791, 48.85884679048118], [2.285982241542892, 48.85889243648195], [2.286183610250783, 48.85894076406526], [2.286388889734586, 48.85898640846534], [2.286590259182854, 48.85903473536026], [2.286795539393042, 48.8590803790589], [2.286800463365788, 48.85908231234094], [2.286928217689752, 48.85916060441243], [2.28706681267491, 48.859253519690185], [2.287194569181838, 48.859331811473425], [2.287333163722089, 48.859424727319514], [2.287460921049068, 48.85950301880629], [2.287599516532144, 48.8595959334303], [2.287727274666882, 48.859674225519946], [2.287865871080387, 48.859767139821145], [2.287866524916082, 48.85976756910691], [2.287994940134522, 48.859857682326435], [2.288133537513386, 48.85995059630228], [2.288261953644761, 48.8600407092204], [2.288400553337349, 48.86013362377903], [2.288528970381668, 48.86022373639582], [2.288667569686664, 48.86031664972247], [2.288795987644032, 48.86040676203786], [2.288934587912102, 48.860499675039925], [2.28906300677005, 48.86058978795316], [2.289201608001203, 48.860682700630676], [2.289330027784388, 48.8607728123432], [2.289468629978626, 48.86086572469613], [2.28959705067488, 48.860955836107266], [2.289735653819851, 48.86104874903485], [2.289864075429081, 48.86113886014461], [2.289907378035339, 48.861193794194264], [2.289945458035902, 48.86119158109445], [2.290087671674911, 48.86110214769869], [2.290222150168465, 48.86101626566709], [2.290364364216933, 48.86092683193646], [2.290498841789622, 48.86084095047962], [2.290641054884583, 48.86075151640607], [2.290775530197947, 48.860665633717396], [2.290917742339409, 48.86057619930088], [2.291052218107128, 48.86049031629581], [2.291194429282858, 48.86040088243564], [2.291328904141877, 48.86031499910607], [2.291471113013507, 48.86022556399562], [2.291605586964033, 48.8601396803416], [2.291747796232804, 48.86005024579555], [2.291882269274642, 48.85996436181704], [2.291940660877831, 48.859933008679214], [2.291905599435816, 48.859884490603186], [2.291762952758843, 48.859779851066236], [2.291641736540213, 48.85968219398192], [2.29152051940083, 48.859584537657426], [2.291395179194082, 48.859484405143434], [2.291273962976997, 48.859386748551785], [2.291148623707781, 48.85928661666101], [2.2910274084252222, 48.85918895890293], [2.29090207010566, 48.85908882673607], [2.290780855745389, 48.85899116871087], [2.29065551837537, 48.858891036267885], [2.290534304937377, 48.85879337797554], [2.290408968517097, 48.85869324525653], [2.290287756001375, 48.85859558669703], [2.290162420530723, 48.858495453701906], [2.290041208925009, 48.85839779577458], [2.289915874416232, 48.858297661604134], [2.289865860989075, 48.858257365963965], [2.289858944480748, 48.858234719607346], [2.289813006089304, 48.858220450304984], [2.289741810304527, 48.8581630877254], [2.289607726867137, 48.858050339069294], [2.289486517348869, 48.85795267964165], [2.289352435005386, 48.85783993067817], [2.289231226442833, 48.8577422718727], [2.289097145193247, 48.85762952260177], [2.288975937598661, 48.857531863519256], [2.288973867211841, 48.857529569549534], [2.288901268747491, 48.857412438534595], [2.28882976365324, 48.85729601006151], [2.288757165838265, 48.85717887893447], [2.288685661386441, 48.85706245035077], [2.288613064220935, 48.856945319111674], [2.288541560423911, 48.856828889518134], [2.288468963895485, 48.856711759066286], [2.288397460740977, 48.8565953293621], [2.288324864861798, 48.85647819879818], [2.288253362349898, 48.8563617689834], [2.288180767120059, 48.85624463830742], [2.288109263887816, 48.85612820837394], [2.288106739240224, 48.85612555194017], [2.287967661789482, 48.85602413396444], [2.287833009453932, 48.85592895941327], [2.287698358960726, 48.855833785609825], [2.287559283095921, 48.85573236623356], [2.287537655015341, 48.855718905373585]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 5, "roussel_fabien": 10.0, "nb_emargement": 1001.0, "nb_procuration": 71.0, "nb_vote_blanc": 6.0, "jadot_yannick": 38.0, "le_pen_marine": 67.0, "nb_exprime": 995.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1272.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1004, "quartier_bv": "62", "geo_point_2d": [48.85628488007625, 2.285923743052941], "melenchon_jean_luc": 68.0, "poutou_philippe": 0.0, "macron_emmanuel": 481.0}, "geometry": {"type": "Point", "coordinates": [2.285923743052941, 48.85628488007625]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "15bbda4d4f000f30b2981838a7a8661570b31859", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 58, "zemmour_eric": 90.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-28", "geo_shape": {"coordinates": [[[2.334971135396092, 48.88575751908848], [2.334986862365513, 48.88578436417726], [2.334932170671244, 48.88589470844101], [2.334860784007434, 48.88603208548407], [2.334806091785932, 48.886142429665334], [2.334734703097765, 48.88627980569542], [2.334680010348815, 48.88639014979425], [2.334608622340575, 48.88652752662503], [2.334553929064274, 48.88663787064137], [2.334552072052419, 48.886640295701895], [2.334449220312491, 48.88673546653268], [2.334350646205916, 48.88682957016488], [2.334252073118114, 48.88692367281618], [2.334149218906524, 48.88701884335715], [2.334050645096422, 48.88711294582641], [2.333947790142838, 48.88720811617793], [2.333946085268688, 48.88720941161912], [2.3338274604367673, 48.88728352270917], [2.333659262188106, 48.88738905641718], [2.333540637902392, 48.88746316721855], [2.333372438492166, 48.88756870050646], [2.333253813388993, 48.887642811011496], [2.33325121454398, 48.88765363883446], [2.333350073583871, 48.88777339246504], [2.333434991936798, 48.8878760612109], [2.333519910636096, 48.88797872898772], [2.333618770899612, 48.888098483260286], [2.333640348775179, 48.888105371683864], [2.333652925467889, 48.88810397756987], [2.333797466972917, 48.88800169107856], [2.333929610214116, 48.88791015794424], [2.33394008944345, 48.88790737436281], [2.334084221852576, 48.88791387507771], [2.334268220524898, 48.88791923210089], [2.334300999494606, 48.88793183585522], [2.334327538468622, 48.887921142908425], [2.334509863750842, 48.88787230218654], [2.334686416147659, 48.887823444398606], [2.334868740751185, 48.88777460312587], [2.335045293832112, 48.887725745711286], [2.335221845229537, 48.88767688712738], [2.335404168817696, 48.88762804503284], [2.335580719535762, 48.88757918681472], [2.335763042456591, 48.88753034327016], [2.335939593870343, 48.887481484526056], [2.336121914737427, 48.88743264132244], [2.336130080917679, 48.887432205459454], [2.336297472754218, 48.88745738740336], [2.33646489631128, 48.88748180485913], [2.336632288457718, 48.88750698723308], [2.336799712342808, 48.88753140332036], [2.336967104810602, 48.88755658522511], [2.337134527636931, 48.88758100173483], [2.337301921801195, 48.88760618227867], [2.337469344943981, 48.887630598319156], [2.337478059143959, 48.887629965745866], [2.337668459496783, 48.887571346048425], [2.337857223934142, 48.88751168187507], [2.338047624791189, 48.8874530615759], [2.338236388365314, 48.88739339679836], [2.338426788363111, 48.88733477588999], [2.338615551073999, 48.887275110508305], [2.338805950212341, 48.88721648899073], [2.338994712059987, 48.88715682300486], [2.339185108975415, 48.88709820087047], [2.339373869971229, 48.88703853338123], [2.339437758617262, 48.88702977567517], [2.339439198143708, 48.88700488033613], [2.339350941489407, 48.886925034033546], [2.339186074797865, 48.88679578298477], [2.339097818897497, 48.88671593558115], [2.339096143445252, 48.88671427966372], [2.339017822361744, 48.88661446169534], [2.338908487199186, 48.886477107146355], [2.338869997310158, 48.88642805211369], [2.338861363274015, 48.88640992884254], [2.338841363202691, 48.88640068033195], [2.33880153277339, 48.886349917241176], [2.338763857933789, 48.88630080551422], [2.338749889724228, 48.88629595114113], [2.338489961673126, 48.886318768439786], [2.338284795627712, 48.886332167894004], [2.338281452487848, 48.88633211434402], [2.338224145480623, 48.886326515862024], [2.338219273635053, 48.88632538815699], [2.338114871668145, 48.88628700510501], [2.338012992068697, 48.88624781481881], [2.338006683397151, 48.8862423560895], [2.337970599859609, 48.8861527750282], [2.337912308435504, 48.88598940984232], [2.337876225235584, 48.885899828732], [2.337876062819325, 48.885895656747444], [2.337913300374764, 48.885779686484156], [2.337947962641228, 48.88565656668288], [2.337947030099817, 48.885651293257965], [2.3378782746799462, 48.885548605399684], [2.337774902881364, 48.88540737594559], [2.337706146748021, 48.885304688857445], [2.337695197101646, 48.885288333343304], [2.337591826316137, 48.88514710369771], [2.337534021803523, 48.88506077112191], [2.337516734236828, 48.885047496695776], [2.3374785121009403, 48.885061614216646], [2.337293072042352, 48.885131714111004], [2.337106910260383, 48.88520072962607], [2.336921470581234, 48.88527082804432], [2.336735306434288, 48.885339843864635], [2.336549865759526, 48.88540994169848], [2.336363700622857, 48.88547895693225], [2.336178258952483, 48.88554905418165], [2.335992092825992, 48.88561806882894], [2.335806650160005, 48.88568816549395], [2.3356204830551652, 48.88575717865543], [2.335435039382093, 48.88582727563532], [2.335248871287437, 48.88589628821027], [2.335230151543001, 48.88589267419625], [2.335164811215229, 48.88581171083981], [2.335116920164853, 48.88574597465171], [2.335093926444729, 48.88571717275488], [2.335057635592026, 48.885723487753985], [2.335040244394039, 48.88572850565345], [2.334986988961651, 48.885744445462336], [2.334971135396092, 48.88575751908848]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 28, "roussel_fabien": 26.0, "nb_emargement": 1461.0, "nb_procuration": 131.0, "nb_vote_blanc": 17.0, "jadot_yannick": 159.0, "le_pen_marine": 48.0, "nb_exprime": 1440.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1797.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1461, "quartier_bv": "69", "geo_point_2d": [48.88669347433602, 2.3363961385405343], "melenchon_jean_luc": 426.0, "poutou_philippe": 9.0, "macron_emmanuel": 560.0}, "geometry": {"type": "Point", "coordinates": [2.3363961385405343, 48.88669347433602]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e073a769f2c5c095a6882cf0b3f777423c0b91e3", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 52, "zemmour_eric": 85.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "14-52", "geo_shape": {"coordinates": [[[2.308064699152362, 48.830725504519314], [2.308079543418748, 48.83074194825499], [2.308184753268011, 48.830830150730286], [2.308301720694505, 48.83092691211375], [2.3084255696481, 48.83103073818993], [2.308542536597516, 48.831127500212], [2.308666386507268, 48.83123132602021], [2.308783354365656, 48.83132808689016], [2.308900322658254, 48.83142484763732], [2.309024173975087, 48.831528673946806], [2.3091411445268433, 48.831625434449016], [2.309264996811777, 48.831729259591235], [2.309381966898495, 48.83182601983272], [2.309505820127701, 48.83192984560629], [2.30962279111149, 48.832026605594955], [2.309746645308806, 48.83213043020123], [2.309746747704186, 48.832130516232795], [2.309849701006536, 48.83221784787376], [2.309928460268003, 48.83228386944331], [2.309940776886939, 48.83229261317739], [2.310010897920599, 48.83225839539121], [2.3101427040309312, 48.83217196940628], [2.310274826346047, 48.83208539579923], [2.310406631593301, 48.83199896861079], [2.310538753031544, 48.831912394698776], [2.310670558754239, 48.83182596811333], [2.31080267795351, 48.83173939388858], [2.310934482813024, 48.83165296609958], [2.311066602485856, 48.831566392477086], [2.311198405108303, 48.83147996437609], [2.311330523916267, 48.83139338954935], [2.311462325651775, 48.83130696204348], [2.311594443583096, 48.83122038691186], [2.311726244455532, 48.83113395820249], [2.311858361510008, 48.831047382765966], [2.3119901628579163, 48.83096095465953], [2.312122277673471, 48.8308743789103], [2.3121343117526862, 48.83087191368279], [2.312319787329422, 48.83089417767038], [2.312506186585162, 48.8309165519055], [2.312519171113403, 48.83091339418733], [2.312654498952595, 48.830804054233774], [2.312786541030855, 48.83069704710768], [2.312921867735808, 48.830587707729755], [2.313053908717389, 48.83048070028787], [2.313185949156807, 48.830373692689975], [2.31332127283436, 48.83026435192145], [2.313332772579026, 48.83024907279143], [2.313318745908939, 48.83024004526315], [2.313159181987897, 48.83015627757332], [2.312998704160127, 48.83007367360087], [2.3128391412507048, 48.82998990637093], [2.312678663080117, 48.82990730194897], [2.312519101194057, 48.8298235342796], [2.312358625404868, 48.82974092942383], [2.312199064542365, 48.82965716131507], [2.312038589772306, 48.8295745560176], [2.311879029933256, 48.829490787469446], [2.311718554820381, 48.82940818172247], [2.311558996016553, 48.82932441183561], [2.311398523273174, 48.82924180655413], [2.311238965492895, 48.82915803622784], [2.311078493780513, 48.8290754296054], [2.310918937011793, 48.82899165973908], [2.310758464956593, 48.82890905266713], [2.310598909211207, 48.8288252823614], [2.310438439537353, 48.828742674855626], [2.310278884815498, 48.82865890411058], [2.310118416160747, 48.82857629616317], [2.310092800538283, 48.82856307234192], [2.310076979493974, 48.828564646721176], [2.3099872815534, 48.82863099167608], [2.309868485374502, 48.828715953053745], [2.309733258703716, 48.828815971293686], [2.309614460327097, 48.828900932397154], [2.309479232689258, 48.82900095033333], [2.309360433477138, 48.82908591117045], [2.309225204872033, 48.829185928802964], [2.30910640618665, 48.82927088938159], [2.3090918559987292, 48.829285609076855], [2.309092878871696, 48.82928901283364], [2.3091131808401633, 48.82941343305219], [2.309123119099453, 48.82954946550145], [2.309120197805002, 48.82955547805017], [2.3090517375795923, 48.82961262110251], [2.308981364650826, 48.82967346209322], [2.30897927243903, 48.829681772839756], [2.309039710721424, 48.82980109341853], [2.309100510268581, 48.829920003225475], [2.309160949104649, 48.8300393237176], [2.309221749194262, 48.830158234337006], [2.309216955101176, 48.83016833542658], [2.309079993073645, 48.830235380652745], [2.308901831491002, 48.83032220597871], [2.308764868653951, 48.83038925083477], [2.308586704658548, 48.83047607567157], [2.308449741011874, 48.83054312015756], [2.308271575965771, 48.830629944513], [2.308134611497737, 48.830696989528214], [2.308064699152362, 48.830725504519314]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 52, "roussel_fabien": 23.0, "nb_emargement": 1129.0, "nb_procuration": 42.0, "nb_vote_blanc": 10.0, "jadot_yannick": 62.0, "le_pen_marine": 114.0, "nb_exprime": 1113.0, "nb_vote_nul": 6.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1534.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1129, "quartier_bv": "56", "geo_point_2d": [48.83040306276205, 2.3105206336276054], "melenchon_jean_luc": 400.0, "poutou_philippe": 9.0, "macron_emmanuel": 313.0}, "geometry": {"type": "Point", "coordinates": [2.3105206336276054, 48.83040306276205]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "975d659b21b3b1bfd6903cdf4e899982725c4b51", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 127, "zemmour_eric": 124.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "6-13", "geo_shape": {"coordinates": [[[2.329579553106811, 48.84783478714267], [2.329572519533169, 48.84782117368227], [2.329674326911181, 48.847705299440214], [2.329773226110857, 48.847592476529336], [2.329875031233212, 48.847476602085074], [2.329973929575935, 48.84736377808582], [2.330075733805373, 48.847247903447034], [2.330174632630537, 48.847135080165614], [2.3301665343580362, 48.84712192034442], [2.330051398327956, 48.84710050222681], [2.329926779047052, 48.847079222447896], [2.329924922074566, 48.84707707426628], [2.329893866082279, 48.847073501638036], [2.329802646577499, 48.847057924579914], [2.329629962615389, 48.84702861554214], [2.329414123043027, 48.846991757959984], [2.329241439518669, 48.84696244835967], [2.329025601857736, 48.846925590082066], [2.3288529187712372, 48.84689627991925], [2.328850853575811, 48.8468958078609], [2.328664131644532, 48.84684169432635], [2.328473708611854, 48.84678645260758], [2.328286987464096, 48.846732338479065], [2.328096565230767, 48.84667709615462], [2.327909844866331, 48.846622981432205], [2.327719423432357, 48.84656773850202], [2.327532703851347, 48.84651362318571], [2.327342283216731, 48.846458379649874], [2.327324291615273, 48.846463046007656], [2.327262438612069, 48.846557526912974], [2.327202037600563, 48.84664971627739], [2.327140184154069, 48.846744197103625], [2.327079784072552, 48.846836386398536], [2.327068509201496, 48.84684177311144], [2.326923469176424, 48.8468504625648], [2.32679756608563, 48.846857713525004], [2.326784990828635, 48.84685373953478], [2.326674255552807, 48.84674393297752], [2.326563751794445, 48.84663396212497], [2.326453017451655, 48.84652415534127], [2.326342514637875, 48.8464141833634], [2.326231781228214, 48.84630437635332], [2.326121280698144, 48.846194405056416], [2.3260105468591172, 48.846084597812215], [2.325900047273509, 48.845974625389964], [2.32578931571844, 48.84586481882632], [2.325678815703179, 48.84575484617039], [2.325665375498855, 48.84574781924191], [2.325644673702934, 48.845754905546926], [2.325551326247964, 48.84578936543355], [2.3254427399378, 48.84582762906729], [2.325437051452739, 48.84583968982016], [2.325535458183866, 48.84596540800351], [2.325634943116956, 48.846092295041956], [2.325733350814072, 48.84621801213473], [2.325832838073672, 48.846344898987525], [2.325931246725153, 48.84647061588901], [2.326030734948898, 48.8465975025485], [2.326129144554756, 48.84672321925871], [2.326228632379955, 48.84685010571723], [2.326224667903101, 48.84686131191883], [2.326232587814789, 48.84686995351845], [2.326233396568607, 48.84687696230052], [2.326195228963069, 48.84695160210109], [2.32616269784292, 48.84701450278953], [2.326161458135347, 48.84701626844844], [2.326065676982042, 48.84712117546603], [2.325969247584786, 48.847226864788794], [2.3258734656574003, 48.84733177163265], [2.325777035480658, 48.84743746078051], [2.325681252779285, 48.84754236745067], [2.3255848218114092, 48.84764805732295], [2.3254890383360403, 48.847752963819374], [2.325392606600297, 48.84785865261744], [2.325296822350925, 48.84796355894015], [2.32520038983567, 48.84806924756333], [2.325104604812286, 48.848174153712314], [2.325008171517511, 48.84827984216057], [2.324912385720108, 48.84838474813583], [2.324815951634153, 48.84849043730847], [2.324815117274028, 48.84850087867014], [2.324833017485134, 48.848508386818], [2.324979952370652, 48.848589663690404], [2.32513040845489, 48.84867298199759], [2.3252773442683132, 48.84875425849275], [2.325427801303229, 48.84883757641364], [2.325574736681902, 48.84891885252389], [2.325725194667497, 48.849002170058505], [2.325872132336739, 48.8490834457992], [2.326022591273123, 48.84916676294748], [2.32616952988181, 48.84924803741159], [2.326319989757256, 48.84933135507292], [2.32646692929386, 48.8494126291598], [2.326617390120008, 48.84949594643479], [2.326639704664338, 48.84948997166881], [2.326659268476143, 48.84936371548078], [2.326678969265694, 48.84923644826715], [2.326698532887193, 48.84911019204393], [2.326718233496631, 48.84898292389557], [2.326737796916106, 48.8488566685365], [2.326757497333915, 48.84872940035268], [2.326777059200543, 48.84860314495079], [2.326796759426525, 48.84847587673151], [2.326816322477026, 48.84834962040283], [2.326836022499767, 48.8482223530474], [2.326855585359973, 48.84809609668355], [2.326875285202608, 48.84796882839343], [2.326894847860907, 48.84784257289372], [2.326914547511823, 48.847715304568126], [2.326934109979834, 48.84758904903325], [2.326953809439033, 48.847461780672255], [2.3269784765124832, 48.84745748918499], [2.327090962779132, 48.84756208623547], [2.327190105235919, 48.847654704188905], [2.327302592353008, 48.84775930102188], [2.327401734198465, 48.8478519187759], [2.327404642519104, 48.847853901128204], [2.327536621813986, 48.847919808884086], [2.327668205348216, 48.847986315037375], [2.327800185311765, 48.84805222249468], [2.32793177089092, 48.84811872745857], [2.327935306819579, 48.848121393239204], [2.328029942628485, 48.848230284226105], [2.328126828711419, 48.84834213226728], [2.328221465321264, 48.84845102308109], [2.328318352225643, 48.84856287094499], [2.3284129896366412, 48.8486717615857], [2.328509877350884, 48.84878361017165], [2.328604515574531, 48.84889249974001], [2.328701404110241, 48.84900434814865], [2.328721316072465, 48.84901082733517], [2.328733828471372, 48.84900714361068], [2.328814378488932, 48.84889287140748], [2.328895218259366, 48.84877787048548], [2.328975767557071, 48.8486635990494], [2.3290566066157, 48.8485485979947], [2.329137155205141, 48.84843432642644], [2.329217993551976, 48.848319325239025], [2.329298542807274, 48.84820505264692], [2.329379379079683, 48.84809005131914], [2.3294599276152548, 48.84797577949417], [2.329540763175892, 48.84786077803368], [2.329571574386545, 48.84784602131147], [2.329572147888798, 48.84784529514392], [2.329579553106811, 48.84783478714267]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 13, "roussel_fabien": 17.0, "nb_emargement": 1124.0, "nb_procuration": 106.0, "nb_vote_blanc": 15.0, "jadot_yannick": 73.0, "le_pen_marine": 43.0, "nb_exprime": 1110.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 1360.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "23", "geo_point_2d": [48.84771205639059, 2.3273390561003797], "melenchon_jean_luc": 145.0, "poutou_philippe": 1.0, "macron_emmanuel": 528.0}, "geometry": {"type": "Point", "coordinates": [2.3273390561003797, 48.84771205639059]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b01a9962fbec27e93a852e1df3aa612548a79e9e", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 28, "zemmour_eric": 56.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-41", "geo_shape": {"coordinates": [[[2.406332584119689, 48.862342841391815], [2.406368618064363, 48.862362006138724], [2.406451142755886, 48.86244622780103], [2.406557705690252, 48.86255856330167], [2.406669740868854, 48.86267290077764], [2.406776304727869, 48.86278523695992], [2.406888340873675, 48.86289957420789], [2.406994905667797, 48.86301191017255], [2.407106942780819, 48.86312624719249], [2.407213508509856, 48.86323858293952], [2.407325545227058, 48.86335291972466], [2.407432111891221, 48.863465255254056], [2.407544150938704, 48.863579591817874], [2.407650718537803, 48.863691927129636], [2.407683010781575, 48.863724880504655], [2.407686407958135, 48.86373168733809], [2.407700602599017, 48.86374206762744], [2.407780350423665, 48.86382345057527], [2.407876591941969, 48.86392692192352], [2.407988632957804, 48.864041258023605], [2.408084875302271, 48.864144728284714], [2.408196917243647, 48.86425906416731], [2.408293160394054, 48.864362535139854], [2.408300349971719, 48.86436633622117], [2.408493437587441, 48.86441009386517], [2.408668766028695, 48.86444970562858], [2.408861854272958, 48.86449346177563], [2.40903718327491, 48.8645330729964], [2.409212512533282, 48.86457268485815], [2.409405601690046, 48.8646164401231], [2.409424585869497, 48.864618139124204], [2.4094459998549, 48.86457299991642], [2.409571776865185, 48.86446985377757], [2.409699563390805, 48.86436507611587], [2.409825338023807, 48.864261930583766], [2.4099531235294522, 48.86415715263166], [2.410078897158455, 48.86405400681371], [2.410206681654313, 48.86394922767195], [2.410332454279425, 48.863846081568184], [2.410460237745143, 48.863741303035304], [2.410586010729228, 48.86363815665242], [2.410713791811943, 48.86353337782245], [2.410705151947967, 48.86351884151161], [2.410527823679462, 48.86350167307404], [2.410352444216602, 48.863484914180965], [2.410175117532582, 48.863467746126254], [2.409999736944631, 48.86345098580981], [2.409822410492327, 48.863433817232014], [2.409647031484824, 48.86341705730421], [2.409469703911486, 48.863399887297255], [2.409294325131673, 48.8633831268521], [2.409116999153018, 48.863365956328735], [2.408941619237955, 48.86334919535953], [2.408930010458767, 48.86333939816745], [2.408949951377056, 48.863208066103184], [2.408970842397118, 48.86307443999746], [2.408990781747922, 48.86294310788829], [2.409011673920045, 48.86280948175016], [2.409031613066614, 48.862678149602786], [2.409052505027654, 48.8625445234256], [2.40907244396989, 48.86241319124], [2.409093334356936, 48.86227956501701], [2.40911327445786, 48.86214823279997], [2.409134164634041, 48.86201460653791], [2.40915410316752, 48.86188327427586], [2.409174994495748, 48.86174964798148], [2.4091949328352023, 48.86161831478199], [2.409215822579164, 48.86148468934106], [2.409235762077296, 48.861353356110115], [2.409256651610301, 48.86121973063013], [2.409276590904107, 48.86108839736101], [2.409297480226262, 48.860954771841925], [2.409317417952661, 48.86082343852787], [2.40933424202241, 48.8607158243816], [2.409331032412055, 48.86070617747855], [2.409299023913659, 48.86070333135364], [2.409183940305295, 48.860691448615064], [2.409063815029957, 48.86067955436013], [2.409055948308775, 48.860676849862294], [2.408933833263813, 48.860591891133154], [2.408812708152775, 48.860507654836994], [2.408690592527846, 48.86042269673926], [2.408569469566395, 48.860338460190775], [2.408447354734668, 48.86025350183188], [2.4083262325598263, 48.86016926502433], [2.408323453856788, 48.86016778175903], [2.408143912288501, 48.86009550945955], [2.4079587422756052, 48.86002081138877], [2.407779201719694, 48.8599485385326], [2.407594032762259, 48.8598738389883], [2.407414491855774, 48.859801565568624], [2.407229323943584, 48.859726865450114], [2.407216516913483, 48.85972688565023], [2.407205105840686, 48.85973826517961], [2.407147379457314, 48.85986873928367], [2.407085573509343, 48.860009613826705], [2.407027845163022, 48.86014008783446], [2.406966038580084, 48.86028096138197], [2.406964524624454, 48.86028320493575], [2.406848768151894, 48.86041794642692], [2.406737714688812, 48.86053594735234], [2.406723115806897, 48.860539973285206], [2.406498127702014, 48.86050623761256], [2.406271302111719, 48.86047253826456], [2.406255212277044, 48.86047881769239], [2.40619355350688, 48.860619777880565], [2.4061331808436313, 48.86075920652651], [2.406071521411472, 48.86090016661619], [2.406011148107088, 48.86103959426601], [2.405999945517609, 48.861046029218784], [2.405873460246608, 48.86105779428176], [2.40574517061102, 48.86106952776787], [2.40573390441396, 48.86107603882401], [2.40569236765393, 48.86117516585704], [2.405650328237126, 48.861277836479], [2.405608789784042, 48.861376964357504], [2.405566750039701, 48.86147963493142], [2.40551396045979, 48.861511883037586], [2.405535503195772, 48.86152923134328], [2.405612048050503, 48.861608092655345], [2.405686611370157, 48.861682164067126], [2.405763155305045, 48.86176102616414], [2.405868258667405, 48.86186543640792], [2.405980290842305, 48.86197977460084], [2.40608539508112, 48.86208418463335], [2.406197428203051, 48.862198522600416], [2.406302533318229, 48.862302932421606], [2.406332042790221, 48.862333049372424], [2.406332584119689, 48.862342841391815]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 41, "roussel_fabien": 22.0, "nb_emargement": 1085.0, "nb_procuration": 51.0, "nb_vote_blanc": 9.0, "jadot_yannick": 46.0, "le_pen_marine": 84.0, "nb_exprime": 1070.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1528.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1085, "quartier_bv": "80", "geo_point_2d": [48.86213149296647, 2.40794129860031], "melenchon_jean_luc": 565.0, "poutou_philippe": 6.0, "macron_emmanuel": 217.0}, "geometry": {"type": "Point", "coordinates": [2.40794129860031, 48.86213149296647]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "788ae678fb1ab039d0e7b1cbdaa7d110218337a8", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 99, "zemmour_eric": 128.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "6-2", "geo_shape": {"coordinates": [[[2.33775344081474, 48.84928835133392], [2.337706887724221, 48.84929192581349], [2.337495518405378, 48.84931088502766], [2.337271476613226, 48.84932546394902], [2.337269260480052, 48.84932548854714], [2.337077756645261, 48.84931854671465], [2.336885998838108, 48.849310362952295], [2.336694495121303, 48.84930341960696], [2.336502737430005, 48.84929523523024], [2.336311235171177, 48.84928829217822], [2.336119477595637, 48.849280107187155], [2.33592797409226, 48.84927316261473], [2.335736216632694, 48.84926497700931], [2.335734310981197, 48.8492648054439], [2.3355606797854422, 48.84924087888876], [2.335391025562789, 48.84921585716841], [2.335221371503156, 48.84919083520691], [2.335047742152038, 48.84916690791336], [2.3350465550436272, 48.84916670705421], [2.334883749450401, 48.84913396750184], [2.334683120169347, 48.849095123902245], [2.334520315028085, 48.849062383853195], [2.334319684930961, 48.84902353963408], [2.33415688160433, 48.84899079909601], [2.3339562520536052, 48.84895195426502], [2.333783588199304, 48.84891795318002], [2.333582959207286, 48.848879107720485], [2.333410295837904, 48.84884510609455], [2.3332096674046, 48.84880626000652], [2.333037004520143, 48.84877225783965], [2.332864340509862, 48.8487382545157], [2.332663714257551, 48.848699407516044], [2.332662548460676, 48.84869914019929], [2.332510096519375, 48.84865888882542], [2.33235446252906, 48.84861961958542], [2.332202009707327, 48.848579366909256], [2.332046376186661, 48.848540097265705], [2.331893925186553, 48.84849984510098], [2.331738292135533, 48.84846057505388], [2.331683069182043, 48.84847056606018], [2.331680209234568, 48.84847510354264], [2.331688645843099, 48.84860261421204], [2.331697136209962, 48.84872572370101], [2.331705574274674, 48.84885323344883], [2.331714063359701, 48.84897634290125], [2.331722501494877, 48.84910385351847], [2.331730992023386, 48.84922696294961], [2.331739428877792, 48.84935447352934], [2.331747919498757, 48.849477582032264], [2.331756356435159, 48.849605092582046], [2.331764847125414, 48.849728201955394], [2.331773337855684, 48.84985131131446], [2.33178177491489, 48.84997882181966], [2.331790265737519, 48.85010193025052], [2.331798704241312, 48.85022944073344], [2.33177606926944, 48.85024629150517], [2.33180112400291, 48.85024924822303], [2.331808711733919, 48.850256806535384], [2.331877579189605, 48.850251176212986], [2.33206438877372, 48.8502557501187], [2.332280306754046, 48.850260671451316], [2.332467116419166, 48.85026524382892], [2.332683034465239, 48.850270165334], [2.332869844199726, 48.85027473708281], [2.333085762334775, 48.8502796569618], [2.333272572127008, 48.85028422898106], [2.333488490339403, 48.850289148133285], [2.333675300200991, 48.8502937195237], [2.333891218490722, 48.85029863794908], [2.334078028433146, 48.85030320781143], [2.334090994487719, 48.850310833684084], [2.334118049317911, 48.85042741603423], [2.334146169651181, 48.85054434245361], [2.334173226088748, 48.85066092477438], [2.334201346671833, 48.85077785115625], [2.334228401991372, 48.8508944334325], [2.334256524186883, 48.85101135978442], [2.334283579751102, 48.85112794202376], [2.334311702196541, 48.85124486833816], [2.334338758005444, 48.85136145054056], [2.334366879337986, 48.85147837680987], [2.334382484728974, 48.851485847345664], [2.334545172266318, 48.8514687291628], [2.334780746201758, 48.85144425096258], [2.334943433489884, 48.85142713133828], [2.335179005687565, 48.85140265234544], [2.335341694077601, 48.851385532186555], [2.335345948704543, 48.851385534236634], [2.335536529782479, 48.85140493065589], [2.335722941945668, 48.85142445381789], [2.335913521943541, 48.851443849628474], [2.336099935750019, 48.85146337221002], [2.336286348333447, 48.85148289449326], [2.3364769287433003, 48.85150229030469], [2.336663342969808, 48.85152181200744], [2.336853923673756, 48.85154120631849], [2.33704033818081, 48.8515607274332], [2.337230919167388, 48.85158012114309], [2.337417332592048, 48.85159964166219], [2.337607915223982, 48.851619034778466], [2.337794328929169, 48.85163855470958], [2.3379849104695642, 48.851657948116426], [2.338171325817803, 48.851677467467056], [2.338361907652234, 48.85169685937345], [2.338406331446757, 48.85168383681357], [2.338396102193735, 48.85165926019686], [2.338315211133107, 48.851541456748684], [2.338241666168525, 48.851420628853965], [2.338240838493777, 48.85141862590568], [2.338210882036367, 48.85128831250627], [2.338182038843316, 48.85115727046652], [2.338152082683191, 48.85102695702176], [2.338123239782663, 48.85089591493702], [2.338093285271103, 48.85076560235375], [2.338064442674514, 48.85063455932479], [2.338034487097517, 48.85050424668867], [2.338005644782018, 48.85037320451404], [2.337975690876413, 48.85024289094082], [2.337946848853419, 48.85011184872125], [2.337916893882383, 48.8499815350952], [2.337888052151894, 48.84985049283067], [2.337858097478223, 48.84972017915928], [2.337829256040236, 48.8495891368498], [2.337799303014968, 48.84945882403993], [2.337770461880901, 48.84932778078627], [2.33775344081474, 48.84928835133392]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 2, "roussel_fabien": 8.0, "nb_emargement": 1016.0, "nb_procuration": 82.0, "nb_vote_blanc": 4.0, "jadot_yannick": 72.0, "le_pen_marine": 44.0, "nb_exprime": 1010.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1266.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1016, "quartier_bv": "22", "geo_point_2d": [48.85012141883437, 2.3351478219621176], "melenchon_jean_luc": 142.0, "poutou_philippe": 1.0, "macron_emmanuel": 485.0}, "geometry": {"type": "Point", "coordinates": [2.3351478219621176, 48.85012141883437]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a490784b40bc755900039ca3bb72288810abd4f7", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 76, "zemmour_eric": 64.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-4", "geo_shape": {"coordinates": [[[2.323034328562558, 48.88698204177591], [2.323056019696209, 48.886992035450405], [2.323100793319803, 48.88702112466972], [2.3232291119526662, 48.88710572146203], [2.323254586552855, 48.88712827762796], [2.323255943740315, 48.88712930603731], [2.323399680746766, 48.887222866156385], [2.323527998986993, 48.8873074635044], [2.323671736974128, 48.887401023281704], [2.323800056107037, 48.88748561942523], [2.323943795063085, 48.88757917976001], [2.324072115077003, 48.88766377559825], [2.324200436871429, 48.88774837130012], [2.324344177272157, 48.88784193113189], [2.3244724985840293, 48.8879265265208], [2.3246162399653683, 48.88802008601081], [2.324634499188166, 48.88802062157838], [2.32478312444466, 48.88793972974183], [2.324963939412552, 48.88784073315394], [2.325112562268497, 48.887759841786846], [2.325293375996986, 48.887660843786], [2.325441999191402, 48.887579952004415], [2.325442331512105, 48.88757977491025], [2.325521542365857, 48.887539104734635], [2.325590582264499, 48.88753444748728], [2.325593365143875, 48.887497634759164], [2.325654072009985, 48.88736844097925], [2.325705751423834, 48.8872518237918], [2.325757430606213, 48.887135206569624], [2.325818138006403, 48.887006012671584], [2.325869816693035, 48.886889395374844], [2.325930522164176, 48.88676020138326], [2.325982200355277, 48.886643584011914], [2.326028442862, 48.88654516901223], [2.326048312823655, 48.88652289205446], [2.326047218070718, 48.88651696740622], [2.326061681826102, 48.886486187433775], [2.326117561850678, 48.88636381813524], [2.326178267457998, 48.88623462396393], [2.326234148313921, 48.88611225369136], [2.326294851963568, 48.885983060322964], [2.326350732275571, 48.88586068996795], [2.326411435354358, 48.88573149561161], [2.326467315110816, 48.885609126073476], [2.326528017607119, 48.88547993162845], [2.326583896831201, 48.88535756110863], [2.326644600108633, 48.88522836658262], [2.326700478777289, 48.885105996879645], [2.32676118010864, 48.88497680225728], [2.326817058245033, 48.88485443157263], [2.326877758993922, 48.884725236861605], [2.32693363657481, 48.88460286699382], [2.326994336741246, 48.88447367219414], [2.327050213778159, 48.88435130224396], [2.327110914725732, 48.88422210736329], [2.327166791230498, 48.88409973643141], [2.327227490232049, 48.88397054145442], [2.3272833661813372, 48.88384817133945], [2.32734406460046, 48.8837189762738], [2.327399940017413, 48.88359660517717], [2.327392281114434, 48.88358715694122], [2.327346679754561, 48.88358144360621], [2.327220194730739, 48.883685765846586], [2.327096665744137, 48.88378764848606], [2.326970179718732, 48.88389197044277], [2.3268466497538602, 48.88399385280515], [2.326720162738285, 48.88409817357892], [2.326596631783607, 48.88420005656352], [2.326470143766332, 48.88430437705361], [2.326346611833258, 48.884406259761185], [2.326220122814375, 48.884510579967554], [2.326096589914638, 48.88461246149877], [2.325970099882296, 48.884716782320716], [2.32584656600425, 48.88481866357487], [2.325720074970278, 48.8849229841131], [2.325596540113915, 48.88502486509022], [2.325470046714596, 48.88512918533705], [2.325346512243513, 48.885231066044774], [2.325327334313443, 48.88523246795583], [2.3253050637374493, 48.885220698829585], [2.325280599020931, 48.88520777068805], [2.325267228328146, 48.885206595458], [2.325254817751736, 48.885219726790005], [2.325139836691884, 48.885309744750856], [2.32502396779444, 48.88539973780571], [2.324908985938065, 48.88548975553013], [2.324793114865757, 48.885579749238445], [2.324678132212949, 48.88566976672643], [2.32456226170476, 48.88575976020431], [2.324559031237313, 48.88576595275378], [2.324564440990401, 48.885852166068], [2.324569876828715, 48.88593878781804], [2.324565967690812, 48.88594547027035], [2.324416267795259, 48.88604569777759], [2.324266667742156, 48.88614585820549], [2.324116966694464, 48.886246085320195], [2.323967365501662, 48.88634624445664], [2.323817663301822, 48.886446471178914], [2.323668060945864, 48.88654663082233], [2.323518357593865, 48.8866468571521], [2.323368754098302, 48.88674701550408], [2.323219049594138, 48.88684724144133], [2.323069444935493, 48.88694740030032], [2.323034328562558, 48.88698204177591]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 4, "roussel_fabien": 20.0, "nb_emargement": 1264.0, "nb_procuration": 87.0, "nb_vote_blanc": 10.0, "jadot_yannick": 125.0, "le_pen_marine": 45.0, "nb_exprime": 1253.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1566.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1264, "quartier_bv": "67", "geo_point_2d": [48.886227771751436, 2.3252342524429657], "melenchon_jean_luc": 347.0, "poutou_philippe": 9.0, "macron_emmanuel": 513.0}, "geometry": {"type": "Point", "coordinates": [2.3252342524429657, 48.886227771751436]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4b27054522d15800de7274e2e012e12e58db3aac", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 86, "zemmour_eric": 82.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "5-6", "geo_shape": {"coordinates": [[[2.343214170763249, 48.841133830322796], [2.343207144664273, 48.841152607351255], [2.3432804376543652, 48.84121912202145], [2.343317416491042, 48.84126250530721], [2.34334178635821, 48.841295086351465], [2.34337052667074, 48.841289212975006], [2.343490514061605, 48.84124215215948], [2.343636943983542, 48.84118869703329], [2.343656476252328, 48.841193749807324], [2.343719087553203, 48.84131902672075], [2.343779709183878, 48.84144197590901], [2.343842321079146, 48.84156725273009], [2.343902944662929, 48.84169020093669], [2.343965555790227, 48.841815477657995], [2.344026179942119, 48.841938426674076], [2.344088791663821, 48.842063703303], [2.344149416395152, 48.84218665222934], [2.344212030073754, 48.84231192877333], [2.344272654022045, 48.84243487760239], [2.344335268295072, 48.84256015405405], [2.344395894185308, 48.84268310280074], [2.344458507690272, 48.84280837915258], [2.344519134159971, 48.842931327809495], [2.34458174825927, 48.84305660406894], [2.344642375308542, 48.84317955263602], [2.3447049913647993, 48.84330482881057], [2.344765617630935, 48.84342777728042], [2.344828234281752, 48.84355305336254], [2.344888862489892, 48.84367600175004], [2.344951478372653, 48.84380127773234], [2.345012107160287, 48.84392422602998], [2.345074723637517, 48.84404950191991], [2.345135353004655, 48.84417245012776], [2.34519598265785, 48.84429539829131], [2.345258601385554, 48.84442067405076], [2.345257363524412, 48.84442809780206], [2.345163995977661, 48.84453143695591], [2.345071627593013, 48.84463027210064], [2.344978259315886, 48.844733611090795], [2.3448858902206853, 48.84483244607422], [2.344884467602923, 48.844839820242], [2.344904734108519, 48.84488088993433], [2.34493381203981, 48.84494304752749], [2.34494310122348, 48.84495127448424], [2.344984461017591, 48.844945748628774], [2.345140221657656, 48.84492112783558], [2.345309759076519, 48.844894926509376], [2.345465519411016, 48.84487030529153], [2.345635056501111, 48.84484410350316], [2.345645492215194, 48.84483633973767], [2.345666641143827, 48.84471069232092], [2.345689822444204, 48.844586282731626], [2.345710971164492, 48.84446063527885], [2.345734152236536, 48.844336226552386], [2.34575530075977, 48.844210578164294], [2.345778481614774, 48.84408616940134], [2.345780813236413, 48.844082136822344], [2.345895459641868, 48.8439731701786], [2.346012077191786, 48.843862579152486], [2.346126722642032, 48.84375361136643], [2.346243337836248, 48.84364302098496], [2.346357983682533, 48.843534052963236], [2.346474597905945, 48.84342346143527], [2.34658924141196, 48.843314494062376], [2.346705856016015, 48.843203902294654], [2.34682049856684, 48.84309493377939], [2.346937112177658, 48.84298434266383], [2.3470517537620292, 48.842875373905486], [2.347168365039558, 48.84276478163598], [2.347168958643584, 48.84276416701311], [2.347266639366418, 48.842656831350624], [2.347357354614104, 48.84255392833298], [2.347455033192537, 48.84244659248902], [2.347545747702236, 48.84234368930913], [2.347636460491342, 48.84224078604349], [2.347734139270599, 48.84213344994897], [2.347824852684218, 48.84203054652854], [2.3479225306927383, 48.8419232093607], [2.347929982439906, 48.841919290981714], [2.348111395892482, 48.84188020407332], [2.348296511304397, 48.84184022959985], [2.3484779242068052, 48.841801142132866], [2.348663039068037, 48.841761166190125], [2.3488444514204723, 48.84172207816456], [2.34902956434606, 48.84168210254371], [2.349210976148322, 48.84164301395951], [2.349396089885674, 48.8416030368768], [2.349405474260363, 48.84159469595358], [2.34941064893995, 48.84144593877696], [2.349416164537578, 48.84130665283584], [2.349421681468185, 48.841167366884484], [2.349426854696633, 48.84101860964283], [2.349432371568183, 48.84087932365507], [2.349437544737532, 48.840730566374525], [2.34943753343135, 48.840729943953015], [2.3494375249687423, 48.84069230731143], [2.349436033830475, 48.8406710652113], [2.349436272538122, 48.840645937371534], [2.349412822100993, 48.84064158732024], [2.349354128235116, 48.84064121772744], [2.349308314857899, 48.84064014201854], [2.349302183965804, 48.84063901684109], [2.349166827350585, 48.84058939913279], [2.349032434067611, 48.84053838080338], [2.348897076608192, 48.84048876277795], [2.348762683848749, 48.84043774414089], [2.348749101009384, 48.84043774304252], [2.348589257671957, 48.840498402741794], [2.348431286527301, 48.84056044125646], [2.348271442443715, 48.84062110052437], [2.348113470548896, 48.84068313861255], [2.347953627081595, 48.840743797456554], [2.347795654436617, 48.84080583511824], [2.347635808860709, 48.840866493523485], [2.34747783545441, 48.84092853165793], [2.347461853158968, 48.84092754511285], [2.347333605435788, 48.84085282148645], [2.347164773232935, 48.84075271381858], [2.347036527717027, 48.84067799076873], [2.346867696651077, 48.84057788266589], [2.346739450640074, 48.84050315837915], [2.346611206347958, 48.84042843485667], [2.346442376907265, 48.8403283261312], [2.346426356207685, 48.8403272672871], [2.346258647512571, 48.84039248296724], [2.346088937930089, 48.84045685376196], [2.345921227033487, 48.84052206895406], [2.345751516612451, 48.840586439262566], [2.345583806239039, 48.84065165398153], [2.345414093616902, 48.84071602379641], [2.345395641109925, 48.84071287307652], [2.3452721132110312, 48.84057778788743], [2.345168551716736, 48.84046388576891], [2.345142926964185, 48.840423872151106], [2.345133599040931, 48.84042366999316], [2.345084168965227, 48.84044207199566], [2.344898928322614, 48.84051106605089], [2.344718209162111, 48.840578342516295], [2.344532967550863, 48.840647335996415], [2.344352247445507, 48.84071461190076], [2.344167004865424, 48.840783604805736], [2.343986282452763, 48.84085088014153], [2.343805560936017, 48.8409181552077], [2.343620316908978, 48.84098714725355], [2.3434395944473803, 48.84105442175868], [2.343254349462836, 48.841123412330106], [2.343214170763249, 48.841133830322796]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 6, "roussel_fabien": 24.0, "nb_emargement": 1139.0, "nb_procuration": 78.0, "nb_vote_blanc": 9.0, "jadot_yannick": 89.0, "le_pen_marine": 44.0, "nb_exprime": 1127.0, "nb_vote_nul": 3.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1351.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1139, "quartier_bv": "19", "geo_point_2d": [48.841967216113645, 2.346181639518223], "melenchon_jean_luc": 333.0, "poutou_philippe": 6.0, "macron_emmanuel": 410.0}, "geometry": {"type": "Point", "coordinates": [2.346181639518223, 48.841967216113645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a71e231f866c80fbbcac1c8051e969f15aa684f8", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 154, "zemmour_eric": 133.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-60", "geo_shape": {"coordinates": [[[2.3025345268709883, 48.83889565117897], [2.302552845459806, 48.83889299602223], [2.3026961611490853, 48.838911559936456], [2.302839121569426, 48.838930207946994], [2.302982437450954, 48.83894877241685], [2.303125398075777, 48.8389674200847], [2.303139275833583, 48.838963682206995], [2.303218031090908, 48.83888785640372], [2.30328678625072, 48.83882400677369], [2.303288953525265, 48.83881731099404], [2.303253415783367, 48.8386884041082], [2.303217672810825, 48.83855845363003], [2.3031821354218, 48.83842954669311], [2.303146392792453, 48.83829959706286], [2.303110855756094, 48.83817069007494], [2.303075113494081, 48.83804073949396], [2.303039576810485, 48.837911832455], [2.303003834891554, 48.837781882721934], [2.302968298572739, 48.83765297473266], [2.3029325570091093, 48.837523024948204], [2.302897021031021, 48.83739411780721], [2.302861279834512, 48.837264167072064], [2.302825744209271, 48.837135259880036], [2.302790003355924, 48.83700530999282], [2.302801128684234, 48.83699483690067], [2.302992659364488, 48.836973377096875], [2.3031820862102013, 48.83695212777519], [2.30337361657668, 48.8369306673606], [2.303563043111879, 48.83690941743481], [2.303754573152564, 48.83688795730872], [2.303943999377244, 48.83686670677879], [2.304135530478492, 48.83684524515058], [2.304324955030404, 48.83682399400864], [2.30451648581775, 48.83680253176958], [2.304705910047129, 48.83678128092286], [2.304897440520671, 48.836759818073], [2.305086864451503, 48.83673856572291], [2.305278394611331, 48.83671710226221], [2.305467818231508, 48.83669584930803], [2.305468680818603, 48.83669573380081], [2.305608364616319, 48.83667401012875], [2.3057542705824092, 48.83665115142594], [2.305893954141633, 48.836629427419595], [2.306039859845715, 48.83660656926678], [2.306050146358943, 48.83659631495003], [2.306031591441544, 48.83652408307737], [2.306013190527141, 48.836460651544996], [2.306009199531094, 48.83644042759719], [2.3059784267679833, 48.836442473197344], [2.305829305251387, 48.83645946939391], [2.305674019285529, 48.83647601411206], [2.305661390337338, 48.836472900026834], [2.305543462539765, 48.83637965115068], [2.305425488509847, 48.83628612037612], [2.3053075615448613, 48.83619287215112], [2.305189588360852, 48.83609934112827], [2.305071662252516, 48.83600609175582], [2.30495368991451, 48.83591256048471], [2.304835764638637, 48.83581931176344], [2.304717793146728, 48.835725780244005], [2.304599867365091, 48.8356325303674], [2.30448189808148, 48.83553899860763], [2.30436397313239, 48.83544574938217], [2.304246004694756, 48.83535221737418], [2.304230126796718, 48.83534971739253], [2.304121046044882, 48.83538085946871], [2.304010054401209, 48.83541419648808], [2.303991841071919, 48.83540947402562], [2.303902064196218, 48.835267452329944], [2.303813313103372, 48.83512588170633], [2.303812653550848, 48.835124975796084], [2.303795844029278, 48.83511746622086], [2.303776850397695, 48.83512384554141], [2.303606989570038, 48.835171444434266], [2.303413315384787, 48.835225467129256], [2.303243452531632, 48.83527306549359], [2.303049778966383, 48.83532708670371], [2.302879915438207, 48.835374685446745], [2.302735168440401, 48.83541505910524], [2.302726886486626, 48.83541414382998], [2.302708357901484, 48.83542311768475], [2.302659430565048, 48.8354367646318], [2.302603903736616, 48.835451944284955], [2.30259622114887, 48.835463152446444], [2.302671961092472, 48.83560994180144], [2.30274637869088, 48.835751630230305], [2.302743447758707, 48.835760726489305], [2.302607563894675, 48.83585645228341], [2.302472609912176, 48.83595147553422], [2.302336723691305, 48.83604720099636], [2.30220177008355, 48.836142223933344], [2.302065882867943, 48.836237949071446], [2.301930926898345, 48.83633297257806], [2.301795040050417, 48.83642869740009], [2.301660083105273, 48.83652371968559], [2.301524193900368, 48.83661944417567], [2.301389235967525, 48.83671446613938], [2.301253347130397, 48.836810190313365], [2.301118388197893, 48.83690521285458], [2.301114730231085, 48.83691079097196], [2.301105875640681, 48.83700245809013], [2.301098784146495, 48.837092082236005], [2.301089929497353, 48.837183749338166], [2.301082837951085, 48.83727337346856], [2.301081914598785, 48.83727619030184], [2.301026795572007, 48.837368879447354], [2.300970785057622, 48.83746656565592], [2.300972606259092, 48.83747512752395], [2.30110560335912, 48.83759279779463], [2.3012412209684, 48.83771067657458], [2.301241124436446, 48.8377216375488], [2.301116087243538, 48.83782773168378], [2.3009928911858513, 48.837932026005845], [2.300867854345368, 48.83803811986938], [2.300744657305701, 48.83814241301681], [2.300619619455273, 48.838248506600884], [2.300496421409693, 48.83835280037237], [2.300371382549207, 48.83845889367697], [2.300248183521738, 48.838563186273866], [2.30023451907637, 48.83857609415098], [2.300240772217081, 48.838584865420586], [2.300329742358194, 48.83862924726932], [2.300419551440151, 48.838674680823246], [2.300422330890155, 48.83868706432468], [2.30034349274036, 48.83875954667625], [2.300265894674595, 48.83883169086833], [2.3001870574509002, 48.8389041731154], [2.300109458965273, 48.83897631629731], [2.300110122190962, 48.83898729699423], [2.300173591047956, 48.83903779204561], [2.300255705188544, 48.839102524341], [2.300272286269318, 48.83910478072339], [2.300460455987573, 48.83904213482606], [2.300648152669353, 48.838980387934775], [2.300836322837115, 48.83891774234651], [2.301024018625688, 48.8388559948586], [2.301212186542299, 48.838793347764835], [2.30139988143766, 48.83873159968031], [2.301588048453445, 48.8386689519883], [2.3017757424555922, 48.83860720330717], [2.301788600824409, 48.83860745194071], [2.301975673809229, 48.838678313308876], [2.302155402297924, 48.83874784543031], [2.302335131266132, 48.838817377277394], [2.302522205747388, 48.83888823777755], [2.3025345268709883, 48.83889565117897]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 60, "roussel_fabien": 27.0, "nb_emargement": 1368.0, "nb_procuration": 79.0, "nb_vote_blanc": 19.0, "jadot_yannick": 92.0, "le_pen_marine": 80.0, "nb_exprime": 1343.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1654.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1368, "quartier_bv": "57", "geo_point_2d": [48.83707837276755, 2.302772679535494], "melenchon_jean_luc": 234.0, "poutou_philippe": 3.0, "macron_emmanuel": 551.0}, "geometry": {"type": "Point", "coordinates": [2.302772679535494, 48.83707837276755]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2cc54ece58581cb9d35afdb49a6b900c4b31054c", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 71, "zemmour_eric": 137.0, "hidalgo_anne": 2.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "8-18", "geo_shape": {"coordinates": [[[2.299877844092862, 48.865307021284764], [2.299902671526151, 48.86532638920803], [2.299861911261852, 48.86545988218454], [2.299824387568434, 48.86558440507416], [2.299786863683542, 48.86570892883731], [2.299746102823076, 48.865842421728246], [2.29970857856531, 48.86596694543779], [2.299667817314447, 48.86610043737167], [2.299630292683598, 48.866224961027676], [2.299589531018253, 48.866358453803024], [2.299552007377531, 48.86648297741338], [2.299511243958564, 48.86661646922371], [2.299473719944858, 48.866740992780514], [2.299432957474512, 48.86687448544033], [2.29939543172469, 48.866999008935544], [2.299354668863826, 48.86713250063828], [2.299317142741104, 48.867257024079926], [2.299276379465628, 48.86739051662415], [2.299238852969796, 48.86751504001219], [2.299198089303997, 48.8676485315993], [2.299160562435152, 48.867773054933764], [2.299119798354623, 48.86790654736236], [2.299082271112859, 48.86803107064324], [2.299041506641897, 48.86816456211475], [2.299003979027009, 48.86828908534205], [2.298963214141506, 48.86842257765502], [2.298925687528856, 48.868547099937366], [2.298925033623985, 48.86854858542523], [2.29885280859979, 48.86867285316128], [2.298782301607568, 48.8687933239734], [2.298710074552479, 48.86891759068852], [2.298639568262082, 48.86903806139793], [2.298567340527157, 48.869162327999405], [2.29849683221222, 48.86928279859003], [2.298424605160636, 48.86940706508587], [2.29835409618423, 48.86952753556579], [2.298340066889351, 48.86955150722977], [2.298339810747454, 48.86955169818825], [2.298327160350966, 48.86957096715994], [2.298270681661495, 48.86966746592136], [2.298207590172323, 48.86978040638698], [2.298137080188676, 48.869900876698345], [2.2980739867639253, 48.870013817061704], [2.298003477518657, 48.870134287276926], [2.29794038352152, 48.870247227546], [2.297877290626122, 48.87036016687899], [2.297806779093809, 48.87048063693261], [2.297707137838078, 48.87061210229139], [2.29763662693444, 48.870732572225286], [2.297566114341426, 48.87085304209653], [2.297466471777958, 48.87098450631138], [2.29746553417146, 48.87098579406615], [2.297367436868419, 48.871096860224156], [2.297267653545891, 48.87121210913931], [2.297169555394817, 48.87132317511238], [2.297069771200933, 48.871438423838974], [2.29697167220161, 48.871549489627135], [2.296871887148503, 48.87166473726585], [2.296773787288987, 48.87177580376839], [2.296674001364508, 48.87189105121853], [2.296575900668867, 48.87200211663683], [2.2964761138608623, 48.872117364797674], [2.2963780123171462, 48.87222843003103], [2.296278224637746, 48.872343678003304], [2.296180122245745, 48.872454743051705], [2.296080333707093, 48.872569989936125], [2.295982230467, 48.87268105479957], [2.295882441044782, 48.87279630239469], [2.295784336956382, 48.872907367073196], [2.295684546662738, 48.87302261447969], [2.295586441726126, 48.87313367897324], [2.295486650573209, 48.87324892529186], [2.2953885461517682, 48.87335998960849], [2.295288752751952, 48.873475236629766], [2.295228777812901, 48.873543133769324], [2.295216810770912, 48.87355738714551], [2.295215133881909, 48.873563124973096], [2.295177002161947, 48.87360629195204], [2.295134330843662, 48.87365223993472], [2.295119487663505, 48.87371913378719], [2.295199365445194, 48.87373931232748], [2.295214084704143, 48.873743031438124], [2.295290927211946, 48.87370862621974], [2.295469758062842, 48.8736517198464], [2.295652054971733, 48.87359415459628], [2.295830883671666, 48.8735372476695], [2.2960131797686563, 48.87347968276275], [2.296192009056478, 48.87342277439936], [2.296374304353722, 48.873365208936704], [2.29655313149078, 48.873308300019886], [2.29673542598828, 48.87325073400131], [2.296914253688814, 48.8731938254464], [2.297096547398703, 48.87313625797265], [2.297275372948481, 48.87307934886431], [2.297457665858615, 48.8730217808347], [2.297636491984004, 48.872964871189026], [2.297818784094376, 48.87290730260343], [2.29799760806891, 48.87285039240439], [2.2981799007428, 48.87279282327093], [2.298358723929858, 48.87273591252651], [2.298541014440705, 48.87267834282915], [2.298719836840085, 48.87262143153939], [2.298902127914438, 48.87256386129412], [2.299080949526239, 48.87250694945898], [2.299263238425452, 48.87244937954912], [2.299442060625138, 48.87239246627735], [2.299624348724584, 48.87233489581161], [2.299803168773311, 48.872277981986464], [2.299985456072991, 48.87222041096485], [2.300164276697387, 48.87216349660233], [2.300346563197398, 48.87210592502487], [2.30052538165886, 48.872049011008336], [2.300707667371074, 48.8719914379757], [2.300886486408202, 48.871934523421764], [2.301068771320635, 48.871876949833236], [2.301247588207014, 48.871820034726014], [2.301429873682916, 48.87176246058961], [2.301608689781597, 48.87170554493705], [2.301790973094462, 48.871647970236786], [2.301969788405647, 48.87159105403894], [2.302152072281868, 48.87153347879079], [2.302330886805453, 48.87147656204755], [2.302513168506698, 48.87141898713488], [2.302602069522621, 48.87139068925745], [2.302624232958129, 48.87138632166776], [2.302640306261103, 48.87137646676955], [2.302730220310783, 48.87134784643805], [2.302906499878374, 48.871290976120626], [2.30308531275716, 48.871234057338654], [2.303261591551981, 48.871177186492424], [2.303440403652132, 48.87112026717414], [2.303616681674182, 48.87106339579912], [2.303795492995697, 48.871006475944505], [2.303971770244972, 48.87094960404069], [2.304150582139065, 48.87089268455698], [2.304326858627578, 48.870835811225135], [2.304505668379805, 48.870778891197176], [2.304681944095533, 48.87072201733652], [2.304860753069123, 48.8706650967723], [2.305037028012066, 48.87060822238284], [2.305215836207018, 48.870551301282326], [2.305392110377171, 48.87049442636413], [2.305570919156599, 48.87043750473522], [2.305747192554063, 48.87038062928822], [2.30592599919173, 48.87032370711514], [2.3061022718163002, 48.870266831139396], [2.306281077675321, 48.87020990842998], [2.306385548594162, 48.870176200280504], [2.306409003172263, 48.87016285412039], [2.306378748913903, 48.87011945000503], [2.306229474534562, 48.870037211267935], [2.306078955433513, 48.86995439673371], [2.305929682000361, 48.86987215761051], [2.305779163852857, 48.869789342686914], [2.305629892729291, 48.86970710318544], [2.30547937417213, 48.86962428786456], [2.305330103994842, 48.86954204797696], [2.305179586391223, 48.86945923226674], [2.305030317160105, 48.86937699199301], [2.304879800510024, 48.86929417589343], [2.304730532225275, 48.869211935233565], [2.304580016528726, 48.86912911874468], [2.30443074919024, 48.86904687769864], [2.304280234447218, 48.868964060820424], [2.304130968054888, 48.86888181938828], [2.303980455628564, 48.86879900212861], [2.303831188819415, 48.86871676030244], [2.303680677346604, 48.868633942653474], [2.303679775032454, 48.86862067294834], [2.303835763210675, 48.86851790101522], [2.303993373522236, 48.8684155007423], [2.304149360467487, 48.86831272838145], [2.304306969529815, 48.86821032857583], [2.304462955241903, 48.86810755578724], [2.304620563079033, 48.868005154650376], [2.304619811819858, 48.86799188762244], [2.3044610272339, 48.86790308354417], [2.304303681052689, 48.86781522382576], [2.304144896168979, 48.867726420205265], [2.303987552417706, 48.86763856006511], [2.303828768623513, 48.867549755111796], [2.303671425939027, 48.867461894542075], [2.303512643222132, 48.86737308915517], [2.303355301592398, 48.86728522905509], [2.303196519952893, 48.86719642323467], [2.303039178038826, 48.867108561797785], [2.302880398839841, 48.86701975555175], [2.302723057992647, 48.86693189368529], [2.302722965975712, 48.866931842785725], [2.302564483643089, 48.86684476907391], [2.302407143857136, 48.86675690677826], [2.302248661221482, 48.866669832626485], [2.302091323859675, 48.86658196990974], [2.301932842284105, 48.86649489532606], [2.301775504620306, 48.86640703217226], [2.301617024116873, 48.86631995625737], [2.301459688865042, 48.86623209358178], [2.3014548792226233, 48.866224796977306], [2.301464846864053, 48.8660880651703], [2.301474449886597, 48.865954427674666], [2.301484416049876, 48.86581769672395], [2.30149401897238, 48.86568405919414], [2.301503620482528, 48.86555042163943], [2.3015135878671, 48.86541368974504], [2.301523189277218, 48.865280052156116], [2.301533156558598, 48.86514332022671], [2.301542757856732, 48.86500968350288], [2.301552725035023, 48.864872951538445], [2.301562326245087, 48.86473931388112], [2.301572293320393, 48.86460258188168], [2.301581895793492, 48.86446894419811], [2.301573456972186, 48.864466982034614], [2.30148448816346, 48.864479113952484], [2.301393438606619, 48.864543432813214], [2.301234120349473, 48.864608917897286], [2.301143068893595, 48.86467323655204], [2.300983749924673, 48.86473872129519], [2.300829185818853, 48.86480060742524], [2.300669866065856, 48.86486609174302], [2.300515301209168, 48.8649279774606], [2.300360735985361, 48.864989862975115], [2.300201415064743, 48.86505534665812], [2.300197872002462, 48.86505739174665], [2.300102268103829, 48.86514424495269], [2.299940450916901, 48.86527674308364], [2.29990771560988, 48.86530648104196], [2.299877844092862, 48.865307021284764]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 18, "roussel_fabien": 5.0, "nb_emargement": 671.0, "nb_procuration": 37.0, "nb_vote_blanc": 5.0, "jadot_yannick": 21.0, "le_pen_marine": 49.0, "nb_exprime": 662.0, "nb_vote_nul": 4.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 943.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 671, "quartier_bv": "29", "geo_point_2d": [48.86950393093302, 2.30084710088197], "melenchon_jean_luc": 76.0, "poutou_philippe": 1.0, "macron_emmanuel": 284.0}, "geometry": {"type": "Point", "coordinates": [2.30084710088197, 48.86950393093302]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fbe8e31ca79c5d6c410c616e1a4b5fc057a79a6b", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 42, "zemmour_eric": 84.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-36", "geo_shape": {"coordinates": [[[2.400150463880788, 48.87843526931706], [2.400124897998195, 48.87843127319798], [2.4000609844503282, 48.87839822093553], [2.400006749450776, 48.87836809409954], [2.400000178589077, 48.878366097931504], [2.399795819735185, 48.8783439464854], [2.399595014392674, 48.87832155170562], [2.399390657249236, 48.8782993995738], [2.399189850899638, 48.87827700320743], [2.398989044712263, 48.87825460740303], [2.398784688089346, 48.878232454235494], [2.398784509710794, 48.878232433554416], [2.398620557191959, 48.87821267467744], [2.398455406088152, 48.87819198863889], [2.398454301535666, 48.878191881464474], [2.398315616474707, 48.878182711030185], [2.398057221995102, 48.878164621576225], [2.397918537076649, 48.87815545068172], [2.397906263412919, 48.87814644691929], [2.397907625244093, 48.87800199355734], [2.39790924672066, 48.87787081648892], [2.397910868199355, 48.877739638505616], [2.39791223000712, 48.877595185090286], [2.397913851459425, 48.87746400797339], [2.397915213251709, 48.877319554521925], [2.397916834687919, 48.87718837737218], [2.397918197828127, 48.87704392389139], [2.397918767676147, 48.876997814488064], [2.397912346647039, 48.87697497697145], [2.397886439066226, 48.87697572890965], [2.397721614861752, 48.876915464821145], [2.397558076445426, 48.87685581851598], [2.397393253010767, 48.87679555306954], [2.397229715346997, 48.87673590630938], [2.397064892661349, 48.87667564130355], [2.396901355750135, 48.87661599408827], [2.396736533834314, 48.87655572772456], [2.396572997675658, 48.876496080054274], [2.396408176508836, 48.87643581413116], [2.3962446424661232, 48.87637616601269], [2.396079820705653, 48.87631589872481], [2.395916287415497, 48.87625625015132], [2.395751466404119, 48.87619598330405], [2.3955879338665182, 48.8761363342755], [2.395423114988373, 48.87607606607722], [2.395259581839951, 48.87601641658678], [2.395246320809769, 48.876016440427], [2.39511723083745, 48.876064699254094], [2.394954370340407, 48.87612487247538], [2.394825279828833, 48.87617313098292], [2.394701619514695, 48.87621882043801], [2.394697059445565, 48.87622451442998], [2.3947089225933462, 48.87623930816049], [2.394768583081225, 48.87635425116881], [2.394827761421505, 48.876468703359876], [2.394887422444862, 48.87658364538579], [2.39494660130693, 48.87669809749427], [2.395006261481478, 48.876813040329445], [2.39506544086534, 48.87692749235539], [2.39512510293877, 48.877042434215], [2.395184282844432, 48.8771568861584], [2.395243945432469, 48.87727182883413], [2.39530312585994, 48.87738628069496], [2.395303861118203, 48.877389186548065], [2.395303977325764, 48.877488978627554], [2.39530410826975, 48.87760053670952], [2.395315073059428, 48.87760948557096], [2.395336276851924, 48.87760816003928], [2.39553914446357, 48.8776590074335], [2.3957248199217043, 48.87770401828274], [2.39572703140517, 48.87770473002375], [2.395877505799783, 48.877765061098216], [2.3960273054542682, 48.877824818399056], [2.396177106815826, 48.87788457551611], [2.396327580877545, 48.877944906907395], [2.396477382929132, 48.8780046636422], [2.396627857685541, 48.8780649946495], [2.396777659063725, 48.8781247509952], [2.396928135888769, 48.87818508072604], [2.396931031361469, 48.87818595507133], [2.39708965821312, 48.87821965873083], [2.397299985010895, 48.87826441802322], [2.397458612340281, 48.878298121191435], [2.397668939772096, 48.878342879832424], [2.397790772712007, 48.87836876481484], [2.3978003303029203, 48.87837635556802], [2.397824299361353, 48.8783740992096], [2.397861094237358, 48.87838191689383], [2.397861827184511, 48.87838208785565], [2.398033569225738, 48.87842570926997], [2.3981983996620873, 48.87846770657579], [2.398370142267543, 48.87851132750387], [2.398534973246264, 48.87855332434303], [2.398706716415945, 48.87859694478487], [2.398871547937034, 48.87863894115736], [2.399036378350123, 48.87868093819371], [2.399208123734388, 48.87872455701879], [2.399216511252964, 48.87872485901731], [2.399439944355059, 48.87868585383355], [2.399656767721444, 48.878647365476304], [2.3998735907672613, 48.878608876725046], [2.400097022879773, 48.87856987031084], [2.400106766637991, 48.87856334324366], [2.400125153610496, 48.87851384547818], [2.400153410909975, 48.878438776178484], [2.400150463880788, 48.87843526931706]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 36, "roussel_fabien": 24.0, "nb_emargement": 981.0, "nb_procuration": 26.0, "nb_vote_blanc": 9.0, "jadot_yannick": 42.0, "le_pen_marine": 69.0, "nb_exprime": 968.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1377.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 981, "quartier_bv": "75", "geo_point_2d": [48.87737274075903, 2.396820106459773], "melenchon_jean_luc": 442.0, "poutou_philippe": 12.0, "macron_emmanuel": 212.0}, "geometry": {"type": "Point", "coordinates": [2.396820106459773, 48.87737274075903]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ab3b87f42f380decb11ff313413f9a2a64bf2445", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 81, "zemmour_eric": 90.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "4-6", "geo_shape": {"coordinates": [[[2.36584570846116, 48.853437286011754], [2.365821410615433, 48.853442856430014], [2.365668028536622, 48.853473571093176], [2.365495233639626, 48.85350833313046], [2.365314901882026, 48.853544443540876], [2.365142107877117, 48.85357920507326], [2.364961775618575, 48.85361531584849], [2.36478897978039, 48.85365007686148], [2.364780782540386, 48.85365463443137], [2.3647165263169603, 48.85373884410644], [2.364652610598624, 48.853822606772944], [2.364588353960928, 48.85390681636646], [2.36452443920428, 48.85399057805979], [2.364518680003589, 48.85399446864864], [2.364342869653551, 48.85405634915524], [2.364150076889793, 48.85412420618825], [2.363974265664281, 48.85418608614609], [2.363781470566604, 48.85425394346936], [2.363605658465616, 48.85431582287837], [2.363412863781684, 48.854383678707784], [2.363237050805224, 48.854445557567935], [2.363044255161261, 48.85451341279556], [2.36293212319085, 48.854552877471825], [2.362932767983725, 48.854569473945936], [2.362955949800894, 48.85458190589508], [2.363040086564606, 48.85469766688521], [2.363122665849446, 48.854809085537035], [2.363206803350368, 48.85492484638626], [2.36328938335184, 48.8550362649003], [2.36330456019867, 48.855057144956305], [2.363304623255204, 48.85506023816122], [2.363316236342531, 48.855073407100335], [2.363385197776527, 48.85516828774452], [2.36346337434522, 48.85528098943976], [2.363547513365079, 48.85539675000027], [2.3636256892539063, 48.85550945245837], [2.363709829003287, 48.855625212880895], [2.36378800695969, 48.85573791431773], [2.363872146075762, 48.8558536745951], [2.36395032472603, 48.85596637590266], [2.364034465934487, 48.85608213604933], [2.364112643904801, 48.85619483811976], [2.3641967858428092, 48.85631059812844], [2.364274965880836, 48.8564232991776], [2.3642890652829323, 48.8564437461629], [2.364340173558554, 48.85644319296443], [2.364405381628865, 48.85642261326176], [2.364542453935574, 48.856393651009725], [2.364746909847733, 48.8563602609005], [2.3648839817896112, 48.856331299154924], [2.364884909313582, 48.856331126905836], [2.365089364760943, 48.856297736209605], [2.365286942245835, 48.85626594460025], [2.3654913971688343, 48.85623255411444], [2.36568897416126, 48.85620076183941], [2.365893428581795, 48.85616736976545], [2.366091005070904, 48.85613557772405], [2.366288581329743, 48.85610378445621], [2.366493034985478, 48.856070391354834], [2.3666906107408963, 48.856038598320644], [2.366895063883195, 48.85600520453044], [2.366895100756, 48.8560051984301], [2.367092674666959, 48.8559734038237], [2.367280122926937, 48.85594242232483], [2.3674776977168452, 48.85591062798743], [2.36766514417012, 48.8558796449772], [2.367852590389564, 48.85584866257179], [2.368050164474732, 48.855816867286514], [2.368237610239396, 48.855785884276216], [2.368435183862373, 48.85575408745413], [2.368492498835251, 48.85576089315106], [2.368509772283407, 48.85574391554048], [2.368529209781649, 48.85566173205419], [2.368559351950182, 48.85553890853828], [2.368590874513865, 48.85540563193885], [2.368621015015166, 48.85528280927117], [2.3686525372770912, 48.85514953172549], [2.368682678847728, 48.855026709021146], [2.368714200786003, 48.85489343232784], [2.3687443407113262, 48.854770608673164], [2.368775862336955, 48.85463733193287], [2.368806003331608, 48.85451450824153], [2.368837524644595, 48.85438123145426], [2.368867663982855, 48.854258407711946], [2.368899186346107, 48.85412513088488], [2.368929325390892, 48.85400230709874], [2.368959464282804, 48.8538794841907], [2.368990984819136, 48.85374620728683], [2.369017718411103, 48.85360610241758], [2.369049238633066, 48.85347282546561], [2.369075971928249, 48.85333272054888], [2.369107491835849, 48.85319944354876], [2.369141721365925, 48.85317081506975], [2.369122527666558, 48.85315174832882], [2.369108717129449, 48.853075393337754], [2.369081142521519, 48.853015991406544], [2.3690805152793812, 48.85301253008874], [2.369074993844418, 48.85300244891157], [2.369000446776227, 48.85301269064956], [2.368830528921294, 48.85303920851986], [2.368660657314037, 48.85306571919837], [2.368490739113268, 48.85309223658493], [2.368320865797498, 48.853118746772594], [2.368150948613573, 48.85314526368256], [2.367981074941259, 48.85317177428585], [2.367811156048731, 48.85319829070482], [2.367641283404268, 48.85322479993232], [2.367640202357407, 48.85322493811553], [2.367506274486427, 48.85323842292525], [2.367305645213191, 48.85325862381709], [2.367171717169055, 48.853272108251964], [2.366971087636426, 48.853292308582276], [2.366799657158401, 48.853309568427555], [2.366599027348343, 48.85332976723404], [2.366427596623847, 48.85334702654567], [2.366426515560298, 48.85334716561715], [2.366287369105107, 48.853368574405735], [2.366150699759777, 48.85338990621957], [2.366011553077135, 48.85341131468662], [2.365874884880621, 48.85343264529252], [2.365847935686113, 48.85343804247961], [2.36584570846116, 48.853437286011754]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 6, "roussel_fabien": 29.0, "nb_emargement": 1366.0, "nb_procuration": 96.0, "nb_vote_blanc": 13.0, "jadot_yannick": 123.0, "le_pen_marine": 56.0, "nb_exprime": 1351.0, "nb_vote_nul": 2.0, "arr_bv": "04", "arthaud_nathalie": 2, "nb_inscrit": 1699.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1366, "quartier_bv": "15", "geo_point_2d": [48.854728580682064, 2.3662576768887282], "melenchon_jean_luc": 300.0, "poutou_philippe": 7.0, "macron_emmanuel": 612.0}, "geometry": {"type": "Point", "coordinates": [2.3662576768887282, 48.854728580682064]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "60a2dd6b4100e0193ad3a0e68cac5e9dcfd85e6e", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 42, "zemmour_eric": 71.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "1-5", "geo_shape": {"coordinates": [[[2.345944253365866, 48.86295127213732], [2.345918895273052, 48.862939033738925], [2.34581891315903, 48.862824855703465], [2.345727505460009, 48.86271945890332], [2.345636096756617, 48.862614062915185], [2.345536117248938, 48.86249988461743], [2.345444709329277, 48.862394487562895], [2.345344730662516, 48.86228030908262], [2.34525332350388, 48.86217491276036], [2.345153344314917, 48.86206073409012], [2.345061939303108, 48.86195533670899], [2.344961960943642, 48.861841158755524], [2.344927097502068, 48.86180095774843], [2.344911476464087, 48.861787104127934], [2.3448858788545692, 48.861796362188564], [2.344793591871487, 48.86182631156981], [2.344695082338499, 48.8618572385729], [2.3446879762757282, 48.86186257865985], [2.344626542013693, 48.86198724256065], [2.344566058624471, 48.862112793885046], [2.344504623775655, 48.86223745769509], [2.344444139790824, 48.86236300982882], [2.344382704355219, 48.86248767354816], [2.3443222197974, 48.862613224692645], [2.344260783774897, 48.86273788832122], [2.344200298621551, 48.862863440274985], [2.344138860649213, 48.86298810380536], [2.344078374922864, 48.86311365476992], [2.344016937726739, 48.863238318216986], [2.343956451415963, 48.86336386909155], [2.343948808108724, 48.863369417530265], [2.343755112120168, 48.8634239153956], [2.343562385465308, 48.86347869256448], [2.343368688666348, 48.86353318979905], [2.343175961200946, 48.86358796634021], [2.342982263591384, 48.86364246294399], [2.342789535315442, 48.863697238857505], [2.342787596583593, 48.8636979171103], [2.342620970238633, 48.86376781919554], [2.342460801754752, 48.86383525004979], [2.342300632856351, 48.86390268068553], [2.342134005202986, 48.86397258207985], [2.341973835459382, 48.86404001226992], [2.341807206928392, 48.86410991320059], [2.341806590029313, 48.86411018950454], [2.34166174789864, 48.86417880166965], [2.341481441846832, 48.86426501298798], [2.341336598857484, 48.86433362474998], [2.341156291731765, 48.86441983556644], [2.341011447883738, 48.864488446925364], [2.340831139684104, 48.864574657239885], [2.340686294977397, 48.86464326819572], [2.340683596032195, 48.86465618681825], [2.340794202997202, 48.864747527482066], [2.340929959533848, 48.86485919593984], [2.341040567373202, 48.8649505354599], [2.341176324967055, 48.865062203617796], [2.34128693365801, 48.865153543792715], [2.34142269230888, 48.86526521165067], [2.341533301862923, 48.865356551581144], [2.34166906157092, 48.86546821913917], [2.341779671999218, 48.8655595579259], [2.341806451900686, 48.865599439159304], [2.341831147473735, 48.86559627707143], [2.34191359432641, 48.86557730728828], [2.342097337545536, 48.86553355258098], [2.342281249019089, 48.86549123836734], [2.34246499162585, 48.86544748309215], [2.342648902508273, 48.86540516741101], [2.34283264586575, 48.86536141157553], [2.34301655477125, 48.86531909621793], [2.3430167872069783, 48.86531904083514], [2.343200529951689, 48.86527528443141], [2.343395252586141, 48.865227853903846], [2.343578993328362, 48.865184096908045], [2.343773716640383, 48.86513666576825], [2.343957456743097, 48.865092908187854], [2.344152179369694, 48.86504547642837], [2.344335918832895, 48.865001718263365], [2.344530640774162, 48.86495428588427], [2.344714379597745, 48.864910527134626], [2.344909100853578, 48.86486309413591], [2.345092839037637, 48.86481933480164], [2.345289132767217, 48.86477232798465], [2.345472870311932, 48.86472856806339], [2.345669164730968, 48.864681559727444], [2.345852901625038, 48.864637800118444], [2.346049193996078, 48.86459079114794], [2.346232930262086, 48.86454703005264], [2.346429221936912, 48.86450002135427], [2.346612958926629, 48.86445625967942], [2.346673932271626, 48.86444537410953], [2.346675432860095, 48.86444376168079], [2.34685916807033, 48.864400000517634], [2.347046284600128, 48.864354632403135], [2.347230019184501, 48.86431087066708], [2.347417133708149, 48.864265501961725], [2.347600869029615, 48.864221739660294], [2.347740911530741, 48.86418778374688], [2.34775943218866, 48.86417876262276], [2.347723872407337, 48.864138029925456], [2.34771312651537, 48.86402973422547], [2.347703884467835, 48.86392250524003], [2.347693137310082, 48.86381420861047], [2.3476838953419232, 48.86370697960264], [2.3476748172784943, 48.863699008683724], [2.347494104778051, 48.86365699269366], [2.347315900518011, 48.86361542628939], [2.34713518859696, 48.86357340975423], [2.346956984909092, 48.86353184281238], [2.346776273567539, 48.863489825732124], [2.346598071814988, 48.863448258260135], [2.346593592616694, 48.86344652055079], [2.346476154580914, 48.86337810818678], [2.346363933553349, 48.86330892827363], [2.346251711460682, 48.863239748243465], [2.346134274340052, 48.86317133553121], [2.346131494496258, 48.86316909266229], [2.346044330893998, 48.86306950932437], [2.345944348254672, 48.86295533140712], [2.345944253365866, 48.86295127213732]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 5, "roussel_fabien": 13.0, "nb_emargement": 880.0, "nb_procuration": 55.0, "nb_vote_blanc": 12.0, "jadot_yannick": 66.0, "le_pen_marine": 44.0, "nb_exprime": 864.0, "nb_vote_nul": 4.0, "arr_bv": "01", "arthaud_nathalie": 2, "nb_inscrit": 1087.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 880, "quartier_bv": "02", "geo_point_2d": [48.86403344966997, 2.3442742405572807], "melenchon_jean_luc": 206.0, "poutou_philippe": 3.0, "macron_emmanuel": 387.0}, "geometry": {"type": "Point", "coordinates": [2.3442742405572807, 48.86403344966997]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "93fdaf26574f316524e0ba0d7c83c20530c49675", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 88, "zemmour_eric": 48.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "15-42", "geo_shape": {"coordinates": [[[2.3042812925753138, 48.84040461001733], [2.304333646048683, 48.840426644142596], [2.304478069636828, 48.840467916877344], [2.304652589607342, 48.840515354179956], [2.304797013705846, 48.840556625627045], [2.304971535626001, 48.8406040624685], [2.304991850477375, 48.840601838543314], [2.305020292862811, 48.84056844114979], [2.305099808566973, 48.840476227641076], [2.305197276884118, 48.84035781810637], [2.305276791953837, 48.840265604462594], [2.305374259475046, 48.8401471947614], [2.305453775284738, 48.84005498009121], [2.3055512406356122, 48.83993657111485], [2.305631346054139, 48.839840653435346], [2.305728810600839, 48.83972224429155], [2.305808915363202, 48.8396263264747], [2.30590637911771, 48.83950791626427], [2.306018141183497, 48.83937164019972], [2.306115605348863, 48.839253229799716], [2.306227366321524, 48.839116953508636], [2.306228074152318, 48.83911618415596], [2.30634554763307, 48.83900435876329], [2.306461648208329, 48.83889143615012], [2.30657912068144, 48.838779610505625], [2.306695218887679, 48.838666687635126], [2.306812691715548, 48.83855486174663], [2.30692878891517, 48.83844193862675], [2.307046260735414, 48.83833011248638], [2.307162356928532, 48.838217189117074], [2.30716317025561, 48.838216476130434], [2.307265597583647, 48.83813053013994], [2.30737610266274, 48.838043140573475], [2.307478527936795, 48.83795719437945], [2.307589032291316, 48.83786980460275], [2.307647132941533, 48.8378210523623], [2.307658504506676, 48.83779587824395], [2.307612037663931, 48.837773463180504], [2.307503887460191, 48.83765311917694], [2.307396439947551, 48.83753939939764], [2.307288292089575, 48.83741905518186], [2.307180845517933, 48.83730533608436], [2.307072697280896, 48.8371849916406], [2.306965251662091, 48.83707127232562], [2.306857806524063, 48.836957552003334], [2.306749661116758, 48.83683720723788], [2.30664221691959, 48.8367234875974], [2.306534071133412, 48.83660314260405], [2.306533202404716, 48.83654801147569], [2.306499905982375, 48.836546402821355], [2.3064489753204382, 48.836555994315894], [2.306426709249403, 48.8365595886081], [2.306437882203081, 48.83658509931866], [2.306367290046642, 48.83671604501451], [2.30629470611971, 48.83684388616533], [2.306224113241154, 48.83697483264565], [2.306151528614678, 48.83710267278071], [2.306078943620091, 48.83723051375635], [2.306008349675991, 48.837361460064095], [2.305935765332231, 48.837489300931196], [2.305858581291462, 48.83761538286082], [2.305785994864522, 48.83774322360012], [2.3057088100734973, 48.83786930630376], [2.3056362229376, 48.83799714602382], [2.305559038770657, 48.83812322861011], [2.305486450901735, 48.83825106910951], [2.305409264646106, 48.8383771506633], [2.305336676056328, 48.838504991042804], [2.305259489050405, 48.83863107337057], [2.305259331483406, 48.83863134406525], [2.305191242638009, 48.8387549771307], [2.305122390558012, 48.83887880896951], [2.3050543024270302, 48.83900244193758], [2.304985448332406, 48.83912627366226], [2.304917359553237, 48.83924990652496], [2.304848506168772, 48.83937373815129], [2.304780415379206, 48.839497370900744], [2.304711561354489, 48.839621201521545], [2.304643469904715, 48.83974483506497], [2.304574615227844, 48.839868665579495], [2.304506524492373, 48.83999229902549], [2.3044376678007152, 48.840116129425816], [2.30436957641712, 48.84023976276648], [2.304300720435715, 48.840363593068496], [2.3042812925753138, 48.84040461001733]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 42, "roussel_fabien": 6.0, "nb_emargement": 820.0, "nb_procuration": 25.0, "nb_vote_blanc": 8.0, "jadot_yannick": 61.0, "le_pen_marine": 74.0, "nb_exprime": 810.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1063.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 820, "quartier_bv": "57", "geo_point_2d": [48.83857173525571, 2.305978793251504], "melenchon_jean_luc": 173.0, "poutou_philippe": 1.0, "macron_emmanuel": 320.0}, "geometry": {"type": "Point", "coordinates": [2.305978793251504, 48.83857173525571]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e37c5af5b2160e177955977d2a4721b41dbbe9b7", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 74, "zemmour_eric": 86.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-45", "geo_shape": {"coordinates": [[[2.389162138891186, 48.855435213380645], [2.389151047490822, 48.85546440627985], [2.389095437565771, 48.85558248026894], [2.38903951539686, 48.855701474458954], [2.388983906329007, 48.85581954837795], [2.388927983650854, 48.85593854249043], [2.388872372714399, 48.85605661632543], [2.388816449527197, 48.85617561036043], [2.388760839447735, 48.856293684125376], [2.388704915751379, 48.856412678082776], [2.3886493038033922, 48.85653075176372], [2.388593379608323, 48.85664974474433], [2.3885377685068763, 48.85676781925449], [2.388481842439868, 48.85688681215063], [2.388482475503554, 48.856901271499666], [2.3884994316424573, 48.85690639179868], [2.388667953578472, 48.85690518166254], [2.388858497730383, 48.856903860724664], [2.38906051249078, 48.85690240918428], [2.3892510566120553, 48.85690108852059], [2.389453072723974, 48.85689963542514], [2.389643616825253, 48.8568983141364], [2.389657057605623, 48.856905335547836], [2.389701653396854, 48.8570363047396], [2.389745234450959, 48.85716456078849], [2.389789832048589, 48.85729552992377], [2.389833413536574, 48.85742378591059], [2.389878010214843, 48.85755475497546], [2.389921593499504, 48.857683010907145], [2.389965175646463, 48.85781126590194], [2.390009772977063, 48.857942235771255], [2.390009187160656, 48.85794745259302], [2.389964206845145, 48.858024154307834], [2.389903793158787, 48.85811962852008], [2.389907580871681, 48.8581243981793], [2.389938489297164, 48.85812994733811], [2.390124078991526, 48.85806892836389], [2.390280571301707, 48.85801842709762], [2.390287214959049, 48.858013602678014], [2.390358510760933, 48.85789112956143], [2.390429456900171, 48.85776869148258], [2.39050075202206, 48.857646219153494], [2.390571696141296, 48.8575237800571], [2.390642990593725, 48.857401307616264], [2.3907139354080282, 48.85727886841548], [2.390785229191104, 48.85715639586285], [2.390856171974813, 48.85703395654379], [2.390927465088346, 48.85691148387944], [2.390998408567329, 48.85678904445596], [2.391069701011426, 48.85666657167985], [2.391140642449234, 48.85654413303738], [2.391211934234517, 48.85642165925024], [2.391282876367507, 48.85629922050339], [2.391354167472763, 48.85617674750378], [2.3914251075858273, 48.856054307739406], [2.391496398021677, 48.855931834628045], [2.391567338829825, 48.85580939475927], [2.391572422835973, 48.85580516129637], [2.391734715622825, 48.855732594170526], [2.391896112831688, 48.855660351432334], [2.3920584047166003, 48.85558778385804], [2.392219801017638, 48.855515541573155], [2.392225347310942, 48.855510343630336], [2.392274777822997, 48.85538382882238], [2.392327005382445, 48.85525059835953], [2.392376435401264, 48.855124083480014], [2.392428663792774, 48.854990853847895], [2.39247809195554, 48.85486433888989], [2.392530319837259, 48.85473110828292], [2.392579748869627, 48.854604593260255], [2.392631976231073, 48.854471362577826], [2.392681403407414, 48.854344847476675], [2.3927336302486992, 48.8542116167187], [2.392783056931841, 48.85408510154599], [2.3928352832422912, 48.85395187161182], [2.392884710795037, 48.85382535637447], [2.392922765620172, 48.85372827668181], [2.392928659206662, 48.85372564990379], [2.392931502631896, 48.85370969637392], [2.392945673596225, 48.853673545155914], [2.392963818088983, 48.85362983437305], [2.392954925980328, 48.85361891432225], [2.392827756843513, 48.85359135154513], [2.392711944548015, 48.85356635186073], [2.392690814110742, 48.853559527370024], [2.39267642307562, 48.85356707451956], [2.392600877490518, 48.85368798817632], [2.392525910806538, 48.85380878150211], [2.392450365884547, 48.85392969504448], [2.392375398503912, 48.85405048824972], [2.39229985151943, 48.85417140166385], [2.392224884794447, 48.85429219565471], [2.3921493371102622, 48.85441310894752], [2.392074368336287, 48.85453390191161], [2.391998821315204, 48.854654815089994], [2.391923851844548, 48.854775607933504], [2.391848302760928, 48.85489652098362], [2.391773333956404, 48.85501731371352], [2.3916977841730542, 48.8551382266423], [2.391622813298504, 48.85525902014393], [2.391547264178247, 48.85537993295832], [2.391472292617486, 48.855500725440066], [2.391396741434645, 48.85562163812622], [2.39132177054001, 48.85574243049429], [2.391306316342814, 48.855747817221726], [2.391128233765975, 48.85572275381291], [2.390927930226293, 48.855692009168614], [2.3907498480222, 48.85566694519547], [2.390549544930844, 48.85563619901692], [2.39037146309951, 48.85561113447939], [2.3901711617982953, 48.85558038857216], [2.389993080339619, 48.85555532347024], [2.389792778113384, 48.85552457692119], [2.389614697038115, 48.8554995103556], [2.389414396612551, 48.85546876317856], [2.389236315899525, 48.85544369694793], [2.389180148453038, 48.85543507508133], [2.389162138891186, 48.855435213380645]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 45, "roussel_fabien": 14.0, "nb_emargement": 1273.0, "nb_procuration": 76.0, "nb_vote_blanc": 7.0, "jadot_yannick": 123.0, "le_pen_marine": 61.0, "nb_exprime": 1262.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 0, "nb_inscrit": 1587.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1274, "quartier_bv": "44", "geo_point_2d": [48.85610787573172, 2.390516403757691], "melenchon_jean_luc": 355.0, "poutou_philippe": 10.0, "macron_emmanuel": 471.0}, "geometry": {"type": "Point", "coordinates": [2.390516403757691, 48.85610787573172]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1d243f68c04a38156c404e2db694bed0910561d7", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 131, "zemmour_eric": 118.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-89", "geo_shape": {"coordinates": [[[2.291020235957023, 48.840758877655155], [2.291012675984076, 48.84075642343658], [2.290980232605871, 48.840736712119266], [2.290977598676787, 48.84073452093166], [2.290946809444157, 48.840714808616625], [2.290831515653001, 48.84058019817537], [2.290731068179757, 48.84046112681182], [2.290630619803129, 48.840342055343136], [2.290515327653106, 48.8402074445522], [2.290497461841021, 48.84018626633791], [2.290492286988714, 48.84018246548366], [2.290443043664665, 48.84019213302731], [2.290262694965603, 48.84026446614197], [2.290080902369386, 48.84033693521258], [2.289900554016793, 48.84040926867923], [2.28971876041201, 48.84048173719012], [2.289538411068166, 48.84055406920217], [2.289356616442458, 48.84062653805262], [2.289176266095007, 48.840698869509254], [2.288994470460727, 48.84077133779994], [2.28897813273923, 48.84077021451087], [2.288903953298476, 48.840724531659504], [2.288828228980211, 48.84068073904499], [2.28881744385875, 48.840674502547856], [2.288800460180489, 48.840673989663706], [2.288773212930192, 48.840685534768845], [2.288702429213134, 48.84071552790172], [2.288507876647544, 48.840808773297056], [2.288335360144435, 48.84088930466741], [2.288335314877564, 48.84088932688236], [2.288213644400989, 48.84094763943061], [2.288041128345975, 48.841028170374734], [2.287919458578597, 48.84108648262461], [2.287869606095156, 48.841100447169616], [2.287871080923523, 48.8411088821468], [2.287748445497638, 48.84117970140634], [2.287641081079198, 48.84124224643738], [2.287640753854655, 48.8412439568891], [2.287657484283895, 48.84125932332111], [2.287861244448659, 48.84132170894268], [2.288067146235856, 48.84138475000582], [2.288270907368922, 48.84144713582189], [2.288476810147113, 48.841510176172854], [2.288680572273145, 48.841572560384876], [2.288886476042322, 48.841635600023615], [2.288889975173472, 48.84165037228198], [2.288769232037025, 48.8417238182684], [2.28865102880449, 48.84179533479707], [2.288530283645312, 48.841868779625365], [2.288412079743764, 48.841940296807955], [2.2884122664619, 48.84195366614326], [2.288545638921435, 48.84203143283921], [2.28867763475757, 48.8421080624848], [2.288811009382998, 48.8421858279829], [2.288943006000311, 48.84226245732507], [2.289076380042039, 48.8423402234078], [2.289208377440534, 48.84241685244655], [2.289341753647961, 48.84249461733145], [2.289473751827641, 48.8425712460668], [2.289485228957328, 48.842584026810236], [2.289501471153507, 48.84258390383191], [2.289664089887617, 48.84251445078904], [2.289824968612003, 48.84244566621704], [2.289825648668963, 48.84244535637456], [2.289988526234405, 48.84236614177589], [2.290146112728569, 48.84228860795442], [2.290308989317199, 48.84220939290831], [2.290466574860699, 48.842131858653794], [2.290490371456, 48.842125293200866], [2.290648893308423, 48.84219326595449], [2.290808224591827, 48.842261864753866], [2.2909667472741653, 48.84232983707799], [2.291126080768037, 48.84239843455445], [2.291284604280292, 48.84246640644903], [2.291443937235409, 48.84253500438497], [2.291602461577583, 48.842602975850056], [2.291761796731045, 48.84267157336234], [2.291775067298218, 48.84267304504949], [2.291790280352606, 48.842667036496756], [2.291836466618742, 48.84261857224545], [2.2919004972633292, 48.842547527931785], [2.291896073838616, 48.84253533059568], [2.291738872295166, 48.842469671530395], [2.291581464418674, 48.84240438516777], [2.291424263666621, 48.84233872568136], [2.291266856579691, 48.842273438897095], [2.291109656618829, 48.842207778989604], [2.2909522503337962, 48.84214249088444], [2.290795051151992, 48.8420768314551], [2.290637645656525, 48.84201154292834], [2.29063433577375, 48.8419982450176], [2.290756799960884, 48.841899107911914], [2.290874966989705, 48.841802815988174], [2.290997430259948, 48.84170367861879], [2.291115595050999, 48.84160738553315], [2.291238058766715, 48.84150824790816], [2.291356222657905, 48.84141195546725], [2.291359154407826, 48.841405173601956], [2.291338885232454, 48.84129865002949], [2.291316735880571, 48.841185910553676], [2.2912964655148143, 48.841079386945054], [2.291274317710208, 48.84096664744725], [2.291312609747343, 48.84094594507339], [2.291315410958386, 48.84092821980106], [2.291282383748453, 48.8409113471198], [2.291163082475064, 48.84085039866189], [2.291034151896471, 48.84077206574978], [2.291020235957023, 48.840758877655155]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 89, "roussel_fabien": 11.0, "nb_emargement": 1172.0, "nb_procuration": 63.0, "nb_vote_blanc": 14.0, "jadot_yannick": 81.0, "le_pen_marine": 78.0, "nb_exprime": 1154.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1463.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1172, "quartier_bv": "60", "geo_point_2d": [48.84140924342821, 2.289810822853291], "melenchon_jean_luc": 168.0, "poutou_philippe": 2.0, "macron_emmanuel": 512.0}, "geometry": {"type": "Point", "coordinates": [2.289810822853291, 48.84140924342821]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "71eab5062e0050a9faa184ec1644d218c57d5fbf", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 115, "zemmour_eric": 194.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "17-48", "geo_shape": {"coordinates": [[[2.306532853541583, 48.881485983932706], [2.306530561848196, 48.881480723936015], [2.306454634384255, 48.88143977534926], [2.30640411550735, 48.881410134670325], [2.306388492084984, 48.88140937594986], [2.30622307853906, 48.88147453933945], [2.306039926590525, 48.88154669093968], [2.305874512172314, 48.881611853839544], [2.305691360621359, 48.881684004905416], [2.305525945330963, 48.88174916731557], [2.305342791450666, 48.88182131783129], [2.305177375287982, 48.88188647975172], [2.304994221805372, 48.88195862973314], [2.304828804770298, 48.88202379116386], [2.30464564895844, 48.88209594059511], [2.304480232414601, 48.882161101543986], [2.304400755005123, 48.88219240970841], [2.30438862847998, 48.88219301914903], [2.304291468933377, 48.882166971938595], [2.304121194370238, 48.882121323174324], [2.303938471370532, 48.882072336304475], [2.303768196062816, 48.882026687026304], [2.303585475090621, 48.88197769962145], [2.303415200401754, 48.881932049837346], [2.303232480093652, 48.881883061889525], [2.303062206023635, 48.88183741159945], [2.30287948637963, 48.88178842310872], [2.30270921292847, 48.88174277231268], [2.30270241480184, 48.88173609562233], [2.302682810305336, 48.88173569365066], [2.302495648376814, 48.88168551315245], [2.302307758521977, 48.88163513835539], [2.302120597304171, 48.88158495816556], [2.301932708186959, 48.881534581876025], [2.301745547691917, 48.8814844010953], [2.301557659288227, 48.8814340251119], [2.301370499515952, 48.881383843740316], [2.301182611849906, 48.88133346626438], [2.301164997984356, 48.88133817219962], [2.301090306454521, 48.88145001828174], [2.301025733365993, 48.88154676058085], [2.300961160037457, 48.88164350283663], [2.30088646763194, 48.88175534876058], [2.300932652835319, 48.88181994163336], [2.3009284003503723, 48.88182314901488], [2.300917048884703, 48.88184027892821], [2.300965531575982, 48.88190804276526], [2.301005597487539, 48.88196407776693], [2.300996003153951, 48.88198622634388], [2.301086270776684, 48.88200625543034], [2.301172522678884, 48.88212688224959], [2.301256859583275, 48.882244831285576], [2.301343110900147, 48.882365458847076], [2.3014274485772592, 48.88248340773734], [2.301513702047838, 48.882604035157726], [2.3015980404976872, 48.88272198390222], [2.301684293395115, 48.88284261116563], [2.301768632617708, 48.88296055976438], [2.301854887668873, 48.88308118688667], [2.301939227664323, 48.883199135339716], [2.301947433272122, 48.88320387051321], [2.302125992346943, 48.883241268849524], [2.302303473338517, 48.883278441196715], [2.302482031573199, 48.88331583809233], [2.302659513072947, 48.88335300990918], [2.302838073170499, 48.88339040717846], [2.303015555190659, 48.88342757756581], [2.303194115799569, 48.88346497430155], [2.303371598315859, 48.883502145057804], [2.303550158084692, 48.88353954035284], [2.303727641109243, 48.88357671057882], [2.303905124387156, 48.88361388054046], [2.304083686285683, 48.88365127504391], [2.304261170071952, 48.883688444475226], [2.304439732469801, 48.88372583934442], [2.304617216776229, 48.88376300734615], [2.304795779685412, 48.883800401681796], [2.304824654034126, 48.883804149586815], [2.304832962327897, 48.88379406863278], [2.3050332178201502, 48.88374547467174], [2.305232704084741, 48.88369706657074], [2.305432960206523, 48.883648471045476], [2.3056324457279382, 48.883600062274176], [2.305832699728123, 48.88355146696737], [2.30603218450636, 48.883503057525786], [2.306232439136041, 48.8834544606548], [2.30643192317109, 48.8834060505429], [2.306632175679181, 48.88335745389039], [2.306831658971042, 48.88330904310824], [2.307031912108597, 48.883260444891455], [2.307231394657157, 48.883212033439044], [2.307237292996683, 48.883197943530135], [2.307119217019811, 48.88310152345934], [2.307001386984778, 48.883005304336805], [2.306883310517917, 48.882908884008536], [2.30676548135472, 48.88281266463703], [2.306647407124853, 48.882716244067154], [2.306529578833381, 48.882620024446574], [2.306411504113621, 48.88252360361924], [2.306293676705747, 48.88242738285044], [2.306175604223058, 48.88233096178147], [2.306057777675018, 48.882234741662955], [2.30593970470233, 48.88213832033658], [2.305821879025894, 48.88204209996902], [2.30570380829025, 48.88194567840107], [2.30558598348561, 48.88184945778451], [2.30559002427741, 48.88183592554328], [2.305745409763277, 48.88177961550029], [2.305900161651603, 48.88172344907231], [2.306055546454552, 48.881667139520296], [2.306210297674067, 48.88161097268573], [2.3063656818180682, 48.88155466182619], [2.306520431005466, 48.88149849457713], [2.306532853541583, 48.881485983932706]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 48, "roussel_fabien": 9.0, "nb_emargement": 1166.0, "nb_procuration": 83.0, "nb_vote_blanc": 10.0, "jadot_yannick": 56.0, "le_pen_marine": 51.0, "nb_exprime": 1154.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1464.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1166, "quartier_bv": "66", "geo_point_2d": [48.882652354979044, 2.303946214393829], "melenchon_jean_luc": 99.0, "poutou_philippe": 4.0, "macron_emmanuel": 596.0}, "geometry": {"type": "Point", "coordinates": [2.303946214393829, 48.882652354979044]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f532a0adb6aff7b5ea32f6fd70b1738a1145acd8", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 155, "zemmour_eric": 169.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-31", "geo_shape": {"coordinates": [[[2.304805011224089, 48.844786399657586], [2.304816233803135, 48.84479457444905], [2.304848149042253, 48.84480205195703], [2.305036866321229, 48.84484599954457], [2.305217958480975, 48.84488842489041], [2.305406676384551, 48.84493237189122], [2.305587767782804, 48.844974796666094], [2.305768860838437, 48.84501722117316], [2.30595757967293, 48.84506116729985], [2.306138671967264, 48.84510359123593], [2.306327391426342, 48.84514753677587], [2.306336401960169, 48.84515699997514], [2.306313220586552, 48.84529634085421], [2.306289717140724, 48.845435401940875], [2.306266534143914, 48.84557474366748], [2.306243030447857, 48.84571380471022], [2.306219847214349, 48.84585314549371], [2.306196344618766, 48.84599220739977], [2.306173161136591, 48.846131548139354], [2.306149656928294, 48.846270609993624], [2.306126473197544, 48.84640995068942], [2.306102970101701, 48.846549012507616], [2.306108673377769, 48.84656637452721], [2.306123623414516, 48.846569537959205], [2.306301964475447, 48.84651971945068], [2.306478557205259, 48.84647028626131], [2.306656897587251, 48.84642046721929], [2.306833489632116, 48.8463710344009], [2.307011829347128, 48.84632121392607], [2.3071884193564243, 48.84627178057154], [2.307366758392484, 48.846221959563195], [2.3075433490913833, 48.84617252568821], [2.307721687448489, 48.84612270414639], [2.307898277474397, 48.84607326974315], [2.308076615152443, 48.84602344766779], [2.308253203142883, 48.84597401272839], [2.308253271533189, 48.845973993337836], [2.308431608520311, 48.84592417162816], [2.308621476793329, 48.845871822526775], [2.308799813090657, 48.84582199936442], [2.308961334615751, 48.84577746510313], [2.3089827276040182, 48.845775872684776], [2.308988629486567, 48.845769278460715], [2.309016974121283, 48.84576146301702], [2.309211016617897, 48.845707964317555], [2.309400883308308, 48.84565561486834], [2.309594925016722, 48.84560211554114], [2.309784789585325, 48.845549764570535], [2.309974655135054, 48.845497413304045], [2.310168695665338, 48.845443913038636], [2.310358559081235, 48.84539156115006], [2.310552600174073, 48.84533806116404], [2.31056059640053, 48.8453318629594], [2.310614065316706, 48.84518691294868], [2.3106715585258852, 48.84502892731213], [2.310664680696851, 48.845018877754725], [2.310599367429313, 48.844996073045266], [2.310541153147087, 48.844975769873095], [2.310521292645626, 48.844966818257156], [2.3105162308810883, 48.8449675076771], [2.310398626521524, 48.844926490628836], [2.310248039019101, 48.84487400616717], [2.310072219801573, 48.84481268544069], [2.30992163430733, 48.84476020146992], [2.309745815869586, 48.84469887935824], [2.309595231032874, 48.84464639497127], [2.309594411489617, 48.84464613212392], [2.309445042485905, 48.84460217784236], [2.309301234113343, 48.84455990491104], [2.3091574246114313, 48.844517631797416], [2.30900805770719, 48.84447367697308], [2.308991666067617, 48.84446447892044], [2.308979283518826, 48.84446656587327], [2.308779380534612, 48.844412611993285], [2.308591814079071, 48.844361508112044], [2.30839191326148, 48.84430755358738], [2.308204346201435, 48.84425644908599], [2.308203731300133, 48.8442562710533], [2.3080274264201233, 48.844201896548384], [2.307846636221913, 48.84414608292501], [2.30767033208721, 48.8440917078885], [2.3074895426655, 48.84403589282065], [2.30731323927611, 48.843981517252544], [2.307132451969632, 48.84392570254673], [2.306956147963132, 48.8438713264391], [2.306775361421307, 48.843815511188154], [2.306599059522544, 48.84376113455678], [2.306418272394823, 48.84370531785354], [2.30640521206823, 48.84368216350127], [2.30636731068192, 48.843690199030924], [2.306186524048456, 48.84363438197391], [2.306010207589712, 48.84357996210419], [2.305829421721084, 48.843524144501984], [2.305653106020129, 48.84346972320127], [2.305634752006092, 48.84347441748808], [2.305552373936683, 48.84360518382935], [2.305470752341654, 48.84373406132717], [2.305388373450367, 48.84386482752503], [2.305306749668554, 48.843993705772355], [2.305224369955475, 48.84412447182688], [2.30514274673599, 48.84425334904088], [2.305060366200906, 48.84438411495207], [2.304978742169229, 48.844512992024185], [2.304896359449793, 48.84464375778402], [2.304814734593913, 48.844772635613516], [2.304805011224089, 48.844786399657586]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 31, "roussel_fabien": 4.0, "nb_emargement": 1361.0, "nb_procuration": 82.0, "nb_vote_blanc": 9.0, "jadot_yannick": 78.0, "le_pen_marine": 54.0, "nb_exprime": 1348.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1615.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1361, "quartier_bv": "58", "geo_point_2d": [48.84498465406427, 2.3074658109215815], "melenchon_jean_luc": 206.0, "poutou_philippe": 3.0, "macron_emmanuel": 631.0}, "geometry": {"type": "Point", "coordinates": [2.3074658109215815, 48.84498465406427]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "15d8da7d94cc0c76701642003f95ec22aa916c9c", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 64, "zemmour_eric": 56.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-44", "geo_shape": {"coordinates": [[[2.389162138891186, 48.855435213380645], [2.389180148453038, 48.85543507508133], [2.389236315899525, 48.85544369694793], [2.389414396612551, 48.85546876317856], [2.389614697038115, 48.8554995103556], [2.389792778113384, 48.85552457692119], [2.389993080339619, 48.85555532347024], [2.3901711617982953, 48.85558038857216], [2.39037146309951, 48.85561113447939], [2.390549544930844, 48.85563619901692], [2.3907498480222, 48.85566694519547], [2.390927930226293, 48.855692009168614], [2.391128233765975, 48.85572275381291], [2.391306316342814, 48.855747817221726], [2.39132177054001, 48.85574243049429], [2.391396741434645, 48.85562163812622], [2.391472292617486, 48.855500725440066], [2.391547264178247, 48.85537993295832], [2.391622813298504, 48.85525902014393], [2.3916977841730542, 48.8551382266423], [2.391773333956404, 48.85501731371352], [2.391848302760928, 48.85489652098362], [2.391923851844548, 48.854775607933504], [2.391998821315204, 48.854654815089994], [2.392074368336287, 48.85453390191161], [2.3921493371102622, 48.85441310894752], [2.392224884794447, 48.85429219565471], [2.39229985151943, 48.85417140166385], [2.392375398503912, 48.85405048824972], [2.392450365884547, 48.85392969504448], [2.392525910806538, 48.85380878150211], [2.392600877490518, 48.85368798817632], [2.39267642307562, 48.85356707451956], [2.392690814110742, 48.853559527370024], [2.392690292688675, 48.853548371884585], [2.392690509105806, 48.85354804472028], [2.392787351725164, 48.853408977768886], [2.392880738246107, 48.853275007792796], [2.392977578487666, 48.853135940646425], [2.393070965382409, 48.8530019713952], [2.393071241534893, 48.85300154650383], [2.393135657080183, 48.85289553313418], [2.393202325101144, 48.85278530779391], [2.393266740112439, 48.85267929433306], [2.393333407579565, 48.852569068898354], [2.393397822056873, 48.852463055346284], [2.3934644889700722, 48.852352829817114], [2.393457126023529, 48.852341209752936], [2.393346591912386, 48.85231045277326], [2.393235898944381, 48.852278953819194], [2.39322857397634, 48.852267471533175], [2.393302299818412, 48.85214078777288], [2.39336946937054, 48.85202506258414], [2.393436637261683, 48.851909337338725], [2.393510363453877, 48.85178265341635], [2.393577530719665, 48.85166692806658], [2.393651256226367, 48.8515402440298], [2.39371842287727, 48.851424517676456], [2.393778714636508, 48.85132091657657], [2.3937893453381083, 48.851315094074195], [2.3937895331500982, 48.85130305000863], [2.393802964829591, 48.85127996784806], [2.393883368995752, 48.85113857349312], [2.39395709301153, 48.85101188920769], [2.394030815295674, 48.850885205754814], [2.394111218234499, 48.85074381119659], [2.394101299989829, 48.85073185534754], [2.393934194913926, 48.850708356127406], [2.393722172810836, 48.85067796757655], [2.393555069451884, 48.85065446693337], [2.393343047778674, 48.85062407860849], [2.393175943400794, 48.85060057742779], [2.39296392354112, 48.85057018753728], [2.392796819496554, 48.850546686725274], [2.392773674003311, 48.850550918529414], [2.392772315872176, 48.85056630854955], [2.392785423429553, 48.850592466182846], [2.392796071003708, 48.850613494914455], [2.3927964667560833, 48.85061824280513], [2.392755039041294, 48.850744852919206], [2.392713297109486, 48.85087233108419], [2.392671868980145, 48.85099894203983], [2.3926301280040683, 48.85112642015365], [2.392588699481132, 48.85125303015226], [2.392546956735438, 48.85138050820101], [2.392505527808418, 48.8515071181419], [2.392463784645134, 48.851634597031854], [2.392422356676764, 48.85176120692195], [2.392380613116956, 48.85188868485443], [2.392339183381753, 48.852015294679916], [2.3922974394149312, 48.85214277255423], [2.392305197191099, 48.852152881989966], [2.392513391421103, 48.85221432163367], [2.392723027389396, 48.85227628085661], [2.392931222605063, 48.85233771976646], [2.393140859566602, 48.852399678250485], [2.393147905048706, 48.852411286830836], [2.393072714107946, 48.85253276299137], [2.393001106209204, 48.85264869478614], [2.392925914583652, 48.852770170828464], [2.392854304669393, 48.85288610250365], [2.392782695799268, 48.85300203413086], [2.392707503154588, 48.85312350999733], [2.392693898485422, 48.85312907897434], [2.392504103282784, 48.85311996110366], [2.392314896270995, 48.85311054553574], [2.392125101202182, 48.853101427063756], [2.391935895699346, 48.85309201000405], [2.391746100753974, 48.85308289183001], [2.391556895386937, 48.853073474170806], [2.391367100585905, 48.853064354496176], [2.391177895354677, 48.85305493623758], [2.3911643661984963, 48.853060328253946], [2.391065067990122, 48.85321153617785], [2.390970388010084, 48.853360050571006], [2.39096911607615, 48.853361600872326], [2.390888358543227, 48.853432688140906], [2.390806802146523, 48.853512286331785], [2.390790112621133, 48.85351987371616], [2.390791066833479, 48.85353687359431], [2.3907669472427, 48.853560414490595], [2.390659385288253, 48.85366640739116], [2.390553707029359, 48.85376954625116], [2.390446145572256, 48.85387553894701], [2.390340466456526, 48.853978678498564], [2.390232902771166, 48.854084670975844], [2.390127222819833, 48.854187809420395], [2.390123600881794, 48.85419020751237], [2.390006558910486, 48.85424276786532], [2.389885952226377, 48.854296890983186], [2.389883739407913, 48.854298130695575], [2.389742029901077, 48.854396466909975], [2.389598235304033, 48.85449626095172], [2.389456523356742, 48.854594596803516], [2.389312727666137, 48.854694390484376], [2.389171015993467, 48.85479272688677], [2.3890272192197353, 48.85489251930742], [2.388885506469404, 48.854990855354195], [2.388741707239374, 48.855090647406975], [2.388599993411369, 48.855188983098046], [2.388456194450584, 48.85528877479687], [2.388444262763692, 48.85531718720376], [2.388462053262701, 48.85532467886866], [2.388609573800021, 48.85534724191701], [2.388809874646355, 48.85537799045154], [2.38900630927549, 48.85540803450304], [2.38915044315336, 48.855430160491224], [2.389162138891186, 48.855435213380645]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 44, "roussel_fabien": 30.0, "nb_emargement": 1425.0, "nb_procuration": 76.0, "nb_vote_blanc": 11.0, "jadot_yannick": 126.0, "le_pen_marine": 59.0, "nb_exprime": 1410.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1784.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1425, "quartier_bv": "44", "geo_point_2d": [48.853676351281045, 2.391518096020415], "melenchon_jean_luc": 494.0, "poutou_philippe": 10.0, "macron_emmanuel": 491.0}, "geometry": {"type": "Point", "coordinates": [2.391518096020415, 48.853676351281045]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d4f55643459598f09b640b77223ae17137349f3a", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 43, "zemmour_eric": 81.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-71", "geo_shape": {"coordinates": [[[2.380724086876941, 48.825441076572744], [2.38070595165121, 48.825463327597475], [2.380700720154598, 48.825467079673615], [2.380521510206957, 48.825537875623176], [2.380350559333424, 48.82560571828401], [2.380171348433767, 48.82567651370008], [2.380000398012071, 48.82574435585909], [2.379821186160298, 48.8258151507417], [2.379650233466426, 48.82588299238467], [2.379479281678817, 48.825950834685585], [2.3793000684205072, 48.82602162787491], [2.379129114360706, 48.82608946965983], [2.378949900150386, 48.82616026231569], [2.378778946542429, 48.826228103598716], [2.378599731380098, 48.82629889572108], [2.378428775499843, 48.82636673648808], [2.378249559385396, 48.82643752807699], [2.3782398288557642, 48.82643862059039], [2.378085683599232, 48.826417736070425], [2.377850608090893, 48.82638774510197], [2.377696463140695, 48.82636686007932], [2.377615100854408, 48.8263493269935], [2.377578290021258, 48.82635061937718], [2.377556706865261, 48.82639021706709], [2.377372799734089, 48.826429063278525], [2.377177066259402, 48.82647030110617], [2.376993158573622, 48.82650914583168], [2.376797424498003, 48.82655038303502], [2.376613516246882, 48.82658922717397], [2.376417781570438, 48.82663046375301], [2.376233872753881, 48.82666930730535], [2.376038137476518, 48.82671054326011], [2.375854228094633, 48.82674938622588], [2.3756584922163553, 48.82679062155632], [2.375474582258476, 48.82682946483482], [2.375278845789964, 48.82687069864163], [2.375094935266761, 48.82690954133354], [2.374899198186572, 48.826950775415355], [2.374715287108834, 48.82698961662136], [2.374519549427852, 48.82703085007889], [2.374335637784707, 48.827069690698266], [2.374139899502837, 48.8271109235315], [2.3739559872943943, 48.82714976356426], [2.373760248411641, 48.82719099577317], [2.373576335627201, 48.82722983611869], [2.373380596154276, 48.827271066803924], [2.373196682804542, 48.82730990656284], [2.373012767829499, 48.827348745131104], [2.37281702745363, 48.82738997578892], [2.372633113275409, 48.82742881377772], [2.37243737229868, 48.82747004381121], [2.372253457555186, 48.82750888121338], [2.372057715977705, 48.82755011062254], [2.37204939598892, 48.82756231279583], [2.372062557306297, 48.8275920531077], [2.372106857208571, 48.827658266381064], [2.37212300655565, 48.8276632896237], [2.372308230872374, 48.827628874317945], [2.372491994146452, 48.82759416505886], [2.372677217974014, 48.827559749179485], [2.372860980758682, 48.82752503935131], [2.373046204097074, 48.82749062289833], [2.373229967754532, 48.82745591250818], [2.373415190603747, 48.82742149548164], [2.373598952409882, 48.827386784515255], [2.373784174769916, 48.827352366915086], [2.373967936086623, 48.82731765537961], [2.374153157957468, 48.82728323720588], [2.374336918784944, 48.8272485251013], [2.374345626558422, 48.827248795500346], [2.374530816311828, 48.82729660352762], [2.3746984081856812, 48.82734512868815], [2.374866001744394, 48.827393652719465], [2.375051192489528, 48.8274414599348], [2.375057408421863, 48.8274444972208], [2.375085592239923, 48.82744637848582], [2.375270783373808, 48.82749418535885], [2.375457337054744, 48.82753948710965], [2.375642528860246, 48.82758729340307], [2.375829083208235, 48.827632593670906], [2.376014275685346, 48.827680399384704], [2.376200830678645, 48.827725699968234], [2.376386023827362, 48.82777350510242], [2.376572579487694, 48.827818804202956], [2.37675777330801, 48.82786660875753], [2.376944329613654, 48.82791190817374], [2.376949917700117, 48.82791244183408], [2.377125495256255, 48.827905516594505], [2.377299337330481, 48.82789802265161], [2.377458957725673, 48.82789114064704], [2.377634535131715, 48.82788421555929], [2.377648755405543, 48.82788360244095], [2.377656758551876, 48.82788494188212], [2.377826230535969, 48.82795449880872], [2.377998462492835, 48.82802624632293], [2.378167935392156, 48.828095802756565], [2.378340168275364, 48.828167550668965], [2.378509642089917, 48.82823710660963], [2.378681875921022, 48.82830885312155], [2.378851349288677, 48.8283784085622], [2.379023585408166, 48.828450155479366], [2.379193059691052, 48.828519710426974], [2.379365296758432, 48.8285914559437], [2.379534771956545, 48.82866101039837], [2.3797070099502, 48.82873275631322], [2.379876486063545, 48.82880231027489], [2.38004872500498, 48.82887405478926], [2.3800677740152762, 48.82887096436338], [2.380158917166905, 48.828767316595396], [2.380260798236864, 48.82866045338168], [2.380351940626026, 48.828556806346455], [2.380453822251078, 48.8284499429553], [2.380472823188129, 48.828447214662226], [2.380642516398665, 48.82852074569964], [2.380805957459855, 48.82859027519432], [2.380975651605904, 48.8286638057497], [2.381139093559886, 48.82873333478021], [2.381308788641451, 48.828806864853505], [2.381472231488223, 48.828876393419925], [2.3816419275053082, 48.828949923011166], [2.381805371244872, 48.82901945111342], [2.381968815420392, 48.829088978988004], [2.382138512829835, 48.829162507860715], [2.38230195789815, 48.82923203527111], [2.382471656243115, 48.82930556366174], [2.382635102204226, 48.829375090608046], [2.382804801484716, 48.829448618516594], [2.38295428095614, 48.82951796141465], [2.383107522730605, 48.829584357403235], [2.383257002993884, 48.829653699914594], [2.383410244190827, 48.82972009550022], [2.383559725256597, 48.82978943672547], [2.383712968589508, 48.829855832821536], [2.383862450447131, 48.82992517366005], [2.384015694575218, 48.82999156846086], [2.384165177214071, 48.83006090981194], [2.384318420764528, 48.83012730420981], [2.384387661635174, 48.83018787972224], [2.38445096551672, 48.83016370312729], [2.384528992276569, 48.83010215071799], [2.384651280589462, 48.82999789098778], [2.384783685211673, 48.82989344033467], [2.384905972525631, 48.829789180324646], [2.385038376107479, 48.82968472937012], [2.385038744768019, 48.829684425479975], [2.385161029719441, 48.82958016518275], [2.385275654123914, 48.82948136052936], [2.385397938114727, 48.82937710087031], [2.385512561634225, 48.82927829507266], [2.385634844674943, 48.82917403515252], [2.385749467298973, 48.829075229109904], [2.385871749389604, 48.828970968928644], [2.38598637110758, 48.82887216354042], [2.3861086522587263, 48.82876790219876], [2.386223273081355, 48.828669096565626], [2.386345553282326, 48.82856483496283], [2.386460173209515, 48.82846602908475], [2.386582452460423, 48.82836176722091], [2.3866970714921782, 48.828262961097884], [2.386819349793031, 48.82815869897292], [2.386933967929363, 48.82805989260498], [2.386934821607697, 48.828059232345986], [2.387069129276421, 48.82796508658517], [2.387203739257952, 48.82786847344342], [2.387338045949634, 48.82777432736464], [2.387472656291736, 48.82767771481004], [2.387606962017048, 48.82758356751393], [2.387741570006175, 48.827486954633294], [2.387875874754353, 48.82739280701914], [2.388010481752729, 48.82729619381939], [2.388144785513327, 48.82720204678662], [2.388279392893508, 48.827105432375404], [2.388413694314997, 48.82701128501764], [2.388548300693683, 48.82691467118667], [2.388682602510909, 48.826820522618604], [2.388817206536672, 48.82672390846158], [2.3889515073662553, 48.82662976047481], [2.389086110411837, 48.82653314509941], [2.389220410264431, 48.826438996794685], [2.389355013670736, 48.82634238200645], [2.389489311194804, 48.8262482324775], [2.389623913610299, 48.82615161737021], [2.389758211519462, 48.826057467530205], [2.389892811581983, 48.8259608520969], [2.390027108503753, 48.825866702838255], [2.390161707586004, 48.825770086186544], [2.390164647701979, 48.82576455654777], [2.390158652247238, 48.82573690714161], [2.390109982848812, 48.825715673880254], [2.390108301039803, 48.825714940408844], [2.390065351980474, 48.825696203281105], [2.389910855526635, 48.82561573258224], [2.3897614004593493, 48.825550529971046], [2.389606903544258, 48.825470058862074], [2.389445088156806, 48.82538356755224], [2.389290593586731, 48.82530309602968], [2.3891346404438822, 48.82521973795545], [2.389075717038316, 48.82518824219586], [2.388921223617138, 48.82510777018211], [2.38882177711613, 48.825054615365126], [2.388651486151207, 48.824993718054465], [2.388499636576809, 48.82493971136164], [2.388329346363447, 48.824878813586025], [2.3881774974573933, 48.82482480647859], [2.388025650217406, 48.824770800082], [2.387855361109357, 48.8247099016223], [2.387684144786378, 48.82464900536214], [2.387513856475013, 48.82458810640952], [2.387342642302229, 48.824527210560106], [2.387172354787546, 48.82446631111461], [2.387001141424157, 48.82440541387033], [2.386830854706156, 48.82434451393195], [2.386659642131021, 48.82428361709146], [2.386489356209703, 48.824222716660195], [2.386348777385046, 48.82417271415072], [2.386178492189047, 48.8241118132708], [2.386037915312969, 48.82406181129724], [2.385867630842286, 48.82400090996865], [2.385842372120477, 48.823991925907166], [2.3857977441658162, 48.82397605118221], [2.385791894052359, 48.823973970561305], [2.385744084025319, 48.82395696514713], [2.385726064400038, 48.82395055538001], [2.385555780656976, 48.82388965360131], [2.385386072593636, 48.823829287862715], [2.385215789643765, 48.823768385593304], [2.385139551662089, 48.82374126780907], [2.385093737299518, 48.823724971204356], [2.385090849566269, 48.82372394455891], [2.38504487517767, 48.823707591350974], [2.384874593023798, 48.82364668858915], [2.384707060795814, 48.823587095727916], [2.384536779430067, 48.823526192478525], [2.384369247975264, 48.82346659913761], [2.384198967397642, 48.82340569540065], [2.38403143807812, 48.82334610158711], [2.383861158288624, 48.82328519736264], [2.3836936283804873, 48.82322560306244], [2.383523349379117, 48.82316469835039], [2.383355820244164, 48.82310510357058], [2.383185542030922, 48.82304419837101], [2.383059373873072, 48.822999316233464], [2.3829813260769033, 48.82297155184756], [2.382811048737269, 48.82291064610751], [2.382721803319383, 48.8228788979801], [2.382676246866709, 48.82286050171839], [2.382648346015969, 48.822876782076314], [2.3825617952281792, 48.82299234026592], [2.382474624256059, 48.82310951405602], [2.382388071345674, 48.8232250711896], [2.382300900956041, 48.82334224483583], [2.382214347274188, 48.8234578018197], [2.382127176105044, 48.823574975315], [2.382040621641157, 48.823690533048534], [2.381953449692491, 48.82380770639293], [2.381866894467977, 48.823923263077475], [2.381779720377765, 48.82404043626389], [2.381693165743771, 48.824155992805814], [2.381605990874013, 48.824273165841326], [2.381519435458055, 48.82438872313284], [2.381432259808738, 48.82450589601746], [2.381345702269908, 48.824621452252906], [2.381258527203057, 48.82473862499364], [2.381171968892905, 48.824854181079424], [2.381084793046484, 48.8249713536692], [2.380998233964799, 48.825086909605325], [2.3809110573388, 48.825204082044124], [2.3808244974749933, 48.82531963872986], [2.380737318707454, 48.8254368110107], [2.380724086876941, 48.825441076572744]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 71, "roussel_fabien": 17.0, "nb_emargement": 1331.0, "nb_procuration": 37.0, "nb_vote_blanc": 22.0, "jadot_yannick": 78.0, "le_pen_marine": 80.0, "nb_exprime": 1301.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1652.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "50", "geo_point_2d": [48.82660914484048, 2.383185539037531], "melenchon_jean_luc": 593.0, "poutou_philippe": 6.0, "macron_emmanuel": 329.0}, "geometry": {"type": "Point", "coordinates": [2.383185539037531, 48.82660914484048]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5df7a18e8ce5eaa3fc1b75aafeee54b54c53530f", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 53, "zemmour_eric": 73.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-5", "geo_shape": {"coordinates": [[[2.382639557131637, 48.85407669268408], [2.382625394650501, 48.8541064528647], [2.382551690010275, 48.85423052556036], [2.382478167501502, 48.8543548401644], [2.382404462170027, 48.854478911842364], [2.382330938959531, 48.854603226328145], [2.382257232926143, 48.854727297887685], [2.382183710376734, 48.85485161226227], [2.382110002267939, 48.85497568459561], [2.382036479016791, 48.855099998851934], [2.381962770216823, 48.85522407016757], [2.381889246263929, 48.85534838430564], [2.38181553676191, 48.85547245550281], [2.381743590353091, 48.8555936677273], [2.3816716422466913, 48.855714879888225], [2.381597933070918, 48.85583895091749], [2.381525984286985, 48.85596016296406], [2.3814522744067173, 48.856084234775516], [2.381380324955917, 48.85620544580843], [2.38130661438192, 48.856329517502765], [2.381299392036841, 48.856334472445184], [2.3812277892443943, 48.85635516495383], [2.381148231150953, 48.85637860066108], [2.3811416787904163, 48.85638268399252], [2.381056577762136, 48.85649135372105], [2.380970118728071, 48.85660061172383], [2.3808850169860483, 48.85670928130905], [2.380798557230518, 48.85681853916645], [2.380713454774844, 48.85692720860832], [2.380626994308634, 48.857036465421004], [2.380541889776219, 48.8571451347125], [2.38045542857804, 48.857254392279074], [2.380370324694736, 48.857363061434214], [2.380283862785762, 48.85747231795614], [2.38026640503877, 48.857476419405295], [2.380118870927896, 48.85743462159557], [2.379965600519689, 48.85739040880806], [2.37981806553078, 48.85734861061718], [2.379664795630837, 48.85730439744097], [2.379640571111937, 48.857310538516394], [2.379636886008226, 48.857314977480485], [2.379689795380038, 48.85740211349419], [2.379726449936625, 48.857465244365265], [2.379735263968665, 48.85747750859321], [2.379750328665664, 48.85747842397123], [2.379910416486765, 48.85752860445666], [2.380073325481995, 48.857579280490384], [2.380233415286944, 48.85762946054622], [2.380396324911662, 48.857680136135635], [2.380411762329498, 48.85767836790747], [2.380493169660612, 48.85762477545762], [2.380647059076949, 48.857531590206364], [2.380784978206837, 48.857448043164425], [2.380938867942088, 48.85735485753012], [2.381076786136256, 48.85727131013855], [2.381230673464858, 48.85717812410711], [2.381368592086193, 48.85709457637299], [2.381522478370833, 48.85700138995144], [2.381660394693581, 48.856917841860664], [2.381814281297344, 48.856824655056094], [2.381952196684389, 48.8567411066157], [2.382090112991911, 48.85665755801715], [2.382243996695549, 48.856564370631055], [2.382261932095381, 48.856564085495016], [2.382296502423087, 48.856583079223235], [2.382302169147561, 48.85660207573339], [2.382343560410761, 48.85660329575962], [2.382388369211433, 48.85662791467012], [2.382424269456665, 48.856647631105254], [2.382441993535125, 48.85664746896154], [2.382593398155064, 48.85655950973713], [2.382742893981643, 48.85647260170186], [2.382894298948361, 48.856384642089914], [2.383043793771333, 48.856297733665045], [2.383195196348566, 48.85620977455083], [2.383344690167844, 48.85612286573634], [2.383496091739655, 48.85603490532826], [2.383645584555341, 48.85594799612417], [2.383796986473936, 48.8558600353286], [2.38394647692329, 48.85577312572791], [2.38409787781509, 48.85568516543705], [2.38424736862371, 48.85559825545384], [2.384398767147245, 48.85551029386212], [2.384548256952293, 48.85542338348931], [2.384697746258654, 48.855336472922964], [2.384849143261258, 48.85524851074068], [2.384998631564054, 48.8551615997848], [2.385150028902836, 48.8550736381143], [2.385299516202072, 48.85498672676881], [2.385450911172707, 48.854898763797486], [2.385454830919514, 48.85488916448629], [2.385426325355724, 48.854832851904526], [2.385392770300355, 48.85476996071544], [2.385415670873289, 48.85472604258335], [2.385399829938984, 48.85471924307825], [2.385382124479758, 48.854711644364855], [2.385370790586371, 48.854710390912345], [2.385177673201575, 48.85466399332677], [2.384980805124274, 48.85461924624053], [2.384787688424537, 48.854572848021746], [2.384590819663692, 48.85452810028319], [2.384397705011833, 48.854481701438246], [2.384200836930366, 48.85443695305436], [2.384200792075243, 48.85443694293067], [2.384007678108529, 48.854390543452496], [2.383822748574059, 48.85434897844202], [2.383629635269988, 48.854302578350044], [2.383444706349271, 48.854261012752005], [2.383259776360782, 48.85421944685962], [2.383066664038086, 48.85417304585368], [2.382881736026166, 48.854131479380776], [2.382688624366127, 48.854085077761056], [2.382648687130565, 48.8540761012508], [2.382639557131637, 48.85407669268408]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 5, "roussel_fabien": 29.0, "nb_emargement": 1414.0, "nb_procuration": 99.0, "nb_vote_blanc": 13.0, "jadot_yannick": 139.0, "le_pen_marine": 42.0, "nb_exprime": 1398.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1762.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1414, "quartier_bv": "43", "geo_point_2d": [48.85558301596873, 2.3828245963744883], "melenchon_jean_luc": 506.0, "poutou_philippe": 10.0, "macron_emmanuel": 487.0}, "geometry": {"type": "Point", "coordinates": [2.3828245963744883, 48.85558301596873]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c1b6c18f2c22af376a7f7c7d05b3cea3fad9d164", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 43, "zemmour_eric": 97.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-48", "geo_shape": {"coordinates": [[[2.303481595359494, 48.82701156477349], [2.303457734143313, 48.82700280974066], [2.30335749257186, 48.82692084097451], [2.303236672150775, 48.82682131504284], [2.303109434176975, 48.8267172699699], [2.302988613339114, 48.826617743761595], [2.302861376357065, 48.82651369840583], [2.302740556464598, 48.8264141719289], [2.302613320474395, 48.82631012629036], [2.302492502889172, 48.826210599552695], [2.302365267890901, 48.826106553631384], [2.302244449888891, 48.82600702661715], [2.302117215882345, 48.82590298041301], [2.301996398825602, 48.82580345313015], [2.301869165810975, 48.82569940664329], [2.301748351061535, 48.82559987909967], [2.30162753542336, 48.82550035051798], [2.301500303884422, 48.82539630361057], [2.30137948917955, 48.82529677565956], [2.301252258632406, 48.82519272846939], [2.301250750487838, 48.82519051347458], [2.301206877588791, 48.825180282974024], [2.3011959433048492, 48.825182662699], [2.301133202300419, 48.825196317409976], [2.3009760456969213, 48.82523224653182], [2.300869299550046, 48.82525547950531], [2.300712142586356, 48.82529140827845], [2.300487114298422, 48.82534038290849], [2.300329956815441, 48.82537631117667], [2.300291913297608, 48.82538459133886], [2.300235652651954, 48.825396835492114], [2.300193324976957, 48.82540604749576], [2.300191604071693, 48.82540801606417], [2.300206467590462, 48.825436124167986], [2.3001254979570582, 48.825557952688136], [2.300045312360684, 48.825678272073006], [2.299964341974647, 48.8258001004578], [2.299884154271991, 48.82592041970072], [2.299803183133308, 48.82604224795007], [2.29972299606034, 48.826162566167646], [2.299642024156926, 48.82628439518094], [2.299561834977545, 48.82640471325653], [2.299480862333546, 48.82652654123509], [2.299400673759787, 48.826646860083905], [2.299319700363115, 48.826768687927085], [2.299239509683011, 48.82688900663392], [2.299158535533654, 48.827010834341664], [2.299078345483236, 48.82713115202317], [2.298997370581189, 48.82725297959551], [2.298917178412201, 48.82737329803427], [2.298836202757449, 48.827495125471216], [2.298756011206252, 48.82761544378393], [2.298675034798687, 48.827737271085404], [2.298594841153079, 48.82785758835682], [2.298594448745066, 48.82786417670862], [2.29863863281314, 48.827947700393125], [2.298724423041154, 48.82810844681337], [2.298768607524477, 48.82819197043158], [2.298771829826669, 48.828195361098295], [2.298872500399143, 48.82826189471647], [2.298973029454431, 48.828328334778895], [2.299073700540446, 48.828394868219824], [2.299174231470574, 48.828461308113205], [2.299177871903779, 48.82846967208586], [2.29914198438572, 48.82857314578265], [2.2991051669484133, 48.828681133388784], [2.299069279152577, 48.82878460614492], [2.299032462777467, 48.82889259371627], [2.298996573317539, 48.82899606732242], [2.298959756642495, 48.82910405485098], [2.298977217573474, 48.82911459089171], [2.299182854311886, 48.82907091529436], [2.299355972658174, 48.82903407028844], [2.299529090771844, 48.82899722413142], [2.299734726584965, 48.828953547580596], [2.299907844151477, 48.82891670177198], [2.300113479329771, 48.82887302456683], [2.300286597735303, 48.828836177315964], [2.300492232278658, 48.828792499456476], [2.300665348775005, 48.82875565254605], [2.300870982683318, 48.828711974032174], [2.301044098656633, 48.82867512567158], [2.301061808012011, 48.82868473020661], [2.301033004921025, 48.82884733140469], [2.301010731226419, 48.828967328507545], [2.301004262027524, 48.8290021784847], [2.301015747903268, 48.829020999453405], [2.301055017530043, 48.82901706573934], [2.301245415933076, 48.8289771333952], [2.301463200446562, 48.82893401772023], [2.301472644779389, 48.828923640992855], [2.30145106609415, 48.8288523642275], [2.301427034909548, 48.82878479025934], [2.30143757422009, 48.82877392167371], [2.301628345790562, 48.82874824424891], [2.301816238532712, 48.82872167281985], [2.302007009725484, 48.8286959947898], [2.302194902098364, 48.82866942186527], [2.302385674275551, 48.82864374323802], [2.302573564893049, 48.82861717060874], [2.30276433669242, 48.82859149137622], [2.30295222694062, 48.828564917251505], [2.302962944644038, 48.8285553500726], [2.302945099748731, 48.82841893444508], [2.302920035926898, 48.828283082901955], [2.302929377465609, 48.828273435752294], [2.303129521234679, 48.82823083029215], [2.303320740855677, 48.82819026896285], [2.303520883985635, 48.82814766284461], [2.303712102997099, 48.82810710088656], [2.303903321711016, 48.828066538621314], [2.304103463889863, 48.82802393152343], [2.304294681994238, 48.82798336862945], [2.304494822171952, 48.82794076086555], [2.304612879459895, 48.82794859025089], [2.304617866332633, 48.82793368775956], [2.30454203406272, 48.827872769865614], [2.304414792279802, 48.827768726286884], [2.304284858390452, 48.827664344921374], [2.304157616267256, 48.82756030104178], [2.304027684762346, 48.827455920284734], [2.303900443661168, 48.82735187611219], [2.303770513202592, 48.827247494157], [2.303643273123221, 48.82714344969153], [2.303513343698968, 48.82703906743763], [2.303486344923119, 48.82701699141236], [2.303481595359494, 48.82701156477349]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 48, "roussel_fabien": 12.0, "nb_emargement": 1081.0, "nb_procuration": 21.0, "nb_vote_blanc": 14.0, "jadot_yannick": 41.0, "le_pen_marine": 113.0, "nb_exprime": 1062.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1569.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1081, "quartier_bv": "57", "geo_point_2d": [48.82733022564187, 2.3012013472356085], "melenchon_jean_luc": 450.0, "poutou_philippe": 3.0, "macron_emmanuel": 259.0}, "geometry": {"type": "Point", "coordinates": [2.3012013472356085, 48.82733022564187]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "caf495e0a02be779d103a8f19d8fec6ef17e4c99", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 99, "zemmour_eric": 123.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "6-14", "geo_shape": {"coordinates": [[[2.328043110286374, 48.84994521109158], [2.328041371168988, 48.84993730315484], [2.328126333851285, 48.84982293935964], [2.32821044701815, 48.84971017248298], [2.328295408970677, 48.849595807645095], [2.328379522756147, 48.84948304153348], [2.328464483967213, 48.84936867655219], [2.328548597020211, 48.849255910298744], [2.328633556127365, 48.849141545166404], [2.328717668447902, 48.8490287787711], [2.328717797478565, 48.84902860052249], [2.328721316072465, 48.84901082733517], [2.328701404110241, 48.84900434814865], [2.328604515574531, 48.84889249974001], [2.328509877350884, 48.84878361017165], [2.3284129896366412, 48.8486717615857], [2.328318352225643, 48.84856287094499], [2.328221465321264, 48.84845102308109], [2.328126828711419, 48.84834213226728], [2.328029942628485, 48.848230284226105], [2.327935306819579, 48.848121393239204], [2.32793177089092, 48.84811872745857], [2.327800185311765, 48.84805222249468], [2.327668205348216, 48.847986315037375], [2.327536621813986, 48.847919808884086], [2.327404642519104, 48.847853901128204], [2.327401734198465, 48.8478519187759], [2.327302592353008, 48.84775930102188], [2.327190105235919, 48.847654704188905], [2.327090962779132, 48.84756208623547], [2.3269784765124832, 48.84745748918499], [2.326953809439033, 48.847461780672255], [2.326934109979834, 48.84758904903325], [2.326914547511823, 48.847715304568126], [2.326894847860907, 48.84784257289372], [2.326875285202608, 48.84796882839343], [2.326855585359973, 48.84809609668355], [2.326836022499767, 48.8482223530474], [2.326816322477026, 48.84834962040283], [2.326796759426525, 48.84847587673151], [2.326777059200543, 48.84860314495079], [2.326757497333915, 48.84872940035268], [2.326737796916106, 48.8488566685365], [2.326718233496631, 48.84898292389557], [2.326698532887193, 48.84911019204393], [2.326678969265694, 48.84923644826715], [2.326659268476143, 48.84936371548078], [2.326639704664338, 48.84948997166881], [2.326617390120008, 48.84949594643479], [2.32646692929386, 48.8494126291598], [2.326319989757256, 48.84933135507292], [2.32616952988181, 48.84924803741159], [2.326022591273123, 48.84916676294748], [2.325872132336739, 48.8490834457992], [2.325725194667497, 48.849002170058505], [2.325574736681902, 48.84891885252389], [2.325427801303229, 48.84883757641364], [2.3252773442683132, 48.84875425849275], [2.32513040845489, 48.84867298199759], [2.324979952370652, 48.848589663690404], [2.324833017485134, 48.848508386818], [2.324815117274028, 48.84850087867014], [2.324799777922451, 48.848507230624115], [2.324682525664792, 48.84861644460032], [2.324566349690107, 48.84872511592], [2.324449097803909, 48.848834330553004], [2.324332920856714, 48.848943001624804], [2.324215666640173, 48.849052215100734], [2.324099488720358, 48.849160885924576], [2.323982233512694, 48.84927010004962], [2.323866054620447, 48.849378770625535], [2.323748799807653, 48.849487983608846], [2.323632619942768, 48.84959665393683], [2.323515362787826, 48.849705866662326], [2.323399181938817, 48.84981453764168], [2.323353438390207, 48.84984643104906], [2.323358987651231, 48.84985292972572], [2.323440888825154, 48.849894334416625], [2.323594444067604, 48.84996587338086], [2.323754356209645, 48.85004671596731], [2.32390791234311, 48.85011825362014], [2.324067826801743, 48.85019909578424], [2.324221382440196, 48.850270633916594], [2.324222540805422, 48.85027115848992], [2.324400205452599, 48.850343132939656], [2.324566147958858, 48.85041101091764], [2.324743814920017, 48.85048298485578], [2.324909756968244, 48.85055086144169], [2.32508742488079, 48.85062283486057], [2.325253367810277, 48.85069071186069], [2.325431036674214, 48.8507626847603], [2.3255969805082533, 48.85083056037606], [2.325774650323579, 48.8509025327564], [2.3259405964015, 48.850970408794005], [2.326118267168221, 48.85104238065505], [2.326284212788078, 48.8511102553006], [2.326461884506188, 48.85118222664235], [2.326627831007331, 48.851250101702114], [2.32663000674016, 48.85125120666681], [2.326724864561009, 48.851313822254895], [2.326845078301032, 48.85138871635425], [2.326860545032668, 48.85140483172484], [2.326883246312128, 48.8514105462494], [2.326938600684736, 48.85144503234223], [2.326986806477647, 48.85147556779095], [2.326997863212865, 48.85147934073317], [2.327045968821757, 48.851443137855064], [2.327135011780404, 48.851320475184224], [2.327222471229002, 48.85120009779404], [2.327311513345381, 48.851077435864376], [2.327398971978349, 48.850957058318876], [2.32748643020725, 48.850836680696425], [2.327575471092831, 48.85071401763094], [2.327662928506219, 48.850593639853194], [2.327751968549465, 48.850470977528865], [2.327752795595413, 48.85046465159155], [2.327738978670912, 48.85043230857446], [2.327723850139714, 48.850397902251444], [2.327724573102711, 48.85039161620023], [2.32780252804834, 48.85028056250938], [2.327876004021335, 48.850173569384054], [2.327949479681016, 48.85006657710261], [2.328027433661219, 48.849955523232815], [2.328027562696538, 48.8499553449851], [2.328043110286374, 48.84994521109158]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 14, "roussel_fabien": 4.0, "nb_emargement": 1022.0, "nb_procuration": 68.0, "nb_vote_blanc": 9.0, "jadot_yannick": 70.0, "le_pen_marine": 41.0, "nb_exprime": 1009.0, "nb_vote_nul": 4.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 1254.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1022, "quartier_bv": "23", "geo_point_2d": [48.84963448921161, 2.3263191899740705], "melenchon_jean_luc": 172.0, "poutou_philippe": 3.0, "macron_emmanuel": 463.0}, "geometry": {"type": "Point", "coordinates": [2.3263191899740705, 48.84963448921161]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bd25d6afebefdc3f4ad264e422ee7ee25e372205", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 36, "zemmour_eric": 81.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "20-40", "geo_shape": {"coordinates": [[[2.406738053597103, 48.858263616974845], [2.40671777085092, 48.85825491688227], [2.406682885734107, 48.85823109654711], [2.4066435211301522, 48.85820244069553], [2.406623901647249, 48.85820204572881], [2.406525365382992, 48.858265521199584], [2.406428175240813, 48.85832854010124], [2.406329639861697, 48.85839201541036], [2.406232449246831, 48.858455034145855], [2.406213109085538, 48.858454877925325], [2.406087327446655, 48.85836924315583], [2.405961911515337, 48.858283845689265], [2.405836132075372, 48.85819820974997], [2.405710716967456, 48.85811281200698], [2.405691194286137, 48.85811277620662], [2.405564561686952, 48.85819804278495], [2.405443764637328, 48.85827998815838], [2.405317131226825, 48.85836525446207], [2.405196333400382, 48.858447199573405], [2.405177604119349, 48.858459794436065], [2.405177808670991, 48.85846241164719], [2.405253758713463, 48.85851138794351], [2.40541949264916, 48.85861872543137], [2.40555187773254, 48.858704095106454], [2.405717612895286, 48.85881143216281], [2.405849998967035, 48.85889680059393], [2.405850701862423, 48.858909146687694], [2.405787731067177, 48.858956552340445], [2.405722024668234, 48.85900634562309], [2.4057244034226333, 48.85901957959769], [2.405873215287035, 48.85908942143329], [2.406020525385717, 48.85915891746991], [2.406169338055288, 48.85922875802916], [2.406316648942804, 48.85929825369256], [2.40646546240739, 48.8593680938748], [2.406612772710759, 48.859437590057475], [2.40676158697016, 48.85950742986273], [2.406908899435556, 48.85957692477962], [2.407057714489976, 48.85964676420786], [2.407205027744314, 48.859716258751476], [2.407216516913483, 48.85972688565023], [2.407229323943584, 48.859726865450114], [2.407414491855774, 48.859801565568624], [2.407594032762259, 48.8598738389883], [2.407779201719694, 48.8599485385326], [2.4079587422756052, 48.86002081138877], [2.408143912288501, 48.86009550945955], [2.408323453856788, 48.86016778175903], [2.4083262325598263, 48.86016926502433], [2.408447354734668, 48.86025350183188], [2.408569469566395, 48.860338460190775], [2.408690592527846, 48.86042269673926], [2.408812708152775, 48.860507654836994], [2.408933833263813, 48.860591891133154], [2.409055948308775, 48.860676849862294], [2.409063815029957, 48.86067955436013], [2.409183940305295, 48.860691448615064], [2.409299023913659, 48.86070333135364], [2.409331032412055, 48.86070617747855], [2.409337945099395, 48.86069769482174], [2.40934201150057, 48.8606716834161], [2.409345875068653, 48.86064997706188], [2.409350249727626, 48.86064173998864], [2.409342635438855, 48.86063143640953], [2.40936126283401, 48.86052681426226], [2.409383394226228, 48.86040321797048], [2.409405887699188, 48.86027688944535], [2.409428018879483, 48.86015329311748], [2.409450510783576, 48.86002696364944], [2.409472641741659, 48.85990336818476], [2.409495133429766, 48.85977703867987], [2.409517264185926, 48.85965344227981], [2.409539757020791, 48.85952711274477], [2.409561887554846, 48.859403517207866], [2.409584378810679, 48.859277187629296], [2.409606509132726, 48.859153592056295], [2.409629000172481, 48.85902726244085], [2.409651130292711, 48.85890366593251], [2.409673622479317, 48.85877733628694], [2.409695751014429, 48.85865374063502], [2.409718242984956, 48.85852741095264], [2.409740372670992, 48.85840381527137], [2.409730533014146, 48.85839410327912], [2.409518641000024, 48.858354705358344], [2.409314247923165, 48.85831702854781], [2.40910235653717, 48.85827762988724], [2.408897964063696, 48.85823995236306], [2.408883121036193, 48.85823745800754], [2.408869316787435, 48.85824599834588], [2.408755032917717, 48.858379600692835], [2.408643601853599, 48.85851110085737], [2.4086422292811562, 48.8585124269032], [2.408527551824651, 48.85860495759605], [2.408408871152291, 48.85870010616019], [2.408294192868274, 48.858792636613764], [2.408175511342355, 48.85888778493038], [2.408060832241036, 48.85898031424537], [2.40794214985113, 48.859075463213756], [2.407921825709841, 48.859075997595454], [2.407793804243816, 48.8589885854961], [2.407649386802667, 48.858890118292756], [2.407521367623597, 48.85880270499478], [2.407376951212647, 48.85870423744617], [2.4072489329371383, 48.85861682474135], [2.407104517556276, 48.85851835684748], [2.406976498831525, 48.858430943829845], [2.406832084490984, 48.858332474691395], [2.406738953168738, 48.85826888260249], [2.406738053597103, 48.858263616974845]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 40, "roussel_fabien": 37.0, "nb_emargement": 1074.0, "nb_procuration": 30.0, "nb_vote_blanc": 16.0, "jadot_yannick": 53.0, "le_pen_marine": 73.0, "nb_exprime": 1055.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1497.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1074, "quartier_bv": "80", "geo_point_2d": [48.859218928821555, 2.4079216837894246], "melenchon_jean_luc": 462.0, "poutou_philippe": 9.0, "macron_emmanuel": 238.0}, "geometry": {"type": "Point", "coordinates": [2.4079216837894246, 48.859218928821555]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "acf3ff7846d9f88dadc386b110152c8f16aab867", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 112, "zemmour_eric": 130.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "7-17", "geo_shape": {"coordinates": [[[2.305609109337752, 48.85521366008241], [2.3055947532876893, 48.855219739164355], [2.30554917618353, 48.85530351145633], [2.30547937468813, 48.85543186003715], [2.305416907126244, 48.85554667894624], [2.305347103616551, 48.85567502741395], [2.305284635459679, 48.855789847128165], [2.305214832673133, 48.855918194599184], [2.305152362570417, 48.856033014211306], [2.30508255913229, 48.856161361577094], [2.305020089809502, 48.85627618110291], [2.305019879832161, 48.85627659628522], [2.304964095913592, 48.856396180714874], [2.30491004369799, 48.85651313375826], [2.304854257911343, 48.85663271810333], [2.304800205203819, 48.85674967107219], [2.304744418911832, 48.856869255340555], [2.304690365724384, 48.8569862073356], [2.304634580289818, 48.857105791535204], [2.304580526598541, 48.85722274435501], [2.304570915453691, 48.85724722111256], [2.304584556585986, 48.857254216430015], [2.304612794180124, 48.857377382640344], [2.304639996871981, 48.85749997712148], [2.304668236093245, 48.85762314329941], [2.304695439043963, 48.85774573774081], [2.304723677154596, 48.85786890476969], [2.304750880375971, 48.85799149827208], [2.304769120030569, 48.857998623705484], [2.304948999168566, 48.85795444548765], [2.305123129878763, 48.857911732843476], [2.305303008428605, 48.85786755319077], [2.305477138558198, 48.85782484002809], [2.30565701650788, 48.85778065983979], [2.305831146056763, 48.857737946158636], [2.305841182436593, 48.85773808711966], [2.306000490949838, 48.857782337557595], [2.306156761510152, 48.85782567890493], [2.306316070547255, 48.857869929818555], [2.30647234163279, 48.85791327075035], [2.306628612978305, 48.857956611476396], [2.306787922816482, 48.85800086175664], [2.3067921554037643, 48.85800153740833], [2.30699932506501, 48.85801207264355], [2.307204354674959, 48.85802211487457], [2.307411523126518, 48.85803265028741], [2.307616552908935, 48.85804269091271], [2.307823722888444, 48.858053225619656], [2.308028751468361, 48.85806326553069], [2.308235921613119, 48.858073799523794], [2.308440951704276, 48.858083839635576], [2.308648120663209, 48.858094372007756], [2.308853150914848, 48.858104411413116], [2.309058181245396, 48.85811445046709], [2.309265351813701, 48.85812498177831], [2.309305560611932, 48.85812490898493], [2.309311447630536, 48.85810298523416], [2.309319604290201, 48.85806541143133], [2.309335717199371, 48.85800455699893], [2.3093232777251558, 48.85799404010254], [2.309116016493481, 48.857984114528755], [2.308914913331903, 48.857973771784366], [2.308707652246718, 48.857963846402384], [2.30850654789348, 48.85795350206436], [2.3082992869667223, 48.85794357597494], [2.308098184123749, 48.85793323185762], [2.307890923367369, 48.85792330416146], [2.307689820683718, 48.8579129593577], [2.307482560073841, 48.857903031853354], [2.307281456198582, 48.85789268545601], [2.307074195747165, 48.85788275724423], [2.306873093382181, 48.857872411067554], [2.306869508761911, 48.85787189925691], [2.30666485563392, 48.857821938077905], [2.306433052004078, 48.85776648960911], [2.306424836905279, 48.857755058862686], [2.306486750476676, 48.85763857803246], [2.306547896719595, 48.85752299656455], [2.306609811103008, 48.85740651565422], [2.306670956812677, 48.85729093319997], [2.306732869282252, 48.85717445219374], [2.306794014434643, 48.85705887055175], [2.306855927716338, 48.85694238946535], [2.306917072323321, 48.85682680773631], [2.306978983691308, 48.85671032655403], [2.307040127753098, 48.856594744737954], [2.30704084282366, 48.85659252567205], [2.307056448390009, 48.85647396046285], [2.307071509919372, 48.85635448463905], [2.30708711670739, 48.85623591940834], [2.307102176746738, 48.85611644264791], [2.307117783393775, 48.855997877387765], [2.307132844656841, 48.85587840060576], [2.3071484497998602, 48.85575983530835], [2.307163510923802, 48.855640358496885], [2.307155062974359, 48.85563128274301], [2.306963731901121, 48.85557994390244], [2.306775525104425, 48.85552931355717], [2.306584194779571, 48.85547797410506], [2.306395990082708, 48.855427343166085], [2.306204660494265, 48.8553760040017], [2.306016455171787, 48.85532537245326], [2.305825126343707, 48.855274031778], [2.305636923121167, 48.855223399635875], [2.305609109337752, 48.85521366008241]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 17, "roussel_fabien": 6.0, "nb_emargement": 1044.0, "nb_procuration": 70.0, "nb_vote_blanc": 1.0, "jadot_yannick": 56.0, "le_pen_marine": 65.0, "nb_exprime": 1039.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1302.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1044, "quartier_bv": "28", "geo_point_2d": [48.85674292625906, 2.3060286942870327], "melenchon_jean_luc": 132.0, "poutou_philippe": 2.0, "macron_emmanuel": 500.0}, "geometry": {"type": "Point", "coordinates": [2.3060286942870327, 48.85674292625906]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2ba1daccf11958e0a2a122c74681db4d914fd05b", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 70, "zemmour_eric": 92.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-36", "geo_shape": {"coordinates": [[[2.303918041629505, 48.890056648542476], [2.303919058559721, 48.89005341956913], [2.303753807509486, 48.889974918705995], [2.303596766020168, 48.88989965886887], [2.303431515943808, 48.88982115754997], [2.303274474020339, 48.88974589727167], [2.303109224917852, 48.88966739549703], [2.302952183935993, 48.88959213388625], [2.3027869358073803, 48.88951363165582], [2.302629897106771, 48.889438370519024], [2.302464649952022, 48.88935986783288], [2.302307610817263, 48.889284606254925], [2.30214236463638, 48.88920610311302], [2.301985326431184, 48.889130841101846], [2.301820081224162, 48.88905233750417], [2.301663043960589, 48.88897707416057], [2.301497799715363, 48.88889857100639], [2.301340764745052, 48.888823307237544], [2.3011755214857432, 48.88874480272839], [2.301018486069222, 48.88866953941765], [2.300853243783765, 48.88859103445275], [2.300696209296796, 48.88851577070886], [2.300539176639551, 48.88844050586254], [2.300373935791455, 48.88836200111907], [2.300364069315359, 48.88836044878199], [2.300347178774567, 48.88837051521903], [2.300228050744649, 48.888481122885715], [2.300110800405119, 48.888589985009325], [2.299991671370991, 48.88870059241876], [2.299874421406682, 48.88880945429707], [2.299757170940122, 48.88891831694903], [2.299638040415648, 48.88902892307434], [2.299520787596997, 48.88913778546513], [2.299401656068393, 48.8892483913331], [2.299284403624945, 48.889357253478614], [2.2991652710921002, 48.88946785908933], [2.299048016296629, 48.88957672097366], [2.298928882759531, 48.88968732632707], [2.298925794789138, 48.88969990965068], [2.298934974995007, 48.88970605635627], [2.299100515135557, 48.88978234248627], [2.299266022157087, 48.88985879456136], [2.299431564644057, 48.88993507933183], [2.299597072637141, 48.89001153093873], [2.299762614731073, 48.89008781523292], [2.299928123695708, 48.890164266371606], [2.300093668123865, 48.89024055020549], [2.300259178060058, 48.89031700087595], [2.300424722095074, 48.89039328423358], [2.300590233002926, 48.89046973443585], [2.300755779372281, 48.89054601733313], [2.300921289887849, 48.89062246705921], [2.301086837227807, 48.890698749488195], [2.301252350078784, 48.890775198754], [2.301417897025597, 48.890851480706715], [2.30158341084804, 48.89092792950432], [2.301748960117154, 48.89100421189594], [2.301914474923327, 48.891080659326015], [2.302080023799299, 48.891156941241384], [2.302245539576937, 48.89123338820324], [2.30228563100839, 48.89126301723763], [2.302294645975258, 48.89126057862671], [2.3023688270834892, 48.891201630012695], [2.302444577269087, 48.89114404487873], [2.302457994213878, 48.89114052212786], [2.302472473986093, 48.89112312444116], [2.302526029178598, 48.891082411755775], [2.302663175990323, 48.890980352582474], [2.302792480282577, 48.89088205623724], [2.302929624680659, 48.890779996732206], [2.303058929348039, 48.890681699189976], [2.303196072696138, 48.89057963936115], [2.303325374987283, 48.89048134240459], [2.303462518649154, 48.89037928225988], [2.303591819951682, 48.89028098409842], [2.3037289611998473, 48.89017892362203], [2.30385826285365, 48.89008062606206], [2.303918041629505, 48.890056648542476]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 36, "roussel_fabien": 11.0, "nb_emargement": 1140.0, "nb_procuration": 33.0, "nb_vote_blanc": 16.0, "jadot_yannick": 30.0, "le_pen_marine": 111.0, "nb_exprime": 1117.0, "nb_vote_nul": 7.0, "arr_bv": "17", "arthaud_nathalie": 4, "nb_inscrit": 1558.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1140, "quartier_bv": "66", "geo_point_2d": [48.88982945026461, 2.301369788882105], "melenchon_jean_luc": 474.0, "poutou_philippe": 1.0, "macron_emmanuel": 284.0}, "geometry": {"type": "Point", "coordinates": [2.301369788882105, 48.88982945026461]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ab1d7afdf2cb2697e54bea28b548f1885a2312d2", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 54, "zemmour_eric": 93.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "13-39", "geo_shape": {"coordinates": [[[2.360399440208453, 48.822359383449275], [2.360424641039848, 48.82237255921982], [2.360626166421622, 48.82242343007354], [2.360821947739135, 48.82247258354675], [2.361017729414758, 48.82252173759659], [2.361219255951758, 48.82257260744399], [2.361415038388628, 48.82262175993968], [2.361616565699748, 48.822672629112986], [2.361812348886732, 48.822721780953806], [2.362013876961064, 48.82277265035238], [2.362209662260042, 48.8228218015456], [2.362411189757712, 48.82287266936347], [2.362508476146861, 48.82285422826709], [2.362507780221198, 48.82284519840562], [2.362539897612155, 48.82280573585762], [2.362634756665041, 48.822688798987095], [2.362727382859398, 48.82257498626159], [2.3628222410719, 48.822458049218284], [2.362914866447093, 48.82234423632421], [2.363009723819321, 48.822227299108214], [2.36310234837546, 48.82211348604556], [2.363197204907425, 48.821996548656784], [2.363289828644318, 48.82188273542556], [2.36338468433603, 48.82176579786411], [2.363477307242911, 48.821651985363594], [2.363572162094382, 48.821535047629446], [2.36366478555496, 48.8214212340683], [2.363759638204254, 48.82130429615417], [2.363852260845711, 48.82119048242445], [2.363947112654889, 48.82107354433759], [2.364039734477234, 48.82095973043931], [2.364134585446104, 48.82084279217978], [2.364227206449347, 48.820728978112946], [2.364322056578122, 48.82061203968068], [2.364414676751311, 48.820498226344625], [2.3645095260398, 48.82038128773968], [2.364569670259062, 48.820307379801655], [2.364581351717725, 48.82029398896275], [2.364505327111244, 48.820259252940225], [2.364331484549054, 48.82021005472084], [2.364160867298736, 48.82016198772658], [2.363987025385938, 48.82011278900219], [2.363816408771318, 48.82006472151228], [2.363645792471365, 48.820016653776925], [2.363471951528997, 48.81996745429735], [2.36330133586485, 48.81991938606633], [2.36312749557188, 48.819870186081715], [2.362956880543438, 48.81982211735509], [2.36278304089977, 48.81977291686544], [2.36261242514534, 48.81972484763592], [2.362438587501777, 48.819675647547825], [2.36226797239416, 48.81962757692333], [2.362094135399996, 48.819578376330234], [2.361923520928103, 48.81953030521009], [2.36174968458324, 48.819481104112015], [2.361731586020092, 48.81948617984015], [2.361661689825504, 48.819607811228984], [2.361591507953455, 48.81972749748024], [2.361521611108736, 48.819849128761135], [2.361451428579343, 48.81996881580379], [2.361441145167465, 48.81997441888613], [2.361295577659686, 48.819991754035144], [2.361150448592901, 48.820008534633516], [2.36100488089324, 48.820025869428086], [2.360859750276143, 48.82004264966593], [2.360855730107143, 48.820042729807376], [2.360639634315389, 48.820025803917545], [2.360421926789626, 48.820008598302024], [2.360205831280144, 48.81999167162772], [2.359988124039936, 48.81997446522184], [2.359772028812738, 48.819957537763095], [2.359554320496394, 48.81994033055961], [2.359539319019456, 48.819947596345415], [2.359507341861554, 48.820059755820886], [2.359477355321879, 48.82016574360367], [2.3594453792588252, 48.820277903048044], [2.359415392467849, 48.82038389079474], [2.359385405554865, 48.82048987852391], [2.35935342909525, 48.82060203791141], [2.3593541724751192, 48.82060704784034], [2.359429046980077, 48.82073039773328], [2.359504282770155, 48.82085585404655], [2.359579157976456, 48.820979204717496], [2.359654393124881, 48.82110466090129], [2.359729270405521, 48.821228011458246], [2.3598045062740303, 48.82135346751979], [2.359879384278129, 48.82147681705616], [2.359954620855893, 48.82160227389483], [2.360029498210465, 48.8217256233026], [2.360104736881427, 48.82185107912703], [2.360179614937392, 48.8219744293128], [2.360254854328471, 48.82209988501502], [2.36032973310791, 48.822223234180214], [2.36040497320829, 48.822348690659496], [2.360399440208453, 48.822359383449275]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 39, "roussel_fabien": 26.0, "nb_emargement": 1367.0, "nb_procuration": 53.0, "nb_vote_blanc": 20.0, "jadot_yannick": 73.0, "le_pen_marine": 88.0, "nb_exprime": 1340.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1854.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1367, "quartier_bv": "51", "geo_point_2d": [48.821080145642235, 2.361822010740181], "melenchon_jean_luc": 510.0, "poutou_philippe": 12.0, "macron_emmanuel": 420.0}, "geometry": {"type": "Point", "coordinates": [2.361822010740181, 48.821080145642235]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ea2d5358a2d11f7e3b4b42610cde42f20c0582f0", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 149, "zemmour_eric": 152.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-41", "geo_shape": {"coordinates": [[[2.263523092752335, 48.839540598515036], [2.263505922566354, 48.839539729231994], [2.263380938393838, 48.839574782603705], [2.263249642129054, 48.83960661678257], [2.263233209262846, 48.83960274359648], [2.263106062871265, 48.83946044662963], [2.26297732893766, 48.83932168415686], [2.262966584875255, 48.83931740529002], [2.262754401769974, 48.839308402694876], [2.262545263359449, 48.839300401509334], [2.262333080396163, 48.839291398166736], [2.262123942131278, 48.83928339534519], [2.261911759310002, 48.83927439125516], [2.261702621165209, 48.83926638859615], [2.261490438486054, 48.83925738375865], [2.26128130048694, 48.8392493794636], [2.2612455342855142, 48.83924837882372], [2.261238168627754, 48.83927270098046], [2.261227623677758, 48.83932205736867], [2.261217121012392, 48.839382847758976], [2.261218179465775, 48.839387476179915], [2.261292960040541, 48.83950014212357], [2.261375954124458, 48.83962568919266], [2.261450736757185, 48.839738354122765], [2.261533731600446, 48.839863901055615], [2.261608514903153, 48.839976566762374], [2.261691510505768, 48.84010211355895], [2.261766293141729, 48.84021477823536], [2.261849289503703, 48.8403403248957], [2.261924074172085, 48.8404529903571], [2.262007071293434, 48.84057853688121], [2.262081856644769, 48.84069120221996], [2.262128167792974, 48.84076125585129], [2.262125679565091, 48.84076637412393], [2.26214354162122, 48.8407867327843], [2.262178920821137, 48.84083430029031], [2.262215606296575, 48.84088979301923], [2.262216313343279, 48.840891148238], [2.262266665672343, 48.841019568136836], [2.262315787486365, 48.84114551253144], [2.262364908175334, 48.8412714568833], [2.262415262600276, 48.84139987668425], [2.2624643837694443, 48.841525820966574], [2.262514737322774, 48.84165424068798], [2.262563860334403, 48.84178018490915], [2.262614214365958, 48.84190860545872], [2.262640083250054, 48.84193465783358], [2.262660915787774, 48.84193174456525], [2.262787275140008, 48.84187359648982], [2.262944444699116, 48.841803189008665], [2.263119958633569, 48.84172241933357], [2.263277127287386, 48.84165201140586], [2.263452640210009, 48.84157124033241], [2.263609809320889, 48.84150083196645], [2.263618977252733, 48.84149933608593], [2.263797137905865, 48.841512518430605], [2.263962175506601, 48.8415254407902], [2.2641272118141202, 48.84153836381292], [2.264305372741892, 48.8415515445009], [2.264325697943018, 48.8415565620836], [2.264349165243431, 48.84154555148948], [2.264534220329835, 48.84148199933365], [2.264711380554272, 48.84142017192601], [2.264888538995949, 48.84135834424423], [2.265073594122441, 48.84129479125172], [2.265250751708272, 48.84123296302659], [2.265435804598161, 48.841169408559], [2.265450587095406, 48.84117035463466], [2.265597970450028, 48.841247903151675], [2.265747087124808, 48.8413244071546], [2.265894471343536, 48.841401956194886], [2.266043588894171, 48.841478459817715], [2.266190974002344, 48.8415560075827], [2.26634009242904, 48.841632510825356], [2.266487478401336, 48.84171005911366], [2.266636597703895, 48.84178656197616], [2.266783985928099, 48.84186410899751], [2.266933104744261, 48.841940611471465], [2.266953370298711, 48.84193788554873], [2.267021472886071, 48.84185714895999], [2.267074808477804, 48.84179487589026], [2.267071577492461, 48.841783565383295], [2.266935341062081, 48.84170934907184], [2.266800528969011, 48.84163696705259], [2.266664294670237, 48.84156275043103], [2.266529483332767, 48.84149036809681], [2.266524665148307, 48.84148496120972], [2.266509015450503, 48.84142993071583], [2.266487203653404, 48.841348713191024], [2.266494356979502, 48.841342713273555], [2.266479098398464, 48.84132098711523], [2.266469562914207, 48.84128548529084], [2.266434581660791, 48.84115532679807], [2.2664032360505733, 48.84103860830984], [2.266368253765944, 48.84090844976055], [2.266336908465389, 48.84079173032982], [2.266305561930129, 48.84067501176963], [2.266270581495979, 48.84054485315776], [2.266257206539164, 48.84053743043895], [2.266072385219281, 48.840537069196365], [2.265891037455693, 48.840536770356195], [2.265706216140691, 48.840536408547884], [2.265524868381504, 48.84053610915265], [2.265340047071393, 48.8405357467786], [2.265158699316614, 48.84053544682825], [2.265149567952033, 48.840533108125655], [2.265013332082433, 48.84045135276389], [2.264854393996126, 48.84035455151446], [2.264718157693811, 48.840272795795094], [2.264559220687603, 48.840175995037306], [2.264422986677311, 48.84009423897706], [2.264264050776469, 48.83999743691233], [2.264127816333461, 48.83991568049453], [2.263968881512594, 48.839818878921434], [2.263832649361689, 48.83973712216276], [2.263673715646183, 48.83964031928272], [2.2635374830626622, 48.839558562166516], [2.263523092752335, 48.839540598515036]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 41, "roussel_fabien": 8.0, "nb_emargement": 1227.0, "nb_procuration": 63.0, "nb_vote_blanc": 18.0, "jadot_yannick": 58.0, "le_pen_marine": 98.0, "nb_exprime": 1206.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1602.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "61", "geo_point_2d": [48.84059388216799, 2.2636733249744383], "melenchon_jean_luc": 183.0, "poutou_philippe": 5.0, "macron_emmanuel": 515.0}, "geometry": {"type": "Point", "coordinates": [2.2636733249744383, 48.84059388216799]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f76fa2589724a203ee3308401717d4466b5be042", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 29, "zemmour_eric": 44.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-74", "geo_shape": {"coordinates": [[[2.389384119579635, 48.872851357643576], [2.389386315993849, 48.87285123664563], [2.389425719064728, 48.872867213767336], [2.389428860111511, 48.872868968202916], [2.3894756340693633, 48.87288408177167], [2.389610306454306, 48.872986072315406], [2.389735458181628, 48.87308767061184], [2.389870131601706, 48.87318966084443], [2.389995284314466, 48.873291259749756], [2.390016051243928, 48.87330125555449], [2.390021476652025, 48.873319483026805], [2.390038949817166, 48.87331130808366], [2.390066605383817, 48.873314939319364], [2.390079512053758, 48.873312053468844], [2.390123517237898, 48.87327899332337], [2.39013799090393, 48.873268146450066], [2.390144141001651, 48.87326081313589], [2.390092820545733, 48.873231190195426], [2.390003892750908, 48.87315527391915], [2.389920177010849, 48.8730838079601], [2.389836462874241, 48.87301234104558], [2.389747535826688, 48.87293642456379], [2.389748440391763, 48.87292473153157], [2.389879904679773, 48.87283346181161], [2.390011353395236, 48.872742201755415], [2.390142816761875, 48.87265093173159], [2.390274265919358, 48.872559671378546], [2.390405728364629, 48.8724684010509], [2.390537176600846, 48.87237714039406], [2.3906686381247573, 48.872285869762635], [2.3908000854397162, 48.87219460880195], [2.390931546042273, 48.87210333786669], [2.391062992435978, 48.87201207660224], [2.391194452117189, 48.871920805363175], [2.391325897589649, 48.87182954379494], [2.39145735634952, 48.87173827225203], [2.391588800900842, 48.87164701038004], [2.391589803559166, 48.87163540235863], [2.391522927845787, 48.8715768862102], [2.391432988997873, 48.87149818859037], [2.39140631245105, 48.871495551906705], [2.391395856467472, 48.871502497372745], [2.39121220267802, 48.87154333667982], [2.391040065681365, 48.87158442855333], [2.390856409960933, 48.871625267304545], [2.390684272412848, 48.871666358663326], [2.390512133240536, 48.87170744886686], [2.390328478025088, 48.87174828770976], [2.390311604996339, 48.8717433264704], [2.39027543211678, 48.87168799227005], [2.390239539261965, 48.871633083968476], [2.390223109083981, 48.87162802964227], [2.389997784461274, 48.871672557015025], [2.389775389204195, 48.87171650443698], [2.389550065189746, 48.87176103007102], [2.389327669177189, 48.871804976657685], [2.389316739109578, 48.87180407192209], [2.389174475786842, 48.87174772752934], [2.389040037346827, 48.871694480643676], [2.389035483059113, 48.87169152646315], [2.388947395668616, 48.87159824919183], [2.388836071406584, 48.87148668392358], [2.388747983356433, 48.87139340648124], [2.3886366599591913, 48.87128184100686], [2.388548573975687, 48.87118856340742], [2.388437251443425, 48.87107699772692], [2.3883694063225662, 48.871023378892545], [2.388362372795567, 48.871019800467025], [2.388176888797605, 48.870978573949465], [2.387992439861913, 48.87093757726781], [2.387806956449526, 48.870896350173965], [2.387622506732901, 48.87085535291223], [2.387437023916669, 48.870814124342786], [2.3872525761455, 48.87077312651493], [2.387067093904381, 48.87073189826847], [2.386882646715533, 48.87069089986752], [2.386698198464484, 48.870649900274564], [2.3865127171008362, 48.87060867116445], [2.386328270784766, 48.8705676719047], [2.386142790006715, 48.870526442218285], [2.386137605305827, 48.87052598844355], [2.385928390685003, 48.870534422186445], [2.38572067223475, 48.87054348918078], [2.385511457465526, 48.87055192309412], [2.385303738872916, 48.87056098936474], [2.3850960202078992, 48.87057005527485], [2.384886805230846, 48.870578488096164], [2.384679086423589, 48.87058755328262], [2.384469871308765, 48.87059598537509], [2.38444273502644, 48.87059886399937], [2.384444371561211, 48.87061773420743], [2.384370553928775, 48.87072910885509], [2.384283698023102, 48.870860151423656], [2.384209879703486, 48.87097152594782], [2.384123024342, 48.8711025692773], [2.384049203982783, 48.871213942771654], [2.383962347812762, 48.87134498595577], [2.383888528129701, 48.87145635933361], [2.383801669788081, 48.87158740236541], [2.383727849417919, 48.87169877561969], [2.383640991631, 48.87182981851312], [2.383567169199818, 48.87194119253615], [2.383556408234588, 48.871946509750586], [2.38339807535272, 48.871959869571434], [2.383238511453293, 48.87197333165983], [2.383226993998446, 48.871980128850936], [2.383223741523989, 48.871988957959225], [2.383217775706928, 48.87200264928505], [2.383206611526167, 48.87200943120703], [2.383209257991722, 48.87202080885129], [2.383153765927999, 48.87214816921969], [2.383099689024339, 48.872272282146795], [2.383044196424701, 48.87239964243538], [2.382990118988235, 48.872523756184016], [2.382936041304713, 48.87264786899496], [2.382880549257435, 48.87277523007068], [2.38282646968856, 48.872899342796856], [2.38277097711611, 48.87302670289346], [2.382716898377597, 48.873150816448174], [2.382661403906012, 48.87327817645795], [2.382645127476992, 48.87328443822125], [2.382442232598312, 48.87325239605837], [2.382244800271473, 48.873221216323266], [2.38223935021744, 48.873220355412506], [2.382223075215047, 48.87322660903226], [2.382208385831459, 48.873260216909806], [2.382197302238845, 48.87328557311125], [2.382165991034877, 48.873308806802164], [2.382163435039785, 48.873322917663415], [2.382206729376523, 48.87333056062931], [2.382392776064573, 48.87336270781917], [2.382587426483404, 48.87339571928846], [2.382773473639146, 48.87342786588472], [2.382894335990171, 48.87344836252853], [2.382905280381395, 48.873454637849164], [2.38292119397157, 48.87345771467082], [2.38299498391781, 48.87347022796641], [2.383111344949194, 48.87348666677218], [2.383143992590217, 48.87348007022246], [2.383150908407476, 48.873442932762806], [2.383279542738661, 48.87334535494609], [2.383402629876254, 48.87325231523305], [2.383531263254484, 48.87315473802828], [2.383654349492104, 48.87306169804039], [2.383782981938675, 48.872964119648984], [2.383906068639416, 48.8728710793932], [2.384034700143688, 48.872773500714466], [2.384157784581172, 48.87268046017677], [2.384158478450069, 48.87267988997078], [2.38426594461602, 48.872583910874084], [2.384372997459245, 48.87248803297244], [2.384480461460177, 48.87239205455874], [2.384587513524862, 48.872296175549344], [2.384694978097975, 48.8722001969334], [2.384802027999597, 48.872104318607725], [2.38490949179224, 48.872008338883255], [2.38501654226788, 48.871912460356064], [2.38501752218852, 48.871911678471896], [2.385117959447097, 48.8718402269049], [2.3852883244325582, 48.87174240162647], [2.38538875964072, 48.87167094891505], [2.38539044438838, 48.87166993592007], [2.385560808305137, 48.87157211023873], [2.385743731607351, 48.871479272626296], [2.3857613026325932, 48.87147979897259], [2.385795959553713, 48.87147690288164], [2.385878108054035, 48.8715270414737], [2.386023987004154, 48.87159332084316], [2.386196243744045, 48.871671178444394], [2.386342124855304, 48.871737458323814], [2.386514382547277, 48.87181531545703], [2.386660264477714, 48.8718815940408], [2.386832523111284, 48.871959451605335], [2.386978404486934, 48.87202572978571], [2.387150665446549, 48.872103585989976], [2.387296547619999, 48.87216986467327], [2.387298068875329, 48.8721704633234], [2.387485345724195, 48.87223343544914], [2.3876828914283132, 48.87230013988572], [2.387685448131398, 48.87230079778767], [2.387837371013082, 48.872328688895806], [2.387992974109771, 48.872356081508244], [2.388144897317264, 48.87238397222468], [2.388300500751486, 48.87241136353675], [2.388304124711646, 48.872412391110004], [2.388476911175917, 48.87248257402189], [2.388665284696911, 48.87255895715812], [2.388838072144647, 48.872629138640086], [2.3890264467252003, 48.87270552119784], [2.389199235135197, 48.87277570304842], [2.38934820772767, 48.87283610789322], [2.389384119579635, 48.872851357643576]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 74, "roussel_fabien": 36.0, "nb_emargement": 1328.0, "nb_procuration": 88.0, "nb_vote_blanc": 6.0, "jadot_yannick": 142.0, "le_pen_marine": 41.0, "nb_exprime": 1319.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1705.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1328, "quartier_bv": "77", "geo_point_2d": [48.87178900365225, 2.3867042573768584], "melenchon_jean_luc": 700.0, "poutou_philippe": 14.0, "macron_emmanuel": 252.0}, "geometry": {"type": "Point", "coordinates": [2.3867042573768584, 48.87178900365225]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "104f9642f680881b87e1ee3943b6f4319a87a5c4", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 55, "zemmour_eric": 97.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-66", "geo_shape": {"coordinates": [[[2.382860348206879, 48.8900724199966], [2.382821299480796, 48.890052541591665], [2.382661485655866, 48.88997403710612], [2.382499363747915, 48.88989262827939], [2.382339550899172, 48.88981412335273], [2.382177431356186, 48.88973271408534], [2.382017618119892, 48.889654208710574], [2.381855499578127, 48.88957279899543], [2.381695687318017, 48.88949429317958], [2.381533569788153, 48.88941288211745], [2.381373758493541, 48.88933437675977], [2.381211641964895, 48.88925296524993], [2.381211609417873, 48.88925294979327], [2.381051800473937, 48.88917444310224], [2.3809049108131672, 48.889101120129894], [2.380758021576878, 48.889027796073194], [2.380598214007831, 48.88894928876073], [2.380451324267918, 48.88887596431062], [2.380291517616556, 48.88879745747721], [2.380144630100641, 48.88872413264782], [2.37998482438826, 48.888645624494956], [2.379837936358114, 48.888572300171376], [2.379678131574212, 48.888493791598385], [2.37953124577866, 48.888420465996276], [2.379371441912313, 48.88834195790238], [2.379224555613239, 48.88826863190682], [2.3791175290166873, 48.888216051154586], [2.379093156450539, 48.888194968748365], [2.37905924590904, 48.888197207581214], [2.379006469615832, 48.88817127979327], [2.378850250467033, 48.88809295054806], [2.378690448643376, 48.888014440622676], [2.378534229076799, 48.88793611094688], [2.378374428200201, 48.88785760148779], [2.378218210943111, 48.8877792713956], [2.378058411035036, 48.887700760604275], [2.377902194723947, 48.887622430088626], [2.377742394399235, 48.88754391975653], [2.377586179034043, 48.88746558881741], [2.377426381041536, 48.8873870771602], [2.377270166622134, 48.88730874579757], [2.377110368223738, 48.8872302337003], [2.376954154739569, 48.887151902813535], [2.376794358662615, 48.887073390290396], [2.376638146135091, 48.886995058080885], [2.376478349652249, 48.88691654511773], [2.376322138070506, 48.88683821248478], [2.376198978642075, 48.88677769928453], [2.376162978727478, 48.886759186191064], [2.376162407613483, 48.88675916253102], [2.376125772895411, 48.886741163230056], [2.375965979327881, 48.886662649572095], [2.375801375003357, 48.88658197921408], [2.375641581038987, 48.88650346600396], [2.375476977720193, 48.88642279518834], [2.375317184744196, 48.88634428063465], [2.37515258242034, 48.88626361026063], [2.37499279178557, 48.886185095269816], [2.374828189114588, 48.886104423531755], [2.3746683994466, 48.88602590899593], [2.374503797781342, 48.88594523680024], [2.374344009101729, 48.88586672092086], [2.374179409805721, 48.885786048274696], [2.374019620729344, 48.88570753284315], [2.373855022439048, 48.885626859739354], [2.373695235714576, 48.88554834297139], [2.373530637066469, 48.885467669402885], [2.373476324905951, 48.885440981010504], [2.373460833505177, 48.88542624363534], [2.3734318817285462, 48.88542256947187], [2.373326408223788, 48.88537074061201], [2.373169673622096, 48.885293017007804], [2.373009888955353, 48.88521449930139], [2.372908125418829, 48.88516403487837], [2.37288831043394, 48.885160022624525], [2.372855024826832, 48.8851910180205], [2.37273997347552, 48.88529658525742], [2.3726199728814, 48.8854048666885], [2.372504919206753, 48.88551043457114], [2.372384918994595, 48.88561871575273], [2.372269864381791, 48.8857242824897], [2.372149861824544, 48.88583256340748], [2.372143781259894, 48.88584974281413], [2.372155429058121, 48.88586033409512], [2.37232668200067, 48.885929893677854], [2.372488315043146, 48.885994090277016], [2.372659570233875, 48.886063649382294], [2.372821204101902, 48.88612784552425], [2.372982838368555, 48.88619204144426], [2.373154094870861, 48.88626159982976], [2.373315729962965, 48.88632579529256], [2.373486985986175, 48.886395353186316], [2.373648623267477, 48.88645954819904], [2.373819880175335, 48.886529105608204], [2.373872456564014, 48.88654998588837], [2.373896161070847, 48.88656843448615], [2.373932382855734, 48.88656331247657], [2.37404144465157, 48.88660662669687], [2.374157330100477, 48.88665078137771], [2.374318967637472, 48.88671497546352], [2.374434854926479, 48.88675912987853], [2.374438292683583, 48.886761074192634], [2.374528405095133, 48.88683174802879], [2.374628428994513, 48.88691084806818], [2.374641748393077, 48.88693356442167], [2.374658031820159, 48.886935559631546], [2.374844104931062, 48.887024836851374], [2.37501898556014, 48.8871048813443], [2.3751938667377512, 48.88718492467673], [2.375379941658394, 48.8872742010436], [2.3753846484614742, 48.887278246475134], [2.375469275110593, 48.88742341881748], [2.375548720162896, 48.8875735831815], [2.375556022814623, 48.88757882835095], [2.3757248002800893, 48.88762866851645], [2.375893430091579, 48.88767765601097], [2.376062206825857, 48.88772749658856], [2.37623083727491, 48.887776483603496], [2.376399616026909, 48.88782632280888], [2.376568247113322, 48.8878753093442], [2.3767370251448963, 48.88792514806239], [2.376905656868865, 48.88797413411816], [2.376909037173538, 48.88797553756594], [2.37706915362917, 48.888064677926714], [2.377230769603917, 48.88815608136498], [2.377390887176229, 48.888245220381584], [2.377552504276187, 48.88833662337059], [2.377712622954426, 48.888425761942315], [2.377874241179498, 48.88851716448203], [2.378034360952927, 48.88860630350814], [2.378195980313863, 48.88869770469928], [2.378218025916038, 48.888724746697875], [2.3782568423200092, 48.88871611151318], [2.378363505297615, 48.88873804940316], [2.378404940191792, 48.88875088560172], [2.378412297459607, 48.88876438845238], [2.378270210329669, 48.888907849941795], [2.378135969961884, 48.88903803393505], [2.378139293143264, 48.88905039529253], [2.3782941120958663, 48.889123702597296], [2.378450162579687, 48.88919692885309], [2.37845360782658, 48.8892092395719], [2.3783515713054832, 48.889310315298175], [2.378249486293376, 48.8894123349666], [2.378147448978066, 48.889513410500236], [2.378045363178594, 48.88961542907654], [2.378047258899468, 48.88962684232486], [2.37820685078982, 48.889728747739376], [2.378354780629936, 48.889825583163145], [2.37851437373117, 48.88992748814934], [2.378662304707814, 48.890024323175695], [2.378810237598425, 48.890121158017784], [2.378969832496968, 48.89022306236952], [2.378985166405617, 48.89022472560057], [2.379166371318836, 48.89016800254934], [2.37934563347658, 48.89011004607623], [2.379526836223567, 48.890053323365784], [2.379706097585278, 48.889995366346966], [2.379887299551108, 48.889938642185896], [2.3800665601168842, 48.88988068462141], [2.380081329580111, 48.889881869948944], [2.380152543157712, 48.88992127006013], [2.380185271072998, 48.8899414799515], [2.380189617925365, 48.889950839207], [2.380135464118176, 48.89007582536037], [2.380080363359106, 48.89020357828201], [2.380026209026808, 48.89032856435721], [2.379971106368472, 48.89045631719207], [2.379916952885417, 48.89058130229686], [2.379861849691655, 48.89070905505207], [2.379807695672774, 48.89083404097791], [2.379752591943375, 48.890961793653354], [2.379698436035701, 48.89108677949395], [2.379643333134528, 48.891214532096775], [2.379589176701714, 48.89133951785918], [2.379534071901217, 48.891467270375216], [2.379479916317753, 48.89159225516719], [2.379424810981699, 48.89172000760351], [2.379370654862371, 48.891844993216566], [2.379315548990751, 48.89197274557315], [2.379261390982472, 48.89209773110092], [2.379206285939074, 48.89222548338487], [2.379233849580896, 48.89225064714775], [2.379270832514407, 48.892248203852986], [2.379327741662482, 48.892217940853556], [2.379482764467744, 48.89213591512096], [2.379636711535818, 48.892054048186615], [2.379791733377083, 48.891972021142536], [2.379945679474776, 48.89189015379877], [2.380100700330623, 48.8918081272417], [2.380254644094259, 48.891726259481445], [2.380409665339192, 48.891644232519205], [2.38056360814306, 48.89156236345024], [2.38071862841329, 48.891480336075816], [2.380872570236097, 48.89139846749672], [2.381027589531632, 48.89131643971001], [2.381181530394771, 48.89123456982223], [2.381336548715614, 48.89115254162333], [2.381490488597812, 48.891070672225396], [2.38164550594397, 48.89098864361429], [2.381799444866396, 48.89090677290773], [2.3819544598741063, 48.89082474387736], [2.382108399179274, 48.89074287366767], [2.382110652529116, 48.89074135285282], [2.382234368780328, 48.89063341799055], [2.382353191511045, 48.89053143104002], [2.382472012412538, 48.890429443955036], [2.382595728537336, 48.89032150869577], [2.382689523701101, 48.89023967652794], [2.382808344641798, 48.89013768908919], [2.38283826360801, 48.890111585820165], [2.382861158111063, 48.890108336759646], [2.382851421078227, 48.89008804105964], [2.382860348206879, 48.8900724199966]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 66, "roussel_fabien": 21.0, "nb_emargement": 1188.0, "nb_procuration": 54.0, "nb_vote_blanc": 6.0, "jadot_yannick": 109.0, "le_pen_marine": 68.0, "nb_exprime": 1178.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1628.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "73", "geo_point_2d": [48.88873729910682, 2.3783369479704555], "melenchon_jean_luc": 511.0, "poutou_philippe": 10.0, "macron_emmanuel": 261.0}, "geometry": {"type": "Point", "coordinates": [2.3783369479704555, 48.88873729910682]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0bac07577bbdeb79cb395cf8c01d40efcf729ec4", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 61, "zemmour_eric": 70.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-4", "geo_shape": {"coordinates": [[[2.379401365660513, 48.854852777389134], [2.37938753036236, 48.854854436881276], [2.379322091116221, 48.85493307838184], [2.379236890890629, 48.85503359474289], [2.379138834979353, 48.855151431464776], [2.379053635395323, 48.855251948581966], [2.378955578658708, 48.8553697851305], [2.378870377001287, 48.85547030209039], [2.37877231943932, 48.85558813846559], [2.378687117082051, 48.85568865437592], [2.378686213951514, 48.855689986119906], [2.378671654409403, 48.85571635769094], [2.378700595426117, 48.8557239230985], [2.378770234450359, 48.85584428844598], [2.378836481721617, 48.85595983450585], [2.378906122737813, 48.85608019975578], [2.378972369247498, 48.85619574570881], [2.379042010893011, 48.85631611085406], [2.379108259366737, 48.85643165671441], [2.379177900267896, 48.85655202264721], [2.379244149343019, 48.85666756840774], [2.37924424553936, 48.856667730789546], [2.3793068853634862, 48.85677073345071], [2.379387681429447, 48.85690380102122], [2.379450323173097, 48.8570068044918], [2.379531119971447, 48.85713987193716], [2.379593760919692, 48.85724287530368], [2.379621650504175, 48.85728880570919], [2.379640571111937, 48.857310538516394], [2.379664795630837, 48.85730439744097], [2.37981806553078, 48.85734861061718], [2.379965600519689, 48.85739040880806], [2.380118870927896, 48.85743462159557], [2.38026640503877, 48.857476419405295], [2.380283862785762, 48.85747231795614], [2.380370324694736, 48.857363061434214], [2.38045542857804, 48.857254392279074], [2.380541889776219, 48.8571451347125], [2.380626994308634, 48.857036465421004], [2.380713454774844, 48.85692720860832], [2.380798557230518, 48.85681853916645], [2.3808850169860483, 48.85670928130905], [2.380970118728071, 48.85660061172383], [2.381056577762136, 48.85649135372105], [2.3811416787904163, 48.85638268399252], [2.381148231150953, 48.85637860066108], [2.3812277892443943, 48.85635516495383], [2.381299392036841, 48.856334472445184], [2.38130661438192, 48.856329517502765], [2.381380324955917, 48.85620544580843], [2.3814522744067173, 48.856084234775516], [2.381525984286985, 48.85596016296406], [2.381597933070918, 48.85583895091749], [2.3816716422466913, 48.855714879888225], [2.381743590353091, 48.8555936677273], [2.38181553676191, 48.85547245550281], [2.381889246263929, 48.85534838430564], [2.381962770216823, 48.85522407016757], [2.382036479016791, 48.855099998851934], [2.382110002267939, 48.85497568459561], [2.382183710376734, 48.85485161226227], [2.382257232926143, 48.854727297887685], [2.382330938959531, 48.854603226328145], [2.382404462170027, 48.854478911842364], [2.382478167501502, 48.8543548401644], [2.382551690010275, 48.85423052556036], [2.382625394650501, 48.8541064528647], [2.382639557131637, 48.85407669268408], [2.382619993039202, 48.85407015509122], [2.382475001548404, 48.85403756449907], [2.38231922530563, 48.85400284235634], [2.382288726573597, 48.8539868041819], [2.382269273752687, 48.85399008531503], [2.382113497778381, 48.8539553638023], [2.381992466189335, 48.85393412833205], [2.381982419215921, 48.853934931722605], [2.381800804393029, 48.85400056078314], [2.381616849176111, 48.85406710020506], [2.381435233432124, 48.854132728702915], [2.381251278644594, 48.85419926756193], [2.381069660616709, 48.85426489549012], [2.380885704895766, 48.854331433779215], [2.380704087320283, 48.85439706025248], [2.380520129292429, 48.85446359886387], [2.380338510795862, 48.854529224774474], [2.380154551834687, 48.85459576281593], [2.379972932417035, 48.85466138816385], [2.379788973885156, 48.854727925642436], [2.379607352183602, 48.854793550420645], [2.379423392718306, 48.85486008732929], [2.379401365660513, 48.854852777389134]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 4, "roussel_fabien": 33.0, "nb_emargement": 1407.0, "nb_procuration": 79.0, "nb_vote_blanc": 9.0, "jadot_yannick": 134.0, "le_pen_marine": 51.0, "nb_exprime": 1391.0, "nb_vote_nul": 7.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1739.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1407, "quartier_bv": "43", "geo_point_2d": [48.85558865592423, 2.3805269904678705], "melenchon_jean_luc": 459.0, "poutou_philippe": 11.0, "macron_emmanuel": 521.0}, "geometry": {"type": "Point", "coordinates": [2.3805269904678705, 48.85558865592423]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5480c2ed7dbaa4107c347f5354c55d347acf2294", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 169, "zemmour_eric": 144.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "7-13", "geo_shape": {"coordinates": [[[2.306029456786891, 48.848003000259574], [2.306098769646218, 48.84805234199855], [2.3062149703420323, 48.84814953097636], [2.306334127361533, 48.848250496305425], [2.306450330312725, 48.848347684146], [2.306569488241296, 48.84844864922267], [2.306685692073167, 48.84854583681734], [2.306804850910917, 48.84864680164164], [2.306921055611617, 48.848743989889705], [2.307040215370413, 48.84884495356239], [2.307156420951913, 48.848942141564564], [2.307275581607745, 48.849043105884114], [2.307391788082109, 48.8491402927411], [2.307510949647043, 48.849241256808305], [2.307627155627605, 48.849338444310796], [2.307746319476264, 48.84943940723421], [2.307862526337543, 48.84953659449077], [2.307981691083484, 48.84963755806107], [2.307997999332544, 48.84963918849467], [2.308036353466648, 48.84961460504362], [2.3081706167143112, 48.84952752019382], [2.308312463780305, 48.84943628621101], [2.308446726107131, 48.8493492010374], [2.308588572204358, 48.84925796671265], [2.308722833610457, 48.84917088121523], [2.308864677376262, 48.849079646540666], [2.30899893923602, 48.84899255982808], [2.309140782033074, 48.84890132481157], [2.309275042960083, 48.848814238674485], [2.309416884788393, 48.84872300331602], [2.309551144794587, 48.84863591685514], [2.30969298565416, 48.84854468115476], [2.309827244739544, 48.84845759437013], [2.309969084642396, 48.848366357428525], [2.310103341444337, 48.84827927031226], [2.310245181729091, 48.84818803393592], [2.31037943761024, 48.84810094649586], [2.310521276926273, 48.84800970977757], [2.310520979557785, 48.84800798128857], [2.310461291570346, 48.847976246859986], [2.310287723491704, 48.84793584623127], [2.31009746198132, 48.8478903369409], [2.309923895833391, 48.84784993578911], [2.309733634954378, 48.84780442591666], [2.309560068012111, 48.84776402422604], [2.309369809126999, 48.8477185137794], [2.309196242752927, 48.8476781115579], [2.309005983136672, 48.84763260052129], [2.308832418681392, 48.847592198676], [2.308642159696521, 48.847546687057324], [2.308468594458848, 48.847506283773974], [2.308278336105369, 48.84746077157322], [2.30810477279842, 48.84742036776685], [2.3081033174717, 48.84741995463718], [2.307908555222338, 48.8473556236061], [2.307728330680776, 48.847285957710376], [2.307533568044421, 48.847221625153956], [2.307353344467437, 48.847151958685], [2.307337112292256, 48.84715317418068], [2.30718568892252, 48.84724735828411], [2.307034331387516, 48.84734946236314], [2.306882906900241, 48.847443646066694], [2.306731549552584, 48.847545750651896], [2.306580123947759, 48.847639933955676], [2.306428764086128, 48.847742037232635], [2.306277337351777, 48.8478362210359], [2.306125976326817, 48.84793832391178], [2.306046393027021, 48.847987821923226], [2.306029456786891, 48.848003000259574]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 13, "roussel_fabien": 7.0, "nb_emargement": 1028.0, "nb_procuration": 75.0, "nb_vote_blanc": 9.0, "jadot_yannick": 51.0, "le_pen_marine": 53.0, "nb_exprime": 1017.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1225.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1028, "quartier_bv": "27", "geo_point_2d": [48.84827825467043, 2.3081037660641712], "melenchon_jean_luc": 63.0, "poutou_philippe": 1.0, "macron_emmanuel": 498.0}, "geometry": {"type": "Point", "coordinates": [2.3081037660641712, 48.84827825467043]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4be108ac3dec66d7379c0fcadaedb10cfecc017e", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 133, "zemmour_eric": 118.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "15-71", "geo_shape": {"coordinates": [[[2.290144113937229, 48.8343640504605], [2.290154207143567, 48.834294458248685], [2.290162279794304, 48.83423878356488], [2.2901709195432423, 48.83417697850368], [2.290178993507956, 48.8341213047203], [2.29018908527071, 48.83405171158307], [2.290197159196622, 48.83399603779221], [2.290205797501812, 48.833934232707016], [2.290213871403923, 48.833878558009886], [2.290223963060876, 48.833808965753924], [2.290232036924185, 48.83375329104935], [2.29024067650995, 48.83369148595627], [2.290248750324968, 48.833635812144045], [2.290249920317978, 48.83363292939255], [2.290251775481732, 48.83363025306642], [2.290254313116434, 48.833627781350856], [2.290325184275452, 48.83357878388044], [2.290396056675734, 48.83352978547469], [2.290466927568192, 48.833480787916], [2.290535475254797, 48.83343411401137], [2.290545835082527, 48.83342706049958], [2.290534633587472, 48.83341998162225], [2.290476495223373, 48.83337339533507], [2.290418356950844, 48.833326809917025], [2.290360218782328, 48.83328022446875], [2.290304107150643, 48.833234892153484], [2.290247996978688, 48.83318955981809], [2.290189859115487, 48.833142974281316], [2.290131721356196, 48.83309638871433], [2.290073583700714, 48.833049803117156], [2.290017472566314, 48.83300447065805], [2.2899593364776782, 48.83295788500963], [2.289901199130818, 48.83291129932287], [2.289843061887865, 48.832864713605986], [2.289840725954959, 48.832861980921265], [2.289839954836574, 48.83285888428657], [2.289840841466025, 48.832855801991755], [2.289840949131663, 48.83284999895492], [2.289843387608178, 48.83284730451176], [2.289902448509165, 48.832802281632894], [2.28996643069431, 48.832753506960415], [2.290025492744987, 48.83270848402511], [2.290089335025658, 48.83265996207788], [2.290148396864201, 48.83261493907812], [2.290212378589188, 48.83256616426591], [2.290271440202948, 48.83252114210096], [2.290335282025259, 48.83247262001431], [2.290394343439131, 48.83242759688558], [2.290458324704169, 48.83237882193366], [2.290517385893262, 48.83233379963973], [2.290581227257217, 48.83228527741369], [2.290640286884206, 48.83224025414792], [2.290704269051309, 48.83219147906432], [2.290763328465864, 48.83214645573401], [2.290827170733579, 48.83209793337667], [2.290886229936008, 48.83205290998196], [2.290950211643062, 48.83200413475862], [2.291009270620624, 48.831959112198646], [2.291073112430089, 48.83191058970191], [2.29113217120776, 48.83186556617822], [2.2911961524547673, 48.83181679081517], [2.29125521102001, 48.83177176722693], [2.291314270833114, 48.831726744515116], [2.291378110711916, 48.83167822183741], [2.291378980559435, 48.83167315900054], [2.291347449110547, 48.83163407051409], [2.291305805710278, 48.83158273823576], [2.291257756658331, 48.83152351012122], [2.291216114784667, 48.83147217871401], [2.291184582229494, 48.831433089270206], [2.29114294050011, 48.831381757833356], [2.2911291577499, 48.831364767847376], [2.291125184955413, 48.831356380989334], [2.291122163317581, 48.831355586917205], [2.288872389234268, 48.82858233975855], [2.288857842658578, 48.82857361921342], [2.288846890640666, 48.82857520714926], [2.288806120183159, 48.828592150956645], [2.288732263395977, 48.82862284466329], [2.288699185297165, 48.82863659101881], [2.288625336605792, 48.82866728110964], [2.2885514796058413, 48.82869797470261], [2.288477630740565, 48.82872866470057], [2.28840377356659, 48.828759358200635], [2.288329924527512, 48.82879004810565], [2.2882560671796153, 48.82882074151287], [2.288182217966533, 48.828851431325006], [2.288108360444816, 48.82888212463934], [2.288034511057831, 48.828912814358596], [2.287960653374473, 48.82894350668067], [2.287886803801303, 48.82897419720638], [2.287812945944024, 48.82900488943558], [2.287739096209235, 48.82903557896905], [2.287665238165649, 48.82906627200465], [2.287591388257058, 48.82909696144528], [2.287517530039549, 48.82912765438797], [2.287443679956953, 48.82915834373573], [2.287369821565623, 48.82918903658551], [2.287295971309124, 48.82921972584033], [2.287222112743869, 48.82925041859727], [2.287148260951329, 48.82928110775107], [2.28707440357429, 48.82931180042323], [2.287000551607844, 48.829342489484155], [2.286926694069084, 48.82937318116408], [2.286852841916532, 48.82940387103144], [2.286778984203852, 48.82943456261848], [2.286705131877394, 48.82946525239295], [2.2866312739907952, 48.829495943887075], [2.286557421502634, 48.82952663266934], [2.286483562067764, 48.82955732496173], [2.286409710767844, 48.82958801365926], [2.28633585115905, 48.82961870585876], [2.286261999685226, 48.82964939446336], [2.286188139902507, 48.829680086569994], [2.286114288254779, 48.829710775081715], [2.286040428298036, 48.82974146709542], [2.285966576476505, 48.82977215551424], [2.2858927163458382, 48.829802847435076], [2.285818864350301, 48.829833535761004], [2.285745004058132, 48.82986422668961], [2.28567115187637, 48.829894915821974], [2.28559729141028, 48.829925606657675], [2.285523439066936, 48.82995629479782], [2.2854495784146, 48.82998698643991], [2.28537572589735, 48.83001767448717], [2.285301865070987, 48.83004836603637], [2.2852280123799362, 48.83007905399074], [2.285154151379648, 48.83010974544704], [2.285080298514589, 48.83014043330853], [2.28500643734048, 48.83017112467193], [2.284932584301516, 48.83020181244049], [2.284858722953481, 48.830232503711], [2.284784868378449, 48.830263191378556], [2.284711008230992, 48.83029388166498], [2.284710713704607, 48.83029400131962], [2.2846368262093693, 48.830323005060755], [2.28456296740969, 48.83035199633635], [2.284489079750056, 48.83038099998469], [2.284415222148215, 48.83040999117566], [2.284341334324086, 48.830438994731225], [2.284267475183402, 48.83046798672062], [2.284193587207325, 48.8304969892841], [2.28411972790231, 48.83052598118074], [2.284045839749488, 48.8305549845508], [2.283971981654666, 48.83058397546353], [2.283898093337347, 48.830612978740774], [2.28382423370367, 48.83064197045196], [2.2837503452344112, 48.830670972737096], [2.283676485436402, 48.830699964355546], [2.283602598164926, 48.830728966556094], [2.283528738202587, 48.8307579580818], [2.283454878158098, 48.83078694956109], [2.28338098927777, 48.83081595161435], [2.283307130431128, 48.83084494300909], [2.283233241374143, 48.83087394586884], [2.2831593810133572, 48.83090293626336], [2.283085491791977, 48.830931939030336], [2.283011631266861, 48.8309609293321], [2.282937741880984, 48.83098993200631], [2.282863882541351, 48.831018923122855], [2.282789993003552, 48.83104792480495], [2.282716132137403, 48.83107691582056], [2.282642242422836, 48.83110591830922], [2.282568382766816, 48.83113490834093], [2.282494492887853, 48.8311639107368], [2.28242063170542, 48.83119290066763], [2.28234674166206, 48.831221902970725], [2.282272880302918, 48.83125089370805], [2.282198990107543, 48.831279895019094], [2.282125129946158, 48.831308885671895], [2.2820512395740042, 48.83133788778941], [2.281977377898583, 48.83136687744199], [2.281903487362033, 48.831395879466726], [2.28190322852442, 48.831395978643016], [2.281823744975774, 48.83142562876583], [2.28174427775709, 48.83145527353735], [2.281664794027634, 48.83148492355295], [2.281585326640669, 48.831514567318024], [2.281505842718006, 48.83154421812571], [2.2814263751501658, 48.831573861783596], [2.281346891059088, 48.831603511584795], [2.281267423298075, 48.83163315603478], [2.281266479650262, 48.83163352090787], [2.281190602344946, 48.83166398822913], [2.281114723588638, 48.8316944554932], [2.281038844743737, 48.83172492270832], [2.280962965822547, 48.83175538897515], [2.280887088162464, 48.831785856100545], [2.280811209051385, 48.831816323168745], [2.280735329851713, 48.831846790187974], [2.280659450575758, 48.83187725625896], [2.280649587825189, 48.83188325874818], [2.280643998935665, 48.83189130964364], [2.280643553934566, 48.83190016044562], [2.28064706355691, 48.83190625595446], [2.280676725706215, 48.8319067851131], [2.286701750231, 48.83278070609335], [2.286704263988864, 48.83278118336464], [2.287993950291822, 48.83308687177814], [2.287998106664408, 48.833110915267575], [2.28645427923115, 48.83376672460587], [2.286453409311551, 48.8337738451725], [2.287636345121027, 48.834474050662486], [2.287645051697393, 48.83447357278485], [2.287652558484608, 48.8344731615098], [2.287901905929381, 48.83432887731998], [2.287906387147812, 48.83432715111658], [2.287911521834673, 48.83432665555159], [2.287920960366677, 48.83432694648083], [2.287926003678951, 48.83432775446558], [2.287930222901114, 48.83432974921647], [2.289054055102024, 48.83511419964443], [2.289056969175345, 48.83511540234116], [2.28999230512526, 48.83531422387943], [2.290004682026355, 48.835314050020294], [2.290008288523103, 48.83530912936558], [2.290015253119449, 48.835259311185254], [2.290023327430314, 48.83520363656691], [2.290033419598183, 48.83513404440945], [2.290041493870241, 48.83507836978367], [2.290049568112803, 48.83502269605385], [2.2900582067631188, 48.834960891036], [2.290066280981883, 48.83490521639992], [2.290076373034631, 48.83483562422024], [2.2900844472145883, 48.83477994957669], [2.290093087145502, 48.834718144551], [2.290101161277164, 48.8346624707998], [2.290111253248597, 48.834592877702796], [2.290119327341455, 48.83453720394411], [2.290127965828605, 48.834475398894384], [2.2901360398854163, 48.834419725128754], [2.290144113937229, 48.8343640504605]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 71, "roussel_fabien": 22.0, "nb_emargement": 1325.0, "nb_procuration": 75.0, "nb_vote_blanc": 11.0, "jadot_yannick": 103.0, "le_pen_marine": 67.0, "nb_exprime": 1307.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1657.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1325, "quartier_bv": "57", "geo_point_2d": [48.83170690655409, 2.287351748442682], "melenchon_jean_luc": 264.0, "poutou_philippe": 5.0, "macron_emmanuel": 525.0}, "geometry": {"type": "Point", "coordinates": [2.287351748442682, 48.83170690655409]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1226c5f24798047571a93cef7854fa8a90ad8b4f", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 82.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "2-3", "geo_shape": {"coordinates": [[[2.330722891963308, 48.868164905690875], [2.3307054321156, 48.86816974815358], [2.330641902226221, 48.868201175692654], [2.330463092565571, 48.86828511499749], [2.330323101897267, 48.86835029418295], [2.330183109515576, 48.86841547319318], [2.33000429838006, 48.868499411796385], [2.329982675981912, 48.86849792465476], [2.329841290901335, 48.86860019068905], [2.329711440982194, 48.868696108830335], [2.329570054831232, 48.86879837452591], [2.329440203907065, 48.86889429325504], [2.329310351153193, 48.868990210928054], [2.32916896341657, 48.869092476122674], [2.329039111020731, 48.86918839439118], [2.328897722213698, 48.86929065924699], [2.328767867472776, 48.869386576297096], [2.328626478958519, 48.869488840821866], [2.328496623212622, 48.869584758459766], [2.328355233627943, 48.869687022645806], [2.328225376900042, 48.869782939072984], [2.328083984881728, 48.86988520291259], [2.328088167837108, 48.869917934587434], [2.328133629800614, 48.86993765605531], [2.328222791982444, 48.86995250641928], [2.328418664928099, 48.869985890189376], [2.328613353486431, 48.87001831728736], [2.328809226929851, 48.87005170041635], [2.329003915977276, 48.870084126877146], [2.329199789918453, 48.87011750936502], [2.32939447946654, 48.87014993428932], [2.329590355268677, 48.87018331614372], [2.329785043931149, 48.8702157413225], [2.329980920230927, 48.87024912253576], [2.330175609382467, 48.87028154707737], [2.3303714861799802, 48.87031492764952], [2.330566177195256, 48.870347350662264], [2.330762053127376, 48.87038073058567], [2.330956744620248, 48.870413153860476], [2.331152621049985, 48.87044653314278], [2.331347313031904, 48.870478955780364], [2.33154318995935, 48.87051233442149], [2.331737882430308, 48.870544756421936], [2.331933759866992, 48.87057813352267], [2.332128452826979, 48.8706105548859], [2.332314381004112, 48.870642365849534], [2.332509074440975, 48.870674786591735], [2.332695003068398, 48.87070659786157], [2.33288969563052, 48.87073901707597], [2.333075624719548, 48.8707708277527], [2.333270319110445, 48.87080324725297], [2.333456248672683, 48.87083505643739], [2.333650943540435, 48.870867475316665], [2.333836873564461, 48.870899283907995], [2.334031568909159, 48.87093170216631], [2.334137696711494, 48.870949858528775], [2.33416542691612, 48.87096059173772], [2.334192628699566, 48.870958164638836], [2.334272431398567, 48.87097181713712], [2.334475245345096, 48.87100949869912], [2.334661176379313, 48.871041306005935], [2.3348639895029972, 48.87107898779859], [2.335049921022628, 48.871110794499565], [2.3352527360727002, 48.87114847473944], [2.335438668066262, 48.87118028173388], [2.335624600298464, 48.871212087539256], [2.335827416158636, 48.87124976680199], [2.336013348864666, 48.871281572900806], [2.336216163913445, 48.87131925149492], [2.336402097116328, 48.87135105608859], [2.336604914068537, 48.87138873492849], [2.3367908477568022, 48.87142053891633], [2.336928087762127, 48.87144603470867], [2.336981283981487, 48.8714510086498], [2.337002870200683, 48.87138186550242], [2.3369866376177493, 48.871253730165456], [2.336972068017221, 48.87112862041177], [2.33695583422574, 48.87100048503373], [2.336941264781478, 48.870875374348316], [2.336925031133247, 48.87074723983605], [2.336910461833698, 48.870622129118225], [2.336894228340262, 48.87049399457235], [2.336879659185526, 48.870368883822124], [2.336865090100777, 48.87024377305591], [2.336848856836859, 48.87011563846005], [2.3368342892601293, 48.86999052766897], [2.336818056162245, 48.86986239214031], [2.336803487355762, 48.86973728220856], [2.336787254412564, 48.86960914664634], [2.336772685762236, 48.8694840357829], [2.336756452962374, 48.86935590108641], [2.336741884456849, 48.86923079019054], [2.336725651811567, 48.86910265546053], [2.336711083450946, 48.868977544532285], [2.336694852334976, 48.86884940887702], [2.336694352758528, 48.868847638000716], [2.336636325140629, 48.868718271515974], [2.336579132964616, 48.86858905261256], [2.336521105909553, 48.86845968694098], [2.336463915666316, 48.86833046795987], [2.336405889185425, 48.86820110220214], [2.336348698148821, 48.8680718831282], [2.336290672241997, 48.86794251728442], [2.336233483138241, 48.86781329813276], [2.336175456453984, 48.86768393129602], [2.336118267908346, 48.86755471295837], [2.336060243161392, 48.8674253460431], [2.336003055185418, 48.867296127620236], [2.33594502964947, 48.86716676061132], [2.335887842243259, 48.86703754210316], [2.335860769784214, 48.86701288475083], [2.3358215315786133, 48.86702077190289], [2.3357409914101313, 48.867039525933684], [2.335558324405699, 48.86708024786535], [2.335363500757466, 48.86712561277665], [2.335180833144708, 48.867166335028315], [2.334986007482652, 48.86721169931406], [2.334803339284424, 48.86725242008712], [2.334608514334827, 48.867297783762425], [2.33442584552817, 48.867338504855496], [2.3342310199278993, 48.867383867912785], [2.334048350535794, 48.86742458752731], [2.333853524284858, 48.86746994996665], [2.333670854284221, 48.867510669901144], [2.333660255123128, 48.86750790926318], [2.333623875795858, 48.86752179854487], [2.333441205434001, 48.86756251812696], [2.333263151735777, 48.86760251399454], [2.333080480808917, 48.86764323302312], [2.332902426557755, 48.86768322835118], [2.332724372033286, 48.86772322341287], [2.3325417002735263, 48.86776394071544], [2.332363645184705, 48.8678039361369], [2.332180972859962, 48.86784465288598], [2.332002917229842, 48.86788464686864], [2.331820244328486, 48.86792536396346], [2.331642188145546, 48.86796535740655], [2.331459514679311, 48.86800607394787], [2.331281457943556, 48.86804606685142], [2.331098783923895, 48.86808678193992], [2.33092072662368, 48.86812677520318], [2.330738052039055, 48.86816748973819], [2.330722891963308, 48.868164905690875]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 3, "roussel_fabien": 6.0, "nb_emargement": 666.0, "nb_procuration": 52.0, "nb_vote_blanc": 10.0, "jadot_yannick": 52.0, "le_pen_marine": 35.0, "nb_exprime": 654.0, "nb_vote_nul": 2.0, "arr_bv": "02", "arthaud_nathalie": 0, "nb_inscrit": 875.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 666, "quartier_bv": "05", "geo_point_2d": [48.86930131857675, 2.333435181568944], "melenchon_jean_luc": 116.0, "poutou_philippe": 4.0, "macron_emmanuel": 285.0}, "geometry": {"type": "Point", "coordinates": [2.333435181568944, 48.86930131857675]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2f3bbb8f78e057dc34406f88236655854629f06a", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 44, "zemmour_eric": 67.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-6", "geo_shape": {"coordinates": [[[2.344300024773878, 48.89109332609746], [2.344317263023322, 48.891081787736226], [2.344497565351145, 48.891019989483496], [2.344673684385107, 48.89095754033622], [2.344853985859765, 48.890895741539836], [2.345030104034675, 48.890833292760554], [2.345210403292211, 48.89077149341306], [2.3453865206308, 48.890709043203216], [2.345390256069375, 48.89070709680235], [2.345513017422108, 48.89061600711513], [2.345638248264607, 48.890522743635536], [2.345761008748758, 48.89043165367874], [2.345886238703683, 48.890338389924146], [2.346008998330757, 48.890247298798556], [2.346134227398113, 48.89015403476894], [2.346145070815273, 48.89015101289459], [2.346338604205654, 48.890156945665574], [2.346533020292272, 48.890162204850014], [2.346726552404712, 48.89016813698648], [2.346920969947417, 48.89017339464917], [2.34711450214554, 48.890179326158574], [2.347308919769193, 48.89018458319134], [2.347502452053193, 48.89019051407368], [2.347696869746418, 48.89019577137578], [2.34789040212745, 48.890201700731794], [2.348084818537969, 48.89020695739658], [2.3481075155594953, 48.89020190895053], [2.348113280089998, 48.89019180225167], [2.348101316178479, 48.890045118488636], [2.348087685653655, 48.88990639544392], [2.348091375094615, 48.88987662990516], [2.3480889174886332, 48.889874998640565], [2.348075288405103, 48.889736275580354], [2.348062102675509, 48.889600271774334], [2.348048473735224, 48.889461548676344], [2.348035286781518, 48.88932554482593], [2.348021657984683, 48.88918682169018], [2.3480084711704903, 48.88905081780277], [2.347996338718434, 48.88904245186851], [2.347798056929176, 48.88902821310088], [2.347611742999862, 48.88901371005721], [2.347413461413951, 48.88899947155164], [2.347227147694601, 48.88898496790921], [2.347040834090318, 48.888970463077364], [2.3468425528252093, 48.888956223625904], [2.346656239419629, 48.888941719094554], [2.3464579583804372, 48.88892747810658], [2.346429467996499, 48.888933755476216], [2.346425035883144, 48.88895014846903], [2.346369688672208, 48.88905756394406], [2.346320309195222, 48.88915921851021], [2.346270929525434, 48.88926087304661], [2.346215581666314, 48.889368288419945], [2.346166201593805, 48.889469942893804], [2.34611085329641, 48.88957735819831], [2.34609646841873, 48.8895834049454], [2.345925087159184, 48.88957112932618], [2.345702034932902, 48.889554262462276], [2.345530655225887, 48.88954198628568], [2.345307601877186, 48.889525119578394], [2.345136222370396, 48.88951284193769], [2.344913170638033, 48.88949597450272], [2.344741789956554, 48.889483696289695], [2.344735849445657, 48.88948411614179], [2.344583978773486, 48.889518140098104], [2.344427299561397, 48.88955115727127], [2.344275428480752, 48.8895851817334], [2.344118750235013, 48.88961819850828], [2.344102738067314, 48.889614071032724], [2.344058255805792, 48.88956237698068], [2.34401629929214, 48.88951090628891], [2.343999660747496, 48.88950670522003], [2.343803188847742, 48.88955342961762], [2.343586698887735, 48.889607286221704], [2.343533658653171, 48.88961989986258], [2.343510924753761, 48.88963142688041], [2.343522583751357, 48.88965155474327], [2.343570275372671, 48.88970837834989], [2.343621230676895, 48.88977147642804], [2.343620941163996, 48.88978027023904], [2.343535583965194, 48.88987575668296], [2.343449696503921, 48.8899720630342], [2.343364337324388, 48.89006754843267], [2.343278449218682, 48.89016385554352], [2.343280697077108, 48.89017486121641], [2.343435618634441, 48.89027419490945], [2.343588505722957, 48.89036943700223], [2.343743428457761, 48.890468769380156], [2.343896316669291, 48.890564011962255], [2.34390053232084, 48.89057136545292], [2.343880317837374, 48.89071757653964], [2.343858983114624, 48.89086317172403], [2.343838768401199, 48.89100938276484], [2.343817433431368, 48.89115497880237], [2.343827390454841, 48.89118238629779], [2.34383519515558, 48.89118459373766], [2.344066493500636, 48.89113720304379], [2.344277945138665, 48.89109228338457], [2.344300024773878, 48.89109332609746]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 6, "roussel_fabien": 20.0, "nb_emargement": 1167.0, "nb_procuration": 69.0, "nb_vote_blanc": 8.0, "jadot_yannick": 128.0, "le_pen_marine": 54.0, "nb_exprime": 1155.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 7, "nb_inscrit": 1459.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1167, "quartier_bv": "70", "geo_point_2d": [48.88994350961795, 2.3457116103539577], "melenchon_jean_luc": 405.0, "poutou_philippe": 7.0, "macron_emmanuel": 374.0}, "geometry": {"type": "Point", "coordinates": [2.3457116103539577, 48.88994350961795]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "61cbac526df3b8953dc33d2636b791bfc2c142b2", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 71, "zemmour_eric": 92.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-25", "geo_shape": {"coordinates": [[[2.40219892928073, 48.83710969438446], [2.402244574736275, 48.83709409012188], [2.402328210032866, 48.836987799588954], [2.40241866621421, 48.83687132001127], [2.402502300798369, 48.83676502933544], [2.402592756204104, 48.83664854960287], [2.402676390075841, 48.83654225878413], [2.402766843343634, 48.836425778889925], [2.402850476502959, 48.83631948792829], [2.402905658180169, 48.83624842952396], [2.402927661024323, 48.836238063576566], [2.402930936995515, 48.83621301827829], [2.402966209126863, 48.836167596631476], [2.403007812794517, 48.83611903182197], [2.403039670703315, 48.83607800718422], [2.403061919049621, 48.83606820363894], [2.403068546367015, 48.836045185135305], [2.403127142907268, 48.83596972868206], [2.40321336843292, 48.83585559622679], [2.403303820671578, 48.8357391158618], [2.403390045428919, 48.83562498325566], [2.403480496882904, 48.835508501833715], [2.403566722234256, 48.83539436908351], [2.403657171520778, 48.8352778883965], [2.403743396103833, 48.83516375549537], [2.4038338445953142, 48.83504727465079], [2.403920068410081, 48.83493314159877], [2.404010517479213, 48.83481665970403], [2.404096739163398, 48.834702526494354], [2.404187187427321, 48.834586045341354], [2.404273408343343, 48.834471911980806], [2.404363855812349, 48.83435543067017], [2.404450077322299, 48.834241297165576], [2.404444679785268, 48.83422948771559], [2.404240688531668, 48.8341520096493], [2.404057991547354, 48.83408558169518], [2.403875295018282, 48.83401915435741], [2.4036713054443393, 48.83394167440614], [2.403626818282508, 48.833925498765325], [2.403621882804179, 48.83392095215009], [2.40358119566453, 48.83391283396229], [2.403442986019981, 48.83386258070676], [2.403284306235521, 48.83380566789523], [2.403101611683791, 48.83373923845971], [2.402942932647492, 48.833682325189024], [2.402784253957682, 48.833625411704915], [2.402601560674931, 48.83355898149498], [2.402442882733282, 48.83350206755173], [2.402260188955472, 48.83343563680621], [2.402240607723051, 48.833407654123164], [2.402206810348401, 48.83340275094929], [2.402073108718716, 48.83349654837385], [2.402015489876763, 48.83355718961837], [2.402011600037993, 48.83356173804698], [2.402011516748104, 48.83357861781731], [2.401957339356856, 48.83368031157209], [2.401884863033393, 48.83381666885367], [2.401830685147657, 48.83391836252947], [2.401758209524198, 48.83405471971214], [2.401704031143969, 48.83415641330893], [2.401691172535869, 48.83416242329787], [2.401478209970835, 48.83416235251696], [2.4012716722846, 48.834159545273316], [2.401259758154251, 48.834163857446214], [2.401142769940647, 48.83429063801109], [2.401037219698631, 48.83439356162132], [2.400931669029371, 48.834496486028264], [2.400814679281748, 48.83462326533523], [2.4007816439081973, 48.83465547876071], [2.400748318286822, 48.83467359228453], [2.40075472374081, 48.834687604097674], [2.400682207459378, 48.83475831484325], [2.400601567298291, 48.834837552175685], [2.400496014880167, 48.834940475258065], [2.400415372791949, 48.83501971244523], [2.400415039137146, 48.835020057027926], [2.4004094844231982, 48.83504188193516], [2.400427184988326, 48.83504951363207], [2.400533862335697, 48.835161428283534], [2.400637568918869, 48.83527143837627], [2.400744247182435, 48.83538335191859], [2.400847953288812, 48.83549336180027], [2.4009546324479, 48.83560527603205], [2.401058339439802, 48.83571528570952], [2.401165019504762, 48.83582719973145], [2.4012687273822, 48.835937209204666], [2.401375408363371, 48.83604912211745], [2.401479118488687, 48.836159131393266], [2.401582827689416, 48.83626914056152], [2.401689510013961, 48.83638105406025], [2.401793220100251, 48.83649106302429], [2.401899903341023, 48.83660297541388], [2.4020036143128802, 48.836712984173616], [2.40211029844925, 48.836824897252654], [2.402112266963424, 48.83682847486381], [2.402127946566972, 48.836921508656935], [2.402151463707539, 48.837035608707836], [2.402159877521826, 48.83708553749635], [2.40219892928073, 48.83710969438446]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 25, "roussel_fabien": 24.0, "nb_emargement": 1215.0, "nb_procuration": 53.0, "nb_vote_blanc": 18.0, "jadot_yannick": 101.0, "le_pen_marine": 61.0, "nb_exprime": 1195.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1567.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1215, "quartier_bv": "46", "geo_point_2d": [48.83502643350995, 2.402379322266274], "melenchon_jean_luc": 402.0, "poutou_philippe": 9.0, "macron_emmanuel": 380.0}, "geometry": {"type": "Point", "coordinates": [2.402379322266274, 48.83502643350995]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "625eb2456887a4b068aa1595a897522933d0239f", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 41, "zemmour_eric": 76.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-18", "geo_shape": {"coordinates": [[[2.367076939997184, 48.86170248649804], [2.36715925225117, 48.86171777808666], [2.36734313803437, 48.86173929588895], [2.367541240792686, 48.86176193088418], [2.367552232563146, 48.86177270827305], [2.367501875000609, 48.861925106034455], [2.367452120073547, 48.86207421083995], [2.367460306069243, 48.862084477864656], [2.367651416075364, 48.862135652398834], [2.367841459656204, 48.86218633714262], [2.368032570410358, 48.862237511063434], [2.368222614744365, 48.86228819429802], [2.368413726235641, 48.86233936850478], [2.368603771312102, 48.86239005112944], [2.368794883551306, 48.862441224722794], [2.368984929370114, 48.86249190673754], [2.369176042357445, 48.86254307971756], [2.3693660889185972, 48.862593761122376], [2.36955720266473, 48.86264493258972], [2.369747249957337, 48.862695614283865], [2.3699383644515812, 48.862746785137844], [2.370128412497301, 48.862797465322785], [2.370319527728677, 48.8628486364627], [2.3705095765168283, 48.86289931603768], [2.370700692496212, 48.86295048656417], [2.370890742026586, 48.863001165529234], [2.371081858753972, 48.863052335442354], [2.371271909026768, 48.86310301379748], [2.37129255266552, 48.86310960561921], [2.371308119138107, 48.86309978831333], [2.3714256645649052, 48.86299754775409], [2.3715510671007882, 48.86288779114195], [2.371552671486467, 48.86288598109274], [2.371624438197422, 48.862778519352474], [2.3717128817807662, 48.86264507851318], [2.371784649203275, 48.86253761576135], [2.371873091967407, 48.8624041747746], [2.3719448573537463, 48.86229671279545], [2.372033299298475, 48.86216327166134], [2.372105065396368, 48.862055808670625], [2.372193506510968, 48.86192236828838], [2.372265270583563, 48.86181490517113], [2.37227731594133, 48.86180042864038], [2.372270849657694, 48.861792954440894], [2.372119889967877, 48.86175237818495], [2.371945225989561, 48.861705655321785], [2.371755365740015, 48.861654621906105], [2.371580702416237, 48.86160789850682], [2.371390842880105, 48.86155686450841], [2.37121618021097, 48.861510140572975], [2.371026321377196, 48.861459106891026], [2.370851660736555, 48.861412381527316], [2.370849030751235, 48.8614118712622], [2.370663533278392, 48.86138891411155], [2.370477853918075, 48.86136511752515], [2.370292358138242, 48.861342159805396], [2.370106679114194, 48.861318362642116], [2.370101724286217, 48.861317020819826], [2.369957486195755, 48.86125366977331], [2.369814409049179, 48.861190829193944], [2.369670170294457, 48.8611274777868], [2.36952709384098, 48.86106463685679], [2.369384016369567, 48.86100179574497], [2.369239780024503, 48.86093844381547], [2.369096704609268, 48.860875602360196], [2.36895246759995, 48.860812250070005], [2.368938592485071, 48.86080477168708], [2.36892487719222, 48.860807842577074], [2.368764046832846, 48.860797150107146], [2.368530005720973, 48.8607811139373], [2.368369175525049, 48.86077042093642], [2.368135134654791, 48.860754383993914], [2.367974304622528, 48.86074369046213], [2.367969541008792, 48.86074277495098], [2.367836253931817, 48.860698494009974], [2.36770355258395, 48.860654037941735], [2.367570265960058, 48.860609756700946], [2.367437565065169, 48.8605653003342], [2.367351927687237, 48.86054358618729], [2.367344633750934, 48.86055180902495], [2.367328483703075, 48.86062034648402], [2.367296026749152, 48.860759776841796], [2.367264620179562, 48.86089306299784], [2.367251420165402, 48.860949765338454], [2.3672382770002622, 48.860968228673435], [2.367247773155155, 48.86099147392203], [2.367228515864299, 48.86107420098459], [2.367194963825492, 48.86120802074596], [2.367162504796066, 48.86134745008716], [2.3671289524116332, 48.861481269797046], [2.367096494387376, 48.861620699992464], [2.367078277695927, 48.86169335442216], [2.367076939997184, 48.86170248649804]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 18, "roussel_fabien": 25.0, "nb_emargement": 1309.0, "nb_procuration": 100.0, "nb_vote_blanc": 9.0, "jadot_yannick": 112.0, "le_pen_marine": 49.0, "nb_exprime": 1300.0, "nb_vote_nul": 0.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1589.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1309, "quartier_bv": "42", "geo_point_2d": [48.86183834308786, 2.369565277884946], "melenchon_jean_luc": 432.0, "poutou_philippe": 9.0, "macron_emmanuel": 494.0}, "geometry": {"type": "Point", "coordinates": [2.369565277884946, 48.86183834308786]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "463683b3170a966c16517921df6eab75db3f0c1b", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 107, "zemmour_eric": 97.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-81", "geo_shape": {"coordinates": [[[2.277588554388263, 48.842545396349735], [2.2776009403014, 48.84255895449911], [2.277576561175682, 48.84269234301206], [2.277551765266958, 48.84282757809188], [2.277527385889835, 48.8429609665627], [2.277502591088213, 48.84309620160802], [2.277478211459584, 48.8432295900367], [2.2774534164024702, 48.843364825039195], [2.277429036522332, 48.843498213425725], [2.277404239847411, 48.8436334483773], [2.277379859715756, 48.84376683672168], [2.277355064147946, 48.843902071638745], [2.277375873470748, 48.843910753033995], [2.2775358168501763, 48.84384400018326], [2.277690510257178, 48.84377995939323], [2.277850454207205, 48.843713205222926], [2.278005146839375, 48.843649164018544], [2.278165088622501, 48.84358240941154], [2.278319780479841, 48.843518367792804], [2.278338408266309, 48.84352104786423], [2.278441004905864, 48.843624116548845], [2.278544370665095, 48.843727957832854], [2.278564146400567, 48.84373010606912], [2.278585728801697, 48.84371897612296], [2.278607204159886, 48.84370790038886], [2.278626915386984, 48.843709983471264], [2.2787428959497458, 48.843824316228705], [2.278853158450616, 48.84393291509088], [2.278969140005796, 48.84404724760617], [2.279079403449741, 48.84415584623813], [2.279189667353203, 48.84426444475789], [2.279305650384381, 48.84437877691292], [2.279415915230932, 48.84448737520243], [2.279531899266989, 48.844601706215975], [2.279529079391982, 48.84462510967646], [2.279550210845085, 48.84463182660552], [2.279771781828571, 48.84465908952277], [2.280020321469042, 48.844692818004674], [2.280030877237909, 48.84469137688904], [2.280189696705411, 48.84461801781455], [2.2803660124367973, 48.844537116449054], [2.280524830962483, 48.84446375691952], [2.280701145639357, 48.844382855948254], [2.280859961873111, 48.84430949505616], [2.281036275507895, 48.84422859357974], [2.281195092149963, 48.84415523314018], [2.28137140474266, 48.84407433115867], [2.281530220455322, 48.84400096936469], [2.281706532005932, 48.84392006687815], [2.281819513927236, 48.8438678767269], [2.281826985348759, 48.843860443331806], [2.281801072230535, 48.84383743301592], [2.281706270287772, 48.84372837391799], [2.28161357125932, 48.84362178443506], [2.281520872597738, 48.84351519576941], [2.2814260732022458, 48.84340613552679], [2.281333373945173, 48.84329954668709], [2.281238575334378, 48.843190486274814], [2.281145878206713, 48.84308389727739], [2.281051079018007, 48.842974836687304], [2.280958382657443, 48.84286824752402], [2.280863585615711, 48.842759186772426], [2.280770888659647, 48.84265259743507], [2.280676092402585, 48.84254353651385], [2.2806781407931043, 48.84253264487407], [2.280665104796002, 48.84252387677867], [2.280571621116473, 48.84242202400578], [2.280478579163668, 48.84231751436876], [2.2803850962312042, 48.84221566053196], [2.280292056383281, 48.84211115073876], [2.280198572810571, 48.842009297628486], [2.280105533717462, 48.841904786771615], [2.280012052241859, 48.841802933504965], [2.2799190138910372, 48.84169842248366], [2.279890201677001, 48.841685776578075], [2.2798880872547063, 48.84168585648501], [2.279781057320454, 48.84176721043708], [2.279680894722855, 48.84183739589018], [2.279573864153905, 48.841918749645814], [2.279473700986075, 48.84198893491589], [2.279469349348041, 48.84199097725657], [2.279284584871591, 48.84204556223527], [2.279090395410754, 48.842100128803345], [2.278905630150488, 48.84215471319141], [2.278711439886229, 48.84220927913899], [2.278526673842149, 48.84226386293643], [2.278332482774372, 48.842318428263546], [2.278147715946582, 48.84237301147037], [2.277953524062934, 48.84242757707627], [2.277946758709405, 48.8424399826224], [2.278029150717545, 48.842545131481145], [2.278110030669649, 48.84264889780911], [2.278192424712291, 48.84275404564464], [2.278273305313665, 48.84285781184283], [2.278266255777254, 48.84287027414668], [2.278149427962184, 48.842901159606754], [2.278089473285929, 48.84292011717563], [2.278072477365934, 48.84291611314552], [2.277984423072983, 48.84281077369076], [2.277898585385515, 48.842705875639005], [2.2778105318116753, 48.84260053513709], [2.277724696182922, 48.84249563694904], [2.277705356565783, 48.84249233820958], [2.277645052591213, 48.8425178408648], [2.277615074661725, 48.84253100919054], [2.277588554388263, 48.842545396349735]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 81, "roussel_fabien": 18.0, "nb_emargement": 1181.0, "nb_procuration": 41.0, "nb_vote_blanc": 11.0, "jadot_yannick": 92.0, "le_pen_marine": 64.0, "nb_exprime": 1169.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1477.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1182, "quartier_bv": "60", "geo_point_2d": [48.84326325186045, 2.279593969952727], "melenchon_jean_luc": 232.0, "poutou_philippe": 2.0, "macron_emmanuel": 503.0}, "geometry": {"type": "Point", "coordinates": [2.279593969952727, 48.84326325186045]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6ab16cb60cf7e71fb0576efadf616635ca7bd9cc", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 31, "zemmour_eric": 115.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-21", "geo_shape": {"coordinates": [[[2.394378191850599, 48.88737504388514], [2.394372518142908, 48.88737415633476], [2.394304490843205, 48.88729422580311], [2.394226743693939, 48.88720287411893], [2.3941203668464333, 48.88707788044132], [2.39404262169639, 48.886986529525736], [2.394040934236486, 48.886981302216505], [2.394057230091525, 48.88686474882793], [2.394072971353727, 48.88674733106732], [2.394089265700184, 48.886630777642694], [2.394105006819526, 48.88651335985287], [2.394121302384715, 48.886396806405926], [2.394137043360991, 48.886279388586914], [2.394132519999664, 48.88626156989033], [2.394118775425757, 48.88625885902786], [2.39399610408574, 48.886281553172516], [2.393894687983164, 48.88630149494204], [2.393889248574692, 48.886301811847794], [2.393783487700488, 48.886293868697216], [2.393687673744788, 48.886285336404235], [2.393682490747689, 48.88628553319041], [2.393583837561549, 48.886302063166085], [2.393488427177472, 48.88631683871956], [2.3934786966127453, 48.88631594856169], [2.393406091444936, 48.8862893951566], [2.393343942541402, 48.88626465556085], [2.393338671015761, 48.88626343814737], [2.393136618821789, 48.886245942220505], [2.392936851062225, 48.88622902230917], [2.392734799136799, 48.886211525703736], [2.392535031650322, 48.88619460422218], [2.392332979993456, 48.886177106938106], [2.392133212759096, 48.88616018568494], [2.391933444301527, 48.88614326319201], [2.391731393046018, 48.88612576489193], [2.39153162620411, 48.88610884263427], [2.391329575217183, 48.88609134365561], [2.391129808637905, 48.88607442072703], [2.390927757919569, 48.88605692106978], [2.390727991613452, 48.886039996571], [2.390525941163722, 48.88602249623509], [2.390326175109735, 48.88600557196469], [2.390124124928616, 48.88598807095021], [2.390110650410565, 48.8859923658342], [2.390080435407997, 48.88602597973228], [2.390035342880231, 48.8860756211222], [2.390033128865637, 48.88608802410797], [2.39004718550137, 48.88609608800707], [2.390150654397276, 48.88618612474621], [2.390252773366227, 48.88627326858288], [2.390356242969655, 48.886363305129876], [2.39045836261969, 48.88645044967647], [2.390560482611419, 48.886537594129], [2.390663951918972, 48.88662762948226], [2.390666483056668, 48.88663473082902], [2.390626995593671, 48.88677257237878], [2.390587534065685, 48.88690841303761], [2.390548046186164, 48.88704625452699], [2.390508585597966, 48.88718209603217], [2.390469095938349, 48.88731993745426], [2.390429634947322, 48.887455778000295], [2.390390172386832, 48.88759161850961], [2.390350683466774, 48.887729459848174], [2.390311220492813, 48.887865300297584], [2.390271731156209, 48.888003141575794], [2.390249817966951, 48.88803847047384], [2.390267627423552, 48.88804601834392], [2.390405074599585, 48.88808198239493], [2.390583528017528, 48.88812755021483], [2.390770256672891, 48.88817640912036], [2.390948712097808, 48.88822197639903], [2.391135441434435, 48.888270834730875], [2.391313896138831, 48.88831640145445], [2.391500627520315, 48.88836525921952], [2.39167908286788, 48.88841082539492], [2.391865813567021, 48.88845968257942], [2.392044270921454, 48.888505248213576], [2.392231002301846, 48.888554104824344], [2.392409458935737, 48.88859966990339], [2.392596190997376, 48.888648525940475], [2.392774649638029, 48.88869409047824], [2.392953107237878, 48.88873965384199], [2.393139840301112, 48.88878850992432], [2.393318299907816, 48.888834072746754], [2.393505033652292, 48.88888292825535], [2.393683492538424, 48.888928490522765], [2.393870228327752, 48.88897734546455], [2.394048687857021, 48.88902290718375], [2.394235422963968, 48.88907176154494], [2.394413884500089, 48.88911732272281], [2.394600620288266, 48.88916617651027], [2.394779081103795, 48.88921173713309], [2.394909381366237, 48.88924582520612], [2.394930697628681, 48.88925177760786], [2.394968417356803, 48.88920539148615], [2.395004376042312, 48.88911724908254], [2.395039774170273, 48.88903203471635], [2.395075732625725, 48.88894389137813], [2.395111131882774, 48.88885867698427], [2.3951114304344943, 48.88885493012246], [2.395076642494987, 48.88871050237883], [2.39504024073551, 48.88856672025816], [2.395005453186007, 48.88842229245592], [2.394969051824582, 48.88827851027587], [2.394934264665076, 48.88813408241504], [2.394897862338006, 48.887990300168724], [2.394896290539152, 48.887987314571205], [2.3948116197520433, 48.88788768066497], [2.39470523873794, 48.88776268757801], [2.394620568681636, 48.88766305351626], [2.394514188585031, 48.887538060234014], [2.39442951789585, 48.88743842600992], [2.394391167423372, 48.88739336395819], [2.394378191850599, 48.88737504388514]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 21, "roussel_fabien": 23.0, "nb_emargement": 1228.0, "nb_procuration": 69.0, "nb_vote_blanc": 9.0, "jadot_yannick": 72.0, "le_pen_marine": 43.0, "nb_exprime": 1218.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1758.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1229, "quartier_bv": "75", "geo_point_2d": [48.8875141175041, 2.3926420122494827], "melenchon_jean_luc": 599.0, "poutou_philippe": 9.0, "macron_emmanuel": 269.0}, "geometry": {"type": "Point", "coordinates": [2.3926420122494827, 48.8875141175041]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "39745c2f22db066071a343355fb001585daa1a91", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 89, "zemmour_eric": 100.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-44", "geo_shape": {"coordinates": [[[2.310069360648848, 48.83636823686741], [2.310069951841294, 48.836368243874894], [2.3101183034869113, 48.83634087967425], [2.310270239319852, 48.83625561857205], [2.310421489746217, 48.836170019654894], [2.310573423222905, 48.836084758146725], [2.310724672655622, 48.83599915883315], [2.310876606488816, 48.83591389783395], [2.311027854939677, 48.835828297224616], [2.3111797864166412, 48.83574303581952], [2.311331033862081, 48.83565743571305], [2.311482965719327, 48.83557217301836], [2.311634212171133, 48.83548657251546], [2.311786143034365, 48.83540130942268], [2.311937388492542, 48.83531570852334], [2.312089316999673, 48.8352304450246], [2.312240561464229, 48.835144843728855], [2.312392490327894, 48.83505958073912], [2.312543733810595, 48.834973978147666], [2.3126949767848, 48.8348883762577], [2.312846902807266, 48.83480311176414], [2.312890283600748, 48.83477880091292], [2.31288767640905, 48.834764923006844], [2.312900916110049, 48.83475250318109], [2.312866875872325, 48.83474962210407], [2.31274009021462, 48.83464452148022], [2.312612864348301, 48.83454102176094], [2.312486078335959, 48.83443592173969], [2.312358853494963, 48.834332420831664], [2.312232069864388, 48.834227320529415], [2.312104846024977, 48.83412382023119], [2.311978063425748, 48.834018718740836], [2.311850840599778, 48.83391521815318], [2.31172405902002, 48.833810116373975], [2.311596835845222, 48.833706615489014], [2.311470055273051, 48.83360151432032], [2.311342834485813, 48.833498012254395], [2.311216054933091, 48.8333929107969], [2.311088835159267, 48.83328940844156], [2.310961615878747, 48.83318590684065], [2.310834837853679, 48.83308080494976], [2.310793901456739, 48.83304793347722], [2.310733414124595, 48.833069177086976], [2.310551697997144, 48.833129645136545], [2.310357879821814, 48.833194650623], [2.310176162821372, 48.83325511809526], [2.309982343711133, 48.83332012296589], [2.309800625837699, 48.833380589860845], [2.309606805792756, 48.833445594115645], [2.309425087046334, 48.833506060433265], [2.309231266078401, 48.83357106317291], [2.309224057296043, 48.833580777047935], [2.309239716144439, 48.833634635650355], [2.30926692835846, 48.8337016009903], [2.309260717569692, 48.8337116677882], [2.309164759492329, 48.833749215552], [2.309048727213179, 48.833865078057485], [2.308946359974942, 48.83397159935561], [2.3088303267272883, 48.834087460726906], [2.308727959968325, 48.83419398182482], [2.308611925728311, 48.834309843860524], [2.30850955672407, 48.8344163647425], [2.308506555752849, 48.834417471609534], [2.308487299498446, 48.83443374956065], [2.308442522290393, 48.83447949001831], [2.3084432308416423, 48.83448235592069], [2.308542704294612, 48.83449729131177], [2.308634894931998, 48.834608654885656], [2.308725271108857, 48.83471818306064], [2.308817462526835, 48.834829546471845], [2.3089078394584472, 48.834939075386636], [2.309000031657126, 48.83505043863514], [2.309090408004956, 48.83515996648315], [2.309182602346641, 48.83527132957679], [2.3092729794491422, 48.83538085816455], [2.309292387384033, 48.835384088364194], [2.30934071167115, 48.83536327532761], [2.309390330246047, 48.83534204613986], [2.309409827230176, 48.83534544411806], [2.30950237172134, 48.835462949877005], [2.309590723524197, 48.835574362385], [2.309683268829563, 48.835691867979904], [2.309771620056662, 48.83580327942435], [2.309859973023751, 48.83591469080028], [2.309952519528389, 48.83603219705046], [2.309953730290491, 48.8360382999777], [2.309934705403335, 48.83609472023647], [2.309915513735183, 48.83615354714554], [2.309916867685157, 48.83615974263454], [2.309979941914495, 48.836236178071], [2.31004156466552, 48.83631287220879], [2.310069360648848, 48.83636823686741]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 44, "roussel_fabien": 19.0, "nb_emargement": 1246.0, "nb_procuration": 54.0, "nb_vote_blanc": 9.0, "jadot_yannick": 87.0, "le_pen_marine": 89.0, "nb_exprime": 1228.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1576.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1246, "quartier_bv": "57", "geo_point_2d": [48.83460502152915, 2.3105550294022508], "melenchon_jean_luc": 329.0, "poutou_philippe": 6.0, "macron_emmanuel": 461.0}, "geometry": {"type": "Point", "coordinates": [2.3105550294022508, 48.83460502152915]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ec5c7127f3ee8decf8df9fcd362305b89737293e", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 58, "zemmour_eric": 58.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "11-19", "geo_shape": {"coordinates": [[[2.372778343143363, 48.86192665438769], [2.372783250733758, 48.86193170384946], [2.372923727650576, 48.861968579284195], [2.373037644659418, 48.861997243790476], [2.37305161585561, 48.86199568017534], [2.373206354159547, 48.86190708863449], [2.37336084608173, 48.861818538767686], [2.373515583333614, 48.86172994681283], [2.373670074205036, 48.8616413965327], [2.373824810404975, 48.86155280416388], [2.373979300225538, 48.86146425347043], [2.374134035373538, 48.86137566068763], [2.374288524143149, 48.86128710958083], [2.374443258239316, 48.86119851638409], [2.374597745958081, 48.861109964863964], [2.374752479002321, 48.86102137125323], [2.374906965670246, 48.860932819319764], [2.374924908817715, 48.860928837207936], [2.374929313551145, 48.86091991352498], [2.375067451614525, 48.86083792844609], [2.37520585169448, 48.860756449104834], [2.375343990252265, 48.860674463701756], [2.375482388113221, 48.86059298312225], [2.375620525791658, 48.86051099828718], [2.375758924148981, 48.860429517383004], [2.375897059595893, 48.860347532209566], [2.376035457086413, 48.860266050973564], [2.376173591675645, 48.860184064569516], [2.376311988288702, 48.86010258390104], [2.376450122009284, 48.86002059716572], [2.376588517766518, 48.8599391152661], [2.376726650607792, 48.85985712909884], [2.376865045498239, 48.85977564686741], [2.376876835566207, 48.85975889228137], [2.376861837874361, 48.85974742306611], [2.376681801384534, 48.85969130425589], [2.376517561849989, 48.85964014013298], [2.376353322638015, 48.85958897578238], [2.37617328724333, 48.859532856199124], [2.376009047344688, 48.85948169136394], [2.375829012702423, 48.859425570358], [2.375828665110114, 48.85942545882474], [2.3757885737397793, 48.85941203740586], [2.375774491726236, 48.85940425834825], [2.375762181113245, 48.85940471215575], [2.375636276003164, 48.85936256485698], [2.375464898840001, 48.8593057393067], [2.375298903090036, 48.85925017010653], [2.375127526664431, 48.859193344067336], [2.37496153163238, 48.85913777439358], [2.3747901559445372, 48.85908094786551], [2.3746241616304022, 48.859025377718154], [2.374452786669423, 48.858968551600476], [2.374286793084004, 48.85891298008021], [2.374115418860582, 48.85885615347367], [2.373949424630265, 48.858800581472735], [2.373778052507424, 48.85874375438437], [2.373612058984123, 48.85868818280913], [2.373440687609855, 48.858631354332616], [2.373274694804479, 48.85857578228378], [2.373103324167773, 48.85851895331843], [2.372948368092094, 48.85846779866303], [2.372776998155762, 48.858410970124126], [2.37262204272152, 48.8583598150412], [2.372450673496279, 48.858302986029436], [2.372295718703676, 48.85825183051897], [2.372112501758254, 48.85819048799268], [2.371957547632245, 48.85813933203918], [2.371920229338548, 48.85814059311936], [2.371897319223047, 48.85815133159965], [2.371980379342353, 48.85826547211089], [2.372058347640977, 48.8583760028299], [2.372141407119131, 48.85849014229982], [2.372219376095567, 48.858600672891505], [2.372302437636727, 48.858714813133], [2.372380407290986, 48.858825343597424], [2.37246346955392, 48.85893948280472], [2.372541439886009, 48.859050013141825], [2.372624502849061, 48.85916415311354], [2.372702473858989, 48.85927468332335], [2.372703601130883, 48.859277167833085], [2.372731857479687, 48.85940373446625], [2.372759830186542, 48.859529304913195], [2.372788086797855, 48.859655872403586], [2.372816061138548, 48.85978144281601], [2.372844318034031, 48.85990800936505], [2.372872291271848, 48.860033580627864], [2.372900548440676, 48.8601601471349], [2.372928521960215, 48.86028571745677], [2.372956779391566, 48.860412284821], [2.372984754544976, 48.860537855108284], [2.373012728470264, 48.8606634253677], [2.373040986311035, 48.86078999266896], [2.373068961870208, 48.86091556289382], [2.3730972186321813, 48.86104212924658], [2.373125194451452, 48.86116770032903], [2.373153452849769, 48.861294266646844], [2.373181427587895, 48.86141983678115], [2.373209686248657, 48.86154640395622], [2.373206972112551, 48.86155322566399], [2.373102203531023, 48.86164236319204], [2.372997472404373, 48.86173209618574], [2.372892703104608, 48.86182123351601], [2.372787972631385, 48.86191096541978], [2.372778343143363, 48.86192665438769]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 19, "roussel_fabien": 26.0, "nb_emargement": 1224.0, "nb_procuration": 73.0, "nb_vote_blanc": 13.0, "jadot_yannick": 134.0, "le_pen_marine": 38.0, "nb_exprime": 1204.0, "nb_vote_nul": 7.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1517.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1224, "quartier_bv": "42", "geo_point_2d": [48.8599623028594, 2.374136595434677], "melenchon_jean_luc": 400.0, "poutou_philippe": 6.0, "macron_emmanuel": 428.0}, "geometry": {"type": "Point", "coordinates": [2.374136595434677, 48.8599623028594]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "366da77a69e2f69895caacf35f459443f6823a52", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 79, "zemmour_eric": 97.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-94", "geo_shape": {"coordinates": [[[2.283943524842908, 48.844875503086065], [2.2838908810805, 48.84489075512799], [2.283772533274607, 48.844942229745804], [2.283567343775805, 48.845048062711506], [2.283403520398329, 48.84513467990165], [2.283403497062226, 48.84513469235302], [2.2832263957332, 48.84522644699149], [2.283062571228337, 48.84531306370095], [2.282885468680574, 48.84540481871935], [2.282721643048395, 48.84549143494808], [2.282544539306635, 48.84558318854781], [2.282380711172287, 48.84566980518694], [2.282379298738389, 48.84567064931441], [2.282234925867687, 48.84576984677419], [2.282110664434059, 48.84585674358327], [2.281966290536511, 48.84595594070237], [2.281842028211255, 48.84604283721794], [2.28171776545922, 48.846129734496955], [2.2815733914200482, 48.84622893112577], [2.281571528949508, 48.84623978249013], [2.281617514244779, 48.84629045013152], [2.281640687424567, 48.84631252572457], [2.281649205361278, 48.84632064148917], [2.281659409482341, 48.846324960359475], [2.28186368440414, 48.84633974287483], [2.2820688729433503, 48.84635290536805], [2.282273146728342, 48.84636768717571], [2.282478335480987, 48.84638084896634], [2.282682610854126, 48.84639563008272], [2.282887799820295, 48.84640879117075], [2.282898469269793, 48.846413467073845], [2.282990608884687, 48.846526007498525], [2.283083734506843, 48.84664149107655], [2.2831758749250612, 48.84675403133554], [2.283269001365219, 48.84686951474568], [2.283361141224068, 48.84698205483083], [2.283454269844839, 48.84709753808128], [2.283546410506822, 48.847210078000714], [2.283639539945621, 48.8473255610833], [2.283731681410949, 48.84743810083701], [2.283824811667785, 48.84755358375176], [2.283916953936266, 48.84766612333973], [2.284010083648527, 48.84778160607848], [2.284071881654429, 48.84780151190119], [2.2840920350289178, 48.84779316227815], [2.284140341467708, 48.84776312653792], [2.284291115320627, 48.84767138230076], [2.28443892559028, 48.84757947804445], [2.284589697011273, 48.847487734307], [2.284737507596005, 48.8473958296748], [2.284888277972494, 48.84730408464672], [2.285036086134845, 48.84721218052164], [2.28518685545429, 48.84712043510215], [2.285334663931935, 48.847028530601186], [2.285485432194442, 48.846936784790365], [2.285633238274301, 48.84684487899793], [2.285679836993303, 48.846816523231524], [2.285688528485501, 48.84681371874025], [2.285703679611552, 48.84680282434927], [2.285807848029522, 48.8467394347912], [2.285906687754488, 48.84668124224669], [2.285921818625035, 48.846672516077106], [2.28587566808506, 48.84662741352411], [2.285765950517371, 48.84651973403072], [2.285648662459084, 48.84640608419759], [2.285635132840774, 48.846402279137045], [2.285500540355232, 48.84641727005885], [2.285359731074606, 48.84643167867844], [2.285345698118793, 48.84642711690982], [2.285259906560461, 48.846323903996684], [2.285176423134732, 48.846224209631345], [2.2850906322334312, 48.84612099747731], [2.285007149456548, 48.846021302975686], [2.284923668361634, 48.84592160841505], [2.284837878471267, 48.845818395152456], [2.2847543966626143, 48.84571870044742], [2.284668607429149, 48.84561548794397], [2.284673843306198, 48.845603335530114], [2.284853400673344, 48.84553627209254], [2.285040379699266, 48.84546704029555], [2.285219936125169, 48.84539997629971], [2.285406914162857, 48.84533074482066], [2.285405603484886, 48.84531463202968], [2.285223317766856, 48.84526320190546], [2.285064828829877, 48.84521778837666], [2.285062448079692, 48.84521690985752], [2.284909883459695, 48.84514672248424], [2.2847610932062192, 48.84507806481422], [2.284612304707219, 48.845009406963065], [2.284459739926091, 48.84493921989379], [2.284310952220478, 48.844870561659306], [2.284158389626535, 48.84480037330591], [2.2841431671327, 48.844800212967534], [2.284074443464857, 48.84482972007614], [2.283956095978865, 48.84488119487832], [2.283943524842908, 48.844875503086065]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 94, "roussel_fabien": 19.0, "nb_emargement": 1125.0, "nb_procuration": 73.0, "nb_vote_blanc": 13.0, "jadot_yannick": 50.0, "le_pen_marine": 107.0, "nb_exprime": 1108.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1529.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "60", "geo_point_2d": [48.84621791618217, 2.2839458188282085], "melenchon_jean_luc": 314.0, "poutou_philippe": 7.0, "macron_emmanuel": 387.0}, "geometry": {"type": "Point", "coordinates": [2.2839458188282085, 48.84621791618217]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "17c4324e079319d7d69753c2640609c42d2828ac", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 100, "zemmour_eric": 92.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "4-5", "geo_shape": {"coordinates": [[[2.360507046667604, 48.85056021066022], [2.360503422529474, 48.85057191348652], [2.360506290866548, 48.85066754916522], [2.360508319861463, 48.85080315218703], [2.36051245338859, 48.8509409446781], [2.360514482410185, 48.85107654766647], [2.360514093981119, 48.85107877149372], [2.360491354086836, 48.851171197162884], [2.36043340827373, 48.851327649462156], [2.36041066949046, 48.85142007510256], [2.3604100586453782, 48.85142132194014], [2.360326106337272, 48.85150492232225], [2.360272271065576, 48.85159245286472], [2.360269201664453, 48.8515954807685], [2.360152089271941, 48.85167152541351], [2.360068136135933, 48.85175512649506], [2.360036046855992, 48.851786698477], [2.360072615796194, 48.8518091593797], [2.360145970304764, 48.85190226071538], [2.360258209841616, 48.85204689065511], [2.360331565016435, 48.8521399918571], [2.360326217647938, 48.85215195615519], [2.3602178742809032, 48.85219266532883], [2.360117307339026, 48.85222790654909], [2.36011169129828, 48.8522401041315], [2.360212720143916, 48.85236426237734], [2.360269900693248, 48.85243080552147], [2.360287941292432, 48.852434614508326], [2.360364207242248, 48.85240976568316], [2.360424962012088, 48.852387984334655], [2.3604420461866082, 48.85239021611563], [2.360585083233622, 48.85250642163335], [2.36069859255762, 48.85259907881318], [2.360812103659084, 48.85269173498561], [2.360955142359011, 48.85280794002945], [2.36095565882971, 48.85280838796777], [2.36105965068761, 48.85290588552432], [2.3611526840556483, 48.852991959344216], [2.361256676648544, 48.85308945671343], [2.361349709296086, 48.85317553125793], [2.361442743624676, 48.853261604831424], [2.361546737298425, 48.8533591019249], [2.361548124790682, 48.85336020474015], [2.361619702672197, 48.8534047097974], [2.36170676743818, 48.853463618719346], [2.361709377254903, 48.85346584684797], [2.361791241684351, 48.85356458278022], [2.361898865201358, 48.85369518877644], [2.361980730350066, 48.85379392455866], [2.362088354826716, 48.8539245294582], [2.362170219332099, 48.854023265083164], [2.362252085510526, 48.854122000650634], [2.3623597113448422, 48.85425260526755], [2.362360146909761, 48.85425309593685], [2.36244898180878, 48.85434918751241], [2.362539678775931, 48.854444383284665], [2.36262851296944, 48.85454047470314], [2.362719210597538, 48.8546356703229], [2.362737205887462, 48.8546388032734], [2.362831423265753, 48.854605349087365], [2.362895105199931, 48.85458293547258], [2.362932767983725, 48.854569473945936], [2.36293212319085, 48.854552877471825], [2.363044255161261, 48.85451341279556], [2.363237050805224, 48.854445557567935], [2.363412863781684, 48.854383678707784], [2.363605658465616, 48.85431582287837], [2.363781470566604, 48.85425394346936], [2.363974265664281, 48.85418608614609], [2.364150076889793, 48.85412420618825], [2.364342869653551, 48.85405634915524], [2.364518680003589, 48.85399446864864], [2.36452443920428, 48.85399057805979], [2.364588353960928, 48.85390681636646], [2.364652610598624, 48.853822606772944], [2.3647165263169603, 48.85373884410644], [2.364780782540386, 48.85365463443137], [2.36478897978039, 48.85365007686148], [2.364961775618575, 48.85361531584849], [2.365142107877117, 48.85357920507326], [2.365314901882026, 48.853544443540876], [2.365495233639626, 48.85350833313046], [2.365668028536622, 48.853473571093176], [2.365821410615433, 48.853442856430014], [2.36584570846116, 48.853437286011754], [2.365838755181359, 48.853420603944365], [2.365764270482957, 48.85330581331276], [2.365691666957772, 48.85319392311318], [2.365619065107057, 48.85308203286549], [2.365544580013804, 48.85296724205496], [2.365536826343123, 48.85296235882536], [2.365369993629926, 48.852921180367105], [2.365202966866697, 48.85287995477682], [2.365036136043825, 48.85283877585722], [2.364869109819827, 48.85279754889857], [2.364702278150992, 48.852756370402496], [2.364535252455274, 48.8527151429748], [2.364368421324969, 48.85267396311091], [2.364201397509324, 48.85263273612063], [2.364193167842773, 48.8526270039808], [2.364137485340157, 48.85250986499835], [2.364081763259559, 48.85239263942806], [2.364026081268788, 48.852275499469805], [2.363970358315696, 48.85215827471496], [2.363914676825893, 48.85204113468017], [2.363858955747752, 48.851923908956714], [2.363803274747726, 48.85180676974467], [2.363747552808066, 48.85168954393741], [2.363738505161638, 48.851683629338574], [2.363542724051201, 48.85164444556895], [2.363348257833871, 48.85160552568775], [2.363152477310425, 48.85156634127686], [2.362958011687034, 48.85152741985941], [2.362951138037277, 48.85152427419463], [2.362803947543067, 48.851397132933684], [2.362652169452773, 48.85126384692871], [2.362651569859221, 48.85126328703434], [2.362638241119477, 48.85124974730053], [2.362634414129394, 48.85124074506064], [2.362617718971213, 48.851237483202205], [2.362448197173726, 48.85118137134295], [2.3622775464670482, 48.85112488628498], [2.362108025391141, 48.85106877483736], [2.361937376784641, 48.85101228929581], [2.361767856441315, 48.85095617736053], [2.361597208572274, 48.85089969132812], [2.361427687609836, 48.85084357799866], [2.3612570404782582, 48.85078709147536], [2.3610875216001, 48.85073097856489], [2.360916875205984, 48.850674491550684], [2.36074735706041, 48.85061837815259], [2.360576710041152, 48.8505618906403], [2.360507046667604, 48.85056021066022]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 5, "roussel_fabien": 12.0, "nb_emargement": 1193.0, "nb_procuration": 90.0, "nb_vote_blanc": 8.0, "jadot_yannick": 121.0, "le_pen_marine": 46.0, "nb_exprime": 1183.0, "nb_vote_nul": 2.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1438.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1193, "quartier_bv": "15", "geo_point_2d": [48.85264330212303, 2.3626300740639143], "melenchon_jean_luc": 247.0, "poutou_philippe": 5.0, "macron_emmanuel": 511.0}, "geometry": {"type": "Point", "coordinates": [2.3626300740639143, 48.85264330212303]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "978ce43853053b761999cef4d694bb5bc4287d49", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 38, "zemmour_eric": 56.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "20-4", "geo_shape": {"coordinates": [[[2.401434135087281, 48.86832123279652], [2.401440358679704, 48.86831917745785], [2.401485740319282, 48.868273051657354], [2.401529444118161, 48.86823092759365], [2.401530287035945, 48.86822993983932], [2.401620140471388, 48.86810708544129], [2.401707955893776, 48.86798882268679], [2.401797808494415, 48.867865968128584], [2.401885624470156, 48.86774770522477], [2.401975476235894, 48.86762485050643], [2.402063290038571, 48.8675065874396], [2.402153140969424, 48.86738373256114], [2.402240953962413, 48.86726546933822], [2.402250386452694, 48.86725616063326], [2.402250344083705, 48.86724654739747], [2.402338156624772, 48.867128284088594], [2.402424395278222, 48.86701302293149], [2.4025122070305143, 48.866894759469965], [2.402598446275415, 48.866779498169926], [2.40268625723894, 48.866661234555714], [2.402772494349027, 48.866545973099164], [2.4028603058869242, 48.866427709339085], [2.402946542225341, 48.866312447732824], [2.403034351611362, 48.86619418381331], [2.403120588541241, 48.86607892206411], [2.403206823726399, 48.86596366023394], [2.403294631933634, 48.86584539608619], [2.403323458593067, 48.86583648885396], [2.403316559163385, 48.86582307948627], [2.403336371706069, 48.865796394142286], [2.403404366884446, 48.865704815243035], [2.403488026198615, 48.865591781490856], [2.403575833140665, 48.865473517097065], [2.403659491701062, 48.86536048410073], [2.403747297864009, 48.86524221955644], [2.403830955680943, 48.86512918641664], [2.403918761064796, 48.86501092172185], [2.404002418148564, 48.864897887539264], [2.404086073495935, 48.864784854179184], [2.404173879083366, 48.86466658926724], [2.404174086627631, 48.86466632049849], [2.404254476268965, 48.864566660117184], [2.404338131900642, 48.864453626553896], [2.404339095155455, 48.864447469069525], [2.404292967183833, 48.864327517515235], [2.404247227376179, 48.86420844741616], [2.404201099817432, 48.86408849669983], [2.404155361802846, 48.86396942564746], [2.404109233304292, 48.863849474863066], [2.404063495699232, 48.86373040464916], [2.404017368997069, 48.86361045291098], [2.403971631811812, 48.863491382636276], [2.403970573971896, 48.86347077706434], [2.403926718192679, 48.863469641316044], [2.403804447039317, 48.86352008875342], [2.403684278407946, 48.86357105736655], [2.403562006771506, 48.86362150545092], [2.403441839032072, 48.86367247382272], [2.403423290270065, 48.86367005566696], [2.403306916855053, 48.86356003112195], [2.403193237611327, 48.863452369863744], [2.40307686516842, 48.86334234507347], [2.402963186875205, 48.86323468357557], [2.402846815404394, 48.863124658539974], [2.402733138071786, 48.86301699590312], [2.402719598978412, 48.86300720285548], [2.402702577525193, 48.86300950745477], [2.402578644286007, 48.863077459140406], [2.402465126684798, 48.863140371528026], [2.402351608809528, 48.86320328380444], [2.402227673288558, 48.863271235107916], [2.402225699972143, 48.86327214617698], [2.402051804947888, 48.863338093131], [2.401870197360735, 48.86340638723721], [2.401696301438392, 48.863472333666735], [2.401514692906932, 48.86354062812446], [2.401340796086498, 48.863606574029454], [2.40115918662105, 48.86367486793947], [2.400985288902525, 48.8637408133199], [2.400832871011054, 48.86379819633828], [2.400658973830871, 48.86386414124405], [2.400506553845752, 48.86392152473296], [2.400490244802651, 48.86392016597344], [2.400439204601779, 48.86388732986487], [2.400388723309227, 48.863856036205206], [2.400372512083383, 48.86385482631078], [2.400240033094652, 48.86390591145894], [2.400118005548022, 48.86395338583104], [2.39999597641593, 48.86400086006987], [2.399863498049586, 48.864051944801275], [2.399856851331176, 48.86406083203281], [2.3998671146156783, 48.864114640695504], [2.3998754615459412, 48.86415364289197], [2.399886039763767, 48.86416130076018], [2.400112694862002, 48.86419439963218], [2.400364545554341, 48.864231465396536], [2.400368600572464, 48.864247950841715], [2.400213336410623, 48.86430953130645], [2.400064831780086, 48.864368376382885], [2.399909565537198, 48.864429956440006], [2.399761061593694, 48.8644888002407], [2.399605794632831, 48.86455037989702], [2.399457288629493, 48.86460922420683], [2.399302022313628, 48.86467080346922], [2.399153515623991, 48.86472964739569], [2.399147833237737, 48.86473409218674], [2.399116697269647, 48.86478625678923], [2.399074303125857, 48.8648580325265], [2.399087890131229, 48.86487027241714], [2.399278644523042, 48.864862072042904], [2.399470877590388, 48.864853894972526], [2.399661633225031, 48.86484569399457], [2.399853866171723, 48.864837516308924], [2.400044620323015, 48.86482931471359], [2.400236853149146, 48.864821136412694], [2.400249707483523, 48.86483440404207], [2.400160410982839, 48.86494283873634], [2.400054734041497, 48.86507013764014], [2.399965436741275, 48.865178571266576], [2.399859758845413, 48.865305869971166], [2.399770459372191, 48.86541430342217], [2.39966478052159, 48.86554160192746], [2.399575481591291, 48.865650036116065], [2.399469801786045, 48.86577733442204], [2.399380502056085, 48.86588576754281], [2.399355427108769, 48.86589458923271], [2.399353050601012, 48.86589924397807], [2.399421154114741, 48.86597672297643], [2.399515691048094, 48.866085308696725], [2.399623784300283, 48.866208280710865], [2.399718320702724, 48.86631686714084], [2.399826414924066, 48.86643983804701], [2.399920953532114, 48.866548424301016], [2.400022879035147, 48.8666658223455], [2.400117417099787, 48.86677440841538], [2.400219343498076, 48.8668918053693], [2.400313883745482, 48.86700039126859], [2.40041581101833, 48.867117788930535], [2.400510350732583, 48.867226373746355], [2.4006048921937593, 48.867334959382994], [2.400706820777052, 48.86745235676156], [2.40072523030774, 48.86747350154175], [2.400726499111429, 48.867487514184205], [2.400742511435205, 48.86749331504479], [2.400818641527348, 48.86758075479836], [2.4008924331343042, 48.867664236495614], [2.400966226340829, 48.86774771814793], [2.401060768335266, 48.867856303366445], [2.40106118767943, 48.86785682348338], [2.401146912133199, 48.867976608914184], [2.401223416121883, 48.86807955391417], [2.4012999204128382, 48.86818249885571], [2.401385647314683, 48.86830228408712], [2.401434135087281, 48.86832123279652]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 4, "roussel_fabien": 23.0, "nb_emargement": 1186.0, "nb_procuration": 61.0, "nb_vote_blanc": 15.0, "jadot_yannick": 127.0, "le_pen_marine": 43.0, "nb_exprime": 1168.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1447.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "79", "geo_point_2d": [48.865342857920005, 2.40176164799081], "melenchon_jean_luc": 526.0, "poutou_philippe": 8.0, "macron_emmanuel": 305.0}, "geometry": {"type": "Point", "coordinates": [2.40176164799081, 48.865342857920005]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1864ae8f78ea95558b57bfa9d0b65287140b9e7d", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 52, "zemmour_eric": 161.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-24", "geo_shape": {"coordinates": [[[2.3912698980077, 48.884338871379626], [2.391246906717861, 48.88433421559065], [2.391108835606557, 48.884278353393604], [2.390948256219567, 48.884214228650805], [2.390781004091626, 48.88414655966745], [2.390620424151027, 48.88408243447037], [2.390453172882893, 48.88401476412168], [2.3902925937524833, 48.88395063847724], [2.390273330175917, 48.883954314846], [2.39018922850641, 48.88406544244196], [2.390111334340295, 48.884172099567806], [2.390027230609781, 48.88428322702103], [2.3899493371602443, 48.884389883128044], [2.389947938299269, 48.88439323767779], [2.389932447619547, 48.8845317168613], [2.38991696724539, 48.884669309343955], [2.389901476401187, 48.88480778848868], [2.389885994499624, 48.88494538092582], [2.389870503490831, 48.88508386003177], [2.38985502278897, 48.88522145243731], [2.389839531615792, 48.885359931504475], [2.389824050749924, 48.88549752387145], [2.389808559412257, 48.88563600289983], [2.3897930770189513, 48.88577359522129], [2.389777585516687, 48.88591207421091], [2.389762104323098, 48.88604966650074], [2.3897589497569323, 48.88606784823959], [2.38976195148508, 48.88607015591467], [2.389908858693441, 48.886082943807], [2.390011952302663, 48.886093353535735], [2.390033128865637, 48.88608802410797], [2.390035342880231, 48.8860756211222], [2.390080435407997, 48.88602597973228], [2.390110650410565, 48.8859923658342], [2.390124124928616, 48.88598807095021], [2.390326175109735, 48.88600557196469], [2.390525941163722, 48.88602249623509], [2.390727991613452, 48.886039996571], [2.390927757919569, 48.88605692106978], [2.391129808637905, 48.88607442072703], [2.391329575217183, 48.88609134365561], [2.39153162620411, 48.88610884263427], [2.391731393046018, 48.88612576489193], [2.391933444301527, 48.88614326319201], [2.392133212759096, 48.88616018568494], [2.392332979993456, 48.886177106938106], [2.392535031650322, 48.88619460422218], [2.392734799136799, 48.886211525703736], [2.392936851062225, 48.88622902230917], [2.393136618821789, 48.886245942220505], [2.393338671015761, 48.88626343814737], [2.393343942541402, 48.88626465556085], [2.393406091444936, 48.8862893951566], [2.3934786966127453, 48.88631594856169], [2.393488427177472, 48.88631683871956], [2.393583837561549, 48.886302063166085], [2.393682490747689, 48.88628553319041], [2.393687673744788, 48.886285336404235], [2.393783487700488, 48.886293868697216], [2.393889248574692, 48.886301811847794], [2.393894687983164, 48.88630149494204], [2.39399610408574, 48.886281553172516], [2.394118775425757, 48.88625885902786], [2.394132519999664, 48.88626156989033], [2.394147807750501, 48.886255653258075], [2.394151079025971, 48.88625532267195], [2.394247886060827, 48.886253396892066], [2.39434606737421, 48.886252319752046], [2.394359473928196, 48.88624352563534], [2.394363504948395, 48.88612276421186], [2.394368098942349, 48.885996041309824], [2.39437212991293, 48.885875280758135], [2.394376723863961, 48.88574855782721], [2.394380754805944, 48.885627796348786], [2.394385348714153, 48.88550107338897], [2.394392221293018, 48.88535582507515], [2.394396816512948, 48.88522910209048], [2.394403687660421, 48.88508385373316], [2.394408282828449, 48.88495713071668], [2.394401576150872, 48.884941900912075], [2.394381146665787, 48.884939823560764], [2.394298344445791, 48.88490198561692], [2.39422457873735, 48.884867834698824], [2.39421885680503, 48.88486631017216], [2.3940327114310023, 48.88484705797059], [2.393846356563452, 48.88482753911726], [2.393660211465733, 48.884808286335904], [2.393473856887129, 48.88478876600287], [2.393287712065726, 48.88476951264172], [2.393101359129016, 48.884749991735184], [2.392915214583936, 48.884730737794186], [2.39272886055153, 48.88471121719952], [2.39254271628278, 48.884691962678765], [2.392356363902864, 48.88467244061131], [2.392170218546953, 48.88465318550386], [2.391983866445448, 48.88463366285592], [2.391978874650275, 48.88463244680031], [2.391811619839909, 48.88456477928236], [2.391641237096783, 48.88449490577492], [2.39147398317741, 48.884427236877634], [2.391303601337233, 48.884357362881], [2.391274419469236, 48.88434555566834], [2.3912698980077, 48.884338871379626]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 24, "roussel_fabien": 12.0, "nb_emargement": 1155.0, "nb_procuration": 32.0, "nb_vote_blanc": 12.0, "jadot_yannick": 56.0, "le_pen_marine": 51.0, "nb_exprime": 1139.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1598.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1154, "quartier_bv": "75", "geo_point_2d": [48.88532872321015, 2.3919819102940316], "melenchon_jean_luc": 473.0, "poutou_philippe": 9.0, "macron_emmanuel": 281.0}, "geometry": {"type": "Point", "coordinates": [2.3919819102940316, 48.88532872321015]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0d1bb69e59dcf1ab77282ee9606980b3d3375dd6", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 54, "zemmour_eric": 44.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-7", "geo_shape": {"coordinates": [[[2.397262833491116, 48.87023104717901], [2.397280596897876, 48.87019571447833], [2.397411051413105, 48.87009311852943], [2.397539221008798, 48.869992134232575], [2.397669674504808, 48.86988953798294], [2.397797843087821, 48.86978855428983], [2.397928295564624, 48.8696859577394], [2.398056463145369, 48.869584973750754], [2.398186914602972, 48.869482376899605], [2.398315081191845, 48.86938139171615], [2.398317449218995, 48.869378673233946], [2.39836935431862, 48.86928386076733], [2.398412977397345, 48.869195427909595], [2.398415176564124, 48.869192692388324], [2.398546299542989, 48.86908137852253], [2.398673446681075, 48.86897431997811], [2.398800593286258, 48.86886726218759], [2.398931714622378, 48.868755947866795], [2.3990588601741463, 48.8686488888815], [2.39918998040871, 48.8685375742558], [2.399205556075694, 48.86853467833138], [2.399238980775944, 48.868542996797075], [2.3993816257605403, 48.868580009935535], [2.399561781641489, 48.868624845556525], [2.399629608535608, 48.868642444974185], [2.3996462720879093, 48.8686387198646], [2.399731152739257, 48.86854586273659], [2.399818595058225, 48.86844894349033], [2.399818704125601, 48.868448824425386], [2.399903584160158, 48.86835596715917], [2.399982479228037, 48.86827152010492], [2.400067357318584, 48.868178662700885], [2.400146251842186, 48.868094216424446], [2.40015789263365, 48.868076913952756], [2.40013359918099, 48.86806834022601], [2.399979914628735, 48.86799461202184], [2.399824758296591, 48.867919813215906], [2.399671073246106, 48.86784608549772], [2.3995159177998002, 48.867771286281396], [2.399362234998135, 48.8676975572643], [2.399207080437666, 48.86762275763757], [2.399053397148137, 48.867549028207186], [2.398898243473503, 48.867474228170096], [2.398897919418281, 48.867474076353155], [2.398875752801482, 48.86747048638537], [2.398861873152836, 48.86748260630439], [2.398731817162328, 48.86760168550203], [2.398601319474642, 48.867719651646816], [2.398470821196024, 48.86783761763669], [2.398340763425178, 48.86795669637124], [2.398210263962695, 48.86807466205175], [2.398080204994128, 48.868193741376906], [2.3980796570780543, 48.868194204478336], [2.398076706022555, 48.868196535109995], [2.398075715473146, 48.868197316149555], [2.39795694798112, 48.86829111507852], [2.397835568215794, 48.8683866733356], [2.397716801212308, 48.8684804729163], [2.397595420565332, 48.86857603091352], [2.3974766527081, 48.86866982934059], [2.397355271179268, 48.86876538707793], [2.397236502447584, 48.86885918614994], [2.397115120036987, 48.86895474362731], [2.397114902605919, 48.86895491970155], [2.39700409952962, 48.869046155073], [2.39687346378566, 48.869154434462025], [2.39676265986221, 48.869245669593504], [2.396632021752835, 48.869353948692584], [2.396521216971601, 48.869445184483375], [2.396390579233619, 48.869553462407], [2.3962797736052153, 48.86964469795784], [2.396149134865005, 48.869752975598374], [2.396038328389218, 48.869844210909214], [2.395907688636342, 48.869952489166], [2.395811275062916, 48.87003547353623], [2.395804184519731, 48.87007321346693], [2.395830548714453, 48.87007840531217], [2.395963551880561, 48.87010047179372], [2.396143746285826, 48.870119963090495], [2.396332658427607, 48.87013762116759], [2.396512853099492, 48.87015711190807], [2.396701764148308, 48.87017476849587], [2.396881959086802, 48.87019425868003], [2.397070871748261, 48.87021191559085], [2.397251066953359, 48.87023140521864], [2.397262833491116, 48.87023104717901]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 7, "roussel_fabien": 28.0, "nb_emargement": 1032.0, "nb_procuration": 38.0, "nb_vote_blanc": 11.0, "jadot_yannick": 88.0, "le_pen_marine": 48.0, "nb_exprime": 1020.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1314.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1034, "quartier_bv": "79", "geo_point_2d": [48.86891291535857, 2.3980305646718967], "melenchon_jean_luc": 433.0, "poutou_philippe": 6.0, "macron_emmanuel": 267.0}, "geometry": {"type": "Point", "coordinates": [2.3980305646718967, 48.86891291535857]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c14bdfda91ac51442c0d2e01f500d4f1ccc0fa1e", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 25, "zemmour_eric": 71.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-39", "geo_shape": {"coordinates": [[[2.406738053597103, 48.858263616974845], [2.406738953168738, 48.85826888260249], [2.406832084490984, 48.858332474691395], [2.406976498831525, 48.858430943829845], [2.407104517556276, 48.85851835684748], [2.4072489329371383, 48.85861682474135], [2.407376951212647, 48.85870423744617], [2.407521367623597, 48.85880270499478], [2.407649386802667, 48.858890118292756], [2.407793804243816, 48.8589885854961], [2.407921825709841, 48.859075997595454], [2.40794214985113, 48.859075463213756], [2.408060832241036, 48.85898031424537], [2.408175511342355, 48.85888778493038], [2.408294192868274, 48.858792636613764], [2.408408871152291, 48.85870010616019], [2.408527551824651, 48.85860495759605], [2.4086422292811562, 48.8585124269032], [2.408643601853599, 48.85851110085737], [2.408755032917717, 48.858379600692835], [2.408869316787435, 48.85824599834588], [2.408883121036193, 48.85823745800754], [2.408877270467717, 48.858225387779974], [2.408836782574307, 48.85809369816031], [2.408794981904027, 48.85795700346504], [2.408754495790054, 48.857825313792425], [2.408712695550871, 48.8576886190353], [2.408672208500728, 48.85755692839699], [2.408630410055731, 48.857420233584826], [2.408589923411902, 48.857288543786105], [2.408548124035095, 48.857151848905445], [2.408525418450638, 48.85714708166491], [2.4084165431132902, 48.85721476333101], [2.408318327984643, 48.85727660239511], [2.408298118990597, 48.85727558064021], [2.4081964941379352, 48.85718845222042], [2.408051219007421, 48.8570643605169], [2.407949596342472, 48.856977231877636], [2.407804322388786, 48.856853139850706], [2.407702699185881, 48.856766010978475], [2.407686987558173, 48.856750406898534], [2.407663298536096, 48.856759036678866], [2.407586521964007, 48.856791532201605], [2.407449299858073, 48.856849750950886], [2.407273240645326, 48.856924268483084], [2.4071360164768922, 48.85698248685941], [2.406959957730571, 48.857057003928496], [2.406822732872649, 48.857115221039315], [2.40681947498727, 48.857128430669974], [2.406942773156361, 48.857229490635795], [2.407065258699414, 48.857329422254395], [2.40718855782085, 48.857430481948725], [2.407311044297563, 48.85753041419693], [2.407434344371355, 48.857631473619655], [2.407556831802199, 48.857731404698924], [2.40755569758497, 48.85774353215096], [2.40742056775218, 48.857829557251875], [2.407288959438696, 48.85791305898803], [2.407153828736072, 48.85799908287532], [2.407022219566898, 48.85808258430538], [2.40688708661106, 48.85816860877087], [2.406755477949099, 48.85825210990156], [2.406738053597103, 48.858263616974845]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 39, "roussel_fabien": 21.0, "nb_emargement": 970.0, "nb_procuration": 23.0, "nb_vote_blanc": 17.0, "jadot_yannick": 22.0, "le_pen_marine": 81.0, "nb_exprime": 944.0, "nb_vote_nul": 8.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1396.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 969, "quartier_bv": "80", "geo_point_2d": [48.85791892985488, 2.4078684798031067], "melenchon_jean_luc": 493.0, "poutou_philippe": 7.0, "macron_emmanuel": 183.0}, "geometry": {"type": "Point", "coordinates": [2.4078684798031067, 48.85791892985488]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "006ff4492c560fbdf52a713e8b56a07e0ebd629f", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 57, "zemmour_eric": 72.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-39", "geo_shape": {"coordinates": [[[2.404399990271298, 48.84006487657287], [2.404412169883321, 48.84005853107431], [2.404467921862401, 48.840059468774726], [2.404664697516543, 48.8400604959126], [2.404846517068887, 48.840063554617814], [2.405028338015171, 48.840066612154104], [2.40522511233462, 48.840067639262635], [2.405406933317359, 48.84007069622347], [2.405603707669938, 48.84007172180996], [2.405604543884865, 48.84007175294586], [2.4058151723100742, 48.840083871374816], [2.40601189818347, 48.840096089479324], [2.406222526801731, 48.84010820719075], [2.406419252862464, 48.84012042462509], [2.406629881684005, 48.84013254071973], [2.406826607921828, 48.840144758383204], [2.406829202570587, 48.84014507703151], [2.407024501606757, 48.84018227149965], [2.407224150392294, 48.84021979118453], [2.407419449990353, 48.84025698500542], [2.407619099346376, 48.84029450402862], [2.407814399506111, 48.84033169720223], [2.408014049432611, 48.8403692155638], [2.4080187791284953, 48.840369534859015], [2.408245532355963, 48.84036107680588], [2.4084793747879703, 48.84034971966871], [2.408706126492038, 48.84034126073566], [2.408939968744971, 48.84032990179862], [2.408972458996475, 48.840318957041134], [2.408972471411782, 48.84030572662859], [2.408934384467423, 48.840174379480125], [2.408896566910279, 48.84004572631654], [2.40885848171982, 48.83991437822077], [2.408820664538673, 48.83978572500324], [2.40878284754411, 48.839657071758985], [2.4087447615516853, 48.83952572447384], [2.408706944943316, 48.839397070276306], [2.408668860694462, 48.83926572294319], [2.408631044451973, 48.83913706959104], [2.408592959221946, 48.83900572219644], [2.408578346308419, 48.83898211099033], [2.408542054736055, 48.83898256020588], [2.408358414462129, 48.8389318499781], [2.408171335869119, 48.838880284249036], [2.40798769630609, 48.838829574346825], [2.407800617084515, 48.83877800802652], [2.407616978252714, 48.83872729665124], [2.407429901127391, 48.83867572975321], [2.407246263016507, 48.838625017804176], [2.407059185262737, 48.83857345031492], [2.406875549235273, 48.83852273779889], [2.40668847221526, 48.838471169725146], [2.406504835546424, 48.838420456628576], [2.406317760622767, 48.838368887977126], [2.406134124664717, 48.83831817520617], [2.405947049112426, 48.83826660596345], [2.405918284060719, 48.838273996154804], [2.405926282192487, 48.83831327320468], [2.4059339254872922, 48.838350810924766], [2.405901281301012, 48.83835809910531], [2.405734153172022, 48.83830678868697], [2.405554646100002, 48.83825297834608], [2.405349351347428, 48.83818994879363], [2.4051698464373272, 48.83813613787648], [2.405151933108478, 48.838140431384325], [2.405056670665036, 48.83827130123624], [2.404964040306824, 48.83840130811481], [2.4048687769148422, 48.838532177786554], [2.40477614562427, 48.83866218448926], [2.404680881283736, 48.838793053980794], [2.40458824906089, 48.83892306050767], [2.404492983771789, 48.83905392981903], [2.404400350616657, 48.83918393617], [2.40438622363841, 48.8391890227632], [2.404314291491355, 48.83917834621338], [2.4041700502546712, 48.839165660941795], [2.404152457589764, 48.83915247322495], [2.404115160577128, 48.83915421296788], [2.404042461536862, 48.83914781968556], [2.403966699903572, 48.83914617321341], [2.403930438738871, 48.839149428985955], [2.403923616532448, 48.839176740049844], [2.403950020913387, 48.8393243793404], [2.4039738739791012, 48.83946375785884], [2.403997727172487, 48.83960313635507], [2.404024131979355, 48.83975077557292], [2.404047985438485, 48.83989015402335], [2.4040743905331152, 48.840037793192145], [2.404086429273974, 48.84004567849557], [2.404230869507443, 48.84005618478874], [2.404356937051619, 48.84005830552787], [2.404399990271298, 48.84006487657287]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 39, "roussel_fabien": 19.0, "nb_emargement": 936.0, "nb_procuration": 41.0, "nb_vote_blanc": 12.0, "jadot_yannick": 79.0, "le_pen_marine": 75.0, "nb_exprime": 917.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1210.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 936, "quartier_bv": "45", "geo_point_2d": [48.839381129384606, 2.4064493553427386], "melenchon_jean_luc": 241.0, "poutou_philippe": 8.0, "macron_emmanuel": 314.0}, "geometry": {"type": "Point", "coordinates": [2.4064493553427386, 48.839381129384606]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cae5a74f38a1861e9eee3595d81febe816226749", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 45, "zemmour_eric": 119.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-16", "geo_shape": {"coordinates": [[[2.387526865820916, 48.87612927178807], [2.387481368509905, 48.87613919155932], [2.387462727006404, 48.876145849259], [2.387428103436099, 48.87615944895738], [2.387422011855493, 48.87616974391637], [2.3874838585083, 48.8763066869006], [2.387544142861123, 48.87644039323993], [2.387543617226971, 48.87644648262447], [2.387467652506292, 48.876566965042564], [2.387384703635765, 48.876695346463116], [2.3873753052485203, 48.87670057204742], [2.387175263703212, 48.876731850350694], [2.386976892031031, 48.876762906642355], [2.386776848643652, 48.87679418427112], [2.386578476496595, 48.87682523990084], [2.38637843263055, 48.8768565168621], [2.386180060008526, 48.876887571829855], [2.386176908933817, 48.87688781378079], [2.3860235573405513, 48.87688776661586], [2.38580264139594, 48.87688710552153], [2.385649289805101, 48.87688705787717], [2.385565917326711, 48.87688680805215], [2.385538362119522, 48.87688840322716], [2.385538276302655, 48.876906309378825], [2.385551630131734, 48.877017246619594], [2.38556400672086, 48.877126193107735], [2.3855763833724772, 48.87723513868459], [2.385589738730343, 48.877346075895], [2.385602115477429, 48.877455022346744], [2.385615469583072, 48.877565959525164], [2.385620439299708, 48.877572213797485], [2.385703396667898, 48.87761688300658], [2.385786402534677, 48.87766172957269], [2.385791315547428, 48.87766770745169], [2.385815541055611, 48.87781356921794], [2.385838635623893, 48.8779546380197], [2.38586173168061, 48.87809570680596], [2.385885956232354, 48.878241567595005], [2.385881580804496, 48.87824919755296], [2.38583294149351, 48.87827840110327], [2.385783676485641, 48.8783095529702], [2.385779633901766, 48.87831739957175], [2.385809336457529, 48.87844595206252], [2.385839174358811, 48.87857668340242], [2.385868877209409, 48.87870523584816], [2.385898715408592, 48.87883596714243], [2.385928418543427, 48.87896452044244], [2.385958257040616, 48.879095251691105], [2.385987960480899, 48.87922380404682], [2.386017799276099, 48.87935453524983], [2.386002878388195, 48.879364817203474], [2.385819851099787, 48.879352010810095], [2.385666612103663, 48.87934168716329], [2.385654604211596, 48.879334234852614], [2.385619776763864, 48.87919753248146], [2.38558364513611, 48.879057318700404], [2.38554881807052, 48.878920615375], [2.385512686825813, 48.87878040153727], [2.385491898143831, 48.878774332270645], [2.38535201913262, 48.878833332396084], [2.385220702811047, 48.87888896876751], [2.3850808231847243, 48.87894796856989], [2.384949504921052, 48.87900360463104], [2.384948914457644, 48.87900384081929], [2.384776879651736, 48.87906885615408], [2.384589657634105, 48.87913998145901], [2.384417621940647, 48.87920499537024], [2.384230397579634, 48.87927612009755], [2.384227777390783, 48.87928645700712], [2.384242927035629, 48.87929837190836], [2.384443249052561, 48.879321529196964], [2.384632118739715, 48.879343441066375], [2.384832441092526, 48.87936659860205], [2.385021311106864, 48.87938850985658], [2.385210181280124, 48.879410420812704], [2.385410505521566, 48.87943357648746], [2.385599376011385, 48.87945548772797], [2.385799699235745, 48.87947864274353], [2.385800291665202, 48.87947870244071], [2.385970973633615, 48.87949327747596], [2.386128552128293, 48.87950681829836], [2.386286132068278, 48.87952035892015], [2.3864568143091702, 48.879534933262185], [2.386458202896259, 48.87953500513033], [2.386645784346158, 48.87953838641919], [2.3868296611532642, 48.87954164861398], [2.387017242640621, 48.879545030220044], [2.3872011194944482, 48.87954829184431], [2.387384996360727, 48.87955155408538], [2.387572577930387, 48.879554933922044], [2.387756454853953, 48.87955819469332], [2.387944037824533, 48.8795615748542], [2.388127913431333, 48.87956483504795], [2.388315496449935, 48.87956821462677], [2.388315831846954, 48.87956821723979], [2.388375754696856, 48.87955707853122], [2.388369471781446, 48.879538135337405], [2.388351897691479, 48.87949224181286], [2.388343597759341, 48.87943803730077], [2.388343132519765, 48.87942320048665], [2.388338031788617, 48.879418074329344], [2.388324093948482, 48.87932704854189], [2.388305233599403, 48.87921004024637], [2.388282996062681, 48.87906480990327], [2.3882641372643523, 48.87894780158039], [2.38824189859075, 48.8788025711881], [2.388223039969146, 48.878685563730166], [2.388204180079502, 48.87856855535062], [2.388166812693076, 48.87843107354819], [2.388166659934151, 48.87843038118263], [2.38813432597334, 48.878315598091554], [2.3880969589528, 48.87817811623576], [2.388064626665644, 48.87806333310658], [2.388027258657222, 48.87792585029131], [2.387994926680281, 48.877811067117044], [2.387957560389692, 48.87767358515482], [2.387925227359544, 48.877558801928444], [2.38792507382424, 48.8775580600948], [2.3879077107664672, 48.877436756796975], [2.387894372420972, 48.8773239502574], [2.387877008149343, 48.87720264692238], [2.3878636699302, 48.87708984035542], [2.387863634662214, 48.877089592858965], [2.387844074192813, 48.87696769369709], [2.3878267115205, 48.876846390322555], [2.38782628435314, 48.876844916831836], [2.387774158164345, 48.876721842941386], [2.387727649628591, 48.87660712016094], [2.387681139923762, 48.87649239824273], [2.387629015804706, 48.876369323357444], [2.3875825078927573, 48.876254601383174], [2.387530382881371, 48.8761315264214], [2.387526865820916, 48.87612927178807]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 16, "roussel_fabien": 37.0, "nb_emargement": 1375.0, "nb_procuration": 68.0, "nb_vote_blanc": 11.0, "jadot_yannick": 93.0, "le_pen_marine": 37.0, "nb_exprime": 1360.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1719.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1375, "quartier_bv": "76", "geo_point_2d": [48.87823647234297, 2.386834059654359], "melenchon_jean_luc": 549.0, "poutou_philippe": 8.0, "macron_emmanuel": 403.0}, "geometry": {"type": "Point", "coordinates": [2.386834059654359, 48.87823647234297]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8244485366d4f951aaab3e29a8c54b861692c8be", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 153, "zemmour_eric": 158.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "7-24", "geo_shape": {"coordinates": [[[2.305474074261746, 48.854322070293854], [2.305457650660822, 48.854298724772974], [2.305330774493236, 48.85421278311388], [2.305205744696865, 48.85412454607916], [2.305192332519828, 48.854115460231974], [2.305052043745167, 48.85402043240576], [2.304927016245216, 48.85393219507245], [2.304786728435817, 48.85383716781879], [2.30466170183677, 48.85374892929445], [2.304521415004618, 48.85365390171405], [2.304396387919896, 48.853565663789276], [2.304363937285587, 48.853540010704606], [2.3042809639040502, 48.853562557259295], [2.304138476731654, 48.85365462880387], [2.303996245216408, 48.853745990268926], [2.303853757039334, 48.85383806145926], [2.303711523161502, 48.85392942256287], [2.303569035342529, 48.85402149340692], [2.303426800464784, 48.85411285415699], [2.303284311641022, 48.85420492464677], [2.303142075763358, 48.85429628504332], [2.302999585935003, 48.85438835517889], [2.302857349069446, 48.854479714322615], [2.302714856861555, 48.85457178499527], [2.3025726189960682, 48.85466314378546], [2.302430127158202, 48.85475521321253], [2.3022878882807403, 48.85484657254846], [2.302145395438261, 48.854938641621274], [2.302003155560852, 48.855030000603655], [2.30186066171355, 48.855122069322206], [2.301718420836186, 48.85521342795109], [2.301575924621437, 48.85530549630736], [2.30143368274411, 48.85539685458268], [2.301291186887444, 48.85548892259267], [2.301148944010049, 48.855580280514424], [2.30100644714864, 48.85567234817012], [2.300864203283439, 48.855763704839], [2.300721705405214, 48.85585577303973], [2.300579460539935, 48.855947129355066], [2.300436960306183, 48.85603919629423], [2.300294714428946, 48.856130553155296], [2.3001522145532682, 48.85622261974813], [2.300009967676036, 48.856313976255635], [2.299867466795488, 48.85640604249419], [2.299725218918254, 48.856497398648095], [2.299582717033029, 48.85658946453233], [2.299440468155788, 48.85668082033266], [2.29929796390292, 48.85677288585464], [2.299155714025662, 48.85686424130138], [2.299013210130757, 48.85695630647701], [2.298870959265577, 48.85704766067092], [2.298728454353875, 48.85713972639153], [2.298586202488671, 48.857231080231784], [2.298443696584168, 48.85732314469878], [2.298301443706824, 48.857414499084776], [2.2981589354347323, 48.85750656318945], [2.298016681557344, 48.85759791722181], [2.297874173643309, 48.85768998098017], [2.297731918765769, 48.85778133465892], [2.297589409846909, 48.85787339806294], [2.297447153969414, 48.8579647513881], [2.297304644045721, 48.85805681443778], [2.297162387180295, 48.85814816651002], [2.297019874876633, 48.85824023009665], [2.296877617011138, 48.858331581815264], [2.296735105065622, 48.858423645055574], [2.296592846200056, 48.858514996420546], [2.296450333261723, 48.85860705840724], [2.296308073383934, 48.85869841031785], [2.296165559440843, 48.85879047195019], [2.296023298562964, 48.8588818235072], [2.29588078225209, 48.85897388477715], [2.295738521736927, 48.859065235988524], [2.295596004421175, 48.85915729690413], [2.295453741543091, 48.85924864775383], [2.295311224585376, 48.85934070832308], [2.295168960719347, 48.85943205791987], [2.295026442744477, 48.85952411903401], [2.294884177878334, 48.85961546827717], [2.294741912501152, 48.859706818242934], [2.294599393032404, 48.859798877926416], [2.294457126655094, 48.85989022753856], [2.294314604818396, 48.85998228685961], [2.294172337440949, 48.86007363611808], [2.294029815962381, 48.86016569509278], [2.293887547584792, 48.860257043997585], [2.293745025101305, 48.86034910261791], [2.293602755735658, 48.86044045026974], [2.293460232235053, 48.86053250943494], [2.293317961869356, 48.860623856733135], [2.293175436013052, 48.86071591463662], [2.293115961661671, 48.86076417160578], [2.293124365284309, 48.86077358351523], [2.293260081170926, 48.86087267093342], [2.293385293898888, 48.860956882919794], [2.293510508382301, 48.86104109567613], [2.293646225700159, 48.861140182632475], [2.293771439695186, 48.86122439419454], [2.293907157986785, 48.861323480838614], [2.2940323728441028, 48.861407692113715], [2.294102530981856, 48.86145891311077], [2.294133465340643, 48.861491742983766], [2.2942495603471222, 48.86144788723822], [2.294392427348913, 48.861356009098365], [2.294534678599061, 48.86126507417222], [2.294677543233762, 48.86117319566878], [2.2948197934870223, 48.86108226038875], [2.294962658480593, 48.86099038153787], [2.29510490773707, 48.86089944590394], [2.29524777035141, 48.86080756758879], [2.29539001862338, 48.86071663070169], [2.295532881596599, 48.86062475203905], [2.295675128859535, 48.86053381569735], [2.295817989477874, 48.86044193577192], [2.295960235744153, 48.86035099907636], [2.296103096721267, 48.86025911880344], [2.2962453419907902, 48.86016818175398], [2.296388200600988, 48.860076301117566], [2.296530444873663, 48.85998536371422], [2.2966733038427423, 48.85989348273036], [2.296815547118776, 48.85980254497316], [2.296958403720859, 48.859710663625776], [2.29710064600006, 48.85961972551475], [2.297243502961028, 48.859527843819876], [2.297385744243501, 48.859436905354976], [2.297527983666611, 48.859345966705554], [2.297670839123351, 48.85925408447789], [2.29781307891257, 48.859163145482626], [2.297955932002356, 48.85907126289151], [2.298098170794967, 48.85898032354238], [2.298241024243646, 48.85888844060379], [2.298383262039451, 48.85879750090083], [2.29852611310909, 48.8587056184981], [2.298668349920308, 48.858614677542], [2.298811201348849, 48.85852279479181], [2.298953437163471, 48.85843185348186], [2.299096286225109, 48.85833997036825], [2.299238521030848, 48.85824902960378], [2.299381370463487, 48.858157145243375], [2.29952360427255, 48.858066204125116], [2.299666451338405, 48.857974319401286], [2.299808684150797, 48.857883377929205], [2.299951531575457, 48.85779149285792], [2.299991361702686, 48.85776602588504], [2.300012827905065, 48.857765154969954], [2.300033465893634, 48.85773878428224], [2.300135867475686, 48.8576733093915], [2.3002738412234702, 48.85758568084922], [2.300416071914917, 48.857494738623316], [2.3005540447185853, 48.85740710974381], [2.300696274433506, 48.85731616717029], [2.300834246293063, 48.857228537953645], [2.300976475031364, 48.85713759503246], [2.301114445946918, 48.85704996547864], [2.301256673708707, 48.85695902220979], [2.3013946436801618, 48.85687139231881], [2.301536869102687, 48.85678044869436], [2.30167483812995, 48.85669281846623], [2.30181706393884, 48.85660187450209], [2.301955032022016, 48.85651424393684], [2.302097256854413, 48.856423299625], [2.30223522399351, 48.85633566872262], [2.302377447849421, 48.85624472406318], [2.302515414044444, 48.85615709282362], [2.3026576369237732, 48.85606614781656], [2.302795602174829, 48.855978516239865], [2.302937824077687, 48.85588757088518], [2.303075788384682, 48.85579993897136], [2.303113835808103, 48.85577567018306], [2.303113651781948, 48.85577169845191], [2.303255872577195, 48.855680751802964], [2.303392208262625, 48.85559313611262], [2.303534428072373, 48.8555021900173], [2.303670762834221, 48.85541457309618], [2.303812981670298, 48.855323626655164], [2.303949314133725, 48.855236009394694], [2.304091531996241, 48.855145062608], [2.304227864874886, 48.8550574459233], [2.304370081775957, 48.85496649789163], [2.304506413719018, 48.85487888087549], [2.304648629634432, 48.85478793339747], [2.304784959291109, 48.85470031514267], [2.304927174232982, 48.85460936731896], [2.305063504316892, 48.85452174874065], [2.305199833930327, 48.854434130899435], [2.305342046058883, 48.85434318255296], [2.30539700497412, 48.85435170913879], [2.305409538037184, 48.85434342596183], [2.305474074261746, 48.854322070293854]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 24, "roussel_fabien": 1.0, "nb_emargement": 917.0, "nb_procuration": 84.0, "nb_vote_blanc": 5.0, "jadot_yannick": 23.0, "le_pen_marine": 36.0, "nb_exprime": 911.0, "nb_vote_nul": 1.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1148.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 917, "quartier_bv": "28", "geo_point_2d": [48.857498718521256, 2.2992911137055927], "melenchon_jean_luc": 55.0, "poutou_philippe": 0.0, "macron_emmanuel": 466.0}, "geometry": {"type": "Point", "coordinates": [2.2992911137055927, 48.857498718521256]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "81b4215d6d4b603469fd83bc52e1e6aaa1a856be", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 74, "zemmour_eric": 91.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-39", "geo_shape": {"coordinates": [[[2.30779564622692, 48.837707499342294], [2.307842612445556, 48.837733657707915], [2.307864935850447, 48.83774609117021], [2.307900239366771, 48.8377326609824], [2.30809914899345, 48.83772407242482], [2.308284227484771, 48.837717912799064], [2.308469305932348, 48.837711752886904], [2.308668214023105, 48.83770316337506], [2.308853292373032, 48.83769700286873], [2.309052201706585, 48.83768841272606], [2.309237279958649, 48.83768225162553], [2.309436189172624, 48.8376736608443], [2.30945035100284, 48.837680608397086], [2.309492372407195, 48.837800556297616], [2.309552816892712, 48.83791732691077], [2.3095665026759082, 48.83792339661263], [2.3097919353383842, 48.8379147181967], [2.310006001832829, 48.83790824200439], [2.310220069624547, 48.83790176633613], [2.310445502084648, 48.83789308668835], [2.310659568409043, 48.83788660932631], [2.310885000730503, 48.837877928850126], [2.31090723035396, 48.83787041136712], [2.310909673879177, 48.83785593389064], [2.310854132739398, 48.83777954697186], [2.31078943600952, 48.837700079088066], [2.310801035259623, 48.83768683164098], [2.310990543927114, 48.837683144140236], [2.311145639497134, 48.83767846311998], [2.3111545331337853, 48.83767591515659], [2.311279715830218, 48.83759527265028], [2.311407074009027, 48.83751349133878], [2.311418674701917, 48.837511051574495], [2.311630712625916, 48.83753289727105], [2.31183598029111, 48.83755415952119], [2.3120412481356363, 48.83757542051938], [2.312253286582398, 48.8375972651111], [2.312255301559406, 48.837597373828444], [2.312359677813715, 48.837597395610885], [2.312488613926082, 48.83759799825864], [2.312502292700685, 48.837588298025224], [2.312489532691189, 48.837481447836545], [2.312476687140436, 48.837378194626346], [2.312463927234861, 48.83727134441487], [2.312451083137093, 48.83716809208969], [2.312455220708824, 48.837160871441654], [2.312591603247774, 48.83707434977766], [2.31272434508068, 48.836990710204475], [2.312857085125253, 48.836907070469856], [2.312993466333099, 48.83682054832808], [2.312997413107861, 48.83681880283324], [2.31316961252262, 48.83676872455679], [2.313342211439816, 48.836718493633626], [2.313514410180095, 48.836668415755604], [2.3136870070706452, 48.83661818432265], [2.313859205148195, 48.83656810594373], [2.314031802736666, 48.83651787401659], [2.314203998789353, 48.836467795128996], [2.314376595713306, 48.83641756269983], [2.314548792477516, 48.836367482419924], [2.314721387374719, 48.836317249480935], [2.3147685008249432, 48.83629693098711], [2.314764808181602, 48.83628899086982], [2.314686069891975, 48.83622501088639], [2.314556217784845, 48.83612026893709], [2.314432345148286, 48.8360196136737], [2.314374958071447, 48.83597332416219], [2.314361275443546, 48.83596307563906], [2.314352458054106, 48.83596089718286], [2.314279992725506, 48.835902444428314], [2.31416290195104, 48.83580539914438], [2.314033051940453, 48.8357006565879], [2.313915963441301, 48.83560361105254], [2.313786113055428, 48.835498869100526], [2.313669025469271, 48.83540182330596], [2.313539176094093, 48.835297080167734], [2.313422089420921, 48.83520003411391], [2.313292241044592, 48.83509529068872], [2.313175155284398, 48.83499824437568], [2.3130453092690972, 48.83489350067133], [2.312928223059684, 48.83479645409124], [2.312890283600748, 48.83477880091292], [2.312846902807266, 48.83480311176414], [2.3126949767848, 48.8348883762577], [2.312543733810595, 48.834973978147666], [2.312392490327894, 48.83505958073912], [2.312240561464229, 48.835144843728855], [2.312089316999673, 48.8352304450246], [2.311937388492542, 48.83531570852334], [2.311786143034365, 48.83540130942268], [2.311634212171133, 48.83548657251546], [2.311482965719327, 48.83557217301836], [2.311331033862081, 48.83565743571305], [2.3111797864166412, 48.83574303581952], [2.311027854939677, 48.835828297224616], [2.310876606488816, 48.83591389783395], [2.310724672655622, 48.83599915883315], [2.310573423222905, 48.836084758146725], [2.310421489746217, 48.836170019654894], [2.310270239319852, 48.83625561857205], [2.3101183034869113, 48.83634087967425], [2.310069951841294, 48.836368243874894], [2.310069360648848, 48.83636823686741], [2.310039916399484, 48.83637481501325], [2.309889652531842, 48.836461645873975], [2.309786753734061, 48.836519880041934], [2.309635501250185, 48.83660547812967], [2.309485236044028, 48.83669230846449], [2.309333982552762, 48.836777907057076], [2.309183717721523, 48.836864736108275], [2.309032463234772, 48.836950334306415], [2.308882196029932, 48.83703716385691], [2.308730940559614, 48.83712276076125], [2.308580673717672, 48.8372095899274], [2.308429417251966, 48.837295186437316], [2.308279149410676, 48.83738201521131], [2.308127890575183, 48.83746761221814], [2.307977621734533, 48.83755444059993], [2.307976121827611, 48.837555456305786], [2.307891086037082, 48.83762177586827], [2.30780835464701, 48.83768742518099], [2.30779564622692, 48.837707499342294]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 39, "roussel_fabien": 24.0, "nb_emargement": 1149.0, "nb_procuration": 49.0, "nb_vote_blanc": 13.0, "jadot_yannick": 54.0, "le_pen_marine": 102.0, "nb_exprime": 1130.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1590.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1148, "quartier_bv": "58", "geo_point_2d": [48.83656349326799, 2.311568307374557], "melenchon_jean_luc": 454.0, "poutou_philippe": 2.0, "macron_emmanuel": 281.0}, "geometry": {"type": "Point", "coordinates": [2.311568307374557, 48.83656349326799]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5f9223ba0697ec229a788b78949bc077591ee19c", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 66, "zemmour_eric": 81.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "9-23", "geo_shape": {"coordinates": [[[2.340427435702178, 48.88039119213905], [2.340457874125353, 48.88039099470162], [2.340667296713783, 48.8803774594412], [2.340871531032728, 48.880365095859695], [2.341075763891219, 48.88035273192213], [2.34128518754005, 48.8803391946886], [2.3414894201987613, 48.8803268300451], [2.34169884362454, 48.880313292986955], [2.341903076083463, 48.8803009276375], [2.342112499308817, 48.880287388956184], [2.342316731568039, 48.88027502290077], [2.342526154581686, 48.88026148349556], [2.342730386629645, 48.88024911763347], [2.3429398094316802, 48.88023557750434], [2.343144041291167, 48.88022321003706], [2.343335782766853, 48.88021096347108], [2.34354001443578, 48.88019859532804], [2.343731755727726, 48.8801863481276], [2.343754590411022, 48.88018434637768], [2.343758535150392, 48.880182399361516], [2.34391575664537, 48.88014710339942], [2.344090082797, 48.880109166973014], [2.344247305209575, 48.880073870580645], [2.344371857351806, 48.880046766059905], [2.344412781621514, 48.88003765419766], [2.344400226912215, 48.88000411947214], [2.344268941512106, 48.879892947083526], [2.344142589363598, 48.87978669393483], [2.344011305061542, 48.879675521241715], [2.34388495261402, 48.87956926689343], [2.343758602034293, 48.87946301330827], [2.343627319379068, 48.87935183926214], [2.343500969852446, 48.87924558538409], [2.343369688283913, 48.87913441193278], [2.343355259478302, 48.87913127685553], [2.343169122885584, 48.87916561395036], [2.342992912287215, 48.87920094053784], [2.342964875661939, 48.87920006360409], [2.342954053860956, 48.87920683375037], [2.342912488038361, 48.8792151672711], [2.342683692070856, 48.879259729608954], [2.34246591486023, 48.879303388843894], [2.342456250213102, 48.879302954443624], [2.342260600490547, 48.87924357407468], [2.342066157665792, 48.8791833510421], [2.341870508837314, 48.87912397002922], [2.341676066910175, 48.879063746356564], [2.3414804189756753, 48.87900436469967], [2.341314816538148, 48.87895307296558], [2.341308475696304, 48.8789491223772], [2.341279635744141, 48.878940189789475], [2.341172585181473, 48.87880724660889], [2.3410913926541372, 48.87869241883368], [2.341082643277657, 48.87868754754734], [2.340888000711018, 48.878652319349136], [2.340693473384674, 48.87861953315934], [2.340498831335359, 48.87858430432624], [2.340304304496658, 48.8785515184013], [2.340109662964774, 48.87851628893329], [2.339915136636498, 48.87848350147471], [2.339905421141176, 48.87847730275183], [2.339835165309257, 48.87831819897572], [2.3397571416444283, 48.878155256199946], [2.3397416892358, 48.878149117553356], [2.339694935753785, 48.87815475212567], [2.339665364032371, 48.878156703349234], [2.33961142949991, 48.87815702907568], [2.3396097900845803, 48.87818018689696], [2.339643083035146, 48.878304572277315], [2.339675141752009, 48.87842759283039], [2.339708433641969, 48.87855197905637], [2.339740492665486, 48.87867499956436], [2.339773784881074, 48.87879938484495], [2.339805844211249, 48.87892240530779], [2.339806128234105, 48.87892323336225], [2.33985073789247, 48.87902987688631], [2.339900671015568, 48.87914909994142], [2.339945281061088, 48.87925574340838], [2.339982674612291, 48.879345026791924], [2.339989156465934, 48.8793627002621], [2.33999778542483, 48.879367068233854], [2.340010324080139, 48.879397007831905], [2.340059897404015, 48.87952176149416], [2.340109831477524, 48.8796409844088], [2.340159403919817, 48.879765737095404], [2.340209338455041, 48.87988495994213], [2.340259273218887, 48.88000418275514], [2.340308846353574, 48.880128936237995], [2.340358781579144, 48.88024815898307], [2.340408356547813, 48.88037291240462], [2.340427435702178, 48.88039119213905]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 23, "roussel_fabien": 14.0, "nb_emargement": 1147.0, "nb_procuration": 105.0, "nb_vote_blanc": 17.0, "jadot_yannick": 123.0, "le_pen_marine": 41.0, "nb_exprime": 1127.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 0, "nb_inscrit": 1395.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "36", "geo_point_2d": [48.879573208093866, 2.341706282402339], "melenchon_jean_luc": 252.0, "poutou_philippe": 2.0, "macron_emmanuel": 493.0}, "geometry": {"type": "Point", "coordinates": [2.341706282402339, 48.879573208093866]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "58649a083f5a1684b2fde274f414a294e0137d14", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 85, "zemmour_eric": 94.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-16", "geo_shape": {"coordinates": [[[2.399132261258475, 48.84809850675559], [2.3991326678881713, 48.848098104987905], [2.399149181868327, 48.848081729748685], [2.399124234543938, 48.84804890395277], [2.3991052499364622, 48.847951712559414], [2.399085407864669, 48.84784651979149], [2.399066423392961, 48.84774932927365], [2.399046581476699, 48.84764413648016], [2.399036454241378, 48.84763702208292], [2.398972871861169, 48.84765976033001], [2.39879037533212, 48.84768015090062], [2.398614428073082, 48.84769968735073], [2.398431931263968, 48.847720077373864], [2.398255982373223, 48.84773961328928], [2.398080034713203, 48.84775914895242], [2.39789753748668, 48.84777953815934], [2.397721589557497, 48.84779907329468], [2.397539092050926, 48.84781946195411], [2.397523566107599, 48.84781269077731], [2.39749938635115, 48.84774610493762], [2.397479876042474, 48.84768746411718], [2.397473933102453, 48.84768182761325], [2.397305146841251, 48.84761023425258], [2.3971320908583422, 48.84753801026889], [2.396963305532449, 48.84746641641674], [2.396790249138239, 48.84739419192238], [2.396785171392669, 48.847382805673696], [2.396873692150926, 48.84725686924481], [2.396953513181919, 48.847144943104574], [2.397033335232667, 48.847033016906686], [2.397121854807492, 48.846907079355375], [2.397201674769859, 48.84679515301441], [2.397290194885969, 48.846669216217826], [2.397370014122484, 48.84655728974067], [2.397458532075675, 48.84643135188646], [2.397538350586246, 48.84631942527311], [2.39762686908084, 48.846193488173654], [2.397706686865574, 48.846081561424086], [2.397795203186782, 48.84595562416635], [2.397875021618672, 48.84584369638817], [2.397963537129102, 48.845717758979006], [2.3980433534622962, 48.84560583195709], [2.398131869524438, 48.84547989440336], [2.398211685142209, 48.84536796634596], [2.398208572176943, 48.84532342266635], [2.398173443057533, 48.845320399491605], [2.398040181946535, 48.8453318415734], [2.397852297491384, 48.84534701522077], [2.397659810664144, 48.84536354231572], [2.397471925994363, 48.84537871446598], [2.39727943755645, 48.84539524184095], [2.397091552661557, 48.84541041339342], [2.396899065348518, 48.84542694016275], [2.396711180228724, 48.84544211111744], [2.396518692688408, 48.84545863637501], [2.396330805970629, 48.845473807624366], [2.3961383181926372, 48.84549033226946], [2.395950432622866, 48.84550550202859], [2.395757944596682, 48.845522026960545], [2.395570057439353, 48.845537196114975], [2.395377569175605, 48.84555372043448], [2.395189683155886, 48.845568888998024], [2.395142489428772, 48.8455536401487], [2.395108570116321, 48.84557141620616], [2.395068821220292, 48.84561902679841], [2.394961076148549, 48.845737446074494], [2.3948634173139, 48.84585441973305], [2.394755672651365, 48.84597283880604], [2.39465801291469, 48.84608981227219], [2.394626646238163, 48.84612428505257], [2.39461052185924, 48.84613285886096], [2.394605842350012, 48.84614518963205], [2.394529461994224, 48.84622913479364], [2.394454143403128, 48.84631479585001], [2.394451035954097, 48.84632458040023], [2.394485532636489, 48.84634325654569], [2.394661043343437, 48.84633887629397], [2.394827057473561, 48.84633310411064], [2.394841205090481, 48.8463405701758], [2.394874974114527, 48.84647098025897], [2.39490768085285, 48.846600532354785], [2.39494144884908, 48.84673094238185], [2.394974155915802, 48.846860494429365], [2.395007925609438, 48.846990904414085], [2.395040633015007, 48.84712045551386], [2.395074401670383, 48.84725086634184], [2.39510710940436, 48.847380417393204], [2.395140879767605, 48.84751082727956], [2.395173586456926, 48.84764037917497], [2.395207357155082, 48.84777078901211], [2.395240065535456, 48.847900340865955], [2.395273836568331, 48.84803075065396], [2.395306543914482, 48.848160302452506], [2.395340315282178, 48.84829071219128], [2.39537302432984, 48.848420263049036], [2.395390404684311, 48.84845864177155], [2.3954093400531082, 48.848459070220194], [2.395472550435998, 48.84844982409738], [2.395642184265597, 48.848429906025515], [2.395840222314597, 48.84840093705538], [2.396009855844534, 48.848381018461374], [2.396010423407564, 48.84838096017052], [2.396204518059287, 48.84836463449234], [2.396390378636394, 48.848348113168576], [2.396584473036333, 48.848331787772835], [2.396770333386243, 48.848315264959055], [2.396964427544809, 48.84829893894646], [2.39715028628404, 48.84828241643436], [2.397344380211628, 48.8482660889056], [2.39746140441503, 48.84825568551512], [2.397477910342506, 48.848252196407294], [2.397491680275567, 48.84824148969468], [2.397560515914117, 48.84823536997171], [2.39775211292207, 48.84821870004594], [2.397937971125389, 48.84820217630907], [2.398129567890562, 48.848185505778346], [2.398315427218461, 48.84816898146151], [2.398507023740844, 48.84815231032584], [2.398692881478394, 48.84813578451597], [2.398884477747603, 48.84811911367468], [2.39907033660971, 48.84810258728481], [2.399132261258475, 48.84809850675559]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 16, "roussel_fabien": 15.0, "nb_emargement": 1127.0, "nb_procuration": 72.0, "nb_vote_blanc": 9.0, "jadot_yannick": 105.0, "le_pen_marine": 42.0, "nb_exprime": 1112.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1379.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1127, "quartier_bv": "46", "geo_point_2d": [48.84688326297553, 2.396443590193682], "melenchon_jean_luc": 287.0, "poutou_philippe": 3.0, "macron_emmanuel": 422.0}, "geometry": {"type": "Point", "coordinates": [2.396443590193682, 48.84688326297553]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0e5ea47a4940bc2341dc74097fc5947fb9466080", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 97, "zemmour_eric": 97.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "6-3", "geo_shape": {"coordinates": [[[2.339740860663706, 48.85196142190459], [2.339733503526451, 48.85194179333001], [2.33985781413742, 48.85182622577391], [2.339987966618847, 48.85170312042293], [2.340112276107496, 48.85158755167841], [2.340242428742891, 48.851464446931004], [2.340244199917461, 48.85146308427949], [2.340396449470313, 48.85136884732918], [2.34053631779396, 48.85128083203962], [2.340676184282507, 48.85119281657211], [2.340828432264617, 48.85109857904924], [2.3409682977705, 48.85101056322586], [2.34112054605448, 48.85091632532336], [2.341121480902551, 48.850915788159234], [2.341179318717364, 48.85088550782983], [2.341190337638037, 48.850883718526056], [2.341251757443836, 48.85089143862284], [2.34133635358644, 48.85087936372405], [2.341340484192561, 48.8508782847509], [2.341499151292663, 48.850817383982104], [2.341654088423499, 48.850756025390524], [2.341809026552176, 48.850694666602415], [2.341967692545619, 48.850633765202225], [2.342122628590279, 48.85057240509451], [2.342281293844856, 48.850511503271804], [2.342436229145397, 48.85045014365055], [2.342594895023913, 48.850389241412735], [2.34269012933611, 48.8503638649586], [2.342690370137092, 48.85035827947515], [2.342671048281281, 48.85031705111862], [2.342639250700565, 48.850264881884904], [2.342641007660244, 48.850257399892506], [2.342609271794021, 48.85021762772689], [2.342566798681973, 48.850147940588855], [2.34249560047349, 48.85003123546125], [2.342421330530981, 48.849909378063614], [2.342350131600183, 48.84979267371625], [2.342275862337937, 48.84967081620219], [2.342204665432881, 48.84955411085144], [2.342130396850684, 48.849432253220975], [2.342059200585976, 48.849315548657955], [2.34198493268402, 48.849193690911065], [2.341913737082255, 48.8490769853372], [2.341839469860431, 48.8489551274739], [2.341768273536434, 48.84883842268025], [2.341694006994634, 48.848716564700545], [2.341622812696331, 48.84859985890358], [2.341548546834747, 48.84847800080747], [2.34147735318801, 48.84836129489893], [2.3414030879951673, 48.84823943758572], [2.341331895000187, 48.8481227315656], [2.341257630498806, 48.848000873236735], [2.341186436792742, 48.84788416709756], [2.3411121729714512, 48.84776230865231], [2.341040981268394, 48.84764560330838], [2.3409667181270812, 48.84752374474675], [2.340895527087027, 48.84740703839199], [2.340895396350439, 48.847406816429235], [2.340864290464701, 48.847349045568755], [2.340847112569986, 48.84734429044644], [2.340774610510467, 48.84721556852262], [2.340705493135882, 48.847088400397446], [2.340632990419647, 48.84695967835073], [2.340563875092617, 48.846832510122056], [2.340489716826535, 48.84680860556016], [2.340439402455212, 48.84682337628427], [2.340382661228992, 48.846967372986285], [2.34033790315031, 48.84708477868799], [2.3402811613705152, 48.847228774408805], [2.340236401476046, 48.84734618003752], [2.340179659119692, 48.84749017657564], [2.340134900134666, 48.84760758214637], [2.340133533522712, 48.84760982840401], [2.3400432299417, 48.84771476762225], [2.339943266711157, 48.847838569699206], [2.339852960999404, 48.84794350784546], [2.339752996866696, 48.8480673106373], [2.339662691738067, 48.84817224862593], [2.339562726725972, 48.848296050334056], [2.339472419443787, 48.84840098904928], [2.339372453540895, 48.84852479057303], [2.339282145490576, 48.84862972822376], [2.339182178685478, 48.84875353046238], [2.339091871218174, 48.8488584679555], [2.339088388445933, 48.84886112520801], [2.338933841802727, 48.84894046000429], [2.338792668440181, 48.84901336074723], [2.338651494694069, 48.84908626041947], [2.338496946706663, 48.84916559553465], [2.338491717337067, 48.84916724842208], [2.338320342955877, 48.849194006411274], [2.338127010990296, 48.84922437862261], [2.337955634871401, 48.8492511360805], [2.337762303855312, 48.84928150680923], [2.33775344081474, 48.84928835133392], [2.337770461880901, 48.84932778078627], [2.337799303014968, 48.84945882403993], [2.337829256040236, 48.8495891368498], [2.337858097478223, 48.84972017915928], [2.337888052151894, 48.84985049283067], [2.337916893882383, 48.8499815350952], [2.337946848853419, 48.85011184872125], [2.337975690876413, 48.85024289094082], [2.338005644782018, 48.85037320451404], [2.338034487097517, 48.85050424668867], [2.338064442674514, 48.85063455932479], [2.338093285271103, 48.85076560235375], [2.338123239782663, 48.85089591493702], [2.338152082683191, 48.85102695702176], [2.338182038843316, 48.85115727046652], [2.338210882036367, 48.85128831250627], [2.338240838493777, 48.85141862590568], [2.338241666168525, 48.851420628853965], [2.338315211133107, 48.851541456748684], [2.338396102193735, 48.85165926019686], [2.338406331446757, 48.85168383681357], [2.338414939232488, 48.85168724710302], [2.338495832107517, 48.85180505047586], [2.338570264020754, 48.85191610886575], [2.338651156239562, 48.85203391210182], [2.338725588810735, 48.852144970372315], [2.338806481735962, 48.852262773479104], [2.338880914965081, 48.852373831630075], [2.338918710314614, 48.85242462652429], [2.338961384143829, 48.85241626894695], [2.338965999463498, 48.85241437971659], [2.33909234483799, 48.852335777863985], [2.339216516380807, 48.85226242240336], [2.339342860997574, 48.85218382117482], [2.339467031825634, 48.852110465444234], [2.339562022659666, 48.85205434836158], [2.3396883662621732, 48.85197574585419], [2.339717545809296, 48.8519585079398], [2.339740860663706, 48.85196142190459]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 3, "roussel_fabien": 13.0, "nb_emargement": 1087.0, "nb_procuration": 128.0, "nb_vote_blanc": 10.0, "jadot_yannick": 79.0, "le_pen_marine": 36.0, "nb_exprime": 1077.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 5, "nb_inscrit": 1401.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1088, "quartier_bv": "22", "geo_point_2d": [48.84984644468977, 2.340054854256405], "melenchon_jean_luc": 186.0, "poutou_philippe": 8.0, "macron_emmanuel": 512.0}, "geometry": {"type": "Point", "coordinates": [2.340054854256405, 48.84984644468977]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9df393aed7a68de19b844ee0302e10e7e66bf074", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 96, "zemmour_eric": 138.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "8-11", "geo_shape": {"coordinates": [[[2.326580807580767, 48.875563737628106], [2.326596475919284, 48.875519147546946], [2.326630631724606, 48.875394033981074], [2.326664362477418, 48.8752619211483], [2.326698516576121, 48.875136808425495], [2.326732246990165, 48.875004695542785], [2.326766402131994, 48.87487958187982], [2.326800132207371, 48.87474746894717], [2.326834285642505, 48.87462235612731], [2.326868015379123, 48.87449024314472], [2.326902169857479, 48.8743651293847], [2.326935899255238, 48.874233016352214], [2.326970052027026, 48.87410790343526], [2.3270037810860362, 48.873975790352866], [2.327037934900936, 48.87385067649575], [2.327067691489037, 48.87373412209282], [2.327066645473578, 48.87373245693075], [2.327070617606027, 48.87371689820144], [2.327069936093171, 48.873712241186794], [2.327018959669632, 48.87360151658599], [2.32696142282836, 48.87350050390871], [2.326910446842717, 48.8733897792405], [2.3268529090825822, 48.87328876648396], [2.326799884684336, 48.8732063945133], [2.326742347352811, 48.8731053807876], [2.3267414401914, 48.87310331169954], [2.326709208948142, 48.872972730572236], [2.326675098810535, 48.872840805129236], [2.326642867896028, 48.87271022395305], [2.326608758098352, 48.87257829845974], [2.326576526137689, 48.872447718126274], [2.326542416691566, 48.87231579168341], [2.326541268305974, 48.872315088233165], [2.326479323534175, 48.87231939378926], [2.326291223221193, 48.8722409280741], [2.326140203495361, 48.872181759322665], [2.326135457700386, 48.87217838705704], [2.326044761021727, 48.87206609013722], [2.325952162543742, 48.87195107990534], [2.325861466656032, 48.871838782823495], [2.325768867635329, 48.87172377151917], [2.325678172526821, 48.8716114751746], [2.3255855756781623, 48.871496463712525], [2.325494881372227, 48.87138416630669], [2.325402283957458, 48.87126915557075], [2.325311591805789, 48.87115685801065], [2.325218995211339, 48.87104184620996], [2.325200838997066, 48.87103802777277], [2.325046352129605, 48.87108918637249], [2.324892341030949, 48.87114137540341], [2.324737853553893, 48.87119253360021], [2.324583843203927, 48.871244722237016], [2.32456511920868, 48.87124032042489], [2.324486245361365, 48.87112114329649], [2.324406444877745, 48.87100458964812], [2.324388429820651, 48.87100008928324], [2.324201609175675, 48.87105550793917], [2.3240210101625483, 48.87110925628689], [2.323834188735242, 48.8711646743639], [2.323653588964503, 48.871218422151955], [2.3234667667663462, 48.87127383875078], [2.323286166226319, 48.871327586878465], [2.323099344608987, 48.87138300290606], [2.32291874331135, 48.87143675047401], [2.322738141652704, 48.87149049686766], [2.322551317504911, 48.871545912024025], [2.322370715076968, 48.87159965875721], [2.322183890146662, 48.871655073334644], [2.3221767900062282, 48.87165999119965], [2.322151628700925, 48.871702291351134], [2.32212236289565, 48.87174339820763], [2.322102130120342, 48.87176274447891], [2.3221065516423502, 48.871770583000625], [2.322052034581557, 48.87184716165821], [2.321964771766126, 48.871968326724414], [2.321880988113276, 48.8720860111892], [2.321793725863193, 48.87220717611225], [2.321709941427994, 48.87232486133116], [2.321622678379786, 48.87244602610329], [2.321538893185648, 48.87256371027771], [2.321451627976232, 48.872684874891235], [2.321367842011433, 48.87280255892048], [2.321280577367147, 48.872923723390834], [2.321196790619963, 48.873041408174146], [2.321109525177726, 48.873162572493584], [2.321025737671582, 48.873280256232455], [2.320938471431182, 48.87340142040094], [2.32085468315435, 48.873519103994646], [2.320767414752674, 48.87364026800448], [2.320683625705143, 48.87375795145297], [2.320596357856855, 48.873879116218895], [2.320512568038717, 48.873996799522196], [2.320425299404064, 48.87411796323794], [2.3203415088151083, 48.874235646395995], [2.3202542380191318, 48.87435680995307], [2.320170446659446, 48.87447449296594], [2.320083176428575, 48.87459565637982], [2.319999384286413, 48.87471334014675], [2.319939674244967, 48.87475475727516], [2.319939939450985, 48.874755329862445], [2.320094913775097, 48.87484331121639], [2.320208214850765, 48.874904729349666], [2.320215124736672, 48.87490681098945], [2.320411100642245, 48.87492582778562], [2.320603922249828, 48.87494480567261], [2.3207998984285823, 48.8749638227309], [2.320992720318483, 48.874982799991], [2.321188696793866, 48.87500181551287], [2.321381518954458, 48.87502079304532], [2.3215774957146342, 48.87503980792997], [2.321770319520772, 48.87505878484324], [2.321771023677071, 48.875058840994534], [2.32197334670963, 48.87507141774287], [2.322171280347062, 48.875082577117176], [2.322373602193424, 48.87509515408032], [2.322571537370052, 48.87510631280027], [2.322773859417055, 48.87511888818742], [2.322971793406281, 48.875130046237636], [2.323174116993766, 48.875142621854984], [2.323372051158927, 48.87515377924314], [2.323574374946917, 48.875166353284484], [2.323772309288, 48.87517751001059], [2.3237739950601313, 48.87517767511918], [2.3239687610690343, 48.875205099747205], [2.324176938276406, 48.875235332862815], [2.324239595796119, 48.87524415566263], [2.324246654948643, 48.875248094145576], [2.3242923299120752, 48.87525164535426], [2.324424440230106, 48.875270246474805], [2.324631310131668, 48.87529987155875], [2.324826078412252, 48.87532729479657], [2.325032950143842, 48.8753569182933], [2.325227717485864, 48.87538434086856], [2.325434589672459, 48.87541396366969], [2.3256293574392553, 48.87544138559006], [2.325836230080849, 48.875471007695566], [2.326030998272412, 48.87549842896103], [2.326237871368993, 48.875528050370946], [2.326432641348668, 48.875555470989184], [2.326532217863935, 48.87556972906415], [2.326580807580767, 48.875563737628106]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 11, "roussel_fabien": 14.0, "nb_emargement": 923.0, "nb_procuration": 48.0, "nb_vote_blanc": 9.0, "jadot_yannick": 58.0, "le_pen_marine": 48.0, "nb_exprime": 913.0, "nb_vote_nul": 1.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1141.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 923, "quartier_bv": "31", "geo_point_2d": [48.873467486247684, 2.32391678595585], "melenchon_jean_luc": 110.0, "poutou_philippe": 3.0, "macron_emmanuel": 420.0}, "geometry": {"type": "Point", "coordinates": [2.32391678595585, 48.873467486247684]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6810e85065cb63e6c50c379cd804ee686d6ff30b", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 174, "zemmour_eric": 208.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-3", "geo_shape": {"coordinates": [[[2.317633358915719, 48.88091141512228], [2.317637239394282, 48.880899882587364], [2.3177802785987263, 48.880834269315635], [2.317912133600702, 48.88077270480914], [2.31805517210941, 48.880707091201415], [2.318187026464436, 48.880645526385024], [2.318192782999835, 48.88063826916042], [2.318194742617658, 48.88049764951821], [2.318196272331368, 48.88036278675179], [2.318197802037157, 48.88022792396879], [2.318199761626089, 48.88008730427411], [2.31820129131475, 48.879952441457334], [2.318203252247259, 48.879811821735196], [2.318204781918789, 48.87967695888464], [2.318206741468043, 48.879536339119475], [2.318196043312116, 48.8795274745945], [2.318029105787696, 48.87950319677237], [2.31786448073967, 48.87947862431951], [2.317697543526395, 48.87945434603399], [2.317532917425667, 48.87942977311635], [2.317365980523544, 48.87940549436741], [2.317201356097231, 48.87938092100053], [2.317192617816259, 48.879376715330004], [2.31711634992646, 48.87929134611269], [2.317044062353909, 48.87921024531176], [2.316971776381733, 48.8791291435697], [2.316895509216474, 48.87904377419251], [2.31687999379844, 48.8790196481984], [2.316853577480778, 48.879021994915774], [2.316701401060644, 48.87895156546645], [2.316556431756713, 48.87888411059743], [2.316404256141297, 48.87881368076157], [2.316259287606026, 48.878746225524324], [2.316107112807131, 48.87867579440271], [2.315962145028713, 48.878608339696385], [2.315954907163079, 48.878606704714926], [2.315697748154203, 48.87859896486318], [2.315451641068636, 48.87859221757015], [2.315414075652138, 48.87859423850984], [2.315409605971554, 48.87861291645762], [2.315406572288742, 48.87865875449345], [2.315398622866139, 48.87874651847392], [2.315390503526504, 48.87886919642058], [2.3153825526811582, 48.87895696037551], [2.31537598450064, 48.87896412470064], [2.315203078711361, 48.879032899998926], [2.315040711778978, 48.87910121283043], [2.315036995754905, 48.87910352534701], [2.314917161769385, 48.87921281859697], [2.314799002203675, 48.879320518685404], [2.314679167219432, 48.87942981167565], [2.314561006657314, 48.879537512407204], [2.314442845618432, 48.879645212112386], [2.314323009139672, 48.879754504713866], [2.314204847104362, 48.879862205062224], [2.31408500962685, 48.87997149740396], [2.313966846618985, 48.88007919659685], [2.313847008142714, 48.88018848867884], [2.313728844138391, 48.88029618851491], [2.313609006026828, 48.880405480344926], [2.313490839686358, 48.88051317901778], [2.31337100057602, 48.88062247058802], [2.313252833239261, 48.880730169903984], [2.313132993130136, 48.88083946121447], [2.313118722083282, 48.880897969225416], [2.313129300669778, 48.880901485164244], [2.313197864578656, 48.88090970093425], [2.313401208171356, 48.88093550007933], [2.31359822793952, 48.88095910871298], [2.313801570548118, 48.88098490806835], [2.313998592048081, 48.881008516049924], [2.314201935059866, 48.88103431382486], [2.314398956928223, 48.88105792114651], [2.314602300331129, 48.88108371824029], [2.314799322567871, 48.881107324902054], [2.315002666362094, 48.88113312131468], [2.315199688967211, 48.881156727316494], [2.315403033152537, 48.88118252304797], [2.315600056126022, 48.88120612838985], [2.315797077914711, 48.881229733399245], [2.316000424044486, 48.88125552812216], [2.316197446201427, 48.8812791324716], [2.316400792722384, 48.881304926513344], [2.316447888931375, 48.8813159829378], [2.316470053798175, 48.88130789316708], [2.31667340056645, 48.88133368674514], [2.316809368517605, 48.88136136811462], [2.316842473543886, 48.88136792251348], [2.316870432902515, 48.881316850567806], [2.316931338431133, 48.881204802852615], [2.316994055509729, 48.88108269917892], [2.317001924168391, 48.88107723024878], [2.317154717039789, 48.881037089468386], [2.317297321492236, 48.88099681035324], [2.317439924372387, 48.88095653015972], [2.317592716540386, 48.88091638971522], [2.317633358915719, 48.88091141512228]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 3, "roussel_fabien": 8.0, "nb_emargement": 1217.0, "nb_procuration": 109.0, "nb_vote_blanc": 4.0, "jadot_yannick": 74.0, "le_pen_marine": 54.0, "nb_exprime": 1205.0, "nb_vote_nul": 9.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1433.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1218, "quartier_bv": "32", "geo_point_2d": [48.880133735289505, 2.315953133024688], "melenchon_jean_luc": 109.0, "poutou_philippe": 1.0, "macron_emmanuel": 541.0}, "geometry": {"type": "Point", "coordinates": [2.315953133024688, 48.880133735289505]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1901775baa8b2c6fbd11a7689ce1a0f5bd5c6319", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 60, "zemmour_eric": 74.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "2-7", "geo_shape": {"coordinates": [[[2.347030400002883, 48.86567729401474], [2.347087967247807, 48.865671481742865], [2.34717288073529, 48.865690601839724], [2.347248884165504, 48.865706493199575], [2.3472566845144, 48.8657065789107], [2.347445562950476, 48.86567162252611], [2.34763474100039, 48.86563721247947], [2.347823618942544, 48.86560225459681], [2.348012797842679, 48.86556784485716], [2.348201675279639, 48.86553288637567], [2.348390852326309, 48.86549847512961], [2.348579729258064, 48.865463516049324], [2.348768907154953, 48.86542910511028], [2.348769853684873, 48.86542895647274], [2.348928261585116, 48.86540876106345], [2.3490850863614128, 48.8653880496045], [2.349243492652072, 48.86536785376985], [2.349400317168768, 48.86534714279639], [2.349558723212733, 48.86532694654376], [2.34971554748096, 48.86530623515647], [2.349716872428516, 48.8653060202174], [2.34988691512448, 48.865272419075396], [2.350063273159482, 48.865238267413766], [2.350233315410871, 48.86520466577754], [2.350409671626334, 48.86517051359599], [2.350421069692675, 48.86517165827043], [2.350538381906231, 48.86522323559011], [2.350653188969106, 48.86527371099275], [2.350659547446639, 48.865275185341126], [2.350865771518118, 48.86528721757825], [2.351063801450438, 48.86530025726266], [2.351261831481893, 48.86531329661928], [2.351468054468949, 48.86532532871014], [2.3514695617195303, 48.86532536115984], [2.351694706021255, 48.86531861725501], [2.351933813018148, 48.86531505756649], [2.351991953570594, 48.865307679386085], [2.352010416581188, 48.865290662133624], [2.351992518576465, 48.86525875092908], [2.351939227422899, 48.86516373625196], [2.351868773093915, 48.86503332483485], [2.351797584632477, 48.86490639883942], [2.351727129643013, 48.86477598730127], [2.351655943241291, 48.864649061199465], [2.351585488954518, 48.86451864954761], [2.351600217822997, 48.864470448018984], [2.351553141251799, 48.86444804839252], [2.351476029847241, 48.864319616012274], [2.3514095417033483, 48.864200598822784], [2.351332431019066, 48.86407216632132], [2.351265943530334, 48.863953148126214], [2.351188833566319, 48.86382471550351], [2.351122346710244, 48.8637056981013], [2.35105586015795, 48.86358668064936], [2.350978751254253, 48.86345824784887], [2.350963291802715, 48.863423049955564], [2.350865465598486, 48.86342960533154], [2.350671282497989, 48.86347629459388], [2.350484172290961, 48.86352166751246], [2.350289989868655, 48.863568356159654], [2.350102878999011, 48.86361372847834], [2.349908695891859, 48.863660416502995], [2.349721584359399, 48.863705788221765], [2.3495344738529482, 48.863751160552916], [2.349340288361108, 48.863797847642125], [2.349153177203179, 48.86384321847403], [2.348958991026506, 48.86388990494072], [2.348771879205777, 48.86393527517273], [2.348577692344276, 48.86398196101688], [2.348390579860955, 48.864027330649016], [2.34819639231463, 48.86407401587061], [2.348009277805461, 48.86411938489543], [2.347815090937378, 48.8641660695019], [2.3477680182100302, 48.86417748288063], [2.34775943218866, 48.86417876262276], [2.347740911530741, 48.86418778374688], [2.347600869029615, 48.864221739660294], [2.347417133708149, 48.864265501961725], [2.347230019184501, 48.86431087066708], [2.347046284600128, 48.864354632403135], [2.34685916807033, 48.864400000517634], [2.346675432860095, 48.86444376168079], [2.346673932271626, 48.86444537410953], [2.346694035256017, 48.864489115585634], [2.346725772427303, 48.86459592419135], [2.34676061577852, 48.864697885174046], [2.346795459266024, 48.86479984613718], [2.346827196845827, 48.8649066537868], [2.346858934544493, 48.865013462316924], [2.346894320273281, 48.86515212124341], [2.346894384143321, 48.86515235452222], [2.3469279285974283, 48.8652834974424], [2.346963314693378, 48.865422156314665], [2.346996859506008, 48.86555329828423], [2.347020949209386, 48.86566728401336], [2.347030400002883, 48.86567729401474]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 7, "roussel_fabien": 17.0, "nb_emargement": 1192.0, "nb_procuration": 86.0, "nb_vote_blanc": 11.0, "jadot_yannick": 103.0, "le_pen_marine": 37.0, "nb_exprime": 1181.0, "nb_vote_nul": 0.0, "arr_bv": "02", "arthaud_nathalie": 2, "nb_inscrit": 1514.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1192, "quartier_bv": "08", "geo_point_2d": [48.86464861311862, 2.3493284168571833], "melenchon_jean_luc": 267.0, "poutou_philippe": 2.0, "macron_emmanuel": 571.0}, "geometry": {"type": "Point", "coordinates": [2.3493284168571833, 48.86464861311862]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "328f36cb2e076958b0c58bbe71954a0d38f667a1", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 130, "zemmour_eric": 238.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-63", "geo_shape": {"coordinates": [[[2.286253108921799, 48.866279961958035], [2.286240165285704, 48.86632742709404], [2.286219046402111, 48.86638992466648], [2.286186476562591, 48.86651818363264], [2.286144414619907, 48.866642659057035], [2.286111844438626, 48.86677091797362], [2.286069783476671, 48.86689539335147], [2.286037212953728, 48.867023652218435], [2.28599515025858, 48.86714812663425], [2.285976402834643, 48.86722195567694], [2.285978761296865, 48.86723268998764], [2.286064777713992, 48.86723338567672], [2.286263625869478, 48.86724546456153], [2.286460377914885, 48.86725751173251], [2.2866571300512932, 48.867269558580006], [2.286855978482097, 48.867281636480314], [2.287052730788795, 48.86729368357646], [2.28725157941581, 48.86730575992], [2.287258923333956, 48.86730773455553], [2.287395574405034, 48.867380947617924], [2.287533021934175, 48.86745516083731], [2.287669673777105, 48.867528373577], [2.287807122098113, 48.86760258557243], [2.287943774712999, 48.86767579798942], [2.288081223801083, 48.867750010559476], [2.288097062151341, 48.86775068574586], [2.288180417305854, 48.8677149485633], [2.28829277970653, 48.86766879488459], [2.288296623065722, 48.86765589320184], [2.288195832878997, 48.86756389393817], [2.28809781827268, 48.867474510206584], [2.287997028787892, 48.867382510760365], [2.287899014863966, 48.86729312685132], [2.287798226081314, 48.867201127222614], [2.287700212839774, 48.8671117431361], [2.287697797478104, 48.867105044799814], [2.287730835898472, 48.86696938845481], [2.287763234681137, 48.866846104222745], [2.287770826537725, 48.86683941327539], [2.287954813855774, 48.86678153318669], [2.288133812241116, 48.866725089980115], [2.28831779875209, 48.866667209327474], [2.288496796351318, 48.866610765572176], [2.288675792199544, 48.866554321538196], [2.288859778868324, 48.86649644005157], [2.289038773930435, 48.86643999546895], [2.289222759792129, 48.86638211341834], [2.289401754068122, 48.86632566828704], [2.289585739122731, 48.866267785672484], [2.2896037920407872, 48.86627187334894], [2.289705584064698, 48.866405869000666], [2.289808536843954, 48.86654245346576], [2.28991032993548, 48.86667644801129], [2.290013285137162, 48.866813033174274], [2.29002024836262, 48.86681523651543], [2.290045369812474, 48.8668064154273], [2.290180465273878, 48.86675027353275], [2.2903212861480062, 48.866694013443734], [2.29045638238368, 48.86663787124012], [2.290597202668225, 48.866581609921454], [2.2907322983029, 48.86652546829997], [2.290873117985511, 48.866469206650955], [2.290878590057917, 48.86645797652292], [2.290846634075279, 48.866408700703765], [2.290822217484951, 48.86637167821353], [2.290814669979866, 48.86635571950642], [2.290808408653191, 48.86635392957341], [2.290754721989325, 48.8662725234102], [2.290687382918454, 48.86617030899934], [2.290609280343832, 48.866051880224], [2.290541943206534, 48.86594966571904], [2.290463841293444, 48.865831236825144], [2.290396503363718, 48.86572902220989], [2.290394175063144, 48.86572661973224], [2.290275890820142, 48.8656393568377], [2.290157030992394, 48.86555144646869], [2.290038747544259, 48.86546418332601], [2.289919889891702, 48.865376271816345], [2.28980160723853, 48.86528900842552], [2.289682750373554, 48.86520109756574], [2.289564468515438, 48.865113833926685], [2.289445612462457, 48.86502592191821], [2.289436044428899, 48.86502292423592], [2.289272097184155, 48.865018119515554], [2.289105065321306, 48.865012801605346], [2.289092802618863, 48.86500668692876], [2.289045185642932, 48.864913325786986], [2.289005379831309, 48.86483363978207], [2.289008955770603, 48.864824223239665], [2.2891497235780323, 48.86473679983772], [2.289291212714767, 48.86464872582222], [2.289431980937391, 48.86456130208248], [2.289573469120202, 48.86447322771939], [2.289714235044162, 48.86438580272643], [2.289855723624054, 48.864297728923056], [2.289996488600153, 48.86421030358432], [2.29013797487544, 48.86412222852591], [2.290138735034954, 48.864109658306944], [2.290023312151392, 48.86402538613736], [2.2899123384445073, 48.86394504792749], [2.289909099439936, 48.8639370622556], [2.289942406086895, 48.86383696150815], [2.289975171209769, 48.863737978122316], [2.289972305780711, 48.863730286956226], [2.289847223760413, 48.86363169895541], [2.289723060023168, 48.86353367925639], [2.289597978946578, 48.863435090977646], [2.2894738161345902, 48.86333707190189], [2.289348736013964, 48.863238482445844], [2.289224574139484, 48.86314046309415], [2.289099494950284, 48.86304187425941], [2.288975332650283, 48.86294385462366], [2.288850254417043, 48.86284526461164], [2.288726094417555, 48.86274724470801], [2.288601017115715, 48.86264865531732], [2.288476858065991, 48.86255063423844], [2.288351781707818, 48.86245204456981], [2.288227622220286, 48.86235402410616], [2.28817834667097, 48.86232607592934], [2.288142952947892, 48.86231817413867], [2.288019028636116, 48.8623971915473], [2.287876258316734, 48.86248943408393], [2.287752333193094, 48.86256845120423], [2.287609563295103, 48.86266069341657], [2.287546366913534, 48.86270098863459], [2.287497166014852, 48.86271402952323], [2.287485315683467, 48.862729144538356], [2.287424586039135, 48.862767867019606], [2.287297456118243, 48.86285675925088], [2.287173529242881, 48.8629357757456], [2.28716939062065, 48.86293758577366], [2.287124664442055, 48.862950131536664], [2.287042366379441, 48.86295962859325], [2.28702849386446, 48.862966314474924], [2.287032636807513, 48.86302942872551], [2.287004766743115, 48.863154320323545], [2.286972078588113, 48.86328663342934], [2.286944208240946, 48.86341152498433], [2.286911519783069, 48.863543837143546], [2.286883650516168, 48.863668728663555], [2.286850960367757, 48.863801041666676], [2.286823090818086, 48.863925933143555], [2.286790400354476, 48.86405824609942], [2.286762530521929, 48.86418313753319], [2.286729841118583, 48.864315449550624], [2.286729838257034, 48.86431545942643], [2.286702571057317, 48.864436737219805], [2.2866698813425588, 48.86456904919056], [2.2866426152336, 48.86469032695063], [2.286609923844273, 48.86482263886659], [2.286582657463009, 48.86494391658523], [2.286549965750056, 48.865076229353804], [2.2865226991088, 48.86519750613168], [2.286490007084325, 48.86532981885353], [2.286462740158441, 48.865451096489316], [2.286430047834962, 48.865583408265216], [2.286402780636762, 48.86570468585946], [2.286370089352529, 48.86583699849614], [2.286342820531234, 48.86595827514156], [2.286315551570655, 48.86607955266679], [2.286282859829732, 48.86621186523478], [2.286282680709097, 48.86621250180565], [2.286261738091667, 48.86627447881974], [2.286253108921799, 48.866279961958035]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 63, "roussel_fabien": 9.0, "nb_emargement": 1168.0, "nb_procuration": 69.0, "nb_vote_blanc": 8.0, "jadot_yannick": 40.0, "le_pen_marine": 77.0, "nb_exprime": 1154.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1502.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1167, "quartier_bv": "64", "geo_point_2d": [48.86508131625467, 2.288154649335954], "melenchon_jean_luc": 90.0, "poutou_philippe": 1.0, "macron_emmanuel": 541.0}, "geometry": {"type": "Point", "coordinates": [2.288154649335954, 48.86508131625467]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3fc34790266ef9b006288cb5d690c7546a6bf6ce", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 78, "zemmour_eric": 88.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "9-6", "geo_shape": {"coordinates": [[[2.332531995975023, 48.876752538534376], [2.332566076562875, 48.87676076952165], [2.332676836748166, 48.876801467739455], [2.332790922518198, 48.87683876600938], [2.332795959750725, 48.8768396772329], [2.33298846004161, 48.87684917765859], [2.333176906322667, 48.876858290960996], [2.333369406740422, 48.876867791673206], [2.333557851792091, 48.87687690436823], [2.333750352348027, 48.87688640446773], [2.333938798897078, 48.87689551657048], [2.334127244148675, 48.87690462836892], [2.334319744911033, 48.87691412755264], [2.334322299097831, 48.87691409499029], [2.334506693171868, 48.87690030004998], [2.334691488557178, 48.87688902339945], [2.334875882433181, 48.876875228789444], [2.335060677649601, 48.876863951568716], [2.335245071350533, 48.876850155490466], [2.335429866398048, 48.8768388776996], [2.335614259912416, 48.87682508105238], [2.335821553190183, 48.876808785114534], [2.336005946494252, 48.87679498786358], [2.336213239518232, 48.8767786921463], [2.336397632611999, 48.8767648942917], [2.336604925405208, 48.87674859699649], [2.336789318288659, 48.876734798538166], [2.336923967974801, 48.876724211904246], [2.336942419280763, 48.87672777744878], [2.336969015600657, 48.87671947819307], [2.337041657090346, 48.87671376681818], [2.3371046038838, 48.876711949801354], [2.337108864682513, 48.8767120579331], [2.337290993157521, 48.87673582582746], [2.337459493620191, 48.87675919515767], [2.337641623771987, 48.876782963424404], [2.33781012318109, 48.876806332252514], [2.337978624104684, 48.876829700850536], [2.338160753376643, 48.87685346831842], [2.338164796796602, 48.876853623774814], [2.338339598116104, 48.87684311543156], [2.338505436180334, 48.8768317308148], [2.338680235994239, 48.87682122196638], [2.3388460739028822, 48.876809837776754], [2.339020874937968, 48.87679932843829], [2.339186712702442, 48.876787943776606], [2.339233678113393, 48.87678668404288], [2.339246855579359, 48.87677403297245], [2.339276753475662, 48.87672836153495], [2.33930710857851, 48.87668404791118], [2.339318957487404, 48.87667218900916], [2.339303221661645, 48.87664318131221], [2.339262068310274, 48.87653130968552], [2.339215707783716, 48.87639345714194], [2.339174553454359, 48.876281585452325], [2.339128193393223, 48.876143731944346], [2.339087040812426, 48.876031860206865], [2.33906686508871, 48.87597186918246], [2.339053792798781, 48.87594358301681], [2.339000989697032, 48.87594195774662], [2.338901043854648, 48.87594928491775], [2.33876755717499, 48.875961567349364], [2.338752432514117, 48.875954803531286], [2.338703694955073, 48.875823799516624], [2.338657497179682, 48.87570089093828], [2.338608760097117, 48.87556988685483], [2.338562564134217, 48.87544697821909], [2.3385138275279163, 48.8753159740668], [2.338467630650994, 48.87519306535862], [2.338418894521057, 48.87506206113757], [2.338372698093359, 48.87493915236444], [2.338326503258346, 48.874816242668054], [2.3382777678360602, 48.87468523834477], [2.338231572075498, 48.8745623294752], [2.33818283712956, 48.87443132508317], [2.338136641818207, 48.874308416148686], [2.338087907348609, 48.87417741168783], [2.338097118118049, 48.87415844701167], [2.33807970085946, 48.87413891510286], [2.338030965328354, 48.87400791059116], [2.337983565355435, 48.8738808309474], [2.337934831670808, 48.87374982637346], [2.337887430815523, 48.87362274575507], [2.337838697614157, 48.873491741111366], [2.337791297216849, 48.873364661324516], [2.33774389842546, 48.87323758061253], [2.337695165945454, 48.87310657586469], [2.337647766248834, 48.87297949597662], [2.33759903425207, 48.87284849115901], [2.337551635036279, 48.872721410303924], [2.33750290352275, 48.87259040541655], [2.33745550612808, 48.8724633254005], [2.337406773734605, 48.87233232043584], [2.3373593768207472, 48.87220523945276], [2.337310646273766, 48.872074234425895], [2.3372632484545672, 48.87194715426679], [2.3372145183908, 48.871816149170186], [2.33716712105241, 48.87168906804402], [2.337118391471848, 48.87155806287769], [2.337151717203031, 48.87148794958249], [2.33714308910064, 48.87148181416651], [2.337052928657344, 48.87146626797871], [2.33698735113472, 48.87145408562474], [2.336981283981487, 48.8714510086498], [2.336928087762127, 48.87144603470867], [2.3367908477568022, 48.87142053891633], [2.336604914068537, 48.87138873492849], [2.336402097116328, 48.87135105608859], [2.336216163913445, 48.87131925149492], [2.336013348864666, 48.871281572900806], [2.335827416158636, 48.87124976680199], [2.335624600298464, 48.871212087539256], [2.335438668066262, 48.87118028173388], [2.3352527360727002, 48.87114847473944], [2.335049921022628, 48.871110794499565], [2.3348639895029972, 48.87107898779859], [2.334661176379313, 48.871041306005935], [2.334475245345096, 48.87100949869912], [2.334272431398567, 48.87097181713712], [2.334192628699566, 48.870958164638836], [2.33416542691612, 48.87096059173772], [2.334149372261594, 48.87100679601756], [2.334092135501016, 48.87113557982362], [2.3340357159498613, 48.87126397602295], [2.333978478625687, 48.871392759744694], [2.333922058527314, 48.8715211549613], [2.333864820639536, 48.8716499385987], [2.333808399982439, 48.87177833373184], [2.3337511615310502, 48.87190711728492], [2.3336947403037183, 48.87203551323387], [2.3336383188097383, 48.87216390824204], [2.333581079514241, 48.87229269166876], [2.333524658824689, 48.872421086601044], [2.333467418965462, 48.87254986994349], [2.333410996342482, 48.87267826568393], [2.333353755919716, 48.872807048942036], [2.333297332749483, 48.87293544369975], [2.333240091762967, 48.87306422687351], [2.333183668033966, 48.8731926215477], [2.333126426472281, 48.87332140553639], [2.333070002184503, 48.87344980012708], [2.333012760070666, 48.87357858313211], [2.332956335224104, 48.87370697763937], [2.332899092546697, 48.873835760560034], [2.332842667129724, 48.87396415588306], [2.332785425251851, 48.874092938726946], [2.3327289992877, 48.87422133306718], [2.332671755482925, 48.87435011581913], [2.332615328959966, 48.87447851007585], [2.332558084579871, 48.87460729364268], [2.332501657498095, 48.87473568781592], [2.332444412565817, 48.87486447039911], [2.332387984925217, 48.87499286448884], [2.332330739429226, 48.87512164698763], [2.332274311218265, 48.87525004189311], [2.332217065158654, 48.875378824307546], [2.332160636400279, 48.87550721823024], [2.332103389776939, 48.8756360005603], [2.3320469618230772, 48.87576439440705], [2.331989714636004, 48.87589317665269], [2.331933284748493, 48.87602157130765], [2.331876036997572, 48.87615035346886], [2.331819606562731, 48.87627874714101], [2.331762358248057, 48.87640752921788], [2.331736831994473, 48.87643300883442], [2.331749996700137, 48.87644603547466], [2.331800316189641, 48.876466449817656], [2.331969145055851, 48.87652848762932], [2.3321470476779043, 48.87660066188181], [2.332209938094903, 48.87662377044451], [2.332228334026457, 48.876638327203814], [2.332254561681371, 48.876640547376006], [2.332360502421016, 48.8766794751967], [2.332464557337024, 48.87672098069652], [2.332522626355515, 48.876742318391514], [2.332531995975023, 48.876752538534376]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 6, "roussel_fabien": 11.0, "nb_emargement": 1103.0, "nb_procuration": 83.0, "nb_vote_blanc": 15.0, "jadot_yannick": 95.0, "le_pen_marine": 52.0, "nb_exprime": 1088.0, "nb_vote_nul": 0.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1397.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1103, "quartier_bv": "34", "geo_point_2d": [48.87442428348392, 2.335442193939176], "melenchon_jean_luc": 209.0, "poutou_philippe": 3.0, "macron_emmanuel": 516.0}, "geometry": {"type": "Point", "coordinates": [2.335442193939176, 48.87442428348392]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7c34a28665d4ba627088c745cd94bcc47d157fb8", "fields": {"lassalle_jean": 3.0, "pecresse_valerie": 42, "zemmour_eric": 59.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-24", "geo_shape": {"coordinates": [[[2.361704342455673, 48.87800133960642], [2.361683273215867, 48.87799159810891], [2.36160995134997, 48.87786625201172], [2.361537445805972, 48.877743303332586], [2.361464126003999, 48.87761795712513], [2.361391621149799, 48.87749500832997], [2.361318300684908, 48.87736966199773], [2.361245796509673, 48.87724671398583], [2.361172478119703, 48.87712136664401], [2.361099973270947, 48.87699841850885], [2.36102665557032, 48.876873071948765], [2.360954152785867, 48.87675012280558], [2.360880834422415, 48.876624776120686], [2.36080833231679, 48.876501827760784], [2.360735016028115, 48.876376480066384], [2.36066251461234, 48.876253531590464], [2.360589197649797, 48.8761281846705], [2.360516696934905, 48.876005235179356], [2.360513085151783, 48.876001795715595], [2.360378653430559, 48.87592070755914], [2.360218187808973, 48.87582593072987], [2.360205980335898, 48.875823875258334], [2.360050351399046, 48.875847943263], [2.359863876053234, 48.87587943740431], [2.359708246792278, 48.87590350496304], [2.359521771040681, 48.87593499856983], [2.359512847247879, 48.87593012859127], [2.359442076110334, 48.875936055153005], [2.359255600081154, 48.87596754834426], [2.359037799957957, 48.87600094469707], [2.358851323452112, 48.87603243725674], [2.358667569456306, 48.876060612076714], [2.358641659355484, 48.87606852680472], [2.358678010420109, 48.87612430134085], [2.358747283094316, 48.87623999861668], [2.358816177997382, 48.87635517489927], [2.3588850718418692, 48.876470351122855], [2.358954345436291, 48.87658604824255], [2.359023241254995, 48.87670122436987], [2.3590925154634173, 48.876816921385405], [2.359161411893168, 48.87693209740903], [2.359230686726661, 48.87704779342111], [2.359299583767262, 48.87716296934108], [2.359368859203705, 48.87727866614825], [2.359437755491961, 48.877393841957335], [2.359507032905835, 48.877509538667624], [2.359575929804952, 48.87762471437301], [2.359645207832862, 48.877740410979115], [2.35964567380066, 48.87774609455997], [2.359595502823315, 48.8778666471046], [2.3595441723720523, 48.87798999393645], [2.359494000924814, 48.878110546411826], [2.359442669992681, 48.87823389317284], [2.359392498075546, 48.87835444557904], [2.359341166662739, 48.878477792269216], [2.3592909942757, 48.87859834460619], [2.35923966238211, 48.87872169122556], [2.359189488172779, 48.878842242586714], [2.35913815715068, 48.878965590041815], [2.35908798247153, 48.87908614133376], [2.35903665096864, 48.87920948871802], [2.358986475819459, 48.879330039940726], [2.358935143835773, 48.879453387254166], [2.358884968216759, 48.87957393840763], [2.358833635752267, 48.87969728565025], [2.35881008771157, 48.87975386239919], [2.358800047468939, 48.87975600928944], [2.358786963342213, 48.87977945763459], [2.358770677676634, 48.87983324487129], [2.358744049539278, 48.87989721919321], [2.358728408841452, 48.879907479526665], [2.358737523190842, 48.87992538277773], [2.358752751026141, 48.87995529787015], [2.358784833265228, 48.87995091099664], [2.358984105614339, 48.88001081690705], [2.359168713716888, 48.88006671570609], [2.359367985587183, 48.880126620963935], [2.359552594501189, 48.880182520064466], [2.359554907105886, 48.88018340478736], [2.35970943036734, 48.88025721745077], [2.359876145151611, 48.88033638945733], [2.36003066932237, 48.8804102016959], [2.360197385073668, 48.880489374143366], [2.360351910153534, 48.880563185957044], [2.360518626893963, 48.88064235704691], [2.360673152883139, 48.88071616843574], [2.360839870601648, 48.88079533906726], [2.360994397500038, 48.880869150031174], [2.3611611161856, 48.880948321103624], [2.3613156439931062, 48.88102213164265], [2.36148236366779, 48.881101301357475], [2.361636892384615, 48.88117511147162], [2.361803613026369, 48.88125428162736], [2.361958142652418, 48.88132809131661], [2.36212486428329, 48.881407260114685], [2.362279394818461, 48.881481069379056], [2.362446117427429, 48.88156023771881], [2.362600648871929, 48.881634046558254], [2.362767372447993, 48.881713215338905], [2.362921904801623, 48.8817870237534], [2.363088629366899, 48.88186619117641], [2.363243162629762, 48.88193999916603], [2.36325951837892, 48.88193982085222], [2.363407039515508, 48.881864343998764], [2.363552218041311, 48.881790949046], [2.36369973834297, 48.881715470922444], [2.363844916041253, 48.88164207560478], [2.363992435486009, 48.88156659800964], [2.364137612367758, 48.881493201427894], [2.364285132330116, 48.88141772346911], [2.364430308384346, 48.88134432652252], [2.364577826137278, 48.88126884818567], [2.3647230013530223, 48.8811954517735], [2.364870518271019, 48.88111997216649], [2.365015692659256, 48.881046575389476], [2.365059563469854, 48.88102549214485], [2.365056103807233, 48.881011871428434], [2.364975136356767, 48.880945905100106], [2.364848130709856, 48.88084251436281], [2.364716041957561, 48.88073489663259], [2.364589035976211, 48.880631505593406], [2.3644569482944933, 48.88052388755668], [2.364329944705481, 48.88042049623003], [2.364197858094427, 48.88031287788689], [2.3640708541708673, 48.88020948625832], [2.3639387686303692, 48.88010186760868], [2.363811767099217, 48.87999847569276], [2.36367968126579, 48.87989085672937], [2.363582878555146, 48.87981204909148], [2.363566946463399, 48.879785871198926], [2.363558603232571, 48.879782949884344], [2.363528405469311, 48.879758365304866], [2.363404939988234, 48.87966065210719], [2.363277939229427, 48.87955725957627], [2.363154474695027, 48.879459546102495], [2.363027476287214, 48.87935615329428], [2.362904012699582, 48.87925843954431], [2.362777015279389, 48.879155046451544], [2.362653552638311, 48.87905733242546], [2.362526554842384, 48.878953939040834], [2.362403093147957, 48.87885622473865], [2.362276097702982, 48.87875283107675], [2.362152636955297, 48.8786551164984], [2.362025641134477, 48.87855172254468], [2.362023515130641, 48.87854929830611], [2.361940811326778, 48.878410218241676], [2.36186748825172, 48.87828487234982], [2.36178478392098, 48.87814579213697], [2.361711462957024, 48.87802044612677], [2.361704342455673, 48.87800133960642]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 24, "roussel_fabien": 12.0, "nb_emargement": 1024.0, "nb_procuration": 71.0, "nb_vote_blanc": 13.0, "jadot_yannick": 105.0, "le_pen_marine": 37.0, "nb_exprime": 1009.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1286.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1024, "quartier_bv": "37", "geo_point_2d": [48.879204763279056, 2.361326795315296], "melenchon_jean_luc": 403.0, "poutou_philippe": 4.0, "macron_emmanuel": 310.0}, "geometry": {"type": "Point", "coordinates": [2.361326795315296, 48.879204763279056]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "75418b73058c1d78473724b7da6fb5c9c15ba2f6", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 33, "zemmour_eric": 44.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "10-27", "geo_shape": {"coordinates": [[[2.365059563469854, 48.88102549214485], [2.365015692659256, 48.881046575389476], [2.364870518271019, 48.88111997216649], [2.3647230013530223, 48.8811954517735], [2.364577826137278, 48.88126884818567], [2.364430308384346, 48.88134432652252], [2.364285132330116, 48.88141772346911], [2.364137612367758, 48.881493201427894], [2.363992435486009, 48.88156659800964], [2.363844916041253, 48.88164207560478], [2.36369973834297, 48.881715470922444], [2.363552218041311, 48.881790949046], [2.363407039515508, 48.881864343998764], [2.36325951837892, 48.88193982085222], [2.363243162629762, 48.88193999916603], [2.363088629366899, 48.88186619117641], [2.362921904801623, 48.8817870237534], [2.362767372447993, 48.881713215338905], [2.362600648871929, 48.881634046558254], [2.362446117427429, 48.88156023771881], [2.362279394818461, 48.881481069379056], [2.36212486428329, 48.881407260114685], [2.361958142652418, 48.88132809131661], [2.361803613026369, 48.88125428162736], [2.361636892384615, 48.88117511147162], [2.36148236366779, 48.881101301357475], [2.3613156439931062, 48.88102213164265], [2.3611611161856, 48.880948321103624], [2.360994397500038, 48.880869150031174], [2.360839870601648, 48.88079533906726], [2.360673152883139, 48.88071616843574], [2.360518626893963, 48.88064235704691], [2.360351910153534, 48.880563185957044], [2.360197385073668, 48.880489374143366], [2.36003066932237, 48.8804102016959], [2.359876145151611, 48.88033638945733], [2.35970943036734, 48.88025721745077], [2.359554907105886, 48.88018340478736], [2.359552594501189, 48.880182520064466], [2.359367985587183, 48.880126620963935], [2.359168713716888, 48.88006671570609], [2.358984105614339, 48.88001081690705], [2.358784833265228, 48.87995091099664], [2.358752751026141, 48.87995529787015], [2.358748102937771, 48.879959044770054], [2.358703043651223, 48.880090679582516], [2.358659151476545, 48.880215548650746], [2.35861409174324, 48.88034718339912], [2.358570197775718, 48.88047205239833], [2.358525138970114, 48.88060368619057], [2.358481244573126, 48.88072855512806], [2.358437351317968, 48.88085342494189], [2.35839229048322, 48.88098505863122], [2.358348395446165, 48.88110992747676], [2.358303335517064, 48.88124156200855], [2.358309729370127, 48.881251296458295], [2.358484351332045, 48.88131895001506], [2.358658649773459, 48.88138600442209], [2.358833272629358, 48.881453658360876], [2.359007571970773, 48.881520712251714], [2.359182195742698, 48.88158836477407], [2.359356495984214, 48.881655418148725], [2.359531120650029, 48.881723071053145], [2.359705421791749, 48.88179012391161], [2.359880047373478, 48.881857775399546], [2.3600543494152992, 48.88192482774185], [2.36022897589093, 48.88199247961184], [2.360403278832855, 48.88205953143792], [2.360577906224592, 48.882127181891406], [2.360752210066516, 48.8821942332013], [2.360926838352167, 48.882261884036865], [2.361101143094197, 48.88232893483055], [2.361275772295838, 48.882396584249626], [2.36145007793807, 48.88246363452709], [2.361456549422616, 48.882469544360724], [2.361495845226867, 48.88259226595724], [2.361542549815406, 48.88275224037157], [2.361559646755296, 48.88280563387371], [2.361560381218888, 48.88281958008734], [2.3615655468356, 48.88282534445258], [2.361587747495645, 48.88289467249214], [2.361626231790947, 48.88299587772284], [2.3616655297668, 48.883118598313], [2.361704014378743, 48.88321980349811], [2.361724030455893, 48.88322541499879], [2.361899453974874, 48.88315899665875], [2.362071944629059, 48.883093297184615], [2.362247367259267, 48.8830268783268], [2.362419857025912, 48.882961179242805], [2.362595278767452, 48.882894759867305], [2.362767767668478, 48.882829059374885], [2.362943189884692, 48.882762639488945], [2.363115677898291, 48.88269693938669], [2.36329109787328, 48.88263051807647], [2.363463585010253, 48.88256481746513], [2.36348282079772, 48.882568886674306], [2.363569656170359, 48.88269502142934], [2.363652678355025, 48.88281732718002], [2.36373951455333, 48.88294346178336], [2.363822537532989, 48.88306576738864], [2.363909374556974, 48.883191901840334], [2.363992398331634, 48.883314207300195], [2.364079237544877, 48.8834403416074], [2.364162262114553, 48.88356264692188], [2.364249100789934, 48.88368878107013], [2.364332126154634, 48.88381108623918], [2.364415151909319, 48.88393339133703], [2.364501991815461, 48.88405952525942], [2.364585018365185, 48.88418183021186], [2.3646718590970552, 48.884307963982515], [2.364678733602595, 48.884365612276234], [2.364689692224911, 48.884368048247545], [2.364724099405753, 48.88437569793107], [2.364768331886582, 48.884358965907836], [2.364967807254743, 48.88434623648811], [2.365151704947392, 48.884334893639476], [2.365351180140589, 48.884322162681535], [2.365535076301127, 48.88431081923658], [2.365718973755991, 48.88429947461704], [2.365918448663978, 48.88428674361286], [2.366102345939356, 48.88427539930354], [2.366301820672238, 48.88426266676109], [2.366485717779176, 48.88425132186264], [2.366685192326091, 48.8842385886812], [2.366685987889804, 48.88423876735892], [2.366732455104493, 48.884232874333904], [2.366909271694006, 48.88421964141891], [2.367108746016002, 48.884206907531414], [2.367285562421828, 48.884193674060405], [2.36748503655234, 48.884180939545736], [2.36756787045416, 48.88417474008636], [2.367608553717039, 48.88415485591165], [2.367609091793928, 48.88412795267865], [2.36747970667516, 48.8840645779987], [2.367479516890859, 48.88406448526471], [2.367313386254728, 48.883984358749835], [2.367155551533339, 48.883909813005765], [2.366989423252683, 48.88382968603737], [2.366831588100152, 48.88375513984853], [2.366665460811487, 48.88367501241939], [2.366507627955067, 48.8836004658002], [2.366341501658185, 48.88352033791024], [2.366183668370728, 48.883445790846295], [2.366017543065831, 48.8833656624956], [2.365859710710906, 48.88329111499414], [2.365693586397788, 48.88321098618268], [2.365535756338953, 48.88313643825091], [2.365369633017811, 48.88305630897868], [2.3652118025279423, 48.88298176060216], [2.365053973853496, 48.88290721201977], [2.36488785200488, 48.882827082062335], [2.3647300228994013, 48.88275253303515], [2.364563902042554, 48.88267240261704], [2.36440607523314, 48.882597853159595], [2.364239954004713, 48.88251772227347], [2.364082128127812, 48.882443172378515], [2.363916009265674, 48.88236304013962], [2.363758182957847, 48.88228848979991], [2.363592065076587, 48.88220835799959], [2.363594227395846, 48.88219298826491], [2.3637525903278123, 48.882142990873795], [2.363893955177105, 48.88209471241128], [2.364052317522469, 48.88204471461928], [2.364193681827134, 48.88199643579857], [2.364198037204868, 48.881994085598045], [2.36432126348973, 48.88189301678956], [2.364444116471069, 48.881791658979665], [2.364567341799387, 48.881690589899314], [2.364690195187788, 48.88158923182551], [2.36481341819605, 48.8814881624661], [2.364936270628099, 48.881386804121156], [2.365059492679839, 48.88128573448984], [2.3651823441663042, 48.88118437497451], [2.365222162321841, 48.881157264457855], [2.365219478478859, 48.881150355963996], [2.365188264059566, 48.88112492467872], [2.365137001164539, 48.88108047236234], [2.365085877378456, 48.88103882127343], [2.365059563469854, 48.88102549214485]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 27, "roussel_fabien": 23.0, "nb_emargement": 1126.0, "nb_procuration": 53.0, "nb_vote_blanc": 9.0, "jadot_yannick": 104.0, "le_pen_marine": 42.0, "nb_exprime": 1112.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1523.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "37", "geo_point_2d": [48.88220629232537, 2.3624661561436318], "melenchon_jean_luc": 525.0, "poutou_philippe": 10.0, "macron_emmanuel": 280.0}, "geometry": {"type": "Point", "coordinates": [2.3624661561436318, 48.88220629232537]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6e6fcc1624b5b4ab9c6646dc88fce94e5314bff3", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 27, "zemmour_eric": 34.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "18-58", "geo_shape": {"coordinates": [[[2.3541424804970292, 48.884084283451514], [2.354128265208892, 48.8841431532609], [2.354117285137715, 48.8842424293615], [2.354102064886699, 48.88435197269366], [2.354091084721647, 48.88445124877303], [2.354075864343331, 48.884560792980345], [2.3540845117059392, 48.884569997490864], [2.354283996567642, 48.88462102039563], [2.354481908547437, 48.884673110979186], [2.354681392829904, 48.8847241332097], [2.354879306962691, 48.88477622313883], [2.355078792029408, 48.88482724470245], [2.355276705588085, 48.88487933396248], [2.355284815154179, 48.884890032867155], [2.355227845895582, 48.88502906524019], [2.355183970957993, 48.88513192878413], [2.35517066643869, 48.88513857510874], [2.354978033173413, 48.88513726589712], [2.354784520287212, 48.88513552085741], [2.354591887042944, 48.88513421102456], [2.354398375555899, 48.885132464468825], [2.354205740969044, 48.88513115400734], [2.354012229506211, 48.885129406827524], [2.354002438082366, 48.88513261226353], [2.353996583390647, 48.88515847861638], [2.35405283233152, 48.88529007494307], [2.354109660910927, 48.88541707069528], [2.354165910416879, 48.885548666937886], [2.354222738190634, 48.8856756625992], [2.354278988250518, 48.88580725965697], [2.354335817945873, 48.88593425524209], [2.3543926479183153, 48.88606125078554], [2.35444889747171, 48.886192846810694], [2.354464334026801, 48.88621280516074], [2.354500283443147, 48.88620834315992], [2.354694163138582, 48.886209751566625], [2.354881373172744, 48.88621037188633], [2.355068581858965, 48.886210991006735], [2.3552624629321253, 48.88621239939979], [2.355449671630164, 48.886213017924376], [2.3556435527322, 48.88621442480109], [2.355830761430919, 48.88621504362905], [2.356024642550892, 48.88621644988873], [2.356211851272433, 48.886217067221565], [2.356405732399114, 48.886218473763414], [2.356592941132547, 48.88621909050045], [2.35678682227695, 48.88622049642522], [2.356800184667438, 48.88623069912236], [2.356772942586048, 48.88636290217007], [2.356744680348452, 48.88649311490241], [2.356717436625217, 48.88662531789856], [2.3566891741065, 48.88675553058667], [2.356661931479719, 48.886887732646734], [2.356633668679781, 48.88701794529063], [2.3566064244001232, 48.88715014819839], [2.356578161318854, 48.88728036079807], [2.356550918124646, 48.887412563668946], [2.356522654762248, 48.887542776224464], [2.356495411300839, 48.88767497815187], [2.356467147657207, 48.88780519066316], [2.356471145061974, 48.887834411442675], [2.356509154153244, 48.88783848911141], [2.356712864487693, 48.88783370662745], [2.356915003642678, 48.887828821828805], [2.357118713890825, 48.88782403955362], [2.357320851606527, 48.88781915406246], [2.357524561779676, 48.88781437109677], [2.357726699419765, 48.88780948492042], [2.357930410881486, 48.887804701271534], [2.358132548445951, 48.88779981441005], [2.358336258468769, 48.88779503006335], [2.358538395957599, 48.88779014251669], [2.358742107269069, 48.887785357486806], [2.3589442446822533, 48.88778046925495], [2.35914795456597, 48.887775682627996], [2.359350091903495, 48.88777079371097], [2.35955223056664, 48.887765904459975], [2.359755940326425, 48.88776111769787], [2.359819946980962, 48.887758405822275], [2.359824814266887, 48.887729226262884], [2.359824698012522, 48.887728255269515], [2.359796731273017, 48.88759085972757], [2.359769987592109, 48.8874613685759], [2.359743245418833, 48.88733187651104], [2.359715277743465, 48.887194480893186], [2.359688535832343, 48.88706498968393], [2.359660569808224, 48.88692759402721], [2.359633826817611, 48.8867981018677], [2.359605861070219, 48.88666070706407], [2.3595791183527153, 48.88653121486088], [2.359551152903959, 48.88639381911188], [2.3595244118121412, 48.88626432777156], [2.359496446651157, 48.886126931976406], [2.359486540213319, 48.88607896736441], [2.359488672613955, 48.88606458954776], [2.359477779856009, 48.88605102429156], [2.359460944134133, 48.88596949750898], [2.359442326423895, 48.885859676461415], [2.35941558451336, 48.88573018502657], [2.359396966984341, 48.885620363948014], [2.359370225309394, 48.88549087247485], [2.359351607961592, 48.885381051365364], [2.359351489893109, 48.88538011813141], [2.3593460109767292, 48.885264147562395], [2.359336614264832, 48.88511647451585], [2.359331134045712, 48.885000503911066], [2.35932173743464, 48.88485282992865], [2.3593162586399963, 48.8847368593027], [2.359306862107617, 48.884589186182986], [2.359301382010244, 48.88447321552121], [2.359313937261781, 48.884431427089865], [2.359296177397223, 48.88441931163682], [2.359210983620574, 48.884420356687954], [2.359099542458039, 48.88442037894024], [2.3589501780371602, 48.88441186487442], [2.358948829922029, 48.884411820783924], [2.358747677631789, 48.8843986782231], [2.358598313330682, 48.884390163718216], [2.358552719314868, 48.88438718460042], [2.358550752753721, 48.88438631250834], [2.358521812929146, 48.88438268245587], [2.358366254846421, 48.88437251838354], [2.358171812555037, 48.88435855914867], [2.357970660666644, 48.884345415281814], [2.357776217218913, 48.88433145539688], [2.357575066909746, 48.88431830997311], [2.3573806236692763, 48.88430434944538], [2.3571794721899852, 48.88429120424865], [2.356985030520365, 48.88427724308547], [2.356783879245639, 48.884264097223806], [2.356589436419705, 48.884250135410504], [2.356388285349554, 48.88423698888392], [2.356193844094491, 48.88422302643513], [2.355999401580108, 48.88420906366309], [2.355798250817565, 48.88419591614473], [2.355603809874065, 48.884181952737265], [2.355402659327253, 48.8841688036547], [2.355208217227478, 48.884154839597095], [2.355007066874146, 48.884141690748876], [2.354812626345271, 48.88412772605584], [2.354611476196558, 48.88411457654271], [2.354417034511424, 48.884100611199536], [2.35421588456734, 48.88408746102146], [2.354152197471186, 48.88408288615041], [2.3541424804970292, 48.884084283451514]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 58, "roussel_fabien": 16.0, "nb_emargement": 1245.0, "nb_procuration": 67.0, "nb_vote_blanc": 17.0, "jadot_yannick": 81.0, "le_pen_marine": 58.0, "nb_exprime": 1223.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 7, "nb_inscrit": 1719.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1244, "quartier_bv": "71", "geo_point_2d": [48.88583917333273, 2.357238408878884], "melenchon_jean_luc": 704.0, "poutou_philippe": 12.0, "macron_emmanuel": 236.0}, "geometry": {"type": "Point", "coordinates": [2.357238408878884, 48.88583917333273]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6552cd7e00d2c1bffcd33e4ee478cffe7054f6bb", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 89, "zemmour_eric": 146.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "5-7", "geo_shape": {"coordinates": [[[2.343030253980965, 48.846091329779675], [2.343044835903587, 48.84607770000178], [2.343227782424982, 48.84603572852612], [2.343394863129914, 48.84599582186452], [2.343577810455898, 48.845953848958686], [2.343744890630401, 48.84591394180534], [2.343748660738202, 48.845912563080816], [2.34389288468503, 48.845837928341915], [2.344065110299215, 48.84574881435778], [2.344209333328388, 48.84567418012576], [2.344381557860341, 48.845585065672964], [2.344525779994501, 48.84551043014918], [2.3446980020816532, 48.84542131522035], [2.344842223298179, 48.84534668020343], [2.345014445665681, 48.84525756481341], [2.345158665987189, 48.84518292850477], [2.345160312699231, 48.84517962337285], [2.34512114663073, 48.84515239667412], [2.345047643836687, 48.84509468610696], [2.3449658585904762, 48.84503300802778], [2.344963092672752, 48.84502973809531], [2.344958664673785, 48.8450044346055], [2.3449411711550843, 48.844967040511285], [2.34494310122348, 48.84495127448424], [2.34493381203981, 48.84494304752749], [2.344904734108519, 48.84488088993433], [2.344884467602923, 48.844839820242], [2.3448858902206853, 48.84483244607422], [2.344978259315886, 48.844733611090795], [2.345071627593013, 48.84463027210064], [2.345163995977661, 48.84453143695591], [2.345257363524412, 48.84442809780206], [2.345258601385554, 48.84442067405076], [2.34519598265785, 48.84429539829131], [2.345135353004655, 48.84417245012776], [2.345074723637517, 48.84404950191991], [2.345012107160287, 48.84392422602998], [2.344951478372653, 48.84380127773234], [2.344888862489892, 48.84367600175004], [2.344828234281752, 48.84355305336254], [2.344765617630935, 48.84342777728042], [2.3447049913647993, 48.84330482881057], [2.344642375308542, 48.84317955263602], [2.34458174825927, 48.84305660406894], [2.344519134159971, 48.842931327809495], [2.344458507690272, 48.84280837915258], [2.344395894185308, 48.84268310280074], [2.344335268295072, 48.84256015405405], [2.344272654022045, 48.84243487760239], [2.344212030073754, 48.84231192877333], [2.344149416395152, 48.84218665222934], [2.344088791663821, 48.842063703303], [2.344026179942119, 48.841938426674076], [2.343965555790227, 48.841815477657995], [2.343902944662929, 48.84169020093669], [2.343842321079146, 48.84156725273009], [2.343779709183878, 48.84144197590901], [2.343719087553203, 48.84131902672075], [2.343656476252328, 48.841193749807324], [2.343636943983542, 48.84118869703329], [2.343490514061605, 48.84124215215948], [2.34337052667074, 48.841289212975006], [2.34334178635821, 48.841295086351465], [2.34333532553803, 48.841300685403574], [2.343294687475545, 48.84131662389721], [2.343127588632011, 48.84138369480477], [2.342966963685851, 48.841446693638204], [2.342799864014924, 48.84151376318092], [2.342639238271792, 48.841576761566934], [2.342472137750793, 48.84164383154336], [2.34231151257316, 48.84170682948951], [2.342150885644758, 48.84176982720894], [2.341983783887705, 48.841836895592316], [2.341823156162331, 48.84189989286434], [2.341656053555192, 48.84196696168144], [2.3414954250442053, 48.84202995760677], [2.341328321598333, 48.842097025958246], [2.341321785019259, 48.84210503657619], [2.341328009352073, 48.84221811908587], [2.341332912346345, 48.84236352103745], [2.341339138096561, 48.842476603527864], [2.3413440411575612, 48.842622004545994], [2.3413502656004033, 48.84273508700213], [2.341355170079265, 48.84288048799362], [2.341361394577124, 48.84299357042301], [2.341362159419675, 48.842996231352814], [2.341427359794597, 48.84311842702923], [2.341493020978678, 48.843246018671366], [2.341496817239573, 48.84327059847222], [2.341517323536359, 48.84327668491631], [2.341582985140062, 48.84340427649092], [2.341647055770513, 48.84353034113342], [2.34171271938527, 48.84365793171601], [2.341776789278828, 48.84378399625283], [2.341842453519412, 48.84391158763455], [2.341906524049958, 48.84403765117389], [2.341972188927635, 48.84416524245537], [2.342036260072568, 48.84429130679589], [2.342101925598803, 48.84441889707782], [2.342165997369384, 48.84454496132021], [2.342231663521479, 48.844672552401214], [2.342295735929069, 48.844798615646134], [2.342361402718386, 48.84492620662688], [2.342425475740292, 48.84505227067293], [2.342491143178187, 48.84517986065415], [2.342555216825771, 48.84530592460205], [2.34262088488956, 48.845433515382325], [2.342684959174068, 48.845559578332754], [2.342750627875207, 48.84568716901279], [2.3428147027740662, 48.845813232764336], [2.342880372123803, 48.84594082244481], [2.342944447648365, 48.84606688609817], [2.342973672119568, 48.84609718417005], [2.342995744637534, 48.8460948995977], [2.343030253980965, 48.846091329779675]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 7, "roussel_fabien": 20.0, "nb_emargement": 1283.0, "nb_procuration": 87.0, "nb_vote_blanc": 14.0, "jadot_yannick": 107.0, "le_pen_marine": 51.0, "nb_exprime": 1267.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1579.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1283, "quartier_bv": "19", "geo_point_2d": [48.84364105527316, 2.3432711170521836], "melenchon_jean_luc": 278.0, "poutou_philippe": 7.0, "macron_emmanuel": 510.0}, "geometry": {"type": "Point", "coordinates": [2.3432711170521836, 48.84364105527316]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "190c8c4932bb510b0732a5b65e6467b4c5342130", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 21, "zemmour_eric": 38.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-35", "geo_shape": {"coordinates": [[[2.400150463880788, 48.87843526931706], [2.400153410909975, 48.878438776178484], [2.400125153610496, 48.87851384547818], [2.400106766637991, 48.87856334324366], [2.400097022879773, 48.87856987031084], [2.3998735907672613, 48.878608876725046], [2.399656767721444, 48.878647365476304], [2.399439944355059, 48.87868585383355], [2.399216511252964, 48.87872485901731], [2.399208123734388, 48.87872455701879], [2.399036378350123, 48.87868093819371], [2.398871547937034, 48.87863894115736], [2.398706716415945, 48.87859694478487], [2.398534973246264, 48.87855332434303], [2.398370142267543, 48.87851132750387], [2.3981983996620873, 48.87846770657579], [2.398033569225738, 48.87842570926997], [2.397861827184511, 48.87838208785565], [2.397861094237358, 48.87838191689383], [2.397824299361353, 48.8783740992096], [2.3978003303029203, 48.87837635556802], [2.39779535721691, 48.878389952693446], [2.397833036704094, 48.878519143819254], [2.3978704357559693, 48.87864949184254], [2.397908116980507, 48.87877868292116], [2.39794551641706, 48.878909029991], [2.397983196641871, 48.87903822190795], [2.398020596452707, 48.87916856892363], [2.398058278425291, 48.879297759894094], [2.398095678600026, 48.8794281077549], [2.39808223645148, 48.87943877275664], [2.397883227211449, 48.879438334086295], [2.397683512268617, 48.879437371722744], [2.397484503037302, 48.87943693238958], [2.397284788107215, 48.87943596936089], [2.397085778884627, 48.879435529364926], [2.396886063967298, 48.87943456567104], [2.396687054743028, 48.87943412591159], [2.396487339848883, 48.8794331606533], [2.396473842832044, 48.87944382519946], [2.39650796267433, 48.879562752636794], [2.396542528541961, 48.87968085671554], [2.3965766473434282, 48.87979978320157], [2.396611213524137, 48.879917887235074], [2.396645333990695, 48.88003681458208], [2.396679900484488, 48.880154918570334], [2.396714019910219, 48.880273844965956], [2.396748586717098, 48.88039194890897], [2.396735529582599, 48.880402643572026], [2.3966339059449853, 48.880404270949754], [2.396580873711772, 48.88040330848397], [2.396576506268194, 48.88040119013768], [2.396551616515596, 48.88040350455926], [2.396480066050968, 48.88040465026036], [2.396345766387487, 48.88040803722689], [2.3961725908837233, 48.880410809784216], [2.396038292558284, 48.880414195513424], [2.396027082247814, 48.880427766473765], [2.396120637238055, 48.880531906624], [2.396210162229552, 48.880631552209685], [2.396303717951968, 48.88073569219758], [2.396393243643968, 48.88083533762795], [2.396486800088247, 48.880939478352765], [2.3965763264912843, 48.8810391227285], [2.39666585323701, 48.8811387670283], [2.396759410771409, 48.88124290751137], [2.396779737060859, 48.88125954495566], [2.396784491658847, 48.88125944210662], [2.396934679735131, 48.88117298378914], [2.397110804091453, 48.88107094374563], [2.397260991092819, 48.880984484104715], [2.397437114172309, 48.8808824435637], [2.397437177308683, 48.88088240790835], [2.397587363224514, 48.88079594784324], [2.397742438921092, 48.88070719821421], [2.397892622450978, 48.880620738644815], [2.398047698479532, 48.8805319877139], [2.398197880997381, 48.88044552774781], [2.398352954610131, 48.88035677729977], [2.398503137479546, 48.880270316943864], [2.398658210060673, 48.880181565187044], [2.398808391918059, 48.88009510443447], [2.398963463446901, 48.880006353167396], [2.399113642939164, 48.87991989111204], [2.39926871478969, 48.87983113944229], [2.399418893259463, 48.87974467788953], [2.399418922088961, 48.87974466094689], [2.399573991534024, 48.87965590886083], [2.39968697068751, 48.87959049892431], [2.399688161250148, 48.879589889753774], [2.399846995787126, 48.879517587812295], [2.400005189990828, 48.87944567545483], [2.40016402227404, 48.87937337397577], [2.400322215601848, 48.87930146118996], [2.400481047005132, 48.87922915928081], [2.400639239457251, 48.879157246066676], [2.400798071344068, 48.87908494373433], [2.40095626155684, 48.87901303008504], [2.401115092574071, 48.8789407264233], [2.401273281911158, 48.87886881234577], [2.40143211203812, 48.87879650915325], [2.401590301862775, 48.87872459465417], [2.401596111526616, 48.87871820608435], [2.401602272191052, 48.87867758991662], [2.4016136029168402, 48.87861184356364], [2.401609018217895, 48.878607980513216], [2.40158318872009, 48.87860614357733], [2.4014275997418952, 48.87851348490279], [2.401269782629603, 48.87841946677768], [2.401114194766565, 48.87832680768009], [2.400956380149131, 48.878232789132745], [2.400800792038012, 48.87814012960534], [2.400642978551987, 48.87804611062891], [2.400487392919445, 48.8779534506853], [2.4003295792013972, 48.87785943127302], [2.400306843588183, 48.877865432824144], [2.400292114881207, 48.87799512599263], [2.40027996205073, 48.87810253047933], [2.4002795984826673, 48.87810402784004], [2.400235397188564, 48.8782214593595], [2.400176773293484, 48.87837577292286], [2.400160827451156, 48.87841813506571], [2.400150463880788, 48.87843526931706]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 35, "roussel_fabien": 14.0, "nb_emargement": 769.0, "nb_procuration": 26.0, "nb_vote_blanc": 10.0, "jadot_yannick": 36.0, "le_pen_marine": 52.0, "nb_exprime": 756.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1105.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 769, "quartier_bv": "75", "geo_point_2d": [48.879509108799425, 2.398604200641368], "melenchon_jean_luc": 394.0, "poutou_philippe": 11.0, "macron_emmanuel": 156.0}, "geometry": {"type": "Point", "coordinates": [2.398604200641368, 48.879509108799425]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ab1b7c19b90ab7b1d256f919b5759b17e418d3bc", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 48, "zemmour_eric": 57.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-35", "geo_shape": {"coordinates": [[[2.358339994179588, 48.82295192099876], [2.358341195988213, 48.82296062532914], [2.358303795264928, 48.823080160578684], [2.358261336707721, 48.82320968323019], [2.358223935622798, 48.82332921842821], [2.358181475291322, 48.82345874191466], [2.35814407385572, 48.82357827616192], [2.358101614485032, 48.82370779959861], [2.3580642126875793, 48.82382733379439], [2.358044117860039, 48.823888631784804], [2.358031819352098, 48.82389972073486], [2.358072419194736, 48.82392822588678], [2.358257549411698, 48.82397695485664], [2.35844067976112, 48.82402496409782], [2.358625810665747, 48.82407369249339], [2.35880894169404, 48.82412170116653], [2.358994073297385, 48.82417042808847], [2.359177205004541, 48.8242184361935], [2.359362337284485, 48.82426716344045], [2.359545469670504, 48.82431517097744], [2.3597306026381, 48.82436389765007], [2.3599137357029782, 48.824411904618934], [2.360098869369261, 48.824460629817935], [2.360282003113091, 48.82450863621872], [2.360465138545056, 48.824556643243604], [2.3606502732404833, 48.82460536758272], [2.360833408000403, 48.8246533731329], [2.361018543372437, 48.82470209779701], [2.361084171041563, 48.82471261499476], [2.361092296470376, 48.82469890065162], [2.361179521952248, 48.82458732416676], [2.36127310071303, 48.824467116053896], [2.3613603254203133, 48.824355539414164], [2.361453904721162, 48.82423533024295], [2.361541128653761, 48.82412375344831], [2.361634707121742, 48.8240035441108], [2.361721928917657, 48.82389196715399], [2.361815506541777, 48.82377175854948], [2.361902728925039, 48.82366018144511], [2.361996305727322, 48.82353997177504], [2.362083527335928, 48.82342839451571], [2.362177103305374, 48.82330818467938], [2.362264322777341, 48.8231966072579], [2.362357897902967, 48.823076398154605], [2.3624128307867123, 48.82300612412277], [2.362423096844923, 48.82299685681383], [2.362425364477852, 48.8229847309085], [2.362457651630254, 48.82294342736708], [2.362518162627721, 48.82286907736174], [2.362508476146861, 48.82285422826709], [2.362411189757712, 48.82287266936347], [2.362209662260042, 48.8228218015456], [2.362013876961064, 48.82277265035238], [2.361812348886732, 48.822721780953806], [2.361616565699748, 48.822672629112986], [2.361415038388628, 48.82262175993968], [2.361219255951758, 48.82257260744399], [2.361017729414758, 48.82252173759659], [2.360821947739135, 48.82247258354675], [2.360626166421622, 48.82242343007354], [2.360424641039848, 48.82237255921982], [2.360399440208453, 48.822359383449275], [2.360386633766449, 48.822363983621294], [2.360206795057462, 48.82233620750053], [2.3600324957270002, 48.82230944647179], [2.359852656032909, 48.82228166980982], [2.359678357077466, 48.82225490736426], [2.359498517760151, 48.82222713016833], [2.359324219157749, 48.82220036810467], [2.359144381579175, 48.82217259038208], [2.358970083352019, 48.82214582690159], [2.358962852684313, 48.82214602017942], [2.358801406526273, 48.8221800783512], [2.358627353198803, 48.822217346920006], [2.358577691371384, 48.82220988282045], [2.358568950412828, 48.822231094537464], [2.358537475645069, 48.82233257972115], [2.358500075833336, 48.82245211419959], [2.358461204292177, 48.82257744984114], [2.358423804118876, 48.82269698516895], [2.358384932211815, 48.8228223207584], [2.358347531688007, 48.82294185603631], [2.358339994179588, 48.82295192099876]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 35, "roussel_fabien": 25.0, "nb_emargement": 1023.0, "nb_procuration": 42.0, "nb_vote_blanc": 10.0, "jadot_yannick": 77.0, "le_pen_marine": 65.0, "nb_exprime": 1006.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1297.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1023, "quartier_bv": "51", "geo_point_2d": [48.823359499259176, 2.3601174102986118], "melenchon_jean_luc": 361.0, "poutou_philippe": 9.0, "macron_emmanuel": 301.0}, "geometry": {"type": "Point", "coordinates": [2.3601174102986118, 48.823359499259176]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3e51c92928af983ae4d60b2e18fe2e3d25dc46d2", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 90, "zemmour_eric": 114.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-55", "geo_shape": {"coordinates": [[[2.295752186267317, 48.83456526821059], [2.29573694256071, 48.834557520282004], [2.295639260541196, 48.83445411959545], [2.295532857318459, 48.834342839294465], [2.2954351760939, 48.83423943932067], [2.295346186368095, 48.83414637031492], [2.295324695367848, 48.83413356341528], [2.295307515391315, 48.83414107360626], [2.295079463486925, 48.8341440629601], [2.294864245112667, 48.83414653395156], [2.294649025355841, 48.83414900454779], [2.294420973379002, 48.83415199264611], [2.294410001063812, 48.834148565155736], [2.294302249381551, 48.83405823389148], [2.294192013021662, 48.8339662015302], [2.294084262094099, 48.833875870054904], [2.29397402650471, 48.83378383747775], [2.293954032509387, 48.8337828497575], [2.29383664876523, 48.83385536861797], [2.293721975161315, 48.83392582041098], [2.293604592134546, 48.833998339042516], [2.293489917890305, 48.83406879150335], [2.293473576252004, 48.8340742369227], [2.29347197210439, 48.83408373384144], [2.293412868063474, 48.83419879609634], [2.293353882599446, 48.834314438209766], [2.29329477803629, 48.834429500382555], [2.293235793423702, 48.834545141522675], [2.293176686963831, 48.834660204504694], [2.293117701828315, 48.834775845562675], [2.293058594858378, 48.83489090756332], [2.292999609187529, 48.83500654943856], [2.29294050305762, 48.83512161136514], [2.292881515513633, 48.835237252250955], [2.292822408849259, 48.835352314994786], [2.292763420782217, 48.83546795579848], [2.292767650165068, 48.83547775700167], [2.292915824374045, 48.835558638643626], [2.2930678002939873, 48.83564031062794], [2.293215974068454, 48.83572119187829], [2.293367952295011, 48.835802863477404], [2.293373028465064, 48.83581081155196], [2.293391976830612, 48.83581461901802], [2.293392214837688, 48.83581474993387], [2.293524675595548, 48.83588930619756], [2.293650650885473, 48.835959197631034], [2.293776626525503, 48.836029088028184], [2.293909087015535, 48.83610364384384], [2.293913281823733, 48.83610787047897], [2.293975564215638, 48.83624304879117], [2.294038090378142, 48.83637906310971], [2.294100373429929, 48.836514240424854], [2.294162900243408, 48.83665025464519], [2.294225183930726, 48.836785432761864], [2.294287711395191, 48.836921446883956], [2.294349995730234, 48.83705662490283], [2.294412523845695, 48.83719263892674], [2.294474810202992, 48.837327815956556], [2.294537338969359, 48.837463829882225], [2.294550564852667, 48.8374766645804], [2.294573239033062, 48.83747159723296], [2.294769795819207, 48.83743018447277], [2.294973584167196, 48.83738715557138], [2.295170140316845, 48.837345742150205], [2.295373928004209, 48.83730271256352], [2.295570483517356, 48.837261298481366], [2.295774270556237, 48.8372182673101], [2.295970825432871, 48.83717685256701], [2.296174611798959, 48.83713382160972], [2.296178677280217, 48.83711808223225], [2.296003327822154, 48.837030569381064], [2.29583078395191, 48.83694458642301], [2.295655437023905, 48.836857073056215], [2.295482894301725, 48.836771089582996], [2.295307547179195, 48.8366835756847], [2.295135005617339, 48.83659759079704], [2.295133990527651, 48.836583794730785], [2.29526699860882, 48.83650301792553], [2.295423089908231, 48.83640810928913], [2.295556097093001, 48.8363273321497], [2.295712185977619, 48.836232423113145], [2.295845192266099, 48.836151645639546], [2.296001281460577, 48.83605673621884], [2.296134286852772, 48.83597595841111], [2.296290373620336, 48.83588104948955], [2.296423378128498, 48.83580027044835], [2.296579465205828, 48.83570536114267], [2.296712468817709, 48.83562458176734], [2.296732961908594, 48.835614887397696], [2.296732400953476, 48.835606884172115], [2.296634065337321, 48.8355036712424], [2.296536379752988, 48.83540027227519], [2.29643804490259, 48.835297060064555], [2.296340360094373, 48.835193660918186], [2.296242026021857, 48.83509044852734], [2.296144342001686, 48.83498704830248], [2.296046008707147, 48.83488383573143], [2.295948325450834, 48.8347804362267], [2.295849992934059, 48.834677223475445], [2.295752310465986, 48.83457382289224], [2.295752186267317, 48.83456526821059]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 55, "roussel_fabien": 20.0, "nb_emargement": 1248.0, "nb_procuration": 60.0, "nb_vote_blanc": 13.0, "jadot_yannick": 108.0, "le_pen_marine": 87.0, "nb_exprime": 1222.0, "nb_vote_nul": 14.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1512.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1249, "quartier_bv": "57", "geo_point_2d": [48.83550735726444, 2.2947008814739536], "melenchon_jean_luc": 276.0, "poutou_philippe": 3.0, "macron_emmanuel": 470.0}, "geometry": {"type": "Point", "coordinates": [2.2947008814739536, 48.83550735726444]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fe929948d6579f1ab901784bc5fde18cebaecf10", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 76, "zemmour_eric": 88.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "11-16", "geo_shape": {"coordinates": [[[2.370830988129945, 48.85776260657957], [2.3708024802579, 48.85777244395373], [2.370729967898732, 48.85783565649252], [2.370679841763086, 48.857886365260484], [2.370669577838406, 48.85790008660167], [2.370675592377634, 48.857911501285336], [2.370758570723897, 48.8580364488245], [2.370834557020765, 48.858162784994946], [2.370917536148331, 48.85828773239559], [2.370993523186264, 48.858414069335815], [2.371076504458161, 48.858539016605064], [2.371152490896069, 48.85866535250928], [2.371152894584138, 48.85866612267364], [2.371207975390815, 48.85878967850287], [2.371264969826036, 48.858916983832984], [2.371320051163695, 48.85904053958271], [2.371377046147178, 48.85916784483061], [2.371432128015824, 48.85929140050079], [2.371489123547577, 48.859418705666556], [2.371544205947218, 48.85954226125724], [2.371601202016403, 48.859669567240104], [2.371656284947048, 48.859793122751256], [2.371713281575467, 48.85992042775266], [2.371768366399976, 48.86004398319143], [2.371825362213733, 48.860171288103516], [2.371807529684329, 48.8601822627526], [2.371617792991116, 48.86013558250447], [2.371429796692715, 48.86008951005806], [2.371240060675615, 48.86004282920714], [2.371052063672114, 48.85999675705559], [2.370862328331333, 48.85995007560188], [2.370674333370253, 48.85990400196099], [2.370484598705696, 48.8598573199045], [2.370296604402469, 48.85981124656566], [2.370106870414137, 48.8597645639064], [2.369918875427655, 48.85971848906389], [2.36972914211556, 48.85967180580185], [2.369541149149772, 48.85962573126852], [2.369351416513913, 48.859579047403756], [2.369163424216852, 48.859532972273215], [2.3691451238629853, 48.859540454600356], [2.36912482715281, 48.85966687855361], [2.369104653125735, 48.85979104217791], [2.3690843562197372, 48.85991746609579], [2.36906418336214, 48.86004162969239], [2.369043886271211, 48.860168052675526], [2.369023711846291, 48.860292217129334], [2.369003414559535, 48.860418640077015], [2.368983241304098, 48.8605428045032], [2.368962942458646, 48.86066922740825], [2.368942769020622, 48.86079339090025], [2.368938592485071, 48.86080477168708], [2.36895246759995, 48.860812250070005], [2.369096704609268, 48.860875602360196], [2.369239780024503, 48.86093844381547], [2.369384016369567, 48.86100179574497], [2.36952709384098, 48.86106463685679], [2.369670170294457, 48.8611274777868], [2.369814409049179, 48.861190829193944], [2.369957486195755, 48.86125366977331], [2.370101724286217, 48.861317020819826], [2.370106679114194, 48.861318362642116], [2.370292358138242, 48.861342159805396], [2.370477853918075, 48.86136511752515], [2.370663533278392, 48.86138891411155], [2.370849030751235, 48.8614118712622], [2.370851660736555, 48.861412381527316], [2.371026321377196, 48.861459106891026], [2.37121618021097, 48.861510140572975], [2.371390842880105, 48.86155686450841], [2.371580702416237, 48.86160789850682], [2.371755365740015, 48.861654621906105], [2.371945225989561, 48.861705655321785], [2.372119889967877, 48.86175237818495], [2.372270849657694, 48.861792954440894], [2.37227731594133, 48.86180042864038], [2.372297719706154, 48.861802686895025], [2.3723366196396842, 48.86181314255666], [2.372521667655744, 48.861861717976474], [2.372711529410611, 48.86191275016691], [2.372756101251971, 48.861924449535756], [2.372778343143363, 48.86192665438769], [2.372787972631385, 48.86191096541978], [2.372892703104608, 48.86182123351601], [2.372997472404373, 48.86173209618574], [2.373102203531023, 48.86164236319204], [2.373206972112551, 48.86155322566399], [2.373209686248657, 48.86154640395622], [2.373181427587895, 48.86141983678115], [2.373153452849769, 48.861294266646844], [2.373125194451452, 48.86116770032903], [2.3730972186321813, 48.86104212924658], [2.373068961870208, 48.86091556289382], [2.373040986311035, 48.86078999266896], [2.373012728470264, 48.8606634253677], [2.372984754544976, 48.860537855108284], [2.372956779391566, 48.860412284821], [2.372928521960215, 48.86028571745677], [2.372900548440676, 48.8601601471349], [2.372872291271848, 48.860033580627864], [2.372844318034031, 48.85990800936505], [2.372816061138548, 48.85978144281601], [2.372788086797855, 48.859655872403586], [2.372759830186542, 48.859529304913195], [2.372731857479687, 48.85940373446625], [2.372703601130883, 48.859277167833085], [2.372702473858989, 48.85927468332335], [2.372624502849061, 48.85916415311354], [2.372541439886009, 48.859050013141825], [2.37246346955392, 48.85893948280472], [2.372380407290986, 48.858825343597424], [2.372302437636727, 48.858714813133], [2.372219376095567, 48.858600672891505], [2.372141407119131, 48.85849014229982], [2.372058347640977, 48.8583760028299], [2.371980379342353, 48.85826547211089], [2.371897319223047, 48.85815133159965], [2.371920229338548, 48.85814059311936], [2.371905821168291, 48.85813111481095], [2.371826819420892, 48.858103418399544], [2.371656491075242, 48.8580460873593], [2.371551605938784, 48.858009315328886], [2.371367719676603, 48.85794484738614], [2.371197390991599, 48.85788751567712], [2.371013505608413, 48.85782304628369], [2.37084317907424, 48.8577657140714], [2.370830988129945, 48.85776260657957]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 16, "roussel_fabien": 14.0, "nb_emargement": 1264.0, "nb_procuration": 75.0, "nb_vote_blanc": 21.0, "jadot_yannick": 122.0, "le_pen_marine": 49.0, "nb_exprime": 1236.0, "nb_vote_nul": 7.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1544.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1264, "quartier_bv": "42", "geo_point_2d": [48.86023345378259, 2.371334740876286], "melenchon_jean_luc": 308.0, "poutou_philippe": 5.0, "macron_emmanuel": 541.0}, "geometry": {"type": "Point", "coordinates": [2.371334740876286, 48.86023345378259]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6646f84a123765ab2ed415deabf1ff119eed216c", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 100, "zemmour_eric": 103.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "5-19", "geo_shape": {"coordinates": [[[2.356009055994515, 48.840987142104765], [2.356012675487317, 48.84099657432758], [2.355981293129167, 48.84107646760727], [2.355954537374604, 48.841153640026576], [2.355959546206798, 48.84117038525757], [2.355993147219233, 48.84117724392759], [2.356177761092749, 48.84114264266501], [2.356376882398676, 48.84110521243163], [2.35656149712476, 48.841070610581944], [2.356760616517461, 48.84103317970011], [2.35694523074464, 48.840998576356675], [2.3571443495865623, 48.84096114483368], [2.357328963292839, 48.84092654179512], [2.35752808158398, 48.840889109631014], [2.357712694780346, 48.84085450599807], [2.357911812520697, 48.840817073192774], [2.35809642521822, 48.840782468066095], [2.358295543770221, 48.84074503462702], [2.358480154584292, 48.84071042979789], [2.358679272585487, 48.84067299571767], [2.358863884252074, 48.84063839030145], [2.359063000340012, 48.8406009555728], [2.3592476115077172, 48.84056634866286], [2.3594467270448343, 48.840528913293106], [2.359631337691433, 48.84049430668803], [2.359830452677726, 48.840456870677166], [2.360015062814475, 48.84042226347767], [2.360214178612376, 48.84038482683295], [2.360398786887763, 48.84035021813251], [2.360402621108057, 48.840349874391066], [2.360599142491347, 48.84035083684923], [2.360798557256913, 48.84035206896517], [2.360995078666913, 48.84035302987357], [2.361194493450224, 48.840354261329466], [2.361391014864666, 48.840355222486785], [2.361590429665717, 48.84035645328263], [2.361786951106835, 48.840357412890164], [2.361986365925612, 48.840358643025965], [2.362076095698697, 48.840333210011565], [2.362069538242214, 48.840314596892135], [2.362021550031365, 48.84024921266595], [2.361967247067455, 48.84016810893584], [2.361880031851395, 48.84004927218486], [2.361831525640164, 48.839976825995464], [2.361825729315899, 48.83996816837598], [2.3618193713754, 48.83996398389314], [2.361642745607616, 48.839907924859695], [2.361467766060634, 48.839852759322014], [2.361291141048022, 48.839796699763845], [2.36111616224657, 48.83974153370636], [2.36093953798893, 48.839685473623426], [2.36076455993301, 48.839630307046214], [2.360587936430545, 48.83957424643851], [2.360412959120159, 48.83951907934149], [2.36023633638371, 48.8394630173098], [2.360061358445408, 48.83940785058498], [2.359884736464147, 48.839351788028615], [2.359709760633794, 48.83929662079128], [2.359533139407517, 48.83924055771018], [2.359358164322699, 48.83918538995309], [2.359181543851614, 48.83912932634729], [2.3590065695123332, 48.8390741580704], [2.358829949796237, 48.839018093939906], [2.358654976213562, 48.83896292424394], [2.358607212043556, 48.838947762971635], [2.358602586078861, 48.83894757268422], [2.358562268084051, 48.838999703122326], [2.358514330878688, 48.83911118583257], [2.358463534694621, 48.83922534947574], [2.358415597070555, 48.83933683212389], [2.35836480045043, 48.83945099570207], [2.358316862418727, 48.83956247738886], [2.358266065362336, 48.839676640902034], [2.358218126900848, 48.83978812342605], [2.358167329408287, 48.83990228687421], [2.358149355471566, 48.83990814422367], [2.357976052692857, 48.839864040237984], [2.357812245081845, 48.83982018393379], [2.3576389415184282, 48.83977607944888], [2.357475134467506, 48.8397322226796], [2.357301831481812, 48.839688117702906], [2.357138025002179, 48.83964425956925], [2.35713438509781, 48.83964365362219], [2.356985884920897, 48.83963293907099], [2.356727243565421, 48.839613326460984], [2.35657874356971, 48.83960261050475], [2.356564096783968, 48.83960923738287], [2.356508860319818, 48.83974618416735], [2.356459344128717, 48.83987225059781], [2.356404107110608, 48.8400091973017], [2.356354589042639, 48.84013526455104], [2.356305072108773, 48.840261330873695], [2.356249834272987, 48.840398277458654], [2.3562003168357792, 48.84052434370828], [2.356145078434903, 48.8406612911119], [2.356095560494548, 48.84078735728848], [2.356040321550792, 48.84092430371215], [2.356022185434939, 48.840970476531616], [2.356009055994515, 48.840987142104765]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 19, "roussel_fabien": 26.0, "nb_emargement": 1147.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 90.0, "le_pen_marine": 51.0, "nb_exprime": 1131.0, "nb_vote_nul": 2.0, "arr_bv": "05", "arthaud_nathalie": 6, "nb_inscrit": 1396.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "18", "geo_point_2d": [48.84010590215067, 2.358679979400486], "melenchon_jean_luc": 270.0, "poutou_philippe": 2.0, "macron_emmanuel": 423.0}, "geometry": {"type": "Point", "coordinates": [2.358679979400486, 48.84010590215067]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4d0de3f0e4f69996d50c55b052355338c9456660", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 74, "zemmour_eric": 86.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-56", "geo_shape": {"coordinates": [[[2.355495726112641, 48.83138338298704], [2.3555117231989042, 48.83134923012888], [2.355561287962654, 48.831231767708566], [2.355616347530101, 48.83110728019236], [2.355665913190167, 48.8309898177107], [2.355720972252234, 48.83086533011942], [2.355770536084433, 48.83074786756166], [2.355825594641131, 48.83062337989539], [2.355825191927975, 48.83062157448593], [2.355758776021207, 48.830605537096865], [2.355641300955162, 48.83050039453424], [2.355523741587417, 48.83039549781746], [2.355406267457687, 48.83029035590364], [2.355288709036501, 48.830185458936214], [2.355171235865214, 48.83008031587245], [2.35505367839058, 48.82997541865439], [2.354936207517544, 48.82987027624675], [2.35481864962739, 48.82976537877065], [2.354701179712778, 48.82966023521313], [2.354583622769164, 48.82955533748639], [2.354466153790709, 48.82945019457769], [2.354348597804659, 48.82934529570091], [2.354231129773581, 48.829240152541686], [2.354113574722914, 48.82913525431357], [2.353996107639003, 48.82903011090379], [2.353878553546092, 48.8289252115257], [2.3537610874094392, 48.82882006786542], [2.353643535613917, 48.828715169143365], [2.353526069062479, 48.828610025225174], [2.353408518224597, 48.82850512535318], [2.353291052620404, 48.82839998118447], [2.353173502717846, 48.828295081961144], [2.353056038060889, 48.82818993754191], [2.352938489115958, 48.82808503716864], [2.35292247708799, 48.8280820365622], [2.352901448154419, 48.82808759423314], [2.35283882049259, 48.8281197308478], [2.3528423243226, 48.82812651130232], [2.352722881355415, 48.82819395470884], [2.352655185556027, 48.8282317307507], [2.352650357046243, 48.82823871523473], [2.352652945509498, 48.828371759241], [2.352654435595363, 48.82850396266719], [2.352657022720064, 48.828637006634565], [2.352658512823747, 48.828769210029414], [2.352661101334155, 48.82890225397261], [2.352662591455865, 48.82903445733613], [2.352665178627705, 48.829167501240406], [2.3526666687784, 48.829299703673314], [2.352669257324796, 48.82943274845267], [2.352670747493518, 48.829564950854255], [2.352672236296473, 48.82969715413219], [2.352674824887875, 48.82983019796497], [2.352674770489903, 48.82983106826328], [2.352654544366173, 48.829946122556535], [2.3526371119891, 48.8300744595005], [2.352623513235061, 48.83008264932674], [2.352499077883493, 48.83008245956427], [2.352401754850697, 48.83007911398691], [2.352394960060886, 48.830077903513235], [2.352219140319707, 48.83001068467693], [2.352041713791415, 48.829943559398885], [2.35186589494751, 48.82987634093452], [2.351688469331275, 48.829809215124385], [2.351512651396017, 48.829741996132675], [2.35133522669184, 48.82967486979047], [2.351159409665025, 48.829607650271434], [2.350981985872906, 48.829540523397164], [2.350806169765837, 48.82947330245145], [2.350628746885882, 48.829406175045115], [2.3504529330383113, 48.8293389544788], [2.350275509708162, 48.829271826533], [2.350099696769133, 48.829204605439344], [2.349922274351147, 48.829137476961506], [2.3497464623318782, 48.82907025444125], [2.349569040825855, 48.82900312543132], [2.349555436144578, 48.82900314857262], [2.349363783901301, 48.829076509462205], [2.349180205423062, 48.82914546837557], [2.348996627832444, 48.829214426110966], [2.34880497402613, 48.829287786091264], [2.348621394064756, 48.82935674413385], [2.348429739207231, 48.82943010350356], [2.348422911477812, 48.82944146046722], [2.348429345514024, 48.829450485657105], [2.348512773575481, 48.82957037962895], [2.348600672305193, 48.82969195272446], [2.348621773577649, 48.82973117239882], [2.348647781563868, 48.82972951260227], [2.348723218436028, 48.8297087386891], [2.348936713832478, 48.829648302138025], [2.349117727761744, 48.8295984539333], [2.34912076750536, 48.82959785890265], [2.349177116184716, 48.82959140406648], [2.349207233538055, 48.82958879248968], [2.349217987330915, 48.82958756130532], [2.349331087258146, 48.82957775474401], [2.349483655239341, 48.82956027795376], [2.349508247388261, 48.82956661738912], [2.349535430172627, 48.82956151919024], [2.349541429640393, 48.8295617191035], [2.349626652736577, 48.829568193991605], [2.349846340709048, 48.82960877830974], [2.34993307236937, 48.829622862681155], [2.349935315796491, 48.829623421694095], [2.350107396184207, 48.82967850456242], [2.350289989643173, 48.82973661671884], [2.350462070779268, 48.82979169907129], [2.350644665041251, 48.82984980978106], [2.35081674692572, 48.82990489161764], [2.350999340617339, 48.82996300177262], [2.351171423250177, 48.83001808309334], [2.351354019084673, 48.83007619360767], [2.351526102465782, 48.83013127441251], [2.351708699103269, 48.83018938348015], [2.351880783232847, 48.830244463769155], [2.352063379299854, 48.83030257228205], [2.352235464177794, 48.83035765205513], [2.352418062387597, 48.83041576092737], [2.352590148013904, 48.83047084018457], [2.352708137444169, 48.830508387258234], [2.352721686911827, 48.83052008317587], [2.352749437893553, 48.83052354575033], [2.352814047511234, 48.83054410607964], [2.352986892354851, 48.830598777850454], [2.353169492246801, 48.83065688556294], [2.353342337837205, 48.83071155681453], [2.353524938531522, 48.8307696630792], [2.3536977848573573, 48.830824334710975], [2.353880384980794, 48.83088244041976], [2.354053232053313, 48.830937111532315], [2.354235834330043, 48.83099521669995], [2.3544086821492503, 48.83104988729331], [2.354591285217284, 48.8311079919124], [2.354764133794304, 48.83116266108724], [2.354946736280108, 48.831220766049796], [2.355119585603904, 48.83127543470548], [2.355302190254232, 48.83133353822748], [2.355475040313477, 48.83138820726329], [2.355495726112641, 48.83138338298704]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 56, "roussel_fabien": 33.0, "nb_emargement": 1362.0, "nb_procuration": 75.0, "nb_vote_blanc": 18.0, "jadot_yannick": 106.0, "le_pen_marine": 87.0, "nb_exprime": 1336.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1663.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1362, "quartier_bv": "51", "geo_point_2d": [48.82987339597645, 2.353083614948575], "melenchon_jean_luc": 459.0, "poutou_philippe": 7.0, "macron_emmanuel": 393.0}, "geometry": {"type": "Point", "coordinates": [2.353083614948575, 48.82987339597645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6090dfa4df9bf1f1522a7a2ce67ad7fa57faa5c8", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 71, "zemmour_eric": 64.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "3-5", "geo_shape": {"coordinates": [[[2.358904825827535, 48.85862198387922], [2.358891399365444, 48.85863270503452], [2.358763785000126, 48.85872004864756], [2.3586254807711162, 48.858819864553595], [2.3584978655125752, 48.858907206969064], [2.358359560277417, 48.85900702255093], [2.358231944114683, 48.859094364668024], [2.358093637862186, 48.859194180825064], [2.357966022158184, 48.85928152265117], [2.357823649491364, 48.85938240937618], [2.357704572397009, 48.85946895314513], [2.357562198711759, 48.85956983954203], [2.35744312076584, 48.859656382136926], [2.357300746062155, 48.85975726820577], [2.357181667242486, 48.85984381142514], [2.357039291520354, 48.85994469716588], [2.356920211838018, 48.86003124011048], [2.356917038700995, 48.86006061554797], [2.356940118883749, 48.860085671296716], [2.35705821986463, 48.86019021921409], [2.357168070910271, 48.86028802884183], [2.357286172807271, 48.860392576515196], [2.357396024718605, 48.86049038501654], [2.357505878394266, 48.86058819431507], [2.357623980286581, 48.86069274161942], [2.357733834827845, 48.86079054979155], [2.3578519376363962, 48.86089509685186], [2.357961791658219, 48.86099290568884], [2.358079896745793, 48.86109745251244], [2.358189751622346, 48.86119526112233], [2.358307857626079, 48.86129980770185], [2.358308282573315, 48.861300166121765], [2.358402566035509, 48.86137578597571], [2.358520671512538, 48.86148033232091], [2.358628901515086, 48.86157639963397], [2.358747009263968, 48.86168094574417], [2.35885523872655, 48.86177701372719], [2.358973347384507, 48.861881559595076], [2.359081579055267, 48.86197762646401], [2.3591996872592, 48.86208217208233], [2.359307919753013, 48.86217823962848], [2.359426030228844, 48.862282785011764], [2.3595342621937743, 48.86237885232851], [2.359652373578705, 48.86248339746949], [2.359760607751837, 48.86257946367219], [2.359784038339644, 48.86260360424364], [2.359824027707402, 48.86259258353737], [2.359824402358348, 48.86259237779263], [2.359964253418501, 48.86251251655866], [2.360106124231096, 48.86243275858979], [2.360245974430926, 48.86235289701507], [2.360387844366629, 48.86227313960008], [2.36052769371718, 48.86219327678537], [2.360669562786839, 48.86211351902491], [2.360809412629043, 48.8620336567761], [2.3609512808437962, 48.861953897770896], [2.36109112846268, 48.861874035174104], [2.361232995800469, 48.86179427672276], [2.36124470213129, 48.861787691238696], [2.361250840998093, 48.861785721160565], [2.361343221654405, 48.8617796966355], [2.361426896861782, 48.86176851820127], [2.361446797454276, 48.86176830871719], [2.361457039016995, 48.86176490267938], [2.361558288318901, 48.86175137619702], [2.361747347081808, 48.861724757630284], [2.361932271208291, 48.86170005301287], [2.362121329593979, 48.86167343385411], [2.362306251997853, 48.861648728650444], [2.36242121718174, 48.86163254141161], [2.362445517865222, 48.861616166073716], [2.362436619786164, 48.861588544716135], [2.362571331014408, 48.8615266048663], [2.362750450614259, 48.86144424785452], [2.362885162459284, 48.86138230765061], [2.363064281077838, 48.86129994925913], [2.363198990802672, 48.861238009585946], [2.363204627017414, 48.861229088382416], [2.363169172677522, 48.86109472082668], [2.363133788943016, 48.8609606135301], [2.363098334968415, 48.86082624592082], [2.36306295159858, 48.86069213857081], [2.363027497989465, 48.860557770908024], [2.362992113610336, 48.860423664396635], [2.362956661740562, 48.860289295788306], [2.362921277726099, 48.86015518922349], [2.362885826221591, 48.86002082056164], [2.362850442571891, 48.859886713943425], [2.3628537862149273, 48.859879121466996], [2.3629852142382353, 48.859783757335784], [2.363120258584244, 48.85968576821856], [2.363251684258138, 48.85959040467012], [2.363386727601829, 48.85949241523513], [2.363376517934661, 48.85947674914303], [2.363355466766018, 48.85946712025309], [2.363188191763339, 48.85940759274424], [2.363023664648808, 48.85934953926461], [2.362856390402722, 48.85929001128567], [2.362691865381127, 48.859231958250305], [2.362524590528597, 48.859172429794], [2.362360066248097, 48.85911437629632], [2.362351576981292, 48.85911341732395], [2.362156565192848, 48.85913310982311], [2.361961153396577, 48.85915284304084], [2.361766141313006, 48.85917253490304], [2.36157072785807, 48.859192267475265], [2.36137571684231, 48.85921195870786], [2.361180303091649, 48.859231690641856], [2.360985290417848, 48.8592513812302], [2.360789877734302, 48.85927111253324], [2.360594864765502, 48.85929080248472], [2.360399450423416, 48.859310533142235], [2.360204438522358, 48.859330222464], [2.36000902388447, 48.85934995248333], [2.359997211415152, 48.85934734595252], [2.359867271473075, 48.859259556261435], [2.359738409343408, 48.85917249346399], [2.3596084702846323, 48.8590847025788], [2.359479609008726, 48.85899764038826], [2.359349669459171, 48.85890984920089], [2.359220809059233, 48.858822785818695], [2.359090871733682, 48.8587349952431], [2.35896201219875, 48.858647931568456], [2.358915492101666, 48.85861836358391], [2.358911101317017, 48.85861985366547], [2.358904825827535, 48.85862198387922]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 5, "roussel_fabien": 13.0, "nb_emargement": 1038.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 106.0, "le_pen_marine": 43.0, "nb_exprime": 1025.0, "nb_vote_nul": 1.0, "arr_bv": "03", "arthaud_nathalie": 4, "nb_inscrit": 1292.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1038, "quartier_bv": "11", "geo_point_2d": [48.860485505505736, 2.360259254514983], "melenchon_jean_luc": 224.0, "poutou_philippe": 3.0, "macron_emmanuel": 459.0}, "geometry": {"type": "Point", "coordinates": [2.360259254514983, 48.860485505505736]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "68b1c3c85c6bb6df64c3e406bf6a386aedbfdae3", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 48, "zemmour_eric": 83.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "9-19", "geo_shape": {"coordinates": [[[2.347289402034467, 48.8790127765565], [2.347257284249965, 48.879003537958376], [2.347058216347305, 48.878947177553876], [2.34685657057316, 48.87889113460291], [2.346657503533776, 48.87883477352637], [2.346455859989468, 48.87877872990219], [2.346256793813362, 48.87872236815359], [2.346055149771911, 48.87866632384131], [2.345856084459088, 48.87860996142068], [2.345654442647581, 48.87855391643521], [2.345642596938578, 48.878554315743735], [2.3455245937017413, 48.87859695022825], [2.345405212620326, 48.8786394079871], [2.345287207632927, 48.87868204222689], [2.345167826162943, 48.87872449974577], [2.345157873641266, 48.87872527898825], [2.344972158557446, 48.87869292479289], [2.34473324022979, 48.87865238925111], [2.344667334938626, 48.87864090823177], [2.344636547200442, 48.87862853213294], [2.344625644843379, 48.878631328733526], [2.34450583560186, 48.87861045575398], [2.3442990248875653, 48.878574222182515], [2.344113312228049, 48.87854186755715], [2.343906502070422, 48.87850563240607], [2.343720788536001, 48.87847327716232], [2.3435139789125, 48.87843704223018], [2.343328267229842, 48.878404686383], [2.343121458163242, 48.87836844987128], [2.342935745605596, 48.87833609340564], [2.3429281658723973, 48.87833620379068], [2.342762661590561, 48.87837248814867], [2.342545946673507, 48.87841730092631], [2.342537258869996, 48.878429038990205], [2.342609246952661, 48.87855570535057], [2.3426769414298, 48.878677855002934], [2.342748930184757, 48.87880452214996], [2.342816623960917, 48.87892667078904], [2.342888613399519, 48.8790533378235], [2.342956309178697, 48.87917548726273], [2.342964875661939, 48.87920006360409], [2.342992912287215, 48.87920094053784], [2.343169122885584, 48.87916561395036], [2.343355259478302, 48.87913127685553], [2.343369688283913, 48.87913441193278], [2.343500969852446, 48.87924558538409], [2.343627319379068, 48.87935183926214], [2.343758602034293, 48.87946301330827], [2.34388495261402, 48.87956926689343], [2.344011305061542, 48.879675521241715], [2.344142589363598, 48.87978669393483], [2.344268941512106, 48.879892947083526], [2.344400226912215, 48.88000411947214], [2.344412781621514, 48.88003765419766], [2.344418190199044, 48.880039218976506], [2.344467965057209, 48.880028387472954], [2.344642290398003, 48.879990451137644], [2.344838513169964, 48.879942716542246], [2.345012837953977, 48.879904779664415], [2.345209060063521, 48.879857044458], [2.345383384302253, 48.87981910613842], [2.345579604385804, 48.8797713703135], [2.345581073641178, 48.879770987135174], [2.3457327576532, 48.879724541862515], [2.345928978423804, 48.87967680546834], [2.346123044183099, 48.87966167039395], [2.346126460847202, 48.87966115575072], [2.346260377809252, 48.87965267973454], [2.346454443393625, 48.87963754322334], [2.346588361604943, 48.879629066847585], [2.346623906520651, 48.87961980525822], [2.346618881234066, 48.8795767105736], [2.346732166314101, 48.87948539987402], [2.346858731882461, 48.87937972811974], [2.346972016102128, 48.87928841807611], [2.347098582068588, 48.8791827460568], [2.347211865439276, 48.879091435769865], [2.347293184519296, 48.879023540615954], [2.347289402034467, 48.8790127765565]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 19, "roussel_fabien": 20.0, "nb_emargement": 1200.0, "nb_procuration": 71.0, "nb_vote_blanc": 19.0, "jadot_yannick": 148.0, "le_pen_marine": 54.0, "nb_exprime": 1181.0, "nb_vote_nul": 1.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1465.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1201, "quartier_bv": "36", "geo_point_2d": [48.8791298981335, 2.344855363038907], "melenchon_jean_luc": 287.0, "poutou_philippe": 4.0, "macron_emmanuel": 480.0}, "geometry": {"type": "Point", "coordinates": [2.344855363038907, 48.8791298981335]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e6f585e69dd2bb2eae452f1f70671c8d436597eb", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 70, "zemmour_eric": 74.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "3-6", "geo_shape": {"coordinates": [[[2.367829418244922, 48.85850936745307], [2.367738377837666, 48.8584999514488], [2.367580716905009, 48.858572242540426], [2.367423139141036, 48.8586444951896], [2.367265477333709, 48.8587167858565], [2.367107897332504, 48.85878903807395], [2.366950234650399, 48.858861328316095], [2.366792655137801, 48.85893358011623], [2.366634991580919, 48.8590058699336], [2.366477411194007, 48.85907812130925], [2.366319746762345, 48.85915041070189], [2.366162164138181, 48.85922266164575], [2.366004498831737, 48.859294950613666], [2.365846916696185, 48.85936720114022], [2.365689250525905, 48.85943948878408], [2.365531667516033, 48.859511738886134], [2.365374000459919, 48.8595840270045], [2.3652164165757252, 48.85965627668199], [2.3650587486449233, 48.85972856437561], [2.364901162523453, 48.859800813621334], [2.36474349371786, 48.8598731008902], [2.364585908085008, 48.85994534971861], [2.36456450926429, 48.859938264354554], [2.36455796415347, 48.85980906892846], [2.364551609210387, 48.859683617581034], [2.3645450655374542, 48.85955442123254], [2.364538710656489, 48.859428969855614], [2.364524581395424, 48.85942028357142], [2.364350781733096, 48.859424560547474], [2.364175819047594, 48.85942886616642], [2.364002020690948, 48.85943314264315], [2.363827057958788, 48.8594374468529], [2.363653258181956, 48.859441722815845], [2.363478295381187, 48.85944602741491], [2.363454869758114, 48.859437075712165], [2.36344437546808, 48.859440465291705], [2.363409123297518, 48.8594549209504], [2.363387359419765, 48.85947071373659], [2.363376517934661, 48.85947674914303], [2.363386727601829, 48.85949241523513], [2.363251684258138, 48.85959040467012], [2.363120258584244, 48.85968576821856], [2.3629852142382353, 48.859783757335784], [2.3628537862149273, 48.859879121466996], [2.362850442571891, 48.859886713943425], [2.362885826221591, 48.86002082056164], [2.362921277726099, 48.86015518922349], [2.362956661740562, 48.860289295788306], [2.362992113610336, 48.860423664396635], [2.363027497989465, 48.860557770908024], [2.36306295159858, 48.86069213857081], [2.363098334968415, 48.86082624592082], [2.363133788943016, 48.8609606135301], [2.363169172677522, 48.86109472082668], [2.363204627017414, 48.861229088382416], [2.363198990802672, 48.861238009585946], [2.363064281077838, 48.86129994925913], [2.362885162459284, 48.86138230765061], [2.362750450614259, 48.86144424785452], [2.362571331014408, 48.8615266048663], [2.362436619786164, 48.861588544716135], [2.362445517865222, 48.861616166073716], [2.3624898246794253, 48.86162291876905], [2.362563918839368, 48.8616124862218], [2.362758171325453, 48.86158518773751], [2.36294722886133, 48.861558568170565], [2.363141482308529, 48.86153126907005], [2.363330539452795, 48.86150464889627], [2.363524791135112, 48.861477349165014], [2.363713847898844, 48.861450727485106], [2.363908099168283, 48.86142342802966], [2.364097155540585, 48.86139680574295], [2.364291407781988, 48.86136950477193], [2.364480463751776, 48.86134288277771], [2.3646747142283813, 48.86131558117597], [2.364863769806528, 48.86128895857492], [2.3650580212442, 48.86126165635694], [2.365247076441753, 48.861235032249795], [2.365441326103555, 48.861207730300336], [2.365630380909649, 48.86118110558638], [2.365824630180469, 48.861153802114195], [2.366013684583946, 48.8611271776927], [2.366202738805238, 48.86110055207264], [2.366396988827709, 48.86107324857596], [2.366586042657419, 48.86104662234905], [2.366780290925993, 48.861019317322416], [2.366969344353082, 48.860992691388006], [2.367163593582672, 48.86096538574504], [2.3672382770002622, 48.860968228673435], [2.367251420165402, 48.860949765338454], [2.367264620179562, 48.86089306299784], [2.367296026749152, 48.860759776841796], [2.367328483703075, 48.86062034648402], [2.367344633750934, 48.86055180902495], [2.367351927687237, 48.86054358618729], [2.367355284380483, 48.860533521358064], [2.367370540534111, 48.86046877440771], [2.367402194609026, 48.86033493009033], [2.367433600490326, 48.86020164383111], [2.367465254230131, 48.860067800364064], [2.367496659789087, 48.85993451405619], [2.367528313215422, 48.85980066964099], [2.367559718441123, 48.85966738418373], [2.367591370180334, 48.85953353971239], [2.367622775083605, 48.85940025420649], [2.367654427861483, 48.85926640969346], [2.367685832453442, 48.859133123239644], [2.367717484896032, 48.85899927957699], [2.367748889165668, 48.8588659930745], [2.367780541295005, 48.858732148463645], [2.367811945231309, 48.85859886281184], [2.367829780414413, 48.858523440567815], [2.367829418244922, 48.85850936745307]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 6, "roussel_fabien": 27.0, "nb_emargement": 1190.0, "nb_procuration": 69.0, "nb_vote_blanc": 14.0, "jadot_yannick": 115.0, "le_pen_marine": 42.0, "nb_exprime": 1174.0, "nb_vote_nul": 2.0, "arr_bv": "03", "arthaud_nathalie": 5, "nb_inscrit": 1460.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1190, "quartier_bv": "11", "geo_point_2d": [48.86023685582616, 2.365317054770871], "melenchon_jean_luc": 266.0, "poutou_philippe": 8.0, "macron_emmanuel": 522.0}, "geometry": {"type": "Point", "coordinates": [2.365317054770871, 48.86023685582616]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "340abf04de45ff633e8fc5df2dbbd1a5eea70dbb", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 101, "zemmour_eric": 123.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "6-1", "geo_shape": {"coordinates": [[[2.331920393034483, 48.85241972718718], [2.33193052091253, 48.85245060288338], [2.332139113071716, 48.85248584218187], [2.332304516473426, 48.85251286642125], [2.332513107783535, 48.85254810415888], [2.332678511576729, 48.85257512787979], [2.332887104740219, 48.85261036587032], [2.333052507562343, 48.85263738906513], [2.333055585352358, 48.85263766793352], [2.333213146828879, 48.852639966165356], [2.333366873736082, 48.85264244428142], [2.333524433878016, 48.852644742095706], [2.333678160802712, 48.85264722071117], [2.3336819142422423, 48.85264763103456], [2.333851856920519, 48.85268288232808], [2.334044108752116, 48.85272255556975], [2.334214053282426, 48.8527578063541], [2.334406305666209, 48.852797479011144], [2.334425877682574, 48.85278582160954], [2.334452930173234, 48.85276510343223], [2.334641311531643, 48.85280654479589], [2.334825050513298, 48.852848586902866], [2.335013432458079, 48.85289002857685], [2.335197172034337, 48.85293207010925], [2.335197386739329, 48.85293211896804], [2.335419851504819, 48.852983790664354], [2.335603591739591, 48.853025831569134], [2.335660352207178, 48.85303901560849], [2.335662045801379, 48.85304043789932], [2.335712128590326, 48.853051894948614], [2.335877833758847, 48.85309038267314], [2.336054545297788, 48.85313016875249], [2.336063774401818, 48.85313006707314], [2.336277725851457, 48.85307656065678], [2.33647452270207, 48.85302777028182], [2.336688474672682, 48.85297426313366], [2.336885270752354, 48.85292547207865], [2.33694051327118, 48.85293351177794], [2.336955198999691, 48.85291435684178], [2.337031734763015, 48.85289538183281], [2.337151994603473, 48.852865565345496], [2.337345724217099, 48.85281821440101], [2.337542519103549, 48.852769421358914], [2.3377362466421, 48.8527220697705], [2.337933040788345, 48.85267327698121], [2.338126768977338, 48.852625924764006], [2.338323562394807, 48.8525771313282], [2.338517288520138, 48.85252977756778], [2.338714081208824, 48.852480983485485], [2.338907807973162, 48.85243362999554], [2.338918710314614, 48.85242462652429], [2.338880914965081, 48.852373831630075], [2.338806481735962, 48.852262773479104], [2.338725588810735, 48.852144970372315], [2.338651156239562, 48.85203391210182], [2.338570264020754, 48.85191610886575], [2.338495832107517, 48.85180505047586], [2.338414939232488, 48.85168724710302], [2.338406331446757, 48.85168383681357], [2.338361907652234, 48.85169685937345], [2.338171325817803, 48.851677467467056], [2.3379849104695642, 48.851657948116426], [2.337794328929169, 48.85163855470958], [2.337607915223982, 48.851619034778466], [2.337417332592048, 48.85159964166219], [2.337230919167388, 48.85158012114309], [2.33704033818081, 48.8515607274332], [2.336853923673756, 48.85154120631849], [2.336663342969808, 48.85152181200744], [2.3364769287433003, 48.85150229030469], [2.336286348333447, 48.85148289449326], [2.336099935750019, 48.85146337221002], [2.335913521943541, 48.851443849628474], [2.335722941945668, 48.85142445381789], [2.335536529782479, 48.85140493065589], [2.335345948704543, 48.851385534236634], [2.335341694077601, 48.851385532186555], [2.335179005687565, 48.85140265234544], [2.334943433489884, 48.85142713133828], [2.334780746201758, 48.85144425096258], [2.334545172266318, 48.8514687291628], [2.334382484728974, 48.851485847345664], [2.334366879337986, 48.85147837680987], [2.334338758005444, 48.85136145054056], [2.334311702196541, 48.85124486833816], [2.334283579751102, 48.85112794202376], [2.334256524186883, 48.85101135978442], [2.334228401991372, 48.8508944334325], [2.334201346671833, 48.85077785115625], [2.334173226088748, 48.85066092477438], [2.334146169651181, 48.85054434245361], [2.334118049317911, 48.85042741603423], [2.334090994487719, 48.850310833684084], [2.334078028433146, 48.85030320781143], [2.333891218490722, 48.85029863794908], [2.333675300200991, 48.8502937195237], [2.333488490339403, 48.850289148133285], [2.333272572127008, 48.85028422898106], [2.333085762334775, 48.8502796569618], [2.332869844199726, 48.85027473708281], [2.332683034465239, 48.850270165334], [2.332467116419166, 48.85026524382892], [2.332280306754046, 48.850260671451316], [2.33206438877372, 48.8502557501187], [2.331877579189605, 48.850251176212986], [2.331808711733919, 48.850256806535384], [2.331807257247799, 48.8502819201858], [2.331835995851015, 48.850414306114715], [2.331863776840677, 48.85055411087287], [2.331892515749018, 48.85068649585656], [2.331920297023895, 48.850826301466675], [2.331949036226037, 48.85095868640439], [2.331976817809088, 48.8510984910679], [2.3320055586561272, 48.85123087686653], [2.332033339173211, 48.85137068147513], [2.332023131726026, 48.85138057587805], [2.331973845506012, 48.851388705206915], [2.331920725800906, 48.85139863520857], [2.331910845119791, 48.85140791356792], [2.331925892631737, 48.851550390121304], [2.331937482852426, 48.85167425943847], [2.331952530502587, 48.85181673685368], [2.3319641194831, 48.851940606131045], [2.33197570850718, 48.85206447629276], [2.331990757748815, 48.85220695276146], [2.332002346906981, 48.85233082199166], [2.331927934625457, 48.85240167874009], [2.331920393034483, 48.85241972718718]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 1, "roussel_fabien": 12.0, "nb_emargement": 1057.0, "nb_procuration": 70.0, "nb_vote_blanc": 8.0, "jadot_yannick": 59.0, "le_pen_marine": 50.0, "nb_exprime": 1048.0, "nb_vote_nul": 1.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1310.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1057, "quartier_bv": "22", "geo_point_2d": [48.85184291421659, 2.3347724418693194], "melenchon_jean_luc": 192.0, "poutou_philippe": 3.0, "macron_emmanuel": 468.0}, "geometry": {"type": "Point", "coordinates": [2.3347724418693194, 48.85184291421659]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5cc3d7bb4705b28a84434e25efd3709a2f5a12c0", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 188, "zemmour_eric": 176.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-16", "geo_shape": {"coordinates": [[[2.295365715238077, 48.85451450961388], [2.29534822060358, 48.854524836449194], [2.295245378204075, 48.854585931251485], [2.295129033153775, 48.85465268792653], [2.295110068387849, 48.854651995222284], [2.2949815006986922, 48.85455990073202], [2.294854783794719, 48.85446844475238], [2.2947262170095453, 48.85437634997263], [2.294599500987831, 48.85428489460681], [2.294470936469522, 48.854192799545594], [2.294344219991617, 48.85410134298705], [2.294215656365293, 48.85400924853564], [2.294088940781708, 48.853917791691615], [2.294086838903755, 48.85391580429904], [2.294032728523101, 48.853846222720065], [2.293982769619776, 48.8537811642015], [2.293979610131502, 48.85377847536174], [2.293844738255357, 48.853700231159614], [2.293696086213326, 48.85361359087897], [2.29356121382702, 48.85353534633762], [2.293412562738983, 48.85344870479265], [2.293277692567861, 48.853370459928115], [2.293129042409423, 48.853283818917376], [2.292994171728036, 48.85320557371365], [2.292845522511388, 48.8531189323378], [2.292845067002727, 48.85311865444163], [2.292702688548288, 48.85302801091391], [2.292570619375555, 48.85294367421404], [2.292428241876631, 48.85285303034548], [2.292296172241033, 48.852768692422075], [2.29215379569762, 48.85267804821271], [2.292021728300236, 48.852593710880434], [2.291879352712324, 48.852503066330215], [2.291747284852185, 48.852418727774456], [2.291604910219773, 48.85232808288345], [2.291472844609944, 48.85224374401953], [2.291330470933023, 48.85215309878769], [2.291198404835886, 48.85206876049883], [2.291176763861006, 48.852059697147446], [2.291170931226755, 48.85206078139893], [2.29109743340388, 48.85213517367989], [2.2909862520786293, 48.85224771204232], [2.29087894095183, 48.85235632683574], [2.290767760045492, 48.85246886498086], [2.290660448007837, 48.85257747955665], [2.290549266157868, 48.852690017476405], [2.290441953209348, 48.852798631834645], [2.290330770415533, 48.852911169528994], [2.290223456556138, 48.85301978366967], [2.290112271455908, 48.85313232113049], [2.290004956685625, 48.853240935053634], [2.2898937720043913, 48.85335347229712], [2.28978645632311, 48.853462086002644], [2.289675270698102, 48.85357462302076], [2.289567954106018, 48.85368323650873], [2.289456767537224, 48.853795773301364], [2.289349450034123, 48.85390438657179], [2.289238262521535, 48.854016923139], [2.289130944107611, 48.8541255361918], [2.289019754288426, 48.85423807252553], [2.288912434963564, 48.854346685360746], [2.288801245563249, 48.85445922147711], [2.288693925327442, 48.85456783409475], [2.288582734983402, 48.85468036998566], [2.288475413836641, 48.85478898238569], [2.288364222536382, 48.85490151895045], [2.288256900490937, 48.855010130233616], [2.28814570824693, 48.85512266657291], [2.288038385290514, 48.85523127763849], [2.287927190739825, 48.855343813744234], [2.287819866872323, 48.85545242459219], [2.287712542545211, 48.85556103623254], [2.28760134796219, 48.855673571110906], [2.287537655015341, 48.855718905373585], [2.287559283095921, 48.85573236623356], [2.287698358960726, 48.855833785609825], [2.287833009453932, 48.85592895941327], [2.287967661789482, 48.85602413396444], [2.288106739240224, 48.85612555194017], [2.288109263887816, 48.85612820837394], [2.288180767120059, 48.85624463830742], [2.288253362349898, 48.8563617689834], [2.288324864861798, 48.85647819879818], [2.288397460740977, 48.8565953293621], [2.288468963895485, 48.856711759066286], [2.288541560423911, 48.856828889518134], [2.288613064220935, 48.856945319111674], [2.288685661386441, 48.85706245035077], [2.288757165838265, 48.85717887893447], [2.28882976365324, 48.85729601006151], [2.288901268747491, 48.857412438534595], [2.288973867211841, 48.857529569549534], [2.288975937598661, 48.857531863519256], [2.289097145193247, 48.85762952260177], [2.289231226442833, 48.8577422718727], [2.289352435005386, 48.85783993067817], [2.289486517348869, 48.85795267964165], [2.289607726867137, 48.858050339069294], [2.289741810304527, 48.8581630877254], [2.289813006089304, 48.858220450304984], [2.289858944480748, 48.858234719607346], [2.289900496400443, 48.858208817411374], [2.290040403441151, 48.85811942415299], [2.290184244839871, 48.85802733531072], [2.290324150894289, 48.85793794260526], [2.290467991290387, 48.85784585340686], [2.290607896382921, 48.857756459455736], [2.290751735776503, 48.857664369901244], [2.290891639894908, 48.85757497560381], [2.291035478286082, 48.857482885693194], [2.291175381430265, 48.85739349104938], [2.291319220181808, 48.85730140079072], [2.291459120976774, 48.85721200669182], [2.291602958725818, 48.85711991607704], [2.29174285855891, 48.857030520732515], [2.291886695305462, 48.856938429761655], [2.292026595527318, 48.85684903407884], [2.292170429908523, 48.85675694274381], [2.292310329156384, 48.85666754671468], [2.292454162535011, 48.85657545502356], [2.2925940607965742, 48.8564860595474], [2.292737893172836, 48.85639396750022], [2.292877790472426, 48.85630457077845], [2.293021621846227, 48.85621247837516], [2.293161518171742, 48.85612308130707], [2.293305348543087, 48.85603098854771], [2.293445243894531, 48.85594159113335], [2.293589073251236, 48.85584949891718], [2.293728967628721, 48.855760101156505], [2.293872795995077, 48.855668007685], [2.294012689398507, 48.85557860957798], [2.294156516762428, 48.85548651575042], [2.2942964091918068, 48.85539711729716], [2.294440235553401, 48.85530502311351], [2.294580126996461, 48.85521562521324], [2.294723952355637, 48.85512353067354], [2.294863842836836, 48.855034131527674], [2.295007668556408, 48.85494203663995], [2.295147556700869, 48.85485263713982], [2.295291381417927, 48.85476054189605], [2.295431268588369, 48.85467114204959], [2.295522143675004, 48.85461295171281], [2.295527436210305, 48.85460223374202], [2.295457584155034, 48.8545782439934], [2.295419930352932, 48.85455002075791], [2.295385617799251, 48.854524461298794], [2.295365715238077, 48.85451450961388]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 16, "roussel_fabien": 8.0, "nb_emargement": 1456.0, "nb_procuration": 87.0, "nb_vote_blanc": 11.0, "jadot_yannick": 93.0, "le_pen_marine": 82.0, "nb_exprime": 1436.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1756.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1456, "quartier_bv": "59", "geo_point_2d": [48.855141772259955, 2.2911545318437123], "melenchon_jean_luc": 195.0, "poutou_philippe": 4.0, "macron_emmanuel": 632.0}, "geometry": {"type": "Point", "coordinates": [2.2911545318437123, 48.855141772259955]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "06356c0f62860a6f7d5dc55f380ac1dcfac9ed3d", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 142, "zemmour_eric": 155.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "7-22", "geo_shape": {"coordinates": [[[2.300012827905065, 48.857765154969954], [2.300037469777969, 48.85778173752836], [2.300024824142327, 48.85791534911567], [2.300011851004982, 48.858007796187316], [2.300010599971362, 48.85801671047189], [2.300006299422827, 48.85802272268607], [2.299875346522388, 48.858103424668506], [2.299737526356915, 48.858187180998634], [2.299606571275922, 48.85826788176776], [2.299468751606276, 48.85835163778388], [2.299337795683645, 48.85843233914616], [2.29919997514692, 48.85851609484036], [2.2990690183945333, 48.85859679589657], [2.298931196990726, 48.8586805512688], [2.298800239420881, 48.85876125111963], [2.29866241714999, 48.85884500616991], [2.298667962047959, 48.858860279129296], [2.2988629824260762, 48.85889644728906], [2.299042589626332, 48.85893053547351], [2.299237610527477, 48.858966703020485], [2.299417218215019, 48.85900079064047], [2.299612239627095, 48.85903695847395], [2.299791847814109, 48.859071044630255], [2.299960680518642, 48.85910308710185], [2.300155702702953, 48.85913925314702], [2.300166478411307, 48.85914129834209], [2.300175774859702, 48.85914083647949], [2.300348596061242, 48.859089354421], [2.300540455905662, 48.859037423997336], [2.300558908202224, 48.85904372120594], [2.30060031227449, 48.859161998936536], [2.300644835653264, 48.859290694099116], [2.30068623874186, 48.859408972664966], [2.300730762543931, 48.85953766776692], [2.300772167386793, 48.85965594628468], [2.300805710419084, 48.85975290283217], [2.300819828017728, 48.85976350865323], [2.30085159694575, 48.85975855985304], [2.301026944577612, 48.859687718619334], [2.301197910069462, 48.8596183687473], [2.301373255395702, 48.85954752698927], [2.301544219978625, 48.859478175714436], [2.301719564350126, 48.85940733433933], [2.301890528012062, 48.859337982560966], [2.302061491218863, 48.85926863053408], [2.302236834181833, 48.859197788387654], [2.302407796467648, 48.859128435857265], [2.302583139850864, 48.85905759320238], [2.3027541012156902, 48.85898824016849], [2.302929442293411, 48.85891739698934], [2.303100402737253, 48.85884804345194], [2.303275742884224, 48.85877719885716], [2.303292838188608, 48.85875880586831], [2.303266887591743, 48.85874100945048], [2.303209517118473, 48.85872179796484], [2.303031434678656, 48.85866171829329], [2.30286994579826, 48.858607641079935], [2.302691864152322, 48.85854755999762], [2.302530375978094, 48.85849348232045], [2.3023522951139093, 48.8584334007266], [2.30219080628315, 48.858379322577676], [2.302029319150515, 48.85832524421614], [2.301851239439036, 48.85826516186758], [2.301689753012672, 48.858211083042235], [2.301511674070996, 48.8581510010815], [2.301510277262024, 48.8581355294212], [2.3016949707322523, 48.85805364365455], [2.301870790223418, 48.85797514676134], [2.302055481183605, 48.85789326131779], [2.302231299590435, 48.85781476388359], [2.302415990778421, 48.85773287787979], [2.3025918067381372, 48.857654379896594], [2.30259655709963, 48.857650682452956], [2.302683993817089, 48.8575268678431], [2.302772797139412, 48.85739918489924], [2.302860234378799, 48.857275370140464], [2.302949036828568, 48.857147687936155], [2.303036471864348, 48.85702387301264], [2.303125274828401, 48.85689618975729], [2.303212709023358, 48.85677237467697], [2.303301509752124, 48.85664469215323], [2.303298149977279, 48.85663420318998], [2.3031414798506322, 48.856542813006016], [2.302980607644748, 48.856449844941466], [2.302823939992345, 48.856358454334504], [2.302663067559387, 48.85626548581969], [2.302662319699106, 48.856252421909325], [2.302789019660841, 48.856167221314635], [2.302911258319138, 48.85608732058049], [2.303037957460425, 48.85600212060883], [2.303160196712399, 48.85592221961648], [2.303164199580479, 48.85591519017369], [2.303160960997863, 48.85587424429783], [2.303152758003995, 48.85579839426115], [2.303113835808103, 48.85577567018306], [2.303075788384682, 48.85579993897136], [2.302937824077687, 48.85588757088518], [2.302795602174829, 48.855978516239865], [2.3026576369237732, 48.85606614781656], [2.302515414044444, 48.85615709282362], [2.302377447849421, 48.85624472406318], [2.30223522399351, 48.85633566872262], [2.302097256854413, 48.856423299625], [2.301955032022016, 48.85651424393684], [2.30181706393884, 48.85660187450209], [2.30167483812995, 48.85669281846623], [2.301536869102687, 48.85678044869436], [2.3013946436801618, 48.85687139231881], [2.301256673708707, 48.85695902220979], [2.301114445946918, 48.85704996547864], [2.300976475031364, 48.85713759503246], [2.300834246293063, 48.857228537953645], [2.300696274433506, 48.85731616717029], [2.3005540447185853, 48.85740710974381], [2.300416071914917, 48.857494738623316], [2.3002738412234702, 48.85758568084922], [2.300135867475686, 48.8576733093915], [2.300033465893634, 48.85773878428224], [2.300012827905065, 48.857765154969954]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 22, "roussel_fabien": 6.0, "nb_emargement": 1064.0, "nb_procuration": 66.0, "nb_vote_blanc": 12.0, "jadot_yannick": 54.0, "le_pen_marine": 68.0, "nb_exprime": 1048.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1322.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "28", "geo_point_2d": [48.85806061831014, 2.301357385690294], "melenchon_jean_luc": 112.0, "poutou_philippe": 6.0, "macron_emmanuel": 477.0}, "geometry": {"type": "Point", "coordinates": [2.301357385690294, 48.85806061831014]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a55b5fc495c5dc697be3dbf6d4eac316d8c7a1e5", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 193, "zemmour_eric": 206.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-50", "geo_shape": {"coordinates": [[[2.257679316421076, 48.84305814959561], [2.257694685745685, 48.843069488008815], [2.257717860210538, 48.843100711389184], [2.257802265442399, 48.84321183709291], [2.257883420735583, 48.84332117979506], [2.257967825302186, 48.843432306250875], [2.258048981298813, 48.8435416479198], [2.258133387937978, 48.843652774245285], [2.25821454324994, 48.84376211667114], [2.258298950611971, 48.84387324195855], [2.2583801066145828, 48.84398258425047], [2.258464514686688, 48.844093709399104], [2.258545671380058, 48.8442030515571], [2.258545488650783, 48.844211202319435], [2.2584570113116538, 48.844321975304666], [2.25836185947764, 48.844439161619924], [2.258273381361218, 48.84454993444677], [2.258178228698117, 48.844667120591986], [2.258089749804393, 48.84477789326037], [2.2579945963121952, 48.84489507923559], [2.257906116641159, 48.84500585174551], [2.257810962319752, 48.84512303755074], [2.257722481871496, 48.845233809902155], [2.257627326720973, 48.84535099553738], [2.25764047891013, 48.84536420525088], [2.257801431779702, 48.84535526945855], [2.258014455755133, 48.84534593871623], [2.258175408504169, 48.84533700242063], [2.258388432337973, 48.84532767101223], [2.258549384966465, 48.84531873421341], [2.258549864833009, 48.8453187192001], [2.258575661417118, 48.84533124900608], [2.258591600069705, 48.84532370134307], [2.258646198261584, 48.84532258631122], [2.258828583684803, 48.84531912960302], [2.258973832629417, 48.84531616209068], [2.259173681102309, 48.84531207823854], [2.259356066453865, 48.84530862072612], [2.259538451781118, 48.84530516293567], [2.259738298792255, 48.84530107903123], [2.259920684067855, 48.845297620658016], [2.260120532395435, 48.84529353522417], [2.260302917619165, 48.845290076268235], [2.260448670726273, 48.84528709659298], [2.260498110109778, 48.84528557828538], [2.2605000160128492, 48.84528416906269], [2.260554111157536, 48.84528306354167], [2.260753958004423, 48.845278977940474], [2.260964326362802, 48.845271875762855], [2.261164173147275, 48.84526778857714], [2.261374541404682, 48.845260685678106], [2.2615743881013293, 48.84525659870639], [2.261784754895003, 48.84524949507759], [2.2619846028919532, 48.845245406529706], [2.262194969584533, 48.84523830217953], [2.262206466258588, 48.845225307043314], [2.262151138313946, 48.845152090814906], [2.26209799858352, 48.845075434473266], [2.262102448924176, 48.8450665842468], [2.262078092419102, 48.84504718840547], [2.262051339713273, 48.845008595125115], [2.261969837160498, 48.84488814163179], [2.261889945500646, 48.844772891866874], [2.261808445064661, 48.844652437347285], [2.261728552760591, 48.844537187441844], [2.26164705305347, 48.844416733686124], [2.261567161467509, 48.844301483648515], [2.261485662514825, 48.844181028858124], [2.261405771647067, 48.844065778688396], [2.261324273423123, 48.84394532466186], [2.261244384636073, 48.84383007436845], [2.261243641816997, 48.843823936073896], [2.261298315055636, 48.84369339727182], [2.261351598045314, 48.84356180927512], [2.261406270738584, 48.84343127039303], [2.261459554562857, 48.843299681426494], [2.2615142267108608, 48.843169142464404], [2.261567508632087, 48.843037553410404], [2.261622180234736, 48.84290701436831], [2.261675462977914, 48.84277542524376], [2.26167449264391, 48.842769089479134], [2.261576050937796, 48.84263881499089], [2.261479199834668, 48.84251931120447], [2.261452328896747, 48.84249399168746], [2.261438025825298, 48.842493807150305], [2.261393988857229, 48.84251408500628], [2.26122751463442, 48.842589162765215], [2.261073957829621, 48.8426598708896], [2.260920401957803, 48.84273057972004], [2.260753926361285, 48.84280565680539], [2.260600368276034, 48.842876364308154], [2.260433891752854, 48.84295144093833], [2.260415085587486, 48.84294921294927], [2.2603123685391, 48.842853473839085], [2.26021486524314, 48.84276415690737], [2.260195271620743, 48.8427624060764], [2.260052823052193, 48.84283803369536], [2.259916661604359, 48.84291151096766], [2.259774212224005, 48.84298713824479], [2.259638049993847, 48.84306061519013], [2.259495599801685, 48.8431362421254], [2.259359436789199, 48.84320971874385], [2.259331761356018, 48.84321871468923], [2.259329224154272, 48.843229264794175], [2.259206636444831, 48.84331001126091], [2.259103525887534, 48.84337509696144], [2.259000416422326, 48.84344018347706], [2.258877827707364, 48.84352092959162], [2.258858427038656, 48.8435208282869], [2.258723893957221, 48.843429375900634], [2.25859088834733, 48.84333939339817], [2.2584563562036832, 48.84324794069616], [2.258323351518611, 48.84315795788161], [2.258188820299944, 48.84306650576314], [2.258055816539886, 48.84297652263656], [2.25792128627179, 48.842885069303065], [2.257788283436641, 48.84279508586441], [2.257771189192933, 48.84279378993579], [2.257650315162777, 48.84284481404904], [2.257571197762888, 48.84287821138855], [2.257566230394812, 48.84288964575117], [2.2576226513815962, 48.842968061360224], [2.257680630109806, 48.84304618081587], [2.257679316421076, 48.84305814959561]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 50, "roussel_fabien": 10.0, "nb_emargement": 1311.0, "nb_procuration": 75.0, "nb_vote_blanc": 9.0, "jadot_yannick": 47.0, "le_pen_marine": 98.0, "nb_exprime": 1305.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1704.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1314, "quartier_bv": "61", "geo_point_2d": [48.84415865519798, 2.2599382175374374], "melenchon_jean_luc": 111.0, "poutou_philippe": 2.0, "macron_emmanuel": 602.0}, "geometry": {"type": "Point", "coordinates": [2.2599382175374374, 48.84415865519798]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9d93f4e6960a98f01d531a6bdc6580609f43e0b9", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 173, "zemmour_eric": 188.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-55", "geo_shape": {"coordinates": [[[2.294458479574836, 48.884378342392495], [2.294464018983086, 48.884375711207454], [2.294597129590354, 48.884274612653535], [2.294720062781389, 48.884182668573295], [2.294842996913977, 48.884090723467885], [2.294976106057053, 48.88398962446649], [2.295099039281857, 48.88389767908205], [2.295232147434428, 48.88379657977824], [2.295355078387895, 48.88370463410676], [2.295488185549971, 48.883603534500544], [2.295611116959237, 48.883511588558086], [2.295744223130824, 48.88341048864948], [2.2958671536201702, 48.88331854332723], [2.295956198642404, 48.88325090819144], [2.2959616239997658, 48.883241669750205], [2.295923082661246, 48.88321934374534], [2.295887635038107, 48.88309084963274], [2.295852108354706, 48.88296206364405], [2.29581666108181, 48.88283356948041], [2.295781133385905, 48.88270478343251], [2.295745686463252, 48.882576289217816], [2.295710160481913, 48.88244750312674], [2.295674713897334, 48.88231900976026], [2.2956391869034922, 48.882190223610024], [2.2956037406813072, 48.88206172929323], [2.295568215402009, 48.88193294309983], [2.295532769530049, 48.88180444873196], [2.295497243238251, 48.881675662479374], [2.295468004116497, 48.88166060999953], [2.295456551400597, 48.88166352390244], [2.2952810585629, 48.88158428113791], [2.295115255799426, 48.88150978340109], [2.294939762635714, 48.88143054011718], [2.294773960849926, 48.8813560418973], [2.294598470099185, 48.8812767972108], [2.294432669291182, 48.8812022985079], [2.294422761909257, 48.88120085873748], [2.294226470791532, 48.88122232904165], [2.294032641710968, 48.88124352935228], [2.29383635027148, 48.881264999016], [2.293642520873299, 48.88128619869421], [2.293448689941614, 48.881307398949424], [2.29325239803297, 48.88132886675522], [2.29305856814707, 48.881350066386055], [2.292862275916793, 48.88137153355145], [2.292668445713392, 48.88139273254984], [2.292472153149175, 48.88141419997402], [2.292278322640396, 48.881435397440725], [2.292082029754658, 48.88145686422449], [2.291888198928301, 48.88147806105877], [2.29169190572085, 48.88149952720206], [2.291680509245105, 48.88150871934834], [2.291686440275212, 48.88161844204876], [2.291692371183538, 48.88172817552912], [2.291698300900218, 48.88183789819899], [2.291704233222045, 48.88194763166492], [2.291710162988603, 48.88205735431233], [2.291716095360424, 48.882167087755796], [2.291713948227778, 48.882172260626255], [2.291706337758042, 48.882180092888554], [2.291685787125131, 48.8821879888898], [2.291688158986304, 48.88220288693753], [2.291688602409632, 48.882205675704625], [2.291708381351358, 48.88221501631286], [2.2918638572464918, 48.882292751923124], [2.29201875527699, 48.882370197917155], [2.2921736551192993, 48.882447644612704], [2.292329132403446, 48.88252537960232], [2.292484031817688, 48.882602824978036], [2.29263951002842, 48.88268055955363], [2.292794411717128, 48.88275800542419], [2.292949890854453, 48.88283573958577], [2.293104792114982, 48.882913184136505], [2.293260272178898, 48.88299091788405], [2.293263964916036, 48.88299372942093], [2.293358838235227, 48.883106777392435], [2.293454671429834, 48.88322097039706], [2.293549545576997, 48.88333401819409], [2.293645380983615, 48.88344821013129], [2.293740255958866, 48.88356125775383], [2.293836090826099, 48.88367545040603], [2.293930966629242, 48.88378849785411], [2.294026802345146, 48.883902689430755], [2.29412167897629, 48.88401573670437], [2.294217516892151, 48.88412992811281], [2.294312394339123, 48.88424297611117], [2.294408231727809, 48.88435716733533], [2.294458479574836, 48.884378342392495]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 55, "roussel_fabien": 7.0, "nb_emargement": 1304.0, "nb_procuration": 66.0, "nb_vote_blanc": 12.0, "jadot_yannick": 72.0, "le_pen_marine": 54.0, "nb_exprime": 1289.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1599.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1305, "quartier_bv": "65", "geo_point_2d": [48.88248858536138, 2.2940397073013212], "melenchon_jean_luc": 123.0, "poutou_philippe": 2.0, "macron_emmanuel": 632.0}, "geometry": {"type": "Point", "coordinates": [2.2940397073013212, 48.88248858536138]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "313924cb9f87cc4a644e95e505b8548b528b09a0", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 50, "zemmour_eric": 47.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "10-1", "geo_shape": {"coordinates": [[[2.357567060143579, 48.875187663824235], [2.357625847669934, 48.87516082386908], [2.357708963372721, 48.87503938829834], [2.357790743379672, 48.87491976484905], [2.357873858302252, 48.87479833003657], [2.357955637563092, 48.87467870554919], [2.358038751716566, 48.87455727059571], [2.358120530220214, 48.87443764596954], [2.358203643604591, 48.87431621087507], [2.35828542133998, 48.874196587009415], [2.358368533955271, 48.87407515177388], [2.358450310944569, 48.873955526870176], [2.3584516785494642, 48.87395396665632], [2.358544943456814, 48.8738687345196], [2.358681776928439, 48.87374347243422], [2.358775041082363, 48.87365824010196], [2.358911874810965, 48.87353297773701], [2.359005138211467, 48.87344774520922], [2.359005166557709, 48.87343724380455], [2.358881535688404, 48.873323411849725], [2.358759465423479, 48.87321287159232], [2.358758791319502, 48.87320295368936], [2.358855616377408, 48.87309638287574], [2.358953006192101, 48.872991414921046], [2.359049829096126, 48.8728848439226], [2.359147219487102, 48.87277987579713], [2.359244041589487, 48.87267330552041], [2.3593414311936662, 48.87256833721679], [2.359438252516548, 48.87246176586332], [2.359535639970555, 48.872356797374295], [2.359632461866155, 48.872250225850635], [2.359729848533182, 48.87214525718349], [2.359826669627171, 48.87203868638157], [2.35992405550743, 48.87193371753632], [2.360020875821926, 48.87182714565766], [2.360118260915322, 48.8717221766343], [2.360215645616117, 48.87161720752173], [2.360312464745718, 48.871510635376666], [2.360326921160137, 48.87149644463131], [2.360302773582744, 48.87147916430135], [2.360075074366522, 48.871425370976866], [2.359865868707558, 48.871374929924436], [2.359860728570438, 48.87137441049709], [2.359656351702491, 48.87137978985841], [2.359453807127673, 48.871385276704224], [2.359249431538323, 48.871390655378036], [2.359046886878397, 48.871396141535214], [2.358844342175806, 48.87140162734968], [2.358639966459378, 48.8714070049828], [2.3584374216716952, 48.87141249010862], [2.3582330445073882, 48.871417867039646], [2.358030499634623, 48.871423351476864], [2.35782612374895, 48.871428727720335], [2.357818406605392, 48.8714305587408], [2.357680911340759, 48.871498923473794], [2.357494321598304, 48.87159267006776], [2.357444089980739, 48.87161764575852], [2.357420282481658, 48.87162547440163], [2.357418910882247, 48.871629018526086], [2.3573316463417893, 48.87167240716723], [2.357224301987839, 48.871725124675535], [2.357086803813761, 48.87179348780127], [2.356979458962591, 48.871846205084275], [2.356974957529249, 48.871856784101475], [2.357050738550924, 48.87198067931448], [2.3571261356759923, 48.87210389520024], [2.357201917416765, 48.872227790289806], [2.357277316620315, 48.872351006060086], [2.357353097705928, 48.8724749019182], [2.357428497635898, 48.87259811666643], [2.3575042808038082, 48.872722012408396], [2.357579680074835, 48.872845227925744], [2.357655463972965, 48.87296912264505], [2.357730865322626, 48.87309233804689], [2.357728158860104, 48.87310186189602], [2.357574199990975, 48.87320995354512], [2.357425667112599, 48.87331171130651], [2.357277133664968, 48.87341346797495], [2.357123172938818, 48.87352155901346], [2.356974638290724, 48.87362331618645], [2.356820677690866, 48.87373140592342], [2.356759705559397, 48.873743256217], [2.356761412719699, 48.87376167571446], [2.356761691754098, 48.87376469358949], [2.356774976286638, 48.87378027943366], [2.356839350343237, 48.87389549221501], [2.356911358633214, 48.874024921305256], [2.356975733282738, 48.874140134887], [2.3570477422498293, 48.87426956386649], [2.357112117503496, 48.87438477734934], [2.357184127147608, 48.874514206218116], [2.357248503016419, 48.8746294187028], [2.357320514701, 48.87475884746814], [2.357384889799431, 48.87487406074591], [2.3574569021612612, 48.87500348940053], [2.357521277863649, 48.8751187025794], [2.357556640764891, 48.87518225955716], [2.357567060143579, 48.875187663824235]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 1, "roussel_fabien": 25.0, "nb_emargement": 1124.0, "nb_procuration": 76.0, "nb_vote_blanc": 24.0, "jadot_yannick": 114.0, "le_pen_marine": 39.0, "nb_exprime": 1094.0, "nb_vote_nul": 6.0, "arr_bv": "10", "arthaud_nathalie": 1, "nb_inscrit": 1441.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1124, "quartier_bv": "39", "geo_point_2d": [48.87281742653124, 2.358256325318362], "melenchon_jean_luc": 408.0, "poutou_philippe": 8.0, "macron_emmanuel": 357.0}, "geometry": {"type": "Point", "coordinates": [2.358256325318362, 48.87281742653124]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1369fa0ec332d53677751c832d011d7fdd19c6e4", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 103, "zemmour_eric": 117.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 23.0, "date_tour": "2022-04-10", "id_bvote": "6-20", "geo_shape": {"coordinates": [[[2.328775845315838, 48.8456487286767], [2.328791589858191, 48.84563260780589], [2.328913524273861, 48.84553404272617], [2.329041871355705, 48.84543046176236], [2.329163806187642, 48.84533189641732], [2.329292150911665, 48.84522831515859], [2.329414084797307, 48.84512974954061], [2.32954242852619, 48.845026167994625], [2.32966436145398, 48.84492760300298], [2.32979270418753, 48.84482402116969], [2.329914636180612, 48.84472545500583], [2.330042977919041, 48.84462187288526], [2.330164908965854, 48.84452330644845], [2.330293251071507, 48.84441972404827], [2.330415179809519, 48.844321157330896], [2.330543520919961, 48.84421757464343], [2.330665448711727, 48.84411900765312], [2.330757256192514, 48.84404491009622], [2.330757151437222, 48.84404022832394], [2.330736075549769, 48.84402975964632], [2.330667857722914, 48.8439981691815], [2.33059423906461, 48.8439636794864], [2.330589462888604, 48.84395966768149], [2.330520874779527, 48.84384575092044], [2.330452019043843, 48.84373168871074], [2.330383430172787, 48.84361777183999], [2.330314575050653, 48.843503708628575], [2.330245988130896, 48.84338979256268], [2.330177133610849, 48.84327572924884], [2.330108545940565, 48.84316181217393], [2.330039692010941, 48.84304774965698], [2.329971106303585, 48.842933832487624], [2.329902252987391, 48.84281976896897], [2.329833666506485, 48.84270585258922], [2.329764813792258, 48.84259178896814], [2.329696229285819, 48.842477871594674], [2.329627377161982, 48.8423638087705], [2.329558791893454, 48.84224989128733], [2.329489940371566, 48.84213582836077], [2.329426806646819, 48.842063473111814], [2.329420277783173, 48.84206502299375], [2.329351869309355, 48.84208768843158], [2.329175117660295, 48.842145567139454], [2.328998471717595, 48.842204094620506], [2.328821717918843, 48.84226197279257], [2.328645071184668, 48.84232049974567], [2.328468317972879, 48.84237837649792], [2.328291670447336, 48.84243690292308], [2.328114915074165, 48.84249478003875], [2.327938266757354, 48.84255330593598], [2.327761511971067, 48.84261118163183], [2.327584862851189, 48.84266970790039], [2.327408107277809, 48.84272758306806], [2.327231457378167, 48.84278610790936], [2.327054699643383, 48.84284398344046], [2.326878048952478, 48.84290250775382], [2.326701291804611, 48.842960381865076], [2.326582969968526, 48.84299958199912], [2.32655977385956, 48.84300703486323], [2.326608652436229, 48.84307968547433], [2.3266980876703522, 48.84319194749849], [2.326787099635583, 48.84330377896291], [2.326876535638622, 48.843416040831094], [2.326965548357761, 48.84352787303958], [2.327054985129828, 48.843640134751766], [2.327143998626217, 48.84375196590574], [2.327233011142078, 48.84386379697462], [2.327322450429148, 48.843976058460704], [2.327411463699146, 48.84408789027366], [2.327500903755172, 48.84420015160377], [2.327589917802325, 48.844311982362136], [2.327679358627415, 48.84442424353631], [2.327768373428629, 48.84453607503875], [2.327857815022589, 48.844648336056935], [2.327946830601174, 48.8447601665048], [2.328036272964115, 48.84487242736698], [2.328125289296682, 48.84498425855889], [2.328214732428715, 48.84509651926513], [2.328303749538564, 48.84520834940248], [2.328393193439494, 48.84532060995272], [2.328482211303552, 48.845432440834074], [2.32857165597349, 48.84554470122835], [2.328575295223453, 48.845547586121945], [2.328661806293006, 48.84559279870152], [2.328770093116251, 48.84564897610502], [2.328775845315838, 48.8456487286767]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 20, "roussel_fabien": 5.0, "nb_emargement": 980.0, "nb_procuration": 62.0, "nb_vote_blanc": 1.0, "jadot_yannick": 61.0, "le_pen_marine": 42.0, "nb_exprime": 972.0, "nb_vote_nul": 7.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1204.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 980, "quartier_bv": "23", "geo_point_2d": [48.84372865183688, 2.3287570388812457], "melenchon_jean_luc": 128.0, "poutou_philippe": 4.0, "macron_emmanuel": 467.0}, "geometry": {"type": "Point", "coordinates": [2.3287570388812457, 48.84372865183688]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f56357e30d99753ca0d439d07e703e5507d3a6a6", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 76, "zemmour_eric": 63.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-25", "geo_shape": {"coordinates": [[[2.323799011839277, 48.83070128693545], [2.323776685364393, 48.830679581103766], [2.323716102198642, 48.830593434591314], [2.323649398087068, 48.83049662011583], [2.323568402678732, 48.83038144676606], [2.323501699112594, 48.830284632189894], [2.323501097486493, 48.830283859821115], [2.323437107429596, 48.83020701408602], [2.323346476820712, 48.83010335560821], [2.3232595641618072, 48.83000147816564], [2.323168934274937, 48.82989781863493], [2.323082023667701, 48.8297959410524], [2.322991394479485, 48.8296922822675], [2.322904483199693, 48.82959040452957], [2.3228138547218, 48.829486745591105], [2.322726945493752, 48.82938486771318], [2.322636317737857, 48.82928120772189], [2.322628636875989, 48.82928020998106], [2.322588953668176, 48.82929795294939], [2.32242842883776, 48.82935700769876], [2.322244691226544, 48.829424767055], [2.322084165615578, 48.829483821335636], [2.321900425736119, 48.829551581046914], [2.321739900706857, 48.82961063486651], [2.321556159944797, 48.829678393141926], [2.32139563276123, 48.82973744738433], [2.321211892466826, 48.829805205130945], [2.321051364514516, 48.82986425800528], [2.320867621951843, 48.82993201610688], [2.320707094581246, 48.8299910685202], [2.320523351135992, 48.83005882518592], [2.320362821622787, 48.83011787712275], [2.320362493149272, 48.830117994873106], [2.320193830432353, 48.83017737810113], [2.319994558047203, 48.83024602510184], [2.3198258944852252, 48.83030540870353], [2.319626621126191, 48.83037405508336], [2.319457956730882, 48.83043343815937], [2.319335259905569, 48.83047570488663], [2.319323804361654, 48.83047521068786], [2.319300690136524, 48.83048518901355], [2.319224112597499, 48.8305115680229], [2.319124534558453, 48.830542544959194], [2.319117348330079, 48.83054893278282], [2.319150911489748, 48.83058116859759], [2.3192349568460893, 48.830702621983974], [2.319319151703504, 48.83082329728792], [2.319403196479971, 48.83094475052208], [2.319487392117883, 48.8310654256815], [2.319571439038958, 48.83118687877896], [2.319655635457379, 48.831307553793856], [2.319655723647255, 48.8313076856042], [2.319739370428838, 48.831433867886346], [2.319824416992452, 48.831560756868065], [2.319908064588525, 48.831686939003774], [2.319993111975614, 48.831813827836854], [2.320008926046045, 48.83182850469867], [2.320016319200559, 48.83182860788925], [2.320142220799217, 48.83176988218011], [2.320269887276214, 48.83171149733701], [2.320290681458729, 48.83171628326693], [2.320356792312165, 48.83186033399587], [2.320422428196839, 48.831999465090995], [2.320488538411237, 48.83214351570297], [2.32055417500408, 48.832282646690594], [2.320568632884913, 48.83229645956242], [2.32058122850502, 48.83229584848916], [2.320718658733954, 48.83224315772754], [2.320886288108646, 48.83217906783921], [2.3210579282302852, 48.83211326109309], [2.321225556758466, 48.832049171621115], [2.321397196035848, 48.831983363481214], [2.321564823729236, 48.83191927352634], [2.321736462138945, 48.83185346579124], [2.32190408899744, 48.83178937535344], [2.322075726562982, 48.83172356622455], [2.322243351224579, 48.8316594752961], [2.32241498792236, 48.831593666572026], [2.322582613111272, 48.83152957516843], [2.322754248964873, 48.831463765050586], [2.322921873318993, 48.831399673164036], [2.323093508304944, 48.831333863451036], [2.323261131824273, 48.8312697710816], [2.323432765965832, 48.83120395997477], [2.323600388650469, 48.83113986712245], [2.323772021924389, 48.83107405642049], [2.323939642423708, 48.83100996217826], [2.323997144386479, 48.83099929774732], [2.323997870797716, 48.83099317981087], [2.323976019192016, 48.83096162675741], [2.323895020977428, 48.83084645366891], [2.323818422501427, 48.830735851725976], [2.323798008230119, 48.8307068241078], [2.323799011839277, 48.83070128693545]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 25, "roussel_fabien": 24.0, "nb_emargement": 1214.0, "nb_procuration": 66.0, "nb_vote_blanc": 11.0, "jadot_yannick": 149.0, "le_pen_marine": 59.0, "nb_exprime": 1201.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 0, "nb_inscrit": 1550.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "56", "geo_point_2d": [48.83078047965764, 2.3215717095959736], "melenchon_jean_luc": 355.0, "poutou_philippe": 7.0, "macron_emmanuel": 420.0}, "geometry": {"type": "Point", "coordinates": [2.3215717095959736, 48.83078047965764]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "59f8372e732e2cdf56b41638aa038e77f41b0704", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 154, "zemmour_eric": 154.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-16", "geo_shape": {"coordinates": [[[2.305609109337752, 48.85521366008241], [2.305636923121167, 48.855223399635875], [2.305825126343707, 48.855274031778], [2.306016455171787, 48.85532537245326], [2.306204660494265, 48.8553760040017], [2.306395990082708, 48.855427343166085], [2.306584194779571, 48.85547797410506], [2.306775525104425, 48.85552931355717], [2.306963731901121, 48.85557994390244], [2.307155062974359, 48.85563128274301], [2.307163510923802, 48.855640358496885], [2.3071484497998602, 48.85575983530835], [2.307132844656841, 48.85587840060576], [2.307117783393775, 48.855997877387765], [2.307102176746738, 48.85611644264791], [2.30708711670739, 48.85623591940834], [2.307071509919372, 48.85635448463905], [2.307056448390009, 48.85647396046285], [2.30704084282366, 48.85659252567205], [2.307040127753098, 48.856594744737954], [2.306978983691308, 48.85671032655403], [2.306917072323321, 48.85682680773631], [2.306855927716338, 48.85694238946535], [2.306794014434643, 48.85705887055175], [2.306732869282252, 48.85717445219374], [2.306670956812677, 48.85729093319997], [2.306609811103008, 48.85740651565422], [2.306547896719595, 48.85752299656455], [2.306486750476676, 48.85763857803246], [2.306424836905279, 48.857755058862686], [2.306433052004078, 48.85776648960911], [2.30666485563392, 48.857821938077905], [2.306869508761911, 48.85787189925691], [2.306873093382181, 48.857872411067554], [2.307074195747165, 48.85788275724423], [2.307281456198582, 48.85789268545601], [2.307482560073841, 48.857903031853354], [2.307689820683718, 48.8579129593577], [2.307890923367369, 48.85792330416146], [2.308098184123749, 48.85793323185762], [2.3082992869667223, 48.85794357597494], [2.30850654789348, 48.85795350206436], [2.308707652246718, 48.857963846402384], [2.308914913331903, 48.857973771784366], [2.309116016493481, 48.857984114528755], [2.3093232777251558, 48.85799404010254], [2.309335717199371, 48.85800455699893], [2.309319604290201, 48.85806541143133], [2.309311447630536, 48.85810298523416], [2.309305560611932, 48.85812490898493], [2.30931156144998, 48.858130384713135], [2.309293695165388, 48.858197858153794], [2.30925687174917, 48.85833611913354], [2.309222890826696, 48.85846444604388], [2.309186068385061, 48.85860270787578], [2.309152087126255, 48.85873103383589], [2.309115262945409, 48.85886929560488], [2.309081282689335, 48.85899762242125], [2.309044458144208, 48.85913588323598], [2.309010477539775, 48.85926421000136], [2.308976495405125, 48.85939253673437], [2.30893967165371, 48.85953079837483], [2.308905689182715, 48.8596591241576], [2.308868863692146, 48.85979738573513], [2.308880744995482, 48.85980787785168], [2.309089531655002, 48.859823573835584], [2.309283210666709, 48.85983865523502], [2.309491997582724, 48.859854349617116], [2.309685678188171, 48.85986943037263], [2.309879357542899, 48.85988451080659], [2.310088144810334, 48.85990020504724], [2.31015123714295, 48.85990159402919], [2.310176827643084, 48.8598890552789], [2.310172908727814, 48.85985273302012], [2.3101629975189972, 48.85976085648091], [2.310150016530352, 48.859624326460306], [2.310136186542608, 48.85949612762861], [2.310123205702084, 48.8593595966732], [2.31010937583857, 48.85923139870713], [2.310096395134258, 48.85909486771623], [2.310082565406982, 48.85896666971648], [2.31006958483898, 48.85883013869005], [2.3100557552479373, 48.85870194065661], [2.310042773453135, 48.8585654095869], [2.3100289439983293, 48.858437211519764], [2.310015963702744, 48.85830068042241], [2.310002134384169, 48.858172482321606], [2.309989154224686, 48.858035951188775], [2.309975325054249, 48.85790775215498], [2.309962345019057, 48.85777122188596], [2.309948515984948, 48.857643022818515], [2.309935536085955, 48.85750649251403], [2.30992170718797, 48.85737829341291], [2.309908727425173, 48.85724176307294], [2.309894898663411, 48.85711356393812], [2.3098850195683758, 48.8571021741938], [2.309815390372203, 48.85710311085012], [2.309676085104293, 48.857015938642355], [2.309532504241472, 48.85692612986521], [2.3093931999319333, 48.856838956414954], [2.309249620044503, 48.85674914728403], [2.309110315306534, 48.856661974382], [2.308966736406314, 48.85657216399811], [2.308827433977749, 48.85648499076072], [2.308683856040879, 48.85639518092235], [2.30854455457058, 48.85630800644247], [2.3084009762461353, 48.856218196242544], [2.308261675722274, 48.85613102141948], [2.30811809973594, 48.85604121087371], [2.307978800146666, 48.855954036606704], [2.307835223772753, 48.855864225699335], [2.307695925141744, 48.85577705018987], [2.307552351105921, 48.8556872389367], [2.307413053421329, 48.855600063084076], [2.307269480360751, 48.85551025147714], [2.307130182247887, 48.85542307617272], [2.30698661016255, 48.855333264212135], [2.306847314370773, 48.85524608767315], [2.306703743260669, 48.85515627535881], [2.306564448415391, 48.8550690984767], [2.3064208769177, 48.85497928580076], [2.306281583006744, 48.85489210947477], [2.306138013847087, 48.85480229645305], [2.305998720894487, 48.8547151188846], [2.305919198015695, 48.85466537105836], [2.305909223582355, 48.85466502360724], [2.305884978314672, 48.854687596232004], [2.3058225125268272, 48.85480241632903], [2.30575705060051, 48.85492727740883], [2.305694584255418, 48.85504209651508], [2.305629121721331, 48.85516695749792], [2.305612230489245, 48.85519800510375], [2.305609109337752, 48.85521366008241]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 16, "roussel_fabien": 9.0, "nb_emargement": 1185.0, "nb_procuration": 51.0, "nb_vote_blanc": 13.0, "jadot_yannick": 44.0, "le_pen_marine": 59.0, "nb_exprime": 1166.0, "nb_vote_nul": 6.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1421.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1185, "quartier_bv": "28", "geo_point_2d": [48.85739495161158, 2.30835070068978], "melenchon_jean_luc": 140.0, "poutou_philippe": 5.0, "macron_emmanuel": 562.0}, "geometry": {"type": "Point", "coordinates": [2.30835070068978, 48.85739495161158]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5e3838fb23361ea5135a307633ed3f2d2f6b459d", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 112, "zemmour_eric": 158.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-58", "geo_shape": {"coordinates": [[[2.286467382711613, 48.88693925435352], [2.286515845504541, 48.886936884720086], [2.286686073107651, 48.88686853791616], [2.286855076771601, 48.88680070519189], [2.287025302120647, 48.88673235788913], [2.287194306264265, 48.88666452468579], [2.287364530722892, 48.886596176892255], [2.287533533982635, 48.886528343201725], [2.287703757563146, 48.886459994018225], [2.287872759926816, 48.88639216073969], [2.288042982616903, 48.88632381106544], [2.288211984096604, 48.88625597729974], [2.28838220589627, 48.886187627134774], [2.28855120512858, 48.88611979287372], [2.2887214260378252, 48.88605144221806], [2.288890425749795, 48.885983607477925], [2.28906064576862, 48.88591525633152], [2.289229644596724, 48.88584742110423], [2.289399863725129, 48.88577906946711], [2.289568861681738, 48.88571123285332], [2.2895707303074992, 48.88571060721271], [2.289746924244538, 48.88566245359065], [2.28992569395362, 48.885613594618704], [2.290101885882923, 48.885565439562725], [2.290280656289522, 48.88551658006462], [2.290456847550078, 48.88546842538128], [2.29063561592697, 48.885419565340804], [2.290811807894543, 48.88537141013899], [2.290990575605337, 48.885322549564215], [2.291008312662198, 48.88531016554851], [2.29098933917876, 48.885296576677355], [2.290869792504388, 48.88522037321598], [2.290711157143492, 48.8851209645841], [2.290570111318752, 48.88503105529637], [2.290411475743057, 48.884931646242265], [2.2902704309485, 48.88484173658598], [2.290111796509341, 48.88474232801698], [2.290019827619379, 48.8846837009747], [2.290013011776844, 48.88468341503892], [2.289992872510519, 48.884697154355294], [2.289806776377223, 48.88471920669967], [2.289646980190335, 48.88473814301746], [2.289634996827169, 48.88473569767668], [2.289490298269377, 48.88464166173278], [2.28934562050355, 48.884547639216294], [2.289200922978472, 48.88445360380585], [2.289056246257584, 48.88435958092365], [2.288911549777584, 48.88426554514738], [2.288766874101625, 48.88417152189944], [2.288622178679082, 48.88407748485814], [2.288477504035659, 48.88398346214369], [2.288332809658185, 48.88388942473663], [2.288188137435528, 48.88379540076531], [2.288043442727257, 48.88370136388361], [2.287898771549504, 48.883607339546565], [2.287887063042176, 48.88360486328497], [2.287693887581382, 48.883625085061425], [2.287506409274478, 48.88364470999657], [2.287318930826272, 48.88366433463779], [2.287125756287725, 48.88368455550462], [2.287117973632099, 48.883687267426936], [2.286970211984733, 48.88379059082934], [2.286819130188514, 48.88389623523595], [2.286671367355287, 48.883999558249904], [2.286520282970664, 48.88410520315048], [2.286500660585219, 48.88410535151906], [2.286363049031087, 48.88401343949031], [2.286229707145692, 48.88392185672258], [2.286092096542342, 48.88382994526635], [2.285958755603191, 48.88373836218158], [2.285821145975372, 48.883646449499345], [2.285687805982564, 48.88355486609751], [2.285550197305399, 48.8834629539878], [2.285416856895472, 48.88337137026084], [2.285283518317989, 48.88327978638589], [2.285145911093691, 48.88318787288922], [2.285145738154878, 48.8831877558423], [2.285008131404489, 48.8830958430789], [2.284865299868261, 48.88300123690298], [2.284727694118134, 48.8829093229024], [2.284584863602932, 48.882814716375876], [2.284447258840513, 48.88272280203745], [2.284304429346331, 48.882628195160336], [2.284286941258129, 48.882627175991885], [2.284122879084317, 48.88270300925284], [2.283962420235969, 48.88277806792435], [2.283798358477672, 48.882853900738425], [2.283637898709041, 48.88292895806544], [2.283473834639286, 48.88300479041626], [2.283313373938003, 48.88307984729806], [2.283149310283972, 48.8831556792019], [2.282988847274109, 48.88323073652957], [2.28282478267205, 48.88330656797835], [2.282664320105459, 48.883381623969655], [2.282500253191921, 48.88345745495517], [2.282339789692672, 48.883532510501304], [2.282179325718488, 48.883607566726475], [2.282015258750453, 48.883683397039945], [2.282002859098429, 48.88369031861514], [2.282000231206186, 48.88369972429994], [2.28205529080333, 48.883742492347324], [2.282185628481453, 48.88384361006335], [2.282281796110281, 48.88391831255064], [2.282412134680659, 48.88401942910464], [2.282546418490481, 48.88412373750537], [2.282676758088833, 48.88422485375241], [2.282811042970901, 48.88432916093757], [2.282941383584852, 48.884430277776936], [2.283075669526581, 48.884534584645806], [2.283206011180908, 48.88463570027897], [2.283340298170136, 48.88474000773082], [2.283470640852462, 48.88484112305699], [2.283604928913749, 48.88494542929332], [2.283735272611715, 48.885046545211765], [2.283869561732896, 48.88515085113179], [2.283999906471251, 48.88525196584398], [2.2841341966397692, 48.88535627234696], [2.284264542406154, 48.88545738675218], [2.284365727302962, 48.88553597825489], [2.284424246317568, 48.88558143052254], [2.284425467426286, 48.88558237942346], [2.284555814324205, 48.88568349349078], [2.284648479218888, 48.885755466884966], [2.284778826983095, 48.885856580693584], [2.284891446190457, 48.88594405169034], [2.285004065776165, 48.88603152257421], [2.285134414921834, 48.88613263597036], [2.28524703532352, 48.88622010661067], [2.285377385413032, 48.88632121972494], [2.285489470941365, 48.886408274130936], [2.285619821972646, 48.88650938696396], [2.285677282601301, 48.88655401385774], [2.2858141233705043, 48.88661741386758], [2.285972214139159, 48.886694932266494], [2.286109055637759, 48.88675833193114], [2.286267148636826, 48.88683584993881], [2.286403990877152, 48.886899248358965], [2.286461662984766, 48.886927527141154], [2.286467382711613, 48.88693925435352]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 58, "roussel_fabien": 5.0, "nb_emargement": 1128.0, "nb_procuration": 50.0, "nb_vote_blanc": 26.0, "jadot_yannick": 46.0, "le_pen_marine": 103.0, "nb_exprime": 1093.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1454.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1128, "quartier_bv": "65", "geo_point_2d": [48.88481244604666, 2.286260572242964], "melenchon_jean_luc": 252.0, "poutou_philippe": 7.0, "macron_emmanuel": 361.0}, "geometry": {"type": "Point", "coordinates": [2.286260572242964, 48.88481244604666]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f81ef7859f59650653bd48af96ebdc93ea9fb928", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 145, "zemmour_eric": 169.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "7-23", "geo_shape": {"coordinates": [[[2.294133465340643, 48.861491742983766], [2.294134071945184, 48.861495261232704], [2.294199633147496, 48.861543126548575], [2.294201944415699, 48.861544471222], [2.294351761322995, 48.86161346179158], [2.294497982057247, 48.861683717940515], [2.294647799769256, 48.86175270723158], [2.294794021281349, 48.861822963909276], [2.294943839785687, 48.86189195282104], [2.295090063462966, 48.861962208236996], [2.295239882747572, 48.8620311976688], [2.295386105851878, 48.86210145270611], [2.295535925928925, 48.86217044175866], [2.295682149823254, 48.862240696425445], [2.295682954861441, 48.86224103931974], [2.295816171635205, 48.86229361334827], [2.29597549213418, 48.862350200808976], [2.29610870948238, 48.862402774506755], [2.296268030620772, 48.862459362471704], [2.296268974739122, 48.862459702582335], [2.296436806065291, 48.862514571335005], [2.296596126538925, 48.862571158849455], [2.296763958568591, 48.86262602713782], [2.296923279738405, 48.862682614211096], [2.297091112471767, 48.86273748203512], [2.297250434337762, 48.862794068667206], [2.297418267774614, 48.86284893602696], [2.29757759169981, 48.86290552222578], [2.297578944175977, 48.86290590609278], [2.297786586496355, 48.862956219323955], [2.297968640707572, 48.86299906676841], [2.29817628513862, 48.86304937932719], [2.298358340007893, 48.863092225275956], [2.298540395164608, 48.86313507184539], [2.298748040689884, 48.863185383406034], [2.29874940686515, 48.86318566211581], [2.298931464033029, 48.86322850809475], [2.29911950995937, 48.86325978094375], [2.299300896734561, 48.8632829877999], [2.299488943079405, 48.86331426006687], [2.299670330220926, 48.86333746546271], [2.299858376972076, 48.863368738046944], [2.299860372218312, 48.86336896736248], [2.300041759715746, 48.86339217219424], [2.300218281837925, 48.86340364774828], [2.300406442007967, 48.86341453814522], [2.300582965649289, 48.86342601316909], [2.300771125976237, 48.863436902992476], [2.30094764977366, 48.86344837747824], [2.300948175570107, 48.86344840483194], [2.301087911445633, 48.86345389668704], [2.3012760719668712, 48.86346478661557], [2.301415807920899, 48.86347027808769], [2.30160396856984, 48.86348116750056], [2.3016141732220072, 48.86349090316266], [2.301704073851147, 48.863491701150394], [2.301730742060196, 48.863471960420064], [2.301744655431142, 48.86343371937327], [2.301755606260959, 48.8633060152268], [2.30176774093843, 48.863178867475156], [2.301778691670143, 48.86305116239796], [2.301790826232015, 48.8629240146147], [2.301801776853571, 48.86279630950599], [2.301813911299642, 48.86266916169118], [2.301813598084849, 48.862666596713126], [2.30176836341488, 48.862535724529046], [2.301723834499605, 48.862407029261874], [2.301678600268439, 48.86227615791249], [2.301634071796649, 48.86214746258179], [2.3015895435449503, 48.86201876721957], [2.301544310000278, 48.86188789487429], [2.301499782192157, 48.86175919944855], [2.301454549098324, 48.86162832703868], [2.301410021721614, 48.86149963244864], [2.301364789078614, 48.86136875997424], [2.301320262157627, 48.8612400644214], [2.301275029965453, 48.861109191882434], [2.301230503487923, 48.86098049626606], [2.301185271734507, 48.86084962456179], [2.301140745700629, 48.8607209288819], [2.301095515773048, 48.86059005622177], [2.301050988819755, 48.860461360470374], [2.301005759342873, 48.86033048774567], [2.3009612328331253, 48.86020179193079], [2.30091600379507, 48.86007092004078], [2.300871479091803, 48.85994222417036], [2.300826249153658, 48.85981135130857], [2.30081526794902, 48.859779612816375], [2.300819828017728, 48.85976350865323], [2.300805710419084, 48.85975290283217], [2.300772167386793, 48.85965594628468], [2.300730762543931, 48.85953766776692], [2.30068623874186, 48.859408972664966], [2.300644835653264, 48.859290694099116], [2.30060031227449, 48.859161998936536], [2.300558908202224, 48.85904372120594], [2.300540455905662, 48.859037423997336], [2.300348596061242, 48.859089354421], [2.300175774859702, 48.85914083647949], [2.300166478411307, 48.85914129834209], [2.300155702702953, 48.85913925314702], [2.299960680518642, 48.85910308710185], [2.299791847814109, 48.859071044630255], [2.299612239627095, 48.85903695847395], [2.299417218215019, 48.85900079064047], [2.299237610527477, 48.858966703020485], [2.299042589626332, 48.85893053547351], [2.2988629824260762, 48.85889644728906], [2.298667962047959, 48.858860279129296], [2.29866241714999, 48.85884500616991], [2.298800239420881, 48.85876125111963], [2.298931196990726, 48.8586805512688], [2.2990690183945333, 48.85859679589657], [2.29919997514692, 48.85851609484036], [2.299337795683645, 48.85843233914616], [2.299468751606276, 48.85835163778388], [2.299606571275922, 48.85826788176776], [2.299737526356915, 48.858187180998634], [2.299875346522388, 48.858103424668506], [2.300006299422827, 48.85802272268607], [2.300010599971362, 48.85801671047189], [2.300011851004982, 48.858007796187316], [2.300024824142327, 48.85791534911567], [2.300037469777969, 48.85778173752836], [2.300012827905065, 48.857765154969954], [2.299991361702686, 48.85776602588504], [2.299951531575457, 48.85779149285792], [2.299808684150797, 48.857883377929205], [2.299666451338405, 48.857974319401286], [2.29952360427255, 48.858066204125116], [2.299381370463487, 48.858157145243375], [2.299238521030848, 48.85824902960378], [2.299096286225109, 48.85833997036825], [2.298953437163471, 48.85843185348186], [2.298811201348849, 48.85852279479181], [2.298668349920308, 48.858614677542], [2.29852611310909, 48.8587056184981], [2.298383262039451, 48.85879750090083], [2.298241024243646, 48.85888844060379], [2.298098170794967, 48.85898032354238], [2.297955932002356, 48.85907126289151], [2.29781307891257, 48.859163145482626], [2.297670839123351, 48.85925408447789], [2.297527983666611, 48.859345966705554], [2.297385744243501, 48.859436905354976], [2.297243502961028, 48.859527843819876], [2.29710064600006, 48.85961972551475], [2.296958403720859, 48.859710663625776], [2.296815547118776, 48.85980254497316], [2.2966733038427423, 48.85989348273036], [2.296530444873663, 48.85998536371422], [2.296388200600988, 48.860076301117566], [2.2962453419907902, 48.86016818175398], [2.296103096721267, 48.86025911880344], [2.295960235744153, 48.86035099907636], [2.295817989477874, 48.86044193577192], [2.295675128859535, 48.86053381569735], [2.295532881596599, 48.86062475203905], [2.29539001862338, 48.86071663070169], [2.29524777035141, 48.86080756758879], [2.29510490773707, 48.86089944590394], [2.294962658480593, 48.86099038153787], [2.2948197934870223, 48.86108226038875], [2.294677543233762, 48.86117319566878], [2.294534678599061, 48.86126507417222], [2.294392427348913, 48.861356009098365], [2.2942495603471222, 48.86144788723822], [2.294133465340643, 48.861491742983766]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 23, "roussel_fabien": 7.0, "nb_emargement": 1002.0, "nb_procuration": 74.0, "nb_vote_blanc": 10.0, "jadot_yannick": 32.0, "le_pen_marine": 71.0, "nb_exprime": 989.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 2, "nb_inscrit": 1210.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1002, "quartier_bv": "28", "geo_point_2d": [48.86123240743774, 2.2986216301477898], "melenchon_jean_luc": 70.0, "poutou_philippe": 0.0, "macron_emmanuel": 475.0}, "geometry": {"type": "Point", "coordinates": [2.2986216301477898, 48.86123240743774]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "72e510e04faf87857e192d5462438529a072b617", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 75, "zemmour_eric": 84.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "4-10", "geo_shape": {"coordinates": [[[2.348468766917066, 48.85259385136217], [2.348449365094674, 48.85260349202112], [2.348299850377856, 48.852670966669265], [2.348153724004025, 48.85274056137963], [2.348004208511094, 48.85280803565005], [2.347858082720799, 48.8528776299982], [2.347708566451757, 48.852945103890875], [2.347562439882236, 48.85301469786941], [2.34741292283708, 48.853082171384344], [2.347266795488332, 48.85315176499326], [2.347117277666959, 48.85321923813045], [2.346971148176308, 48.85328883136228], [2.346967851330692, 48.85329123353171], [2.346966316066653, 48.85329183311627], [2.346779146502013, 48.85335437961876], [2.346590291710254, 48.85341314563223], [2.346403121258516, 48.85347569153973], [2.346214265603015, 48.85353445695335], [2.346027094264281, 48.853597002265815], [2.345838237745043, 48.85365576707948], [2.345651065519113, 48.85371831179693], [2.345462206773452, 48.85377707600328], [2.345275033660427, 48.853839620125704], [2.345086175413717, 48.85389838373956], [2.344899001413603, 48.853960927266954], [2.344710142303161, 48.85401969028095], [2.344613829830763, 48.85405871188011], [2.344681313395757, 48.85413782621606], [2.344800337715001, 48.85425252777155], [2.344917212208057, 48.85436666612052], [2.3450362375693032, 48.85448136741774], [2.345153113092375, 48.85459550551278], [2.345272139495737, 48.854710206551744], [2.345389016048834, 48.85482434439284], [2.345508043505415, 48.854939044274246], [2.345624921077256, 48.85505318276072], [2.34574394957587, 48.85516788238382], [2.345860828189053, 48.855282019717116], [2.34586206196642, 48.85528351129331], [2.345936881589361, 48.85539865701546], [2.346019184731135, 48.85552557113568], [2.346094006422995, 48.85564071584266], [2.346176308967086, 48.85576762981968], [2.346251131342471, 48.85588277530261], [2.346333436014362, 48.85600968915137], [2.346408257721723, 48.85612483450353], [2.346490563158789, 48.856251748216515], [2.346565386923829, 48.85636689345274], [2.346647691763021, 48.85649380702258], [2.346722516234177, 48.856608951236204], [2.346763606144749, 48.85667231093877], [2.34680498857657, 48.85670701797934], [2.346891148529151, 48.856681956574384], [2.347048270993002, 48.85663622312774], [2.347238879599986, 48.856578478738115], [2.347396002798181, 48.85653274573728], [2.347586610641152, 48.85647500078841], [2.347757352824138, 48.85642361629136], [2.347947959867428, 48.8563658707612], [2.348118702687951, 48.85631448665022], [2.348309307568809, 48.85625674053139], [2.348480049686618, 48.85620535500046], [2.34867065376769, 48.8561476083004], [2.34884139516039, 48.85609622314811], [2.349031999815862, 48.85603847497495], [2.349202739131646, 48.85598708929462], [2.349393342976291, 48.8559293414395], [2.349564082952179, 48.85587795434671], [2.34973482121733, 48.85582656789977], [2.349925423884975, 48.85576881918878], [2.349927184580205, 48.85576817852251], [2.3500993900002882, 48.85569515481809], [2.3502760636279723, 48.85561909283112], [2.350448268066398, 48.85554606861482], [2.350624940679298, 48.8554700061025], [2.350797145487594, 48.85539698228101], [2.350973817085815, 48.85532091924342], [2.351146019560831, 48.855247894003405], [2.351322690144272, 48.85517183044046], [2.351494891626443, 48.85509880558791], [2.35167156119511, 48.855022741499695], [2.351843763069645, 48.85494971524334], [2.352020431623431, 48.85487365062984], [2.352192631142418, 48.85480062475358], [2.352369298681432, 48.85472455961481], [2.352445765513761, 48.85469213089681], [2.352487307873652, 48.85468902989994], [2.352507750853757, 48.85467051402963], [2.35260348248194, 48.85462991540986], [2.352776659752393, 48.85455583453833], [2.352948858535217, 48.85448280666099], [2.353122033463023, 48.8544087252725], [2.35329423127565, 48.85433569688848], [2.353467405223518, 48.85426161499033], [2.353639602065847, 48.854188586099625], [2.353812775033783, 48.85411450369184], [2.353984970906019, 48.85404147429446], [2.354158144256715, 48.85396739138442], [2.354330337795962, 48.853894361472975], [2.354402635048201, 48.85386343249823], [2.35441391410003, 48.853856720324806], [2.354372442788466, 48.853814773770154], [2.354268608527835, 48.85372037314418], [2.35416607110807, 48.85362715037585], [2.354063532681261, 48.853533928403785], [2.353959699551047, 48.85343952658663], [2.35395522486886, 48.853436924879404], [2.353837276414777, 48.85339423421244], [2.353605260403886, 48.85331025669307], [2.353487312523137, 48.85326756567629], [2.35348026727441, 48.853260263529016], [2.353467902686325, 48.85313467930518], [2.353456022353587, 48.85301400635609], [2.353444142075873, 48.85289333339274], [2.353431777661918, 48.8527677491237], [2.353437274161562, 48.85275993465812], [2.353480559432934, 48.85273881248547], [2.353543103583725, 48.85270829087442], [2.353563504399817, 48.85271164596384], [2.353614453972541, 48.8527820519516], [2.353664476472079, 48.852851178519884], [2.353683290908824, 48.85285520133315], [2.353862774272672, 48.85279071840471], [2.354039153850959, 48.85272734893771], [2.35421863633406, 48.85266286546812], [2.3543950136840612, 48.852599495461895], [2.354574496649172, 48.852535011458464], [2.354750873122514, 48.85247164181968], [2.354930355218007, 48.85240715637568], [2.355106730825727, 48.85234378620509], [2.355283107367315, 48.85228041577827], [2.355462586782763, 48.85221592951751], [2.355638962458828, 48.85215255855883], [2.3558184409935192, 48.852088071756874], [2.355994815803957, 48.852024700266384], [2.356174293457991, 48.85196021292326], [2.356350667402904, 48.85189684090093], [2.356530144176079, 48.851832353016626], [2.356535461805647, 48.85181999570235], [2.356440028351814, 48.851709672127456], [2.356345773657955, 48.851600710132175], [2.356250339655592, 48.85149038547768], [2.356156085755011, 48.851381423311516], [2.356060652555945, 48.8512710984839], [2.355966399448631, 48.85116213614683], [2.3558709684042523, 48.85105181205288], [2.355776714727579, 48.85094284953757], [2.355681284497488, 48.85083252437122], [2.355587032976679, 48.8507235616924], [2.355547372646207, 48.85068979671758], [2.355515208409026, 48.850676794160215], [2.3555145737874152, 48.85067697960647], [2.355335181877442, 48.85073075065478], [2.355143605882643, 48.85078665199293], [2.354964213212335, 48.850840422479756], [2.35477263505378, 48.85089632321109], [2.354593242985753, 48.85095009314375], [2.354401664026058, 48.85100599327563], [2.354222271197706, 48.85105976264676], [2.354030691436771, 48.85111566217915], [2.353851296485578, 48.85116943098142], [2.353659717286128, 48.85122532992166], [2.353656861414438, 48.85122594584177], [2.353496159547423, 48.851248044461244], [2.353351662643922, 48.85127144907323], [2.353190960495993, 48.85129354818118], [2.353046463340402, 48.85131695152437], [2.35297023619564, 48.851327433224654], [2.352948138053721, 48.85132692070365], [2.352928203402632, 48.85133447000873], [2.352843728120003, 48.851346086076575], [2.35263159766474, 48.85137455429362], [2.352454818833121, 48.851405797312154], [2.352453224959431, 48.85140607827845], [2.352260519304714, 48.851448472257516], [2.352081219748975, 48.851494217572345], [2.351888513465569, 48.85153661094893], [2.351709211917366, 48.85158235569529], [2.351708540791319, 48.85158251574167], [2.351526593929884, 48.8516296677619], [2.351347293117604, 48.85167541107024], [2.351165345616135, 48.851722561637914], [2.35098604415591, 48.85176830530036], [2.350804096003222, 48.85181545531479], [2.350624793917456, 48.8518611975328], [2.350442845102243, 48.851908347893264], [2.350263541017099, 48.85195408955872], [2.350262736834881, 48.851954318124754], [2.350090189170987, 48.85200771465625], [2.349910885797012, 48.85205345579655], [2.34987324567205, 48.852060931775874], [2.349863616823192, 48.852069060889825], [2.349687869255332, 48.85213997597637], [2.3495199601096513, 48.85219921122371], [2.349344211635155, 48.852270125797226], [2.3491763016795453, 48.85232936055539], [2.349008392704845, 48.85238859508218], [2.34883264289543, 48.852459508892224], [2.348664731748052, 48.8525187429224], [2.348488981032004, 48.852589656219365], [2.348468766917066, 48.85259385136217]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 10, "roussel_fabien": 11.0, "nb_emargement": 808.0, "nb_procuration": 57.0, "nb_vote_blanc": 8.0, "jadot_yannick": 66.0, "le_pen_marine": 44.0, "nb_exprime": 796.0, "nb_vote_nul": 1.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1014.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 805, "quartier_bv": "16", "geo_point_2d": [48.85367311072745, 2.3503128562928506], "melenchon_jean_luc": 135.0, "poutou_philippe": 1.0, "macron_emmanuel": 344.0}, "geometry": {"type": "Point", "coordinates": [2.3503128562928506, 48.85367311072745]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "793ca93efd455d8574cb0e4401cd7e42e02f8cfc", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 18, "zemmour_eric": 35.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-18", "geo_shape": {"coordinates": [[[2.398363943371222, 48.88412904974182], [2.398358951720913, 48.884141740209124], [2.398305914224393, 48.884263405902374], [2.398252862735768, 48.88438484485986], [2.398199824743692, 48.88450651047918], [2.3981467714068962, 48.88462794845668], [2.398093719175773, 48.88474938730335], [2.398040680440598, 48.88487105281187], [2.397987627714504, 48.88499249158469], [2.397934588483857, 48.885114157019345], [2.397881533909465, 48.88523559481217], [2.397828494183335, 48.88535726017289], [2.397775440466975, 48.885478698797975], [2.397722400245461, 48.88560036408477], [2.397669346034009, 48.885721802636006], [2.3976163053169, 48.88584346784893], [2.397614168079973, 48.88584632593749], [2.397534479929995, 48.88591747784741], [2.397381670449642, 48.886053190134625], [2.397301981665423, 48.88612434187642], [2.397293121636562, 48.88612788377797], [2.397071454995119, 48.88615075630244], [2.396848956458799, 48.88617314398791], [2.396627289429502, 48.88619601568914], [2.39640479051927, 48.886218401649046], [2.396394491539142, 48.88622348756248], [2.396307379813432, 48.88634651823517], [2.396222924279147, 48.88646707020341], [2.3962160965094093, 48.886471512602405], [2.396051612755616, 48.886519857120945], [2.395885832970571, 48.886568453878866], [2.395721348614393, 48.88661679704016], [2.395555566838524, 48.886665394228906], [2.395391081869429, 48.886713736932265], [2.39522530085082, 48.88676233276704], [2.395060815258469, 48.88681067591172], [2.39489503225937, 48.88685927127807], [2.394886935124979, 48.88686754999127], [2.394887889576459, 48.88695980193404], [2.394887997256908, 48.887051693457934], [2.394888951724095, 48.88714394448589], [2.3948890594066983, 48.8872358359944], [2.39488039234919, 48.887244217045115], [2.394639061850255, 48.88730649112607], [2.394401262184126, 48.88736530310019], [2.394378191850599, 48.88737504388514], [2.394391167423372, 48.88739336395819], [2.39442951789585, 48.88743842600992], [2.394514188585031, 48.887538060234014], [2.394620568681636, 48.88766305351626], [2.39470523873794, 48.88776268757801], [2.3948116197520433, 48.88788768066497], [2.394896290539152, 48.887987314571205], [2.394897862338006, 48.887990300168724], [2.394934264665076, 48.88813408241504], [2.394969051824582, 48.88827851027587], [2.395005453186007, 48.88842229245592], [2.39504024073551, 48.88856672025816], [2.395076642494987, 48.88871050237883], [2.3951114304344943, 48.88885493012246], [2.395111131882774, 48.88885867698427], [2.395075732625725, 48.88894389137813], [2.395039774170273, 48.88903203471635], [2.395004376042312, 48.88911724908254], [2.394968417356803, 48.88920539148615], [2.394930697628681, 48.88925177760786], [2.3949363348194552, 48.88925535661151], [2.39499277240801, 48.88927012174631], [2.395173407198293, 48.889317963542425], [2.395360144418608, 48.889366816136516], [2.395540778518037, 48.88941465736736], [2.395727516440224, 48.88946350848498], [2.395908152566016, 48.889511350063565], [2.3960948911796303, 48.88956020060396], [2.39627552661456, 48.88960804161728], [2.3964622672833302, 48.88965689158731], [2.396642903391327, 48.88970473204224], [2.396829643387782, 48.88975358142815], [2.397010281532376, 48.889801421331555], [2.397197022220246, 48.88985027014027], [2.397395475525155, 48.889901712781224], [2.397582216934069, 48.88995056098477], [2.397780671001668, 48.890002002982676], [2.397967414495366, 48.8900508505879], [2.39816586933625, 48.89010229104343], [2.398352612176847, 48.89015113893586], [2.398551067780404, 48.890202578748315], [2.398737812705789, 48.89025142604244], [2.398742984534809, 48.8902519925025], [2.398786009886706, 48.890226361191004], [2.398802895384039, 48.890133856518986], [2.398825414720704, 48.89000992821318], [2.398849298525964, 48.88987908107763], [2.398871817631619, 48.88975515363357], [2.398895701203514, 48.889624306458344], [2.398918220098927, 48.88950037807753], [2.398920987716847, 48.88948521324473], [2.398945697890937, 48.889349842100444], [2.3989682151745573, 48.889225914571654], [2.398992925113094, 48.88909054248638], [2.399015443535899, 48.88896661492625], [2.399037960498184, 48.888842686441826], [2.3990626700632642, 48.88870731519413], [2.399063432935964, 48.888703133583796], [2.399085951033804, 48.88857920506745], [2.399105233146158, 48.88847356597282], [2.3991126781245953, 48.88843277595955], [2.3991351959882152, 48.888308847403394], [2.399150758401408, 48.888223583517025], [2.39915370968551, 48.88810243277684], [2.399154876523701, 48.88796266521008], [2.399157827773056, 48.88784151534024], [2.399158994594449, 48.88770174774023], [2.399159371333295, 48.887656570409995], [2.399162322565221, 48.88753541960708], [2.399163266215931, 48.887422437149574], [2.399166216061853, 48.88730128631382], [2.399167159699873, 48.88718830383222], [2.399170110887242, 48.8870671529774], [2.399171054512467, 48.88695417047168], [2.399174005677505, 48.88683301959101], [2.39917478843498, 48.88673917833138], [2.399177739568669, 48.886618028326154], [2.399178522316185, 48.88652418704816], [2.399179270573497, 48.88643451664749], [2.399180554932109, 48.88629365498273], [2.39918079668333, 48.886264665626896], [2.399181000465174, 48.88624026712272], [2.399181489201664, 48.886181716464435], [2.399182772194876, 48.8860408538611], [2.399183373151012, 48.885968912835516], [2.399183714497914, 48.88592798186006], [2.399183863978192, 48.88591018051004], [2.399185146947916, 48.885769318771125], [2.399185928854061, 48.885675666274416], [2.399186710747017, 48.88558201466897], [2.399187995074954, 48.88544115199554], [2.399188293547989, 48.885405472834485], [2.399189177788273, 48.88540388636834], [2.399189985562188, 48.88540089027858], [2.399207287375862, 48.88536985151104], [2.39927639061039, 48.8852434655637], [2.399331139116565, 48.88514524991073], [2.399385887416225, 48.88504703422395], [2.399454989799283, 48.8849206472371], [2.399466065534099, 48.88490077827013], [2.3994703515506552, 48.884893090763256], [2.399496078884464, 48.88484693519696], [2.3995651807241902, 48.88472054902284], [2.399620798434018, 48.88462077093259], [2.399689899670942, 48.88449438466047], [2.399745518274219, 48.8843946055994], [2.39977374870915, 48.88434396048664], [2.399842847843963, 48.88421757408756], [2.399893299935207, 48.884127062656766], [2.399893524122515, 48.88412665998375], [2.399962624041788, 48.88400027349741], [2.400039971694431, 48.88386150951397], [2.400032598171543, 48.88384733518074], [2.399988384448853, 48.88385211205998], [2.3997869433558052, 48.88388633881618], [2.399586261724424, 48.88392066796802], [2.399384820112269, 48.88395489314624], [2.399184137941247, 48.88398922252122], [2.398982695799629, 48.88402344702079], [2.398782013099342, 48.88405777571957], [2.398580569064781, 48.884091999533595], [2.398379885835235, 48.884126327556274], [2.398363943371222, 48.88412904974182]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 18, "roussel_fabien": 8.0, "nb_emargement": 557.0, "nb_procuration": 11.0, "nb_vote_blanc": 6.0, "jadot_yannick": 22.0, "le_pen_marine": 32.0, "nb_exprime": 550.0, "nb_vote_nul": 1.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 797.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 557, "quartier_bv": "75", "geo_point_2d": [48.88747410605831, 2.397438324654041], "melenchon_jean_luc": 283.0, "poutou_philippe": 6.0, "macron_emmanuel": 112.0}, "geometry": {"type": "Point", "coordinates": [2.397438324654041, 48.88747410605831]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c825a4d3d0a420f055f1dbd2b615b4cd1d11324e", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 34, "zemmour_eric": 39.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-28", "geo_shape": {"coordinates": [[[2.377334278375316, 48.86566626738982], [2.377332735269563, 48.86566398672565], [2.377232023634575, 48.86564012570738], [2.37705051787159, 48.86559730057593], [2.376856035858752, 48.86555122123716], [2.376674529351507, 48.865508395524984], [2.376480049366138, 48.86546231557864], [2.376298543466973, 48.86541949019211], [2.376104064146177, 48.865373409631154], [2.375922558876625, 48.86533058277171], [2.375728080220208, 48.86528450159608], [2.375546575558733, 48.865241675062336], [2.375352097566898, 48.865195593272055], [2.375170593535062, 48.86515276526536], [2.374976116207615, 48.86510668286048], [2.374794612794644, 48.865063854280145], [2.374784436734105, 48.86504841967104], [2.374777387183255, 48.865045979801785], [2.374715076166839, 48.86502441090822], [2.374691398775263, 48.865053101228945], [2.374678075128464, 48.865069245856915], [2.3746779666623032, 48.86506987842712], [2.374591600114928, 48.865184909876504], [2.374531676381835, 48.865283306718354], [2.374513939244619, 48.86530043012716], [2.374514095548903, 48.865306371997654], [2.374427726895317, 48.86542140239782], [2.374343130186038, 48.865537095810254], [2.374256760772429, 48.86565212606307], [2.374172163308796, 48.86576781933053], [2.374085793124348, 48.8658828503353], [2.374001193543339, 48.865998543450665], [2.373914823972766, 48.86611357341592], [2.373830223637277, 48.866229266386355], [2.373743851943538, 48.8663442961971], [2.373659252216782, 48.86645998902968], [2.373572879752169, 48.866575019592354], [2.37348827927112, 48.86669071227994], [2.37340190605725, 48.86680574179596], [2.373317303458566, 48.86692143433146], [2.373240044081732, 48.86703259210338], [2.373155442118299, 48.86714828450789], [2.373078180696501, 48.867259442145375], [2.372993578005176, 48.86737513441176], [2.372916317264689, 48.86748629192912], [2.372853293028574, 48.867572474657926], [2.372847847266017, 48.86758490648366], [2.3728945402920782, 48.867600746601006], [2.373062197101961, 48.867606837494854], [2.373232105377663, 48.867612865298604], [2.37339976362927, 48.86761895572675], [2.37356967199437, 48.8676249821519], [2.373582379195083, 48.8676354702135], [2.373558411759975, 48.86772848404166], [2.373524537208292, 48.867859512370096], [2.373500570929986, 48.86795252617498], [2.373488303752345, 48.86799997769166], [2.373488102983312, 48.868018144207106], [2.373514436475425, 48.8680199548186], [2.373725850477422, 48.868066048907316], [2.373956993292668, 48.86811635759459], [2.37396616731892, 48.86812638195603], [2.373955579050007, 48.86816812968639], [2.373945344720116, 48.86820923713704], [2.373954372254022, 48.86821920137579], [2.374114278001472, 48.86825539700517], [2.374265472203884, 48.868289494582285], [2.374425379746446, 48.868325689800876], [2.374576572993439, 48.868359786975674], [2.374727767801433, 48.868393883965595], [2.374887675985652, 48.86843007856313], [2.374903659845859, 48.86842633805014], [2.3749418577022112, 48.86838601150006], [2.374975333047655, 48.868348996825375], [2.374993917508826, 48.868335179290874], [2.37499310429378, 48.868331149600536], [2.375050589747199, 48.86826758406781], [2.375157575472632, 48.868148094283185], [2.375248535470147, 48.86804751479906], [2.375355520289465, 48.86792802481377], [2.37544647816825, 48.86782744425277], [2.375553462081565, 48.867707954066745], [2.375644420557062, 48.86760737334243], [2.375644492420683, 48.86760729187737], [2.375716757786408, 48.86752551141104], [2.3758121932906793, 48.86741632472826], [2.375884459491366, 48.86733454415365], [2.375979894294387, 48.86722535731834], [2.376059041175518, 48.867133126191504], [2.376154475243524, 48.86702393919706], [2.376233621498777, 48.8669317088373], [2.376329054831879, 48.86682252168381], [2.376408200482797, 48.86673029029253], [2.376408262683885, 48.866730218669325], [2.376500165808647, 48.86662537387369], [2.376595598021897, 48.86651618647742], [2.376687500402801, 48.86641134061835], [2.376782931831418, 48.866302153051606], [2.376874833457604, 48.86619730702843], [2.376970264090741, 48.86608812019049], [2.377062164962423, 48.86598327400317], [2.377157594821499, 48.865874086095474], [2.377179714062448, 48.86584885146783], [2.377193590851596, 48.86583872694737], [2.377192331519722, 48.86583152386436], [2.377262112353362, 48.865751912131955], [2.377321110264845, 48.865683710858605], [2.377334278375316, 48.86566626738982]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 28, "roussel_fabien": 33.0, "nb_emargement": 1330.0, "nb_procuration": 110.0, "nb_vote_blanc": 12.0, "jadot_yannick": 132.0, "le_pen_marine": 39.0, "nb_exprime": 1316.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1691.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1330, "quartier_bv": "41", "geo_point_2d": [48.86667478225725, 2.374997016865699], "melenchon_jean_luc": 513.0, "poutou_philippe": 8.0, "macron_emmanuel": 457.0}, "geometry": {"type": "Point", "coordinates": [2.374997016865699, 48.86667478225725]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1369c4e0bf8831531a4cdba078d5b0a11b138846", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 48, "zemmour_eric": 84.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "12-22", "geo_shape": {"coordinates": [[[2.394718571213671, 48.836243532875045], [2.394692261478156, 48.83624311194009], [2.394646213834877, 48.83625508776819], [2.394464251105755, 48.836299777962566], [2.394287539073333, 48.83634432179132], [2.39410557708744, 48.83638901144344], [2.3939288644460053, 48.83643355473871], [2.393746900468409, 48.836478244734046], [2.393570187228425, 48.83652278659656], [2.393388223994065, 48.8365674760496], [2.393211510134614, 48.836612018278004], [2.393029546291722, 48.83665670628257], [2.392852830461025, 48.836701247970616], [2.3926708659991442, 48.836745935425924], [2.392494150921696, 48.83679047658744], [2.392317435542242, 48.83683501748617], [2.392135470154392, 48.83687970412168], [2.391958752803696, 48.83692424447996], [2.391776786796866, 48.836968930566265], [2.391763843397148, 48.83696768748371], [2.3916933806615672, 48.83693267579035], [2.391630093484806, 48.836900495771296], [2.391570357180359, 48.8368736544139], [2.391560340080561, 48.83687978028939], [2.391505352846395, 48.83695170147662], [2.391424522148438, 48.837047983515234], [2.391330460397157, 48.837171010884724], [2.391249629036063, 48.837267292786265], [2.3912099164762, 48.83729990034354], [2.391209390212452, 48.837307397454886], [2.391269260937862, 48.837328005279076], [2.3914712240084, 48.83728491194944], [2.391669501652185, 48.83724226360729], [2.391871464059613, 48.837199169598605], [2.392069742412128, 48.837156520596736], [2.392271704156435, 48.83711342590897], [2.3924699804929492, 48.83707077623341], [2.392671941574133, 48.837027680866576], [2.392870218619356, 48.83698503053125], [2.393072179037407, 48.83694193448536], [2.393270454056152, 48.83689928437574], [2.393286133369091, 48.836902970352874], [2.39338344317649, 48.837002859724166], [2.393500919374879, 48.8371228108257], [2.393598230004293, 48.83722270000258], [2.393715707192421, 48.83734265086959], [2.393813018654318, 48.83744253895277], [2.3939304968321933, 48.837562489585224], [2.394027809105662, 48.83766237837337], [2.394145288273296, 48.837782328771326], [2.394242601368808, 48.83788221736503], [2.39424269398214, 48.83789406063908], [2.394260433443562, 48.8379008138492], [2.394418147109131, 48.837975214425946], [2.394578099364755, 48.838050231388586], [2.39473581258401, 48.838124630630354], [2.394895765755331, 48.838199647158156], [2.395053481232052, 48.83827404687734], [2.395213433956685, 48.83834906296348], [2.395371150338836, 48.838423462253886], [2.395531105351995, 48.83849847701277], [2.395688821277381, 48.83857287586751], [2.395848777195816, 48.838647891090886], [2.396006495389134, 48.83872228952372], [2.396166452223281, 48.83879730431229], [2.396186442492448, 48.8387941063624], [2.396292987257154, 48.83865820647621], [2.396392824558727, 48.838528503413485], [2.396393764446774, 48.83852746219852], [2.396501654201205, 48.8384293366882], [2.396606480138068, 48.83832926468916], [2.396714370444095, 48.83823113897645], [2.396819195573973, 48.83813106677324], [2.396927085069409, 48.8380329408513], [2.397031909392209, 48.83793286844393], [2.397139796714582, 48.837834742305894], [2.397244620230516, 48.837734669694356], [2.397244930056503, 48.83773438615772], [2.39735281791891, 48.837636260716316], [2.397491744533991, 48.837514059994064], [2.397599630123863, 48.83741593340447], [2.3976994820335022, 48.83732810263408], [2.397716985357157, 48.83732560060272], [2.397731145963724, 48.83730559003446], [2.397770220827919, 48.837271219767715], [2.397770621175792, 48.83727088362297], [2.397887412479604, 48.83717164141714], [2.397992118320734, 48.83708812298317], [2.3981089101555932, 48.83698888055169], [2.398213615285088, 48.83690536101089], [2.398318320068667, 48.836821842271505], [2.3984351093235903, 48.83672259949102], [2.398434850848853, 48.836711351656184], [2.3983078219902563, 48.8366099328032], [2.398186119134713, 48.836510293459426], [2.398059091239651, 48.83640887522343], [2.397937389329091, 48.836309235608695], [2.3978156878837, 48.83620959586126], [2.39768866281487, 48.83610817631215], [2.397566962314448, 48.83600853629374], [2.397439936857182, 48.83590711645535], [2.397318237291122, 48.835807477065295], [2.3971912128077433, 48.83570605694456], [2.397175343156901, 48.835703522600916], [2.3969929388284132, 48.83575518179033], [2.3968108592092072, 48.83580676949], [2.396628454158317, 48.83585842811884], [2.39644637381775, 48.835910015258946], [2.39626396939617, 48.835961674233374], [2.396081886982434, 48.8360132599077], [2.395899481838355, 48.83606491832157], [2.395717398692843, 48.83611650433558], [2.395534992836691, 48.836168161289535], [2.395352908969726, 48.83621974674398], [2.395170502391087, 48.836271403137324], [2.394988417802874, 48.83632298803216], [2.394978247112668, 48.83632314074331], [2.394872440355182, 48.83629724165624], [2.39473171991001, 48.83626228459215], [2.394718571213671, 48.836243532875045]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 22, "roussel_fabien": 19.0, "nb_emargement": 1177.0, "nb_procuration": 49.0, "nb_vote_blanc": 20.0, "jadot_yannick": 75.0, "le_pen_marine": 96.0, "nb_exprime": 1147.0, "nb_vote_nul": 10.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1576.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "46", "geo_point_2d": [48.83710612495181, 2.395664150792187], "melenchon_jean_luc": 450.0, "poutou_philippe": 3.0, "macron_emmanuel": 317.0}, "geometry": {"type": "Point", "coordinates": [2.395664150792187, 48.83710612495181]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ba40509db204222e27c8bd0ef57937a8d37609fb", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 132, "zemmour_eric": 230.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-40", "geo_shape": {"coordinates": [[[2.294693431976497, 48.8875686935937], [2.2947661814477502, 48.887571799413976], [2.294939434360448, 48.887612537810334], [2.295112302826008, 48.88765318555516], [2.295285556292548, 48.8876939225484], [2.29545842529847, 48.887734569790545], [2.295631679294303, 48.887775307179226], [2.295804548840689, 48.88781595391862], [2.295977803378084, 48.887856690803495], [2.296150674828501, 48.88789733704817], [2.2961814583735762, 48.88789980140128], [2.2961883275316293, 48.88788709555808], [2.296338911515263, 48.887832259836095], [2.296481687458409, 48.887780266699345], [2.296632270812033, 48.88772543150238], [2.29677504753302, 48.88767343801877], [2.296925628917362, 48.88761860154029], [2.297068405040275, 48.887566608601105], [2.2970733506093612, 48.88756555304131], [2.297239296728176, 48.887552245755735], [2.297407102213384, 48.88753878817077], [2.297573048161609, 48.88752548042234], [2.2977408534743082, 48.8875120223693], [2.297750664346026, 48.887507972664366], [2.297866416993099, 48.88738971222984], [2.297993026763032, 48.887260359122614], [2.297988972185716, 48.88724792997207], [2.297832055131738, 48.88718104568999], [2.297675165595741, 48.8871141730485], [2.297518247972115, 48.88704728923825], [2.297361359242109, 48.88698041617745], [2.297204443800398, 48.88691353105658], [2.297047555876383, 48.88684665757646], [2.296890641240702, 48.88677977203615], [2.296733754110633, 48.88671289903603], [2.296576840281077, 48.88664601307638], [2.29641995396914, 48.886579138757675], [2.296263040945713, 48.88651225237862], [2.296106155427506, 48.886445378539904], [2.296101993507119, 48.88643305930008], [2.296212728938532, 48.88631621966922], [2.296322871779629, 48.88620000327857], [2.296433604856328, 48.88608316341069], [2.296543746711538, 48.8859669467922], [2.296654478809215, 48.88585010579599], [2.296764619666402, 48.88573388984895], [2.2968753521364302, 48.885617048631744], [2.296985492019997, 48.88550083155761], [2.296990634090703, 48.88548702461185], [2.29698493867915, 48.88548222200757], [2.296829745947352, 48.885457084438876], [2.296655293776083, 48.88542882706104], [2.296459403721284, 48.88539709704091], [2.296284951939788, 48.885368840021236], [2.296089063699909, 48.88533710940147], [2.295914612332492, 48.885308850941406], [2.2959089860312663, 48.88530872882129], [2.29573064090323, 48.88532951931543], [2.295551435163872, 48.88535040880347], [2.295373088386736, 48.88537119875616], [2.295193883712055, 48.88539208861554], [2.295015536649426, 48.88541287803486], [2.294836330324275, 48.885433767350285], [2.294657984339669, 48.88545455624429], [2.29447877772766, 48.885475445023765], [2.294300431469866, 48.88549623248512], [2.294121224570908, 48.88551712072864], [2.29394287801546, 48.88553790855589], [2.293763670829762, 48.885558796263474], [2.293750229983498, 48.885555194293], [2.293675901321252, 48.88549358857449], [2.293577005222203, 48.88540298004624], [2.293577745270051, 48.88539185426182], [2.293699113121014, 48.88529901891588], [2.293830202896893, 48.88518833864762], [2.2939515698234683, 48.885095503028595], [2.294082658550455, 48.88498482246346], [2.294228970176903, 48.88486654397716], [2.294360059113721, 48.884755862194055], [2.294506369466816, 48.884637583344144], [2.294637455861916, 48.88452690212551], [2.294635843071948, 48.884514688660786], [2.294613420934094, 48.884501348941505], [2.294533099032483, 48.884453563525135], [2.294519192543918, 48.884457876629995], [2.29451125209957, 48.88449007186911], [2.29438291383611, 48.88459286580298], [2.294260453523807, 48.88469467889223], [2.294132114261032, 48.88479747253815], [2.2940096516137363, 48.88489928534391], [2.293881311351635, 48.88500207870188], [2.2937588490963208, 48.8851038912402], [2.293630507834885, 48.88520668431021], [2.293508043244549, 48.88530849656502], [2.293379700983767, 48.885411289347026], [2.293244606156212, 48.885508283693845], [2.293116264246633, 48.885611076182876], [2.292981168410194, 48.8857080702148], [2.2928528241245862, 48.88581086239472], [2.29271772727905, 48.88590785611179], [2.292589381993229, 48.886010647091354], [2.292454284138793, 48.88610764049358], [2.292418772564132, 48.88610265967479], [2.292428690864565, 48.88611650776118], [2.292412713638623, 48.88614139411287], [2.292556713394067, 48.88622943895031], [2.292697858605723, 48.88631774103846], [2.29284186068226, 48.88640578642616], [2.292983006855438, 48.886494088163985], [2.293127009901869, 48.886582133194594], [2.293268157036576, 48.88667043458211], [2.293412159701265, 48.886758478348376], [2.293553309148946, 48.886846780292856], [2.293697312783533, 48.88693482370204], [2.2938384618413092, 48.88702312438893], [2.293982467797051, 48.887111168348326], [2.294123617816374, 48.88719946868489], [2.294267624754224, 48.88728751138797], [2.294408775722911, 48.88737581227343], [2.294552782266816, 48.88746385461138], [2.294693935572909, 48.88755215425532], [2.294693431976497, 48.8875686935937]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 40, "roussel_fabien": 16.0, "nb_emargement": 1250.0, "nb_procuration": 65.0, "nb_vote_blanc": 16.0, "jadot_yannick": 57.0, "le_pen_marine": 102.0, "nb_exprime": 1229.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1538.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1249, "quartier_bv": "66", "geo_point_2d": [48.88649522650255, 2.295157728473631], "melenchon_jean_luc": 211.0, "poutou_philippe": 1.0, "macron_emmanuel": 440.0}, "geometry": {"type": "Point", "coordinates": [2.295157728473631, 48.88649522650255]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "daa6cbc63b7f0efb48e1e399decff2ee77b95dc8", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 66, "zemmour_eric": 101.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "6-4", "geo_shape": {"coordinates": [[[2.336770277532095, 48.855397431235836], [2.336760859621114, 48.85540633839559], [2.336747854021264, 48.855497515619454], [2.336730342315791, 48.855622334253965], [2.33671124295843, 48.85575623563453], [2.336693731078304, 48.85588105423464], [2.336674631532125, 48.856014955578146], [2.33665712084009, 48.85613977415136], [2.33663801974214, 48.85627367545029], [2.336620508875454, 48.85639849398909], [2.336601407588573, 48.85653239525099], [2.336583896547232, 48.856657213755334], [2.336564795071417, 48.856791114980155], [2.336547283855419, 48.8569159334501], [2.336525603101552, 48.8570246060971], [2.336508091713195, 48.85714942453501], [2.336508044448791, 48.857149711166315], [2.336486364878582, 48.85725838379087], [2.336469831697523, 48.85734565427825], [2.336468596995291, 48.85734842642969], [2.336404303994869, 48.85743690880098], [2.336342487651478, 48.857498396429726], [2.336336583442317, 48.857502453038016], [2.336307860444968, 48.85753102443167], [2.336196985659061, 48.85756982083485], [2.336099277315347, 48.8575948932263], [2.33609132625547, 48.857606196235935], [2.336154131166282, 48.85772688333729], [2.336213989505561, 48.85783923594264], [2.336276794981304, 48.857959922954294], [2.336336653852815, 48.85807227547464], [2.336399458530794, 48.85819296238904], [2.336459319297447, 48.85830531483198], [2.336522124540465, 48.858426001656646], [2.336581985839372, 48.85853835401468], [2.336612248133077, 48.85858599312783], [2.336649667583667, 48.858585775168876], [2.336742033345302, 48.85856658416452], [2.336952474828641, 48.858513299154886], [2.337146304579766, 48.858473027104516], [2.337356745271781, 48.858419741379436], [2.337550574350945, 48.85837946957017], [2.337555180474156, 48.85837781328218], [2.337706861158831, 48.85829481354632], [2.337856754702214, 48.858212119398225], [2.338008434424017, 48.858129119267716], [2.338158325660609, 48.85804642382269], [2.338310005782644, 48.857963423305094], [2.3384598960639202, 48.85788072746999], [2.338611573860294, 48.85779772655022], [2.338761464549051, 48.85771503033258], [2.3389131413826663, 48.85763202901816], [2.339063029753328, 48.85754933240292], [2.339214706987074, 48.85746633070142], [2.339364594402435, 48.8573836336961], [2.339516269310447, 48.85730063159248], [2.339666157133392, 48.857217934204634], [2.339817831067366, 48.85713493260567], [2.339967716572143, 48.857052234820216], [2.340119390917546, 48.85696923193489], [2.340269275467139, 48.85688653375938], [2.340420947486936, 48.85680353047193], [2.340570832444011, 48.8567208319139], [2.340722503501178, 48.85663782823184], [2.340872386140112, 48.85655512927624], [2.34087457232197, 48.85655361781553], [2.340990381314501, 48.856452162989086], [2.3411139030131682, 48.85634421311948], [2.341229711074266, 48.85624275804227], [2.341353233143524, 48.856134807912774], [2.341469038921717, 48.85603335167803], [2.341592559998718, 48.85592540128113], [2.341708364834235, 48.85582394569495], [2.34183188491889, 48.85571599503064], [2.341947688823008, 48.85561453919375], [2.3420712079154278, 48.85550658826205], [2.342187012250985, 48.85540513218186], [2.342310528988349, 48.85529718097535], [2.342426332392521, 48.855195724644396], [2.342549849511844, 48.8550877722787], [2.342665650621814, 48.85498631568959], [2.342667547014384, 48.85498497078178], [2.342775884026278, 48.854922341331736], [2.342837865096618, 48.854893519314864], [2.34284116507217, 48.85489035192852], [2.342760718075485, 48.85483393612632], [2.342660551133977, 48.85472797626948], [2.3425590535556102, 48.85462100532674], [2.342458886059359, 48.85451504617259], [2.342357389309654, 48.85440807503827], [2.342257224006964, 48.854302114803204], [2.34215572808601, 48.85419514347734], [2.342142653495918, 48.854190979534195], [2.34195619900241, 48.854204816105444], [2.341771628527079, 48.854218602493795], [2.341585175187643, 48.85423243939334], [2.341400604516305, 48.854246225209046], [2.341214149616707, 48.854260061522645], [2.3410295787494713, 48.85427384676571], [2.3408431236525162, 48.8542876825008], [2.340658552589187, 48.85430146717123], [2.340653241124384, 48.854301171694544], [2.34049386390564, 48.85427081883177], [2.340340912692989, 48.854242951022165], [2.340321149031117, 48.85423826704946], [2.340309324398591, 48.85424507742102], [2.340155128776567, 48.85428621715456], [2.340000418020179, 48.85432733496145], [2.339846223273652, 48.85436847430141], [2.339691512029278, 48.854409591705846], [2.339537315432647, 48.854450730637176], [2.339382603700286, 48.85449184763915], [2.339374149967814, 48.854501183927454], [2.33939456231141, 48.854622293015105], [2.3394143013889392, 48.8547449146793], [2.339434713932739, 48.85486602283426], [2.339454453196985, 48.85498864446496], [2.339443214420106, 48.85499845732648], [2.339262871725312, 48.85501894449181], [2.339086079824588, 48.85503927652348], [2.338905738211023, 48.855059763157335], [2.338728944669631, 48.85508009465304], [2.338548602774279, 48.85510058074788], [2.338371808955148, 48.85512091171522], [2.338191466778117, 48.8551413972711], [2.338014674043872, 48.85516172771757], [2.338007523722991, 48.85516413260292], [2.33784219385935, 48.855269961209075], [2.337682087959569, 48.855375096314624], [2.337673247800256, 48.85537769957712], [2.337456065385379, 48.85538584512794], [2.337248496383288, 48.85539380969896], [2.337040927306199, 48.85540177480917], [2.336823744703581, 48.85540991831289], [2.336770277532095, 48.855397431235836]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 4, "roussel_fabien": 18.0, "nb_emargement": 877.0, "nb_procuration": 62.0, "nb_vote_blanc": 9.0, "jadot_yannick": 64.0, "le_pen_marine": 43.0, "nb_exprime": 863.0, "nb_vote_nul": 5.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1128.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 877, "quartier_bv": "21", "geo_point_2d": [48.85615720971155, 2.3391310891128594], "melenchon_jean_luc": 156.0, "poutou_philippe": 2.0, "macron_emmanuel": 378.0}, "geometry": {"type": "Point", "coordinates": [2.3391310891128594, 48.85615720971155]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e4c1d8de8b0880b798b79ae886980b063a4da68f", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 30, "zemmour_eric": 74.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-23", "geo_shape": {"coordinates": [[[2.3912698980077, 48.884338871379626], [2.391284904634543, 48.88432303681703], [2.391388558788171, 48.88422056945457], [2.391493735891711, 48.88411645407735], [2.391597389212631, 48.88401398741411], [2.391702565481427, 48.88390987183394], [2.391806219354344, 48.883807404078304], [2.391911393424922, 48.88370328828821], [2.392015046475751, 48.883600820332504], [2.392120221075074, 48.883496704346335], [2.392223871940352, 48.88339423618371], [2.392329045704853, 48.88329011999452], [2.392432695748064, 48.883187651631886], [2.392537868677953, 48.88308353523973], [2.392641519252074, 48.88298106758325], [2.392746689983703, 48.88287695098119], [2.392746506736254, 48.88286144297142], [2.392723120517112, 48.882854799741835], [2.392523317806801, 48.88287169350781], [2.392326785309783, 48.88288796861473], [2.392126982333151, 48.882904862618055], [2.391930450961155, 48.882921136181515], [2.391730647728801, 48.882938029522954], [2.391534114733624, 48.88295430332772], [2.391334311245455, 48.88297119600721], [2.391137779375436, 48.88298746826854], [2.391130597076126, 48.88298677973143], [2.390957104175681, 48.8829365251914], [2.390787306468163, 48.88288631617846], [2.390617507735028, 48.88283610601623], [2.39044401718481, 48.882785851632036], [2.390274219110226, 48.88273564097838], [2.390100727872852, 48.882685385185916], [2.390090641418031, 48.88268083087552], [2.390070129721146, 48.88268609536118], [2.389875196737146, 48.882728082742815], [2.389678958957465, 48.88277049303368], [2.389484025352714, 48.88281247887598], [2.389287786925909, 48.882854889421715], [2.389092854053331, 48.882896874630845], [2.388896615000498, 48.882939283632915], [2.388701680122641, 48.88298126909427], [2.388505440433237, 48.88302367745196], [2.388310504924108, 48.88306566227317], [2.388114264598141, 48.883108069986406], [2.388105333278897, 48.88311430343706], [2.388086151614875, 48.88316185081069], [2.388064972284742, 48.88321554205862], [2.388047871438282, 48.88322189472814], [2.387991882581961, 48.88321085979378], [2.387935987600483, 48.88319891699333], [2.387918643621216, 48.88320507144915], [2.387861649603595, 48.88334080225429], [2.387812854733493, 48.8834585587421], [2.387764059653189, 48.88357631429816], [2.387707064815787, 48.883712045883144], [2.387658270622333, 48.883829801375946], [2.387601275242448, 48.883965531979996], [2.387552479198104, 48.88408328829483], [2.387495483264947, 48.88421901881726], [2.387495445380316, 48.88421910945533], [2.387469253003431, 48.88427980673146], [2.38746144995788, 48.884296984396244], [2.387463317542564, 48.88429923956644], [2.387435646069163, 48.88436336828432], [2.387377565457344, 48.88449851580286], [2.38732369968953, 48.884623341707645], [2.387265618497229, 48.884758489139905], [2.387211753555666, 48.88488331497179], [2.387153671772295, 48.88501846321708], [2.387099806304164, 48.88514328806981], [2.3870417239402952, 48.88527843622884], [2.386987856571285, 48.88540326099473], [2.386933990297065, 48.88552808662841], [2.386875907084247, 48.885663233760454], [2.38687665495113, 48.88567569413169], [2.386891448732321, 48.88568086365974], [2.387074711054769, 48.88570805232281], [2.387289991543254, 48.88574081039386], [2.387473254284752, 48.88576799844545], [2.38768853527187, 48.88580075579811], [2.387688619678046, 48.88580076792098], [2.387871881464571, 48.88582795625325], [2.388045695734609, 48.88585364001168], [2.388228959257167, 48.885880827803064], [2.388402773879798, 48.88590651104192], [2.3885860377854122, 48.88593369738618], [2.388759852750068, 48.885959381004724], [2.388943117028166, 48.88598656680115], [2.389116930981769, 48.88601224989312], [2.389118128026842, 48.886012389999735], [2.389274347657281, 48.886027033825755], [2.389497584640844, 48.886046467234216], [2.389653804480217, 48.88606111056469], [2.389730134568234, 48.886067754434414], [2.3897589497569323, 48.88606784823959], [2.389762104323098, 48.88604966650074], [2.389777585516687, 48.88591207421091], [2.3897930770189513, 48.88577359522129], [2.389808559412257, 48.88563600289983], [2.389824050749924, 48.88549752387145], [2.389839531615792, 48.885359931504475], [2.38985502278897, 48.88522145243731], [2.389870503490831, 48.88508386003177], [2.389885994499624, 48.88494538092582], [2.389901476401187, 48.88480778848868], [2.38991696724539, 48.884669309343955], [2.389932447619547, 48.8845317168613], [2.389947938299269, 48.88439323767779], [2.3899493371602443, 48.884389883128044], [2.390027230609781, 48.88428322702103], [2.390111334340295, 48.884172099567806], [2.39018922850641, 48.88406544244196], [2.390273330175917, 48.883954314846], [2.3902925937524833, 48.88395063847724], [2.390453172882893, 48.88401476412168], [2.390620424151027, 48.88408243447037], [2.390781004091626, 48.88414655966745], [2.390948256219567, 48.884214228650805], [2.391108835606557, 48.884278353393604], [2.391246906717861, 48.88433421559065], [2.3912698980077, 48.884338871379626]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 23, "roussel_fabien": 21.0, "nb_emargement": 1170.0, "nb_procuration": 70.0, "nb_vote_blanc": 8.0, "jadot_yannick": 76.0, "le_pen_marine": 77.0, "nb_exprime": 1157.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 12, "nb_inscrit": 1638.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1170, "quartier_bv": "75", "geo_point_2d": [48.88422684479989, 2.3893301303206766], "melenchon_jean_luc": 530.0, "poutou_philippe": 8.0, "macron_emmanuel": 277.0}, "geometry": {"type": "Point", "coordinates": [2.3893301303206766, 48.88422684479989]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "466a280f14213b82757eea8dff4d9d7aec395757", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 25, "zemmour_eric": 96.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "19-56", "geo_shape": {"coordinates": [[[2.369281320050499, 48.88670453578762], [2.3692743344174, 48.886718214596286], [2.369234879005659, 48.88683971690245], [2.3691963191760133, 48.886961798569985], [2.369156864761338, 48.88708330083066], [2.369118304568315, 48.887205382446005], [2.369078848434375, 48.887326883747605], [2.36904028787807, 48.88744896531074], [2.369000831366626, 48.887570467458936], [2.368962271810711, 48.88769254897707], [2.368922814932557, 48.88781405107262], [2.368884253649774, 48.88793613253137], [2.368844796405, 48.888057634574274], [2.368806234758921, 48.88817971598083], [2.368766778511219, 48.888301217978245], [2.368728216501839, 48.88842329933258], [2.368710433559291, 48.88845149110749], [2.368716824304768, 48.88845935251429], [2.368910637702479, 48.88849753692755], [2.369099320466954, 48.888535081551815], [2.369293134427021, 48.88857326534337], [2.36948181774169, 48.888610809362326], [2.369675632264107, 48.8886489925321], [2.369864316128963, 48.888686535945794], [2.370058131213723, 48.88872471849377], [2.370246815639635, 48.888762260402856], [2.370440631286728, 48.88880044232915], [2.370629316251935, 48.888837984532174], [2.370823132461357, 48.88887616583669], [2.371011816613123, 48.88891370742724], [2.371019707909341, 48.88891784349777], [2.371132734668498, 48.88904782546684], [2.3712532184560082, 48.88919232106885], [2.371283459126775, 48.88920393992741], [2.3713165633273112, 48.889191083452936], [2.371350485732643, 48.8891427619705], [2.371370818894098, 48.88910430845165], [2.371400682899334, 48.889081152983195], [2.371378693272517, 48.88905766144079], [2.371422681083692, 48.888974472061996], [2.371494112254451, 48.88884572670996], [2.3715584325766272, 48.888724083708695], [2.371629863079009, 48.88859533734708], [2.371694182764018, 48.88847369514442], [2.371765611223583, 48.88834494866532], [2.371829930293041, 48.888223305462745], [2.371901359426345, 48.88809455977972], [2.371965677869302, 48.88797291647646], [2.372037106334453, 48.88784416978384], [2.37210142415102, 48.88772252637996], [2.372172851926235, 48.887593780476294], [2.372237169116421, 48.887472136971766], [2.372241478086945, 48.88746810091303], [2.372404584682033, 48.88738123316316], [2.372570253636152, 48.887292403697984], [2.372733360506937, 48.88720553459423], [2.372899026977655, 48.887116704652875], [2.373062132749528, 48.88702983508738], [2.37322779946408, 48.88694100468401], [2.373390904126324, 48.886854135556064], [2.3735565683573983, 48.88676530467649], [2.373719671931767, 48.88667843418752], [2.373885336406576, 48.886589602846016], [2.373896161070847, 48.88656843448615], [2.373872456564014, 48.88654998588837], [2.373819880175335, 48.886529105608204], [2.373648623267477, 48.88645954819904], [2.373486985986175, 48.886395353186316], [2.373315729962965, 48.88632579529256], [2.373154094870861, 48.88626159982976], [2.372982838368555, 48.88619204144426], [2.372821204101902, 48.88612784552425], [2.372659570233875, 48.886063649382294], [2.372488315043146, 48.885994090277016], [2.37232668200067, 48.885929893677854], [2.372155429058121, 48.88586033409512], [2.372143781259894, 48.88584974281413], [2.372107288634481, 48.88585292391816], [2.371905531446363, 48.88583573989986], [2.37170461986133, 48.88581991346298], [2.37150286429772, 48.88580272877282], [2.3713019529732913, 48.8857869007605], [2.37110019765951, 48.885769716290625], [2.370899286584844, 48.88575388760215], [2.370888017271735, 48.885756464313666], [2.370751635253663, 48.8858465669438], [2.370616407205181, 48.88593886353879], [2.370480022875805, 48.88602896583737], [2.370344793872248, 48.88612126211026], [2.37020840859519, 48.886211364084545], [2.370073178636552, 48.886303660035374], [2.369936792411804, 48.8863937616853], [2.369801561508961, 48.88648605641476], [2.369665174325634, 48.88657615863965], [2.369529942467701, 48.88666845304697], [2.369522253299442, 48.88667108805101], [2.369414471729625, 48.88668226025336], [2.369300643235615, 48.8866991876638], [2.369281320050499, 48.88670453578762]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 56, "roussel_fabien": 14.0, "nb_emargement": 1005.0, "nb_procuration": 26.0, "nb_vote_blanc": 8.0, "jadot_yannick": 49.0, "le_pen_marine": 59.0, "nb_exprime": 992.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1412.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1005, "quartier_bv": "73", "geo_point_2d": [48.88729386622091, 2.370987327312536], "melenchon_jean_luc": 503.0, "poutou_philippe": 8.0, "macron_emmanuel": 205.0}, "geometry": {"type": "Point", "coordinates": [2.370987327312536, 48.88729386622091]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "606baea53e8842cb3e37dca1279da9d2e9fdfcc0", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 101, "zemmour_eric": 69.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-79", "geo_shape": {"coordinates": [[[2.283422729557035, 48.840229016686024], [2.283403854817588, 48.8402380232417], [2.283271999577579, 48.84031456571593], [2.283137053741742, 48.84039239720638], [2.283005197719396, 48.84046893937593], [2.282870252435528, 48.840546771462115], [2.282738395643216, 48.84062331242772], [2.282603448198817, 48.840701144194036], [2.282590116366423, 48.84070289086258], [2.282392907307038, 48.84065883767395], [2.282197204317943, 48.84061546592325], [2.281999995921337, 48.84057141208343], [2.2818042935998513, 48.840528038787255], [2.281607085853842, 48.84048398519557], [2.281411384187586, 48.840440611253236], [2.281215682846946, 48.84039723698901], [2.281018476093344, 48.84035318242186], [2.28082277404562, 48.840309807503274], [2.28062556931734, 48.84026575229311], [2.2804298679248642, 48.840222376728384], [2.28023266249696, 48.84017832085886], [2.280225943104187, 48.84017502740106], [2.280104984157625, 48.84006320194595], [2.279983887184315, 48.839950556195774], [2.279975176663803, 48.83994690807742], [2.279835751440787, 48.83993043498725], [2.279695928743056, 48.839914828133516], [2.279686638733637, 48.83991071962361], [2.27958651940237, 48.83980472920612], [2.279483331413012, 48.8396959321556], [2.279465268366896, 48.83969280596114], [2.279386063718901, 48.83972127153565], [2.279330007902661, 48.83974214821955], [2.279322907490192, 48.839750357179824], [2.279325594679792, 48.83980167174635], [2.279328322045707, 48.83984111394414], [2.279330475922806, 48.839845664251634], [2.279436278464385, 48.83995436834491], [2.279546722344486, 48.84006838139577], [2.279652525789159, 48.84017708527611], [2.27976297197664, 48.84029109811278], [2.279762913963445, 48.840301507988414], [2.279779999186334, 48.840309645841025], [2.2797804031554723, 48.84031009076399], [2.279874131761961, 48.84042035857429], [2.279965224970597, 48.84052692750945], [2.280058955720361, 48.84063719516168], [2.280150049685864, 48.8407437639354], [2.280241144023774, 48.840850332629614], [2.280334874576522, 48.84096060002554], [2.280425969658994, 48.84106716945756], [2.280519700992706, 48.84117743668729], [2.280610796844379, 48.841284005058604], [2.280704530321517, 48.841394272130245], [2.2806986258331072, 48.841406754065304], [2.280503629553778, 48.841469611179086], [2.280309280228513, 48.841531564401755], [2.28011428301279, 48.84159442087385], [2.279919932759328, 48.84165637345704], [2.279915570792681, 48.84165857494069], [2.279890201677001, 48.841685776578075], [2.2799190138910372, 48.84169842248366], [2.280012052241859, 48.841802933504965], [2.280105533717462, 48.841904786771615], [2.280198572810571, 48.842009297628486], [2.280292056383281, 48.84211115073876], [2.2803850962312042, 48.84221566053196], [2.280478579163668, 48.84231751436876], [2.280571621116473, 48.84242202400578], [2.280665104796002, 48.84252387677867], [2.2806781407931043, 48.84253264487407], [2.280701803736887, 48.842526883695534], [2.280855363900988, 48.842462440744704], [2.281007890478213, 48.84239881520578], [2.281161451249003, 48.84233437186285], [2.281313977077674, 48.8422707459264], [2.281467535730194, 48.84220630217497], [2.281620060798123, 48.84214267674029], [2.281622656901674, 48.84214126233235], [2.281739848788367, 48.84205936071277], [2.281852303361711, 48.84197988221767], [2.281964757604376, 48.84190040271189], [2.282081948411919, 48.84181850073952], [2.28219440194391, 48.8417390219057], [2.282311593390086, 48.841657119704685], [2.282312867379424, 48.84165632780791], [2.282455169450134, 48.84157863856524], [2.282606507832838, 48.8414957780008], [2.282748809027515, 48.84141808839767], [2.282900147839668, 48.84133522745801], [2.2830424481583123, 48.841257537494435], [2.283193786037461, 48.84117467617138], [2.28333608546771, 48.84109698674663], [2.2834874210514178, 48.84101412503202], [2.283629719618014, 48.84093643434751], [2.283781055631172, 48.84085357225771], [2.283923353321748, 48.840775881212735], [2.284029982861052, 48.84071749736046], [2.2840307970966, 48.84071247924846], [2.284013333664832, 48.840700473352236], [2.283871048844973, 48.8405853691758], [2.283726676582445, 48.84046872878105], [2.283584393028266, 48.84035362423979], [2.283440022049143, 48.84023698347488], [2.283422729557035, 48.840229016686024]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 79, "roussel_fabien": 9.0, "nb_emargement": 1019.0, "nb_procuration": 48.0, "nb_vote_blanc": 14.0, "jadot_yannick": 80.0, "le_pen_marine": 67.0, "nb_exprime": 1004.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1298.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1019, "quartier_bv": "60", "geo_point_2d": [48.84113600859954, 2.2815004287822473], "melenchon_jean_luc": 234.0, "poutou_philippe": 3.0, "macron_emmanuel": 384.0}, "geometry": {"type": "Point", "coordinates": [2.2815004287822473, 48.84113600859954]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e6b34b06da6d72acfd7e50d5b293e508bbe37c0b", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 38, "zemmour_eric": 65.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-25", "geo_shape": {"coordinates": [[[2.376914452547419, 48.82412118264585], [2.376891175492506, 48.82413980073843], [2.3767672219128633, 48.82421252221453], [2.376624488239891, 48.82429339113243], [2.376500533923135, 48.82436611232213], [2.376357800778076, 48.82444698091779], [2.376341429877832, 48.824447661808755], [2.376188409628987, 48.82438100335593], [2.376042608755482, 48.824316057006314], [2.375889587923669, 48.82424939725685], [2.375743787790418, 48.824184450535355], [2.375739251345796, 48.82418314524444], [2.375528602977449, 48.824150838900046], [2.37532372529369, 48.824114953134334], [2.37511884788118, 48.8240790679158], [2.374908200328428, 48.82404675957627], [2.374703323480764, 48.824010872744324], [2.374492675088216, 48.82397856456309], [2.37428780015644, 48.82394267702424], [2.374077152297, 48.82391036810912], [2.3738722765571962, 48.82387447984912], [2.3736616306034852, 48.823842169307895], [2.373646624774877, 48.823846581293544], [2.373553954412251, 48.82395737200651], [2.3734521311159043, 48.82407865176551], [2.373359458576406, 48.82418944139841], [2.373257634374319, 48.824310720966764], [2.373164960998232, 48.824421511325326], [2.373063137263439, 48.82454278981085], [2.372970463061563, 48.82465357999586], [2.372868637048174, 48.824774859182845], [2.372775962031314, 48.82488564829487], [2.372674135112355, 48.82500692729122], [2.372581459258866, 48.825117717128975], [2.372479632806994, 48.82523899504243], [2.372410785924913, 48.82532129796641], [2.372411682795473, 48.8253269057763], [2.372433623906751, 48.82533560005384], [2.372609520384518, 48.825360480528545], [2.372824185785681, 48.82538975066145], [2.373000082632414, 48.825414630560445], [2.373214748475789, 48.825443899990894], [2.373390645691682, 48.82546877931423], [2.373605311977261, 48.82549804804218], [2.373781209562204, 48.8255229267899], [2.373995876289979, 48.825552194815344], [2.374171774243865, 48.825577072987386], [2.374185329301246, 48.82557384322016], [2.374275786578217, 48.82549799296956], [2.374368937541341, 48.825421033420625], [2.374459394286175, 48.825345183020815], [2.374552543332324, 48.825268224210575], [2.3745711535373992, 48.82526654527752], [2.3745929616564663, 48.82527613423896], [2.37464370585228, 48.825300307674645], [2.374648115999339, 48.825311353468166], [2.3745888642923862, 48.825389695690085], [2.374482637969515, 48.825542447431104], [2.374423387113338, 48.82562078956203], [2.374431025775968, 48.8256332849521], [2.374625136224919, 48.82567867621054], [2.374808427451889, 48.82571817994775], [2.375002539896659, 48.82576357149663], [2.375185830346079, 48.825803074645314], [2.37537994344627, 48.825848464678856], [2.375563235831379, 48.825887968152536], [2.375746528494144, 48.8259274713439], [2.375940641183656, 48.82597286045521], [2.376123934441583, 48.82601236216585], [2.3763180491269242, 48.826057751567575], [2.376501341607274, 48.82609725268966], [2.376695456947994, 48.82614264057602], [2.376878751363942, 48.82618214202312], [2.377072865987308, 48.826227529286385], [2.37725616098764, 48.82626703015203], [2.377450277617688, 48.82631241680634], [2.377552209609245, 48.8263343830553], [2.377578290021258, 48.82635061937718], [2.377615100854408, 48.8263493269935], [2.377696463140695, 48.82636686007932], [2.377850608090893, 48.82638774510197], [2.378085683599232, 48.826417736070425], [2.3782398288557642, 48.82643862059039], [2.378249559385396, 48.82643752807699], [2.378428775499843, 48.82636673648808], [2.378599731380098, 48.82629889572108], [2.378778946542429, 48.826228103598716], [2.378949900150386, 48.82616026231569], [2.379129114360706, 48.82608946965983], [2.3793000684205072, 48.82602162787491], [2.379479281678817, 48.825950834685585], [2.379650233466426, 48.82588299238467], [2.379821186160298, 48.8258151507417], [2.380000398012071, 48.82574435585909], [2.380171348433767, 48.82567651370008], [2.380350559333424, 48.82560571828401], [2.380521510206957, 48.825537875623176], [2.380700720154598, 48.825467079673615], [2.38070595165121, 48.825463327597475], [2.380724086876941, 48.825441076572744], [2.380668178217362, 48.82541224361734], [2.380497358125669, 48.82535289324441], [2.380329112437386, 48.8252949490923], [2.380158293126758, 48.82523559732954], [2.379990046821074, 48.82517765358665], [2.379819228280729, 48.825118301333326], [2.379650984092423, 48.82506035711444], [2.379482740288784, 48.82500241175656], [2.379311922900094, 48.82494305876937], [2.379143678479049, 48.824885113820635], [2.3789728618605412, 48.82482576034296], [2.378804619567688, 48.824767814018934], [2.378633803708748, 48.82470846095005], [2.378465562171134, 48.82465051414298], [2.378294747093299, 48.824591159684275], [2.378126504938276, 48.824533213286394], [2.377955690630728, 48.82447385833721], [2.377787450603805, 48.824415910564014], [2.377616637055711, 48.824356556023666], [2.377448397784235, 48.824298607767396], [2.377277585017164, 48.82423925183727], [2.377109345128172, 48.824181303990215], [2.376938533131494, 48.82412194756957], [2.376914452547419, 48.82412118264585]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 25, "roussel_fabien": 26.0, "nb_emargement": 1233.0, "nb_procuration": 47.0, "nb_vote_blanc": 15.0, "jadot_yannick": 81.0, "le_pen_marine": 96.0, "nb_exprime": 1207.0, "nb_vote_nul": 11.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1729.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1233, "quartier_bv": "50", "geo_point_2d": [48.82515141117061, 2.3764114269826], "melenchon_jean_luc": 569.0, "poutou_philippe": 8.0, "macron_emmanuel": 282.0}, "geometry": {"type": "Point", "coordinates": [2.3764114269826, 48.82515141117061]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ac3a9611f6df5f275160121b8cc54f4fe8c508ea", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 31, "zemmour_eric": 57.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "10-8", "geo_shape": {"coordinates": [[[2.362614196105643, 48.87426986784615], [2.362599870800436, 48.87423099781602], [2.362494597138212, 48.87412858201961], [2.362390926092326, 48.87402625919289], [2.362285653254748, 48.87392384319374], [2.362181983026832, 48.87382152016709], [2.36207670965058, 48.87371910395786], [2.361973040240629, 48.873616780731304], [2.36186776905232, 48.87351436432667], [2.361764100460323, 48.873412040900114], [2.361658830096634, 48.873309624292716], [2.361555162322481, 48.873207300666316], [2.361554108671213, 48.8732060584584], [2.361544344987813, 48.87318119547786], [2.361531781837885, 48.87317950696454], [2.361447930028217, 48.873059137606624], [2.361354318873269, 48.87292449129165], [2.361270467873304, 48.87280412268091], [2.361176857635401, 48.872669476196045], [2.361176848268982, 48.87266946175665], [2.361092998089675, 48.872549092993786], [2.361014432986636, 48.8724365847002], [2.360930584920704, 48.87231621580544], [2.360852020519721, 48.87220370738155], [2.360768173215006, 48.87208333744837], [2.360689609505033, 48.871970829793455], [2.360605762950494, 48.87185045972114], [2.360527199942557, 48.87173795193589], [2.360443352775027, 48.871617581717125], [2.360364791832273, 48.87150507380883], [2.360352734608763, 48.87149119823896], [2.360338312719935, 48.87149491817597], [2.360326921160137, 48.87149644463131], [2.360312464745718, 48.871510635376666], [2.360215645616117, 48.87161720752173], [2.360118260915322, 48.8717221766343], [2.360020875821926, 48.87182714565766], [2.35992405550743, 48.87193371753632], [2.359826669627171, 48.87203868638157], [2.359729848533182, 48.87214525718349], [2.359632461866155, 48.872250225850635], [2.359535639970555, 48.872356797374295], [2.359438252516548, 48.87246176586332], [2.3593414311936662, 48.87256833721679], [2.359244041589487, 48.87267330552041], [2.359147219487102, 48.87277987579713], [2.359049829096126, 48.8728848439226], [2.358953006192101, 48.872991414921046], [2.358855616377408, 48.87309638287574], [2.358758791319502, 48.87320295368936], [2.358759465423479, 48.87321287159232], [2.358881535688404, 48.873323411849725], [2.359005166557709, 48.87343724380455], [2.359005138211467, 48.87344774520922], [2.358911874810965, 48.87353297773701], [2.358775041082363, 48.87365824010196], [2.358681776928439, 48.87374347243422], [2.358544943456814, 48.8738687345196], [2.3584516785494642, 48.87395396665632], [2.358450310944569, 48.873955526870176], [2.358368533955271, 48.87407515177388], [2.35828542133998, 48.874196587009415], [2.358203643604591, 48.87431621087507], [2.358120530220214, 48.87443764596954], [2.358038751716566, 48.87455727059571], [2.357955637563092, 48.87467870554919], [2.357873858302252, 48.87479833003657], [2.357790743379672, 48.87491976484905], [2.357708963372721, 48.87503938829834], [2.357625847669934, 48.87516082386908], [2.357567060143579, 48.875187663824235], [2.357577075414548, 48.87520173371774], [2.35761372560303, 48.875267604377115], [2.357673545863415, 48.87538034950262], [2.357745558279178, 48.87550977791685], [2.357805379102975, 48.87562252295167], [2.357877392181169, 48.87575195125819], [2.357937213568587, 48.87586469620237], [2.35799703385162, 48.875977441097895], [2.358069049260167, 48.87610686925478], [2.358112489440598, 48.87614971626976], [2.35812753005981, 48.876149455170484], [2.358184147033661, 48.87614026805478], [2.3584019482757412, 48.8761068741586], [2.3586049366466533, 48.876073937403525], [2.35863898466507, 48.87606871752297], [2.358641659355484, 48.87606852680472], [2.358667569456306, 48.876060612076714], [2.358851323452112, 48.87603243725674], [2.359037799957957, 48.87600094469707], [2.359255600081154, 48.87596754834426], [2.359442076110334, 48.875936055153005], [2.359512847247879, 48.87593012859127], [2.359511345622979, 48.87588082981535], [2.359460355985462, 48.87577949333404], [2.35940976177086, 48.87567351477078], [2.359358772522981, 48.87557217912646], [2.359308180079812, 48.87546620050762], [2.35925719123242, 48.875364864801], [2.359206599197314, 48.87525888611932], [2.359213370676299, 48.87524818700086], [2.359377745481663, 48.87519245092194], [2.359565649781783, 48.87512850726038], [2.359730023832478, 48.8750727706917], [2.359917927268453, 48.875008826470236], [2.360082300553428, 48.874953090311095], [2.360270204499445, 48.87488914463774], [2.360434577029754, 48.874833407988824], [2.360622478737132, 48.87476946264758], [2.360786850523814, 48.87471372460963], [2.360974751367042, 48.87464977870849], [2.36113912239905, 48.874594040180774], [2.36114104178749, 48.8745935072257], [2.361321385434608, 48.874553829490715], [2.361511671864013, 48.87451183296945], [2.361692014945999, 48.87447215467314], [2.361882300778181, 48.87443015755964], [2.362062641931803, 48.874390478694814], [2.362252927166756, 48.87434848098901], [2.362433269118466, 48.87430880157016], [2.362578217124672, 48.87427680979668], [2.362614196105643, 48.87426986784615]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 8, "roussel_fabien": 27.0, "nb_emargement": 1296.0, "nb_procuration": 108.0, "nb_vote_blanc": 10.0, "jadot_yannick": 169.0, "le_pen_marine": 63.0, "nb_exprime": 1283.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1657.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1296, "quartier_bv": "39", "geo_point_2d": [48.87398517208486, 2.359867677585378], "melenchon_jean_luc": 443.0, "poutou_philippe": 8.0, "macron_emmanuel": 435.0}, "geometry": {"type": "Point", "coordinates": [2.359867677585378, 48.87398517208486]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4808060b50231fea5b02204adb43719e677a24fd", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 160, "zemmour_eric": 231.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-6", "geo_shape": {"coordinates": [[[2.277791925817521, 48.85768774509809], [2.277853094507135, 48.857699059436804], [2.278049581975646, 48.8576798646948], [2.278244763710519, 48.85765997104851], [2.278441249511998, 48.85764077655382], [2.278636432326229, 48.85762088137691], [2.278832917836007, 48.857601686238446], [2.27902809899137, 48.8575817904138], [2.279224585572314, 48.85756259463978], [2.279419766431676, 48.857542698175656], [2.279431397873693, 48.8575451704005], [2.279540433883451, 48.857615841010286], [2.279646343972844, 48.8576828323122], [2.279652071263663, 48.85768499466902], [2.279832162850012, 48.85771855174067], [2.280033603319796, 48.85775523454589], [2.280213694044187, 48.85778879013374], [2.280415135041714, 48.85782547319367], [2.280595227617475, 48.85785902821341], [2.280796669167584, 48.857895709729505], [2.280976762219312, 48.857929265072244], [2.2811782043096738, 48.85796594594371], [2.281358296487097, 48.85799950070194], [2.2813589971069588, 48.857999003068294], [2.281371521336272, 48.85796690018634], [2.281561612411676, 48.857930871174666], [2.281748220367414, 48.8578946770579], [2.281938309568342, 48.857858646538034], [2.282124916991235, 48.85782245273081], [2.282315007031054, 48.85778642161837], [2.282501613946082, 48.857750226322096], [2.282691703461895, 48.85771419460895], [2.28287830984408, 48.857677999622176], [2.283068398835883, 48.85764196730834], [2.283255004710177, 48.857605770832485], [2.283445091802716, 48.85756973880901], [2.283631697156637, 48.85753354174345], [2.283637865390672, 48.857518811224935], [2.2835243577683633, 48.857437724628895], [2.283356342711741, 48.85730710945096], [2.283242835988741, 48.857226022572405], [2.283241888996961, 48.85722540893447], [2.2830947600091323, 48.85714074612153], [2.28295887939514, 48.85706087754511], [2.282823000560482, 48.856981008816796], [2.282675871593042, 48.85689634456278], [2.28253999362137, 48.856816475501276], [2.282392865578284, 48.85673181088674], [2.282256988469494, 48.85665194149207], [2.282109861338466, 48.85656727741633], [2.282092578048089, 48.85653135858822], [2.282055170254611, 48.85652892533042], [2.281991493137224, 48.856500185600254], [2.281956759382499, 48.85648668106904], [2.281953363216998, 48.85648448514237], [2.281844581778677, 48.85638153662698], [2.281706566173213, 48.85625404620161], [2.281706536575496, 48.85625401814384], [2.281597756118506, 48.856151068483406], [2.281495151712427, 48.85605551704656], [2.281386372087505, 48.855952567175564], [2.281283768472352, 48.855857014641124], [2.281181163858381, 48.85576146290156], [2.281072386830451, 48.85565851272607], [2.281063287861982, 48.85565476888749], [2.2810018932304272, 48.855642668761284], [2.280885742618078, 48.855630826830016], [2.280874171944834, 48.85563326020919], [2.280753943568738, 48.855714126546026], [2.280592534562341, 48.85581747018205], [2.280472306674417, 48.855898337129986], [2.280310896538796, 48.85600168036895], [2.280190666425986, 48.85608254701232], [2.280190274482963, 48.856082800971855], [2.280028863216441, 48.856186143813204], [2.27990033110274, 48.856265889968284], [2.279877702871793, 48.85627009049961], [2.279861814489797, 48.85628601515555], [2.279733281874068, 48.85636576112403], [2.279607703798456, 48.85645792149517], [2.279607120945106, 48.8564583793571], [2.27950460087662, 48.85654421563906], [2.279425056953059, 48.856611032057145], [2.279423681682008, 48.85661202206329], [2.279300159046194, 48.85667896477746], [2.279163650100602, 48.85676353030279], [2.279162540901152, 48.856764202636505], [2.279053046509563, 48.85683832733028], [2.278916536757733, 48.85692289166231], [2.278807043045559, 48.856997016128595], [2.278670532466263, 48.85708158106715], [2.278547269573751, 48.85715727350869], [2.278410756790209, 48.85724183813052], [2.278287493141193, 48.85731753029353], [2.278150980879031, 48.85740209461502], [2.2780277164609473, 48.8574777873988], [2.278026214412336, 48.85747887375416], [2.277913967376468, 48.8575692546471], [2.277790248114774, 48.85767495420113], [2.277791925817521, 48.85768774509809]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 6, "roussel_fabien": 8.0, "nb_emargement": 1063.0, "nb_procuration": 72.0, "nb_vote_blanc": 7.0, "jadot_yannick": 26.0, "le_pen_marine": 51.0, "nb_exprime": 1053.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1319.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1063, "quartier_bv": "62", "geo_point_2d": [48.85703934467333, 2.280851771318432], "melenchon_jean_luc": 48.0, "poutou_philippe": 0.0, "macron_emmanuel": 494.0}, "geometry": {"type": "Point", "coordinates": [2.280851771318432, 48.85703934467333]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8ec581aedc3e1d48ed9a34dd8a507287e001e3ee", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 177, "zemmour_eric": 274.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-51", "geo_shape": {"coordinates": [[[2.286253108921799, 48.866279961958035], [2.286261738091667, 48.86627447881974], [2.286282680709097, 48.86621250180565], [2.286282859829732, 48.86621186523478], [2.286315551570655, 48.86607955266679], [2.286342820531234, 48.86595827514156], [2.286370089352529, 48.86583699849614], [2.286402780636762, 48.86570468585946], [2.286430047834962, 48.865583408265216], [2.286462740158441, 48.865451096489316], [2.286490007084325, 48.86532981885353], [2.2865226991088, 48.86519750613168], [2.286549965750056, 48.865076229353804], [2.286582657463009, 48.86494391658523], [2.286609923844273, 48.86482263886659], [2.2866426152336, 48.86469032695063], [2.2866698813425588, 48.86456904919056], [2.286702571057317, 48.864436737219805], [2.286729838257034, 48.86431545942643], [2.286729841118583, 48.864315449550624], [2.286762530521929, 48.86418313753319], [2.286790400354476, 48.86405824609942], [2.286823090818086, 48.863925933143555], [2.286850960367757, 48.863801041666676], [2.286883650516168, 48.863668728663555], [2.286911519783069, 48.863543837143546], [2.286944208240946, 48.86341152498433], [2.286972078588113, 48.86328663342934], [2.287004766743115, 48.863154320323545], [2.287032636807513, 48.86302942872551], [2.28702849386446, 48.862966314474924], [2.286958025212416, 48.862962038215], [2.286843011278616, 48.86297530994817], [2.286651489105305, 48.862997714453314], [2.28645417538567, 48.86302048253494], [2.286262654242002, 48.86304288642506], [2.286065340193681, 48.86306565296541], [2.285873817353727, 48.86308805622423], [2.285676502952084, 48.86311082302188], [2.285484979778868, 48.863133225657556], [2.285287666411593, 48.86315599092203], [2.285096142905129, 48.86317839293454], [2.284898827821511, 48.863201158448184], [2.284707303994151, 48.86322355893823], [2.2845099885695612, 48.863246323809896], [2.284318464396723, 48.863268724575995], [2.284121150006449, 48.86329148791453], [2.283929625500387, 48.86331388805752], [2.283732309393876, 48.86333665164516], [2.283540784554495, 48.86335905116494], [2.283343468119404, 48.86338181321132], [2.283151944309846, 48.86340421211611], [2.282954627521447, 48.86342697441973], [2.2827631020156582, 48.86344937269319], [2.28256578489871, 48.86347213345553], [2.282374259059731, 48.86349453110581], [2.282176942952513, 48.863517292133594], [2.281985416792743, 48.86353968826142], [2.28178809898158, 48.863562448639016], [2.281596572476344, 48.86358484504296], [2.28154400520542, 48.86358146538658], [2.281537615137159, 48.863583225730224], [2.28134608844786, 48.863605621732844], [2.281143088218764, 48.86362880379749], [2.280951561192305, 48.86365119916784], [2.280748560610165, 48.863674380562315], [2.280557033246455, 48.86369677530037], [2.280354033674213, 48.86371995603292], [2.280162505973361, 48.86374235013871], [2.279959504697383, 48.86376552929363], [2.279767976659503, 48.863787922767116], [2.279664296855276, 48.863799761997925], [2.279584075658858, 48.86380229645341], [2.27958781983677, 48.8638846295275], [2.279766096256837, 48.86395371156569], [2.279934456561603, 48.864019325124836], [2.28011273390225, 48.86408840663827], [2.2802810950664583, 48.864154020601056], [2.28045937332769, 48.86422310158975], [2.28062773537619, 48.864288714157645], [2.280806014558002, 48.86435779462159], [2.28097437747847, 48.86442340669384], [2.281152657580762, 48.86449248663306], [2.281321021360691, 48.86455809910898], [2.281327658879933, 48.864564991127544], [2.281339281500072, 48.864645692292925], [2.281351510905523, 48.8647312248138], [2.281358210741446, 48.86473814688228], [2.281521096063705, 48.864800865322486], [2.281684899327781, 48.864863869642164], [2.281847785448827, 48.86492658673134], [2.282011590866372, 48.8649895906049], [2.282174476410728, 48.86505230723418], [2.282338282618671, 48.86511531065349], [2.282501168937019, 48.86517802773028], [2.2826649759354662, 48.865241030695316], [2.28282786441556, 48.8653037464293], [2.282991672204306, 48.86536674894002], [2.283154560107802, 48.865429464214095], [2.283318368687049, 48.86549246627052], [2.283323846063789, 48.86549641933976], [2.283401989979103, 48.86560642096839], [2.283480264942957, 48.86571544212625], [2.283558409517201, 48.86582544363095], [2.283636686512955, 48.86593446377379], [2.283714831745935, 48.866044465154665], [2.283793108022674, 48.866153486064704], [2.283871253914599, 48.86626348732163], [2.283949530860151, 48.86637250720858], [2.284027677410824, 48.866482508341605], [2.284105955000475, 48.86659152900391], [2.284184232930116, 48.86670054870503], [2.284262380468583, 48.8668105496522], [2.284293344569686, 48.86685717003334], [2.284306866301548, 48.86685696759572], [2.284367159327095, 48.86683794263953], [2.284553048364873, 48.86677885061682], [2.28474653794119, 48.86671779278097], [2.284746888486127, 48.86671767885979], [2.284932776676365, 48.8666585853416], [2.285095705851406, 48.866603331321635], [2.285281593225593, 48.8665442381549], [2.285444521673128, 48.86648898365442], [2.285607451138047, 48.86643372893751], [2.285793337338871, 48.86637463406768], [2.285956264713167, 48.86631937886207], [2.286142150097949, 48.86626028434364], [2.286253108921799, 48.866279961958035]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 51, "roussel_fabien": 6.0, "nb_emargement": 1449.0, "nb_procuration": 101.0, "nb_vote_blanc": 9.0, "jadot_yannick": 44.0, "le_pen_marine": 65.0, "nb_exprime": 1438.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1842.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1449, "quartier_bv": "63", "geo_point_2d": [48.86460730370487, 2.284217268913463], "melenchon_jean_luc": 151.0, "poutou_philippe": 1.0, "macron_emmanuel": 693.0}, "geometry": {"type": "Point", "coordinates": [2.284217268913463, 48.86460730370487]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "22e2538cf75375dfeaca72af88901dfebb7333d8", "fields": {"lassalle_jean": 27.0, "pecresse_valerie": 82, "zemmour_eric": 128.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "4-8", "geo_shape": {"coordinates": [[[2.36809244888894, 48.850876192765675], [2.368084553956242, 48.850858016488324], [2.368036890504433, 48.85075533187884], [2.367981062095904, 48.85063124983611], [2.367923631141693, 48.8505075208267], [2.367867803268233, 48.850383438703545], [2.367810372866956, 48.850259708712905], [2.367754544166065, 48.85013562650206], [2.367697114306809, 48.85001189642952], [2.367641287503775, 48.84988781414537], [2.367583858175614, 48.84976408489024], [2.367528031918543, 48.84964000162632], [2.3674706031323822, 48.849516272289286], [2.367414776036965, 48.84939218983701], [2.367357347803717, 48.849268459518726], [2.367301522606112, 48.849144376993216], [2.367244094903933, 48.84902064749237], [2.367188270252275, 48.848896563987054], [2.367191056222446, 48.8488883262316], [2.367176762378182, 48.84886836766571], [2.367129035444821, 48.84876301556523], [2.367073211332185, 48.84863893287683], [2.367025483455634, 48.848533580706125], [2.36696965983533, 48.84840949794386], [2.36692193375182, 48.84830414481806], [2.366881820843543, 48.84821498259556], [2.366884943737877, 48.84818742574707], [2.366874901426411, 48.84817939171452], [2.366859191222074, 48.84814447109887], [2.366800169445497, 48.848014053303935], [2.366744345555643, 48.84788997037144], [2.366685324365538, 48.847759551590784], [2.36662950238438, 48.84763546858354], [2.366573680669043, 48.84751138553647], [2.366514660334797, 48.8473809666273], [2.366511074714928, 48.84737707500907], [2.366383732868739, 48.84729582005045], [2.366240762394423, 48.84721022819984], [2.366113421377489, 48.847128972941384], [2.365970451815795, 48.8470433798556], [2.365970096080033, 48.84704316212453], [2.365820338402571, 48.846954187265595], [2.365677369790791, 48.84686859471547], [2.365527613114736, 48.846779619476195], [2.365384644110966, 48.84669402565633], [2.365234888425261, 48.846605050936], [2.365091921743764, 48.846519456760134], [2.3649421656969523, 48.84643048165223], [2.364799199975114, 48.8463448871132], [2.364649446292286, 48.846255911632156], [2.36450648016751, 48.8461703167227], [2.364459463410004, 48.846128386198444], [2.364433675824015, 48.846130677473504], [2.36437331143046, 48.84617615750469], [2.364237629407869, 48.84628000046253], [2.364105376152, 48.846379641695], [2.363969693065759, 48.84648348433002], [2.36383744014373, 48.846583125255414], [2.36370175462035, 48.84668696845965], [2.363569500669651, 48.84678660907064], [2.3634372448506182, 48.846886249519244], [2.3633015591141, 48.84699009134932], [2.363169302266484, 48.84708973148354], [2.363033615455294, 48.84719357389008], [2.362901357578879, 48.847293213709925], [2.362765669715088, 48.847397054894294], [2.362633410809971, 48.84749669439975], [2.36249772188248, 48.8476005352613], [2.362496744763913, 48.84760120906965], [2.362470801226242, 48.84761172551481], [2.362458920107633, 48.84763331693243], [2.362295380540106, 48.847734969399134], [2.362138784970272, 48.847832031464876], [2.361975244143692, 48.84793368437516], [2.361818647380485, 48.84803074600452], [2.361655105305846, 48.848132398459065], [2.361498505986614, 48.84822945964485], [2.36142229080235, 48.848270949425945], [2.361425789089392, 48.848302737884964], [2.361456854287451, 48.848326250096214], [2.361386290999373, 48.84845462541272], [2.361319971092822, 48.84856941785704], [2.361249405775626, 48.84869779305747], [2.361183086620746, 48.848812585408155], [2.361112520637076, 48.848940960499824], [2.361046199508646, 48.84905575274227], [2.360975634221058, 48.84918412773244], [2.360909312481627, 48.84929891987392], [2.360838746527552, 48.849427294755365], [2.360772424177112, 48.84954208679589], [2.360771746234912, 48.84954369571929], [2.360720415796129, 48.84964732946433], [2.360688516652809, 48.849764178719155], [2.360658733871172, 48.84989534441657], [2.360626833075134, 48.85001219362165], [2.360594932124899, 48.85012904370524], [2.360565150261877, 48.85026020934363], [2.360533249032636, 48.850377058485456], [2.360503465509908, 48.85050822407197], [2.360503251608353, 48.85050999645742], [2.360504516760828, 48.85055215330463], [2.360507046667604, 48.85056021066022], [2.360576710041152, 48.8505618906403], [2.36074735706041, 48.85061837815259], [2.360916875205984, 48.850674491550684], [2.3610875216001, 48.85073097856489], [2.3612570404782582, 48.85078709147536], [2.361427687609836, 48.85084357799866], [2.361597208572274, 48.85089969132812], [2.361767856441315, 48.85095617736053], [2.361937376784641, 48.85101228929581], [2.362108025391141, 48.85106877483736], [2.3622775464670482, 48.85112488628498], [2.362448197173726, 48.85118137134295], [2.362617718971213, 48.851237483202205], [2.362634414129394, 48.85124074506064], [2.362646103394492, 48.85123222658667], [2.362759757768343, 48.85117423990404], [2.36286893721441, 48.85111853522809], [2.362978117789775, 48.851062830456996], [2.363091771435805, 48.851004842550886], [2.363103146335755, 48.85100319072948], [2.36328912837118, 48.85103127453834], [2.3634773850034563, 48.85105970022015], [2.363663367442248, 48.85108778344584], [2.363851624471833, 48.85111620943674], [2.364037608687584, 48.851144291187246], [2.364225866125457, 48.85117271658785], [2.364411849381935, 48.851200797747985], [2.364600107228088, 48.85122922255831], [2.364786090876944, 48.8512573040346], [2.364974349142332, 48.851285727355375], [2.365160333194427, 48.851313808248555], [2.365348591857222, 48.85134223187832], [2.3655345776863292, 48.85137031129628], [2.365722836757283, 48.851398734335795], [2.365908821626982, 48.85142681316335], [2.366097081106288, 48.851455235612626], [2.366283066368362, 48.85148331475634], [2.3664713262559163, 48.851511736615294], [2.366657311932235, 48.851539814276556], [2.3668455722279242, 48.85156823554526], [2.36686065254764, 48.851555257626124], [2.366777095318729, 48.85145118918562], [2.366676279619569, 48.851325625596544], [2.3665927231270762, 48.85122155700581], [2.366491908316434, 48.85109599323548], [2.366408352560348, 48.85099192449446], [2.366307538638214, 48.850866360542916], [2.366223983618526, 48.85076229165166], [2.366123170584889, 48.85063672751887], [2.366039616301593, 48.8505326584774], [2.366038247170759, 48.85053127700882], [2.365932161518827, 48.85044308711799], [2.365823000237889, 48.85035234014436], [2.365716915314602, 48.8502641500485], [2.365607754783327, 48.85017340286395], [2.365501669225883, 48.85008521255583], [2.365392509444269, 48.84999446516031], [2.365286425989006, 48.8499062737551], [2.365177266957045, 48.849815526148596], [2.365184573877143, 48.84980122019829], [2.365354468658739, 48.84977264243186], [2.365513666921927, 48.84974586397043], [2.365683561342575, 48.849717285735345], [2.365842759267643, 48.8496905068347], [2.366001958391675, 48.84966372772887], [2.36617185227676, 48.84963514879827], [2.366187920797781, 48.84964060846973], [2.366256595495074, 48.84975733535441], [2.366324999499818, 48.84987359848351], [2.366393674811203, 48.84999032526505], [2.366462078053984, 48.85010658918355], [2.366530753979366, 48.85022331586195], [2.366599159196515, 48.85033957968495], [2.366667835747036, 48.85045630536097], [2.36673624021316, 48.850572569074004], [2.366804918729574, 48.85068929555343], [2.366873323807384, 48.85080555916376], [2.36688459710032, 48.85081124697719], [2.367077224969177, 48.85082466191173], [2.36726331986749, 48.85083762019002], [2.367449413484824, 48.8508505790708], [2.367642041655381, 48.85086399219629], [2.367828136823684, 48.85087695049496], [2.368020765178399, 48.850890363909706], [2.36809244888894, 48.850876192765675]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 8, "roussel_fabien": 23.0, "nb_emargement": 1267.0, "nb_procuration": 69.0, "nb_vote_blanc": 14.0, "jadot_yannick": 85.0, "le_pen_marine": 86.0, "nb_exprime": 1249.0, "nb_vote_nul": 4.0, "arr_bv": "04", "arthaud_nathalie": 3, "nb_inscrit": 1613.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1267, "quartier_bv": "15", "geo_point_2d": [48.849153131422064, 2.364236266606491], "melenchon_jean_luc": 302.0, "poutou_philippe": 5.0, "macron_emmanuel": 466.0}, "geometry": {"type": "Point", "coordinates": [2.364236266606491, 48.849153131422064]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "59299c66ce2107657627f61ca7f09de68d5465cf", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 38, "zemmour_eric": 51.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-16", "geo_shape": {"coordinates": [[[2.368243378204167, 48.87942960546311], [2.368275192863139, 48.87945066750737], [2.368377220585905, 48.87956924124682], [2.368472332197303, 48.87968056666635], [2.368567445578788, 48.87979189200623], [2.368669474635415, 48.87991046545989], [2.368764588858069, 48.88002179061995], [2.368866618813934, 48.88014036388083], [2.368961733877968, 48.880251688861016], [2.369063764733082, 48.88037026192913], [2.3691588806383033, 48.88048158672941], [2.369260912392676, 48.880600159604754], [2.369356029128408, 48.88071148512446], [2.36945806179294, 48.88083005690778], [2.369553179369985, 48.88094138224759], [2.369655212922808, 48.88105995473738], [2.369750331352061, 48.881171278998075], [2.369852365804276, 48.88128985129507], [2.369947485074857, 48.88140117537586], [2.370049520426375, 48.88151974748007], [2.370144640538193, 48.88163107138099], [2.3702163276897013, 48.8816313414836], [2.370243563471969, 48.881595407262495], [2.370243375289125, 48.88146032072749], [2.370245894090662, 48.881332878325665], [2.370245705902824, 48.881197791758424], [2.37024822468596, 48.88107034932617], [2.370248036492923, 48.88093526272672], [2.370250555268635, 48.88080781936472], [2.370250367070502, 48.88067273273308], [2.370252885816837, 48.880545290239915], [2.370255403187458, 48.88041784772478], [2.370255216341646, 48.88028276105247], [2.370257735068127, 48.88015531761483], [2.370257546853729, 48.88002023090317], [2.37026006555104, 48.87989278833432], [2.370259877331546, 48.87975770159044], [2.370262396010356, 48.8796302589912], [2.370262207785868, 48.87949517221513], [2.370264726457153, 48.87936772868616], [2.370264538227467, 48.87923264187791], [2.370267056869479, 48.87910519921782], [2.370266868634799, 48.87897011237736], [2.370269387258413, 48.87884266968684], [2.370269200381979, 48.8787075828214], [2.370271717634727, 48.87858013919402], [2.370271530753191, 48.878445052296385], [2.370274047976573, 48.87831760953785], [2.370273861090035, 48.87818252260806], [2.370275239559288, 48.87811272191189], [2.370281257939034, 48.878056005718555], [2.370276816194544, 48.87805382125903], [2.370277954927251, 48.877996179163134], [2.370280721624723, 48.87799086427452], [2.370407354440146, 48.87788065256355], [2.370537270545194, 48.87777490697111], [2.370663900929341, 48.87766469496004], [2.370793815985787, 48.877558948169174], [2.370920445301892, 48.877448735865116], [2.371050359287914, 48.87734298967441], [2.371176987536089, 48.8772327770774], [2.371306900462564, 48.877127030587594], [2.371433527653674, 48.87701681679839], [2.371563439520609, 48.876911070009434], [2.371690066996349, 48.87680085683373], [2.371819976440365, 48.87669510973854], [2.371946602859046, 48.87658489537061], [2.37207651124355, 48.87647914797631], [2.372090537755092, 48.8764659698754], [2.372078181617436, 48.8764288102667], [2.372204805478921, 48.876318595591876], [2.372328512467995, 48.87621120377706], [2.3723269854799423, 48.876205428345614], [2.37228255001847, 48.87618581921019], [2.372079172922821, 48.87618215261798], [2.371878702007042, 48.87617854409705], [2.371675324968235, 48.87617487681875], [2.371474855482675, 48.876171266729386], [2.371271478500621, 48.87616759876491], [2.371071007696833, 48.87616398889138], [2.370867630771744, 48.876160320240835], [2.370667160023964, 48.87615670969096], [2.370463783155749, 48.8761530403543], [2.370263313827365, 48.876149429135275], [2.370059935663432, 48.87614575820606], [2.369859466391082, 48.87614214631071], [2.369847895258257, 48.876137494302114], [2.369784367753824, 48.87606138471478], [2.369733363217341, 48.875984742964725], [2.36972059971534, 48.87597936609733], [2.369519514474697, 48.875982090688986], [2.369323137611046, 48.875985453094536], [2.369122050962743, 48.875988177011344], [2.368925675413861, 48.87599153877202], [2.36872458872128, 48.87599426202118], [2.368528211760433, 48.875997623122686], [2.368516732617074, 48.8759938303331], [2.368403806580043, 48.875888657325596], [2.36828834746958, 48.8757845185561], [2.3681754223474343, 48.875679345313195], [2.368059964157703, 48.87557520630363], [2.367947039950534, 48.87547003282533], [2.367831581318065, 48.87536589356857], [2.367718659400138, 48.875260718962785], [2.367603201688186, 48.875156579465994], [2.3674902806742972, 48.87505140552412], [2.367374823883052, 48.87494726578726], [2.367261902420767, 48.8748420916028], [2.367146447913359, 48.87473795163317], [2.367033527366117, 48.87463277721333], [2.366918073779292, 48.87452863700367], [2.366894717334117, 48.874506882665116], [2.366889524575493, 48.87449361248934], [2.366878186338262, 48.87449015393371], [2.3667886232172, 48.87440673270413], [2.366680654830799, 48.87430804133652], [2.366567737519358, 48.874202866443525], [2.366459768610854, 48.87410417485119], [2.366455298301115, 48.874104043271494], [2.366433353339834, 48.87411647465441], [2.366382490768595, 48.87423191395507], [2.366323059464237, 48.87436670562951], [2.366272196404299, 48.87448214485715], [2.366212764528889, 48.87461693644625], [2.366161902343482, 48.87473237560801], [2.366102468533879, 48.87486716710458], [2.366051605859663, 48.87498260619334], [2.365992171478987, 48.87511739760458], [2.365941308315956, 48.87523283662028], [2.365881873364402, 48.87536762794616], [2.36583100971255, 48.87548306688884], [2.36583507598315, 48.875492316502395], [2.365978375265649, 48.87557581073991], [2.366120920470699, 48.87565901481582], [2.366264220670054, 48.87574250869855], [2.366406766798895, 48.875825711522225], [2.36655006791511, 48.87590920505018], [2.366692614956801, 48.875992407520876], [2.366835916989777, 48.876075900694026], [2.366978464944424, 48.87615910281179], [2.367121767894269, 48.876242595630146], [2.367264316750851, 48.8763257982942], [2.367407620617572, 48.87640929075772], [2.367550170397946, 48.87649249216957], [2.367693475181546, 48.87657598427829], [2.367836025874791, 48.876659185337175], [2.367851148840063, 48.876672591519885], [2.367857841738199, 48.876672728487314], [2.367969092017465, 48.876627850103276], [2.368108128326935, 48.87657192248517], [2.368262949086828, 48.87650946790236], [2.368401984764735, 48.876453539936975], [2.368556803467984, 48.87639108406097], [2.368695839877605, 48.876335155755456], [2.368714540516896, 48.87633811155725], [2.368815885595014, 48.8764464400748], [2.368913848311466, 48.87655151036435], [2.369015194219359, 48.87665983869223], [2.369113156375868, 48.876764908791124], [2.369214503113642, 48.876873236929306], [2.369312466073601, 48.876978306844805], [2.369410430803, 48.877083375778035], [2.369511778767886, 48.877191704532514], [2.369609742937447, 48.87729677327514], [2.369711091732037, 48.87740510183991], [2.369809056705066, 48.877510170399056], [2.369910407692886, 48.87761849878129], [2.369905013849619, 48.877631227422185], [2.369789108514452, 48.877670332729636], [2.369683443216668, 48.8777077093643], [2.369676740076611, 48.877713251729965], [2.369634506287113, 48.877814635019234], [2.369592982189241, 48.87791133020606], [2.369551456584745, 48.87800802446353], [2.36950922230145, 48.878109408580755], [2.369509593110716, 48.87811493243266], [2.369568630507061, 48.87821938599675], [2.369629269449555, 48.87832773576558], [2.369688305963808, 48.8784321892433], [2.36974894540294, 48.87854053893056], [2.36974526251906, 48.878550346539136], [2.369622814455686, 48.878619402735715], [2.369476351044276, 48.87870610581168], [2.369353902247251, 48.87877516262268], [2.369207439313586, 48.87886186536461], [2.369084989793894, 48.878930921890834], [2.368994663677617, 48.87898439222442], [2.368988035602227, 48.8789855201241], [2.3689733089805483, 48.878997503434015], [2.368917171238702, 48.879030736389964], [2.368752258799386, 48.87912404761837], [2.368605793872085, 48.879210750496085], [2.368440881657331, 48.87930406218676], [2.368294415716318, 48.87939076377006], [2.368250905594311, 48.87941538269322], [2.368243378204167, 48.87942960546311]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 16, "roussel_fabien": 19.0, "nb_emargement": 1110.0, "nb_procuration": 68.0, "nb_vote_blanc": 7.0, "jadot_yannick": 112.0, "le_pen_marine": 43.0, "nb_exprime": 1103.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1447.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1112, "quartier_bv": "40", "geo_point_2d": [48.877412000815816, 2.3691330179130046], "melenchon_jean_luc": 468.0, "poutou_philippe": 4.0, "macron_emmanuel": 320.0}, "geometry": {"type": "Point", "coordinates": [2.3691330179130046, 48.877412000815816]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cb83c08b488c5ecdb2255ce5198edf6d863a5951", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 170, "zemmour_eric": 130.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "15-20", "geo_shape": {"coordinates": [[[2.295365715238077, 48.85451450961388], [2.295385617799251, 48.854524461298794], [2.295419930352932, 48.85455002075791], [2.295457584155034, 48.8545782439934], [2.295527436210305, 48.85460223374202], [2.295536186357124, 48.85459514705088], [2.295589133583054, 48.85456124267228], [2.295733507294441, 48.85446955212741], [2.295877328555788, 48.85437745613959], [2.296021699888137, 48.85428576522379], [2.296165520132848, 48.854193668874366], [2.296309891799508, 48.854101978503024], [2.296453711027489, 48.854009881791974], [2.29659808032718, 48.85391819015043], [2.296741898538642, 48.85382609307779], [2.296886268184794, 48.85373440108141], [2.297030085379538, 48.85364230364714], [2.297174452634466, 48.85355061217917], [2.297318268812706, 48.85345851438331], [2.297462636426232, 48.8533668216612], [2.2976064515878702, 48.853274723503745], [2.297750816810205, 48.85318303131009], [2.29789463095515, 48.85309093279105], [2.298038996536079, 48.852999239343255], [2.298182809664535, 48.85290714046262], [2.298327172866417, 48.852815446643966], [2.298470986340945, 48.85272334740976], [2.298615348514442, 48.852631654127585], [2.298759159609747, 48.85253955452379], [2.298903520779082, 48.852447859979485], [2.299047332220463, 48.85235576002211], [2.299191692361436, 48.85226406601425], [2.29928465130595, 48.85220453141208], [2.299294755211049, 48.852195212958115], [2.299249084236626, 48.8521620765825], [2.299074576519571, 48.85211037639283], [2.298900666579545, 48.852059042788355], [2.298726159553119, 48.852007342085734], [2.298552248937559, 48.85195600796215], [2.29837774260197, 48.85190430674662], [2.298203834036145, 48.851852972119836], [2.2980293283911912, 48.851801270391356], [2.297855419149843, 48.85174993524543], [2.29768091419563, 48.851698233004015], [2.297507007004015, 48.851646897354975], [2.297490419498612, 48.851637551840156], [2.297473140315158, 48.851642210701094], [2.297381030799663, 48.85171234878281], [2.297233576423727, 48.85182468079559], [2.297119134727041, 48.85191182390926], [2.296971679221981, 48.85202415557913], [2.2968572352865, 48.85211129841869], [2.296742790980386, 48.85219844024266], [2.296595335203594, 48.85231077232709], [2.296572412103952, 48.85230827404628], [2.296506863965215, 48.85220199711233], [2.296436760348183, 48.85208733019294], [2.296420467822785, 48.85208460465987], [2.296402067290109, 48.85209084144463], [2.296381960095524, 48.8521655364842], [2.296365033309789, 48.852221486868196], [2.296361292834471, 48.85222609387809], [2.296227709768937, 48.85231400492708], [2.296093043359792, 48.85240288345628], [2.295959459388498, 48.85249079419184], [2.295824792064935, 48.85257967240498], [2.295691207187876, 48.85266758282706], [2.295556538949991, 48.85275646072417], [2.295422954529918, 48.85284437084083], [2.295288285377503, 48.85293324842193], [2.295154698688897, 48.85302115821708], [2.295020028622047, 48.853110035482125], [2.294886441027658, 48.853197944963824], [2.294751770046468, 48.8532868219128], [2.294618181546288, 48.85337473108101], [2.29448351101332, 48.85346360772196], [2.294349921607346, 48.85355151657671], [2.294215248797153, 48.85364039289358], [2.294214687985103, 48.85365271800176], [2.2943372808936022, 48.853744043399786], [2.29448034238931, 48.853850522139005], [2.294602937591459, 48.853941847256586], [2.2947460001609272, 48.854048326558505], [2.294868594943543, 48.85413965048034], [2.29501165859895, 48.85424612944575], [2.295134254312546, 48.85433745307914], [2.295277319053902, 48.85444393170795], [2.295365604527043, 48.85450969559575], [2.295365715238077, 48.85451450961388]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 20, "roussel_fabien": 13.0, "nb_emargement": 1191.0, "nb_procuration": 78.0, "nb_vote_blanc": 5.0, "jadot_yannick": 71.0, "le_pen_marine": 54.0, "nb_exprime": 1183.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1492.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1191, "quartier_bv": "59", "geo_point_2d": [48.85304229253157, 2.2966158342036653], "melenchon_jean_luc": 162.0, "poutou_philippe": 1.0, "macron_emmanuel": 544.0}, "geometry": {"type": "Point", "coordinates": [2.2966158342036653, 48.85304229253157]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fb1215e29e57f49d9ed9d59875ea02fa34a1b0ef", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 60, "zemmour_eric": 72.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "12-49", "geo_shape": {"coordinates": [[[2.389678295387445, 48.838575333152946], [2.3896118716682633, 48.83854985075312], [2.389448680780506, 48.83848694482212], [2.389283165902584, 48.83842194927042], [2.389119974449476, 48.838359042876796], [2.388954460387579, 48.838294046862835], [2.388791271104552, 48.83823113912128], [2.3886257578481302, 48.83816614354433], [2.388462567999968, 48.838103235340185], [2.388297055559565, 48.83803823930102], [2.388259050152627, 48.8380332576334], [2.388244998580529, 48.83804585599505], [2.388129421579147, 48.83813845232964], [2.38801420217204, 48.83823049546972], [2.387898624351244, 48.838323091566025], [2.3877834041284363, 48.838415134468605], [2.387667825488219, 48.83850773032661], [2.387552604449704, 48.83859977299166], [2.387437383004159, 48.83869181553814], [2.387321803146402, 48.83878441013957], [2.387206580885141, 48.83887645244852], [2.387091001559681, 48.838969047718], [2.386975777120393, 48.83906108978242], [2.3868601969754932, 48.83915368481357], [2.386830770201563, 48.83917535429965], [2.386831213196435, 48.839180665504834], [2.3868315320967453, 48.83918448043473], [2.386865704745208, 48.83920458995768], [2.387028993432847, 48.83927903599389], [2.387200680442375, 48.83935908198083], [2.387363971454761, 48.83943352755647], [2.387535659487704, 48.83951357305153], [2.387539170480782, 48.8395258736113], [2.38741381537987, 48.839651200823546], [2.387290855517235, 48.83977427556962], [2.387165499211264, 48.839899603393086], [2.38704253818686, 48.84002267695723], [2.387045312303565, 48.84003460321357], [2.387090242784287, 48.8400587420552], [2.387129961823845, 48.84007939973226], [2.387132870777343, 48.84009144809045], [2.38701698552874, 48.84020633949827], [2.386901320034966, 48.8403208065131], [2.386785433766008, 48.84043569767299], [2.386669767254829, 48.840550164440444], [2.386553878613641, 48.84066505444617], [2.386438212447398, 48.84077952097314], [2.386322322775244, 48.84089441163023], [2.386206654229019, 48.84100887790288], [2.386090764898931, 48.84112376831903], [2.385975095335166, 48.84123823434423], [2.385859204995274, 48.841353123613146], [2.38574353441396, 48.84146758939099], [2.3856276416805873, 48.84158247930426], [2.385511970081708, 48.841696944834624], [2.385396077690384, 48.841811834507006], [2.38528040507393, 48.84192629978994], [2.385164511672782, 48.842041188315065], [2.385048838038744, 48.84215565335059], [2.385051111619826, 48.84216736031338], [2.385214154821419, 48.8422631869131], [2.385384634989355, 48.84235847409973], [2.385547678039619, 48.8424543002215], [2.3857181608155402, 48.84254958602418], [2.385721205098951, 48.84256088771822], [2.385629506627089, 48.84266754042161], [2.385540382287974, 48.84277194437953], [2.385448683074855, 48.84287859692413], [2.385359558012604, 48.84298300072763], [2.385267858058019, 48.84308965311346], [2.385178733635143, 48.84319405676948], [2.38518097601237, 48.84320483452032], [2.38522435965303, 48.8432334331508], [2.385247900388071, 48.843247915986915], [2.385277546851168, 48.8432699074629], [2.385294548212197, 48.8432665170027], [2.385328567751311, 48.84324028662506], [2.385329396373332, 48.84323957859032], [2.385431103764056, 48.84313507488742], [2.3855190400468063, 48.84305176660037], [2.3855371860379613, 48.84304200642837], [2.385540818527772, 48.843035314068615], [2.385624210958928, 48.84294940659504], [2.385725918565371, 48.84284490172199], [2.385809310376162, 48.842758995004026], [2.38588947869685, 48.84267662144644], [2.385916576686025, 48.84265863666047], [2.385917363576595, 48.84265557118626], [2.385938902099085, 48.842633439690154], [2.38604455177535, 48.842524070336694], [2.386146256346351, 48.84241956505946], [2.386247960509595, 48.84231505968597], [2.386353608902434, 48.84220568912905], [2.386455312232465, 48.84210118355926], [2.386560961108656, 48.84199181370457], [2.386670150386705, 48.84187425703933], [2.38677579698961, 48.84176488696567], [2.386881444522087, 48.84165551589571], [2.386990632362186, 48.84153795980181], [2.387096278983868, 48.84142858851987], [2.387205465864124, 48.84131103220603], [2.38731111157502, 48.841201660712144], [2.387420297495344, 48.841084104178314], [2.387525940922438, 48.8409747333648], [2.38760320849195, 48.84089154237294], [2.387635127255867, 48.840857175718675], [2.387663930169626, 48.840855491161626], [2.387655918599541, 48.84082638101584], [2.387755679099091, 48.84071248216188], [2.387864864364977, 48.84059492427844], [2.387964623964816, 48.84048102522665], [2.388073806901574, 48.84036346802051], [2.388173565612477, 48.840249567871524], [2.388271500192095, 48.840139556133074], [2.388371258031877, 48.840025656695744], [2.388469190410984, 48.83991564476646], [2.388568947400766, 48.839801744242074], [2.3886668789420122, 48.839691732128905], [2.388764811421636, 48.83958172083096], [2.388864565763999, 48.839467820019074], [2.388962497416216, 48.83935780763796], [2.389062252249824, 48.839243907544635], [2.3891601817017882, 48.839133894972704], [2.389259935685418, 48.8390199937924], [2.389282539520216, 48.83899460059347], [2.389289675742523, 48.83899149285755], [2.389300579708736, 48.838973572078295], [2.38937590441766, 48.838888953407725], [2.389477672155707, 48.838789042890305], [2.389575599865742, 48.838679030832765], [2.389677366811048, 48.83857912012669], [2.389678295387445, 48.838575333152946]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 49, "roussel_fabien": 26.0, "nb_emargement": 1257.0, "nb_procuration": 71.0, "nb_vote_blanc": 14.0, "jadot_yannick": 104.0, "le_pen_marine": 70.0, "nb_exprime": 1240.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1604.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "47", "geo_point_2d": [48.840207469813606, 2.387390909366335], "melenchon_jean_luc": 403.0, "poutou_philippe": 14.0, "macron_emmanuel": 429.0}, "geometry": {"type": "Point", "coordinates": [2.387390909366335, 48.840207469813606]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ff8429faaa4e24ba21d128c25b067a7a51435c71", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 57, "zemmour_eric": 102.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "17-39", "geo_shape": {"coordinates": [[[2.30228563100839, 48.89126301723763], [2.302245539576937, 48.89123338820324], [2.302080023799299, 48.891156941241384], [2.301914474923327, 48.891080659326015], [2.301748960117154, 48.89100421189594], [2.30158341084804, 48.89092792950432], [2.301417897025597, 48.890851480706715], [2.301252350078784, 48.890775198754], [2.301086837227807, 48.890698749488195], [2.300921289887849, 48.89062246705921], [2.300755779372281, 48.89054601733313], [2.300590233002926, 48.89046973443585], [2.300424722095074, 48.89039328423358], [2.300259178060058, 48.89031700087595], [2.300093668123865, 48.89024055020549], [2.299928123695708, 48.890164266371606], [2.299762614731073, 48.89008781523292], [2.299597072637141, 48.89001153093873], [2.299431564644057, 48.88993507933183], [2.299266022157087, 48.88985879456136], [2.299100515135557, 48.88978234248627], [2.298934974995007, 48.88970605635627], [2.298925794789138, 48.88969990965068], [2.298904969379017, 48.889702854430936], [2.298885634452278, 48.88971918006328], [2.298875259517741, 48.88973298877246], [2.298855285718744, 48.88973639449055], [2.298698226892647, 48.889664817115104], [2.298543834725662, 48.88959445485365], [2.298386776743714, 48.889522877959685], [2.298232385418452, 48.88945251528758], [2.29807532830488, 48.88938093707661], [2.297920937821344, 48.88931057399384], [2.297763881551905, 48.88923899626436], [2.2976094919100882, 48.889168632770925], [2.297455104049234, 48.88909826908192], [2.297298047708937, 48.88902668982035], [2.29714366067766, 48.88895632661992], [2.296986606557318, 48.88888474694861], [2.29683221901619, 48.888814382430326], [2.296675165752103, 48.88874280234129], [2.296669824002412, 48.88873289451814], [2.296716576502665, 48.88862681970508], [2.296763611544574, 48.88852010709996], [2.296810365026408, 48.88841403223769], [2.296857398320219, 48.88830731956709], [2.296904151419944, 48.88820124464764], [2.296951184317214, 48.88809453281874], [2.296942668597799, 48.888083551450386], [2.29675733930785, 48.88803997782038], [2.29656381290298, 48.88799447524225], [2.296378484247091, 48.88795090102232], [2.296184958504341, 48.8879053978282], [2.2961814583735762, 48.88789980140128], [2.296150674828501, 48.88789733704817], [2.295977803378084, 48.887856690803495], [2.295804548840689, 48.88781595391862], [2.295631679294303, 48.887775307179226], [2.29545842529847, 48.887734569790545], [2.295285556292548, 48.8876939225484], [2.295112302826008, 48.88765318555516], [2.294939434360448, 48.887612537810334], [2.2947661814477502, 48.887571799413976], [2.294693431976497, 48.8875686935937], [2.294692102169975, 48.88757081897492], [2.294581782582025, 48.88768037047009], [2.294474165895147, 48.887790395541515], [2.294363845371311, 48.88789994771323], [2.294256226406364, 48.88800997255874], [2.294145904970998, 48.88811952360851], [2.294038285091846, 48.88822954823616], [2.293927962720562, 48.888339099962494], [2.293820341927089, 48.88844912437225], [2.293710018644264, 48.888558674976615], [2.293602396936363, 48.88866869916848], [2.293492072717591, 48.888778250449384], [2.293384451459151, 48.88888827443142], [2.293274126328829, 48.888997824590355], [2.293166502792244, 48.889107848346455], [2.293056176725948, 48.88921739918193], [2.292948552275107, 48.88932742272009], [2.292838225297245, 48.88943697243362], [2.292730599932035, 48.88954699575388], [2.292716196418125, 48.889566502583], [2.29271976310247, 48.88957420842657], [2.29286119075276, 48.88959088542291], [2.293051986245347, 48.88961282882272], [2.293193663284705, 48.889629534776226], [2.2933844590590198, 48.88965147764547], [2.293526134946485, 48.88966818319698], [2.293608287371053, 48.88967786981391], [2.293799083509398, 48.889699811122306], [2.293944407459123, 48.889716946886985], [2.294135203882288, 48.889738887659], [2.2942729587562543, 48.88975512943631], [2.294282166106965, 48.889756215233305], [2.294321304861079, 48.88976082923231], [2.294403201582104, 48.88977048591518], [2.294593998382584, 48.889792426854385], [2.294632207185589, 48.88979693184997], [2.294809718026878, 48.889817859774986], [2.29500051517224, 48.889839800065545], [2.295053349388611, 48.889846028714416], [2.295057108857629, 48.88984647263288], [2.295063618851578, 48.88984723941546], [2.295069768135976, 48.889849062585135], [2.295070039110789, 48.88984909385828], [2.295175656612706, 48.88990450904888], [2.295336804356503, 48.88998907355498], [2.29544242242626, 48.89004448850319], [2.295603572388085, 48.8901290535468], [2.29579807049871, 48.89023109959706], [2.295959220251944, 48.890315664139635], [2.295999208887272, 48.89033664407704], [2.296024536789409, 48.89034993308263], [2.296185688641962, 48.890434497319255], [2.2963722451376958, 48.89053237499107], [2.296533396768111, 48.89061693783841], [2.296669327853195, 48.89068825360144], [2.2968052579590292, 48.89075956829822], [2.296966412347346, 48.890844131452596], [2.297102343267007, 48.89091544580203], [2.297263498620257, 48.891000008544594], [2.297380982702733, 48.89106164454975], [2.2975421375972482, 48.89114620689802], [2.297601670817824, 48.8911774399572], [2.297722797321463, 48.89124098556734], [2.297883954689942, 48.891325547449775], [2.298005081882632, 48.8913890927658], [2.298005436697522, 48.891389279208134], [2.2980057915246412, 48.8913894647512], [2.2980348474039403, 48.891404708723044], [2.298196005798072, 48.891489269273634], [2.298248641109298, 48.8915168831434], [2.298279322281936, 48.891532978349034], [2.298297992370043, 48.89154277261886], [2.298329241007969, 48.891559166116025], [2.2983495281100073, 48.89156980982497], [2.29851068751409, 48.8916543708386], [2.298544635375698, 48.891672180342965], [2.298571569414703, 48.89168631007275], [2.298598848801925, 48.89170062168466], [2.298628923394394, 48.89171478418574], [2.298659283974067, 48.891729080555166], [2.298675200166088, 48.89173657614045], [2.2988399221055262, 48.89181289993035], [2.299013164723125, 48.891894480471976], [2.299177886281634, 48.89197080467724], [2.299351131317832, 48.89205238472618], [2.299515853883506, 48.89212870755636], [2.29964954591686, 48.8921916627348], [2.299814270712182, 48.89226798605204], [2.299979192147684, 48.89234564578477], [2.300143916561673, 48.89242196773054], [2.300310282390092, 48.89250030543093], [2.300475007766722, 48.89257662780977], [2.300604268899953, 48.892637493843026], [2.300639837242898, 48.89263660529735], [2.300645042510888, 48.89263310134299], [2.300763853257678, 48.89254422131297], [2.300889110783273, 48.892449642890796], [2.301007922046519, 48.89236076351098], [2.301133178687326, 48.89226618481772], [2.301251989127386, 48.89217730428157], [2.301377244883614, 48.892082725317216], [2.301496054476353, 48.89199384542332], [2.301621309347809, 48.891899266187856], [2.3016211774820112, 48.89188733764061], [2.301595891985081, 48.89186879442851], [2.301570944818302, 48.89185095735731], [2.301570359088561, 48.89183921052431], [2.301690380103683, 48.89174119042951], [2.3018286622078348, 48.891631306630956], [2.301948682269511, 48.89153328535942], [2.302086961912626, 48.891423401233816], [2.302206981008804, 48.891325379684815], [2.3022710784, 48.891274443838775], [2.30228563100839, 48.89126301723763]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 39, "roussel_fabien": 21.0, "nb_emargement": 1044.0, "nb_procuration": 17.0, "nb_vote_blanc": 12.0, "jadot_yannick": 20.0, "le_pen_marine": 127.0, "nb_exprime": 1023.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 7, "nb_inscrit": 1445.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1044, "quartier_bv": "66", "geo_point_2d": [48.890062544050565, 2.297516661271161], "melenchon_jean_luc": 417.0, "poutou_philippe": 11.0, "macron_emmanuel": 212.0}, "geometry": {"type": "Point", "coordinates": [2.297516661271161, 48.890062544050565]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c6f877c809c7bedac263b7429a244fe4cdc58090", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 82, "zemmour_eric": 90.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "17-1", "geo_shape": {"coordinates": [[[2.321409090208958, 48.88459245288568], [2.32140498240996, 48.88460106678178], [2.321257180424838, 48.88469204261592], [2.321109435650521, 48.88478298351353], [2.320961632644476, 48.884873958068525], [2.3208138868379082, 48.88496489858639], [2.320666084162716, 48.885055872769236], [2.32051833596039, 48.885146812899634], [2.320370532240812, 48.885237787601845], [2.320222783017853, 48.885328726453224], [2.320074978265716, 48.88541970077556], [2.319927228010485, 48.88551063924714], [2.31977942222568, 48.885601613189536], [2.319631670938173, 48.88569255128137], [2.319627116842173, 48.885701685984365], [2.319641611194029, 48.88571152698366], [2.319775214319641, 48.885789801188636], [2.319906127409215, 48.88586649781993], [2.3200370395208942, 48.885943194295024], [2.320170643846904, 48.88602146714299], [2.320301556737763, 48.886098163318024], [2.320435161858974, 48.88617643585981], [2.320566075529016, 48.88625313173486], [2.3206996814337, 48.886331404869665], [2.32071802108211, 48.886331267897], [2.320869358102258, 48.88623850343123], [2.321020108960604, 48.88614609787547], [2.321171444904366, 48.886053333012235], [2.321322194702318, 48.885960926161296], [2.321473529569799, 48.88586816090064], [2.321624278295635, 48.88577575365378], [2.321638371144195, 48.88577185126538], [2.321640177280734, 48.885759871626185], [2.321656680444296, 48.88566944932164], [2.321673447787084, 48.88557758597832], [2.321689950835205, 48.8854871636542], [2.321706718048894, 48.88539530119022], [2.321709551730441, 48.885390804402235], [2.321837738588819, 48.885283678296936], [2.321964842657504, 48.88517745603786], [2.322093028465531, 48.8850703296385], [2.322220131492735, 48.8849641070878], [2.322347232626107, 48.88485788528349], [2.322475418236051, 48.88475075755203], [2.322602518327968, 48.884644535456104], [2.322730701524088, 48.88453740742281], [2.322857801938149, 48.884431185043], [2.322985984083948, 48.88432405671563], [2.322993824738715, 48.884320835578755], [2.32322496549617, 48.884288081069194], [2.323467262131011, 48.884253746073234], [2.3234786542748243, 48.88425552007385], [2.323632240348331, 48.8843366873083], [2.323779455953214, 48.884414907221874], [2.323926672000246, 48.88449312694892], [2.324080259472829, 48.884574293591115], [2.324227475058672, 48.88465251292925], [2.324381063470284, 48.884733679173806], [2.324528281333792, 48.88481189723918], [2.3246818706842323, 48.88489306308613], [2.324829089438485, 48.88497128166955], [2.324982679727864, 48.885052447118866], [2.325129899384634, 48.885130665321064], [2.3252590259060613, 48.88519890222668], [2.325267228328146, 48.885206595458], [2.325280599020931, 48.88520777068805], [2.3253050637374493, 48.885220698829585], [2.325327334313443, 48.88523246795583], [2.325346512243513, 48.885231066044774], [2.325470046714596, 48.88512918533705], [2.325596540113915, 48.88502486509022], [2.325720074970278, 48.8849229841131], [2.32584656600425, 48.88481866357487], [2.325970099882296, 48.884716782320716], [2.326096589914638, 48.88461246149877], [2.326220122814375, 48.884510579967554], [2.326346611833258, 48.884406259761185], [2.326470143766332, 48.88430437705361], [2.326596631783607, 48.88420005656352], [2.326720162738285, 48.88409817357892], [2.3268466497538602, 48.88399385280515], [2.326970179718732, 48.88389197044277], [2.327096665744137, 48.88378764848606], [2.327220194730739, 48.883685765846586], [2.327346679754561, 48.88358144360621], [2.327392281114434, 48.88358715694122], [2.32741082020501, 48.883558831420075], [2.327435317309578, 48.883521403054964], [2.327427150498351, 48.88351327128687], [2.327297372532305, 48.88348807496117], [2.327202902833591, 48.883470413660056], [2.327160532976679, 48.88345375825674], [2.327140995332783, 48.88345846437843], [2.327119584434673, 48.883455436508314], [2.326978033115954, 48.88342897395621], [2.326976579030378, 48.883413392953805], [2.326929592877864, 48.88341882698458], [2.326881260718766, 48.88340875974197], [2.326872377519068, 48.88340911269954], [2.326854180596101, 48.883449242896035], [2.326699525037844, 48.883534352973555], [2.326549818757409, 48.8836167396314], [2.326395162204193, 48.883701849302774], [2.326245453597265, 48.88378423555985], [2.326090796049183, 48.8838693448251], [2.325941087842795, 48.88395173069673], [2.325791379162618, 48.88403411637495], [2.32563672013042, 48.88411922503436], [2.325623488503517, 48.884120810672485], [2.325449485665581, 48.88408073382986], [2.325275443668966, 48.88404064751741], [2.3251014413667352, 48.88400057016608], [2.324927399905949, 48.883960483344794], [2.324753398139427, 48.88392040548472], [2.324579357214474, 48.88388031815456], [2.324405355983663, 48.883840239785805], [2.324231315594548, 48.88380015194681], [2.324057314899556, 48.88376007306928], [2.323883275046283, 48.88371998472149], [2.323709276250479, 48.88367990534296], [2.323535235569483, 48.88363981647861], [2.323361237309403, 48.88359973659135], [2.323187198527824, 48.8835596472259], [2.323173630399737, 48.88356142314852], [2.323028154459763, 48.883646912257156], [2.322882249295239, 48.88373265416793], [2.322736772398592, 48.883818142909234], [2.322590864910996, 48.88390388444384], [2.322445388421241, 48.883989372825546], [2.322299479974133, 48.8840751139917], [2.322154002527699, 48.88416060200604], [2.322008093109366, 48.884246343703005], [2.321862614717956, 48.88433183045069], [2.321716704340094, 48.884417571779245], [2.321571223616695, 48.88450305905109], [2.321425312291013, 48.88458879911191], [2.321409090208958, 48.88459245288568]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 1, "roussel_fabien": 14.0, "nb_emargement": 1201.0, "nb_procuration": 82.0, "nb_vote_blanc": 11.0, "jadot_yannick": 91.0, "le_pen_marine": 46.0, "nb_exprime": 1181.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1463.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1201, "quartier_bv": "67", "geo_point_2d": [48.88466983420408, 2.323292875594571], "melenchon_jean_luc": 208.0, "poutou_philippe": 4.0, "macron_emmanuel": 593.0}, "geometry": {"type": "Point", "coordinates": [2.323292875594571, 48.88466983420408]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f1ee4e4470b95fb89293df16569a707e40063721", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 58, "zemmour_eric": 115.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-61", "geo_shape": {"coordinates": [[[2.388259050152627, 48.8380332576334], [2.388253637021455, 48.83801713495152], [2.388251485567761, 48.83789270607885], [2.3882498901182743, 48.837767686456125], [2.388247738683821, 48.837643257555605], [2.388246143250957, 48.83751823790494], [2.388243993198111, 48.83739380898357], [2.388242397792419, 48.83726878840564], [2.3882402463858883, 48.837144360348766], [2.388238650996818, 48.83701933974289], [2.388236499620082, 48.836894910758886], [2.38823490423708, 48.83676989102438], [2.388229581025343, 48.83676283437057], [2.388063534298572, 48.836678631954804], [2.387902033562245, 48.836594968797584], [2.387735987899325, 48.83651076591443], [2.387574488219283, 48.836427101403146], [2.387408443620315, 48.83634289805273], [2.387246946337861, 48.8362592339929], [2.3870809014404, 48.836175030168164], [2.386919405214331, 48.83609136475424], [2.386753361380614, 48.83600716046222], [2.3865918661897743, 48.83592349549284], [2.386580335569537, 48.83590248925577], [2.386561180337598, 48.835902149988875], [2.386520361486408, 48.83588100252919], [2.386399685791141, 48.83581848385283], [2.386248040191866, 48.83573680346041], [2.386086545297965, 48.835653136882236], [2.385934902032611, 48.835571456087735], [2.385773408153686, 48.83548778907442], [2.385621765860026, 48.83540610787087], [2.385460272985367, 48.835322441321736], [2.385308630311691, 48.8352407588028], [2.385156989475667, 48.83515907609263], [2.384995498112219, 48.83507540889755], [2.384843858247883, 48.83499372577837], [2.384682367899289, 48.83491005814812], [2.384623690919496, 48.83487845115551], [2.384612606258869, 48.83487872509257], [2.3845828269887, 48.83492818358728], [2.38445342851707, 48.83502337482842], [2.384323084807531, 48.83511896667234], [2.384193685387981, 48.835214157616214], [2.384063340725065, 48.8353097491608], [2.383933941719901, 48.835404939814524], [2.383803594741388, 48.83550053105269], [2.383674194788296, 48.83559572140919], [2.383543846856284, 48.835691312348025], [2.383414445955254, 48.83578650240728], [2.3832840970698372, 48.83588209304673], [2.383154695220864, 48.835977282808756], [2.383024345382135, 48.83607287314886], [2.382894942585209, 48.8361680626136], [2.382764593155294, 48.83626365266139], [2.382635188048073, 48.83635884182189], [2.382504837664734, 48.83645443157029], [2.382505565282163, 48.83646695897936], [2.382647148398889, 48.83655601640266], [2.382777768339445, 48.83663705230622], [2.382919352383243, 48.83672610939378], [2.3830499718109612, 48.83680714498072], [2.383180591644709, 48.83688818041915], [2.383322178421213, 48.83697723701695], [2.383452799115011, 48.83705827124649], [2.383594386818603, 48.83714732750851], [2.383611997742268, 48.83714799295403], [2.383652960620819, 48.83712756452758], [2.383691715848982, 48.83711017445558], [2.383709011215305, 48.837111255565894], [2.383850147039713, 48.837204472345455], [2.383989085140955, 48.83729716679138], [2.384130221969612, 48.83739038322501], [2.384269161064461, 48.837483077330184], [2.384410298897377, 48.83757629341783], [2.384549240348111, 48.837668987189325], [2.384690379185395, 48.83776220293099], [2.384829320267383, 48.83785489635471], [2.384970460098225, 48.8379481126497], [2.385109402184554, 48.838040804833426], [2.385250544382065, 48.838134020789425], [2.385389487451424, 48.83822671353166], [2.385530629301447, 48.838319928235414], [2.385669573364349, 48.838412620636916], [2.385810716218767, 48.838505834994685], [2.385949662637715, 48.83859852706242], [2.386090806496334, 48.83869174107419], [2.3862297525466483, 48.83878443279418], [2.386370897398988, 48.838877647359276], [2.386509844453554, 48.838970337839186], [2.386650990310212, 48.83906355205829], [2.386789939710176, 48.83915624310372], [2.386830770201563, 48.83917535429965], [2.3868601969754932, 48.83915368481357], [2.386975777120393, 48.83906108978242], [2.387091001559681, 48.838969047718], [2.387206580885141, 48.83887645244852], [2.387321803146402, 48.83878441013957], [2.387437383004159, 48.83869181553814], [2.387552604449704, 48.83859977299166], [2.387667825488219, 48.83850773032661], [2.3877834041284363, 48.838415134468605], [2.387898624351244, 48.838323091566025], [2.38801420217204, 48.83823049546972], [2.388129421579147, 48.83813845232964], [2.388244998580529, 48.83804585599505], [2.388259050152627, 48.8380332576334]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 61, "roussel_fabien": 31.0, "nb_emargement": 1236.0, "nb_procuration": 54.0, "nb_vote_blanc": 22.0, "jadot_yannick": 81.0, "le_pen_marine": 99.0, "nb_exprime": 1210.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1489.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1236, "quartier_bv": "47", "geo_point_2d": [48.83695937288879, 2.3857283954995747], "melenchon_jean_luc": 388.0, "poutou_philippe": 10.0, "macron_emmanuel": 360.0}, "geometry": {"type": "Point", "coordinates": [2.3857283954995747, 48.83695937288879]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b1f958441b31a6ee899d8b651a1e0cefcf622e8e", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 160, "zemmour_eric": 180.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-11", "geo_shape": {"coordinates": [[[2.270577155335245, 48.85697412474313], [2.270564911393163, 48.8569924653814], [2.270518389420055, 48.85707474383317], [2.270434333354473, 48.85722745425025], [2.270387812328221, 48.85730973264217], [2.270372443025189, 48.85731541641135], [2.270193632809294, 48.85729248597927], [2.270012398699493, 48.85726931385356], [2.269833588800166, 48.85724638288258], [2.269652353648086, 48.857223210202264], [2.2694735454283013, 48.85720027870069], [2.269292310596613, 48.857177105474136], [2.269276191476102, 48.85718483776141], [2.269268388186118, 48.85722674790188], [2.269261878483111, 48.85725747161986], [2.269243326681337, 48.85728734385318], [2.269260060367037, 48.85729711594768], [2.269318252704704, 48.85730892462924], [2.269505580856026, 48.85734645639764], [2.269691860128658, 48.85738425577302], [2.269879187469766, 48.85742178604644], [2.270065467270049, 48.85745958573695], [2.270252796513969, 48.857497115431315], [2.270439076867302, 48.857534913638375], [2.270626405275587, 48.85757244363631], [2.270812686169262, 48.857610241259216], [2.271000016493043, 48.857647769778794], [2.271186297914371, 48.85768556771684], [2.271373627415195, 48.85772309564066], [2.271559909389533, 48.85776089209529], [2.271560630904417, 48.857761051177015], [2.271729670556369, 48.857801841591034], [2.27193145263779, 48.85785574486462], [2.272100491536944, 48.85789653384377], [2.272302274368611, 48.857950436487485], [2.272302490335323, 48.85795048996356], [2.272436523042669, 48.85798454523276], [2.272436972517964, 48.85798466488207], [2.272638756026587, 48.85803856785344], [2.272782731981043, 48.85807907850099], [2.272785656213711, 48.858079618798804], [2.272980825496663, 48.85810170667801], [2.273172028496559, 48.85812224303739], [2.273367198090423, 48.85814433118492], [2.273558401399023, 48.85816486692617], [2.273753571328979, 48.85818695354338], [2.273944774946272, 48.85820748866651], [2.273947843026225, 48.858207586425195], [2.274148430044937, 48.85819756402136], [2.274378900284432, 48.858187746773076], [2.274579488519156, 48.85817772275548], [2.274809957214352, 48.858167905567875], [2.274873826077237, 48.85816471406347], [2.274891999412555, 48.858166330609855], [2.274914337877941, 48.85815924142819], [2.275051057058374, 48.85815240904524], [2.275154626489518, 48.8581502241496], [2.275155968665544, 48.85815015223671], [2.275366041255127, 48.85813192015487], [2.275570894113858, 48.85811579837526], [2.275780965056742, 48.85809756555619], [2.275985817664508, 48.85808144216654], [2.276190670132996, 48.85806531932525], [2.276400742018455, 48.85804708542565], [2.276605594223363, 48.858030961873574], [2.276815665825088, 48.858012727245004], [2.276858801499388, 48.85800800638359], [2.276864281835512, 48.858009297702644], [2.276899859548891, 48.858001843873126], [2.277043082174552, 48.85798617005887], [2.277207349972504, 48.85796935239946], [2.277393707980926, 48.85794895806151], [2.277557975548382, 48.857932139920244], [2.277567092958215, 48.85792837179525], [2.2776911481700672, 48.857810116788166], [2.277754332070137, 48.85772689837466], [2.277741336956754, 48.857711009233434], [2.277691485677421, 48.85770279398701], [2.277478797199487, 48.857678287664484], [2.277272605490332, 48.85765412688156], [2.277059917395701, 48.857629620712764], [2.276853726073379, 48.85760545920704], [2.276641038374329, 48.85758095229264], [2.276434847438852, 48.85755679006414], [2.276432663804574, 48.85755640902303], [2.276244317201976, 48.85751221773817], [2.276061799887129, 48.85746727268238], [2.275879284262535, 48.857422326455335], [2.2756909372511, 48.85737813428591], [2.275508422246065, 48.85733318838892], [2.275320075871402, 48.857288995632224], [2.27513756014827, 48.85724404825843], [2.274949215760739, 48.85719985582205], [2.274940205834875, 48.857192173771395], [2.27492032932011, 48.85704363581458], [2.274901192458639, 48.85689827075618], [2.274881316154692, 48.85674973365289], [2.274862180885373, 48.856604367658726], [2.274861969610691, 48.85660338967476], [2.274818092452603, 48.85646198108898], [2.274778652508836, 48.85633129903486], [2.274778804170267, 48.85632725733508], [2.274830666894998, 48.85619405549161], [2.274880724235015, 48.85605746917441], [2.274932586430666, 48.85592426725442], [2.274982643244333, 48.85578768086136], [2.274975501094638, 48.85577752608815], [2.274930995222332, 48.85576281180244], [2.274893614502891, 48.85575428330224], [2.274867521082735, 48.85574088840602], [2.274840207250715, 48.8557570138797], [2.27471315601468, 48.85585901995824], [2.274588418401794, 48.85596015405241], [2.274583891634115, 48.855962538691564], [2.274429091502473, 48.85601306508225], [2.2742831244927952, 48.85606112483908], [2.274137157213846, 48.85610918441583], [2.273982357588605, 48.856159709330896], [2.2738363897436358, 48.85620776943574], [2.273681589533862, 48.85625829395728], [2.2736657596568293, 48.856256490887624], [2.273608086765093, 48.856217214734045], [2.2735662613161702, 48.85618288500325], [2.273545320503547, 48.85616895810457], [2.273512752141473, 48.856180669694055], [2.273376382011879, 48.85625010142505], [2.273249500965318, 48.8563164545646], [2.273122620958345, 48.85638280757396], [2.27298624842965, 48.856452237940104], [2.272982713396853, 48.85645357449482], [2.272782015021108, 48.8565049467774], [2.272572766971945, 48.856558726496836], [2.272566642486196, 48.85657235232885], [2.272677992227607, 48.856674671145676], [2.272788979650568, 48.85677661441093], [2.272900331627967, 48.85687893301032], [2.273011319920938, 48.85698087605065], [2.273122671408617, 48.85708319441601], [2.273233660571808, 48.85718513723133], [2.273228687103194, 48.857198428323414], [2.273097461288512, 48.85724171690537], [2.272878349887816, 48.85731686353921], [2.272747123483786, 48.8573601517324], [2.272732226395704, 48.85735897297054], [2.272552601836262, 48.85725869269354], [2.27238890231957, 48.857165764093494], [2.272384428173197, 48.85716407307474], [2.272137320163779, 48.85710824000534], [2.271902230287534, 48.8570572524428], [2.271899199750098, 48.85705681400264], [2.271680237262102, 48.857042064861055], [2.271465851022092, 48.8570289233529], [2.2712514648902262, 48.857015781460454], [2.27103250412079, 48.857001031141465], [2.270818118212993, 48.85698788847234], [2.270599156320698, 48.856973137351766], [2.270577155335245, 48.85697412474313]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 11, "roussel_fabien": 4.0, "nb_emargement": 1067.0, "nb_procuration": 64.0, "nb_vote_blanc": 7.0, "jadot_yannick": 38.0, "le_pen_marine": 42.0, "nb_exprime": 1057.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1310.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1068, "quartier_bv": "62", "geo_point_2d": [48.8573497500711, 2.2737521470837354], "melenchon_jean_luc": 54.0, "poutou_philippe": 0.0, "macron_emmanuel": 563.0}, "geometry": {"type": "Point", "coordinates": [2.2737521470837354, 48.8573497500711]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "45a056234cd9c4cf3e175b6fac1b530babc436ba", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 222, "zemmour_eric": 203.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "16-23", "geo_shape": {"coordinates": [[[2.264787514487668, 48.85584625002198], [2.264810436462341, 48.855825943896384], [2.264984778470817, 48.855786658827085], [2.265169280735949, 48.855745735208174], [2.265343622205396, 48.855706449613216], [2.265528123904674, 48.85566552543808], [2.265702464822517, 48.855626240216715], [2.26588696596861, 48.85558531458609], [2.2660613063475212, 48.85554602883908], [2.266184964387597, 48.855518598585945], [2.266208527912858, 48.85550746420734], [2.266191794644052, 48.8554727757787], [2.266175484003337, 48.85535175940392], [2.2661570924176972, 48.85521437897142], [2.266162833284149, 48.85520622909592], [2.266304926839547, 48.85514034987874], [2.266458651057083, 48.85507311540524], [2.266600745238176, 48.855007235837256], [2.266754468694048, 48.85494000007642], [2.266896560775319, 48.85487412014091], [2.267050283444118, 48.85480688489129], [2.267192376163829, 48.85474100370571], [2.267346098058109, 48.85467376806798], [2.267344984836066, 48.854658338106795], [2.267184515335117, 48.85460182258822], [2.267000961455206, 48.854537078382535], [2.266840494076172, 48.85448056150548], [2.26665694105088, 48.85441581676503], [2.266496473042966, 48.85435930031141], [2.266312920872291, 48.854294555036184], [2.266152454986502, 48.854238037224114], [2.265968903670447, 48.85417329141409], [2.265808437155675, 48.85411677402547], [2.265647971001775, 48.85406025551947], [2.265464420926139, 48.85399550982449], [2.265457746528465, 48.853985096510485], [2.265501944207891, 48.853883509685936], [2.265541649944074, 48.85378915671411], [2.265585845931057, 48.85368756983234], [2.265625551353236, 48.85359321771531], [2.265623797452177, 48.85358586095998], [2.265495043380259, 48.85345698887839], [2.265369549184637, 48.85333628757609], [2.265244056920376, 48.853215587036686], [2.26511530333977, 48.85308671449519], [2.265108052249447, 48.853083093194655], [2.26498613362185, 48.853057530905346], [2.2648433156813113, 48.85303352189326], [2.264834346245792, 48.85302863180956], [2.264822891656124, 48.8530152895335], [2.264801621908522, 48.85301005496066], [2.264716340265529, 48.85289028889811], [2.264621965814799, 48.85276021143922], [2.264536684993621, 48.852640445221766], [2.264442311456647, 48.85251036669266], [2.264357030094536, 48.852390600311836], [2.264289524780833, 48.85229755352325], [2.264273805347118, 48.85229305448228], [2.26424603294705, 48.85230246012971], [2.264101520409087, 48.85239619972741], [2.263958935380649, 48.85249131713593], [2.263814420439722, 48.85258505636263], [2.263671834370455, 48.852680173412864], [2.263664925159599, 48.85268265270819], [2.263497238264385, 48.85270570199556], [2.26333969553837, 48.852728414186195], [2.263182152662203, 48.852751127068224], [2.263014465333198, 48.852774175677595], [2.262856923552493, 48.85279688723959], [2.262689235932276, 48.85281993539225], [2.2626873335954603, 48.85282030679847], [2.262502680955051, 48.85286628283859], [2.262321503622641, 48.8529120398899], [2.262136850347126, 48.85295801446236], [2.261955670999042, 48.85300377184685], [2.26177101843845, 48.85304974585939], [2.261589838462919, 48.853095501786875], [2.261405183879, 48.853141476121934], [2.2612240046260492, 48.85318723150012], [2.261039349394303, 48.85323320526686], [2.260858169501179, 48.85327896008732], [2.260673513634368, 48.853324932386386], [2.260492333101078, 48.853370686649136], [2.260307676573693, 48.853416659279155], [2.260126495400239, 48.8534624129842], [2.260105739159352, 48.85348447641679], [2.262693590929623, 48.857885479724274], [2.262740479739547, 48.85795023377525], [2.262929133428799, 48.85789342325245], [2.263114812845013, 48.8578408417893], [2.26330346709291, 48.85778403067915], [2.263489145741512, 48.85773144863002], [2.263677799185063, 48.857674636924116], [2.263863477066153, 48.857622054288974], [2.264052128342583, 48.85756524197898], [2.264237805456057, 48.85751265875783], [2.26442645729111, 48.85745584586049], [2.264612133636963, 48.85740326205335], [2.264650717890405, 48.85739166899472], [2.264640726077479, 48.85733043767109], [2.264564998474646, 48.85720906060904], [2.264484189056569, 48.85708380029097], [2.26440846217685, 48.8569624231029], [2.2643276535176042, 48.856837162651296], [2.26425192736099, 48.85671578533721], [2.264171119447968, 48.856590525651384], [2.264095394027148, 48.85646914731199], [2.264014586872833, 48.85634388749262], [2.263938862175101, 48.85622250902722], [2.263858055779687, 48.85609724907434], [2.263865459045054, 48.85608539608062], [2.264028335032188, 48.85604166737683], [2.264224498356585, 48.85598707200961], [2.264387372372215, 48.855943342804856], [2.264583534950248, 48.855888746844215], [2.264746408357204, 48.855845017146926], [2.264747141435631, 48.8558448363831], [2.264787514487668, 48.85584625002198]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 23, "roussel_fabien": 5.0, "nb_emargement": 1184.0, "nb_procuration": 63.0, "nb_vote_blanc": 7.0, "jadot_yannick": 21.0, "le_pen_marine": 51.0, "nb_exprime": 1171.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1449.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1185, "quartier_bv": "61", "geo_point_2d": [48.85486072651547, 2.263384004154107], "melenchon_jean_luc": 85.0, "poutou_philippe": 3.0, "macron_emmanuel": 561.0}, "geometry": {"type": "Point", "coordinates": [2.263384004154107, 48.85486072651547]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a798c8f9b2d5f67f952030b26574a4959d83772c", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 49, "zemmour_eric": 64.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-23", "geo_shape": {"coordinates": [[[2.34191282416967, 48.885624695117606], [2.341920896896124, 48.88560788787018], [2.3418693877882673, 48.885469324886586], [2.341820632087528, 48.88533433384303], [2.341769123517145, 48.88519577078182], [2.3417203683324352, 48.88506077966388], [2.341668860299417, 48.88492221652503], [2.341620105630729, 48.88478722533266], [2.341571351214807, 48.88465223410382], [2.341519843982391, 48.884513670849415], [2.341471090082479, 48.8843786795462], [2.341419583387408, 48.8842401162142], [2.341408929173438, 48.884233428649694], [2.341393232913885, 48.884231425836404], [2.341357566777543, 48.88422687508267], [2.341342200077932, 48.88423256244525], [2.341267780343756, 48.88436415302811], [2.341194497048461, 48.88449373350754], [2.341120076556539, 48.88462532486661], [2.341046792526069, 48.88475490522485], [2.341040624865435, 48.88475962963117], [2.340920434300903, 48.884803544229506], [2.340701279502485, 48.884883618119474], [2.340581088365617, 48.8849275323722], [2.340561038276074, 48.884921177900836], [2.340531560167937, 48.88480721801252], [2.34050419605027, 48.88470142756574], [2.340497209329523, 48.884695018231646], [2.340388576314067, 48.884656514864375], [2.340283204333762, 48.884619167916036], [2.340278807875109, 48.88461669211892], [2.340163448558985, 48.88451671108334], [2.34004324732011, 48.88441253394364], [2.339927888908503, 48.88431255266255], [2.339807689975788, 48.88420837527456], [2.33979751776866, 48.884176054824806], [2.339784156378024, 48.88417511059553], [2.339734052021726, 48.88418120874522], [2.3396621955403942, 48.88419013850689], [2.339646081545423, 48.88418204829394], [2.339629068239755, 48.884047444372555], [2.339612453781432, 48.88391085960878], [2.3395954406512818, 48.883776255649416], [2.339578826367677, 48.88363967084729], [2.339558257449994, 48.88363266311944], [2.339426905013426, 48.88368424442822], [2.339208709769609, 48.88377647000137], [2.33907735662409, 48.88382805091994], [2.339026877664354, 48.88384197987272], [2.3390245289988982, 48.88385383446832], [2.339052518539188, 48.88388998647669], [2.339074336486692, 48.883925474877415], [2.339069125100211, 48.88393639635321], [2.338936054073007, 48.883993387891756], [2.338818420104388, 48.884045267302646], [2.3386853471610323, 48.884102258549355], [2.338567714060305, 48.88415413771635], [2.338565574650007, 48.884155305818254], [2.338456723517841, 48.8842350730494], [2.338327259832207, 48.88432185705217], [2.338218407998293, 48.884401623155355], [2.338088943490121, 48.884488407786534], [2.338087797823043, 48.88448928099736], [2.33797894526094, 48.88456904776993], [2.3378980829014893, 48.88463938417274], [2.337817220323703, 48.884709720516405], [2.337729133119404, 48.884799653701755], [2.337727907307717, 48.884800930264625], [2.337639819783451, 48.88489086427606], [2.337537668811833, 48.885020102940544], [2.337516734236828, 48.885047496695776], [2.337534021803523, 48.88506077112191], [2.337591826316137, 48.88514710369771], [2.337695197101646, 48.885288333343304], [2.337706146748021, 48.885304688857445], [2.337774902881364, 48.88540737594559], [2.3378782746799462, 48.885548605399684], [2.337947030099817, 48.885651293257965], [2.337947962641228, 48.88565656668288], [2.337913300374764, 48.885779686484156], [2.337876062819325, 48.885895656747444], [2.337876225235584, 48.885899828732], [2.337912308435504, 48.88598940984232], [2.337970599859609, 48.8861527750282], [2.338006683397151, 48.8862423560895], [2.338012992068697, 48.88624781481881], [2.338114871668145, 48.88628700510501], [2.338219273635053, 48.88632538815699], [2.338224145480623, 48.886326515862024], [2.338281452487848, 48.88633211434402], [2.338284795627712, 48.886332167894004], [2.338489961673126, 48.886318768439786], [2.338749889724228, 48.88629595114113], [2.338763857933789, 48.88630080551422], [2.33880153277339, 48.886349917241176], [2.338841363202691, 48.88640068033195], [2.338861363274015, 48.88640992884254], [2.338915413940188, 48.886385339277304], [2.339102658421557, 48.88633796212937], [2.339289949358422, 48.88629033583091], [2.339477193157319, 48.88624295809314], [2.339664482057806, 48.88619533029793], [2.33985172653796, 48.886147951977925], [2.340039014742791, 48.886100324491984], [2.340226257176931, 48.886052945574704], [2.340413544697507, 48.886005317498814], [2.340600787812893, 48.88595793799921], [2.340788074660492, 48.885910308434134], [2.340975315718578, 48.8858629292365], [2.3411626032455333, 48.88581529908896], [2.341349843632605, 48.88576791840232], [2.341537129100285, 48.885720288556605], [2.34172437016848, 48.885672907287635], [2.341911654963352, 48.88562527595274], [2.34191282416967, 48.885624695117606]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 23, "roussel_fabien": 33.0, "nb_emargement": 1215.0, "nb_procuration": 74.0, "nb_vote_blanc": 7.0, "jadot_yannick": 125.0, "le_pen_marine": 52.0, "nb_exprime": 1203.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1565.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1213, "quartier_bv": "70", "geo_point_2d": [48.885198216025024, 2.3395454428340092], "melenchon_jean_luc": 394.0, "poutou_philippe": 5.0, "macron_emmanuel": 429.0}, "geometry": {"type": "Point", "coordinates": [2.3395454428340092, 48.885198216025024]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fb9897dcf1a753114d5c7ad65fcd81bc1606dcb2", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 51, "zemmour_eric": 58.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-5", "geo_shape": {"coordinates": [[[2.343510924753761, 48.88963142688041], [2.343496566971007, 48.88962924194273], [2.343353134494266, 48.889663352872105], [2.343179737936417, 48.88970383196795], [2.34298326455712, 48.88975055501184], [2.342809867421248, 48.88979103356883], [2.3427803236732743, 48.889783772145535], [2.342761026611462, 48.889792250286476], [2.342755750539555, 48.889792752828114], [2.342545086069889, 48.889785363114456], [2.34233295581033, 48.889779465952664], [2.342122291454426, 48.88977207549513], [2.341910161285522, 48.889766178483534], [2.341699495691032, 48.88975878637531], [2.34148736698778, 48.889752888622176], [2.341276701495708, 48.889745496669306], [2.341075047492345, 48.88973577791783], [2.340864383491766, 48.88972838524695], [2.3406627296316342, 48.889718665800984], [2.340452064395101, 48.88971127239714], [2.34025041067811, 48.88970155225664], [2.340200001914335, 48.88970349044204], [2.340193908071596, 48.88972892036069], [2.340189478832501, 48.88974740137113], [2.340201171094942, 48.88975867049218], [2.340205112175712, 48.88977010284734], [2.340221122386045, 48.889802348238454], [2.340274624390413, 48.88979362548946], [2.340445355843484, 48.8898732030211], [2.340597620888532, 48.88994553617029], [2.340768353321848, 48.89002511412966], [2.340920619259819, 48.89009744685812], [2.3410728856208323, 48.89016977938818], [2.341243619527254, 48.890249355754385], [2.341395886781191, 48.89032168786372], [2.34156662167925, 48.89040126375841], [2.341566027575433, 48.890416213562105], [2.341432812695511, 48.89047162671113], [2.341315235780634, 48.89051103052149], [2.341308242152463, 48.890521376551405], [2.341361377869087, 48.89065205649474], [2.341411661416885, 48.89077319326863], [2.341464797650147, 48.8909038731361], [2.341515081693105, 48.891025008939515], [2.341565365970033, 48.89114614470846], [2.341618504333427, 48.89127682447078], [2.341624298567333, 48.8912820589172], [2.341659232820709, 48.891296877589284], [2.341692748264976, 48.891297707561826], [2.341703138615696, 48.89129118702814], [2.341914635197241, 48.89128112507815], [2.342120686227493, 48.89127125137297], [2.342332182647264, 48.89126118868537], [2.342538233519439, 48.89125131426154], [2.342749728413863, 48.89124125082877], [2.342955780491613, 48.89123137569376], [2.343167275224344, 48.891221311523346], [2.343373325780329, 48.891211435662214], [2.343584821715019, 48.89120137076169], [2.34379087211289, 48.8911914941819], [2.343793930555798, 48.891191112541854], [2.343827390454841, 48.89118238629779], [2.343817433431368, 48.89115497880237], [2.343838768401199, 48.89100938276484], [2.343858983114624, 48.89086317172403], [2.343880317837374, 48.89071757653964], [2.34390053232084, 48.89057136545292], [2.343896316669291, 48.890564011962255], [2.343743428457761, 48.890468769380156], [2.343588505722957, 48.89036943700223], [2.343435618634441, 48.89027419490945], [2.343280697077108, 48.89017486121641], [2.343278449218682, 48.89016385554352], [2.343364337324388, 48.89006754843267], [2.343449696503921, 48.8899720630342], [2.343535583965194, 48.88987575668296], [2.343620941163996, 48.88978027023904], [2.343621230676895, 48.88977147642804], [2.343570275372671, 48.88970837834989], [2.343522583751357, 48.88965155474327], [2.343510924753761, 48.88963142688041]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 5, "roussel_fabien": 18.0, "nb_emargement": 1062.0, "nb_procuration": 81.0, "nb_vote_blanc": 15.0, "jadot_yannick": 110.0, "le_pen_marine": 52.0, "nb_exprime": 1047.0, "nb_vote_nul": 0.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1279.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1062, "quartier_bv": "70", "geo_point_2d": [48.89045705439512, 2.34239660211229], "melenchon_jean_luc": 307.0, "poutou_philippe": 6.0, "macron_emmanuel": 402.0}, "geometry": {"type": "Point", "coordinates": [2.34239660211229, 48.89045705439512]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4454ac34b1c40b52dabdba0abcb9dab9f95b2a6c", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 69, "zemmour_eric": 70.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "3-4", "geo_shape": {"coordinates": [[[2.367076939997184, 48.86170248649804], [2.367078277695927, 48.86169335442216], [2.367096494387376, 48.861620699992464], [2.3671289524116332, 48.861481269797046], [2.367162504796066, 48.86134745008716], [2.367194963825492, 48.86120802074596], [2.367228515864299, 48.86107420098459], [2.367247773155155, 48.86099147392203], [2.3672382770002622, 48.860968228673435], [2.367163593582672, 48.86096538574504], [2.366969344353082, 48.860992691388006], [2.366780290925993, 48.861019317322416], [2.366586042657419, 48.86104662234905], [2.366396988827709, 48.86107324857596], [2.366202738805238, 48.86110055207264], [2.366013684583946, 48.8611271776927], [2.365824630180469, 48.861153802114195], [2.365630380909649, 48.86118110558638], [2.365441326103555, 48.861207730300336], [2.365247076441753, 48.861235032249795], [2.3650580212442, 48.86126165635694], [2.364863769806528, 48.86128895857492], [2.3646747142283813, 48.86131558117597], [2.364480463751776, 48.86134288277771], [2.364291407781988, 48.86136950477193], [2.364097155540585, 48.86139680574295], [2.363908099168283, 48.86142342802966], [2.363713847898844, 48.861450727485106], [2.363524791135112, 48.861477349165014], [2.363330539452795, 48.86150464889627], [2.363141482308529, 48.86153126907005], [2.36294722886133, 48.861558568170565], [2.362758171325453, 48.86158518773751], [2.362563918839368, 48.8616124862218], [2.3624898246794253, 48.86162291876905], [2.362445517865222, 48.861616166073716], [2.36242121718174, 48.86163254141161], [2.362306251997853, 48.861648728650444], [2.362121329593979, 48.86167343385411], [2.361932271208291, 48.86170005301287], [2.361747347081808, 48.861724757630284], [2.361558288318901, 48.86175137619702], [2.361457039016995, 48.86176490267938], [2.361446797454276, 48.86176830871719], [2.36145811593508, 48.86180937929158], [2.361590992105319, 48.861923807806704], [2.361722331188352, 48.86203691131909], [2.361855208530232, 48.8621513386181], [2.36198654739745, 48.86226444181004], [2.362119425888949, 48.862378869691454], [2.362250767266386, 48.86249197257747], [2.362383646929544, 48.862606399242765], [2.362514989454202, 48.8627195018156], [2.362517730673796, 48.86272406530553], [2.362538361678571, 48.86285836109869], [2.36256105699479, 48.86300609778576], [2.362570523315342, 48.863011811381526], [2.362592058679812, 48.863008932162465], [2.362755930808768, 48.86292619992986], [2.362918062578757, 48.86284473707372], [2.363081933673445, 48.86276200438252], [2.363244064422699, 48.862680541072706], [2.363407934494315, 48.86259780702353], [2.363570064211847, 48.862516344159296], [2.363581170220094, 48.86251470345712], [2.363804259872939, 48.862546143580126], [2.364031329987103, 48.862578143145285], [2.364254421557253, 48.862609581535324], [2.364481492213431, 48.8626415811438], [2.364497807482342, 48.86263416724335], [2.364525173808675, 48.86251798046214], [2.364553225655877, 48.86239888702161], [2.36458059173493, 48.86228270020309], [2.364608641965757, 48.86216360671708], [2.36463055042537, 48.862157926751706], [2.364781636124456, 48.862236537458756], [2.364930645848782, 48.862314067629114], [2.365081732453485, 48.86239267794625], [2.365230743070983, 48.86247020773205], [2.365381830581307, 48.8625488176592], [2.365530842092082, 48.86262634706043], [2.365681930508028, 48.862704956597696], [2.365830942900935, 48.86278248651359], [2.365982032222511, 48.86286109566092], [2.366131046882579, 48.86293862430018], [2.366282135746757, 48.863017233050336], [2.366431151300017, 48.86309476130502], [2.366444080635512, 48.863096190460126], [2.366453236300161, 48.86309408319958], [2.366462443911668, 48.86309196362252], [2.366475439619336, 48.863093427300726], [2.366543701137783, 48.863129392781985], [2.366616269831988, 48.863167626681296], [2.366695542280765, 48.86317974127326], [2.366701378681357, 48.86317102783135], [2.366731017391011, 48.86312150937243], [2.366731816786238, 48.863119552131955], [2.366765371245853, 48.86298573273124], [2.366796442555169, 48.86285029573663], [2.366829996675268, 48.86271647628526], [2.366861067656098, 48.86258103924101], [2.366894621436787, 48.86244721973901], [2.366925693451948, 48.86231178265222], [2.366959246893329, 48.8621779630996], [2.366990317227822, 48.862042525056644], [2.367023870318775, 48.86190870635268], [2.367054940324798, 48.86177326826006], [2.367070276367091, 48.86171210393271], [2.367076939997184, 48.86170248649804]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 4, "roussel_fabien": 16.0, "nb_emargement": 1163.0, "nb_procuration": 59.0, "nb_vote_blanc": 5.0, "jadot_yannick": 98.0, "le_pen_marine": 44.0, "nb_exprime": 1154.0, "nb_vote_nul": 5.0, "arr_bv": "03", "arthaud_nathalie": 2, "nb_inscrit": 1431.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1164, "quartier_bv": "10", "geo_point_2d": [48.861990705245496, 2.364759068758562], "melenchon_jean_luc": 287.0, "poutou_philippe": 8.0, "macron_emmanuel": 521.0}, "geometry": {"type": "Point", "coordinates": [2.364759068758562, 48.861990705245496]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "21e8809d9c14281a8df405831809a49180ca5923", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 100, "zemmour_eric": 68.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-3", "geo_shape": {"coordinates": [[[2.333616614900865, 48.83036380222343], [2.333594244525263, 48.8303597167339], [2.333399511729783, 48.83035221718442], [2.333187874045486, 48.830344355053384], [2.332993141354344, 48.83033685574145], [2.332781503793598, 48.83032899289127], [2.332586769867742, 48.83032149201065], [2.332375133792834, 48.83031362844888], [2.332180399982744, 48.8303061269065], [2.331968764031513, 48.83029826262553], [2.331774030325871, 48.83029076132075], [2.331562394498325, 48.83028289632056], [2.331367660919992, 48.83027539345475], [2.331156025216145, 48.830267527735366], [2.330951188611678, 48.83026039938967], [2.330767169072797, 48.83025365339481], [2.330562332575918, 48.83024652438304], [2.330378313136336, 48.830239777789814], [2.330173476747259, 48.830232648111945], [2.329989457406984, 48.83022590092038], [2.329784621125514, 48.83021877057643], [2.329600601884555, 48.83021202278645], [2.3293957657109052, 48.83020489177648], [2.329211747931339, 48.83019814339576], [2.32920035405466, 48.830193278628755], [2.329159446587639, 48.83014082159449], [2.329111509860471, 48.83007694622345], [2.32910550279076, 48.83007543215561], [2.3290825859135103, 48.83008188072678], [2.328978340149513, 48.8301099454685], [2.3288526254293282, 48.83014741941851], [2.328849615252271, 48.83015130491316], [2.328858941070699, 48.83016686696341], [2.328956440314125, 48.83028099697683], [2.329064426889, 48.830402194555404], [2.329161927010833, 48.83051632527666], [2.32926991455089, 48.83063752264424], [2.329367415574289, 48.830751652274685], [2.3294548473208, 48.83084977945538], [2.32946307121139, 48.83086493055073], [2.3294752682405813, 48.830868582938514], [2.329495825004206, 48.83089165380986], [2.329597120194425, 48.83100869867798], [2.329705109754706, 48.831129896498695], [2.329806407239831, 48.8312469411723], [2.329914397791757, 48.831368137878954], [2.329907818604631, 48.83138102051989], [2.329723134538025, 48.831430955843715], [2.32954054513015, 48.83148122190197], [2.329355858994552, 48.8315311566466], [2.32917326889316, 48.831581421240344], [2.328988583401411, 48.831631356320315], [2.328805991232731, 48.831681620341264], [2.328621305045778, 48.83173155395031], [2.328438712172123, 48.83178181740606], [2.328254025266708, 48.83183175134282], [2.328071431687977, 48.83188201423337], [2.32788674408738, 48.83193194669924], [2.3277041497919813, 48.83198220992385], [2.327519461484616, 48.832032141818125], [2.327336866495749, 48.83208240357827], [2.327330137752385, 48.832094995633945], [2.327417246699753, 48.832200915448695], [2.3274994745397652, 48.83230073697431], [2.327586582824365, 48.83240665573935], [2.327668811301562, 48.832506478029494], [2.32775104010517, 48.83260629935493], [2.327838150773735, 48.83271221791549], [2.327920380214648, 48.83281204000546], [2.328007491571086, 48.83291795842323], [2.328031552315338, 48.832926661027834], [2.328048974972416, 48.832920002824594], [2.32818037813335, 48.83292330689812], [2.328290694373584, 48.83292626666078], [2.328296966190235, 48.83292544298284], [2.328464221522422, 48.83287470243085], [2.328657505350234, 48.83281567432904], [2.328824759979298, 48.83276493326789], [2.329018042991859, 48.83270590457771], [2.329185296917797, 48.83265516300742], [2.329378579115104, 48.83259613372881], [2.329545832337915, 48.83254539164943], [2.329739113719968, 48.83248636178238], [2.329906366239648, 48.83243561919387], [2.330099646794884, 48.83237658963776], [2.330266898622987, 48.83232584564082], [2.330460178362867, 48.832266815496325], [2.330627429487828, 48.83221607099021], [2.330644498474964, 48.83221929993271], [2.330767974725486, 48.832343211272004], [2.330890035443281, 48.832463673548], [2.331013512867709, 48.83258758370749], [2.331135576087328, 48.83270804571424], [2.331259053300559, 48.83283195648487], [2.331381117671324, 48.83295241731546], [2.331385874717404, 48.83295529761642], [2.331479621760121, 48.8329846735037], [2.331594419676525, 48.83302635525093], [2.331612950896754, 48.83302277318311], [2.331703750565656, 48.832912592131706], [2.33180354109273, 48.83279199703564], [2.331894341319067, 48.83268181582439], [2.331994130963364, 48.8325612205445], [2.332084929022777, 48.83245103915828], [2.332184717795934, 48.83233044279519], [2.332275515038945, 48.83222026214091], [2.332375302929549, 48.83209966559397], [2.332466100730011, 48.83198948477991], [2.332565887737867, 48.8318688880491], [2.332656683371454, 48.83175870706005], [2.332756469496677, 48.83163811014539], [2.332847264336925, 48.83152792808965], [2.332947049568117, 48.831407331890496], [2.333037844965823, 48.83129714967496], [2.3331376293258073, 48.83117655239264], [2.333228422545178, 48.83106637090149], [2.33332820602256, 48.830945773435324], [2.333418998437112, 48.83083559177676], [2.333420129253965, 48.83083376965254], [2.333469204994323, 48.83072134083733], [2.333520089320634, 48.83060403217457], [2.333569165991324, 48.83049160330289], [2.333620049879958, 48.83037429367424], [2.333616614900865, 48.83036380222343]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 3, "roussel_fabien": 27.0, "nb_emargement": 1270.0, "nb_procuration": 115.0, "nb_vote_blanc": 11.0, "jadot_yannick": 125.0, "le_pen_marine": 38.0, "nb_exprime": 1257.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1545.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1270, "quartier_bv": "55", "geo_point_2d": [48.831495144045775, 2.3306906748662093], "melenchon_jean_luc": 313.0, "poutou_philippe": 6.0, "macron_emmanuel": 511.0}, "geometry": {"type": "Point", "coordinates": [2.3306906748662093, 48.831495144045775]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6ba0e7610ca8385f6e59fa7cb4f09122d4de0da5", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 130, "zemmour_eric": 124.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-11", "geo_shape": {"coordinates": [[[2.290090817275724, 48.84804698731359], [2.290077006568893, 48.84805355796122], [2.290069016489799, 48.8480710976156], [2.290062251400669, 48.84808724332886], [2.29004194353461, 48.84809249202597], [2.289871408868383, 48.84802279459652], [2.289727697752311, 48.84796503693654], [2.289724288008974, 48.84796305428094], [2.289588600090691, 48.84785307392347], [2.289451526884133, 48.847741493295445], [2.289315838755633, 48.84763151259865], [2.289178766728109, 48.84751993073664], [2.289176733131983, 48.847510871944834], [2.289226673634933, 48.8474300315623], [2.289276153460823, 48.84735088461936], [2.289275452013989, 48.84734306587147], [2.289182530913977, 48.84723447312861], [2.289076692859457, 48.84710952593793], [2.289057699546853, 48.84710623741524], [2.28889413593551, 48.84717212233628], [2.288730199691433, 48.8472379220753], [2.288566633902421, 48.847303805633395], [2.288402698193215, 48.84736960492404], [2.2882391315645902, 48.847435488925925], [2.288075193665029, 48.8475012877519], [2.287911627583968, 48.847567170407096], [2.2877476888566672, 48.8476329687765], [2.287584121935984, 48.84769885187545], [2.287420182380938, 48.84776464978838], [2.287256613282595, 48.847830531524345], [2.287092674262432, 48.84789632898883], [2.286929104324449, 48.84796221116855], [2.286765163113915, 48.8480280081684], [2.286746324281178, 48.84802486859867], [2.28667818500735, 48.847948064935466], [2.286609261102954, 48.84787244910593], [2.286541122218104, 48.84779564625345], [2.286472198714165, 48.8477200303346], [2.286471939451439, 48.847719757180194], [2.28645648650562, 48.84771347469043], [2.28643803653024, 48.84772095798868], [2.286396320283543, 48.84773048527084], [2.286341683373427, 48.84774305626261], [2.28633431935472, 48.84775598747148], [2.286432172278274, 48.84786977777102], [2.286529084676508, 48.84798282129117], [2.286626938451155, 48.84809661140824], [2.286723853068645, 48.84820965385643], [2.286821707694599, 48.84832344379103], [2.286918621781471, 48.848436486949595], [2.287016477258538, 48.848550276701715], [2.287113392202146, 48.848663318780204], [2.287211249893083, 48.84877710835798], [2.287308165668632, 48.84889015115495], [2.28740602284826, 48.849003940542104], [2.287502939468161, 48.84911698315825], [2.287505252038239, 48.8491278477514], [2.287524211334585, 48.84913227580183], [2.287722779935419, 48.84918011529321], [2.287942388960353, 48.849233795129145], [2.288140958344289, 48.849281633022855], [2.288360568227788, 48.849335312086346], [2.288409265358499, 48.8493470443254], [2.288432040026695, 48.84935599893361], [2.288441269557656, 48.84935343218087], [2.288591142609745, 48.84938953799613], [2.288755976721965, 48.849429597124384], [2.288954546236067, 48.849477433651295], [2.28911938090576, 48.84951749227569], [2.289130176560192, 48.84951709954245], [2.289301959226886, 48.84946050417376], [2.289472428076379, 48.849404390008964], [2.2896442113624, 48.849347794151306], [2.289814679474661, 48.84929167949322], [2.289986460654884, 48.849235083130296], [2.290156928029912, 48.849178967978915], [2.290328708454651, 48.84912237201818], [2.290499176467246, 48.84906625548228], [2.290670956148751, 48.84900965902444], [2.290841422049309, 48.84895354288646], [2.2908674012637302, 48.84894453505554], [2.2908684138186572, 48.84894132763173], [2.29080932061921, 48.848867180103795], [2.290727269806643, 48.8487637795505], [2.290632869347858, 48.84864532770636], [2.290550819234701, 48.84854192701143], [2.29045641957886, 48.84842347500443], [2.290374370165105, 48.8483200741679], [2.290279971312197, 48.848201621998115], [2.290197922597834, 48.848098221019995], [2.290193658498371, 48.84809503085967], [2.290152159595302, 48.84807592678032], [2.29011682918343, 48.84805906452759], [2.290090817275724, 48.84804698731359]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 11, "roussel_fabien": 8.0, "nb_emargement": 1245.0, "nb_procuration": 77.0, "nb_vote_blanc": 7.0, "jadot_yannick": 79.0, "le_pen_marine": 88.0, "nb_exprime": 1234.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1609.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1245, "quartier_bv": "59", "geo_point_2d": [48.84843233865902, 2.288708733483631], "melenchon_jean_luc": 191.0, "poutou_philippe": 6.0, "macron_emmanuel": 564.0}, "geometry": {"type": "Point", "coordinates": [2.288708733483631, 48.84843233865902]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f10213ed5371ce91a7526e30eda0aee3988c0399", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 19, "zemmour_eric": 53.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-75", "geo_shape": {"coordinates": [[[2.380717237381531, 48.868965989310055], [2.380715653002164, 48.86896658636735], [2.38068726987199, 48.86898770526848], [2.380686985076835, 48.86898792413279], [2.3805648328593882, 48.869082455528385], [2.380440193936922, 48.8691814301433], [2.380318040807157, 48.869275962169745], [2.380193400952777, 48.86937493651039], [2.3800712469319762, 48.8694694673691], [2.379946606145778, 48.8695684414354], [2.379824451223342, 48.86966297202575], [2.379699809494404, 48.86976194671702], [2.379577653670423, 48.8698564770389], [2.379453011020257, 48.86995545055657], [2.379330854294625, 48.87004998061007], [2.379235762755034, 48.87012548781471], [2.3792217009826713, 48.87013780236382], [2.379279644499726, 48.870170182240535], [2.379438432836242, 48.87023094554386], [2.379616332362579, 48.87029843850257], [2.379775121482706, 48.87035920135224], [2.379953020520081, 48.87042669379563], [2.380111810423918, 48.870487456191576], [2.380289711709485, 48.8705549472345], [2.380448502397033, 48.87061570917675], [2.380626404546163, 48.87068320061074], [2.3807851960175253, 48.870743962099255], [2.380963097677683, 48.870811453017964], [2.381121889932656, 48.870872214052774], [2.381299793840997, 48.87093970357096], [2.381458586879679, 48.87100046415208], [2.381461810011584, 48.871002162567635], [2.38158608495506, 48.8710910206417], [2.38173076385875, 48.871197659533344], [2.381855038353524, 48.87128651820472], [2.381999718350823, 48.871393156752404], [2.382123995134081, 48.87148201513582], [2.382268674861744, 48.87158865333251], [2.382392952570343, 48.871677511421], [2.382537634754792, 48.871784149280764], [2.382661912025374, 48.871873007067194], [2.382667258975106, 48.87187542417931], [2.382798928046463, 48.871908186085804], [2.38292767778881, 48.87194053888679], [2.383056429065117, 48.87197289065612], [2.383188097264352, 48.87200565212459], [2.383206611526167, 48.87200943120703], [2.383217775706928, 48.87200264928505], [2.383223741523989, 48.871988957959225], [2.383226993998446, 48.871980128850936], [2.383238511453293, 48.87197333165983], [2.38339807535272, 48.871959869571434], [2.383556408234588, 48.871946509750586], [2.383567169199818, 48.87194119253615], [2.383640991631, 48.87182981851312], [2.383727849417919, 48.87169877561969], [2.383801669788081, 48.87158740236541], [2.383888528129701, 48.87145635933361], [2.383962347812762, 48.87134498595577], [2.384049203982783, 48.871213942771654], [2.384123024342, 48.8711025692773], [2.384209879703486, 48.87097152594782], [2.384283698023102, 48.870860151423656], [2.384370553928775, 48.87072910885509], [2.384444371561211, 48.87061773420743], [2.38444273502644, 48.87059886399937], [2.38443934992973, 48.87059713695146], [2.384230134748341, 48.87060556772553], [2.384041906252401, 48.870612250802175], [2.384031262118086, 48.87060944495512], [2.38391263511351, 48.87052657297742], [2.383770092219569, 48.87042665312566], [2.383651464683549, 48.8703437808684], [2.38350892414337, 48.87024386159542], [2.383390297439131, 48.8701609890656], [2.383247756547541, 48.870061068558805], [2.383159698757779, 48.86999955067619], [2.383145931289606, 48.8699718988435], [2.383126924824149, 48.869972215485156], [2.383096356770929, 48.8699508605565], [2.383093484026993, 48.86994156368788], [2.383123831451893, 48.86988749813585], [2.38315423491925, 48.8698358322954], [2.38314780247691, 48.86982459429827], [2.383000438294704, 48.86977416883285], [2.38285092484124, 48.869724176373296], [2.382703561230501, 48.86967375053779], [2.382554046976213, 48.869623758595104], [2.382545850428633, 48.8696156420574], [2.382524590624659, 48.86961538219458], [2.382524373378621, 48.86961530822744], [2.382348360379408, 48.86955381168731], [2.382176234357551, 48.86949381795472], [2.382000222179744, 48.869432320895896], [2.381828095597086, 48.86937232664901], [2.381652084240894, 48.86931082907147], [2.38147995846064, 48.86925083431736], [2.381307834429385, 48.86919084021883], [2.381131824300523, 48.869129341866156], [2.380959699719155, 48.86906934635406], [2.380783690411908, 48.86900784748272], [2.380717237381531, 48.868965989310055]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 75, "roussel_fabien": 22.0, "nb_emargement": 1294.0, "nb_procuration": 53.0, "nb_vote_blanc": 14.0, "jadot_yannick": 65.0, "le_pen_marine": 56.0, "nb_exprime": 1273.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1850.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1294, "quartier_bv": "77", "geo_point_2d": [48.87044754317472, 2.381984851611029], "melenchon_jean_luc": 778.0, "poutou_philippe": 8.0, "macron_emmanuel": 228.0}, "geometry": {"type": "Point", "coordinates": [2.381984851611029, 48.87044754317472]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a3004bdda9106d10cde1afbfb4ca42fec92fed66", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 99, "zemmour_eric": 114.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "14-14", "geo_shape": {"coordinates": [[[2.32289451568672, 48.837670692833385], [2.322815612151668, 48.837642837883166], [2.32267203130739, 48.83757962579741], [2.322501476378385, 48.837505163437434], [2.322357896294198, 48.837441950966834], [2.32218734226453, 48.83736748814984], [2.322043762940533, 48.83730427529435], [2.321873209809998, 48.837229812020254], [2.32172963124629, 48.83716659877998], [2.321729525581533, 48.83716655231294], [2.321558971988289, 48.8370920885739], [2.321397785401135, 48.837022554109325], [2.321227234115208, 48.83694808989545], [2.32106604706535, 48.83687855406788], [2.320895496724494, 48.83680408937136], [2.32073431191309, 48.83673455399488], [2.320563761155063, 48.836660088808095], [2.320402577243106, 48.83659055207629], [2.320232028792381, 48.83651608641468], [2.320070844394289, 48.83644655011849], [2.320056888373835, 48.836446616484054], [2.3200444287144553, 48.8364596000191], [2.319932892987903, 48.836572850512816], [2.31981757587543, 48.83668987473381], [2.31970603916317, 48.83680312499264], [2.319590722394303, 48.836920148978614], [2.319479183334185, 48.83703339899484], [2.319363865546574, 48.83715042273801], [2.319369520836884, 48.83716347599673], [2.319536881049205, 48.83721506271909], [2.319693859448039, 48.83726219313794], [2.319701840737689, 48.83727021774059], [2.3197044045612483, 48.83736418769098], [2.319702551068412, 48.83753020889795], [2.3197051149060393, 48.83762417882651], [2.3196926003201, 48.8376333046048], [2.319472560229982, 48.8376451405664], [2.319258533723476, 48.8376568817376], [2.319038493435269, 48.83766871690051], [2.3188244667340863, 48.83768045729479], [2.318604426247804, 48.83769229165896], [2.318390399352159, 48.837704031276374], [2.318379571150904, 48.83770868227048], [2.318289263620545, 48.83781780887976], [2.318198929249538, 48.83792760439024], [2.318108620949828, 48.838036731741056], [2.318018285818901, 48.83814652709366], [2.317927975411186, 48.83825565337965], [2.3178376408826082, 48.83836544858206], [2.317747329705615, 48.83847457560959], [2.317656994417106, 48.83858437065412], [2.317582092168624, 48.83861273126584], [2.317595473888141, 48.83863024637227], [2.317689747641407, 48.838706177352776], [2.317814640787249, 48.83880977388589], [2.317936654349912, 48.83890804578269], [2.31806154847009, 48.8390116420393], [2.318183564321455, 48.83910991457354], [2.3183084580536812, 48.839213510545925], [2.31843047485489, 48.83931178191123], [2.318555370923975, 48.83941537761481], [2.318677387289108, 48.8395136496021], [2.318802284344412, 48.839617244129876], [2.318924301647741, 48.83971551584752], [2.319049199665764, 48.839819110998064], [2.319171219281265, 48.83991738155457], [2.31929611691135, 48.84002097642085], [2.319418137453221, 48.840119247607035], [2.319543037420221, 48.84022284220455], [2.31966505754953, 48.84032111221401], [2.31978995849103, 48.840424706534975], [2.319911979546728, 48.84052297717414], [2.319930853759178, 48.84052438945945], [2.320073858098649, 48.84045137061283], [2.32021812039328, 48.84037798010775], [2.320361122566179, 48.840304960900454], [2.320505384039264, 48.840231570938634], [2.320648386770463, 48.84015855138609], [2.320792647445657, 48.840085160168925], [2.320935648010297, 48.84001214025569], [2.321079907875779, 48.83993874868248], [2.321222908998714, 48.83986572842399], [2.321367168042673, 48.83979233739405], [2.321386219629793, 48.83979392223742], [2.321489458469248, 48.83988112326874], [2.32158517293132, 48.83996159653027], [2.321688412447549, 48.84004879647747], [2.321784127524602, 48.84012926956775], [2.321846134667822, 48.84014951511715], [2.321880113693971, 48.84012379157421], [2.321912064236578, 48.84004787901598], [2.321961267630722, 48.83992664707874], [2.3220129532693248, 48.839803843593145], [2.322062154847723, 48.83968261068091], [2.322113839994941, 48.83955980802419], [2.322163042470733, 48.839438575051666], [2.322214727138271, 48.83931577232453], [2.322263927786744, 48.83919453927637], [2.322315611974508, 48.83907173647881], [2.322364813520275, 48.83895050337036], [2.322416497228473, 48.83882770050239], [2.322465696946946, 48.83870646731824], [2.3225173801753822, 48.83858366437991], [2.32256658079115, 48.83846243113551], [2.322618263540033, 48.838339628126725], [2.322667462328532, 48.83821839480665], [2.322719144609354, 48.8380955908282], [2.322768344283462, 48.83797435834716], [2.322820026084741, 48.83785155429829], [2.322869223943291, 48.8377303208423], [2.322890543427269, 48.83767966493956], [2.32289451568672, 48.837670692833385]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 14, "roussel_fabien": 33.0, "nb_emargement": 1301.0, "nb_procuration": 92.0, "nb_vote_blanc": 14.0, "jadot_yannick": 94.0, "le_pen_marine": 53.0, "nb_exprime": 1284.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1572.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1301, "quartier_bv": "56", "geo_point_2d": [48.838519930684825, 2.3203879811799637], "melenchon_jean_luc": 312.0, "poutou_philippe": 10.0, "macron_emmanuel": 503.0}, "geometry": {"type": "Point", "coordinates": [2.3203879811799637, 48.838519930684825]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "38b37afc7533752b416fa1e6716596381343670b", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 61, "zemmour_eric": 87.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "14-44", "geo_shape": {"coordinates": [[[2.323747450557006, 48.820166452400734], [2.323750923325922, 48.820195143477775], [2.323785760820756, 48.82032899152584], [2.323820131063342, 48.82046096978553], [2.323854502841836, 48.82059294802761], [2.32388934086834, 48.82072679599814], [2.323923711635321, 48.82085877418135], [2.323958551378918, 48.820992622107816], [2.323992922496307, 48.82112460023998], [2.324027762595289, 48.821258448114634], [2.324062134063092, 48.821390426195684], [2.324096974517363, 48.8215242740185], [2.324131346335585, 48.821656252048456], [2.324166187133493, 48.821790100718836], [2.324200559302142, 48.821922078697696], [2.324235400467006, 48.82205592641686], [2.324269772986084, 48.822187904344645], [2.324304613144291, 48.82232175200429], [2.324322142467528, 48.822328803272754], [2.324486737840351, 48.82229444776793], [2.324653564418873, 48.8222577473592], [2.324671324144137, 48.82226488891667], [2.324699026900361, 48.822381702326965], [2.324722308208794, 48.822491288504736], [2.3247500098376612, 48.82260810187197], [2.324773291354339, 48.82271768801773], [2.324796572968781, 48.82282727414827], [2.324824274942538, 48.82294408746336], [2.3248261789719322, 48.8229475680253], [2.324854723793737, 48.82297805451475], [2.324863240874812, 48.82298561692828], [2.324879071685842, 48.82298943244057], [2.325052038060181, 48.822951962104625], [2.325226848820721, 48.822914775338035], [2.325399814697464, 48.82287730449654], [2.325574626333368, 48.822840116327434], [2.32574759035053, 48.82280264497279], [2.3259224014764452, 48.82276545719212], [2.326095366357977, 48.82272798533962], [2.32627017563508, 48.82269079614109], [2.326443140018999, 48.822653323783115], [2.326617948786219, 48.82261613497303], [2.326635688038091, 48.82262552457146], [2.326621946509284, 48.822723486006815], [2.326592765482628, 48.822891621912085], [2.3265790238030473, 48.82298958331932], [2.326569392991869, 48.822997364487264], [2.326398713280199, 48.82303134320678], [2.326225501180563, 48.82306511854438], [2.326054821023094, 48.823099096770996], [2.325881607113625, 48.82313287160073], [2.325710926510157, 48.82316684933444], [2.325537713514827, 48.82320062367175], [2.325528402781206, 48.823211548996596], [2.325540502223431, 48.82324174918776], [2.325545524892929, 48.82326664628822], [2.325543213270416, 48.82327719107859], [2.325551254053329, 48.82328431095673], [2.32556652027258, 48.82336000348031], [2.32558614284943, 48.82343482118506], [2.325603812176137, 48.82344183167365], [2.325788798421151, 48.82340172632975], [2.325971107787979, 48.82336215783108], [2.326156093467793, 48.82332205191616], [2.326338400903683, 48.82328248374639], [2.326523386018295, 48.82324237726045], [2.32670569425885, 48.82320280853561], [2.326890678819863, 48.82316270057934], [2.327072986503185, 48.82312313129178], [2.32725797048727, 48.823083023663806], [2.327440277613256, 48.8230434538135], [2.327625259670242, 48.82300334560684], [2.327807566250381, 48.82296377429448], [2.327989872542207, 48.822924203602064], [2.328174855115317, 48.8228840945487], [2.328357160849793, 48.822844523293554], [2.3285421428576702, 48.822804413669196], [2.328724446684395, 48.822764840944366], [2.328909428127033, 48.82272473074897], [2.329091732746792, 48.82268515836838], [2.329276713624187, 48.82264504760201], [2.32945901768658, 48.8226054746587], [2.329643997998725, 48.82256536332132], [2.329826301515308, 48.82252578891595], [2.330011279900228, 48.82248567699999], [2.330193582847874, 48.822446102931195], [2.330378562029502, 48.82240599045187], [2.33042225389913, 48.82240469177225], [2.330430243159131, 48.8223973040247], [2.330410333354992, 48.82233681171144], [2.330367567976446, 48.82221867689543], [2.330346199306285, 48.82215375143717], [2.330302377301138, 48.82202045159164], [2.330259612426662, 48.82190231670378], [2.330216847757623, 48.82178418088892], [2.33017302639377, 48.82165088095216], [2.3301302621270272, 48.82153274507988], [2.330086439833907, 48.82139944507396], [2.3300436773315942, 48.82128130915194], [2.329999855471045, 48.82114800908448], [2.329957092009183, 48.82102987309743], [2.32991327194333, 48.820896572976054], [2.329913180088855, 48.82089630174735], [2.329874167281423, 48.820771649111414], [2.329830346282554, 48.82063834892142], [2.329791333877606, 48.82051369533059], [2.329747514669297, 48.82038039508729], [2.329708501293457, 48.82025574143321], [2.329664682513684, 48.820122441128994], [2.329625670890766, 48.81999778742694], [2.329581851177617, 48.81986448705416], [2.329542839934145, 48.81973983419581], [2.329499020660986, 48.819606532862814], [2.329460009808618, 48.819481879948846], [2.329416190963983, 48.81934857855493], [2.329377180502509, 48.819223925585376], [2.329333363448371, 48.81909062413817], [2.329294352016007, 48.81896597110538], [2.329288645107042, 48.818951491395104], [2.329240093902395, 48.81893797022619], [2.329203366258236, 48.81894622289229], [2.329117960692515, 48.81896541235601], [2.329083835045763, 48.81897308059495], [2.328889888279221, 48.81901642624815], [2.328700640998126, 48.81905894805334], [2.328506693593669, 48.819102293081684], [2.328317447061918, 48.81914481338552], [2.328123499019558, 48.819188157789014], [2.327934250490231, 48.81923067837477], [2.327740301809968, 48.819274022153444], [2.327551054029914, 48.819316541237825], [2.327357104700157, 48.81935988529094], [2.327167854934225, 48.819402403757955], [2.32715858577771, 48.81940448673651], [2.326964635806211, 48.81944782925036], [2.326895793170833, 48.81946329606871], [2.326843740470606, 48.8194749900219], [2.326799207157831, 48.81948499587363], [2.326605256588155, 48.819528337801465], [2.326389737360487, 48.819576757245706], [2.326195784747358, 48.8196200984982], [2.325980264771822, 48.819668516301164], [2.325786312827201, 48.81971185779287], [2.3256780525699963, 48.81973617912359], [2.325665884783519, 48.819738912082975], [2.325471932327376, 48.81978225216275], [2.325354245407623, 48.819808690235014], [2.325170214470898, 48.81984971053218], [2.324976261190642, 48.81989304980374], [2.324792229658831, 48.8199340695161], [2.324598275750625, 48.819977408171326], [2.32441424362373, 48.820018427298876], [2.324220289087583, 48.820061765337705], [2.324036256365612, 48.82010278388048], [2.323842301201526, 48.820146121302955], [2.323769415140653, 48.82016236570754], [2.323747450557006, 48.820166452400734]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 44, "roussel_fabien": 18.0, "nb_emargement": 1156.0, "nb_procuration": 52.0, "nb_vote_blanc": 13.0, "jadot_yannick": 57.0, "le_pen_marine": 93.0, "nb_exprime": 1140.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1538.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1156, "quartier_bv": "55", "geo_point_2d": [48.82118732101301, 2.327142384882274], "melenchon_jean_luc": 474.0, "poutou_philippe": 5.0, "macron_emmanuel": 285.0}, "geometry": {"type": "Point", "coordinates": [2.327142384882274, 48.82118732101301]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5cee5a566572d286e9758cbcbc782559c7b42c16", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 64, "zemmour_eric": 72.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-31", "geo_shape": {"coordinates": [[[2.33026312044112, 48.88766862146757], [2.330262191655093, 48.88766258358056], [2.330128598878302, 48.887573967420586], [2.32999954733903, 48.88747987712166], [2.32999969841667, 48.887473329059574], [2.329959947002912, 48.88745422792152], [2.329830896076707, 48.88736013653127], [2.329698798817494, 48.8872640485157], [2.329569748834587, 48.887169956827734], [2.329437652539605, 48.887073868507464], [2.329308603488304, 48.88697977742102], [2.329176508169231, 48.88688368789671], [2.329047460061106, 48.88678959651247], [2.328915365694866, 48.88669350758276], [2.328786318541401, 48.88659941500156], [2.328654225139471, 48.88650332576708], [2.328525178917677, 48.88640923378743], [2.328393086491543, 48.88631314334898], [2.328372374862821, 48.88631353259458], [2.328254259389689, 48.88640996156475], [2.328132747640938, 48.88650703865692], [2.328014629921499, 48.88660346736608], [2.327893118638123, 48.88670054420566], [2.327872927639213, 48.886701156623694], [2.327721721273925, 48.886600773591525], [2.327567703463639, 48.88649859839161], [2.327416498274911, 48.88639821495553], [2.327262483026259, 48.88629603935182], [2.327111279014082, 48.88619565551174], [2.326957264963411, 48.88609347949666], [2.326806062127671, 48.88599309525265], [2.326652047911447, 48.88589091881846], [2.3266295618799973, 48.88589418463148], [2.326567522238815, 48.886006650323424], [2.326508749369192, 48.886113769847775], [2.3264467078302102, 48.88622623634627], [2.326387935827863, 48.88633335579756], [2.326325893777965, 48.886445821311725], [2.326267119915618, 48.88655294067464], [2.326251628553694, 48.886558700044304], [2.32616231117436, 48.88654694321055], [2.326104227136295, 48.88653908083084], [2.326048312823655, 48.88652289205446], [2.326028442862, 48.88654516901223], [2.325982200355277, 48.886643584011914], [2.325930522164176, 48.88676020138326], [2.325869816693035, 48.886889395374844], [2.325818138006403, 48.887006012671584], [2.325757430606213, 48.887135206569624], [2.325705751423834, 48.8872518237918], [2.325654072009985, 48.88736844097925], [2.325593365143875, 48.887497634759164], [2.325590582264499, 48.88753444748728], [2.325600199677552, 48.88754169088874], [2.325641283466878, 48.88766924200893], [2.325687074752875, 48.8878078795493], [2.3257281589650223, 48.88793543060867], [2.325773949341077, 48.888074068973786], [2.325815035339735, 48.88820161998018], [2.32586082619292, 48.88834025737914], [2.325901912614419, 48.88846780832484], [2.325947703921253, 48.888606446556274], [2.325988790777239, 48.88873399654192], [2.326034582549473, 48.88887263470654], [2.326063850225127, 48.88896349300363], [2.326066219950201, 48.88897670486859], [2.326069893775289, 48.88898146230283], [2.326081713375274, 48.889018154828754], [2.326126452856392, 48.8891496229571], [2.326167540578836, 48.88927717281831], [2.326212279135488, 48.88940864087591], [2.326253367260922, 48.8895361915768], [2.326266449181781, 48.88957463316318], [2.3262755520575, 48.88958204806863], [2.326338412656319, 48.889574743071506], [2.326501380610261, 48.88949591201416], [2.3266622624799043, 48.88941784601984], [2.326825229452403, 48.889339014510476], [2.326986111715465, 48.88926094807761], [2.327149076343014, 48.88918211610854], [2.32730995763578, 48.889104049229374], [2.327472921281999, 48.88902521680832], [2.327633801604472, 48.88894714948289], [2.327796764269364, 48.888868316609845], [2.327957643621549, 48.88879024883816], [2.328120605305016, 48.88871141551311], [2.328281483686915, 48.8886333472952], [2.328444444389163, 48.88855451351816], [2.328605321812375, 48.88847644395469], [2.328768282885301, 48.88839761063257], [2.328929157974638, 48.888319540615264], [2.329092118066253, 48.88824070684113], [2.329252992185211, 48.88816263637758], [2.32941595129562, 48.888083802151485], [2.3295768244443043, 48.88800573124169], [2.329737698462699, 48.88792766101712], [2.329900654751821, 48.8878488252076], [2.330061527799948, 48.887770754536824], [2.33022448310777, 48.887691918275316], [2.33026312044112, 48.88766862146757]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 31, "roussel_fabien": 25.0, "nb_emargement": 1425.0, "nb_procuration": 90.0, "nb_vote_blanc": 19.0, "jadot_yannick": 145.0, "le_pen_marine": 53.0, "nb_exprime": 1405.0, "nb_vote_nul": 1.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1818.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1425, "quartier_bv": "69", "geo_point_2d": [48.887680330219794, 2.3274940984005106], "melenchon_jean_luc": 454.0, "poutou_philippe": 13.0, "macron_emmanuel": 509.0}, "geometry": {"type": "Point", "coordinates": [2.3274940984005106, 48.887680330219794]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f5f055c06e1c08d1a87553ae4c18b3c6787ec87c", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 29, "zemmour_eric": 67.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-20", "geo_shape": {"coordinates": [[[2.32390556737661, 48.89875644591104], [2.323925536903511, 48.89875844181764], [2.324134557450486, 48.898759546034285], [2.324340734181599, 48.898760634741656], [2.324546912285296, 48.8987617231018], [2.324755932858618, 48.89876282623398], [2.324962109615707, 48.898763913871676], [2.325171130206619, 48.89876501627924], [2.325377306981052, 48.89876610320216], [2.32558632758954, 48.89876720488507], [2.325792505745267, 48.898768291100914], [2.326001526382965, 48.89876939115998], [2.326207703192046, 48.89877047665338], [2.326416723835754, 48.89877157688708], [2.326430458980782, 48.89876298829684], [2.326440175659979, 48.898620508933085], [2.32644981458294, 48.89847918563782], [2.326459531156195, 48.89833670623554], [2.326469169985703, 48.8981953820028], [2.3264788864529162, 48.898052902562], [2.326488525177338, 48.89791157829105], [2.326498241527082, 48.89776909971099], [2.326507878782487, 48.8976277753942], [2.326512916643972, 48.89762119372221], [2.326634271199774, 48.897556333659416], [2.32676380600034, 48.897487101996354], [2.326885161283314, 48.89742224257828], [2.327014695428241, 48.89735300973612], [2.327009462859982, 48.897337307876384], [2.326842943254217, 48.89730942746473], [2.326680611780043, 48.897282248454275], [2.326514091162572, 48.89725436757627], [2.326351761407315, 48.8972271872271], [2.326185241142068, 48.897199305890496], [2.326022910354617, 48.897172125985776], [2.326013200329618, 48.8971608316311], [2.326053452916204, 48.897072138733826], [2.326092276111327, 48.89698659079149], [2.326132528416845, 48.89689789875275], [2.326171351352102, 48.89681235077117], [2.326173453878069, 48.89680218588637], [2.326160912880665, 48.89679569057494], [2.326007529773634, 48.89672994773457], [2.325809156161481, 48.896644920889194], [2.325655773931278, 48.89657917848855], [2.325457401468073, 48.8964941510488], [2.32530402012613, 48.89642840818856], [2.325096127969291, 48.89633929933823], [2.324942747539855, 48.896273556006065], [2.324928756291232, 48.89627321003968], [2.3247483706281162, 48.89633842089575], [2.324567317131519, 48.89640387232759], [2.324386930574746, 48.89646908173225], [2.3242058747937993, 48.89653453350143], [2.324025488695407, 48.89659974236156], [2.323844432005676, 48.89666519357649], [2.323664043638058, 48.89673040187676], [2.323482987403453, 48.89679585254515], [2.323302598130312, 48.8968610602932], [2.323121540986927, 48.896926510407354], [2.323100059605346, 48.89692776045679], [2.323095238941016, 48.896941737436705], [2.323095479411974, 48.896943069791014], [2.323134491467873, 48.89707490231865], [2.323172131824976, 48.89720209646143], [2.323209770990386, 48.897329291469106], [2.323248783625108, 48.89746112391301], [2.323254149732898, 48.897470768872715], [2.3232697333925962, 48.897472665466374], [2.323485831637615, 48.89748167449862], [2.323707627056216, 48.89749092035797], [2.323923725452879, 48.897499928599956], [2.324145522390837, 48.8975091736559], [2.324158171991014, 48.89751938038371], [2.324132419536746, 48.89764220362925], [2.324106648167684, 48.89776510858753], [2.32408089410637, 48.89788793178671], [2.324055123857971, 48.89801083671398], [2.324029369553542, 48.898133659874496], [2.324003599061868, 48.89825656476313], [2.323977844514321, 48.898379387884965], [2.323952072415413, 48.898502292727215], [2.323926318988697, 48.89862511581808], [2.3239005466465033, 48.898748020621646], [2.32390556737661, 48.89875644591104]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 20, "roussel_fabien": 21.0, "nb_emargement": 941.0, "nb_procuration": 17.0, "nb_vote_blanc": 8.0, "jadot_yannick": 36.0, "le_pen_marine": 103.0, "nb_exprime": 926.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 8, "nb_inscrit": 1367.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 940, "quartier_bv": "68", "geo_point_2d": [48.8976020752151, 2.32504755226137], "melenchon_jean_luc": 416.0, "poutou_philippe": 5.0, "macron_emmanuel": 203.0}, "geometry": {"type": "Point", "coordinates": [2.32504755226137, 48.8976020752151]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a8bae289cd580927d7840963cbb3a4bee5ec3ae8", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 76, "zemmour_eric": 67.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "9-11", "geo_shape": {"coordinates": [[[2.335079952624643, 48.880472354607534], [2.335101562501977, 48.8804801351485], [2.335230778492638, 48.88057116916839], [2.335369987608038, 48.88066675967923], [2.335499204530942, 48.880757793394025], [2.33563841462631, 48.880853384475785], [2.335767633844963, 48.880944417892984], [2.335906843579858, 48.88104000773959], [2.335923243329977, 48.881040003379105], [2.335953695049322, 48.881015482903365], [2.336133444489392, 48.8810001406952], [2.336346718698889, 48.88098179412865], [2.336526467906797, 48.88096645132996], [2.33673974183987, 48.88094810406267], [2.336919490815807, 48.88093276067345], [2.337132764472447, 48.8809144127055], [2.337312513216204, 48.88089906872573], [2.3375257865964, 48.880880720057085], [2.337705535108172, 48.88086537548679], [2.337710300144174, 48.88086435322492], [2.337868219986304, 48.88080754802133], [2.338002582293812, 48.880759879073864], [2.338136943003188, 48.88071220906672], [2.338294861918714, 48.88065540329252], [2.338298445077314, 48.880641474443436], [2.338153572355921, 48.88053587165966], [2.338009455515955, 48.88042813245401], [2.337864583985449, 48.88032252840076], [2.337720468333693, 48.88021478882636], [2.337575597982636, 48.88010918440298], [2.337431483507638, 48.88000144535913], [2.337436998037743, 48.87998705596471], [2.337618752657557, 48.8799429277701], [2.3377956790022543, 48.87989963055681], [2.337977433013148, 48.87985550181415], [2.338154357410509, 48.879812203160526], [2.33833611217584, 48.87976807387737], [2.338513035966571, 48.87972477558953], [2.338694790122869, 48.879680645758334], [2.338871713329915, 48.879637346037725], [2.33905346687707, 48.879593215658495], [2.339230389477492, 48.87954991630366], [2.3394121424156022, 48.87950578537642], [2.339589064432217, 48.8794624845888], [2.339770815397922, 48.87941835310604], [2.339947738171272, 48.87937505269176], [2.339989156465934, 48.8793627002621], [2.339982674612291, 48.879345026791924], [2.339945281061088, 48.87925574340838], [2.339900671015568, 48.87914909994142], [2.33985073789247, 48.87902987688631], [2.339806128234105, 48.87892323336225], [2.339805844211249, 48.87892240530779], [2.339773784881074, 48.87879938484495], [2.339740492665486, 48.87867499956436], [2.339708433641969, 48.87855197905637], [2.339675141752009, 48.87842759283039], [2.339643083035146, 48.878304572277315], [2.3396097900845803, 48.87818018689696], [2.33961142949991, 48.87815702907568], [2.339609440219594, 48.87815498110864], [2.339576148808422, 48.87803059570955], [2.33955098652372, 48.877928372480866], [2.339549883987007, 48.87790521391717], [2.339546349060775, 48.877901940620944], [2.33951305659871, 48.877777555168294], [2.339476081665855, 48.87764359033866], [2.339442789548054, 48.87751920393802], [2.33940581496804, 48.87738523995456], [2.339372523183194, 48.87726085350522], [2.339335548967219, 48.87712688946867], [2.339302258878717, 48.877002502978165], [2.33927721371077, 48.87691176475647], [2.339264988756017, 48.876898663207264], [2.339212061669016, 48.87690576630678], [2.339110234457576, 48.877010067649586], [2.339022053282345, 48.877105923038606], [2.33892022529907, 48.87721022420081], [2.338832044809972, 48.877306078540784], [2.33874386398488, 48.87740193370669], [2.338642034865765, 48.877506234604255], [2.338641866248985, 48.87750641353981], [2.338543052508768, 48.87760837114816], [2.338441222583891, 48.877712671855434], [2.338342409422981, 48.87781462928661], [2.338240578693024, 48.87791892980369], [2.338141763373155, 48.878020887941915], [2.338039931838104, 48.87812518826882], [2.338038663238136, 48.87812684052713], [2.337959460763248, 48.878257246790234], [2.337888605347877, 48.87837928048053], [2.337809402124698, 48.8785096857152], [2.337738546014286, 48.878631719288734], [2.337667689583259, 48.87875375190752], [2.337588485226118, 48.87888415785098], [2.337579396333258, 48.87888949367365], [2.337423457493797, 48.87891737973964], [2.337266161734073, 48.87894902000679], [2.337110221173878, 48.87897690655498], [2.336952926407524, 48.87900854641642], [2.336945471287078, 48.879012247256235], [2.336838065877254, 48.8791212227353], [2.336728105266805, 48.87923369225583], [2.336620698934121, 48.87934266841725], [2.336510736034712, 48.87945513680867], [2.336403328790405, 48.879564112753144], [2.336293366317489, 48.87967658092985], [2.336278676783882, 48.879680443969384], [2.336188935492515, 48.87966600762683], [2.336110105950265, 48.87964745342248], [2.3360951030118082, 48.87965012308412], [2.335958586298975, 48.879756802165744], [2.3358359182333652, 48.87985227757027], [2.335713248354525, 48.87994775283327], [2.335576731442817, 48.88005443145822], [2.335454060612669, 48.88014990643813], [2.335317542628667, 48.88025658564718], [2.33528151831886, 48.88028462290714], [2.335253500553791, 48.880296225225976], [2.335253442751205, 48.880308979252646], [2.3351667952026682, 48.880376416667715], [2.335078966201943, 48.880444738694756], [2.335077327301907, 48.880446333103706], [2.335079952624643, 48.880472354607534]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 11, "roussel_fabien": 24.0, "nb_emargement": 1238.0, "nb_procuration": 89.0, "nb_vote_blanc": 13.0, "jadot_yannick": 132.0, "le_pen_marine": 43.0, "nb_exprime": 1222.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1483.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1238, "quartier_bv": "33", "geo_point_2d": [48.87935688827148, 2.337812170924591], "melenchon_jean_luc": 301.0, "poutou_philippe": 3.0, "macron_emmanuel": 530.0}, "geometry": {"type": "Point", "coordinates": [2.337812170924591, 48.87935688827148]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e9c9baf091f0f6e097f99864ef3ed41062a28ef2", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 27, "zemmour_eric": 66.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "19-4", "geo_shape": {"coordinates": [[[2.373890963309799, 48.88094786761049], [2.373862586007402, 48.88096761326571], [2.373724073257931, 48.88103318102939], [2.373578962976177, 48.88110080864829], [2.373440448151859, 48.88116637606877], [2.373295337130674, 48.88123400333566], [2.37326826779806, 48.8812645692277], [2.373288263821604, 48.8812824239632], [2.373395296533074, 48.88137430657892], [2.373512810269767, 48.88147082151994], [2.373619843764706, 48.88156270391918], [2.373737358342557, 48.88165921862327], [2.373844393984395, 48.88175110081317], [2.373961908039988, 48.88184761527323], [2.37406894446521, 48.881939497246634], [2.374186459362072, 48.88203601146973], [2.374188465548292, 48.88203734486859], [2.374335325302334, 48.88211594121665], [2.374481667272775, 48.882194769396065], [2.374628527924057, 48.88227336447396], [2.374774869417139, 48.88235219227658], [2.374921730944063, 48.88243078788286], [2.375068074697661, 48.88250961442366], [2.3752149371110303, 48.88258820965904], [2.375361280376478, 48.88266703672234], [2.375508143687183, 48.88274563068755], [2.375654487838816, 48.88282445738118], [2.375687522644424, 48.882829471627545], [2.375720214126425, 48.88279464835496], [2.375912467882245, 48.88278583540306], [2.376115000052748, 48.882776489342135], [2.376307253685486, 48.88276767485687], [2.376509785714406, 48.882758328127956], [2.3767020405660633, 48.88274951391498], [2.376904572464354, 48.88274016561882], [2.377096825818587, 48.882731350764665], [2.377299357564516, 48.88272200269982], [2.377491610795619, 48.88271318631232], [2.377694143763688, 48.88270383758657], [2.377886396850149, 48.88269502146428], [2.378088928323787, 48.88268567116418], [2.378281181276348, 48.8826768544078], [2.378483713961262, 48.88266750434609], [2.378675966790646, 48.88265868605636], [2.378878497970571, 48.88264933531961], [2.379070750655306, 48.88264051729505], [2.379273283067848, 48.88263116499813], [2.3794655356186523, 48.882622346339545], [2.379668066515468, 48.882612994266815], [2.379860318943045, 48.88260417407488], [2.380062849698187, 48.88259482133421], [2.380255103355356, 48.88258600051524], [2.380457633969017, 48.88257664710659], [2.38064988611798, 48.88256782654577], [2.380852416600643, 48.88255847156988], [2.381044668615638, 48.88254965037501], [2.381247200309553, 48.88254029563745], [2.381439452201358, 48.88253147290923], [2.381460179393687, 48.88253144059946], [2.38146881471859, 48.88252171491949], [2.381467476532619, 48.88246814136655], [2.381468028502746, 48.88238780099904], [2.381464034219118, 48.88238426669068], [2.381438612877728, 48.88238320904526], [2.381249381828303, 48.88239307171669], [2.381057010262578, 48.882403054551524], [2.380867777694643, 48.8824129175119], [2.380675405982461, 48.8824228997334], [2.380486174644286, 48.88243276119823], [2.380293801422118, 48.882442742799356], [2.380284899811335, 48.882441139087916], [2.380273567657847, 48.882435919189064], [2.380112794220935, 48.88236149938927], [2.3799659026735123, 48.88229383776112], [2.379807679447872, 48.88222095600459], [2.37964690732964, 48.88214653646389], [2.379488684997858, 48.88207365427607], [2.3793279138010313, 48.88199923339781], [2.379169692363208, 48.881926350778656], [2.379008922076872, 48.88185192946207], [2.378850701522382, 48.881779047310864], [2.378689932146634, 48.881704625556026], [2.37853171249672, 48.881631742074205], [2.378370944031661, 48.88155731988103], [2.378212725264961, 48.88148443686725], [2.378051957710383, 48.88141001423575], [2.377893739848469, 48.88133712989137], [2.377732973204473, 48.88126270682159], [2.377574756225658, 48.881189822945174], [2.377413989128834, 48.88111539943001], [2.377255774418215, 48.88104251423013], [2.377095008231973, 48.88096809027666], [2.37709463403022, 48.880967911161896], [2.376940007585522, 48.88089105027927], [2.37678904303961, 48.880815988923324], [2.37663441748622, 48.880739128534714], [2.376483453821236, 48.88066406678308], [2.376328829169804, 48.880587205989166], [2.376177866385644, 48.88051214384188], [2.37602324263627, 48.88043528264268], [2.375872280732929, 48.88036022009971], [2.375717656532903, 48.88028335758887], [2.375566696863085, 48.88020829555657], [2.37555251577708, 48.88019421182948], [2.375540845551245, 48.88019384068877], [2.375512773568218, 48.88020595032758], [2.375512278641577, 48.88020617437703], [2.375348486361762, 48.880283287275475], [2.375194462086792, 48.88035630681444], [2.375040437380018, 48.880429326150434], [2.374876643699641, 48.88050643838774], [2.374722618103149, 48.88057945730485], [2.374558822116623, 48.880656569089695], [2.374404795630611, 48.88072958758802], [2.374241000064717, 48.880806698934634], [2.374086972688982, 48.88087971701408], [2.373923174816926, 48.88095682790825], [2.373890963309799, 48.88094786761049]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 4, "roussel_fabien": 28.0, "nb_emargement": 988.0, "nb_procuration": 54.0, "nb_vote_blanc": 7.0, "jadot_yannick": 90.0, "le_pen_marine": 52.0, "nb_exprime": 975.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1325.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 989, "quartier_bv": "76", "geo_point_2d": [48.881739814306336, 2.3764785947885785], "melenchon_jean_luc": 445.0, "poutou_philippe": 2.0, "macron_emmanuel": 229.0}, "geometry": {"type": "Point", "coordinates": [2.3764785947885785, 48.881739814306336]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e891606a98312795a1d8012951b05c0b65d7ef4c", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 51, "zemmour_eric": 106.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "20-23", "geo_shape": {"coordinates": [[[2.404647357834585, 48.87178481754342], [2.404645184565742, 48.87178101244339], [2.404504939090549, 48.871741117332014], [2.40438745123017, 48.87170615302987], [2.404381226692121, 48.87170242399446], [2.404295590700527, 48.87160375996024], [2.404212378981617, 48.87150712422869], [2.404129167581641, 48.871410487531584], [2.404043532547536, 48.87131182329099], [2.404041979895155, 48.87130906899279], [2.404033201874896, 48.87128366045528], [2.40403262049053, 48.871283475895], [2.403996660077345, 48.87116126792508], [2.403961252560084, 48.871042106032114], [2.403925292480968, 48.870919898014066], [2.403889885291039, 48.87080073607393], [2.403853925545985, 48.870678528007716], [2.403818518683384, 48.870559366020466], [2.403782559262097, 48.87043715880539], [2.403747152737111, 48.87031799587175], [2.403711193649878, 48.87019578860854], [2.403675787452211, 48.87007662562771], [2.403639828699027, 48.869954418316375], [2.403604422828674, 48.869835255288464], [2.403592481366573, 48.86982804247045], [2.403369658582642, 48.86981247966207], [2.403152874745165, 48.86979767141573], [2.402930052212183, 48.86978210868784], [2.402713268626075, 48.869767299644934], [2.402693749407677, 48.86976669951133], [2.4026843768610022, 48.8697789511583], [2.402542335423448, 48.86991156968187], [2.402398926500565, 48.8700459178144], [2.402396676323594, 48.870049431076644], [2.402360842608261, 48.870174906446586], [2.402324925681803, 48.87030072762109], [2.402289091610446, 48.87042620384029], [2.402253174337404, 48.870552024964674], [2.4022173412835732, 48.87067750114064], [2.402181423663944, 48.87080332221486], [2.402145588901162, 48.87092879833402], [2.402109670934937, 48.871054619358084], [2.402073835826433, 48.871180095427235], [2.402037917523932, 48.87130591550185], [2.402002082069803, 48.871431391520964], [2.401966163410373, 48.8715572124447], [2.401958901747922, 48.87157341724645], [2.401973779409343, 48.87158151004461], [2.401978359623689, 48.87158226858344], [2.402104100519159, 48.87158825136619], [2.402241402978243, 48.87159441856048], [2.402255287799471, 48.87160397138095], [2.402267814627339, 48.871604625698396], [2.402278124496688, 48.87160850564879], [2.402378868030806, 48.8717052419572], [2.402502714270028, 48.87182317928577], [2.402603457273271, 48.87191991537957], [2.40272730453131, 48.872037852452834], [2.402828049740434, 48.87213458744632], [2.402951898007094, 48.87225252516359], [2.403052642685241, 48.87234925994246], [2.403176491970949, 48.87246719740441], [2.403277238844689, 48.872563931982235], [2.403282622273149, 48.872566942808135], [2.40343688875754, 48.87261501218932], [2.4035950228711522, 48.872663836293434], [2.403749289930706, 48.872711905267785], [2.403907424631302, 48.87276072895486], [2.40392262761122, 48.87277166321379], [2.403937520235237, 48.8727701653391], [2.404103277597961, 48.87281721636256], [2.404262125499966, 48.87286214811115], [2.404427883448621, 48.872909198681214], [2.404586730547749, 48.87295412998853], [2.404595013777731, 48.87295465053484], [2.404637295540012, 48.87294855651452], [2.40469298064446, 48.87294124848793], [2.404699629911104, 48.87294146951691], [2.404723620488576, 48.872951160427625], [2.404733231172494, 48.87294921529891], [2.404900626041422, 48.87298300278771], [2.405063757765916, 48.873011074274714], [2.405084762135083, 48.87300744553616], [2.405090467321291, 48.87299435441937], [2.405045057434962, 48.872875176627105], [2.404999969048097, 48.872755561527136], [2.404954559587282, 48.872636382775454], [2.404909471614941, 48.872516767615544], [2.404864062559089, 48.87239758970304], [2.404818975011542, 48.87227797358392], [2.404773566370919, 48.87215879561133], [2.404728479237888, 48.87203917943221], [2.404683071012489, 48.871920001399516], [2.404637984283688, 48.87180038605976], [2.404647357834585, 48.87178481754342]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 23, "roussel_fabien": 30.0, "nb_emargement": 1276.0, "nb_procuration": 69.0, "nb_vote_blanc": 12.0, "jadot_yannick": 90.0, "le_pen_marine": 71.0, "nb_exprime": 1260.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1616.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1276, "quartier_bv": "78", "geo_point_2d": [48.87140961574054, 2.4034009067758806], "melenchon_jean_luc": 418.0, "poutou_philippe": 7.0, "macron_emmanuel": 416.0}, "geometry": {"type": "Point", "coordinates": [2.4034009067758806, 48.87140961574054]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "aea64824001aa8a517dedd827d6e859e809dcbef", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 36, "zemmour_eric": 55.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "20-1", "geo_shape": {"coordinates": [[[2.402719598978412, 48.86300720285548], [2.402726357158174, 48.86299519709979], [2.402797297666595, 48.86294503780902], [2.40288579062561, 48.86288190761267], [2.402886109523962, 48.86288167537497], [2.403059430176189, 48.86275023697302], [2.403227499182718, 48.86262047997135], [2.403228369058648, 48.86261974594947], [2.403316483741677, 48.86253837398501], [2.403420449154563, 48.862440713845146], [2.403417282244956, 48.86242825746257], [2.403248517703989, 48.862347751452816], [2.403082002610746, 48.86226832843212], [2.402913240469053, 48.86218782194477], [2.4027467263876803, 48.8621083993454], [2.402577963929433, 48.86202789146757], [2.402411450870432, 48.861948468390224], [2.402242690800929, 48.86186796093408], [2.402076178774513, 48.861788536479516], [2.401907419741149, 48.861708028538985], [2.401740907363674, 48.861628604498996], [2.40172345451125, 48.86161889608223], [2.401701913387522, 48.86163213643531], [2.40166226371704, 48.86166593785282], [2.401538853459752, 48.861775617046796], [2.401422559017256, 48.86187475632858], [2.401299147760697, 48.861984435254705], [2.401182852395943, 48.86208357428489], [2.4011824571143, 48.86208392934591], [2.401092960816073, 48.862168468448694], [2.400969548169998, 48.86227814700589], [2.400880052555678, 48.862362685941434], [2.400758213497475, 48.86247318155149], [2.400655964042768, 48.86256591150654], [2.400534124034023, 48.8626764068682], [2.400431873781602, 48.8627691366148], [2.400310032822204, 48.86287963172804], [2.400207780409127, 48.86297236125931], [2.400085939862204, 48.86308285613098], [2.399983686651392, 48.86317558545382], [2.399981613912801, 48.863177077861664], [2.399898119804686, 48.86322503300777], [2.3997810894927882, 48.86329224837962], [2.399737598444242, 48.86328372933063], [2.399719471346335, 48.86331051702857], [2.399701793845201, 48.86333389217897], [2.39970065523062, 48.86333428397665], [2.399684100394498, 48.86335273546491], [2.399607298318294, 48.863454291440505], [2.399512778369132, 48.863575588935845], [2.399418296514738, 48.863700519874975], [2.3993237756786883, 48.86382181719413], [2.399229294287565, 48.86394674796311], [2.39913477256472, 48.86406804510605], [2.399134679861522, 48.864068164252984], [2.399040767839021, 48.86418785365223], [2.398946243866431, 48.864309151512295], [2.398852329613617, 48.86442884073082], [2.398757806138384, 48.864550137523224], [2.398663891018213, 48.864669826567855], [2.398569366656706, 48.8647911240843], [2.398539669568632, 48.864803380346224], [2.39855816990018, 48.864810127537176], [2.398500446240623, 48.86488369126848], [2.398478515562919, 48.86491123755899], [2.3984712624924622, 48.86491594152737], [2.3984658793790232, 48.86493093974898], [2.398429686927626, 48.86497706486507], [2.398356548979579, 48.86507064769351], [2.398262633362272, 48.865190336373836], [2.398207733463245, 48.86526058298477], [2.398200059579208, 48.865277282015114], [2.398247305937341, 48.86529089545716], [2.398380214739691, 48.86530835700824], [2.398501043081168, 48.865325370981964], [2.398506531398867, 48.865325348201786], [2.398648012455018, 48.86530556230559], [2.398800256857792, 48.86528459461689], [2.3988147949277723, 48.865288842380494], [2.398902392934564, 48.86538720968573], [2.399010484663924, 48.86551018143892], [2.399098083412403, 48.86560854858127], [2.399206174699943, 48.865731520126296], [2.399293774190014, 48.86582988710575], [2.399333761581784, 48.86587537943159], [2.399355427108769, 48.86589458923271], [2.399380502056085, 48.86588576754281], [2.399469801786045, 48.86577733442204], [2.399575481591291, 48.865650036116065], [2.39966478052159, 48.86554160192746], [2.399770459372191, 48.86541430342217], [2.399859758845413, 48.865305869971166], [2.399965436741275, 48.865178571266576], [2.400054734041497, 48.86507013764014], [2.400160410982839, 48.86494283873634], [2.400249707483523, 48.86483440404207], [2.400236853149146, 48.864821136412694], [2.400044620323015, 48.86482931471359], [2.399853866171723, 48.864837516308924], [2.399661633225031, 48.86484569399457], [2.399470877590388, 48.864853894972526], [2.399278644523042, 48.864862072042904], [2.399087890131229, 48.86487027241714], [2.399074303125857, 48.8648580325265], [2.399116697269647, 48.86478625678923], [2.399147833237737, 48.86473409218674], [2.399153515623991, 48.86472964739569], [2.399302022313628, 48.86467080346922], [2.399457288629493, 48.86460922420683], [2.399605794632831, 48.86455037989702], [2.399761061593694, 48.8644888002407], [2.399909565537198, 48.864429956440006], [2.400064831780086, 48.864368376382885], [2.400213336410623, 48.86430953130645], [2.400368600572464, 48.864247950841715], [2.400364545554341, 48.864231465396536], [2.400112694862002, 48.86419439963218], [2.399886039763767, 48.86416130076018], [2.3998754615459412, 48.86415364289197], [2.3998671146156783, 48.864114640695504], [2.399856851331176, 48.86406083203281], [2.399863498049586, 48.864051944801275], [2.39999597641593, 48.86400086006987], [2.400118005548022, 48.86395338583104], [2.400240033094652, 48.86390591145894], [2.400372512083383, 48.86385482631078], [2.400388723309227, 48.863856036205206], [2.400439204601779, 48.86388732986487], [2.400490244802651, 48.86392016597344], [2.400506553845752, 48.86392152473296], [2.400658973830871, 48.86386414124405], [2.400832871011054, 48.86379819633828], [2.400985288902525, 48.8637408133199], [2.40115918662105, 48.86367486793947], [2.401340796086498, 48.863606574029454], [2.401514692906932, 48.86354062812446], [2.401696301438392, 48.863472333666735], [2.401870197360735, 48.86340638723721], [2.402051804947888, 48.863338093131], [2.402225699972143, 48.86327214617698], [2.402227673288558, 48.863271235107916], [2.402351608809528, 48.86320328380444], [2.402465126684798, 48.863140371528026], [2.402578644286007, 48.863077459140406], [2.402702577525193, 48.86300950745477], [2.402719598978412, 48.86300720285548]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 1, "roussel_fabien": 37.0, "nb_emargement": 1137.0, "nb_procuration": 61.0, "nb_vote_blanc": 14.0, "jadot_yannick": 111.0, "le_pen_marine": 41.0, "nb_exprime": 1119.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1419.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "79", "geo_point_2d": [48.86346390851652, 2.4007725185130706], "melenchon_jean_luc": 466.0, "poutou_philippe": 5.0, "macron_emmanuel": 301.0}, "geometry": {"type": "Point", "coordinates": [2.4007725185130706, 48.86346390851652]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1db6a22d41ec1ba87ade95835d4d4930191da8a7", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 27, "zemmour_eric": 46.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "18-13", "geo_shape": {"coordinates": [[[2.352552385821931, 48.897857557880535], [2.352485240241187, 48.89785531618784], [2.352301611016839, 48.89780657485095], [2.352118202377467, 48.897756795709945], [2.3519345738555453, 48.89770805290663], [2.351751165914207, 48.89765827319906], [2.351567538072228, 48.89760953072788], [2.351384130828924, 48.897559750453716], [2.35120050231415, 48.897511007407964], [2.351017097132817, 48.89746122657467], [2.350833469309188, 48.897412482961784], [2.350650064825894, 48.897362701561924], [2.350466437693413, 48.897313957381925], [2.3502830339080623, 48.89726417541547], [2.350099407477961, 48.89721542976907], [2.349916004390761, 48.89716564723614], [2.349732378640594, 48.8971169019218], [2.349548976251445, 48.89706711882231], [2.34936535119244, 48.89701837294085], [2.349181949501346, 48.89696858927482], [2.348998325133505, 48.89691984282625], [2.34881492414047, 48.896870058593684], [2.348631300463798, 48.89682131157794], [2.348447900168827, 48.89677152677884], [2.348264277194484, 48.8967227782968], [2.3480808775863222, 48.89667299383038], [2.347897255303265, 48.89662424478118], [2.347713856404434, 48.896574458848995], [2.347530234801297, 48.89652571013194], [2.347346836600541, 48.896475923633254], [2.347163215688589, 48.89642717434907], [2.346979818185913, 48.896377387283835], [2.34679619796515, 48.89632863743254], [2.346649873069846, 48.896288913992464], [2.346643495145639, 48.89628543570307], [2.346606423239959, 48.89627537150942], [2.346512406270886, 48.896178973085036], [2.34642330709993, 48.896094063242685], [2.346408064775815, 48.89609058692375], [2.346360024429815, 48.89610037282312], [2.346317140852941, 48.89610725506956], [2.34627487246916, 48.89610924476351], [2.346267392789151, 48.89611769261018], [2.346302214341029, 48.89618378032383], [2.346363990027421, 48.896299357197705], [2.346428066321967, 48.89642096482584], [2.346489843933087, 48.89653654161721], [2.346553919449708, 48.89665814914422], [2.34661569762166, 48.8967737258456], [2.34667977508798, 48.89689533328638], [2.346741552456855, 48.89701090989041], [2.346805630509172, 48.89713251723747], [2.346867408438889, 48.89724809375156], [2.346931487088288, 48.89736970010568], [2.346993265567574, 48.89748527742901], [2.347057344802983, 48.89760688368948], [2.347119125206964, 48.89772246093028], [2.34709951439191, 48.897733265445936], [2.346911757205736, 48.897662808945874], [2.346776347396964, 48.89760405722304], [2.346769986128919, 48.897602607898285], [2.346580292790127, 48.897592154511194], [2.346374395233645, 48.89757995584094], [2.346184702056718, 48.89756950182705], [2.345978804682521, 48.89755730247645], [2.345789111667675, 48.89754684783577], [2.34558321447567, 48.89753464780481], [2.345393521622812, 48.89752419253734], [2.3451876246018, 48.89751199272528], [2.344997931910937, 48.89750153683101], [2.344792035083647, 48.89748933543933], [2.344602342554689, 48.89747887891828], [2.344396445909724, 48.897466676846264], [2.344270315549103, 48.89745972344905], [2.344255910956805, 48.89746573746129], [2.34425397779003, 48.89748883306823], [2.344236533905734, 48.89759687610808], [2.344218019066588, 48.89770319737133], [2.344199502787879, 48.897809518613954], [2.34418205868308, 48.89791756161422], [2.344146651247215, 48.89794141008918], [2.344152968355351, 48.89795589043175], [2.344151263056724, 48.89802997141918], [2.344149987861784, 48.898156096493445], [2.344148725124864, 48.89821096326461], [2.344145757057137, 48.898339911898645], [2.344144481852697, 48.89846603603787], [2.344141515123979, 48.89859498464926], [2.344140238539051, 48.898721108751545], [2.344137271785185, 48.89885005733275], [2.344135995183723, 48.89897618140561], [2.344133028404912, 48.89910512995663], [2.344131751786914, 48.899231254000036], [2.344128784982956, 48.899360202520896], [2.344127508348421, 48.89948632653485], [2.344124541519518, 48.89961527502551], [2.344123266232439, 48.899741399017515], [2.344120298014396, 48.899870347470504], [2.344119022710787, 48.899996471433035], [2.344116054467791, 48.900125419855904], [2.344114779147654, 48.900251543788954], [2.344111812243509, 48.90038049218909], [2.344110535542834, 48.90050661608519], [2.344107568613742, 48.90063556445514], [2.344106291896531, 48.9007616883218], [2.344103324942289, 48.900890636661586], [2.34410204820854, 48.90101676049877], [2.344100772821303, 48.9011428852281], [2.344097804479064, 48.90127183261605], [2.344094853165469, 48.901292138284866], [2.344134851855156, 48.90130336045149], [2.344199605784444, 48.901304662010034], [2.344402602150609, 48.90130844161879], [2.34453869834251, 48.901311177593335], [2.344674795901529, 48.90131391431996], [2.344877792349585, 48.901317692224076], [2.344979157750061, 48.901319730506295], [2.345182154242882, 48.90132350789458], [2.345370281987947, 48.90132728910562], [2.345558408385102, 48.901331070912946], [2.3457614049640663, 48.901334847319454], [2.345949532792278, 48.90133862762062], [2.3461525294290793, 48.901342403364175], [2.34634065593767, 48.90134618394277], [2.346543653996334, 48.901349959030846], [2.346708930324134, 48.90135342370424], [2.346911927062519, 48.90135719905995], [2.347077203437812, 48.90136066322516], [2.347280200231131, 48.90136443795663], [2.347491860371923, 48.90136887377459], [2.34769485723859, 48.90137264690398], [2.347906517436821, 48.90137708288836], [2.34810951436555, 48.90138085531493], [2.348140640522304, 48.90138150675943], [2.348169322833382, 48.901382108023604], [2.348355031027633, 48.90138599817922], [2.34855802801237, 48.9013897707449], [2.348743736263001, 48.901393660297785], [2.348946733316926, 48.901397431305355], [2.349132440248747, 48.90140132114737], [2.349335438724735, 48.90140509150355], [2.349521145712822, 48.90140898074286], [2.349724142882894, 48.90141275043278], [2.349909851291375, 48.901416639076785], [2.350112848519453, 48.90142040810789], [2.350298556995508, 48.90142429524991], [2.350501554270361, 48.90142806452145], [2.350687262802751, 48.901431951060765], [2.350890260135597, 48.90143571967346], [2.35108281474775, 48.901439748821396], [2.351285812150842, 48.90144351586442], [2.35147836818648, 48.90144754438381], [2.351554364352948, 48.901448928917205], [2.351757361825853, 48.901452695160984], [2.351911840420204, 48.901455506956225], [2.351963078761914, 48.90144982444414], [2.351966197051109, 48.90142857072759], [2.35199244128514, 48.90129606741029], [2.352019362604192, 48.90116428089179], [2.352045606569766, 48.90103177753081], [2.352072527617554, 48.900899990968476], [2.352099448540333, 48.90076820348494], [2.352125693455115, 48.900635700965076], [2.352152614106531, 48.90050391343772], [2.352178857388847, 48.90037141086679], [2.352205777757818, 48.900239624194896], [2.352232020782781, 48.90010712068104], [2.352258940880501, 48.899975333965365], [2.3522851849896282, 48.89984283131446], [2.35231210482739, 48.899711043655735], [2.352338347303981, 48.89957854095378], [2.352338427402205, 48.89957802338084], [2.352351667232119, 48.899456952598555], [2.352368249908312, 48.89933273248641], [2.352381489595302, 48.8992116625729], [2.352398072122203, 48.89908744242878], [2.352411311688646, 48.898966371585594], [2.352427894055071, 48.898842152308696], [2.352441133489781, 48.89872108143506], [2.352457715718105, 48.89859686122698], [2.352470955009898, 48.89847579122216], [2.352487537088937, 48.898351570982086], [2.3524875638767, 48.89835139126349], [2.352500803047739, 48.89823032032896], [2.3525191603217612, 48.89811854181707], [2.3525323993490233, 48.897997471752575], [2.352550757837045, 48.897885693219386], [2.352552385821931, 48.897857557880535]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 13, "roussel_fabien": 12.0, "nb_emargement": 865.0, "nb_procuration": 28.0, "nb_vote_blanc": 11.0, "jadot_yannick": 31.0, "le_pen_marine": 54.0, "nb_exprime": 844.0, "nb_vote_nul": 10.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1231.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 865, "quartier_bv": "70", "geo_point_2d": [48.89925108768749, 2.348221887704972], "melenchon_jean_luc": 472.0, "poutou_philippe": 7.0, "macron_emmanuel": 167.0}, "geometry": {"type": "Point", "coordinates": [2.348221887704972, 48.89925108768749]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "67d42f00dd703868f1980303fa207d253d305018", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 75, "zemmour_eric": 88.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "12-64", "geo_shape": {"coordinates": [[[2.403061919049621, 48.83606820363894], [2.403039670703315, 48.83607800718422], [2.403007812794517, 48.83611903182197], [2.402966209126863, 48.836167596631476], [2.402930936995515, 48.83621301827829], [2.402927661024323, 48.836238063576566], [2.402973394321914, 48.836252291339235], [2.403125270613682, 48.83636762185063], [2.403269668603743, 48.83647814012916], [2.403421544836542, 48.83659347113356], [2.4035659440804222, 48.836703989032124], [2.40356910711803, 48.83670843506421], [2.403602886947506, 48.836844501673895], [2.403636573041127, 48.83698722846707], [2.403670353227388, 48.837123295023794], [2.403704041058566, 48.83726602086988], [2.403737821591335, 48.83740208827297], [2.403771508425065, 48.837544814057665], [2.403805289314732, 48.83768088140769], [2.403838977875656, 48.83782360714461], [2.403839002577568, 48.83782371069433], [2.403872783834359, 48.83795977709207], [2.403904336222513, 48.83808393830014], [2.403938117818507, 48.83822000464778], [2.403969671882106, 48.83834416581651], [2.40400345381731, 48.838480232113994], [2.404035006842062, 48.83860439233048], [2.404068789106196, 48.83874045947712], [2.404100343806415, 48.83886461965428], [2.404131897284377, 48.838988780701854], [2.404165680060856, 48.839124846874995], [2.404152457589764, 48.83915247322495], [2.4041700502546712, 48.839165660941795], [2.404314291491355, 48.83917834621338], [2.40438622363841, 48.8391890227632], [2.404400350616657, 48.83918393617], [2.404492983771789, 48.83905392981903], [2.40458824906089, 48.83892306050767], [2.404680881283736, 48.838793053980794], [2.40477614562427, 48.83866218448926], [2.4048687769148422, 48.838532177786554], [2.404964040306824, 48.83840130811481], [2.405056670665036, 48.83827130123624], [2.405151933108478, 48.838140431384325], [2.4051698464373272, 48.83813613787648], [2.405349351347428, 48.83818994879363], [2.405554646100002, 48.83825297834608], [2.405734153172022, 48.83830678868697], [2.405901281301012, 48.83835809910531], [2.4059339254872922, 48.838350810924766], [2.405926282192487, 48.83831327320468], [2.405918284060719, 48.838273996154804], [2.405901167350355, 48.83827067704102], [2.405811542569313, 48.83815944766174], [2.40572244342267, 48.838049589641734], [2.405632820765543, 48.837938360113355], [2.405543722383754, 48.837828501039176], [2.405454100488144, 48.83771727135488], [2.405365002850688, 48.83760741302517], [2.405275381716586, 48.837496183184975], [2.405186284843972, 48.837386323801105], [2.405096664461106, 48.83727509470432], [2.405007568343064, 48.837165235165614], [2.404917947369593, 48.83705400500684], [2.404828853358207, 48.836944146219416], [2.404739233146224, 48.83683291590473], [2.404650139899657, 48.83672305606313], [2.404560520449153, 48.836611825592605], [2.404471427946854, 48.83650196649548], [2.40438180925782, 48.83639073586904], [2.404292717510049, 48.8362808766171], [2.404203099582475, 48.836169645834815], [2.404114007237176, 48.83605978552197], [2.404101220859168, 48.83605505142974], [2.403938750195805, 48.83606117689641], [2.403771066504635, 48.83606567798931], [2.403608595779645, 48.83607180210818], [2.403440912015395, 48.83607630363751], [2.403278441218499, 48.836082427307915], [2.403110756039523, 48.836086927468244], [2.403061919049621, 48.83606820363894]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 64, "roussel_fabien": 20.0, "nb_emargement": 1098.0, "nb_procuration": 46.0, "nb_vote_blanc": 12.0, "jadot_yannick": 114.0, "le_pen_marine": 66.0, "nb_exprime": 1084.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1287.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1098, "quartier_bv": "45", "geo_point_2d": [48.83749199577141, 2.404371533983016], "melenchon_jean_luc": 284.0, "poutou_philippe": 3.0, "macron_emmanuel": 384.0}, "geometry": {"type": "Point", "coordinates": [2.404371533983016, 48.83749199577141]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d8a44508d3bf17d30bab3217362a3476122c397c", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 165, "zemmour_eric": 149.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-49", "geo_shape": {"coordinates": [[[2.308211270074663, 48.88698784293448], [2.3082122527835702, 48.886986344032024], [2.308239273906856, 48.88696672836335], [2.308365022235486, 48.88687227593511], [2.30849673693677, 48.88677665452258], [2.308622484327464, 48.88668220270687], [2.308754199438737, 48.886586581002504], [2.308879945903445, 48.886492128900066], [2.309011658709568, 48.88639650598878], [2.309137404248299, 48.88630205359966], [2.3092691160889522, 48.88620643128785], [2.309394860701714, 48.88611197861199], [2.309526572964288, 48.88601635510906], [2.30956419460014, 48.88598809563237], [2.309569795727632, 48.88598076420599], [2.309525947078378, 48.88595515829579], [2.309363955121526, 48.88590344505663], [2.3092004154020103, 48.88585123882375], [2.309038424079676, 48.885799526038525], [2.308874886388432, 48.885747318464695], [2.308712894349128, 48.88569560522629], [2.308549357298671, 48.8856433981022], [2.308387367281473, 48.88559168352712], [2.308223830883737, 48.88553947595343], [2.308061840137534, 48.88548776182443], [2.307898304392417, 48.88543555380119], [2.307891771952289, 48.885429013870194], [2.307874491725078, 48.88542795169475], [2.307708812195846, 48.88537505831478], [2.307553436930335, 48.8853254546958], [2.307398061960728, 48.885275850873], [2.307232383387378, 48.88522295772573], [2.307222232187715, 48.885214751039825], [2.307203004706762, 48.88521758329952], [2.306997908041215, 48.88522010971311], [2.306793562868989, 48.88522262663647], [2.3065884661756932, 48.88522515144941], [2.306384120963898, 48.88522766767393], [2.306179025582422, 48.885230192692724], [2.305974680331063, 48.885232708218496], [2.305968468060745, 48.88523378198455], [2.305801301184562, 48.88529315806358], [2.305637285329801, 48.88535141542624], [2.305473269108059, 48.88540967256108], [2.305306101090614, 48.885469048838495], [2.305142082764251, 48.88552730550558], [2.304974915355172, 48.88558668132215], [2.304967786537628, 48.88559389125506], [2.304952383794702, 48.88572260688168], [2.3049367935987872, 48.885852896133684], [2.304921390702642, 48.885981611726], [2.304905800351741, 48.886111900943305], [2.304890397302376, 48.88624061650127], [2.304874805444754, 48.88637090477663], [2.304859403593696, 48.886499621207456], [2.304843811580974, 48.88662990944811], [2.304828408225159, 48.88675862493742], [2.304812817408977, 48.88688891405047], [2.304797413899934, 48.88701762950544], [2.304781822928655, 48.88714791858376], [2.30476360127625, 48.887160742461894], [2.304767302294113, 48.88717035621475], [2.304773618618211, 48.88717468449675], [2.30478664220217, 48.88717898337359], [2.304790120193668, 48.88717976620026], [2.304974766498579, 48.887203659577374], [2.3051599398353693, 48.8872276204785], [2.305344586491552, 48.88725151238498], [2.305529760168677, 48.88727547271317], [2.305714407152332, 48.88729936494758], [2.30589957980613, 48.887323324694854], [2.306084228492705, 48.887347216365846], [2.306269401486825, 48.88737117554019], [2.3064540491491963, 48.887395066631946], [2.3066392238471938, 48.88741902524117], [2.306823871848913, 48.887442915761596], [2.307009045523658, 48.88746687379001], [2.307193695240245, 48.887490762847726], [2.307378869243328, 48.88751472120237], [2.307443241708042, 48.88755208030993], [2.307462854672361, 48.88753837464116], [2.307563853114153, 48.887462948261536], [2.307695570792564, 48.88736732688248], [2.307826462598023, 48.887269575460834], [2.307958180656871, 48.8871739546832], [2.308089071495136, 48.88707620205799], [2.30819376606958, 48.887000197530355], [2.308211270074663, 48.88698784293448]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 49, "roussel_fabien": 7.0, "nb_emargement": 1182.0, "nb_procuration": 65.0, "nb_vote_blanc": 11.0, "jadot_yannick": 50.0, "le_pen_marine": 57.0, "nb_exprime": 1167.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1395.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1182, "quartier_bv": "66", "geo_point_2d": [48.88631988449243, 2.306837732494185], "melenchon_jean_luc": 123.0, "poutou_philippe": 1.0, "macron_emmanuel": 588.0}, "geometry": {"type": "Point", "coordinates": [2.306837732494185, 48.88631988449243]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3193a5d18abe586a7e80f165141325e996649f0f", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 45, "zemmour_eric": 85.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "12-9", "geo_shape": {"coordinates": [[[2.391982229045942, 48.84280618886307], [2.392001870789693, 48.84277812527291], [2.392117198008048, 48.84269228027824], [2.392243038151279, 48.842584485763275], [2.392367263904331, 48.842478145265794], [2.392493103013451, 48.842370350467135], [2.392617327735322, 48.84226401058884], [2.392743165820721, 48.84215621460717], [2.392867389522009, 48.842049874448854], [2.3929932265732132, 48.841942078183386], [2.393117449254027, 48.84183573774501], [2.393243285260477, 48.84172794209516], [2.393367506931196, 48.841621600477396], [2.393493340541, 48.84151380453695], [2.393617561191165, 48.84140746263917], [2.393743395129285, 48.841299666421904], [2.393742675612691, 48.84129826966713], [2.393698585943675, 48.841283369561815], [2.393549000700137, 48.841176262018635], [2.39339706936385, 48.84107118302612], [2.393383848019464, 48.84106867781662], [2.393206484898213, 48.84109851030895], [2.393026541016382, 48.84112822062135], [2.392849177488103, 48.84115805258232], [2.392669233196931, 48.84118776235562], [2.392491867899063, 48.84121759377834], [2.3923119245507403, 48.84124730391883], [2.392134558856136, 48.84127713391087], [2.391954613736113, 48.84130684350542], [2.391937821674463, 48.84129939419259], [2.391908895297628, 48.84116614187716], [2.3918834772845132, 48.84103886833211], [2.39185455255366, 48.84090561597937], [2.3918291347897, 48.840778343292364], [2.391800210352951, 48.84064508999612], [2.391774791486288, 48.84051781726095], [2.391768095308219, 48.840496872181205], [2.391752397773864, 48.840491745153564], [2.391626756401004, 48.84051830560308], [2.391426760308548, 48.840561661860804], [2.391239256544186, 48.840601299546755], [2.391039258458996, 48.84064465424721], [2.390851754101284, 48.84068429132282], [2.390651756727358, 48.84072764627843], [2.390464251776401, 48.84076728274373], [2.3902642537721173, 48.84081063614896], [2.39007674686557, 48.84085027199697], [2.389876748220525, 48.840893624751146], [2.389689242083102, 48.840933259995786], [2.38948924278687, 48.840976612998205], [2.389301734693761, 48.84101624762556], [2.389301543457328, 48.84101628891918], [2.389285745992529, 48.84102272053874], [2.38928825461698, 48.841046422498096], [2.389334326838255, 48.84113492002137], [2.38941278261952, 48.84128991872243], [2.3894588552569402, 48.841378417077756], [2.389475002661369, 48.84138422571487], [2.389627177837017, 48.84135945684094], [2.389788352610041, 48.8413393213169], [2.389803620484474, 48.841344959041635], [2.389862936735404, 48.84144784889337], [2.389912856885446, 48.84153796124545], [2.389962777197577, 48.841628074468794], [2.390022094095425, 48.8417309633162], [2.390014075628965, 48.84174259971649], [2.38987562737818, 48.84177630677725], [2.389738377285913, 48.841809956834716], [2.389599928667476, 48.84184366447368], [2.389462676867886, 48.8418773133066], [2.389454509566895, 48.841888615246596], [2.389520272099084, 48.84201743247919], [2.389580853573392, 48.842139469032546], [2.389646616734264, 48.84226828616674], [2.3897071987959873, 48.84239032262866], [2.389767781130883, 48.84251235994585], [2.389833545234901, 48.84264117603497], [2.389838599714097, 48.84264565184376], [2.389983319777733, 48.842713079163374], [2.390157295272644, 48.842794412036994], [2.390302016151125, 48.842861839861456], [2.390475991287944, 48.8429431713545], [2.390620714354311, 48.84301059879136], [2.390794690474511, 48.84309193070941], [2.3909394130142543, 48.84315935684549], [2.391113390128353, 48.843240688289214], [2.391258114855988, 48.843308114037704], [2.391276122076272, 48.84330676669327], [2.391386092686341, 48.84322570314555], [2.391501421909337, 48.84313985877892], [2.391611391816807, 48.84305879501197], [2.3917267202888812, 48.84297295131463], [2.3918366881312503, 48.84289188732153], [2.391952017235913, 48.84280604250177], [2.391982229045942, 48.84280618886307]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 9, "roussel_fabien": 21.0, "nb_emargement": 1068.0, "nb_procuration": 39.0, "nb_vote_blanc": 15.0, "jadot_yannick": 79.0, "le_pen_marine": 86.0, "nb_exprime": 1051.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1446.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1068, "quartier_bv": "46", "geo_point_2d": [48.841819283031846, 2.39126656267054], "melenchon_jean_luc": 436.0, "poutou_philippe": 7.0, "macron_emmanuel": 248.0}, "geometry": {"type": "Point", "coordinates": [2.39126656267054, 48.841819283031846]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a07a9e3a139de67777287fb6a1568b8336ca6d88", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 24, "zemmour_eric": 42.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "11-31", "geo_shape": {"coordinates": [[[2.378360102696906, 48.87080356918667], [2.378292382851363, 48.87077370031765], [2.378093036726994, 48.870713797714814], [2.377884476004223, 48.87065222807476], [2.377685130813814, 48.87059232478601], [2.377476571059547, 48.870530754428486], [2.377470207314194, 48.87051819805586], [2.3775575262696282, 48.87041391351113], [2.377643878719981, 48.870310507018985], [2.377731196979674, 48.870206222328015], [2.377817548751608, 48.87010281479184], [2.377904866304727, 48.86999853085385], [2.377991217387708, 48.869895123172995], [2.37807853561885, 48.869790838196494], [2.378164884638838, 48.86968743126312], [2.378160627207763, 48.869675663788215], [2.377967455519702, 48.86958871029967], [2.377777555701871, 48.86950294893322], [2.377584383930542, 48.869415994805756], [2.377394486736127, 48.86933023282527], [2.377385111843259, 48.86932051706962], [2.377369178665469, 48.86932000969985], [2.377220821326223, 48.869263951926264], [2.377072459555106, 48.8692077212682], [2.376924101491881, 48.86915166311399], [2.376775740350114, 48.86909543298172], [2.376627384289093, 48.869039374461174], [2.376479023798289, 48.868983143056106], [2.376460770224278, 48.8689860733408], [2.376342884069071, 48.869106909465906], [2.37622518819872, 48.8692275198229], [2.376107300950725, 48.869348355689596], [2.375989605341714, 48.86946896669498], [2.375871717011592, 48.869589801403976], [2.375754020311582, 48.86971041215133], [2.375636130888553, 48.86983124660193], [2.375518433097531, 48.86995185709132], [2.375501257170384, 48.869955154385536], [2.375401200758576, 48.869924687039536], [2.375206487757444, 48.869866063699014], [2.3750367221152002, 48.86981490799944], [2.374842008560501, 48.869756284952395], [2.374672245007973, 48.869705127838635], [2.374477532273914, 48.86964650419279], [2.374307768063095, 48.869595347449206], [2.374113057523485, 48.869536722312525], [2.373943294028383, 48.86948556504691], [2.373926227696067, 48.8694888222192], [2.373829014490137, 48.86958681555756], [2.373729016924143, 48.86968720626763], [2.373631804340201, 48.86978519943535], [2.373531806013407, 48.86988558996269], [2.373434592688243, 48.86998358295264], [2.373334593600437, 48.87008397329718], [2.373237379523224, 48.870181967008634], [2.3731373796853212, 48.87028235627112], [2.373040163503641, 48.87038034979766], [2.372955691680528, 48.87046515016325], [2.372937509365534, 48.870475690481896], [2.372938041940238, 48.8704808257939], [2.372922513143743, 48.87049641540479], [2.37291746907202, 48.87050104934847], [2.372909581831252, 48.870538921417534], [2.372918566836583, 48.87056251405653], [2.373077401144214, 48.870620081709184], [2.3732596771074093, 48.87068800815439], [2.373418512185498, 48.87074557444858], [2.373600789021726, 48.87081350126587], [2.373601527193038, 48.870813789319605], [2.373758734533771, 48.87087957916981], [2.373941012282581, 48.87094750546077], [2.374098219092402, 48.87101329485004], [2.374211109361093, 48.87106443866258], [2.374212365707602, 48.871064944363155], [2.374375357462362, 48.871127350636755], [2.374543115902853, 48.87118690461052], [2.374717483832439, 48.8712494301065], [2.37488524304656, 48.8713089844935], [2.37505961315863, 48.87137150949132], [2.375227371804617, 48.87143106248582], [2.375401742736018, 48.87149358697837], [2.375569503518798, 48.87155314039318], [2.37574387390638, 48.87161566437331], [2.375911635484162, 48.871675216402764], [2.37608600669107, 48.87173773987761], [2.376253769042402, 48.87179729232023], [2.376428142431907, 48.87185981529684], [2.376595904215065, 48.871919366347015], [2.376763667734424, 48.87197891806524], [2.376938042343983, 48.872041440288804], [2.376979976833088, 48.87206026672861], [2.376999173102074, 48.872056573240656], [2.377026212960931, 48.872051369216585], [2.37704463279804, 48.87202824061917], [2.377155424330969, 48.87191875457836], [2.377276137489936, 48.87179936348892], [2.377386928049446, 48.87168987721109], [2.377507638784123, 48.871570485856374], [2.3776184297226353, 48.87146100024799], [2.377739139407144, 48.8713416077358], [2.377849928009008, 48.87123212188337], [2.377970637995658, 48.87111272912004], [2.377971594113233, 48.871111893208585], [2.378097822318264, 48.87101270111452], [2.378263759797075, 48.87088396957148], [2.378350514573967, 48.870815795343795], [2.378360102696906, 48.87080356918667]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 31, "roussel_fabien": 22.0, "nb_emargement": 1416.0, "nb_procuration": 70.0, "nb_vote_blanc": 27.0, "jadot_yannick": 108.0, "le_pen_marine": 62.0, "nb_exprime": 1380.0, "nb_vote_nul": 10.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1917.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1417, "quartier_bv": "41", "geo_point_2d": [48.87050526949638, 2.3759189654015604], "melenchon_jean_luc": 733.0, "poutou_philippe": 11.0, "macron_emmanuel": 314.0}, "geometry": {"type": "Point", "coordinates": [2.3759189654015604, 48.87050526949638]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4f68d4731ee936d614fb10ca28f3bbe58540e02b", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 68, "zemmour_eric": 110.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "11-46", "geo_shape": {"coordinates": [[[2.396078257105748, 48.854373273781135], [2.3960234583430813, 48.854345695654565], [2.395856289917289, 48.85430472548509], [2.39569570001825, 48.854265542033936], [2.395535111723538, 48.85422635837277], [2.395367944064474, 48.854185387516665], [2.395207354900557, 48.85414620340587], [2.395040189129597, 48.85410523119654], [2.394879600448637, 48.85406604754237], [2.394712433829843, 48.85402507486532], [2.394694823532912, 48.854030541062485], [2.394675146590212, 48.85406772944608], [2.394656380101965, 48.85410408873453], [2.394639076099592, 48.85410969946934], [2.394468774769928, 48.85407132230482], [2.394260107620056, 48.85402452523036], [2.394089806847879, 48.85398614752351], [2.3938811403795492, 48.85393934978462], [2.393710841527559, 48.85390097154234], [2.393502174367408, 48.85385417403141], [2.393331876083483, 48.85381579434757], [2.393123209604676, 48.853768996172164], [2.392952911867781, 48.85373061684534], [2.392928659206662, 48.85372564990379], [2.392922765620172, 48.85372827668181], [2.392884710795037, 48.85382535637447], [2.3928352832422912, 48.85395187161182], [2.392783056931841, 48.85408510154599], [2.3927336302486992, 48.8542116167187], [2.392681403407414, 48.854344847476675], [2.392631976231073, 48.854471362577826], [2.392579748869627, 48.854604593260255], [2.392530319837259, 48.85473110828292], [2.39247809195554, 48.85486433888989], [2.392428663792774, 48.854990853847895], [2.392376435401264, 48.855124083480014], [2.392327005382445, 48.85525059835953], [2.392274777822997, 48.85538382882238], [2.392225347310942, 48.855510343630336], [2.392219801017638, 48.855515541573155], [2.3920584047166003, 48.85558778385804], [2.391896112831688, 48.855660351432334], [2.391734715622825, 48.855732594170526], [2.391572422835973, 48.85580516129637], [2.391567338829825, 48.85580939475927], [2.391496398021677, 48.855931834628045], [2.3914251075858273, 48.856054307739406], [2.391354167472763, 48.85617674750378], [2.391282876367507, 48.85629922050339], [2.391211934234517, 48.85642165925024], [2.391140642449234, 48.85654413303738], [2.391069701011426, 48.85666657167985], [2.390998408567329, 48.85678904445596], [2.390927465088346, 48.85691148387944], [2.390856171974813, 48.85703395654379], [2.390785229191104, 48.85715639586285], [2.3907139354080282, 48.85727886841548], [2.390642990593725, 48.857401307616264], [2.390571696141296, 48.8575237800571], [2.39050075202206, 48.857646219153494], [2.390429456900171, 48.85776869148258], [2.390358510760933, 48.85789112956143], [2.390287214959049, 48.858013602678014], [2.390280571301707, 48.85801842709762], [2.390124078991526, 48.85806892836389], [2.389938489297164, 48.85812994733811], [2.389907580871681, 48.8581243981793], [2.389893063110637, 48.8581456512655], [2.389892142413988, 48.85815036634177], [2.389907769883919, 48.858243510387226], [2.389931010432397, 48.858352763654516], [2.389961563355468, 48.85838822145255], [2.389963717976987, 48.858388125414216], [2.389993540416295, 48.858378994387095], [2.3901840458278443, 48.858322282175315], [2.390371585125664, 48.8582648602535], [2.390562089708509, 48.85820814743407], [2.390749626815965, 48.85815072490695], [2.39094013193281, 48.85809401148682], [2.391127668223421, 48.85803658746209], [2.391318171148545, 48.857979873427354], [2.391505707964087, 48.8579224497105], [2.391693243003253, 48.85786502568984], [2.391883744685474, 48.85780831074597], [2.392071280270669, 48.85775088523462], [2.392261781124068, 48.85769416968314], [2.39226440347819, 48.8576931154767], [2.39241907157752, 48.85761386802162], [2.392573395176645, 48.85753396748764], [2.392728063696577, 48.85745471962877], [2.392882386350491, 48.857374818684846], [2.393037053938405, 48.85729556951598], [2.393191375636636, 48.85721566906139], [2.393346040919273, 48.85713641947488], [2.393500363035189, 48.857056518617284], [2.39365502737544, 48.85697726862005], [2.393809348546156, 48.85689736735253], [2.393964011944027, 48.85681811694459], [2.394118332180007, 48.85673821436787], [2.394272994625142, 48.8566589644485], [2.394427313915824, 48.85657906146186], [2.394514220855114, 48.85655618835677], [2.394501390234711, 48.856525582495514], [2.394588172929336, 48.85639456937041], [2.394679483058582, 48.85626024878757], [2.394766263500633, 48.856129235495054], [2.394857574068661, 48.855994914751115], [2.394944353610569, 48.85586390219747], [2.39503566325453, 48.85572958128557], [2.395122441917195, 48.855598567672196], [2.395215707154043, 48.85547674483002], [2.395216137868556, 48.85547615433647], [2.395306475114989, 48.85536302680168], [2.395399739489538, 48.85524120468951], [2.395490075929917, 48.85512807699216], [2.395583340817507, 48.85500625471807], [2.395673675089115, 48.854893126851316], [2.395766939126927, 48.854771304408324], [2.395857272592708, 48.854658176379075], [2.395950535780647, 48.854536353767195], [2.396040868440512, 48.85442322557542], [2.396072086010579, 48.85438244837115], [2.396078257105748, 48.854373273781135]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 46, "roussel_fabien": 27.0, "nb_emargement": 1389.0, "nb_procuration": 68.0, "nb_vote_blanc": 19.0, "jadot_yannick": 82.0, "le_pen_marine": 93.0, "nb_exprime": 1373.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1834.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1395, "quartier_bv": "44", "geo_point_2d": [48.85587901796178, 2.3931328591737064], "melenchon_jean_luc": 610.0, "poutou_philippe": 10.0, "macron_emmanuel": 315.0}, "geometry": {"type": "Point", "coordinates": [2.3931328591737064, 48.85587901796178]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b59fcfe18cde3c952ebcf813e5e7fdcd9e55b28d", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 197, "zemmour_eric": 165.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "15-24", "geo_shape": {"coordinates": [[[2.305383134290451, 48.84680203802523], [2.305401227157745, 48.84683154416669], [2.305379588424119, 48.84696112744246], [2.305358272246081, 48.84708776805695], [2.305336633287273, 48.84721735219448], [2.305315316912138, 48.847343991872926], [2.305293677740129, 48.847473575972856], [2.305272362518325, 48.84760021562239], [2.30527512805601, 48.847606711591716], [2.305407105523321, 48.84771929927604], [2.305535040908607, 48.847827758645806], [2.305662978188941, 48.847936217876025], [2.305794957340627, 48.848048804199955], [2.305872789394726, 48.84809551180249], [2.305880826222994, 48.84809145463866], [2.3059389655836, 48.84805427861981], [2.306010810184175, 48.8480095941494], [2.306029456786891, 48.848003000259574], [2.306046393027021, 48.847987821923226], [2.306125976326817, 48.84793832391178], [2.306277337351777, 48.8478362210359], [2.306428764086128, 48.847742037232635], [2.306580123947759, 48.847639933955676], [2.306731549552584, 48.847545750651896], [2.306882906900241, 48.847443646066694], [2.307034331387516, 48.84734946236314], [2.30718568892252, 48.84724735828411], [2.307337112292256, 48.84715317418068], [2.307353344467437, 48.847151958685], [2.307533568044421, 48.847221625153956], [2.307728330680776, 48.847285957710376], [2.307908555222338, 48.8473556236061], [2.3081033174717, 48.84741995463718], [2.30810477279842, 48.84742036776685], [2.308278336105369, 48.84746077157322], [2.308468594458848, 48.847506283773974], [2.308642159696521, 48.847546687057324], [2.308832418681392, 48.847592198676], [2.309005983136672, 48.84763260052129], [2.309196242752927, 48.8476781115579], [2.309369809126999, 48.8477185137794], [2.309560068012111, 48.84776402422604], [2.309733634954378, 48.84780442591666], [2.309923895833391, 48.84784993578911], [2.31009746198132, 48.8478903369409], [2.310287723491704, 48.84793584623127], [2.310461291570346, 48.847976246859986], [2.310520979557785, 48.84800798128857], [2.310572266300672, 48.847967935949285], [2.310706639981813, 48.847882469460856], [2.31084847813037, 48.84779123233674], [2.310982849552166, 48.847705764617395], [2.31112468673622, 48.847614527151364], [2.311259058612031, 48.84752905911611], [2.311400893468968, 48.847437821300325], [2.311535264424295, 48.84735235384058], [2.31167709969124, 48.84726111479143], [2.311811468375362, 48.847175647000086], [2.311953302665944, 48.847084408508316], [2.31208767181586, 48.84699893950176], [2.31218630788375, 48.846935488167944], [2.312197613099932, 48.84692410157528], [2.31214615891987, 48.8468932777802], [2.311960986222613, 48.846849339465905], [2.311776466473281, 48.84680551074246], [2.311591295762166, 48.84676157186039], [2.311406775272003, 48.846717742555484], [2.311221605184333, 48.846673803097794], [2.311037085303955, 48.846629974118564], [2.310851915839832, 48.8465860340852], [2.3106673965930202, 48.846542203633035], [2.310482227752451, 48.84649826302407], [2.3102977091273242, 48.846454431998296], [2.310112540910317, 48.84641049081371], [2.309928022894969, 48.84636666011361], [2.309742855301525, 48.846322718353385], [2.309558337919777, 48.84627888618041], [2.309373170949903, 48.84623494384454], [2.309188654189853, 48.846191111097966], [2.309180276440137, 48.84618536075629], [2.30913255461147, 48.84608575225395], [2.309086177526373, 48.845987406101386], [2.309038454696246, 48.845887797535966], [2.3089920779529542, 48.845789452228736], [2.3089827276040182, 48.845775872684776], [2.308961334615751, 48.84577746510313], [2.308799813090657, 48.84582199936442], [2.308621476793329, 48.845871822526775], [2.308431608520311, 48.84592417162816], [2.308253271533189, 48.845973993337836], [2.308253203142883, 48.84597401272839], [2.308076615152443, 48.84602344766779], [2.307898277474397, 48.84607326974315], [2.307721687448489, 48.84612270414639], [2.3075433490913833, 48.84617252568821], [2.307366758392484, 48.846221959563195], [2.3071884193564243, 48.84627178057154], [2.307011829347128, 48.84632121392607], [2.306833489632116, 48.8463710344009], [2.306656897587251, 48.84642046721929], [2.306478557205259, 48.84647028626131], [2.306301964475447, 48.84651971945068], [2.306123623414516, 48.846569537959205], [2.306108673377769, 48.84656637452721], [2.30609071068079, 48.846574247699344], [2.30592107810067, 48.8466313302118], [2.305752345316084, 48.84668313574152], [2.30558361084542, 48.84673494012369], [2.305413977186818, 48.846792021908925], [2.305383954376858, 48.84680123875557], [2.305383134290451, 48.84680203802523]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 24, "roussel_fabien": 16.0, "nb_emargement": 1256.0, "nb_procuration": 88.0, "nb_vote_blanc": 10.0, "jadot_yannick": 62.0, "le_pen_marine": 51.0, "nb_exprime": 1241.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1564.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1256, "quartier_bv": "58", "geo_point_2d": [48.846989707144424, 2.3085491144313623], "melenchon_jean_luc": 155.0, "poutou_philippe": 3.0, "macron_emmanuel": 555.0}, "geometry": {"type": "Point", "coordinates": [2.3085491144313623, 48.846989707144424]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c64c7a9f465f528fde78eca17e45624228771553", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 34, "zemmour_eric": 68.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "19-1", "geo_shape": {"coordinates": [[[2.384227777390783, 48.87928645700712], [2.3841989372142303, 48.879293521286925], [2.384179951099413, 48.87929817208559], [2.384177451118614, 48.87931333271793], [2.38407223933675, 48.87942664480981], [2.383967777524454, 48.87953933922232], [2.383862564840468, 48.87965265020739], [2.383758100747035, 48.8797653453061], [2.383652887150276, 48.87987865608366], [2.383548423513278, 48.87999135098327], [2.383443207640257, 48.88010466154631], [2.383338743106855, 48.88021735534058], [2.383233527673876, 48.88033066660235], [2.383129060869927, 48.880443360183506], [2.383023844534796, 48.8805566703385], [2.382919378176616, 48.88066936461985], [2.382814160928674, 48.880782674567264], [2.382709692299912, 48.88089536863553], [2.382604474139147, 48.881008678375416], [2.382500004613949, 48.88112137133825], [2.382394785529687, 48.88123468176991], [2.382290316460898, 48.88134737453368], [2.382185096474459, 48.88146068385851], [2.382080625124374, 48.881573377308364], [2.381975404225081, 48.88168668642567], [2.381870931967866, 48.88179937966942], [2.381765710155709, 48.88191268857915], [2.381661238365563, 48.88202538072454], [2.381660506338443, 48.88202628076828], [2.381578263962901, 48.88214294665407], [2.381485062627435, 48.882275171782005], [2.381485005751431, 48.88227525332695], [2.381468446144171, 48.882299367782174], [2.3814672642428922, 48.882303701831006], [2.381470191015842, 48.88233144411996], [2.381469940437043, 48.88236781073197], [2.381464034219118, 48.88238426669068], [2.381468028502746, 48.88238780099904], [2.381467476532619, 48.88246814136655], [2.38146881471859, 48.88252171491949], [2.381460179393687, 48.88253144059946], [2.38146889104579, 48.88254284231295], [2.381481565475776, 48.882555151235], [2.381498968220555, 48.8825752098043], [2.3815006657270272, 48.88258773990839], [2.381516402855648, 48.88259338804187], [2.381565659873786, 48.882650159813544], [2.381669283219077, 48.882770403580274], [2.381735943498263, 48.88284723380978], [2.38173744599443, 48.88285356833495], [2.381695298556717, 48.882984452777634], [2.381652758022308, 48.883116269561455], [2.381610610169916, 48.88324715304382], [2.381568069206548, 48.883378969766014], [2.381525920917911, 48.883509854086576], [2.381483379525575, 48.883641670747245], [2.381441230822249, 48.88377255410747], [2.381398687637361, 48.8839043706995], [2.381356538497872, 48.88403525489789], [2.38131399624758, 48.884167071435414], [2.381271846693292, 48.884297954673485], [2.381229304014015, 48.88442977114941], [2.3811871540341363, 48.88456065432638], [2.381144610925868, 48.88469247074071], [2.381156201995175, 48.884703262304775], [2.381348845314445, 48.884719672301706], [2.381526273289477, 48.884735024027094], [2.381703700016295, 48.884750374583035], [2.381896345045975, 48.8847667837054], [2.381910836432372, 48.88476106236303], [2.381980951831852, 48.88463950633272], [2.382051749113244, 48.88451711379873], [2.382121863855344, 48.88439555765892], [2.382192660463131, 48.884273165913704], [2.382262775911553, 48.88415160967145], [2.382333571867181, 48.88402921691652], [2.382352045280862, 48.8840242634011], [2.382545203766096, 48.88408329860929], [2.382725710243727, 48.88413869614934], [2.3829062157418113, 48.88419409340747], [2.383099375474549, 48.884253128611775], [2.383107195414807, 48.88426227277917], [2.3830849033943142, 48.88439571769034], [2.383062204723485, 48.884528255764856], [2.38303991247384, 48.88466170063543], [2.383017213583221, 48.88479423777007], [2.383022918228832, 48.884802603013796], [2.383143276618493, 48.884858324834106], [2.383281157622052, 48.88492228737288], [2.383351119961523, 48.88493431916505], [2.38335936483787, 48.884915997406466], [2.383442935094762, 48.88484419397707], [2.383567099556277, 48.88473637466644], [2.383686811041302, 48.884633519057104], [2.383810973132071, 48.88452569946594], [2.383930683661751, 48.8844228426938], [2.384054844745285, 48.8843150228291], [2.384174554298248, 48.884212166692684], [2.38429871437456, 48.884104346554416], [2.38441842296166, 48.88400149015452], [2.384542583394238, 48.883893669749675], [2.384662289651801, 48.88379081307923], [2.384786449077274, 48.883682992400864], [2.384906154368895, 48.883580135466886], [2.385030312787169, 48.883472314515004], [2.385150017112758, 48.883369457317514], [2.385208451728113, 48.883318711625144], [2.385225961210087, 48.883300878858236], [2.38522399394302, 48.88328651820465], [2.385289718044652, 48.88322944266837], [2.385409899948844, 48.88312427277935], [2.385530645335513, 48.88301880437961], [2.385650827619993, 48.882913635134884], [2.385771572030345, 48.882808166471975], [2.385891753342173, 48.88270299696525], [2.386012496776114, 48.882597528039206], [2.386132677126002, 48.882492357371234], [2.386253418209502, 48.882386889074304], [2.386373597586755, 48.88228171814436], [2.3864943390681113, 48.88217624869203], [2.386614517462141, 48.88207107839939], [2.386735257967218, 48.88196560868393], [2.386855435388532, 48.881860438129294], [2.386976174917441, 48.88175496815067], [2.387096351366151, 48.88164979733411], [2.387217088555281, 48.88154432708537], [2.387337264041978, 48.881439155107564], [2.387433169397406, 48.88135537794015], [2.387454228794254, 48.88134607332557], [2.387458005816042, 48.88134097907228], [2.387482838009225, 48.881319286628596], [2.387595871731521, 48.88122000170937], [2.387716608276109, 48.88111453092268], [2.387829641097759, 48.88101524666353], [2.387950376694227, 48.88090977562149], [2.388063408625817, 48.880810491123164], [2.388184143274175, 48.88070501982569], [2.388297174315816, 48.880605735088245], [2.388417908015968, 48.88050026353544], [2.388530938167567, 48.88040097855878], [2.388651670919625, 48.880295506750656], [2.388764700181189, 48.88019622153488], [2.388885431985165, 48.880090749471385], [2.388998460356703, 48.87999146401645], [2.389119191212603, 48.87988599169762], [2.389232218694124, 48.87978670600354], [2.389352948601958, 48.879681233429366], [2.38946597519347, 48.87958194749612], [2.389464996236693, 48.87957798815359], [2.389422260597705, 48.87955600374018], [2.389358385659964, 48.8795565134274], [2.389182402987511, 48.87955620202683], [2.3889564168134862, 48.87955800309119], [2.388780434138406, 48.879557691099734], [2.388554446580555, 48.879559491398375], [2.388378463892296, 48.8795591797153], [2.388375754696856, 48.87955707853122], [2.388315831846954, 48.87956821723979], [2.388315496449935, 48.87956821462677], [2.388127913431333, 48.87956483504795], [2.387944037824533, 48.8795615748542], [2.387756454853953, 48.87955819469332], [2.387572577930387, 48.879554933922044], [2.387384996360727, 48.87955155408538], [2.3872011194944482, 48.87954829184431], [2.387017242640621, 48.879545030220044], [2.3868296611532642, 48.87954164861398], [2.386645784346158, 48.87953838641919], [2.386458202896259, 48.87953500513033], [2.3864568143091702, 48.879534933262185], [2.386286132068278, 48.87952035892015], [2.386128552128293, 48.87950681829836], [2.385970973633615, 48.87949327747596], [2.385800291665202, 48.87947870244071], [2.385799699235745, 48.87947864274353], [2.385599376011385, 48.87945548772797], [2.385410505521566, 48.87943357648746], [2.385210181280124, 48.879410420812704], [2.385021311106864, 48.87938850985658], [2.384832441092526, 48.87936659860205], [2.384632118739715, 48.879343441066375], [2.384443249052561, 48.879321529196964], [2.384242927035629, 48.87929837190836], [2.384227777390783, 48.87928645700712]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 1, "roussel_fabien": 14.0, "nb_emargement": 1117.0, "nb_procuration": 54.0, "nb_vote_blanc": 10.0, "jadot_yannick": 89.0, "le_pen_marine": 51.0, "nb_exprime": 1100.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 0, "nb_inscrit": 1553.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1117, "quartier_bv": "76", "geo_point_2d": [48.88173150141201, 2.384628663346016], "melenchon_jean_luc": 477.0, "poutou_philippe": 7.0, "macron_emmanuel": 315.0}, "geometry": {"type": "Point", "coordinates": [2.384628663346016, 48.88173150141201]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "614340ebfc2e56bc4d9a84706c59ab3780a92623", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 45, "zemmour_eric": 111.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-10", "geo_shape": {"coordinates": [[[2.389940400511669, 48.84448091678009], [2.38991035261342, 48.844469828260884], [2.389745508633593, 48.84439532291415], [2.389581288936466, 48.84432107233845], [2.389416447260108, 48.84424656653533], [2.38925222851105, 48.84417231459873], [2.389087387765069, 48.844097809231585], [2.388923169953544, 48.84402355683335], [2.388758330159018, 48.84394905010357], [2.388594111912045, 48.84387479813612], [2.388429273058331, 48.84380029094299], [2.388265057121973, 48.8437260376216], [2.388100841642978, 48.843651784969175], [2.387936004199781, 48.84357727708149], [2.38777178966887, 48.84350302306819], [2.387606953156014, 48.84342851561649], [2.387442738200105, 48.84335426113462], [2.387277902638721, 48.843279752320335], [2.387113689972283, 48.84320549828318], [2.3869488553518, 48.843130989005545], [2.386784643633457, 48.84305673360751], [2.386619809943291, 48.842982224765855], [2.386455599162463, 48.8429079689063], [2.386290765061271, 48.84283345869509], [2.38612655520737, 48.84275920327321], [2.385961723409579, 48.84268469260567], [2.385916576686025, 48.84265863666047], [2.38588947869685, 48.84267662144644], [2.385809310376162, 48.842758995004026], [2.385725918565371, 48.84284490172199], [2.385624210958928, 48.84294940659504], [2.385540818527772, 48.843035314068615], [2.3855371860379613, 48.84304200642837], [2.38557849094932, 48.84306582405662], [2.385611097617236, 48.843085563372874], [2.385654548316573, 48.84311241473952], [2.385656493221702, 48.84312404624456], [2.385545873307227, 48.84323112509266], [2.385437989240748, 48.84333494781631], [2.385327368429615, 48.84344202644211], [2.385219484853825, 48.8435458489561], [2.385108861783702, 48.843652927352636], [2.385000977335971, 48.84375674964991], [2.384998810733035, 48.84376022082817], [2.384969219539378, 48.84387982548244], [2.384931089221223, 48.844017637793506], [2.384901499088639, 48.844137242410426], [2.38486336840298, 48.84427505466814], [2.384833776606285, 48.84439465923369], [2.384795645553317, 48.84453247143797], [2.384766054817495, 48.84465207596617], [2.384727923397114, 48.84478988811709], [2.38469833235972, 48.84490949260092], [2.384660199209355, 48.84504730469139], [2.384630607870482, 48.84516690913087], [2.384592475704535, 48.84530472207428], [2.3845628840747, 48.845424325570036], [2.3845499163270523, 48.84543928801861], [2.384572123779748, 48.845461277326194], [2.384628501782899, 48.84560192280977], [2.384694633073242, 48.84574090603473], [2.384699203550844, 48.845745277032904], [2.384709071468633, 48.845749922599055], [2.384819186513036, 48.845801764809714], [2.384951203284402, 48.845870373804495], [2.384963772312485, 48.845871876492645], [2.3850915092023532, 48.845844992099885], [2.385227367216424, 48.84582689554851], [2.385238593215048, 48.845828698886535], [2.385386798862496, 48.84590724303624], [2.38554238315154, 48.84599253679088], [2.385690588360262, 48.846071080545705], [2.38584617364621, 48.84615637299339], [2.385994381130691, 48.84623491726666], [2.386149967402945, 48.84632020930676], [2.386156339769204, 48.84632016016127], [2.386184036094773, 48.84629028534512], [2.386268751819963, 48.846221378680845], [2.386366358227336, 48.8461381042995], [2.3863835128328352, 48.84613565969854], [2.386587545541917, 48.846206975425005], [2.386788259150737, 48.8462790049605], [2.386992292974878, 48.84635031998758], [2.387193007684599, 48.84642234973407], [2.387210671308786, 48.84641961443202], [2.387343107846665, 48.84629504385597], [2.387475017863252, 48.8461703490138], [2.387607453135935, 48.84604577811727], [2.387739361889018, 48.845921082955776], [2.387746881400016, 48.84591756718079], [2.387885438504699, 48.84589212289329], [2.388034124737508, 48.84586116324128], [2.38817268291458, 48.845835718626816], [2.3883213688158262, 48.84580475861628], [2.388327868889129, 48.84580183386591], [2.388436784063256, 48.845712851626715], [2.38856996933576, 48.84560547556897], [2.388678883675619, 48.84551649399304], [2.38881206794742, 48.845409117646874], [2.38892098147412, 48.84532013493556], [2.389054164734883, 48.84521275920028], [2.389163077437881, 48.84512377625289], [2.389210905142883, 48.845085215884005], [2.3892393193734582, 48.84507270879246], [2.38924075109152, 48.845067045655014], [2.38932610558807, 48.844998229078534], [2.389451167629919, 48.84489455005164], [2.389584347348115, 48.84478717367826], [2.389709408369775, 48.844683494361824], [2.389842588389773, 48.844576116788275], [2.389938135390956, 48.84449690390041], [2.389940400511669, 48.84448091678009]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 10, "roussel_fabien": 34.0, "nb_emargement": 1194.0, "nb_procuration": 59.0, "nb_vote_blanc": 13.0, "jadot_yannick": 86.0, "le_pen_marine": 63.0, "nb_exprime": 1176.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1536.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1194, "quartier_bv": "46", "geo_point_2d": [48.84466934046416, 2.3868623709421506], "melenchon_jean_luc": 413.0, "poutou_philippe": 8.0, "macron_emmanuel": 357.0}, "geometry": {"type": "Point", "coordinates": [2.3868623709421506, 48.84466934046416]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9f42fb62d404a203d329363723e8e4af160b7fe7", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 23, "zemmour_eric": 54.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-63", "geo_shape": {"coordinates": [[[2.391320524990081, 48.86513006097341], [2.391294982611979, 48.865127584687876], [2.391239912631582, 48.86512934519377], [2.391185988309629, 48.86513175273215], [2.3911801975291063, 48.8651311800731], [2.391042132022684, 48.86509633958575], [2.390897321237437, 48.86506003555589], [2.39075925609813, 48.86502519563928], [2.39061444570777, 48.86498889126483], [2.390612888670533, 48.86498856946689], [2.390388756833323, 48.86495158930805], [2.3901749297984862, 48.86491654715197], [2.389961101677696, 48.86488150550508], [2.389736972126768, 48.86484452412906], [2.389727835579551, 48.86483947000998], [2.389654643367367, 48.8647314717196], [2.389579132485197, 48.86462000717652], [2.389505942252689, 48.86451200878074], [2.389430432006675, 48.86440054412174], [2.389409414674908, 48.86439722175118], [2.38920966287733, 48.86450384196531], [2.389011940778442, 48.86460992810031], [2.388998042520645, 48.86461095074627], [2.388987705663117, 48.8646213114469], [2.388986718547114, 48.86462179385037], [2.388802150267797, 48.864703792278235], [2.38862087316908, 48.864784763995196], [2.388436305088975, 48.86486676275309], [2.388255026854549, 48.86494773390399], [2.388249876366006, 48.86495207387874], [2.388179216138013, 48.86507872572175], [2.388108988195872, 48.86520475377912], [2.3880383272933, 48.86533140461073], [2.387968097306596, 48.86545743254971], [2.387897435718771, 48.86558408326925], [2.387827206413689, 48.86571011110374], [2.387822791953359, 48.86571410048225], [2.387754590903197, 48.86574917574227], [2.387691438138817, 48.86578211477559], [2.387675810327897, 48.86579027278102], [2.387677660131819, 48.865799551747294], [2.387615014037762, 48.86593723051638], [2.3875571323353793, 48.866062582078094], [2.387499248991324, 48.86618793359063], [2.387436601948127, 48.86632561311734], [2.387378719395487, 48.86645096364946], [2.38731607171743, 48.86658864308036], [2.387300758892963, 48.86662180249417], [2.387299457725554, 48.86663855053442], [2.387325001160329, 48.86664307097193], [2.387512903638009, 48.86670772484157], [2.387702568427369, 48.8667727912293], [2.387890470478411, 48.866837444491644], [2.388080136200979, 48.8669025111727], [2.388268040551653, 48.86696716384168], [2.388457707218205, 48.86703222991681], [2.388645612505377, 48.867096881985454], [2.388835280126261, 48.86716194655534], [2.389023184986881, 48.867226598016636], [2.389212853541089, 48.86729166287986], [2.389230588319807, 48.86728856882224], [2.389280617720109, 48.867237544693864], [2.389332598390744, 48.8671877464051], [2.389349571800979, 48.86718098723523], [2.3893500197000073, 48.86717045556024], [2.389445487914729, 48.86705039067336], [2.389537884346784, 48.86693428601146], [2.389633351706248, 48.866814220049804], [2.389725745937485, 48.8666981152112], [2.389818139756975, 48.86658201028903], [2.389913607188059, 48.86646194407257], [2.390006000159354, 48.86634583987992], [2.3901014653616413, 48.86622577348103], [2.390116603966882, 48.86622118844607], [2.390296540160425, 48.866248605165794], [2.390472029042892, 48.86627562483901], [2.390651964248391, 48.86630304101613], [2.390827453498478, 48.86633006016692], [2.390837194459196, 48.86632915554634], [2.390992904663111, 48.86627182453171], [2.391138639037223, 48.86621785466018], [2.391284371756766, 48.86616388370234], [2.391440080964152, 48.866106552996705], [2.391445868896732, 48.86609500972046], [2.391390891853555, 48.86601440292446], [2.391284605083783, 48.86585949877265], [2.391229628528161, 48.86577889278473], [2.391228479736399, 48.865774312897244], [2.391243913522639, 48.86566967402235], [2.391259449761465, 48.86556501137475], [2.391274884786488, 48.86546037248301], [2.391290420900773, 48.865355709811624], [2.391305854438481, 48.86525107088916], [2.391321390428026, 48.865146408193986], [2.391320524990081, 48.86513006097341]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 63, "roussel_fabien": 13.0, "nb_emargement": 1017.0, "nb_procuration": 20.0, "nb_vote_blanc": 12.0, "jadot_yannick": 37.0, "le_pen_marine": 74.0, "nb_exprime": 1001.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1438.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1019, "quartier_bv": "79", "geo_point_2d": [48.86585164854169, 2.3892974026730496], "melenchon_jean_luc": 606.0, "poutou_philippe": 8.0, "macron_emmanuel": 156.0}, "geometry": {"type": "Point", "coordinates": [2.3892974026730496, 48.86585164854169]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "386c96b8fe376ed7e8ad4f72c1f35eac53d1053d", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 49, "zemmour_eric": 75.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-29", "geo_shape": {"coordinates": [[[2.404647357834585, 48.87178481754342], [2.404637984283688, 48.87180038605976], [2.404683071012489, 48.871920001399516], [2.404728479237888, 48.87203917943221], [2.404773566370919, 48.87215879561133], [2.404818975011542, 48.87227797358392], [2.404864062559089, 48.87239758970304], [2.404909471614941, 48.872516767615544], [2.404954559587282, 48.872636382775454], [2.404999969048097, 48.872755561527136], [2.405045057434962, 48.872875176627105], [2.405090467321291, 48.87299435441937], [2.405084762135083, 48.87300744553616], [2.405099819441152, 48.873017912163654], [2.40513553319828, 48.87302405762486], [2.4053386362271842, 48.873059035492936], [2.405537480924915, 48.87309325081593], [2.40574058585684, 48.87312822800657], [2.405939431072489, 48.87316244355904], [2.406142535190976, 48.87319741915944], [2.406341382298104, 48.873231634048814], [2.406544486956387, 48.873266608965054], [2.406743333228376, 48.87330082317782], [2.406942179761593, 48.87333503705922], [2.407145286589696, 48.87337001095954], [2.4073441336510673, 48.87340422417108], [2.407547239655637, 48.87343919738044], [2.407746088608362, 48.8734734099289], [2.407949195152597, 48.87350838245409], [2.408148043270249, 48.873542594325926], [2.40835115035414, 48.873577566166915], [2.408361051317388, 48.87358811211055], [2.408322854074045, 48.873708349303726], [2.408285589849305, 48.8738264893453], [2.408247392256953, 48.87394672648841], [2.408210126327184, 48.87406486647426], [2.408171928396034, 48.874185102668065], [2.408134663487882, 48.87430324261162], [2.408096465197496, 48.874423479654645], [2.408059199947634, 48.87454161954918], [2.408058747260585, 48.87454270280389], [2.407994875999508, 48.874665087244686], [2.407929613594385, 48.87479048561283], [2.40786574171581, 48.874912870856505], [2.407800477325965, 48.875038269119344], [2.407736604850327, 48.87516065336735], [2.407671341202455, 48.87528605153838], [2.407679834777827, 48.87529748359286], [2.4078671617469, 48.87533962309519], [2.408051543965431, 48.87538092934855], [2.408238871535454, 48.87542306826603], [2.40842325570743, 48.87546437395046], [2.408610583878195, 48.875506512283096], [2.408794967277088, 48.87554781738514], [2.408982296048792, 48.87558995513293], [2.409166680027553, 48.8756312605586], [2.409169601073665, 48.87563168866784], [2.409360388363556, 48.875645427638744], [2.409549958492688, 48.87565902180446], [2.409740745993119, 48.87567275926957], [2.40993031768447, 48.87568635283937], [2.410121105375148, 48.87570009059723], [2.410310677265142, 48.87571368356434], [2.410501463792984, 48.87572742070891], [2.410691035881714, 48.87574101307339], [2.410881823973249, 48.87575474961818], [2.411071396260705, 48.87576834137997], [2.411262184552759, 48.875782077318206], [2.411451755675561, 48.875795668470644], [2.411642544167921, 48.87580940380234], [2.411832116852909, 48.87582299435875], [2.412021688273351, 48.87583658460814], [2.41221247706588, 48.87585031903102], [2.412402050048495, 48.87586390868442], [2.412592839051553, 48.87587764160145], [2.412608548373612, 48.87587789135702], [2.412618442655629, 48.87587113107793], [2.412647110119347, 48.87577404335645], [2.412684077214183, 48.87564969896807], [2.412703983945964, 48.875582281208004], [2.412716299697956, 48.87554056683439], [2.412753266451764, 48.87541622329763], [2.412788584504038, 48.87529661022152], [2.412825549558915, 48.87517226572894], [2.412832260152534, 48.87514953838391], [2.412871717049291, 48.875015903406364], [2.412908683059699, 48.87489155976241], [2.41294813956495, 48.87475792472839], [2.412985103856719, 48.8746335801258], [2.413024559970472, 48.87449994503541], [2.41306152524982, 48.874375601286104], [2.41310098097208, 48.874241966139245], [2.41313794453281, 48.87411762143133], [2.41314252643746, 48.874100355145394], [2.413119570012088, 48.87409586195418], [2.412942720052815, 48.87405150219908], [2.412764718378742, 48.8740070178177], [2.412587870386662, 48.87396265754152], [2.412409869309127, 48.87391817352817], [2.412233020557591, 48.873873812717484], [2.412055021460102, 48.87382932728034], [2.411878173312544, 48.87378496594183], [2.411700173448267, 48.87374048086602], [2.411523327267905, 48.873696119006404], [2.411345328020476, 48.87365163250009], [2.411345235570648, 48.87365160956219], [2.41116219913159, 48.873607350721485], [2.410985561382307, 48.87356416810734], [2.4108089225624942, 48.87352098522411], [2.410625888401587, 48.87347672556484], [2.410449250176503, 48.87343354214748], [2.4102662166284983, 48.87338928193478], [2.41025752852682, 48.87337911354824], [2.410299380374298, 48.87323779718832], [2.410341416737997, 48.87309798538985], [2.410383269505475, 48.87295666807202], [2.410425304043749, 48.87281685710103], [2.410467156357748, 48.872675539717925], [2.410509191817353, 48.87253572778929], [2.410551042304517, 48.872394411233465], [2.410593077312089, 48.87225459923981], [2.410593310096647, 48.87225342495749], [2.410606308990787, 48.87212346605391], [2.410619051481031, 48.87199230526126], [2.410632050245885, 48.87186234632413], [2.4106447939707, 48.871731185504444], [2.410657792606065, 48.87160122653381], [2.410670534838916, 48.87147006567366], [2.410683533344999, 48.871340106669514], [2.410696276812311, 48.87120894578234], [2.41070927518901, 48.87107898674465], [2.410722017154304, 48.8709478267163], [2.410735015411797, 48.870817866745874], [2.4107477586115422, 48.8706867066905], [2.410760756739653, 48.87055674668651], [2.410773499810805, 48.87042558659741], [2.410760794310995, 48.87041603786859], [2.410568131874, 48.870407631088405], [2.410378278157308, 48.87039907775198], [2.410185614471367, 48.87039067124855], [2.409995762252719, 48.870382116412756], [2.409803098691246, 48.870373709293496], [2.409613246597143, 48.87036515385083], [2.409420583160251, 48.87035674611577], [2.409230729827571, 48.87034819005955], [2.409038067878396, 48.870339781715394], [2.408848214660174, 48.870331225951595], [2.408824676626126, 48.870329628494865], [2.408816903145419, 48.87034116364291], [2.408797959194369, 48.87047122811819], [2.408783534228793, 48.87060383483236], [2.408783504218785, 48.87060407660515], [2.408769729016989, 48.87073588250631], [2.408755303906256, 48.87086848918528], [2.408741528563077, 48.87100029505162], [2.40872710330733, 48.87113290169551], [2.408713326459714, 48.87126470752033], [2.408698902422203, 48.87139731413579], [2.408685125433294, 48.871529119925825], [2.408670699887506, 48.8716617264994], [2.408656924120466, 48.87179353226137], [2.4086424984296553, 48.871926138799815], [2.408628722521425, 48.872057944526986], [2.408614296685592, 48.872190551030286], [2.408600520635968, 48.87232235672266], [2.408586094655107, 48.8724549631908], [2.408572317101002, 48.87258676884163], [2.408557892338402, 48.872719375281356], [2.408539044411949, 48.872727030805784], [2.408357440517745, 48.87267705133424], [2.40817686645714, 48.872627177400204], [2.407995263258698, 48.87257719737468], [2.407814689891044, 48.87252732288977], [2.407633087388163, 48.87247734231023], [2.407452513350282, 48.87242746726777], [2.407270911543066, 48.87237748613424], [2.407090339561328, 48.87232761054765], [2.406908738449885, 48.87227762886017], [2.4067281671611083, 48.87222775272269], [2.406709780012697, 48.87223360708289], [2.40668654742124, 48.87228794837514], [2.406664174710696, 48.87234231910407], [2.406645592107586, 48.872348212955195], [2.406475722186859, 48.872299604486074], [2.406317438725198, 48.87225453725713], [2.406159156910864, 48.87220946892457], [2.405989286533376, 48.8721608597522], [2.405831005277371, 48.8721157918812], [2.405661135521777, 48.872067181339766], [2.405653770311826, 48.87206005711953], [2.405630937697453, 48.87206002108878], [2.405471198792833, 48.872014789911994], [2.405267087231941, 48.87195672939705], [2.405107350313139, 48.87191149863659], [2.404903238199296, 48.871853437488994], [2.404743501923375, 48.8718082053395], [2.404679637509012, 48.87179003864349], [2.404647357834585, 48.87178481754342]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 29, "roussel_fabien": 25.0, "nb_emargement": 1214.0, "nb_procuration": 47.0, "nb_vote_blanc": 15.0, "jadot_yannick": 85.0, "le_pen_marine": 93.0, "nb_exprime": 1195.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1534.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1214, "quartier_bv": "78", "geo_point_2d": [48.87346983965403, 2.4094905594054747], "melenchon_jean_luc": 456.0, "poutou_philippe": 13.0, "macron_emmanuel": 340.0}, "geometry": {"type": "Point", "coordinates": [2.4094905594054747, 48.87346983965403]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "75b970112069414338db0d019a8144fbe40cd061", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 21, "zemmour_eric": 57.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-38", "geo_shape": {"coordinates": [[[2.400150463880788, 48.87843526931706], [2.400160827451156, 48.87841813506571], [2.400176773293484, 48.87837577292286], [2.400235397188564, 48.8782214593595], [2.4002795984826673, 48.87810402784004], [2.40027996205073, 48.87810253047933], [2.400292114881207, 48.87799512599263], [2.400306843588183, 48.877865432824144], [2.4003295792013972, 48.87785943127302], [2.400487392919445, 48.8779534506853], [2.400642978551987, 48.87804611062891], [2.400800792038012, 48.87814012960534], [2.400956380149131, 48.878232789132745], [2.401114194766565, 48.87832680768009], [2.401269782629603, 48.87841946677768], [2.4014275997418952, 48.87851348490279], [2.40158318872009, 48.87860614357733], [2.401609018217895, 48.878607980513216], [2.401617424789884, 48.87858846662716], [2.4016246867926663, 48.8785463369921], [2.401647292017884, 48.8784207939415], [2.401665884557552, 48.878312918821734], [2.401688489582152, 48.87818737573672], [2.401707083316594, 48.87807950059454], [2.401707165462708, 48.878079115192826], [2.401735204057578, 48.87796553512777], [2.401764056995636, 48.877854407089245], [2.401792095355899, 48.87774082608841], [2.401820948047982, 48.877629698013514], [2.4018245067268422, 48.8776181818931], [2.40181140741207, 48.87761014567981], [2.401781212814936, 48.87757813514567], [2.401759072106163, 48.87755468689886], [2.401757128923818, 48.87754877218946], [2.401783283464154, 48.877416616881156], [2.401809442778085, 48.87728023562464], [2.401835597050931, 48.87714808027275], [2.401861756093003, 48.87701169897153], [2.401848622208883, 48.87700158063525], [2.401662230415455, 48.87699803930583], [2.401476817492124, 48.87699450797615], [2.401290425749289, 48.87699096606783], [2.4011050128867932, 48.87698743326299], [2.400918622557967, 48.87698389078259], [2.400733209735432, 48.87698035830117], [2.400546818093815, 48.876976815235025], [2.400361405321688, 48.87697328217774], [2.40017501373069, 48.87696973853262], [2.3999896010193402, 48.8769662040002], [2.39997674900567, 48.87695934514275], [2.399934802055963, 48.87684587232046], [2.3998932165123232, 48.876733472385276], [2.399851268563124, 48.87661999950362], [2.399809683380098, 48.876507599516394], [2.399767737158192, 48.87639412658908], [2.399726152335775, 48.87628172654982], [2.399684205114382, 48.87616825356313], [2.399642620652673, 48.876055853471826], [2.399641656689687, 48.87605408055247], [2.399565134574872, 48.87594936085656], [2.399484747393375, 48.87583790550533], [2.399408225922009, 48.87573318478931], [2.399327838046659, 48.875621729303994], [2.399337869541231, 48.87557649919888], [2.399319992490498, 48.87557199557623], [2.399180042321564, 48.875529602029324], [2.399000708182652, 48.875485831569236], [2.398995416637844, 48.87548501449011], [2.398758282238497, 48.87548044131102], [2.398597151164235, 48.875477327820285], [2.398436021472601, 48.875474214119535], [2.398198887181942, 48.87546963893299], [2.398096976666155, 48.87546766964163], [2.398077277785799, 48.87546568199526], [2.398066650898557, 48.87546760439163], [2.398007430407687, 48.87546645942429], [2.397972131884526, 48.87546548240187], [2.397965541550699, 48.8754652091363], [2.397939783970143, 48.87550412138097], [2.3979375204800553, 48.875625272451195], [2.3979358991342092, 48.87575645068643], [2.397933635624119, 48.87587760172887], [2.397932014271131, 48.87600877903477], [2.397929750730542, 48.87612993094867], [2.397928129359915, 48.87626110822451], [2.39792586580982, 48.87638225921138], [2.397924244411056, 48.876513437356415], [2.397921980840958, 48.87663458831547], [2.397920359435051, 48.876765765531175], [2.397918095844849, 48.87688691646241], [2.397917044260168, 48.8769719851429], [2.397912346647039, 48.87697497697145], [2.397918767676147, 48.876997814488064], [2.397918197828127, 48.87704392389139], [2.397916834687919, 48.87718837737218], [2.397915213251709, 48.877319554521925], [2.397913851459425, 48.87746400797339], [2.39791223000712, 48.877595185090286], [2.397910868199355, 48.877739638505616], [2.39790924672066, 48.87787081648892], [2.397907625244093, 48.87800199355734], [2.397906263412919, 48.87814644691929], [2.397918537076649, 48.87815545068172], [2.398057221995102, 48.878164621576225], [2.398315616474707, 48.878182711030185], [2.398454301535666, 48.878191881464474], [2.398455406088152, 48.87819198863889], [2.398620557191959, 48.87821267467744], [2.398784509710794, 48.878232433554416], [2.398784688089346, 48.878232454235494], [2.398989044712263, 48.87825460740303], [2.399189850899638, 48.87827700320743], [2.399390657249236, 48.8782993995738], [2.399595014392674, 48.87832155170562], [2.399795819735185, 48.8783439464854], [2.400000178589077, 48.878366097931504], [2.400006749450776, 48.87836809409954], [2.4000609844503282, 48.87839822093553], [2.400124897998195, 48.87843127319798], [2.400150463880788, 48.87843526931706]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 38, "roussel_fabien": 18.0, "nb_emargement": 1070.0, "nb_procuration": 57.0, "nb_vote_blanc": 9.0, "jadot_yannick": 88.0, "le_pen_marine": 56.0, "nb_exprime": 1055.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1434.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1069, "quartier_bv": "75", "geo_point_2d": [48.877159411428636, 2.39950884493778], "melenchon_jean_luc": 556.0, "poutou_philippe": 7.0, "macron_emmanuel": 195.0}, "geometry": {"type": "Point", "coordinates": [2.39950884493778, 48.877159411428636]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "236836db270526f4c39769f9be56fc5129c83973", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 57, "zemmour_eric": 80.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "12-36", "geo_shape": {"coordinates": [[[2.408687035356161, 48.847239774605455], [2.408707707604901, 48.84724105942518], [2.408783712686048, 48.84723430586219], [2.408984703482627, 48.84721606084253], [2.409182137778298, 48.84719851650613], [2.409383128297256, 48.84718027081655], [2.409580562323204, 48.84716272582212], [2.409781552564632, 48.847144479462614], [2.409978986320847, 48.847126933810124], [2.410179976284735, 48.84710868678073], [2.410377409781383, 48.84709113957091], [2.410578399457548, 48.847072892770925], [2.410775832684438, 48.847055344903026], [2.410976822083052, 48.84703709743312], [2.411118813520776, 48.8470244769913], [2.411174255040172, 48.84701954890717], [2.411191039202358, 48.84700301505404], [2.411175986536226, 48.84696881589471], [2.411140010939339, 48.84684554158385], [2.411101454443924, 48.846719389202235], [2.411065479205682, 48.84659611394208], [2.411026923075115, 48.84646996150816], [2.4109909481752902, 48.846346687097295], [2.410952392409666, 48.84622053461112], [2.410916417868479, 48.84609725925095], [2.410877862467795, 48.84597110671256], [2.410841888264808, 48.845847832201684], [2.410803333229158, 48.84572167961103], [2.410767359384802, 48.84559840415085], [2.41072880471398, 48.84547225150796], [2.410739439893827, 48.8454616609252], [2.410947595999433, 48.845433653033545], [2.411153910439427, 48.84540436492689], [2.4113620647308682, 48.84537635630597], [2.411568378721268, 48.84534706658377], [2.411776533923581, 48.84531905724696], [2.411982847454314, 48.84528976680847], [2.412191002205016, 48.845261756749125], [2.412397315265728, 48.845232466493705], [2.412406918721635, 48.845220047702355], [2.412335021376458, 48.84511235832659], [2.412253131017192, 48.844986290943105], [2.412181234302021, 48.84487860235168], [2.412099343319591, 48.84475253482976], [2.412027448607218, 48.84464484613005], [2.41194555837423, 48.84451877757713], [2.411873664302082, 48.84441108876242], [2.41179177479813, 48.84428502097712], [2.411719880003753, 48.84417733204075], [2.411691555709425, 48.84416441290814], [2.411673611702718, 48.844170323368644], [2.411480610451372, 48.8441898820875], [2.411290432365, 48.84420835447587], [2.411097432191568, 48.844227912582596], [2.410907252468168, 48.84424638435448], [2.410714252010111, 48.84426594184241], [2.410524072012135, 48.84428441300457], [2.410331071269463, 48.844303969873614], [2.410140892349289, 48.844322441332054], [2.409947889959458, 48.84434199757556], [2.409757710774799, 48.84436046752491], [2.409567531455447, 48.84437893717161], [2.409374528641262, 48.84439849248917], [2.409184349047364, 48.84441696152611], [2.408991347311143, 48.84443651623157], [2.408991079949434, 48.84443654189142], [2.408954394868334, 48.84443759277247], [2.408946831339991, 48.844442492868744], [2.40877105684448, 48.84445796381531], [2.408601256540841, 48.84447349911202], [2.408425481838175, 48.84448896955047], [2.40825567996806, 48.84450450434948], [2.408079905058244, 48.84451997427976], [2.40791010434656, 48.84453550859466], [2.40789834857526, 48.84454443228001], [2.407898609212756, 48.84464766343761], [2.407895201229823, 48.84473690313795], [2.407882420820184, 48.84476164951119], [2.407906546932169, 48.84477175356646], [2.408036017659865, 48.84485375898511], [2.408159737620938, 48.84493092605248], [2.408283456575608, 48.84500809387913], [2.408412929856273, 48.845090097979934], [2.408415436662778, 48.845091335298044], [2.408587691469885, 48.84515747656657], [2.4087567495264652, 48.845226421261415], [2.408762964534837, 48.84523578368681], [2.408751996859431, 48.845273128274115], [2.408742389975142, 48.84531303555211], [2.408749311517683, 48.84532233761508], [2.40893384945922, 48.845388909603905], [2.409120327195456, 48.8454571376016], [2.409127156698666, 48.84546350818825], [2.409158563621525, 48.845586498110706], [2.409187453334079, 48.84570448955614], [2.409216343187642, 48.84582248008279], [2.4092477505271113, 48.8459454708415], [2.409276640650774, 48.84606346132807], [2.40930804827777, 48.84618645204437], [2.409336938671535, 48.846304442490904], [2.409368346596255, 48.84642743226547], [2.409397237249935, 48.84654542357119], [2.409428645462188, 48.846668413303384], [2.4094169106944, 48.846678831052785], [2.4092094975968292, 48.84669607647801], [2.409002305636859, 48.846711593178526], [2.408794892261501, 48.84672883878379], [2.408587701410452, 48.84674435477261], [2.408575757113515, 48.846754607721515], [2.408601695351688, 48.84687025257273], [2.40862403186809, 48.84697355485661], [2.408649968959842, 48.84708919966793], [2.408672305676081, 48.84719250102323], [2.408687035356161, 48.847239774605455]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 36, "roussel_fabien": 18.0, "nb_emargement": 1050.0, "nb_procuration": 29.0, "nb_vote_blanc": 7.0, "jadot_yannick": 61.0, "le_pen_marine": 90.0, "nb_exprime": 1039.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1393.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1050, "quartier_bv": "45", "geo_point_2d": [48.84551061599942, 2.4101358713970744], "melenchon_jean_luc": 370.0, "poutou_philippe": 4.0, "macron_emmanuel": 296.0}, "geometry": {"type": "Point", "coordinates": [2.4101358713970744, 48.84551061599942]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8c9177d049866d732f183fc06bd28700afa4daac", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 46, "zemmour_eric": 82.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "20-53", "geo_shape": {"coordinates": [[[2.406122738258313, 48.85268477560632], [2.406129880434985, 48.85269305898943], [2.406343864160831, 48.8527315526824], [2.4065241756156652, 48.85276310058453], [2.40653653351374, 48.852767903248825], [2.406552175824824, 48.85276755993608], [2.406732487520132, 48.852799108422595], [2.406925687740488, 48.85283388353104], [2.40710599989143, 48.852865431452834], [2.407299200596724, 48.85290020685542], [2.407479514576198, 48.85293175331988], [2.407672715776659, 48.85296652811728], [2.407853028838858, 48.852998074909586], [2.407992220260271, 48.853023127931216], [2.4080067874618543, 48.85302325576382], [2.408020031795518, 48.85299083590185], [2.408109424909746, 48.852882523442965], [2.40819806453736, 48.852775124518075], [2.408287456911475, 48.85266681190515], [2.4083760958052203, 48.852559412827546], [2.408465487439231, 48.85245110006062], [2.408554125599116, 48.85234370083031], [2.4085554140776493, 48.8523414849065], [2.408601595061561, 48.85221365837628], [2.408647445147289, 48.85208674931475], [2.408693293646938, 48.851959840214434], [2.408739473954403, 48.85183201358712], [2.4087853233685372, 48.851705104429215], [2.4088315032245, 48.85157727773712], [2.408877350827741, 48.85145036850815], [2.4089235302321113, 48.85132254175127], [2.408969378749836, 48.85119563246469], [2.40901555770282, 48.851067805643034], [2.409061404399275, 48.850940897184735], [2.40910758291098, 48.85081306939895], [2.409153430521922, 48.850686160883065], [2.40919960858215, 48.850558333032524], [2.409245454382149, 48.85043142444558], [2.409291631980717, 48.85030359742958], [2.409337478705395, 48.85017668788574], [2.409383655852502, 48.85004886080497], [2.409429500766365, 48.84992195119011], [2.40947567882461, 48.84979412405125], [2.409521523290263, 48.84966721437209], [2.40956769953447, 48.84953938716177], [2.409613544914506, 48.849412477424984], [2.409659720707269, 48.849284650149926], [2.409705564276427, 48.84915774034215], [2.409751739617758, 48.84902991300229], [2.409747056106153, 48.849020513251105], [2.409724930971376, 48.849018582009286], [2.4095284750295303, 48.84901497661306], [2.409311872685486, 48.84901100162642], [2.409115416800799, 48.849007395551936], [2.408898814519878, 48.8490034198175], [2.40870235869236, 48.84899981306476], [2.40848575647437, 48.8489958365825], [2.4082893007040322, 48.84899222915152], [2.408057477936897, 48.84898732223322], [2.407938496025658, 48.848985137156646], [2.407935807918658, 48.84898340968887], [2.40791006714539, 48.8489843930067], [2.40783259198715, 48.848982969923874], [2.40774257047218, 48.848981045801], [2.407728514054707, 48.848989671157206], [2.4077255534454842, 48.849038058744775], [2.407721008788394, 48.849085415925096], [2.40772093752448, 48.849085930901175], [2.407711974262753, 48.84909605550588], [2.407719260009241, 48.84910559412917], [2.407696058614506, 48.84923180678078], [2.407673131869135, 48.849355546656355], [2.407649931614079, 48.84948175927747], [2.407627004649212, 48.84960549911643], [2.407603802808469, 48.84973171169347], [2.4075808756241, 48.8498554514958], [2.407557673560346, 48.84998166403562], [2.407534746156472, 48.85010540380132], [2.407511545232409, 48.85023161631054], [2.407488617609029, 48.8503553560396], [2.407488121719424, 48.85035690046809], [2.407411506762071, 48.850522444138186], [2.407335103694245, 48.850687527419566], [2.407334862560611, 48.85068811979679], [2.40729333986893, 48.85080605735165], [2.40725099036555, 48.85092633988881], [2.407209467294228, 48.851044277389285], [2.407167118756149, 48.851164560777015], [2.407125593942553, 48.85128249821639], [2.407083245027509, 48.851402780649394], [2.407041719834157, 48.85152071803438], [2.406999370521679, 48.85164100131126], [2.4069817072092032, 48.85164747992492], [2.406817722816227, 48.85161067056738], [2.406657682031446, 48.85157474661338], [2.406493696733604, 48.851537936802586], [2.406333656395485, 48.85150201241289], [2.406268890887341, 48.851498326578785], [2.406264689262998, 48.85151029946692], [2.406258196643531, 48.85156940853234], [2.406240521219419, 48.85171316830971], [2.406225577518311, 48.85184920631191], [2.406207901909303, 48.85199296604828], [2.406192958032653, 48.85212900491149], [2.4061752822489932, 48.85227276370758], [2.406160338206943, 48.85240880253247], [2.406155509216923, 48.85244807295346], [2.406151310339723, 48.85245620831637], [2.406152985002931, 48.85246615444191], [2.406140136641756, 48.852570643666596], [2.4061217673707143, 48.85267298661082], [2.406122738258313, 48.85268477560632]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 53, "roussel_fabien": 35.0, "nb_emargement": 1189.0, "nb_procuration": 42.0, "nb_vote_blanc": 2.0, "jadot_yannick": 92.0, "le_pen_marine": 75.0, "nb_exprime": 1182.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1459.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "80", "geo_point_2d": [48.851016885236824, 2.4079958846508855], "melenchon_jean_luc": 453.0, "poutou_philippe": 5.0, "macron_emmanuel": 330.0}, "geometry": {"type": "Point", "coordinates": [2.4079958846508855, 48.851016885236824]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bbd31348ad88b22bef552950834b772fd764a4bd", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 67, "zemmour_eric": 86.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-17", "geo_shape": {"coordinates": [[[2.365105852221698, 48.82654301176906], [2.365114003884157, 48.82652797433892], [2.365133076789703, 48.82639764474159], [2.365151474822763, 48.82627048993316], [2.365170547551397, 48.826140159400616], [2.365188946764172, 48.82601300456445], [2.365207345887302, 48.82588584971107], [2.36522641833556, 48.82575551912499], [2.365244815914381, 48.82562836422942], [2.365263888174782, 48.825498033607474], [2.365282286933307, 48.82537087868421], [2.365301359005952, 48.82524054802643], [2.365319756220187, 48.825113393060995], [2.365338828104979, 48.82498306236731], [2.365357226499012, 48.82485590737421], [2.365376298184904, 48.824725577543994], [2.365394696407742, 48.824598421616635], [2.365413767905783, 48.82446809175055], [2.3653980031076483, 48.82445343010952], [2.365386952438483, 48.82445186681046], [2.365246172559457, 48.82452300584598], [2.365113403613436, 48.824588594026466], [2.364972622981034, 48.82465973363063], [2.364839854715706, 48.82472532060735], [2.364827109118144, 48.82472658848317], [2.364665233354571, 48.82468837390654], [2.364498428550106, 48.82465048277151], [2.364336553263731, 48.8246122677474], [2.364169748941721, 48.82457437615138], [2.364007874132446, 48.82453616067977], [2.363841070292796, 48.8244982686227], [2.363824944652566, 48.82450216347548], [2.363778354827715, 48.82455369268683], [2.363740210147935, 48.824594820560655], [2.3637382875138693, 48.82459923256231], [2.363734144898129, 48.82472372100932], [2.363729942818307, 48.82484604882575], [2.363725798801096, 48.8249705372379], [2.363721596670824, 48.82509286592645], [2.363717393169765, 48.825215193694966], [2.3637132504552962, 48.825339682072965], [2.363709046914755, 48.82546200981431], [2.363704904160644, 48.82558649816469], [2.363700700569646, 48.82570882677814], [2.363696557776095, 48.825833315100816], [2.363692355518653, 48.82595564279504], [2.363688211323498, 48.82608013108283], [2.363684009026578, 48.82620245874987], [2.363679864791774, 48.826326947009996], [2.363690506622077, 48.8263359209315], [2.363884828928267, 48.82636464196506], [2.364055899443555, 48.826390146987244], [2.364226970126115, 48.82641565176418], [2.364421293025003, 48.82644437192402], [2.364592364064234, 48.826469876177], [2.36478668736651, 48.82649859574173], [2.364957758762507, 48.82652409947084], [2.365099426853456, 48.8265450363245], [2.365105852221698, 48.82654301176906]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 17, "roussel_fabien": 28.0, "nb_emargement": 1308.0, "nb_procuration": 43.0, "nb_vote_blanc": 14.0, "jadot_yannick": 74.0, "le_pen_marine": 82.0, "nb_exprime": 1290.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1693.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1308, "quartier_bv": "50", "geo_point_2d": [48.82549922979484, 2.3644956900882974], "melenchon_jean_luc": 433.0, "poutou_philippe": 9.0, "macron_emmanuel": 436.0}, "geometry": {"type": "Point", "coordinates": [2.3644956900882974, 48.82549922979484]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9f4b57c441c09e68612636f5c5a03be9b918c4e9", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 55, "zemmour_eric": 76.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "9-13", "geo_shape": {"coordinates": [[[2.332294626482992, 48.88285878300268], [2.332290335029563, 48.88286772720476], [2.3323261058462, 48.88298108060055], [2.332369940653602, 48.88312479900245], [2.332405711831619, 48.88323815144874], [2.332449547075, 48.883381869787875], [2.332485318591348, 48.88349522308314], [2.332529154270813, 48.883638941359564], [2.332564926137025, 48.88375229460454], [2.332591836155218, 48.883798802425744], [2.332597385961687, 48.88379924615541], [2.332646848294405, 48.88378763451059], [2.332695387903462, 48.88377321808537], [2.332698043280204, 48.88377340285876], [2.332736093214988, 48.883763281612985], [2.332872719833591, 48.883722702540666], [2.333062035281131, 48.88366514607513], [2.333247202056152, 48.8836101499838], [2.333436516680531, 48.88355259292026], [2.333621682671479, 48.88349759534486], [2.333810995109229, 48.88344003767573], [2.333996160292982, 48.88338504041486], [2.334185473271231, 48.883327482155295], [2.334370637670689, 48.88327248341037], [2.334559949825965, 48.883214924552796], [2.3347451120546783, 48.88315992611481], [2.334934423386883, 48.88310236665923], [2.335119586194941, 48.88304736674478], [2.335308896703964, 48.88298980669121], [2.335494058704941, 48.88293480709128], [2.335683367027338, 48.88287724643216], [2.335868528244083, 48.88282224534818], [2.336057837106944, 48.88276468409869], [2.336173543252111, 48.88273031382901], [2.336195696826763, 48.88273008052474], [2.336216420783186, 48.88271919210547], [2.336285873652225, 48.88269856157305], [2.336465965283371, 48.88264450363629], [2.336651124834496, 48.88258950222963], [2.336722699112342, 48.882568017141004], [2.336748768762548, 48.88255526874878], [2.336731868452488, 48.88252077029587], [2.336725948568283, 48.88242380664268], [2.336717208119548, 48.882334173994884], [2.336708466337469, 48.88224454133162], [2.336702546528236, 48.88214757765292], [2.3367057765532913, 48.882141395554264], [2.336794822498292, 48.882072224811026], [2.336883258695629, 48.8819998400062], [2.336972304162856, 48.88193066912207], [2.337060739884469, 48.88185828327755], [2.337060212363628, 48.88184659263714], [2.336922801868557, 48.88174686826914], [2.336783588379285, 48.88165127966521], [2.336646178940711, 48.88155155406276], [2.336506965117867, 48.881455965112686], [2.336369556712778, 48.881356240074346], [2.336230343931231, 48.88126064988637], [2.336092936571274, 48.88116092451285], [2.3359537248079922, 48.88106533488551], [2.335923243329977, 48.881040003379105], [2.335906843579858, 48.88104000773959], [2.335767633844963, 48.880944417892984], [2.33563841462631, 48.880853384475785], [2.335499204530942, 48.880757793394025], [2.335369987608038, 48.88066675967923], [2.335230778492638, 48.88057116916839], [2.335101562501977, 48.8804801351485], [2.335079952624643, 48.880472354607534], [2.335047381144217, 48.88048251243751], [2.334952056609392, 48.88060078307515], [2.334857683063805, 48.88071694547713], [2.334762356317074, 48.88083521503169], [2.334667981912155, 48.88095137815866], [2.3345726556689073, 48.88106964754458], [2.334478280427525, 48.88118580959797], [2.334382951960955, 48.881304078800085], [2.3342885758600103, 48.88142024157852], [2.334193247897017, 48.88153851061195], [2.334098870959593, 48.8816546723168], [2.334003540761644, 48.88177294206569], [2.333909162976334, 48.88188910359626], [2.33381383329335, 48.88200737227724], [2.3337194546485422, 48.882123534532816], [2.33362412274217, 48.88224180302994], [2.3335297432607582, 48.88235796421191], [2.33352495193183, 48.882361343309924], [2.333374077205427, 48.88242352761363], [2.333224924710796, 48.882483447806145], [2.333074050635929, 48.882545631732434], [2.332924896082837, 48.88260555153696], [2.332775741186614, 48.882665471152436], [2.332624866047947, 48.882727654502375], [2.332475710456798, 48.88278757373742], [2.332324834606229, 48.88284975670238], [2.332294626482992, 48.88285878300268]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 13, "roussel_fabien": 18.0, "nb_emargement": 1256.0, "nb_procuration": 69.0, "nb_vote_blanc": 12.0, "jadot_yannick": 98.0, "le_pen_marine": 45.0, "nb_exprime": 1239.0, "nb_vote_nul": 5.0, "arr_bv": "09", "arthaud_nathalie": 2, "nb_inscrit": 1575.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1256, "quartier_bv": "33", "geo_point_2d": [48.882255930545604, 2.3347549738429842], "melenchon_jean_luc": 376.0, "poutou_philippe": 8.0, "macron_emmanuel": 515.0}, "geometry": {"type": "Point", "coordinates": [2.3347549738429842, 48.882255930545604]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "68a809d30e6a10b1ec6cd3acc136b5f138516571", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 129, "zemmour_eric": 154.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-25", "geo_shape": {"coordinates": [[[2.305383134290451, 48.84680203802523], [2.305383954376858, 48.84680123875557], [2.305413977186818, 48.846792021908925], [2.30558361084542, 48.84673494012369], [2.305752345316084, 48.84668313574152], [2.30592107810067, 48.8466313302118], [2.30609071068079, 48.846574247699344], [2.306108673377769, 48.84656637452721], [2.306102970101701, 48.846549012507616], [2.306126473197544, 48.84640995068942], [2.306149656928294, 48.846270609993624], [2.306173161136591, 48.846131548139354], [2.306196344618766, 48.84599220739977], [2.306219847214349, 48.84585314549371], [2.306243030447857, 48.84571380471022], [2.306266534143914, 48.84557474366748], [2.306289717140724, 48.845435401940875], [2.306313220586552, 48.84529634085421], [2.306336401960169, 48.84515699997514], [2.306327391426342, 48.84514753677587], [2.306138671967264, 48.84510359123593], [2.30595757967293, 48.84506116729985], [2.305768860838437, 48.84501722117316], [2.305587767782804, 48.844974796666094], [2.305406676384551, 48.84493237189122], [2.305217958480975, 48.84488842489041], [2.305036866321229, 48.84484599954457], [2.304848149042253, 48.84480205195703], [2.304816233803135, 48.84479457444905], [2.304805011224089, 48.844786399657586], [2.304791021010089, 48.844786815707714], [2.304641846092388, 48.844751867283016], [2.304484389776423, 48.844715353294916], [2.304303298815317, 48.84467292683208], [2.304145844337584, 48.84463641240372], [2.304145225069855, 48.84463625590955], [2.304005162134739, 48.844597587742534], [2.303857677071274, 48.84455760271816], [2.303717615935434, 48.84451893332043], [2.303570129952623, 48.84447894793076], [2.303563029087925, 48.84446673008142], [2.3036310597151433, 48.84437338970904], [2.303695011730337, 48.84428484705267], [2.3037630418838653, 48.844191506590015], [2.303826994814179, 48.844102963856585], [2.303828309191456, 48.84409872020247], [2.303820357200296, 48.843972523454234], [2.303812669280726, 48.8438492061994], [2.303804981385423, 48.843725889829834], [2.303797029519646, 48.84359969213855], [2.303789341698254, 48.843476375740316], [2.303781389908416, 48.843350178019826], [2.303773702160732, 48.843226861593024], [2.303765750446831, 48.84310066384322], [2.30375675776655, 48.843092577462535], [2.303555886462151, 48.843044782344265], [2.3033723105730353, 48.84300026506446], [2.303358823726871, 48.84300189622293], [2.30320128015242, 48.84309099901432], [2.303049047017716, 48.843177073786244], [2.302896812017774, 48.84326314834984], [2.30273926685172, 48.84335225141126], [2.302736146423229, 48.84335480451312], [2.302636135723055, 48.84347694103249], [2.302535945515289, 48.84360013586475], [2.302532859232691, 48.843602681065676], [2.302432921114654, 48.84365956518498], [2.302322690943706, 48.84372256424677], [2.302301613335885, 48.843727922959914], [2.302298449490187, 48.84373626052127], [2.302188218982338, 48.843799260354125], [2.302106596286087, 48.84384505032022], [2.302105612499954, 48.84384565974764], [2.301976921647436, 48.843933734843695], [2.301851757397731, 48.844019730357495], [2.301723065686396, 48.84410780516674], [2.3015978992372492, 48.84419380039363], [2.301469206667089, 48.844281874916014], [2.301344040743552, 48.844367869871796], [2.301215347326622, 48.84445594320812], [2.301090179191565, 48.84454193877619], [2.300965012018048, 48.84462793331541], [2.300836317318415, 48.84471600622341], [2.300826239652273, 48.844725325912776], [2.300836932241136, 48.844737612582584], [2.300943604216995, 48.84483686489036], [2.3010509366279512, 48.844936383565106], [2.301157608067713, 48.84503563475715], [2.301264942659232, 48.84513515323016], [2.301371614901433, 48.84523440511295], [2.301478948948417, 48.84533392336821], [2.301585623379537, 48.8454331741512], [2.301692958232497, 48.845532693096025], [2.301799632115465, 48.84563194366251], [2.301906969161079, 48.84573146150623], [2.301909427432997, 48.84573756185248], [2.301888575671891, 48.845876852510074], [2.30186763165065, 48.84601702038875], [2.301846778291494, 48.84615631189548], [2.301825834057575, 48.84629647883239], [2.3018049804748832, 48.84643577029691], [2.301784036016236, 48.84657593719135], [2.301763182210003, 48.84671522861363], [2.301742237526625, 48.84685539546564], [2.301721384859349, 48.84699468685365], [2.301700438576582, 48.84713485455449], [2.301679585697919, 48.84727414500099], [2.3016586391904053, 48.84741431265935], [2.301670784053096, 48.84742413984422], [2.301833527943167, 48.847435364889726], [2.301981719248786, 48.847443464960854], [2.3020050702852313, 48.84744581812766], [2.302014610315224, 48.84743779750154], [2.302168749546066, 48.84740643469708], [2.30239562961472, 48.847360802060614], [2.302549768388427, 48.84732943876307], [2.302776649150856, 48.847283805408836], [2.302930787467524, 48.84725244161829], [2.302940378118368, 48.84724469821692], [2.30295828753367, 48.84712145934715], [2.302975793413967, 48.8470045442348], [2.302993299203691, 48.84688763000695], [2.303011208371243, 48.84676439108976], [2.3030100740598938, 48.84675984808997], [2.302925763856194, 48.84663595065795], [2.302841653613368, 48.84651160013677], [2.302757344211571, 48.8463877025585], [2.302673233408775, 48.84626335188328], [2.302588924808976, 48.846139454158696], [2.302504816171169, 48.84601510334531], [2.302420508373455, 48.845891205474466], [2.302336400538139, 48.845766854515], [2.302252093542296, 48.84564295649785], [2.302167985146896, 48.84551860538434], [2.302166839750048, 48.84551561011339], [2.302162651456851, 48.84547385065003], [2.302155914642957, 48.845414412789275], [2.30217448321663, 48.845405370960634], [2.302365002762141, 48.84545475102683], [2.302549869770922, 48.84550265075391], [2.302740390015699, 48.84555203111731], [2.302925259089163, 48.84559992936881], [2.30311578004524, 48.8456493091301], [2.303300649808679, 48.84569720679738], [2.303491171476156, 48.845746585956526], [2.303676041917652, 48.84579448393882], [2.303860911348504, 48.84584238072618], [2.304051434077432, 48.84589175898672], [2.30423630556082, 48.84593965519773], [2.304426829001135, 48.84598903285616], [2.304611701162585, 48.84603692938223], [2.304802225326179, 48.846086305539224], [2.30480946669267, 48.84609865271981], [2.304730833007524, 48.84620394480657], [2.304652680093414, 48.84630861906662], [2.304574045774695, 48.846413911030474], [2.3044958922309062, 48.846518585168376], [2.304417257278507, 48.84662387700938], [2.304339104467529, 48.84672855103303], [2.304260467519047, 48.84683384274322], [2.304182314078181, 48.84693851664475], [2.304183734457052, 48.84694797361999], [2.304267963072129, 48.8470142447159], [2.304363961367371, 48.84709665131136], [2.304380237352131, 48.84709940626383], [2.304545547351322, 48.84705156245982], [2.304714283879002, 48.84699975955643], [2.304879593255335, 48.846951915286596], [2.305048329128328, 48.84690011190742], [2.305213637882004, 48.84685226717175], [2.305352350279898, 48.846809680155495], [2.305383134290451, 48.84680203802523]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 25, "roussel_fabien": 17.0, "nb_emargement": 1276.0, "nb_procuration": 81.0, "nb_vote_blanc": 7.0, "jadot_yannick": 100.0, "le_pen_marine": 55.0, "nb_exprime": 1268.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1587.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1276, "quartier_bv": "58", "geo_point_2d": [48.845320573086155, 2.3035158026216975], "melenchon_jean_luc": 194.0, "poutou_philippe": 3.0, "macron_emmanuel": 564.0}, "geometry": {"type": "Point", "coordinates": [2.3035158026216975, 48.845320573086155]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "027bac12e69e411ce7898bda83841e36a626f87b", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 89, "zemmour_eric": 94.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "5-9", "geo_shape": {"coordinates": [[[2.336693413753543, 48.839680198857884], [2.336727493543385, 48.83973674571574], [2.336736573672481, 48.83985084289197], [2.336746041927525, 48.83999611513425], [2.3367551221425122, 48.84011021228255], [2.336764589133936, 48.84025548448207], [2.336773670797145, 48.84036958161001], [2.336783137887378, 48.84051485377439], [2.3367922196362843, 48.84062895087441], [2.336798628994606, 48.840677022419484], [2.336819968844122, 48.84068868588198], [2.336979466835368, 48.840710080045035], [2.337193589757331, 48.840784717814], [2.337245319325385, 48.840822959440096], [2.337251743299759, 48.84082780573596], [2.337290614433732, 48.8408565417588], [2.3373619081395782, 48.840984413628284], [2.337430155385431, 48.841110478828654], [2.33750145114333, 48.84123835059344], [2.337569699059208, 48.84136441568551], [2.337640994144358, 48.841492287330524], [2.337709242718836, 48.84161835321359], [2.337780539867603, 48.84174622385461], [2.337848789112127, 48.8418722896294], [2.337920085576825, 48.8420001610499], [2.337988335502722, 48.84212622581712], [2.338059634019641, 48.84225409713288], [2.338127884615599, 48.84238016179182], [2.338199182459781, 48.84250803298776], [2.338267433714488, 48.84263409843769], [2.338338733610823, 48.842761969528944], [2.338406985547031, 48.842888033971235], [2.338478284770633, 48.84301590494266], [2.338546537376927, 48.84314196927668], [2.338617838652916, 48.84326984014334], [2.338686091917796, 48.843395905268395], [2.33875739389499, 48.84352377512346], [2.338825647829981, 48.84364984014013], [2.338896949123042, 48.843777710774745], [2.338965203739557, 48.8439037747838], [2.338988237801611, 48.843920697656536], [2.339080286471905, 48.84390075292224], [2.339244741127807, 48.84379803769238], [2.339439086566378, 48.84371207962545], [2.3394425956968252, 48.84371096940197], [2.33964859789581, 48.84366745602963], [2.33983263823749, 48.84362936748128], [2.339883580201421, 48.84361860711051], [2.33988399699267, 48.8436179744602], [2.339867572793083, 48.843588351453704], [2.339863807475869, 48.84345499562959], [2.33985949872909, 48.84332183734854], [2.33985573345179, 48.84318848149232], [2.339851424747672, 48.84305532317918], [2.339847659510385, 48.84292196729084], [2.339843350848828, 48.842788808945556], [2.339839585651454, 48.842655453025124], [2.339835277032555, 48.84252229464776], [2.339831511875093, 48.84238893869521], [2.33982720193647, 48.842255780278265], [2.339823438181303, 48.842122424301145], [2.339819128285347, 48.84198926585211], [2.339815364570082, 48.8418559098429], [2.339811054716791, 48.84172275136176], [2.339807289679062, 48.84158939531292], [2.339802981230803, 48.841456236807176], [2.339799216232984, 48.841322880726274], [2.33979490782738, 48.8411897221885], [2.339793534185591, 48.84118597414927], [2.33970672757677, 48.841068408523256], [2.339618238829658, 48.840947817063366], [2.339531434375231, 48.84083025129261], [2.339442946438023, 48.84070965967731], [2.339356142775622, 48.840592093754296], [2.339267655648306, 48.84047150198363], [2.339180852777923, 48.840353935908325], [2.33909236646049, 48.84023334398229], [2.339005563019786, 48.840115777747194], [2.338917077512227, 48.83999518566578], [2.338830276225851, 48.839877619285964], [2.338741791528154, 48.83975702704918], [2.338654991033766, 48.839639460517084], [2.338566507145921, 48.839518868124905], [2.338574526897702, 48.83950640138534], [2.338763309026334, 48.83946558048081], [2.338948008644166, 48.8394262800302], [2.339136788827694, 48.83938545852582], [2.339321489242412, 48.83934615750326], [2.339510268843243, 48.83930533540653], [2.339694967330021, 48.83926603379698], [2.33988374634815, 48.83922521110792], [2.340068445631799, 48.83918590892643], [2.340257224067118, 48.83914508564507], [2.340441922785326, 48.83910578288406], [2.340630700637929, 48.839064959010386], [2.340815397428186, 48.83902565566242], [2.340847155617261, 48.839015397117414], [2.340838837098504, 48.83899012854664], [2.340792808289795, 48.838857009682606], [2.340742016059331, 48.83872306679281], [2.34071542818666, 48.838659033741195], [2.340686125475771, 48.838661957961385], [2.340563392897755, 48.83868881013744], [2.3404053055351293, 48.83872083376279], [2.340209328014288, 48.8387637104022], [2.340051240207065, 48.83879573355748], [2.339893153567888, 48.8388277565104], [2.33969717523513, 48.83887063140735], [2.339696445460241, 48.838870806352915], [2.339513764673458, 48.83892001214494], [2.339335829202086, 48.83896651698685], [2.339153147739426, 48.83901572222391], [2.338975212982081, 48.83906222653297], [2.33879253084355, 48.839111431215095], [2.338614594086641, 48.839157934076916], [2.338431911272243, 48.83920713820411], [2.33825397385556, 48.839253641424804], [2.338076037483677, 48.83930014438648], [2.337893353662456, 48.839349347684944], [2.337715415279805, 48.83939585009862], [2.337532730782724, 48.839445052842166], [2.337354793125359, 48.83949155382372], [2.3371721079524272, 48.83954075601229], [2.336994168272866, 48.839587257345165], [2.336811482424082, 48.8396364589788], [2.336707825535255, 48.839663547859985], [2.336693413753543, 48.839680198857884]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 9, "roussel_fabien": 15.0, "nb_emargement": 1344.0, "nb_procuration": 87.0, "nb_vote_blanc": 7.0, "jadot_yannick": 118.0, "le_pen_marine": 33.0, "nb_exprime": 1333.0, "nb_vote_nul": 4.0, "arr_bv": "05", "arthaud_nathalie": 0, "nb_inscrit": 1585.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1344, "quartier_bv": "19", "geo_point_2d": [48.841139589617015, 2.3386370250128166], "melenchon_jean_luc": 325.0, "poutou_philippe": 5.0, "macron_emmanuel": 592.0}, "geometry": {"type": "Point", "coordinates": [2.3386370250128166, 48.841139589617015]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ca8e7742b206507beda7f7e7ac4aa7a0da131389", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 11, "zemmour_eric": 50.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-71", "geo_shape": {"coordinates": [[[2.386055899986467, 48.89796431563725], [2.386044786297887, 48.897982336680435], [2.386146959992599, 48.898112956128315], [2.386239107885987, 48.89824422105918], [2.386230906543157, 48.89825655898623], [2.386044137923209, 48.898296164334276], [2.385860685787247, 48.89833546714146], [2.385673916613083, 48.898375071010015], [2.385490463919576, 48.89841437324728], [2.385303694170185, 48.8984539774349], [2.385120240919036, 48.898493279102226], [2.384933470615554, 48.89853288181038], [2.384750016806974, 48.89857218290778], [2.3845632459281623, 48.89861178593499], [2.384379791561949, 48.89865108646245], [2.38419302012907, 48.89869068801017], [2.384009565205438, 48.89872998796769], [2.383822793197127, 48.89876958983448], [2.383639337715975, 48.89880888922206], [2.383452565153722, 48.89884848960936], [2.38326910911506, 48.898887788427], [2.383082335977373, 48.898927389133355], [2.382898879381202, 48.89896668738104], [2.382894295251122, 48.898967114316775], [2.382692283839677, 48.8989631207992], [2.382490856221539, 48.898959015737944], [2.382288843508495, 48.8989550215328], [2.382087417317588, 48.89895091580002], [2.381885404666932, 48.89894692091437], [2.381683978539189, 48.89894281450303], [2.381481965950931, 48.89893881893686], [2.381280538522385, 48.89893471183993], [2.3810785273711, 48.898930714701045], [2.380877099995049, 48.898926607824826], [2.380675088906291, 48.89892261000543], [2.380473661593427, 48.898918502450655], [2.380271649203133, 48.898914503943665], [2.38007022331734, 48.89891039571742], [2.379868210989491, 48.89890639652996], [2.379666785167009, 48.89890228762516], [2.379464772901619, 48.89889828775715], [2.379263345778381, 48.898894178166735], [2.379061334939433, 48.89889017762527], [2.378859907890054, 48.89888606645708], [2.378657897102854, 48.89888206613437], [2.378456470116824, 48.898877954287606], [2.378254458028134, 48.89887395327731], [2.378053032469335, 48.898869840759055], [2.377851020443138, 48.89886583906826], [2.377649594947504, 48.89886172587151], [2.37744758298381, 48.89885772350015], [2.377246156187585, 48.89885360961777], [2.377044145661138, 48.89884960567377], [2.376842718917441, 48.898845492012065], [2.3766407084535253, 48.898841487387536], [2.37643928177302, 48.89883737304735], [2.376237270007673, 48.898833367735186], [2.376035844754545, 48.89882925272354], [2.37583383305175, 48.898825246730866], [2.375632407861935, 48.89882113104067], [2.375430396221704, 48.89881712436748], [2.375228969742034, 48.89881300709238], [2.375026959517454, 48.89880900064509], [2.374825533101126, 48.898804882691394], [2.374623522939222, 48.898800875563595], [2.374422096586248, 48.89879675693137], [2.374220086486932, 48.89879274912307], [2.374018660197217, 48.89878862981233], [2.37381664879653, 48.89878462131638], [2.37361522393426, 48.89878050133421], [2.373413212607003, 48.89877649125845], [2.373211786433325, 48.8987723714899], [2.373009776532664, 48.8987683607408], [2.372808350422271, 48.89876424029368], [2.372606340584246, 48.89876022886406], [2.372404914537353, 48.8987561077384], [2.3722029047619753, 48.89875209562827], [2.372001478778489, 48.89874797382407], [2.3717994677018, 48.898743961026284], [2.3715980431456, 48.89873983855073], [2.371396032131579, 48.898735825072436], [2.371194606285802, 48.89873170101187], [2.370992596687567, 48.89872768775951], [2.370791170905237, 48.89872356302043], [2.370589161369683, 48.898719549087524], [2.3703877356507093, 48.89871542366991], [2.370299217233379, 48.89871550416809], [2.370291247998623, 48.898740697948355], [2.370285030517687, 48.89887186363365], [2.3702785780327122, 48.89900181848889], [2.370272360499646, 48.899132983243], [2.37026590795068, 48.89926293806653], [2.370259690354405, 48.89939410278863], [2.370253237741446, 48.899524057580464], [2.370247020071183, 48.89965522316989], [2.370240567405109, 48.899785177030736], [2.370234349671736, 48.89991634258821], [2.370227896941667, 48.90004629641735], [2.370221679145286, 48.90017746194282], [2.370215224987212, 48.90030741573311], [2.370209008491627, 48.90043858123377], [2.37020255426955, 48.9005685349923], [2.370196337710857, 48.90069970046099], [2.370189883413898, 48.90082965508709], [2.370183665439053, 48.90096081961738], [2.370177212442115, 48.901090774218936], [2.370170759423838, 48.901220727905404], [2.370164541343116, 48.90135189328703], [2.37015808826084, 48.901481846941806], [2.370151870117001, 48.901613012291435], [2.370152495576638, 48.90161599860105], [2.370200832804423, 48.90171701628034], [2.370251577251595, 48.901820566460756], [2.370265534579417, 48.901833556673374], [2.3703203959431542, 48.901839803058145], [2.370442247862003, 48.90184241490967], [2.370643761108265, 48.901846507345574], [2.370760343481636, 48.901849006648135], [2.37096185677842, 48.90185309854879], [2.37116625853077, 48.9018574795659], [2.371367771892253, 48.90186157078359], [2.371572175075976, 48.90186595111506], [2.371773688502151, 48.90187004164983], [2.371978090389336, 48.90187442128139], [2.372023061773616, 48.901875385524484], [2.372059047350059, 48.90187615605188], [2.372260560853988, 48.901880245767444], [2.372486637089053, 48.90188508885935], [2.372688150661048, 48.901889177855466], [2.372785771487475, 48.90189126830626], [2.372838186325664, 48.901892390831186], [2.373039699953637, 48.901896479235795], [2.373235714889848, 48.90190067881931], [2.3734372285811203, 48.90190476655511], [2.373633244944655, 48.90190896549513], [2.373834758699115, 48.90191305256205], [2.374030773761959, 48.90191725084435], [2.374232287579699, 48.90192133724244], [2.374428302705795, 48.901925534874124], [2.374629816586804, 48.90192962060336], [2.374825831776141, 48.90193381758439], [2.375027345720408, 48.9019379026448], [2.375223360983768, 48.901942098076006], [2.375424874991282, 48.90194618246751], [2.375627368187623, 48.901950517136505], [2.375828882259421, 48.901954600848285], [2.376031375532822, 48.90195893393499], [2.376232889668992, 48.90196301696699], [2.376435382997983, 48.9019673502699], [2.376636897198417, 48.90197143262214], [2.376828545930643, 48.90197553255241], [2.377030060193477, 48.90197961424316], [2.37722171035084, 48.90198371355139], [2.377423224676268, 48.901987794580606], [2.377614873530546, 48.90199189325264], [2.377816387918458, 48.90199597362036], [2.378008036833901, 48.902000071663224], [2.378199685779518, 48.902004169399454], [2.378401200260781, 48.902008248783204], [2.378602714773525, 48.902012327827876], [2.37883392677622, 48.90201726741503], [2.379035441357879, 48.90202134573166], [2.379266653441582, 48.90202628448343], [2.379357150444557, 48.902028218442204], [2.379558665109593, 48.90203229587847], [2.379605250121055, 48.902033290812746], [2.379635748111914, 48.90203394160578], [2.379666179265916, 48.902034592044906], [2.379691576750881, 48.90203513456913], [2.37971510587575, 48.90203563683535], [2.379916620597537, 48.90203971366933], [2.379931270222016, 48.90204002603176], [2.3801482992601253, 48.902044660328336], [2.380349814050661, 48.902048736433436], [2.380385232539243, 48.9020494925309], [2.380477670279558, 48.90205146625918], [2.38067918512233, 48.9020555418101], [2.380928434746564, 48.90206086289657], [2.381129949660996, 48.90206493768909], [2.381289876423316, 48.90206835125701], [2.381491391395024, 48.90207242544141], [2.381624554172962, 48.90207526777932], [2.381757715612165, 48.90207810906293], [2.381959230658256, 48.90208218246019], [2.382163711983563, 48.90208654510956], [2.382365227093974, 48.90209061782371], [2.382569708486436, 48.902094979779925], [2.382771223661359, 48.90209905181095], [2.382975705110306, 48.90210341397327], [2.383177220349633, 48.90210748532118], [2.383381701876375, 48.90211184589109], [2.383583217180091, 48.902115916555886], [2.3835891250527, 48.90211604228819], [2.383815165191729, 48.90212086200095], [2.384016680564237, 48.902124931936456], [2.384242719417287, 48.90212975083527], [2.384444234857627, 48.90213382005136], [2.384607062450189, 48.90210304959206], [2.384801369045889, 48.90206678393875], [2.384919619678502, 48.902044436351765], [2.385113924473621, 48.90200817018246], [2.385314070802457, 48.90197034549457], [2.385508375046228, 48.90193407868297], [2.38570852080359, 48.901896253333376], [2.385902824496005, 48.90185998587934], [2.386102968317834, 48.90182215986107], [2.386297271458885, 48.90178589176472], [2.3864974160732793, 48.901748065091724], [2.38669171866296, 48.90171179635302], [2.386891862705856, 48.901673969018326], [2.38708616474416, 48.901637699637305], [2.387286308215551, 48.901599871640926], [2.387480609702469, 48.9015636016175], [2.387680752602349, 48.90152577295941], [2.387875053537874, 48.90148950229368], [2.388075194502193, 48.90145167296694], [2.388269494886319, 48.90141540165886], [2.388319821900565, 48.90140588857769], [2.388369437980241, 48.901396510338785], [2.388451542617897, 48.90138099200024], [2.388645842475988, 48.90134472007925], [2.388765199921938, 48.90132215941183], [2.38879284058515, 48.90131693427964], [2.388822423932009, 48.90131134224301], [2.389016723271721, 48.901275069718096], [2.389065511994285, 48.90126584704781], [2.389083268257372, 48.901262490559155], [2.38910941047888, 48.901257549087646], [2.389127404612903, 48.90125414794087], [2.389268745031787, 48.90122743165936], [2.389463043757872, 48.901191157508364], [2.389466942789765, 48.90119042106313], [2.389643822589023, 48.90115698598142], [2.389838120790821, 48.90112071121961], [2.390015001478958, 48.90108727559457], [2.390209299151394, 48.90105100112757], [2.390352730165945, 48.901023886823445], [2.390547027366458, 48.90098761180648], [2.390690459383955, 48.90096049800259], [2.390690810916713, 48.90096029924448], [2.390813716896925, 48.900891029062], [2.390959975109339, 48.900808047889115], [2.391100284841295, 48.90072896808228], [2.391246542152124, 48.90064598564786], [2.391386851012075, 48.90056690549359], [2.3915331074002912, 48.900483923596205], [2.391673415388038, 48.90040484309452], [2.391819670864162, 48.90032186083489], [2.391959977979813, 48.900242779985845], [2.392106232543952, 48.90015979736396], [2.392246538787512, 48.90008071616742], [2.392392792439467, 48.89999773318336], [2.39253309781094, 48.89991865163942], [2.392679350550817, 48.8998356682931], [2.392824389448175, 48.899753916963505], [2.392970641260933, 48.899670933249], [2.393115680595419, 48.89958918246049], [2.393261931481065, 48.89950619837779], [2.393406968535186, 48.899424447217314], [2.3935532184937243, 48.899341462766394], [2.393598680497859, 48.89931583772493], [2.393608208160639, 48.89931046670809], [2.393766551769307, 48.89922121386087], [2.393912800583729, 48.89913822895544], [2.394059048931901, 48.89905524386514], [2.394217390991365, 48.89896599040107], [2.394363638370159, 48.898883004925786], [2.394521979383561, 48.898793751044934], [2.394668227156953, 48.898710765191524], [2.394826567124296, 48.89862151089393], [2.394972812574797, 48.898538523749394], [2.395131151496087, 48.898449269035076], [2.395277395966772, 48.898366282404815], [2.395389434738066, 48.898303126337], [2.395417345446784, 48.89826869583843], [2.395403301876359, 48.898258448314124], [2.395206913128029, 48.89825191335665], [2.395006144090454, 48.89824565452142], [2.394809755450798, 48.8982391180134], [2.394608985146258, 48.89823285850543], [2.394412596604742, 48.898226321346044], [2.394211827761366, 48.89822006117914], [2.394015439317896, 48.89821352336844], [2.393814669207679, 48.89820726252877], [2.393618280862369, 48.898200724066726], [2.393417512213234, 48.89819446256809], [2.393221123955712, 48.89818792435399], [2.393020355414091, 48.89818166129027], [2.392823967254741, 48.89817512242484], [2.392623197446418, 48.898168858688315], [2.392426809385148, 48.898162319171576], [2.392226041027445, 48.8981560556754], [2.392029653074864, 48.898149514608036], [2.39182888345037, 48.898143250439105], [2.391632495596099, 48.898136708720415], [2.391431727432637, 48.898130443892526], [2.391235339676584, 48.89812390152249], [2.391034571610306, 48.89811763602876], [2.39083818395248, 48.89811109300746], [2.390637414619545, 48.89810482684095], [2.390441027049326, 48.898098284067544], [2.390240259188082, 48.89809201634286], [2.390043871716103, 48.89808547291814], [2.3898431025775873, 48.898079205419904], [2.389646715214501, 48.898072660444605], [2.389445947537063, 48.89806639228749], [2.3892495602722432, 48.89805984666084], [2.389048792692042, 48.898053577837864], [2.388852404161546, 48.89804703155298], [2.388651636678693, 48.898040762064156], [2.388455249610336, 48.89803421513485], [2.388254482224739, 48.89802794498018], [2.388058095254677, 48.89802139739957], [2.3878573266023952, 48.8980151265721], [2.387660939720166, 48.89800857923943], [2.387460172539587, 48.898002306853826], [2.3872637857556662, 48.897995758869854], [2.387063018661895, 48.897989486717634], [2.386866630622829, 48.897982937176074], [2.386665863626355, 48.89797666435801], [2.386469477049577, 48.897970114172146], [2.386268710150409, 48.897963840688256], [2.386072323672078, 48.89795728985101], [2.386055899986467, 48.89796431563725]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 71, "roussel_fabien": 10.0, "nb_emargement": 821.0, "nb_procuration": 14.0, "nb_vote_blanc": 11.0, "jadot_yannick": 14.0, "le_pen_marine": 58.0, "nb_exprime": 803.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1241.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 821, "quartier_bv": "74", "geo_point_2d": [48.900129718715995, 2.381708750639424], "melenchon_jean_luc": 498.0, "poutou_philippe": 4.0, "macron_emmanuel": 132.0}, "geometry": {"type": "Point", "coordinates": [2.381708750639424, 48.900129718715995]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6bd3ba1e35205c7651656ca571ef86b1592c4bc4", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 75, "zemmour_eric": 127.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-17", "geo_shape": {"coordinates": [[[2.304420622363052, 48.890324307089955], [2.304392172486504, 48.890330066597464], [2.304357739131754, 48.89034391946677], [2.304157806864581, 48.89042434486063], [2.303985521367386, 48.890493655742446], [2.303983914210061, 48.890494412628364], [2.303869668038221, 48.89055693440913], [2.303755718356688, 48.89061929322589], [2.303641470261064, 48.89068181567313], [2.303527520032941, 48.890744174265606], [2.303527172520251, 48.89074435840525], [2.303373615175076, 48.890823109652594], [2.30316710193669, 48.89092879318644], [2.303013543515041, 48.891007543059565], [2.302912139721123, 48.89105977390718], [2.302910725054746, 48.89106041228846], [2.302808661050704, 48.89110051536511], [2.302703559991615, 48.89114181206345], [2.302698586756594, 48.891142981907166], [2.302614802177577, 48.89115120217129], [2.302496443698615, 48.89116281560469], [2.302457994213878, 48.89114052212786], [2.302444577269087, 48.89114404487873], [2.3023688270834892, 48.891201630012695], [2.302294645975258, 48.89126057862671], [2.30228563100839, 48.89126301723763], [2.3022710784, 48.891274443838775], [2.302206981008804, 48.891325379684815], [2.302086961912626, 48.891423401233816], [2.301948682269511, 48.89153328535942], [2.3018286622078348, 48.891631306630956], [2.301690380103683, 48.89174119042951], [2.301570359088561, 48.89183921052431], [2.301570944818302, 48.89185095735731], [2.301595891985081, 48.89186879442851], [2.3016211774820112, 48.89188733764061], [2.301621309347809, 48.891899266187856], [2.301496054476353, 48.89199384542332], [2.301377244883614, 48.892082725317216], [2.301251989127386, 48.89217730428157], [2.301133178687326, 48.89226618481772], [2.301007922046519, 48.89236076351098], [2.300889110783273, 48.892449642890796], [2.300763853257678, 48.89254422131297], [2.300645042510888, 48.89263310134299], [2.300639837242898, 48.89263660529735], [2.300646873893439, 48.892665007562705], [2.300803195657185, 48.89273861478941], [2.300972636053038, 48.892818597268395], [2.30112895737464, 48.892892204051556], [2.301298398758672, 48.89297218695769], [2.301345049125347, 48.892994152693106], [2.301501279342063, 48.89306771527311], [2.301670721869317, 48.89314769763962], [2.3018269530189492, 48.8932212588852], [2.301996396546075, 48.89330124077969], [2.30215262861666, 48.89337480159008], [2.302322073143765, 48.89345478301255], [2.302324686264258, 48.893456013226235], [2.302389862462868, 48.89348670111477], [2.302559307718568, 48.893566682193416], [2.302697885083334, 48.89363192949607], [2.302836462795319, 48.89369717663442], [2.303005910785876, 48.893777157073714], [2.303169622080519, 48.89385504172927], [2.303339069732797, 48.89393502167769], [2.303339115813609, 48.89393504352959], [2.303519971206714, 48.894021082682116], [2.303684404114195, 48.89409937999757], [2.303757282546255, 48.894134050045515], [2.303921717519202, 48.894212347934236], [2.304082708756411, 48.894288934844916], [2.304247143343968, 48.89436723226782], [2.304408135538792, 48.894443818730224], [2.304572572480761, 48.894522114803856], [2.304733565621195, 48.89459870171716], [2.304898003541722, 48.8946769973329], [2.305051746611375, 48.894750135077516], [2.305216185488664, 48.894828430245504], [2.305369929464351, 48.8949015666723], [2.305534369298504, 48.894979861392585], [2.305688114168322, 48.89505299740074], [2.305759520644773, 48.895086965170684], [2.305923961638269, 48.89516526024198], [2.305966754207331, 48.89518561534326], [2.305967022521964, 48.89518574640096], [2.306104446048999, 48.8952511169276], [2.306284547854404, 48.895341369708476], [2.306421972190988, 48.89540673986147], [2.306602075085161, 48.89549699215202], [2.306771389449213, 48.89557753106602], [2.306960987847953, 48.895663803395976], [2.307130304673476, 48.89574434179816], [2.307216707661575, 48.89578544073189], [2.307406307555268, 48.89587171234049], [2.307505290354417, 48.89591879506466], [2.307522222291578, 48.89592517924378], [2.307532540795769, 48.8959290691275], [2.307718152265161, 48.896001379449714], [2.307891288727443, 48.89606665841692], [2.308076901185618, 48.89613896817404], [2.308250039919056, 48.89620424662233], [2.308414529327618, 48.89626342332031], [2.308587667534472, 48.8963287012652], [2.308698704106381, 48.896370565443924], [2.308863194550279, 48.89642974151673], [2.30904536870029, 48.8964984245055], [2.309209859942283, 48.896557600095214], [2.309392034997018, 48.89662628254871], [2.309556527037004, 48.89668545765539], [2.309558584557843, 48.896686233042516], [2.309602827553976, 48.89669337871846], [2.309614721201988, 48.89667859137427], [2.309764867256348, 48.89659116135448], [2.309909548066391, 48.89650727715523], [2.310059693131582, 48.89641984675213], [2.310204371626625, 48.896335962175776], [2.3103490496434382, 48.896252078317474], [2.310499194610399, 48.89616464645157], [2.310643871676229, 48.896080762223924], [2.310794014278234, 48.89599333086616], [2.31093869040489, 48.89590944536998], [2.311088832017748, 48.89582201362892], [2.311233508557208, 48.895738127771345], [2.311383649180923, 48.895650695646985], [2.311528323405428, 48.89556680941227], [2.311678463040008, 48.89547937690462], [2.311823137677318, 48.89539549030849], [2.311973276322766, 48.89530805741754], [2.312112879768208, 48.89522946892064], [2.312263017448425, 48.89514203565323], [2.312402621375214, 48.89506344681448], [2.312552758101874, 48.89497601227133], [2.312692361146143, 48.89489742308291], [2.312842496895704, 48.89480998906249], [2.312982097693604, 48.89473139951662], [2.31313223248961, 48.89464396422046], [2.313271833768959, 48.894565374332764], [2.313421967587784, 48.89447793955939], [2.313561567984526, 48.89439934932201], [2.3135654259657112, 48.89438490940605], [2.313553774743822, 48.89436633183167], [2.313394240070395, 48.894302136295686], [2.313235115579626, 48.894236860107135], [2.31307558169582, 48.8941726641391], [2.312916459364105, 48.894107387527264], [2.312756926269917, 48.89404319112711], [2.312597803369576, 48.893977914076345], [2.312438271065008, 48.893913717244125], [2.312279148971758, 48.89384843886292], [2.312119617444932, 48.893784242497894], [2.311960496146899, 48.89371896368559], [2.311800966773513, 48.893654766896304], [2.311641846270696, 48.89358948765293], [2.311482316323092, 48.893525290423696], [2.311323196615491, 48.89346001074922], [2.311300905146641, 48.89345236958851], [2.311249904164871, 48.89345602340197], [2.311249341376721, 48.89345577914595], [2.311090786212306, 48.893383330284585], [2.3109342175821252, 48.893311789264175], [2.310775661930868, 48.89323933996822], [2.310619094166676, 48.893167798526385], [2.31046054075621, 48.893095348811556], [2.310303973858102, 48.89302380694835], [2.3101454199608, 48.89295135679891], [2.309988853928575, 48.89287981451429], [2.30983228833853, 48.89280827112108], [2.309673737117728, 48.89273582034074], [2.309517172381743, 48.892664277425375], [2.309358620674108, 48.89259182621045], [2.309202056804101, 48.892520282873726], [2.30904350733723, 48.892447831239934], [2.308886944333196, 48.89237628748182], [2.308728394379496, 48.89230383541343], [2.30857183225348, 48.8922322903347], [2.308413284540431, 48.89215983784744], [2.308256723268445, 48.89208829324657], [2.308098175068671, 48.89201584032478], [2.307941614662552, 48.89194429530255], [2.307783068703519, 48.891871841961894], [2.307792068433228, 48.89184755820509], [2.307782153066785, 48.89183976937574], [2.307614458565275, 48.89176313500625], [2.307446935915407, 48.89168899791911], [2.307279242392762, 48.89161236306967], [2.307111720705284, 48.89153822550339], [2.306944028161706, 48.891461590173975], [2.306776507436618, 48.891387452128555], [2.306608815871901, 48.891310816319184], [2.306441297472961, 48.891236677802574], [2.306273606887304, 48.89116004151322], [2.306106088086984, 48.89108590250956], [2.305938569763716, 48.89101176326654], [2.305770880642347, 48.89093512625747], [2.305603364645211, 48.89086098654326], [2.305435676502693, 48.89078434905431], [2.3052681601041822, 48.89071020885303], [2.305100472940614, 48.89063357088413], [2.304932957516586, 48.89055942930448], [2.304765271319963, 48.89048279175494], [2.304597758221953, 48.89040864970413], [2.304430073004269, 48.89033201167462], [2.304420622363052, 48.890324307089955]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 17, "roussel_fabien": 16.0, "nb_emargement": 1204.0, "nb_procuration": 33.0, "nb_vote_blanc": 13.0, "jadot_yannick": 54.0, "le_pen_marine": 63.0, "nb_exprime": 1186.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1612.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1205, "quartier_bv": "67", "geo_point_2d": [48.893520605128096, 2.306942238605744], "melenchon_jean_luc": 468.0, "poutou_philippe": 6.0, "macron_emmanuel": 331.0}, "geometry": {"type": "Point", "coordinates": [2.306942238605744, 48.893520605128096]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1b9f88f6edf0681a6ad8fe0b94e5aaf6351327f5", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 75, "zemmour_eric": 117.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-27", "geo_shape": {"coordinates": [[[2.300826239652273, 48.844725325912776], [2.300836317318415, 48.84471600622341], [2.300965012018048, 48.84462793331541], [2.301090179191565, 48.84454193877619], [2.301215347326622, 48.84445594320812], [2.301344040743552, 48.844367869871796], [2.301469206667089, 48.844281874916014], [2.3015978992372492, 48.84419380039363], [2.301723065686396, 48.84410780516674], [2.301851757397731, 48.844019730357495], [2.301976921647436, 48.843933734843695], [2.302105612499954, 48.84384565974764], [2.302106596286087, 48.84384505032022], [2.302188218982338, 48.843799260354125], [2.302298449490187, 48.84373626052127], [2.302301613335885, 48.843727922959914], [2.302287015212365, 48.843716667690195], [2.30211611813366, 48.843650799552655], [2.301943233070253, 48.843584146109194], [2.3017723368605703, 48.84351827747272], [2.301599452676521, 48.843451623524565], [2.30142855597325, 48.84338575438123], [2.301255672668459, 48.843319099928344], [2.301084778196721, 48.84325323029402], [2.3009118957711863, 48.84318657533642], [2.300883406387012, 48.8431487163757], [2.300863236688595, 48.843151916266486], [2.300669404328114, 48.84319945885529], [2.300476229928091, 48.84324576924722], [2.300282395503033, 48.843293311197016], [2.300089220411376, 48.8433396209601], [2.299895385284149, 48.84338716227886], [2.299702209500762, 48.84343347141316], [2.299508375033984, 48.8434810121088], [2.29931519719636, 48.84352732060633], [2.299121362027628, 48.843574860670955], [2.298928184860697, 48.8436211685476], [2.2987343476274003, 48.84366870797317], [2.298541169768857, 48.843715015221015], [2.29853595882455, 48.84371554766988], [2.298348975995567, 48.84371046783665], [2.298154929480696, 48.84370407186728], [2.297967948092442, 48.843698991446466], [2.297773901667062, 48.84369259485897], [2.297586918994714, 48.84368751383459], [2.297392872658835, 48.84368111662902], [2.297205891427232, 48.84367603501703], [2.297011845180864, 48.84366963719338], [2.296824862665185, 48.84366455497782], [2.296630816496098, 48.84365815743533], [2.296443835433418, 48.84365307373292], [2.296249789353955, 48.84364667557234], [2.296062806994975, 48.84364159216564], [2.295868762379603, 48.84363519249565], [2.295838995291498, 48.843652820258235], [2.295836594099089, 48.843678860789794], [2.295880746111358, 48.843723768847056], [2.295881129465214, 48.84372413804514], [2.295985839692875, 48.8438238240746], [2.296093119255048, 48.843921864887875], [2.296197830297582, 48.84402154981484], [2.296305109303113, 48.84411959041258], [2.296409822498763, 48.84421927604365], [2.296517102310084, 48.84431731643391], [2.29651759530763, 48.84431774023645], [2.296655664338432, 48.844429886430206], [2.296794692146678, 48.844542215260795], [2.296932762356187, 48.84465436201147], [2.297071791360481, 48.84476669049742], [2.297209861410629, 48.8448788359984], [2.297348892973526, 48.84499116414772], [2.297486964214531, 48.845103309306374], [2.297625996973503, 48.84521563711102], [2.297655531476105, 48.84523611728267], [2.297656846318698, 48.84523845076142], [2.297674973307434, 48.84525090546973], [2.297774462290263, 48.84531989433855], [2.297882322874202, 48.845394198935324], [2.297901744292627, 48.84540373466842], [2.297946068841651, 48.84536911199671], [2.29810272132896, 48.84525680555591], [2.298262701076242, 48.845140625964746], [2.298419352194453, 48.84502831908633], [2.298579330534422, 48.84491213904795], [2.298595803019543, 48.84491024443054], [2.298783449716089, 48.84497598456429], [2.298967624675131, 48.845041233685045], [2.299155273674874, 48.84510697323586], [2.299339449562331, 48.845172221776586], [2.299351632529685, 48.84517245411445], [2.299533676283412, 48.84511665864672], [2.299716539147174, 48.845060720200195], [2.299898582119947, 48.84500492417159], [2.300081442837445, 48.84494898515379], [2.300263485029162, 48.84489318856438], [2.300446344962952, 48.84483724898316], [2.300628386373813, 48.84478145183291], [2.30081124552389, 48.844725511688395], [2.300826239652273, 48.844725325912776]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 27, "roussel_fabien": 9.0, "nb_emargement": 1124.0, "nb_procuration": 54.0, "nb_vote_blanc": 15.0, "jadot_yannick": 66.0, "le_pen_marine": 76.0, "nb_exprime": 1110.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1464.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1128, "quartier_bv": "58", "geo_point_2d": [48.8441966234494, 2.2991316440149157], "melenchon_jean_luc": 336.0, "poutou_philippe": 4.0, "macron_emmanuel": 373.0}, "geometry": {"type": "Point", "coordinates": [2.2991316440149157, 48.8441966234494]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1edeca23a2ee51d5c5931d46f078fca559a5d741", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 42, "zemmour_eric": 57.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-66", "geo_shape": {"coordinates": [[[2.346741570126894, 48.891206622365154], [2.346714519948565, 48.891187803037965], [2.346585349053141, 48.891130678297394], [2.346433255154188, 48.89106616176657], [2.346304084869108, 48.89100903671627], [2.346151991673981, 48.89094451982104], [2.346151599620422, 48.89094435310404], [2.345965618959057, 48.89086806313573], [2.3458135265951, 48.89080354580233], [2.345807764205647, 48.890793576791935], [2.345817885782997, 48.89076953830123], [2.345819480001686, 48.89076433542857], [2.345830141436306, 48.89075789875577], [2.346012992810113, 48.89073560235861], [2.346200122094671, 48.890712999887484], [2.346382973141186, 48.89069070382371], [2.34657010346753, 48.89066810078092], [2.346752954197842, 48.890645804151305], [2.34694008283856, 48.890623200521986], [2.347122933264038, 48.89060090242723], [2.347310061582771, 48.8905782982188], [2.347492911680854, 48.89055600045743], [2.347680041041246, 48.89053339567738], [2.347862890823306, 48.890511097350156], [2.348050018509211, 48.890488491084284], [2.3482328679750353, 48.89046619219119], [2.348419995327776, 48.890443586245496], [2.348427378075774, 48.89042851417862], [2.34825977592481, 48.890313341152506], [2.348126294198524, 48.890217243035494], [2.3481075155594953, 48.89020190895053], [2.348084818537969, 48.89020695739658], [2.34789040212745, 48.890201700731794], [2.347696869746418, 48.89019577137578], [2.347502452053193, 48.89019051407368], [2.347308919769193, 48.89018458319134], [2.34711450214554, 48.890179326158574], [2.346920969947417, 48.89017339464917], [2.346726552404712, 48.89016813698648], [2.346533020292272, 48.890162204850014], [2.346338604205654, 48.890156945665574], [2.346145070815273, 48.89015101289459], [2.346134227398113, 48.89015403476894], [2.346008998330757, 48.890247298798556], [2.345886238703683, 48.890338389924146], [2.345761008748758, 48.89043165367874], [2.345638248264607, 48.890522743635536], [2.345513017422108, 48.89061600711513], [2.345390256069375, 48.89070709680235], [2.3453865206308, 48.890709043203216], [2.345210403292211, 48.89077149341306], [2.345030104034675, 48.890833292760554], [2.344853985859765, 48.890895741539836], [2.344673684385107, 48.89095754033622], [2.344497565351145, 48.891019989483496], [2.344317263023322, 48.891081787736226], [2.344300024773878, 48.89109332609746], [2.344313605470222, 48.8911154491835], [2.344377081232718, 48.89123360724994], [2.34444196507301, 48.891352824286336], [2.344505440052503, 48.891470982251704], [2.344570324482492, 48.891590199192805], [2.344633800031332, 48.891708357963864], [2.344698685051027, 48.891827574809575], [2.344762161191862, 48.89194573258771], [2.34482704680127, 48.892064949338106], [2.344890523522785, 48.89218310702265], [2.344955409722016, 48.89230232367766], [2.34495774479057, 48.89230502362731], [2.345086385640727, 48.892407414563934], [2.345222569041447, 48.89251567510207], [2.3452248481666143, 48.892518270418535], [2.345283122502634, 48.89262736929513], [2.345348510329483, 48.89274281846419], [2.34540678653975, 48.89285191726572], [2.345472174934109, 48.892967365444385], [2.345530450279708, 48.89307646505517], [2.345595839230373, 48.893191913142694], [2.345654116461447, 48.89330101177911], [2.345704078885045, 48.89338922316238], [2.345717884165436, 48.89341592750911], [2.345719067230815, 48.893416425002755], [2.345734494318696, 48.893443662512446], [2.345799884182956, 48.89355911044986], [2.345878657204815, 48.893682897106196], [2.345944047677794, 48.893798345838974], [2.346022822768196, 48.89392213238091], [2.346039570481087, 48.893927214174894], [2.346217138302492, 48.89388959475829], [2.346412794980551, 48.89384255359062], [2.346468990093999, 48.89383064749898], [2.346494266492332, 48.8938206123165], [2.346489643077954, 48.89379560213927], [2.346501504307102, 48.8936824279115], [2.346513182174442, 48.89356842799269], [2.346525041936946, 48.8934552537317], [2.346536719713184, 48.893341252887716], [2.346548580725211, 48.89322807950767], [2.346560258398857, 48.89311407863772], [2.346559455174728, 48.89311037534363], [2.3464912168702, 48.892987718558075], [2.346423076856592, 48.8928602994445], [2.346354839201087, 48.892737642553264], [2.346286698484798, 48.89261022332556], [2.3462184628533, 48.8924875654368], [2.346150322798031, 48.892360146102455], [2.346082086440548, 48.89223748899987], [2.34601394840998, 48.89211006956629], [2.346022889701615, 48.892098465872174], [2.346117800761995, 48.892079682008095], [2.346201349451849, 48.89206393779723], [2.346210241156455, 48.89205866864819], [2.346274522540153, 48.89195406861276], [2.346347004900975, 48.89183259973312], [2.346347075909082, 48.89183248410803], [2.34641135537497, 48.89172788397016], [2.346472683330166, 48.89162914205993], [2.346536963656361, 48.891524541842685], [2.346598291145134, 48.891425798950536], [2.346662570968062, 48.891321198646494], [2.346723897967845, 48.89122245657097], [2.346741570126894, 48.891206622365154]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 66, "roussel_fabien": 22.0, "nb_emargement": 1132.0, "nb_procuration": 64.0, "nb_vote_blanc": 7.0, "jadot_yannick": 118.0, "le_pen_marine": 34.0, "nb_exprime": 1122.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1426.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1132, "quartier_bv": "70", "geo_point_2d": [48.891684329889195, 2.345910419765158], "melenchon_jean_luc": 389.0, "poutou_philippe": 5.0, "macron_emmanuel": 409.0}, "geometry": {"type": "Point", "coordinates": [2.345910419765158, 48.891684329889195]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dee75a2285829f02b11774a7467191383955a38e", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 43, "zemmour_eric": 92.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-27", "geo_shape": {"coordinates": [[[2.390033128865637, 48.88608802410797], [2.390011952302663, 48.886093353535735], [2.389908858693441, 48.886082943807], [2.38976195148508, 48.88607015591467], [2.3897589497569323, 48.88606784823959], [2.389730134568234, 48.886067754434414], [2.389653804480217, 48.88606111056469], [2.389497584640844, 48.886046467234216], [2.389274347657281, 48.886027033825755], [2.389118128026842, 48.886012389999735], [2.389116930981769, 48.88601224989312], [2.388943117028166, 48.88598656680115], [2.388759852750068, 48.885959381004724], [2.3885860377854122, 48.88593369738618], [2.388402773879798, 48.88590651104192], [2.388228959257167, 48.885880827803064], [2.388045695734609, 48.88585364001168], [2.387871881464571, 48.88582795625325], [2.387688619678046, 48.88580076792098], [2.38768853527187, 48.88580075579811], [2.387473254284752, 48.88576799844545], [2.387289991543254, 48.88574081039386], [2.387074711054769, 48.88570805232281], [2.386891448732321, 48.88568086365974], [2.38687665495113, 48.88567569413169], [2.38686110553462, 48.88568165616623], [2.386738492181225, 48.88572983544057], [2.386610440536999, 48.885779954449646], [2.386605707393289, 48.885781093027965], [2.386421284733184, 48.885801223744686], [2.386233459092768, 48.88582196895855], [2.386049036143997, 48.88584209910116], [2.385861208833617, 48.88586284462258], [2.385676785606794, 48.88588297329184], [2.38548895936432, 48.88590371823552], [2.38530453583824, 48.885923847229925], [2.385116707947029, 48.88594459068265], [2.385105944897292, 48.885950776719355], [2.385056850893196, 48.88605432728582], [2.385007083955021, 48.886157106344164], [2.384957989559812, 48.88626065685065], [2.384908220855051, 48.88636343674087], [2.384859126068721, 48.88646698718736], [2.3848093569822533, 48.88656976611792], [2.384776572797342, 48.88661032804339], [2.384791224662036, 48.886617934264464], [2.3848387219772222, 48.88664258864609], [2.384871979457049, 48.88663318620782], [2.385059445533043, 48.88668221531055], [2.3852461638114, 48.88673108379403], [2.385433630592139, 48.88678011230657], [2.385620350936339, 48.8868289802092], [2.385807818421822, 48.88687800813149], [2.385994538104544, 48.88692687543926], [2.386182006284064, 48.88697590367061], [2.386368728043226, 48.88702476949827], [2.386556196927586, 48.88707379713936], [2.386742918025253, 48.887122662372136], [2.386930387614347, 48.88717168942302], [2.387117110777843, 48.88722055407493], [2.387304581071669, 48.88726958053561], [2.387491303573553, 48.88731844459259], [2.387678774572105, 48.88736747046304], [2.387865499139916, 48.88741633393913], [2.38805297084319, 48.88746535921935], [2.388239694749476, 48.88751422210059], [2.388427168521145, 48.88756324679752], [2.388613893129474, 48.88761210909085], [2.388801366242179, 48.887661133190576], [2.388988091552748, 48.88770999489607], [2.389175566733845, 48.88775901841249], [2.389362292746549, 48.887807879530044], [2.3893623321661392, 48.88780789052296], [2.389513239392346, 48.88784771220053], [2.389699966039951, 48.88789657278755], [2.389850873781366, 48.887936394036345], [2.3900376010637903, 48.887985254092925], [2.390188509320412, 48.88802507491299], [2.390237790103571, 48.8880379703536], [2.390249817966951, 48.88803847047384], [2.390271731156209, 48.888003141575794], [2.390311220492813, 48.887865300297584], [2.390350683466774, 48.887729459848174], [2.390390172386832, 48.88759161850961], [2.390429634947322, 48.887455778000295], [2.390469095938349, 48.88731993745426], [2.390508585597966, 48.88718209603217], [2.390548046186164, 48.88704625452699], [2.390587534065685, 48.88690841303761], [2.390626995593671, 48.88677257237878], [2.390666483056668, 48.88663473082902], [2.390663951918972, 48.88662762948226], [2.390560482611419, 48.886537594129], [2.39045836261969, 48.88645044967647], [2.390356242969655, 48.886363305129876], [2.390252773366227, 48.88627326858288], [2.390150654397276, 48.88618612474621], [2.39004718550137, 48.88609608800707], [2.390033128865637, 48.88608802410797]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 27, "roussel_fabien": 31.0, "nb_emargement": 1351.0, "nb_procuration": 68.0, "nb_vote_blanc": 11.0, "jadot_yannick": 95.0, "le_pen_marine": 63.0, "nb_exprime": 1338.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1926.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1351, "quartier_bv": "75", "geo_point_2d": [48.88668853542075, 2.388054643270247], "melenchon_jean_luc": 663.0, "poutou_philippe": 3.0, "macron_emmanuel": 289.0}, "geometry": {"type": "Point", "coordinates": [2.388054643270247, 48.88668853542075]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "326128562c288e66c8aa3c320e7d038d0146b589", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 107, "zemmour_eric": 86.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-69", "geo_shape": {"coordinates": [[[2.286079696271588, 48.8355531139989], [2.28606937464667, 48.835567249919805], [2.285999038698495, 48.835692454721936], [2.285923081506769, 48.83582330276361], [2.285924810687125, 48.8358318337602], [2.286039981063833, 48.83593567231428], [2.286154933314107, 48.83603935565035], [2.286270104620161, 48.83614319306427], [2.2863850577735, 48.836246877059196], [2.28650022999649, 48.836350714232324], [2.286615184077531, 48.83645439708755], [2.286730357217361, 48.836558234019826], [2.286845312201595, 48.83666191753394], [2.28696048625838, 48.83676575422534], [2.287075442170223, 48.8368694365998], [2.287190617144069, 48.83697327305033], [2.28730557395903, 48.8370769560837], [2.287420749849746, 48.837180792293374], [2.28753570759253, 48.83728447418701], [2.2876508844002252, 48.83738831015582], [2.287765843046051, 48.83749199270834], [2.287881020770836, 48.83759582843631], [2.2879959803443928, 48.837699509849095], [2.288111160348435, 48.83780334534431], [2.2882261194629008, 48.83790702740786], [2.288227902184551, 48.837915461538984], [2.288147870252731, 48.83805812850934], [2.288069052172953, 48.83819678064209], [2.2880549057313813, 48.838229898572436], [2.288070880223395, 48.838235809889994], [2.288181237988661, 48.83826365738043], [2.288388967902698, 48.83831797970424], [2.288550165606744, 48.838358656643784], [2.288757896296041, 48.838412977423], [2.288919094581784, 48.83845365386194], [2.288960237344043, 48.83846441299093], [2.288963009668845, 48.83846713118385], [2.288988200480029, 48.83847500922514], [2.289154789215214, 48.838518571090034], [2.289344958484705, 48.83856972680903], [2.289367965619123, 48.838569891373666], [2.289376484053818, 48.83853129686913], [2.2894251615986843, 48.838419916423014], [2.289482575483551, 48.838292911785274], [2.289502972980531, 48.83828790832094], [2.289701370517638, 48.83837169391053], [2.289896801460142, 48.83845406302665], [2.290095198900355, 48.8385378479425], [2.290290631088188, 48.838620216402965], [2.29030816496511, 48.83861859723617], [2.290444372266042, 48.83851702798653], [2.290568646416618, 48.83842407843332], [2.290692921486244, 48.838331128751356], [2.290829127286234, 48.83822955903748], [2.290953400065312, 48.838136609060676], [2.291089606224026, 48.838035038141314], [2.291213878062504, 48.83794208877698], [2.291324826176741, 48.83785935185853], [2.291326795864887, 48.83785056406993], [2.291311636335489, 48.837840710670164], [2.291170884491504, 48.83777307669807], [2.291034589286925, 48.83770676586374], [2.290898295791382, 48.837640454878276], [2.290757545012243, 48.83757282130703], [2.290621250857127, 48.837506509989865], [2.290480500811395, 48.8374388751852], [2.290474148482859, 48.83743722043297], [2.29030958722597, 48.83742384003772], [2.290139396285968, 48.837409571601924], [2.289974835202301, 48.837396190745814], [2.289804644444213, 48.837381921833355], [2.289640083533773, 48.83736854051638], [2.289469892957603, 48.83735427112735], [2.289458064161169, 48.83734438510673], [2.289479202382734, 48.837215052236616], [2.289499664373567, 48.83709034350547], [2.289520802388891, 48.836961010598586], [2.289541264192729, 48.83683630093268], [2.289561727248735, 48.83671159215673], [2.2895828649564782, 48.83658225919512], [2.289603326463256, 48.83645754947636], [2.289624463952511, 48.836328217377314], [2.289644925259942, 48.83620350762308], [2.289666062542969, 48.83607417548731], [2.289686523651157, 48.83594946569766], [2.289707660740213, 48.83582013262588], [2.289726889747153, 48.83581292410904], [2.28982869548603, 48.83584377725312], [2.289917383194828, 48.83587050165305], [2.289918173130917, 48.83587072039356], [2.289940682309066, 48.835872447709484], [2.289951806527472, 48.83585752837704], [2.289969085678357, 48.83573391845174], [2.289986863104673, 48.835608228517884], [2.29000414208989, 48.83548461855993], [2.290021920708853, 48.835358928600954], [2.2900252717243212, 48.83533495588071], [2.290017392661053, 48.8353241822737], [2.290004682026355, 48.835314050020294], [2.28999230512526, 48.83531422387943], [2.289056969175345, 48.83511540234116], [2.289054055102024, 48.83511419964443], [2.287930222901114, 48.83432974921647], [2.287926003678951, 48.83432775446558], [2.287920960366677, 48.83432694648083], [2.287911521834673, 48.83432665555159], [2.287906387147812, 48.83432715111658], [2.287901905929381, 48.83432887731998], [2.287652558484608, 48.8344731615098], [2.287645051697393, 48.83447357278485], [2.287644145885794, 48.83448891343162], [2.287645447263813, 48.83449925770299], [2.28769277405234, 48.83461822112119], [2.2877408270305413, 48.83473929067077], [2.287788154266956, 48.834858253126384], [2.287836207687854, 48.83497932261169], [2.287883535347689, 48.835098285903385], [2.287931589211392, 48.835219355324384], [2.287978917319021, 48.83533831765349], [2.288026972975654, 48.83545938791761], [2.288074300156599, 48.83557835017536], [2.288122356268238, 48.83569941947587], [2.288169683872618, 48.835818382569656], [2.288217740427088, 48.83593945180587], [2.288204207761144, 48.83595072137651], [2.287965049279804, 48.83594662589093], [2.28774726548677, 48.835943132078484], [2.28774452205966, 48.835942899892345], [2.287552805486802, 48.835913362176], [2.2873653032739583, 48.83588450400353], [2.287177802631136, 48.83585564554458], [2.286986085338025, 48.835826106909465], [2.286983431487382, 48.83582550199942], [2.286837733571137, 48.83578071963689], [2.286689409615998, 48.83573530985838], [2.28654371084224, 48.83569052712599], [2.286395387399777, 48.83564511697922], [2.286249689130719, 48.83560033388508], [2.286101367563438, 48.835554923378226], [2.286079696271588, 48.8355531139989]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 69, "roussel_fabien": 24.0, "nb_emargement": 1275.0, "nb_procuration": 70.0, "nb_vote_blanc": 10.0, "jadot_yannick": 87.0, "le_pen_marine": 82.0, "nb_exprime": 1260.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1746.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1275, "quartier_bv": "57", "geo_point_2d": [48.83670931255036, 2.2886771594153204], "melenchon_jean_luc": 404.0, "poutou_philippe": 2.0, "macron_emmanuel": 398.0}, "geometry": {"type": "Point", "coordinates": [2.2886771594153204, 48.83670931255036]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8103a0e6d4ff2b5706db665a7fe83518775888bc", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 96, "zemmour_eric": 93.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "6-21", "geo_shape": {"coordinates": [[[2.334397694893718, 48.84043303690255], [2.334394845616431, 48.84043359124664], [2.334345203446862, 48.84044984176536], [2.334169562758381, 48.840507170155185], [2.333991993011081, 48.84056530057295], [2.333816351544925, 48.84062262843823], [2.333638781021842, 48.84068075742635], [2.333463138766619, 48.84073808566643], [2.333285567456262, 48.84079621412424], [2.333109924434972, 48.84085354094045], [2.332932352325837, 48.84091166976729], [2.33275670852698, 48.84096899605895], [2.332579135642086, 48.841027123456136], [2.332403491054148, 48.84108445012258], [2.332225917381987, 48.84114257698941], [2.332050272028004, 48.84119990223203], [2.331872697557052, 48.84125802946784], [2.331697051425611, 48.84131535418587], [2.331519476178924, 48.841373479992086], [2.331452475022061, 48.84139534686908], [2.3314468574794702, 48.8413963938134], [2.3314243664074112, 48.84140465379776], [2.33131572061665, 48.84144011108843], [2.331139079468578, 48.84149864176727], [2.330963431719306, 48.841555965395784], [2.330786789771429, 48.84161449644765], [2.330611139881896, 48.84167181954534], [2.330434497157306, 48.841730349171634], [2.33025884785225, 48.84178767175374], [2.330082204327848, 48.84184620175309], [2.329906552882528, 48.84190352380434], [2.329729908581427, 48.841962052378115], [2.329554257720595, 48.842019373913764], [2.329446021081022, 48.84205523650853], [2.329426806646819, 48.842063473111814], [2.329489940371566, 48.84213582836077], [2.329558791893454, 48.84224989128733], [2.329627377161982, 48.8423638087705], [2.329696229285819, 48.842477871594674], [2.329764813792258, 48.84259178896814], [2.329833666506485, 48.84270585258922], [2.329902252987391, 48.84281976896897], [2.329971106303585, 48.842933832487624], [2.330039692010941, 48.84304774965698], [2.330108545940565, 48.84316181217393], [2.330177133610849, 48.84327572924884], [2.330245988130896, 48.84338979256268], [2.330314575050653, 48.843503708628575], [2.330383430172787, 48.84361777183999], [2.330452019043843, 48.84373168871074], [2.330520874779527, 48.84384575092044], [2.330589462888604, 48.84395966768149], [2.33059423906461, 48.8439636794864], [2.330667857722914, 48.8439981691815], [2.330736075549769, 48.84402975964632], [2.330757151437222, 48.84404022832394], [2.3307749623520913, 48.844029381809094], [2.330811494977291, 48.84399989548618], [2.330851698048833, 48.84397033165136], [2.330858877762607, 48.843967560400294], [2.331027006320696, 48.843942858936366], [2.331195427336191, 48.8439183963034], [2.331363555576067, 48.84389369436538], [2.33153197628625, 48.84386923035821], [2.331700102845482, 48.843844527938515], [2.331868524601331, 48.8438200634641], [2.332036650830914, 48.84379536146967], [2.3322050722699, 48.84377089652041], [2.3322205999264902, 48.84376678946513], [2.332223065278014, 48.843754527815136], [2.332255983382046, 48.84363484888995], [2.332290392932043, 48.84351020568663], [2.332323310715738, 48.84339052761602], [2.332357718592423, 48.84326588345912], [2.3323579212927372, 48.843264738800876], [2.332369509987604, 48.84312593629649], [2.332380228376477, 48.842989864782545], [2.332391816950919, 48.8428510622418], [2.3324025352250253, 48.84271499069232], [2.33241412367884, 48.842576188115245], [2.332424841838284, 48.84244011653025], [2.332435561315665, 48.842304044035984], [2.332447149578638, 48.84216524230386], [2.332457867578766, 48.842029169766526], [2.332469455721321, 48.841890367998076], [2.332473101973794, 48.8418847241443], [2.332626656951663, 48.84177620552853], [2.332782183247823, 48.84166680733238], [2.33293573694014, 48.84155828829869], [2.333091261937295, 48.84144888967934], [2.333094742546162, 48.84144116914654], [2.333064339651362, 48.84132770930261], [2.333035463236293, 48.84121465097221], [2.333039622926496, 48.84120656818392], [2.3331797073350202, 48.84112063861429], [2.333310770388981, 48.84104192097581], [2.333313727015196, 48.841040540738916], [2.333465045170227, 48.84098833578839], [2.333662586075768, 48.84092008352885], [2.333813903531665, 48.84086787813135], [2.334011443535327, 48.84079962438913], [2.334162760280596, 48.84074741944402], [2.334360300733326, 48.84067916512589], [2.334511616790946, 48.84062695883462], [2.334518195005112, 48.84061607533144], [2.334487510220407, 48.8405569260145], [2.334462144843922, 48.84051068070358], [2.334397694893718, 48.84043303690255]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 21, "roussel_fabien": 18.0, "nb_emargement": 984.0, "nb_procuration": 70.0, "nb_vote_blanc": 5.0, "jadot_yannick": 91.0, "le_pen_marine": 39.0, "nb_exprime": 975.0, "nb_vote_nul": 4.0, "arr_bv": "06", "arthaud_nathalie": 2, "nb_inscrit": 1159.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 984, "quartier_bv": "23", "geo_point_2d": [48.8424117992056, 2.331456760464805], "melenchon_jean_luc": 133.0, "poutou_philippe": 2.0, "macron_emmanuel": 472.0}, "geometry": {"type": "Point", "coordinates": [2.331456760464805, 48.8424117992056]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "33e1bbd49e11f3bc2b9b9de710329810deeada6d", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 52, "zemmour_eric": 82.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "9-2", "geo_shape": {"coordinates": [[[2.342492731636047, 48.874056518122714], [2.342500779949696, 48.874068272608845], [2.342614860789609, 48.87411305665746], [2.342683373823935, 48.87414061178352], [2.342690375234351, 48.87414187692613], [2.342885594796283, 48.87414158354773], [2.343078640840761, 48.874141311198464], [2.343273860398484, 48.87414101718687], [2.343466905075509, 48.87414074420401], [2.34366212462881, 48.87414044955919], [2.3438551693016922, 48.874140175950174], [2.344048215335865, 48.874139902037314], [2.344243434882816, 48.87413960644452], [2.344436479549513, 48.87413933189807], [2.344631699092018, 48.874139035672094], [2.344824743754549, 48.87413876049949], [2.345019963292803, 48.87413846364036], [2.34521300931448, 48.87413818784906], [2.345408228836968, 48.87413789125596], [2.345460678701642, 48.874144601131285], [2.345474209003935, 48.87413234069948], [2.3454589190647592, 48.87405397065731], [2.345436111938362, 48.87393325195845], [2.345410704525588, 48.87380302021589], [2.345387897632121, 48.87368230058114], [2.345362489099001, 48.87355206879125], [2.345339682415961, 48.87343135001916], [2.345314275489109, 48.87330111819691], [2.345291469038892, 48.87318039848886], [2.345266062354993, 48.873050166626754], [2.345243256126396, 48.872929446882125], [2.345217849685446, 48.87279921498019], [2.345195042303979, 48.87267849609073], [2.34516963610598, 48.872548264148975], [2.345146830320615, 48.8724275443311], [2.345157612327043, 48.87241762335209], [2.345304182045576, 48.87239773670829], [2.345440519286798, 48.8723778865629], [2.345587088785503, 48.872357999571975], [2.345723425814902, 48.87233814910361], [2.345723681251089, 48.87233811002956], [2.345884051871513, 48.87231364583085], [2.346045039168607, 48.87228804802214], [2.346205410847337, 48.87226358339922], [2.346366397831777, 48.87223798515713], [2.346526767853447, 48.87221351919584], [2.346687754525227, 48.87218792052039], [2.346696506585988, 48.87218351026479], [2.346795034423832, 48.87206528755506], [2.346894008748619, 48.87194762747847], [2.34699253569192, 48.87182940458093], [2.34709150912238, 48.87171174431586], [2.347190036534503, 48.87159352123793], [2.347289009070643, 48.87147586078449], [2.347387534225089, 48.871357637511316], [2.347486505866924, 48.87123997686946], [2.347585030127061, 48.87112175340848], [2.347684000874501, 48.871004092578204], [2.347688357527562, 48.87100097402719], [2.347717096251519, 48.8709883312362], [2.347784084017242, 48.87095804316432], [2.347782763634948, 48.87094601359349], [2.347759163331743, 48.870933173723955], [2.347549812378718, 48.870964207545825], [2.347348384714201, 48.870995024295254], [2.347139033267764, 48.87102605739695], [2.346937603769195, 48.87105687254672], [2.346728253181423, 48.871087905834926], [2.346526823200578, 48.87111872029169], [2.346317472119509, 48.871149752859736], [2.346116041656602, 48.87118056662349], [2.34590669009354, 48.871211597572064], [2.345705259137083, 48.871242411542134], [2.345702935323175, 48.87124290336922], [2.345512376252155, 48.87129609356228], [2.345326005866366, 48.87135018321755], [2.345135446018089, 48.87140337280537], [2.344949073493809, 48.8714574618611], [2.344758512868176, 48.87151065084368], [2.344572139568655, 48.87156473930725], [2.344385767245335, 48.871618827485484], [2.344195205465388, 48.87167201466424], [2.344008830992256, 48.87172610314215], [2.343818268435072, 48.871779289715654], [2.343631893198034, 48.871833376702114], [2.343441329852181, 48.871886563569646], [2.343433063690395, 48.87189404839891], [2.343416570344328, 48.87201624292261], [2.343399818417409, 48.872138503463006], [2.343383324915846, 48.87226069795514], [2.343366572820939, 48.872382959363065], [2.343350079175415, 48.87250515292427], [2.343333326923853, 48.87262741430052], [2.343316833111593, 48.87274960872935], [2.343300080703373, 48.87287187007388], [2.343299919448965, 48.872872657009964], [2.343259877516086, 48.87301106949286], [2.343222955397222, 48.87314607887934], [2.343182913049734, 48.87328449130219], [2.343145991900864, 48.87341950063898], [2.3431059477752543, 48.873557912994336], [2.343069026221735, 48.87369292317323], [2.343064772716595, 48.87369798468769], [2.342924360887344, 48.87378207016698], [2.342784117919023, 48.87386948485483], [2.342643705174379, 48.873953569991855], [2.342503461284631, 48.87404098343801], [2.342492731636047, 48.874056518122714]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 2, "roussel_fabien": 12.0, "nb_emargement": 1186.0, "nb_procuration": 83.0, "nb_vote_blanc": 14.0, "jadot_yannick": 97.0, "le_pen_marine": 43.0, "nb_exprime": 1167.0, "nb_vote_nul": 6.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1473.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1187, "quartier_bv": "35", "geo_point_2d": [48.87259786459877, 2.3448415825647735], "melenchon_jean_luc": 383.0, "poutou_philippe": 6.0, "macron_emmanuel": 446.0}, "geometry": {"type": "Point", "coordinates": [2.3448415825647735, 48.87259786459877]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "701e488b4428585076be30c4b2e903de6d43ef0b", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 33, "zemmour_eric": 58.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-3", "geo_shape": {"coordinates": [[[2.406332584119689, 48.862342841391815], [2.406332042790221, 48.862333049372424], [2.406302533318229, 48.862302932421606], [2.406197428203051, 48.862198522600416], [2.40608539508112, 48.86208418463335], [2.405980290842305, 48.86197977460084], [2.405868258667405, 48.86186543640792], [2.405763155305045, 48.86176102616414], [2.405686611370157, 48.861682164067126], [2.405612048050503, 48.861608092655345], [2.405535503195772, 48.86152923134328], [2.40551396045979, 48.861511883037586], [2.405509407126763, 48.86151063371558], [2.405478866571717, 48.861480294671146], [2.405367983503408, 48.86137294864838], [2.405262882137248, 48.86126853791882], [2.405157781192245, 48.86116412708711], [2.405046898105671, 48.861056779830164], [2.404941798020789, 48.86095236878884], [2.404830917182513, 48.86084502221736], [2.404725817957638, 48.86074061096644], [2.404614936662434, 48.86063326326825], [2.404509838297459, 48.860528851807686], [2.404398957887647, 48.860421504788185], [2.404293860382765, 48.860317093118034], [2.40418298224186, 48.8602097449854], [2.404179268459055, 48.86020732254979], [2.404016651302751, 48.86013554918853], [2.403868491448713, 48.860070502762], [2.40384126434348, 48.860058548852855], [2.403821863216004, 48.86006545539098], [2.403806857945734, 48.860091169317506], [2.40367666045685, 48.86013828475316], [2.403550561952348, 48.86018391677348], [2.403420363989726, 48.86023103282565], [2.403294265036274, 48.8602766645721], [2.403290038268406, 48.86027904834123], [2.403164342825635, 48.860386287894414], [2.4030395140649903, 48.86049278607535], [2.402913817591008, 48.86060002534475], [2.402788989158833, 48.86070652414993], [2.402672699481437, 48.86080566474213], [2.402541606980386, 48.86091750558347], [2.4024253163613283, 48.861016645916386], [2.402294224161351, 48.86112848647228], [2.402177932600626, 48.861227626545976], [2.402046837975741, 48.861339466802754], [2.401930545473336, 48.86143860661721], [2.401799449786516, 48.861550446581724], [2.40172280735001, 48.86161578471873], [2.40172345451125, 48.86161889608223], [2.401740907363674, 48.861628604498996], [2.401907419741149, 48.861708028538985], [2.402076178774513, 48.861788536479516], [2.402242690800929, 48.86186796093408], [2.402411450870432, 48.861948468390224], [2.402577963929433, 48.86202789146757], [2.4027467263876803, 48.8621083993454], [2.402913240469053, 48.86218782194477], [2.403082002610746, 48.86226832843212], [2.403248517703989, 48.862347751452816], [2.403417282244956, 48.86242825746257], [2.403420449154563, 48.862440713845146], [2.403316483741677, 48.86253837398501], [2.403228369058648, 48.86261974594947], [2.403227499182718, 48.86262047997135], [2.403059430176189, 48.86275023697302], [2.402886109523962, 48.86288167537497], [2.40288579062561, 48.86288190761267], [2.402797297666595, 48.86294503780902], [2.402726357158174, 48.86299519709979], [2.402719598978412, 48.86300720285548], [2.402733138071786, 48.86301699590312], [2.402846815404394, 48.863124658539974], [2.402963186875205, 48.86323468357557], [2.40307686516842, 48.86334234507347], [2.403193237611327, 48.863452369863744], [2.403306916855053, 48.86356003112195], [2.403423290270065, 48.86367005566696], [2.403441839032072, 48.86367247382272], [2.403562006771506, 48.86362150545092], [2.403684278407946, 48.86357105736655], [2.403804447039317, 48.86352008875342], [2.403926718192679, 48.863469641316044], [2.403970573971896, 48.86347077706434], [2.403972986943874, 48.863468608179716], [2.40407955430339, 48.863384963244094], [2.404210468958463, 48.86327831825877], [2.404317035537166, 48.863194673996624], [2.404447949227838, 48.863088028733195], [2.404554515046299, 48.863004383345945], [2.404671042027758, 48.8629462603546], [2.404673543030053, 48.86294473312335], [2.404865177565363, 48.86285424930789], [2.4049817038747, 48.86279612510694], [2.404983871182587, 48.8627952896022], [2.405134015495748, 48.862749058003836], [2.405287741147623, 48.86270108580083], [2.40543788491964, 48.862654853817304], [2.405591608650818, 48.86260688121312], [2.40574175188159, 48.86256064884444], [2.405895475065253, 48.8625126749466], [2.405896394653068, 48.8625123593461], [2.406094878021105, 48.862438820562296], [2.406294484625949, 48.86236379141434], [2.406332584119689, 48.862342841391815]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 3, "roussel_fabien": 32.0, "nb_emargement": 1133.0, "nb_procuration": 59.0, "nb_vote_blanc": 24.0, "jadot_yannick": 109.0, "le_pen_marine": 44.0, "nb_exprime": 1105.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 1, "nb_inscrit": 1447.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1133, "quartier_bv": "79", "geo_point_2d": [48.861820692236954, 2.4039734207508063], "melenchon_jean_luc": 495.0, "poutou_philippe": 8.0, "macron_emmanuel": 275.0}, "geometry": {"type": "Point", "coordinates": [2.4039734207508063, 48.861820692236954]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1a604f81dc56798ae0f7f496d602eecd71b376a7", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 154, "zemmour_eric": 213.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-1", "geo_shape": {"coordinates": [[[2.319772281584093, 48.87825405972687], [2.319774548697335, 48.87822402397169], [2.319700244923565, 48.87810051851886], [2.3196272796783433, 48.8779778030346], [2.3195529779684882, 48.877854297470535], [2.319480013415197, 48.87773158186906], [2.319405711042414, 48.87760807617829], [2.319332747181152, 48.87748536045964], [2.319258445508852, 48.877361854649855], [2.319185482339404, 48.877239138814055], [2.319111181367575, 48.87711563288529], [2.319038218878277, 48.876992917831615], [2.31896391860691, 48.87686941178387], [2.318890956821368, 48.87674669571374], [2.3188900578927782, 48.876744120291164], [2.318872033253672, 48.876604077138374], [2.318855820240543, 48.876468659676384], [2.318839608674994, 48.87633324220334], [2.318821584313728, 48.876193198990734], [2.31880537292293, 48.87605778147924], [2.318787347397443, 48.8759177373195], [2.318771136181499, 48.87578231976952], [2.318753110831635, 48.875642276468916], [2.318741874340679, 48.87563417872781], [2.318547402593886, 48.875611749398225], [2.318340498353728, 48.87558897016139], [2.318329273919958, 48.87557870684112], [2.318352834210056, 48.8754722243601], [2.318389261908719, 48.875318899305604], [2.318412823333768, 48.87521241589616], [2.318449250674133, 48.8750590907873], [2.318472810483909, 48.874952608232505], [2.318456368682487, 48.87494252925593], [2.318275349000775, 48.87496900927977], [2.318099137151592, 48.87499242269023], [2.317918117126538, 48.87501890127343], [2.317741904936204, 48.875042315056234], [2.31756088591949, 48.87506879310582], [2.317384673399781, 48.87509220636173], [2.317203652664732, 48.87511868386212], [2.317027439827446, 48.87514209569185], [2.317012401418785, 48.875137095000355], [2.316954952484083, 48.875056196281264], [2.316912109465941, 48.87499093315561], [2.316912110016493, 48.87498330226215], [2.317001215006198, 48.874857896849285], [2.317090165651098, 48.8747355994955], [2.31717926978835, 48.87461019392196], [2.31726821959216, 48.87448789640839], [2.317357322876968, 48.87436249067416], [2.317446271839698, 48.87424019300085], [2.317465656560742, 48.87420128655666], [2.317438956803467, 48.87418903729035], [2.317357352457498, 48.87417496403094], [2.317159955443448, 48.874142133717], [2.316968102872634, 48.87410904692309], [2.316770706365443, 48.87407621506608], [2.316578852921483, 48.87404312763856], [2.316381456897671, 48.87401029603695], [2.316189603943685, 48.8739772079836], [2.315992208415154, 48.87394437573816], [2.315800357314561, 48.87391128706684], [2.315602960929723, 48.87387845327047], [2.315411110319221, 48.873845363973295], [2.315213715780973, 48.87381253044019], [2.31502186429736, 48.87377944050944], [2.3148244702543153, 48.87374660633251], [2.314632619260807, 48.87371351577589], [2.314435225724808, 48.87368068005591], [2.314243376584617, 48.873647588881276], [2.314217726030205, 48.87364654348898], [2.314188764915264, 48.873689628670974], [2.31417385617118, 48.87381534035925], [2.314159775821285, 48.87393560047777], [2.314144868288302, 48.87406131304154], [2.3141307878049853, 48.87418157312985], [2.314116708619865, 48.874301833211206], [2.314101799526739, 48.87442754482079], [2.314087720196357, 48.87454780577123], [2.314072810962859, 48.87467351734913], [2.3140587315109, 48.874793777370094], [2.314043822137026, 48.87491948891638], [2.314029741176463, 48.87503974979856], [2.31401483302545, 48.875165461321025], [2.314024751337675, 48.87517482272733], [2.314221603902569, 48.87521115258242], [2.314416609048668, 48.875248019228316], [2.314613463538604, 48.8752843475451], [2.314808469236103, 48.87532121355026], [2.315005322912742, 48.875357541212466], [2.315200329161534, 48.8753944065768], [2.31539718475146, 48.87543073360002], [2.3155921915517412, 48.875467598323546], [2.315602055965843, 48.87547662563159], [2.315593706906102, 48.87560607016473], [2.31558543813256, 48.87573967368548], [2.3155770876378092, 48.87586911727953], [2.315568820143239, 48.8760027207751], [2.315560469553196, 48.87613216523639], [2.315552201974346, 48.876265768698886], [2.315543851312646, 48.87639521222889], [2.315535582285932, 48.876528815650616], [2.315527232892315, 48.87665826005561], [2.31551896378121, 48.87679186344435], [2.315510614304122, 48.87692130781726], [2.315502345120442, 48.877054910273685], [2.315493994196486, 48.87718435460682], [2.315485726279988, 48.87731795793727], [2.3154773752725513, 48.87744740223836], [2.315469107271767, 48.877581005535774], [2.315460756192668, 48.87771044890552], [2.315452486743979, 48.877844052162104], [2.315447258812835, 48.87792509213753], [2.315438642280226, 48.87793074016755], [2.315447612629727, 48.877958028793806], [2.315444489384818, 48.87800643305394], [2.315436371632016, 48.87812911109392], [2.31542802038367, 48.878258554397036], [2.315419901189352, 48.87838123240005], [2.315411551223074, 48.87851067568016], [2.315406465634755, 48.87858751561721], [2.315414075652138, 48.87859423850984], [2.315451641068636, 48.87859221757015], [2.315697748154203, 48.87859896486318], [2.315954907163079, 48.878606704714926], [2.315962145028713, 48.878608339696385], [2.316107112807131, 48.87867579440271], [2.316259287606026, 48.878746225524324], [2.316404256141297, 48.87881368076157], [2.316556431756713, 48.87888411059743], [2.316701401060644, 48.87895156546645], [2.316853577480778, 48.879021994915774], [2.31687999379844, 48.8790196481984], [2.316889035126425, 48.87901207431692], [2.316946443493944, 48.87889761418493], [2.317005984369238, 48.878780433996944], [2.317063390861072, 48.878665973777025], [2.3171229312084263, 48.87854879350628], [2.3171803371878212, 48.878434333206215], [2.31723987700724, 48.878317152852645], [2.317297282486193, 48.87820269157315], [2.317356821777684, 48.87808551113682], [2.317372722755116, 48.87807959243812], [2.317564107400439, 48.8781077977082], [2.317750337919269, 48.87813425646276], [2.31794172160664, 48.87816246111998], [2.318127952524539, 48.87818891838654], [2.318319337980587, 48.878217122446515], [2.318505567910673, 48.87824358001584], [2.318696953772074, 48.87827178347071], [2.318883185452864, 48.87829824045908], [2.318886838570845, 48.87829842672155], [2.319093776107226, 48.87828727401076], [2.319325905003985, 48.87827846485653], [2.319532842367026, 48.87826731138657], [2.319764969737119, 48.87825850137308], [2.319772281584093, 48.87825405972687]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 1, "roussel_fabien": 5.0, "nb_emargement": 1243.0, "nb_procuration": 100.0, "nb_vote_blanc": 3.0, "jadot_yannick": 54.0, "le_pen_marine": 57.0, "nb_exprime": 1233.0, "nb_vote_nul": 7.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1531.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1243, "quartier_bv": "32", "geo_point_2d": [48.876294157810435, 2.316780118373253], "melenchon_jean_luc": 124.0, "poutou_philippe": 1.0, "macron_emmanuel": 601.0}, "geometry": {"type": "Point", "coordinates": [2.316780118373253, 48.876294157810435]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "32bd7da4cfaed25d54698176e5bcb1a176106549", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 74, "zemmour_eric": 70.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "12-26", "geo_shape": {"coordinates": [[[2.397775996206475, 48.83414478376298], [2.397775365737696, 48.83415265902751], [2.397701322685931, 48.83420819073744], [2.397631595662287, 48.83426794147281], [2.39763155639393, 48.83427888474939], [2.397761613232311, 48.834391417077725], [2.397888294687362, 48.83450348167706], [2.398018351278054, 48.83461601369678], [2.3981450352034432, 48.83472807710926], [2.398275092908844, 48.83484060882723], [2.398401777932006, 48.834952671945295], [2.398531836741649, 48.83506520426084], [2.398658521500288, 48.835177267077626], [2.398671550418691, 48.835194691209246], [2.3987118226861073, 48.83518966566194], [2.398776200764726, 48.83517281681485], [2.398947108965465, 48.83512878489578], [2.3991323798702853, 48.83508029568603], [2.399303287466809, 48.83503626325442], [2.399488556349263, 48.83498777348212], [2.399659463341469, 48.83494374053796], [2.399844732915704, 48.83489525111613], [2.400015639303792, 48.8348512176594], [2.400200906865914, 48.83480272677573], [2.400371812649675, 48.83475869280643], [2.400557080913922, 48.8347102013739], [2.400727986093452, 48.83466616689205], [2.400748318286822, 48.83467359228453], [2.4007816439081973, 48.83465547876071], [2.400814679281748, 48.83462326533523], [2.400931669029371, 48.834496486028264], [2.401037219698631, 48.83439356162132], [2.401142769940647, 48.83429063801109], [2.401259758154251, 48.834163857446214], [2.4012716722846, 48.834159545273316], [2.401478209970835, 48.83416235251696], [2.401691172535869, 48.83416242329787], [2.401704031143969, 48.83415641330893], [2.401758209524198, 48.83405471971214], [2.401830685147657, 48.83391836252947], [2.401884863033393, 48.83381666885367], [2.401957339356856, 48.83368031157209], [2.402011516748104, 48.83357861781731], [2.402011600037993, 48.83356173804698], [2.401953644729284, 48.833557054879215], [2.401751459434803, 48.833542248396896], [2.401548499703582, 48.83353213508236], [2.40134631325867, 48.83351732790804], [2.40114335370308, 48.83350721390578], [2.400941167469913, 48.8334924060463], [2.400738208100303, 48.83348229045703], [2.400536022068452, 48.83346748281168], [2.4003330628745, 48.833457366534674], [2.400330222312129, 48.833457022225915], [2.400163732727548, 48.833429718156765], [2.399951613268556, 48.833388260966515], [2.39978512411225, 48.83336095546939], [2.3995730052341653, 48.833319497605196], [2.399406516485536, 48.83329219247869], [2.399194399560886, 48.833250733048], [2.3990279098679332, 48.83322342738601], [2.399014458092898, 48.833226170313644], [2.398893136703587, 48.833316003568264], [2.398757434051629, 48.833417784425535], [2.398636113135603, 48.833507617410916], [2.398500409482995, 48.83360939795919], [2.398379086326301, 48.83369922976232], [2.3982433816626543, 48.83380101090087], [2.3981220589792462, 48.833890842434755], [2.397986353325314, 48.833992622364946], [2.397865028380454, 48.834082454515205], [2.397803364713755, 48.8341287024079], [2.397775996206475, 48.83414478376298]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 26, "roussel_fabien": 18.0, "nb_emargement": 1116.0, "nb_procuration": 48.0, "nb_vote_blanc": 14.0, "jadot_yannick": 87.0, "le_pen_marine": 65.0, "nb_exprime": 1087.0, "nb_vote_nul": 15.0, "arr_bv": "12", "arthaud_nathalie": 8, "nb_inscrit": 1390.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1116, "quartier_bv": "46", "geo_point_2d": [48.83414044657059, 2.3996686646518315], "melenchon_jean_luc": 312.0, "poutou_philippe": 8.0, "macron_emmanuel": 376.0}, "geometry": {"type": "Point", "coordinates": [2.3996686646518315, 48.83414044657059]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "200ed04e953fcf7e200ca9954c6b46c60aec9d77", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 39, "zemmour_eric": 50.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "10-21", "geo_shape": {"coordinates": [[[2.368243378204167, 48.87942960546311], [2.368217443810167, 48.87943737102477], [2.368096039130669, 48.87950606330564], [2.367954465299632, 48.879582353548614], [2.36778955075215, 48.87967566341136], [2.367647976011116, 48.8797519532802], [2.367608780901776, 48.87977005662142], [2.36762716151358, 48.87979396259888], [2.367620159698875, 48.879937590115354], [2.367612270751067, 48.88007128881306], [2.367605268858012, 48.88021491629248], [2.367597379840887, 48.88034861405624], [2.367589489408847, 48.880482312695335], [2.367582488761197, 48.880625940127004], [2.367577258806897, 48.88063273571801], [2.367428155242947, 48.880709621330986], [2.367280271129545, 48.880785088661135], [2.367131166691061, 48.88086197389364], [2.366983281725607, 48.88093743994723], [2.366834176412384, 48.88101432479919], [2.366686289220547, 48.88108979046827], [2.36653718439619, 48.881166674946954], [2.366389296330325, 48.88124214113801], [2.366240190631324, 48.881319025236124], [2.366092301713511, 48.88139449015063], [2.365943195139867, 48.88147137386822], [2.365795305358959, 48.881546838405406], [2.365750154844014, 48.88157289112162], [2.3657823125404622, 48.88160119250816], [2.365910868218663, 48.881706260427876], [2.36604095489017, 48.881811732908005], [2.366169511609904, 48.88191680052994], [2.366299599342089, 48.88202227180959], [2.3664281570924253, 48.88212734003292], [2.3665582458743533, 48.882232811011384], [2.366686806040721, 48.88233787804488], [2.366816894497926, 48.8824433496142], [2.366945455705864, 48.88254841634982], [2.367075545212831, 48.88265388761788], [2.367204107462348, 48.88275895405569], [2.367334198019084, 48.88286442502256], [2.367462761310191, 48.882969491162484], [2.367592852927629, 48.883074960928845], [2.367721417249414, 48.88318002767024], [2.367851509916638, 48.88328549713538], [2.36798007529095, 48.88339056267961], [2.368110170360624, 48.883496032749974], [2.3682387354129872, 48.88360109798915], [2.368368831532477, 48.883706567758246], [2.368497397626462, 48.88381163269958], [2.368627494795779, 48.883917102167466], [2.368658869677618, 48.88396151722182], [2.368713539410048, 48.883954218764615], [2.368782205748387, 48.88389706881349], [2.368807795567446, 48.88385276795446], [2.36881998853736, 48.88384562682243], [2.368829289113236, 48.88382116828], [2.368880457383355, 48.883732588053434], [2.368919075417118, 48.88363493578035], [2.368957693316847, 48.88353728258692], [2.369034450495647, 48.88340440135707], [2.369036340379106, 48.88340215940004], [2.369189800736218, 48.88326402279154], [2.369338678223551, 48.88313491716654], [2.3693413050364303, 48.883133189005086], [2.369483526869913, 48.883062233755915], [2.36967494764199, 48.88298046843562], [2.36967523005349, 48.88298034401653], [2.369817449651025, 48.88290938835369], [2.369934131286929, 48.88285678561525], [2.370050812697992, 48.88280418186131], [2.370193031302803, 48.882733225741006], [2.370197872758152, 48.8827293400306], [2.370243788855062, 48.88265859488084], [2.370243035049172, 48.8826195573688], [2.370246197305219, 48.8826150431862], [2.37024507384373, 48.882592816671966], [2.370254032666183, 48.88255132741511], [2.370252437302103, 48.882468668043494], [2.370282631125606, 48.882458560125066], [2.370250585319186, 48.8824338416996], [2.370248234806176, 48.88231214388976], [2.370248047972161, 48.8821770574499], [2.370245697465795, 48.88205536051085], [2.370245510639383, 48.881920274039466], [2.370243160150435, 48.881798577071955], [2.370242973331527, 48.881663490569075], [2.3702163276897013, 48.8816313414836], [2.370144640538193, 48.88163107138099], [2.370049520426375, 48.88151974748007], [2.369947485074857, 48.88140117537586], [2.369852365804276, 48.88128985129507], [2.369750331352061, 48.881171278998075], [2.369655212922808, 48.88105995473738], [2.369553179369985, 48.88094138224759], [2.36945806179294, 48.88083005690778], [2.369356029128408, 48.88071148512446], [2.369260912392676, 48.880600159604754], [2.3691588806383033, 48.88048158672941], [2.369063764733082, 48.88037026192913], [2.368961733877968, 48.880251688861016], [2.368866618813934, 48.88014036388083], [2.368764588858069, 48.88002179061995], [2.368669474635415, 48.87991046545989], [2.368567445578788, 48.87979189200623], [2.368472332197303, 48.87968056666635], [2.368377220585905, 48.87956924124682], [2.368275192863139, 48.87945066750737], [2.368243378204167, 48.87942960546311]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 21, "roussel_fabien": 8.0, "nb_emargement": 1036.0, "nb_procuration": 61.0, "nb_vote_blanc": 8.0, "jadot_yannick": 78.0, "le_pen_marine": 63.0, "nb_exprime": 1021.0, "nb_vote_nul": 7.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1389.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1036, "quartier_bv": "40", "geo_point_2d": [48.88176310900215, 2.3683059613496433], "melenchon_jean_luc": 477.0, "poutou_philippe": 5.0, "macron_emmanuel": 251.0}, "geometry": {"type": "Point", "coordinates": [2.3683059613496433, 48.88176310900215]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f563cbd02f018dd7fd6a1eb4157feccbbb3d3a16", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 43, "zemmour_eric": 69.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-70", "geo_shape": {"coordinates": [[[2.376717338813709, 48.83634439575531], [2.376640585221532, 48.836319232658425], [2.376491629493099, 48.836232959921816], [2.376342359635653, 48.836146793276484], [2.376193403520482, 48.83606052104739], [2.376044134649818, 48.83597435401661], [2.375895180893981, 48.835888080510664], [2.375745913010093, 48.83580191309445], [2.375596958867606, 48.83571564009602], [2.375447691970488, 48.83562947229435], [2.375298740187428, 48.83554319801905], [2.375149472914762, 48.83545702982488], [2.375000522118035, 48.835370755164895], [2.374851257194443, 48.83528458659237], [2.374702306010843, 48.83519831243998], [2.374553042074006, 48.83511214348207], [2.37440409324992, 48.83502586805275], [2.374254830299832, 48.83493969870943], [2.374105881088963, 48.83485342378773], [2.373956619125616, 48.83476725405897], [2.37380767227415, 48.834680977860394], [2.373658409935251, 48.83459480773908], [2.373509464059179, 48.83450853205523], [2.3733602040693, 48.83442236155566], [2.373211257828149, 48.83433608458067], [2.373061998824999, 48.83424991369571], [2.372913054921604, 48.83416363724258], [2.3727637969159963, 48.83407746507289], [2.372614852636607, 48.83399118822796], [2.372465595606893, 48.8339050165722], [2.37231665368678, 48.83381873845052], [2.372167396281509, 48.83373256640221], [2.37201845533694, 48.83364628879521], [2.37186920028064, 48.83356011636867], [2.371720258970911, 48.8334738374706], [2.371571004901311, 48.833387664658694], [2.371422065929161, 48.83330138628246], [2.371272812846253, 48.833215213085175], [2.371123873509052, 48.833128933417875], [2.370974621412833, 48.833042759835216], [2.370944593293155, 48.83303418202097], [2.370913870975725, 48.833043167012434], [2.370815081613323, 48.83315241438614], [2.370708307616089, 48.83327100097041], [2.370609517391116, 48.83338024815211], [2.370502743821846, 48.83349883453592], [2.3704039527342973, 48.8336080815256], [2.370297176868459, 48.833726667694606], [2.370198384918321, 48.833835914492255], [2.370091608118265, 48.83395450045361], [2.369992815305426, 48.83406374705923], [2.369886038933318, 48.834182332820106], [2.369787245257873, 48.8342915792337], [2.369680466589147, 48.83441016477977], [2.369581672051082, 48.83451941100132], [2.369474892448004, 48.83463799633971], [2.369376097047412, 48.83474724236922], [2.369269317872166, 48.83486582750713], [2.369170521619821, 48.83497507244529], [2.369063740137023, 48.835093658267674], [2.368964943022033, 48.83520290301377], [2.368940346124472, 48.83523311788265], [2.368946776500313, 48.835243584464386], [2.3689595704629482, 48.83526440845074], [2.368998494401922, 48.835272654138265], [2.36915954651397, 48.83535004066623], [2.36931576808629, 48.83542484010284], [2.369476821139656, 48.83550222619306], [2.369633043612468, 48.835577026104446], [2.369794097607055, 48.835654411756956], [2.369950321002117, 48.835729210344454], [2.370111374575606, 48.83580659555207], [2.370267600244362, 48.83588139372217], [2.370423824988281, 48.835956192575395], [2.37058488132835, 48.83603357713693], [2.370741106994511, 48.83610837466629], [2.370902164275709, 48.83618575879009], [2.371058390853353, 48.83626055589485], [2.371219449075783, 48.83633793958089], [2.371375676553966, 48.836412737160394], [2.371536734355296, 48.83649012040155], [2.371692964117951, 48.8365649166643], [2.371854022860617, 48.83664229946771], [2.372010253534667, 48.83671709530592], [2.37217131321857, 48.83679447767158], [2.372327544793188, 48.836869273984426], [2.372488605418334, 48.8369466559124], [2.372644837915184, 48.83702145090137], [2.372805899481474, 48.83709883239151], [2.372970262357488, 48.83718054341747], [2.373131324898566, 48.83725792445842], [2.373295688797087, 48.8373396341263], [2.373456752312852, 48.83741701471808], [2.373621117212457, 48.83749872482647], [2.373782183065184, 48.837576104976186], [2.373946547625024, 48.837657813719346], [2.37410761444165, 48.83773519431918], [2.374271981375661, 48.837816902610626], [2.374433047815517, 48.837894281854815], [2.3745974157504373, 48.83797599058681], [2.374758483164997, 48.83805336938176], [2.3748270804248612, 48.838095317212215], [2.374838989363651, 48.8380941967892], [2.374954391646237, 48.83798860385531], [2.375065884342461, 48.83788598885732], [2.375181285704436, 48.83778039568487], [2.375292777508732, 48.83767778045628], [2.375408177950104, 48.83757218704529], [2.37551966886228, 48.83746957158612], [2.375635068393831, 48.83736397703727], [2.375746558403324, 48.837261362246835], [2.375861957014287, 48.837155767459386], [2.375973447494037, 48.837053152445506], [2.376088843822066, 48.8369475574124], [2.376200333409921, 48.83684494216791], [2.376315728817386, 48.83673934689633], [2.376427217513154, 48.83663673142121], [2.376542613362406, 48.8365311359182], [2.376654099803956, 48.836428520205416], [2.376710855818458, 48.836376584431825], [2.376717338813709, 48.83634439575531]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 70, "roussel_fabien": 23.0, "nb_emargement": 934.0, "nb_procuration": 46.0, "nb_vote_blanc": 9.0, "jadot_yannick": 53.0, "le_pen_marine": 59.0, "nb_exprime": 918.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1183.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 934, "quartier_bv": "50", "geo_point_2d": [48.83562303337425, 2.372774615266363], "melenchon_jean_luc": 347.0, "poutou_philippe": 5.0, "macron_emmanuel": 272.0}, "geometry": {"type": "Point", "coordinates": [2.372774615266363, 48.83562303337425]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "10b62c627e54c4423c35d2f8344849dbb578fc04", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 25, "zemmour_eric": 35.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "18-62", "geo_shape": {"coordinates": [[[2.361944752834472, 48.89322343234297], [2.361960030899349, 48.89322478538606], [2.362108565536061, 48.89321907911113], [2.3622930344333612, 48.893212487532374], [2.36249078349049, 48.893204890782386], [2.36267525228913, 48.893198298614784], [2.3628729998728772, 48.893190701226246], [2.363057468572745, 48.89318410846979], [2.363255217410645, 48.89317651045731], [2.363439686011836, 48.893169917112], [2.363447953517348, 48.89317139817354], [2.363605509145504, 48.89324018192927], [2.363761776690266, 48.893308599798836], [2.3639193331372033, 48.89337738403239], [2.364075601506137, 48.893445801483864], [2.36423315879383, 48.89351458439659], [2.364389427986934, 48.89358300142999], [2.364546986104399, 48.89365178392127], [2.364703256121775, 48.89372020053658], [2.36486081506891, 48.893788982606324], [2.365017085910459, 48.89385739880354], [2.365174645687469, 48.893926180451786], [2.365330917353091, 48.89399459623092], [2.365488477959876, 48.8940633774576], [2.365644750449675, 48.89413179281864], [2.365802313250084, 48.89420057363107], [2.365958586564063, 48.894268988574], [2.366116148819455, 48.89433776985691], [2.366272422957616, 48.894406184381744], [2.366274900318293, 48.89440704105309], [2.366454466974166, 48.89445401202553], [2.366644704355813, 48.89450419756934], [2.366824270316531, 48.894551167975905], [2.3670145084097243, 48.89460135292779], [2.367194076402999, 48.89464832278293], [2.3673843152076373, 48.89469850714295], [2.367563882505745, 48.89474547643219], [2.367754122021818, 48.89479566020027], [2.367933691352377, 48.89484262893805], [2.368123931590801, 48.894892811214945], [2.368303500215367, 48.89493978028611], [2.368493741165212, 48.894989961971106], [2.368673311833239, 48.89503692959151], [2.368863553483598, 48.89508711158387], [2.369043124820305, 48.89513407864563], [2.369233367181985, 48.89518426004603], [2.36941293782349, 48.89523122654191], [2.369603180896687, 48.89528140735039], [2.369782753570737, 48.89532837329476], [2.369972997366229, 48.89537855261202], [2.370152569334182, 48.8954255188898], [2.370342813841075, 48.895475697615154], [2.370522387852349, 48.89552266244213], [2.370712633059766, 48.89557284147484], [2.3708922063759132, 48.89561980573597], [2.371082452294729, 48.89566998417673], [2.371262027643416, 48.89571694788628], [2.371289958854494, 48.89574968669154], [2.371339517206927, 48.89574241867185], [2.371426968535352, 48.8956741752545], [2.371585561328112, 48.895548347681654], [2.37167301200805, 48.89548010407254], [2.37167416180715, 48.895480104709335], [2.371716705533057, 48.895458331506475], [2.371770197689247, 48.89541371909476], [2.371768659536667, 48.89540148030469], [2.371607055273501, 48.89530486677445], [2.371455298743955, 48.895212588152795], [2.371293697001608, 48.89511597508945], [2.371141941578036, 48.895023696054814], [2.3709803396397, 48.894927082544804], [2.370828585322, 48.894834803097154], [2.370666984562312, 48.894738188248375], [2.370515231339705, 48.894645909287036], [2.370512419408573, 48.89464350052033], [2.370487108324173, 48.894612540630554], [2.370441730517688, 48.89455592290542], [2.370436532627646, 48.89453618251678], [2.370406091705215, 48.89452261094198], [2.370367636523475, 48.8944746306616], [2.370270358911896, 48.89435274081717], [2.37018652808394, 48.89424814265521], [2.370089249955671, 48.8941262526313], [2.370005419845246, 48.8940216552202], [2.370004375288158, 48.89401994821339], [2.369948773372597, 48.893892996488525], [2.369892186112184, 48.89376341262556], [2.369836584754915, 48.89363645991964], [2.369779999416468, 48.893506875980506], [2.369724398595814, 48.893379924092045], [2.369667812451454, 48.893250340062416], [2.369612212178294, 48.89312338809213], [2.369555627955871, 48.89299380398633], [2.369500028241081, 48.89286685103503], [2.369443444576555, 48.8927372668459], [2.369387845398351, 48.89261031471205], [2.369331260928114, 48.892480730432396], [2.369275662297379, 48.892353778216815], [2.369219079748828, 48.892224193861004], [2.369163481676448, 48.89209724066435], [2.369106899685975, 48.891967656225255], [2.36905130215015, 48.89184070384606], [2.368994719353758, 48.89171111931643], [2.368939122365379, 48.89158416685549], [2.368882541490834, 48.89145458224976], [2.36882694506079, 48.89132762880776], [2.368770363380325, 48.891198044111505], [2.368714767486913, 48.89107109148702], [2.368658187728164, 48.89094150671466], [2.36860259238207, 48.89081455400838], [2.368546013181254, 48.890684969152744], [2.368490418393478, 48.89055801546548], [2.368433838386942, 48.8904284305193], [2.368378244135665, 48.8903014776495], [2.368321666050698, 48.89017189262728], [2.368266072346919, 48.89004493967569], [2.368209494819863, 48.8899153545702], [2.368176203648653, 48.889839330945385], [2.368179003285404, 48.88982586397235], [2.36816704053574, 48.88981065086097], [2.368144737218986, 48.88975972054299], [2.3681110008038733, 48.88969399268349], [2.368093080223761, 48.889682780685604], [2.36803641699955, 48.88970010747239], [2.367831183235529, 48.88970911722786], [2.367625354698586, 48.8897176846213], [2.367420120805086, 48.889726692772854], [2.36721429212011, 48.88973526035887], [2.367009058086225, 48.88974426780571], [2.366803229264043, 48.88975283468502], [2.366597996453617, 48.88976184143444], [2.366392166141551, 48.889770406700514], [2.36618693317982, 48.88977941364449], [2.365981102730677, 48.889787978203856], [2.365775869639541, 48.88979698354392], [2.365570039042381, 48.88980554829581], [2.365364805810802, 48.88981455293119], [2.365158975076681, 48.88982311697637], [2.364953741704773, 48.88983212090707], [2.364747910844573, 48.88984068334625], [2.364542677321375, 48.889849687471525], [2.364336846324143, 48.88985824920401], [2.364131612660629, 48.889867252624654], [2.363925781526376, 48.88987581365039], [2.363720547733548, 48.88988481546704], [2.36351471781493, 48.889893376692584], [2.363309482518182, 48.88990237779732], [2.363103652473556, 48.88991093741689], [2.363099555942766, 48.88991235994054], [2.363105263782162, 48.889948792197224], [2.363120071992423, 48.89007310972508], [2.363135013894131, 48.890198544906625], [2.363149823610094, 48.890322862409796], [2.363164765644147, 48.89044829845832], [2.363179574138529, 48.89057261592224], [2.363194516315922, 48.890698051938514], [2.363209324952366, 48.89082236937049], [2.3632242672841, 48.89094780445524], [2.363239076062607, 48.89107212185522], [2.363254018526689, 48.891197557806954], [2.363268827447262, 48.891321875174945], [2.363283770065688, 48.89144731019517], [2.363298580492109, 48.89157162753844], [2.36331352324289, 48.89169706342562], [2.363328332447605, 48.89182138072963], [2.363343275352733, 48.89194681568533], [2.3633314612975482, 48.89195643586585], [2.363129174765404, 48.89197401480427], [2.362926671004473, 48.89199161293018], [2.362724385562691, 48.892009191191555], [2.362521880175461, 48.8920267877258], [2.362319594460368, 48.89204436530279], [2.362117090152314, 48.892061962058506], [2.361914802800122, 48.8920795389439], [2.361712298229492, 48.892097134115254], [2.361700583003057, 48.8921073428183], [2.361730714922143, 48.89224406176971], [2.361760387013932, 48.89237869631642], [2.361790517883287, 48.89251541521164], [2.361820190295477, 48.89265004881097], [2.361850321478896, 48.89278676765733], [2.361879994189246, 48.89292140210775], [2.361910125686837, 48.89305812090522], [2.361939798706475, 48.89319275530751], [2.361944752834472, 48.89322343234297]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 62, "roussel_fabien": 27.0, "nb_emargement": 1204.0, "nb_procuration": 52.0, "nb_vote_blanc": 9.0, "jadot_yannick": 71.0, "le_pen_marine": 71.0, "nb_exprime": 1192.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1699.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1204, "quartier_bv": "72", "geo_point_2d": [48.892408492109645, 2.3665105999150136], "melenchon_jean_luc": 678.0, "poutou_philippe": 11.0, "macron_emmanuel": 227.0}, "geometry": {"type": "Point", "coordinates": [2.3665105999150136, 48.892408492109645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9f250529ea4ba933472214f981ce184ef173ebd9", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 107, "zemmour_eric": 95.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "12-35", "geo_shape": {"coordinates": [[[2.408954394868334, 48.84443759277247], [2.408944374470466, 48.844405134975084], [2.408914167057888, 48.8442724836084], [2.408884556642055, 48.84414247297905], [2.40885494501141, 48.84401246232045], [2.408824739426782, 48.843879809991925], [2.408823840482686, 48.84385323046746], [2.408801257477168, 48.84384681437985], [2.408740968711764, 48.84371670421398], [2.40868784211699, 48.843596069949044], [2.408627553914672, 48.84346596059608], [2.40857442647548, 48.84334532624693], [2.40851413884624, 48.84321521680758], [2.408461013297881, 48.84309458148837], [2.408407887985244, 48.84297394703183], [2.408347601201336, 48.842843837465225], [2.408294476406786, 48.842723202931225], [2.408234190196136, 48.842593093278246], [2.408181064557166, 48.84247245866004], [2.408120778929779, 48.842342348021376], [2.408067655171388, 48.842221713332385], [2.408007370107031, 48.842091603506695], [2.407954246866603, 48.84197096874024], [2.407893962375379, 48.84184085882816], [2.407840839663329, 48.84172022308496], [2.407780555745128, 48.84159011308644], [2.407746144620399, 48.84151197015561], [2.407717141192955, 48.841487206623434], [2.407675955928837, 48.84149464994753], [2.407550862319799, 48.841590528941275], [2.407423600816532, 48.84168781444809], [2.407298506279551, 48.84178369316138], [2.407171243833699, 48.84188097838293], [2.407046148379103, 48.84197685591637], [2.406918884990453, 48.842074140852645], [2.406793788597874, 48.842170019004925], [2.406666524266522, 48.84226730365586], [2.406541426945978, 48.84236318152766], [2.406414161682258, 48.842460464994005], [2.406289063433845, 48.84255634258532], [2.406161797217064, 48.84265362666564], [2.406036698040872, 48.84274950397646], [2.405909430881365, 48.84284678777146], [2.405784330777286, 48.8429426648018], [2.405657062685299, 48.84303994741217], [2.405531961653227, 48.84313582416198], [2.405404692608243, 48.843233107386375], [2.405381200626783, 48.84322951010991], [2.405317283257316, 48.843068570780844], [2.405274481330577, 48.84293264317327], [2.405258752985956, 48.84292561924268], [2.405001639254527, 48.842955829920434], [2.404805257147907, 48.84298250106508], [2.404804592557203, 48.84298259039234], [2.4047825170987522, 48.842992178329204], [2.404785157485212, 48.843016302340004], [2.404824411532617, 48.84314160184966], [2.404861409172109, 48.843264410578364], [2.4049006635897, 48.843389710035105], [2.404937660222468, 48.84351251870613], [2.40497465839212, 48.84363532735896], [2.405013913361347, 48.8437606267369], [2.405050911886808, 48.84388343533884], [2.405090167226235, 48.844008734663866], [2.405127166107512, 48.844131543214935], [2.405166421827408, 48.84425684158775], [2.405169627908748, 48.84426103054256], [2.405300097138682, 48.84435690483136], [2.405439605783111, 48.8444584448686], [2.405570076003896, 48.844554318846036], [2.405709585702767, 48.84465585855048], [2.405712850891144, 48.8446601278252], [2.4057156095194943, 48.84468014140789], [2.405736530385556, 48.84468952218842], [2.405771724908169, 48.84480511945025], [2.4057931563119412, 48.84490393829917], [2.4058047385753882, 48.84491887656746], [2.405841891970009, 48.84491825796926], [2.406045688904867, 48.844903225437314], [2.406247449226996, 48.844887301082046], [2.406451245923819, 48.844872267858754], [2.4066530060124203, 48.844856341919844], [2.40685476597771, 48.84484041564036], [2.407058562305772, 48.844825382281236], [2.407260322027373, 48.84480945531739], [2.407464118127503, 48.84479442036773], [2.4076658776053, 48.84477849271947], [2.407869673457239, 48.84476345797783], [2.407882420820184, 48.84476164951119], [2.407895201229823, 48.84473690313795], [2.407898609212756, 48.84464766343761], [2.40789834857526, 48.84454443228001], [2.40791010434656, 48.84453550859466], [2.408079905058244, 48.84451997427976], [2.40825567996806, 48.84450450434948], [2.408425481838175, 48.84448896955047], [2.408601256540841, 48.84447349911202], [2.40877105684448, 48.84445796381531], [2.408946831339991, 48.844442492868744], [2.408954394868334, 48.84443759277247]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 35, "roussel_fabien": 19.0, "nb_emargement": 1186.0, "nb_procuration": 58.0, "nb_vote_blanc": 13.0, "jadot_yannick": 99.0, "le_pen_marine": 54.0, "nb_exprime": 1168.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1447.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "45", "geo_point_2d": [48.84351876523952, 2.40696659725092], "melenchon_jean_luc": 257.0, "poutou_philippe": 2.0, "macron_emmanuel": 469.0}, "geometry": {"type": "Point", "coordinates": [2.40696659725092, 48.84351876523952]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d396a10d929e229f4f9db5389a4910c70881a04d", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 31, "zemmour_eric": 64.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-17", "geo_shape": {"coordinates": [[[2.4025469179788193, 48.87594107790101], [2.402513189293811, 48.87592813546356], [2.402458228534447, 48.87580497564565], [2.402411611134168, 48.875699969967435], [2.402409724026732, 48.875697366875926], [2.402291075317136, 48.87558468996957], [2.4021720349529723, 48.87547185089462], [2.402053385907938, 48.87535917372289], [2.4019343479478152, 48.87524633349602], [2.4018156999307, 48.87513365606566], [2.401696661637568, 48.87502081557256], [2.401578016011713, 48.87490813789039], [2.401458978738484, 48.874795298037185], [2.401340332787613, 48.87468261919032], [2.401221297908049, 48.8745697790845], [2.401102652974626, 48.8744571008783], [2.400983617772476, 48.87434425960698], [2.400864975230261, 48.874231581149004], [2.4007459410480703, 48.87411874051757], [2.400627298180733, 48.87400606089488], [2.400508266392054, 48.8738932200109], [2.400506282555615, 48.873885768096834], [2.4005491974502142, 48.87377951819537], [2.400602725289047, 48.873644897994346], [2.400645638435598, 48.873538647129024], [2.400699167130606, 48.87340402776162], [2.40074207988188, 48.873297776838506], [2.400760710720769, 48.873250924012105], [2.400764764769395, 48.87323450269592], [2.400738855888869, 48.87322972703616], [2.400547278950039, 48.87317680521708], [2.400360049627523, 48.87312499395888], [2.40017281931418, 48.873073182398535], [2.399981243526232, 48.87302025966607], [2.399794013966164, 48.87296844750833], [2.399602440311604, 48.872915524171425], [2.399415211504814, 48.87286371141633], [2.399223638609975, 48.8728107883674], [2.399216277717853, 48.87279910145342], [2.399287746471864, 48.87268331387146], [2.3993588250889673, 48.872568581895344], [2.399430293209816, 48.87245279420408], [2.399501371198272, 48.87233806211936], [2.399572838686067, 48.87222227431885], [2.399643916045986, 48.872107542125526], [2.399715381537364, 48.87199175420887], [2.399786458268757, 48.87187702190699], [2.399857924490169, 48.871761233887895], [2.399929000593144, 48.87164650147741], [2.400000466181423, 48.871530713349074], [2.400071541655783, 48.871415980830015], [2.400143006611042, 48.87130019259239], [2.400214080093646, 48.87118545995792], [2.400214465278979, 48.87117935810133], [2.400162090520479, 48.8710695503422], [2.4001051340848543, 48.87094919376665], [2.400112628115851, 48.870937832251116], [2.400095637670555, 48.87092489829611], [2.400060776040214, 48.87091442438191], [2.399882615697006, 48.87086025555794], [2.399718932320088, 48.87081107663336], [2.399555247889106, 48.870761897475894], [2.399377088593287, 48.870707727892075], [2.3993479559070803, 48.870691334309], [2.399330547063766, 48.87070087433394], [2.399300221651299, 48.87073577464752], [2.399270174294686, 48.87076961243419], [2.399235486839229, 48.87078980469017], [2.399243420088925, 48.870803732944125], [2.3991816386513243, 48.870873311098244], [2.399080029551187, 48.870989571622665], [2.398988201311848, 48.87109298739359], [2.398886591361832, 48.871209246831434], [2.398794762351183, 48.871312662433375], [2.398693151540905, 48.87142892168389], [2.398601321758937, 48.87153233711688], [2.398499710078003, 48.87164859707935], [2.398407879524706, 48.87175201234335], [2.398408539528976, 48.87176167811241], [2.398454515805677, 48.8718047993447], [2.398499479707524, 48.8718471690222], [2.398500196827708, 48.87185673075406], [2.3983871243042, 48.87198950323716], [2.398275030521031, 48.87212082090074], [2.398161956850292, 48.8722535931394], [2.398049860567856, 48.872384910553876], [2.398048107694034, 48.872389360638], [2.398049322558773, 48.872515577504636], [2.398050220184658, 48.872654617264345], [2.398051435060701, 48.872780834100624], [2.398052332707188, 48.87291987292761], [2.398053547594538, 48.87304608973359], [2.398054445251235, 48.873185128527155], [2.398055660149891, 48.87331134530277], [2.398056556443096, 48.87345038495534], [2.398057039746099, 48.87350058277595], [2.398055527200688, 48.87351773804653], [2.39805907945971, 48.87352027404278], [2.398059811070021, 48.87359629296606], [2.398061123298914, 48.873730723793344], [2.398062338226579, 48.87385694050647], [2.398063650458166, 48.87399137220124], [2.398064865398037, 48.87411758888455], [2.398066176289776, 48.87425201964144], [2.398067391241845, 48.874378236294895], [2.398068703499609, 48.8745126679261], [2.398069918463881, 48.87463888454976], [2.398071230745127, 48.87477331524987], [2.398072445721605, 48.87489953184366], [2.398073756642197, 48.87503396340446], [2.398074971641268, 48.875160179069134], [2.398076283938297, 48.87529461060498], [2.39807749893918, 48.8754208271391], [2.398077277785799, 48.87546568199526], [2.398096976666155, 48.87546766964163], [2.398198887181942, 48.87546963893299], [2.398436021472601, 48.875474214119535], [2.398597151164235, 48.875477327820285], [2.398758282238497, 48.87548044131102], [2.398995416637844, 48.87548501449011], [2.399000708182652, 48.875485831569236], [2.399180042321564, 48.875529602029324], [2.399319992490498, 48.87557199557623], [2.399337869541231, 48.87557649919888], [2.399354692481462, 48.875575344331914], [2.399551275591318, 48.87560199116958], [2.399749164388487, 48.87562834115515], [2.399945749263548, 48.875654987350565], [2.40014363846153, 48.87568133668279], [2.400340223728067, 48.875707983128386], [2.400538113326959, 48.87573433180727], [2.400734697642407, 48.87576097669767], [2.400932587642196, 48.8757873247232], [2.401129173722725, 48.875813968971364], [2.401327064123404, 48.875840316343506], [2.401523649242465, 48.875866959935806], [2.4017215414073982, 48.87589330666142], [2.401918126928151, 48.8759199496046], [2.402116018130583, 48.87594629567004], [2.402312605406179, 48.87597293887023], [2.402454041714141, 48.875991768272314], [2.402510497009578, 48.875999284282265], [2.402528052454314, 48.87599192454445], [2.402527685955444, 48.87596456506928], [2.4025469179788193, 48.87594107790101]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 17, "roussel_fabien": 38.0, "nb_emargement": 1175.0, "nb_procuration": 43.0, "nb_vote_blanc": 14.0, "jadot_yannick": 62.0, "le_pen_marine": 68.0, "nb_exprime": 1158.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1550.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1175, "quartier_bv": "78", "geo_point_2d": [48.87384821366769, 2.3996112895425648], "melenchon_jean_luc": 544.0, "poutou_philippe": 20.0, "macron_emmanuel": 274.0}, "geometry": {"type": "Point", "coordinates": [2.3996112895425648, 48.87384821366769]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a07ba9c48a3bf3844173094a106be51d6eebbb0e", "fields": {"lassalle_jean": 25.0, "pecresse_valerie": 134, "zemmour_eric": 121.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-70", "geo_shape": {"coordinates": [[[2.293373028465064, 48.83581081155196], [2.293367952295011, 48.835802863477404], [2.293215974068454, 48.83572119187829], [2.2930678002939873, 48.83564031062794], [2.292915824374045, 48.835558638643626], [2.292767650165068, 48.83547775700167], [2.292763420782217, 48.83546795579848], [2.292822408849259, 48.835352314994786], [2.292881515513633, 48.835237252250955], [2.29294050305762, 48.83512161136514], [2.292999609187529, 48.83500654943856], [2.293058594858378, 48.83489090756332], [2.293117701828315, 48.834775845562675], [2.293176686963831, 48.834660204504694], [2.293235793423702, 48.834545141522675], [2.29329477803629, 48.834429500382555], [2.293353882599446, 48.834314438209766], [2.293412868063474, 48.83419879609634], [2.29347197210439, 48.83408373384144], [2.293473576252004, 48.8340742369227], [2.29345879470581, 48.83406650042132], [2.293295985912126, 48.83397031183031], [2.293135349182399, 48.833875236677926], [2.292974713038733, 48.83378016130176], [2.2928119060325862, 48.83368397202727], [2.292651271068225, 48.833588896200474], [2.292488465256258, 48.833492706469244], [2.292327831471092, 48.83339763019184], [2.292165026853397, 48.83330144000398], [2.292160488989145, 48.83329471369783], [2.29216094992228, 48.83318442056518], [2.292160659293358, 48.833073793802214], [2.292161118862147, 48.83296350063977], [2.292160829596229, 48.83285287386303], [2.29216128916261, 48.832742580678854], [2.292160998535432, 48.832631953872244], [2.292156470992691, 48.83262527439022], [2.292059205603409, 48.83256791837989], [2.291945679034771, 48.832500696094066], [2.291926814787901, 48.832501122243016], [2.2917915343924298, 48.832592993934064], [2.291654443370178, 48.83268634231259], [2.29151916202625, 48.83277821278107], [2.291382071391404, 48.832871560840054], [2.291246789074572, 48.832963431884544], [2.291109696114884, 48.8330567787085], [2.29097441283736, 48.83314864942978], [2.2908373188906, 48.833241996825414], [2.290702034664613, 48.83333386632407], [2.290585659397284, 48.83341310546311], [2.290566584771668, 48.83342626171663], [2.290545835082527, 48.83342706049958], [2.290254313116434, 48.833627781350856], [2.290251775481732, 48.83363025306642], [2.290249920317978, 48.83363292939255], [2.290248750324968, 48.833635812144045], [2.290008010886908, 48.83530950815297], [2.290004682026355, 48.835314050020294], [2.290017392661053, 48.8353241822737], [2.2900252717243212, 48.83533495588071], [2.290021920708853, 48.835358928600954], [2.29000414208989, 48.83548461855993], [2.289986863104673, 48.835608228517884], [2.289969085678357, 48.83573391845174], [2.289951806527472, 48.83585752837704], [2.289940682309066, 48.835872447709484], [2.28994778730537, 48.83588034232154], [2.29010311424876, 48.83591956592976], [2.290244636425512, 48.835954271707195], [2.290399962450254, 48.83599349491927], [2.290541485025363, 48.83602820034318], [2.290545857145735, 48.83602878838425], [2.290735804464595, 48.83603350876612], [2.290927671528737, 48.836038122408674], [2.291117618916183, 48.836042842184206], [2.291309484686153, 48.83604745520619], [2.29149943350439, 48.83605217438342], [2.291691299342599, 48.836056786792945], [2.291881246867087, 48.83606150535577], [2.292073114147852, 48.83606611626155], [2.292263061728787, 48.83607083511732], [2.292454927715347, 48.83607544540256], [2.292644876727156, 48.836080163660036], [2.29283674278182, 48.8360847733328], [2.29302669049986, 48.83608949097585], [2.293218557984935, 48.83609410004421], [2.293232073174755, 48.83608775927673], [2.2932945026226, 48.83595390833845], [2.293358198188093, 48.835824020278906], [2.293373028465064, 48.83581081155196]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 70, "roussel_fabien": 19.0, "nb_emargement": 1374.0, "nb_procuration": 64.0, "nb_vote_blanc": 14.0, "jadot_yannick": 112.0, "le_pen_marine": 83.0, "nb_exprime": 1352.0, "nb_vote_nul": 8.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1732.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1374, "quartier_bv": "57", "geo_point_2d": [48.834610767917994, 2.2916195143673743], "melenchon_jean_luc": 270.0, "poutou_philippe": 5.0, "macron_emmanuel": 534.0}, "geometry": {"type": "Point", "coordinates": [2.2916195143673743, 48.834610767917994]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c49b39ee35b63ceb76eb1cd33ecfb3fb6f421aa4", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 108, "zemmour_eric": 103.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "5-8", "geo_shape": {"coordinates": [[[2.342973672119568, 48.84609718417005], [2.342944447648365, 48.84606688609817], [2.342880372123803, 48.84594082244481], [2.3428147027740662, 48.845813232764336], [2.342750627875207, 48.84568716901279], [2.342684959174068, 48.845559578332754], [2.34262088488956, 48.845433515382325], [2.342555216825771, 48.84530592460205], [2.342491143178187, 48.84517986065415], [2.342425475740292, 48.84505227067293], [2.342361402718386, 48.84492620662688], [2.342295735929069, 48.844798615646134], [2.342231663521479, 48.844672552401214], [2.342165997369384, 48.84454496132021], [2.342101925598803, 48.84441889707782], [2.342036260072568, 48.84429130679589], [2.341972188927635, 48.84416524245537], [2.341906524049958, 48.84403765117389], [2.341842453519412, 48.84391158763455], [2.341776789278828, 48.84378399625283], [2.34171271938527, 48.84365793171601], [2.341647055770513, 48.84353034113342], [2.341582985140062, 48.84340427649092], [2.341517323536359, 48.84327668491631], [2.341496817239573, 48.84327059847222], [2.341469955268475, 48.84327987143399], [2.341263956122136, 48.843323387957746], [2.341072765239905, 48.84336431638335], [2.340881572694977, 48.84340524449443], [2.340675572573209, 48.84344875910081], [2.340484380769017, 48.84348968658149], [2.340278379970484, 48.84353320139993], [2.340087186182096, 48.84357412823523], [2.339932125298104, 48.843606881967354], [2.33988399699267, 48.8436179744602], [2.339883580201421, 48.84361860711051], [2.33983263823749, 48.84362936748128], [2.33964859789581, 48.84366745602963], [2.3394425956968252, 48.84371096940197], [2.339439086566378, 48.84371207962545], [2.339244741127807, 48.84379803769238], [2.339080286471905, 48.84390075292224], [2.338988237801611, 48.843920697656536], [2.338990254075211, 48.84395413900623], [2.33905850914857, 48.844080202942145], [2.339127617152493, 48.84420737235437], [2.339195872878252, 48.84433343708257], [2.33926498155314, 48.84446060638659], [2.339333237954318, 48.844586670108534], [2.3394023473001813, 48.84471383930432], [2.339470604353883, 48.84483990381852], [2.339539715733288, 48.84496707291361], [2.339607973462222, 48.845093136421504], [2.339677084150066, 48.84522030540083], [2.339745342531651, 48.84534636970104], [2.339814453890499, 48.845473538572136], [2.339882712947427, 48.845599601866006], [2.339951826339762, 48.84572677063636], [2.340020086049265, 48.84585283472251], [2.340089198750151, 48.845980003377115], [2.3401574591350123, 48.84610606645697], [2.340226572495543, 48.846233235902616], [2.340294833544283, 48.84635929887541], [2.34036394758724, 48.84648646731352], [2.340432209288686, 48.84661253107861], [2.340501325365297, 48.846739699415956], [2.340489716826535, 48.84680860556016], [2.340563875092617, 48.846832510122056], [2.340632990419647, 48.84695967835073], [2.340705493135882, 48.847088400397446], [2.340774610510467, 48.84721556852262], [2.340847112569986, 48.84734429044644], [2.340864290464701, 48.847349045568755], [2.340950546435104, 48.847320031646056], [2.3411077830433022, 48.84728759980659], [2.341284456202333, 48.847248857845024], [2.341441692376521, 48.84721642646398], [2.341618363683524, 48.84717768399933], [2.341775600809148, 48.847145251285575], [2.341952271626528, 48.84710650832542], [2.341959960888173, 48.84709369516909], [2.341868611934915, 48.84698223686878], [2.341789297742454, 48.84687720766946], [2.341697949522302, 48.84676575011649], [2.341618636003155, 48.84666072078362], [2.341625825109773, 48.846648344678286], [2.341796075208077, 48.84660395999467], [2.341952732415148, 48.84656259410318], [2.3421229819550042, 48.84651820895095], [2.342279638633479, 48.846476843527505], [2.342449886252191, 48.84643245789922], [2.342606543787364, 48.84639109115272], [2.342613453235005, 48.84638703613036], [2.342673821349989, 48.846313735397274], [2.342843601143352, 48.84617983868854], [2.342955154053835, 48.84611195519507], [2.342973672119568, 48.84609718417005]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 8, "roussel_fabien": 22.0, "nb_emargement": 1328.0, "nb_procuration": 90.0, "nb_vote_blanc": 11.0, "jadot_yannick": 118.0, "le_pen_marine": 38.0, "nb_exprime": 1315.0, "nb_vote_nul": 5.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1647.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "19", "geo_point_2d": [48.845178280999, 2.3410207997714187], "melenchon_jean_luc": 244.0, "poutou_philippe": 2.0, "macron_emmanuel": 616.0}, "geometry": {"type": "Point", "coordinates": [2.3410207997714187, 48.845178280999]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0b2887701f4db6d8c8b47a32a6cd0c7344de4f24", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 30, "zemmour_eric": 49.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-45", "geo_shape": {"coordinates": [[[2.408363433216961, 48.838174626567266], [2.408360050024045, 48.83820117515937], [2.408399255306108, 48.83832580644464], [2.408437339551119, 48.838457153980805], [2.40847654520032, 48.83858178611148], [2.4085146298271303, 48.83871313359298], [2.408553835863784, 48.83883776477048], [2.40859191951009, 48.838969112190526], [2.408578346308419, 48.83898211099033], [2.408592959221946, 48.83900572219644], [2.408631044451973, 48.83913706959104], [2.408668860694462, 48.83926572294319], [2.408706944943316, 48.839397070276306], [2.4087447615516853, 48.83952572447384], [2.40878284754411, 48.839657071758985], [2.408820664538673, 48.83978572500324], [2.40885848171982, 48.83991437822077], [2.408896566910279, 48.84004572631654], [2.408934384467423, 48.840174379480125], [2.408972471411782, 48.84030572662859], [2.408972458996475, 48.840318957041134], [2.408991179360479, 48.840329922785436], [2.409029265199073, 48.840461269890774], [2.409070852925863, 48.84058468033549], [2.409108940503754, 48.84071602829154], [2.409150528622469, 48.84083943868037], [2.409171468868057, 48.84086746090183], [2.409188637089642, 48.84086464616218], [2.40936632170942, 48.840897039822984], [2.409531845727614, 48.84092718235576], [2.409709532146432, 48.840959574612334], [2.409875056561704, 48.84098971666856], [2.410040582530887, 48.84101985850165], [2.410218268219353, 48.84105224999318], [2.410224678203703, 48.84105483667353], [2.410349364336301, 48.841144485129874], [2.410470169463429, 48.84123012386769], [2.410590973635343, 48.84131576157102], [2.410715661022178, 48.84140540962463], [2.4107188393829633, 48.84140930241467], [2.410769931854344, 48.84154364119378], [2.410816785601986, 48.84167365383045], [2.410816917522353, 48.84167765302581], [2.410766818297777, 48.841838568510376], [2.410714165424608, 48.84199393492669], [2.410714191035018, 48.841997936295456], [2.410751156087792, 48.84212092477353], [2.410802265672122, 48.84226587145565], [2.410819050663576, 48.842272522132824], [2.411055743023272, 48.842230806269754], [2.411295920512006, 48.84218558160798], [2.411313168901665, 48.84219306820095], [2.411337703953279, 48.8423173524306], [2.411364552895086, 48.84245453132011], [2.411389088182157, 48.842578816409414], [2.411415937394002, 48.842715995255226], [2.411440472926693, 48.84284028030487], [2.411467321045964, 48.84297745910031], [2.411491856824171, 48.84310174411029], [2.411518706575898, 48.843238922868736], [2.411543242599834, 48.84336320783905], [2.41157009262151, 48.84350038655383], [2.411594628890975, 48.84362467148446], [2.4116214791826023, 48.84376185015556], [2.411646015697802, 48.84388613504653], [2.411672864896845, 48.84402331366726], [2.411697401657678, 48.84414759851856], [2.411691555709425, 48.84416441290814], [2.411719880003753, 48.84417733204075], [2.41179177479813, 48.84428502097712], [2.411873664302082, 48.84441108876242], [2.41194555837423, 48.84451877757713], [2.412027448607218, 48.84464484613005], [2.412099343319591, 48.84475253482976], [2.412181234302021, 48.84487860235168], [2.412253131017192, 48.844986290943105], [2.412335021376458, 48.84511235832659], [2.412406918721635, 48.845220047702355], [2.412397315265728, 48.845232466493705], [2.412191002205016, 48.845261756749125], [2.411982847454314, 48.84528976680847], [2.411776533923581, 48.84531905724696], [2.411568378721268, 48.84534706658377], [2.4113620647308682, 48.84537635630597], [2.411153910439427, 48.84540436492689], [2.410947595999433, 48.845433653033545], [2.410739439893827, 48.8454616609252], [2.41072880471398, 48.84547225150796], [2.410767359384802, 48.84559840415085], [2.410803333229158, 48.84572167961103], [2.410841888264808, 48.845847832201684], [2.410877862467795, 48.84597110671256], [2.410916417868479, 48.84609725925095], [2.410952392409666, 48.84622053461112], [2.4109909481752902, 48.846346687097295], [2.411026923075115, 48.84646996150816], [2.411065479205682, 48.84659611394208], [2.411101454443924, 48.846719389202235], [2.411140010939339, 48.84684554158385], [2.411175986536226, 48.84696881589471], [2.411191039202358, 48.84700301505404], [2.41122287604592, 48.847020680353], [2.411420308847835, 48.847003132320076], [2.411615886714767, 48.846986567725644], [2.411813319255111, 48.84696901904366], [2.4120088982317203, 48.84695245381293], [2.412206329147864, 48.84693490447514], [2.41240190787152, 48.84691833860147], [2.412599339888692, 48.84690078862131], [2.412794918359385, 48.84688422210467], [2.412992348752342, 48.84686667146877], [2.413187926970063, 48.846850104309134], [2.413385357101412, 48.846832553024136], [2.413580935066153, 48.846815985221546], [2.413776512896424, 48.84679941799833], [2.413973944010251, 48.846781864848644], [2.414169521587534, 48.84676529698248], [2.414366951077108, 48.84674774317699], [2.414562528401395, 48.846731174667866], [2.414759957629322, 48.84671362021332], [2.414955534700602, 48.84669705106122], [2.415152965029485, 48.8466794959643], [2.41534854184775, 48.84666292616924], [2.415545970552356, 48.84664537041656], [2.415741547117595, 48.846628799978575], [2.415938975560527, 48.84661124357683], [2.415957245504158, 48.846611663729384], [2.415956127181812, 48.84659241480132], [2.41593746040468, 48.84649961650215], [2.415913466107541, 48.84637991319671], [2.415894800845089, 48.846287114879786], [2.415894665273536, 48.84628644509861], [2.415870672535336, 48.84616674176832], [2.415848936705159, 48.8460586861816], [2.415838803280892, 48.84600830615176], [2.415814809426376, 48.84588860367304], [2.415785472915405, 48.845742754240874], [2.415761479305739, 48.845623051722974], [2.415737487178854, 48.84550334829473], [2.415708151091051, 48.84535749969253], [2.415698744584397, 48.84531073317758], [2.415674751382808, 48.845191029696586], [2.415660648184061, 48.845120910968056], [2.415622267077909, 48.844992960243644], [2.415581168064699, 48.84485975567258], [2.415542787356189, 48.84473180399344], [2.41550169011462, 48.84459859937053], [2.415463309783369, 48.844470648535186], [2.415422211588318, 48.84433744384709], [2.415383831654699, 48.844209492057026], [2.4153427338687212, 48.84407628731047], [2.41530435568498, 48.8439483354716], [2.415275251715408, 48.84385400278901], [2.415246146488554, 48.84375967008471], [2.415207768765096, 48.84363171907787], [2.415180582051375, 48.84354360127308], [2.415142203295548, 48.84341564931444], [2.415115018157719, 48.843327532383675], [2.415110963484366, 48.84331438825335], [2.415096371099714, 48.843267088110025], [2.4150579927542433, 48.84313913609262], [2.415020974967868, 48.84301914910655], [2.414982596979871, 48.84289119793588], [2.414945579543169, 48.84277121089981], [2.414907203295538, 48.84264325878384], [2.414870184845998, 48.84252327169114], [2.414831808955923, 48.842395320421865], [2.414800232441979, 48.84229296751324], [2.414784801833026, 48.84224294982466], [2.41474642500657, 48.84211499758991], [2.414700029734232, 48.841964606699705], [2.414661653310736, 48.84183665530512], [2.414623339794832, 48.84171246080741], [2.41458496375536, 48.841584508460016], [2.4145339247876603, 48.841427305451674], [2.414495550540126, 48.84129935304959], [2.414494499605793, 48.84129611651259], [2.414457515770887, 48.84116970069582], [2.4144191405381292, 48.84104174823303], [2.414382158438959, 48.840915331471514], [2.414343783568376, 48.84078737985475], [2.41430680047011, 48.84066096303445], [2.414268427344258, 48.84053301047171], [2.414232622847419, 48.84041062309984], [2.414194248725627, 48.84028267047794], [2.414158445947484, 48.84016028216381], [2.414120072181888, 48.84003233038874], [2.414084269749879, 48.83990994202496], [2.414045896360892, 48.83978198929812], [2.4140100942648, 48.83965960178402], [2.413971721242206, 48.83953164900471], [2.413935919502451, 48.83940926054169], [2.413897546846247, 48.8392813077099], [2.413861744079983, 48.839158920089865], [2.413823373152578, 48.8390309672123], [2.413787570742648, 48.83890857864334], [2.413749200171399, 48.83878062661263], [2.413713398107586, 48.83865823799408], [2.41367502791292, 48.838530285011586], [2.413639226195218, 48.83840789634339], [2.413600854994304, 48.83827994420107], [2.413576578093169, 48.83819694911446], [2.413566662402399, 48.83819427077242], [2.413547523611145, 48.838197348986775], [2.4133465456581122, 48.838220597651734], [2.413150587647597, 48.83824364666673], [2.412954630815941, 48.838266696266174], [2.412753652331081, 48.838289943933546], [2.4127476910053502, 48.83828975817852], [2.4125583658555723, 48.83825541641341], [2.412368967877873, 48.838221151333634], [2.412179644589204, 48.8381868089737], [2.411990245747477, 48.83815254328545], [2.411800922947384, 48.83811820122333], [2.411611524613972, 48.83808393403405], [2.411422202312604, 48.838049591370414], [2.411232804477574, 48.838015323579405], [2.411043482674937, 48.83798098031425], [2.410854086690314, 48.83794671282748], [2.410664764034197, 48.83791236805482], [2.410475368547962, 48.837878099966346], [2.410468902421729, 48.83787798086033], [2.410288619041025, 48.83790357119106], [2.410082996474648, 48.837933292963726], [2.409902712723358, 48.83795888181222], [2.409697089718641, 48.83798860292008], [2.409516805576413, 48.83801419208503], [2.40931118077118, 48.83804391252135], [2.409130897610483, 48.8380695011101], [2.408925272367025, 48.838099220881574], [2.408770477403895, 48.83812072136495], [2.408564853115264, 48.83815044052221], [2.4084100578411523, 48.838171941437494], [2.408363433216961, 48.838174626567266]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 45, "roussel_fabien": 22.0, "nb_emargement": 942.0, "nb_procuration": 32.0, "nb_vote_blanc": 18.0, "jadot_yannick": 30.0, "le_pen_marine": 99.0, "nb_exprime": 921.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1329.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 942, "quartier_bv": "45", "geo_point_2d": [48.842259767658454, 2.4124861289774757], "melenchon_jean_luc": 410.0, "poutou_philippe": 7.0, "macron_emmanuel": 229.0}, "geometry": {"type": "Point", "coordinates": [2.4124861289774757, 48.842259767658454]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "db0b7729a7a0b84727048d987bae5acee30835aa", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 96, "zemmour_eric": 90.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "5-25", "geo_shape": {"coordinates": [[[2.354674384387975, 48.84365717623916], [2.354638437799788, 48.84365310787768], [2.354486860071241, 48.84365576700958], [2.354301312958594, 48.84365985066509], [2.354301216187554, 48.84365985284089], [2.354101124163874, 48.84366431185751], [2.353915575616912, 48.84366839580674], [2.353715484889968, 48.84367285418572], [2.353529936282379, 48.84367693753678], [2.353329845489758, 48.84368139527075], [2.35314429682155, 48.843685478023616], [2.352958749497862, 48.843689559596775], [2.35275865723424, 48.8436940172673], [2.352754485207803, 48.843694546903194], [2.35255949044166, 48.84373837529004], [2.352353558637547, 48.843787507941784], [2.352310298002861, 48.8437972314645], [2.352301841750719, 48.84379602370648], [2.352270369735313, 48.843807216741325], [2.352118634863597, 48.84384132089738], [2.351953090591779, 48.84387854368834], [2.351758094463309, 48.84392237076173], [2.35159254831402, 48.84395959304371], [2.351427003279609, 48.843996816002054], [2.351232006266133, 48.844040642213315], [2.351066460727978, 48.844077863770735], [2.35087146174565, 48.84412168938371], [2.3508714439769802, 48.84412169378411], [2.350707264910637, 48.84415878195875], [2.350512266686045, 48.84420260699051], [2.350348087098006, 48.84423969556885], [2.350153088279863, 48.844283519112665], [2.349988908181333, 48.8443206071954], [2.349793908747221, 48.8443644310499], [2.34962972951197, 48.844401517745105], [2.349623990860584, 48.84440233734316], [2.34947852930377, 48.84444807221705], [2.349303537278025, 48.8445029438938], [2.349268864925785, 48.84450277418834], [2.349255759614278, 48.844511260324474], [2.349238946607863, 48.84452214827035], [2.349237981639249, 48.84454170052987], [2.349214514099274, 48.84466854377869], [2.349197133379814, 48.84479788886736], [2.349173665636294, 48.844924731179795], [2.349156284729915, 48.8450540762328], [2.349132816760385, 48.845180919407326], [2.3491154370298553, 48.84531026443212], [2.349115399774337, 48.84531150174958], [2.3491254441298652, 48.84540923144805], [2.349132774830335, 48.84550723326943], [2.349142819256067, 48.84560496294927], [2.349150150016742, 48.845702964752384], [2.349150156023086, 48.845704120463], [2.349131385597972, 48.845824135096905], [2.349115824424668, 48.84599267775727], [2.349108249509868, 48.846041112949614], [2.349112442269484, 48.84605847092429], [2.349166310206152, 48.84606266360797], [2.349332161606694, 48.84603168342943], [2.349535629423376, 48.845993781918935], [2.3497014790226842, 48.84596280121912], [2.349904946301848, 48.8459248990782], [2.350070796824883, 48.845893917871926], [2.350274263566522, 48.84585601510054], [2.350440112288314, 48.845825033372996], [2.3504483182275893, 48.84581201831937], [2.350356763019608, 48.845703046673655], [2.350265273741484, 48.845593626522394], [2.350173717948539, 48.84548465380852], [2.350082230800679, 48.84537523350326], [2.350088889545992, 48.845362595889426], [2.350227534240819, 48.845324202528346], [2.350311195224426, 48.84529803491808], [2.350327178921055, 48.84530076943545], [2.350345960029563, 48.84531531605279], [2.350467711697153, 48.8454175320189], [2.350585640694114, 48.84551632391935], [2.350707391950109, 48.845618538716394], [2.350825323218729, 48.845717330370164], [2.350947075403194, 48.8458195458042], [2.351065006229629, 48.84591833629716], [2.351186760716364, 48.84602055147621], [2.351304692440904, 48.8461193426144], [2.351426446515838, 48.846221556624414], [2.351544380512179, 48.84632034751592], [2.351558066678353, 48.84632355686408], [2.3516515431919363, 48.84630970879959], [2.3517119666588018, 48.84630103094978], [2.351722234308744, 48.84629434948526], [2.351766878554345, 48.846171266707216], [2.351811638638023, 48.8460459748008], [2.351856282470996, 48.84592289106265], [2.351901042126316, 48.845797599094844], [2.351945685535378, 48.845674515295904], [2.351990446125124, 48.84554922327412], [2.352035089098995, 48.8454261403137], [2.352079847909102, 48.8453008473239], [2.352124490459178, 48.84517776430269], [2.352169248829867, 48.84505247215078], [2.352213890967128, 48.84492938816952], [2.35225865027214, 48.844804095963624], [2.352303291974434, 48.84468101282088], [2.35234804949974, 48.84455571964696], [2.352367943455086, 48.844549927537024], [2.352536837945761, 48.844612039635926], [2.352699650473619, 48.84467225690634], [2.352868545767211, 48.84473436763082], [2.353031360422933, 48.84479458445057], [2.353200255134551, 48.84485669559189], [2.3533630705668482, 48.84491691105431], [2.353531967432871, 48.84497902172788], [2.353694782256865, 48.84503923762422], [2.353863679914536, 48.84510134782265], [2.3540264955150922, 48.845161562361646], [2.354031047441533, 48.84516260231769], [2.354199053455187, 48.84518072040935], [2.354398544757654, 48.84520135370845], [2.354414185193558, 48.84519353273432], [2.354437208681197, 48.84506600268253], [2.354458039978967, 48.84494284156776], [2.354481063248546, 48.84481531147887], [2.354501892979928, 48.84469215032137], [2.354524916031353, 48.844564620195364], [2.354545746921454, 48.84444145900992], [2.354568769754927, 48.84431392884681], [2.354589600441197, 48.844190767626074], [2.35461262305662, 48.84406323742586], [2.354633453539061, 48.84394007616979], [2.354654283923054, 48.84381691489647], [2.354677306203817, 48.843689385540365], [2.354674384387975, 48.84365717623916]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 25, "roussel_fabien": 21.0, "nb_emargement": 1303.0, "nb_procuration": 95.0, "nb_vote_blanc": 13.0, "jadot_yannick": 120.0, "le_pen_marine": 44.0, "nb_exprime": 1287.0, "nb_vote_nul": 3.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1616.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1303, "quartier_bv": "17", "geo_point_2d": [48.84477156465169, 2.351749108966399], "melenchon_jean_luc": 367.0, "poutou_philippe": 4.0, "macron_emmanuel": 498.0}, "geometry": {"type": "Point", "coordinates": [2.351749108966399, 48.84477156465169]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f41e53d9a22d40cf05b3d7cc2159a1b64edcbf06", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 102, "zemmour_eric": 100.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-10", "geo_shape": {"coordinates": [[[2.315519610919721, 48.88220577675691], [2.3155175761721543, 48.88220672920972], [2.315495118253096, 48.88222690687001], [2.315369082554826, 48.88233603893343], [2.315250637710832, 48.88244246321011], [2.315124599615122, 48.88255159498695], [2.31499902545425, 48.882661181642526], [2.314872987665463, 48.88277031314064], [2.314747412447723, 48.88287989951052], [2.314621372238769, 48.88298903071425], [2.314495795964249, 48.88309861679844], [2.314369756062108, 48.88320774772344], [2.31424417874254, 48.883317332622624], [2.314118136408459, 48.883426464152485], [2.313992558031891, 48.883536048766004], [2.313866514652993, 48.88364517911], [2.313740935207666, 48.883754764337084], [2.313737311928949, 48.88375694243745], [2.313693650912101, 48.88377492703991], [2.313671960532795, 48.88378021848476], [2.313648055805615, 48.88378921777124], [2.313647150403734, 48.883790040866344], [2.313645473463882, 48.883791566414054], [2.313680078290105, 48.883827299221785], [2.313828638881686, 48.88391367277427], [2.313976413701988, 48.883999589266146], [2.3141249752765782, 48.88408596243736], [2.314272752438166, 48.884171878557844], [2.314421313632293, 48.884258251340036], [2.314569091771702, 48.88434416708129], [2.314717653948844, 48.88443053948224], [2.314865433066078, 48.884516454844274], [2.31501399622624, 48.884602826864025], [2.31516177630948, 48.8846887427461], [2.315310341827987, 48.88477511349311], [2.315458121525576, 48.88486102898816], [2.315470413346151, 48.884869043961004], [2.3154850567844623, 48.88486632536348], [2.315620566917842, 48.88486838156992], [2.315755164948952, 48.88487042341702], [2.315766776807571, 48.88486646796614], [2.315874168435326, 48.884761677270006], [2.315980672809213, 48.884657750155625], [2.316088063587931, 48.884552958348486], [2.316194568459854, 48.88444903193119], [2.316301958377727, 48.8843442399123], [2.316408461032332, 48.88424031327722], [2.316515850089372, 48.88413552104665], [2.316622351890257, 48.88403159420155], [2.316729741449945, 48.883926801767004], [2.316836242397116, 48.883822874711925], [2.316942742919204, 48.88371894755234], [2.317050129825983, 48.88361415479283], [2.317156629494374, 48.88351022742327], [2.317264016903907, 48.883405434459846], [2.317370515718606, 48.883301506880265], [2.317477900903785, 48.88319671369736], [2.317584398876587, 48.883092785008564], [2.317691783189196, 48.88298799251318], [2.317698946939416, 48.882975039775566], [2.317691062292335, 48.882968391039114], [2.317514258451677, 48.88292886307545], [2.317342465148377, 48.88289045520775], [2.317165661825223, 48.882850927625725], [2.316993869036116, 48.88281251925517], [2.316817066253846, 48.88277299025634], [2.316645275330681, 48.88273458228989], [2.316641745547482, 48.88273339121082], [2.316464336807874, 48.88265010026133], [2.31628756966986, 48.88256711038285], [2.316110162063169, 48.88248381889598], [2.315933397417404, 48.88240082848981], [2.315755990943624, 48.8823175364656], [2.315579226075057, 48.88223454461694], [2.315519610919721, 48.88220577675691]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 10, "roussel_fabien": 12.0, "nb_emargement": 1198.0, "nb_procuration": 80.0, "nb_vote_blanc": 17.0, "jadot_yannick": 120.0, "le_pen_marine": 35.0, "nb_exprime": 1177.0, "nb_vote_nul": 5.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1501.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1199, "quartier_bv": "67", "geo_point_2d": [48.88353818554741, 2.3156305129220622], "melenchon_jean_luc": 183.0, "poutou_philippe": 7.0, "macron_emmanuel": 570.0}, "geometry": {"type": "Point", "coordinates": [2.3156305129220622, 48.88353818554741]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0b4b69e03c19366867119fd10bcb77b8be2d1fb2", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 129, "zemmour_eric": 198.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-13", "geo_shape": {"coordinates": [[[2.309763987954069, 48.874407575201516], [2.309791930214916, 48.87439610424437], [2.309919230676309, 48.87431381733471], [2.310050205258625, 48.8742383109091], [2.310177504926235, 48.87415602371302], [2.310308478725557, 48.87408051789328], [2.310435777599491, 48.87399823041077], [2.3105667520028472, 48.873922723406245], [2.310568022945851, 48.87392177652535], [2.310685831501581, 48.873820558737044], [2.310798304069435, 48.87372031376859], [2.310916110358705, 48.873619095727314], [2.311028582048244, 48.87351885052418], [2.311146388797668, 48.873417632245676], [2.3112588596091, 48.87331738680787], [2.311371329975625, 48.87321714215454], [2.311489134025225, 48.873115922603965], [2.3115176031768803, 48.87308627227645], [2.311507305343305, 48.873070205663176], [2.311320715291837, 48.87301737247956], [2.311118050235577, 48.872959895819655], [2.310931460974097, 48.87290706202399], [2.31072879676467, 48.87284958559856], [2.310727901956565, 48.87283334102794], [2.31091325729182, 48.87276990201357], [2.311090196768657, 48.87270961233604], [2.31127555121048, 48.87264617365279], [2.311452488484503, 48.872585883425145], [2.311637842056677, 48.87252244327457], [2.311814778490957, 48.87246215250463], [2.312000131169711, 48.87239871268521], [2.31217706812772, 48.872338421380846], [2.312362418573541, 48.87227498008625], [2.312539354691903, 48.87221468823963], [2.3125453058179772, 48.87220269641287], [2.312449554824806, 48.872075594596225], [2.312356446012593, 48.87195265653165], [2.312260695927916, 48.87182555543445], [2.312167589383515, 48.871702616303715], [2.31207183885604, 48.87157551501884], [2.31197873320431, 48.871452575713356], [2.311979176436049, 48.871443997629655], [2.3120701658725142, 48.871341927149004], [2.312163564623974, 48.871238256116015], [2.312254551976601, 48.87113618546837], [2.312347951355417, 48.87103251428003], [2.312438937987253, 48.870930443473206], [2.312532335266962, 48.87082677211387], [2.312623321178119, 48.87072470114789], [2.312716719085188, 48.870621029633206], [2.312807704275773, 48.870518958508065], [2.312901100083761, 48.870415286822364], [2.31289766398172, 48.87040354954805], [2.31273226700747, 48.87032008338747], [2.31258146295538, 48.87024314819525], [2.312416066997097, 48.870159681585676], [2.3122652625132822, 48.87008274597608], [2.312225184895946, 48.870055769199226], [2.312217401894202, 48.8700559744946], [2.312151993071434, 48.8700239381155], [2.312001189358751, 48.869947003063054], [2.311994758805409, 48.86992542590683], [2.311955619447592, 48.86991186185146], [2.311804817724388, 48.8698349256524], [2.311651277508019, 48.86975531504447], [2.31150047532442, 48.869678378443204], [2.311346937385815, 48.86959876834071], [2.311196136104915, 48.86952183134514], [2.311042597741651, 48.86944221993389], [2.310891798726541, 48.8693652825518], [2.310738261277926, 48.86928567163817], [2.310587461802418, 48.86920873385397], [2.310433925292143, 48.869129121639375], [2.310283128082511, 48.86905218346868], [2.310129592498877, 48.868972570852456], [2.310115162022056, 48.868971568547096], [2.309930478078673, 48.86903137518922], [2.3097542138266, 48.869088255966815], [2.309569529055213, 48.869148062045646], [2.309393264014168, 48.869204942285684], [2.309208578414576, 48.8692647478013], [2.3090323125846632, 48.869321627503794], [2.3088476261689, 48.86938143155684], [2.308671359537987, 48.86943831162109], [2.308486672294233, 48.86949811511087], [2.308310404874349, 48.86955499463757], [2.308134137069522, 48.86961187390172], [2.30794944859365, 48.869671676553196], [2.307773179999855, 48.86972855527982], [2.307588490695793, 48.86978835736807], [2.307412221313133, 48.86984523555708], [2.307227531180986, 48.86990503708204], [2.30705126100926, 48.86996191473353], [2.306866571412237, 48.87002171570311], [2.306690300451652, 48.87007859281699], [2.306505608663342, 48.87013839321541], [2.306433807784023, 48.870161560700424], [2.306409003172263, 48.87016285412039], [2.306385548594162, 48.870176200280504], [2.306281077675321, 48.87020990842998], [2.3061022718163002, 48.870266831139396], [2.30592599919173, 48.87032370711514], [2.305747192554063, 48.87038062928822], [2.305570919156599, 48.87043750473522], [2.305392110377171, 48.87049442636413], [2.305215836207018, 48.870551301282326], [2.305037028012066, 48.87060822238284], [2.304860753069123, 48.8706650967723], [2.304681944095533, 48.87072201733652], [2.304505668379805, 48.870778891197176], [2.304326858627578, 48.870835811225135], [2.304150582139065, 48.87089268455698], [2.303971770244972, 48.87094960404069], [2.303795492995697, 48.871006475944505], [2.303616681674182, 48.87106339579912], [2.303440403652132, 48.87112026717414], [2.303261591551981, 48.871177186492424], [2.30308531275716, 48.871234057338654], [2.302906499878374, 48.871290976120626], [2.302730220310783, 48.87134784643805], [2.302640306261103, 48.87137646676955], [2.302624232958129, 48.87138632166776], [2.302667906068711, 48.87143741691961], [2.302831342337883, 48.87151946549128], [2.302993691051932, 48.871600810506415], [2.303157128334806, 48.871682859520426], [2.303319478066883, 48.87176420408164], [2.303482915024376, 48.8718462517315], [2.30364526577448, 48.871927595838805], [2.303808705121067, 48.87200964303962], [2.303971056877186, 48.87209098759232], [2.304134497249726, 48.87217303433614], [2.304296850035901, 48.87225437753565], [2.304460290070924, 48.87233642381458], [2.3046226438751383, 48.87241776656018], [2.304786086299281, 48.872499812390046], [2.30494844110954, 48.872581155581], [2.305111884559546, 48.87266320095386], [2.305274240399857, 48.87274454279163], [2.305437684875827, 48.87282658770751], [2.305600041734191, 48.872907929091376], [2.305763485872642, 48.87298997354233], [2.305925843737079, 48.87307131537151], [2.306089290264687, 48.87315335937344], [2.3062516491591722, 48.87323469984937], [2.30625594713146, 48.873238338315446], [2.306327812376173, 48.87334968324264], [2.306396300326428, 48.873461373677074], [2.30646816619087, 48.87357271759821], [2.306536654723278, 48.873684408829064], [2.306547554753049, 48.87368995616057], [2.306763651344259, 48.87370828813825], [2.30696489172663, 48.873722691726044], [2.306972751274448, 48.87372507641733], [2.3071286923417382, 48.873821643910034], [2.30728768700304, 48.8739205401662], [2.307443627876101, 48.87401710722364], [2.307602623732026, 48.87411600304403], [2.307618600220212, 48.87411732035801], [2.307799455273401, 48.87405100565114], [2.307982187046906, 48.87398008879764], [2.308163041160791, 48.87391377353323], [2.308345771957821, 48.87384285611593], [2.308526625120361, 48.8737765411932], [2.308709353589551, 48.87370562230492], [2.308726082742928, 48.8737071317812], [2.308851004407197, 48.873792606165836], [2.308971553862464, 48.87387337050219], [2.309096476340181, 48.873958843718505], [2.309217025197605, 48.87403960778764], [2.309341949828127, 48.874125081642006], [2.309462499450921, 48.874205845451776], [2.309587424894896, 48.87429131813786], [2.309707975283062, 48.87437208168826], [2.309763987954069, 48.874407575201516]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 13, "roussel_fabien": 6.0, "nb_emargement": 1139.0, "nb_procuration": 63.0, "nb_vote_blanc": 12.0, "jadot_yannick": 40.0, "le_pen_marine": 66.0, "nb_exprime": 1124.0, "nb_vote_nul": 3.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1486.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1139, "quartier_bv": "30", "geo_point_2d": [48.87162500015712, 2.3084602710000657], "melenchon_jean_luc": 113.0, "poutou_philippe": 2.0, "macron_emmanuel": 544.0}, "geometry": {"type": "Point", "coordinates": [2.3084602710000657, 48.87162500015712]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5752c61f54c9f0f8e6d48a5208243b4221370291", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 112, "zemmour_eric": 133.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "15-88", "geo_shape": {"coordinates": [[[2.28588364888986, 48.840291186649665], [2.285885070641868, 48.84029412258929], [2.2860015347855, 48.84033993922955], [2.286165593955569, 48.84040460369298], [2.286338343538886, 48.840472562003306], [2.286502404906695, 48.840537226005274], [2.28667515536872, 48.84060518382116], [2.286839216209508, 48.84066984734538], [2.28701196756244, 48.84073780376752], [2.287176029238533, 48.840802466822154], [2.287348781457969, 48.84087042364911], [2.287512843969269, 48.84093508623414], [2.2876855970674113, 48.84100304256662], [2.287849660414021, 48.84106770468206], [2.287836852742003, 48.84108295010183], [2.287851356203035, 48.84108778961563], [2.287859612311145, 48.84109104322116], [2.287869606095156, 48.841100447169616], [2.287919458578597, 48.84108648262461], [2.288041128345975, 48.841028170374734], [2.288213644400989, 48.84094763943061], [2.288335314877564, 48.84088932688236], [2.288335360144435, 48.84088930466741], [2.288507876647544, 48.840808773297056], [2.288702429213134, 48.84071552790172], [2.288773212930192, 48.840685534768845], [2.288800460180489, 48.840673989663706], [2.28881744385875, 48.840674502547856], [2.288828228980211, 48.84068073904499], [2.288903953298476, 48.840724531659504], [2.28897813273923, 48.84077021451087], [2.288994470460727, 48.84077133779994], [2.289176266095007, 48.840698869509254], [2.289356616442458, 48.84062653805262], [2.289538411068166, 48.84055406920217], [2.28971876041201, 48.84048173719012], [2.289900554016793, 48.84040926867923], [2.290080902369386, 48.84033693521258], [2.290262694965603, 48.84026446614197], [2.290443043664665, 48.84019213302731], [2.290492286988714, 48.84018246548366], [2.290488067742705, 48.84016541717381], [2.290429544071928, 48.84009594262186], [2.290346964109875, 48.83999805001191], [2.290334648546235, 48.83998343052856], [2.290334127843452, 48.83998274661587], [2.29025523763393, 48.8398668632232], [2.290174404041081, 48.83974773769235], [2.2900955145300212, 48.83963185506926], [2.290014681666781, 48.8395127294054], [2.289935792866521, 48.8393968466526], [2.289854959370376, 48.83927772084769], [2.289776072643309, 48.839161837973265], [2.289695239876658, 48.839042712035344], [2.289616352510231, 48.838926828123846], [2.289535521823201, 48.83880770296034], [2.28945663516755, 48.83869181891912], [2.289375803847603, 48.83857269361458], [2.289367965619123, 48.838569891373666], [2.289344958484705, 48.83856972680903], [2.289154789215214, 48.838518571090034], [2.288988200480029, 48.83847500922514], [2.288963009668845, 48.83846713118385], [2.288935976625058, 48.83849821647157], [2.288783921141548, 48.838587085996515], [2.288631889490214, 48.838676067887384], [2.28847983431952, 48.83876493791903], [2.288327801630312, 48.83885391940927], [2.288175744072204, 48.838942788132805], [2.288023710345016, 48.83903176922238], [2.287871653099709, 48.83912063845269], [2.287719618347027, 48.839209618242315], [2.287567558702007, 48.83929848706377], [2.287415522899043, 48.83938746735206], [2.287263462216695, 48.83947633577284], [2.287111425388232, 48.83956531476117], [2.28695936503096, 48.83965418278934], [2.286807327152196, 48.83974316227631], [2.286655264395177, 48.839832029895646], [2.286503225490911, 48.83992100808263], [2.286351161696547, 48.84000987530127], [2.286199121742056, 48.840098853986895], [2.286047058285082, 48.84018771991363], [2.28589501729257, 48.840276698198544], [2.28588364888986, 48.840291186649665]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 88, "roussel_fabien": 10.0, "nb_emargement": 1260.0, "nb_procuration": 87.0, "nb_vote_blanc": 18.0, "jadot_yannick": 76.0, "le_pen_marine": 84.0, "nb_exprime": 1239.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1543.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1260, "quartier_bv": "60", "geo_point_2d": [48.8398953784758, 2.288386799930862], "melenchon_jean_luc": 271.0, "poutou_philippe": 6.0, "macron_emmanuel": 492.0}, "geometry": {"type": "Point", "coordinates": [2.288386799930862, 48.8398953784758]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9903cd2b5b23d00bc55b0b137b85851cbd84f391", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 64, "zemmour_eric": 65.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-37", "geo_shape": {"coordinates": [[[2.335777464697759, 48.889690495270514], [2.335752140401136, 48.8896983983599], [2.335752140693535, 48.88969880305813], [2.335757426247189, 48.88985139938602], [2.3357626637421403, 48.890002633846876], [2.335767949357577, 48.890155230132095], [2.335773188277294, 48.89030646455819], [2.3357623114272172, 48.89031547751508], [2.335579239278769, 48.89034040287399], [2.335401736899847, 48.890364571058015], [2.335218665769932, 48.89038949587211], [2.335041163056294, 48.89041366352058], [2.334863658825728, 48.890437829998525], [2.334680587169183, 48.8904627548876], [2.33450308396756, 48.890486920837574], [2.334320010602067, 48.89051184516664], [2.334304608930919, 48.89050640765983], [2.334233656420393, 48.8903906576328], [2.334162689546358, 48.89027488228875], [2.334091736303069, 48.89015913214562], [2.334020770060141, 48.89004335669307], [2.3339498188114582, 48.88992760644899], [2.333878851835999, 48.88981183088031], [2.333807901229783, 48.88969607962849], [2.333736934885425, 48.88958030395126], [2.333665984898657, 48.88946455349022], [2.3335950191853883, 48.88934877770446], [2.333524069829566, 48.889233027134864], [2.333453104747278, 48.88911725124061], [2.333437424845871, 48.88911185433209], [2.333375251351538, 48.88912122093724], [2.3333334060789053, 48.88912752516995], [2.333322971491229, 48.88913489551021], [2.333300576923206, 48.88922882687521], [2.333278718389378, 48.8893205101994], [2.33325632365008, 48.889414442439495], [2.333234464960412, 48.889506125740105], [2.333233015596174, 48.889508973929345], [2.333141810386246, 48.8896205742215], [2.333040145765609, 48.889745804817416], [2.332948939738993, 48.88985740403935], [2.332847274180668, 48.889982635343735], [2.332830285818105, 48.88999653240128], [2.332823899128964, 48.89002069137788], [2.33289475785087, 48.89011867649744], [2.332963968499222, 48.89021438608365], [2.333034826373043, 48.890312371994696], [2.333104038911581, 48.890408080591335], [2.33317325169294, 48.8905037900389], [2.333244110354536, 48.89060177580032], [2.333250144432915, 48.8906058887385], [2.333354162304154, 48.89064143724279], [2.333460638098487, 48.89067782491712], [2.333467926195012, 48.89068487122832], [2.333489970871637, 48.890823391974926], [2.3335119751915903, 48.89096166516033], [2.333534018738826, 48.89110018585629], [2.333556023292728, 48.89123845899868], [2.333578067062822, 48.891376980550845], [2.333600071850676, 48.891515253650276], [2.333622115866651, 48.891653774260114], [2.333644120888358, 48.89179204731657], [2.333661935534969, 48.89182806995526], [2.333678302735913, 48.89182671851459], [2.333745981032633, 48.89181331474225], [2.3338573104738822, 48.89178810732065], [2.333859751322851, 48.89178771620302], [2.334046870151827, 48.891770176946906], [2.334263162429707, 48.89174916632414], [2.334450280984351, 48.89173162643703], [2.334666571575418, 48.89171061507726], [2.3348536898556222, 48.8916930745592], [2.334952657856663, 48.89168346008747], [2.334997530569917, 48.891686722029725], [2.335017458214007, 48.89167558484714], [2.335134780437681, 48.89166418806543], [2.335336676190726, 48.8916422295227], [2.335539763030551, 48.891621504826844], [2.335741658447294, 48.89159954560043], [2.335944744959434, 48.89157882021694], [2.336146640039864, 48.89155686030687], [2.336349726212847, 48.891536135135034], [2.336551620956958, 48.89151417454131], [2.336754706813703, 48.89149344778257], [2.33695660122138, 48.89147148650518], [2.337159686750511, 48.89145075905882], [2.337245270642668, 48.89144144902201], [2.337263603064736, 48.891437729256495], [2.337254426658067, 48.89139897785034], [2.33718587889725, 48.89128580969079], [2.337116586082386, 48.89117141067579], [2.337048040284512, 48.89105824242146], [2.336978748063886, 48.89094384420219], [2.336910201501517, 48.89083067583794], [2.336840909898026, 48.89071627661591], [2.336772365287017, 48.89060310905608], [2.336703074289199, 48.890488709730626], [2.336634528925047, 48.8903755411616], [2.336565238532898, 48.89026114173262], [2.336575154079898, 48.89024899822197], [2.33675466280783, 48.89022463346876], [2.336944838460813, 48.89019882024463], [2.33712434547903, 48.89017445492858], [2.337314520776917, 48.89014864021688], [2.33749402744925, 48.89012427434556], [2.337684202369141, 48.89009845994481], [2.337863708695384, 48.890074093518166], [2.33805388324872, 48.89004827852915], [2.338233389228967, 48.89002391154723], [2.338423563415739, 48.88999809596991], [2.338603070425142, 48.88997372754098], [2.338793242881708, 48.8899479113678], [2.338795477246698, 48.88993563262736], [2.33877305304011, 48.88991301307802], [2.338770236543354, 48.88989821171772], [2.338637365668776, 48.8898889361221], [2.338428623153753, 48.88987444241309], [2.33823258796016, 48.88986075601542], [2.338023847023079, 48.88984626250723], [2.337827812041978, 48.88983257544656], [2.33761906996671, 48.88981808122489], [2.33742303656184, 48.88980439350874], [2.33721429471233, 48.88978989858105], [2.337018261519971, 48.8897762102019], [2.336809519907479, 48.889761713668904], [2.336613486916186, 48.88974802552604], [2.3364174540394202, 48.889734336162796], [2.336208712762176, 48.88971983858192], [2.336012678722754, 48.88970614944737], [2.335803939034834, 48.8896916511681], [2.335777464697759, 48.889690495270514]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 37, "roussel_fabien": 23.0, "nb_emargement": 1306.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 155.0, "le_pen_marine": 67.0, "nb_exprime": 1292.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1606.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1306, "quartier_bv": "69", "geo_point_2d": [48.89068026165036, 2.3352008723489663], "melenchon_jean_luc": 370.0, "poutou_philippe": 5.0, "macron_emmanuel": 476.0}, "geometry": {"type": "Point", "coordinates": [2.3352008723489663, 48.89068026165036]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e95d6db94339ee1c2aff7530cc957987ee34abc5", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 84, "zemmour_eric": 96.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-40", "geo_shape": {"coordinates": [[[2.307864935850447, 48.83774609117021], [2.307865481994301, 48.83775985470156], [2.307984681637109, 48.83788356297514], [2.3080965278325642, 48.83800518071196], [2.308215728584747, 48.8381288887282], [2.308327575845706, 48.83825050622225], [2.308329437167216, 48.83825634310538], [2.308328123244967, 48.838263876727005], [2.308309320739906, 48.83837161957363], [2.308279886764086, 48.83851971591951], [2.308259768763158, 48.83863499234438], [2.308230334497823, 48.8387830886432], [2.308210216285751, 48.83889836503258], [2.308180781730792, 48.83904646128428], [2.308160663307472, 48.83916173763813], [2.308167169054957, 48.839170470369346], [2.308334988961195, 48.83923718566272], [2.308527437329039, 48.83931306016065], [2.308695256793199, 48.839379774932205], [2.308887706211851, 48.83945564884086], [2.309055526596234, 48.83952236309847], [2.309190414142491, 48.83957554209325], [2.3091978287004222, 48.83958305597097], [2.309220912368395, 48.83958806925212], [2.309253206625414, 48.83960109153412], [2.309310769604375, 48.839623785827996], [2.309330934392619, 48.83963191743432], [2.309336656118941, 48.83963639515208], [2.309409968730439, 48.83976157618247], [2.309483130013664, 48.8398838081474], [2.3095564419745402, 48.84000898815312], [2.309629603948546, 48.84013122000141], [2.30970291797153, 48.840256399897505], [2.309776079262087, 48.84037863252057], [2.309849393984872, 48.84050381229913], [2.309922555978028, 48.84062604390626], [2.309995871400722, 48.8407512235673], [2.310069035447124, 48.84087345506561], [2.310142350207089, 48.84099863460131], [2.310215514932404, 48.841120866882235], [2.310288831754746, 48.84124604630832], [2.310361995820336, 48.84136827756537], [2.310367077716811, 48.84137870624886], [2.310383898754279, 48.84138114067643], [2.310591390283558, 48.841381041558904], [2.310789024828936, 48.841380867304174], [2.3109866607354492, 48.84138069273076], [2.311194150899331, 48.84138059255989], [2.31139178679156, 48.841380418216495], [2.311599276953567, 48.841380317342974], [2.311796912855268, 48.84138014143096], [2.312004403015385, 48.84138003985473], [2.312008932269114, 48.84137662042737], [2.31200546374962, 48.84135810588895], [2.311883822784573, 48.841263805474355], [2.31177258977566, 48.841178135777916], [2.311661357132309, 48.84109246597145], [2.311539717421678, 48.84099816428519], [2.311539585222516, 48.840998063694514], [2.31140705518808, 48.84089850893474], [2.311283248352996, 48.84080536097149], [2.3111594405861062, 48.84071221376375], [2.311026913366944, 48.8406126585652], [2.310903106515897, 48.84051951107612], [2.310770578925886, 48.840419954669215], [2.310646774353108, 48.840326806906596], [2.310514247730695, 48.840227251097886], [2.310390444085637, 48.84013410215461], [2.310257918442908, 48.840034546044734], [2.310134114339348, 48.839941397711556], [2.310010756335429, 48.83985410670375], [2.309886953114075, 48.83976095720041], [2.30976359458872, 48.83967366591577], [2.309639792225756, 48.8395805170409], [2.309516435903789, 48.839493225495126], [2.309518099497762, 48.839479958611115], [2.309694069274847, 48.83939075671231], [2.30986374264035, 48.83930709341437], [2.310039711230295, 48.83921789189261], [2.310209383478282, 48.83913422809145], [2.31038534954271, 48.83904502514031], [2.310555022035578, 48.83896136084383], [2.310559249120111, 48.838957910043796], [2.310651421558759, 48.83882546228526], [2.3107459631776113, 48.83869587549838], [2.31083813467834, 48.83856342756486], [2.310932675357719, 48.83843384060005], [2.31102484590886, 48.83830139339093], [2.311119385648677, 48.838171806248184], [2.3111367084837102, 48.83815186624728], [2.311114891396177, 48.838139090963445], [2.311039976234658, 48.83803606115707], [2.310948640536464, 48.837907826286546], [2.310929268593706, 48.837881183270554], [2.31090723035396, 48.83787041136712], [2.310885000730503, 48.837877928850126], [2.310659568409043, 48.83788660932631], [2.310445502084648, 48.83789308668835], [2.310220069624547, 48.83790176633613], [2.310006001832829, 48.83790824200439], [2.3097919353383842, 48.8379147181967], [2.3095665026759082, 48.83792339661263], [2.309552816892712, 48.83791732691077], [2.309492372407195, 48.837800556297616], [2.30945035100284, 48.837680608397086], [2.309436189172624, 48.8376736608443], [2.309237279958649, 48.83768225162553], [2.309052201706585, 48.83768841272606], [2.308853292373032, 48.83769700286873], [2.308668214023105, 48.83770316337506], [2.308469305932348, 48.837711752886904], [2.308284227484771, 48.837717912799064], [2.30809914899345, 48.83772407242482], [2.307900239366771, 48.8377326609824], [2.307864935850447, 48.83774609117021]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 40, "roussel_fabien": 29.0, "nb_emargement": 1137.0, "nb_procuration": 65.0, "nb_vote_blanc": 12.0, "jadot_yannick": 53.0, "le_pen_marine": 99.0, "nb_exprime": 1120.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 6, "nb_inscrit": 1479.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "58", "geo_point_2d": [48.83920334074951, 2.3097722215954746], "melenchon_jean_luc": 321.0, "poutou_philippe": 9.0, "macron_emmanuel": 376.0}, "geometry": {"type": "Point", "coordinates": [2.3097722215954746, 48.83920334074951]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f8d1c5772c42ff9c05a4be54cff4df9f5267a81c", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 74, "zemmour_eric": 85.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-16", "geo_shape": {"coordinates": [[[2.323469218042102, 48.83623268930025], [2.323438655589936, 48.83621712910721], [2.323473283663984, 48.83613200709482], [2.323515001383203, 48.836028106734986], [2.323566879754414, 48.83590057888851], [2.323608597101858, 48.83579667847454], [2.323660475013658, 48.83566915056108], [2.32370219198933, 48.83556525009294], [2.323689211976895, 48.835553953452326], [2.323531650482885, 48.83555250664492], [2.32338500966249, 48.83555233555719], [2.323227446819609, 48.83555088834132], [2.323102317733762, 48.835550742388186], [2.323080807355294, 48.83555071778764], [2.323072580609669, 48.83555244748704], [2.322896226849806, 48.83563749121549], [2.322722758447439, 48.835723343364315], [2.322546402188148, 48.835808385657], [2.322372932640809, 48.83589423728537], [2.322196575232612, 48.835979279049276], [2.322023104528803, 48.8360651310565], [2.322005939952459, 48.83606469020476], [2.321866169086859, 48.83598361014503], [2.321724242106797, 48.83590220650481], [2.321584472115048, 48.83582112610412], [2.321442546017304, 48.835739722117815], [2.321302776899402, 48.83565864137623], [2.321160851695683, 48.83557723614459], [2.321021083451625, 48.83549615506201], [2.320879160480709, 48.835414750391344], [2.320739391748182, 48.835333668960146], [2.320597469671389, 48.8352522630441], [2.320556070789801, 48.83522824760564], [2.32054195460175, 48.83520435925692], [2.3205275425975, 48.83520285188336], [2.320429173687833, 48.83514578642427], [2.320365194539461, 48.83511198247346], [2.320352164391192, 48.83509111586307], [2.320315302000712, 48.83509513614223], [2.320300828036059, 48.83509598024553], [2.320297154594797, 48.835110644309616], [2.320175263174702, 48.83519879509765], [2.320051114828965, 48.835288961908894], [2.319929221213524, 48.83537711242439], [2.319805072005665, 48.835467279865235], [2.319683178919473, 48.83555543012367], [2.31955902887316, 48.83564559639546], [2.319437133591599, 48.83573374638138], [2.319312982694989, 48.83582391238338], [2.319191086580358, 48.835912062104526], [2.319066934821695, 48.836002228736106], [2.319069585671011, 48.83601581533471], [2.319233262602507, 48.83608613796909], [2.319394443406563, 48.83615567540856], [2.319558121203745, 48.83622599848891], [2.319719304235864, 48.83629553548974], [2.319882982910483, 48.83636585811674], [2.320044165446219, 48.83643539466335], [2.320056888373835, 48.836446616484054], [2.320070844394289, 48.83644655011849], [2.320232028792381, 48.83651608641468], [2.320402577243106, 48.83659055207629], [2.320563761155063, 48.836660088808095], [2.32073431191309, 48.83673455399488], [2.320895496724494, 48.83680408937136], [2.32106604706535, 48.83687855406788], [2.321227234115208, 48.83694808989545], [2.321397785401135, 48.837022554109325], [2.321558971988289, 48.8370920885739], [2.321729525581533, 48.83716655231294], [2.32172963124629, 48.83716659877998], [2.321873209809998, 48.837229812020254], [2.322043762940533, 48.83730427529435], [2.32218734226453, 48.83736748814984], [2.322357896294198, 48.837441950966834], [2.322501476378385, 48.837505163437434], [2.32267203130739, 48.83757962579741], [2.322815612151668, 48.837642837883166], [2.32289451568672, 48.837670692833385], [2.322906217586405, 48.83766031739623], [2.322936580730002, 48.83758817098082], [2.322965544490756, 48.83751697446126], [2.322981006320095, 48.83750263968826], [2.32298339746375, 48.8374876346527], [2.323006313647406, 48.837431303741916], [2.32305512999101, 48.837305393086496], [2.323107010758576, 48.83717786558515], [2.323155825259243, 48.837051954852384], [2.323207705528201, 48.836924427278426], [2.323256519548295, 48.83679851647605], [2.323308399318551, 48.83667098882954], [2.323357214220414, 48.83654507796523], [2.323409093492176, 48.836417550246104], [2.323457906551141, 48.83629163930445], [2.323475157276775, 48.83624923443261], [2.323469218042102, 48.83623268930025]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 16, "roussel_fabien": 20.0, "nb_emargement": 1175.0, "nb_procuration": 54.0, "nb_vote_blanc": 11.0, "jadot_yannick": 84.0, "le_pen_marine": 80.0, "nb_exprime": 1159.0, "nb_vote_nul": 6.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1492.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1176, "quartier_bv": "56", "geo_point_2d": [48.83629903726275, 2.321609454890086], "melenchon_jean_luc": 378.0, "poutou_philippe": 12.0, "macron_emmanuel": 373.0}, "geometry": {"type": "Point", "coordinates": [2.321609454890086, 48.83629903726275]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2bccf96f4502cd213af5ee270b5cc06951f04720", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 83, "zemmour_eric": 73.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-33", "geo_shape": {"coordinates": [[[2.322263719093833, 48.891902436302416], [2.322273773222733, 48.891894701451854], [2.3224581845862, 48.891835812183416], [2.322643106365953, 48.89177676004156], [2.322827516905674, 48.89171786929878], [2.323012436483894, 48.89165881657247], [2.323196847551835, 48.891599925262305], [2.3233817662924, 48.89154087195938], [2.323566175161111, 48.891481980066374], [2.323751094427688, 48.89142292619448], [2.323935502449262, 48.89136403462566], [2.324120419525986, 48.89130497927012], [2.324304826712107, 48.891246087126255], [2.324489744314826, 48.891187031201724], [2.324674150665489, 48.89112813848278], [2.324859066066672, 48.89106908197389], [2.324866449401928, 48.891061861547236], [2.324860011253403, 48.891050671810724], [2.324740330825724, 48.89095852295245], [2.324621926881081, 48.89086735783194], [2.324502247295998, 48.89077520872031], [2.324383844185061, 48.89068404334913], [2.324264165442671, 48.890591893984165], [2.324145763165431, 48.89050072836233], [2.324026085265829, 48.89040857874404], [2.323907683822281, 48.89031741287162], [2.323788005401518, 48.89022526299223], [2.323669606155392, 48.89013409687688], [2.323544508466153, 48.89003777292669], [2.323419386949969, 48.889941428914916], [2.323294288822768, 48.88984510467875], [2.323169168220947, 48.88974876128788], [2.323044072383234, 48.88965243678108], [2.322918952719042, 48.8895560922126], [2.322793857806979, 48.88945976742749], [2.322668737693305, 48.8893634234722], [2.322652224423197, 48.88935056410989], [2.322631707386777, 48.889360534003096], [2.322562781045418, 48.88939902288719], [2.3224348975686953, 48.88947043345305], [2.322276589927207, 48.88955883444523], [2.322148705653789, 48.88963024559433], [2.321990397052258, 48.88971864529606], [2.321862511993846, 48.88979005612905], [2.321861585385274, 48.88979062465199], [2.321742241546253, 48.88987093040499], [2.321585128311572, 48.88997664927289], [2.321465783619809, 48.89005695473674], [2.321308670626256, 48.89016267323172], [2.321189325081746, 48.8902429784064], [2.321032209590117, 48.89034869741227], [2.320912863192851, 48.89042900229778], [2.320893079506087, 48.89043559727655], [2.32089552482594, 48.89044845982385], [2.320896230992245, 48.8904494234102], [2.320928656516103, 48.89047948922598], [2.320929483945869, 48.89048035727188], [2.321031342447942, 48.89060041939275], [2.321128589570361, 48.890716668204355], [2.321230448993715, 48.890836730129976], [2.321327697013733, 48.89095297785562], [2.321429557346863, 48.89107304048526], [2.321526807616527, 48.8911892880319], [2.321628667507304, 48.89130935045856], [2.321725918662769, 48.89142559781849], [2.321827779474959, 48.89154566004993], [2.321925031516437, 48.89166190722305], [2.322026893261762, 48.891781968360036], [2.322124146177456, 48.89189821624565], [2.322119002657058, 48.8919154271939], [2.322148956945161, 48.89192235429027], [2.322157400467331, 48.89192225999296], [2.322202641209596, 48.89191198227939], [2.322248552201005, 48.89190155275901], [2.322263719093833, 48.891902436302416]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 33, "roussel_fabien": 16.0, "nb_emargement": 1200.0, "nb_procuration": 106.0, "nb_vote_blanc": 8.0, "jadot_yannick": 136.0, "le_pen_marine": 47.0, "nb_exprime": 1192.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1478.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1200, "quartier_bv": "68", "geo_point_2d": [48.8906968445971, 2.322719561729936], "melenchon_jean_luc": 336.0, "poutou_philippe": 6.0, "macron_emmanuel": 429.0}, "geometry": {"type": "Point", "coordinates": [2.322719561729936, 48.8906968445971]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "98692e941a1583392c6bfa73947d94eccb3f26b5", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 47, "zemmour_eric": 56.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "3-13", "geo_shape": {"coordinates": [[[2.355771192225159, 48.868973609020735], [2.355786990529972, 48.86896725207449], [2.355875121817454, 48.8689468868639], [2.356020728065027, 48.868914369569985], [2.356225317685882, 48.86886709281304], [2.35637092349171, 48.86883457509073], [2.356372412936472, 48.86883429171364], [2.356578158848776, 48.868803497395334], [2.356784544475372, 48.86877298585662], [2.356990289902003, 48.86874219082818], [2.35719667369212, 48.868711677670554], [2.357402418632963, 48.86868088193199], [2.357608803290858, 48.86865036896865], [2.357814547745907, 48.868619572519954], [2.358020930556413, 48.86858905883699], [2.3582266745255582, 48.86855826167818], [2.358433056862821, 48.8685277463836], [2.358638800346251, 48.86849694851466], [2.358845183551177, 48.8684664334144], [2.358848069092037, 48.86846536156837], [2.358831230292475, 48.86841497212639], [2.35879840470472, 48.86829448873313], [2.358765111066268, 48.86817228326898], [2.358732285773296, 48.86805180073039], [2.3586989910818, 48.86792959521375], [2.35866616610575, 48.86780911173132], [2.358632873087732, 48.867686906176786], [2.358600048406453, 48.86756642354903], [2.358566754335396, 48.86744421794199], [2.358569102169098, 48.86743455540566], [2.358556677900856, 48.86742735434252], [2.358440555080827, 48.867321995497434], [2.35832429253926, 48.867216508071515], [2.358208169296093, 48.86711114897359], [2.358091907684482, 48.867005662201095], [2.3580814170567352, 48.86700196450053], [2.357897541622617, 48.866997197342606], [2.357716404015889, 48.86699250125281], [2.357532528648579, 48.86698773353408], [2.357351391107665, 48.866983036891824], [2.357170253599414, 48.86697833997539], [2.35698637833208, 48.866973571417624], [2.356983189134928, 48.86697373595084], [2.35677977177119, 48.86700037234069], [2.356576823910027, 48.86702694615664], [2.356373406141845, 48.8670535809553], [2.356170456491848, 48.867080154972896], [2.355967039671264, 48.86710678908695], [2.3557640896178063, 48.86713336151493], [2.355561140709318, 48.86715993450477], [2.355357721902547, 48.867186567574045], [2.355154771227483, 48.86721313896692], [2.354951353357206, 48.867239772250876], [2.354748402267588, 48.867266342953414], [2.3545449826298013, 48.86729297463882], [2.354542584382486, 48.86729344375291], [2.354351926628568, 48.86734363565206], [2.354161377902672, 48.867393799955885], [2.353970719403117, 48.867443992142576], [2.353780168591052, 48.86749415492835], [2.353589510719954, 48.86754434651055], [2.353398959173826, 48.8675945086849], [2.353312119007659, 48.86761518574177], [2.353315271908598, 48.86762475738783], [2.353353935230823, 48.8676934179064], [2.353416686628849, 48.86781129552334], [2.353486405770137, 48.86793510411764], [2.3535491577590593, 48.86805298163932], [2.353618877549818, 48.8681767892301], [2.353681630129646, 48.86829466665659], [2.3537513505475642, 48.86841847504245], [2.353814103718306, 48.86853635237368], [2.353883824774552, 48.8686601606553], [2.353946578536217, 48.86877803789138], [2.354016300230799, 48.868901846068766], [2.354079054583393, 48.86901972320956], [2.354148778290661, 48.86914353039082], [2.354211531871001, 48.869261407429036], [2.354249265539085, 48.8692940736129], [2.3543057469848, 48.86931056285641], [2.354486763132481, 48.86926881605389], [2.35469135553758, 48.869221541934074], [2.354872369692448, 48.86917979543697], [2.355076961398066, 48.86913252065424], [2.355257976308882, 48.8690907726787], [2.355462567314905, 48.86904349723304], [2.355643580233017, 48.86900174956294], [2.355760039228591, 48.86897483864494], [2.355771192225159, 48.868973609020735]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 13, "roussel_fabien": 19.0, "nb_emargement": 1187.0, "nb_procuration": 85.0, "nb_vote_blanc": 13.0, "jadot_yannick": 111.0, "le_pen_marine": 57.0, "nb_exprime": 1171.0, "nb_vote_nul": 3.0, "arr_bv": "03", "arthaud_nathalie": 0, "nb_inscrit": 1558.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1187, "quartier_bv": "09", "geo_point_2d": [48.868019418233054, 2.3560801940124056], "melenchon_jean_luc": 384.0, "poutou_philippe": 6.0, "macron_emmanuel": 444.0}, "geometry": {"type": "Point", "coordinates": [2.3560801940124056, 48.868019418233054]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "373885fa8f689e827bb7d68c1eb7e60eed17e807", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 70, "zemmour_eric": 88.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "9-1", "geo_shape": {"coordinates": [[[2.342492731636047, 48.874056518122714], [2.342503461284631, 48.87404098343801], [2.342643705174379, 48.873953569991855], [2.342784117919023, 48.87386948485483], [2.342924360887344, 48.87378207016698], [2.343064772716595, 48.87369798468769], [2.343069026221735, 48.87369292317323], [2.3431059477752543, 48.873557912994336], [2.343145991900864, 48.87341950063898], [2.343182913049734, 48.87328449130219], [2.343222955397222, 48.87314607887934], [2.343259877516086, 48.87301106949286], [2.343299919448965, 48.872872657009964], [2.343300080703373, 48.87287187007388], [2.343316833111593, 48.87274960872935], [2.343333326923853, 48.87262741430052], [2.343350079175415, 48.87250515292427], [2.343366572820939, 48.872382959363065], [2.343383324915846, 48.87226069795514], [2.343399818417409, 48.872138503463006], [2.343416570344328, 48.87201624292261], [2.343433063690395, 48.87189404839891], [2.343441329852181, 48.871886563569646], [2.343631893198034, 48.871833376702114], [2.343818268435072, 48.871779289715654], [2.344008830992256, 48.87172610314215], [2.344195205465388, 48.87167201466424], [2.344385767245335, 48.871618827485484], [2.344572139568655, 48.87156473930725], [2.344758512868176, 48.87151065084368], [2.344949073493809, 48.8714574618611], [2.345135446018089, 48.87140337280537], [2.345326005866366, 48.87135018321755], [2.345512376252155, 48.87129609356228], [2.345702935323175, 48.87124290336922], [2.345705259137083, 48.871242411542134], [2.34590669009354, 48.871211597572064], [2.346116041656602, 48.87118056662349], [2.346317472119509, 48.871149752859736], [2.346526823200578, 48.87111872029169], [2.346728253181423, 48.871087905834926], [2.346937603769195, 48.87105687254672], [2.347139033267764, 48.87102605739695], [2.347348384714201, 48.870995024295254], [2.347549812378718, 48.870964207545825], [2.347759163331743, 48.870933173723955], [2.347782763634948, 48.87094601359349], [2.34781872909649, 48.87093032991631], [2.347879690874669, 48.8709037475127], [2.347873974606949, 48.87089045650115], [2.347873961753634, 48.870832136031225], [2.347873597791883, 48.87078476400989], [2.347865697833232, 48.87071711127966], [2.347800357715543, 48.87071459235845], [2.347604704062284, 48.87074568202462], [2.347411166000703, 48.87077709947342], [2.347215511880377, 48.87080818850162], [2.347021971977312, 48.87083960621121], [2.346826317389922, 48.87087069460155], [2.346632778394393, 48.87090211078826], [2.346437123339951, 48.870933198540655], [2.346243582503039, 48.870964614988104], [2.346047928355976, 48.87099570121076], [2.345854387052002, 48.871027117027154], [2.345658731063477, 48.871058203503694], [2.345465190667085, 48.871089617797224], [2.345269534211532, 48.87112070363585], [2.345075991973756, 48.871152118190125], [2.344880335051077, 48.87118320339082], [2.344686793720916, 48.87121461642215], [2.344491136331225, 48.87124570098494], [2.344297594522822, 48.87127711428452], [2.344101936677448, 48.871308197310086], [2.343908393038877, 48.87133960997112], [2.343712734715181, 48.87137069325804], [2.343519191984273, 48.871402104396196], [2.343323533193588, 48.871433187045156], [2.343129989984442, 48.871464598451496], [2.343071572268657, 48.87147071173339], [2.343058791048957, 48.871478500918165], [2.342865246159787, 48.87150991098841], [2.342684601243984, 48.871539989515576], [2.34249105726396, 48.871571398986525], [2.342310410555592, 48.871601476939816], [2.34211686612147, 48.871632885803955], [2.341936218983793, 48.8716629631909], [2.3417426740955802, 48.87169437144828], [2.341562026528603, 48.87172444826878], [2.341368481186407, 48.871755855919375], [2.341187834553292, 48.871785932181], [2.341007186359787, 48.87181600726239], [2.340813640331359, 48.87184741491257], [2.340632991708574, 48.87187748942755], [2.340439445226073, 48.87190889647092], [2.340258796174017, 48.87193897041953], [2.340065249237451, 48.8719703768561], [2.340058669922661, 48.871970365763715], [2.340033362352637, 48.87196745896276], [2.3400147526176083, 48.87197005797217], [2.339811478343835, 48.87193636201246], [2.339628445872503, 48.87190480629075], [2.339425172103276, 48.87187110967303], [2.339242140095263, 48.871839553358804], [2.339038866830592, 48.87180585608308], [2.338855835285904, 48.87177429917623], [2.338672805314827, 48.87174274289552], [2.338469531433019, 48.87170904464246], [2.338286501936691, 48.87167748686989], [2.338083228559459, 48.87164378795882], [2.337900199526473, 48.871612229593744], [2.337696926653825, 48.87157853002464], [2.337513898072748, 48.87154697196629], [2.337310625704688, 48.87151327173923], [2.337217756727466, 48.87149725831286], [2.337151717203031, 48.87148794958249], [2.337118391471848, 48.87155806287769], [2.33716712105241, 48.87168906804402], [2.3372145183908, 48.871816149170186], [2.3372632484545672, 48.87194715426679], [2.337310646273766, 48.872074234425895], [2.3373593768207472, 48.87220523945276], [2.337406773734605, 48.87233232043584], [2.33745550612808, 48.8724633254005], [2.33750290352275, 48.87259040541655], [2.337551635036279, 48.872721410303924], [2.33759903425207, 48.87284849115901], [2.337647766248834, 48.87297949597662], [2.337695165945454, 48.87310657586469], [2.33774389842546, 48.87323758061253], [2.337791297216849, 48.873364661324516], [2.337838697614157, 48.873491741111366], [2.337887430815523, 48.87362274575507], [2.337934831670808, 48.87374982637346], [2.337983565355435, 48.8738808309474], [2.338030965328354, 48.87400791059116], [2.33807970085946, 48.87413891510286], [2.338097118118049, 48.87415844701167], [2.338149243437723, 48.8741536116973], [2.338345524245061, 48.874149640706186], [2.338540814507068, 48.874144650365686], [2.338737095250881, 48.874140678732445], [2.338932385430252, 48.874135688652416], [2.339128666110433, 48.874131716377086], [2.339323956230191, 48.8741267247589], [2.339520236846624, 48.874122751841526], [2.339715526895242, 48.87411775958442], [2.339911807448122, 48.874113786025006], [2.340107097414095, 48.87410879402834], [2.340303377903314, 48.87410481982682], [2.340498667809625, 48.874099826292074], [2.340694948235069, 48.87409585144842], [2.340890238070209, 48.874090857274815], [2.341085527856524, 48.874085863681834], [2.341281808184558, 48.874081887875946], [2.34147709791107, 48.87407689274484], [2.341673378175508, 48.87407291629681], [2.341868667830825, 48.87406792052689], [2.342064948031453, 48.874063943436816], [2.342260237604212, 48.8740589479273], [2.342456517741126, 48.87405497019513], [2.342492731636047, 48.874056518122714]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 1, "roussel_fabien": 17.0, "nb_emargement": 1087.0, "nb_procuration": 80.0, "nb_vote_blanc": 8.0, "jadot_yannick": 94.0, "le_pen_marine": 51.0, "nb_exprime": 1077.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 7, "nb_inscrit": 1347.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1087, "quartier_bv": "35", "geo_point_2d": [48.87271461110289, 2.3408242617606714], "melenchon_jean_luc": 221.0, "poutou_philippe": 6.0, "macron_emmanuel": 475.0}, "geometry": {"type": "Point", "coordinates": [2.3408242617606714, 48.87271461110289]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ca5a6c46500429add530f04b965eb5e26282fd8e", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 49, "zemmour_eric": 78.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "11-33", "geo_shape": {"coordinates": [[[2.384971230562931, 48.86512653144118], [2.384975656722649, 48.86511740878503], [2.385055338806794, 48.86504784497906], [2.3851832515565903, 48.86493323086417], [2.385303583642242, 48.86482817723986], [2.38543149530653, 48.86471356283687], [2.3855518263842, 48.86460850894215], [2.385679736973595, 48.864493893351856], [2.385800067043392, 48.864388839186695], [2.385927976536594, 48.86427422420767], [2.38604830559843, 48.86416916977206], [2.386172040984569, 48.864063389822306], [2.386292369067175, 48.86395833512131], [2.386416103446412, 48.86385255579839], [2.38653643055, 48.86374750083202], [2.386660163943531, 48.86364172033731], [2.386780490067907, 48.863536665105634], [2.386904222454564, 48.863430885237754], [2.387024547599943, 48.863325829740674], [2.387148279000905, 48.86322004870109], [2.387268603167092, 48.86311499293862], [2.387269590519347, 48.863114025804244], [2.38736476858499, 48.86300624029148], [2.387426484214429, 48.86292380137418], [2.38743790382218, 48.86290180703948], [2.387383845758343, 48.86288331054663], [2.387311049895633, 48.862864997797516], [2.387310572939277, 48.8628648712464], [2.387135964213062, 48.86281721317277], [2.386910141203679, 48.86275385886185], [2.386772808369797, 48.862716373912015], [2.386751016002119, 48.86271388618094], [2.386735680614811, 48.86273768065977], [2.386686382872667, 48.862850484441076], [2.386631044965513, 48.862969200092586], [2.386621813049646, 48.86297519366303], [2.386427593893594, 48.86301235989734], [2.38623149477598, 48.86305033367789], [2.38603727506126, 48.86308749927625], [2.385841175376319, 48.8631254724147], [2.385646955092535, 48.863162638276414], [2.385450854840272, 48.863200610772715], [2.385256634008436, 48.863237775099165], [2.385060534551902, 48.86327574696038], [2.38486631179858, 48.86331291064389], [2.384670211774742, 48.863350881862964], [2.38447598846288, 48.863388044910515], [2.384279887871644, 48.863426015487455], [2.384085665364295, 48.86346317790609], [2.383889562842826, 48.86350114783383], [2.383690462738442, 48.86353967848247], [2.383494359640981, 48.863577647760074], [2.383295258962497, 48.86361617684929], [2.383099155289157, 48.86365414547672], [2.382900054015393, 48.86369267480511], [2.382703951129029, 48.86373064278934], [2.382504849281397, 48.86376917055837], [2.382308744456015, 48.86380713788538], [2.382109642013105, 48.86384566589354], [2.38191353662243, 48.863883631671094], [2.381714433594807, 48.86392215901914], [2.381518327617511, 48.8639601250458], [2.381322222717449, 48.86399809075684], [2.381123118825883, 48.864036616217916], [2.381101028725144, 48.86403988890961], [2.381097716616083, 48.8640508806331], [2.381105504112928, 48.86407268319364], [2.381110405582257, 48.86408590549149], [2.381114302503306, 48.86409694168888], [2.381129340802747, 48.864100356913276], [2.381293256616957, 48.86415807073589], [2.381453608819271, 48.86421481530654], [2.381613960007835, 48.864271559652316], [2.381777876886912, 48.8643292737016], [2.381938230143939, 48.864386017614095], [2.382102147753049, 48.86444373031399], [2.382262501715675, 48.86450047378618], [2.382426420044143, 48.864558186036014], [2.382586774701605, 48.86461492996716], [2.382750692386356, 48.86467264175987], [2.382756583108505, 48.86468444092786], [2.38267168690746, 48.86480211361179], [2.38258761739183, 48.8649187814283], [2.382502720427244, 48.86503645396747], [2.382418650155148, 48.86515312164063], [2.382333753790005, 48.86527079404204], [2.382249681387576, 48.865387462464064], [2.382164784269542, 48.86550513382145], [2.382080712473622, 48.865621802107086], [2.381995813218359, 48.86573947421196], [2.381911740676408, 48.86585614145494], [2.381826840657566, 48.865973813415046], [2.3817427673591123, 48.866090480514615], [2.38165786657658, 48.86620815232994], [2.381573792521512, 48.866324819286135], [2.381488890975484, 48.86644249095663], [2.381404816153014, 48.86655915866871], [2.381319913843376, 48.86667683019445], [2.381235838275053, 48.866793496863856], [2.3812262057180202, 48.86680958302695], [2.381228421569889, 48.866812281711375], [2.381344922964328, 48.866846137062936], [2.381546532959392, 48.86690490675083], [2.381722164020294, 48.866955943370506], [2.381923773502767, 48.86701471241009], [2.38209940529279, 48.86706574937044], [2.382301016988948, 48.86712451777576], [2.382476648166282, 48.86717555327117], [2.382678260712979, 48.8672343210352], [2.382853892630092, 48.86728535597195], [2.382904523226774, 48.867316333075394], [2.382918625475151, 48.867309439498875], [2.383003845645865, 48.86724447256515], [2.383084735239525, 48.867190971412754], [2.383087413060359, 48.8671878222373], [2.38310649866626, 48.86714839013013], [2.383125605275758, 48.86710879354775], [2.383143261659377, 48.86709289068887], [2.383135786461458, 48.867073845514014], [2.383174738870338, 48.86699311647035], [2.383226317392676, 48.86689221282835], [2.383284377253832, 48.86677188712915], [2.383335955334018, 48.86667098431908], [2.383394013332244, 48.86655065853559], [2.383445590981139, 48.86644975565809], [2.3834477044529, 48.86644706132981], [2.383568044898321, 48.86634200960115], [2.383692919080916, 48.866234167953095], [2.383813257177042, 48.86612911595069], [2.383938130341701, 48.86602127402607], [2.384058467451462, 48.86591622175689], [2.384183340950672, 48.86580838046199], [2.384303677074179, 48.865703327926035], [2.384428548202997, 48.865595485448296], [2.384548883340361, 48.86549043264562], [2.384673753451273, 48.86538258989123], [2.384794088965397, 48.86527753682885], [2.384918958047794, 48.86516969469722], [2.384959609081333, 48.865134205155286], [2.384971230562931, 48.86512653144118]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 33, "roussel_fabien": 16.0, "nb_emargement": 1541.0, "nb_procuration": 73.0, "nb_vote_blanc": 13.0, "jadot_yannick": 160.0, "le_pen_marine": 70.0, "nb_exprime": 1520.0, "nb_vote_nul": 8.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1908.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1541, "quartier_bv": "42", "geo_point_2d": [48.86482946158777, 2.3838331267662616], "melenchon_jean_luc": 617.0, "poutou_philippe": 6.0, "macron_emmanuel": 437.0}, "geometry": {"type": "Point", "coordinates": [2.3838331267662616, 48.86482946158777]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8ee787decfd0871daab8303fa6f7b4f7e0396f98", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 63, "zemmour_eric": 91.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "9-4", "geo_shape": {"coordinates": [[[2.347910556201139, 48.872566750824326], [2.347907914398134, 48.87255898952982], [2.347907953374301, 48.872523750956944], [2.347907274934809, 48.87239270462045], [2.347907416475697, 48.872264114333156], [2.347906738040834, 48.8721330679659], [2.347906879593602, 48.87200447674911], [2.347906201163471, 48.871873430351], [2.347906342716858, 48.87174483910397], [2.34790566429146, 48.871613792675085], [2.347905805834208, 48.871485202297094], [2.34790658774028, 48.87148383776209], [2.347900842534812, 48.87146272504597], [2.347899977294853, 48.87135019586744], [2.347900118862182, 48.871221604559516], [2.347899253639049, 48.87110907445713], [2.347899396559387, 48.87098048402784], [2.347898895315569, 48.87091532681784], [2.347879690874669, 48.8709037475127], [2.34781872909649, 48.87093032991631], [2.347782763634948, 48.87094601359349], [2.347784084017242, 48.87095804316432], [2.347717096251519, 48.8709883312362], [2.347688357527562, 48.87100097402719], [2.347684000874501, 48.871004092578204], [2.347585030127061, 48.87112175340848], [2.347486505866924, 48.87123997686946], [2.347387534225089, 48.871357637511316], [2.347289009070643, 48.87147586078449], [2.347190036534503, 48.87159352123793], [2.34709150912238, 48.87171174431586], [2.34699253569192, 48.87182940458093], [2.346894008748619, 48.87194762747847], [2.346795034423832, 48.87206528755506], [2.346696506585988, 48.87218351026479], [2.346687754525227, 48.87218792052039], [2.346526767853447, 48.87221351919584], [2.346366397831777, 48.87223798515713], [2.346205410847337, 48.87226358339922], [2.346045039168607, 48.87228804802214], [2.345884051871513, 48.87231364583085], [2.345723681251089, 48.87233811002956], [2.345723425814902, 48.87233814910361], [2.345587088785503, 48.872357999571975], [2.345440519286798, 48.8723778865629], [2.345304182045576, 48.87239773670829], [2.345157612327043, 48.87241762335209], [2.345146830320615, 48.8724275443311], [2.34516963610598, 48.872548264148975], [2.345195042303979, 48.87267849609073], [2.345217849685446, 48.87279921498019], [2.345243256126396, 48.872929446882125], [2.345266062354993, 48.873050166626754], [2.345291469038892, 48.87318039848886], [2.345314275489109, 48.87330111819691], [2.345339682415961, 48.87343135001916], [2.345362489099001, 48.87355206879125], [2.345387897632121, 48.87368230058114], [2.345410704525588, 48.87380302021589], [2.345436111938362, 48.87393325195845], [2.3454589190647592, 48.87405397065731], [2.345474209003935, 48.87413234069948], [2.345460678701642, 48.874144601131285], [2.345464616556069, 48.8741649674771], [2.345474734269417, 48.87421682913692], [2.345508896555298, 48.874356272031726], [2.34553430583549, 48.87448650459486], [2.34556846845773, 48.87462594743856], [2.345593876666494, 48.874756179050515], [2.345579384674288, 48.874766297407405], [2.3454999313488623, 48.87476255975084], [2.345424079430043, 48.87476104960726], [2.345410063266328, 48.87477062284943], [2.345423846865039, 48.87491038863821], [2.345438101785324, 48.875046613597476], [2.345451884168964, 48.87518637934062], [2.345466140601464, 48.87532260426991], [2.345479923133273, 48.87546236997487], [2.345494179714651, 48.875598594866766], [2.345478336642737, 48.8756233335236], [2.345506803150533, 48.87564236443665], [2.345652317587782, 48.87565042747538], [2.345833121334265, 48.87566015180396], [2.346035222529507, 48.87567134930762], [2.346216027772175, 48.875681073964394], [2.346418129131019, 48.87569227082136], [2.346598933154441, 48.875701994892225], [2.346801036040035, 48.87571319110996], [2.346981840207564, 48.87572291460234], [2.346983877024882, 48.87572292661269], [2.347151877927111, 48.87571562841804], [2.347318631901794, 48.875708386142726], [2.347486631346853, 48.875701087470766], [2.3476533852283312, 48.87569384472906], [2.347821385942935, 48.87568654559464], [2.347988139731404, 48.875679302386544], [2.348001995257055, 48.87568548344511], [2.348068298912732, 48.87581935368092], [2.348129795110473, 48.875949763119515], [2.34819609943116, 48.876083633252456], [2.348257594908806, 48.87621404168748], [2.3483238998943072, 48.87634791171755], [2.348385397356209, 48.87647832096233], [2.348389974075188, 48.87648271124854], [2.348439682097648, 48.87650870729933], [2.348521644560923, 48.87655133760184], [2.348589513303225, 48.87655165657156], [2.348598154067966, 48.87652839192038], [2.348551272312413, 48.87643928696788], [2.348478185542601, 48.87630677773604], [2.348410943975258, 48.87617897500446], [2.348337857938993, 48.87604646475646], [2.348270617051945, 48.87591866191588], [2.348269911361221, 48.87591676407261], [2.348252199742758, 48.87582822785293], [2.348264600907194, 48.87581433228072], [2.34824794537053, 48.875789258048336], [2.348237955838888, 48.87573932918515], [2.3482147622352523, 48.87561351169811], [2.348187061370237, 48.87547504746581], [2.348163868007227, 48.87534922993877], [2.348136167418065, 48.87521076566155], [2.348112974306935, 48.8750849471952], [2.348085273993622, 48.87494648287301], [2.348062081111857, 48.874820665265936], [2.34803438107439, 48.874682200898846], [2.348011187070011, 48.874556383244354], [2.347983488671614, 48.87441791883969], [2.347960294919112, 48.87429210024595], [2.347932596796547, 48.87415363579636], [2.347909403273404, 48.87402781806188], [2.347909285838943, 48.874026634793495], [2.347909428753779, 48.87389804380466], [2.347909402355624, 48.87377992736307], [2.347909375968846, 48.87366181000957], [2.347909518882458, 48.873533218978295], [2.347914368107593, 48.87350982933587], [2.3479063849569393, 48.873501055974586], [2.347906526514294, 48.873372464917104], [2.347905822514049, 48.87322527362533], [2.347905964072044, 48.87309668253576], [2.347905260077115, 48.87294949120722], [2.347905401635748, 48.87282090008548], [2.347904696282853, 48.87267370871275], [2.347904800238378, 48.87258035523927], [2.347910556201139, 48.872566750824326]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 4, "roussel_fabien": 24.0, "nb_emargement": 1205.0, "nb_procuration": 99.0, "nb_vote_blanc": 4.0, "jadot_yannick": 109.0, "le_pen_marine": 47.0, "nb_exprime": 1200.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1469.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1206, "quartier_bv": "35", "geo_point_2d": [48.873803346025845, 2.346794771213288], "melenchon_jean_luc": 289.0, "poutou_philippe": 8.0, "macron_emmanuel": 524.0}, "geometry": {"type": "Point", "coordinates": [2.346794771213288, 48.873803346025845]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "79be11b97eaee308d2cb4f99ab9e579f975ae4e5", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 57, "zemmour_eric": 84.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "12-55", "geo_shape": {"coordinates": [[[2.37515814260252, 48.8474018569537], [2.375129973872377, 48.84741134104261], [2.374976221031834, 48.84748946183154], [2.374819977000023, 48.84756665115923], [2.374666223236571, 48.84764477153887], [2.374509979653393, 48.84772195955878], [2.374356223593601, 48.847800080421315], [2.374199979085533, 48.84787726802562], [2.374046222102916, 48.847955388478915], [2.373889976670057, 48.84803257566763], [2.373870566812814, 48.848037070698986], [2.3738623961205603, 48.848048745648946], [2.37370615013563, 48.848125932591124], [2.373540170659489, 48.84820645353691], [2.373383922351001, 48.8482836409395], [2.373217943237336, 48.848364161434006], [2.373061693989553, 48.84844134750556], [2.372895712513065, 48.848521867534494], [2.372739463666901, 48.848599054080736], [2.37261512798118, 48.848659370376375], [2.372592042898785, 48.848679679983874], [2.372612911920654, 48.848699236187315], [2.372773376288203, 48.84878733750699], [2.372929008755622, 48.84887409751979], [2.373089474206708, 48.848962197502395], [2.373245106360032, 48.84904895708325], [2.373405572873221, 48.849137057527344], [2.373561206074916, 48.84922381668344], [2.373716841157497, 48.849310575637425], [2.373877309284589, 48.849398674528864], [2.374032944052976, 48.84948543305092], [2.374193413242097, 48.849573532403845], [2.374195485015654, 48.849574974113814], [2.37431977217519, 48.849683300283786], [2.374445367332765, 48.849794868128754], [2.374569656888087, 48.84990319492415], [2.3746952531213132, 48.85001476158545], [2.374819542357953, 48.850123088092744], [2.374945141008055, 48.85023465537611], [2.375069431299399, 48.85034298070317], [2.375195029651783, 48.850454547695065], [2.375319322338874, 48.85056287364751], [2.375444921767133, 48.85067443945572], [2.37546440746503, 48.85067608086223], [2.375600006957122, 48.85060401826873], [2.375737673552095, 48.850531373629806], [2.375873270916272, 48.85045931160943], [2.37601093674812, 48.85038666664657], [2.376146534731343, 48.85031460341501], [2.3762841997891, 48.85024195902763], [2.376305020331639, 48.85024512446743], [2.376386196366016, 48.85035793986968], [2.376463013633064, 48.85046651002152], [2.376544191717054, 48.85057932530122], [2.376621008266257, 48.85068789622222], [2.376702187047925, 48.85080071047295], [2.376779004252652, 48.85090928127095], [2.376785871484141, 48.85091370948319], [2.376902909997075, 48.850947645489065], [2.377023510488545, 48.850984015588324], [2.377073718639918, 48.85098237126769], [2.377114497433617, 48.85096615687693], [2.377041497820836, 48.85085292324678], [2.376971589086529, 48.85074654613743], [2.376898590102675, 48.85063331149845], [2.376828681943855, 48.850526935183936], [2.3767556835781702, 48.85041370043541], [2.376685776005683, 48.85030732401642], [2.376612778258159, 48.850194089158315], [2.376542871271997, 48.850087712634824], [2.376541774601488, 48.850084721963654], [2.376528367467317, 48.849949549304434], [2.376514964047588, 48.84981703333928], [2.376501555678386, 48.84968186153672], [2.376488152395686, 48.84954934553671], [2.376474745538345, 48.84941417280644], [2.37646134238191, 48.84928165767084], [2.376447934300306, 48.849146484897986], [2.376434531280896, 48.849013969727494], [2.376433556250862, 48.84901117934308], [2.376365372473517, 48.84890057830899], [2.376279049003836, 48.8487605528849], [2.376210865882425, 48.84864995173782], [2.376124543242951, 48.84850992617075], [2.376056359414711, 48.848399324903646], [2.376023994872653, 48.84835278533924], [2.376014106759669, 48.84832959154896], [2.376000218634306, 48.84832555565509], [2.375944663655571, 48.848245668414805], [2.375871532129378, 48.848140337511396], [2.375783612065786, 48.84801391054744], [2.37571048117946, 48.84790858042296], [2.375622561908343, 48.847782152415036], [2.375549431672848, 48.847676822170214], [2.375547246559028, 48.84767460734244], [2.375453839906446, 48.84760496917367], [2.37527493815336, 48.84747907316699], [2.375181532215016, 48.847409434773404], [2.37515814260252, 48.8474018569537]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 55, "roussel_fabien": 27.0, "nb_emargement": 1231.0, "nb_procuration": 67.0, "nb_vote_blanc": 6.0, "jadot_yannick": 98.0, "le_pen_marine": 58.0, "nb_exprime": 1218.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1529.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "48", "geo_point_2d": [48.84904669401789, 2.3750249194137436], "melenchon_jean_luc": 437.0, "poutou_philippe": 5.0, "macron_emmanuel": 384.0}, "geometry": {"type": "Point", "coordinates": [2.3750249194137436, 48.84904669401789]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "171446ee8d9c6e45c74ce270ec33ebd98fa5e883", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 29, "zemmour_eric": 46.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "10-7", "geo_shape": {"coordinates": [[[2.362614196105643, 48.87426986784615], [2.362617400190825, 48.87427052703258], [2.362662736809342, 48.874260520493095], [2.362844153331884, 48.87421419648721], [2.363034437292676, 48.8741721975324], [2.363083470638375, 48.87415967707521], [2.363086560382039, 48.87416009821611], [2.363114903220145, 48.87415636118828], [2.363248784447805, 48.87412431241964], [2.3633811667781712, 48.87409050901936], [2.363515047672733, 48.87405845995104], [2.36369646272248, 48.87401213554431], [2.363697273827015, 48.87401192131722], [2.363796890066092, 48.873983194502074], [2.363867525081658, 48.873965156888524], [2.363882854394979, 48.87396531569389], [2.363901191705267, 48.8739600854724], [2.364011972582745, 48.87393179642631], [2.364173954810807, 48.87388812361216], [2.3641740833555343, 48.873888091918836], [2.364373212910058, 48.87383875696939], [2.364535195909102, 48.873795083669975], [2.364734323402701, 48.8737457481084], [2.364896305809715, 48.873702074316654], [2.364917623747751, 48.873692555530845], [2.365066817513068, 48.87360402132122], [2.365207962207072, 48.87352034471974], [2.365349105084277, 48.87343666793829], [2.365498297394301, 48.8733481322711], [2.365639439338437, 48.873264455134276], [2.365788630650644, 48.87317591999069], [2.365929773025014, 48.873092242505685], [2.366078963361413, 48.87300370608718], [2.3662201034394252, 48.872920028239584], [2.366369292778233, 48.87283149234471], [2.36651043328648, 48.87274781414894], [2.366659621638445, 48.8726592778784], [2.366660991631282, 48.87264684639991], [2.36661866897084, 48.872613229186726], [2.366579218352713, 48.87258313546839], [2.366572731669385, 48.8725595825841], [2.366498751946031, 48.87256309329988], [2.366292680441727, 48.87254877056716], [2.36609323715758, 48.87253527129915], [2.36589379396576, 48.87252177259801], [2.365687722791388, 48.87250744882327], [2.365488279822149, 48.87249394854688], [2.3652822102325493, 48.87247962408089], [2.365082767475057, 48.87246612312847], [2.364876696743782, 48.87245179795684], [2.364867497740746, 48.87244848635187], [2.364732409862968, 48.87233756111924], [2.364593467423383, 48.8722233632549], [2.36445838071291, 48.872112437690404], [2.364319439474605, 48.871998239484746], [2.364303799997521, 48.87199550338198], [2.364098580742298, 48.87204895815125], [2.363895279521402, 48.87210362067863], [2.363690059409996, 48.87215707564153], [2.363486757338408, 48.8722117374698], [2.363281536392793, 48.872265190827775], [2.363078233470523, 48.87231985195684], [2.363062339737745, 48.87231705678236], [2.362958612060154, 48.87222937787705], [2.362850692684856, 48.87213934098139], [2.362746965717424, 48.87205166187855], [2.362659174309372, 48.87197841915875], [2.362636465126662, 48.871963613854554], [2.36260511630382, 48.871982695451784], [2.362553992033922, 48.87210651741323], [2.362506415739662, 48.87222247554266], [2.362502248565158, 48.87222688618377], [2.362375929127857, 48.87229999860887], [2.3622491333822833, 48.87237323426719], [2.362122814598173, 48.87244634642273], [2.361996018129455, 48.872519582702544], [2.361869697271872, 48.87259269457401], [2.361742901465321, 48.872665929683954], [2.361738595029294, 48.872670682202155], [2.361696397893174, 48.872791841632385], [2.361651300751552, 48.872922341373354], [2.361609103208505, 48.873043500745155], [2.361564006993688, 48.87317400043076], [2.361544344987813, 48.87318119547786], [2.361554108671213, 48.8732060584584], [2.361555162322481, 48.873207300666316], [2.361658830096634, 48.873309624292716], [2.361764100460323, 48.873412040900114], [2.36186776905232, 48.87351436432667], [2.361973040240629, 48.873616780731304], [2.36207670965058, 48.87371910395786], [2.362181983026832, 48.87382152016709], [2.362285653254748, 48.87392384319374], [2.362390926092326, 48.87402625919289], [2.362494597138212, 48.87412858201961], [2.362599870800436, 48.87423099781602], [2.362614196105643, 48.87426986784615]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 7, "roussel_fabien": 15.0, "nb_emargement": 1093.0, "nb_procuration": 68.0, "nb_vote_blanc": 8.0, "jadot_yannick": 123.0, "le_pen_marine": 40.0, "nb_exprime": 1081.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1383.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1093, "quartier_bv": "39", "geo_point_2d": [48.87306251397065, 2.363724968029399], "melenchon_jean_luc": 428.0, "poutou_philippe": 5.0, "macron_emmanuel": 331.0}, "geometry": {"type": "Point", "coordinates": [2.363724968029399, 48.87306251397065]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "77ba81217ce12cf1a5078af70223c569de5a49ac", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 75, "zemmour_eric": 81.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "12-14", "geo_shape": {"coordinates": [[[2.387149383019345, 48.84687186724564], [2.38718826036188, 48.846865814966385], [2.3872729505380432, 48.8467966134084], [2.387363247124739, 48.84671460848562], [2.387479203686519, 48.84661985878601], [2.387569498279913, 48.84653785368756], [2.387588807187404, 48.84653600092623], [2.38766399524069, 48.84657400674422], [2.387680195627695, 48.84658342857375], [2.387683956857477, 48.84659477071654], [2.387666440335381, 48.84661664423794], [2.387654613286641, 48.84665356342405], [2.387659964609421, 48.84666271388078], [2.387802417445031, 48.846731759783026], [2.387980516939452, 48.84681668522449], [2.388122969257911, 48.84688573072855], [2.38830106981144, 48.8469706547818], [2.388443524327522, 48.84703970080088], [2.388621625929606, 48.847124624365186], [2.388764081291364, 48.8471936699931], [2.388942182579381, 48.84727859306151], [2.389084638797156, 48.84734763739888], [2.389094970221532, 48.847360229864485], [2.389125698229576, 48.8473591123774], [2.389339076239308, 48.8473734725689], [2.389554897027945, 48.84738846809616], [2.389768275276234, 48.84740282752181], [2.38998409767246, 48.8474178222814], [2.390197476159194, 48.8474321809412], [2.390413297427424, 48.84744717581851], [2.39062667616301, 48.84746153281314], [2.390842499038913, 48.84747652692279], [2.390854921520137, 48.84747289382298], [2.39097293554364, 48.84736644799295], [2.391079393579389, 48.84726932889455], [2.391185849855632, 48.84717220968602], [2.3913038625117933, 48.84706576440015], [2.391410319316612, 48.846968644981075], [2.391528331063823, 48.84686219855502], [2.391634785671787, 48.846765078911574], [2.391752796499553, 48.84665863224467], [2.391859251625602, 48.84656151328994], [2.391977261533932, 48.84645506638217], [2.392043472024429, 48.8463946612683], [2.3920619875684013, 48.846391296433936], [2.392076147811773, 48.84637521955531], [2.392116390222961, 48.84633850457914], [2.392157259320956, 48.84628357092305], [2.392152209791943, 48.84627196426187], [2.391991019811084, 48.84620598055323], [2.391831418230399, 48.84614077094739], [2.39167023042396, 48.84607478680571], [2.39151062964654, 48.846009576764196], [2.391349441299938, 48.845943591276345], [2.391189841325683, 48.84587838079925], [2.391028655143094, 48.84581239577765], [2.390869055972001, 48.845747184864955], [2.3907078692387502, 48.845681199396495], [2.390548270870718, 48.845615988048145], [2.390387084960014, 48.84555000124044], [2.390227487384624, 48.84548479035579], [2.390066303648325, 48.84541880311508], [2.389906706886717, 48.84535359089554], [2.3897455225892412, 48.84528760410724], [2.389585926630794, 48.84522239145211], [2.38942474450781, 48.845156404230764], [2.389265149352521, 48.84509119114008], [2.3892393193734582, 48.84507270879246], [2.389210905142883, 48.845085215884005], [2.389163077437881, 48.84512377625289], [2.389054164734883, 48.84521275920028], [2.38892098147412, 48.84532013493556], [2.38881206794742, 48.845409117646874], [2.388678883675619, 48.84551649399304], [2.38856996933576, 48.84560547556897], [2.388436784063256, 48.845712851626715], [2.388327868889129, 48.84580183386591], [2.3883213688158262, 48.84580475861628], [2.38817268291458, 48.845835718626816], [2.388034124737508, 48.84586116324128], [2.387885438504699, 48.84589212289329], [2.387746881400016, 48.84591756718079], [2.387739361889018, 48.845921082955776], [2.387607453135935, 48.84604577811727], [2.387475017863252, 48.8461703490138], [2.387343107846665, 48.84629504385597], [2.387210671308786, 48.84641961443202], [2.387193007684599, 48.84642234973407], [2.386992292974878, 48.84635031998758], [2.386788259150737, 48.8462790049605], [2.386587545541917, 48.846206975425005], [2.3863835128328352, 48.84613565969854], [2.386366358227336, 48.8461381042995], [2.386268751819963, 48.846221378680845], [2.386184036094773, 48.84629028534512], [2.386156339769204, 48.84632016016127], [2.386184815138018, 48.84633428225943], [2.386340402018583, 48.846419574044226], [2.386499982455961, 48.846507605749714], [2.386655570359192, 48.84659289801071], [2.386815151859677, 48.84668092928209], [2.386970740806751, 48.846766220220665], [2.38713032335977, 48.84685425195729], [2.387149383019345, 48.84687186724564]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 14, "roussel_fabien": 21.0, "nb_emargement": 1096.0, "nb_procuration": 43.0, "nb_vote_blanc": 11.0, "jadot_yannick": 92.0, "le_pen_marine": 72.0, "nb_exprime": 1080.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1380.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1096, "quartier_bv": "46", "geo_point_2d": [48.846398098971704, 2.3895408019628532], "melenchon_jean_luc": 291.0, "poutou_philippe": 1.0, "macron_emmanuel": 394.0}, "geometry": {"type": "Point", "coordinates": [2.3895408019628532, 48.846398098971704]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fa5254c776a8f22d1821a7b1e0a88080db71a8db", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 52, "zemmour_eric": 85.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "4-4", "geo_shape": {"coordinates": [[[2.357370736444245, 48.852774739702326], [2.357413417142282, 48.85282936723505], [2.357512218607296, 48.85294153457251], [2.357611207292082, 48.853053915966726], [2.357710009608619, 48.85316608311822], [2.357809000520308, 48.853278463434116], [2.357907802325599, 48.85339063039233], [2.358006794090445, 48.853503010521905], [2.358105596747371, 48.85361517729412], [2.358204589354306, 48.85372755813664], [2.358303394225468, 48.85383972473017], [2.358402386333967, 48.85395210447976], [2.358501192056689, 48.85406427088735], [2.3586001850071963, 48.85417665134985], [2.35869899158149, 48.85428881757146], [2.358797986759062, 48.85440119695564], [2.358896792822232, 48.85451336298388], [2.358995788841946, 48.854625743081044], [2.35909459576766, 48.85473790802401], [2.359193592640695, 48.85485028793479], [2.359292401769761, 48.85496245359834], [2.359391398144159, 48.85507483241617], [2.359490208124834, 48.85518699789377], [2.359589206704339, 48.85529937743179], [2.359688016173804, 48.85541154271606], [2.3597870156175063, 48.85552392116847], [2.359793023303441, 48.85553612153472], [2.359810946008083, 48.855537186924984], [2.359956467597105, 48.855513409502784], [2.360105526057718, 48.85548905454787], [2.360121878356069, 48.85549525218591], [2.360166876265469, 48.85559644318651], [2.360212394262916, 48.855698802499944], [2.360230460150979, 48.8557046396503], [2.360383722171321, 48.855664856871805], [2.360534410762586, 48.85562574275188], [2.3606876709449223, 48.855585960473306], [2.360838359090886, 48.85554684506857], [2.36099162017193, 48.85550706240513], [2.361142307861549, 48.855467946614894], [2.361164373253614, 48.8554659428499], [2.361168461458888, 48.85546142565011], [2.361143302229409, 48.85534082771738], [2.361119698161258, 48.85522767840351], [2.361127876231042, 48.855218172753794], [2.3612608317452812, 48.855180947002125], [2.361383640956398, 48.855146561964595], [2.361506450005328, 48.855112176800006], [2.361639406341467, 48.855074950631405], [2.36165627285713, 48.855078449153126], [2.361739924660526, 48.85516642926261], [2.361823605001829, 48.85525443913594], [2.361907256018583, 48.855342418208], [2.3619909369251513, 48.85543042795038], [2.36200792117764, 48.85543389467175], [2.36216599146928, 48.85538848102762], [2.362372902241487, 48.855329035850176], [2.362530971896916, 48.85528362171967], [2.362737880473613, 48.85522417589826], [2.362895949492833, 48.855178761281316], [2.363102858599471, 48.855119314830475], [2.363260926971485, 48.855073900626394], [2.363304623255204, 48.85506023816122], [2.36330456019867, 48.855057144956305], [2.36328938335184, 48.8550362649003], [2.363206803350368, 48.85492484638626], [2.363122665849446, 48.854809085537035], [2.363040086564606, 48.85469766688521], [2.362955949800894, 48.85458190589508], [2.362932767983725, 48.854569473945936], [2.362895105199931, 48.85458293547258], [2.362831423265753, 48.854605349087365], [2.362737205887462, 48.8546388032734], [2.362719210597538, 48.8546356703229], [2.36262851296944, 48.85454047470314], [2.362539678775931, 48.854444383284665], [2.36244898180878, 48.85434918751241], [2.362360146909761, 48.85425309593685], [2.3623597113448422, 48.85425260526755], [2.362252085510526, 48.854122000650634], [2.362170219332099, 48.854023265083164], [2.362088354826716, 48.8539245294582], [2.361980730350066, 48.85379392455866], [2.361898865201358, 48.85369518877644], [2.361791241684351, 48.85356458278022], [2.361709377254903, 48.85346584684797], [2.36170676743818, 48.853463618719346], [2.361619702672197, 48.8534047097974], [2.361548124790682, 48.85336020474015], [2.361546737298425, 48.8533591019249], [2.361442743624676, 48.853261604831424], [2.361349709296086, 48.85317553125793], [2.361256676648544, 48.85308945671343], [2.3611526840556483, 48.852991959344216], [2.36105965068761, 48.85290588552432], [2.36095565882971, 48.85280838796777], [2.360955142359011, 48.85280794002945], [2.360812103659084, 48.85269173498561], [2.36069859255762, 48.85259907881318], [2.360585083233622, 48.85250642163335], [2.3604420461866082, 48.85239021611563], [2.360424962012088, 48.852387984334655], [2.360364207242248, 48.85240976568316], [2.360287941292432, 48.852434614508326], [2.360269900693248, 48.85243080552147], [2.360212720143916, 48.85236426237734], [2.36011169129828, 48.8522401041315], [2.360117307339026, 48.85222790654909], [2.3602178742809032, 48.85219266532883], [2.360326217647938, 48.85215195615519], [2.360331565016435, 48.8521399918571], [2.360258209841616, 48.85204689065511], [2.360145970304764, 48.85190226071538], [2.360072615796194, 48.8518091593797], [2.360036046855992, 48.851786698477], [2.360022940408331, 48.85178717158488], [2.359851702204841, 48.8518537709842], [2.359697689228128, 48.851917615861474], [2.359526450191344, 48.85198421388819], [2.359372436430598, 48.85204805833931], [2.359218422292355, 48.8521119025885], [2.359047181993634, 48.85217850081703], [2.358893167071353, 48.852242344640096], [2.358721925939351, 48.85230894149599], [2.358720997615879, 48.852309293564154], [2.358551527192839, 48.85236785044644], [2.358380348467327, 48.85242665334362], [2.358210875917051, 48.852485209729934], [2.358039696421601, 48.852544012133585], [2.3578702244696, 48.85260256803854], [2.35769904285254, 48.852661369042], [2.357529570124974, 48.852719925357626], [2.357393354819877, 48.85276671483216], [2.357370736444245, 48.852774739702326]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 4, "roussel_fabien": 23.0, "nb_emargement": 1064.0, "nb_procuration": 53.0, "nb_vote_blanc": 13.0, "jadot_yannick": 77.0, "le_pen_marine": 51.0, "nb_exprime": 1045.0, "nb_vote_nul": 6.0, "arr_bv": "04", "arthaud_nathalie": 2, "nb_inscrit": 1338.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "14", "geo_point_2d": [48.85385901871192, 2.3602038200012596], "melenchon_jean_luc": 309.0, "poutou_philippe": 6.0, "macron_emmanuel": 380.0}, "geometry": {"type": "Point", "coordinates": [2.3602038200012596, 48.85385901871192]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b1d2bb08fcf056d21f6a3a6a238545cd0bcd6174", "fields": {"lassalle_jean": 26.0, "pecresse_valerie": 110, "zemmour_eric": 116.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-72", "geo_shape": {"coordinates": [[[2.280546134494349, 48.831946869166174], [2.280573225964567, 48.83196062892738], [2.28071412199602, 48.83205814600781], [2.280845740809222, 48.832150067859615], [2.280986637850162, 48.83224758550185], [2.281118257622195, 48.83233950703823], [2.281259155697338, 48.83243702344363], [2.281390776428208, 48.83252894466455], [2.281531675512762, 48.83262646163173], [2.281663298564705, 48.8327183825454], [2.281794920718708, 48.83281030329856], [2.281935821319654, 48.8329078197651], [2.282067444432411, 48.8329997402028], [2.282208346067674, 48.83309725543247], [2.282339970139294, 48.83318917555471], [2.28248087278401, 48.833286691346174], [2.282612497814501, 48.83337861115295], [2.282753401481064, 48.83347612660688], [2.282885027470435, 48.83356804609815], [2.283025932171222, 48.83366556031524], [2.2831575604817322, 48.833757479499255], [2.283298464829754, 48.83385499426989], [2.283430094099163, 48.83394691313843], [2.283570999468949, 48.83404442757153], [2.283702629697366, 48.834136346124524], [2.283843536101379, 48.83423385932078], [2.283975167288708, 48.83432577755835], [2.283972021537161, 48.83433976650521], [2.28380497062146, 48.834402713763744], [2.283648473957459, 48.834460870967675], [2.283481422262859, 48.83452381776748], [2.283324924874311, 48.83458197454183], [2.283157872401015, 48.834644920882994], [2.283001374287818, 48.83470307722771], [2.282834321035724, 48.834766023110156], [2.282677823560265, 48.834824179033404], [2.282510769529376, 48.83488712445715], [2.282354269967189, 48.834945279942666], [2.282352880881553, 48.834945735686], [2.282188946840369, 48.834992091509974], [2.282019186449475, 48.83504115612995], [2.281855251811457, 48.835087511492624], [2.281685489433534, 48.83513657562663], [2.281521554198583, 48.83518293052801], [2.281351792558114, 48.8352319941924], [2.281187856726334, 48.83527834863249], [2.281018093098734, 48.8353274118109], [2.281010677538859, 48.83533857974783], [2.281066801704414, 48.835446100153526], [2.281126700099938, 48.83557553849274], [2.2811828247598402, 48.835683058821246], [2.281242723715758, 48.83581249707492], [2.281298850232427, 48.835920017334374], [2.2813044140990932, 48.835924674451526], [2.281340512353181, 48.835937811764204], [2.28138777104959, 48.83589425207426], [2.281597973569196, 48.83589164655169], [2.281803786925448, 48.8358891024443], [2.282013989403388, 48.83588649619057], [2.282219802718995, 48.835883951367364], [2.282430005155358, 48.835881344382535], [2.28263581979262, 48.83587879885169], [2.282846022187394, 48.835876191135824], [2.283051835421679, 48.83587364488093], [2.283262037774955, 48.835871036433964], [2.28346785096846, 48.83586848946327], [2.283678053280124, 48.835865880285205], [2.283883867795249, 48.83586333260685], [2.284094068702981, 48.835860722689546], [2.284299883177404, 48.83585817429537], [2.284510085405811, 48.83585556365513], [2.284715898477211, 48.83585301453695], [2.28472635707911, 48.835849578512686], [2.284841842822565, 48.835752515137685], [2.284957709102863, 48.83565379997021], [2.28507319398178, 48.83555673635485], [2.28518905802638, 48.83545802093786], [2.285304542053098, 48.83536095618285], [2.285420406574485, 48.83526224143192], [2.28543881712732, 48.835260304442315], [2.285604808601794, 48.835334555457635], [2.285756127197493, 48.83540317127399], [2.285907447553758, 48.83547178690283], [2.286073440369205, 48.83554603725372], [2.286079696271588, 48.8355531139989], [2.286101367563438, 48.835554923378226], [2.286249689130719, 48.83560033388508], [2.286395387399777, 48.83564511697922], [2.28654371084224, 48.83569052712599], [2.286689409615998, 48.83573530985838], [2.286837733571137, 48.83578071963689], [2.286983431487382, 48.83582550199942], [2.286986085338025, 48.835826106909465], [2.287177802631136, 48.83585564554458], [2.2873653032739583, 48.83588450400353], [2.287552805486802, 48.835913362176], [2.28774452205966, 48.835942899892345], [2.28774726548677, 48.835943132078484], [2.287965049279804, 48.83594662589093], [2.288204207761144, 48.83595072137651], [2.288217740427088, 48.83593945180587], [2.288169683872618, 48.835818382569656], [2.288122356268238, 48.83569941947587], [2.288074300156599, 48.83557835017536], [2.288026972975654, 48.83545938791761], [2.287978917319021, 48.83533831765349], [2.287931589211392, 48.835219355324384], [2.287883535347689, 48.835098285903385], [2.287836207687854, 48.83497932261169], [2.287788154266956, 48.834858253126384], [2.2877408270305413, 48.83473929067077], [2.28769277405234, 48.83461822112119], [2.287645447263813, 48.83449925770299], [2.287644145885794, 48.83448891343162], [2.287645051697393, 48.83447357278485], [2.287636345121027, 48.834474050662486], [2.286453409311551, 48.8337738451725], [2.28645427923115, 48.83376672460587], [2.287998106664408, 48.833110915267575], [2.287993950291822, 48.83308687177814], [2.286704263988864, 48.83278118336464], [2.286701750231, 48.83278070609335], [2.280676725706215, 48.8319067851131], [2.28064706355691, 48.83190625595446], [2.280586701976954, 48.83191550544424], [2.280583704798476, 48.83192854458769], [2.280546134494349, 48.831946869166174]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 72, "roussel_fabien": 15.0, "nb_emargement": 1191.0, "nb_procuration": 54.0, "nb_vote_blanc": 13.0, "jadot_yannick": 69.0, "le_pen_marine": 97.0, "nb_exprime": 1178.0, "nb_vote_nul": 0.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1515.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1191, "quartier_bv": "57", "geo_point_2d": [48.83415106413827, 2.284652018810453], "melenchon_jean_luc": 292.0, "poutou_philippe": 8.0, "macron_emmanuel": 410.0}, "geometry": {"type": "Point", "coordinates": [2.284652018810453, 48.83415106413827]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "040f9c4c0cc3a48ff411972329f6334734936233", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 67, "zemmour_eric": 77.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "1-1", "geo_shape": {"coordinates": [[[2.3448412091084, 48.859619601577386], [2.34484947858354, 48.85961688494846], [2.344887730205908, 48.859604521453186], [2.345069334483493, 48.859545581039875], [2.34524677755403, 48.85948823011625], [2.345428379668559, 48.85942928824512], [2.345605821947713, 48.85937193678313], [2.345787423239423, 48.85931299526028], [2.345964864738587, 48.859255642360594], [2.346146465218772, 48.85919670028673], [2.346323907278291, 48.85913934775536], [2.346505506946953, 48.85908040513047], [2.346682946863636, 48.85902305115403], [2.34686454572077, 48.858964107978125], [2.347041984834787, 48.858906754362614], [2.347223582891662, 48.85884780973638], [2.347401021214386, 48.85879045558248], [2.347582618448462, 48.85873151130455], [2.347760057342814, 48.858674156619706], [2.347941653776612, 48.85861521089149], [2.348119090516853, 48.858557855660834], [2.348200138179429, 48.85853067900081], [2.348175855273241, 48.858491786547944], [2.348134711548397, 48.85841766103845], [2.348075281145928, 48.85830473505125], [2.348005109282269, 48.85817831330507], [2.3479456807966033, 48.85806538723651], [2.347875509569753, 48.85793896538704], [2.347816080275078, 48.857826039222395], [2.3477566526121603, 48.85771311212488], [2.347686482318393, 48.85758669012444], [2.347627053835207, 48.85747376383008], [2.347556885541114, 48.857347341733835], [2.347552799581508, 48.85734351879851], [2.347427726299741, 48.85727490790685], [2.347286940740113, 48.857205034824254], [2.347161866777979, 48.857136423638714], [2.347021083323208, 48.857066549342754], [2.347016745825538, 48.857062900388755], [2.347007180896932, 48.85705342209308], [2.346924874298133, 48.8569265088345], [2.346842451024499, 48.85679219140408], [2.34680123388875, 48.85672863678201], [2.34680498857657, 48.85670701797934], [2.346763606144749, 48.85667231093877], [2.346722516234177, 48.856608951236204], [2.346647691763021, 48.85649380702258], [2.346565386923829, 48.85636689345274], [2.346490563158789, 48.856251748216515], [2.346408257721723, 48.85612483450353], [2.346333436014362, 48.85600968915137], [2.346251131342471, 48.85588277530261], [2.346176308967086, 48.85576762981968], [2.346094006422995, 48.85564071584266], [2.346019184731135, 48.85552557113568], [2.345936881589361, 48.85539865701546], [2.34586206196642, 48.85528351129331], [2.345860828189053, 48.855282019717116], [2.34574394957587, 48.85516788238382], [2.345624921077256, 48.85505318276072], [2.345508043505415, 48.854939044274246], [2.345389016048834, 48.85482434439284], [2.345272139495737, 48.854710206551744], [2.345153113092375, 48.85459550551278], [2.3450362375693032, 48.85448136741774], [2.344917212208057, 48.85436666612052], [2.344800337715001, 48.85425252777155], [2.344681313395757, 48.85413782621606], [2.344613829830763, 48.85405871188011], [2.344607032766805, 48.85405798934285], [2.344596464246878, 48.85405686572072], [2.344500057373998, 48.85409991221891], [2.344336229898618, 48.854179515792055], [2.344159805559884, 48.85426155749312], [2.343995975693783, 48.85434116058134], [2.343819550272026, 48.854423201768775], [2.3436557193777903, 48.85450280437963], [2.343479292873007, 48.854584845053466], [2.34331546231365, 48.85466444719431], [2.343139034725837, 48.854746487354525], [2.342975201775532, 48.85482608901046], [2.342860754145458, 48.854879306628035], [2.34284116507217, 48.85489035192852], [2.342837865096618, 48.854893519314864], [2.342775884026278, 48.854922341331736], [2.342667547014384, 48.85498497078178], [2.342665650621814, 48.85498631568959], [2.342549849511844, 48.8550877722787], [2.342426332392521, 48.855195724644396], [2.342310528988349, 48.85529718097535], [2.342187012250985, 48.85540513218186], [2.3420712079154278, 48.85550658826205], [2.341947688823008, 48.85561453919375], [2.34183188491889, 48.85571599503064], [2.341708364834235, 48.85582394569495], [2.341592559998718, 48.85592540128113], [2.341469038921717, 48.85603335167803], [2.341353233143524, 48.856134807912774], [2.341229711074266, 48.85624275804227], [2.3411139030131682, 48.85634421311948], [2.340990381314501, 48.856452162989086], [2.34087457232197, 48.85655361781553], [2.340872386140112, 48.85655512927624], [2.340722503501178, 48.85663782823184], [2.340570832444011, 48.8567208319139], [2.340420947486936, 48.85680353047193], [2.340269275467139, 48.85688653375938], [2.340119390917546, 48.85696923193489], [2.339967716572143, 48.857052234820216], [2.339817831067366, 48.85713493260567], [2.339666157133392, 48.857217934204634], [2.339516269310447, 48.85730063159248], [2.339364594402435, 48.8573836336961], [2.339214706987074, 48.85746633070142], [2.339063029753328, 48.85754933240292], [2.3389131413826663, 48.85763202901816], [2.338761464549051, 48.85771503033258], [2.338611573860294, 48.85779772655022], [2.3384598960639202, 48.85788072746999], [2.338310005782644, 48.857963423305094], [2.338158325660609, 48.85804642382269], [2.338008434424017, 48.858129119267716], [2.337856754702214, 48.858212119398225], [2.337706861158831, 48.85829481354632], [2.337555180474156, 48.85837781328218], [2.337550574350945, 48.85837946957017], [2.337356745271781, 48.858419741379436], [2.337146304579766, 48.858473027104516], [2.336952474828641, 48.858513299154886], [2.336742033345302, 48.85856658416452], [2.336649667583667, 48.858585775168876], [2.336612248133077, 48.85858599312783], [2.336582869585918, 48.85860424986857], [2.336481404872802, 48.858625330199345], [2.336283055639714, 48.85866689275642], [2.33608922451161, 48.85870716250223], [2.335890873279772, 48.858748725297936], [2.335697041544121, 48.85878899440557], [2.335498691062293, 48.8588305556564], [2.335304858707633, 48.858870825025114], [2.335106506238525, 48.85891238561532], [2.334912673287805, 48.85895265344654], [2.334714321557266, 48.85899421339119], [2.334520487987537, 48.85903448148351], [2.3343221356326502, 48.85907604077506], [2.334128301466889, 48.859116307329884], [2.333929947113242, 48.859157866860016], [2.333736112339967, 48.85919813277661], [2.333537758736409, 48.859239690761946], [2.333343923344024, 48.859279956939616], [2.33314556775331, 48.8593215142642], [2.332951731764932, 48.85936177890443], [2.332891605787661, 48.859364947609], [2.332881721662318, 48.85937204864209], [2.332692634189002, 48.8594213436341], [2.332505386829088, 48.85946911699672], [2.332316298647432, 48.85951841138977], [2.332129049230659, 48.8595661841518], [2.3319399603407662, 48.859615477945894], [2.331752710229972, 48.85966325011488], [2.331563620631746, 48.85971254331], [2.331376371189979, 48.85976031489357], [2.331187280883425, 48.85980960748977], [2.331000029384907, 48.85985737847268], [2.330810938369929, 48.85990667046987], [2.330623686177505, 48.85995444085974], [2.330434595817156, 48.86000373226563], [2.3302473429308312, 48.86005150206247], [2.330058250499321, 48.86010079286175], [2.329870996918999, 48.860148562065504], [2.329869087732605, 48.86014916563079], [2.329699576583317, 48.86021015903866], [2.329544910585305, 48.86026918485755], [2.329390245599801, 48.8603282104811], [2.329220731932881, 48.860389204092485], [2.329066066223824, 48.860448229290675], [2.328896551786899, 48.86050922243627], [2.328741883991328, 48.860568247201456], [2.328572370158951, 48.860629238989645], [2.328417701639828, 48.860688263329436], [2.328248187025865, 48.86074925555113], [2.328069155739024, 48.86080999714023], [2.327899638957982, 48.860870988853854], [2.327720606846474, 48.86093172991488], [2.327551090624294, 48.86099272113577], [2.327372057688221, 48.86105346166869], [2.327202539298858, 48.86111445238151], [2.327023505538118, 48.86117519238632], [2.326853986344747, 48.86123618259874], [2.32667495175924, 48.86129692207544], [2.326505433124744, 48.861357911795096], [2.326326397714575, 48.861418650743715], [2.32615687692462, 48.861479639055965], [2.326155925570813, 48.86147995027027], [2.326088552978284, 48.86149927205115], [2.326084514797459, 48.861503758650386], [2.325898905145302, 48.86155864024387], [2.325715702890899, 48.86161431664795], [2.325530093830893, 48.861669196772354], [2.325346890793596, 48.86172487260631], [2.325161280939579, 48.86177975305254], [2.324978077119389, 48.86183542831636], [2.324792465120107, 48.861890308177394], [2.324609260516924, 48.86194598287106], [2.324423649098271, 48.86200086216233], [2.324240443712199, 48.862056536285856], [2.324054830159848, 48.86211141409265], [2.3238716239909962, 48.86216708764604], [2.32368601100752, 48.8622219657823], [2.323502804055787, 48.86227763876552], [2.323317190289954, 48.86233251632434], [2.323133982555342, 48.862388188737384], [2.32294836665583, 48.86244306481168], [2.322765158138345, 48.86249873665457], [2.32257954280791, 48.862553613058346], [2.3223963335074522, 48.86260928433112], [2.322210716031651, 48.86266416014967], [2.322027505948423, 48.86271983085226], [2.3218418890649, 48.86277470520175], [2.321658678198808, 48.86283037533415], [2.321473060521241, 48.862885250005384], [2.321289848872285, 48.8629409195676], [2.321104229049353, 48.86299579365364], [2.320921016617536, 48.863051462645686], [2.320897579145885, 48.863075951128465], [2.320937853722636, 48.86311577349289], [2.321030423256002, 48.86323513865995], [2.32111969721071, 48.863350947008115], [2.321208971562213, 48.863466755277585], [2.321301543715164, 48.86358611930558], [2.321390817510951, 48.86370192740711], [2.321483390486713, 48.86382129216832], [2.321572666452778, 48.86393710011732], [2.321665238911738, 48.86405646380559], [2.321754515685044, 48.86417227159434], [2.321847088978542, 48.86429163511656], [2.321936366559, 48.86440744274509], [2.322028942038512, 48.864526807008325], [2.322118220426236, 48.86464261447659], [2.322210795388846, 48.86476197766679], [2.322300074583946, 48.86487778497481], [2.322392650369428, 48.8649971488983], [2.32248193037181, 48.86511295604605], [2.322574508366656, 48.86523231891194], [2.322663789176233, 48.86534812589943], [2.322756366630997, 48.86546748949088], [2.322845648247877, 48.865583296318114], [2.322938226548935, 48.86570265884422], [2.323027508973127, 48.865818465511204], [2.323120089471796, 48.86593782787898], [2.323209372703416, 48.866053634385686], [2.323301952661925, 48.866172997479005], [2.323298353092091, 48.86618323506923], [2.323351068952727, 48.866223947931665], [2.323443649550256, 48.86634330999771], [2.323533301993854, 48.866465750076145], [2.323566356910999, 48.86649030017954], [2.3236167824215572, 48.866482142103], [2.323796132081183, 48.866424826659426], [2.3239736220084293, 48.86636750673733], [2.324152970880886, 48.866310190753076], [2.32433046001326, 48.86625287119513], [2.324509808098346, 48.86619555467025], [2.324687297822285, 48.86613823368562], [2.324866645120097, 48.86608091662009], [2.3250441326860622, 48.86602359599195], [2.3252234791967012, 48.865966278385784], [2.325400965991107, 48.86590895632325], [2.325580311714366, 48.86585163817645], [2.3257577977139148, 48.86579431647816], [2.325937142649998, 48.86573699779073], [2.326114627877972, 48.865679674657976], [2.326293972026671, 48.865622355429906], [2.32647145782289, 48.865565032669096], [2.326650801184306, 48.86550771290039], [2.326828284834217, 48.8654503895968], [2.327007627420068, 48.865393068388215], [2.3271851102867602, 48.86533574454953], [2.327364452073603, 48.8652784236996], [2.327541934157078, 48.86522109932589], [2.327719417224649, 48.86516377379434], [2.327898756468591, 48.865106452127215], [2.328076238741229, 48.86504912695993], [2.328255578560961, 48.864991804759846], [2.328433058698989, 48.86493447815053], [2.328612397731323, 48.864877155409864], [2.328789877074529, 48.86481982916474], [2.32896921531967, 48.864762505883455], [2.329146693891231, 48.864705178204034], [2.329326031348969, 48.864647854382135], [2.329503510488784, 48.864590527074554], [2.329682845796154, 48.86453320270444], [2.329860324164304, 48.86447587396253], [2.330039660047538, 48.864418549059465], [2.330078801594294, 48.86440590570409], [2.330081351003498, 48.86440566725811], [2.330114948316673, 48.864391459469985], [2.33025328291083, 48.86434677439771], [2.330447123206025, 48.86428275436982], [2.330624598505309, 48.86422542537329], [2.330818439255746, 48.864161404744614], [2.330995913733023, 48.864104075191186], [2.331189753575639, 48.86404005395409], [2.331301394649994, 48.864003989823686], [2.331349871743551, 48.863993674460204], [2.331358178416079, 48.863985408203604], [2.33142400958728, 48.86396414218448], [2.33160641501697, 48.86390539132019], [2.331783889118027, 48.86384806059265], [2.33196629373544, 48.863789309173676], [2.332143765682073, 48.86373197789887], [2.332326169487207, 48.86367322592529], [2.332503640642261, 48.8636158941108], [2.332686043623595, 48.863557142481895], [2.332863513998689, 48.86349980922847], [2.333040985334695, 48.863442476615774], [2.33322338710288, 48.86338372415869], [2.333400856295873, 48.863326390099495], [2.333583257251778, 48.86326763708781], [2.33376072564188, 48.86321030338825], [2.333943125797004, 48.86315154892264], [2.334120593395518, 48.86309421468346], [2.33430299410138, 48.86303545967083], [2.334480460908404, 48.862978124891995], [2.334662859438943, 48.862919369317176], [2.334840325454478, 48.862862033998695], [2.335022723161242, 48.86280327876856], [2.33508902766346, 48.86278185687093], [2.335097130579169, 48.86278180386074], [2.335118607922728, 48.86277707210146], [2.335229769988449, 48.86274115722163], [2.335408028029057, 48.86268307810041], [2.335585492419712, 48.86262574166477], [2.335763749668856, 48.86256766200768], [2.335941213274776, 48.86251032503855], [2.336119469732556, 48.862452244845564], [2.336296932553839, 48.862394907343024], [2.336475189583061, 48.86233682662173], [2.336652651619704, 48.86227948858574], [2.336830906494546, 48.86222140732102], [2.33700836774655, 48.86216406875157], [2.33718662182992, 48.862105986950965], [2.337364082297281, 48.86204864784809], [2.337542335589077, 48.861990565511626], [2.337719796634793, 48.86193322588289], [2.337898049135214, 48.861875143010565], [2.338075508033282, 48.861817802840825], [2.338253759742125, 48.86175971943261], [2.338431217855544, 48.861702378729504], [2.338609468773008, 48.86164429478546], [2.338786926101779, 48.86158695354888], [2.3389651762277612, 48.861528869068984], [2.339059986924497, 48.86149823300763], [2.339106613320092, 48.86149467457424], [2.339129062266617, 48.86147323666688], [2.339211709401928, 48.861446530917505], [2.339386838251102, 48.86138889803286], [2.339564293865874, 48.8613315547311], [2.339739421938532, 48.86127392132457], [2.339916876762117, 48.86121657839334], [2.340092004069753, 48.86115894356559], [2.340269458113652, 48.86110160010563], [2.340444584644763, 48.861043964755915], [2.340622037908973, 48.86098662076722], [2.340797163652177, 48.86092898579487], [2.340974616148074, 48.86087164037811], [2.341149741114755, 48.86081400488388], [2.341327194182453, 48.86075665984519], [2.341502318383978, 48.860699022929715], [2.341679769309111, 48.860641677354764], [2.341854892734103, 48.860584039917384], [2.34203234287954, 48.86052669381371], [2.3422074655166423, 48.86046905675373], [2.342384914893736, 48.86041170922199], [2.342560036754308, 48.86035407164012], [2.342737485340349, 48.86029672447897], [2.342912606435632, 48.86023908547589], [2.343090054242074, 48.860181737785986], [2.343265174560817, 48.86012409826101], [2.343442622950403, 48.8600667500499], [2.3436177424813742, 48.860009110902325], [2.343795188739632, 48.85995176125572], [2.343970307494065, 48.85989412158621], [2.344147752961288, 48.85983677231019], [2.344322870950503, 48.85977913121953], [2.344500315638016, 48.85972178141477], [2.344675432850581, 48.85966413980225], [2.344814625126181, 48.85961915295284], [2.3448412091084, 48.859619601577386]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 1, "roussel_fabien": 7.0, "nb_emargement": 851.0, "nb_procuration": 47.0, "nb_vote_blanc": 9.0, "jadot_yannick": 91.0, "le_pen_marine": 56.0, "nb_exprime": 835.0, "nb_vote_nul": 7.0, "arr_bv": "01", "arthaud_nathalie": 1, "nb_inscrit": 1082.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 851, "quartier_bv": "01", "geo_point_2d": [48.860657643316806, 2.3349071599647497], "melenchon_jean_luc": 189.0, "poutou_philippe": 1.0, "macron_emmanuel": 322.0}, "geometry": {"type": "Point", "coordinates": [2.3349071599647497, 48.860657643316806]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5c3b4199aba2266c8d60ecc285b575e166e8dfa7", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 28, "zemmour_eric": 51.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-17", "geo_shape": {"coordinates": [[[2.351720451042658, 48.89148026062957], [2.351716236475269, 48.891461772017735], [2.35168945868885, 48.89141062644663], [2.351657146803099, 48.89128289603953], [2.35162993792989, 48.89116310098651], [2.351615429020121, 48.891105746337416], [2.351620488600371, 48.89108243809732], [2.351609433839987, 48.891071447865535], [2.351591629819688, 48.891001072052205], [2.351552111257524, 48.89085302909708], [2.351519798690968, 48.890725298580634], [2.351480280542439, 48.89057725556461], [2.351447968323228, 48.890449524996654], [2.35144785057815, 48.89044715284246], [2.351467238108304, 48.890318973816626], [2.351484794586446, 48.890189757828516], [2.351504183304756, 48.890061577874775], [2.351521739604325, 48.88993236185097], [2.351541126760914, 48.88980418275301], [2.351558682882122, 48.88967496669348], [2.351578071226856, 48.889546786667644], [2.351595627169498, 48.88941757057236], [2.35161501395253, 48.88928939140236], [2.351632571080427, 48.88916017527878], [2.351632611861062, 48.88915898119643], [2.351620378455732, 48.88902889148101], [2.351611699373821, 48.888897466611965], [2.35159946472967, 48.888767375956775], [2.351590785744235, 48.888635951054916], [2.351578552566278, 48.88850586127329], [2.351569873688308, 48.88837443543933], [2.35156914027127, 48.88837189357145], [2.351554030749232, 48.888343014448914], [2.351532672877681, 48.8882982256931], [2.351536947790044, 48.888279538379365], [2.351516903817853, 48.88826197122121], [2.3514811271943072, 48.888186944582024], [2.35141665440397, 48.88804579695814], [2.351359520503558, 48.887925981472314], [2.351295048377064, 48.887784832850166], [2.35123791503159, 48.887665018177145], [2.351173443557933, 48.887523869456], [2.351116310789694, 48.88740405379716], [2.351116027202542, 48.88740350097342], [2.351058894698481, 48.88728368527405], [2.350993447686505, 48.887168144829786], [2.350975261536089, 48.88713604102521], [2.35097398503259, 48.88713549810737], [2.350911962010172, 48.88715118699248], [2.350769286611686, 48.88720591538966], [2.350628207802372, 48.8872615219232], [2.350485531814666, 48.88731624907748], [2.350344452392195, 48.887371856170404], [2.350201775803856, 48.88742658298108], [2.3500606957907673, 48.8874821888348], [2.35005378073296, 48.88748346251665], [2.349822292381807, 48.88748436232252], [2.349570586173517, 48.88748966107725], [2.349557385822585, 48.887498561048425], [2.349555424580925, 48.88763122169322], [2.3495540143209013, 48.88776213252865], [2.349552053071857, 48.88789479224229], [2.349550642796218, 48.888025703046246], [2.349548681517423, 48.88815836362726], [2.349547272589862, 48.88828927440718], [2.349545311303788, 48.88842193405701], [2.349543900996922, 48.88855284479806], [2.349541939681199, 48.88868550531528], [2.349540529358617, 48.88881641602488], [2.34953856803561, 48.888949075610924], [2.3495371576974122, 48.88907998628903], [2.349535197708369, 48.88921264674982], [2.349533787354559, 48.88934355739651], [2.349524377639228, 48.88936655777138], [2.34954163759926, 48.88937945252069], [2.349541187009066, 48.889421308241694], [2.349519317696331, 48.88944900195543], [2.349535035398739, 48.889462538538176], [2.349534075624282, 48.88955159433986], [2.349532981055475, 48.88969041352226], [2.349531570671918, 48.889821325011184], [2.349530474715793, 48.88996014505125], [2.349529065693601, 48.890091055616146], [2.349527969725121, 48.890229875622076], [2.349526559325587, 48.890360786147326], [2.349525464708496, 48.89049960612656], [2.349524054295358, 48.890630516619574], [2.349522958302161, 48.89076933655726], [2.34952154922794, 48.890900247924755], [2.3495204532336222, 48.891039066929025], [2.349519042782036, 48.891169978256876], [2.349517948127894, 48.89130879813366], [2.349516537673937, 48.89143970853004], [2.349507579101044, 48.891463356127076], [2.34951732909484, 48.891471663077944], [2.349534372733125, 48.891566339255675], [2.34955308314672, 48.891656313823134], [2.349570126910461, 48.89175098997976], [2.349588838804844, 48.89184096543316], [2.349604394674832, 48.89186118396104], [2.349631819653704, 48.891861464215836], [2.349837141779008, 48.891824715003274], [2.350037843339123, 48.89178902134539], [2.350243163528301, 48.89175227142684], [2.350443864530833, 48.891716577086086], [2.350649184147865, 48.89167982646893], [2.350849884592805, 48.89164413144534], [2.351050584751356, 48.89160843698343], [2.35125590352492, 48.89157168442317], [2.351456603125874, 48.89153598927845], [2.351661921327163, 48.89149923601956], [2.351720451042658, 48.89148026062957]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 17, "roussel_fabien": 26.0, "nb_emargement": 1374.0, "nb_procuration": 102.0, "nb_vote_blanc": 14.0, "jadot_yannick": 139.0, "le_pen_marine": 49.0, "nb_exprime": 1357.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1870.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1376, "quartier_bv": "70", "geo_point_2d": [48.88958328770067, 2.3505246940863307], "melenchon_jean_luc": 705.0, "poutou_philippe": 9.0, "macron_emmanuel": 285.0}, "geometry": {"type": "Point", "coordinates": [2.3505246940863307, 48.88958328770067]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b1a714cbba202a807be2a42168060620949013fe", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 65, "zemmour_eric": 73.0, "hidalgo_anne": 42.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-40", "geo_shape": {"coordinates": [[[2.350719176343325, 48.82601140193585], [2.35074437154364, 48.8260175393618], [2.350878410353802, 48.82604131350308], [2.351006789665786, 48.82606355212377], [2.351010008672653, 48.82606385739318], [2.351194921175478, 48.82606668647779], [2.351380897872602, 48.82606926832365], [2.351565810414741, 48.826072096834764], [2.351751787149427, 48.826074678103865], [2.351936699730872, 48.8260775060415], [2.352122676503313, 48.82608008673379], [2.352307589124054, 48.82608291409791], [2.352493565934042, 48.82608549421349], [2.352678478594072, 48.82608832100409], [2.352864455441697, 48.82609090054287], [2.35304936814111, 48.82609372676002], [2.353235345026366, 48.82609630572197], [2.35342025776495, 48.82609913136566], [2.353606234687827, 48.826101709750844], [2.353614754308011, 48.826103839653605], [2.353713724347749, 48.82615921038113], [2.353822511566373, 48.826213148300404], [2.35383348950501, 48.82621475814061], [2.353965809970108, 48.82619641795741], [2.354100220843444, 48.82618019705448], [2.354232541126898, 48.82616185657556], [2.354366951828145, 48.82614563537235], [2.354377710450346, 48.826147356400604], [2.354534769093226, 48.82622719905238], [2.354689355930396, 48.82630605142999], [2.3548464155286, 48.826385893661204], [2.355001003307652, 48.826464745624826], [2.355155592905159, 48.82654359828974], [2.355312653933077, 48.82662343989171], [2.355467243121522, 48.826702291235996], [2.355624305104671, 48.826782132417364], [2.355778895223996, 48.82686098424695], [2.355935958173593, 48.826940824108455], [2.356090549234819, 48.827019675524014], [2.356247613128645, 48.827099515864234], [2.356402205142878, 48.82717836596649], [2.356559269992049, 48.82725820588612], [2.356564549534041, 48.8272659482259], [2.356560585275219, 48.827302730196095], [2.356555500796681, 48.82735158383582], [2.356545897165969, 48.827368940453916], [2.356568800475023, 48.827379990179814], [2.3567160007957693, 48.82741891912829], [2.3568459064301, 48.82744808661217], [2.356912703157349, 48.82745271874722], [2.356918934318606, 48.827425172943556], [2.356948681354495, 48.82732854134006], [2.356991603988042, 48.827198264816175], [2.357032061428866, 48.827066840897785], [2.357074983638609, 48.82693656431358], [2.3571154392929943, 48.82680514122834], [2.357158362452112, 48.82667486369183], [2.357198817693249, 48.82654344054771], [2.357241739066492, 48.82641316294359], [2.35728219525646, 48.826281739747955], [2.357315882793068, 48.82617948825832], [2.35732067418349, 48.82616484070128], [2.357318788164764, 48.82616059810589], [2.357328021572805, 48.8261325719304], [2.357339951767179, 48.82609340349579], [2.357334484481601, 48.826086968764216], [2.3572740398121113, 48.826094042182014], [2.357142398100902, 48.826084409203986], [2.3569828883932082, 48.82607390673989], [2.356970636118394, 48.82606451074029], [2.356972884034125, 48.82603465996873], [2.356977355966141, 48.826005057690594], [2.356965031662631, 48.82599520801726], [2.356761445360441, 48.825983027444764], [2.356558632501506, 48.82597054310013], [2.3563550464016823, 48.82595836093621], [2.356152235086973, 48.82594587680876], [2.355948649178428, 48.82593369395274], [2.355745836694929, 48.82592120912849], [2.355542250977677, 48.82590902558035], [2.355339440049518, 48.82589654007394], [2.355135854523569, 48.82588435583372], [2.354933043799829, 48.82587186873855], [2.3547294584540612, 48.825859684705556], [2.354526646561572, 48.82584719691355], [2.354323061407121, 48.82583501218844], [2.35412025107001, 48.8258225237143], [2.354107914052158, 48.82581308738598], [2.35411965632046, 48.82566866157856], [2.354130492598489, 48.82553249162737], [2.354141330170823, 48.825396322565325], [2.354153072252593, 48.825251896701], [2.354159199013846, 48.82524486069218], [2.354347977915066, 48.825163043015486], [2.354537020202437, 48.82508135686923], [2.354725799269649, 48.824999539490854], [2.354914840372235, 48.82491785273538], [2.355103616892506, 48.82483603474136], [2.355292658172341, 48.82475434738415], [2.355298792351003, 48.824746253688176], [2.355289849343207, 48.82465291314306], [2.355280473855569, 48.82456194461211], [2.355271530923201, 48.82446860315096], [2.355262156862787, 48.82437763461105], [2.355263211812071, 48.824373503165326], [2.355313257775745, 48.824295834776436], [2.35536246277937, 48.824217648284495], [2.355363302367977, 48.824212646878294], [2.355341922104383, 48.824131979822035], [2.355321469403687, 48.82405484421387], [2.355321287979576, 48.8240527728698], [2.355332819979924, 48.82392130293081], [2.355344138717977, 48.82379055222719], [2.355355670602606, 48.82365908225531], [2.355366987864432, 48.82352833151165], [2.355366832334494, 48.823526369130924], [2.35534533912904, 48.82343943635148], [2.355304379307385, 48.8232711083616], [2.355282886322404, 48.823184174651885], [2.355275506287378, 48.82317231164219], [2.355259999488818, 48.823171082228896], [2.355162497931566, 48.82318672640985], [2.355080067867511, 48.82320024742002], [2.35507542507411, 48.82320164159886], [2.35492612645918, 48.8232712773784], [2.354775837998135, 48.823340960691795], [2.354626537210923, 48.823410596980644], [2.354476247948004, 48.82348027990888], [2.354326947734862, 48.82354991492307], [2.354176657669868, 48.823619597466184], [2.354171658781862, 48.82362103465548], [2.353997340265355, 48.82364529544619], [2.353813331863359, 48.823671091023854], [2.35380173036709, 48.82366917291668], [2.353653887841394, 48.82358682555325], [2.353489809865251, 48.82349558801465], [2.353482023176491, 48.82348458430088], [2.353459032662457, 48.82348526044732], [2.353325681639273, 48.82349882690356], [2.353175758438093, 48.82351358878388], [2.353161558444529, 48.82351966371846], [2.353164006454203, 48.82353401573893], [2.353171107379731, 48.823669788223135], [2.353178242052341, 48.82381228551828], [2.353173344506634, 48.823819493619915], [2.353004262831312, 48.82391261964031], [2.35282027911868, 48.82401377895157], [2.3528191714546463, 48.82401446098063], [2.352673981270248, 48.82411445935266], [2.352533344020739, 48.824211492663835], [2.352388152739468, 48.8243114906713], [2.352247514437715, 48.82440852273001], [2.352106875601314, 48.824505555514214], [2.3519616826832133, 48.82460555297772], [2.351821041432536, 48.82470258450208], [2.351675847417539, 48.82480258160101], [2.351535206454272, 48.82489961367887], [2.35139001134237, 48.824999610413215], [2.351385868015089, 48.82501393749564], [2.351401444424198, 48.82502220001063], [2.351437015459263, 48.82502638976196], [2.351482801149145, 48.825032861753996], [2.351490140456112, 48.82504762255204], [2.351356213024497, 48.825147334977736], [2.35122151750351, 48.825243710890405], [2.351087589065752, 48.825343422098584], [2.350952892541625, 48.825439797691864], [2.350818961713075, 48.82553950947372], [2.350684264196998, 48.82563588384827], [2.350682092211004, 48.825646007126075], [2.350687485360559, 48.82566379369331], [2.350713701620918, 48.82569839743263], [2.350724844878063, 48.82570334154581], [2.3509202589333063, 48.825713212633836], [2.351116797553431, 48.82572346184564], [2.35131221175819, 48.82573333229301], [2.351508750520019, 48.82574358175983], [2.351704164874492, 48.82575345156656], [2.351900703800292, 48.82576369948972], [2.352096119666319, 48.82577356866317], [2.352292658733921, 48.825783816841316], [2.352488073398754, 48.82579368446743], [2.352684612619126, 48.825803932001286], [2.352696821975076, 48.82581090349686], [2.352715900327156, 48.82586737244868], [2.352745607886166, 48.82595364667844], [2.352731708630309, 48.825964624778464], [2.352532859784254, 48.82595867103365], [2.352335384554105, 48.825952782856625], [2.352136537160539, 48.82594682846015], [2.351939062020009, 48.82594093962862], [2.351740213354818, 48.82593498456577], [2.351542738304018, 48.82592909507973], [2.351343889729274, 48.825923139357776], [2.351146414768012, 48.82591724921726], [2.350947567645785, 48.82591129284368], [2.350750092774172, 48.82590540204863], [2.350735976660728, 48.825913197649086], [2.350725887866895, 48.825963142784516], [2.350719298018483, 48.825994850481415], [2.350719176343325, 48.82601140193585]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 40, "roussel_fabien": 40.0, "nb_emargement": 1321.0, "nb_procuration": 70.0, "nb_vote_blanc": 20.0, "jadot_yannick": 120.0, "le_pen_marine": 70.0, "nb_exprime": 1290.0, "nb_vote_nul": 10.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1629.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1320, "quartier_bv": "51", "geo_point_2d": [48.82524386443187, 2.3540460841282242], "melenchon_jean_luc": 408.0, "poutou_philippe": 9.0, "macron_emmanuel": 441.0}, "geometry": {"type": "Point", "coordinates": [2.3540460841282242, 48.82524386443187]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5868703731405021c41fd3ceb771867fb450ecf9", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 155, "zemmour_eric": 203.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-10", "geo_shape": {"coordinates": [[[2.284745328173253, 48.85858649593771], [2.2847207592153618, 48.85858716480035], [2.284695640292305, 48.858589272937856], [2.284675663939403, 48.85862086572572], [2.28452720600371, 48.85870219913924], [2.284381521772442, 48.85878032296223], [2.284233062935589, 48.85886165509985], [2.2840873764545, 48.85893977854538], [2.283938916704234, 48.8590211103064], [2.283793230699045, 48.859099233390786], [2.283644770022899, 48.8591805656745], [2.283499083143159, 48.85925868749025], [2.283350621553487, 48.859340019397365], [2.283204933786837, 48.859418140843786], [2.283059244208093, 48.85949626299848], [2.282910781254758, 48.859577594342504], [2.282765092164392, 48.85965571523675], [2.282616628297522, 48.85973704620417], [2.282470938320234, 48.85981516672908], [2.282322473539821, 48.85989649731987], [2.2821767826632158, 48.85997461837473], [2.282028315618807, 48.86005594768143], [2.282023143098779, 48.86005771445934], [2.2818563371501153, 48.86008625108912], [2.281677160968247, 48.860117988686376], [2.281510354637112, 48.86014652483233], [2.281331178049612, 48.86017826101056], [2.281232075014115, 48.86019521493212], [2.281173159425829, 48.86021337248446], [2.281193053603965, 48.8602399986787], [2.281373718950404, 48.8603019403893], [2.281542351777952, 48.86036052333925], [2.281723017957598, 48.86042246451577], [2.281891652930852, 48.86048104697537], [2.282072318580752, 48.86054298760965], [2.282240954336965, 48.860601569570626], [2.282421622183024, 48.86066350967902], [2.282590258721993, 48.86072209114145], [2.282770926038296, 48.86078403070763], [2.282939563372598, 48.86084261077218], [2.283120232872688, 48.860904550711744], [2.283288870989737, 48.860963130277725], [2.283469539960068, 48.86102506967499], [2.2836381788600653, 48.86108364874237], [2.283818850026568, 48.861145587613784], [2.283998909444013, 48.86120813320777], [2.284179581483514, 48.86127007062833], [2.284359641764233, 48.86133261567254], [2.284540314651811, 48.861394553440846], [2.284720377158888, 48.86145709794344], [2.284901049556367, 48.861519034252765], [2.28508111291438, 48.86158157910484], [2.28526178753537, 48.861643514870764], [2.285441850406015, 48.86170605826564], [2.285622525887529, 48.86176799347997], [2.285802589609017, 48.861830537224364], [2.285983265951157, 48.861892471887174], [2.286163330548245, 48.86195501418247], [2.286344007738487, 48.86201694919299], [2.286524074561943, 48.86207949094662], [2.286527131185685, 48.862080940939826], [2.286678988625768, 48.8621788791908], [2.2868339738767363, 48.86227639609271], [2.286985832451045, 48.86237433483636], [2.287140817494903, 48.8624718513156], [2.287292677228064, 48.86256978875331], [2.287447663427613, 48.862667304817975], [2.287497166014852, 48.86271402952323], [2.287546366913534, 48.86270098863459], [2.287609563295103, 48.86266069341657], [2.287752333193094, 48.86256845120423], [2.287876258316734, 48.86248943408393], [2.288019028636116, 48.8623971915473], [2.288142952947892, 48.86231817413867], [2.28817834667097, 48.86232607592934], [2.288164464881774, 48.86230602952657], [2.288185613161493, 48.862292366438716], [2.288307234188379, 48.86221378663085], [2.288449454780571, 48.862124356171684], [2.288592221721645, 48.86203211291277], [2.2887344413409823, 48.861942681201036], [2.288877208642724, 48.86185043759514], [2.289019425913938, 48.861761005521956], [2.289162192213158, 48.86166876156098], [2.289304409850068, 48.86157933004186], [2.289447175146873, 48.86148708572578], [2.2895893904478513, 48.86139765294594], [2.28973215474225, 48.86130540827479], [2.289874370421194, 48.86121597514978], [2.289907378035339, 48.861193794194264], [2.289864075429081, 48.86113886014461], [2.289735653819851, 48.86104874903485], [2.28959705067488, 48.860955836107266], [2.289468629978626, 48.86086572469613], [2.289330027784388, 48.8607728123432], [2.289201608001203, 48.860682700630676], [2.28906300677005, 48.86058978795316], [2.288934587912102, 48.860499675039925], [2.288795987644032, 48.86040676203786], [2.288667569686664, 48.86031664972247], [2.288528970381668, 48.86022373639582], [2.288400553337349, 48.86013362377903], [2.288261953644761, 48.8600407092204], [2.288133537513386, 48.85995059630228], [2.287994940134522, 48.859857682326435], [2.287866524916082, 48.85976756910691], [2.287865871080387, 48.859767139821145], [2.287727274666882, 48.859674225519946], [2.287599516532144, 48.8595959334303], [2.287460921049068, 48.85950301880629], [2.287333163722089, 48.859424727319514], [2.287194569181838, 48.859331811473425], [2.28706681267491, 48.859253519690185], [2.286928217689752, 48.85916060441243], [2.286800463365788, 48.85908231234094], [2.286795539393042, 48.8590803790589], [2.286590259182854, 48.85903473536026], [2.286388889734586, 48.85898640846534], [2.286183610250783, 48.85894076406526], [2.285982241542892, 48.85889243648195], [2.28577696279791, 48.85884679048118], [2.285575594830405, 48.858798462209556], [2.2853703154366922, 48.85875281639852], [2.285168949572485, 48.858704487446644], [2.284963670905382, 48.858658840934204], [2.284762305781468, 48.85861051129397], [2.284745328173253, 48.85858649593771]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 10, "roussel_fabien": 15.0, "nb_emargement": 1136.0, "nb_procuration": 88.0, "nb_vote_blanc": 4.0, "jadot_yannick": 33.0, "le_pen_marine": 44.0, "nb_exprime": 1129.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1455.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "62", "geo_point_2d": [48.8605376519999, 2.285936253781969], "melenchon_jean_luc": 63.0, "poutou_philippe": 1.0, "macron_emmanuel": 592.0}, "geometry": {"type": "Point", "coordinates": [2.285936253781969, 48.8605376519999]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6c3a001b7666c61ce71ac88d498ff6ff4ea3378d", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 44, "zemmour_eric": 65.0, "hidalgo_anne": 46.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-38", "geo_shape": {"coordinates": [[[2.381022581296865, 48.86386147003907], [2.381035592485539, 48.863879347913254], [2.3810630436572042, 48.86395294728738], [2.381091448345031, 48.86403246116048], [2.381101028725144, 48.86403988890961], [2.381123118825883, 48.864036616217916], [2.381322222717449, 48.86399809075684], [2.381518327617511, 48.8639601250458], [2.381714433594807, 48.86392215901914], [2.38191353662243, 48.863883631671094], [2.382109642013105, 48.86384566589354], [2.382308744456015, 48.86380713788538], [2.382504849281397, 48.86376917055837], [2.382703951129029, 48.86373064278934], [2.382900054015393, 48.86369267480511], [2.383099155289157, 48.86365414547672], [2.383295258962497, 48.86361617684929], [2.383494359640981, 48.863577647760074], [2.383690462738442, 48.86353967848247], [2.383889562842826, 48.86350114783383], [2.384085665364295, 48.86346317790609], [2.384279887871644, 48.863426015487455], [2.38447598846288, 48.863388044910515], [2.384670211774742, 48.863350881862964], [2.38486631179858, 48.86331291064389], [2.385060534551902, 48.86327574696038], [2.385256634008436, 48.863237775099165], [2.385450854840272, 48.863200610772715], [2.385646955092535, 48.863162638276414], [2.385841175376319, 48.8631254724147], [2.38603727506126, 48.86308749927625], [2.38623149477598, 48.86305033367789], [2.386427593893594, 48.86301235989734], [2.386621813049646, 48.86297519366303], [2.386631044965513, 48.862969200092586], [2.386686382872667, 48.862850484441076], [2.386735680614811, 48.86273768065977], [2.386751016002119, 48.86271388618094], [2.386743428643895, 48.862708131976305], [2.38670615487518, 48.86269795736198], [2.3865227822292763, 48.862646512201536], [2.386348174955556, 48.862598852969136], [2.386164803011969, 48.86254740725564], [2.3859901977609, 48.86249974750368], [2.385815591466269, 48.862452087487945], [2.385632220565169, 48.862400640951584], [2.38545761629319, 48.862352980416325], [2.385274246094312, 48.862301533326864], [2.385272969713614, 48.862301232685304], [2.385144713689081, 48.862276065805084], [2.384937175380138, 48.862234780714495], [2.384808919681508, 48.862209613472906], [2.384601380550992, 48.86216832689118], [2.384436017446599, 48.86213642300244], [2.384228478903157, 48.86209513577134], [2.384063114896423, 48.862063231358206], [2.384060647303707, 48.86206257652664], [2.384050077362347, 48.86205894633415], [2.384045214507077, 48.86205797519597], [2.384042976547252, 48.86205738180194], [2.383871257943789, 48.86199933106549], [2.383699979386657, 48.861941792271764], [2.383528260183355, 48.86188374103009], [2.383356982385145, 48.86182620173954], [2.383185265308017, 48.86176815000663], [2.383013988268628, 48.86171061021919], [2.382842711618116, 48.86165306928434], [2.382670995674, 48.86159501770379], [2.382639240156498, 48.861584810913016], [2.382621709351214, 48.86159681755664], [2.382583894322654, 48.86164395046444], [2.382540276869632, 48.86170291307403], [2.382521758147193, 48.86170695360956], [2.382370959113389, 48.8616554056595], [2.382193999758305, 48.861595649953124], [2.382043201360289, 48.86154410248421], [2.381921006285863, 48.861502838164576], [2.381908024040154, 48.86150379996464], [2.381890362461885, 48.8615216470696], [2.381863682884668, 48.8616404763467], [2.381829680592413, 48.861781725306756], [2.381803000743607, 48.861900554542494], [2.381768999480001, 48.8620418034592], [2.381742319359605, 48.86216063265345], [2.381708316398729, 48.86230188151274], [2.381681636006735, 48.86242071066562], [2.381647634074613, 48.862561959481525], [2.38162095341102, 48.862680788592975], [2.381586949781707, 48.862822037351506], [2.381560268846508, 48.86294086642154], [2.381559563713296, 48.862942623691964], [2.381494399856311, 48.86305547108915], [2.381428962883405, 48.86317017327343], [2.381363797095867, 48.86328302056924], [2.381298359560282, 48.86339772175929], [2.38123319320532, 48.86351056896082], [2.381167755096373, 48.86362527005587], [2.381102589536829, 48.86373811717016], [2.38103715084383, 48.86385281906956], [2.381022581296865, 48.86386147003907]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 38, "roussel_fabien": 20.0, "nb_emargement": 1399.0, "nb_procuration": 71.0, "nb_vote_blanc": 17.0, "jadot_yannick": 155.0, "le_pen_marine": 69.0, "nb_exprime": 1377.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1746.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1399, "quartier_bv": "42", "geo_point_2d": [48.86279469017461, 2.3834170507172576], "melenchon_jean_luc": 488.0, "poutou_philippe": 9.0, "macron_emmanuel": 463.0}, "geometry": {"type": "Point", "coordinates": [2.3834170507172576, 48.86279469017461]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8b13b03dd950b569151031cc54ae8e71e701fdc7", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 90, "zemmour_eric": 101.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-95", "geo_shape": {"coordinates": [[[2.28151721178006, 48.84938027535259], [2.281555815918725, 48.849374438263055], [2.2817036372052852, 48.84928253753478], [2.281856534002938, 48.84918976142499], [2.28200435287267, 48.84909786030176], [2.282157248605507, 48.849005082893], [2.282305066408795, 48.848913182282274], [2.2824579610644298, 48.84882040447384], [2.282605777813472, 48.84872850347635], [2.282758671391909, 48.84863572526823], [2.282906488461829, 48.84854382299294], [2.283059379588061, 48.84845104527629], [2.28320719560394, 48.84835914261421], [2.283360087028003, 48.84826636360679], [2.2835079006146453, 48.84817446144905], [2.283660790961532, 48.84808168204197], [2.2838086034941583, 48.84798977949752], [2.283961492763776, 48.847896999690775], [2.284060997759063, 48.84783513158693], [2.284071881654429, 48.84780151190119], [2.284010083648527, 48.84778160607848], [2.283916953936266, 48.84766612333973], [2.283824811667785, 48.84755358375176], [2.283731681410949, 48.84743810083701], [2.283639539945621, 48.8473255610833], [2.283546410506822, 48.847210078000714], [2.283454269844839, 48.84709753808128], [2.283361141224068, 48.84698205483083], [2.283269001365219, 48.84686951474568], [2.2831758749250612, 48.84675403133554], [2.283083734506843, 48.84664149107655], [2.282990608884687, 48.846526007498525], [2.282898469269793, 48.846413467073845], [2.282887799820295, 48.84640879117075], [2.282682610854126, 48.84639563008272], [2.282478335480987, 48.84638084896634], [2.282273146728342, 48.84636768717571], [2.2820688729433503, 48.84635290536805], [2.28186368440414, 48.84633974287483], [2.281659409482341, 48.846324960359475], [2.281649205361278, 48.84632064148917], [2.281640687424567, 48.84631252572457], [2.281617514244779, 48.84629045013152], [2.281571528949508, 48.84623978249013], [2.2815733914200482, 48.84622893112577], [2.28171776545922, 48.846129734496955], [2.281842028211255, 48.84604283721794], [2.281966290536511, 48.84595594070237], [2.282110664434059, 48.84585674358327], [2.282234925867687, 48.84576984677419], [2.282379298738389, 48.84567064931441], [2.282380711172287, 48.84566980518694], [2.282544539306635, 48.84558318854781], [2.282721643048395, 48.84549143494808], [2.282885468680574, 48.84540481871935], [2.283062571228337, 48.84531306370095], [2.2832263957332, 48.84522644699149], [2.283403497062226, 48.84513469235302], [2.283403520398329, 48.84513467990165], [2.283567343775805, 48.845048062711506], [2.283772533274607, 48.844942229745804], [2.2838908810805, 48.84489075512799], [2.283943524842908, 48.844875503086065], [2.283934526847332, 48.844848764099545], [2.283931395025578, 48.84483908075204], [2.2839020994325763, 48.84480518901364], [2.283896519258816, 48.844784278595625], [2.283874203655809, 48.84479070769998], [2.283740907728657, 48.84484933811291], [2.283545393987148, 48.844938465669664], [2.283412098674628, 48.84499709571667], [2.283278801699753, 48.84505572560388], [2.283083286393719, 48.84514485238892], [2.28305138062436, 48.845144222294984], [2.283030554982865, 48.8451557397967], [2.282888156163158, 48.84523664418581], [2.282735128980776, 48.8453180899545], [2.28259273062142, 48.84539899398838], [2.282439702500656, 48.84548043936734], [2.282297303239097, 48.8455613430378], [2.282144274179945, 48.84564278802703], [2.282001872653712, 48.845723691325865], [2.281848844018633, 48.84580513593354], [2.281706441590183, 48.84588603886897], [2.28155341065424, 48.8459674830787], [2.281553016589484, 48.84596769925833], [2.281401746412719, 48.846047315539344], [2.28124871451464, 48.84612876024684], [2.281097443405403, 48.84620837613161], [2.280944410558829, 48.84628982043807], [2.280793138517317, 48.84636943592653], [2.280640106084831, 48.84645087984022], [2.280488831748249, 48.84653049492425], [2.280335798367264, 48.8466119384369], [2.280184523098396, 48.846691553124636], [2.280031488768906, 48.84677299623628], [2.279880212567646, 48.84685261052771], [2.279727177289547, 48.846934053238336], [2.27957590151849, 48.84701366714174], [2.279422863929381, 48.84709510944312], [2.279271587225927, 48.84717472295019], [2.279118548688296, 48.84725616485056], [2.278967271039896, 48.84733577886064], [2.278814231566184, 48.84741721946066], [2.278812720775594, 48.84743028353535], [2.278948450879083, 48.847528413019106], [2.279078422652273, 48.847621915477866], [2.279214153755176, 48.847720044643296], [2.279344125120497, 48.84781354678915], [2.279479858585343, 48.847911675644475], [2.279609830892887, 48.8480051783849], [2.279745564006968, 48.8481033060144], [2.279875538631808, 48.84819680845828], [2.280011272732999, 48.84829493666877], [2.280141246962204, 48.848388437900425], [2.280276983425477, 48.84848656580076], [2.280406958609359, 48.84858006672768], [2.280542694709446, 48.848678194301485], [2.280672672210758, 48.848771694931855], [2.280808409310205, 48.848869822187325], [2.280938386403562, 48.848963322504744], [2.281074125865232, 48.84906144945006], [2.281204103913186, 48.84915494946272], [2.281339844374339, 48.84925307608971], [2.281469823377001, 48.849346575797625], [2.28151721178006, 48.84938027535259]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 95, "roussel_fabien": 21.0, "nb_emargement": 1056.0, "nb_procuration": 53.0, "nb_vote_blanc": 25.0, "jadot_yannick": 56.0, "le_pen_marine": 67.0, "nb_exprime": 1028.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1406.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1056, "quartier_bv": "60", "geo_point_2d": [48.847540669513116, 2.281596596737658], "melenchon_jean_luc": 238.0, "poutou_philippe": 7.0, "macron_emmanuel": 390.0}, "geometry": {"type": "Point", "coordinates": [2.281596596737658, 48.847540669513116]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fc5a876ba08af8053bd8af35c9faa69363793abf", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 98, "zemmour_eric": 111.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-6", "geo_shape": {"coordinates": [[[2.316447888931375, 48.8813159829378], [2.316443916397432, 48.88135632238782], [2.316329187342046, 48.88146391476838], [2.31621074644349, 48.88157034007921], [2.316096016434899, 48.88167793221542], [2.315977574573207, 48.8817843572749], [2.315862843599588, 48.881891950066006], [2.315744400786363, 48.881998373974824], [2.315629667495992, 48.882105966513805], [2.315533681626171, 48.88219221250767], [2.315519610919721, 48.88220577675691], [2.315579226075057, 48.88223454461694], [2.315755990943624, 48.8823175364656], [2.315933397417404, 48.88240082848981], [2.316110162063169, 48.88248381889598], [2.31628756966986, 48.88256711038285], [2.316464336807874, 48.88265010026133], [2.316641745547482, 48.88273339121082], [2.316645275330681, 48.88273458228989], [2.316817066253846, 48.88277299025634], [2.316993869036116, 48.88281251925517], [2.317165661825223, 48.882850927625725], [2.317342465148377, 48.88289045520775], [2.317514258451677, 48.88292886307545], [2.317691062292335, 48.882968391039114], [2.317698946939416, 48.882975039775566], [2.317717468871489, 48.882974743326955], [2.317718235484134, 48.88297493205896], [2.317898159955915, 48.883023282866034], [2.318075399004762, 48.88307096338886], [2.318255324139934, 48.883119313654944], [2.318432562479071, 48.88316699363713], [2.318612488277631, 48.883215343362295], [2.31878972725884, 48.88326302371088], [2.318969653720788, 48.88331137289504], [2.319146893367595, 48.883359051811446], [2.319147181414137, 48.883359131691414], [2.319148531818049, 48.883359517989845], [2.319165541537588, 48.88336517169454], [2.319178576420598, 48.88335871396573], [2.319273817063555, 48.88325625944899], [2.319386520050045, 48.883135019931686], [2.319481759874696, 48.88303256522866], [2.319594460529525, 48.88291132548328], [2.319689699536085, 48.88280887059401], [2.319802400586153, 48.882687630635985], [2.319897638774528, 48.88258517556048], [2.320010337492866, 48.882463935374325], [2.320105574863065, 48.88236148011259], [2.320218273976757, 48.88224023971377], [2.32031351052879, 48.882137784265836], [2.320348225824229, 48.882082148925015], [2.320344551116603, 48.882080357276436], [2.320290622039939, 48.88206948844205], [2.320277836869326, 48.882065312196595], [2.320090373379668, 48.882027154720454], [2.319902259284642, 48.88198923966952], [2.319714796344007, 48.88195108160265], [2.319526681433789, 48.881913165951225], [2.319339219042186, 48.88187500729365], [2.319151104680203, 48.881837091049505], [2.318963642837536, 48.88179893180124], [2.318775529023796, 48.88176101496434], [2.3185880691055543, 48.88172285423388], [2.318399955828194, 48.88168493770347], [2.31821249509549, 48.88164677637458], [2.318024382378257, 48.8816088583522], [2.317836922182838, 48.88157069733187], [2.317648810013865, 48.881532778716775], [2.317461350367406, 48.88149461710573], [2.317273240110207, 48.88145669790568], [2.317085781012917, 48.88141853570398], [2.31689766994038, 48.881380615903446], [2.3168461793976682, 48.881370133539235], [2.316842473543886, 48.88136792251348], [2.316809368517605, 48.88136136811462], [2.31667340056645, 48.88133368674514], [2.316470053798175, 48.88130789316708], [2.316447888931375, 48.8813159829378]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 6, "roussel_fabien": 9.0, "nb_emargement": 1231.0, "nb_procuration": 107.0, "nb_vote_blanc": 9.0, "jadot_yannick": 99.0, "le_pen_marine": 34.0, "nb_exprime": 1221.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1465.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "67", "geo_point_2d": [48.88229141523285, 2.3179355375965813], "melenchon_jean_luc": 211.0, "poutou_philippe": 7.0, "macron_emmanuel": 613.0}, "geometry": {"type": "Point", "coordinates": [2.3179355375965813, 48.88229141523285]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7e00b803fbf619eb681e1bbca1e86d3a7303e8c2", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 66, "zemmour_eric": 76.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-29", "geo_shape": {"coordinates": [[[2.332253535343118, 48.889206503339764], [2.332285437983635, 48.88919632819811], [2.332442542978596, 48.8890886149877], [2.332595324337321, 48.88898386502831], [2.332752429413925, 48.88887615139802], [2.332905208150744, 48.88877140191467], [2.332907833615152, 48.888768831876526], [2.332984245668862, 48.88865590101009], [2.333060612901225, 48.88854303638568], [2.333063014029073, 48.888540624274995], [2.333201270451606, 48.888441145396506], [2.333345815143554, 48.888338859489394], [2.333484070478591, 48.88823938116534], [2.33362861405485, 48.88813709489806], [2.333640348775179, 48.888105371683864], [2.333618770899612, 48.888098483260286], [2.333519910636096, 48.88797872898772], [2.333434991936798, 48.8878760612109], [2.333350073583871, 48.88777339246504], [2.33325121454398, 48.88765363883446], [2.333253813388993, 48.887642811011496], [2.333372438492166, 48.88756870050646], [2.333540637902392, 48.88746316721855], [2.333659262188106, 48.88738905641718], [2.3338274604367673, 48.88728352270917], [2.333946085268688, 48.88720941161912], [2.333947790142838, 48.88720811617793], [2.334050645096422, 48.88711294582641], [2.334149218906524, 48.88701884335715], [2.334252073118114, 48.88692367281618], [2.334350646205916, 48.88682957016488], [2.334449220312491, 48.88673546653268], [2.334552072052419, 48.886640295701895], [2.334553929064274, 48.88663787064137], [2.334608622340575, 48.88652752662503], [2.334680010348815, 48.88639014979425], [2.334734703097765, 48.88627980569542], [2.334806091785932, 48.886142429665334], [2.334860784007434, 48.88603208548407], [2.334932170671244, 48.88589470844101], [2.334986862365513, 48.88578436417726], [2.334971135396092, 48.88575751908848], [2.334935866723128, 48.885757470679756], [2.334848914978145, 48.88578349718764], [2.334756077487829, 48.88581261430022], [2.334738895108716, 48.885809501582905], [2.334630475641663, 48.885702883515954], [2.334519638809206, 48.88559423650524], [2.334411220239147, 48.88548761821889], [2.33430038294731, 48.88537897187564], [2.334191965285835, 48.88527235247064], [2.334081130273228, 48.88516370591072], [2.333972713508834, 48.88505708628626], [2.333861878048229, 48.88494843949455], [2.333753462169402, 48.88484182054995], [2.3336426289994012, 48.88473317264231], [2.33353421265414, 48.88462655347074], [2.333423380399731, 48.884517905338896], [2.333314966315114, 48.88441128595553], [2.333204134976283, 48.88430263759943], [2.333095720425124, 48.88419601798907], [2.332984890001866, 48.88408736940877], [2.332876477711217, 48.88398074958663], [2.332765646828526, 48.883872101673745], [2.332753359330356, 48.883871969343026], [2.332724942812677, 48.88388203726356], [2.332680614081827, 48.8840081857414], [2.332636218459885, 48.88412793867675], [2.332591889293264, 48.88425408799285], [2.332547493257755, 48.884373840868484], [2.332503165041994, 48.88449998923185], [2.332458768592713, 48.88461974204781], [2.332414438589106, 48.88474589034253], [2.332370041714617, 48.884865643998054], [2.332368508653579, 48.88486811310373], [2.332270867846435, 48.88497587401662], [2.332173403324166, 48.88508368079137], [2.332075761697554, 48.88519144242326], [2.331978296367905, 48.88529924901802], [2.331880653944782, 48.885407009570436], [2.331783187807743, 48.88551481598521], [2.331685544565228, 48.885622577256676], [2.331588077620792, 48.88573038349149], [2.3314904335818563, 48.8858381436834], [2.331392965830014, 48.88594594973825], [2.331295320971458, 48.88605371064918], [2.331197852412199, 48.88616151652406], [2.3311002067573128, 48.88626927635548], [2.331002737390631, 48.886377082050394], [2.330905090927757, 48.88648484170154], [2.330807620753642, 48.88659264721646], [2.330709973471114, 48.88670040758662], [2.330612502489556, 48.886808212921565], [2.33051485441068, 48.88691597221219], [2.330417382621672, 48.88702377736716], [2.330319733723116, 48.88713153737674], [2.33022226112675, 48.88723934235172], [2.330124611431734, 48.887347101281826], [2.330027138027797, 48.88745490607681], [2.32999969841667, 48.887473329059574], [2.32999954733903, 48.88747987712166], [2.330128598878302, 48.887573967420586], [2.330262191655093, 48.88766258358056], [2.33026312044112, 48.88766862146757], [2.33029621522418, 48.887687121389774], [2.330429809940298, 48.8877757373612], [2.330563830865391, 48.887863377987536], [2.330697425137018, 48.88795199273927], [2.33083144832985, 48.888039633059606], [2.330965043497447, 48.888128248397784], [2.331099066230766, 48.8882158883969], [2.331232663681237, 48.88830450253067], [2.331366687318629, 48.88839214221614], [2.331500284301502, 48.888480756928715], [2.331634308842972, 48.88856839630062], [2.3317679081087332, 48.888657009808725], [2.331901933554287, 48.888744648867], [2.331904552027081, 48.88874709165971], [2.331920996310143, 48.888769635107096], [2.331920534751669, 48.888776909884996], [2.331947945883873, 48.88879227673392], [2.332014114553227, 48.88888298866132], [2.332101676097844, 48.88900407951834], [2.332184291186158, 48.88911733385572], [2.332246209471286, 48.889202963206436], [2.332253535343118, 48.889206503339764]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 29, "roussel_fabien": 23.0, "nb_emargement": 1331.0, "nb_procuration": 115.0, "nb_vote_blanc": 12.0, "jadot_yannick": 138.0, "le_pen_marine": 50.0, "nb_exprime": 1318.0, "nb_vote_nul": 1.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1657.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "69", "geo_point_2d": [48.88668235905259, 2.332573764002692], "melenchon_jean_luc": 387.0, "poutou_philippe": 10.0, "macron_emmanuel": 514.0}, "geometry": {"type": "Point", "coordinates": [2.332573764002692, 48.88668235905259]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9fef2999452c3fd18c83b12390ebfc4326e161b5", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 22, "zemmour_eric": 48.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "20-69", "geo_shape": {"coordinates": [[[2.38705292203713, 48.8680307919529], [2.387062192365138, 48.86800179438345], [2.387135832299625, 48.86787098582558], [2.3872101973126663, 48.86773888407437], [2.38728383515117, 48.86760807448806], [2.38735819941368, 48.8674759726135], [2.387431837861469, 48.86734516381132], [2.387506201373253, 48.86721306181341], [2.387579837725291, 48.867082251982836], [2.387654200486465, 48.86695014986156], [2.387647180413466, 48.86693886770397], [2.387435930359314, 48.866873908408465], [2.387224469534909, 48.86681173021154], [2.3872169794635, 48.866800895290254], [2.387249987549928, 48.866734165099075], [2.387292559254509, 48.86664197408039], [2.387299457725554, 48.86663855053442], [2.387300758892963, 48.86662180249417], [2.38731607171743, 48.86658864308036], [2.387378719395487, 48.86645096364946], [2.387436601948127, 48.86632561311734], [2.387499248991324, 48.86618793359063], [2.3875571323353793, 48.866062582078094], [2.387615014037762, 48.86593723051638], [2.387677660131819, 48.865799551747294], [2.387675810327897, 48.86579027278102], [2.387660013742399, 48.865784839986766], [2.387471653415095, 48.86573933629133], [2.387282968708559, 48.865693739801806], [2.387094607676885, 48.86564823550222], [2.386905923630324, 48.86560263841456], [2.386717564620492, 48.86555713352483], [2.386528881233909, 48.86551153583899], [2.386340521519721, 48.86546603034514], [2.386151838793122, 48.86542043206115], [2.385963479737788, 48.86537492597022], [2.3857747976710773, 48.86532932708809], [2.385586440637594, 48.86528382040699], [2.385397759230876, 48.8652382209267], [2.38520940149306, 48.86519271364148], [2.385020720746342, 48.865147113563054], [2.384971230562931, 48.86512653144118], [2.384959609081333, 48.865134205155286], [2.384918958047794, 48.86516969469722], [2.384794088965397, 48.86527753682885], [2.384673753451273, 48.86538258989123], [2.384548883340361, 48.86549043264562], [2.384428548202997, 48.865595485448296], [2.384303677074179, 48.865703327926035], [2.384183340950672, 48.86580838046199], [2.384058467451462, 48.86591622175689], [2.383938130341701, 48.86602127402607], [2.383813257177042, 48.86612911595069], [2.383692919080916, 48.866234167953095], [2.383568044898321, 48.86634200960115], [2.3834477044529, 48.86644706132981], [2.383445590981139, 48.86644975565809], [2.383394013332244, 48.86655065853559], [2.383335955334018, 48.86667098431908], [2.383284377253832, 48.86677188712915], [2.383226317392676, 48.86689221282835], [2.383174738870338, 48.86699311647035], [2.383135786461458, 48.867073845514014], [2.383143261659377, 48.86709289068887], [2.383186557370336, 48.867098380356936], [2.383378316748181, 48.86714509177707], [2.383560365337843, 48.867188894770514], [2.383742412859872, 48.86723269837756], [2.383934173230573, 48.8672794089015], [2.384116222757118, 48.86732321104414], [2.384307982433037, 48.867369920958346], [2.384490032579476, 48.86741372342811], [2.384681792934379, 48.867460431840286], [2.384863843711441, 48.86750423373793], [2.385055606097843, 48.86755094155438], [2.385237657505626, 48.86759474287989], [2.385429419197216, 48.8676414500866], [2.385611471235513, 48.86768525083989], [2.385803233595439, 48.86773195744395], [2.385985286264446, 48.867775757625076], [2.386177050655863, 48.86782246363339], [2.386359103955373, 48.86786626324237], [2.386486846242523, 48.86789737601319], [2.386492913395768, 48.867901010763426], [2.386516542579465, 48.86790236127657], [2.386580563993324, 48.86791795478763], [2.386763522770064, 48.86796294374346], [2.386955287185139, 48.86800964848998], [2.387046193910984, 48.86803200218183], [2.38705292203713, 48.8680307919529]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 69, "roussel_fabien": 25.0, "nb_emargement": 1205.0, "nb_procuration": 86.0, "nb_vote_blanc": 15.0, "jadot_yannick": 87.0, "le_pen_marine": 47.0, "nb_exprime": 1187.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1550.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1205, "quartier_bv": "79", "geo_point_2d": [48.86657738253476, 2.385623740349854], "melenchon_jean_luc": 659.0, "poutou_philippe": 11.0, "macron_emmanuel": 236.0}, "geometry": {"type": "Point", "coordinates": [2.385623740349854, 48.86657738253476]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "58c9ad158fde173d79facf94098eb6556c4e2957", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 93.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "4-13", "geo_shape": {"coordinates": [[[2.353334003367725, 48.861274375257935], [2.353340058847075, 48.861270906820266], [2.353386687937771, 48.861260441252554], [2.353463633361138, 48.86123245558953], [2.353522445583153, 48.861211755563296], [2.3535409050217853, 48.86120848992282], [2.353549761223688, 48.86120241140882], [2.353649808512415, 48.86116719915023], [2.353834200510971, 48.86110555446377], [2.353993059273596, 48.861049641703815], [2.354177451801685, 48.860987997388655], [2.354336309848639, 48.86093208326783], [2.3545207001916593, 48.86087043840989], [2.354679557500547, 48.86081452472677], [2.354863948395486, 48.8607528784415], [2.355022804977552, 48.86069696429684], [2.355037123824084, 48.86068990694381], [2.35500473868506, 48.860649118763156], [2.354910588031285, 48.860595308744514], [2.354823099271104, 48.86054530642847], [2.354820623948749, 48.86054343952773], [2.354714714225723, 48.860436851578875], [2.354609942514953, 48.860331408235474], [2.354505171228264, 48.860225964790345], [2.35439926279605, 48.86011937653178], [2.354397465464098, 48.86011669667091], [2.354365056927618, 48.860033979654425], [2.354332133246019, 48.859949944995854], [2.354327767262572, 48.85994534465622], [2.354193309678605, 48.8598699039634], [2.354059881214774, 48.85979504065276], [2.354056366865386, 48.85979200257068], [2.353986853409906, 48.859694036336876], [2.353918306051666, 48.859597432385556], [2.353849758947518, 48.85950082838655], [2.353780246269002, 48.85940286200702], [2.353711699665767, 48.859306258811245], [2.353642187506431, 48.85920829233435], [2.353640993798323, 48.85920343569811], [2.35365802121913, 48.85910723257459], [2.353675024963394, 48.859011175007254], [2.3536739985740462, 48.85900656479647], [2.35359643627229, 48.85888811797407], [2.35352073763286, 48.858772518601995], [2.353445039329233, 48.85865691916997], [2.353367478057316, 48.85853847306118], [2.353291780433761, 48.85842287350781], [2.353214219858657, 48.85830442727469], [2.353138522926431, 48.85818882670075], [2.353060961685231, 48.85807038033591], [2.353049100940015, 48.8580643580203], [2.3530300087704292, 48.8580704801001], [2.352851245039338, 48.85813692695062], [2.352672489085484, 48.85820336907792], [2.352493724453688, 48.85826981448707], [2.352314967588007, 48.858336256072356], [2.352136200670349, 48.85840270183142], [2.3519574442557483, 48.85846914288206], [2.351778676437393, 48.8585355871998], [2.351599919110869, 48.8586020277084], [2.351596974508595, 48.85860283915499], [2.351444162053951, 48.85863165002226], [2.351290669063487, 48.85866058920977], [2.351286554383732, 48.85866188894804], [2.351104168959958, 48.85874683384814], [2.350921530700679, 48.8588318949104], [2.350739142723757, 48.85891683923379], [2.35055650327261, 48.85900189972593], [2.350551235904152, 48.85900338204642], [2.350420981010243, 48.85902002621591], [2.350288534929117, 48.85903695063579], [2.350280320661753, 48.85904029838362], [2.350255076350113, 48.85906196064953], [2.350231026530646, 48.859082596942635], [2.350226201821748, 48.8590851959462], [2.35005863495349, 48.859139176859095], [2.349890078316564, 48.85919347592528], [2.349722510751819, 48.8592474563623], [2.349553953414296, 48.859301754949804], [2.34954718771336, 48.85930664840771], [2.349519186986215, 48.85935538393093], [2.349491191826751, 48.85940410598579], [2.349484458951419, 48.85940898882608], [2.349334957476023, 48.85945746757371], [2.349189133040444, 48.859504752010125], [2.349043309691884, 48.85955203717349], [2.3488938060327103, 48.85960051535636], [2.3488224355068192, 48.85961790175027], [2.348823699339247, 48.859624310193844], [2.348897796568089, 48.85975323663294], [2.348970416290796, 48.859881755660346], [2.349044514248829, 48.860010681978665], [2.34911713332933, 48.86013920087982], [2.349191232016563, 48.86026812707737], [2.34926385318067, 48.86039664586704], [2.34932353648224, 48.86050226969116], [2.349397636196599, 48.86063119571868], [2.349410573119126, 48.86065409060719], [2.349397752655324, 48.86066793112625], [2.349428187055144, 48.86067062105116], [2.349500807990589, 48.86079914054228], [2.349568342730072, 48.86092119209815], [2.349635877785974, 48.86104324360253], [2.349708501127347, 48.86117176203256], [2.349776036825174, 48.861293814329485], [2.349848660861669, 48.861422332645404], [2.349916197223775, 48.86154438393641], [2.3499888219553, 48.861672902138174], [2.350056358970672, 48.86179495332252], [2.350128984385917, 48.86192347230948], [2.350159846514866, 48.861979245623544], [2.350192229143977, 48.861993989081085], [2.350248602595042, 48.86197031317653], [2.35044733702925, 48.86192571596756], [2.350637732559187, 48.86188248425693], [2.350836467688266, 48.861837886405624], [2.351026861211331, 48.86179465406513], [2.351217255781412, 48.86175142142738], [2.351415989925651, 48.86170682170922], [2.351606382488951, 48.86166358844162], [2.351805115953845, 48.86161898897301], [2.351995509236152, 48.8615757550903], [2.352194240669899, 48.86153115496458], [2.35238463330831, 48.86148792045942], [2.352583365436889, 48.861443319691354], [2.352773756068513, 48.86140008455633], [2.352972487528927, 48.8613554831386], [2.353162878879531, 48.861312247388476], [2.353314979217869, 48.861278109972226], [2.353334003367725, 48.861274375257935]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 13, "roussel_fabien": 21.0, "nb_emargement": 1253.0, "nb_procuration": 86.0, "nb_vote_blanc": 7.0, "jadot_yannick": 102.0, "le_pen_marine": 71.0, "nb_exprime": 1245.0, "nb_vote_nul": 1.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1646.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1253, "quartier_bv": "13", "geo_point_2d": [48.860128873834086, 2.351797626839907], "melenchon_jean_luc": 370.0, "poutou_philippe": 6.0, "macron_emmanuel": 479.0}, "geometry": {"type": "Point", "coordinates": [2.351797626839907, 48.860128873834086]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d101c9162a0aa981b7916c599331470c3588b1e3", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 23, "zemmour_eric": 65.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-34", "geo_shape": {"coordinates": [[[2.408246181469436, 48.85650286300952], [2.4082436853711853, 48.85651299529126], [2.40810343963333, 48.85657236270008], [2.407927383656367, 48.85664688122], [2.407787138560624, 48.856706248257716], [2.407687856867167, 48.85674826985846], [2.407686987558173, 48.856750406898534], [2.407702699185881, 48.856766010978475], [2.407804322388786, 48.856853139850706], [2.407949596342472, 48.856977231877636], [2.408051219007421, 48.8570643605169], [2.4081964941379352, 48.85718845222042], [2.408298118990597, 48.85727558064021], [2.408318327984643, 48.85727660239511], [2.4084165431132902, 48.85721476333101], [2.408525418450638, 48.85714708166491], [2.408548124035095, 48.857151848905445], [2.408589923411902, 48.857288543786105], [2.408630410055731, 48.857420233584826], [2.408672208500728, 48.85755692839699], [2.408712695550871, 48.8576886190353], [2.408754495790054, 48.857825313792425], [2.408794981904027, 48.85795700346504], [2.408836782574307, 48.85809369816031], [2.408877270467717, 48.858225387779974], [2.408883121036193, 48.85823745800754], [2.408897964063696, 48.85823995236306], [2.40910235653717, 48.85827762988724], [2.409314247923165, 48.85831702854781], [2.409518641000024, 48.858354705358344], [2.409730533014146, 48.85839410327912], [2.409740372670992, 48.85840381527137], [2.409718242984956, 48.85852741095264], [2.409695751014429, 48.85865374063502], [2.409673622479317, 48.85877733628694], [2.409651130292711, 48.85890366593251], [2.409629000172481, 48.85902726244085], [2.409606509132726, 48.859153592056295], [2.409584378810679, 48.859277187629296], [2.409561887554846, 48.859403517207866], [2.409539757020791, 48.85952711274477], [2.409517264185926, 48.85965344227981], [2.409495133429766, 48.85977703867987], [2.409472641741659, 48.85990336818476], [2.409450510783576, 48.86002696364944], [2.409428018879483, 48.86015329311748], [2.409405887699188, 48.86027688944535], [2.409383394226228, 48.86040321797048], [2.40936126283401, 48.86052681426226], [2.409342635438855, 48.86063143640953], [2.409350249727626, 48.86064173998864], [2.40937805496266, 48.860639625265776], [2.409557813290691, 48.86064762340248], [2.409739946469411, 48.86065606736494], [2.409919706272599, 48.86066406496465], [2.410101839567342, 48.86067250837623], [2.410281599482906, 48.860680505432235], [2.410463732893769, 48.860688948292875], [2.4106434929216, 48.86069694480518], [2.410825626448573, 48.86070538711494], [2.411005385225688, 48.860713383076835], [2.411187518868764, 48.860721824835714], [2.411202011620111, 48.86071389649009], [2.411225500636019, 48.86058123221171], [2.411248564957114, 48.860449954409304], [2.411272053735487, 48.8603172900902], [2.411295117832602, 48.860186011348276], [2.4113186063735452, 48.86005334698847], [2.411341670226358, 48.85992206910566], [2.411365158529674, 48.859789404705126], [2.41138822215851, 48.85965812588278], [2.411411710224301, 48.85952546144157], [2.411434773608846, 48.85939418347831], [2.411458261437218, 48.859261518996355], [2.411481324597793, 48.8591302400936], [2.411504810825615, 48.858997575564274], [2.411527875104838, 48.85886629752732], [2.411531165921626, 48.85885140348506], [2.4115136866410563, 48.85884407780933], [2.411293385595334, 48.858824376017154], [2.411071213437222, 48.85880466550919], [2.410850911372707, 48.858784961995745], [2.410628739550158, 48.8587652506656], [2.410616991035001, 48.85875545830105], [2.410634352974645, 48.85863891684744], [2.410651484486068, 48.858522617067614], [2.410668844897881, 48.85840607647714], [2.410685976255856, 48.85828977666796], [2.41070333788592, 48.85817323515541], [2.410720467727437, 48.858056935310174], [2.410737829192697, 48.8579403946675], [2.410754958880676, 48.857824094792946], [2.410772320201272, 48.85770755322153], [2.41078945109861, 48.857591253324344], [2.410777723138962, 48.857581471857415], [2.410646604303145, 48.85756970036446], [2.41051498678587, 48.8575580404877], [2.410503182206102, 48.85754877214191], [2.4105113971604712, 48.857411761387716], [2.410518237742425, 48.857284792232186], [2.410525079653924, 48.857157823068455], [2.410533294489073, 48.85702081226448], [2.410546206384057, 48.857012186390975], [2.410752911318876, 48.85700510941814], [2.410966912429569, 48.85699799245852], [2.411173617250934, 48.85699091475888], [2.411387618245957, 48.85698379704681], [2.411397961848421, 48.85696953394127], [2.411292572363055, 48.85687369835525], [2.411159527276894, 48.8567529711889], [2.411054138668113, 48.856657135374185], [2.410921093324513, 48.856536407912515], [2.410815705582139, 48.85644057276841], [2.410682661344068, 48.85631984501809], [2.410577274488328, 48.856224008746], [2.410568388117732, 48.85622040985779], [2.410365533490377, 48.85619908882951], [2.410164596581339, 48.85617861599911], [2.410144346862939, 48.85617448441267], [2.410131317381654, 48.856183517072935], [2.410041540336929, 48.85622498042585], [2.409960630290801, 48.856263433253254], [2.409959427738816, 48.85626407575224], [2.409840799088283, 48.856335239691234], [2.40972069817828, 48.856406642668034], [2.409602070250164, 48.85647780546869], [2.409481968684401, 48.85654920819675], [2.409363338732691, 48.85662037164412], [2.40924323651116, 48.856691774123405], [2.409228884221477, 48.85669339673585], [2.409095088875348, 48.856656710113334], [2.40896462758382, 48.85662049037904], [2.408830832610964, 48.85658380345864], [2.408700373058649, 48.85654758254133], [2.408697540415117, 48.85654702533896], [2.408520323998397, 48.85652563092146], [2.408318839927163, 48.8565013228795], [2.408278551341216, 48.85649645875276], [2.408246181469436, 48.85650286300952]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 34, "roussel_fabien": 15.0, "nb_emargement": 1031.0, "nb_procuration": 30.0, "nb_vote_blanc": 15.0, "jadot_yannick": 36.0, "le_pen_marine": 95.0, "nb_exprime": 1009.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1472.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "80", "geo_point_2d": [48.85836918135714, 2.4100058436085177], "melenchon_jean_luc": 520.0, "poutou_philippe": 12.0, "macron_emmanuel": 198.0}, "geometry": {"type": "Point", "coordinates": [2.4100058436085177, 48.85836918135714]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "250c2e76a7038e3f072ad7817900bc77e9a53e5a", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 19, "zemmour_eric": 40.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-13", "geo_shape": {"coordinates": [[[2.389641997276682, 48.87527228488151], [2.389653658167048, 48.87527313305178], [2.389727439965252, 48.87530752377443], [2.389792998786232, 48.87533321286088], [2.38979645336295, 48.875334171172376], [2.389950046686924, 48.875361143472794], [2.39010801448709, 48.875387260113655], [2.390261606765599, 48.87541423200613], [2.390419574882999, 48.875440348234584], [2.3904227413278702, 48.87544064764857], [2.39059643597649, 48.87544351594195], [2.390822856801756, 48.87544614958533], [2.390996550127395, 48.875449017291224], [2.391222970996803, 48.875451650177794], [2.39139666573668, 48.87545451641078], [2.391623085286955, 48.87545714853366], [2.391796780056682, 48.875460015085324], [2.391798602169847, 48.87545996498707], [2.391940893796665, 48.87544971059831], [2.392162794924686, 48.87543645812543], [2.3922576295424562, 48.8754296235608], [2.392278871731363, 48.87542587326801], [2.392273903493549, 48.87539069674503], [2.3923537828273442, 48.87527504970784], [2.392433083510328, 48.875160238747235], [2.392512960774004, 48.87504459157273], [2.392592260755138, 48.87492978048272], [2.392672138675305, 48.874814133184756], [2.392751437944211, 48.874699322864615], [2.392831313794188, 48.874583675429356], [2.392910612371951, 48.8744688640805], [2.392912780555876, 48.874449647337556], [2.392887216340921, 48.8744466578064], [2.392767263508722, 48.8743776766845], [2.392593170482448, 48.87427762576481], [2.39247321842895, 48.874208644337706], [2.392299126532474, 48.874108592975055], [2.392179175257775, 48.874039611242736], [2.392177787317847, 48.8740389117085], [2.392003248222547, 48.87396208380978], [2.3918284112287083, 48.87388512463107], [2.3916538745272913, 48.87380829621915], [2.39147903720266, 48.87373133651252], [2.39147662215808, 48.87372997973158], [2.391351120904498, 48.87364095424879], [2.391220101906506, 48.87354801544107], [2.391094601529796, 48.873458989674695], [2.390963584821044, 48.87336604967853], [2.39096499384255, 48.8733529337652], [2.391125232893031, 48.87326743445331], [2.391285721110662, 48.87318180128991], [2.391445959108315, 48.87309630153541], [2.391606446260874, 48.87301066882804], [2.391766681842213, 48.87292516862405], [2.391927167950716, 48.872839534574105], [2.392087403842435, 48.87275403393448], [2.392247888885889, 48.87266840034056], [2.392408123724698, 48.872582899258326], [2.392568607724094, 48.872497264321886], [2.392569002734135, 48.87248350021156], [2.3924450128211863, 48.87241204025066], [2.392325156357643, 48.872342962792125], [2.392201165750484, 48.87227150256263], [2.392081311296979, 48.87220242485806], [2.391957321358889, 48.87213096436688], [2.391837466188967, 48.872061886402456], [2.391782130077558, 48.87203058717523], [2.391770043141423, 48.87203744614146], [2.391712777425221, 48.872080792677004], [2.391590903166128, 48.87217235601112], [2.391466346403599, 48.87226663685847], [2.391344471276485, 48.872358199926275], [2.391219912260321, 48.8724524804944], [2.39109803762836, 48.87254404330281], [2.390973477721733, 48.87263832359863], [2.390851602221741, 48.87272988614074], [2.390727041435161, 48.872824165264966], [2.390605165056612, 48.872915728440034], [2.390480603379559, 48.87301000729195], [2.390358724769661, 48.873101570193775], [2.390234163565427, 48.873195848780306], [2.390156290582661, 48.873254352163734], [2.390144141001651, 48.87326081313589], [2.39013799090393, 48.873268146450066], [2.390123517237898, 48.87327899332337], [2.390079512053758, 48.873312053468844], [2.390066605383817, 48.873314939319364], [2.390038949817166, 48.87331130808366], [2.390021476652025, 48.873319483026805], [2.3900094275248263, 48.873345885432904], [2.389871047295566, 48.87345006412278], [2.389731326763807, 48.873555252059994], [2.389592945422088, 48.873659430408615], [2.38945322376699, 48.87376461800127], [2.389314841312804, 48.87386879600864], [2.389175118534561, 48.87397398325674], [2.389172744709019, 48.87398329903262], [2.389272500941784, 48.874145005485154], [2.389389221582486, 48.87427945593007], [2.3893895662037252, 48.874287972576845], [2.389308960970598, 48.874393466883966], [2.389236232642402, 48.874488652690616], [2.389155626777606, 48.8745941477746], [2.389082897888979, 48.874689333470755], [2.389002291403049, 48.87479482843232], [2.388929561953986, 48.874890014018014], [2.388891679529742, 48.87492826351818], [2.38889253223472, 48.87492902780764], [2.388919121007667, 48.87494102844139], [2.389061767304145, 48.87500752026019], [2.389237955133102, 48.875087039903654], [2.389380602236484, 48.875153531333716], [2.389556792409376, 48.87523305050436], [2.389625658551257, 48.87526515080548], [2.389641997276682, 48.87527228488151]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 13, "roussel_fabien": 31.0, "nb_emargement": 1240.0, "nb_procuration": 84.0, "nb_vote_blanc": 11.0, "jadot_yannick": 120.0, "le_pen_marine": 50.0, "nb_exprime": 1218.0, "nb_vote_nul": 11.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1528.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1240, "quartier_bv": "77", "geo_point_2d": [48.87418114193242, 2.3909388601758397], "melenchon_jean_luc": 622.0, "poutou_philippe": 3.0, "macron_emmanuel": 281.0}, "geometry": {"type": "Point", "coordinates": [2.3909388601758397, 48.87418114193242]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "78fc2cea37b8da704d001eb287e4dbbe3e8f3553", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 36, "zemmour_eric": 52.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "20-5", "geo_shape": {"coordinates": [[[2.399355427108769, 48.86589458923271], [2.399333761581784, 48.86587537943159], [2.399293774190014, 48.86582988710575], [2.399206174699943, 48.865731520126296], [2.399098083412403, 48.86560854858127], [2.399010484663924, 48.86551018143892], [2.398902392934564, 48.86538720968573], [2.3988147949277723, 48.865288842380494], [2.398800256857792, 48.86528459461689], [2.398648012455018, 48.86530556230559], [2.398506531398867, 48.865325348201786], [2.398501043081168, 48.865325370981964], [2.398380214739691, 48.86530835700824], [2.398247305937341, 48.86529089545716], [2.398200059579208, 48.865277282015114], [2.398194642295544, 48.86528036019633], [2.398176402250356, 48.86530369808304], [2.398084760228158, 48.8654160126564], [2.39801162103385, 48.86550959613622], [2.398005267567087, 48.86551382435188], [2.398000569012074, 48.865528075939274], [2.397912469821712, 48.86564103322303], [2.39782644090675, 48.86575174890216], [2.397738340960569, 48.865864706034884], [2.397652309942949, 48.86597542155961], [2.397564209240933, 48.866088378541356], [2.397478178846972, 48.86619909392542], [2.39739214809784, 48.86630980833728], [2.397304046255801, 48.86642276599264], [2.397218014767104, 48.866533480256976], [2.397129912179618, 48.866646436862034], [2.397112794613329, 48.866668464483816], [2.39711317200064, 48.86667107446772], [2.397155919974988, 48.86668440754878], [2.397329549616976, 48.86676309457027], [2.397498769423889, 48.86683957913547], [2.397667991080442, 48.866916064362286], [2.397841622278416, 48.866994749725144], [2.398010843589659, 48.86707123355037], [2.398184475812195, 48.86714991930407], [2.3983536994940162, 48.86722640264067], [2.398527332762103, 48.86730508698671], [2.398696556077831, 48.86738157072025], [2.398870190380978, 48.86746025455788], [2.398875752801482, 48.86747048638537], [2.398897919418281, 48.867474076353155], [2.398898243473503, 48.867474228170096], [2.399053397148137, 48.867549028207186], [2.399207080437666, 48.86762275763757], [2.399362234998135, 48.8676975572643], [2.3995159177998002, 48.867771286281396], [2.399671073246106, 48.86784608549772], [2.399824758296591, 48.867919813215906], [2.399979914628735, 48.86799461202184], [2.40013359918099, 48.86806834022601], [2.40015789263365, 48.868076913952756], [2.400160781573603, 48.86807629889475], [2.400252687757837, 48.86797835394097], [2.4003430530657512, 48.867882430095534], [2.400434958565238, 48.86778448498466], [2.400525323201216, 48.867688560984796], [2.400617228015967, 48.86759061571678], [2.400707591980014, 48.867494691562484], [2.400726499111429, 48.867487514184205], [2.40072523030774, 48.86747350154175], [2.400706820777052, 48.86745235676156], [2.4006048921937593, 48.867334959382994], [2.400510350732583, 48.867226373746355], [2.40041581101833, 48.867117788930535], [2.400313883745482, 48.86700039126859], [2.400219343498076, 48.8668918053693], [2.400117417099787, 48.86677440841538], [2.400022879035147, 48.8666658223455], [2.399920953532114, 48.866548424301016], [2.399826414924066, 48.86643983804701], [2.399718320702724, 48.86631686714084], [2.399623784300283, 48.866208280710865], [2.399515691048094, 48.866085308696725], [2.399421154114741, 48.86597672297643], [2.399353050601012, 48.86589924397807], [2.399355427108769, 48.86589458923271]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 5, "roussel_fabien": 36.0, "nb_emargement": 1138.0, "nb_procuration": 70.0, "nb_vote_blanc": 20.0, "jadot_yannick": 122.0, "le_pen_marine": 45.0, "nb_exprime": 1116.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 0, "nb_inscrit": 1375.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1140, "quartier_bv": "79", "geo_point_2d": [48.86665929451442, 2.398934428655571], "melenchon_jean_luc": 427.0, "poutou_philippe": 8.0, "macron_emmanuel": 351.0}, "geometry": {"type": "Point", "coordinates": [2.398934428655571, 48.86665929451442]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5927236a4bf511650a4aefd0e962fc383593b8f8", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 154, "zemmour_eric": 141.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "7-14", "geo_shape": {"coordinates": [[[2.310029781001381, 48.85096974555505], [2.3100483307179323, 48.85095887943487], [2.310108790247575, 48.850834479655425], [2.310170012241096, 48.850710728170924], [2.31023047119235, 48.850586328302235], [2.31029169260537, 48.85046257672791], [2.310352150978246, 48.85033817677001], [2.310413371810874, 48.85021442510579], [2.310473829605378, 48.85009002505866], [2.310535049857418, 48.84996627330463], [2.310595507073559, 48.84984187316828], [2.310656725382446, 48.84971812131651], [2.310717183382909, 48.8495937210988], [2.310778401111433, 48.84946996915724], [2.310838858533439, 48.849345568850296], [2.31090007568151, 48.84922181681884], [2.310960532525272, 48.84909741642271], [2.311021749092793, 48.84897366430143], [2.311082205358218, 48.848849263816106], [2.311143421345402, 48.84872551160498], [2.311157492733225, 48.84871933936143], [2.311336184759397, 48.84872904598717], [2.31151398253066, 48.84873970861697], [2.311692674704851, 48.848749413810815], [2.311870471255992, 48.84876007590282], [2.312049163554537, 48.848769781463346], [2.312226960248101, 48.84878044302541], [2.312405654057393, 48.8487901471619], [2.312583450893371, 48.84880080819397], [2.312762143464362, 48.84881051268934], [2.31293994044275, 48.84882117319148], [2.312953923389356, 48.848815389653765], [2.313027796673673, 48.848686107961925], [2.313097313452863, 48.848569090973555], [2.313171184669673, 48.84843980915676], [2.313240700810194, 48.84832279115988], [2.313310216638526, 48.84820577311033], [2.313384086812165, 48.848076491119926], [2.313453603340667, 48.84795947386831], [2.313527472809473, 48.84783019176073], [2.3135666025672093, 48.84776432125999], [2.313599160454583, 48.847761104869825], [2.313612958012023, 48.84772477785295], [2.313643342713153, 48.84767363007224], [2.313717231651515, 48.847548287137464], [2.313786745364871, 48.84743126962898], [2.313860634977215, 48.84730592658617], [2.313930148045297, 48.84718890896893], [2.314004035606604, 48.84706356580248], [2.314073548041261, 48.84694654717714], [2.3141474362648218, 48.846821204802], [2.314216948054218, 48.84670418606791], [2.314217794271823, 48.8467019083357], [2.314240233806633, 48.84656715861074], [2.314258296373434, 48.8464388259153], [2.314280735690244, 48.846304076150915], [2.314298799428715, 48.84617574342687], [2.314319325208662, 48.84613618296141], [2.314283236686987, 48.84612166545063], [2.314171653093543, 48.846087644169415], [2.314048646908056, 48.84604530653018], [2.313925639571683, 48.846002967855746], [2.313751540683167, 48.845949884491766], [2.313742975134629, 48.84594925436944], [2.313718091685864, 48.84595276844199], [2.313697175687949, 48.845960364096435], [2.3136909646967823, 48.845966364993956], [2.313549136479291, 48.84605760653654], [2.313402962489385, 48.846151517458495], [2.313261133275647, 48.84624275774519], [2.313114958235598, 48.84633666919893], [2.312973128013758, 48.84642790912907], [2.312826951947261, 48.84652181931606], [2.312685120705457, 48.846613059788886], [2.312538943600551, 48.84670696960838], [2.312397111362491, 48.84679820882534], [2.312250933207508, 48.8468921191766], [2.312207737336138, 48.84691990669239], [2.312197613099932, 48.84692410157528], [2.31218630788375, 48.846935488167944], [2.31208767181586, 48.84699893950176], [2.311953302665944, 48.847084408508316], [2.311811468375362, 48.847175647000086], [2.31167709969124, 48.84726111479143], [2.311535264424295, 48.84735235384058], [2.311400893468968, 48.847437821300325], [2.311259058612031, 48.84752905911611], [2.31112468673622, 48.847614527151364], [2.310982849552166, 48.847705764617395], [2.31084847813037, 48.84779123233674], [2.310706639981813, 48.847882469460856], [2.310572266300672, 48.847967935949285], [2.310520979557785, 48.84800798128857], [2.310521276926273, 48.84800970977757], [2.31037943761024, 48.84810094649586], [2.310245181729091, 48.84818803393592], [2.310103341444337, 48.84827927031226], [2.309969084642396, 48.848366357428525], [2.309827244739544, 48.84845759437013], [2.30969298565416, 48.84854468115476], [2.309551144794587, 48.84863591685514], [2.309416884788393, 48.84872300331602], [2.309275042960083, 48.848814238674485], [2.309140782033074, 48.84890132481157], [2.30899893923602, 48.84899255982808], [2.308864677376262, 48.849079646540666], [2.308722833610457, 48.84917088121523], [2.308588572204358, 48.84925796671265], [2.308446726107131, 48.8493492010374], [2.308312463780305, 48.84943628621101], [2.3081706167143112, 48.84952752019382], [2.308036353466648, 48.84961460504362], [2.307997999332544, 48.84963918849467], [2.308024416340514, 48.84966659012392], [2.308143580334693, 48.849767553513345], [2.308256534223552, 48.84986670373082], [2.308369489905019, 48.84996585384076], [2.308488655251988, 48.850066816859304], [2.308601611808863, 48.85016596673227], [2.3087207780631642, 48.850266929501494], [2.308833735495456, 48.85036607913748], [2.308952902657098, 48.85046704165738], [2.309065859602116, 48.8505661910485], [2.309185029033805, 48.850667153326924], [2.309189093576134, 48.85066946296798], [2.309387951999679, 48.850742173038704], [2.309592899383305, 48.85081831658783], [2.309791758938315, 48.850891025977695], [2.3099967061348, 48.85096716881706], [2.310029781001381, 48.85096974555505]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 14, "roussel_fabien": 13.0, "nb_emargement": 1127.0, "nb_procuration": 93.0, "nb_vote_blanc": 7.0, "jadot_yannick": 62.0, "le_pen_marine": 58.0, "nb_exprime": 1119.0, "nb_vote_nul": 1.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1367.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1127, "quartier_bv": "27", "geo_point_2d": [48.84846100912339, 2.311280678675644], "melenchon_jean_luc": 109.0, "poutou_philippe": 0.0, "macron_emmanuel": 550.0}, "geometry": {"type": "Point", "coordinates": [2.311280678675644, 48.84846100912339]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "693d42433fb1de112a23836eb3305765f1a4081e", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 151, "zemmour_eric": 172.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-64", "geo_shape": {"coordinates": [[[2.290814669979866, 48.86635571950642], [2.2908378571299393, 48.86634786797885], [2.291009445503388, 48.866273330227415], [2.2911806826236463, 48.8661986228686], [2.291352270014991, 48.866124084615606], [2.291523504789937, 48.866049376748194], [2.291695091199184, 48.86597483799368], [2.291866326355022, 48.86590012963378], [2.29203791178217, 48.86582559037772], [2.292209144604925, 48.86575088060993], [2.292380729037759, 48.86567634175166], [2.292551962241297, 48.865601631491394], [2.292555777544837, 48.865599138562565], [2.292662880770998, 48.86549403325399], [2.292770202535857, 48.86538796053382], [2.292877303519956, 48.865282855904574], [2.292984624413179, 48.865176782971844], [2.2930917258936, 48.86507167813871], [2.293199045915094, 48.86496560499352], [2.293214411188536, 48.86496200660071], [2.293343843283029, 48.86498842306304], [2.293580038852279, 48.86503680668284], [2.293709471318013, 48.865063222747956], [2.29371109340123, 48.86506363073261], [2.293871869157224, 48.86511177101736], [2.294024746773524, 48.8651577177451], [2.294177623296615, 48.865203664267625], [2.294338399903598, 48.86525180481888], [2.294491278342402, 48.86529775094488], [2.294652055541874, 48.86534589017144], [2.294669787904723, 48.865341843277626], [2.294767945901226, 48.86521705865996], [2.2948621280723103, 48.86509632997689], [2.294875070299179, 48.86509146879804], [2.295066018470088, 48.865099084256514], [2.295271496205783, 48.8651072355403], [2.29546244449243, 48.86511485036617], [2.295667922352436, 48.86512300096922], [2.295858869391733, 48.86513061515453], [2.296064348738913, 48.86513876508489], [2.29625529589403, 48.86514637863758], [2.296460775353254, 48.86515452878655], [2.296651722623981, 48.865162141706705], [2.296857202219635, 48.86517029027559], [2.297048149606059, 48.86517790256319], [2.2972536279627, 48.865186050443405], [2.297444576827995, 48.865193662106435], [2.297650055308794, 48.86520180930593], [2.297841002926689, 48.86520942032834], [2.298046482894716, 48.865217566855144], [2.29823743062818, 48.865225177245], [2.298442910720345, 48.86523332309107], [2.298633858569571, 48.86524093284831], [2.298839338785864, 48.86524907801368], [2.299030286750639, 48.8652566871384], [2.29923576709115, 48.86526483162303], [2.299426715171567, 48.86527244011514], [2.299632194273002, 48.86528058391109], [2.299823143832235, 48.86528819177859], [2.299877844092862, 48.865307021284764], [2.29990771560988, 48.86530648104196], [2.299940450916901, 48.86527674308364], [2.300102268103829, 48.86514424495269], [2.300197872002462, 48.86505739174665], [2.300201415064743, 48.86505534665812], [2.300360735985361, 48.864989862975115], [2.300515301209168, 48.8649279774606], [2.300669866065856, 48.86486609174302], [2.300829185818853, 48.86480060742524], [2.300983749924673, 48.86473872129519], [2.301143068893595, 48.86467323655204], [2.301234120349473, 48.864608917897286], [2.301393438606619, 48.864543432813214], [2.30148448816346, 48.864479113952484], [2.301573456972186, 48.864466982034614], [2.301547902015804, 48.864360436226434], [2.301556603295435, 48.864219897940494], [2.301566205738245, 48.86408626021201], [2.301574906922705, 48.86394572188996], [2.301584507904985, 48.863812084118976], [2.301594110201049, 48.86367844633903], [2.301602811254177, 48.86353790706394], [2.3016141732220072, 48.86349090316266], [2.30160396856984, 48.86348116750056], [2.301415807920899, 48.86347027808769], [2.3012760719668712, 48.86346478661557], [2.301087911445633, 48.86345389668704], [2.300948175570107, 48.86344840483194], [2.30094764977366, 48.86344837747824], [2.300771125976237, 48.863436902992476], [2.300582965649289, 48.86342601316909], [2.300406442007967, 48.86341453814522], [2.300218281837925, 48.86340364774828], [2.300041759715746, 48.86339217219424], [2.299860372218312, 48.86336896736248], [2.299858376972076, 48.863368738046944], [2.299670330220926, 48.86333746546271], [2.299488943079405, 48.86331426006687], [2.299300896734561, 48.8632829877999], [2.29911950995937, 48.86325978094375], [2.298931464033029, 48.86322850809475], [2.29874940686515, 48.86318566211581], [2.298748040689884, 48.863185383406034], [2.298540395164608, 48.86313507184539], [2.298358340007893, 48.863092225275956], [2.29817628513862, 48.86304937932719], [2.297968640707572, 48.86299906676841], [2.297786586496355, 48.862956219323955], [2.297578944175977, 48.86290590609278], [2.29757759169981, 48.86290552222578], [2.297418267774614, 48.86284893602696], [2.297250434337762, 48.862794068667206], [2.297091112471767, 48.86273748203512], [2.296923279738405, 48.862682614211096], [2.296763958568591, 48.86262602713782], [2.296596126538925, 48.862571158849455], [2.296436806065291, 48.862514571335005], [2.296268974739122, 48.862459702582335], [2.296268030620772, 48.862459362471704], [2.29610870948238, 48.862402774506755], [2.29597549213418, 48.862350200808976], [2.295816171635205, 48.86229361334827], [2.295682954861441, 48.86224103931974], [2.295682149823254, 48.862240696425445], [2.295535925928925, 48.86217044175866], [2.295386105851878, 48.86210145270611], [2.295239882747572, 48.8620311976688], [2.295090063462966, 48.861962208236996], [2.294943839785687, 48.86189195282104], [2.294794021281349, 48.861822963909276], [2.294647799769256, 48.86175270723158], [2.294497982057247, 48.861683717940515], [2.294351761322995, 48.86161346179158], [2.294201944415699, 48.861544471222], [2.294199633147496, 48.861543126548575], [2.294134071945184, 48.861495261232704], [2.294133465340643, 48.861491742983766], [2.294102530981856, 48.86145891311077], [2.2940323728441028, 48.861407692113715], [2.293907157986785, 48.861323480838614], [2.293771439695186, 48.86122439419454], [2.293646225700159, 48.861140182632475], [2.293510508382301, 48.86104109567613], [2.293385293898888, 48.860956882919794], [2.293260081170926, 48.86087267093342], [2.293124365284309, 48.86077358351523], [2.293115961661671, 48.86076417160578], [2.293083494676486, 48.86075165328274], [2.292947779428746, 48.86065256655281], [2.292805128567932, 48.86054792743128], [2.292669414392489, 48.86044883946816], [2.292526765999185, 48.86034420090297], [2.292391052883823, 48.86024511260597], [2.2922484042444218, 48.86014047368171], [2.292112692189132, 48.86004138505083], [2.29197004604184, 48.859936744884315], [2.291940660877831, 48.859933008679214], [2.291882269274642, 48.85996436181704], [2.291747796232804, 48.86005024579555], [2.291605586964033, 48.8601396803416], [2.291471113013507, 48.86022556399562], [2.291328904141877, 48.86031499910607], [2.291194429282858, 48.86040088243564], [2.291052218107128, 48.86049031629581], [2.290917742339409, 48.86057619930088], [2.290775530197947, 48.860665633717396], [2.290641054884583, 48.86075151640607], [2.290498841789622, 48.86084095047962], [2.290364364216933, 48.86092683193646], [2.290222150168465, 48.86101626566709], [2.290087671674911, 48.86110214769869], [2.289945458035902, 48.86119158109445], [2.289907378035339, 48.861193794194264], [2.289874370421194, 48.86121597514978], [2.28973215474225, 48.86130540827479], [2.2895893904478513, 48.86139765294594], [2.289447175146873, 48.86148708572578], [2.289304409850068, 48.86157933004186], [2.289162192213158, 48.86166876156098], [2.289019425913938, 48.861761005521956], [2.288877208642724, 48.86185043759514], [2.2887344413409823, 48.861942681201036], [2.288592221721645, 48.86203211291277], [2.288449454780571, 48.862124356171684], [2.288307234188379, 48.86221378663085], [2.288185613161493, 48.862292366438716], [2.288164464881774, 48.86230602952657], [2.28817834667097, 48.86232607592934], [2.288227622220286, 48.86235402410616], [2.288351781707818, 48.86245204456981], [2.288476858065991, 48.86255063423844], [2.288601017115715, 48.86264865531732], [2.288726094417555, 48.86274724470801], [2.288850254417043, 48.86284526461164], [2.288975332650283, 48.86294385462366], [2.289099494950284, 48.86304187425941], [2.289224574139484, 48.86314046309415], [2.289348736013964, 48.863238482445844], [2.2894738161345902, 48.86333707190189], [2.289597978946578, 48.863435090977646], [2.289723060023168, 48.86353367925639], [2.289847223760413, 48.86363169895541], [2.289972305780711, 48.863730286956226], [2.289975171209769, 48.863737978122316], [2.289942406086895, 48.86383696150815], [2.289909099439936, 48.8639370622556], [2.2899123384445073, 48.86394504792749], [2.290023312151392, 48.86402538613736], [2.290138735034954, 48.864109658306944], [2.29013797487544, 48.86412222852591], [2.289996488600153, 48.86421030358432], [2.289855723624054, 48.864297728923056], [2.289714235044162, 48.86438580272643], [2.289573469120202, 48.86447322771939], [2.289431980937391, 48.86456130208248], [2.289291212714767, 48.86464872582222], [2.2891497235780323, 48.86473679983772], [2.289008955770603, 48.864824223239665], [2.289005379831309, 48.86483363978207], [2.289045185642932, 48.864913325786986], [2.289092802618863, 48.86500668692876], [2.289105065321306, 48.865012801605346], [2.289272097184155, 48.865018119515554], [2.289436044428899, 48.86502292423592], [2.289445612462457, 48.86502592191821], [2.289564468515438, 48.865113833926685], [2.289682750373554, 48.86520109756574], [2.28980160723853, 48.86528900842552], [2.289919889891702, 48.865376271816345], [2.290038747544259, 48.86546418332601], [2.290157030992394, 48.86555144646869], [2.290275890820142, 48.8656393568377], [2.290394175063144, 48.86572661973224], [2.290396503363718, 48.86572902220989], [2.290463841293444, 48.865831236825144], [2.290541943206534, 48.86594966571904], [2.290609280343832, 48.866051880224], [2.290687382918454, 48.86617030899934], [2.290754721989325, 48.8662725234102], [2.290808408653191, 48.86635392957341], [2.290814669979866, 48.86635571950642]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 64, "roussel_fabien": 2.0, "nb_emargement": 993.0, "nb_procuration": 56.0, "nb_vote_blanc": 10.0, "jadot_yannick": 25.0, "le_pen_marine": 56.0, "nb_exprime": 981.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 3, "nb_inscrit": 1298.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 992, "quartier_bv": "64", "geo_point_2d": [48.86343575928678, 2.293991110625479], "melenchon_jean_luc": 102.0, "poutou_philippe": 3.0, "macron_emmanuel": 450.0}, "geometry": {"type": "Point", "coordinates": [2.293991110625479, 48.86343575928678]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "88d27b117d2c908203c3bc95e894908030701494", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 88, "zemmour_eric": 85.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "4-9", "geo_shape": {"coordinates": [[[2.357370736444245, 48.852774739702326], [2.357393354819877, 48.85276671483216], [2.357529570124974, 48.852719925357626], [2.35769904285254, 48.852661369042], [2.3578702244696, 48.85260256803854], [2.358039696421601, 48.852544012133585], [2.358210875917051, 48.852485209729934], [2.358380348467327, 48.85242665334362], [2.358551527192839, 48.85236785044644], [2.358720997615879, 48.852309293564154], [2.358721925939351, 48.85230894149599], [2.358893167071353, 48.852242344640096], [2.359047181993634, 48.85217850081703], [2.359218422292355, 48.8521119025885], [2.359372436430598, 48.85204805833931], [2.359526450191344, 48.85198421388819], [2.359697689228128, 48.851917615861474], [2.359851702204841, 48.8518537709842], [2.360022940408331, 48.85178717158488], [2.360036046855992, 48.851786698477], [2.360068136135933, 48.85175512649506], [2.360152089271941, 48.85167152541351], [2.360269201664453, 48.8515954807685], [2.360272271065576, 48.85159245286472], [2.360326106337272, 48.85150492232225], [2.3604100586453782, 48.85142132194014], [2.36041066949046, 48.85142007510256], [2.36043340827373, 48.851327649462156], [2.360491354086836, 48.851171197162884], [2.360514093981119, 48.85107877149372], [2.360514482410185, 48.85107654766647], [2.36051245338859, 48.8509409446781], [2.360508319861463, 48.85080315218703], [2.360506290866548, 48.85066754916522], [2.360503422529474, 48.85057191348652], [2.360507046667604, 48.85056021066022], [2.360504516760828, 48.85055215330463], [2.360503251608353, 48.85050999645742], [2.360503465509908, 48.85050822407197], [2.360533249032636, 48.850377058485456], [2.360565150261877, 48.85026020934363], [2.360594932124899, 48.85012904370524], [2.360626833075134, 48.85001219362165], [2.360658733871172, 48.84989534441657], [2.360688516652809, 48.849764178719155], [2.360720415796129, 48.84964732946433], [2.360771746234912, 48.84954369571929], [2.360772424177112, 48.84954208679589], [2.360838746527552, 48.849427294755365], [2.360909312481627, 48.84929891987392], [2.360975634221058, 48.84918412773244], [2.361046199508646, 48.84905575274227], [2.361112520637076, 48.848940960499824], [2.361183086620746, 48.848812585408155], [2.361249405775626, 48.84869779305747], [2.361319971092822, 48.84856941785704], [2.361386290999373, 48.84845462541272], [2.361456854287451, 48.848326250096214], [2.361425789089392, 48.848302737884964], [2.3613143302107362, 48.84833308081647], [2.361163453142528, 48.84841279382539], [2.361022931093069, 48.848491602330746], [2.360872053120183, 48.84857131496084], [2.360731530191468, 48.84865012401205], [2.360580651313999, 48.84872983626335], [2.360440128879809, 48.848808644968315], [2.36029960466898, 48.848887452596095], [2.360148724443709, 48.84896716428573], [2.360008199353702, 48.84904597245931], [2.359857318223634, 48.84912568377013], [2.359716793628254, 48.84920449159754], [2.359565910230818, 48.84928420252219], [2.359564622756749, 48.84928484226782], [2.3594422658696113, 48.849338441823456], [2.359291381664525, 48.84941815239232], [2.359169024172383, 48.84947175256142], [2.359110435263862, 48.84950270485916], [2.359108957947146, 48.84950326713762], [2.3589311649688662, 48.849561515662415], [2.358763312578664, 48.84961723784535], [2.358585517462515, 48.84967548584321], [2.358417664335724, 48.849731207535534], [2.35824981084987, 48.8497869289896], [2.35807201594349, 48.849845176222864], [2.357904161720949, 48.8499008971863], [2.357726364676699, 48.849959143892605], [2.357558509717472, 48.850014864365455], [2.357380711898037, 48.85007311055219], [2.357212856202225, 48.85012883053439], [2.357035058981297, 48.85018707530955], [2.356867202537708, 48.8502427957004], [2.356689403178911, 48.850301039948654], [2.356521545998634, 48.85035675984889], [2.356343747227365, 48.85041500358483], [2.356175889321514, 48.85047072209513], [2.355998088401363, 48.85052896620346], [2.355780162249546, 48.85059255742058], [2.355602361834103, 48.85065080094177], [2.355563500841131, 48.85065323304556], [2.355539877952233, 48.85066903429558], [2.355547372646207, 48.85068979671758], [2.355587032976679, 48.8507235616924], [2.355681284497488, 48.85083252437122], [2.355776714727579, 48.85094284953757], [2.3558709684042523, 48.85105181205288], [2.355966399448631, 48.85116213614683], [2.356060652555945, 48.8512710984839], [2.356156085755011, 48.851381423311516], [2.356250339655592, 48.85149038547768], [2.356345773657955, 48.851600710132175], [2.356440028351814, 48.851709672127456], [2.356535461805647, 48.85181999570235], [2.356530144176079, 48.851832353016626], [2.356350667402904, 48.85189684090093], [2.356174293457991, 48.85196021292326], [2.355994815803957, 48.852024700266384], [2.3558184409935192, 48.852088071756874], [2.355638962458828, 48.85215255855883], [2.355462586782763, 48.85221592951751], [2.355283107367315, 48.85228041577827], [2.355106730825727, 48.85234378620509], [2.354930355218007, 48.85240715637568], [2.354750873122514, 48.85247164181968], [2.354574496649172, 48.852535011458464], [2.3543950136840612, 48.852599495461895], [2.35421863633406, 48.85266286546812], [2.354039153850959, 48.85272734893771], [2.353862774272672, 48.85279071840471], [2.353683290908824, 48.85285520133315], [2.353664476472079, 48.852851178519884], [2.353614453972541, 48.8527820519516], [2.353563504399817, 48.85271164596384], [2.353543103583725, 48.85270829087442], [2.353480559432934, 48.85273881248547], [2.353437274161562, 48.85275993465812], [2.353431777661918, 48.8527677491237], [2.353444142075873, 48.85289333339274], [2.353456022353587, 48.85301400635609], [2.353467902686325, 48.85313467930518], [2.35348026727441, 48.853260263529016], [2.353487312523137, 48.85326756567629], [2.353605260403886, 48.85331025669307], [2.353837276414777, 48.85339423421244], [2.35395522486886, 48.853436924879404], [2.353959699551047, 48.85343952658663], [2.354063532681261, 48.853533928403785], [2.35416607110807, 48.85362715037585], [2.354268608527835, 48.85372037314418], [2.354372442788466, 48.853814773770154], [2.35441391410003, 48.853856720324806], [2.35442549082582, 48.85385359188002], [2.354526365906465, 48.853810437415454], [2.354664219443946, 48.85375009780873], [2.354837390871809, 48.85367601299692], [2.354975243693502, 48.85361567302453], [2.355113096195931, 48.85355533289008], [2.355286266338328, 48.85348124741567], [2.355287507050424, 48.853480764852534], [2.355458692717743, 48.8534219673351], [2.355628614854759, 48.85336513594873], [2.355799799757312, 48.85330633793719], [2.355969721134021, 48.85324950695982], [2.356140905282922, 48.85319070755482], [2.356310825910647, 48.853133876087185], [2.356482010646337, 48.85307507709472], [2.356651930524975, 48.85301824513676], [2.356823113144328, 48.852959444743576], [2.356993032273776, 48.85290261229529], [2.357164214117259, 48.85284381230726], [2.357334132497721, 48.85278697936872], [2.357369098227982, 48.85277496833319], [2.357370736444245, 48.852774739702326]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 9, "roussel_fabien": 22.0, "nb_emargement": 918.0, "nb_procuration": 72.0, "nb_vote_blanc": 6.0, "jadot_yannick": 55.0, "le_pen_marine": 44.0, "nb_exprime": 911.0, "nb_vote_nul": 1.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1128.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 918, "quartier_bv": "16", "geo_point_2d": [48.85132007246511, 2.3577817666186016], "melenchon_jean_luc": 162.0, "poutou_philippe": 1.0, "macron_emmanuel": 425.0}, "geometry": {"type": "Point", "coordinates": [2.3577817666186016, 48.85132007246511]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "677eded29dc95e078be2165023fcc12f1c592dac", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 25, "zemmour_eric": 74.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-41", "geo_shape": {"coordinates": [[[2.388367632499064, 48.86099808145293], [2.3883732734750662, 48.86099384109565], [2.388407045981393, 48.86092332433151], [2.388473149669099, 48.860787427647814], [2.388533552553911, 48.8606613082377], [2.388599655579203, 48.86052541145201], [2.388660056501601, 48.86039929104204], [2.388726158864491, 48.860263394154316], [2.388786560529212, 48.86013727455697], [2.38885266222981, 48.86000137756726], [2.388913061921595, 48.85987525786928], [2.388928882507698, 48.85984154755812], [2.38893891453657, 48.859835365422676], [2.38894395319524, 48.859822963998894], [2.388991853796004, 48.85972089276664], [2.38905113232271, 48.85959664238117], [2.389114852845068, 48.85946086163714], [2.389174130782499, 48.859336611161595], [2.38923784930336, 48.85920083031333], [2.389297126651731, 48.859076579747715], [2.389356403717379, 48.85895232913884], [2.389420122666735, 48.85881654725414], [2.389479397769769, 48.85869229744758], [2.389543116080488, 48.85855651546554], [2.38954719064871, 48.8585523902651], [2.389567331877246, 48.85854082938844], [2.389597863064381, 48.85851100362255], [2.389598673415337, 48.8585100094817], [2.389571045106789, 48.85848006241772], [2.389489736796479, 48.85844400563778], [2.389422272138974, 48.85841389576541], [2.389418702079555, 48.858412769555045], [2.389235518473449, 48.8583753275799], [2.389055876595807, 48.85833889178538], [2.388876234969517, 48.85830245572002], [2.388693052141085, 48.85826501291077], [2.388513411023144, 48.85822857629833], [2.388330228715196, 48.85819113293115], [2.3881505881058143, 48.858154695771624], [2.387967407681161, 48.85811725185354], [2.387787766217333, 48.85808081413999], [2.387604586313275, 48.85804336966401], [2.387587747532915, 48.85804888102377], [2.387516384869477, 48.85817809096899], [2.387444718202674, 48.858307275919316], [2.387373354830525, 48.858436485749166], [2.387301687453769, 48.85856567058372], [2.387230323362422, 48.85869488119749], [2.3871586552756012, 48.858824065916295], [2.3870872918491273, 48.8589532755224], [2.387015621689303, 48.85908246011848], [2.386944257554195, 48.85921166960915], [2.38687258668428, 48.85934085408953], [2.386854917004332, 48.85934616232968], [2.386699009019588, 48.85930679945548], [2.386547383892811, 48.859268354978525], [2.386391475010403, 48.859228991693904], [2.386239850336981, 48.85919054682463], [2.386216936517382, 48.85918862431363], [2.386207236931003, 48.859204055905224], [2.386084839929586, 48.85930828369593], [2.385961493012058, 48.859413386939515], [2.385839095027177, 48.85951761445916], [2.3857157471077333, 48.85962271832891], [2.385593348139578, 48.85972694557759], [2.38546999923931, 48.8598320482749], [2.385347599287772, 48.85993627525253], [2.385224249385561, 48.860041378576014], [2.385101848450628, 48.86014560528263], [2.384978497567786, 48.860250707433664], [2.384856095649351, 48.86035493386923], [2.384732743764537, 48.86046003664644], [2.384610340862789, 48.860564262810996], [2.384486987997131, 48.860669364415735], [2.384492560389637, 48.86068318273196], [2.384660736964222, 48.86072864880562], [2.384867758945755, 48.8607850857697], [2.385035936165981, 48.86083055221118], [2.385242958969472, 48.86088698762176], [2.385411136846159, 48.8609324535318], [2.385618160460979, 48.86098888828809], [2.38573873516655, 48.86102148433482], [2.385743060220355, 48.86102656085084], [2.385765144635744, 48.86102987946767], [2.38581274711443, 48.861042748781976], [2.385872674336483, 48.86105907994762], [2.385890637241901, 48.86105393074721], [2.385962760049083, 48.86092728550054], [2.386034420838673, 48.86080257231784], [2.386106542948389, 48.86067592695581], [2.3861782030586722, 48.86055121275948], [2.386195025043015, 48.86054582023296], [2.386373394154848, 48.860582710561715], [2.386548878259691, 48.86061922969275], [2.386727247862808, 48.86065612039097], [2.386902732462937, 48.86069263900068], [2.387081102578508, 48.86072952826977], [2.387256586310939, 48.86076604635124], [2.387434958280773, 48.86080293599672], [2.387610442508478, 48.860839453556885], [2.387788814980177, 48.860876342672526], [2.387964299713715, 48.86091285881213], [2.388142672687273, 48.86094974739789], [2.388318157905506, 48.86098626391544], [2.388367632499064, 48.86099808145293]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 41, "roussel_fabien": 38.0, "nb_emargement": 1352.0, "nb_procuration": 97.0, "nb_vote_blanc": 15.0, "jadot_yannick": 116.0, "le_pen_marine": 98.0, "nb_exprime": 1334.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1771.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1352, "quartier_bv": "43", "geo_point_2d": [48.85969256452953, 2.3873785418586295], "melenchon_jean_luc": 554.0, "poutou_philippe": 8.0, "macron_emmanuel": 360.0}, "geometry": {"type": "Point", "coordinates": [2.3873785418586295, 48.85969256452953]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ac2d192125a8652f366f8018a97d0412a6a27c90", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 112, "zemmour_eric": 109.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "15-87", "geo_shape": {"coordinates": [[[2.28588364888986, 48.840291186649665], [2.28589501729257, 48.840276698198544], [2.286047058285082, 48.84018771991363], [2.286199121742056, 48.840098853986895], [2.286351161696547, 48.84000987530127], [2.286503225490911, 48.83992100808263], [2.286655264395177, 48.839832029895646], [2.286807327152196, 48.83974316227631], [2.28695936503096, 48.83965418278934], [2.287111425388232, 48.83956531476117], [2.287263462216695, 48.83947633577284], [2.287415522899043, 48.83938746735206], [2.287567558702007, 48.83929848706377], [2.287719618347027, 48.839209618242315], [2.287871653099709, 48.83912063845269], [2.288023710345016, 48.83903176922238], [2.288175744072204, 48.838942788132805], [2.288327801630312, 48.83885391940927], [2.28847983431952, 48.83876493791903], [2.288631889490214, 48.838676067887384], [2.288783921141548, 48.838587085996515], [2.288935976625058, 48.83849821647157], [2.288963009668845, 48.83846713118385], [2.288960237344043, 48.83846441299093], [2.288919094581784, 48.83845365386194], [2.288757896296041, 48.838412977423], [2.288550165606744, 48.838358656643784], [2.288388967902698, 48.83831797970424], [2.288181237988661, 48.83826365738043], [2.288070880223395, 48.838235809889994], [2.2880549057313813, 48.838229898572436], [2.2880406817655983, 48.83823018895071], [2.287989842409154, 48.83821735988741], [2.287820060143054, 48.83817143989441], [2.287658864937846, 48.8381307628716], [2.287599385993812, 48.83811467592664], [2.287577026453004, 48.8381185818397], [2.287561185376247, 48.83814936654369], [2.287413352750509, 48.838168532971764], [2.287323980977667, 48.83818078330953], [2.287315997752496, 48.838180227599935], [2.287155460507849, 48.83813490226273], [2.286994822320081, 48.838089307192476], [2.286834285622441, 48.83804398231982], [2.286673649358086, 48.837998386822676], [2.286664195588752, 48.83799806602978], [2.286480709649611, 48.838035992746725], [2.286298905022004, 48.838073598245074], [2.286115418563503, 48.83811152349984], [2.285933613409011, 48.83814912844047], [2.285750126406522, 48.83818705403165], [2.28556832073727, 48.838224657515255], [2.285384833203216, 48.83826258254355], [2.285203026994662, 48.83830018636873], [2.285019537578806, 48.83833810992664], [2.28483773084338, 48.838375713194075], [2.284655923845536, 48.83841331618392], [2.28447243499576, 48.83845123890694], [2.2842906274710533, 48.83848884133904], [2.284107138077287, 48.838526764398495], [2.283925330037974, 48.83856436537356], [2.283741840112569, 48.838602287870096], [2.283560031533848, 48.8386398891867], [2.28337654108917, 48.83867781022103], [2.283369270501305, 48.83868140912152], [2.283264778775721, 48.838785017627835], [2.28316224023168, 48.83888606463657], [2.283059699927578, 48.838987111540064], [2.282955206986164, 48.83909071884832], [2.2829453585300348, 48.83910431767734], [2.282948940452993, 48.83910937203535], [2.283107034276703, 48.83917044084004], [2.283260368427351, 48.83922949239972], [2.283418462967913, 48.83929056168558], [2.283571797824656, 48.83934961283971], [2.283729894469205, 48.83941068081625], [2.283883230032245, 48.83946973156485], [2.284041326031255, 48.83953080001438], [2.284194662300392, 48.83958985035743], [2.284195188027961, 48.83959006305694], [2.284346501481689, 48.839654560280835], [2.284497484520254, 48.83971873785287], [2.284648798721497, 48.83978323468697], [2.284799782505112, 48.83984741187008], [2.284951096091557, 48.83991190830617], [2.285102081994769, 48.83997608420921], [2.285253396316596, 48.8400405811548], [2.285404381602335, 48.84010475666075], [2.285404782652883, 48.840104920943325], [2.285577530250969, 48.840172880370574], [2.285801062074993, 48.840262502816664], [2.285857345263857, 48.84028464408702], [2.28588364888986, 48.840291186649665]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 87, "roussel_fabien": 13.0, "nb_emargement": 1217.0, "nb_procuration": 80.0, "nb_vote_blanc": 17.0, "jadot_yannick": 89.0, "le_pen_marine": 63.0, "nb_exprime": 1199.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1513.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1217, "quartier_bv": "60", "geo_point_2d": [48.839001529893906, 2.2859062064989066], "melenchon_jean_luc": 277.0, "poutou_philippe": 4.0, "macron_emmanuel": 477.0}, "geometry": {"type": "Point", "coordinates": [2.2859062064989066, 48.839001529893906]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9253b820a49c1e150dd80fb736aad7bb5b135694", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 101, "zemmour_eric": 87.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-8", "geo_shape": {"coordinates": [[[2.325145239128845, 48.82981880993274], [2.325158358653006, 48.829827451411354], [2.325377856702126, 48.82982947220993], [2.325594906430456, 48.8298304705999], [2.325814403147044, 48.829832490589645], [2.326031452884771, 48.8298334890867], [2.326044535851528, 48.82984475913493], [2.325992391397448, 48.82997631368044], [2.32594699917579, 48.83009997735472], [2.325950884074588, 48.83010863325018], [2.3261152769802083, 48.830211153045305], [2.326275495156415, 48.830310727914885], [2.326435715306947, 48.83041030256868], [2.326600110117291, 48.830512821669785], [2.326760330158295, 48.83061239496377], [2.326924726244294, 48.830714913600204], [2.326939685577617, 48.83071657259129], [2.327128592024886, 48.830660261742075], [2.327306131212262, 48.83060734385412], [2.327483670027707, 48.83055442659946], [2.32767257531142, 48.8304981139836], [2.327850113382807, 48.8304451961798], [2.32803901651281, 48.83038888297203], [2.328216555202411, 48.83033596462678], [2.328405457540673, 48.83027965083473], [2.328582995497993, 48.83022673104108], [2.32877189703303, 48.83017041756411], [2.328823718124933, 48.8301549711331], [2.328849615252271, 48.83015130491316], [2.3288526254293282, 48.83014741941851], [2.328978340149513, 48.8301099454685], [2.3290825859135103, 48.83008188072678], [2.32910550279076, 48.83007543215561], [2.329097755675914, 48.830055642025144], [2.329070107721382, 48.83001880142924], [2.328963659459105, 48.82987964652786], [2.328888075513197, 48.829778930417596], [2.328887612800788, 48.829778366611094], [2.328780828518992, 48.8296584022912], [2.328669984258603, 48.82953534460365], [2.328563200986962, 48.829415379164125], [2.328452356394938, 48.82929232124051], [2.328345574110178, 48.82917235648001], [2.328234731910698, 48.829049298335704], [2.328127950636075, 48.82892933245555], [2.328017108104846, 48.82880627407521], [2.328018032419751, 48.828803997552214], [2.328000353495874, 48.828785095864006], [2.327999921527612, 48.82878457899379], [2.327909186966423, 48.828666920010974], [2.327817669040728, 48.82855003989836], [2.327726935310648, 48.82843237985333], [2.327635418205264, 48.82831549957681], [2.327544685294689, 48.828197839368954], [2.327453169009606, 48.828080958928496], [2.32736165448537, 48.82796407931283], [2.327270921442129, 48.827846418852744], [2.327270147111252, 48.82784519943906], [2.327226795020061, 48.827757213271106], [2.327161660984375, 48.82762908046404], [2.327118309256083, 48.82754109423982], [2.32709268090544, 48.827490678462965], [2.327084538232389, 48.82746827413342], [2.327077755209168, 48.82746643361507], [2.327038248727775, 48.827388717386164], [2.326986638321158, 48.82728682251916], [2.326921504101389, 48.82715868951993], [2.326869892788464, 48.82705679457398], [2.326804759142996, 48.82692866148491], [2.326753149636523, 48.826826767374634], [2.326752071278905, 48.82681396765774], [2.326737061897914, 48.82680825485454], [2.326569031674085, 48.82673634337414], [2.326389270796648, 48.82666065654217], [2.326221241528127, 48.82658874456365], [2.32604148165297, 48.82651305809827], [2.326022497602807, 48.82651599190681], [2.325912321986801, 48.82663648115503], [2.325795753136536, 48.826759297813815], [2.325685576482343, 48.82687978682707], [2.32556900655393, 48.827002603238235], [2.325547587918722, 48.82700660519256], [2.32554085924852, 48.82702521044197], [2.325536845190479, 48.827027930005805], [2.325388864710996, 48.827092720218346], [2.325236399828746, 48.82715865143663], [2.325235104940891, 48.8271615572141], [2.325248290115483, 48.827177284372986], [2.325416110020808, 48.827256051550975], [2.325583673370453, 48.82733436734962], [2.325751494288121, 48.82741313404596], [2.325919060020059, 48.8274914484721], [2.326086880587974, 48.82757021467911], [2.326254447316957, 48.82764852952369], [2.326422270259322, 48.827727295256736], [2.326589836646599, 48.827805608713426], [2.3265944771280083, 48.82781650740953], [2.326519066520329, 48.827932089772204], [2.326443082230774, 48.828041652016566], [2.326442182260438, 48.828043410625455], [2.326400795216976, 48.82816167398647], [2.326360800486256, 48.828278329884185], [2.326320805588172, 48.828394984857056], [2.326279417990374, 48.828513248139004], [2.326239422718347, 48.828629903959545], [2.326198034749338, 48.828748167188536], [2.326158039114981, 48.828864822957435], [2.326116650774859, 48.82898308613351], [2.326076654778273, 48.82909974185076], [2.32603526606703, 48.829218004973875], [2.326031608164291, 48.82922235172881], [2.32589518516628, 48.829313014288736], [2.325750476805491, 48.82940819341003], [2.325614054194308, 48.82949885564194], [2.325469344804409, 48.82959403440727], [2.325332919855952, 48.82968469629582], [2.325188209437034, 48.82977987470522], [2.325157980240595, 48.82979996346635], [2.325145239128845, 48.82981880993274]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 8, "roussel_fabien": 19.0, "nb_emargement": 1235.0, "nb_procuration": 72.0, "nb_vote_blanc": 12.0, "jadot_yannick": 115.0, "le_pen_marine": 63.0, "nb_exprime": 1223.0, "nb_vote_nul": 0.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1476.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1235, "quartier_bv": "55", "geo_point_2d": [48.82898057271805, 2.32701730514767], "melenchon_jean_luc": 277.0, "poutou_philippe": 10.0, "macron_emmanuel": 490.0}, "geometry": {"type": "Point", "coordinates": [2.32701730514767, 48.82898057271805]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d18c829945fc8191634bc9e549bcc194ac22a166", "fields": {"lassalle_jean": 31.0, "pecresse_valerie": 78, "zemmour_eric": 105.0, "hidalgo_anne": 59.0, "dupont_aignan_nicolas": 26.0, "date_tour": "2022-04-10", "id_bvote": "13-34", "geo_shape": {"coordinates": [[[2.375057408421863, 48.8274444972208], [2.375044874769543, 48.82748270812028], [2.375009082039166, 48.827601937952245], [2.374965748159088, 48.82773786926591], [2.374929956434789, 48.8278570990542], [2.374886622136318, 48.82799303030827], [2.374850828693662, 48.82811226003865], [2.374807493976788, 48.82824819123315], [2.374771701540111, 48.82836742091979], [2.37472836640483, 48.82850335205472], [2.374692572249977, 48.828622581683426], [2.374649236696281, 48.82875851275877], [2.374613443547308, 48.82887774234382], [2.3745701075751953, 48.829013673359505], [2.374534312708021, 48.82913290288662], [2.374511043894019, 48.829151484517155], [2.374546112621279, 48.82917646538546], [2.374646217997311, 48.82922354571551], [2.374826612719927, 48.829307859644594], [2.374969238806877, 48.82937493643014], [2.375149633224385, 48.82945924895424], [2.37529226014122, 48.8295263253455], [2.375434886062918, 48.82959340155553], [2.375615283351609, 48.82967771336795], [2.375619388808137, 48.82968933848234], [2.375530565243396, 48.82979757716595], [2.375440552986186, 48.82990198814196], [2.375351727314983, 48.83001022756443], [2.375261714332429, 48.8301146383861], [2.375172889289663, 48.83022287766227], [2.375082875581763, 48.83032728832955], [2.374994048443279, 48.830435527445246], [2.374904034010021, 48.83053993795811], [2.37481520749997, 48.83064817692757], [2.374725192341348, 48.830752587286014], [2.374636363746339, 48.8308608251957], [2.374546347862347, 48.830965235399745], [2.374542135276389, 48.830968341377925], [2.374387600250694, 48.83103909957744], [2.374237725089805, 48.831109177749454], [2.374083189222647, 48.831179936446055], [2.373933313247751, 48.83125001422784], [2.3737787765607212, 48.83132077162291], [2.373628899771615, 48.83139084901441], [2.373474362253916, 48.83146160600727], [2.373324484650698, 48.8315316830085], [2.373169947653726, 48.831602440505584], [2.373016096176936, 48.83166577620095], [2.373015529223083, 48.83166602325356], [2.373007730535271, 48.831693517462575], [2.373061568152977, 48.83174434154157], [2.373106914741452, 48.83178893882404], [2.373103431072328, 48.83180131297331], [2.372936294418531, 48.831878766472514], [2.372771022377031, 48.83195518894382], [2.372603883373682, 48.83203264196076], [2.372438610357031, 48.83210906396222], [2.372271471728674, 48.83218651651114], [2.372106196374642, 48.83226293803564], [2.371939056759155, 48.83234039010937], [2.371773780419021, 48.832416812063364], [2.371606639816293, 48.83249426366194], [2.371441363874171, 48.83257068425391], [2.371438539162217, 48.832572433970626], [2.371324387044664, 48.83267484860288], [2.371191811661992, 48.83278429465817], [2.371077658584935, 48.83288670993486], [2.370945082156302, 48.83299615479659], [2.370944023747709, 48.8329971619189], [2.370944593293155, 48.83303418202097], [2.370974621412833, 48.833042759835216], [2.371123873509052, 48.833128933417875], [2.371272812846253, 48.833215213085175], [2.371422065929161, 48.83330138628246], [2.371571004901311, 48.833387664658694], [2.371720258970911, 48.8334738374706], [2.37186920028064, 48.83356011636867], [2.37201845533694, 48.83364628879521], [2.372167396281509, 48.83373256640221], [2.37231665368678, 48.83381873845052], [2.372465595606893, 48.8339050165722], [2.372614852636607, 48.83399118822796], [2.3727637969159963, 48.83407746507289], [2.372913054921604, 48.83416363724258], [2.373061998824999, 48.83424991369571], [2.373211257828149, 48.83433608458067], [2.3733602040693, 48.83442236155566], [2.373509464059179, 48.83450853205523], [2.373658409935251, 48.83459480773908], [2.37380767227415, 48.834680977860394], [2.373956619125616, 48.83476725405897], [2.374105881088963, 48.83485342378773], [2.374254830299832, 48.83493969870943], [2.37440409324992, 48.83502586805275], [2.374553042074006, 48.83511214348207], [2.374702306010843, 48.83519831243998], [2.374851257194443, 48.83528458659237], [2.375000522118035, 48.835370755164895], [2.375149472914762, 48.83545702982488], [2.375298740187428, 48.83554319801905], [2.375447691970488, 48.83562947229435], [2.375596958867606, 48.83571564009602], [2.375745913010093, 48.83580191309445], [2.375895180893981, 48.835888080510664], [2.376044134649818, 48.83597435401661], [2.376193403520482, 48.83606052104739], [2.376342359635653, 48.836146793276484], [2.376491629493099, 48.836232959921816], [2.376640585221532, 48.836319232658425], [2.376717338813709, 48.83634439575531], [2.376746977637751, 48.836328570271846], [2.376805616449898, 48.836274911183175], [2.376884909427789, 48.8362029856276], [2.377000303378889, 48.83609739054136], [2.377079595818102, 48.83602546484533], [2.377080029415075, 48.83602509296737], [2.3772010409221602, 48.8359265788553], [2.377329716511427, 48.835823066265746], [2.377450727077723, 48.83572455188327], [2.377579403034672, 48.8356210390135], [2.37770041265998, 48.83552252436064], [2.377829086260184, 48.835419011196514], [2.377950094933989, 48.83532049717253], [2.378078768901884, 48.835216983728195], [2.378199776645555, 48.83511846853457], [2.378328448256632, 48.835014954795874], [2.378449455059446, 48.834916439331835], [2.378578127038323, 48.834812925312946], [2.37869913153799, 48.834714409571475], [2.378827802522372, 48.83461089526529], [2.378948807443495, 48.83451237926054], [2.379077476071203, 48.83440886466001], [2.379077561345562, 48.83440879675081], [2.37920417293334, 48.834307747284875], [2.379332841911031, 48.83420423239775], [2.379459453858668, 48.83410318354948], [2.379588120472928, 48.833999667462486], [2.379714731428757, 48.8338986183255], [2.37984339702057, 48.833795102844306], [2.3799700069954, 48.83369405251933], [2.380098672937544, 48.83359053675165], [2.380225280558517, 48.833489486130965], [2.380353945488828, 48.8333859700698], [2.380480553480381, 48.83328491916743], [2.380609216036615, 48.83318140280568], [2.380735823036391, 48.83308035161472], [2.380864484580918, 48.83297683495946], [2.380955884554687, 48.83290388368278], [2.380989544481681, 48.8328863286582], [2.380992355690572, 48.832882822183045], [2.381027561680352, 48.83285472286811], [2.381151452066276, 48.83275756760806], [2.38127805698558, 48.832656515804864], [2.381401947795732, 48.832559360275205], [2.381528550385948, 48.832458308181906], [2.381652440258196, 48.8323611523756], [2.381779043243604, 48.83226010000633], [2.381902930815825, 48.83216294391633], [2.382029532834301, 48.83206189126399], [2.382153420830759, 48.83196473490435], [2.38228002188241, 48.831863681969054], [2.382403907578767, 48.83176652532574], [2.3825305076634002, 48.83166547210741], [2.382654393784204, 48.831568315194495], [2.382780991539716, 48.83146726168613], [2.382904876722553, 48.83137010449653], [2.383031474862834, 48.83126905161148], [2.3830314996162683, 48.83126903195307], [2.383163910722886, 48.831164582312304], [2.383290507872483, 48.831063528235205], [2.38342291792765, 48.83095907918788], [2.383549514076129, 48.83085802481812], [2.383681923090398, 48.83075357546486], [2.383808518237766, 48.830652520802445], [2.383940926211045, 48.8305480711433], [2.384067520357414, 48.8304470161882], [2.384199927300437, 48.83034256532383], [2.38432652043509, 48.830241510975355], [2.384380899442515, 48.830198612166825], [2.384387661635174, 48.83018787972224], [2.384318420764528, 48.83012730420981], [2.384165177214071, 48.83006090981194], [2.384015694575218, 48.82999156846086], [2.383862450447131, 48.82992517366005], [2.383712968589508, 48.829855832821536], [2.383559725256597, 48.82978943672547], [2.383410244190827, 48.82972009550022], [2.383257002993884, 48.829653699914594], [2.383107522730605, 48.829584357403235], [2.38295428095614, 48.82951796141465], [2.382804801484716, 48.829448618516594], [2.382635102204226, 48.829375090608046], [2.382471656243115, 48.82930556366174], [2.38230195789815, 48.82923203527111], [2.382138512829835, 48.829162507860715], [2.381968815420392, 48.829088978988004], [2.381805371244872, 48.82901945111342], [2.3816419275053082, 48.828949923011166], [2.381472231488223, 48.828876393419925], [2.381308788641451, 48.828806864853505], [2.381139093559886, 48.82873333478021], [2.380975651605904, 48.8286638057497], [2.380805957459855, 48.82859027519432], [2.380642516398665, 48.82852074569964], [2.380472823188129, 48.828447214662226], [2.380453822251078, 48.8284499429553], [2.380351940626026, 48.828556806346455], [2.380260798236864, 48.82866045338168], [2.380158917166905, 48.828767316595396], [2.3800677740152762, 48.82887096436338], [2.38004872500498, 48.82887405478926], [2.379876486063545, 48.82880231027489], [2.3797070099502, 48.82873275631322], [2.379534771956545, 48.82866101039837], [2.379365296758432, 48.8285914559437], [2.379193059691052, 48.828519710426974], [2.379023585408166, 48.828450155479366], [2.378851349288677, 48.8283784085622], [2.378681875921022, 48.82830885312155], [2.378509642089917, 48.82823710660963], [2.378340168275364, 48.828167550668965], [2.378167935392156, 48.828095802756565], [2.377998462492835, 48.82802624632293], [2.377826230535969, 48.82795449880872], [2.377656758551876, 48.82788494188212], [2.377648755405543, 48.82788360244095], [2.377634535131715, 48.82788421555929], [2.377458957725673, 48.82789114064704], [2.377299337330481, 48.82789802265161], [2.377125495256255, 48.827905516594505], [2.376949917700117, 48.82791244183408], [2.376944329613654, 48.82791190817374], [2.37675777330801, 48.82786660875753], [2.376572579487694, 48.827818804202956], [2.376386023827362, 48.82777350510242], [2.376200830678645, 48.827725699968234], [2.376014275685346, 48.827680399384704], [2.375829083208235, 48.827632593670906], [2.375642528860246, 48.82758729340307], [2.375457337054744, 48.82753948710965], [2.375270783373808, 48.82749418535885], [2.375085592239923, 48.82744637848582], [2.375057408421863, 48.8274444972208]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 34, "roussel_fabien": 32.0, "nb_emargement": 1735.0, "nb_procuration": 67.0, "nb_vote_blanc": 23.0, "jadot_yannick": 113.0, "le_pen_marine": 85.0, "nb_exprime": 1706.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 2101.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1736, "quartier_bv": "50", "geo_point_2d": [48.83170185147815, 2.3775262236719406], "melenchon_jean_luc": 641.0, "poutou_philippe": 9.0, "macron_emmanuel": 520.0}, "geometry": {"type": "Point", "coordinates": [2.3775262236719406, 48.83170185147815]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "365d46d40701e9c1c1db63334a1eeefe36bcfdbb", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 34, "zemmour_eric": 112.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-51", "geo_shape": {"coordinates": [[[2.3711232160205, 48.88947551409239], [2.371142047420385, 48.88948983847836], [2.371198853481656, 48.88961574518359], [2.371254329082968, 48.88973981743675], [2.371311135699316, 48.88986572316074], [2.371366610470867, 48.88998979532651], [2.371423418995177, 48.89011570097569], [2.371478894300608, 48.89023977306116], [2.3715357033583, 48.890365679527704], [2.371591179208367, 48.890489750633606], [2.371647987446551, 48.890615657011026], [2.371703465183515, 48.89073972894306], [2.371760273976798, 48.89086563433929], [2.371815752247568, 48.89098970619105], [2.3718712307828342, 48.891113778003074], [2.37192804038989, 48.891239683276766], [2.3719835194590733, 48.891363755008506], [2.372040329610395, 48.89148966020021], [2.372095809213402, 48.89161373185167], [2.372152619898152, 48.89173963786069], [2.372208098671407, 48.891863709424676], [2.37226491127507, 48.891989614459575], [2.372320390582258, 48.89211368594329], [2.372377203730114, 48.89223959089623], [2.37237497948261, 48.89224760657113], [2.372257334253292, 48.89234940719373], [2.372139176619056, 48.8924524928335], [2.372021530454913, 48.89255429410469], [2.37190337188886, 48.89265737949251], [2.371785726164537, 48.89275918052016], [2.371667566666555, 48.892862265656014], [2.371549918665377, 48.89296406552658], [2.371431758224703, 48.89306715130978], [2.371314110663239, 48.89316895093683], [2.371195949301681, 48.893272035568835], [2.371078299441521, 48.89337383583727], [2.370960137148006, 48.893476920217346], [2.370842486363919, 48.89357872023505], [2.37072432313854, 48.89368180436319], [2.370606672805127, 48.893783603238106], [2.370488508637007, 48.89388668801355], [2.370370856015615, 48.893988486630576], [2.370252690926587, 48.8940915702548], [2.370257212772253, 48.89410494892012], [2.370483898243345, 48.89418372951547], [2.370696120067941, 48.894257207725076], [2.370703243965691, 48.89426373824259], [2.370720046191537, 48.894332447253426], [2.370729191743997, 48.894400565640765], [2.370752489105638, 48.89443326947462], [2.370772069494413, 48.894434062136376], [2.370827631397722, 48.894419508115234], [2.371014719654963, 48.89436896805227], [2.371193662975581, 48.89432209371901], [2.371380750527466, 48.894271553079726], [2.371559693183736, 48.89422467819537], [2.371746781383155, 48.89417413788615], [2.371925722022179, 48.89412726154429], [2.372104663691887, 48.89408038583946], [2.372291749479958, 48.894029844665084], [2.372470690496253, 48.89398296750989], [2.372657776942801, 48.89393242576634], [2.372836715930784, 48.8938855480529], [2.373023801672063, 48.89383500573303], [2.373202739984852, 48.893788128367774], [2.3733898250315812, 48.893737584572335], [2.373431545311992, 48.89373940365801], [2.373438450482027, 48.89368049122797], [2.373382545186105, 48.89355677796085], [2.373327569958048, 48.893436495026286], [2.373271665187575, 48.89331278167985], [2.373216690484124, 48.893192497768375], [2.373160786228268, 48.89306878524191], [2.373105812038593, 48.89294850125273], [2.3730508394667362, 48.89282821723225], [2.372994935995975, 48.89270450458728], [2.3729399625740673, 48.89258422048202], [2.372884059639661, 48.892460506858455], [2.372883505798329, 48.892457345546035], [2.37289905680123, 48.89229494772079], [2.37292403510843, 48.892148029775534], [2.372921925278528, 48.89214213627302], [2.372806850925941, 48.89202507792094], [2.372683489246785, 48.8919059579534], [2.372681539117579, 48.891903113078996], [2.372684011503543, 48.89188060974316], [2.372651964596953, 48.89186887749249], [2.372586574360967, 48.891700155998166], [2.372527747478141, 48.89154613675494], [2.37252678645659, 48.89154439872791], [2.3724417303252, 48.891429098933145], [2.372345780035269, 48.89129967388302], [2.372344428750509, 48.89129636988922], [2.372330534373523, 48.89116849543845], [2.372315961453145, 48.89103491661654], [2.3723020672048962, 48.89090704303128], [2.372287495794481, 48.89077346418122], [2.372273601696851, 48.890645589662896], [2.372259029068777, 48.890512010770415], [2.372245135110821, 48.89038413621829], [2.372230562618207, 48.89025055818975], [2.372216668799824, 48.89012268360392], [2.372202096464251, 48.8899891046408], [2.372188204149276, 48.88986123002833], [2.372177511350487, 48.88976321708521], [2.372173167792339, 48.88972950030098], [2.372171437045883, 48.88972871601049], [2.372167556287539, 48.889693150846036], [2.37203780234748, 48.88958389614907], [2.371919561649249, 48.88948971228185], [2.371801320015142, 48.88939552828269], [2.37167156758517, 48.88928627315923], [2.371553328225216, 48.88919208890487], [2.371423575458811, 48.88908283348529], [2.371400682899334, 48.889081152983195], [2.371370818894098, 48.88910430845165], [2.371350485732643, 48.8891427619705], [2.3713165633273112, 48.889191083452936], [2.371283459126775, 48.88920393992741], [2.371284511479185, 48.889227360222456], [2.371258653986187, 48.88926419381349], [2.371194653990132, 48.88937286285511], [2.37113487224985, 48.88945801783394], [2.3711232160205, 48.88947551409239]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 51, "roussel_fabien": 17.0, "nb_emargement": 1101.0, "nb_procuration": 43.0, "nb_vote_blanc": 18.0, "jadot_yannick": 50.0, "le_pen_marine": 89.0, "nb_exprime": 1075.0, "nb_vote_nul": 8.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1631.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1101, "quartier_bv": "73", "geo_point_2d": [48.8924275249649, 2.3719966883303685], "melenchon_jean_luc": 478.0, "poutou_philippe": 6.0, "macron_emmanuel": 254.0}, "geometry": {"type": "Point", "coordinates": [2.3719966883303685, 48.8924275249649]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1e00b57dbb3ec07fa0b7e3b643b7819b8d454960", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 140, "zemmour_eric": 135.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "15-34", "geo_shape": {"coordinates": [[[2.316634938902151, 48.84680845285433], [2.316646913174566, 48.84679345782751], [2.316808528626192, 48.846712673754794], [2.316964172573748, 48.846632494815196], [2.317125787046203, 48.84655170940298], [2.317281428650658, 48.846471530930586], [2.317443043494649, 48.846390745085884], [2.317598684142068, 48.84631056528989], [2.317760297983325, 48.846229779904306], [2.317915937661931, 48.846149599684], [2.318077550524009, 48.846068812958876], [2.318233189222039, 48.84598863321355], [2.318394801093168, 48.845907846048206], [2.318550438822397, 48.84582766587862], [2.318712048340008, 48.84574687826528], [2.318867686474769, 48.84566669677991], [2.319029294989689, 48.84558590962563], [2.319184932155648, 48.84550572771595], [2.31918658749622, 48.845505018544834], [2.31934552320467, 48.84544726283198], [2.319527679682681, 48.84538290725242], [2.319686616003297, 48.845325151087856], [2.319868770282483, 48.84526079407483], [2.320027705840962, 48.84520303835009], [2.3201354707523523, 48.84516496379305], [2.320154407874964, 48.84515572882084], [2.320113856424088, 48.845102725519666], [2.319952866097339, 48.84505670651214], [2.31979536388491, 48.84501145718623], [2.319634374121423, 48.84496543774631], [2.319476872449601, 48.8449201888967], [2.319315883249275, 48.844874169024465], [2.319158382141544, 48.84482891885256], [2.318997393504383, 48.84478289854796], [2.318839892937151, 48.844737648852345], [2.318831721079408, 48.84472984441011], [2.318826999950593, 48.8446665346813], [2.318821864866792, 48.84460268297314], [2.318813875833004, 48.844594966807875], [2.318624020577792, 48.84453825096114], [2.31843554385397, 48.8444821209528], [2.31824568940979, 48.84442540539925], [2.318057213501626, 48.844369274789216], [2.317867359891906, 48.84431255773021], [2.31767888343677, 48.84425642651068], [2.317672793120566, 48.84425284468093], [2.317578542620684, 48.84414898268955], [2.317478545825461, 48.84403860790613], [2.31738429608833, 48.843934746641], [2.317284300115426, 48.843824371674046], [2.317190051164594, 48.84372050933667], [2.317090056002318, 48.843610135085434], [2.316995806463485, 48.843506272567296], [2.3168958121355, 48.8433958972332], [2.316801564733689, 48.84329203454986], [2.316701571216206, 48.84318165993153], [2.316691580236126, 48.843159250036265], [2.316660829586229, 48.84313845283775], [2.316542852778108, 48.84304017163969], [2.316429398305054, 48.842945876961466], [2.3163114223693633, 48.84284759551819], [2.316197970096618, 48.842753300612024], [2.316079995033245, 48.84265501892357], [2.31596654223601, 48.84256072377384], [2.315964425556586, 48.842559316753984], [2.315826562090212, 48.84248593783578], [2.315659821914426, 48.842397219457524], [2.31552195794319, 48.84232384016984], [2.315355218804486, 48.84223512135411], [2.315217357041538, 48.84216174261185], [2.315050618951622, 48.8420730224594], [2.314940416522766, 48.84201436519165], [2.314911979706466, 48.8420150090722], [2.314903508894809, 48.842032304843954], [2.314829629127432, 48.84214833168656], [2.314754697094934, 48.84226031968711], [2.3146797647404282, 48.84237230762948], [2.31460588264234, 48.842488333391444], [2.31453094964026, 48.84260032121774], [2.314457066887662, 48.842716346864115], [2.3143821332380012, 48.84282833457431], [2.314308249819054, 48.842944361004356], [2.314233315521803, 48.84305634859842], [2.3141594314601592, 48.84317237401356], [2.314084496515313, 48.843284361491534], [2.314010611799135, 48.84340038679104], [2.313991953789793, 48.84340494480841], [2.313820854522829, 48.843348436701305], [2.313648098099416, 48.843292285778055], [2.313476999575014, 48.843235777173454], [2.313304245257997, 48.84317962575579], [2.313133146113758, 48.84312311664589], [2.312960392540629, 48.843066964726], [2.312941140836395, 48.843077179779876], [2.3129869849341382, 48.84320029103984], [2.313030004415989, 48.843319177915156], [2.313075847574094, 48.843442289106534], [2.313118867470252, 48.84356117502482], [2.313164712413645, 48.843684286163274], [2.313207732700413, 48.84380317292314], [2.313253576704066, 48.84392628399298], [2.3132965973933, 48.844045170695054], [2.313342443182266, 48.844168281711966], [2.313385464285821, 48.84428716745698], [2.313431309123199, 48.84441027930463], [2.313474330629229, 48.84452916499191], [2.31346898916986, 48.8445385767686], [2.313303801551327, 48.84461632490164], [2.31313641533216, 48.8446948111503], [2.312971226722304, 48.844772558813226], [2.312803840874917, 48.844851043694106], [2.312638649899426, 48.8449287917784], [2.312471263049318, 48.84500727618295], [2.312306072456908, 48.84508502290567], [2.312138683229856, 48.84516350772539], [2.311973491646011, 48.845241253977996], [2.311806102790759, 48.845319737429925], [2.3118080534315553, 48.84533516285346], [2.311993869451133, 48.84539456796255], [2.3121777347885892, 48.84545313144929], [2.312363551650055, 48.8455125359779], [2.312547417831079, 48.845571097991], [2.312733234171957, 48.84563050193133], [2.312917102535184, 48.8456890642772], [2.313102919718144, 48.84574846763707], [2.313286788924823, 48.84580702850933], [2.313472606949657, 48.84586643128873], [2.313656476976182, 48.84592499248587], [2.313697175687949, 48.845960364096435], [2.313718091685864, 48.84595276844199], [2.313742975134629, 48.84594925436944], [2.313751540683167, 48.845949884491766], [2.313925639571683, 48.846002967855746], [2.314048646908056, 48.84604530653018], [2.314171653093543, 48.846087644169415], [2.314283236686987, 48.84612166545063], [2.314319325208662, 48.84613618296141], [2.314337428071056, 48.84613391329465], [2.314399945663271, 48.8461529738395], [2.314581888157913, 48.84620915451825], [2.314755988770138, 48.84626223576222], [2.314937932030042, 48.84631841589399], [2.315112033370017, 48.84637149661469], [2.315286136415318, 48.84642457798658], [2.315468080825293, 48.84648075640462], [2.315642183235755, 48.8465338372454], [2.315824128410982, 48.846590015116504], [2.315998232911587, 48.84664309544172], [2.316180178852063, 48.84669927276581], [2.31635428271782, 48.8467523525599], [2.316536229423541, 48.84680852933705], [2.316634938902151, 48.84680845285433]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 34, "roussel_fabien": 15.0, "nb_emargement": 1330.0, "nb_procuration": 90.0, "nb_vote_blanc": 14.0, "jadot_yannick": 102.0, "le_pen_marine": 60.0, "nb_exprime": 1313.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1648.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1329, "quartier_bv": "58", "geo_point_2d": [48.84472283058605, 2.3157433631202045], "melenchon_jean_luc": 248.0, "poutou_philippe": 3.0, "macron_emmanuel": 555.0}, "geometry": {"type": "Point", "coordinates": [2.3157433631202045, 48.84472283058605]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "765e308af8a2710a444673116e09e6212b7c64d0", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 15, "zemmour_eric": 33.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "18-49", "geo_shape": {"coordinates": [[[2.340142681373957, 48.901227184883005], [2.340193624165555, 48.90120132152488], [2.340194191982729, 48.90118837900064], [2.340200297702347, 48.90104922010985], [2.340206330904997, 48.900911690362584], [2.340212436571111, 48.90077253053673], [2.34021847107364, 48.90063500076155], [2.340224575299444, 48.90049584179159], [2.340230609737832, 48.900358311981], [2.340236713898744, 48.90021915297521], [2.340242748273093, 48.90008162312922], [2.340248853733009, 48.89994246409508], [2.340254886690619, 48.8998049333069], [2.34026099208574, 48.89966577423699], [2.340267024967721, 48.89952824431266], [2.340273059181808, 48.89939071437826], [2.340279163115798, 48.89925155524719], [2.340277617798951, 48.89924713018663], [2.340188600502276, 48.89913483484559], [2.340098685425346, 48.89902140493491], [2.340009668889197, 48.89890911033699], [2.339919754591982, 48.898795680268606], [2.339830738827746, 48.89868338551448], [2.339740823946379, 48.89856995528084], [2.339651810317905, 48.89845766037811], [2.33956189621624, 48.89834422998672], [2.339472883371167, 48.8982319340286], [2.339382970037684, 48.898118504378736], [2.339293956600548, 48.89800620825694], [2.339204045422104, 48.8978927775576], [2.339205552252174, 48.89785616471406], [2.339180968832622, 48.89785389318784], [2.339023847045965, 48.897850436077896], [2.338813036109412, 48.897846462028866], [2.338612811325386, 48.897842056842286], [2.338402000454245, 48.8978380820697], [2.338201774384723, 48.89783367528912], [2.337990964942847, 48.89782969980053], [2.337790738928921, 48.89782529323197], [2.337579928188438, 48.89782131701231], [2.33744659377334, 48.89781838150496], [2.337405078431434, 48.897835442128226], [2.337400921289065, 48.897846666010565], [2.337307620934857, 48.897953752378186], [2.337208072650837, 48.898068793635055], [2.337114772854368, 48.8981758807375], [2.337015223719462, 48.89829092181068], [2.336921921775728, 48.89839800783436], [2.336822371789924, 48.89851304872387], [2.336729070403916, 48.898620135482375], [2.336629519567206, 48.8987351761883], [2.336536216033909, 48.89884226186797], [2.336436664346384, 48.89895730239023], [2.336435803466419, 48.89895849281418], [2.336342500498394, 48.89906557832867], [2.336272254614869, 48.89918435677427], [2.336205771638319, 48.89930411289766], [2.336135525121076, 48.899422891237165], [2.336069041525377, 48.89954264725852], [2.335998795738191, 48.89966142549951], [2.335932310159347, 48.899781181411335], [2.33586206372686, 48.899899960445445], [2.33579557889284, 48.9000197162628], [2.33572533047409, 48.900138494283965], [2.3356588450208973, 48.900258249999325], [2.335588595968193, 48.900377027914416], [2.335522109895818, 48.9004967835277], [2.335451861573266, 48.900615561344246], [2.335385373517791, 48.900735316847985], [2.335315124561376, 48.90085409455839], [2.335248637250617, 48.900973849967656], [2.335213606638325, 48.90103307697249], [2.335184073822365, 48.90107335440772], [2.335259646093756, 48.901105624963584], [2.335468254238288, 48.90111049317746], [2.335670936506388, 48.901115382117446], [2.335879544717006, 48.90112025051417], [2.336082227061716, 48.90112513875812], [2.33629083534989, 48.90113000643844], [2.336493517771199, 48.901134893986324], [2.336641066433659, 48.90113782469203], [2.336843748918287, 48.901142711647225], [2.3369912976226193, 48.90114564192141], [2.337193980159109, 48.901150529183134], [2.337325875720983, 48.901153148489094], [2.3373378426786102, 48.90115338557099], [2.337359939601763, 48.901153824386945], [2.337562620852131, 48.90115871011801], [2.3377298868197522, 48.901162030920894], [2.337778586526036, 48.901162998068415], [2.337864083089356, 48.90116469563036], [2.338066765793386, 48.901169580515806], [2.338307914675525, 48.901174367315605], [2.338510597458955, 48.901179251449925], [2.338701354261268, 48.90118303697808], [2.338904037103942, 48.901187921345844], [2.339094793966631, 48.901191706247346], [2.339297475527253, 48.90119658904249], [2.339488232450406, 48.90120037331734], [2.339690915445699, 48.90120525545418], [2.339758160974449, 48.90120658933965], [2.339793296836255, 48.901207285742856], [2.339917876116724, 48.90120975664281], [2.34012055918884, 48.90121463805253], [2.340142681373957, 48.901227184883005]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 49, "roussel_fabien": 13.0, "nb_emargement": 772.0, "nb_procuration": 17.0, "nb_vote_blanc": 11.0, "jadot_yannick": 9.0, "le_pen_marine": 77.0, "nb_exprime": 757.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1170.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 772, "quartier_bv": "69", "geo_point_2d": [48.89972411630878, 2.3380680792518804], "melenchon_jean_luc": 442.0, "poutou_philippe": 2.0, "macron_emmanuel": 138.0}, "geometry": {"type": "Point", "coordinates": [2.3380680792518804, 48.89972411630878]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a73d8fab9d2e529a35e7f181f81f712d443d9c17", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 41, "zemmour_eric": 68.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-45", "geo_shape": {"coordinates": [[[2.323747450557006, 48.820166452400734], [2.323737652394414, 48.820164041502075], [2.3236378587521562, 48.82018628452692], [2.323450227702976, 48.82022817490207], [2.323277547455472, 48.820266661789006], [2.323089915816023, 48.82030855249514], [2.322917235048065, 48.82034703795965], [2.322729602829817, 48.820388928097394], [2.322556921518056, 48.820427413938205], [2.322369288721216, 48.82046930350755], [2.32219660688902, 48.82050778792591], [2.322008973513392, 48.82054967692692], [2.321836291137391, 48.82058816172154], [2.321648657194879, 48.82063004925486], [2.3214395551127103, 48.82067664975249], [2.321251920521257, 48.82071853755931], [2.321042816379451, 48.82076513645244], [2.320855181150864, 48.82080702363342], [2.320703455110545, 48.82084083570158], [2.320551728873554, 48.820874647576176], [2.320364092856385, 48.8209165339825], [2.320271306498264, 48.82093710789704], [2.3201989069045448, 48.82095316222256], [2.320011270321412, 48.82099504807233], [2.31996272426984, 48.821005811922554], [2.319948633071151, 48.82100893628538], [2.319940094481481, 48.8210108294922], [2.319801675248154, 48.82104152148718], [2.319614038027957, 48.82108340671034], [2.319581765861904, 48.821090562042386], [2.319394325928937, 48.82113212246694], [2.319206688055586, 48.82117400704753], [2.31901924752369, 48.82121556688108], [2.318831609048661, 48.821257450870014], [2.31864416655611, 48.82129901010477], [2.318456528841343, 48.82134089350979], [2.31826908574977, 48.821382452153514], [2.318081446071705, 48.82142433495912], [2.317915870355911, 48.821461044165154], [2.3177282314731382, 48.82150292642133], [2.317562655247434, 48.82153963603506], [2.317375014436178, 48.821581517726266], [2.317193044505117, 48.82162186028343], [2.317005403101077, 48.82166374139163], [2.316823433947147, 48.82170408429049], [2.316635791950329, 48.821745964815634], [2.316453820873414, 48.821786306241954], [2.316266178283823, 48.82182818618404], [2.316084207984041, 48.821868527952105], [2.315896564813481, 48.82191040641181], [2.315714592578832, 48.8219507476067], [2.315526948803711, 48.821992626382674], [2.315376178318294, 48.82202615835625], [2.315188533999977, 48.82206803659839], [2.315037763078869, 48.822101568143], [2.314850118217362, 48.8221434458513], [2.314699345486686, 48.82217697785852], [2.314633569760961, 48.822191606180134], [2.314613655765953, 48.82219603482229], [2.314599417630593, 48.8221992008833], [2.314411772065662, 48.822241077900124], [2.314252762933486, 48.822276441831455], [2.31420999263569, 48.82228903973136], [2.314230847877341, 48.822302629385796], [2.314336114347697, 48.822349353357154], [2.314393783016877, 48.822374950362615], [2.314551720252179, 48.82244424032346], [2.314714656279201, 48.82251656085394], [2.314872594381681, 48.82258584948298], [2.31503553129629, 48.822658169567156], [2.315193468892156, 48.822727457755825], [2.315356406694454, 48.82279977739373], [2.31551434649574, 48.82286906605696], [2.31567728518563, 48.82294138524852], [2.315835225854185, 48.82301067257994], [2.315998165431568, 48.823082991325165], [2.316156106943687, 48.82315227912335], [2.316319046058476, 48.82322459651514], [2.316476988425962, 48.823293883880815], [2.316639929778638, 48.82336620173337], [2.316797873013181, 48.823435487767156], [2.316960815253455, 48.82350780517337], [2.317118759331686, 48.82357709167397], [2.317281701097465, 48.823649408626046], [2.3174396460428452, 48.823718693794746], [2.317464432069777, 48.82373323615545], [2.3174682163024842, 48.82373403931655], [2.317546317983901, 48.823768885487404], [2.317704263642849, 48.823838170299226], [2.317709348973257, 48.8238486303333], [2.317816672587921, 48.82383947895119], [2.317890070026754, 48.82381612700264], [2.317957982654725, 48.82379566401609], [2.317960579572889, 48.8237950825381], [2.318127880412301, 48.82376940055688], [2.318298685468298, 48.823743424434454], [2.318465985963552, 48.82371774287834], [2.318636790693623, 48.82369176537247], [2.31880409085668, 48.82366608334217], [2.318974896599208, 48.82364010625929], [2.319142195079711, 48.82361442284774], [2.319313000484546, 48.82358844528073], [2.319315035528763, 48.82358801976548], [2.319452267484321, 48.82355125977901], [2.319588942215603, 48.82351292974283], [2.319726173780507, 48.82347616943957], [2.319862849487312, 48.82343783819621], [2.31988113814721, 48.823443360084816], [2.319940303656757, 48.82356470647464], [2.319999485138087, 48.82368505819623], [2.320058651197342, 48.82380640450141], [2.320117833238026, 48.82392675523923], [2.320176999835269, 48.82404810235907], [2.320236182423384, 48.82416845301241], [2.320253429028865, 48.82417421084863], [2.320461981780006, 48.8241284880574], [2.32066492433532, 48.82408491402956], [2.320873476368412, 48.8240391905171], [2.321076418220635, 48.823995616686766], [2.321082322237662, 48.82399524548499], [2.321120318875205, 48.82399838688416], [2.321158940408773, 48.8240021793725], [2.321168779703918, 48.8240006406256], [2.321221307283544, 48.82397624900375], [2.321270083546069, 48.823952596942746], [2.321273881511423, 48.82395130450436], [2.321459993740333, 48.82391079852161], [2.321642872928003, 48.82387106626358], [2.321825753198847, 48.82383133373216], [2.322011863208769, 48.82379082687847], [2.322194742916977, 48.82375109377994], [2.322380852353811, 48.82371058634911], [2.322563731499378, 48.823670852683456], [2.322749840351436, 48.82363034557481], [2.322932718934359, 48.82359061134203], [2.323118827225005, 48.82355010275691], [2.323135721902528, 48.823555278986845], [2.323193547561154, 48.823649902729024], [2.323250558705563, 48.823743072922696], [2.323266553651502, 48.82374841852081], [2.323305092061567, 48.823741926331294], [2.3233366422550352, 48.82373538739144], [2.323352164242659, 48.82373519551495], [2.323361441420914, 48.82372763295494], [2.323516371957349, 48.823695522928965], [2.3236943151258362, 48.82365864302944], [2.323880795307661, 48.82361999348612], [2.324058736598609, 48.82358311303419], [2.324245216240155, 48.823544462920026], [2.324423158377551, 48.823507581931004], [2.3246096361168203, 48.82346893123825], [2.324787577738662, 48.82343204970456], [2.324974054937742, 48.82339339844094], [2.325151996044026, 48.82335651636248], [2.325338474064701, 48.823317864535696], [2.325516413293432, 48.823280981904844], [2.325543213270416, 48.82327719107859], [2.325545524892929, 48.82326664628822], [2.325540502223431, 48.82324174918776], [2.325528402781206, 48.823211548996596], [2.325537713514827, 48.82320062367175], [2.325710926510157, 48.82316684933444], [2.325881607113625, 48.82313287160073], [2.326054821023094, 48.823099096770996], [2.326225501180563, 48.82306511854438], [2.326398713280199, 48.82303134320678], [2.326569392991869, 48.822997364487264], [2.3265790238030473, 48.82298958331932], [2.326592765482628, 48.822891621912085], [2.326621946509284, 48.822723486006815], [2.326635688038091, 48.82262552457146], [2.326617948786219, 48.82261613497303], [2.326443140018999, 48.822653323783115], [2.32627017563508, 48.82269079614109], [2.326095366357977, 48.82272798533962], [2.3259224014764452, 48.82276545719212], [2.32574759035053, 48.82280264497279], [2.325574626333368, 48.822840116327434], [2.325399814697464, 48.82287730449654], [2.325226848820721, 48.822914775338035], [2.325052038060181, 48.822951962104625], [2.324879071685842, 48.82298943244057], [2.324863240874812, 48.82298561692828], [2.324854723793737, 48.82297805451475], [2.3248261789719322, 48.8229475680253], [2.324824274942538, 48.82294408746336], [2.324796572968781, 48.82282727414827], [2.324773291354339, 48.82271768801773], [2.3247500098376612, 48.82260810187197], [2.324722308208794, 48.822491288504736], [2.324699026900361, 48.822381702326965], [2.324671324144137, 48.82226488891667], [2.324653564418873, 48.8222577473592], [2.324486737840351, 48.82229444776793], [2.324322142467528, 48.822328803272754], [2.324304613144291, 48.82232175200429], [2.324269772986084, 48.822187904344645], [2.324235400467006, 48.82205592641686], [2.324200559302142, 48.821922078697696], [2.324166187133493, 48.821790100718836], [2.324131346335585, 48.821656252048456], [2.324096974517363, 48.8215242740185], [2.324062134063092, 48.821390426195684], [2.324027762595289, 48.821258448114634], [2.323992922496307, 48.82112460023998], [2.323958551378918, 48.820992622107816], [2.323923711635321, 48.82085877418135], [2.32388934086834, 48.82072679599814], [2.323854502841836, 48.82059294802761], [2.323820131063342, 48.82046096978553], [2.323785760820756, 48.82032899152584], [2.323750923325922, 48.820195143477775], [2.323747450557006, 48.820166452400734]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 45, "roussel_fabien": 21.0, "nb_emargement": 1123.0, "nb_procuration": 48.0, "nb_vote_blanc": 10.0, "jadot_yannick": 49.0, "le_pen_marine": 89.0, "nb_exprime": 1102.0, "nb_vote_nul": 11.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1562.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1123, "quartier_bv": "55", "geo_point_2d": [48.82236463011968, 2.3205958784741236], "melenchon_jean_luc": 522.0, "poutou_philippe": 4.0, "macron_emmanuel": 249.0}, "geometry": {"type": "Point", "coordinates": [2.3205958784741236, 48.82236463011968]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5d993cdd809c35ffaec9984f9fc7f07f6c19847c", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 24, "zemmour_eric": 73.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "19-43", "geo_shape": {"coordinates": [[[2.37167416180715, 48.895480104709335], [2.371716651475149, 48.89551717537596], [2.371845106779756, 48.89555786257034], [2.372017258223627, 48.89561705649825], [2.372145715373576, 48.89565774337366], [2.3722677400140872, 48.89569970040149], [2.3723087071801903, 48.89570245660545], [2.372326356430838, 48.89567080320552], [2.372405434467434, 48.89555593863584], [2.372490449134512, 48.895428082992], [2.372569525065709, 48.89531321918057], [2.372654540297267, 48.895185363399065], [2.372733615497903, 48.89507049945386], [2.372818628566296, 48.894942643520416], [2.372897704400047, 48.89482777944857], [2.372982716669265, 48.89469992337031], [2.373061791772366, 48.89458505916467], [2.373146803242216, 48.89445720294159], [2.37322587626175, 48.89434233769576], [2.373310888285371, 48.89421448223432], [2.373389960574177, 48.894099616854675], [2.373474971809471, 48.89397176034915], [2.373554043356838, 48.89385689573502], [2.373577979466088, 48.89385579517584], [2.373678711385452, 48.89396048745914], [2.373777988599132, 48.89406289676234], [2.37387872269602, 48.89416758796551], [2.373977999323445, 48.89426999797568], [2.374078734223204, 48.89437468899081], [2.374178011638839, 48.894477098815806], [2.374278747341477, 48.89458178964293], [2.3743780269092962, 48.894684199289856], [2.3744022678610612, 48.89468976860096], [2.374422019801989, 48.894679247240475], [2.374619466763741, 48.89465531074814], [2.374821403133936, 48.89463129754362], [2.375018849719536, 48.894607361290994], [2.37522078708341, 48.89458334741908], [2.37541823330345, 48.89455941050694], [2.375620168933272, 48.894535395953405], [2.375817614798628, 48.89451145748247], [2.376019551422105, 48.89448744226154], [2.3762169969113, 48.89446350403036], [2.376418931800608, 48.89443948812783], [2.376616376924318, 48.894415549237124], [2.376818312807365, 48.8943915326672], [2.377015757565478, 48.894367593116954], [2.377217691714442, 48.89434357586544], [2.3774151361179072, 48.894319634756464], [2.377617071260382, 48.89429561683753], [2.3776257705720543, 48.89428156074159], [2.37752315149985, 48.89418626711397], [2.377392211318405, 48.894066216301006], [2.377289593098114, 48.89397092245453], [2.377158653996772, 48.89385087136259], [2.377056036628384, 48.893755577297256], [2.3769250986179973, 48.89363552502711], [2.376822482090742, 48.89354023164219], [2.37680705884397, 48.89350926517419], [2.376770616345656, 48.89350783535835], [2.376685350281007, 48.89350449036809], [2.376677848341769, 48.89351159730701], [2.376489919697184, 48.893525184329256], [2.376295673456206, 48.89353842429057], [2.376107744615063, 48.89355201071269], [2.37591349817682, 48.893565250053804], [2.375725569149908, 48.8935788349766], [2.375531322514413, 48.89359207369745], [2.375343393280182, 48.89360565891944], [2.375149145083606, 48.89361889701293], [2.374961217016674, 48.893632481641966], [2.374766968622861, 48.89364571911521], [2.374579040359407, 48.893659303144155], [2.374384791768262, 48.89367253999718], [2.374196863308393, 48.893686123426036], [2.374002614520027, 48.893699359658825], [2.373814685863549, 48.89371294248763], [2.373620436878074, 48.89372617810016], [2.37343250803592, 48.8937397594296], [2.373431545311992, 48.89373940365801], [2.3733898250315812, 48.893737584572335], [2.373202739984852, 48.893788128367774], [2.373023801672063, 48.89383500573303], [2.372836715930784, 48.8938855480529], [2.372657776942801, 48.89393242576634], [2.372470690496253, 48.89398296750989], [2.372291749479958, 48.894029844665084], [2.372104663691887, 48.89408038583946], [2.371925722022179, 48.89412726154429], [2.371746781383155, 48.89417413788615], [2.371559693183736, 48.89422467819537], [2.371380750527466, 48.894271553079726], [2.371193662975581, 48.89432209371901], [2.371014719654963, 48.89436896805227], [2.370827631397722, 48.894419508115234], [2.370772069494413, 48.894434062136376], [2.370752489105638, 48.89443326947462], [2.37072470467861, 48.89444873205066], [2.370601322532691, 48.89448105176239], [2.370485177694631, 48.894513555980865], [2.370436532627646, 48.89453618251678], [2.370441730517688, 48.89455592290542], [2.370487108324173, 48.894612540630554], [2.370512419408573, 48.89464350052033], [2.370515231339705, 48.894645909287036], [2.370666984562312, 48.894738188248375], [2.370828585322, 48.894834803097154], [2.3709803396397, 48.894927082544804], [2.371141941578036, 48.895023696054814], [2.371293697001608, 48.89511597508945], [2.371455298743955, 48.895212588152795], [2.371607055273501, 48.89530486677445], [2.371768659536667, 48.89540148030469], [2.371770197689247, 48.89541371909476], [2.371716705533057, 48.895458331506475], [2.37167416180715, 48.895480104709335]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 43, "roussel_fabien": 14.0, "nb_emargement": 905.0, "nb_procuration": 26.0, "nb_vote_blanc": 12.0, "jadot_yannick": 23.0, "le_pen_marine": 75.0, "nb_exprime": 892.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1400.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 907, "quartier_bv": "74", "geo_point_2d": [48.89434524101644, 2.3738968266610696], "melenchon_jean_luc": 462.0, "poutou_philippe": 4.0, "macron_emmanuel": 179.0}, "geometry": {"type": "Point", "coordinates": [2.3738968266610696, 48.89434524101644]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b071c08bc219f57bb3f83335bf5761b7acc87b28", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 125, "zemmour_eric": 118.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-68", "geo_shape": {"coordinates": [[[2.293373028465064, 48.83581081155196], [2.293358198188093, 48.835824020278906], [2.2932945026226, 48.83595390833845], [2.293232073174755, 48.83608775927673], [2.293218557984935, 48.83609410004421], [2.29302669049986, 48.83608949097585], [2.29283674278182, 48.8360847733328], [2.292644876727156, 48.836080163660036], [2.292454927715347, 48.83607544540256], [2.292263061728787, 48.83607083511732], [2.292073114147852, 48.83606611626155], [2.291881246867087, 48.83606150535577], [2.291691299342599, 48.836056786792945], [2.29149943350439, 48.83605217438342], [2.291309484686153, 48.83604745520619], [2.291117618916183, 48.836042842184206], [2.290927671528737, 48.836038122408674], [2.290735804464595, 48.83603350876612], [2.290545857145735, 48.83602878838425], [2.290541485025363, 48.83602820034318], [2.290399962450254, 48.83599349491927], [2.290244636425512, 48.835954271707195], [2.29010311424876, 48.83591956592976], [2.28994778730537, 48.83588034232154], [2.289940682309066, 48.835872447709484], [2.289918173130917, 48.83587072039356], [2.289917383194828, 48.83587050165305], [2.28982869548603, 48.83584377725312], [2.289726889747153, 48.83581292410904], [2.289707660740213, 48.83582013262588], [2.289686523651157, 48.83594946569766], [2.289666062542969, 48.83607417548731], [2.289644925259942, 48.83620350762308], [2.289624463952511, 48.836328217377314], [2.289603326463256, 48.83645754947636], [2.2895828649564782, 48.83658225919512], [2.289561727248735, 48.83671159215673], [2.289541264192729, 48.83683630093268], [2.289520802388891, 48.836961010598586], [2.289499664373567, 48.83709034350547], [2.289479202382734, 48.837215052236616], [2.289458064161169, 48.83734438510673], [2.289469892957603, 48.83735427112735], [2.289640083533773, 48.83736854051638], [2.289804644444213, 48.837381921833355], [2.289974835202301, 48.837396190745814], [2.290139396285968, 48.837409571601924], [2.29030958722597, 48.83742384003772], [2.290474148482859, 48.83743722043297], [2.290480500811395, 48.8374388751852], [2.290621250857127, 48.837506509989865], [2.290757545012243, 48.83757282130703], [2.290898295791382, 48.837640454878276], [2.291034589286925, 48.83770676586374], [2.291170884491504, 48.83777307669807], [2.291311636335489, 48.837840710670164], [2.291326795864887, 48.83785056406993], [2.291347421262226, 48.837844204488626], [2.29137267827532, 48.83782537016844], [2.291522162940581, 48.83771324682042], [2.291658366872479, 48.837611676114314], [2.291794568911204, 48.83751010523577], [2.29194405177704, 48.83739798042963], [2.29196219906458, 48.837396604784864], [2.292117721175265, 48.837469952633434], [2.292260250147037, 48.83753888302419], [2.29240277813342, 48.83760781323277], [2.292558301482041, 48.83768116139396], [2.292700830251615, 48.83775009123864], [2.292856354456363, 48.83782343810369], [2.292857881231593, 48.83783723540358], [2.292801412775892, 48.8378731120821], [2.292747886902787, 48.837908403552504], [2.292749568003551, 48.83792207135641], [2.292919787864781, 48.838002775536594], [2.293083901919337, 48.838080250611206], [2.293254122814881, 48.838160954304215], [2.293418237864311, 48.83823842890916], [2.293588459794074, 48.83831913211498], [2.293752575838581, 48.83839660625026], [2.293774959285662, 48.838409512179105], [2.293797955105397, 48.838398841995456], [2.2938520819096713, 48.83837408795875], [2.2940455582884223, 48.83828819687874], [2.294201743929269, 48.83821676500002], [2.294395219147773, 48.83813087334234], [2.294551403838127, 48.838059440997064], [2.294569917725604, 48.83805907621374], [2.2945798140598432, 48.83804290811072], [2.294640642750565, 48.83794359843904], [2.2947033817569142, 48.83784023213365], [2.294703802047715, 48.8378343437257], [2.294665689389636, 48.83774902941333], [2.29462554937055, 48.837658794353445], [2.294587436956841, 48.83757348090202], [2.2945472972084078, 48.83748324580173], [2.294550564852667, 48.8374766645804], [2.294537338969359, 48.837463829882225], [2.294474810202992, 48.837327815956556], [2.294412523845695, 48.83719263892674], [2.294349995730234, 48.83705662490283], [2.294287711395191, 48.836921446883956], [2.294225183930726, 48.836785432761864], [2.294162900243408, 48.83665025464519], [2.294100373429929, 48.836514240424854], [2.294038090378142, 48.83637906310971], [2.293975564215638, 48.83624304879117], [2.293913281823733, 48.83610787047897], [2.293909087015535, 48.83610364384384], [2.293776626525503, 48.836029088028184], [2.293650650885473, 48.835959197631034], [2.293524675595548, 48.83588930619756], [2.293392214837688, 48.83581474993387], [2.293391976830612, 48.83581461901802], [2.293373028465064, 48.83581081155196]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 68, "roussel_fabien": 18.0, "nb_emargement": 1355.0, "nb_procuration": 81.0, "nb_vote_blanc": 16.0, "jadot_yannick": 95.0, "le_pen_marine": 79.0, "nb_exprime": 1333.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1714.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1355, "quartier_bv": "57", "geo_point_2d": [48.83696459924645, 2.2921726703139282], "melenchon_jean_luc": 257.0, "poutou_philippe": 5.0, "macron_emmanuel": 585.0}, "geometry": {"type": "Point", "coordinates": [2.2921726703139282, 48.83696459924645]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a76f3d1bff761b149963394fb22530fd8beff3fd", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 67, "zemmour_eric": 72.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "3-9", "geo_shape": {"coordinates": [[[2.353334003367725, 48.861274375257935], [2.353314979217869, 48.861278109972226], [2.353162878879531, 48.861312247388476], [2.352972487528927, 48.8613554831386], [2.352773756068513, 48.86140008455633], [2.352583365436889, 48.861443319691354], [2.35238463330831, 48.86148792045942], [2.352194240669899, 48.86153115496458], [2.351995509236152, 48.8615757550903], [2.351805115953845, 48.86161898897301], [2.351606382488951, 48.86166358844162], [2.351415989925651, 48.86170682170922], [2.351217255781412, 48.86175142142738], [2.351026861211331, 48.86179465406513], [2.350836467688266, 48.861837886405624], [2.350637732559187, 48.86188248425693], [2.35044733702925, 48.86192571596756], [2.350248602595042, 48.86197031317653], [2.350192229143977, 48.861993989081085], [2.35019795198853, 48.86201874320298], [2.350234627604411, 48.86208502095247], [2.350301109001352, 48.86220403901453], [2.350368647436846, 48.86232608996414], [2.35043513081049, 48.86244510793323], [2.350502669861258, 48.86256715967993], [2.350569153848706, 48.86268617754868], [2.350636693537182, 48.86280822829388], [2.350703176775415, 48.86292724605491], [2.350770717079184, 48.863049297597215], [2.350837202294262, 48.86316831526531], [2.350904743235751, 48.86329036580612], [2.35097122906466, 48.86340938337383], [2.350963291802715, 48.863423049955564], [2.350978751254253, 48.86345824784887], [2.35105586015795, 48.86358668064936], [2.351122346710244, 48.8637056981013], [2.351188833566319, 48.86382471550351], [2.351265943530334, 48.863953148126214], [2.351332431019066, 48.86407216632132], [2.3514095417033483, 48.864200598822784], [2.351476029847241, 48.864319616012274], [2.351553141251799, 48.86444804839252], [2.351600217822997, 48.864470448018984], [2.351648759669097, 48.86446076694059], [2.351856302459189, 48.8645095437744], [2.352048757237059, 48.86455183882162], [2.352256300753291, 48.86460061585707], [2.352448756192342, 48.86464291025759], [2.352656300457075, 48.86469168569609], [2.352848757909101, 48.864733980356554], [2.353056302911146, 48.86478275509741], [2.353248759661374, 48.8648250491038], [2.35326064475418, 48.86483154184317], [2.353280587405309, 48.86481245040406], [2.353349977890827, 48.864792939942845], [2.353453371684127, 48.8647633480225], [2.35345763431215, 48.864760156793125], [2.353440669045358, 48.86473420179474], [2.353378440384721, 48.8646103055554], [2.353316370348891, 48.86448672219793], [2.353254142279475, 48.86436282586622], [2.353192072833463, 48.86423924241668], [2.353129845355258, 48.8641153459927], [2.353067776498854, 48.863991762451064], [2.3530671110982, 48.863990680539466], [2.352995154253564, 48.863892357363206], [2.352922375995172, 48.86379291450424], [2.352921381428836, 48.863791775951775], [2.3528872144905852, 48.863758553764775], [2.352851638806192, 48.86372396054166], [2.3528493439789813, 48.863719737397794], [2.352837980355126, 48.863638482150655], [2.352825325921578, 48.86354800792038], [2.352834248283423, 48.86353872725806], [2.353028792286569, 48.86349214257194], [2.353226004671062, 48.863444918166024], [2.353420546610556, 48.863398332831814], [2.3536177582848232, 48.86335110777636], [2.353812299523808, 48.86330452180141], [2.354009510487843, 48.863257296096414], [2.3540154905557, 48.86324321494458], [2.353887792809027, 48.863138201505464], [2.353764360807943, 48.86303669681606], [2.353636662699584, 48.862931683981365], [2.353513231676974, 48.86283017901403], [2.353510274632522, 48.86282384783264], [2.353524991503831, 48.862700087381], [2.353539659399949, 48.862576752939624], [2.353554376131654, 48.86245299245676], [2.353569043888642, 48.8623296579843], [2.353583760480745, 48.86220589747024], [2.353598428098707, 48.86208256296667], [2.353613144551209, 48.86195880242138], [2.353627812029943, 48.86183546788672], [2.353627124774297, 48.861831864089595], [2.353561705950596, 48.86170518308371], [2.353494036585969, 48.861574144223205], [2.353428618398423, 48.86144746401438], [2.353360949703271, 48.861316425048145], [2.353358079956737, 48.861310865965415], [2.353334003367725, 48.861274375257935]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 9, "roussel_fabien": 17.0, "nb_emargement": 1255.0, "nb_procuration": 104.0, "nb_vote_blanc": 13.0, "jadot_yannick": 111.0, "le_pen_marine": 51.0, "nb_exprime": 1237.0, "nb_vote_nul": 5.0, "arr_bv": "03", "arthaud_nathalie": 3, "nb_inscrit": 1640.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1255, "quartier_bv": "12", "geo_point_2d": [48.862913040524454, 2.3521921621269155], "melenchon_jean_luc": 351.0, "poutou_philippe": 3.0, "macron_emmanuel": 496.0}, "geometry": {"type": "Point", "coordinates": [2.3521921621269155, 48.862913040524454]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d889654102ec4ba97ce53e9993c4f248b376e8de", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 60, "zemmour_eric": 86.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-5", "geo_shape": {"coordinates": [[[2.3618871317521313, 48.83288296338113], [2.361861393164021, 48.83292150613705], [2.361687918107412, 48.83297666872626], [2.361515780766183, 48.833030027773745], [2.361342304993734, 48.83308518895701], [2.361170165578142, 48.83313854749467], [2.360996689078946, 48.833193708171294], [2.36082454894011, 48.83324706710565], [2.360816964026099, 48.83325691603525], [2.360849145579066, 48.8333667337022], [2.360881250501958, 48.83347159002004], [2.360913432311858, 48.83358140854795], [2.360945537507201, 48.83368626392909], [2.360942601412914, 48.833693842512076], [2.360808033605482, 48.83379923367245], [2.360676891612343, 48.833900841354684], [2.360542322722416, 48.834006233095955], [2.360411179690597, 48.83410784046801], [2.360276609740125, 48.83421323099156], [2.360145464307336, 48.83431483804621], [2.360014319725576, 48.83441644495514], [2.359879748165026, 48.834521835902414], [2.359748601193318, 48.83462344159463], [2.359614029923455, 48.834728832230745], [2.359482881901985, 48.83483043851211], [2.359348309560512, 48.83493582882978], [2.359217160511368, 48.835037433901704], [2.359082587098277, 48.83514282390094], [2.358951436999343, 48.83524442956199], [2.358816862525583, 48.83534981834348], [2.358791293666894, 48.83536962745357], [2.35878265772339, 48.83537925025976], [2.358799360215341, 48.83539809701044], [2.358893069086399, 48.835519453641275], [2.358992342929478, 48.83564829756134], [2.359086052688454, 48.8357696549132], [2.359185326133884, 48.83589849773763], [2.35927903679195, 48.83601985491112], [2.359378311190892, 48.83614869754662], [2.359472022748061, 48.83627005454176], [2.3595511882000553, 48.83637279761451], [2.359574009618185, 48.83639121832262], [2.359599182987887, 48.83638432095266], [2.35972859209776, 48.83628471814011], [2.359855755184971, 48.836186914486085], [2.359985163303457, 48.8360873122777], [2.36011232543873, 48.835989507434356], [2.360241732576984, 48.835889904930774], [2.360368893749278, 48.83579209979742], [2.360498299907107, 48.83569249699871], [2.360625460116433, 48.835594691575345], [2.360754866656257, 48.83549508848876], [2.360882024529284, 48.835397283667426], [2.361011430099822, 48.83529767938638], [2.36113858837221, 48.835199874282296], [2.361265744816146, 48.835102068127874], [2.3613951489095832, 48.83500246430474], [2.361522305752882, 48.83490465786762], [2.36165170750373, 48.83480505374213], [2.361778863373085, 48.83470724791429], [2.361908264154768, 48.83460764259436], [2.362035419061204, 48.83450983647655], [2.362164818862511, 48.83441023086143], [2.362291972806036, 48.834312424453664], [2.362421371616077, 48.83421281944275], [2.3625485246077, 48.83411501184567], [2.362677923799762, 48.83401540654695], [2.362805074466211, 48.833917598652626], [2.362934472678023, 48.833817993058766], [2.363061623743854, 48.83372018488174], [2.363191019613159, 48.833620578985524], [2.363186740166106, 48.833606669948246], [2.362987474046671, 48.833541316569864], [2.36279552236351, 48.833481232550184], [2.362596257213936, 48.83341587851269], [2.362404307805847, 48.833355793865714], [2.362205043626238, 48.83329043916917], [2.362013095130961, 48.83323035388764], [2.36200532108623, 48.833222615619135], [2.362005269985006, 48.83311915461691], [2.361995564425045, 48.83297081574161], [2.362041947811175, 48.83293914093867], [2.362030697558117, 48.83292268992437], [2.361939578982819, 48.83289111536491], [2.361913589274479, 48.83288540332181], [2.3618871317521313, 48.83288296338113]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 5, "roussel_fabien": 35.0, "nb_emargement": 1211.0, "nb_procuration": 54.0, "nb_vote_blanc": 17.0, "jadot_yannick": 98.0, "le_pen_marine": 71.0, "nb_exprime": 1188.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1527.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1211, "quartier_bv": "49", "geo_point_2d": [48.83455486387303, 2.3608667579947404], "melenchon_jean_luc": 368.0, "poutou_philippe": 9.0, "macron_emmanuel": 391.0}, "geometry": {"type": "Point", "coordinates": [2.3608667579947404, 48.83455486387303]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "02892894309821b397a3be1506997a71a1bc51e6", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 99, "zemmour_eric": 111.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "15-92", "geo_shape": {"coordinates": [[[2.285573317280216, 48.84217243211359], [2.285584445670061, 48.842183541030444], [2.285612121129226, 48.84221730854374], [2.285639743074431, 48.842250807717775], [2.2856490741347733, 48.842262125340845], [2.285668254435716, 48.8422855272431], [2.285668257136021, 48.84228552905796], [2.285775272742048, 48.84241531205757], [2.285873303122512, 48.84253492160493], [2.285873688197328, 48.842535358298925], [2.285952328209665, 48.842619164152644], [2.286031076037078, 48.842701483933546], [2.286109825475638, 48.84278380366471], [2.2861884662425442, 48.84286760934455], [2.286190484079774, 48.84287140053227], [2.286209549191598, 48.84298263938696], [2.286228264955175, 48.843093027138714], [2.286247330216392, 48.84320426686461], [2.286266046139475, 48.843314654588504], [2.28628511157472, 48.84342589338697], [2.286303827645097, 48.843536281982324], [2.286303895340726, 48.84353681121469], [2.286309926767406, 48.84361109903286], [2.286315231018845, 48.843684061335786], [2.286317483525518, 48.84371181398286], [2.28631954972361, 48.84374023644624], [2.286321431891288, 48.843744385666994], [2.286368169364837, 48.84379652023961], [2.286414702421997, 48.84384866346472], [2.286427049670858, 48.843865732469915], [2.286430220002902, 48.84386636295046], [2.286497200236239, 48.84394141718249], [2.286595805466398, 48.844052012314684], [2.28670931983614, 48.84417920863733], [2.286807924603789, 48.84428980356294], [2.28692143999684, 48.84441700055649], [2.287020047026949, 48.84452759529181], [2.287044191912076, 48.844526759776194], [2.287133503857862, 48.84439725337538], [2.2872131642128872, 48.84428257122411], [2.2872288942982513, 48.84427021590074], [2.287226992804033, 48.84426428493458], [2.287306652750101, 48.844149602707375], [2.2873840853997462, 48.84403714477669], [2.287463744652968, 48.84392246242156], [2.287541176626077, 48.843810004366276], [2.287620835186562, 48.84369532188316], [2.287698266483247, 48.84358286370331], [2.28777792298829, 48.84346818108415], [2.287855353596375, 48.84335572367903], [2.2878552341323513, 48.843348112514306], [2.287818438257052, 48.843297485676096], [2.287777184119026, 48.843242566577565], [2.287782892472161, 48.84323066774421], [2.287951607269711, 48.843170220938426], [2.288121158754858, 48.84310954143939], [2.288289874130487, 48.843049094158104], [2.2884594248154793, 48.842988415072384], [2.288628139406584, 48.842927967307475], [2.288797689303708, 48.84286728773576], [2.288798290594694, 48.84286705927343], [2.288967883388763, 48.84279861186873], [2.289136073311181, 48.84273088797182], [2.2893056638560623, 48.842662440071805], [2.289473852887875, 48.84259471659101], [2.289474158482769, 48.84259458889701], [2.289485228957328, 48.842584026810236], [2.289473751827641, 48.8425712460668], [2.289341753647961, 48.84249461733145], [2.289208377440534, 48.84241685244655], [2.289076380042039, 48.8423402234078], [2.288943006000311, 48.84226245732507], [2.288811009382998, 48.8421858279829], [2.28867763475757, 48.8421080624848], [2.288545638921435, 48.84203143283921], [2.2884122664619, 48.84195366614326], [2.288412079743764, 48.841940296807955], [2.288530283645312, 48.841868779625365], [2.28865102880449, 48.84179533479707], [2.288769232037025, 48.8417238182684], [2.288889975173472, 48.84165037228198], [2.288886476042322, 48.841635600023615], [2.288680572273145, 48.841572560384876], [2.288476810147113, 48.841510176172854], [2.288270907368922, 48.84144713582189], [2.288067146235856, 48.84138475000582], [2.287861244448659, 48.84132170894268], [2.287657484283895, 48.84125932332111], [2.287640753854655, 48.8412439568891], [2.287612909144053, 48.84125560969137], [2.287458376304521, 48.84132291281914], [2.287300854497769, 48.841391847382276], [2.287146322213907, 48.84145915010682], [2.286988799582689, 48.84152808425062], [2.28683426512938, 48.84159538655576], [2.286676741673793, 48.841664320280245], [2.286522206413594, 48.84173162217405], [2.286364682133431, 48.841800555479175], [2.286210146066443, 48.84186785696164], [2.286052620961807, 48.841936789847495], [2.285898085450294, 48.842004090926736], [2.285740559521185, 48.842073023393226], [2.285720602106263, 48.842084157141066], [2.285712048418983, 48.842087900506975], [2.285710541849308, 48.842088664968955], [2.285647702358414, 48.84212372129513], [2.285579860113467, 48.842163401048026], [2.285573317280216, 48.84217243211359]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 92, "roussel_fabien": 18.0, "nb_emargement": 1231.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 71.0, "le_pen_marine": 97.0, "nb_exprime": 1210.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1566.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "60", "geo_point_2d": [48.84262154793023, 2.2873591038890506], "melenchon_jean_luc": 263.0, "poutou_philippe": 8.0, "macron_emmanuel": 460.0}, "geometry": {"type": "Point", "coordinates": [2.2873591038890506, 48.84262154793023]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "19c8d6207a29aa546124a06368288525a444e4c9", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 61, "zemmour_eric": 88.0, "hidalgo_anne": 49.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-30", "geo_shape": {"coordinates": [[[2.370917982208525, 48.832601912522655], [2.370900632237673, 48.83258100447541], [2.370789945369528, 48.8324819053632], [2.370679055502584, 48.83238464787651], [2.370568369461719, 48.83228554944121], [2.370457479074581, 48.832188290825556], [2.370346793871744, 48.83208919216782], [2.370235905667042, 48.83199193423616], [2.370125016524745, 48.831894675286804], [2.370014332577325, 48.83179557629539], [2.369903445628308, 48.831698317130744], [2.369792762519096, 48.831599217916896], [2.369791538429856, 48.83159826712872], [2.369644144671537, 48.83149876297197], [2.369488418390165, 48.8313909305987], [2.369341027158842, 48.83129142605719], [2.369185300772604, 48.83118359236284], [2.369185544228481, 48.83117101595606], [2.369344016180412, 48.83106676208326], [2.369501238798291, 48.83095807470772], [2.369495831494225, 48.830943361284326], [2.369321894336205, 48.83090372271438], [2.369155538339879, 48.83086757835811], [2.368981601693558, 48.8308279392906], [2.368815246175001, 48.830791794458555], [2.368641308678091, 48.830752154886284], [2.368474953637306, 48.83071600957854], [2.368301018014193, 48.830676369515864], [2.368134663451183, 48.830640223732374], [2.368129875623917, 48.83063973436209], [2.367975804043, 48.8306422947084], [2.367822606316929, 48.83064558616681], [2.367668534703628, 48.83064814611729], [2.367515336940862, 48.830651437182105], [2.367505891015373, 48.830649198160145], [2.367438454213799, 48.83061326869713], [2.367346957237488, 48.830560071716285], [2.367344518270089, 48.83054844254182], [2.367413531387475, 48.83047792008019], [2.367481196791577, 48.83040494955517], [2.367477029528542, 48.83039272485173], [2.367273872239942, 48.830305101077876], [2.367091622250232, 48.830224406621845], [2.367062534311531, 48.83021330194462], [2.367058043922427, 48.83021446085354], [2.367041564391866, 48.83023447458228], [2.366937404358702, 48.830361271521845], [2.366833417481068, 48.830487565628125], [2.366729257798148, 48.83061436236504], [2.366625269922346, 48.83074065536249], [2.366521107865291, 48.83086745188227], [2.366417118980384, 48.83099374467018], [2.366415468717989, 48.83099782626496], [2.366414869084053, 48.83101443446133], [2.366412346749885, 48.83104352922452], [2.366383924042053, 48.83106520097567], [2.366413827887909, 48.8310839619736], [2.366404691313459, 48.8311893098883], [2.366391327972401, 48.83130807558966], [2.366379667568355, 48.8314425191258], [2.366366304105379, 48.83156128479755], [2.366354643591193, 48.83169572740158], [2.366341280006298, 48.83181449304365], [2.366346655591714, 48.83182233614819], [2.366522455505516, 48.83190998284301], [2.366711752837794, 48.83199903270449], [2.366716404819873, 48.83200835861736], [2.366741148674662, 48.83201548222974], [2.366932809301734, 48.83206333602716], [2.367133617156655, 48.8321175469927], [2.367325279881472, 48.83216540016406], [2.367526088537681, 48.832219610465714], [2.367541910115169, 48.832237357745825], [2.367556723325658, 48.83223839750245], [2.367652209535516, 48.83217850432759], [2.367772435632284, 48.83210022473493], [2.3679142934458, 48.83201124442189], [2.368034518763274, 48.83193296455414], [2.368176375663395, 48.83184398481628], [2.368296600201687, 48.831765704673394], [2.368315467080038, 48.831765537208284], [2.368433530694952, 48.83183837649477], [2.368591107504531, 48.83193709766696], [2.36870917189303, 48.83200993667016], [2.368866749743183, 48.832108657464104], [2.36898481490537, 48.83218149618406], [2.368985653051417, 48.83219407288957], [2.368871500517144, 48.83227807424655], [2.368751805365144, 48.83236694869878], [2.368637652075392, 48.83245094981958], [2.368517954765538, 48.83253982401688], [2.368527606594556, 48.832554786514905], [2.368731015253906, 48.83256000097059], [2.368921998701345, 48.83256496604925], [2.3691254060666402, 48.83257018072632], [2.369316389588935, 48.832575145175184], [2.369519797044374, 48.832580358282144], [2.369710780630535, 48.83258532300052], [2.369914189527362, 48.83259053544393], [2.370105173199232, 48.83259549863321], [2.370296156896606, 48.83260046241683], [2.370499564548793, 48.83260567385746], [2.370690548321095, 48.832610637011285], [2.370893956052406, 48.83261584778115], [2.3709036689518213, 48.83261350295112], [2.370917982208525, 48.832601912522655]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 30, "roussel_fabien": 43.0, "nb_emargement": 1377.0, "nb_procuration": 55.0, "nb_vote_blanc": 20.0, "jadot_yannick": 113.0, "le_pen_marine": 110.0, "nb_exprime": 1352.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1718.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1377, "quartier_bv": "50", "geo_point_2d": [48.83154359631914, 2.368276385898395], "melenchon_jean_luc": 531.0, "poutou_philippe": 5.0, "macron_emmanuel": 323.0}, "geometry": {"type": "Point", "coordinates": [2.368276385898395, 48.83154359631914]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8fadbe2025b15bd52273de37f59dab20ae68690b", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 112, "zemmour_eric": 127.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "5-3", "geo_shape": {"coordinates": [[[2.348468766917066, 48.85259385136217], [2.348409621198294, 48.852520099665725], [2.348333713949498, 48.852416843243965], [2.348235262488148, 48.85228422862868], [2.348159355928443, 48.85218097207443], [2.348060905356359, 48.85204835728753], [2.347984999485734, 48.85194510060081], [2.347886549803107, 48.85181248564234], [2.347810644632812, 48.8517092279238], [2.347805779852683, 48.851705600387135], [2.347637894352093, 48.85163399939917], [2.347460021455642, 48.85155738375351], [2.347292136907658, 48.85148578227089], [2.347114265025491, 48.85140916610103], [2.346946381441278, 48.851337563224455], [2.346768510562123, 48.851260947429665], [2.34660062793062, 48.85118934405842], [2.34642275806574, 48.85111272773945], [2.34625487638674, 48.85104112387356], [2.346077006184804, 48.85096450612365], [2.345909125447125, 48.85089290266237], [2.345731257622082, 48.85081628439573], [2.345733469239697, 48.85080045162732], [2.345882479937012, 48.85075950744556], [2.34608771753076, 48.85070855117255], [2.346236729049653, 48.85066760655364], [2.346338414263419, 48.85063966601473], [2.346543650939336, 48.850588708954106], [2.346590976912907, 48.850575704605305], [2.346598836156707, 48.85056395696073], [2.346524897676082, 48.85044157791184], [2.3464553609631, 48.850324983225896], [2.346381424509899, 48.850202604968814], [2.34631188844819, 48.85008600927517], [2.346237951308289, 48.84996363089567], [2.346168415875185, 48.84984703599292], [2.346094479422457, 48.84972465659923], [2.346024944629232, 48.84960806158803], [2.3459510088413, 48.84948568297869], [2.345881474687944, 48.84936908785912], [2.345866373193013, 48.84933507433094], [2.345843390845989, 48.849336244651255], [2.345674228353723, 48.84938387775135], [2.345466491995477, 48.84944179419776], [2.345297328804682, 48.849489427659776], [2.345089590244124, 48.849547343438836], [2.344920427740277, 48.849594975471554], [2.344712688328782, 48.849652891490024], [2.34454352377513, 48.84970052297796], [2.344535488998399, 48.849710489708436], [2.34458389675648, 48.84987701639828], [2.344610590184585, 48.85001702886419], [2.344633874315004, 48.85011249096395], [2.344660568009317, 48.850252502489774], [2.344641175486463, 48.85026174148828], [2.344476747189374, 48.85020992812397], [2.344321436994102, 48.85015771931655], [2.344157009343147, 48.850105905507995], [2.344001699789556, 48.85005369538136], [2.343837274136107, 48.850001882035336], [2.343681965212882, 48.849949671488794], [2.343670301414088, 48.84994945101817], [2.343511950028347, 48.84999533265339], [2.343359366254188, 48.85004321442578], [2.343201014309765, 48.85008909564565], [2.343048429964031, 48.85013697791676], [2.342890077460927, 48.85018285872124], [2.3427374939289862, 48.850230739699974], [2.342641007660244, 48.850257399892506], [2.342639250700565, 48.850264881884904], [2.342671048281281, 48.85031705111862], [2.342690370137092, 48.85035827947515], [2.34269012933611, 48.8503638649586], [2.342710640436854, 48.850391410729245], [2.342748680452937, 48.85047258161919], [2.342808652666369, 48.850601438149376], [2.342866015118858, 48.850723837307456], [2.342925986548981, 48.85085269374225], [2.342983350927597, 48.8509750919246], [2.34304332293692, 48.851103948271515], [2.343100686505109, 48.851226346362495], [2.34316066045646, 48.85135520262896], [2.34321802457684, 48.851477600636066], [2.343277997744785, 48.851606456807126], [2.343335363768662, 48.85172885563706], [2.343395337516034, 48.851857711720214], [2.343452702740719, 48.85198010955949], [2.343512678430165, 48.8521089655622], [2.3435700442070653, 48.85223136331758], [2.343630019113107, 48.852360219224835], [2.343687386804982, 48.85248261690382], [2.343747362290375, 48.85261147272315], [2.343804729171725, 48.85273387031072], [2.343864706587912, 48.85286272694893], [2.343922074021502, 48.85298512445257], [2.3439820506656153, 48.853113980096026], [2.344039420014223, 48.853236377523224], [2.344096788269567, 48.853358774901956], [2.3441567657757982, 48.85348763041458], [2.344214134583396, 48.85361002770936], [2.344274114031798, 48.8537388831415], [2.344275734388952, 48.85374116379005], [2.344397816623101, 48.8538644156263], [2.3445288866827783, 48.85398177542415], [2.344596464246878, 48.85405686572072], [2.344607032766805, 48.85405798934285], [2.344613829830763, 48.85405871188011], [2.344710142303161, 48.85401969028095], [2.344899001413603, 48.853960927266954], [2.345086175413717, 48.85389838373956], [2.345275033660427, 48.853839620125704], [2.345462206773452, 48.85377707600328], [2.345651065519113, 48.85371831179693], [2.345838237745043, 48.85365576707948], [2.346027094264281, 48.853597002265815], [2.346214265603015, 48.85353445695335], [2.346403121258516, 48.85347569153973], [2.346590291710254, 48.85341314563223], [2.346779146502013, 48.85335437961876], [2.346966316066653, 48.85329183311627], [2.346967851330692, 48.85329123353171], [2.346971148176308, 48.85328883136228], [2.347117277666959, 48.85321923813045], [2.347266795488332, 48.85315176499326], [2.34741292283708, 48.853082171384344], [2.347562439882236, 48.85301469786941], [2.347708566451757, 48.852945103890875], [2.347858082720799, 48.8528776299982], [2.348004208511094, 48.85280803565005], [2.348153724004025, 48.85274056137963], [2.348299850377856, 48.852670966669265], [2.348449365094674, 48.85260349202112], [2.348468766917066, 48.85259385136217]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 3, "roussel_fabien": 18.0, "nb_emargement": 1286.0, "nb_procuration": 85.0, "nb_vote_blanc": 9.0, "jadot_yannick": 106.0, "le_pen_marine": 67.0, "nb_exprime": 1277.0, "nb_vote_nul": 0.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1651.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1286, "quartier_bv": "20", "geo_point_2d": [48.851762241047496, 2.345346059954658], "melenchon_jean_luc": 318.0, "poutou_philippe": 9.0, "macron_emmanuel": 459.0}, "geometry": {"type": "Point", "coordinates": [2.345346059954658, 48.851762241047496]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "66ba6f623da289a13af487d9a3b7091f41120031", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 87, "zemmour_eric": 90.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-3", "geo_shape": {"coordinates": [[[2.295592423782618, 48.8428607724781], [2.295566031281484, 48.842860823023386], [2.295378026363183, 48.8428536801471], [2.2951317546060412, 48.84286620100895], [2.295106280095529, 48.84286819410008], [2.295050939579329, 48.84288526807018], [2.295082470941481, 48.84293171915335], [2.295182780629346, 48.84303374987828], [2.2952935728898822, 48.843145872905126], [2.29539388475353, 48.84324790434078], [2.295504677923562, 48.84336002715059], [2.295604989262313, 48.843462057482355], [2.295715783341643, 48.84357418007512], [2.295771944939938, 48.843631303034556], [2.295838995291498, 48.843652820258235], [2.295868762379603, 48.84363519249565], [2.296062806994975, 48.84364159216564], [2.296249789353955, 48.84364667557234], [2.296443835433418, 48.84365307373292], [2.296630816496098, 48.84365815743533], [2.296824862665185, 48.84366455497782], [2.297011845180864, 48.84366963719338], [2.297205891427232, 48.84367603501703], [2.297392872658835, 48.84368111662902], [2.297586918994714, 48.84368751383459], [2.297773901667062, 48.84369259485897], [2.297967948092442, 48.843698991446466], [2.298154929480696, 48.84370407186728], [2.298348975995567, 48.84371046783665], [2.29853595882455, 48.84371554766988], [2.298541169768857, 48.843715015221015], [2.2987343476274003, 48.84366870797317], [2.298928184860697, 48.8436211685476], [2.299121362027628, 48.843574860670955], [2.29931519719636, 48.84352732060633], [2.299508375033984, 48.8434810121088], [2.299702209500762, 48.84343347141316], [2.299895385284149, 48.84338716227886], [2.300089220411376, 48.8433396209601], [2.300282395503033, 48.843293311197016], [2.300476229928091, 48.84324576924722], [2.300669404328114, 48.84319945885529], [2.300863236688595, 48.843151916266486], [2.300883406387012, 48.8431487163757], [2.300895431770183, 48.84314136147771], [2.301089263720574, 48.84309381762093], [2.301266032735483, 48.84305036124234], [2.301459863997315, 48.843002817680514], [2.301636631032078, 48.842959360742825], [2.301813399134662, 48.84291590355017], [2.302007229409065, 48.842868358196476], [2.30218399689389, 48.84282490045272], [2.302377826491876, 48.84277735449467], [2.30244813517711, 48.84276006943622], [2.302463673981149, 48.84274989016816], [2.302431682674858, 48.84271329634293], [2.302263782063881, 48.84266189684523], [2.302070406839793, 48.84260237829356], [2.3019025069424233, 48.84255097828376], [2.301709132542438, 48.842491459142174], [2.301541233358678, 48.842440058620234], [2.301347859782696, 48.84238053888875], [2.301179961312547, 48.842329137854634], [2.300986588560773, 48.84226961753327], [2.30081869216672, 48.842218215994976], [2.300625318876577, 48.84215869507578], [2.300457423196138, 48.84210729302537], [2.300438658709014, 48.84211282502924], [2.300384507880983, 48.842229857867956], [2.300330538613428, 48.842347253279044], [2.300276387287078, 48.84246428694355], [2.300222417533237, 48.842581682281185], [2.300203633618866, 48.842587225825184], [2.299999065277256, 48.8425244204907], [2.299799071516612, 48.84246334317962], [2.299594504148753, 48.84240053714636], [2.299394512700157, 48.84233945916013], [2.299189946318143, 48.84227665152885], [2.298989954456434, 48.84221557285154], [2.298936156191644, 48.84220697710199], [2.298928437987662, 48.84221735734334], [2.298899360082633, 48.842310908262824], [2.298857386021958, 48.842438239385444], [2.298817102120212, 48.84256784229647], [2.298775127651654, 48.84269517336094], [2.298734841972276, 48.84282477710574], [2.298692867107924, 48.842952107212746], [2.298678669348701, 48.8429591694533], [2.298472271580488, 48.842950305653595], [2.298271316917919, 48.84294319751358], [2.298064919282239, 48.84293433301095], [2.297863963374217, 48.842927224178545], [2.297863934774402, 48.842927223111296], [2.297657538633773, 48.84291835791369], [2.297473234421362, 48.84291209625818], [2.297288930253136, 48.84290583431869], [2.297082532932524, 48.84289696812086], [2.2968982288647393, 48.84289070557937], [2.296691833033003, 48.8428818387154], [2.296507529065771, 48.84287557557192], [2.296301131997927, 48.84286670802573], [2.296116829493548, 48.84286044428825], [2.295862723951462, 48.84287249605874], [2.295678420116813, 48.84286623163787], [2.295676660922427, 48.84286623926782], [2.295602767979087, 48.84286343166093], [2.295592423782618, 48.8428607724781]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 3, "roussel_fabien": 15.0, "nb_emargement": 1024.0, "nb_procuration": 50.0, "nb_vote_blanc": 11.0, "jadot_yannick": 80.0, "le_pen_marine": 79.0, "nb_exprime": 1011.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1309.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1023, "quartier_bv": "57", "geo_point_2d": [48.84303785838316, 2.2987266014090872], "melenchon_jean_luc": 227.0, "poutou_philippe": 6.0, "macron_emmanuel": 368.0}, "geometry": {"type": "Point", "coordinates": [2.2987266014090872, 48.84303785838316]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "617a91eeb585a88abbca9cddf74a1233bda49404", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 73, "zemmour_eric": 102.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-2", "geo_shape": {"coordinates": [[[2.325145239128845, 48.82981880993274], [2.325129359679461, 48.829818905599616], [2.325023162886525, 48.82988947746536], [2.324896971792088, 48.8299760720633], [2.324760544848488, 48.830066733268005], [2.324634352888664, 48.8301533275752], [2.324497926386655, 48.8302439884737], [2.324371733561644, 48.83033058249006], [2.324235304776884, 48.830421243066986], [2.324109111086574, 48.83050783679255], [2.323972681381225, 48.830598497055576], [2.323846486837172, 48.83068508959103], [2.323799011839277, 48.83070128693545], [2.323798008230119, 48.8307068241078], [2.323818422501427, 48.830735851725976], [2.323895020977428, 48.83084645366891], [2.323976019192016, 48.83096162675741], [2.323997870797716, 48.83099317981087], [2.323997144386479, 48.83099929774732], [2.324006486157966, 48.831013424859925], [2.324061233716928, 48.83109247452015], [2.3241451088051193, 48.831211506750115], [2.324221708673121, 48.831322108436886], [2.324305584497194, 48.831441140529876], [2.324382186405186, 48.83155174209892], [2.3244660629535, 48.831670774954276], [2.3245426641771862, 48.83178137639019], [2.324626541473057, 48.83190040820928], [2.324703144736964, 48.832011009527406], [2.324787022768644, 48.83213004120958], [2.324841360791146, 48.83220849632089], [2.324847135495301, 48.83221986192372], [2.32485746188244, 48.83222573916131], [2.324879727807412, 48.83225788613852], [2.32490389467855, 48.83229335982994], [2.324921778167149, 48.832302046189504], [2.324962877594591, 48.83228593474775], [2.325045979743365, 48.832152587772775], [2.325110192422142, 48.8320344594647], [2.325117914417427, 48.83202915806081], [2.325298373353752, 48.83198104881967], [2.325477716511152, 48.83193323430359], [2.325658176145582, 48.831885124523176], [2.325837517280747, 48.831837309455786], [2.326017976251063, 48.83178919912837], [2.326197318088415, 48.83174138352508], [2.326377775032403, 48.83169327264299], [2.326557116209726, 48.83164545649611], [2.326737572489596, 48.83159734506705], [2.326916913006887, 48.83154952837658], [2.327097369984836, 48.83150141640822], [2.327276709842089, 48.83145359917415], [2.327457164793707, 48.83140548665114], [2.3276365039909193, 48.8313576688735], [2.327816958278407, 48.83130955580358], [2.327996296815575, 48.83126173748231], [2.328176751801123, 48.831213623873076], [2.328356089678242, 48.83116580500824], [2.328536542637456, 48.83111769084436], [2.328715879842944, 48.83106987233526], [2.328896332149594, 48.83102175672514], [2.329075668695033, 48.83097393767245], [2.329256121699719, 48.83092582152301], [2.329435457585104, 48.83087800192676], [2.32946307121139, 48.83086493055073], [2.3294548473208, 48.83084977945538], [2.329367415574289, 48.830751652274685], [2.32926991455089, 48.83063752264424], [2.329161927010833, 48.83051632527666], [2.329064426889, 48.830402194555404], [2.328956440314125, 48.83028099697683], [2.328858941070699, 48.83016686696341], [2.328849615252271, 48.83015130491316], [2.328823718124933, 48.8301549711331], [2.32877189703303, 48.83017041756411], [2.328582995497993, 48.83022673104108], [2.328405457540673, 48.83027965083473], [2.328216555202411, 48.83033596462678], [2.32803901651281, 48.83038888297203], [2.327850113382807, 48.8304451961798], [2.32767257531142, 48.8304981139836], [2.327483670027707, 48.83055442659946], [2.327306131212262, 48.83060734385412], [2.327128592024886, 48.830660261742075], [2.326939685577617, 48.83071657259129], [2.326924726244294, 48.830714913600204], [2.326760330158295, 48.83061239496377], [2.326600110117291, 48.830512821669785], [2.326435715306947, 48.83041030256868], [2.326275495156415, 48.830310727914885], [2.3261152769802083, 48.830211153045305], [2.325950884074588, 48.83010863325018], [2.32594699917579, 48.83009997735472], [2.325992391397448, 48.82997631368044], [2.326044535851528, 48.82984475913493], [2.326031452884771, 48.8298334890867], [2.325814403147044, 48.829832490589645], [2.325594906430456, 48.8298304705999], [2.325377856702126, 48.82982947220993], [2.325158358653006, 48.829827451411354], [2.325145239128845, 48.82981880993274]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 2, "roussel_fabien": 26.0, "nb_emargement": 1209.0, "nb_procuration": 56.0, "nb_vote_blanc": 8.0, "jadot_yannick": 114.0, "le_pen_marine": 69.0, "nb_exprime": 1190.0, "nb_vote_nul": 11.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1488.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "55", "geo_point_2d": [48.83092696330288, 2.326186081144419], "melenchon_jean_luc": 321.0, "poutou_philippe": 3.0, "macron_emmanuel": 420.0}, "geometry": {"type": "Point", "coordinates": [2.326186081144419, 48.83092696330288]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a39b50f9f6ed4ae945be77b69123ae53830fb4d6", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 183, "zemmour_eric": 230.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "17-54", "geo_shape": {"coordinates": [[[2.291686164198487, 48.87946962248362], [2.291679264154972, 48.879479286420185], [2.291564544519827, 48.87957238162904], [2.291456450815732, 48.87966010012266], [2.2913483567475152, 48.87974781851171], [2.291233635917217, 48.87984091428002], [2.291220445844594, 48.879844655679086], [2.291216764967314, 48.87985512376763], [2.2911002122515782, 48.879957747835974], [2.290985142702766, 48.88005906393698], [2.290868587710737, 48.88016168775276], [2.290753518611845, 48.88026300451968], [2.290751458941877, 48.880271165500716], [2.290809843709341, 48.8803901313439], [2.290868446374801, 48.88050953731168], [2.2909268330402153, 48.88062850308015], [2.290985436242033, 48.880747908964814], [2.291043823454174, 48.88086687375122], [2.291102427180216, 48.880986280452014], [2.291160814926845, 48.881105245155624], [2.291219419201601, 48.88122465087404], [2.291277807470489, 48.881343616394055], [2.291336410918324, 48.88146302202127], [2.291330733661252, 48.881473389247], [2.291136752189522, 48.88155441146059], [2.290938204733672, 48.881637340788544], [2.290935344211296, 48.88165093890642], [2.29105995257398, 48.8817426735382], [2.291174983058528, 48.88182872597323], [2.291290013935564, 48.881914777391735], [2.2914146235542843, 48.88200651163239], [2.291529655207754, 48.882092563705996], [2.2916542670374183, 48.88218429769047], [2.2916702335430488, 48.88218259348343], [2.291685787125131, 48.8821879888898], [2.291706337758042, 48.882180092888554], [2.291713948227778, 48.882172260626255], [2.291716095360424, 48.882167087755796], [2.291710162988603, 48.88205735431233], [2.291704233222045, 48.88194763166492], [2.291698300900218, 48.88183789819899], [2.291692371183538, 48.88172817552912], [2.291686440275212, 48.88161844204876], [2.291680509245105, 48.88150871934834], [2.29169190572085, 48.88149952720206], [2.291888198928301, 48.88147806105877], [2.292082029754658, 48.88145686422449], [2.292278322640396, 48.881435397440725], [2.292472153149175, 48.88141419997402], [2.292668445713392, 48.88139273254984], [2.292862275916793, 48.88137153355145], [2.29305856814707, 48.881350066386055], [2.29325239803297, 48.88132886675522], [2.293448689941614, 48.881307398949424], [2.293642520873299, 48.88128619869421], [2.29383635027148, 48.881264999016], [2.294032641710968, 48.88124352935228], [2.294226470791532, 48.88122232904165], [2.294422761909257, 48.88120085873748], [2.294432669291182, 48.8812022985079], [2.294598470099185, 48.8812767972108], [2.294773960849926, 48.8813560418973], [2.294939762635714, 48.88143054011718], [2.295115255799426, 48.88150978340109], [2.2952810585629, 48.88158428113791], [2.295456551400597, 48.88166352390244], [2.295468004116497, 48.88166060999953], [2.29547902951174, 48.88164452999511], [2.2954991975742542, 48.88154782882076], [2.295525907117478, 48.88145694346469], [2.29555261520408, 48.88136605808713], [2.29557278303428, 48.88126935597667], [2.295572103147895, 48.88126508192596], [2.29550711612393, 48.88114613367922], [2.295440178727405, 48.881023612530704], [2.29537519368173, 48.880904663295006], [2.295308256893757, 48.88078214294514], [2.295243271087317, 48.880663193603716], [2.295176334920056, 48.880540673153206], [2.295111349716132, 48.8804217237141], [2.295044414169577, 48.88029920316298], [2.294979430931736, 48.88018025363419], [2.29491249601815, 48.88005773208318], [2.29484751200726, 48.87993878334798], [2.294780577714262, 48.87981626169633], [2.294785583707838, 48.879811498613435], [2.294765737474579, 48.87978933173742], [2.294700449383759, 48.87967858845691], [2.294620202214046, 48.87954247209761], [2.294554914730071, 48.879431729612136], [2.294474668321088, 48.87929561312474], [2.29440938146821, 48.87918486963583], [2.294329135819946, 48.879048753020435], [2.29426384957379, 48.87893801032659], [2.294245149167899, 48.87890629102736], [2.294238075927538, 48.8788939625631], [2.294222768293073, 48.87889290912646], [2.294042334921293, 48.87893412945673], [2.293862695920558, 48.878975168937004], [2.29368226334215, 48.879016388729525], [2.293502623786154, 48.8790574267672], [2.293322189274447, 48.87909864600595], [2.293142549138798, 48.879139684399505], [2.292962115420579, 48.87918090310052], [2.292782474729689, 48.87922194005146], [2.292602040441522, 48.879263158206705], [2.292422399183196, 48.87930419461428], [2.292241962949416, 48.87934541311497], [2.292062321123654, 48.879386448979155], [2.291881885695603, 48.879427666042886], [2.291702243302413, 48.8794687013637], [2.291686164198487, 48.87946962248362]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 54, "roussel_fabien": 11.0, "nb_emargement": 1354.0, "nb_procuration": 89.0, "nb_vote_blanc": 15.0, "jadot_yannick": 59.0, "le_pen_marine": 73.0, "nb_exprime": 1339.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1649.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1354, "quartier_bv": "65", "geo_point_2d": [48.880413726273964, 2.293078900788082], "melenchon_jean_luc": 128.0, "poutou_philippe": 0.0, "macron_emmanuel": 615.0}, "geometry": {"type": "Point", "coordinates": [2.293078900788082, 48.880413726273964]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c9e5de4abe6db282797fc6077f2b6e1daaca89ec", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 82, "zemmour_eric": 101.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-7", "geo_shape": {"coordinates": [[[2.328937768481913, 48.82612986244041], [2.328906958337224, 48.826136524819695], [2.328845825522668, 48.82615578638573], [2.328671586970188, 48.82621020378132], [2.328503325502279, 48.826263217278374], [2.328329086233285, 48.82631763416974], [2.32816082543247, 48.82637064718749], [2.327986584084894, 48.826425063567015], [2.327818322577513, 48.82647807699713], [2.327644081875392, 48.826532492880034], [2.327475818322662, 48.826585504916224], [2.327301576904134, 48.82663992029493], [2.327133312656334, 48.82669293184413], [2.326938643301224, 48.82675402115602], [2.326770378316245, 48.8268070321892], [2.326752071278905, 48.82681396765774], [2.326753149636523, 48.826826767374634], [2.326804759142996, 48.82692866148491], [2.326869892788464, 48.82705679457398], [2.326921504101389, 48.82715868951993], [2.326986638321158, 48.82728682251916], [2.327038248727775, 48.827388717386164], [2.327077755209168, 48.82746643361507], [2.327084538232389, 48.82746827413342], [2.327111056250796, 48.82746115727443], [2.327288234878873, 48.82748527163541], [2.32750199523884, 48.827514530825724], [2.327679174229025, 48.82753864460638], [2.327892936389328, 48.82756790310416], [2.328070115741714, 48.8275920163045], [2.328283878340346, 48.827621274102164], [2.328461056692823, 48.82764538671451], [2.328674819729572, 48.82767464381199], [2.328851999817915, 48.827698754952365], [2.328854046280175, 48.82769893012358], [2.329078570246392, 48.82770675628007], [2.329305498842305, 48.827714451599945], [2.329307661112872, 48.8277144133612], [2.329478072772655, 48.82770242240929], [2.329644081252856, 48.82768951974825], [2.329814492742229, 48.82767752921603], [2.329980502433564, 48.82766462519606], [2.329985088208042, 48.827664783995644], [2.3301571400729593, 48.82769039250929], [2.33034343254348, 48.827718105011485], [2.330346882901459, 48.827718320395796], [2.330542049860985, 48.82771402130579], [2.330730497241436, 48.82770801774844], [2.330925664142299, 48.82770371713304], [2.331114110067582, 48.82769771386289], [2.331309278260328, 48.82769341262907], [2.331497724104291, 48.82768740875437], [2.331686171278379, 48.82768140369109], [2.331881337989237, 48.82767710241533], [2.331889965348759, 48.82767481673121], [2.331949426310863, 48.827639695481146], [2.332016944203157, 48.8276068271724], [2.332062855357628, 48.82760095075315], [2.332056983675935, 48.82757846592501], [2.331895113787319, 48.827504155530846], [2.331738158944165, 48.82743198051358], [2.331576289964895, 48.82735766967816], [2.331419336004117, 48.82728549423306], [2.331257467945626, 48.8272111820571], [2.331100514867223, 48.82713900618415], [2.330938647706337, 48.827064694466266], [2.330781695510305, 48.82699251816549], [2.330619830632288, 48.82691820511474], [2.330462879318727, 48.826846028386086], [2.330301013976315, 48.82677171578582], [2.330144063545018, 48.826699538629384], [2.330144037816262, 48.82669952679337], [2.329997114904856, 48.82663103639023], [2.329846053384947, 48.82656122930363], [2.329699132616907, 48.82649273853363], [2.329548070523054, 48.826422931953736], [2.329401150536195, 48.82635444080921], [2.329250089242028, 48.82628463384432], [2.329103170047822, 48.82621614142594], [2.328952110915405, 48.82614633408372], [2.328937768481913, 48.82612986244041]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 7, "roussel_fabien": 30.0, "nb_emargement": 1217.0, "nb_procuration": 77.0, "nb_vote_blanc": 15.0, "jadot_yannick": 120.0, "le_pen_marine": 56.0, "nb_exprime": 1195.0, "nb_vote_nul": 8.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1456.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1218, "quartier_bv": "55", "geo_point_2d": [48.82708816197212, 2.329108779237194], "melenchon_jean_luc": 329.0, "poutou_philippe": 6.0, "macron_emmanuel": 425.0}, "geometry": {"type": "Point", "coordinates": [2.329108779237194, 48.82708816197212]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "946ceefdd18a6cb0810584ec4732365d6e1ac87a", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 19, "zemmour_eric": 19.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-50", "geo_shape": {"coordinates": [[[2.342705876352739, 48.8979083681067], [2.342678815135693, 48.89791791783077], [2.342483159294536, 48.897914051410865], [2.342278093804957, 48.897910672585354], [2.342082436645588, 48.89790680640258], [2.341877371210558, 48.89790342689088], [2.341681715483394, 48.89789955916168], [2.341476648738985, 48.897896178956344], [2.341280993068833, 48.89789231057246], [2.341075927743042, 48.89788892968845], [2.340880270754586, 48.897885061541615], [2.3406752054946622, 48.897881679072185], [2.340479549927175, 48.897877810278196], [2.340274483346616, 48.8978744280144], [2.340086235438032, 48.8978711245858], [2.339881170284606, 48.89786774075677], [2.339750825540604, 48.89786545291892], [2.339723050783323, 48.897857766199365], [2.339701671053576, 48.89786412611734], [2.339643767951976, 48.897863108985334], [2.339443543033644, 48.89785870518764], [2.339255293870809, 48.897855400445394], [2.339212192180761, 48.89785445217547], [2.339205552252174, 48.89785616471406], [2.339204045422104, 48.8978927775576], [2.339293956600548, 48.89800620825694], [2.339382970037684, 48.898118504378736], [2.339472883371167, 48.8982319340286], [2.33956189621624, 48.89834422998672], [2.339651810317905, 48.89845766037811], [2.339740823946379, 48.89856995528084], [2.339830738827746, 48.89868338551448], [2.339919754591982, 48.898795680268606], [2.340009668889197, 48.89890911033699], [2.340098685425346, 48.89902140493491], [2.340188600502276, 48.89913483484559], [2.340277617798951, 48.89924713018663], [2.340279163115798, 48.89925155524719], [2.340273059181808, 48.89939071437826], [2.340267024967721, 48.89952824431266], [2.34026099208574, 48.89966577423699], [2.340254886690619, 48.8998049333069], [2.340248853733009, 48.89994246409508], [2.340242748273093, 48.90008162312922], [2.340236713898744, 48.90021915297521], [2.340230609737832, 48.900358311981], [2.340224575299444, 48.90049584179159], [2.34021847107364, 48.90063500076155], [2.340212436571111, 48.90077253053673], [2.340206330904997, 48.900911690362584], [2.340200297702347, 48.90104922010985], [2.340194191982729, 48.90118837900064], [2.340193624165555, 48.90120132152488], [2.340142681373957, 48.901227184883005], [2.340146862779219, 48.9012371588501], [2.340232553207662, 48.90123885758687], [2.340423688810016, 48.90124108574078], [2.34063395727804, 48.90124525532634], [2.340825094285091, 48.90124748284718], [2.341035361458456, 48.901251650821195], [2.34122649850616, 48.90125387770145], [2.341436767090141, 48.90125804587753], [2.341627902814464, 48.90126027210971], [2.341844417995495, 48.90126463038812], [2.342035555125452, 48.901266855977234], [2.342252070356629, 48.90127121441793], [2.342443206164154, 48.901273439349], [2.342659721468192, 48.90127779615349], [2.34285085866998, 48.901280021340746], [2.343067374035507, 48.90128437740829], [2.3432585099262973, 48.90128660103824], [2.34328479496246, 48.9012871300734], [2.3434759322365712, 48.901289353363836], [2.343678072334581, 48.90129341908718], [2.343869208284544, 48.90129564174253], [2.3440797041656403, 48.90129987576896], [2.344094853165469, 48.901292138284866], [2.344097804479064, 48.90127183261605], [2.344100772821303, 48.9011428852281], [2.34410204820854, 48.90101676049877], [2.344103324942289, 48.900890636661586], [2.344106291896531, 48.9007616883218], [2.344107568613742, 48.90063556445514], [2.344110535542834, 48.90050661608519], [2.344111812243509, 48.90038049218909], [2.344114779147654, 48.900251543788954], [2.344116054467791, 48.900125419855904], [2.344119022710787, 48.899996471433035], [2.344120298014396, 48.899870347470504], [2.344123266232439, 48.899741399017515], [2.344124541519518, 48.89961527502551], [2.344127508348421, 48.89948632653485], [2.344128784982956, 48.899360202520896], [2.344131751786914, 48.899231254000036], [2.344133028404912, 48.89910512995663], [2.344135995183723, 48.89897618140561], [2.344137271785185, 48.89885005733275], [2.344140238539051, 48.898721108751545], [2.344141515123979, 48.89859498464926], [2.344144481852697, 48.89846603603787], [2.344145757057137, 48.898339911898645], [2.344148725124864, 48.89821096326461], [2.344149987861784, 48.898156096493445], [2.344151263056724, 48.89802997141918], [2.344152968355351, 48.89795589043175], [2.344146651247215, 48.89794141008918], [2.344104929420257, 48.897950777324176], [2.343878928880895, 48.8979468522139], [2.343651728321288, 48.89794193085021], [2.343425727854504, 48.89793800488465], [2.3431985273763543, 48.89793308266118], [2.342972526982161, 48.897929155840416], [2.342745326585485, 48.89792423275713], [2.342705876352739, 48.8979083681067]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 50, "roussel_fabien": 9.0, "nb_emargement": 755.0, "nb_procuration": 0.0, "nb_vote_blanc": 12.0, "jadot_yannick": 16.0, "le_pen_marine": 80.0, "nb_exprime": 720.0, "nb_vote_nul": 9.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1162.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 741, "quartier_bv": "69", "geo_point_2d": [48.899523360258875, 2.3420616268141403], "melenchon_jean_luc": 404.0, "poutou_philippe": 2.0, "macron_emmanuel": 146.0}, "geometry": {"type": "Point", "coordinates": [2.3420616268141403, 48.899523360258875]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "314a0e0edb61edc2e390da7d2b5a3d70b9e43115", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 41, "zemmour_eric": 99.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-54", "geo_shape": {"coordinates": [[[2.36809244888894, 48.850876192765675], [2.36809303155216, 48.850876692286505], [2.368102799581707, 48.850897738402075], [2.368160231391387, 48.85102146728207], [2.368220583715197, 48.85115184517632], [2.368278016084597, 48.8512755739715], [2.368338367634673, 48.8514059517694], [2.368395800552896, 48.85152968137912], [2.368456152702761, 48.851660058188486], [2.368513586180719, 48.85178378771342], [2.368573940282425, 48.85191416444077], [2.3686313743201293, 48.8520378938809], [2.368691727648102, 48.85216827051188], [2.368749162245556, 48.85229199986716], [2.368809516162543, 48.85242237640899], [2.368866951319756, 48.85254610567943], [2.368927305825765, 48.85267648213203], [2.368984742905408, 48.85280021132486], [2.369045098000452, 48.85293058768825], [2.369074958335598, 48.85299491394888], [2.369074993844418, 48.85300244891157], [2.3690805152793812, 48.85301253008874], [2.369081142521519, 48.853015991406544], [2.369108717129449, 48.853075393337754], [2.369122527666558, 48.85315174832882], [2.369141721365925, 48.85317081506975], [2.369195144573883, 48.85316125331279], [2.369369568019454, 48.85317416109932], [2.369554328961803, 48.85319098851512], [2.3697287525958792, 48.85320389577775], [2.369913513759749, 48.85322072263851], [2.370087937582222, 48.85323362937715], [2.37027269759386, 48.85325045657496], [2.3702840214039362, 48.85325677476261], [2.3703192202402033, 48.85325660116072], [2.370346508714094, 48.85325702716026], [2.370499882679463, 48.85316295969499], [2.370630303496339, 48.85308060227802], [2.370760725263727, 48.85299824471998], [2.370914097719647, 48.852904176701905], [2.37091455898946, 48.85290389852907], [2.3710283916679202, 48.85283834958628], [2.371181763169916, 48.852744281211606], [2.371295595163564, 48.85267873200521], [2.37129715267564, 48.852677957752256], [2.371453944461098, 48.852607004166096], [2.371573625217959, 48.852555904735794], [2.371693307113595, 48.852504804291264], [2.371850097827887, 48.85243385107422], [2.371851855339407, 48.852433216364275], [2.372066242310104, 48.852368828309395], [2.372251722643194, 48.852315251325884], [2.3722731924142852, 48.852302018468244], [2.372249596440689, 48.85227273405903], [2.372191218407827, 48.85217289458432], [2.372112273276544, 48.85202983395876], [2.3720538957789072, 48.85192999439521], [2.371974951403557, 48.85178693274854], [2.371916574430299, 48.851687093995494], [2.371918504507307, 48.851678358815306], [2.372044110809066, 48.851571057919635], [2.37216942563666, 48.85146313480112], [2.372295029529504, 48.85135583451346], [2.37242034331986, 48.85124791111132], [2.372545947550725, 48.85114060964733], [2.372671260293123, 48.85103268686078], [2.3727968634885572, 48.85092538511264], [2.372922175193739, 48.85081746204243], [2.373047777353752, 48.850710160010124], [2.373173088032547, 48.850602235756966], [2.373171574384262, 48.85059019446922], [2.373030313484849, 48.85050310463591], [2.372884026592794, 48.85041481732425], [2.372742766638523, 48.85032772803704], [2.372596480725952, 48.85023944035991], [2.372455223101058, 48.85015234982735], [2.37230893680527, 48.85006406177757], [2.372167680125592, 48.84997697179111], [2.37202139480928, 48.849888683375895], [2.371880139096278, 48.849801592136934], [2.371733856122123, 48.849713303363394], [2.371592599991629, 48.849626212663374], [2.371446318007783, 48.8495379226251], [2.371305062833119, 48.84945083157191], [2.371200203139642, 48.84938754240067], [2.371177052195169, 48.84936806480326], [2.371159401203739, 48.849367339785886], [2.371117979917711, 48.84934233943809], [2.370961454504795, 48.849248515161115], [2.370815173276942, 48.84916022521337], [2.370668893907423, 48.84907193508694], [2.370512368741709, 48.84897811109181], [2.370504717310557, 48.848975830539764], [2.370304805568637, 48.84896111644136], [2.370107664946682, 48.848945903065314], [2.369907752058142, 48.848931189195206], [2.369710613038958, 48.84891597427241], [2.369510700377341, 48.84890125973849], [2.369313561576322, 48.848886045060354], [2.36911364915252, 48.84887132896333], [2.368916510580754, 48.84885611363053], [2.368719372124106, 48.84884089797277], [2.368519460041297, 48.84882618088233], [2.368322321813713, 48.84881096456993], [2.368122409946961, 48.84879624771498], [2.368118978192901, 48.84879628175327], [2.367898522874392, 48.84881699407734], [2.367682475138832, 48.84883742350898], [2.367466428596544, 48.8488578525573], [2.367245971384638, 48.84887856456993], [2.367191056222446, 48.8488883262316], [2.367188270252275, 48.848896563987054], [2.367244094903933, 48.84902064749237], [2.367301522606112, 48.849144376993216], [2.367357347803717, 48.849268459518726], [2.367414776036965, 48.84939218983701], [2.3674706031323822, 48.849516272289286], [2.367528031918543, 48.84964000162632], [2.367583858175614, 48.84976408489024], [2.367641287503775, 48.84988781414537], [2.367697114306809, 48.85001189642952], [2.367754544166065, 48.85013562650206], [2.367810372866956, 48.850259708712905], [2.367867803268233, 48.850383438703545], [2.367923631141693, 48.8505075208267], [2.367981062095904, 48.85063124983611], [2.368036890504433, 48.85075533187884], [2.368084553956242, 48.850858016488324], [2.36809244888894, 48.850876192765675]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 54, "roussel_fabien": 22.0, "nb_emargement": 988.0, "nb_procuration": 72.0, "nb_vote_blanc": 11.0, "jadot_yannick": 65.0, "le_pen_marine": 70.0, "nb_exprime": 973.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1385.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 988, "quartier_bv": "48", "geo_point_2d": [48.85084013652167, 2.3700582405440915], "melenchon_jean_luc": 276.0, "poutou_philippe": 10.0, "macron_emmanuel": 332.0}, "geometry": {"type": "Point", "coordinates": [2.3700582405440915, 48.85084013652167]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5667ea160d2a9732c90545bd6c15e7fb0f2d7341", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 167, "zemmour_eric": 160.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-32", "geo_shape": {"coordinates": [[[2.265968905756256, 48.84432524144052], [2.265986239573802, 48.84434488929971], [2.266093086761896, 48.84445202119351], [2.266198015929221, 48.84455827332259], [2.266302945524388, 48.84466452534952], [2.26640979536848, 48.84477165783741], [2.266514725825024, 48.84487790965823], [2.266621576554695, 48.84498504103719], [2.266726506510075, 48.84509129264362], [2.266833358099916, 48.84519842471221], [2.266938290279238, 48.84530467612085], [2.267045142754565, 48.845411807080524], [2.26715007579529, 48.84551805828309], [2.267256929130817, 48.84562518993236], [2.26736186167039, 48.8457314409205], [2.267468715891412, 48.845838571460845], [2.267573650654969, 48.84594482225122], [2.267680505736215, 48.846051953481165], [2.267785441361204, 48.846158204065425], [2.26789229732796, 48.846265334186405], [2.267997232451806, 48.846371584556266], [2.268104089278808, 48.84647871536686], [2.268209026626684, 48.846584965538916], [2.268315884326479, 48.84669209613985], [2.268420822535815, 48.84679834610579], [2.268527681121236, 48.84690547559774], [2.268632618829542, 48.847011725349255], [2.268739478275148, 48.847118855530795], [2.268844418207424, 48.8472251050845], [2.268951278538669, 48.847332234157065], [2.268969934773471, 48.847334893362316], [2.269152447894675, 48.84725883285742], [2.269306019154553, 48.847195140583295], [2.269459588676349, 48.847131448100065], [2.269642101720406, 48.84705538774194], [2.269795670419635, 48.84699169481932], [2.26997818113375, 48.84691563303136], [2.270073921230239, 48.84687592464382], [2.270086994232211, 48.846877040474276], [2.270109091435256, 48.846865571652394], [2.270166920550451, 48.84684158666905], [2.270338015416758, 48.8467681204115], [2.270491583781553, 48.84670442658752], [2.270662677727297, 48.84663096075591], [2.270816245291125, 48.84656726650737], [2.270829224278918, 48.84656672145228], [2.270998700722638, 48.84661855952753], [2.271192214584436, 48.846678239677544], [2.27136169175187, 48.84673007723341], [2.271555206443538, 48.84678975679035], [2.271724684334684, 48.846841593826824], [2.271918201218617, 48.84690127279893], [2.272087678470874, 48.84695310930773], [2.272281196184575, 48.847012787686765], [2.272450674160636, 48.84706462367616], [2.272644192704103, 48.847124301462095], [2.272813671403866, 48.84717613693208], [2.2730071907770952, 48.84723581412487], [2.273176670200454, 48.84728764907549], [2.273194657378409, 48.847298234170246], [2.273227398786621, 48.847287303409054], [2.273399936937047, 48.84723110942507], [2.273573188406992, 48.84717494110761], [2.273745725812554, 48.847118746619245], [2.273918976536369, 48.84706257779539], [2.274091513209491, 48.84700638190342], [2.274264763174547, 48.846950213472496], [2.2744372977403, 48.84689401706794], [2.274610548321622, 48.84683784813884], [2.274783082142503, 48.84678165122995], [2.2749563306151, 48.846725481786265], [2.2751288650537003, 48.846669284381285], [2.275302112779963, 48.84661311443119], [2.275353226559568, 48.84659217200143], [2.275350443724893, 48.846581311479305], [2.275287709137714, 48.84651709171413], [2.275227198994445, 48.846454704806824], [2.2751182736242033, 48.84634320058483], [2.275014294554095, 48.84623595594788], [2.274905371459151, 48.846124451518456], [2.274801393263596, 48.846017206675405], [2.274692469718787, 48.84590570202202], [2.274583075175453, 48.84579478348528], [2.274474153925079, 48.845683278619106], [2.274364760300744, 48.8455723607599], [2.274255839994945, 48.845460854773435], [2.274146447302115, 48.84534993669252], [2.274037526565709, 48.84523843047675], [2.273928136166929, 48.84512751218235], [2.273819216362361, 48.845016005745606], [2.273709826895061, 48.844905087229456], [2.273600908022526, 48.844793580571725], [2.273491518124156, 48.84468266182554], [2.273382601533543, 48.84457115585441], [2.2732732125791753, 48.844460235987206], [2.273164296920362, 48.84434872979504], [2.273054908897453, 48.84423780970612], [2.2730408060175, 48.844221088379946], [2.273040130957492, 48.844220738020745], [2.273026632472476, 48.84421373175207], [2.272970050242208, 48.844236257056515], [2.272798156887365, 48.84429750259175], [2.272619311641508, 48.84436153502537], [2.272447417461205, 48.844422780049776], [2.272268571354625, 48.844486811951874], [2.272096676348964, 48.84454805646544], [2.27191782938146, 48.844612087836026], [2.271745932188006, 48.84467333183046], [2.271567085722217, 48.844737362677805], [2.271549337510073, 48.84473452952173], [2.2714382223626, 48.844627158061705], [2.271326634241282, 48.84452012176721], [2.271215518647311, 48.84441275007143], [2.271103931442438, 48.84430571354862], [2.270992818126822, 48.84419834163364], [2.270881231838485, 48.84409130488257], [2.270770119438783, 48.843983932740095], [2.270658534066766, 48.84387689576073], [2.2705474225829683, 48.84376952339076], [2.270435838127467, 48.843662486183085], [2.270324726197053, 48.84355511357738], [2.270213142657858, 48.84344807614142], [2.270102033005942, 48.84334070331656], [2.269990450383142, 48.84323366565233], [2.269879341647, 48.84312629259999], [2.269767759953185, 48.843019253808166], [2.269751617118002, 48.84301596520192], [2.269555530776879, 48.843066057362286], [2.269368384482037, 48.84311533860867], [2.269354684247502, 48.84311393375881], [2.269201846539001, 48.84303104146734], [2.269040065869557, 48.84294645657439], [2.268887227802789, 48.84286356296092], [2.268725448163809, 48.842778977629784], [2.268713411848068, 48.84278047885027], [2.268697096560028, 48.84279842408593], [2.268595570013106, 48.84290302885626], [2.268495293970789, 48.84300772661997], [2.268393766611123, 48.84311233119941], [2.268293489760719, 48.84321702877429], [2.2681932138699388, 48.8433217262636], [2.268091683929902, 48.84342633054892], [2.267991407231028, 48.84353102784945], [2.267889876478117, 48.84363563194386], [2.267789598971142, 48.84374032905558], [2.267688067405451, 48.84384493295911], [2.267587789090364, 48.84394962988207], [2.267486256711885, 48.844054233594676], [2.267478202624499, 48.84405808754299], [2.267294289468301, 48.84408955172953], [2.267106457827746, 48.8441202928179], [2.266922542865089, 48.84415175642287], [2.266734712156259, 48.84418249603489], [2.266550796749674, 48.844213959066614], [2.266362965584749, 48.8442446989926], [2.266179049734241, 48.84427616145108], [2.265991218138645, 48.84430689989239], [2.2659856978187563, 48.84430876189319], [2.265968905756256, 48.84432524144052]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 32, "roussel_fabien": 8.0, "nb_emargement": 1259.0, "nb_procuration": 77.0, "nb_vote_blanc": 15.0, "jadot_yannick": 54.0, "le_pen_marine": 79.0, "nb_exprime": 1240.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1556.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1259, "quartier_bv": "61", "geo_point_2d": [48.84535463182648, 2.270505731413552], "melenchon_jean_luc": 183.0, "poutou_philippe": 1.0, "macron_emmanuel": 545.0}, "geometry": {"type": "Point", "coordinates": [2.270505731413552, 48.84535463182648]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a91b2f673d48d37c1e3e8d6038dd7e3cd786c948", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 38, "zemmour_eric": 67.0, "hidalgo_anne": 53.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-13", "geo_shape": {"coordinates": [[[2.376633617632594, 48.85799038428717], [2.37661914679415, 48.85800430275582], [2.376528249853533, 48.85812373924153], [2.376437671357678, 48.8582431818036], [2.376346773573555, 48.858362619024994], [2.376256194257056, 48.85848206052471], [2.376255477461027, 48.85848318816762], [2.376196855512398, 48.85859636944395], [2.376138194491256, 48.85870880851616], [2.376079573396721, 48.858821989719125], [2.376020911868457, 48.85893442871099], [2.375962288902472, 48.859047609826376], [2.375903626856303, 48.85916004963718], [2.375845003392453, 48.859273229772796], [2.375786340839143, 48.85938566950324], [2.375774491726236, 48.85940425834825], [2.3757885737397793, 48.85941203740586], [2.375828665110114, 48.85942545882474], [2.375829012702423, 48.859425570358], [2.376009047344688, 48.85948169136394], [2.37617328724333, 48.859532856199124], [2.376353322638015, 48.85958897578238], [2.376517561849989, 48.85964014013298], [2.376681801384534, 48.85969130425589], [2.376861837874361, 48.85974742306611], [2.376876835566207, 48.85975889228137], [2.376896155407082, 48.8597579361468], [2.376921422847988, 48.859756686312366], [2.376931201898266, 48.85973883843709], [2.377078129997897, 48.8596501696373], [2.377223413003202, 48.85956202450442], [2.377370340106812, 48.85947335533174], [2.377515622114077, 48.859385210729336], [2.377662548232517, 48.859296540284454], [2.377807827889357, 48.859208395306226], [2.377954753001251, 48.85911972538775], [2.3781000330336513, 48.85903158004777], [2.3782469571602762, 48.858942908857166], [2.378392236205403, 48.8588547631484], [2.3785391593254, 48.85876609248417], [2.378684436030964, 48.858677945500276], [2.378831358155073, 48.858589274463185], [2.378976635225372, 48.858501128016876], [2.37912355636442, 48.858412455707594], [2.37926883108445, 48.85832430888548], [2.379272451950779, 48.85832069430449], [2.379346812439053, 48.858182297215386], [2.379422780985036, 48.85804274284982], [2.379497140677318, 48.8579043456327], [2.379573109778192, 48.85776479114379], [2.379647467311701, 48.857626393791506], [2.379723435604674, 48.85748683917224], [2.379735263968665, 48.85747750859321], [2.379726449936625, 48.857465244365265], [2.379689795380038, 48.85740211349419], [2.379636886008226, 48.857314977480485], [2.379640571111937, 48.857310538516394], [2.379621650504175, 48.85728880570919], [2.379593760919692, 48.85724287530368], [2.379531119971447, 48.85713987193716], [2.379450323173097, 48.8570068044918], [2.379387681429447, 48.85690380102122], [2.3793068853634862, 48.85677073345071], [2.37924424553936, 48.856667730789546], [2.379244149343019, 48.85666756840774], [2.379177900267896, 48.85655202264721], [2.379108259366737, 48.85643165671441], [2.379042010893011, 48.85631611085406], [2.378972369247498, 48.85619574570881], [2.378906122737813, 48.85608019975578], [2.378836481721617, 48.85595983450585], [2.378770234450359, 48.85584428844598], [2.378700595426117, 48.8557239230985], [2.378671654409403, 48.85571635769094], [2.378670224298121, 48.85571662186866], [2.3786114059711663, 48.855826401308065], [2.37856564775084, 48.85591016110967], [2.378564779402573, 48.85591143277677], [2.378477715308227, 48.856016897856684], [2.378389175873834, 48.856123531549684], [2.378302112432505, 48.856228996488774], [2.378213572267495, 48.856335630930786], [2.3781265067534623, 48.85644109571489], [2.37803796587949, 48.856547729107305], [2.377950899655601, 48.85665319374344], [2.377862359413858, 48.85675982789198], [2.377842608723947, 48.85677264884496], [2.377843506450492, 48.85677713766502], [2.377755552236867, 48.856894466227814], [2.377671082697587, 48.85700745549486], [2.3775831263441303, 48.85712478389946], [2.377498656068298, 48.857237772122055], [2.377410698926923, 48.85735510127489], [2.377326229266678, 48.857468089359415], [2.377241757866441, 48.857581078265014], [2.37715379957788, 48.85769840629345], [2.377069327430325, 48.857811395053844], [2.376981368364566, 48.857928722931234], [2.376972620439426, 48.85793343223806], [2.376958133789066, 48.85793591635752], [2.376787320126873, 48.85796557233672], [2.376643461372284, 48.85799023591], [2.376633617632594, 48.85799038428717]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 13, "roussel_fabien": 26.0, "nb_emargement": 1386.0, "nb_procuration": 87.0, "nb_vote_blanc": 14.0, "jadot_yannick": 166.0, "le_pen_marine": 49.0, "nb_exprime": 1371.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1726.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1387, "quartier_bv": "43", "geo_point_2d": [48.85799685991928, 2.377913267652235], "melenchon_jean_luc": 475.0, "poutou_philippe": 12.0, "macron_emmanuel": 464.0}, "geometry": {"type": "Point", "coordinates": [2.377913267652235, 48.85799685991928]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bae23b40b70e3724298349f239b51136299e3096", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 149, "zemmour_eric": 167.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-20", "geo_shape": {"coordinates": [[[2.310189682802023, 48.86002706936881], [2.310117215042361, 48.860030340765746], [2.309979214509545, 48.86003513910049], [2.3098240589704, 48.860037873253596], [2.309821550507748, 48.86003780752333], [2.309611747038396, 48.8600194592659], [2.309405966312067, 48.86000088203544], [2.309196161774925, 48.859982533040984], [2.3089903813307, 48.859963955994594], [2.308780578463392, 48.85994560537948], [2.308574798313202, 48.85992702761786], [2.308364995741078, 48.85990867627363], [2.308159215884932, 48.859890097796765], [2.3079494135958543, 48.85987174662259], [2.30774363404571, 48.859853166531266], [2.307741746928418, 48.85985291099076], [2.307558724283311, 48.85981906979716], [2.307378884309479, 48.85978586010062], [2.307195862123644, 48.85975201924927], [2.307016023975383, 48.85971880901331], [2.30683618469355, 48.85968559849825], [2.306653163224382, 48.859651755914584], [2.306473324405295, 48.859618544852204], [2.306290303407271, 48.85958470171154], [2.306257298919176, 48.859574394457724], [2.306242879586777, 48.859581047020605], [2.306202475512475, 48.85966335451294], [2.306139060492201, 48.85979307106778], [2.306080500097877, 48.859912360748005], [2.306017085833784, 48.86004207721698], [2.305958524868331, 48.86016136771001], [2.305895108634525, 48.86029108407733], [2.305836547121889, 48.86041037358464], [2.3057731316442602, 48.8605400898661], [2.3057145695604753, 48.86065938018619], [2.305651153488053, 48.86078909547456], [2.305592590845093, 48.86090838570821], [2.305529172790928, 48.86103810179421], [2.305470609600767, 48.861157391042084], [2.305469946713557, 48.86116008255288], [2.30546818390257, 48.861290474756466], [2.305466109246119, 48.86141971936075], [2.305464346416743, 48.861550111533745], [2.30546227310332, 48.86167935611561], [2.30546051025566, 48.86180974825802], [2.305458435559391, 48.86193899280161], [2.30545667269324, 48.862069384913404], [2.305454597977215, 48.86219862942667], [2.305452835080683, 48.86232902240715], [2.305450760344799, 48.86245826689004], [2.30544868696153, 48.862587511365774], [2.305446924049035, 48.86271790340113], [2.305444849283, 48.86284714783856], [2.3054430863521143, 48.86297753984331], [2.305441011566117, 48.86310678425039], [2.305439248616839, 48.86323717622452], [2.305437173811082, 48.86336642060128], [2.305435410843414, 48.863496812544746], [2.305451234853161, 48.863555123807345], [2.30546943106729, 48.86355574293604], [2.305556479884677, 48.863557381257586], [2.305757975369861, 48.86356103069146], [2.305954756511371, 48.86356473248841], [2.306156253403842, 48.86356838215887], [2.306353034601417, 48.863572083300944], [2.306554530187179, 48.86357573229298], [2.3067513128038453, 48.863579432788065], [2.306952808457888, 48.86358308021024], [2.307149591118635, 48.863586780949746], [2.3073510868289793, 48.86359042770131], [2.30754786955772, 48.86359412688668], [2.307749365312401, 48.86359777386698], [2.307946148097167, 48.86360147239743], [2.308147643908134, 48.8636051187072], [2.308344425385874, 48.863608816574875], [2.308545922628197, 48.86361246132265], [2.308742704150005, 48.863616159434756], [2.308944200085445, 48.863619803504065], [2.309140983026294, 48.86362350096915], [2.309342479017984, 48.86362714436792], [2.309539262026743, 48.86363084027882], [2.309740758062754, 48.86363448390634], [2.309937541127487, 48.86363817916237], [2.310139037231642, 48.86364182121999], [2.310335820340431, 48.863645516720446], [2.310406032157752, 48.863633663172074], [2.310392149411175, 48.86357172591799], [2.310400726976834, 48.863440677152134], [2.310409540683785, 48.86330228923831], [2.310418119536167, 48.863171239547974], [2.310426933151336, 48.86303285159923], [2.310435510540777, 48.862901802767155], [2.310444324064168, 48.862763414783494], [2.310444309338105, 48.86276246768291], [2.310432206124128, 48.862625521333406], [2.310420175100202, 48.86250032359589], [2.310408071998661, 48.862363378110814], [2.3103960410932682, 48.86223818034125], [2.310384010257501, 48.86211298165704], [2.310371907341106, 48.86197603612051], [2.310359876611964, 48.861850838303546], [2.310347773831808, 48.861713891832835], [2.3103357445841812, 48.86158869399172], [2.310323640565369, 48.861451747478355], [2.310311611436263, 48.861326549605195], [2.310299507541789, 48.86118960305698], [2.310287478531201, 48.86106440515179], [2.310275376112126, 48.86092745947592], [2.3102633458570843, 48.8608022615308], [2.310251243574241, 48.86066531492082], [2.310239213437721, 48.8605401169437], [2.310227111279203, 48.860403170298945], [2.310215081261202, 48.86027797228978], [2.310202979227007, 48.860141025610154], [2.310194012469311, 48.860047709282675], [2.310189682802023, 48.86002706936881]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 20, "roussel_fabien": 11.0, "nb_emargement": 1065.0, "nb_procuration": 73.0, "nb_vote_blanc": 13.0, "jadot_yannick": 41.0, "le_pen_marine": 57.0, "nb_exprime": 1052.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1298.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1067, "quartier_bv": "28", "geo_point_2d": [48.86178229478833, 2.307923135454572], "melenchon_jean_luc": 113.0, "poutou_philippe": 3.0, "macron_emmanuel": 473.0}, "geometry": {"type": "Point", "coordinates": [2.307923135454572, 48.86178229478833]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3ea4190351357c9a8390c0a36bebd864ec633720", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 159, "zemmour_eric": 268.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "16-57", "geo_shape": {"coordinates": [[[2.286253108921799, 48.866279961958035], [2.286142150097949, 48.86626028434364], [2.285956264713167, 48.86631937886207], [2.285793337338871, 48.86637463406768], [2.285607451138047, 48.86643372893751], [2.285444521673128, 48.86648898365442], [2.285281593225593, 48.8665442381549], [2.285095705851406, 48.866603331321635], [2.284932776676365, 48.8666585853416], [2.284746888486127, 48.86671767885979], [2.28474653794119, 48.86671779278097], [2.284553048364873, 48.86677885061682], [2.284367159327095, 48.86683794263953], [2.284306866301548, 48.86685696759572], [2.284293344569686, 48.86685717003334], [2.284264394475437, 48.86686924605238], [2.284131195617317, 48.866911277356905], [2.283957968526213, 48.86696580563132], [2.283764475741437, 48.86702686217055], [2.283591247882123, 48.86708138990849], [2.283591138351496, 48.8670814243275], [2.283411790947568, 48.86713672279099], [2.283238562341396, 48.867191250912356], [2.283059215548223, 48.86724654885022], [2.28288598620779, 48.86730107645587], [2.282706638662247, 48.867356373859934], [2.282533408587555, 48.86741090094991], [2.28235405892651, 48.867466197811964], [2.282180828129951, 48.86752072348697], [2.282001479067283, 48.867576020722666], [2.281828247536477, 48.86763054588195], [2.281655015630632, 48.86768507168711], [2.281475665456389, 48.867740367227405], [2.281302431453147, 48.86779489250867], [2.281123080526544, 48.86785018751515], [2.281105929061456, 48.867871962062715], [2.281108010128756, 48.86790578828659], [2.2811903791700052, 48.868018447998395], [2.281271861974613, 48.868128277463526], [2.2813533464860702, 48.86823810687041], [2.281435716583371, 48.86835076637953], [2.281517201788216, 48.86846059565279], [2.281599571228532, 48.8685732550183], [2.281681057126872, 48.86868308415793], [2.281763428636535, 48.86879574339617], [2.281844915216086, 48.868905573301404], [2.2819272860687683, 48.86901823239606], [2.28200877335413, 48.86912806126838], [2.282091146276188, 48.86924072023575], [2.282172634255073, 48.86935054897438], [2.282255006520255, 48.86946320779819], [2.282273502937282, 48.86946730372148], [2.2824142639426492, 48.86941971873356], [2.282553037113079, 48.86936707992136], [2.282693797592369, 48.869319494600404], [2.282832570225707, 48.86926685456008], [2.282851591208572, 48.86927067294154], [2.2829279559760263, 48.8693727990215], [2.283031646472278, 48.86950147828261], [2.283108010555628, 48.86960360511751], [2.283211701956099, 48.86973228419579], [2.283288066730713, 48.86983441089447], [2.28339176039862, 48.869963089798034], [2.283468125876981, 48.87006521546123], [2.283484464258594, 48.87006952760796], [2.283657775082149, 48.870031507223395], [2.283829379093973, 48.86999366433907], [2.284002689413369, 48.869955643452506], [2.284174291573854, 48.8699177991637], [2.284347601389087, 48.86987977777506], [2.284519204412264, 48.86984193299735], [2.284532377832414, 48.86984362247306], [2.284681925780077, 48.86992785339743], [2.2848292184327432, 48.87001036189108], [2.284978767339096, 48.87009459243189], [2.285126060933419, 48.87017710054784], [2.2852165767119272, 48.87021954348262], [2.285217982196793, 48.8702187541553], [2.285231348527486, 48.87016695156238], [2.285263923012386, 48.87003869238004], [2.285295981687972, 48.86991443128948], [2.285328041573706, 48.869790170184494], [2.285360615572673, 48.869661911831386], [2.285395908058532, 48.869651987801404], [2.28537009716832, 48.86964005315092], [2.285376608177657, 48.86961441746234], [2.285402670969865, 48.86951179476902], [2.285435889763135, 48.869379637047345], [2.285468463239844, 48.86925137861731], [2.2855016817001292, 48.869119220846244], [2.285534254851904, 48.868990962368066], [2.285567474330048, 48.86885880545505], [2.285600047169327, 48.8687305460295], [2.285633264951322, 48.86859838905896], [2.285665837465878, 48.86847012958526], [2.285699054914904, 48.86833797256534], [2.28573162710464, 48.868209713043555], [2.285764844220702, 48.86807755597427], [2.285797416085524, 48.86794929640434], [2.285830634231774, 48.86781713929382], [2.285863205771884, 48.867688879675796], [2.285896422222029, 48.867556722507764], [2.285928993437234, 48.867428462841644], [2.285962209554431, 48.867296305624265], [2.285976031650176, 48.86724187494325], [2.285978761296865, 48.86723268998764], [2.285976402834643, 48.86722195567694], [2.28599515025858, 48.86714812663425], [2.286037212953728, 48.867023652218435], [2.286069783476671, 48.86689539335147], [2.286111844438626, 48.86677091797362], [2.286144414619907, 48.866642659057035], [2.286186476562591, 48.86651818363264], [2.286219046402111, 48.86638992466648], [2.286240165285704, 48.86632742709404], [2.286253108921799, 48.866279961958035]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 57, "roussel_fabien": 7.0, "nb_emargement": 1183.0, "nb_procuration": 71.0, "nb_vote_blanc": 12.0, "jadot_yannick": 34.0, "le_pen_marine": 65.0, "nb_exprime": 1172.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1544.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "63", "geo_point_2d": [48.868276812339815, 2.283961612612837], "melenchon_jean_luc": 91.0, "poutou_philippe": 3.0, "macron_emmanuel": 498.0}, "geometry": {"type": "Point", "coordinates": [2.283961612612837, 48.868276812339815]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a4fc87fd8d10eb7576bec8928ae6f61bf5d640d9", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 41, "zemmour_eric": 70.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-34", "geo_shape": {"coordinates": [[[2.395315073059428, 48.87760948557096], [2.395307414802387, 48.877623544787895], [2.395307545743532, 48.87773510375549], [2.395306829731757, 48.8778416329777], [2.395306960672197, 48.87795319192321], [2.395306243282254, 48.87805972201673], [2.395307460115412, 48.87806342800603], [2.395386432808702, 48.878178334945304], [2.395467650679414, 48.878296133709235], [2.395546625442324, 48.87841104052544], [2.395627844038147, 48.87852883915581], [2.395706818154447, 48.87864374493595], [2.395788037475591, 48.878761543432745], [2.395867012287652, 48.87887644998221], [2.395948232334025, 48.87899424834543], [2.396027209215851, 48.87910915477184], [2.396108429987465, 48.8792269530015], [2.396106259169146, 48.87923154751393], [2.3961236651947573, 48.87924736007888], [2.3961238554558433, 48.879247649723126], [2.3961914573618373, 48.879355607976244], [2.396256111670946, 48.87946120856321], [2.3963237141283003, 48.87956916672072], [2.396388367607225, 48.87967476720892], [2.396389205774547, 48.87967668430646], [2.396419885949036, 48.87979497476409], [2.396451537214376, 48.8799116081376], [2.396483188621483, 48.88002824149033], [2.396513869216539, 48.8801465318861], [2.396545520895593, 48.88026316609681], [2.3965762017707233, 48.880381456451374], [2.396576506268194, 48.88040119013768], [2.396580873711772, 48.88040330848397], [2.3966339059449853, 48.880404270949754], [2.396735529582599, 48.880402643572026], [2.396748586717098, 48.88039194890897], [2.396714019910219, 48.880273844965956], [2.396679900484488, 48.880154918570334], [2.396645333990695, 48.88003681458208], [2.396611213524137, 48.879917887235074], [2.3965766473434282, 48.87979978320157], [2.396542528541961, 48.87968085671554], [2.39650796267433, 48.879562752636794], [2.396473842832044, 48.87944382519946], [2.396487339848883, 48.8794331606533], [2.396687054743028, 48.87943412591159], [2.396886063967298, 48.87943456567104], [2.397085778884627, 48.879435529364926], [2.397284788107215, 48.87943596936089], [2.397484503037302, 48.87943693238958], [2.397683512268617, 48.879437371722744], [2.397883227211449, 48.879438334086295], [2.39808223645148, 48.87943877275664], [2.398095678600026, 48.8794281077549], [2.398058278425291, 48.879297759894094], [2.398020596452707, 48.87916856892363], [2.397983196641871, 48.87903822190795], [2.39794551641706, 48.878909029991], [2.397908116980507, 48.87877868292116], [2.3978704357559693, 48.87864949184254], [2.397833036704094, 48.878519143819254], [2.39779535721691, 48.878389952693446], [2.3978003303029203, 48.87837635556802], [2.397790772712007, 48.87836876481484], [2.397668939772096, 48.878342879832424], [2.397458612340281, 48.878298121191435], [2.397299985010895, 48.87826441802322], [2.39708965821312, 48.87821965873083], [2.396931031361469, 48.87818595507133], [2.396928135888769, 48.87818508072604], [2.396777659063725, 48.8781247509952], [2.396627857685541, 48.8780649946495], [2.396477382929132, 48.8780046636422], [2.396327580877545, 48.877944906907395], [2.396177106815826, 48.87788457551611], [2.3960273054542682, 48.877824818399056], [2.395877505799783, 48.877765061098216], [2.39572703140517, 48.87770473002375], [2.3957248199217043, 48.87770401828274], [2.39553914446357, 48.8776590074335], [2.395336276851924, 48.87760816003928], [2.395315073059428, 48.87760948557096]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 34, "roussel_fabien": 21.0, "nb_emargement": 989.0, "nb_procuration": 31.0, "nb_vote_blanc": 10.0, "jadot_yannick": 77.0, "le_pen_marine": 48.0, "nb_exprime": 972.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1273.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 989, "quartier_bv": "75", "geo_point_2d": [48.87872763426256, 2.396669652897224], "melenchon_jean_luc": 401.0, "poutou_philippe": 7.0, "macron_emmanuel": 255.0}, "geometry": {"type": "Point", "coordinates": [2.396669652897224, 48.87872763426256]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a826d6dc66c8fef89fb6416accb61eb0c2a8f895", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 158, "zemmour_eric": 216.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-54", "geo_shape": {"coordinates": [[[2.284517905923893, 48.87269535914887], [2.28445268324326, 48.87269601161636], [2.284254215004338, 48.87267315352881], [2.2840557015919822, 48.87264992431046], [2.283857232339505, 48.872627065555626], [2.283658719279839, 48.87260383567796], [2.283460250377295, 48.87258097626392], [2.283261737670328, 48.872557745726915], [2.28306326911752, 48.872534885653764], [2.282864756763262, 48.87251165445746], [2.282666288560404, 48.87248879372513], [2.282467776558864, 48.872465561869504], [2.282269310069028, 48.87244270048624], [2.282070798420214, 48.87241946797128], [2.281872330917079, 48.87239660592065], [2.281673819620899, 48.87237337274642], [2.281475352467639, 48.87235051003669], [2.281276841524305, 48.87232727620314], [2.28107837472093, 48.87230441283425], [2.280879864130249, 48.87228117834139], [2.280681397676767, 48.87225831431332], [2.280482887438951, 48.87223507916116], [2.280467257466804, 48.87223699164728], [2.280460761157412, 48.872256034910095], [2.280397461492999, 48.87239245922021], [2.280333184306612, 48.87253142455082], [2.280269883960966, 48.87266784965873], [2.280205606094478, 48.87280681488617], [2.280208913033749, 48.87281573648957], [2.280353728367524, 48.8729131357195], [2.280499586000722, 48.87301190623303], [2.280644403774295, 48.873109306001474], [2.280790261144726, 48.87320807613508], [2.280935080019567, 48.87330547463531], [2.281080939853807, 48.87340424440534], [2.281080865451129, 48.87341684557395], [2.2809445419315573, 48.87350772661015], [2.280809315851868, 48.87359778938127], [2.280672992735804, 48.8736886710008], [2.280537765716717, 48.873778733450415], [2.280401440290069, 48.87386961473759], [2.280266212331676, 48.873959676865645], [2.280129887320843, 48.87405055783689], [2.27999465842324, 48.87414061964344], [2.279858331101702, 48.87423150028229], [2.279723102627994, 48.8743215617755], [2.27958677437159, 48.87441244119095], [2.279451543582807, 48.87450250325367], [2.279315214378995, 48.87459338234494], [2.279179984026643, 48.87468344319505], [2.279179597479039, 48.87468369088498], [2.279030631348702, 48.87477544325404], [2.278882595159736, 48.87486665873116], [2.2787336293462452, 48.87495841072364], [2.278585592129576, 48.875049624919086], [2.278436623906368, 48.87514137651855], [2.278288587000419, 48.875232591239055], [2.278140548225088, 48.87532380486149], [2.277991578421154, 48.87541555678355], [2.277843538605651, 48.87550677002356], [2.277694569131022, 48.87559852066976], [2.277546528262974, 48.8756897344266], [2.277397556378483, 48.87578148467974], [2.277249514482622, 48.87587269715489], [2.277100542914968, 48.87596444703146], [2.277087767395665, 48.875974564831665], [2.277532388561819, 48.87789830026514], [2.278166205964376, 48.87812486259613], [2.279785174828691, 48.87860850759667], [2.279839567179537, 48.87863185882896], [2.279858814881195, 48.878620794914696], [2.279988374202973, 48.87857775474752], [2.280173235823884, 48.87852122321712], [2.280217777766925, 48.8785064261828], [2.280391878364088, 48.87844858762356], [2.280576739088546, 48.87839205546347], [2.280750838904745, 48.8783342163762], [2.280935698833615, 48.878277683655966], [2.28110979786885, 48.87821984404067], [2.28129465698972, 48.87816331165956], [2.281468755243993, 48.878105471516214], [2.281653613581784, 48.878048937675715], [2.281827709691676, 48.87799109699617], [2.282012568597183, 48.87793456260371], [2.2821866639261073, 48.877876721396156], [2.282371520660214, 48.87782018733464], [2.28254561657158, 48.877762345607266], [2.282730472522482, 48.87770581008636], [2.282904567652873, 48.877647967830974], [2.283089422808275, 48.87759143174991], [2.283202661768681, 48.87755380871329], [2.283225333341435, 48.877546813587536], [2.283228709425793, 48.87754512325537], [2.283289564794541, 48.8775249034952], [2.283379889480928, 48.87749356439531], [2.283397935739778, 48.877479159757925], [2.28336656619082, 48.877411563667565], [2.283399703586524, 48.877280614723624], [2.283432533040507, 48.87715013426811], [2.283465670091651, 48.87701918617414], [2.283498497852305, 48.876888705661464], [2.283531634583542, 48.876757756618865], [2.283564462014166, 48.87662727605716], [2.283597599776704, 48.87649632697346], [2.283630426864826, 48.876365847261965], [2.283663562931819, 48.876234898120806], [2.283696389702393, 48.876104417461015], [2.283729525437119, 48.875973468270566], [2.283762351865309, 48.875842988461066], [2.283795488631331, 48.87571203922943], [2.283828314741771, 48.87558155847163], [2.2838614498122842, 48.875450609182536], [2.283894275592818, 48.875320128375755], [2.283927410318717, 48.875189179936676], [2.283960237132586, 48.875058699089024], [2.283993371538802, 48.87492774970135], [2.284026196659335, 48.87479726879655], [2.284059330733311, 48.87466631935959], [2.284092155511491, 48.87453583930502], [2.284125289253333, 48.87440488981879], [2.284158115077203, 48.874274408824135], [2.284191248487013, 48.87414345928861], [2.284224072617583, 48.874012978236784], [2.28425720568281, 48.87388202955129], [2.284290029483402, 48.873751548450485], [2.284323162228867, 48.87362059881642], [2.284355987062782, 48.873490117674756], [2.284389119476231, 48.87335916799144], [2.284421942604526, 48.87322868769189], [2.284455074685765, 48.87309773795932], [2.284487897496452, 48.87296725671152], [2.284521029245586, 48.87283630692967], [2.28455385308959, 48.87270582564103], [2.284517905923893, 48.87269535914887]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 54, "roussel_fabien": 1.0, "nb_emargement": 1099.0, "nb_procuration": 56.0, "nb_vote_blanc": 5.0, "jadot_yannick": 20.0, "le_pen_marine": 48.0, "nb_exprime": 1092.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1470.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1100, "quartier_bv": "63", "geo_point_2d": [48.87559123568487, 2.281036984301944], "melenchon_jean_luc": 82.0, "poutou_philippe": 2.0, "macron_emmanuel": 543.0}, "geometry": {"type": "Point", "coordinates": [2.281036984301944, 48.87559123568487]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f24b04bafbbfeee2cf7d638ad6fcf1344aae5a72", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 121, "zemmour_eric": 120.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "15-64", "geo_shape": {"coordinates": [[[2.295592423782618, 48.8428607724781], [2.295602767979087, 48.84286343166093], [2.295676660922427, 48.84286623926782], [2.295678420116813, 48.84286623163787], [2.295862723951462, 48.84287249605874], [2.296116829493548, 48.84286044428825], [2.296301131997927, 48.84286670802573], [2.296507529065771, 48.84287557557192], [2.296691833033003, 48.8428818387154], [2.2968982288647393, 48.84289070557937], [2.297082532932524, 48.84289696812086], [2.297288930253136, 48.84290583431869], [2.297473234421362, 48.84291209625818], [2.297657538633773, 48.84291835791369], [2.297863934774402, 48.842927223111296], [2.297863963374217, 48.842927224178545], [2.298064919282239, 48.84293433301095], [2.298271316917919, 48.84294319751358], [2.298472271580488, 48.842950305653595], [2.298678669348701, 48.8429591694533], [2.298692867107924, 48.842952107212746], [2.298734841972276, 48.84282477710574], [2.298775127651654, 48.84269517336094], [2.298817102120212, 48.84256784229647], [2.298857386021958, 48.842438239385444], [2.298899360082633, 48.842310908262824], [2.298928437987662, 48.84221735734334], [2.298936156191644, 48.84220697710199], [2.298935555445504, 48.842197951121776], [2.298946761029991, 48.842161899071385], [2.298997499638234, 48.842013725128304], [2.29903778403758, 48.841884121200884], [2.299037866434013, 48.84188387075995], [2.299088605887151, 48.84173569585003], [2.29914713673073, 48.84157136262696], [2.299147224938679, 48.8415710852389], [2.2991847615393253, 48.84144281326951], [2.299227254275997, 48.84129928373903], [2.299264790483937, 48.841171011713364], [2.299307282778634, 48.84102748211949], [2.299344818593775, 48.84089921003748], [2.299387310446605, 48.84075568038024], [2.299412509734132, 48.84066956587439], [2.29940910322597, 48.840658532248824], [2.299351256380904, 48.84065617166394], [2.299209696252678, 48.840611853444415], [2.299003086873543, 48.84054829230647], [2.298861527322263, 48.84050397456994], [2.298861207075716, 48.84050387735975], [2.298654598549476, 48.84044031561376], [2.298476177466373, 48.840388148340125], [2.298285206212876, 48.84033236815687], [2.298106785881123, 48.84028019942791], [2.297915815418468, 48.840224418649534], [2.2977373958137512, 48.840172250263905], [2.297546427504361, 48.84011646889846], [2.29736800863899, 48.840064299956836], [2.29717703975802, 48.840008517988316], [2.296998621643927, 48.839956347591425], [2.296807654916227, 48.83990056503581], [2.29662923752936, 48.83984839498227], [2.296623044780469, 48.839844773679516], [2.296518518295652, 48.839728947895956], [2.296404769231877, 48.83959013291763], [2.29639440456761, 48.839588530432536], [2.296367581762046, 48.83959827382629], [2.296267785389291, 48.839701841038305], [2.296173713779473, 48.839801074501615], [2.296073915270787, 48.83990464152506], [2.295979842925944, 48.84000387481795], [2.295880045006153, 48.84010744166885], [2.29578597193823, 48.84020667389192], [2.295691898499951, 48.840305906931526], [2.295592098067374, 48.840409473506185], [2.29558540129874, 48.84042136960751], [2.295588613451407, 48.84042958447927], [2.295712106218324, 48.84047195603307], [2.295869422371827, 48.84052572280744], [2.29603917950183, 48.840583966797055], [2.296196496330707, 48.840637733135935], [2.296366254178876, 48.84069597755484], [2.296523571683231, 48.84074974345821], [2.296693328911409, 48.840807986499826], [2.296850647091336, 48.840861751967665], [2.297020406400129, 48.84091999544661], [2.29717772525543, 48.84097376047894], [2.2971832715677802, 48.84098622954139], [2.297084267687636, 48.84109986051156], [2.296985679633634, 48.84121283459704], [2.296886674904401, 48.841326464481284], [2.296788084630916, 48.841439438372994], [2.296689079040455, 48.84155306807069], [2.296590489260454, 48.84166604268388], [2.296491482808758, 48.84177967219495], [2.296392890821378, 48.8418926457151], [2.296293884870906, 48.842006275047574], [2.296195292026668, 48.84211924838193], [2.296096283840323, 48.84223287841908], [2.29599769013911, 48.84234585156767], [2.295898682466125, 48.84245948052691], [2.295800087907832, 48.84257245348966], [2.295701078011087, 48.842686082254325], [2.295602482595903, 48.84279905503131], [2.295592423782618, 48.8428607724781]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 64, "roussel_fabien": 17.0, "nb_emargement": 1130.0, "nb_procuration": 76.0, "nb_vote_blanc": 10.0, "jadot_yannick": 67.0, "le_pen_marine": 79.0, "nb_exprime": 1118.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1397.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1130, "quartier_bv": "57", "geo_point_2d": [48.84148447500612, 2.2975639971989326], "melenchon_jean_luc": 202.0, "poutou_philippe": 5.0, "macron_emmanuel": 461.0}, "geometry": {"type": "Point", "coordinates": [2.2975639971989326, 48.84148447500612]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7ffb4eed7f9c68955b5d86c4e50a32cbcd49a75e", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 138, "zemmour_eric": 155.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-32", "geo_shape": {"coordinates": [[[2.3122606743899112, 48.84127557518821], [2.312243317417086, 48.84127616611339], [2.312239249207752, 48.84127758710802], [2.312142371188169, 48.84132685683759], [2.312046933537601, 48.8413753775037], [2.312038630095033, 48.841377245403415], [2.312008932269114, 48.84137662042737], [2.312004403015385, 48.84138003985473], [2.311796912855268, 48.84138014143096], [2.311599276953567, 48.841380317342974], [2.31139178679156, 48.841380418216495], [2.311194150899331, 48.84138059255989], [2.3109866607354492, 48.84138069273076], [2.310789024828936, 48.841380867304174], [2.310591390283558, 48.841381041558904], [2.310383898754279, 48.84138114067643], [2.310367077716811, 48.84137870624886], [2.310355737697631, 48.8413871201103], [2.310201440058419, 48.841482522153726], [2.310046762546928, 48.84157816912834], [2.309892463776577, 48.84167357075692], [2.309737785119189, 48.84176921821494], [2.309583485217691, 48.84186461942866], [2.309428805426302, 48.841960266470835], [2.309424582910767, 48.84196581637271], [2.309403243743771, 48.84209005046825], [2.309382056367101, 48.842214338485704], [2.309360716996984, 48.84233857254603], [2.309339528067306, 48.84246285962108], [2.3093181884940632, 48.84258709364615], [2.309297000712507, 48.84271138159316], [2.309275660936139, 48.84283561558297], [2.309254472952137, 48.842959903494794], [2.30923313297264, 48.84308413744934], [2.309211943423785, 48.84320842531805], [2.309190603241052, 48.84333265923732], [2.309169414864166, 48.84345694617943], [2.3091480744783, 48.84358118006346], [2.309126884524521, 48.84370546786174], [2.309105545298037, 48.843829701718356], [2.3090843551417928, 48.84395398948141], [2.309063014349748, 48.8440782232949], [2.309041825353464, 48.84420251103062], [2.309020484358276, 48.84432674480882], [2.308999293796989, 48.84445103250145], [2.308991666067617, 48.84446447892044], [2.30900805770719, 48.84447367697308], [2.3091574246114313, 48.844517631797416], [2.309301234113343, 48.84455990491104], [2.309445042485905, 48.84460217784236], [2.309594411489617, 48.84464613212392], [2.309595231032874, 48.84464639497127], [2.309745815869586, 48.84469887935824], [2.30992163430733, 48.84476020146992], [2.310072219801573, 48.84481268544069], [2.310248039019101, 48.84487400616717], [2.310398626521524, 48.844926490628836], [2.3105162308810883, 48.8449675076771], [2.310521292645626, 48.844966818257156], [2.31053338363205, 48.84495093051398], [2.3105602237873972, 48.8448998124181], [2.310594589601593, 48.844837576566434], [2.310594904735106, 48.844836930839854], [2.310638115036551, 48.84473680443954], [2.310680003257081, 48.84463844214649], [2.310723213242264, 48.84453831479825], [2.310765101142754, 48.8444399524579], [2.31076535716559, 48.844439242535245], [2.310805703394294, 48.84430381565072], [2.310845057569648, 48.84417074835298], [2.3108854033834, 48.84403532140901], [2.310924757152525, 48.843902254053], [2.310964110720592, 48.843769186668204], [2.311004455914233, 48.84363375963529], [2.311043809076081, 48.84350069219224], [2.311084153854684, 48.84336526509989], [2.311123505247911, 48.84323219759073], [2.311163849611692, 48.84309677043888], [2.31120320196112, 48.842963702879345], [2.311243545909979, 48.842828275668026], [2.311282897853204, 48.84269520805026], [2.311323241387044, 48.842559780779524], [2.31134230022683, 48.84255334400812], [2.311558713993413, 48.842618985169835], [2.311773671981147, 48.84268378024783], [2.311990086832624, 48.842749420621494], [2.312205045906473, 48.84281421401753], [2.312222825386282, 48.84281014317913], [2.312315226925941, 48.84269140403825], [2.312404907762652, 48.8425760146066], [2.312497308472406, 48.84245727530019], [2.312586988503139, 48.8423418857078], [2.312676669499261, 48.84222649604415], [2.312769068958384, 48.84210775738993], [2.31285874778606, 48.841992367557715], [2.312951146427162, 48.84187362783865], [2.312949767911316, 48.84186398590376], [2.312836271182458, 48.84176799931221], [2.312723607209946, 48.84167264604425], [2.312610111302392, 48.84157666012095], [2.3124974495197, 48.84148130663149], [2.312383954445296, 48.84138532047721], [2.312271293489945, 48.841289966758424], [2.3122606743899112, 48.84127557518821]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 32, "roussel_fabien": 16.0, "nb_emargement": 1288.0, "nb_procuration": 76.0, "nb_vote_blanc": 13.0, "jadot_yannick": 107.0, "le_pen_marine": 73.0, "nb_exprime": 1273.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1517.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1288, "quartier_bv": "58", "geo_point_2d": [48.84284658038806, 2.310622779424324], "melenchon_jean_luc": 173.0, "poutou_philippe": 2.0, "macron_emmanuel": 545.0}, "geometry": {"type": "Point", "coordinates": [2.310622779424324, 48.84284658038806]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b9cb604d170c2ff1bc1f9ade696a22814a6d9e5c", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 52, "zemmour_eric": 59.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "13-45", "geo_shape": {"coordinates": [[[2.350618118111718, 48.821323442543864], [2.350611761853609, 48.8213204706509], [2.350462500106281, 48.821322807789684], [2.350269636248478, 48.82132569838985], [2.350070689575757, 48.821328811940944], [2.349877827035868, 48.821331701916556], [2.349678880316849, 48.8213348148158], [2.349486016359984, 48.82133770505138], [2.349287069594569, 48.82134081729871], [2.349094206966956, 48.82134370601046], [2.348895258793321, 48.8213468175985], [2.348702396121809, 48.821349705678294], [2.348503449252609, 48.821352817521195], [2.348310585175366, 48.82135570496163], [2.348111638271139, 48.82135881525333], [2.3479187755118582, 48.82136170206925], [2.34771982719944, 48.82136481170164], [2.3475269643962893, 48.821367697885634], [2.347328017388314, 48.821370807772894], [2.347135153179359, 48.82137369331749], [2.34693620613651, 48.82137680165354], [2.346743343245647, 48.82137968657366], [2.346544396156473, 48.821382794257836], [2.346351531859828, 48.82138567853855], [2.346341904329428, 48.82138324615127], [2.346190114614496, 48.82128920995087], [2.346039197378638, 48.82119547961088], [2.345887408756237, 48.82110144301053], [2.345736491246061, 48.8210077122654], [2.345584703716187, 48.82091367526515], [2.345433788655548, 48.820819944129774], [2.345282002218192, 48.820725906729564], [2.34513108688333, 48.820632175189075], [2.344979301538487, 48.8205381373889], [2.344828388641737, 48.82044440635752], [2.344676604400696, 48.82035036725816], [2.344525691229612, 48.82025663582162], [2.344373908081074, 48.820162596322305], [2.344222997359474, 48.82006886449562], [2.344181723604957, 48.82004290683194], [2.344170038339151, 48.820047631947666], [2.344114482383252, 48.820110287515526], [2.344041530211677, 48.82018600377308], [2.343951370742694, 48.820287683345924], [2.343878418074754, 48.82036340039129], [2.343876756572853, 48.820364797906485], [2.343731011516899, 48.820464923042], [2.343581679985582, 48.820567736341935], [2.343435933795873, 48.820667861099736], [2.343286601101425, 48.820770674012586], [2.343140853777849, 48.820870798392676], [2.342991518558532, 48.820973610911], [2.342845771462912, 48.82107373492082], [2.342696435069202, 48.82117654795144], [2.342632264303796, 48.82118992963328], [2.342641330115797, 48.821220371339614], [2.3425609097027262, 48.82134475333168], [2.342476487079033, 48.8214732575957], [2.342483792721902, 48.82149120263124], [2.342543338271525, 48.821497281574715], [2.342553690576544, 48.82150001145134], [2.342563251512593, 48.82148265291381], [2.342763468140454, 48.821523999007596], [2.342947747140549, 48.82156077557847], [2.34294956604943, 48.82156105089014], [2.343143003705328, 48.82158105457501], [2.343337315756926, 48.821601287592635], [2.343530755072798, 48.82162129065704], [2.3437250674360213, 48.82164152214455], [2.343918507049911, 48.82166152458102], [2.344112819702208, 48.82168175633703], [2.344306258252161, 48.821701758138055], [2.344500571204847, 48.82172198926327], [2.344503088254224, 48.82172209479789], [2.344723085427546, 48.821718014909656], [2.344939104887155, 48.82171387235447], [2.3451551243124378, 48.82170972940903], [2.345375122755797, 48.82170564742929], [2.345591142112354, 48.8217015036962], [2.345811139124817, 48.82169742090681], [2.346027158401458, 48.82169327728535], [2.346247156707014, 48.82168919370124], [2.346261110830377, 48.82169743096252], [2.346276934738289, 48.8218219268763], [2.34629124946608, 48.82194219643303], [2.346307073520236, 48.822066692315744], [2.346321389746606, 48.822186961850136], [2.346322624408151, 48.82219005976648], [2.346386672372078, 48.82228069496477], [2.346449751143666, 48.822370323814056], [2.346513799561382, 48.8224609580304], [2.34657687876948, 48.82255058679831], [2.346585140283984, 48.82256302718433], [2.346605592317961, 48.82256208036838], [2.346732120472211, 48.82256991722784], [2.346857711707674, 48.82257904843846], [2.34686510306212, 48.822578214613095], [2.347025054292104, 48.82252744489934], [2.347195274946643, 48.82247341502305], [2.347202059826801, 48.82246858372345], [2.34726350427539, 48.82236478272529], [2.3473313927963693, 48.8222526697205], [2.347351258604162, 48.82224838288074], [2.347531617679785, 48.822322838310704], [2.347708927405399, 48.82239557250374], [2.347889287512158, 48.82247002648523], [2.348066598237342, 48.8225427601384], [2.348246959352736, 48.82261721446998], [2.3484242697153173, 48.82268994757584], [2.348604631861835, 48.82276440045889], [2.348781944585963, 48.82283713303234], [2.34878496634073, 48.82283805606202], [2.348963911071713, 48.822876010180494], [2.349145253820696, 48.82291435661824], [2.34932419908713, 48.82295230929571], [2.349505541004471, 48.82299065517709], [2.349684488145681, 48.823028608219545], [2.349865830604575, 48.82306695265263], [2.350044776908013, 48.823104905145996], [2.350226121259217, 48.823143249037514], [2.350405068086661, 48.82318120098914], [2.350586411606194, 48.82321954432428], [2.3506169975671662, 48.82322603125392], [2.350631412079577, 48.823223638039195], [2.350638393917305, 48.823209973925934], [2.3506370165469352, 48.82307581338755], [2.350635706900424, 48.822942777423826], [2.350634329543926, 48.82280861685348], [2.350633019910982, 48.822675580858096], [2.3506316425684552, 48.82254142025584], [2.350630332949078, 48.82240838422884], [2.350628955620626, 48.82227422359462], [2.350627646014815, 48.82214118753595], [2.350626268700232, 48.82200702686981], [2.35062495911919, 48.821873989880174], [2.350623581807378, 48.82173983008145], [2.350622272239902, 48.821606793060134], [2.350620962667907, 48.82147375692243], [2.350619585388253, 48.82133959617657], [2.350618118111718, 48.821323442543864]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 45, "roussel_fabien": 21.0, "nb_emargement": 1074.0, "nb_procuration": 46.0, "nb_vote_blanc": 8.0, "jadot_yannick": 52.0, "le_pen_marine": 75.0, "nb_exprime": 1059.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1486.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1074, "quartier_bv": "51", "geo_point_2d": [48.82171461516395, 2.3471114476083543], "melenchon_jean_luc": 445.0, "poutou_philippe": 7.0, "macron_emmanuel": 305.0}, "geometry": {"type": "Point", "coordinates": [2.3471114476083543, 48.82171461516395]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5c172c012929febcdc90c20c9922b490405e9408", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 66, "zemmour_eric": 86.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-13", "geo_shape": {"coordinates": [[[2.373061641202734, 48.828379050769165], [2.373058442716952, 48.82836942780969], [2.372931376097884, 48.828302736028675], [2.372782909645008, 48.82822530489501], [2.372620172752418, 48.82813988962918], [2.3724717058524503, 48.82806245899009], [2.372308969978148, 48.8279770432884], [2.372160505366244, 48.82789961225894], [2.37199777051002, 48.82781419612138], [2.371849305472882, 48.82773676378787], [2.371842850666582, 48.82773491045352], [2.371663472918262, 48.82771546085187], [2.371402933409189, 48.82768964675021], [2.371302299624631, 48.82767873540232], [2.371299582513622, 48.8276764412086], [2.371273968129024, 48.827674641811555], [2.371195224485096, 48.82766610377779], [2.370996779787348, 48.82763872927508], [2.37081740267475, 48.82761927930205], [2.370751893249731, 48.82761024219677], [2.370720949438279, 48.82761143203525], [2.370715280679045, 48.82763496847264], [2.3707172980289393, 48.827700537067514], [2.370720149749066, 48.827775413159955], [2.370709825368154, 48.82778436605154], [2.370511935933393, 48.82781692067173], [2.370312786563301, 48.82784933522377], [2.370114896634014, 48.827881889185086], [2.369915746768895, 48.827914303074074], [2.36971785634509, 48.82794685637655], [2.3695187059958283, 48.827979268703245], [2.36950869068094, 48.827990015569846], [2.369538513385055, 48.82807569502937], [2.369571017554624, 48.828175631971476], [2.369600840467348, 48.8282613114013], [2.369633343520969, 48.828361247403436], [2.369610548489723, 48.82836959484169], [2.369473705794, 48.82828206063898], [2.3693624182888993, 48.82820622785926], [2.3692255764387, 48.8281186933599], [2.369114289643146, 48.82804286033829], [2.369101175745374, 48.82804039792783], [2.3688968725179143, 48.82807441439813], [2.36871511509832, 48.828104559015685], [2.368533358830761, 48.828134703363425], [2.368329054852362, 48.82816871976015], [2.368147296775778, 48.828198863512235], [2.367942992304958, 48.828232878348246], [2.367738091947739, 48.82826692116334], [2.367533786943234, 48.82830093529824], [2.367522561796413, 48.82831738661544], [2.367552650124764, 48.828339146864444], [2.367620266677454, 48.828355866705], [2.367663924776552, 48.828367780397485], [2.367670986140415, 48.82837217968976], [2.367761926701287, 48.82849646539503], [2.367848123048077, 48.82861379537552], [2.367939063090569, 48.82873808091211], [2.368025260246398, 48.82885540984034], [2.368111457779307, 48.82897273959352], [2.3682023990757193, 48.82909702489006], [2.368204158419266, 48.829115848144035], [2.368221726347309, 48.829120273223936], [2.368248731017207, 48.829140827119545], [2.368270329110338, 48.829160255216514], [2.36828953433385, 48.82916210324075], [2.368385607446105, 48.82911405987539], [2.368476842836014, 48.82906716906344], [2.368493396137783, 48.829067078396044], [2.368666548861342, 48.82915304976516], [2.368839543838821, 48.82923848311663], [2.369012696351331, 48.829324453065], [2.369185693816104, 48.82940988680923], [2.369358847468724, 48.829495856243305], [2.369531846080315, 48.82958128857441], [2.369542765311841, 48.82958289395387], [2.369700186844401, 48.82956134284384], [2.369891943480717, 48.82953513381174], [2.369893964392245, 48.829534960087976], [2.370101578562492, 48.82952745574959], [2.370298710876285, 48.82952160196993], [2.370506324935069, 48.82951409692887], [2.370703455801594, 48.829508241575525], [2.370911071100206, 48.82950073673825], [2.371108201870749, 48.829494880717704], [2.37111495297844, 48.82949578860788], [2.371281367449566, 48.82954976064074], [2.371471908840267, 48.82961105600414], [2.371515608358946, 48.82962522950378], [2.371533312908143, 48.82963756837731], [2.371546426350695, 48.829636834147514], [2.37166914208064, 48.829676633045835], [2.371788921215388, 48.82971528678073], [2.371806494871165, 48.829711930000954], [2.371909958680043, 48.82960123469587], [2.37201247994961, 48.82949185012357], [2.372115942873613, 48.82938115551791], [2.372218463278197, 48.82927177074755], [2.372321923965922, 48.82916107593481], [2.372424444867681, 48.82905169097359], [2.372527904681188, 48.82894099596092], [2.372630424728901, 48.828831609902345], [2.372733883668301, 48.828720914689775], [2.372836402840129, 48.8286115293325], [2.372939860905534, 48.82850083392003], [2.373042379212412, 48.82839144836472], [2.373061641202734, 48.828379050769165]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 13, "roussel_fabien": 25.0, "nb_emargement": 1396.0, "nb_procuration": 69.0, "nb_vote_blanc": 20.0, "jadot_yannick": 127.0, "le_pen_marine": 71.0, "nb_exprime": 1365.0, "nb_vote_nul": 11.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1697.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1396, "quartier_bv": "50", "geo_point_2d": [48.828657962795944, 2.370491274187185], "melenchon_jean_luc": 500.0, "poutou_philippe": 9.0, "macron_emmanuel": 400.0}, "geometry": {"type": "Point", "coordinates": [2.370491274187185, 48.828657962795944]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bff8f71520abf822684f9c0ea87f3f0816939ca2", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 52, "zemmour_eric": 62.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "14-19", "geo_shape": {"coordinates": [[[2.320352164391192, 48.83509111586307], [2.320358067433395, 48.83508349755187], [2.320503671255718, 48.83501408838264], [2.3206801743498042, 48.83492786719786], [2.320825777308519, 48.834858457626886], [2.321002279342861, 48.83477223595481], [2.32114788143797, 48.83470282598212], [2.321324383774853, 48.83461660383048], [2.321469985006358, 48.83454719345601], [2.321646484921218, 48.834460970809346], [2.321777175848844, 48.83439866687048], [2.321792085300823, 48.83439155913386], [2.321797602451791, 48.83438415440967], [2.3217945091471552, 48.834279816908264], [2.321791717991443, 48.834180633613336], [2.321788626072932, 48.834076296100555], [2.321785834939311, 48.833977112787494], [2.321783995023433, 48.83397277277613], [2.321684414827663, 48.83385957337954], [2.321576072636069, 48.833736628951364], [2.321476493342911, 48.833623429357786], [2.321368150781939, 48.833500483808294], [2.321268572391388, 48.83338728401775], [2.32116023079998, 48.83326433915332], [2.321060653311922, 48.833151139165786], [2.320980166375553, 48.833059802400776], [2.3209814268952202, 48.8330549628351], [2.320965806952315, 48.83304248529171], [2.320943922475804, 48.83301719028789], [2.320916068846664, 48.83298558196456], [2.320915457774229, 48.83298480323537], [2.320843736058688, 48.8328793833765], [2.320769273232823, 48.83277200974672], [2.320697552105675, 48.83266658978016], [2.320623091247098, 48.832559216046704], [2.320551370696611, 48.83245379687176], [2.320476909080851, 48.83234642301918], [2.320482652479535, 48.83233482764658], [2.320522673076503, 48.83232007054759], [2.320556882476364, 48.832306955056964], [2.320568632884913, 48.83229645956242], [2.32055417500408, 48.832282646690594], [2.320488538411237, 48.83214351570297], [2.320422428196839, 48.831999465090995], [2.320356792312165, 48.83186033399587], [2.320290681458729, 48.83171628326693], [2.320269887276214, 48.83171149733701], [2.320142220799217, 48.83176988218011], [2.320016319200559, 48.83182860788925], [2.320008926046045, 48.83182850469867], [2.319992276006698, 48.83183989954028], [2.319946606645278, 48.83186120237127], [2.319761973064437, 48.83194804644949], [2.319590402316179, 48.83202807444859], [2.319405767550915, 48.83211491796401], [2.319234194344401, 48.83219494543247], [2.319049558394707, 48.83228178838508], [2.318877985454371, 48.83236181533841], [2.318875967684466, 48.83236297753047], [2.318749834516959, 48.832451503124545], [2.318624777727181, 48.83253956703871], [2.318498643705832, 48.83262809235393], [2.318373587430415, 48.832716155999336], [2.318247452555222, 48.83280468103572], [2.318122394069495, 48.83289274439681], [2.317997336523579, 48.832980807628054], [2.317871200369078, 48.833069332246666], [2.317746140612837, 48.8331573951936], [2.317620003604474, 48.83324591953337], [2.317494944362588, 48.83333398221152], [2.317368806500359, 48.83342250627243], [2.317354163952143, 48.83343625506135], [2.317357289346269, 48.833442376945236], [2.3174802444936082, 48.83350870589935], [2.317623515925785, 48.83358641797702], [2.317782186635983, 48.83367201347635], [2.317925458978995, 48.8337497242817], [2.318084130670301, 48.83383532026732], [2.318227405274542, 48.83391303070736], [2.318231939223014, 48.833917712603885], [2.3182505820121992, 48.83396496668272], [2.318271024757243, 48.83401053389955], [2.318277435231984, 48.834023610441264], [2.318288594994454, 48.83402615451746], [2.318432033317538, 48.83410203450505], [2.318598255624759, 48.83418951111411], [2.318741694848099, 48.834265390719274], [2.318907916833489, 48.83435286687744], [2.319051356957088, 48.83442874610019], [2.319217581345404, 48.83451622182303], [2.3193610223692662, 48.83459210066333], [2.319527246435752, 48.83467957593528], [2.319670688348145, 48.83475545529249], [2.319836914829312, 48.83484292922977], [2.319980357641982, 48.834918808204506], [2.320146583801315, 48.83500628169093], [2.320290027514264, 48.83508216028323], [2.320300828036059, 48.83509598024553], [2.320315302000712, 48.83509513614223], [2.320352164391192, 48.83509111586307]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 19, "roussel_fabien": 22.0, "nb_emargement": 1329.0, "nb_procuration": 53.0, "nb_vote_blanc": 18.0, "jadot_yannick": 132.0, "le_pen_marine": 75.0, "nb_exprime": 1306.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1722.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1329, "quartier_bv": "56", "geo_point_2d": [48.833513317960666, 2.319790702091064], "melenchon_jean_luc": 503.0, "poutou_philippe": 13.0, "macron_emmanuel": 386.0}, "geometry": {"type": "Point", "coordinates": [2.319790702091064, 48.833513317960666]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9c62b594dbee9e639ab3e1fd22b621e71d17bc4b", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 52, "zemmour_eric": 157.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-44", "geo_shape": {"coordinates": [[[2.260221150948106, 48.83679617056114], [2.260189852434283, 48.836787494065774], [2.260040550095556, 48.83671221009413], [2.259893858943521, 48.83663642134615], [2.259744558827332, 48.83656113700332], [2.259597867168484, 48.83648534787368], [2.259586662523709, 48.836483629059614], [2.259376036021949, 48.836512913777234], [2.259165508366179, 48.8365432788883], [2.258954880024459, 48.836572562854386], [2.258744351882337, 48.83660292722253], [2.258533723075784, 48.83663220954613], [2.258323194434631, 48.83666257407076], [2.25811256515057, 48.836691855651196], [2.257902036023182, 48.83672221943294], [2.257889155363741, 48.83671956010648], [2.257740672552946, 48.83661423733999], [2.257590225358528, 48.836511427633305], [2.257441742382396, 48.8364061044677], [2.257291297753422, 48.836303293475055], [2.257286578241628, 48.83630119740157], [2.257093419044829, 48.836249489734335], [2.256900814024359, 48.836198404864135], [2.256707656953557, 48.83614669657769], [2.256515052690967, 48.83609561108167], [2.256321895021336, 48.83604390215903], [2.25612929151663, 48.835992816037184], [2.255936688389447, 48.83594172960282], [2.255743531863776, 48.83589001973917], [2.255550929494484, 48.83583893267895], [2.255357775094816, 48.835787222196075], [2.25516517348332, 48.835736134510086], [2.25497201848495, 48.83568442339101], [2.254779417631457, 48.83563333507917], [2.254586264758891, 48.83558162334093], [2.2545567913957782, 48.83557156988539], [2.254544093020886, 48.83557582035061], [2.254477844001865, 48.8356533421386], [2.254383029556171, 48.835763707377374], [2.25428743724643, 48.83587556334816], [2.254192623355594, 48.835985928422545], [2.254099144677566, 48.83609530972634], [2.254004329988358, 48.83620567462981], [2.253910850521137, 48.83631505576495], [2.253816035033549, 48.83642542049747], [2.253722554790002, 48.836534800564706], [2.253627737128922, 48.83664516601708], [2.253627588864319, 48.836645339571085], [2.253624950600428, 48.83664842685922], [2.253597606344695, 48.83668042245481], [2.25350292380646, 48.83679120954884], [2.253408105226717, 48.83690157390249], [2.253313421884005, 48.83701236082461], [2.253218603850195, 48.83712272591403], [2.253123918340658, 48.837233512655736], [2.253029099516308, 48.83734387667379], [2.252941525918831, 48.83744634076585], [2.252846706308258, 48.837556705517635], [2.252759133357022, 48.83765916946514], [2.252664311623643, 48.83776953314355], [2.252576737956294, 48.83787199693802], [2.25248191544956, 48.83798236045079], [2.252394341066091, 48.838084824092235], [2.252299519135356, 48.83819518834723], [2.252189876316745, 48.83832346986809], [2.252095052156677, 48.83843383392896], [2.251985408332755, 48.83856211523497], [2.251890584667882, 48.83867247911872], [2.251780939825932, 48.83880076110925], [2.251686113944602, 48.83891112389949], [2.251672094475161, 48.83904081518326], [2.251656096109715, 48.83919094316819], [2.251642076490421, 48.839320634416], [2.251628536160457, 48.839447685382545], [2.251614516403532, 48.83957737659726], [2.251600977302097, 48.83970442754002], [2.251586956045132, 48.83983411871321], [2.2515734168227413, 48.83996116872432], [2.251559395428134, 48.84009085986449], [2.251545856058956, 48.84021791074258], [2.251531835889025, 48.8403476018582], [2.251518295036565, 48.84047465179618], [2.251504274728995, 48.84060434287874], [2.25149073509217, 48.84073139369217], [2.251477194026901, 48.8408584444811], [2.25146317351382, 48.840988135514316], [2.251449633689922, 48.841115185380126], [2.251435611676856, 48.84124487637174], [2.25142207170616, 48.84137192710453], [2.251408049555441, 48.841501618063084], [2.251394509450861, 48.841628668763505], [2.251380488524945, 48.84175835969756], [2.251366946936937, 48.841885409457824], [2.2513529258733698, 48.84201510035881], [2.251349935351699, 48.842043156473935], [2.251365887332601, 48.84206152976667], [2.25138161554418, 48.842062470907265], [2.251559527561009, 48.842021646380964], [2.251755033877617, 48.841976660518974], [2.251932945309037, 48.841935835434185], [2.252128450994459, 48.841890848059215], [2.252306361827459, 48.84185002331521], [2.252501866868678, 48.84180503532654], [2.252679777116366, 48.841764210024095], [2.252875281513274, 48.84171922142168], [2.253053191175546, 48.84167839556073], [2.253248694928238, 48.84163340634461], [2.253426604017969, 48.84159257902592], [2.253622107113558, 48.841547590095374], [2.253800016980308, 48.84150676222669], [2.253995519444549, 48.841461771783166], [2.254173427350533, 48.841420944246785], [2.254368929170543, 48.84137595318957], [2.254546836491088, 48.841335125094766], [2.254742337666861, 48.84129013342383], [2.254920244414821, 48.841249303871216], [2.254925524410932, 48.841248817819206], [2.255117587800883, 48.84125622140005], [2.255318085563993, 48.84126437599101], [2.255510150429481, 48.84127177894997], [2.255710646951509, 48.84127993287437], [2.255902711930079, 48.841287335202956], [2.256103209935702, 48.84129548847782], [2.256114713666695, 48.84129006394503], [2.256114688639907, 48.841263082593706], [2.256136900002285, 48.841136647419354], [2.2561586879573072, 48.84101151728335], [2.256180899105645, 48.84088508207233], [2.256202686849977, 48.84075995190009], [2.256224897771546, 48.84063351755173], [2.256246683955496, 48.84050838643549], [2.256268471397263, 48.84038325530977], [2.256290681998732, 48.840256820906546], [2.256312469229714, 48.8401316897446], [2.256334679617256, 48.840005255304725], [2.256335167804453, 48.84000369882487], [2.256394233383487, 48.83987243269862], [2.256455438803335, 48.83973823078202], [2.256514505140947, 48.83960696457366], [2.256575709939398, 48.839472762563595], [2.256634775673283, 48.83934149626468], [2.256695979863171, 48.83920729326192], [2.256755043618125, 48.83907602776323], [2.256816248549022, 48.83894182467552], [2.2568753117131, 48.83881055818695], [2.256936514647416, 48.838676355896645], [2.256944003897605, 48.83867073725512], [2.257116734322776, 48.83861980734342], [2.257291843215369, 48.83856601394929], [2.257464572940814, 48.83851508442982], [2.25763968248498, 48.83846129052991], [2.257644621354764, 48.83845871389207], [2.257746420280966, 48.83837371789609], [2.257856790190153, 48.83828144687573], [2.257958588424072, 48.838196450685665], [2.258068957582319, 48.83810417945494], [2.258084587232748, 48.83810057816587], [2.258092126388826, 48.83807487940249], [2.258073049381423, 48.837939523765954], [2.258052643045142, 48.837799933697084], [2.258033566240897, 48.83766457802095], [2.2580131587428403, 48.83752498880182], [2.257994082154553, 48.83738963218681], [2.2579736762322202, 48.83725004293509], [2.257985097333764, 48.837240297093544], [2.25816592887544, 48.8372213131695], [2.258373331431991, 48.837198916001064], [2.258554164038156, 48.83717993239715], [2.258761566263233, 48.83715753455478], [2.258942398597227, 48.83713854946392], [2.259149800490818, 48.83711615094755], [2.259330632539938, 48.83709716526912], [2.259538034089156, 48.837074766978056], [2.259718865853297, 48.83705578071199], [2.259926267083789, 48.83703338084768], [2.260107098562938, 48.83701439399399], [2.260135918768288, 48.83702029859111], [2.260156081288596, 48.83700542980289], [2.260185780045836, 48.836906240514686], [2.260211528067456, 48.836821228828306], [2.260221150948106, 48.83679617056114]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 44, "roussel_fabien": 11.0, "nb_emargement": 939.0, "nb_procuration": 46.0, "nb_vote_blanc": 8.0, "jadot_yannick": 19.0, "le_pen_marine": 105.0, "nb_exprime": 923.0, "nb_vote_nul": 9.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1296.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 940, "quartier_bv": "61", "geo_point_2d": [48.83873511789801, 2.2547584398785516], "melenchon_jean_luc": 257.0, "poutou_philippe": 4.0, "macron_emmanuel": 269.0}, "geometry": {"type": "Point", "coordinates": [2.2547584398785516, 48.83873511789801]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3dbbca904024cfd2b5bd181e3d3a18ddfe18e1ec", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 75, "zemmour_eric": 91.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-32", "geo_shape": {"coordinates": [[[2.33026312044112, 48.88766862146757], [2.33022448310777, 48.887691918275316], [2.330061527799948, 48.887770754536824], [2.329900654751821, 48.8878488252076], [2.329737698462699, 48.88792766101712], [2.3295768244443043, 48.88800573124169], [2.32941595129562, 48.888083802151485], [2.329252992185211, 48.88816263637758], [2.329092118066253, 48.88824070684113], [2.328929157974638, 48.888319540615264], [2.328768282885301, 48.88839761063257], [2.328605321812375, 48.88847644395469], [2.328444444389163, 48.88855451351816], [2.328281483686915, 48.8886333472952], [2.328120605305016, 48.88871141551311], [2.327957643621549, 48.88879024883816], [2.327796764269364, 48.888868316609845], [2.327633801604472, 48.88894714948289], [2.327472921281999, 48.88902521680832], [2.32730995763578, 48.889104049229374], [2.327149076343014, 48.88918211610854], [2.326986111715465, 48.88926094807761], [2.326825229452403, 48.889339014510476], [2.3266622624799043, 48.88941784601984], [2.326501380610261, 48.88949591201416], [2.326338412656319, 48.889574743071506], [2.3262755520575, 48.88958204806863], [2.326275458614029, 48.889608347454605], [2.326307117089387, 48.889701373865165], [2.326352120583902, 48.88983877256624], [2.326396861452852, 48.88997024049527], [2.326441864064458, 48.89010763822199], [2.326486605391022, 48.89023910608527], [2.326531609835457, 48.890376503752265], [2.326576350256, 48.89050797154215], [2.326621355169638, 48.89064536914175], [2.326666097411453, 48.890776836873556], [2.326711101430649, 48.89091423439809], [2.326755844130099, 48.89104570206415], [2.326800849982268, 48.89118309952895], [2.326833116065812, 48.89127790613904], [2.326850767885342, 48.89129808550609], [2.326900497982292, 48.89128930704985], [2.327086308342654, 48.891247592043726], [2.327271940392713, 48.89120550972221], [2.327457751508598, 48.89116379504347], [2.327643382959801, 48.89112171214294], [2.327829193490672, 48.891079995985386], [2.328014824342808, 48.89103791250584], [2.328200632901678, 48.890996196660325], [2.328386264518606, 48.89095411260941], [2.3283923240550592, 48.89095368793962], [2.328553702622613, 48.890966469443384], [2.32878957484164, 48.89098542040126], [2.328950953616647, 48.89099820047007], [2.329186827476169, 48.891017151551786], [2.329348205083366, 48.89102993107723], [2.3293521145854292, 48.89102987293311], [2.32959063370904, 48.891003449985654], [2.329845813224981, 48.890976599995504], [2.329860301682513, 48.890981651650655], [2.329890704156448, 48.89102426095057], [2.329919148586605, 48.891065357410724], [2.3299328984929693, 48.89107057309748], [2.330099625705817, 48.891059690619656], [2.330310451955673, 48.89104418380357], [2.33047717900521, 48.89103330079988], [2.330688005024208, 48.891017794217966], [2.33080049442363, 48.891010451306705], [2.330849155936596, 48.89100791375296], [2.330847703495616, 48.89097501281832], [2.330872099616366, 48.89085658840229], [2.330901255845041, 48.89073154815033], [2.330894792045755, 48.89072246931531], [2.330717049371771, 48.89065216318142], [2.3305342555768602, 48.890580265508916], [2.330356513886682, 48.89050995793157], [2.330173721088729, 48.89043805969932], [2.329995980370803, 48.8903677515777], [2.32981318857001, 48.89029585278581], [2.3296354488126543, 48.8902255450192], [2.329452658008917, 48.890153645667624], [2.329450915295373, 48.890139012867806], [2.329606384872799, 48.89005360474517], [2.329756275129159, 48.88997048634803], [2.329911743702526, 48.88988507781581], [2.330061631611017, 48.889801959915296], [2.330217100555629, 48.8897165500819], [2.330366987491564, 48.88963343178641], [2.330522454056835, 48.88954802243507], [2.330672341395503, 48.88946490285296], [2.330827806956732, 48.889379493092065], [2.33097769331129, 48.88929637401421], [2.331133157868483, 48.889210963843745], [2.331283041898336, 48.88912784346407], [2.3314385054514988, 48.88904243288407], [2.331588389860976, 48.88895931301626], [2.331743852410114, 48.88887390202673], [2.331893735858597, 48.888790780864724], [2.331920534751669, 48.888776909884996], [2.331920996310143, 48.888769635107096], [2.331904552027081, 48.88874709165971], [2.331901933554287, 48.888744648867], [2.3317679081087332, 48.888657009808725], [2.331634308842972, 48.88856839630062], [2.331500284301502, 48.888480756928715], [2.331366687318629, 48.88839214221614], [2.331232663681237, 48.88830450253067], [2.331099066230766, 48.8882158883969], [2.330965043497447, 48.888128248397784], [2.33083144832985, 48.888039633059606], [2.330697425137018, 48.88795199273927], [2.330563830865391, 48.887863377987536], [2.330429809940298, 48.8877757373612], [2.33029621522418, 48.887687121389774], [2.33026312044112, 48.88766862146757]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 32, "roussel_fabien": 24.0, "nb_emargement": 1345.0, "nb_procuration": 84.0, "nb_vote_blanc": 15.0, "jadot_yannick": 127.0, "le_pen_marine": 71.0, "nb_exprime": 1324.0, "nb_vote_nul": 8.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1787.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1347, "quartier_bv": "69", "geo_point_2d": [48.8896119890391, 2.328939126194034], "melenchon_jean_luc": 392.0, "poutou_philippe": 6.0, "macron_emmanuel": 475.0}, "geometry": {"type": "Point", "coordinates": [2.328939126194034, 48.8896119890391]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5039f0079680a123674214b1183cb36cb72bb69e", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 86, "zemmour_eric": 72.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "6-7", "geo_shape": {"coordinates": [[[2.331920393034483, 48.85241972718718], [2.331778767337139, 48.8524229888308], [2.331732973818442, 48.8524354122056], [2.331674462690996, 48.852425498260274], [2.331665927659359, 48.85242589666755], [2.331489518403034, 48.85239634491282], [2.331351997742515, 48.85237304130865], [2.331175588854704, 48.852343488190435], [2.330979557608323, 48.85231026993819], [2.3308031477815, 48.85228071626155], [2.330607118371434, 48.85224749740489], [2.33043070896835, 48.85221794317751], [2.330234678669115, 48.85218472370116], [2.330233747447804, 48.8521845440133], [2.330178994673584, 48.85217257645231], [2.330042250782465, 48.852142687890876], [2.329868400574, 48.85210186022808], [2.329646483406598, 48.852053355016494], [2.329472633806359, 48.85201252677542], [2.32947129211502, 48.85201226204036], [2.329281864759834, 48.851981786855795], [2.329080644765158, 48.85194880528872], [2.328891217869215, 48.85191832948393], [2.328689996992512, 48.85188534814966], [2.328587775915583, 48.85186890182848], [2.328537697641594, 48.85187993382068], [2.328514210003601, 48.85191374375046], [2.328620835392853, 48.85200817292413], [2.328738270950981, 48.85211308169124], [2.328844897154045, 48.85220751064833], [2.328962333612602, 48.85231241917672], [2.329068960629586, 48.85240684791718], [2.329186399339555, 48.852511757113824], [2.329293025807818, 48.8526061856301], [2.329294733227653, 48.85260821335713], [2.329340248591807, 48.85268395597455], [2.329415780444965, 48.85280502798084], [2.32949448344761, 48.85293048317018], [2.32957001601637, 48.85305155505226], [2.329648719762699, 48.85317701011232], [2.329724253047173, 48.853298081870186], [2.3298029575373, 48.85342353680096], [2.329878491537498, 48.85354460843465], [2.3299571967712263, 48.85367006323617], [2.330032732849944, 48.85379113475328], [2.330111437464601, 48.853916589417864], [2.330186974259068, 48.8540376608107], [2.3302656809803413, 48.85416311535367], [2.330323957523423, 48.854256522986], [2.330334621038398, 48.854268793210494], [2.33038181955064, 48.85425738012472], [2.330562881356934, 48.85421229409902], [2.330745395173058, 48.85416714037473], [2.330926454976856, 48.85412205468695], [2.331108968173388, 48.85407689950516], [2.33129002871183, 48.85403181327114], [2.331472539902881, 48.85398665842283], [2.331472720388255, 48.85398661266478], [2.331638420502872, 48.85394356885595], [2.331802024755733, 48.853901123775756], [2.331967722963684, 48.85385807950002], [2.33213132667999, 48.85381563396631], [2.332294928766973, 48.8537731881997], [2.332460627523607, 48.85373014324408], [2.332624230425199, 48.85368769793082], [2.332789927286783, 48.85364465160897], [2.332791881517486, 48.853644021265616], [2.332963629219913, 48.85357712426106], [2.333132408751633, 48.85351114129888], [2.333301189207179, 48.853445159001616], [2.333472934249022, 48.85337826034718], [2.333477395289623, 48.85337716100269], [2.333609824678653, 48.85336107527195], [2.33374139677503, 48.853345094342664], [2.333872968790704, 48.85332911326842], [2.334005397924015, 48.85331302799849], [2.334006752589028, 48.85331281519645], [2.334097458303265, 48.85329532482516], [2.33419234471118, 48.85327712377439], [2.334193569671878, 48.85327692913498], [2.334366917968247, 48.853254874591165], [2.33455309748383, 48.85323109874179], [2.334726445475563, 48.85320904367621], [2.334912626037495, 48.85318526637474], [2.335085973724583, 48.8531632107874], [2.3352721525845572, 48.85313943381724], [2.335445499966998, 48.853117377708166], [2.335631679861826, 48.85309360018519], [2.335662045801379, 48.85304043789932], [2.335660352207178, 48.85303901560849], [2.335603591739591, 48.853025831569134], [2.335419851504819, 48.852983790664354], [2.335197386739329, 48.85293211896804], [2.335197172034337, 48.85293207010925], [2.335013432458079, 48.85289002857685], [2.334825050513298, 48.852848586902866], [2.334641311531643, 48.85280654479589], [2.334452930173234, 48.85276510343223], [2.334425877682574, 48.85278582160954], [2.334406305666209, 48.852797479011144], [2.334214053282426, 48.8527578063541], [2.334044108752116, 48.85272255556975], [2.333851856920519, 48.85268288232808], [2.3336819142422423, 48.85264763103456], [2.333678160802712, 48.85264722071117], [2.333524433878016, 48.852644742095706], [2.333366873736082, 48.85264244428142], [2.333213146828879, 48.852639966165356], [2.333055585352358, 48.85263766793352], [2.333052507562343, 48.85263738906513], [2.332887104740219, 48.85261036587032], [2.332678511576729, 48.85257512787979], [2.332513107783535, 48.85254810415888], [2.332304516473426, 48.85251286642125], [2.332139113071716, 48.85248584218187], [2.33193052091253, 48.85245060288338], [2.331920393034483, 48.85241972718718]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 7, "roussel_fabien": 9.0, "nb_emargement": 816.0, "nb_procuration": 63.0, "nb_vote_blanc": 10.0, "jadot_yannick": 44.0, "le_pen_marine": 25.0, "nb_exprime": 804.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1021.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 816, "quartier_bv": "24", "geo_point_2d": [48.85304807796169, 2.3315465917339027], "melenchon_jean_luc": 126.0, "poutou_philippe": 2.0, "macron_emmanuel": 408.0}, "geometry": {"type": "Point", "coordinates": [2.3315465917339027, 48.85304807796169]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a6a09394ff4c01e9c8b6d5eb5abfd07f54542604", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 119, "zemmour_eric": 123.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-63", "geo_shape": {"coordinates": [[[2.295844056095913, 48.8392611750742], [2.295846301792077, 48.83926558891437], [2.295980560979761, 48.839339340610955], [2.296111896004196, 48.839412130603826], [2.296246154582747, 48.839485881984615], [2.296377490347334, 48.8395586716764], [2.296380712847519, 48.83956128081815], [2.29639440456761, 48.839588530432536], [2.296404769231877, 48.83959013291763], [2.296518518295652, 48.839728947895956], [2.296623044780469, 48.839844773679516], [2.29662923752936, 48.83984839498227], [2.296807654916227, 48.83990056503581], [2.296998621643927, 48.839956347591425], [2.29717703975802, 48.840008517988316], [2.29736800863899, 48.840064299956836], [2.297546427504361, 48.84011646889846], [2.2977373958137512, 48.840172250263905], [2.297915815418468, 48.840224418649534], [2.298106785881123, 48.84028019942791], [2.298285206212876, 48.84033236815687], [2.298476177466373, 48.840388148340125], [2.298654598549476, 48.84044031561376], [2.298861207075716, 48.84050387735975], [2.298861527322263, 48.84050397456994], [2.299003086873543, 48.84054829230647], [2.299209696252678, 48.840611853444415], [2.299351256380904, 48.84065617166394], [2.29940910322597, 48.840658532248824], [2.299414561875172, 48.84064765756807], [2.29942689800325, 48.84060549993455], [2.299441102868162, 48.84054382433821], [2.299455007152114, 48.840532892989756], [2.299458363517019, 48.84052484890061], [2.299459852612182, 48.840521919381715], [2.299544770709327, 48.84041837041554], [2.299635329787653, 48.84029896524866], [2.299720247172941, 48.84019541613727], [2.299810805461899, 48.84007601081371], [2.299895722135334, 48.83997246155712], [2.29998628099725, 48.83985305608482], [2.300070065211823, 48.83973861408827], [2.300160621905739, 48.83961920845101], [2.300244405361626, 48.83950476630841], [2.300296319648924, 48.83943631404521], [2.300298867471119, 48.83942911060414], [2.300246131727353, 48.839407841402824], [2.3001649822889663, 48.83936762619933], [2.300164925443323, 48.839367597986275], [2.299992809104848, 48.83928116422019], [2.299841869581758, 48.83920554406617], [2.299669754326204, 48.83911910892342], [2.299518817091297, 48.83904348925805], [2.299346702906683, 48.838957053638], [2.299195765259435, 48.83888143264673], [2.299023652133564, 48.838794997448616], [2.298872715424281, 48.83871937603877], [2.298721780515349, 48.838643754441335], [2.298549668960197, 48.83855731854289], [2.298548908784391, 48.838556907569476], [2.298391526921279, 48.8384655483122], [2.29824354315702, 48.83837889731929], [2.298086163741103, 48.838287536754414], [2.2979381809898722, 48.83820088536994], [2.297780801272275, 48.83810952528007], [2.2976328208963333, 48.838022873512024], [2.297612924436276, 48.83801239952002], [2.297605980923968, 48.83801303957185], [2.29751320300729, 48.83807846723515], [2.2973694027113503, 48.838179838897084], [2.297237252169118, 48.83827303158924], [2.297093450799733, 48.83837440290177], [2.296961299270939, 48.838467595272824], [2.296817496828101, 48.83856896623599], [2.2966853456749208, 48.83866215829397], [2.296541542158622, 48.83876352890772], [2.296409388656381, 48.83885672063662], [2.296265584066612, 48.83895809090098], [2.296133429577786, 48.83905128230878], [2.295989623926685, 48.839152651324476], [2.295857468451068, 48.83924584241115], [2.295844056095913, 48.8392611750742]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 63, "roussel_fabien": 18.0, "nb_emargement": 1155.0, "nb_procuration": 70.0, "nb_vote_blanc": 14.0, "jadot_yannick": 90.0, "le_pen_marine": 53.0, "nb_exprime": 1140.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1421.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1155, "quartier_bv": "57", "geo_point_2d": [48.83938409970088, 2.2981348056530475], "melenchon_jean_luc": 197.0, "poutou_philippe": 2.0, "macron_emmanuel": 479.0}, "geometry": {"type": "Point", "coordinates": [2.2981348056530475, 48.83938409970088]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "79920601a95331568ab2781e8b5ea040fbd581c0", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 36, "zemmour_eric": 55.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-42", "geo_shape": {"coordinates": [[[2.389598673415337, 48.8585100094817], [2.3896261689796923, 48.85849963367372], [2.389777997603685, 48.85844692207734], [2.389935715347507, 48.8583986318184], [2.389961563355468, 48.85838822145255], [2.389931010432397, 48.858352763654516], [2.389907769883919, 48.858243510387226], [2.389892142413988, 48.85815036634177], [2.389893063110637, 48.8581456512655], [2.389907580871681, 48.8581243981793], [2.389903793158787, 48.85811962852008], [2.389964206845145, 48.858024154307834], [2.390009187160656, 48.85794745259302], [2.390009772977063, 48.857942235771255], [2.389965175646463, 48.85781126590194], [2.389921593499504, 48.857683010907145], [2.389878010214843, 48.85755475497546], [2.389833413536574, 48.85742378591059], [2.389789832048589, 48.85729552992377], [2.389745234450959, 48.85716456078849], [2.389701653396854, 48.8570363047396], [2.389657057605623, 48.856905335547836], [2.389643616825253, 48.8568983141364], [2.389453072723974, 48.85689963542514], [2.3892510566120553, 48.85690108852059], [2.38906051249078, 48.85690240918428], [2.388858497730383, 48.856903860724664], [2.388667953578472, 48.85690518166254], [2.3884994316424573, 48.85690639179868], [2.388482475503554, 48.856901271499666], [2.388467848124993, 48.85690699304336], [2.388434353915622, 48.8569072337691], [2.388223277236694, 48.85690842927523], [2.388021262429748, 48.85690987940221], [2.387810185730628, 48.85691107417969], [2.3876081708913652, 48.85691252450864], [2.387406156051429, 48.85691397359722], [2.387195079321629, 48.85691516728971], [2.387182373628454, 48.85692111256283], [2.387103590837945, 48.85706545548541], [2.387023750767733, 48.857211236376365], [2.386944967099115, 48.85735557915681], [2.386865126151209, 48.857501359004566], [2.386847644175233, 48.85750675274964], [2.386647327075942, 48.8574586075648], [2.386446187141126, 48.85741057653557], [2.386245870782552, 48.85736243067453], [2.386044731588992, 48.857314398966345], [2.385844415971141, 48.857266252429135], [2.385643277519047, 48.857218220042], [2.385626168801611, 48.85722304893753], [2.385549548996464, 48.85733774774142], [2.385474119911901, 48.857449108827154], [2.385397499439612, 48.85756380751032], [2.385322071065707, 48.85767516848457], [2.385245449926272, 48.85778986704703], [2.385170019537227, 48.85790122789575], [2.385169887644198, 48.85790143226923], [2.385103552681241, 48.85800776837973], [2.385037305315225, 48.85811451229897], [2.384970971173207, 48.858220848322574], [2.384904723254028, 48.8583275930472], [2.384838387207329, 48.85843392896989], [2.384772138756208, 48.858540672701345], [2.384705802167628, 48.85864700853012], [2.384639553163324, 48.858753753067], [2.384627537416029, 48.85876976709623], [2.384629528399497, 48.85877302667334], [2.3847392914792582, 48.8588005570659], [2.384950484625331, 48.85885262126324], [2.38513317276041, 48.85889844195583], [2.385344365333915, 48.858950505446444], [2.38552705552153, 48.85899632554069], [2.385738248885489, 48.859048388331594], [2.38592093838918, 48.859094208712776], [2.385921871740128, 48.85909446531917], [2.386057666183826, 48.859136026558545], [2.386211343887069, 48.85918274628249], [2.386216936517382, 48.85918862431363], [2.386239850336981, 48.85919054682463], [2.386391475010403, 48.859228991693904], [2.386547383892811, 48.859268354978525], [2.386699009019588, 48.85930679945548], [2.386854917004332, 48.85934616232968], [2.38687258668428, 48.85934085408953], [2.386944257554195, 48.85921166960915], [2.387015621689303, 48.85908246011848], [2.3870872918491273, 48.8589532755224], [2.3871586552756012, 48.858824065916295], [2.387230323362422, 48.85869488119749], [2.387301687453769, 48.85856567058372], [2.387373354830525, 48.858436485749166], [2.387444718202674, 48.858307275919316], [2.387516384869477, 48.85817809096899], [2.387587747532915, 48.85804888102377], [2.387604586313275, 48.85804336966401], [2.387787766217333, 48.85808081413999], [2.387967407681161, 48.85811725185354], [2.3881505881058143, 48.858154695771624], [2.388330228715196, 48.85819113293115], [2.388513411023144, 48.85822857629833], [2.388693052141085, 48.85826501291077], [2.388876234969517, 48.85830245572002], [2.389055876595807, 48.85833889178538], [2.389235518473449, 48.8583753275799], [2.389418702079555, 48.858412769555045], [2.389422272138974, 48.85841389576541], [2.389489736796479, 48.85844400563778], [2.389571045106789, 48.85848006241772], [2.389598673415337, 48.8585100094817]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 42, "roussel_fabien": 30.0, "nb_emargement": 1133.0, "nb_procuration": 33.0, "nb_vote_blanc": 21.0, "jadot_yannick": 96.0, "le_pen_marine": 96.0, "nb_exprime": 1111.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 9, "nb_inscrit": 1522.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1134, "quartier_bv": "43", "geo_point_2d": [48.85794761883589, 2.387342229395544], "melenchon_jean_luc": 460.0, "poutou_philippe": 8.0, "macron_emmanuel": 267.0}, "geometry": {"type": "Point", "coordinates": [2.387342229395544, 48.85794761883589]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "962fdfcebc9d6ab4a03094423b520ec0d79e11df", "fields": {"lassalle_jean": 29.0, "pecresse_valerie": 91, "zemmour_eric": 86.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-52", "geo_shape": {"coordinates": [[[2.294327533468581, 48.83294358921089], [2.294344027260697, 48.832945488873285], [2.2944816024364743, 48.832918930668534], [2.294685405372959, 48.832880183302606], [2.294858547870385, 48.83284675811268], [2.295062350244525, 48.832808010101985], [2.295235492260537, 48.83277458436427], [2.295439294072325, 48.83273583570879], [2.295612435606917, 48.832702409423256], [2.295816236856345, 48.832663660122996], [2.295989377909513, 48.83263023328968], [2.295991583349358, 48.832629941382834], [2.296189719340714, 48.832614817084746], [2.296392000608423, 48.83260010537532], [2.296590136370303, 48.83258498041346], [2.296792418771353, 48.8325702680345], [2.296990554303644, 48.83255514240894], [2.297192835113777, 48.832540429344334], [2.297390970416471, 48.832525303055114], [2.297593250997698, 48.83251058931294], [2.297610118540123, 48.83250234126348], [2.297599169294886, 48.8324829565682], [2.297510283724317, 48.83236258548641], [2.297420274954691, 48.83224077771722], [2.297331391584364, 48.83212040558519], [2.297241383638765, 48.831998598554335], [2.297152499732323, 48.83187822625532], [2.297062492634987, 48.83175641816418], [2.296973609542304, 48.831636046605546], [2.296883603281202, 48.83151423835347], [2.296794722388822, 48.83139386574455], [2.296704716951603, 48.83127205823081], [2.296615835522992, 48.83115168545495], [2.296525830934115, 48.83102987688096], [2.296532662464693, 48.83101768103611], [2.296706481313885, 48.830968006289865], [2.296873630207636, 48.83092024732441], [2.297047448407058, 48.83087057207831], [2.297214596676036, 48.83082281263224], [2.297388414225789, 48.83077313688632], [2.297555561857875, 48.830725377858826], [2.297722710557996, 48.83067761770446], [2.297896525777182, 48.83062794120564], [2.297897367879027, 48.83062772220421], [2.297921969622051, 48.83062706438094], [2.297928627437424, 48.83062045616563], [2.2981090810098372, 48.830578030433536], [2.298288065933923, 48.8305358962045], [2.298468517558941, 48.830493469918956], [2.298647501902298, 48.83045133514884], [2.2988279543042642, 48.83040890832573], [2.299006938066684, 48.830366773014546], [2.299187389883419, 48.83032434564595], [2.299366373064999, 48.8302822097937], [2.299546822934333, 48.830239781871605], [2.2997258055350702, 48.83019764547826], [2.2999062561813313, 48.83015521701862], [2.300085238201219, 48.830113080084246], [2.3002656869000733, 48.83007065107115], [2.3004446697012693, 48.83002851360367], [2.300625117814875, 48.82998608404508], [2.300804098673155, 48.82994394602854], [2.300813030831137, 48.829936637741156], [2.300835920232665, 48.829820059310485], [2.300864401568921, 48.829675847791286], [2.300887289378926, 48.82955926931567], [2.300915770430506, 48.82941505775072], [2.300938659373391, 48.82929847924617], [2.300955996668407, 48.82921068705278], [2.300953292604127, 48.8292082528193], [2.300924315830531, 48.82920608772369], [2.30073445221952, 48.829240192012676], [2.300544889148106, 48.82927421411622], [2.300355023678738, 48.829308317792815], [2.300165460099925, 48.829342340192206], [2.299975595496383, 48.829376443272366], [2.29978603143432, 48.82941046416896], [2.299596164972227, 48.82944456663676], [2.299406600402868, 48.8294785878292], [2.299216734806618, 48.82951268970052], [2.299027169754036, 48.829546709390215], [2.298837302299347, 48.82958081064914], [2.298647736739265, 48.82961483063467], [2.298457870150539, 48.82964893129713], [2.298268304107261, 48.82968294977987], [2.298078435660106, 48.82971704982992], [2.29788886910943, 48.82975106860852], [2.29769900152805, 48.82978516806213], [2.297509434494307, 48.829819185337946], [2.297319566416665, 48.82985328418709], [2.29712999751337, 48.82988730175073], [2.296940128939466, 48.82992139999547], [2.296750560915082, 48.82995541606431], [2.296560691845031, 48.82998951370464], [2.296371123313251, 48.83002353006929], [2.2963608213567612, 48.83002267081159], [2.296233513047641, 48.82997492203973], [2.29610381434879, 48.82992635771431], [2.295976505148007, 48.82987860865679], [2.295846806928189, 48.82983004404842], [2.295834556205452, 48.8298296481429], [2.29564340377364, 48.82988572297555], [2.295465057096028, 48.82993778616585], [2.295286710062197, 48.82998984908779], [2.295095556453712, 48.830045923036806], [2.294917208693097, 48.83009798450346], [2.294726055652839, 48.83015405786456], [2.294547707141122, 48.830206119674436], [2.294356551944766, 48.83026219243153], [2.29417820269411, 48.83031425368541], [2.293987046703719, 48.83037032584654], [2.293808698088477, 48.830422385653094], [2.293617541304263, 48.830478457218256], [2.29343919057574, 48.830530517360046], [2.2932480329976013, 48.83058658832922], [2.293069681530147, 48.830638647914974], [2.292949889955084, 48.83067378449118], [2.292948245761853, 48.83067629123018], [2.29295867181155, 48.830692614517915], [2.292991921981784, 48.83086537469341], [2.29302002200094, 48.83102876525161], [2.293021143457457, 48.831031454724034], [2.293102499945475, 48.831150279301106], [2.293183512123705, 48.831268502787914], [2.293264867977472, 48.83138732812066], [2.293345882266589, 48.83150555058123], [2.293427238860396, 48.83162437577838], [2.293508252511733, 48.831742598995184], [2.293589611219983, 48.831861423165485], [2.293670625607941, 48.83197964624732], [2.293751985056255, 48.83209847028201], [2.29383300018084, 48.83221669322882], [2.293914358994825, 48.832335518019214], [2.293995376218269, 48.83245374083902], [2.294076735784514, 48.8325725645945], [2.294157752382485, 48.832690787271275], [2.294239114050941, 48.8328096108992], [2.294320131385568, 48.83292783344097], [2.294327533468581, 48.83294358921089]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 52, "roussel_fabien": 17.0, "nb_emargement": 1134.0, "nb_procuration": 57.0, "nb_vote_blanc": 7.0, "jadot_yannick": 66.0, "le_pen_marine": 117.0, "nb_exprime": 1122.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 9, "nb_inscrit": 1547.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1135, "quartier_bv": "57", "geo_point_2d": [48.83102525705923, 2.296195040399814], "melenchon_jean_luc": 366.0, "poutou_philippe": 5.0, "macron_emmanuel": 286.0}, "geometry": {"type": "Point", "coordinates": [2.296195040399814, 48.83102525705923]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fcc4e062a8f49ce2bf41cbd436569c0b5ef8d93a", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 110, "zemmour_eric": 117.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-8", "geo_shape": {"coordinates": [[[2.327110089853369, 48.881784717654924], [2.327105166909924, 48.88176712241347], [2.327101257155152, 48.88168029590671], [2.327096417368895, 48.88155981111574], [2.327090604648948, 48.8814307286119], [2.327085764910427, 48.881310243793195], [2.327079953608241, 48.881181161267214], [2.327075112554157, 48.88106067641304], [2.327069301306119, 48.88093159385734], [2.327064461663372, 48.8808111089831], [2.327062995373592, 48.88077853676068], [2.327067573536651, 48.88077035966964], [2.327050959603858, 48.880745368223884], [2.3270466147249182, 48.880648857857466], [2.327041715067546, 48.88051455704304], [2.327035903963225, 48.88038547442167], [2.327031005721833, 48.880251173582344], [2.32702519332159, 48.88012209002261], [2.327020295132487, 48.87998778915076], [2.327014482776667, 48.87985870645891], [2.327009584639956, 48.87972440555446], [2.327003773715056, 48.87959532193964], [2.326998874267376, 48.87946102099498], [2.326993063386788, 48.87933193824803], [2.326988163991505, 48.87919763727083], [2.326982353166848, 48.87906855449251], [2.32697745383548, 48.878934252583484], [2.326971643066857, 48.87880516977376], [2.326966743776261, 48.87867086873149], [2.326960933063468, 48.87854178589038], [2.3269560338369892, 48.878407483916284], [2.3269502231801242, 48.87827840104379], [2.326945325357738, 48.8781440999441], [2.326939513393482, 48.878015017032595], [2.326934615635103, 48.8778807150011], [2.326928803726781, 48.877751632058214], [2.326923906009165, 48.877617330893436], [2.326918094156676, 48.87748824791919], [2.326913196491545, 48.877353946721925], [2.32690738607001, 48.87722486282469], [2.32690248709376, 48.87709056158722], [2.32689667671663, 48.87696147855791], [2.326891777792771, 48.876827177287886], [2.326885967483086, 48.87669809332796], [2.326881068611716, 48.87656379202544], [2.326875258346333, 48.87643470893341], [2.326869448121371, 48.87630562492674], [2.326864549329512, 48.87617132357571], [2.326858739148851, 48.87604224043696], [2.326853840409378, 48.87590793905342], [2.326848030296261, 48.87577885498405], [2.326843131609072, 48.87564455356802], [2.326814621228703, 48.87559346911846], [2.326807633915939, 48.875591654530915], [2.326721668352579, 48.87559765258957], [2.326614372629533, 48.875582290031744], [2.326580807580767, 48.875563737628106], [2.326532217863935, 48.87556972906415], [2.326432641348668, 48.875555470989184], [2.326237871368993, 48.875528050370946], [2.326030998272412, 48.87549842896103], [2.325836230080849, 48.875471007695566], [2.3256293574392553, 48.87544138559006], [2.325434589672459, 48.87541396366969], [2.325227717485864, 48.87538434086856], [2.325032950143842, 48.8753569182933], [2.324826078412252, 48.87532729479657], [2.324631310131668, 48.87529987155875], [2.324424440230106, 48.875270246474805], [2.3242923299120752, 48.87525164535426], [2.324246654948643, 48.875248094145576], [2.324229503098901, 48.87530063471322], [2.324199474965244, 48.8754323037346], [2.324167813093612, 48.87556524866459], [2.324137783276418, 48.87569691853048], [2.324106121086462, 48.8758298634123], [2.324076090972414, 48.87596153233181], [2.324044428464129, 48.87609447716539], [2.324014399404926, 48.87622614604553], [2.323982736578309, 48.87635909083092], [2.323952705835532, 48.87649076055559], [2.323921042690576, 48.876623705292744], [2.32389101301432, 48.87675537407874], [2.3238593495510242, 48.87688831876765], [2.323829318202844, 48.87701998749891], [2.323797654421199, 48.87715293213959], [2.323767622764472, 48.87728460082378], [2.3237359586527973, 48.877417546315506], [2.323705928050925, 48.87754921496027], [2.323674263632573, 48.87768215950451], [2.32364423135874, 48.8778138280945], [2.323612566622025, 48.8779467725905], [2.323582534039633, 48.8780784411334], [2.32355086898455, 48.87821138558114], [2.32352083744534, 48.87834305498395], [2.323489172071785, 48.87847599938346], [2.323459138872362, 48.87860766783215], [2.323427473180431, 48.87874061218343], [2.323397441035874, 48.87887228059273], [2.323365775025564, 48.87900522489575], [2.323331753483813, 48.879022669472924], [2.32335356059732, 48.87904699385446], [2.3233696778084703, 48.8791659780181], [2.323383396309338, 48.87928005532484], [2.323399512297322, 48.87939903945157], [2.3234132309249302, 48.879513116730756], [2.323429348416654, 48.87963210083603], [2.323443067171008, 48.87974617808764], [2.3234567859855613, 48.87986025532593], [2.323472903684122, 48.87997923938778], [2.323470703115328, 48.879994654143054], [2.323501031687639, 48.88000720846882], [2.323555157138656, 48.88009585506844], [2.323648712547466, 48.880251912797334], [2.323702839867652, 48.880340559318185], [2.323701726306794, 48.880348713589555], [2.32360984883571, 48.880444854110344], [2.323514935934789, 48.88054139918999], [2.323516150491503, 48.880552240334815], [2.323638575323559, 48.88064378280314], [2.323755902905631, 48.880732331239095], [2.323759033285489, 48.88073992041627], [2.32372840201984, 48.88084671779854], [2.323694239796957, 48.880960171873], [2.323663608257213, 48.88106697011658], [2.323629445760274, 48.88118042325059], [2.323647882068012, 48.881203465816576], [2.323652751953869, 48.881204578824466], [2.32380667430611, 48.881130529280156], [2.323953457592422, 48.8810603899963], [2.324107377727545, 48.88098634004799], [2.324254160202378, 48.88091620038633], [2.32440808084728, 48.88084215004936], [2.324554862510839, 48.880772010009856], [2.3247087823019212, 48.880697959276645], [2.324855563154108, 48.880627818859246], [2.324871362618126, 48.88062772539272], [2.325051841051513, 48.88071074970772], [2.3252251050843302, 48.88079337874136], [2.325405584644066, 48.88087640340987], [2.325578849800899, 48.88095903101986], [2.325752115495988, 48.88104165927215], [2.325932595404438, 48.88112468222056], [2.326105862211795, 48.88120730994846], [2.326286344610115, 48.88129033325807], [2.326291837172808, 48.88129570440921], [2.326337857721542, 48.88142844239022], [2.326383117852487, 48.88155778916841], [2.326429138865477, 48.8816905270827], [2.32647439945091, 48.881819873795564], [2.326520420928163, 48.88195261164321], [2.326565681968091, 48.88208195829077], [2.326610943244477, 48.88221130400674], [2.32665696541567, 48.88234404175463], [2.3267022271349322, 48.882473388304604], [2.326748249770406, 48.8826061259858], [2.326793513307722, 48.88273547247811], [2.326839536407485, 48.8828682100926], [2.32688479903578, 48.8829975565119], [2.326930822599838, 48.88313029405971], [2.326976085682658, 48.88325964041366], [2.327022109710915, 48.88339237789473], [2.326976579030378, 48.883413392953805], [2.326978033115954, 48.88342897395621], [2.327119584434673, 48.883455436508314], [2.327140995332783, 48.88345846437843], [2.327160532976679, 48.88345375825674], [2.327175279127196, 48.883420529879885], [2.327168826469863, 48.88328606420106], [2.327163013377755, 48.883156981903234], [2.327156559409679, 48.88302251708311], [2.327150747752461, 48.88289343386218], [2.327144936112433, 48.88276435152506], [2.327138482239693, 48.88262988665602], [2.327132670671098, 48.88250080338812], [2.327126216862688, 48.88236633848621], [2.327120405353905, 48.88223725518677], [2.327113951609825, 48.882102790251984], [2.32710813878571, 48.88197370781267], [2.327101685117582, 48.88183924194574], [2.327099783464843, 48.88179698598715], [2.327110089853369, 48.881784717654924]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 8, "roussel_fabien": 16.0, "nb_emargement": 1216.0, "nb_procuration": 70.0, "nb_vote_blanc": 10.0, "jadot_yannick": 80.0, "le_pen_marine": 58.0, "nb_exprime": 1200.0, "nb_vote_nul": 6.0, "arr_bv": "08", "arthaud_nathalie": 3, "nb_inscrit": 1481.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "32", "geo_point_2d": [48.87854719993277, 2.3254039632622345], "melenchon_jean_luc": 217.0, "poutou_philippe": 7.0, "macron_emmanuel": 546.0}, "geometry": {"type": "Point", "coordinates": [2.3254039632622345, 48.87854719993277]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cd59a3152eac0990f24f6885c0d8dd3103a03efa", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 58, "zemmour_eric": 78.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-50", "geo_shape": {"coordinates": [[[2.406122738258313, 48.85268477560632], [2.4061217673707143, 48.85267298661082], [2.406140136641756, 48.852570643666596], [2.406152985002931, 48.85246615444191], [2.406151310339723, 48.85245620831637], [2.406092956868608, 48.85245265944356], [2.405936471614428, 48.852428031855084], [2.40570612647966, 48.85239153814658], [2.405549640229093, 48.85236691004412], [2.405319297008447, 48.85233041469639], [2.405162811114002, 48.85230578698593], [2.405162017841021, 48.85230567781836], [2.404959526674264, 48.852282092801815], [2.404762561350255, 48.85225915098576], [2.404560069192721, 48.852235564386156], [2.404363104220454, 48.85221262191155], [2.404361652792132, 48.852212505864834], [2.40419262776981, 48.8522049848487], [2.404009289684323, 48.85219682660909], [2.403996770856175, 48.85218634707948], [2.404027636917248, 48.85206649334026], [2.404058437250608, 48.85194689287033], [2.404089303028009, 48.851827039089464], [2.404120101715561, 48.851707438571104], [2.404150967209299, 48.8515875847485], [2.404181766976532, 48.851467984195324], [2.404212632186607, 48.85134813033103], [2.40424343030805, 48.851228529729426], [2.404232383485833, 48.85121816816395], [2.404045932564775, 48.85119627305982], [2.403859224588841, 48.8511743467046], [2.403672773981369, 48.85115245101814], [2.4034860676820893, 48.85113052408656], [2.403299617388209, 48.85110862781775], [2.40311291004034, 48.851086700296214], [2.40292646006006, 48.851064803445055], [2.402739753026233, 48.85104287534039], [2.402553303369875, 48.85102097700757], [2.402366596639685, 48.85099904921907], [2.402180148659671, 48.85097715031073], [2.401993442243634, 48.85095522193906], [2.401982724467982, 48.85094390039889], [2.402034036241762, 48.85082521583986], [2.4020849740060353, 48.85070739545376], [2.402136283951349, 48.85058871081886], [2.40218722126358, 48.85047088946492], [2.402238532095441, 48.850352205667], [2.402289468945317, 48.85023438424451], [2.402340777948838, 48.85011570037072], [2.402391714336367, 48.849997878879655], [2.402386818607371, 48.84994613269164], [2.402378411630819, 48.849945078029506], [2.402321997955074, 48.849943405836925], [2.402317989678232, 48.84994368080146], [2.402118123377487, 48.849953648019984], [2.401876592888072, 48.849994666307694], [2.401676724944661, 48.8500046327816], [2.40149812004995, 48.85000758961347], [2.401298251984594, 48.85001755545502], [2.401119645661423, 48.85002051171508], [2.401116795422605, 48.85002045607823], [2.400957508499115, 48.85000625112929], [2.400753058103025, 48.84997977385282], [2.400593771403039, 48.84996556841913], [2.40038932270362, 48.849939091426336], [2.400230036227141, 48.84992488550791], [2.400229290363019, 48.84992480532404], [2.400071758739553, 48.84990483864627], [2.399867310554085, 48.84987835986073], [2.399709779209718, 48.84985839270554], [2.399505330017345, 48.849831914192826], [2.399347798952081, 48.849811946560195], [2.399143350125859, 48.84978546742787], [2.399011045205349, 48.849802595713506], [2.3990042218457512, 48.849801894119615], [2.398935055078405, 48.84985758801478], [2.398893010571398, 48.84998419986174], [2.398852716488512, 48.85010459515924], [2.398810671571785, 48.85023120784845], [2.398770377117946, 48.850351602192205], [2.398728331801868, 48.850478214824385], [2.398688036966901, 48.850598609113675], [2.398647741945641, 48.850719003376426], [2.398605696035162, 48.850845615923674], [2.398565400632765, 48.85096601013196], [2.398523355685647, 48.85109262262901], [2.398483058539179, 48.85121301677599], [2.398448054159088, 48.85131842823405], [2.398441013192695, 48.851339629216], [2.398457127861982, 48.85134862640257], [2.398498377898041, 48.851349586538596], [2.398687213438163, 48.85138340429133], [2.398875865281221, 48.85141698249283], [2.399064702673282, 48.8514507996546], [2.399253355013937, 48.85148437635956], [2.399442191532456, 48.8515181929167], [2.399630845722958, 48.85155176903128], [2.399819682730665, 48.851585584990595], [2.400008337408478, 48.851619160508], [2.400197174895013, 48.85165297676877], [2.400385830059928, 48.851686551688935], [2.400574668045991, 48.85172036645262], [2.400763323698203, 48.851753940775566], [2.400952162173433, 48.85178775494143], [2.40114081831273, 48.85182132866714], [2.401329474695227, 48.85185490209438], [2.401518313893371, 48.85188871626299], [2.401550066323697, 48.85189436651563], [2.401550200612978, 48.851894539862585], [2.401579327770728, 48.85190094772016], [2.401736232245575, 48.851928870258945], [2.401913655216065, 48.85196035765503], [2.402102312599818, 48.85199392985953], [2.402279737375878, 48.85202541671772], [2.40246839523092, 48.85205898834308], [2.402645819086944, 48.852090474649806], [2.4028232431573793, 48.85212196069253], [2.403011901712103, 48.852155531458024], [2.403189327587997, 48.852187016962894], [2.403377986614097, 48.852220587149205], [2.4035554115699362, 48.8522520721026], [2.403744071067504, 48.85228564170973], [2.403921496465935, 48.852317126118436], [2.404110156434866, 48.85235069514642], [2.404110175472044, 48.852350698838606], [2.404296762157085, 48.852383612410904], [2.404485422608373, 48.8524171808452], [2.404672009768482, 48.852450093830335], [2.404860670702298, 48.852483661670945], [2.405047256974703, 48.852516574062236], [2.405235918390837, 48.85255014130919], [2.405422506501057, 48.852583053120114], [2.405611168399706, 48.8526166197734], [2.405797755622207, 48.85264953099039], [2.405946444394443, 48.85267598529551], [2.405952448438288, 48.85268081493273], [2.405975145042133, 48.85268008222521], [2.406015118658011, 48.85268719397009], [2.406061806921723, 48.852695500092416], [2.406122738258313, 48.85268477560632]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 50, "roussel_fabien": 25.0, "nb_emargement": 1392.0, "nb_procuration": 87.0, "nb_vote_blanc": 15.0, "jadot_yannick": 149.0, "le_pen_marine": 52.0, "nb_exprime": 1376.0, "nb_vote_nul": 1.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1727.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1392, "quartier_bv": "80", "geo_point_2d": [48.85110070325239, 2.4013799729281193], "melenchon_jean_luc": 512.0, "poutou_philippe": 8.0, "macron_emmanuel": 419.0}, "geometry": {"type": "Point", "coordinates": [2.4013799729281193, 48.85110070325239]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eaa8a2f414c1f5e699c1a0dd970fb76e939ac7e7", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 56, "zemmour_eric": 99.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "9-21", "geo_shape": {"coordinates": [[[2.346115444550245, 48.876591484363864], [2.346063506090334, 48.87659379343625], [2.345998091776424, 48.876578360519936], [2.3457928460977833, 48.87657472719622], [2.345594466032918, 48.87657137207413], [2.345389220398674, 48.87656773895762], [2.3451908390230463, 48.87656438315918], [2.344985593455813, 48.87656074845138], [2.344787213496206, 48.87655739199152], [2.344581967984694, 48.876553756591655], [2.344383588077732, 48.87655039946293], [2.34438213423256, 48.8765503231511], [2.344346715573894, 48.87653658427254], [2.344322449800312, 48.876534448545186], [2.34431506725492, 48.87653321289191], [2.344269087918095, 48.87653426237963], [2.344261940613009, 48.876536217955405], [2.344253437338926, 48.87657840507994], [2.344298647454027, 48.87671459269787], [2.344343201612955, 48.87685070114377], [2.344388412210455, 48.876986887794885], [2.344432966836897, 48.87712299617377], [2.344478177905482, 48.87725918275736], [2.344522734362851, 48.87739529107665], [2.344567945891111, 48.87753147849201], [2.344612501464026, 48.877667585837514], [2.344612600883192, 48.877667920034995], [2.344608184150194, 48.877688539184454], [2.344617427724367, 48.87769521608835], [2.3446490968038542, 48.877813479299036], [2.344679957465302, 48.87792491661002], [2.344711628189768, 48.878043179786985], [2.34474248912112, 48.878154617058634], [2.344771491664677, 48.878259340501316], [2.344803161437023, 48.8783776036107], [2.344805021328614, 48.878384317426686], [2.344804011384719, 48.87838959548736], [2.344726666604446, 48.87850209164552], [2.3446476460960612, 48.878607516100914], [2.344636547200442, 48.87862853213294], [2.344667334938626, 48.87864090823177], [2.34473324022979, 48.87865238925111], [2.344972158557446, 48.87869292479289], [2.345157873641266, 48.87872527898825], [2.345167826162943, 48.87872449974577], [2.345287207632927, 48.87868204222689], [2.345405212620326, 48.8786394079871], [2.3455245937017413, 48.87859695022825], [2.345642596938578, 48.878554315743735], [2.345654442647581, 48.87855391643521], [2.345856084459088, 48.87860996142068], [2.346055149771911, 48.87866632384131], [2.346256793813362, 48.87872236815359], [2.346455859989468, 48.87877872990219], [2.346657503533776, 48.87883477352637], [2.34685657057316, 48.87889113460291], [2.347058216347305, 48.878947177553876], [2.347257284249965, 48.879003537958376], [2.347289402034467, 48.8790127765565], [2.347311935134795, 48.87899518343989], [2.347357181006377, 48.87895740719325], [2.347516785855883, 48.87882987575237], [2.347643349602685, 48.878724203113165], [2.3476445354425, 48.87871422157602], [2.347554791112202, 48.87860892775612], [2.347464965371778, 48.87850036613343], [2.34737522178429, 48.87839507125919], [2.347285396787008, 48.87828650948071], [2.347195652567631, 48.87818121444398], [2.347105828313484, 48.87807265250971], [2.347016086177791, 48.87796735822467], [2.346926262666767, 48.87785879613455], [2.346934824968748, 48.877845780012535], [2.34708255763563, 48.8778206472394], [2.347220985233601, 48.8777962063954], [2.347231023873333, 48.877788430629764], [2.347253922413814, 48.87764013832159], [2.34727454588143, 48.8775006020978], [2.347295169238643, 48.87736106585279], [2.347318066056462, 48.877212772568136], [2.347338689183005, 48.877073236279216], [2.347361587102505, 48.8769249438542], [2.3473524866291102, 48.876915534859464], [2.347153464900392, 48.87687004228156], [2.3469815757734143, 48.876829492635316], [2.346809686914084, 48.87678894274083], [2.346610664791112, 48.87674344834858], [2.34643877650463, 48.876702897918314], [2.34623975638654, 48.87665740381259], [2.346133283066921, 48.876632284824986], [2.346115444550245, 48.876591484363864]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 21, "roussel_fabien": 21.0, "nb_emargement": 1257.0, "nb_procuration": 91.0, "nb_vote_blanc": 12.0, "jadot_yannick": 123.0, "le_pen_marine": 52.0, "nb_exprime": 1243.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 1, "nb_inscrit": 1546.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "36", "geo_point_2d": [48.877673941202254, 2.3459323707052393], "melenchon_jean_luc": 302.0, "poutou_philippe": 7.0, "macron_emmanuel": 530.0}, "geometry": {"type": "Point", "coordinates": [2.3459323707052393, 48.877673941202254]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ca8e9b55556699fd3364f06db4c724547207c111", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 57, "zemmour_eric": 78.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-43", "geo_shape": {"coordinates": [[[2.358339994179588, 48.82295192099876], [2.358347531688007, 48.82294185603631], [2.358384932211815, 48.8228223207584], [2.358423804118876, 48.82269698516895], [2.358461204292177, 48.82257744984114], [2.358500075833336, 48.82245211419959], [2.358537475645069, 48.82233257972115], [2.358568950412828, 48.822231094537464], [2.358577691371384, 48.82220988282045], [2.358576817752454, 48.822208267347904], [2.358584215526149, 48.82218441594497], [2.358623086478604, 48.82205908021963], [2.3586667885838, 48.821925863043965], [2.358705659145118, 48.82180052726292], [2.35874936218459, 48.82166731003379], [2.358788232365631, 48.821541973297784], [2.3588319336154813, 48.82140875600049], [2.3588708033942343, 48.82128342010815], [2.358914505578462, 48.82115020275736], [2.3589533749659912, 48.82102486680935], [2.35899707536052, 48.82089164939047], [2.359035944367891, 48.82076631248744], [2.359079644334872, 48.82063309500778], [2.359118514301796, 48.820507758955706], [2.359147957708219, 48.820418001282576], [2.359147364788384, 48.82040662454988], [2.359082909124372, 48.820399070559375], [2.358899318333156, 48.820393707299075], [2.358714985134474, 48.82038813561588], [2.358531394408441, 48.820382772689946], [2.358347061298799, 48.820377199540204], [2.358163470649217, 48.82037183604929], [2.357979137617566, 48.82036626233234], [2.357795547044342, 48.82036089827651], [2.35761121409069, 48.820355323992324], [2.357427623593832, 48.82034995937157], [2.3572432907071, 48.82034438541945], [2.3570597002977, 48.82033901933447], [2.356875367488978, 48.82033344481518], [2.356867544899924, 48.820331515842575], [2.356745363792882, 48.82026773474764], [2.356618037579961, 48.820201512802356], [2.356495857082741, 48.82013773144514], [2.356368531504149, 48.82007150922651], [2.356350012307248, 48.820072535565785], [2.356207905433526, 48.820176088744844], [2.356068212143639, 48.82027781911143], [2.355926104150802, 48.820381371936705], [2.355786408410343, 48.82048310104887], [2.355644299298382, 48.820586653520316], [2.355504602447033, 48.82068838318404], [2.355498179590785, 48.82069100353461], [2.355330094077629, 48.82072201463959], [2.355163590186182, 48.820752650901966], [2.35499550562611, 48.820783662441585], [2.354829001341217, 48.82081429823638], [2.354662498222596, 48.82084493380586], [2.354494411716225, 48.820875943731885], [2.354490698892713, 48.8208762753464], [2.35430560339386, 48.82087584260823], [2.354121598119244, 48.82087557915938], [2.353936502626029, 48.82087514584988], [2.353752497355739, 48.82087488183307], [2.353567401879118, 48.820874447052894], [2.353383396613268, 48.82087418246811], [2.353199391338028, 48.82087391849954], [2.353014295869446, 48.82087348286323], [2.352830289247779, 48.82087321741996], [2.352645193773708, 48.82087278211164], [2.352461188518326, 48.820872516107784], [2.352276093049729, 48.8208720802281], [2.352250200595289, 48.820870178084824], [2.352242217168913, 48.82088010626302], [2.352241816544355, 48.8208845074568], [2.352270256483166, 48.82098339543792], [2.352298074469604, 48.82107885429662], [2.352326514632283, 48.8211777413479], [2.352354332825402, 48.82127320017702], [2.35235493395848, 48.82128917011856], [2.352366954200245, 48.82129351446919], [2.352532019169381, 48.82129117418365], [2.352729346890901, 48.8212884336095], [2.352932413104787, 48.82128555288064], [2.353129740772827, 48.82128281254512], [2.353332806942697, 48.82127993113629], [2.353530134568415, 48.82127719014002], [2.353733200694259, 48.82127430805123], [2.353930528277644, 48.82127156639423], [2.354133595721391, 48.821268683632866], [2.354330923262434, 48.82126594131511], [2.354533989300193, 48.82126305786643], [2.354731316798884, 48.82126031488794], [2.354934382792584, 48.82125743075932], [2.355131710248913, 48.821254687120096], [2.355145614737301, 48.82126351666352], [2.355148735932724, 48.82137776096086], [2.355152978170254, 48.821525366566014], [2.355156100759436, 48.82163961084391], [2.355160343028098, 48.82178721731373], [2.35516346428704, 48.82190146155748], [2.355167706608974, 48.82204906709335], [2.355170829261689, 48.82216331131764], [2.355168741356098, 48.82216826013166], [2.355064653636634, 48.82227759925709], [2.354960284141033, 48.82238699972015], [2.354856195547762, 48.822496338642864], [2.354751825165792, 48.822605739802036], [2.354647735698702, 48.82271507852197], [2.354543364452612, 48.822824478578625], [2.354439274111796, 48.82293381709586], [2.354334901979311, 48.823043217848564], [2.354332844361765, 48.823048681252466], [2.354336551965092, 48.82308145032126], [2.354340143265244, 48.823117782096304], [2.354333787098968, 48.82312598697822], [2.354194142648907, 48.823183801291414], [2.354052025743754, 48.82324271551454], [2.353912380668634, 48.82330052949272], [2.353770263127044, 48.823359443374834], [2.353630617438012, 48.82341725611866], [2.353488499248631, 48.82347617055914], [2.353482023176491, 48.82348458430088], [2.353489809865251, 48.82349558801465], [2.353653887841394, 48.82358682555325], [2.35380173036709, 48.82366917291668], [2.353813331863359, 48.823671091023854], [2.353997340265355, 48.82364529544619], [2.354171658781862, 48.82362103465548], [2.354176657669868, 48.823619597466184], [2.354326947734862, 48.82354991492307], [2.354476247948004, 48.82348027990888], [2.354626537210923, 48.823410596980644], [2.354775837998135, 48.823340960691795], [2.35492612645918, 48.8232712773784], [2.35507542507411, 48.82320164159886], [2.355080067867511, 48.82320024742002], [2.355162497931566, 48.82318672640985], [2.355259999488818, 48.823171082228896], [2.355275506287378, 48.82317231164219], [2.355286576543045, 48.82316387400557], [2.355343439173973, 48.8231413327682], [2.355396459662873, 48.82312141406403], [2.3554025542352433, 48.82311661725778], [2.355466321898435, 48.82299847783587], [2.3555322678509603, 48.8228778606304], [2.355545913877419, 48.822871938020164], [2.355721937168516, 48.82287908324306], [2.355955135976469, 48.82288914705327], [2.356131159381738, 48.82289629167369], [2.35636435835674, 48.822906353786415], [2.3565403805142893, 48.822913497797], [2.356540897892388, 48.82291351407172], [2.356720723509425, 48.82291674800141], [2.356934128269924, 48.822920603837076], [2.357113952573815, 48.82292383716816], [2.357327357381322, 48.822927693201414], [2.357507183096029, 48.82293092594842], [2.357720587972705, 48.82293478038056], [2.357900412374249, 48.82293801252894], [2.358113817297822, 48.822941867158626], [2.358293641748282, 48.82294509871567], [2.358339994179588, 48.82295192099876]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 43, "roussel_fabien": 36.0, "nb_emargement": 1368.0, "nb_procuration": 66.0, "nb_vote_blanc": 21.0, "jadot_yannick": 82.0, "le_pen_marine": 73.0, "nb_exprime": 1334.0, "nb_vote_nul": 12.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1748.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1367, "quartier_bv": "51", "geo_point_2d": [48.821665183035975, 2.3564494555346], "melenchon_jean_luc": 545.0, "poutou_philippe": 11.0, "macron_emmanuel": 374.0}, "geometry": {"type": "Point", "coordinates": [2.3564494555346, 48.821665183035975]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ca489de600e4acbbe6ff1000846727d91c2d9f98", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 73, "zemmour_eric": 94.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "5-1", "geo_shape": {"coordinates": [[[2.343030253980965, 48.846091329779675], [2.343055541035506, 48.846122769081774], [2.343253672883908, 48.84616743180667], [2.343448042593551, 48.84621124254465], [2.343646175114679, 48.84625590461597], [2.343840545495566, 48.84629971381354], [2.344038677326918, 48.84634437522382], [2.344233048367709, 48.846388183780256], [2.344431182234262, 48.84643284454446], [2.344625553923643, 48.84647665335901], [2.344634185930953, 48.84648254378721], [2.344693785055041, 48.84661170806925], [2.344755193506929, 48.84674135347904], [2.344814793226908, 48.84687051767075], [2.344876202284892, 48.847000162988344], [2.344935802600768, 48.8471293270898], [2.344997212253352, 48.84725897321448], [2.345002821186204, 48.84726384337508], [2.3451786332978353, 48.84733882394944], [2.345339573541076, 48.8474085938349], [2.345500514215349, 48.847478363499505], [2.345676327766751, 48.84755334332806], [2.345837269327495, 48.84762311342988], [2.346013082489112, 48.8476980927464], [2.346174026321743, 48.84776786149432], [2.346349840456198, 48.84784284030621], [2.346510783812684, 48.847912609483906], [2.346686600282618, 48.84798758779864], [2.346847544548251, 48.84805735561497], [2.347023360628493, 48.84813233341763], [2.347095549745754, 48.84815988891379], [2.347097696202353, 48.84816063540323], [2.347261006894851, 48.84820562384663], [2.347447662442375, 48.84825584145399], [2.347447821328516, 48.84825588548981], [2.347611133984302, 48.848300873458854], [2.347769535032735, 48.848345042990715], [2.347932846871748, 48.84839003140893], [2.348091248463853, 48.84843420051136], [2.348254562233893, 48.848479187594904], [2.348412964369666, 48.84852335626787], [2.348424908322237, 48.84854365147539], [2.348441489771945, 48.84854246378939], [2.34847716708255, 48.84853974595716], [2.348491702272407, 48.84851606047194], [2.348499192533424, 48.84839609990827], [2.348507227745371, 48.84828127043952], [2.348514717936904, 48.84816130984958], [2.34852275307844, 48.8480464803556], [2.34853024320049, 48.8479265197394], [2.348538278260374, 48.847811691119475], [2.348538214324901, 48.847810374110324], [2.348513951216733, 48.84765909397269], [2.348484718426787, 48.847498337182195], [2.348485348600054, 48.84749436454827], [2.348507372674637, 48.84744954711467], [2.348534590498914, 48.84739683550369], [2.348550332078651, 48.84737799510924], [2.348549251650612, 48.84737165773905], [2.348564963641643, 48.847341229839984], [2.34860861906887, 48.84724603205161], [2.348651547219886, 48.847162891585945], [2.348654554833894, 48.84715960731217], [2.348765961992134, 48.84708200731566], [2.348871018659549, 48.84700997475842], [2.348874562953916, 48.847005506245445], [2.348908455418677, 48.84689393901212], [2.3489483268217253, 48.84675469323294], [2.348982218976694, 48.84664312505431], [2.349022089990764, 48.84650387921915], [2.349055981813375, 48.8463923118938], [2.3490561972715343, 48.8463913174749], [2.349074968073977, 48.84627130291389], [2.349092016907687, 48.84614088236816], [2.349103212613865, 48.846069302965304], [2.349112442269484, 48.84605847092429], [2.349108249509868, 48.846041112949614], [2.349115824424668, 48.84599267775727], [2.349131385597972, 48.845824135096905], [2.349150156023086, 48.845704120463], [2.349150150016742, 48.845702964752384], [2.349142819256067, 48.84560496294927], [2.349132774830335, 48.84550723326943], [2.3491254441298652, 48.84540923144805], [2.349115399774337, 48.84531150174958], [2.3491154370298553, 48.84531026443212], [2.349132816760385, 48.845180919407326], [2.349156284729915, 48.8450540762328], [2.349173665636294, 48.844924731179795], [2.349197133379814, 48.84479788886736], [2.349214514099274, 48.84466854377869], [2.349237981639249, 48.84454170052987], [2.349238946607863, 48.84452214827035], [2.349190653604027, 48.84450986110383], [2.349000806605765, 48.84449703664868], [2.348821282908286, 48.84448453609308], [2.348641757923141, 48.84447203615974], [2.3484519112089792, 48.8444592099339], [2.348272387762213, 48.84444670945346], [2.348082541219963, 48.844433883540454], [2.348076501397065, 48.844434376753696], [2.347896941800359, 48.84448010016803], [2.347692485218822, 48.84452911412918], [2.347512923607527, 48.84457483605649], [2.347308467644374, 48.844623850263915], [2.347128905369787, 48.84466957161103], [2.346924447311384, 48.844718585150524], [2.346924305157629, 48.84471862034897], [2.34674474221961, 48.84476434111554], [2.346535675998489, 48.844816211280396], [2.3463561123833, 48.8448619314597], [2.346147045372626, 48.844913801840164], [2.34596748108027, 48.84495952143216], [2.345758413302611, 48.84501139022966], [2.345578848321803, 48.84505711013363], [2.345578058020146, 48.845057325254636], [2.345364763959533, 48.84512058223817], [2.34518519963104, 48.84516630065498], [2.345160312699231, 48.84517962337285], [2.345158665987189, 48.84518292850477], [2.345014445665681, 48.84525756481341], [2.344842223298179, 48.84534668020343], [2.3446980020816532, 48.84542131522035], [2.344525779994501, 48.84551043014918], [2.344381557860341, 48.845585065672964], [2.344209333328388, 48.84567418012576], [2.344065110299215, 48.84574881435778], [2.34389288468503, 48.845837928341915], [2.343748660738202, 48.845912563080816], [2.343744890630401, 48.84591394180534], [2.343577810455898, 48.845953848958686], [2.343394863129914, 48.84599582186452], [2.343227782424982, 48.84603572852612], [2.343044835903587, 48.84607770000178], [2.343030253980965, 48.846091329779675]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 1, "roussel_fabien": 29.0, "nb_emargement": 1227.0, "nb_procuration": 89.0, "nb_vote_blanc": 15.0, "jadot_yannick": 92.0, "le_pen_marine": 48.0, "nb_exprime": 1205.0, "nb_vote_nul": 7.0, "arr_bv": "05", "arthaud_nathalie": 2, "nb_inscrit": 1510.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1227, "quartier_bv": "20", "geo_point_2d": [48.84628256793164, 2.346919090834383], "melenchon_jean_luc": 314.0, "poutou_philippe": 5.0, "macron_emmanuel": 509.0}, "geometry": {"type": "Point", "coordinates": [2.346919090834383, 48.84628256793164]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0df261bfb66f2318014a6acd83580743c397dbc0", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 50, "zemmour_eric": 59.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-54", "geo_shape": {"coordinates": [[[2.378218025916038, 48.888724746697875], [2.378195980313863, 48.88869770469928], [2.378034360952927, 48.88860630350814], [2.377874241179498, 48.88851716448203], [2.377712622954426, 48.888425761942315], [2.377552504276187, 48.88833662337059], [2.377390887176229, 48.888245220381584], [2.377230769603917, 48.88815608136498], [2.37706915362917, 48.888064677926714], [2.376909037173538, 48.88797553756594], [2.376905656868865, 48.88797413411816], [2.3767370251448963, 48.88792514806239], [2.376568247113322, 48.8878753093442], [2.376399616026909, 48.88782632280888], [2.37623083727491, 48.887776483603496], [2.376062206825857, 48.88772749658856], [2.375893430091579, 48.88767765601097], [2.3757248002800893, 48.88762866851645], [2.375556022814623, 48.88757882835095], [2.375548720162896, 48.8875735831815], [2.375469275110593, 48.88742341881748], [2.3753846484614742, 48.887278246475134], [2.375379941658394, 48.8872742010436], [2.3751938667377512, 48.88718492467673], [2.37501898556014, 48.8871048813443], [2.374844104931062, 48.887024836851374], [2.374658031820159, 48.886935559631546], [2.374641748393077, 48.88693356442167], [2.374618635976016, 48.88694560527061], [2.3744837608749823, 48.88703530891615], [2.37435314768151, 48.887122682042104], [2.3742225340497223, 48.88721005501868], [2.374087656217707, 48.88729975818927], [2.373957041706997, 48.887387129962875], [2.37382216432264, 48.887476832827126], [2.373691548911587, 48.88756420519626], [2.373556669247537, 48.88765390773985], [2.373554068184883, 48.887664143726084], [2.373594171636118, 48.88771901893717], [2.373622160723759, 48.88776439685179], [2.373624402406089, 48.887766576848335], [2.373738542798086, 48.88784851772756], [2.373857507342918, 48.88793259532894], [2.373971648454831, 48.88801453687282], [2.374090615119031, 48.88809861423701], [2.374204756972491, 48.88818055464701], [2.374323724381571, 48.888264632666164], [2.374320204711364, 48.888278690483475], [2.374197770621882, 48.88832204105479], [2.373977013594169, 48.88840427863483], [2.37385457892358, 48.88844762885028], [2.37384890041199, 48.88845169557308], [2.373781716028272, 48.88855296055299], [2.373703256956428, 48.88866523718256], [2.373636072013949, 48.88876650206111], [2.373557613670016, 48.88887877858053], [2.373560238109546, 48.88888882245918], [2.373702801804956, 48.88898517433492], [2.373829698285157, 48.88907058028195], [2.373956595181731, 48.88915598608783], [2.3740991603420323, 48.88925233746824], [2.374226058123421, 48.88933774297443], [2.37436862428008, 48.889434094018085], [2.374368838392058, 48.88943409423744], [2.374407236919263, 48.889408350306894], [2.374511662760052, 48.88934006260082], [2.374628644146306, 48.88926988884569], [2.374733069419151, 48.889201600937874], [2.374850050195955, 48.889131426957654], [2.3748678092899382, 48.88913108979826], [2.375016498341791, 48.889210489245066], [2.375158040018943, 48.889290362916725], [2.375306729968266, 48.889369761991624], [2.375448272534355, 48.889449634409374], [2.375596963380947, 48.88952903311239], [2.375738506825184, 48.88960890517542], [2.375887198569151, 48.88968830350653], [2.3760287428916422, 48.88976817521495], [2.376057487260752, 48.889781634962446], [2.376085685919756, 48.88977360076295], [2.376240310393796, 48.88969789561741], [2.376389634207918, 48.88962473832208], [2.376544259161719, 48.889549032780856], [2.376693582111133, 48.88947587599582], [2.376842904651827, 48.88940271812046], [2.376997528287208, 48.88932701197864], [2.377146849963207, 48.88925385461356], [2.377301472714624, 48.889178148069], [2.377450793547446, 48.88910498941572], [2.3776054154149, 48.88902928246843], [2.377754735382942, 48.88895612432547], [2.37790935636654, 48.88888041697542], [2.378058675491401, 48.88880725754428], [2.378213294227334, 48.888731549784396], [2.378218025916038, 48.888724746697875]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 54, "roussel_fabien": 14.0, "nb_emargement": 1165.0, "nb_procuration": 57.0, "nb_vote_blanc": 9.0, "jadot_yannick": 83.0, "le_pen_marine": 73.0, "nb_exprime": 1147.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1586.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1165, "quartier_bv": "73", "geo_point_2d": [48.888453605474744, 2.375569438204224], "melenchon_jean_luc": 506.0, "poutou_philippe": 11.0, "macron_emmanuel": 295.0}, "geometry": {"type": "Point", "coordinates": [2.375569438204224, 48.888453605474744]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ce181afdf55abd55fc0a2e010f212e4e0ae3f983", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 220, "zemmour_eric": 225.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-20", "geo_shape": {"coordinates": [[[2.279877702871793, 48.85627009049961], [2.27990033110274, 48.856265889968284], [2.280028863216441, 48.856186143813204], [2.280190274482963, 48.856082800971855], [2.280190666425986, 48.85608254701232], [2.280310896538796, 48.85600168036895], [2.280472306674417, 48.855898337129986], [2.280592534562341, 48.85581747018205], [2.280753943568738, 48.855714126546026], [2.280874171944834, 48.85563326020919], [2.280885742618078, 48.855630826830016], [2.2810018932304272, 48.855642668761284], [2.281063287861982, 48.85565476888749], [2.281072386830451, 48.85565851272607], [2.281181163858381, 48.85576146290156], [2.281283768472352, 48.855857014641124], [2.281386372087505, 48.855952567175564], [2.281495151712427, 48.85605551704656], [2.281597756118506, 48.856151068483406], [2.281706536575496, 48.85625401814384], [2.281706566173213, 48.85625404620161], [2.281844581778677, 48.85638153662698], [2.281953363216998, 48.85648448514237], [2.281956759382499, 48.85648668106904], [2.281991493137224, 48.856500185600254], [2.282055170254611, 48.85652892533042], [2.282092578048089, 48.85653135858822], [2.282117542621145, 48.8565158568312], [2.282233275459436, 48.856452720945306], [2.282374645387143, 48.85637509804581], [2.282490376226127, 48.856311962794344], [2.282631745388918, 48.85623433958129], [2.282633410469753, 48.85622160025997], [2.2825012796004343, 48.85611906994114], [2.282363738483035, 48.85600931214893], [2.282231607319861, 48.855906781504586], [2.282094067330887, 48.8557970233814], [2.282092585353838, 48.85579557461682], [2.281960456629058, 48.855693043661496], [2.2818748317212583, 48.85558868714684], [2.281877542472885, 48.85557781577616], [2.282019763017583, 48.8554906516552], [2.282157702314142, 48.8554073361164], [2.282299921912479, 48.85532017254838], [2.282437860309666, 48.855236856673834], [2.282580078974039, 48.855149692759504], [2.282718016484441, 48.85506637564991], [2.282860235577563, 48.854979211397406], [2.282998170813513, 48.85489589484321], [2.28313610697116, 48.85481257813198], [2.283278323309481, 48.85472541335446], [2.283416258580142, 48.8546420954082], [2.283558473984517, 48.854554930284344], [2.283591398317235, 48.85454157136718], [2.283598901302245, 48.85451894972913], [2.283480283989156, 48.85442725936761], [2.283360935602825, 48.854342973425716], [2.283242319121439, 48.85425128191451], [2.283122971522995, 48.85416699572191], [2.283004355848669, 48.85407530485954], [2.282885009038203, 48.853991018416274], [2.2827663941830982, 48.8538993273035], [2.282647048160606, 48.85381504060953], [2.282645834309161, 48.85381421491441], [2.282496869870898, 48.853725150260985], [2.282356353166074, 48.85364646163603], [2.282207389702275, 48.853557396608785], [2.282066875249741, 48.85347870764019], [2.281917912760298, 48.85338964223913], [2.281777397834509, 48.85331095291056], [2.281636883333007, 48.853232263411364], [2.281487922283039, 48.85314319745528], [2.281347410021504, 48.853064508511764], [2.281198449958281, 48.85297544128259], [2.281057937223485, 48.85289675197907], [2.280963520165967, 48.852840297423086], [2.280908978134606, 48.85280768437609], [2.280870723232375, 48.852813701427095], [2.280833356270194, 48.85285689170517], [2.280675422444024, 48.852947467636085], [2.280515735662358, 48.8530377315278], [2.280357800735888, 48.853128307024754], [2.28019811284984, 48.85321857047787], [2.280040176823267, 48.853309145540855], [2.279880487832728, 48.8533994085554], [2.279722550705945, 48.853489983184396], [2.279562860611112, 48.85358024576038], [2.279404922384009, 48.8536708199554], [2.279245231184775, 48.853761082092795], [2.27908729185755, 48.85385165585385], [2.278927599553808, 48.85394191755266], [2.278769659126352, 48.85403249087976], [2.278609965718296, 48.85412275213997], [2.278452024190502, 48.854213325033015], [2.278292329678027, 48.854303585854645], [2.278289681718027, 48.854304757938344], [2.278118837806463, 48.854362488866265], [2.277943668250468, 48.85442175473622], [2.277772823571947, 48.854479485164056], [2.277597654591887, 48.85453875052946], [2.277426807783611, 48.85459648044895], [2.277251638016691, 48.85465574530158], [2.27708079180426, 48.854713474729174], [2.276905621262863, 48.85477273816975], [2.276734772908297, 48.85483046798831], [2.276559601580151, 48.85488973091611], [2.276513052831387, 48.85490545988299], [2.276501853734869, 48.85491607206924], [2.276522645086145, 48.8549409796458], [2.276611938804285, 48.855047543249654], [2.276706070658562, 48.85515718934615], [2.276795365109866, 48.85526375369174], [2.276889496390381, 48.85537339871507], [2.276894444035021, 48.85537671757232], [2.277087962735877, 48.85545183670623], [2.277281398741524, 48.8555258829828], [2.277474918554232, 48.855601001480835], [2.277668355675996, 48.85567504622265], [2.277861875225263, 48.85575016497584], [2.278055313450769, 48.8558242090822], [2.278057714277608, 48.85582494395382], [2.278234396008447, 48.855865823527225], [2.278414675673543, 48.855908114042954], [2.278591357966556, 48.85594899308621], [2.27877163822148, 48.8559912821617], [2.278948321076557, 48.85603216067485], [2.279128601908947, 48.85607444920938], [2.279305283963245, 48.85611532718417], [2.279485565360761, 48.856157616077105], [2.279662249339955, 48.856198493529995], [2.279842531327266, 48.856240780982624], [2.279877702871793, 48.85627009049961]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 20, "roussel_fabien": 6.0, "nb_emargement": 1287.0, "nb_procuration": 78.0, "nb_vote_blanc": 8.0, "jadot_yannick": 48.0, "le_pen_marine": 58.0, "nb_exprime": 1276.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1587.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1288, "quartier_bv": "62", "geo_point_2d": [48.854747868229474, 2.2802891901257327], "melenchon_jean_luc": 76.0, "poutou_philippe": 1.0, "macron_emmanuel": 614.0}, "geometry": {"type": "Point", "coordinates": [2.2802891901257327, 48.854747868229474]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3c240b26f8eab8c7da1b4d62085cc395dc0c7a41", "fields": {"lassalle_jean": 26.0, "pecresse_valerie": 117, "zemmour_eric": 110.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-84", "geo_shape": {"coordinates": [[[2.283896519258816, 48.844784278595625], [2.283913256041213, 48.84475693907742], [2.283913793287494, 48.84475671385391], [2.28394237194539, 48.84474390704144], [2.28405012045905, 48.84470117092805], [2.284231696188706, 48.84462925488381], [2.284382888389639, 48.84456928658818], [2.284564463200526, 48.84449737003044], [2.284715654635963, 48.84443740130717], [2.284726597995297, 48.844436498118505], [2.284837691193209, 48.84445855014845], [2.284949062483734, 48.84447960723712], [2.284960104572786, 48.844478559819], [2.285141198392028, 48.84440288465202], [2.285320745415919, 48.844327683828176], [2.285501838187252, 48.84425200810508], [2.285681384170995, 48.844176806729784], [2.285862477256846, 48.844101130458675], [2.286042020837916, 48.844025928523855], [2.286223112875959, 48.84395025169661], [2.286402655416889, 48.84387504921038], [2.286427049670858, 48.843865732469915], [2.286414702421997, 48.84384866346472], [2.286368169364837, 48.84379652023961], [2.286321431891288, 48.843744385666994], [2.28631954972361, 48.84374023644624], [2.286317483525518, 48.84371181398286], [2.286315231018845, 48.843684061335786], [2.286309926767406, 48.84361109903286], [2.286303895340726, 48.84353681121469], [2.286303827645097, 48.843536281982324], [2.28628511157472, 48.84342589338697], [2.286266046139475, 48.843314654588504], [2.286247330216392, 48.84320426686461], [2.286228264955175, 48.843093027138714], [2.286209549191598, 48.84298263938696], [2.286190484079774, 48.84287140053227], [2.2861884662425442, 48.84286760934455], [2.286109825475638, 48.84278380366471], [2.286031076037078, 48.842701483933546], [2.285952328209665, 48.842619164152644], [2.285873688197328, 48.842535358298925], [2.285873303122512, 48.84253492160493], [2.285775272742048, 48.84241531205757], [2.285668257136021, 48.84228552905796], [2.285668254435716, 48.8422855272431], [2.2856490741347733, 48.842262125340845], [2.285639743074431, 48.842250807717775], [2.285612121129226, 48.84221730854374], [2.285584445670061, 48.842183541030444], [2.285573317280216, 48.84217243211359], [2.285555004051517, 48.842174248292835], [2.285394520694692, 48.842246437240014], [2.285232824502508, 48.842319200615215], [2.285072340253014, 48.84239138912083], [2.284910643173678, 48.842464151151795], [2.284750158031618, 48.84253633921584], [2.284588460040451, 48.842609101701136], [2.2844279740059212, 48.84268128932361], [2.284266275115157, 48.842754051364], [2.2841057882004048, 48.84282623764556], [2.28394408977264, 48.842898999249186], [2.283783601952965, 48.84297118598845], [2.283621901263206, 48.843043947138966], [2.2834614125509543, 48.84311613343662], [2.283299710974059, 48.84318889324292], [2.283151866967252, 48.84325498250754], [2.282990164515159, 48.84332774278568], [2.282842321084463, 48.84339383166775], [2.28268061778171, 48.84346659061913], [2.28259535176615, 48.84350470630224], [2.282595601450293, 48.84351428427641], [2.282618980225466, 48.84352740236234], [2.282653238844166, 48.84357421757087], [2.282709386987277, 48.84364672856605], [2.282705689325978, 48.84365788374655], [2.282545409673097, 48.84374127887675], [2.282386924467968, 48.84382405049849], [2.282226643806394, 48.84390744428988], [2.282068158952244, 48.843990215485164], [2.282064769784303, 48.84400171515403], [2.282161104153842, 48.844113474038465], [2.282258382752025, 48.8442223982923], [2.282354717944653, 48.844334156998706], [2.282451997371879, 48.844443080174266], [2.282548333375224, 48.84455483960193], [2.282645613618914, 48.84466376259852], [2.282741950457747, 48.844775520948886], [2.282839231505739, 48.84488444466573], [2.282935569167687, 48.84499620283808], [2.283032851044538, 48.845105125476636], [2.28305138062436, 48.845144222294984], [2.283083286393719, 48.84514485238892], [2.283278801699753, 48.84505572560388], [2.283412098674628, 48.84499709571667], [2.283545393987148, 48.844938465669664], [2.283740907728657, 48.84484933811291], [2.283874203655809, 48.84479070769998], [2.283896519258816, 48.844784278595625]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 84, "roussel_fabien": 13.0, "nb_emargement": 1136.0, "nb_procuration": 53.0, "nb_vote_blanc": 16.0, "jadot_yannick": 71.0, "le_pen_marine": 84.0, "nb_exprime": 1120.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1441.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1137, "quartier_bv": "60", "geo_point_2d": [48.843686335345105, 2.284368532392307], "melenchon_jean_luc": 205.0, "poutou_philippe": 7.0, "macron_emmanuel": 455.0}, "geometry": {"type": "Point", "coordinates": [2.284368532392307, 48.843686335345105]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "84ef2ecd2737473be91a0e0f2efd635f11664b19", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 56, "zemmour_eric": 132.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "19-7", "geo_shape": {"coordinates": [[[2.373890963309799, 48.88094786761049], [2.373884816940093, 48.8809328481423], [2.373936866027377, 48.88082108637466], [2.373988276366921, 48.88071298600214], [2.374040323649056, 48.88060122416006], [2.374091733546011, 48.88049312462082], [2.374143780397211, 48.880381361812184], [2.374195189862392, 48.88027326220693], [2.374247236261049, 48.88016150023024], [2.374298645305264, 48.88005339965974], [2.374299231304958, 48.88005138372644], [2.374310103088419, 48.87992447581882], [2.37432509158498, 48.87979323395439], [2.374335963251638, 48.87966632601467], [2.374350951619541, 48.87953508321701], [2.374350986781153, 48.87953419935891], [2.374347509409911, 48.87943548505691], [2.374358379583804, 48.879308577066844], [2.3743549022136152, 48.87920986274485], [2.374333338201088, 48.879085351014474], [2.374333276768777, 48.87908467619528], [2.374315811744205, 48.8789680954851], [2.374294247936039, 48.87884358282108], [2.374276784432218, 48.878727002986075], [2.374255220817278, 48.87860249028778], [2.374237757481656, 48.87848591042163], [2.374237678028265, 48.87848548732057], [2.374216115970147, 48.87836097459506], [2.374200614681941, 48.878291388730425], [2.374200333092418, 48.878277717419344], [2.374136959663395, 48.87827257199953], [2.37398437362457, 48.87825419585104], [2.373829706060276, 48.87823465028067], [2.373677120240961, 48.87821627373996], [2.373522452904593, 48.878196727771936], [2.373512985492825, 48.878197804190684], [2.373333679830451, 48.878267222226796], [2.373156623333074, 48.87833551771233], [2.372977316732328, 48.878404934306715], [2.372800257925319, 48.878473230148806], [2.37262095037548, 48.878542646200785], [2.372443892007166, 48.87861094061515], [2.372266833174602, 48.8786792347634], [2.372087524193719, 48.878748650902736], [2.371910464425584, 48.878816944515414], [2.371731154495705, 48.87888636011226], [2.3715540937920983, 48.87895465318936], [2.371374782913123, 48.87902406824379], [2.371336936477543, 48.87905180093435], [2.371344309701044, 48.87905976365977], [2.371417738400566, 48.879134160580456], [2.371517592441418, 48.879240185355066], [2.371621623336174, 48.879350845525266], [2.371721478207538, 48.87945687010893], [2.371825509968437, 48.879567530080244], [2.371925365681169, 48.87967355357368], [2.372029398308015, 48.87978421334608], [2.372129254840432, 48.87989023754789], [2.372233288333439, 48.88000089712129], [2.372333145696396, 48.88010692113221], [2.372437180055372, 48.88021758050666], [2.372537038259713, 48.88032360342737], [2.372641073484765, 48.880434262602876], [2.372740932508931, 48.8805402862319], [2.37274263425, 48.880543001231395], [2.372790063832658, 48.88067798370907], [2.372839320323002, 48.880814820245384], [2.3728404092783872, 48.88081678918639], [2.372927720548291, 48.88092088797037], [2.373012690972209, 48.88103211779309], [2.373100002958307, 48.881136215531775], [2.373184974101508, 48.88124744521048], [2.373201763989875, 48.88126034315962], [2.373236710199148, 48.8812625639945], [2.37326826779806, 48.8812645692277], [2.373295337130674, 48.88123400333566], [2.373440448151859, 48.88116637606877], [2.373578962976177, 48.88110080864829], [2.373724073257931, 48.88103318102939], [2.373862586007402, 48.88096761326571], [2.373890963309799, 48.88094786761049]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 7, "roussel_fabien": 39.0, "nb_emargement": 1076.0, "nb_procuration": 50.0, "nb_vote_blanc": 10.0, "jadot_yannick": 76.0, "le_pen_marine": 43.0, "nb_exprime": 1065.0, "nb_vote_nul": 0.0, "arr_bv": "19", "arthaud_nathalie": 1, "nb_inscrit": 1410.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1075, "quartier_bv": "76", "geo_point_2d": [48.87955454610019, 2.373181134508738], "melenchon_jean_luc": 337.0, "poutou_philippe": 3.0, "macron_emmanuel": 338.0}, "geometry": {"type": "Point", "coordinates": [2.373181134508738, 48.87955454610019]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "36e0e195ae817307984763f458c6c09a557e33be", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 27, "zemmour_eric": 39.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-59", "geo_shape": {"coordinates": [[[2.364678733602595, 48.884365612276234], [2.364639824489734, 48.88437063449457], [2.364504468632477, 48.88437639038813], [2.364310650296762, 48.884378775330475], [2.364175293018371, 48.88438453084467], [2.364174544144896, 48.88438454935093], [2.363980725752622, 48.884386934658444], [2.363783272441768, 48.884388153694545], [2.363589454029253, 48.884390537469386], [2.363392002059174, 48.88439175586747], [2.363198183604247, 48.88439413990819], [2.363000731611359, 48.884395357661], [2.362806911772629, 48.88439774016184], [2.362609459756944, 48.88439895726938], [2.362415641239501, 48.884401340043354], [2.362218189201025, 48.88440255650564], [2.362024369299612, 48.88440493773969], [2.36182691723846, 48.88440615355674], [2.361633098658337, 48.88440853506392], [2.361435646574312, 48.884409750235704], [2.361241826610454, 48.88441213020296], [2.361044374503673, 48.88441334472948], [2.36085055586101, 48.884415724969884], [2.360653103731475, 48.88441693885115], [2.360459285068702, 48.88441931755888], [2.360261831552837, 48.88442053078761], [2.360068012847774, 48.8844229097612], [2.359870560672769, 48.884424122351945], [2.359676741936366, 48.88442650069219], [2.359479288386107, 48.88442771173112], [2.359370664773249, 48.88442904434109], [2.359313937261781, 48.884431427089865], [2.359301382010244, 48.88447321552121], [2.359306862107617, 48.884589186182986], [2.3593162586399963, 48.8847368593027], [2.35932173743464, 48.88485282992865], [2.359331134045712, 48.885000503911066], [2.359336614264832, 48.88511647451585], [2.3593460109767292, 48.885264147562395], [2.359351489893109, 48.88538011813141], [2.359351607961592, 48.885381051365364], [2.359370225309394, 48.88549087247485], [2.359396966984341, 48.885620363948014], [2.35941558451336, 48.88573018502657], [2.359442326423895, 48.885859676461415], [2.359460944134133, 48.88596949750898], [2.359477779856009, 48.88605102429156], [2.359488672613955, 48.88606458954776], [2.359552717154779, 48.88605585703361], [2.359656322894972, 48.88604909964868], [2.359780165337812, 48.8860440538822], [2.3597887007626372, 48.88604560499396], [2.359960261265576, 48.88612292628213], [2.360133998944446, 48.8862031170104], [2.360305560467987, 48.88628043869195], [2.360479299204123, 48.88636062890776], [2.360650863134011, 48.886437949191446], [2.360824601563768, 48.88651813888743], [2.360836469985743, 48.88651935877727], [2.360934984320877, 48.88649915965825], [2.3610463139708, 48.88648669200423], [2.361059627623704, 48.88649027042258], [2.361172753825891, 48.8865929151693], [2.361300438199658, 48.88670511814855], [2.3613162615635392, 48.88670810827586], [2.36150186940789, 48.88666081069571], [2.361685790541485, 48.88661413606171], [2.361871397726263, 48.886566837005404], [2.362055319549353, 48.88652016270631], [2.362240926063525, 48.8864728630732], [2.362424845859941, 48.88642618819521], [2.362610451703402, 48.88637888798524], [2.362794370836685, 48.88633221253567], [2.362979977373174, 48.88628491175606], [2.36316389584332, 48.88623823573493], [2.363349500345549, 48.886190934371214], [2.363533418152554, 48.886144257778454], [2.3637190233477963, 48.88609695584517], [2.363902940502638, 48.886050277781585], [2.36408854365263, 48.88600297616346], [2.364272460144317, 48.885956297528246], [2.364458062634762, 48.885908994434025], [2.364641979815838, 48.88586231613374], [2.364825895303567, 48.885815637541754], [2.365011496789933, 48.8857683335836], [2.365195412978125, 48.88572165442725], [2.365381013793849, 48.88567434989228], [2.365564927966204, 48.885627669257836], [2.365750528100324, 48.88558036504527], [2.365805974736978, 48.88556084478996], [2.365806390220326, 48.885554274713826], [2.365776062510489, 48.88552185973063], [2.365669060476963, 48.885409720652795], [2.365568105691418, 48.88530181606192], [2.365461104557855, 48.885189676775774], [2.365360150629806, 48.88508177198794], [2.365259198494701, 48.884973866212384], [2.365152197325633, 48.88486172750878], [2.365051246047905, 48.884753821536265], [2.364944247153343, 48.884641681732376], [2.364843295358622, 48.88453377645495], [2.3647362973639883, 48.884421636442795], [2.364724099405753, 48.88437569793107], [2.364689692224911, 48.884368048247545], [2.364678733602595, 48.884365612276234]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 59, "roussel_fabien": 25.0, "nb_emargement": 1203.0, "nb_procuration": 59.0, "nb_vote_blanc": 14.0, "jadot_yannick": 71.0, "le_pen_marine": 57.0, "nb_exprime": 1183.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 7, "nb_inscrit": 1734.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1204, "quartier_bv": "72", "geo_point_2d": [48.88534877202913, 2.3622089571178515], "melenchon_jean_luc": 705.0, "poutou_philippe": 13.0, "macron_emmanuel": 193.0}, "geometry": {"type": "Point", "coordinates": [2.3622089571178515, 48.88534877202913]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "20dff1fefb5bd027eadcde75c19f22084394cfc7", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 75, "zemmour_eric": 72.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-3", "geo_shape": {"coordinates": [[[2.3555863607667, 48.83148520800616], [2.355624066766794, 48.83150452549416], [2.35565310367796, 48.83151940193887], [2.355656122597717, 48.83151994343581], [2.355683339595905, 48.83163676546448], [2.355717494435759, 48.831771364038616], [2.355744711702845, 48.83188818602707], [2.355778866865785, 48.83202278455352], [2.355806085752782, 48.832139607408436], [2.35584024125003, 48.83227420498778], [2.355867459043611, 48.83239102779521], [2.355894676970294, 48.832507849684895], [2.355928832926444, 48.832642448094006], [2.355930225685651, 48.832645165396286], [2.356029308061879, 48.83275847992305], [2.356121403027501, 48.832873493421616], [2.356123223444448, 48.83287820602699], [2.356120064800991, 48.832964630162074], [2.356120095638085, 48.833044080659256], [2.356124390457592, 48.83305063320452], [2.356138783405247, 48.833059339239526], [2.356303922699511, 48.83316176425071], [2.356445508302512, 48.83324740146775], [2.356448834972283, 48.83325050060757], [2.356532802416928, 48.83338032938091], [2.356610269434217, 48.83350120316531], [2.356628820411381, 48.83352988761064], [2.356617542080424, 48.8335466343578], [2.356643860483125, 48.83356377670451], [2.356709277828203, 48.83366492087877], [2.356791280369607, 48.83379025279426], [2.356875249547651, 48.83392008036528], [2.356957254251764, 48.83404541214573], [2.357041224243098, 48.83417524046993], [2.357123228385491, 48.8343005721007], [2.357207200574593, 48.83443039938677], [2.357289205517344, 48.83455573087518], [2.357311957685126, 48.83455809255787], [2.3574001484441123, 48.83449166507185], [2.357488988119063, 48.834425625933704], [2.357577179790527, 48.834359198316605], [2.3576660190154453, 48.834293159039156], [2.357688686548173, 48.834295526492326], [2.357771651523778, 48.83442074769628], [2.357854258865522, 48.83454616836502], [2.357937224648755, 48.834671388526765], [2.35801983278607, 48.834796809053074], [2.358102799365965, 48.83492202907196], [2.358185408298861, 48.83504744945584], [2.358268375664457, 48.83517267023113], [2.358350986766323, 48.83529808958051], [2.358433953566196, 48.83542331020558], [2.358516565463668, 48.83554872941256], [2.35853937077282, 48.83555101919262], [2.358653145667418, 48.83546400211646], [2.358758729396256, 48.835382205013325], [2.35878265772339, 48.83537925025976], [2.358791293666894, 48.83536962745357], [2.358816862525583, 48.83534981834348], [2.358951436999343, 48.83524442956199], [2.359082587098277, 48.83514282390094], [2.359217160511368, 48.835037433901704], [2.359348309560512, 48.83493582882978], [2.359482881901985, 48.83483043851211], [2.359614029923455, 48.834728832230745], [2.359748601193318, 48.83462344159463], [2.359879748165026, 48.834521835902414], [2.360014319725576, 48.83441644495514], [2.360145464307336, 48.83431483804621], [2.360276609740125, 48.83421323099156], [2.360411179690597, 48.83410784046801], [2.360542322722416, 48.834006233095955], [2.360676891612343, 48.833900841354684], [2.360808033605482, 48.83379923367245], [2.360942601412914, 48.833693842512076], [2.360945537507201, 48.83368626392909], [2.360913432311858, 48.83358140854795], [2.360881250501958, 48.83347159002004], [2.360849145579066, 48.8333667337022], [2.360816964026099, 48.83325691603525], [2.36082454894011, 48.83324706710565], [2.360996689078946, 48.833193708171294], [2.361170165578142, 48.83313854749467], [2.361342304993734, 48.83308518895701], [2.361515780766183, 48.833030027773745], [2.361687918107412, 48.83297666872626], [2.361861393164021, 48.83292150613705], [2.3618871317521313, 48.83288296338113], [2.361871617549099, 48.832873188105104], [2.361702198919554, 48.83281448161093], [2.361525476009737, 48.83275510542207], [2.36135605815377, 48.83269639843144], [2.361179336038625, 48.832637021724906], [2.361009918956134, 48.832578314237765], [2.360898553148031, 48.83254089631401], [2.360864762230554, 48.83253859593376], [2.360859661023165, 48.83253976843331], [2.360794305528389, 48.832517809111565], [2.360621780804375, 48.832458409928236], [2.360445061683476, 48.83239903303075], [2.360272537750498, 48.83233963333742], [2.360095819441085, 48.83228025501829], [2.359923296299148, 48.832220854814864], [2.359746577427963, 48.832161475966195], [2.359574056439193, 48.832102075259975], [2.359397338357518, 48.83204269678832], [2.359224818159785, 48.83198329557209], [2.359048100889517, 48.83192391567882], [2.358875581482928, 48.83186451395253], [2.358698865013122, 48.83180513353694], [2.358646662928193, 48.83178759290077], [2.35847414443018, 48.83172819058824], [2.358349630717166, 48.831686351262064], [2.358336337433609, 48.83168005629929], [2.358297394807006, 48.83169459614604], [2.358120679560726, 48.8316352157665], [2.357947426662305, 48.83157635555629], [2.357770712226662, 48.8315169737541], [2.357597460105273, 48.83145811393001], [2.357424208386198, 48.83139925295258], [2.357247495146794, 48.83133987036796], [2.357074244215834, 48.83128100887739], [2.356897531764805, 48.83122162666873], [2.356724281621959, 48.83116276466498], [2.356547569981593, 48.83110338103371], [2.356374320626866, 48.831044518516805], [2.356197609774762, 48.830985135261514], [2.356147610322429, 48.83095505553995], [2.356125563768358, 48.83096319578145], [2.355997983655738, 48.831074486918844], [2.355877653130352, 48.83118576569144], [2.355750070592703, 48.83129705563563], [2.355629739024484, 48.83140833413676], [2.355597012349995, 48.83142493018507], [2.355593056185604, 48.831447311305276], [2.3555863607667, 48.83148520800616]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 3, "roussel_fabien": 42.0, "nb_emargement": 1284.0, "nb_procuration": 60.0, "nb_vote_blanc": 21.0, "jadot_yannick": 102.0, "le_pen_marine": 91.0, "nb_exprime": 1255.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1624.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1285, "quartier_bv": "49", "geo_point_2d": [48.833079550681525, 2.358358501080239], "melenchon_jean_luc": 407.0, "poutou_philippe": 10.0, "macron_emmanuel": 381.0}, "geometry": {"type": "Point", "coordinates": [2.358358501080239, 48.833079550681525]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dac2814cbd2d84354bd27e9bc750b7d2b50db97a", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 53, "zemmour_eric": 73.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "4-14", "geo_shape": {"coordinates": [[[2.357920838853991, 48.8578796681479], [2.357923348001251, 48.857871378815524], [2.358069721679314, 48.857812562414004], [2.35820805465523, 48.857756976340845], [2.358354429053303, 48.85769815959234], [2.358492761421746, 48.857642573184336], [2.358639133825318, 48.857583755174936], [2.358777466949073, 48.857528168439394], [2.358779636448073, 48.85752708735463], [2.358889347553062, 48.85746006746806], [2.3590188225049, 48.85738097344974], [2.35916779195711, 48.85728997017122], [2.359297266063585, 48.85721087583952], [2.359298823090514, 48.85721005587477], [2.359438484850339, 48.85714692183822], [2.35957791738196, 48.85708389163403], [2.359717578465434, 48.85702075726456], [2.359857008958942, 48.85695772672069], [2.359857717806177, 48.856957384262905], [2.360002921714399, 48.85688223061361], [2.360149425541798, 48.856806402927994], [2.360294627245651, 48.85673124890725], [2.360441130224011, 48.85665542085419], [2.360586331086369, 48.85658026646927], [2.360732833204658, 48.856504438948065], [2.360878034599418, 48.85642928330696], [2.361024535868678, 48.85635345541834], [2.36116973504806, 48.856278300305064], [2.36131623547932, 48.856202471149714], [2.361321325536613, 48.85619416853183], [2.36129616559952, 48.85607357071074], [2.36127164563129, 48.85595603318031], [2.36124648593509, 48.855835434423675], [2.36122196619099, 48.85571789685781], [2.361197445194672, 48.85560035926725], [2.361172285830924, 48.85547976135564], [2.361164373253614, 48.8554659428499], [2.361142307861549, 48.855467946614894], [2.36099162017193, 48.85550706240513], [2.360838359090886, 48.85554684506857], [2.3606876709449223, 48.855585960473306], [2.360534410762586, 48.85562574275188], [2.360383722171321, 48.855664856871805], [2.360230460150979, 48.8557046396503], [2.360212394262916, 48.855698802499944], [2.360166876265469, 48.85559644318651], [2.360121878356069, 48.85549525218591], [2.360105526057718, 48.85548905454787], [2.359956467597105, 48.855513409502784], [2.359810946008083, 48.855537186924984], [2.359793023303441, 48.85553612153472], [2.359784427650213, 48.85554287374218], [2.35958925551498, 48.85559147534136], [2.359394252535493, 48.855640034358785], [2.359199079672392, 48.855688635317335], [2.359004075965672, 48.855737193694665], [2.358808902374707, 48.855785794012604], [2.3586138979407583, 48.85583435174987], [2.358418723622038, 48.85588295142712], [2.358223718460868, 48.855931508524286], [2.358028543414194, 48.85598010756088], [2.3578335375258073, 48.856028664017956], [2.357638361751286, 48.856077262413926], [2.357443355135688, 48.85612581823088], [2.357248178633326, 48.85617441598621], [2.357053172653375, 48.85622297117041], [2.356857995423179, 48.85627156828506], [2.3566629873531753, 48.85632012282181], [2.356655123051421, 48.85633184225257], [2.356743699550717, 48.85647976612221], [2.356832332637721, 48.85662778374044], [2.356831063936335, 48.856635718188116], [2.356826597705134, 48.85664145182579], [2.356835905273686, 48.85665369884701], [2.356938159222475, 48.85677649893223], [2.357039704534334, 48.8568984470188], [2.357141250321418, 48.85702039500582], [2.357243505698396, 48.857143195688835], [2.357345052439566, 48.857265143476], [2.35744730878819, 48.857387943058484], [2.357548856483353, 48.85750989064583], [2.357651113781655, 48.8576326909264], [2.357752662430726, 48.85775463831392], [2.357854920700792, 48.857877437493975], [2.357864197600701, 48.85788192556553], [2.35786825945055, 48.85788246089043], [2.357901542137121, 48.857886846640774], [2.357920838853991, 48.8578796681479]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 14, "roussel_fabien": 15.0, "nb_emargement": 985.0, "nb_procuration": 76.0, "nb_vote_blanc": 16.0, "jadot_yannick": 86.0, "le_pen_marine": 34.0, "nb_exprime": 970.0, "nb_vote_nul": 1.0, "arr_bv": "04", "arthaud_nathalie": 0, "nb_inscrit": 1241.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 987, "quartier_bv": "14", "geo_point_2d": [48.85652652806805, 2.3589430176515362], "melenchon_jean_luc": 214.0, "poutou_philippe": 9.0, "macron_emmanuel": 435.0}, "geometry": {"type": "Point", "coordinates": [2.3589430176515362, 48.85652652806805]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cba6d3bfbc83386ef9d060b1df6243d0c6e5f7ec", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 154, "zemmour_eric": 159.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-48", "geo_shape": {"coordinates": [[[2.251276327244846, 48.84289030424618], [2.251309571891664, 48.84288753808753], [2.251503490367081, 48.84288058436651], [2.251695891824743, 48.84287365861576], [2.251889810196972, 48.84286670426846], [2.25208221017656, 48.8428597787871], [2.252274611480508, 48.84285285210546], [2.252468529698096, 48.842845896819945], [2.252660930886453, 48.842838970416224], [2.2528548490138283, 48.84283201360511], [2.253047250099592, 48.84282508658001], [2.253241168123638, 48.842818129142614], [2.253433567744412, 48.84281120148758], [2.253627485652344, 48.84280424432318], [2.253819886545872, 48.84279731515594], [2.254013804350565, 48.842790357365296], [2.254206205128493, 48.84278342847597], [2.254400122842911, 48.84277646915966], [2.254592522155722, 48.84276953964048], [2.254786439766775, 48.8427625796979], [2.254978840339533, 48.84275564956579], [2.255172757834461, 48.842748689896226], [2.255175767540088, 48.842748802169965], [2.255355513103622, 48.842768138845194], [2.255524743534375, 48.84278701228876], [2.255693974074847, 48.84280588639188], [2.255873720027505, 48.84282522228752], [2.255886842744016, 48.84282171542044], [2.256028507073804, 48.84269607106951], [2.256166233861506, 48.84256987952243], [2.256175866773316, 48.842566192634465], [2.256358283712482, 48.84254878887803], [2.256562722653835, 48.84253462273943], [2.256574500179465, 48.842537721419546], [2.256708151977007, 48.842640862694346], [2.256842968314565, 48.842745316030104], [2.256976621175637, 48.84284845698584], [2.257111439950719, 48.8429529100081], [2.257245093875437, 48.84305605064464], [2.257379912375888, 48.84316050243716], [2.257397166656009, 48.84316243257157], [2.2575270142833332, 48.84311227385175], [2.257645174272051, 48.84306712031513], [2.257679316421076, 48.84305814959561], [2.257680630109806, 48.84304618081587], [2.2576226513815962, 48.842968061360224], [2.257566230394812, 48.84288964575117], [2.257571197762888, 48.84287821138855], [2.257650315162777, 48.84284481404904], [2.257771189192933, 48.84279378993579], [2.257788283436641, 48.84279508586441], [2.25792128627179, 48.842885069303065], [2.258055816539886, 48.84297652263656], [2.258188820299944, 48.84306650576314], [2.258323351518611, 48.84315795788161], [2.2584563562036832, 48.84324794069616], [2.25859088834733, 48.84333939339817], [2.258723893957221, 48.843429375900634], [2.258858427038656, 48.8435208282869], [2.258877827707364, 48.84352092959162], [2.259000416422326, 48.84344018347706], [2.259103525887534, 48.84337509696144], [2.259206636444831, 48.84331001126091], [2.259329224154272, 48.843229264794175], [2.259331761356018, 48.84321871468923], [2.259310842692896, 48.843204627828875], [2.259222049575512, 48.8430869744817], [2.259140224892146, 48.842978061132015], [2.259058400537874, 48.84286914861498], [2.2589696072122942, 48.84275149413736], [2.258887783570359, 48.84264258148152], [2.258798992365513, 48.84252492776114], [2.25871716944859, 48.84241601406719], [2.2586283776523928, 48.84229836018783], [2.25854655544769, 48.8421894463551], [2.258457764422617, 48.842071792325186], [2.258375944292592, 48.841962878362125], [2.258309197429171, 48.841874433969984], [2.258312143853237, 48.84185706377058], [2.258294877427743, 48.841846153453766], [2.2582728340699862, 48.84181694276277], [2.25818084464842, 48.84169328332402], [2.258092055307042, 48.841575628071105], [2.258000066740293, 48.84145196846661], [2.257911279567629, 48.84133431396181], [2.257819291855784, 48.841210654191556], [2.257730504152631, 48.84109299861941], [2.25772956944017, 48.84108658928255], [2.257782899540621, 48.84095941154882], [2.257841554039949, 48.84083597402884], [2.257894883610623, 48.840708796216646], [2.257953538938049, 48.84058535772324], [2.257947204651468, 48.84057482363998], [2.257785788503791, 48.84051504905461], [2.257594493946948, 48.840442839346906], [2.257433078599705, 48.840383065177875], [2.257241785015812, 48.840310854897616], [2.257080370494625, 48.84025107934626], [2.256889077883888, 48.840178868493474], [2.256727664163123, 48.84011909335841], [2.256707452749857, 48.84012596310366], [2.256687988263465, 48.84024392456633], [2.256670183712458, 48.84036156625853], [2.256650719040908, 48.84047952858952], [2.256632914325402, 48.840597170251364], [2.256613449494343, 48.84071513165212], [2.256595644614133, 48.84083277328359], [2.256576178235471, 48.840950735544205], [2.256558374553093, 48.84106837715376], [2.256538908015015, 48.84118633848414], [2.256521102805587, 48.841303980054875], [2.256506708017467, 48.84131206319224], [2.256306209897797, 48.84130390969451], [2.256149738417271, 48.84129546932649], [2.256114713666695, 48.84129006394503], [2.256103209935702, 48.84129548847782], [2.255902711930079, 48.841287335202956], [2.255710646951509, 48.84127993287437], [2.255510150429481, 48.84127177894997], [2.255318085563993, 48.84126437599101], [2.255117587800883, 48.84125622140005], [2.254925524410932, 48.841248817819206], [2.254920244414821, 48.841249303871216], [2.254742337666861, 48.84129013342383], [2.254546836491088, 48.841335125094766], [2.254368929170543, 48.84137595318957], [2.254173427350533, 48.841420944246785], [2.253995519444549, 48.841461771783166], [2.253800016980308, 48.84150676222669], [2.253622107113558, 48.841547590095374], [2.253426604017969, 48.84159257902592], [2.253248694928238, 48.84163340634461], [2.253053191175546, 48.84167839556073], [2.252875281513274, 48.84171922142168], [2.252679777116366, 48.841764210024095], [2.252501866868678, 48.84180503532654], [2.252306361827459, 48.84185002331521], [2.252128450994459, 48.841890848059215], [2.251932945309037, 48.841935835434185], [2.251755033877617, 48.841976660518974], [2.251559527561009, 48.842021646380964], [2.25138161554418, 48.842062470907265], [2.251365887332601, 48.84206152976667], [2.2513454020673, 48.84207616837193], [2.251334852201328, 48.84217516288924], [2.251322742540049, 48.84230268113947], [2.251309202032329, 48.84242973083977], [2.251297092249143, 48.84255724905833], [2.251286756478918, 48.84265422667774], [2.251274646588655, 48.84278174486835], [2.251264310732147, 48.84287872246628], [2.251276327244846, 48.84289030424618]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 48, "roussel_fabien": 6.0, "nb_emargement": 1157.0, "nb_procuration": 76.0, "nb_vote_blanc": 10.0, "jadot_yannick": 51.0, "le_pen_marine": 68.0, "nb_exprime": 1141.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1469.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1158, "quartier_bv": "61", "geo_point_2d": [48.84205151258077, 2.2556021399215918], "melenchon_jean_luc": 129.0, "poutou_philippe": 5.0, "macron_emmanuel": 536.0}, "geometry": {"type": "Point", "coordinates": [2.2556021399215918, 48.84205151258077]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "28cd2c3c1dd2816d1c2043faea8f7069cc71cf93", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 47, "zemmour_eric": 63.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-2", "geo_shape": {"coordinates": [[[2.343510924753761, 48.88963142688041], [2.343533658653171, 48.88961989986258], [2.343586698887735, 48.889607286221704], [2.343803188847742, 48.88955342961762], [2.343999660747496, 48.88950670522003], [2.34401629929214, 48.88951090628891], [2.344058255805792, 48.88956237698068], [2.344102738067314, 48.889614071032724], [2.344118750235013, 48.88961819850828], [2.344275428480752, 48.8895851817334], [2.344427299561397, 48.88955115727127], [2.344583978773486, 48.889518140098104], [2.344735849445657, 48.88948411614179], [2.344741789956554, 48.889483696289695], [2.344913170638033, 48.88949597450272], [2.345136222370396, 48.88951284193769], [2.345307601877186, 48.889525119578394], [2.345530655225887, 48.88954198628568], [2.345702034932902, 48.889554262462276], [2.345925087159184, 48.88957112932618], [2.34609646841873, 48.8895834049454], [2.34611085329641, 48.88957735819831], [2.346166201593805, 48.889469942893804], [2.346215581666314, 48.889368288419945], [2.346270929525434, 48.88926087304661], [2.346320309195222, 48.88915921851021], [2.346369688672208, 48.88905756394406], [2.346425035883144, 48.88895014846903], [2.346429467996499, 48.888933755476216], [2.346410736334892, 48.888921926029454], [2.346217966190341, 48.888874252623204], [2.346025372919339, 48.88882794324612], [2.345832603475642, 48.88878026921542], [2.3456400108836792, 48.88873396011383], [2.345631752564158, 48.88872837064038], [2.345573994774132, 48.888614811894904], [2.345516238694327, 48.88850450058331], [2.345458481393231, 48.88839094265819], [2.345400727181442, 48.88828063037658], [2.345342969016883, 48.88816707236513], [2.345285215286797, 48.888056760904604], [2.345227461812717, 48.88794644850581], [2.345169705760367, 48.887832890383706], [2.3451587243353282, 48.887804302793896], [2.345129102067798, 48.88780421632937], [2.34494835816422, 48.88775224484225], [2.344760815805338, 48.887697498324606], [2.344580072651079, 48.88764552537722], [2.3443925324161112, 48.88759077918417], [2.344374074580047, 48.88759616041355], [2.344311109007229, 48.88772082741959], [2.344247675411518, 48.88784657370661], [2.344184710596861, 48.88797124062527], [2.344121275027278, 48.88809698680916], [2.344058309595872, 48.88822165453218], [2.343994873427309, 48.88834739972121], [2.343931907390474, 48.88847206734932], [2.343868470600164, 48.88859781334195], [2.343805503969322, 48.888722479975904], [2.343742066568688, 48.8888482258729], [2.343720089313579, 48.888852120908915], [2.343543677701377, 48.888749162249475], [2.343386354365202, 48.88865689125989], [2.343209945438002, 48.88855393209795], [2.343052623294406, 48.888461659754235], [2.343044150152797, 48.88845939462842], [2.342832966681028, 48.888453355121776], [2.342644190923257, 48.88844788522646], [2.342455413841454, 48.888442415025985], [2.342244230506942, 48.88843637448094], [2.342055453508889, 48.88843090364987], [2.341844270267364, 48.88842486239939], [2.341831343399141, 48.88843768048798], [2.341911069319778, 48.8885492421311], [2.341997826202233, 48.88867480348243], [2.342077552831255, 48.88878636588982], [2.342164310510241, 48.88891192709338], [2.342244039222734, 48.88902348937337], [2.342330796334552, 48.8891490504217], [2.342410525766821, 48.88926061256671], [2.342515027172022, 48.889398980162596], [2.342594756029334, 48.889510541252804], [2.3426992584255872, 48.88964890865642], [2.342778989412685, 48.889760470505294], [2.3427803236732743, 48.889783772145535], [2.342809867421248, 48.88979103356883], [2.34298326455712, 48.88975055501184], [2.343179737936417, 48.88970383196795], [2.343353134494266, 48.889663352872105], [2.343496566971007, 48.88962924194273], [2.343510924753761, 48.88963142688041]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 2, "roussel_fabien": 36.0, "nb_emargement": 1279.0, "nb_procuration": 87.0, "nb_vote_blanc": 13.0, "jadot_yannick": 144.0, "le_pen_marine": 55.0, "nb_exprime": 1264.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1572.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1282, "quartier_bv": "70", "geo_point_2d": [48.88887634675504, 2.3442277733251737], "melenchon_jean_luc": 417.0, "poutou_philippe": 8.0, "macron_emmanuel": 446.0}, "geometry": {"type": "Point", "coordinates": [2.3442277733251737, 48.88887634675504]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d0e5cc0f05432f19876574f36cd783651a184050", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 35, "zemmour_eric": 58.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-25", "geo_shape": {"coordinates": [[[2.364678733602595, 48.884365612276234], [2.3646718590970552, 48.884307963982515], [2.364585018365185, 48.88418183021186], [2.364501991815461, 48.88405952525942], [2.364415151909319, 48.88393339133703], [2.364332126154634, 48.88381108623918], [2.364249100789934, 48.88368878107013], [2.364162262114553, 48.88356264692188], [2.364079237544877, 48.8834403416074], [2.363992398331634, 48.883314207300195], [2.363909374556974, 48.883191901840334], [2.363822537532989, 48.88306576738864], [2.36373951455333, 48.88294346178336], [2.363652678355025, 48.88281732718002], [2.363569656170359, 48.88269502142934], [2.36348282079772, 48.882568886674306], [2.363463585010253, 48.88256481746513], [2.36329109787328, 48.88263051807647], [2.363115677898291, 48.88269693938669], [2.362943189884692, 48.882762639488945], [2.362767767668478, 48.882829059374885], [2.362595278767452, 48.882894759867305], [2.362419857025912, 48.882961179242805], [2.362247367259267, 48.8830268783268], [2.362071944629059, 48.883093297184615], [2.361899453974874, 48.88315899665875], [2.361724030455893, 48.88322541499879], [2.361704014378743, 48.88321980349811], [2.3616655297668, 48.883118598313], [2.361626231790947, 48.88299587772284], [2.361587747495645, 48.88289467249214], [2.3615655468356, 48.88282534445258], [2.361560381218888, 48.88281958008734], [2.361505560878717, 48.88282671799846], [2.361333628137338, 48.88285005226126], [2.361160741744874, 48.8828729683969], [2.360988808696197, 48.88289630216357], [2.360815921987522, 48.88291921869964], [2.360643987268098, 48.88294255196283], [2.360471100265189, 48.88296546710076], [2.360467019935146, 48.882965608982914], [2.36026350468302, 48.88295243291893], [2.360052845345406, 48.88293860587941], [2.359849328940151, 48.88292542910377], [2.3596386698105842, 48.88291160223443], [2.359435154979212, 48.88289842476176], [2.359224496079917, 48.882884596264056], [2.359210396872115, 48.88289673729031], [2.359279665015311, 48.883017065911694], [2.359344473242294, 48.88312928834414], [2.359413742004505, 48.88324961686252], [2.359478550798761, 48.88336184009794], [2.359479442017444, 48.883364881898935], [2.35948359091939, 48.88348156410981], [2.359486839700701, 48.88360269226946], [2.359490988638168, 48.883719374454884], [2.359494237451522, 48.88384050258812], [2.359498385060931, 48.88395718474074], [2.359501635269909, 48.88407831285491], [2.359488149400053, 48.884087464219235], [2.359269136012589, 48.88408904430183], [2.359065825810394, 48.88409067207489], [2.358862515606461, 48.88409229860344], [2.358643502179691, 48.88409387754165], [2.358613461350347, 48.88408388246199], [2.358601550384985, 48.88408948711963], [2.358581948124179, 48.88422409426792], [2.358566709362223, 48.88433867155859], [2.358550752753721, 48.88438631250834], [2.358552719314868, 48.88438718460042], [2.358598313330682, 48.884390163718216], [2.358747677631789, 48.8843986782231], [2.358948829922029, 48.884411820783924], [2.3589501780371602, 48.88441186487442], [2.359099542458039, 48.88442037894024], [2.359210983620574, 48.884420356687954], [2.359296177397223, 48.88441931163682], [2.359313937261781, 48.884431427089865], [2.359370664773249, 48.88442904434109], [2.359479288386107, 48.88442771173112], [2.359676741936366, 48.88442650069219], [2.359870560672769, 48.884424122351945], [2.360068012847774, 48.8844229097612], [2.360261831552837, 48.88442053078761], [2.360459285068702, 48.88441931755888], [2.360653103731475, 48.88441693885115], [2.36085055586101, 48.884415724969884], [2.361044374503673, 48.88441334472948], [2.361241826610454, 48.88441213020296], [2.361435646574312, 48.884409750235704], [2.361633098658337, 48.88440853506392], [2.36182691723846, 48.88440615355674], [2.362024369299612, 48.88440493773969], [2.362218189201025, 48.88440255650564], [2.362415641239501, 48.884401340043354], [2.362609459756944, 48.88439895726938], [2.362806911772629, 48.88439774016184], [2.363000731611359, 48.884395357661], [2.363198183604247, 48.88439413990819], [2.363392002059174, 48.88439175586747], [2.363589454029253, 48.884390537469386], [2.363783272441768, 48.884388153694545], [2.363980725752622, 48.884386934658444], [2.364174544144896, 48.88438454935093], [2.364175293018371, 48.88438453084467], [2.364310650296762, 48.884378775330475], [2.364504468632477, 48.88437639038813], [2.364639824489734, 48.88437063449457], [2.364678733602595, 48.884365612276234]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 25, "roussel_fabien": 17.0, "nb_emargement": 1077.0, "nb_procuration": 57.0, "nb_vote_blanc": 16.0, "jadot_yannick": 91.0, "le_pen_marine": 55.0, "nb_exprime": 1055.0, "nb_vote_nul": 6.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1352.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1077, "quartier_bv": "37", "geo_point_2d": [48.883689522799145, 2.361758660315011], "melenchon_jean_luc": 456.0, "poutou_philippe": 8.0, "macron_emmanuel": 276.0}, "geometry": {"type": "Point", "coordinates": [2.361758660315011, 48.883689522799145]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1def443a263b8afbb4cbac95e2ca33182006bec6", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 35, "zemmour_eric": 47.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-12", "geo_shape": {"coordinates": [[[2.387458159729707, 48.874678963932524], [2.387493632157769, 48.87467402104115], [2.387647299684778, 48.87468293719713], [2.387822409134923, 48.874692344129194], [2.388036499649985, 48.87470476500436], [2.388211607880462, 48.87471417135999], [2.388214918147103, 48.87471464154188], [2.3883776490263022, 48.874748817682224], [2.388581409122945, 48.87479587297463], [2.388584025419711, 48.87479669214025], [2.388733623102882, 48.87486421183231], [2.3888695604743813, 48.87491912848872], [2.388891679529742, 48.87492826351818], [2.388929561953986, 48.874890014018014], [2.389002291403049, 48.87479482843232], [2.389082897888979, 48.874689333470755], [2.389155626777606, 48.8745941477746], [2.389236232642402, 48.874488652690616], [2.389308960970598, 48.874393466883966], [2.3893895662037252, 48.874287972576845], [2.389389221582486, 48.87427945593007], [2.389272500941784, 48.874145005485154], [2.389172744709019, 48.87398329903262], [2.389175118534561, 48.87397398325674], [2.389314841312804, 48.87386879600864], [2.38945322376699, 48.87376461800127], [2.389592945422088, 48.873659430408615], [2.389731326763807, 48.873555252059994], [2.389871047295566, 48.87345006412278], [2.3900094275248263, 48.873345885432904], [2.390021476652025, 48.873319483026805], [2.390016051243928, 48.87330125555449], [2.389995284314466, 48.873291259749756], [2.389870131601706, 48.87318966084443], [2.389735458181628, 48.87308767061184], [2.389610306454306, 48.872986072315406], [2.3894756340693633, 48.87288408177167], [2.389428860111511, 48.872868968202916], [2.389425719064728, 48.872867213767336], [2.389386315993849, 48.87285123664563], [2.389384119579635, 48.872851357643576], [2.389354263007398, 48.87288408141145], [2.389165951612254, 48.87289882299086], [2.388957645898881, 48.87291512957684], [2.388769334279242, 48.8729298705319], [2.388561028306885, 48.87294617732653], [2.38837271646276, 48.87296091765722], [2.388164408889445, 48.87297722285498], [2.387976098184141, 48.87299196256827], [2.387767790362521, 48.87300826707539], [2.387579479432751, 48.87302300616433], [2.387371171352258, 48.87303931088006], [2.387182858834731, 48.87305404933765], [2.386974551879822, 48.87307035247045], [2.386786239137847, 48.8730850903037], [2.386577931934664, 48.87310139274582], [2.386389618957554, 48.87311613085404], [2.386181310142904, 48.87313243259848], [2.385992998315256, 48.87314716919002], [2.385982994726702, 48.87315138521944], [2.385871462983917, 48.87327089491487], [2.38576069017509, 48.87338959089544], [2.385649157412183, 48.87350910035795], [2.385538383590275, 48.873627796107165], [2.385426849807132, 48.87374730533675], [2.385316074972029, 48.87386600085463], [2.385275783236315, 48.873902142334735], [2.385292949170311, 48.873911762529175], [2.385378257120701, 48.87395001217685], [2.385471960569157, 48.873997880970826], [2.385477740216804, 48.874003173544416], [2.385497362124774, 48.874009635264834], [2.385567173331281, 48.87404529787605], [2.385740925055918, 48.87413043021279], [2.385904439462411, 48.874213961117135], [2.386078192300929, 48.87429909295135], [2.386241709141118, 48.87438262338921], [2.386415463093523, 48.87446775472088], [2.386568361371625, 48.874523050550366], [2.386570136016959, 48.87452378720536], [2.386739059277842, 48.87458250145823], [2.3868919595996623, 48.87463779687565], [2.386896988379058, 48.874638791213954], [2.387031893845771, 48.87464748705767], [2.387245983987933, 48.87465990934712], [2.387380889567606, 48.874668604797364], [2.387441311004044, 48.87467211023234], [2.387458159729707, 48.874678963932524]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 12, "roussel_fabien": 14.0, "nb_emargement": 1097.0, "nb_procuration": 84.0, "nb_vote_blanc": 10.0, "jadot_yannick": 118.0, "le_pen_marine": 35.0, "nb_exprime": 1082.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1324.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1097, "quartier_bv": "77", "geo_point_2d": [48.87379835037492, 2.387742322240302], "melenchon_jean_luc": 514.0, "poutou_philippe": 12.0, "macron_emmanuel": 254.0}, "geometry": {"type": "Point", "coordinates": [2.387742322240302, 48.87379835037492]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6ee16baf3ed6d28e38b0f80933a5c40884696f2a", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 69, "zemmour_eric": 102.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-34", "geo_shape": {"coordinates": [[[2.402325570533197, 48.84108872345737], [2.402328122358071, 48.84111309624972], [2.4023224918355393, 48.84123754931406], [2.4023140944788253, 48.841382752940284], [2.402308465256141, 48.84150720598069], [2.402300067816804, 48.84165240957086], [2.4022944371690222, 48.841776862573774], [2.402286041009641, 48.84192206613468], [2.402280410299234, 48.84204651910684], [2.402272012694944, 48.8421917226249], [2.402266383284403, 48.84231617557312], [2.402266386035122, 48.842316767364586], [2.402273769061166, 48.8424472732428], [2.402280630511698, 48.8425732428354], [2.402288013609843, 48.84270374868277], [2.40229487512857, 48.84282971824559], [2.402302258298614, 48.842960224062054], [2.402309119875221, 48.843086194494404], [2.402316503117267, 48.84321670028001], [2.402323364772383, 48.84334266978329], [2.402340030395678, 48.84335111167149], [2.402541756207965, 48.84332054376326], [2.402742353534078, 48.84329009759001], [2.402944078884644, 48.843259528102415], [2.403144675740887, 48.84322908125287], [2.4033464006089122, 48.843198511984504], [2.403546996995279, 48.84316806445869], [2.403748721401449, 48.84313749361096], [2.403949317317929, 48.84310704540888], [2.404151041241655, 48.84307647478042], [2.404351636688241, 48.84304602590207], [2.404553360150082, 48.84301545369421], [2.404753955116492, 48.84298500503887], [2.4047825170987522, 48.842992178329204], [2.404804592557203, 48.84298259039234], [2.404805257147907, 48.84298250106508], [2.405001639254527, 48.842955829920434], [2.405258752985956, 48.84292561924268], [2.405274481330577, 48.84293264317327], [2.405317283257316, 48.843068570780844], [2.405381200626783, 48.84322951010991], [2.405404692608243, 48.843233107386375], [2.405531961653227, 48.84313582416198], [2.405657062685299, 48.84303994741217], [2.405784330777286, 48.8429426648018], [2.405909430881365, 48.84284678777146], [2.406036698040872, 48.84274950397646], [2.406161797217064, 48.84265362666564], [2.406289063433845, 48.84255634258532], [2.406414161682258, 48.842460464994005], [2.406541426945978, 48.84236318152766], [2.406666524266522, 48.84226730365586], [2.406793788597874, 48.842170019004925], [2.406918884990453, 48.842074140852645], [2.407046148379103, 48.84197685591637], [2.407171243833699, 48.84188097838293], [2.407298506279551, 48.84178369316138], [2.407423600816532, 48.84168781444809], [2.407550862319799, 48.841590528941275], [2.407675955928837, 48.84149464994753], [2.407717141192955, 48.841487206623434], [2.407727953140697, 48.84146811731033], [2.407709242091887, 48.84142562531536], [2.407697183540188, 48.841419167574365], [2.407514919372638, 48.84141008712464], [2.407336067311994, 48.84139990360024], [2.407153801922585, 48.841390821694105], [2.40697495136098, 48.84138063763636], [2.406792686091634, 48.84137155607922], [2.406613834304333, 48.84136137147463], [2.406431570527655, 48.84135228937387], [2.406252718887279, 48.841342103329914], [2.406070453878539, 48.84133302067207], [2.405891603726977, 48.84132283499414], [2.40589042952293, 48.84132280937668], [2.405715540580272, 48.84132407035986], [2.405539535664585, 48.84132653068246], [2.405364648073684, 48.84132779026012], [2.405188643128874, 48.841330250066434], [2.405013755517016, 48.84133150913113], [2.40483774918072, 48.84133396841442], [2.404824216173789, 48.841327083944506], [2.404785313667896, 48.841220515122174], [2.4047445799558282, 48.84109952313794], [2.404705679145075, 48.84099295427477], [2.404675137688597, 48.84090223502532], [2.4046513722177663, 48.8408806895196], [2.404609671074382, 48.84089309998256], [2.4044216552232482, 48.840908711358914], [2.404219848992787, 48.84092553714459], [2.404031832897601, 48.84094114880716], [2.403830027788353, 48.84095797304223], [2.403642011459403, 48.84097358409166], [2.403440206098741, 48.8409904076686], [2.403252189536036, 48.84100601810489], [2.403050383923971, 48.84102284102377], [2.402862367127517, 48.841038450846916], [2.402660559901596, 48.841055273100864], [2.402472542871403, 48.841070882310895], [2.402337303558284, 48.8410821555992], [2.402325570533197, 48.84108872345737]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 34, "roussel_fabien": 18.0, "nb_emargement": 1179.0, "nb_procuration": 67.0, "nb_vote_blanc": 14.0, "jadot_yannick": 95.0, "le_pen_marine": 76.0, "nb_exprime": 1159.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1562.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1179, "quartier_bv": "45", "geo_point_2d": [48.84206631602654, 2.4044048537732916], "melenchon_jean_luc": 322.0, "poutou_philippe": 7.0, "macron_emmanuel": 420.0}, "geometry": {"type": "Point", "coordinates": [2.4044048537732916, 48.84206631602654]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1298d4c44e01519765d6a68c3279da9bfc96c2ab", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 72, "zemmour_eric": 84.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "17-31", "geo_shape": {"coordinates": [[[2.322863239369851, 48.893613150533135], [2.32288019988891, 48.893624448413284], [2.322940644231892, 48.893637649605935], [2.322979612307059, 48.893660204626954], [2.323117064239077, 48.89373550949793], [2.323255325058803, 48.893811257644856], [2.323392777788372, 48.89388656218901], [2.323531039410245, 48.89396231000717], [2.323668492937371, 48.89403761422447], [2.323806755361595, 48.894113361713856], [2.323944209686279, 48.89418866560432], [2.324082471548914, 48.89426441275728], [2.324219926671158, 48.89433971632087], [2.324358190699793, 48.89441546315274], [2.324371312798796, 48.894417057042496], [2.324538382189509, 48.89437946172109], [2.324704930170974, 48.894341982836316], [2.32487200045539, 48.89430438615535], [2.325038547944784, 48.894266907703305], [2.325055227052096, 48.89426587755705], [2.325061604119401, 48.894255089246904], [2.325102058961942, 48.89414127588504], [2.325142907093752, 48.89402635944684], [2.325183362932923, 48.893912546940726], [2.325224210705835, 48.8937976304508], [2.325264666189657, 48.8936838178935], [2.325305513603571, 48.893568901351856], [2.325316487182173, 48.89356208964806], [2.325497039093087, 48.893541677672296], [2.325676316489969, 48.893521408434914], [2.325856866754913, 48.89350099590817], [2.326036143871734, 48.89348072613137], [2.326216695218254, 48.89346031306904], [2.326395972043271, 48.893440043652035], [2.326576523119268, 48.89341962914721], [2.326755799664116, 48.89339935919076], [2.326936350457943, 48.89337894414267], [2.327115626722615, 48.8933586736468], [2.327296177234366, 48.89333825805542], [2.327475453218754, 48.89331798702014], [2.3275287274215373, 48.893310245347855], [2.327527770630257, 48.89329836710474], [2.327494494840969, 48.89320001995877], [2.327455204193698, 48.89308395201245], [2.327465192460444, 48.893066174518054], [2.327433723865451, 48.89304301915772], [2.327394432108318, 48.89292695116716], [2.327361436780293, 48.89282751914012], [2.327353764718052, 48.8928085335836], [2.327305374028202, 48.89281582776927], [2.3271198987807082, 48.89277747725089], [2.326935544633056, 48.89273935937343], [2.326750068554937, 48.8927010091712], [2.3265657149487913, 48.89266289072169], [2.326380239427111, 48.892624539044725], [2.326195886362583, 48.89258642002322], [2.326010412737781, 48.89254806867774], [2.325826060226413, 48.892509948184966], [2.325640585782629, 48.892471596256335], [2.325456233801144, 48.89243347609084], [2.325270759902286, 48.892395123586695], [2.325086409837679, 48.89235700195768], [2.324900936483651, 48.892318648878046], [2.324716585585128, 48.892280527568595], [2.324531112775935, 48.89224217391354], [2.324346762430622, 48.89220405113284], [2.324335111631775, 48.89220515181893], [2.324245963411123, 48.892244379144785], [2.324157015333782, 48.89228351760072], [2.324145741343329, 48.89228469234108], [2.323967994863128, 48.892251619985856], [2.323783905579756, 48.89221736760553], [2.323606160911228, 48.892184295618144], [2.323422072104024, 48.892150042679496], [2.323244326543057, 48.89211696924603], [2.323060238211929, 48.89208271574901], [2.322882493098946, 48.89204964267574], [2.322698405255594, 48.89201538772113], [2.32252066060229, 48.891982314108745], [2.322336573223328, 48.89194805949508], [2.322328309909536, 48.891952540833955], [2.322340414193456, 48.89197789835869], [2.322441518996627, 48.8921003856915], [2.322543850124421, 48.89222436104861], [2.322644955884859, 48.89234684818217], [2.322747289356834, 48.89247082244603], [2.322848396062754, 48.892593310279544], [2.322950730503535, 48.89271728434169], [2.323051836814536, 48.89283977106896], [2.323154172212441, 48.89296374582863], [2.323255280844451, 48.893086232364304], [2.323357617222876, 48.89321020602299], [2.323458725436596, 48.893332693250905], [2.323561062783862, 48.89345666670785], [2.323550316243148, 48.89346992229116], [2.323494347356696, 48.89347327086385], [2.323460186460876, 48.89347531449222], [2.3234128230200772, 48.89347683205684], [2.32340981446165, 48.89348468773951], [2.323273754670732, 48.89351142744157], [2.323021896760275, 48.893560924508044], [2.322885835207187, 48.89358766375979], [2.322883460611163, 48.89358829604743], [2.322863239369851, 48.893613150533135]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 31, "roussel_fabien": 20.0, "nb_emargement": 1176.0, "nb_procuration": 57.0, "nb_vote_blanc": 12.0, "jadot_yannick": 108.0, "le_pen_marine": 61.0, "nb_exprime": 1160.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1463.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1176, "quartier_bv": "68", "geo_point_2d": [48.893105343631525, 2.324736718117036], "melenchon_jean_luc": 320.0, "poutou_philippe": 10.0, "macron_emmanuel": 431.0}, "geometry": {"type": "Point", "coordinates": [2.324736718117036, 48.893105343631525]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "55af416d95ce4ffc8afbdbc272e902b30c805127", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 155, "zemmour_eric": 242.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "8-16", "geo_shape": {"coordinates": [[[2.303172181186421, 48.879143622533704], [2.303199066352815, 48.87909100049399], [2.303361227561886, 48.87901151557407], [2.303525043412297, 48.8789259263601], [2.303687204973229, 48.878846440994614], [2.3038510197566913, 48.87876085222103], [2.304013178942815, 48.87868136639422], [2.30417699268328, 48.878595776262486], [2.304339150857935, 48.87851628998224], [2.304502963531574, 48.878430700290906], [2.304665122058092, 48.87835121356511], [2.304828933688831, 48.87826562251566], [2.304991089840462, 48.87818613532853], [2.305154900404295, 48.878100544719516], [2.305317055544574, 48.878021057078946], [2.305468180177782, 48.87794836897143], [2.305630334366145, 48.877868880895534], [2.305781458120668, 48.87779619238254], [2.305943611357117, 48.877716703871336], [2.306094734220773, 48.87764401585204], [2.306256886505314, 48.8775645269056], [2.306408008502175, 48.87749183758156], [2.306570159834808, 48.87741234819979], [2.306721280941022, 48.87733965936953], [2.3067238287030483, 48.877338064307956], [2.306853496718246, 48.87723492446387], [2.306965057526963, 48.87714436841881], [2.30707661658435, 48.877053812254495], [2.307206283193242, 48.87695067200168], [2.307317842779717, 48.87686011560456], [2.307447508428687, 48.87675697507237], [2.307559067180862, 48.876666418434496], [2.30767329383278, 48.87656129702928], [2.307784851773263, 48.87647074016491], [2.307844366500813, 48.876415969181046], [2.30786283216432, 48.876399832979665], [2.307866309971385, 48.876386830653665], [2.307921022322351, 48.87633647999475], [2.3079618996905342, 48.87629412719657], [2.307967429472824, 48.87628327895563], [2.307899080184074, 48.876249169373295], [2.307824505165025, 48.876142857149915], [2.307751945630791, 48.876037365029575], [2.307677371215331, 48.87593105269415], [2.30760481227417, 48.875825560464406], [2.307530239825649, 48.87571924802477], [2.307457681477552, 48.875613755685556], [2.307383108269246, 48.87550744312599], [2.307310550514209, 48.87540195067734], [2.3073043738442, 48.875397670049665], [2.307093325980116, 48.87532602217384], [2.306887209168623, 48.87525465698269], [2.306676162457878, 48.87518300836207], [2.306470048135183, 48.87511164335061], [2.306463019139403, 48.87511066101758], [2.306282941945983, 48.87511755425451], [2.306104013368492, 48.87512409054538], [2.305923937444573, 48.875130983250074], [2.3057450087759, 48.875137519004234], [2.305564931394708, 48.87514441116091], [2.305386002634859, 48.87515094637841], [2.305205926522981, 48.8751578380029], [2.305026996308623, 48.87516437267574], [2.304991339427038, 48.8751591059681], [2.304981509699149, 48.87518389228278], [2.304915732946423, 48.87531688706876], [2.304839194444815, 48.87546488685899], [2.3048245363461453, 48.87547090196174], [2.304687479850299, 48.875459173570256], [2.304550536708918, 48.875447129112096], [2.304413480349337, 48.875435399507396], [2.304276538697175, 48.87542335474348], [2.304267300793774, 48.87542473100474], [2.304093880101372, 48.875499155146414], [2.303922636027169, 48.87557309075885], [2.3037492143483, 48.875647514391225], [2.303577970660415, 48.875721449508575], [2.303406725123005, 48.875795384368075], [2.303233301966798, 48.87586980723809], [2.303062055452348, 48.87594374159458], [2.302888631309668, 48.87601816395522], [2.302717383818176, 48.87609209780873], [2.302543958676978, 48.876166520559316], [2.30237271020844, 48.876240453909816], [2.302199284092805, 48.87631487525184], [2.302028036010593, 48.87638880810727], [2.301854608908379, 48.87646322893991], [2.301683358485851, 48.876537161284396], [2.301509930397156, 48.87661158160769], [2.301338678997579, 48.87668551344917], [2.301165249922402, 48.87675993326308], [2.300993997545773, 48.87683386460155], [2.300820567484112, 48.87690828390615], [2.300649315481642, 48.87698221564882], [2.300475884433594, 48.877056634444024], [2.300469836828202, 48.877065510660636], [2.30049841776568, 48.87719080007749], [2.300526646855574, 48.87731559727669], [2.300555228054874, 48.8774408875508], [2.300583457416442, 48.87756568470834], [2.300612040265129, 48.87769097404915], [2.3006402698862, 48.8778157720642], [2.300668851645491, 48.87794106135509], [2.30069708155032, 48.87806585842916], [2.3007256635713462, 48.87819114857734], [2.300753895111386, 48.87831594561764], [2.3007824774184042, 48.878441234824535], [2.30081070785464, 48.87856603271442], [2.300782102012157, 48.878629761824875], [2.300794989236412, 48.878635706176226], [2.300872565617091, 48.878653136951534], [2.300967465356341, 48.878674034154706], [2.30095939703278, 48.878697428292035], [2.300995978021257, 48.87868072623937], [2.301000684795902, 48.87868195164026], [2.30101524815268, 48.878686652076674], [2.3010264779992, 48.878688181767124], [2.301115699238042, 48.87870782799256], [2.301304283843535, 48.87874894393638], [2.301488405449906, 48.87878948674173], [2.301676990645416, 48.87883060209542], [2.301861112830501, 48.87887114432454], [2.30204969861592, 48.87891225908806], [2.302233821379816, 48.87895280074097], [2.302422407755141, 48.87899391491435], [2.302606531097941, 48.87903445599105], [2.3027951180630613, 48.87907556957425], [2.302924291495479, 48.87910401149841], [2.302969887332706, 48.87911423804735], [2.302972229599636, 48.879114054729975], [2.303027178747107, 48.87912615327626], [2.303151143943973, 48.87915203299561], [2.303172181186421, 48.879143622533704]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 16, "roussel_fabien": 4.0, "nb_emargement": 1280.0, "nb_procuration": 87.0, "nb_vote_blanc": 7.0, "jadot_yannick": 38.0, "le_pen_marine": 68.0, "nb_exprime": 1271.0, "nb_vote_nul": 4.0, "arr_bv": "08", "arthaud_nathalie": 3, "nb_inscrit": 1626.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1282, "quartier_bv": "30", "geo_point_2d": [48.877049266555886, 2.304075629116256], "melenchon_jean_luc": 111.0, "poutou_philippe": 2.0, "macron_emmanuel": 617.0}, "geometry": {"type": "Point", "coordinates": [2.304075629116256, 48.877049266555886]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b999b3a6db04306556b34ee06f6cc982f0c00800", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 35, "zemmour_eric": 54.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-29", "geo_shape": {"coordinates": [[[2.374993917508826, 48.868335179290874], [2.375017295407286, 48.86834531011458], [2.375207711146143, 48.868398469539194], [2.375392340524776, 48.868450702718114], [2.375576970273666, 48.86850293560975], [2.375767388533895, 48.86855609324423], [2.375952019032278, 48.86860832555237], [2.376142436697288, 48.868661482578034], [2.376158967217239, 48.868658309532606], [2.376281620352286, 48.86854109034495], [2.3764037914518212, 48.86842389279272], [2.376526442110082, 48.86830667422151], [2.376648612109045, 48.86818947639458], [2.376771263038408, 48.86807225665545], [2.376893431936809, 48.86795505855383], [2.3770160817633452, 48.86783783853897], [2.377138248198139, 48.86772064015549], [2.37715449865008, 48.86771737378164], [2.3773591388232402, 48.86777081248247], [2.377554613289454, 48.86782252499454], [2.377750089507025, 48.86787423719212], [2.3779547309181153, 48.867927673967756], [2.378150207927344, 48.86797938550692], [2.378354850161938, 48.86803282159338], [2.378365911250734, 48.868040829203174], [2.378382613146495, 48.868040173991936], [2.378382890358249, 48.86804024827814], [2.378553954533708, 48.86808781410737], [2.378725961327938, 48.8681351246722], [2.378897026117492, 48.86818269090629], [2.37906903217351, 48.86823000096697], [2.379240097598501, 48.86827756580736], [2.379412105642537, 48.868324875378036], [2.379429548830646, 48.86832059053381], [2.379510504554264, 48.86821357788319], [2.37958794625229, 48.86811199964855], [2.379668901326351, 48.86800498687063], [2.379746342416125, 48.867903407615074], [2.379823783193178, 48.86780182919939], [2.379904737300848, 48.867694816231925], [2.379900738727768, 48.86768361492533], [2.379694658300174, 48.86758128050921], [2.379488120138131, 48.8674777292427], [2.379484896166113, 48.867465710838], [2.379593593175509, 48.86735399982962], [2.379700713492119, 48.867243578289866], [2.379809409575114, 48.867131867063065], [2.379916527625055, 48.86702144440164], [2.3800252227818612, 48.8669097329564], [2.380132341270015, 48.86679931098601], [2.380241035500541, 48.866687599322354], [2.38034815308518, 48.86657717623736], [2.380358803117511, 48.86656312701826], [2.3803505196443853, 48.8665553965699], [2.3801478840927413, 48.86650353365388], [2.379950612945314, 48.86645317040209], [2.379747978189441, 48.86640130680424], [2.379550707804934, 48.86635094378795], [2.379348073844837, 48.866299079508266], [2.379150805607996, 48.866248714935985], [2.379149594208571, 48.866248446943814], [2.378939483028334, 48.866209127653754], [2.3787307744816832, 48.8661702982188], [2.3785206639434833, 48.86613097729145], [2.378311956022004, 48.86609214712339], [2.378103247048646, 48.866053316583], [2.377893137445187, 48.86601399544911], [2.377892017094838, 48.866013752199585], [2.377722009590485, 48.865971353009236], [2.377554338488324, 48.86592989564427], [2.377386667663881, 48.86588843714349], [2.377216659605925, 48.865846038122754], [2.377193590851596, 48.86583872694737], [2.377179714062448, 48.86584885146783], [2.377157594821499, 48.865874086095474], [2.377062164962423, 48.86598327400317], [2.376970264090741, 48.86608812019049], [2.376874833457604, 48.86619730702843], [2.376782931831418, 48.866302153051606], [2.376687500402801, 48.86641134061835], [2.376595598021897, 48.86651618647742], [2.376500165808647, 48.86662537387369], [2.376408262683885, 48.866730218669325], [2.376408200482797, 48.86673029029253], [2.376329054831879, 48.86682252168381], [2.376233621498777, 48.8669317088373], [2.376154475243524, 48.86702393919706], [2.376059041175518, 48.867133126191504], [2.375979894294387, 48.86722535731834], [2.375884459491366, 48.86733454415365], [2.3758121932906793, 48.86741632472826], [2.375716757786408, 48.86752551141104], [2.375644492420683, 48.86760729187737], [2.375644420557062, 48.86760737334243], [2.375553462081565, 48.867707954066745], [2.37544647816825, 48.86782744425277], [2.375355520289465, 48.86792802481377], [2.375248535470147, 48.86804751479906], [2.375157575472632, 48.868148094283185], [2.375050589747199, 48.86826758406781], [2.37499310429378, 48.868331149600536], [2.374993917508826, 48.868335179290874]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 29, "roussel_fabien": 22.0, "nb_emargement": 1486.0, "nb_procuration": 102.0, "nb_vote_blanc": 14.0, "jadot_yannick": 144.0, "le_pen_marine": 48.0, "nb_exprime": 1467.0, "nb_vote_nul": 10.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1880.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1491, "quartier_bv": "41", "geo_point_2d": [48.867228077675335, 2.3777734181069783], "melenchon_jean_luc": 704.0, "poutou_philippe": 14.0, "macron_emmanuel": 388.0}, "geometry": {"type": "Point", "coordinates": [2.3777734181069783, 48.867228077675335]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a7a6a9a45c97047b772776aed610b2b8129eb424", "fields": {"lassalle_jean": 25.0, "pecresse_valerie": 47, "zemmour_eric": 86.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 24.0, "date_tour": "2022-04-10", "id_bvote": "13-37", "geo_shape": {"coordinates": [[[2.359619368839235, 48.8189556379889], [2.359692516639907, 48.81896370233635], [2.359883463294052, 48.81898951883447], [2.360076630250691, 48.81901554567186], [2.360267577284854, 48.81904136155542], [2.360460744636297, 48.81906738687176], [2.360651692050467, 48.81909320214072], [2.360844859785664, 48.81911922683537], [2.361035807579831, 48.81914504148977], [2.361228975698775, 48.81917106556266], [2.361419923872933, 48.81919687960246], [2.361613092375616, 48.81922290305362], [2.361804040929758, 48.81924871647884], [2.3619972098161712, 48.81927473930828], [2.361999740831153, 48.81927525466723], [2.362193566646817, 48.81932886827251], [2.362381987401592, 48.81938425149699], [2.362575814015333, 48.81943786447744], [2.36276423556996, 48.81949324709423], [2.362958062992965, 48.81954685855057], [2.363146485347438, 48.81960224055964], [2.363147096026908, 48.81960242099004], [2.363335797438432, 48.81966197460663], [2.363524219259256, 48.819717355108224], [2.363712921517431, 48.8197769081236], [2.36390134551591, 48.81983228803257], [2.364090048631807, 48.81989183954737], [2.364278472073266, 48.81994721974851], [2.36446717739771, 48.820006770669345], [2.364655601655025, 48.82006215027056], [2.364736249581307, 48.82008629898969], [2.364750924507155, 48.82006922398867], [2.364808031695835, 48.819994350034655], [2.364899177041049, 48.81987631844215], [2.364985123635222, 48.81976363115574], [2.365076268165327, 48.81964560030331], [2.365162215358295, 48.81953291287377], [2.36525335773341, 48.8194148809556], [2.365339304152434, 48.81930219427494], [2.365430447085203, 48.81918416220486], [2.365516392752285, 48.8190714744745], [2.365607533519042, 48.818953442238005], [2.3656934784122052, 48.81884075525658], [2.365784619736726, 48.8187227228681], [2.365870562515884, 48.81861003482977], [2.365961703025463, 48.818492003181454], [2.366047646403533, 48.81837931499993], [2.366138786119844, 48.818261282293136], [2.366224727362271, 48.81814859485334], [2.366315866274495, 48.81803056198738], [2.366401808126671, 48.817917873505124], [2.366492944862136, 48.81779984137209], [2.366578885951381, 48.81768715273947], [2.366670023255453, 48.81756911955518], [2.366755963570951, 48.81745643167152], [2.366847098709123, 48.81733839832082], [2.366933038272629, 48.81722570938747], [2.366942305240288, 48.81721219847784], [2.366909730562096, 48.817195883905384], [2.366746445628497, 48.817144187080416], [2.36657239427597, 48.81708942905722], [2.366409111382904, 48.8170377308746], [2.366235060729006, 48.81698297325454], [2.36607177714189, 48.816931274599106], [2.365897728570309, 48.816876515590735], [2.365734445640041, 48.81682481736909], [2.365560396416193, 48.81677005785724], [2.365397115526473, 48.816718358278], [2.365223067012191, 48.81666359826998], [2.364991837438283, 48.816590384800165], [2.364817791138647, 48.816535624203226], [2.364663698924908, 48.816486833352585], [2.364489651953563, 48.81643207226573], [2.364335560352842, 48.816383280987694], [2.364161514071709, 48.816328519418164], [2.364143644417468, 48.81632286170691], [2.364129806703859, 48.816318480074194], [2.363933544761028, 48.81625633480606], [2.363759500687579, 48.81620157265241], [2.363563239625952, 48.81613942676998], [2.363389194969866, 48.81608466406437], [2.363195524418112, 48.81608245633378], [2.36299716068661, 48.81608048680485], [2.362803490155982, 48.8160782793386], [2.36260512645518, 48.81607630915924], [2.362411455967764, 48.816074100158616], [2.362213092297675, 48.81607212932888], [2.362019421831287, 48.81606992059258], [2.361821058191918, 48.81606794911246], [2.361627386406972, 48.816065738834574], [2.361429022798333, 48.81606376670404], [2.361235352407243, 48.81606155579836], [2.361036988829347, 48.816059583017456], [2.360903349478931, 48.81605805751925], [2.360704985926905, 48.81605608418756], [2.360601562277572, 48.81605490248208], [2.360539658949148, 48.81605419638124], [2.360527122456578, 48.816065451664855], [2.360526371779884, 48.81608235515068], [2.360483395401587, 48.81620449083505], [2.360441274774837, 48.816329456929914], [2.360398297993581, 48.81645159255686], [2.3603561756015923, 48.81657655858706], [2.360313198417268, 48.816698694156635], [2.360271076983563, 48.816823660136734], [2.360228099396371, 48.8169457956489], [2.360185976197199, 48.81707076156433], [2.360142998207027, 48.817192897019126], [2.360100875966142, 48.817317862884394], [2.360074893815634, 48.8173940831616], [2.360031915287668, 48.817516219440705], [2.360031835957429, 48.817516469044264], [2.360026049014942, 48.81753601491563], [2.359983258731019, 48.817677525753176], [2.359944875414595, 48.81781559393271], [2.359902086042713, 48.817957104713344], [2.359863702305567, 48.81809517283256], [2.3598243892986472, 48.81822238851007], [2.359786005160399, 48.81836045657177], [2.359746691752876, 48.81848767309307], [2.359708307213621, 48.81862574109728], [2.359668994778405, 48.81875295757038], [2.359630609838141, 48.81889102551711], [2.359615087880348, 48.81894125105127], [2.359619368839235, 48.8189556379889]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 37, "roussel_fabien": 29.0, "nb_emargement": 1345.0, "nb_procuration": 54.0, "nb_vote_blanc": 22.0, "jadot_yannick": 70.0, "le_pen_marine": 105.0, "nb_exprime": 1318.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1786.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1345, "quartier_bv": "51", "geo_point_2d": [48.817866967134634, 2.3630837473569275], "melenchon_jean_luc": 568.0, "poutou_philippe": 11.0, "macron_emmanuel": 321.0}, "geometry": {"type": "Point", "coordinates": [2.3630837473569275, 48.817866967134634]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "98cba71fabafc1733fb1a1596687f3811ad03c0c", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 52, "zemmour_eric": 47.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "2-10", "geo_shape": {"coordinates": [[[2.347030400002883, 48.86567729401474], [2.347027669005305, 48.865696262474], [2.347051758842205, 48.86581024818223], [2.347074877020607, 48.86592073911743], [2.34707446392451, 48.865937601363996], [2.347082312366531, 48.86594581651969], [2.347090268411588, 48.86598384012088], [2.347120971200153, 48.86613427179795], [2.347152044430563, 48.866282787166064], [2.3471520992906703, 48.8662830869468], [2.347172680241169, 48.86640625641121], [2.347193372293642, 48.86653753764362], [2.347213953442353, 48.866660707072604], [2.347234647063037, 48.86679198827505], [2.347255557489555, 48.86692958313051], [2.347276249958758, 48.867060864286444], [2.347297161966329, 48.86719845910863], [2.347317854647182, 48.86732974022544], [2.34732263776545, 48.867372748603984], [2.347335547485745, 48.867385471857126], [2.347390429195616, 48.8673816575236], [2.347585311048046, 48.867338267258994], [2.347788659407546, 48.86729248739323], [2.347983540594689, 48.86724909647671], [2.348186888256138, 48.86720331593075], [2.348381768777986, 48.86715992436232], [2.34858511574138, 48.8671141431361], [2.348779995597927, 48.86707075091577], [2.348983341863258, 48.86702496900928], [2.349178221054497, 48.86698157613708], [2.349381566621759, 48.866935793550326], [2.34938169921403, 48.86693576459279], [2.349576577739737, 48.86689237106847], [2.349765113532337, 48.86685133502075], [2.34995999142292, 48.86680794086884], [2.350148527970952, 48.866766904221485], [2.350343405226301, 48.866723509442004], [2.350531939792491, 48.86668247307941], [2.350726816412506, 48.86663907767237], [2.350915350382302, 48.86659803980336], [2.351110226367174, 48.86655464376875], [2.351298761092377, 48.86651360530009], [2.3514936364419983, 48.86647020863788], [2.351682169196561, 48.86642916955475], [2.351877043910823, 48.86638577226494], [2.352065576046575, 48.86634473347405], [2.352260450125579, 48.86630133555668], [2.352448983028002, 48.86626029526682], [2.352534088752133, 48.86624257367389], [2.352529587978494, 48.86622191749063], [2.352485148814389, 48.86614268774798], [2.352425161458281, 48.8660315397959], [2.352353970277163, 48.865904614245856], [2.352293983463893, 48.86579346710344], [2.352222792938802, 48.86566654054882], [2.352162808042638, 48.86555539332411], [2.352091618151401, 48.86542846756347], [2.352031632457327, 48.86531731934244], [2.351991953570594, 48.865307679386085], [2.351933813018148, 48.86531505756649], [2.351694706021255, 48.86531861725501], [2.3514695617195303, 48.86532536115984], [2.351468054468949, 48.86532532871014], [2.351261831481893, 48.86531329661928], [2.351063801450438, 48.86530025726266], [2.350865771518118, 48.86528721757825], [2.350659547446639, 48.865275185341126], [2.350653188969106, 48.86527371099275], [2.350538381906231, 48.86522323559011], [2.350421069692675, 48.86517165827043], [2.350409671626334, 48.86517051359599], [2.350233315410871, 48.86520466577754], [2.350063273159482, 48.865238267413766], [2.34988691512448, 48.865272419075396], [2.349716872428516, 48.8653060202174], [2.34971554748096, 48.86530623515647], [2.349558723212733, 48.86532694654376], [2.349400317168768, 48.86534714279639], [2.349243492652072, 48.86536785376985], [2.3490850863614128, 48.8653880496045], [2.348928261585116, 48.86540876106345], [2.348769853684873, 48.86542895647274], [2.348768907154953, 48.86542910511028], [2.348579729258064, 48.865463516049324], [2.348390852326309, 48.86549847512961], [2.348201675279639, 48.86553288637567], [2.348012797842679, 48.86556784485716], [2.347823618942544, 48.86560225459681], [2.34763474100039, 48.86563721247947], [2.347445562950476, 48.86567162252611], [2.3472566845144, 48.8657065789107], [2.347248884165504, 48.865706493199575], [2.34717288073529, 48.865690601839724], [2.347087967247807, 48.865671481742865], [2.347030400002883, 48.86567729401474]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 10, "roussel_fabien": 18.0, "nb_emargement": 1125.0, "nb_procuration": 107.0, "nb_vote_blanc": 14.0, "jadot_yannick": 111.0, "le_pen_marine": 37.0, "nb_exprime": 1108.0, "nb_vote_nul": 3.0, "arr_bv": "02", "arthaud_nathalie": 3, "nb_inscrit": 1409.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1125, "quartier_bv": "08", "geo_point_2d": [48.86614790705705, 2.349528740189131], "melenchon_jean_luc": 309.0, "poutou_philippe": 5.0, "macron_emmanuel": 466.0}, "geometry": {"type": "Point", "coordinates": [2.349528740189131, 48.86614790705705]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e77fe5f5707dee56e87993616b3ce86f4566b0ac", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 40, "zemmour_eric": 113.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-25", "geo_shape": {"coordinates": [[[2.387454228794254, 48.88134607332557], [2.387433169397406, 48.88135537794015], [2.387337264041978, 48.881439155107564], [2.387217088555281, 48.88154432708537], [2.387096351366151, 48.88164979733411], [2.386976174917441, 48.88175496815067], [2.386855435388532, 48.881860438129294], [2.386735257967218, 48.88196560868393], [2.386614517462141, 48.88207107839939], [2.3864943390681113, 48.88217624869203], [2.386373597586755, 48.88228171814436], [2.386253418209502, 48.882386889074304], [2.386132677126002, 48.882492357371234], [2.386012496776114, 48.882597528039206], [2.385891753342173, 48.88270299696525], [2.385771572030345, 48.882808166471975], [2.385650827619993, 48.882913635134884], [2.385530645335513, 48.88301880437961], [2.385409899948844, 48.88312427277935], [2.385289718044652, 48.88322944266837], [2.38522399394302, 48.88328651820465], [2.385225961210087, 48.883300878858236], [2.385288241783694, 48.88331395738598], [2.3853591879124583, 48.88341625487193], [2.385451511965118, 48.883547324464075], [2.38552245736896, 48.88364962182461], [2.38561478224638, 48.88378069126302], [2.3856857282887702, 48.88388298850512], [2.385778055343736, 48.88401405869607], [2.385849002035496, 48.88411635492043], [2.385859174841352, 48.884121442426455], [2.386056597470961, 48.884142669077185], [2.386252460200761, 48.884164362248754], [2.386449883153387, 48.884185588250176], [2.386645746208336, 48.88420728077754], [2.386843169473481, 48.8842285070289], [2.387039032853676, 48.88425019891209], [2.387236456452311, 48.88427142361484], [2.387432318794248, 48.88429311484687], [2.38746144995788, 48.884296984396244], [2.387469253003431, 48.88427980673146], [2.387495445380316, 48.88421910945533], [2.387495483264947, 48.88421901881726], [2.387552479198104, 48.88408328829483], [2.387601275242448, 48.883965531979996], [2.387658270622333, 48.883829801375946], [2.387707064815787, 48.883712045883144], [2.387764059653189, 48.88357631429816], [2.387812854733493, 48.8834585587421], [2.387861649603595, 48.88334080225429], [2.387918643621216, 48.88320507144915], [2.387935987600483, 48.88319891699333], [2.387991882581961, 48.88321085979378], [2.388047871438282, 48.88322189472814], [2.388064972284742, 48.88321554205862], [2.388086151614875, 48.88316185081069], [2.388105333278897, 48.88311430343706], [2.388114264598141, 48.883108069986406], [2.388310504924108, 48.88306566227317], [2.388505440433237, 48.88302367745196], [2.388701680122641, 48.88298126909427], [2.388896615000498, 48.882939283632915], [2.389092854053331, 48.882896874630845], [2.389287786925909, 48.882854889421715], [2.389484025352714, 48.88281247887598], [2.389678958957465, 48.88277049303368], [2.389875196737146, 48.882728082742815], [2.390070129721146, 48.88268609536118], [2.390090641418031, 48.88268083087552], [2.390089906964945, 48.88266704675384], [2.390073328233179, 48.8825193000659], [2.390056665658911, 48.88236719389136], [2.390040087106275, 48.88221944805785], [2.390023424735569, 48.88206734093796], [2.390013209058936, 48.88205927768477], [2.389840447185444, 48.882030081132314], [2.389671355400868, 48.882001658473136], [2.389498593910074, 48.88197246142588], [2.38932950249926, 48.881944038282434], [2.389156741391273, 48.88191484074035], [2.388987651717552, 48.88188641711953], [2.388818560854427, 48.8818579941515], [2.38864580031834, 48.88182879586985], [2.388642183454967, 48.881827804328445], [2.388447842921344, 48.88175135371758], [2.388258735113137, 48.88167663644417], [2.388069627837094, 48.88160191976626], [2.387875288997483, 48.88152546731104], [2.387686182820392, 48.881450750017265], [2.387491846471418, 48.88137429693613], [2.387454228794254, 48.88134607332557]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 25, "roussel_fabien": 20.0, "nb_emargement": 1227.0, "nb_procuration": 71.0, "nb_vote_blanc": 13.0, "jadot_yannick": 117.0, "le_pen_marine": 50.0, "nb_exprime": 1210.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1622.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1226, "quartier_bv": "75", "geo_point_2d": [48.882816335152874, 2.38747501699791], "melenchon_jean_luc": 446.0, "poutou_philippe": 14.0, "macron_emmanuel": 362.0}, "geometry": {"type": "Point", "coordinates": [2.38747501699791, 48.882816335152874]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e37a61aaa4cfd0b3cfa2351690b386056b7703a3", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 125, "zemmour_eric": 99.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "15-90", "geo_shape": {"coordinates": [[[2.289483442303964, 48.845050655168535], [2.289510851378823, 48.84504068928371], [2.289646577267245, 48.844987782391705], [2.289800913571469, 48.84492208980713], [2.289965675451305, 48.84485786371011], [2.290120012318869, 48.84479217161365], [2.29028477340699, 48.84472794417039], [2.29043910812506, 48.84466225164653], [2.290439690439893, 48.844662016768105], [2.290604450710343, 48.84459778977639], [2.290831413739742, 48.844511480407775], [2.290832191441389, 48.84451120621416], [2.290996950751373, 48.844446978673204], [2.291153596113239, 48.84439601166035], [2.291318354662968, 48.844331783670114], [2.291474998001861, 48.844280816223105], [2.291639755791337, 48.844216587783635], [2.291813505734089, 48.84414880048905], [2.2919782626890592, 48.844084571575785], [2.292152011751411, 48.8440167837816], [2.292316767871875, 48.843952554394555], [2.292422557111957, 48.84391128042852], [2.292435597735612, 48.84390662958516], [2.292445277105986, 48.843899045809735], [2.292513236020345, 48.84387253146875], [2.292666318397216, 48.843811972128364], [2.292840065655854, 48.84374418331831], [2.292993147263772, 48.84368362445207], [2.293099971028516, 48.84364194588588], [2.293113894319446, 48.843639718582914], [2.293126384865119, 48.843633721657966], [2.293193307482345, 48.84360761091666], [2.293378816817856, 48.84353508819055], [2.293552562226708, 48.8434672983289], [2.293738069188191, 48.84339477592787], [2.293911813662012, 48.843326985535946], [2.294097319624179, 48.843254462568716], [2.29427106316297, 48.843186671646514], [2.29445656812582, 48.843114148113116], [2.29463031072958, 48.843046356660636], [2.294815814693217, 48.84297383256108], [2.294989556361845, 48.84290604057833], [2.295047376129512, 48.84288468586583], [2.295013365617513, 48.84284251554206], [2.294946985439282, 48.842770654266886], [2.294857895443827, 48.84268126531201], [2.294854672181347, 48.84267900598686], [2.29469495076254, 48.84259998936322], [2.294537271334581, 48.84252215283911], [2.294377550889937, 48.84244313488137], [2.294219871048048, 48.84236529791993], [2.294060151553013, 48.84228628042657], [2.293902474034339, 48.8422084421446], [2.293742755501285, 48.84212942421638], [2.293585077556501, 48.84205158639639], [2.293427401457242, 48.84197374747191], [2.293267684363647, 48.84189472889279], [2.293110007850569, 48.84181688953097], [2.292950291718847, 48.841737870516994], [2.292792617504478, 48.84166003163326], [2.292632902346827, 48.84158101128512], [2.292475227718636, 48.841503171964085], [2.292315513510645, 48.8414241520804], [2.292157841205554, 48.841346311438855], [2.291998127959426, 48.84126729112032], [2.291991049883198, 48.84126195194225], [2.291972182591213, 48.841256651810475], [2.291812469901305, 48.84117763123775], [2.291660139946901, 48.841099810748936], [2.291500428210686, 48.84102078974852], [2.291348100543018, 48.84094296885944], [2.291312609747343, 48.84094594507339], [2.291274317710208, 48.84096664744725], [2.2912964655148143, 48.841079386945054], [2.291316735880571, 48.841185910553676], [2.291338885232454, 48.84129865002949], [2.291359154407826, 48.841405173601956], [2.291356222657905, 48.84141195546725], [2.291238058766715, 48.84150824790816], [2.291115595050999, 48.84160738553315], [2.290997430259948, 48.84170367861879], [2.290874966989705, 48.841802815988174], [2.290756799960884, 48.841899107911914], [2.29063433577375, 48.8419982450176], [2.290637645656525, 48.84201154292834], [2.290795051151992, 48.8420768314551], [2.2909522503337962, 48.84214249088444], [2.291109656618829, 48.842207778989604], [2.291266856579691, 48.842273438897095], [2.291424263666621, 48.84233872568136], [2.291581464418674, 48.84240438516777], [2.291738872295166, 48.842469671530395], [2.291896073838616, 48.84253533059568], [2.2919004972633292, 48.842547527931785], [2.291836466618742, 48.84261857224545], [2.291790280352606, 48.842667036496756], [2.291775067298218, 48.84267304504949], [2.291783133675845, 48.84269511023993], [2.291779981529904, 48.842817779799425], [2.291776398281345, 48.842937278319404], [2.291773246105006, 48.84305994785211], [2.291769662824254, 48.84317944634596], [2.291766079539392, 48.843298943927564], [2.291762927304672, 48.843421614319574], [2.291758510329406, 48.843428090598536], [2.291617028000106, 48.84351369742471], [2.2914761287514462, 48.84359897746522], [2.291334644131908, 48.84368458393626], [2.291193743946871, 48.843769864530394], [2.291052259774348, 48.843855469763135], [2.290911358665258, 48.84394075001165], [2.290769872202481, 48.84402635488923], [2.290628970169331, 48.84411163479204], [2.290487484129098, 48.84419724022995], [2.290346579821697, 48.844282518879744], [2.290205092853616, 48.844368123970504], [2.290064188972427, 48.84445340318204], [2.289922701088948, 48.84453900702646], [2.289781794921043, 48.84462428588424], [2.289778968671554, 48.84462669739648], [2.289669010799033, 48.844763409365925], [2.289558653825405, 48.84489986792757], [2.289554861149484, 48.84490280072388], [2.28950424594411, 48.844926799224226], [2.289446203937765, 48.84495582332242], [2.28941997041149, 48.84496332291689], [2.289418655719552, 48.84497229888222], [2.289436185608921, 48.84499321794559], [2.2894415234360412, 48.845001285490945], [2.289483442303964, 48.845050655168535]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 90, "roussel_fabien": 24.0, "nb_emargement": 1163.0, "nb_procuration": 67.0, "nb_vote_blanc": 8.0, "jadot_yannick": 88.0, "le_pen_marine": 65.0, "nb_exprime": 1154.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1402.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1166, "quartier_bv": "60", "geo_point_2d": [48.842833795603006, 2.2923918424263388], "melenchon_jean_luc": 172.0, "poutou_philippe": 3.0, "macron_emmanuel": 527.0}, "geometry": {"type": "Point", "coordinates": [2.2923918424263388, 48.842833795603006]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "22f747d312f24826d42a008770cf76d44debe36a", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 148, "zemmour_eric": 212.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-66", "geo_shape": {"coordinates": [[[2.298116340505461, 48.87806936614475], [2.2980609092820092, 48.87808480384999], [2.297872851747132, 48.87811640998285], [2.2976866580329363, 48.87814770209377], [2.297498600043834, 48.87817930763693], [2.297312407243341, 48.878210599172], [2.297124348800022, 48.878242204125456], [2.2969381541864, 48.87827349506866], [2.29675009528887, 48.8783050994324], [2.2965639002134, 48.87833639069099], [2.29637584087381, 48.87836799356582], [2.296189645348637, 48.87839928424056], [2.296001586918282, 48.87843088653364], [2.295815390943414, 48.878462176624495], [2.295813577574767, 48.87846257245905], [2.29561952893266, 48.878515132184226], [2.295422254258125, 48.878568566550705], [2.295228204814018, 48.87862112653577], [2.29503092797308, 48.878674560244264], [2.294836879102466, 48.87872711959803], [2.294639601470838, 48.878780551757266], [2.294445550446962, 48.87883311046366], [2.294248273363528, 48.878886542880174], [2.294238075927538, 48.8788939625631], [2.294245149167899, 48.87890629102736], [2.29426384957379, 48.87893801032659], [2.294329135819946, 48.879048753020435], [2.29440938146821, 48.87918486963583], [2.294474668321088, 48.87929561312474], [2.294554914730071, 48.879431729612136], [2.294620202214046, 48.87954247209761], [2.294700449383759, 48.87967858845691], [2.294765737474579, 48.87978933173742], [2.294785583707838, 48.879811498613435], [2.294804373013839, 48.87980699479086], [2.294975885808642, 48.879875356378115], [2.295144902199191, 48.87994272453533], [2.295316414524503, 48.88001108561828], [2.295485433171557, 48.88007845239522], [2.29565694637868, 48.88014681388117], [2.295825965906807, 48.88021418016903], [2.295997480007808, 48.88028254115873], [2.296166500416911, 48.880349906957534], [2.296338015411995, 48.8804182674509], [2.296507035338593, 48.88048563275264], [2.296678552591035, 48.88055399275776], [2.296847573398605, 48.88062135757045], [2.297019090181649, 48.88068971707126], [2.297188113233679, 48.88075708140286], [2.297359630910705, 48.88082544040737], [2.297528654843609, 48.88089280424991], [2.297545188473128, 48.88089157024362], [2.29767353366653, 48.88080966699695], [2.297801973359773, 48.88072770300833], [2.297930317745503, 48.88064579947419], [2.298058757993856, 48.8805638352059], [2.298187101571915, 48.88048193138428], [2.298315541012001, 48.880399966828286], [2.298443883782394, 48.880318062719184], [2.298572322414214, 48.88023609787557], [2.298700664376947, 48.88015419347902], [2.298829100837141, 48.88007222833972], [2.298854776712221, 48.88006512646129], [2.298923173833395, 48.880100279209785], [2.299104743914999, 48.88019800581786], [2.299220536749246, 48.880257517410236], [2.299404727625164, 48.880352181352734], [2.299586299500716, 48.88044990630886], [2.299649490873129, 48.88046746501848], [2.299670444382576, 48.88044640191523], [2.299620687980218, 48.88032209587427], [2.29958281443934, 48.880206769051625], [2.299533059838551, 48.880082462955194], [2.299495186665982, 48.87996713607971], [2.299445432503277, 48.87984282991981], [2.299407559699012, 48.87972750299157], [2.299411292851237, 48.879719208664305], [2.299561268914151, 48.87962128411668], [2.299711988631846, 48.87952287268741], [2.299861962200537, 48.879424947737654], [2.300012682133114, 48.87932653681956], [2.300162654571052, 48.87922861147567], [2.300313372003916, 48.879130200153526], [2.300463344674553, 48.87903227442346], [2.300614060983137, 48.87893386180596], [2.3007640311475193, 48.87883593657306], [2.300914747683084, 48.87873752356745], [2.30095939703278, 48.878697428292035], [2.300967465356341, 48.878674034154706], [2.300872565617091, 48.878653136951534], [2.300794989236412, 48.878635706176226], [2.300782102012157, 48.878629761824875], [2.300746799406056, 48.87862629642525], [2.300623911149419, 48.87859868475828], [2.3004428153914542, 48.87856167650186], [2.300242351442277, 48.878516632486686], [2.300061256240651, 48.87847962365032], [2.299860792937301, 48.878434578992874], [2.29967969828013, 48.87839757047578], [2.299479235622508, 48.87835252517608], [2.2992981415338782, 48.87831551517988], [2.299117047702523, 48.878278504908444], [2.298916585977819, 48.87823345956098], [2.298735492703022, 48.87819644870965], [2.298535030272848, 48.87815140181267], [2.298353937554418, 48.8781143903814], [2.298153477121402, 48.878069343749424], [2.298116340505461, 48.87806936614475]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 66, "roussel_fabien": 8.0, "nb_emargement": 1378.0, "nb_procuration": 74.0, "nb_vote_blanc": 11.0, "jadot_yannick": 83.0, "le_pen_marine": 60.0, "nb_exprime": 1362.0, "nb_vote_nul": 5.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1763.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1378, "quartier_bv": "65", "geo_point_2d": [48.87931468624508, 2.2974736787009142], "melenchon_jean_luc": 168.0, "poutou_philippe": 3.0, "macron_emmanuel": 647.0}, "geometry": {"type": "Point", "coordinates": [2.2974736787009142, 48.87931468624508]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2fc2708ff764d7f7427f4d77683c13583fa1c32f", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 124, "zemmour_eric": 222.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-67", "geo_shape": {"coordinates": [[[2.291604429701444, 48.86910007338389], [2.291571672914416, 48.86909046514382], [2.291365410378523, 48.86910771852619], [2.291161578359062, 48.86912487532809], [2.290955315538854, 48.869142128902524], [2.290751481886498, 48.869159284997416], [2.290545218794214, 48.86917653786461], [2.290341386235238, 48.86919369326865], [2.290135122870989, 48.869210945428655], [2.28993128867914, 48.86922810012571], [2.289918193903654, 48.869224140858755], [2.289870315090187, 48.86917639556215], [2.28982399622052, 48.86912802995654], [2.289809993281863, 48.8691239897435], [2.289612309702553, 48.86914809187449], [2.289414271690686, 48.86917217898449], [2.289216587745309, 48.86919628046085], [2.289018548004078, 48.86922036690693], [2.288820865056026, 48.869244467736806], [2.288622824948626, 48.869268553527114], [2.28842514027144, 48.86929265369424], [2.288227099810163, 48.869316737929495], [2.288029416130227, 48.86934083745012], [2.287831375290512, 48.86936492192888], [2.287633689881457, 48.86938902078675], [2.287435650038786, 48.8694131046178], [2.287237964263809, 48.869437202821096], [2.2870399226918128, 48.86946128598822], [2.286842236550819, 48.86948538353687], [2.286644195975887, 48.869509466056336], [2.286446509469091, 48.86953356295039], [2.28624846716485, 48.869557644805916], [2.286050781655349, 48.86958174105344], [2.285852738985, 48.86960582225318], [2.285655051746418, 48.86962991783797], [2.285457008709969, 48.86965399838188], [2.285395908058532, 48.869651987801404], [2.285360615572673, 48.869661911831386], [2.285328041573706, 48.869790170184494], [2.285295981687972, 48.86991443128948], [2.285263923012386, 48.87003869238004], [2.285231348527486, 48.87016695156238], [2.285217982196793, 48.8702187541553], [2.2852165767119272, 48.87021954348262], [2.28520063690675, 48.87023485230299], [2.28516750352785, 48.87035891445607], [2.285148809402076, 48.87043137198351], [2.285116748694041, 48.870555632968404], [2.285083614923645, 48.87067969416297], [2.285051553907348, 48.870803955102474], [2.285018419811379, 48.8709280171504], [2.28498635849906, 48.87105227714523], [2.284953224089855, 48.8711763391472], [2.284921162456821, 48.871300599995934], [2.284888027746724, 48.87142466105271], [2.2848559658053142, 48.871548921856], [2.284822830781973, 48.87167298286686], [2.284790769895433, 48.871797243632926], [2.2847576345465, 48.87192130549709], [2.284725572000678, 48.87204556531032], [2.284692436338493, 48.87216962712855], [2.284660373471933, 48.87229388779565], [2.284627237508841, 48.872417948668684], [2.284606149985478, 48.872496900240314], [2.284574086711619, 48.872621160847494], [2.284559652753023, 48.87263883303959], [2.28466320649108, 48.87267608494109], [2.284871075487109, 48.872701610210115], [2.2850758258733013, 48.87272659756818], [2.285283693909835, 48.87275212211136], [2.285488444692519, 48.872777108762534], [2.285696314495998, 48.872802632596105], [2.285901064311888, 48.87282761853223], [2.286105815675163, 48.872852605024946], [2.286313684731589, 48.87287812687732], [2.286518436491337, 48.872903112663096], [2.286726307314779, 48.87292863380594], [2.286726376730113, 48.872928642313674], [2.286752292230287, 48.87292820047132], [2.286756962886722, 48.87291188991326], [2.286875020223472, 48.872814159166644], [2.287005744210577, 48.87270616308454], [2.287123800626571, 48.8726084311751], [2.287254523581456, 48.87250043480114], [2.28737257905219, 48.872402703527406], [2.287503300974967, 48.87229470686166], [2.287621356888113, 48.87219697443323], [2.287752076403335, 48.87208897836681], [2.287870131383436, 48.87199124567483], [2.288000849878872, 48.87188324841738], [2.288118903913643, 48.87178551636111], [2.288249621377007, 48.87167751881184], [2.28836767449104, 48.87157978559276], [2.288498392285478, 48.871471787759845], [2.288616443091067, 48.87137405516837], [2.288747159853447, 48.87126605704364], [2.288865209738211, 48.87116832328936], [2.288883312388376, 48.87116639202234], [2.289059598852615, 48.87124214784208], [2.289235307862092, 48.87131779743963], [2.289411595350659, 48.87139355273059], [2.289587304031091, 48.87146920089371], [2.289763593907226, 48.87154495566393], [2.289939303609578, 48.87162060330001], [2.290115593146899, 48.87169635753338], [2.290291305234322, 48.87177200465043], [2.2904675957959713, 48.871847758355], [2.290643307529922, 48.87192340583617], [2.290661145562227, 48.87192169846779], [2.290800538130887, 48.87181352294958], [2.290938142786712, 48.871705948225184], [2.291077532851752, 48.87159777145595], [2.291215136353331, 48.8714901972914], [2.291354526629012, 48.87138202018653], [2.291492128988597, 48.871274445682545], [2.2916315167484482, 48.871166268225906], [2.291769117966052, 48.871058693382544], [2.291789265192737, 48.87104895936263], [2.29178407917485, 48.871036021273746], [2.291784038816608, 48.87103598146377], [2.291667970666814, 48.87092274787392], [2.291551823879107, 48.87080901815208], [2.29143575673973, 48.870695784313796], [2.291319612340547, 48.870582053452075], [2.291203544848562, 48.87046881935732], [2.291087401450199, 48.87035508914619], [2.290971334968718, 48.87024185480297], [2.290855192595536, 48.87012812344391], [2.290739128487753, 48.87001488886037], [2.290622985752258, 48.8699011581438], [2.290623786610047, 48.86989040221052], [2.29074459088182, 48.86979404085781], [2.290869327380426, 48.86969380310773], [2.290990130729806, 48.86959744238938], [2.2911148662851533, 48.86949720436561], [2.291235668736633, 48.869400842482975], [2.291360403348827, 48.86930060418551], [2.291481204877838, 48.86920424293722], [2.291605938546789, 48.86910400436604], [2.291604429701444, 48.86910007338389]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 67, "roussel_fabien": 4.0, "nb_emargement": 1052.0, "nb_procuration": 55.0, "nb_vote_blanc": 6.0, "jadot_yannick": 20.0, "le_pen_marine": 56.0, "nb_exprime": 1043.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1384.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1053, "quartier_bv": "64", "geo_point_2d": [48.870836905780145, 2.2878859959232667], "melenchon_jean_luc": 77.0, "poutou_philippe": 2.0, "macron_emmanuel": 509.0}, "geometry": {"type": "Point", "coordinates": [2.2878859959232667, 48.870836905780145]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b3cee0211eb47b6805d70bed4e4fdb49ae0d6bec", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 29, "zemmour_eric": 42.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-32", "geo_shape": {"coordinates": [[[2.378360102696906, 48.87080356918667], [2.37836727464675, 48.870799259037625], [2.378406746954425, 48.87076823993739], [2.3785410300580923, 48.87066566270815], [2.378667256097433, 48.87056646997356], [2.378801536804725, 48.87046389242623], [2.3789277618697833, 48.87036469849952], [2.379062042896447, 48.870262121547604], [2.379188266976501, 48.87016292732807], [2.379217819035133, 48.87013946129412], [2.3792217009826713, 48.87013780236382], [2.379235762755034, 48.87012548781471], [2.379330854294625, 48.87004998061007], [2.379453011020257, 48.86995545055657], [2.379577653670423, 48.8698564770389], [2.379699809494404, 48.86976194671702], [2.379824451223342, 48.86966297202575], [2.379946606145778, 48.8695684414354], [2.3800712469319762, 48.8694694673691], [2.380193400952777, 48.86937493651039], [2.380318040807157, 48.869275962169745], [2.380440193936922, 48.8691814301433], [2.3805648328593882, 48.869082455528385], [2.380686985076835, 48.86898792413279], [2.38068726987199, 48.86898770526848], [2.380715653002164, 48.86896658636735], [2.380717237381531, 48.868965989310055], [2.380735902747029, 48.86895259490556], [2.380846389831526, 48.86887038328048], [2.380975776779045, 48.86877175294324], [2.381114644554864, 48.868668421175485], [2.381244031845435, 48.8685697914366], [2.38138289855064, 48.86846645933877], [2.381512283468497, 48.86836782928483], [2.381641669270155, 48.86826919819], [2.381780534385381, 48.86816586560274], [2.381909919166835, 48.868067235099204], [2.382048783211572, 48.86796390218184], [2.382178165620448, 48.8678652713633], [2.382317029957766, 48.86776193812291], [2.382446411367801, 48.86766330609711], [2.382585273260929, 48.86755997341887], [2.382714655024516, 48.86746134109211], [2.382853515847188, 48.86735800808383], [2.382897676369409, 48.867324343266304], [2.382904523226774, 48.867316333075394], [2.382853892630092, 48.86728535597195], [2.382678260712979, 48.8672343210352], [2.382476648166282, 48.86717555327117], [2.382301016988948, 48.86712451777576], [2.38209940529279, 48.86706574937044], [2.381923773502767, 48.86701471241009], [2.381722164020294, 48.866955943370506], [2.381546532959392, 48.86690490675083], [2.381344922964328, 48.866846137062936], [2.381228421569889, 48.866812281711375], [2.3812262057180202, 48.86680958302695], [2.381202304550666, 48.866805475379465], [2.381143175651017, 48.866788292640436], [2.380935769984052, 48.866727252028156], [2.380760140464607, 48.866676214244016], [2.38055273569279, 48.86661517296182], [2.380377106926476, 48.86656413461041], [2.380376484625064, 48.86656396321201], [2.380358803117511, 48.86656312701826], [2.38034815308518, 48.86657717623736], [2.380241035500541, 48.866687599322354], [2.380132341270015, 48.86679931098601], [2.3800252227818612, 48.8669097329564], [2.379916527625055, 48.86702144440164], [2.379809409575114, 48.867131867063065], [2.379700713492119, 48.867243578289866], [2.379593593175509, 48.86735399982962], [2.379484896166113, 48.867465710838], [2.379488120138131, 48.8674777292427], [2.379694658300174, 48.86758128050921], [2.379900738727768, 48.86768361492533], [2.379904737300848, 48.867694816231925], [2.379823783193178, 48.86780182919939], [2.379746342416125, 48.867903407615074], [2.379668901326351, 48.86800498687063], [2.37958794625229, 48.86811199964855], [2.379510504554264, 48.86821357788319], [2.379429548830646, 48.86832059053381], [2.379412105642537, 48.868324875378036], [2.379240097598501, 48.86827756580736], [2.37906903217351, 48.86823000096697], [2.378897026117492, 48.86818269090629], [2.378725961327938, 48.8681351246722], [2.378553954533708, 48.86808781410737], [2.378382890358249, 48.86804024827814], [2.378382613146495, 48.868040173991936], [2.378365911250734, 48.868040829203174], [2.378356906391211, 48.86805562783096], [2.378260578507378, 48.868181224766275], [2.378164740958251, 48.868306247683215], [2.378068412147555, 48.86843184443541], [2.377972573676141, 48.86855686717015], [2.377876243938772, 48.86868246373922], [2.377780404555697, 48.86880748539247], [2.377684563338756, 48.86893250784705], [2.377588232212326, 48.86905810414165], [2.377492391436251, 48.86918312642107], [2.377396059382916, 48.86930872253256], [2.377385111843259, 48.86932051706962], [2.377394486736127, 48.86933023282527], [2.377584383930542, 48.869415994805756], [2.377777555701871, 48.86950294893322], [2.377967455519702, 48.86958871029967], [2.378160627207763, 48.869675663788215], [2.378164884638838, 48.86968743126312], [2.37807853561885, 48.869790838196494], [2.377991217387708, 48.869895123172995], [2.377904866304727, 48.86999853085385], [2.377817548751608, 48.87010281479184], [2.377731196979674, 48.870206222328015], [2.377643878719981, 48.870310507018985], [2.3775575262696282, 48.87041391351113], [2.377470207314194, 48.87051819805586], [2.377476571059547, 48.870530754428486], [2.377685130813814, 48.87059232478601], [2.377884476004223, 48.87065222807476], [2.378093036726994, 48.870713797714814], [2.378292382851363, 48.87077370031765], [2.378360102696906, 48.87080356918667]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 32, "roussel_fabien": 32.0, "nb_emargement": 1457.0, "nb_procuration": 63.0, "nb_vote_blanc": 21.0, "jadot_yannick": 128.0, "le_pen_marine": 40.0, "nb_exprime": 1426.0, "nb_vote_nul": 10.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1934.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1457, "quartier_bv": "41", "geo_point_2d": [48.86853576565062, 2.3798437360940183], "melenchon_jean_luc": 761.0, "poutou_philippe": 10.0, "macron_emmanuel": 315.0}, "geometry": {"type": "Point", "coordinates": [2.3798437360940183, 48.86853576565062]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2b586ecdcd3f5aaaaadac3c212f204315b4d6827", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 49, "zemmour_eric": 49.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-46", "geo_shape": {"coordinates": [[[2.400726460523042, 48.8560225944138], [2.400720115136534, 48.85603311287806], [2.400625504825502, 48.856140796313966], [2.400531682500541, 48.856247360329625], [2.400437071411057, 48.85635504359577], [2.400343248304583, 48.8564616083424], [2.400249426177201, 48.85656817301209], [2.400154813921854, 48.85667585602394], [2.400060989660425, 48.856782420518506], [2.399966376626707, 48.8568901033606], [2.399966213728246, 48.85689028331243], [2.399865887079978, 48.85699889522042], [2.399765000672413, 48.85710779022018], [2.3996646731859, 48.8572164019382], [2.399563785926193, 48.85732529764628], [2.399463457601426, 48.857433909174325], [2.399362569500129, 48.85754280469142], [2.399322853104481, 48.85757271904093], [2.399336489935677, 48.857582959996684], [2.39945709810826, 48.85765124832387], [2.399598778864366, 48.857730922750946], [2.399756102072932, 48.85781999808602], [2.399897783755489, 48.85789967124769], [2.400055107974405, 48.85798874707541], [2.400196790572954, 48.858068419870946], [2.400338473594561, 48.85814809339227], [2.400495799327338, 48.858237167721434], [2.400637483265051, 48.85831684087664], [2.400794810018549, 48.85840591479915], [2.40093649487227, 48.85848558758822], [2.401093822646597, 48.85857466110406], [2.401235508426768, 48.85865433262773], [2.401337722447713, 48.85871220244972], [2.401350173137755, 48.8587161283227], [2.401390214995572, 48.85868229831298], [2.401515163167603, 48.85858145916153], [2.401640136630959, 48.85847944365575], [2.4017650838328253, 48.85837860422491], [2.401890056320279, 48.85827658843953], [2.401898262689258, 48.858273388215274], [2.402096474317768, 48.85825005593452], [2.402293414588735, 48.85822703894129], [2.402491625863965, 48.858203706005035], [2.402688567148082, 48.85818068836738], [2.4028867780699192, 48.85815735477563], [2.403083717641356, 48.858134336479914], [2.40309211918569, 48.85813098515805], [2.403200420372714, 48.85803864543355], [2.403308737362204, 48.857946558400165], [2.40341703778198, 48.857854218464276], [2.403525355378416, 48.85776213032699], [2.403633655030945, 48.85766979017971], [2.403741970487836, 48.857577702723574], [2.4037628459751432, 48.857565506387054], [2.403762395982243, 48.857561714301916], [2.403654815507961, 48.857491708259424], [2.4035153728865, 48.85740141863352], [2.403360137128078, 48.85730040273506], [2.403220695518939, 48.8572101136495], [2.403065462274968, 48.857109096458906], [2.402926020325657, 48.85701880700759], [2.402770788222946, 48.856917789417324], [2.40263134729614, 48.8568274996071], [2.40263129994687, 48.856827468792936], [2.402631230956968, 48.85682742348123], [2.4025337873196753, 48.8567646293689], [2.402433592712682, 48.856698816717895], [2.402336149543876, 48.85663602333665], [2.402235956796587, 48.856570210519415], [2.402234007434465, 48.85655907676211], [2.402265327217317, 48.856525947493054], [2.402293546314729, 48.85649602598601], [2.402298736798641, 48.85648624183774], [2.402287150711398, 48.85647732180264], [2.402145231480268, 48.85638820254133], [2.4020061461647852, 48.85630087077646], [2.401867059952778, 48.856213538836286], [2.401725142158633, 48.85612441905555], [2.40158605688862, 48.856037086774876], [2.401444140055594, 48.855947966646774], [2.401432526558526, 48.85594560802387], [2.401258157468726, 48.85596459145551], [2.401087087740743, 48.85598322871009], [2.400912719762151, 48.856002211644544], [2.400741649797441, 48.856020847505334], [2.400726460523042, 48.8560225944138]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 46, "roussel_fabien": 28.0, "nb_emargement": 1281.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 101.0, "le_pen_marine": 53.0, "nb_exprime": 1262.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 0, "nb_inscrit": 1643.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1281, "quartier_bv": "80", "geo_point_2d": [48.85734534904231, 2.401452699100269], "melenchon_jean_luc": 600.0, "poutou_philippe": 6.0, "macron_emmanuel": 324.0}, "geometry": {"type": "Point", "coordinates": [2.401452699100269, 48.85734534904231]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2661823b4e02042533b86beb48660d489d92532d", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 54, "zemmour_eric": 49.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-43", "geo_shape": {"coordinates": [[[2.383696277362706, 48.8585219333621], [2.383737785377929, 48.85854625501652], [2.38392047136175, 48.858592078472334], [2.384133182041007, 48.8586459182598], [2.384315868721917, 48.85869174110791], [2.384528580206008, 48.85874558108697], [2.384601505911982, 48.8587638720166], [2.384627537416029, 48.85876976709623], [2.384639553163324, 48.858753753067], [2.384705802167628, 48.85864700853012], [2.384772138756208, 48.858540672701345], [2.384838387207329, 48.85843392896989], [2.384904723254028, 48.8583275930472], [2.384970971173207, 48.858220848322574], [2.385037305315225, 48.85811451229897], [2.385103552681241, 48.85800776837973], [2.385169887644198, 48.85790143226923], [2.385170019537227, 48.85790122789575], [2.385245449926272, 48.85778986704703], [2.385322071065707, 48.85767516848457], [2.385397499439612, 48.85756380751032], [2.385474119911901, 48.857449108827154], [2.385549548996464, 48.85733774774142], [2.385626168801611, 48.85722304893753], [2.385643277519047, 48.857218220042], [2.385844415971141, 48.857266252429135], [2.386044731588992, 48.857314398966345], [2.386245870782552, 48.85736243067453], [2.386446187141126, 48.85741057653557], [2.386647327075942, 48.8574586075648], [2.386847644175233, 48.85750675274964], [2.386865126151209, 48.857501359004566], [2.386944967099115, 48.85735557915681], [2.387023750767733, 48.857211236376365], [2.387103590837945, 48.85706545548541], [2.387182373628454, 48.85692111256283], [2.387195079321629, 48.85691516728971], [2.387406156051429, 48.85691397359722], [2.3876081708913652, 48.85691252450864], [2.387810185730628, 48.85691107417969], [2.388021262429748, 48.85690987940221], [2.388223277236694, 48.85690842927523], [2.388434353915622, 48.8569072337691], [2.388467848124993, 48.85690699304336], [2.388482475503554, 48.856901271499666], [2.388481842439868, 48.85688681215063], [2.3885377685068763, 48.85676781925449], [2.388593379608323, 48.85664974474433], [2.3886493038033922, 48.85653075176372], [2.388704915751379, 48.856412678082776], [2.388760839447735, 48.856293684125376], [2.388816449527197, 48.85617561036043], [2.388872372714399, 48.85605661632543], [2.388927983650854, 48.85593854249043], [2.388983906329007, 48.85581954837795], [2.38903951539686, 48.855701474458954], [2.389095437565771, 48.85558248026894], [2.389151047490822, 48.85546440627985], [2.389162138891186, 48.855435213380645], [2.38915044315336, 48.855430160491224], [2.38900630927549, 48.85540803450304], [2.388809874646355, 48.85537799045154], [2.388609573800021, 48.85534724191701], [2.388462053262701, 48.85532467886866], [2.388444262763692, 48.85531718720376], [2.388427571121023, 48.855318373573986], [2.3883786574979182, 48.85531089190374], [2.388169064491175, 48.855276120908215], [2.387972630842005, 48.85524607547874], [2.387763039740329, 48.8552113028777], [2.3875666065696413, 48.85518125677996], [2.387370172252091, 48.85515121125124], [2.38716058193405, 48.85511643759196], [2.38709950997941, 48.8551142019836], [2.387090873337729, 48.85515255455973], [2.386993526938545, 48.85525131526295], [2.38687782424446, 48.85536424640029], [2.386780477045974, 48.85546300691137], [2.386664773420066, 48.855575937821214], [2.386567425422269, 48.855674698140156], [2.38645172086453, 48.85578762882249], [2.386354372067413, 48.8558863889493], [2.386354246556858, 48.8558865151138], [2.386238541066827, 48.85599944556846], [2.386120012357535, 48.856115394021835], [2.38600430585158, 48.85622832422676], [2.385885777463253, 48.85634427243122], [2.385885725050001, 48.85634432522378], [2.385785444938575, 48.85644368675815], [2.385666915573307, 48.85655963472337], [2.385566635993003, 48.85665899606213], [2.385448105651028, 48.8567749437881], [2.385347825228572, 48.856874305823524], [2.385229293909874, 48.85699025331027], [2.385129012666268, 48.85708961424376], [2.385128969908296, 48.857089657192724], [2.3850266872876222, 48.85719111312274], [2.384924851311339, 48.85729326195282], [2.384822567882801, 48.85739471858905], [2.38472073247129, 48.85749686723369], [2.384618448245699, 48.85759832367683], [2.384516610673173, 48.85770047212204], [2.384414325650314, 48.85780192837209], [2.384312488642555, 48.85790407663188], [2.384210202833256, 48.85800553178953], [2.384108363664458, 48.858107679849844], [2.384006078410158, 48.85820913572074], [2.383904238443213, 48.85831128358858], [2.383801951028917, 48.85841273925937], [2.383700110263813, 48.85851488693481], [2.383696277362706, 48.8585219333621]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 43, "roussel_fabien": 34.0, "nb_emargement": 1413.0, "nb_procuration": 86.0, "nb_vote_blanc": 18.0, "jadot_yannick": 156.0, "le_pen_marine": 87.0, "nb_exprime": 1389.0, "nb_vote_nul": 6.0, "arr_bv": "11", "arthaud_nathalie": 7, "nb_inscrit": 1802.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1413, "quartier_bv": "43", "geo_point_2d": [48.856616280195574, 2.3867572132074426], "melenchon_jean_luc": 556.0, "poutou_philippe": 6.0, "macron_emmanuel": 393.0}, "geometry": {"type": "Point", "coordinates": [2.3867572132074426, 48.856616280195574]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4a8511ecfd13d2d958940a97decd87ae23d42306", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 45, "zemmour_eric": 69.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-31", "geo_shape": {"coordinates": [[[2.411636122114187, 48.86721187819719], [2.411611570887943, 48.86720632460886], [2.411564196444163, 48.86720347193597], [2.411362430072706, 48.86719132351796], [2.4111643160340073, 48.86717939597813], [2.410962549859227, 48.867167245986465], [2.410764437366804, 48.867155317791244], [2.410562671368376, 48.86714316802446], [2.410364557706122, 48.86713123826108], [2.410162791894224, 48.86711908782002], [2.409964679768086, 48.86710715830045], [2.409762914152915, 48.86709500628574], [2.409564800846791, 48.867083076097295], [2.409363036771127, 48.86707092431426], [2.409164923658367, 48.86705899256441], [2.408963158406119, 48.86704684010027], [2.408765046829484, 48.8670349085943], [2.408563281773913, 48.86702275455648], [2.408365169017423, 48.867010822381644], [2.408354065924949, 48.86701357073225], [2.408222822243633, 48.86710434405928], [2.4080861869627093, 48.86719760871848], [2.4079549423407283, 48.86728838263595], [2.407818306107718, 48.86738164607453], [2.4077988195468363, 48.86738172503], [2.40765190736243, 48.86728385609805], [2.4075032323704972, 48.86718509329965], [2.407356322659092, 48.86708722399421], [2.407207648788738, 48.86698846081107], [2.407060738813799, 48.866890592017974], [2.406912067438388, 48.866791827557606], [2.40676515857318, 48.866693958384325], [2.406616486946057, 48.86659519443177], [2.406469580564049, 48.86649732398577], [2.406320910058477, 48.86639855964851], [2.406312514767361, 48.866398273384874], [2.406295234951689, 48.8664090507773], [2.406232541848623, 48.86652055270544], [2.406171761703626, 48.866630081940706], [2.406109068070276, 48.86674158378189], [2.406048287407786, 48.866851112932544], [2.405985593254502, 48.86696261378751], [2.4059248120745123, 48.86707214285359], [2.405862117380575, 48.86718364452087], [2.405801335683079, 48.86729317350236], [2.405740555093141, 48.867402702448906], [2.405677859606984, 48.86751420398635], [2.405671402962656, 48.86752834548448], [2.405679454252825, 48.86753573844735], [2.405665971715496, 48.86764581605485], [2.40565265363592, 48.86775139148481], [2.405639170986142, 48.86786146906784], [2.405625851433947, 48.86796704446747], [2.405612368671617, 48.86807712202597], [2.405599050373135, 48.86818269740883], [2.405602683791671, 48.86818958998479], [2.40566300695938, 48.868232093627235], [2.405714748485307, 48.868268282652394], [2.405719919151784, 48.86827055846654], [2.405770112244108, 48.86828295591486], [2.405820864831883, 48.868294827309306], [2.405826171923459, 48.86829709480268], [2.405994747002584, 48.86841430301897], [2.406170025451721, 48.86853549412625], [2.406173794426992, 48.86854174522839], [2.406173629200447, 48.86856449043077], [2.40617479585136, 48.868587953615815], [2.406178469871913, 48.8685938049409], [2.40621570349184, 48.868620038945885], [2.406253319347001, 48.868646349479526], [2.4062546283813813, 48.86864715818138], [2.4064217731097672, 48.86873753954101], [2.40657961962752, 48.868823023537225], [2.406737465300141, 48.86890850731191], [2.4069046117047472, 48.86899888797594], [2.407062458443585, 48.86908437130843], [2.407229605976463, 48.86917475150423], [2.407387455144725, 48.869260234401295], [2.407529986176853, 48.86933730351561], [2.407559467515042, 48.869345254778224], [2.407572431468691, 48.86933116519686], [2.40756223138836, 48.86925794474076], [2.407553065825336, 48.86919553132405], [2.407555673514929, 48.86918931722897], [2.407666839106531, 48.86909012925156], [2.407776453534086, 48.86899256398551], [2.407887618295744, 48.86889337488611], [2.407997231895771, 48.86879580940051], [2.408106845085296, 48.86869824380599], [2.408218008579452, 48.86859905527258], [2.40832762094136, 48.86850148945846], [2.408438783605479, 48.86840229980313], [2.408548395139979, 48.86830473376948], [2.4086595583270283, 48.868205543898156], [2.408669818339504, 48.86820190910644], [2.408784297919407, 48.8681971172902], [2.408924040249863, 48.86819237368078], [2.408938372305505, 48.86820146480407], [2.408935609648741, 48.86835038939996], [2.408932402405773, 48.86849572342792], [2.408929639716235, 48.86864464798405], [2.408926432448697, 48.8687899810739], [2.4089236697265872, 48.86893890559024], [2.408920462414071, 48.869084239540506], [2.408919902824959, 48.869105682342315], [2.408951180185176, 48.869106256785976], [2.409153017455019, 48.869111561120796], [2.409358749205855, 48.86911641667838], [2.40956058654637, 48.86912172122511], [2.409766318385508, 48.86912657518285], [2.409968155806983, 48.86913187904228], [2.4101738877241132, 48.8691367322994], [2.410375725226438, 48.86914203547155], [2.410581457221647, 48.86914688802808], [2.41059555216602, 48.86913842903582], [2.410606679310447, 48.86901370278136], [2.410617734721431, 48.868889769373155], [2.410628861759629, 48.86876504308858], [2.410639917065065, 48.868641109650525], [2.410651042633855, 48.86851638332913], [2.410662099196927, 48.868392449867784], [2.410673224649324, 48.86826772441558], [2.410684279753847, 48.86814379001837], [2.4106954064632, 48.86801906454275], [2.410706461462178, 48.86789513011561], [2.410713342336528, 48.86788783709675], [2.410871438919652, 48.86782865029563], [2.411019178514009, 48.8677726229514], [2.411027495776024, 48.86777151272851], [2.411164498091801, 48.86778304451176], [2.411427809957861, 48.86780344245186], [2.411564812435967, 48.867814974675795], [2.411580140656921, 48.86780662864427], [2.411594492424803, 48.86765880325705], [2.411607267633579, 48.8675168247823], [2.41162161924454, 48.86736899935311], [2.411634392935107, 48.86722702173086], [2.411636122114187, 48.86721187819719]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 31, "roussel_fabien": 22.0, "nb_emargement": 1204.0, "nb_procuration": 33.0, "nb_vote_blanc": 11.0, "jadot_yannick": 89.0, "le_pen_marine": 96.0, "nb_exprime": 1191.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1645.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1204, "quartier_bv": "78", "geo_point_2d": [48.867928536324925, 2.408372633017654], "melenchon_jean_luc": 560.0, "poutou_philippe": 10.0, "macron_emmanuel": 247.0}, "geometry": {"type": "Point", "coordinates": [2.408372633017654, 48.867928536324925]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2000ffc0af62cdf66ec738b5fd3b7d9cf325ad7f", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 78, "zemmour_eric": 95.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-13", "geo_shape": {"coordinates": [[[2.352043078785564, 48.84218421463849], [2.3520415603104, 48.84218338529544], [2.35202143375316, 48.842053319241295], [2.352001407304824, 48.841932086354774], [2.3519812809561103, 48.84180201936527], [2.3519612560601, 48.84168078645205], [2.351949468017139, 48.8416728432718], [2.351761556292463, 48.84165670865068], [2.3515761869550422, 48.84164113972344], [2.351388275460125, 48.84162500451553], [2.351202906335772, 48.841609435908765], [2.3510149950819192, 48.841593299214736], [2.350829626181833, 48.84157773002911], [2.350641715146759, 48.84156159364758], [2.350456346470943, 48.841546023883105], [2.3502684343143923, 48.841529886008075], [2.350083065862857, 48.84151431566473], [2.349895155287558, 48.841498178109596], [2.349709787060308, 48.841482607187416], [2.349668202400693, 48.84146448468708], [2.349641397136881, 48.84146776823343], [2.349655439604466, 48.84155336326173], [2.349676251632836, 48.84168282286393], [2.349699853161407, 48.841826675732726], [2.349720665409333, 48.841956135295476], [2.349736311414258, 48.84205803815048], [2.349757123845027, 48.8421874976801], [2.349772771364395, 48.84228939961734], [2.349772682121408, 48.84229174736892], [2.34974027887512, 48.84242762505994], [2.349708124697451, 48.84256416691078], [2.349675721113491, 48.842700044551094], [2.349643567949805, 48.84283658725797], [2.349611164028272, 48.84297246484765], [2.349579009176109, 48.843109006597146], [2.349546604916894, 48.843244884136155], [2.349514451078818, 48.843381426741644], [2.349482046481816, 48.843517304230005], [2.349449892317865, 48.8436538458855], [2.349417487383174, 48.84378972332317], [2.349385331508159, 48.843926265819874], [2.34935292623587, 48.84406214320685], [2.349320771397399, 48.844198684760954], [2.349288365787308, 48.8443345620973], [2.349256209237948, 48.84447110449259], [2.349268864925785, 48.84450277418834], [2.349303537278025, 48.8445029438938], [2.34947852930377, 48.84444807221705], [2.349623990860584, 48.84440233734316], [2.34962972951197, 48.844401517745105], [2.349793908747221, 48.8443644310499], [2.349988908181333, 48.8443206071954], [2.350153088279863, 48.844283519112665], [2.350348087098006, 48.84423969556885], [2.350512266686045, 48.84420260699051], [2.350707264910637, 48.84415878195875], [2.3508714439769802, 48.84412169378411], [2.35087146174565, 48.84412168938371], [2.351066460727978, 48.844077863770735], [2.351232006266133, 48.844040642213315], [2.351427003279609, 48.843996816002054], [2.35159254831402, 48.84395959304371], [2.351758094463309, 48.84392237076173], [2.351953090591779, 48.84387854368834], [2.352118634863597, 48.84384132089738], [2.352270369735313, 48.843807216741325], [2.352301841750719, 48.84379602370648], [2.352284147273374, 48.84376519941996], [2.352264019499986, 48.84363513359098], [2.352244550603707, 48.84350633131634], [2.352224423029108, 48.84337626545054], [2.352204954327387, 48.843247463139576], [2.352184826951575, 48.84311739723693], [2.352165358455585, 48.8429885939903], [2.3521452312785582, 48.84285852805086], [2.352125762965941, 48.84272972566725], [2.352105635987694, 48.84259965969092], [2.352086167869624, 48.842470857270975], [2.352066041090054, 48.84234079125781], [2.352046573166631, 48.842211988801544], [2.352043078785564, 48.84218421463849]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 13, "roussel_fabien": 21.0, "nb_emargement": 1045.0, "nb_procuration": 45.0, "nb_vote_blanc": 12.0, "jadot_yannick": 104.0, "le_pen_marine": 80.0, "nb_exprime": 1032.0, "nb_vote_nul": 1.0, "arr_bv": "05", "arthaud_nathalie": 4, "nb_inscrit": 1314.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "18", "geo_point_2d": [48.84293348682637, 2.350777385968138], "melenchon_jean_luc": 251.0, "poutou_philippe": 7.0, "macron_emmanuel": 348.0}, "geometry": {"type": "Point", "coordinates": [2.350777385968138, 48.84293348682637]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5224ead3694278765d4f3a303a021f36d6c98dc1", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 51, "zemmour_eric": 55.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "11-25", "geo_shape": {"coordinates": [[[2.376398457101918, 48.86281064218306], [2.376334520768619, 48.86279019518554], [2.376166334452126, 48.86283220921905], [2.376008872090015, 48.862871767962574], [2.375840685258241, 48.86291378063606], [2.375683222402317, 48.86295333894819], [2.375670207011114, 48.86295213517922], [2.375505661355872, 48.86287092298749], [2.375343131655674, 48.86279032634183], [2.375178587021342, 48.86270911368857], [2.375016059705738, 48.862628515694766], [2.3748515147185, 48.86254730347216], [2.374688988413676, 48.86246670502243], [2.374524444458136, 48.86238549143895], [2.37436191915329, 48.86230489343256], [2.374199392999198, 48.86222429429319], [2.37403485193538, 48.86214308002595], [2.374016993531499, 48.862133162174544], [2.373997492623447, 48.86214230273519], [2.373873266994373, 48.86225349986219], [2.373751077641144, 48.86236296547718], [2.3736268509598712, 48.862474162326286], [2.373504660571457, 48.86258362766784], [2.373380432838079, 48.86269482423902], [2.373258240040523, 48.86280429019935], [2.373136048103225, 48.86291375513196], [2.373011818796001, 48.86302495128738], [2.372889625812565, 48.863134416845895], [2.372765395453206, 48.86324561272335], [2.372643200082228, 48.86335507710205], [2.372518968670722, 48.863466272701565], [2.3723967736274503, 48.86357573681396], [2.3722725411637873, 48.86368693213554], [2.372150345074333, 48.86379639687382], [2.372026111558399, 48.863907591917474], [2.372029859286102, 48.86392055403323], [2.372181087428803, 48.86398291739234], [2.372331783287397, 48.86404480021201], [2.372483013515248, 48.86410716318978], [2.372633710080946, 48.86416904652164], [2.372784941030996, 48.86423140911082], [2.372935638325562, 48.86429329115632], [2.373086869997604, 48.86435565335702], [2.373237567999491, 48.864417535914676], [2.373242117321901, 48.86442972694909], [2.373174719919659, 48.86450540532047], [2.373106716822309, 48.86458144561027], [2.373039317664019, 48.8646571238879], [2.37297131417109, 48.86473316409034], [2.372979388281012, 48.864746396150885], [2.373185427093116, 48.86478435027188], [2.3733884123606632, 48.86482165760894], [2.373594451757599, 48.864859611922554], [2.373797437611405, 48.86489691856339], [2.374003477603989, 48.86493487217024], [2.374206464043842, 48.864972178114805], [2.374412504642864, 48.865010130115685], [2.37461549030587, 48.865047435356864], [2.374678075128464, 48.865069245856915], [2.374691398775263, 48.865053101228945], [2.374715076166839, 48.86502441090822], [2.374714910812652, 48.86502353678297], [2.3748086609889603, 48.864900439827295], [2.374894013689464, 48.86478598297713], [2.37498776300419, 48.86466288675403], [2.375073114922003, 48.86454842975166], [2.375166863396941, 48.86442533246255], [2.375252214532072, 48.86431087530784], [2.375337565292167, 48.86419641808046], [2.375431312497915, 48.8640733214444], [2.375516662475344, 48.86395886406471], [2.375610408841322, 48.86383576636267], [2.375695759399043, 48.86372130883784], [2.375789504903599, 48.86359821186841], [2.375887333388165, 48.86347583489642], [2.375981077998253, 48.86335273774965], [2.376078906934904, 48.86323036060109], [2.376172650661402, 48.86310726237767], [2.376270478676233, 48.86298488594466], [2.3763642215084833, 48.86286178754391], [2.376396361942451, 48.8628215816772], [2.376398457101918, 48.86281064218306]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 25, "roussel_fabien": 20.0, "nb_emargement": 1392.0, "nb_procuration": 87.0, "nb_vote_blanc": 9.0, "jadot_yannick": 140.0, "le_pen_marine": 62.0, "nb_exprime": 1381.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1791.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1392, "quartier_bv": "42", "geo_point_2d": [48.863634000751304, 2.37418131156752], "melenchon_jean_luc": 483.0, "poutou_philippe": 11.0, "macron_emmanuel": 496.0}, "geometry": {"type": "Point", "coordinates": [2.37418131156752, 48.863634000751304]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b833cbf2a4fa7205bfffec9510656bb8a08b9efe", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 41, "zemmour_eric": 64.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-4", "geo_shape": {"coordinates": [[[2.359574009618185, 48.83639121832262], [2.35956876177301, 48.83640074419822], [2.359588871692861, 48.83642684356837], [2.359597822236339, 48.83643996468447], [2.359600235200518, 48.83646656648158], [2.359622230160263, 48.836470311384545], [2.359779933656675, 48.836408100080575], [2.359938097683285, 48.8363435247975], [2.360095800430067, 48.83628131217067], [2.360253965042991, 48.8362167364699], [2.360411665655831, 48.83615452431162], [2.360569829492739, 48.836089948185865], [2.360727530718369, 48.83602773471209], [2.3608856924169332, 48.835963158154094], [2.361043392870963, 48.8359009451561], [2.361201553793618, 48.83583636817313], [2.361359253498099, 48.835774153852334], [2.361517415006956, 48.835709576451684], [2.361519007092193, 48.83570884207288], [2.361673755685924, 48.835625998984554], [2.361825059541852, 48.83554528230443], [2.361979807163726, 48.83546243880802], [2.362131108697677, 48.83538172262097], [2.362285856709805, 48.83529887872381], [2.362437157306209, 48.83521816123853], [2.362591904346383, 48.835135316933304], [2.3627432039830403, 48.83505459994842], [2.362897950051266, 48.83497175523513], [2.363049248750376, 48.834891036951994], [2.363203993846656, 48.834808191830696], [2.363355291586138, 48.83472747404796], [2.363510034348189, 48.83464462851131], [2.363661332512208, 48.83456390943765], [2.363679925711727, 48.834564818685415], [2.36381162257415, 48.83465940514798], [2.363942900043776, 48.83475434807242], [2.364074597862208, 48.834848934229406], [2.364205876288119, 48.8349438768492], [2.3643375750625673, 48.83503846270058], [2.364468854444769, 48.835133405015654], [2.364600554175239, 48.83522799056145], [2.36473183451374, 48.83532293257183], [2.364863535189283, 48.83541751871137], [2.364994816495048, 48.835512459517695], [2.365126518126633, 48.83560704535167], [2.365257800388708, 48.83570198585325], [2.365389502976343, 48.83579657138164], [2.365520786194736, 48.835891511578545], [2.365652489738427, 48.83598609680135], [2.365783773913144, 48.836081036693514], [2.365915478412901, 48.8361756216107], [2.366046763543951, 48.83627056119812], [2.36617846899978, 48.83636514580972], [2.366309755087168, 48.836460085092405], [2.366441461499078, 48.836554669398396], [2.366572748531885, 48.83664960927565], [2.366704455910809, 48.836744192376734], [2.366835743899976, 48.83683913194924], [2.366967452234991, 48.83693371474471], [2.367098741180526, 48.83702865401246], [2.367230450471638, 48.83712323650235], [2.367361740373546, 48.837218175465324], [2.367493450609852, 48.83731275854888], [2.367624741479055, 48.837407696307814], [2.367756452671478, 48.83750227908575], [2.367887744497065, 48.83759721653989], [2.368019456645612, 48.83769179901224], [2.368150749427592, 48.83778673616161], [2.368195621921522, 48.83779511423317], [2.3682143510468032, 48.837763890976426], [2.368241190142665, 48.837671341483066], [2.368274162171666, 48.83755861023762], [2.368310723696402, 48.83743253066437], [2.368343696786217, 48.837319799382854], [2.368380257986154, 48.837193718862125], [2.368413230763624, 48.83708098843668], [2.368449791627866, 48.836954907867764], [2.368486026883067, 48.83682555096505], [2.368522588754411, 48.83669947035227], [2.3685588236513873, 48.83657011339797], [2.368595383805146, 48.83644403272695], [2.368631618354901, 48.83631467482175], [2.368668179504762, 48.836188595006185], [2.368704413696301, 48.83605923704939], [2.368740973139595, 48.83593315627627], [2.368777206962037, 48.8358037991672], [2.368813767412325, 48.83567771835024], [2.368850000876562, 48.83554836118955], [2.368886559609413, 48.83542228031436], [2.368922794077662, 48.83529292310931], [2.3689595704629482, 48.83526440845074], [2.368946776500313, 48.835243584464386], [2.368940346124472, 48.83523311788265], [2.368889241423716, 48.835223171957686], [2.368709358690386, 48.835163509322534], [2.3685249791817, 48.83510204822004], [2.368345097283271, 48.8350423850306], [2.368160719994802, 48.834980923367134], [2.367980837568977, 48.83492125961626], [2.367796461138425, 48.83485979738467], [2.367616579547509, 48.834800133079554], [2.367432203974876, 48.834738670279826], [2.367252324570245, 48.834679006326944], [2.367067949866448, 48.83461754205979], [2.366888069934431, 48.83455787754545], [2.366703696077636, 48.83449641360946], [2.366523816991454, 48.834436747641554], [2.3663394439925822, 48.83437528313747], [2.366276060229913, 48.83435425826998], [2.366260010367139, 48.83434339250953], [2.366238200164946, 48.834340846855305], [2.366121705734385, 48.83430220516332], [2.365957460040153, 48.834247088336824], [2.365777582657533, 48.83418742213277], [2.36561333632654, 48.83413230482083], [2.36543346110701, 48.83407263720103], [2.36526921550164, 48.834017519410935], [2.3650893397098143, 48.83395785126029], [2.364925096192239, 48.833902732999206], [2.364745221190393, 48.83384306432493], [2.364580977035971, 48.83378794557849], [2.36453872756449, 48.833773930202916], [2.364537313156331, 48.83377250258553], [2.364500837869585, 48.833760896703495], [2.364363213196897, 48.833715242837], [2.364168648869787, 48.83365026268677], [2.363988776967248, 48.83359059286872], [2.363794212209766, 48.8335256120949], [2.363614341166045, 48.8334659417071], [2.363419777340562, 48.83340096031701], [2.363314270597487, 48.83336595919969], [2.363299232425847, 48.83335721822537], [2.363271452321499, 48.833355292287614], [2.363197090277205, 48.83333062242777], [2.363027667306055, 48.83327191782782], [2.362847798015052, 48.83321224627373], [2.362678377184235, 48.83315354118009], [2.362498507339266, 48.83309386908715], [2.362329087286531, 48.83303516349254], [2.362149218249852, 48.83297549086803], [2.362070917630632, 48.83294835840124], [2.362041947811175, 48.83293914093867], [2.361995564425045, 48.83297081574161], [2.362005269985006, 48.83311915461691], [2.36200532108623, 48.833222615619135], [2.362013095130961, 48.83323035388764], [2.362205043626238, 48.83329043916917], [2.362404307805847, 48.833355793865714], [2.362596257213936, 48.83341587851269], [2.36279552236351, 48.833481232550184], [2.362987474046671, 48.833541316569864], [2.363186740166106, 48.833606669948246], [2.363191019613159, 48.833620578985524], [2.363061623743854, 48.83372018488174], [2.362934472678023, 48.833817993058766], [2.362805074466211, 48.833917598652626], [2.362677923799762, 48.83401540654695], [2.3625485246077, 48.83411501184567], [2.362421371616077, 48.83421281944275], [2.362291972806036, 48.834312424453664], [2.362164818862511, 48.83441023086143], [2.362035419061204, 48.83450983647655], [2.361908264154768, 48.83460764259436], [2.361778863373085, 48.83470724791429], [2.36165170750373, 48.83480505374213], [2.361522305752882, 48.83490465786762], [2.3613951489095832, 48.83500246430474], [2.361265744816146, 48.835102068127874], [2.36113858837221, 48.835199874282296], [2.361011430099822, 48.83529767938638], [2.360882024529284, 48.835397283667426], [2.360754866656257, 48.83549508848876], [2.360625460116433, 48.835594691575345], [2.360498299907107, 48.83569249699871], [2.360368893749278, 48.83579209979742], [2.360241732576984, 48.835889904930774], [2.36011232543873, 48.835989507434356], [2.359985163303457, 48.8360873122777], [2.359855755184971, 48.836186914486085], [2.35972859209776, 48.83628471814011], [2.359599182987887, 48.83638432095266], [2.359574009618185, 48.83639121832262]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 4, "roussel_fabien": 19.0, "nb_emargement": 987.0, "nb_procuration": 55.0, "nb_vote_blanc": 5.0, "jadot_yannick": 59.0, "le_pen_marine": 78.0, "nb_exprime": 979.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1280.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 988, "quartier_bv": "49", "geo_point_2d": [48.835263939908224, 2.365383230141178], "melenchon_jean_luc": 385.0, "poutou_philippe": 5.0, "macron_emmanuel": 274.0}, "geometry": {"type": "Point", "coordinates": [2.365383230141178, 48.835263939908224]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "43d17f47b80a76aa0e0f23e2938bf62f9a2681a1", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 40, "zemmour_eric": 78.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "19-62", "geo_shape": {"coordinates": [[[2.376162978727478, 48.886759186191064], [2.376204006470681, 48.88672398454957], [2.376355796659564, 48.88665278702936], [2.376506595038409, 48.88658079004606], [2.37665838303242, 48.886509592125876], [2.3768091819311152, 48.88643759565847], [2.376960969104875, 48.886366396446164], [2.377111765806892, 48.88629439958118], [2.377263553513078, 48.88622319998313], [2.377414349382068, 48.88615120272769], [2.377566134893497, 48.886080002729685], [2.377716931293099, 48.88600800509089], [2.377720262751616, 48.886005727328225], [2.377834143729909, 48.88589284861669], [2.377946711757154, 48.88578207368245], [2.378059279294737, 48.88567129953053], [2.378173160170425, 48.88555842046931], [2.378285726742837, 48.88544764608192], [2.378399606649296, 48.8853347658831], [2.378512172256542, 48.88522399126031], [2.378626049808803, 48.88511111171532], [2.378630662864856, 48.88510827580071], [2.378836815211983, 48.88503096657754], [2.379039651087961, 48.88496184164664], [2.379104235332145, 48.884942556896334], [2.3790880270288, 48.88491325645004], [2.378905455803014, 48.88486494022652], [2.378731115709963, 48.884817905702626], [2.378548545160354, 48.884769588031396], [2.378374205708792, 48.88472255298373], [2.378191637177502, 48.8846742356705], [2.378017298367531, 48.88462720009907], [2.3778347291380912, 48.88457888223031], [2.377660390969714, 48.884531846135104], [2.377477822416582, 48.88448352681866], [2.37730348488981, 48.8844364901997], [2.377120916991287, 48.88438817123412], [2.3769465801061163, 48.88434113409141], [2.376764014236648, 48.884292814584576], [2.376589677993083, 48.88424577691812], [2.376415340711741, 48.88419873808939], [2.376232775834306, 48.884150417766236], [2.376225911223865, 48.88414984870178], [2.376002455486166, 48.8841693121614], [2.375782806917349, 48.88419116208118], [2.375563158164315, 48.88421301159753], [2.375339700533412, 48.88423247471131], [2.375120051420216, 48.88425432341396], [2.3748965948208243, 48.884273784807874], [2.374887871487685, 48.884276969644006], [2.374769520090089, 48.88437135202198], [2.374631846772537, 48.88448195792973], [2.374513494434239, 48.88457634093632], [2.374375818667259, 48.88468694652193], [2.374257465399044, 48.88478132925784], [2.374119788546421, 48.88489193452847], [2.37400143435909, 48.88498631609441], [2.3738637564207172, 48.88509692104998], [2.373745401292644, 48.885191303244525], [2.373607723632021, 48.885301907892234], [2.373489367574007, 48.8853962898161], [2.373460833505177, 48.88542624363534], [2.373476324905951, 48.885440981010504], [2.373530637066469, 48.885467669402885], [2.373695235714576, 48.88554834297139], [2.373855022439048, 48.885626859739354], [2.374019620729344, 48.88570753284315], [2.374179409805721, 48.885786048274696], [2.374344009101729, 48.88586672092086], [2.374503797781342, 48.88594523680024], [2.3746683994466, 48.88602590899593], [2.374828189114588, 48.886104423531755], [2.37499279178557, 48.886185095269816], [2.37515258242034, 48.88626361026063], [2.375317184744196, 48.88634428063465], [2.375476977720193, 48.88642279518834], [2.375641581038987, 48.88650346600396], [2.375801375003357, 48.88658197921408], [2.375965979327881, 48.886662649572095], [2.376125772895411, 48.886741163230056], [2.376162407613483, 48.88675916253102], [2.376162978727478, 48.886759186191064]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 62, "roussel_fabien": 17.0, "nb_emargement": 1164.0, "nb_procuration": 59.0, "nb_vote_blanc": 7.0, "jadot_yannick": 88.0, "le_pen_marine": 50.0, "nb_exprime": 1150.0, "nb_vote_nul": 8.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1612.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1165, "quartier_bv": "73", "geo_point_2d": [48.88531670632417, 2.3761550620316747], "melenchon_jean_luc": 578.0, "poutou_philippe": 6.0, "macron_emmanuel": 249.0}, "geometry": {"type": "Point", "coordinates": [2.3761550620316747, 48.88531670632417]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2c96c3616cd279c1d1bdae3521ed6ba5da50424b", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 66, "zemmour_eric": 77.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-10", "geo_shape": {"coordinates": [[[2.321003804424643, 48.82759052669807], [2.3210174528308922, 48.82759737200354], [2.321057653169396, 48.82763682388572], [2.32115619728242, 48.827731286394446], [2.321271440025934, 48.827840348740885], [2.321369983537302, 48.82793481194792], [2.321485228539945, 48.8280438740763], [2.32158377282338, 48.82813833709002], [2.321628386885376, 48.82818055869273], [2.321636419017082, 48.82819066378495], [2.321648080187948, 48.82819656958423], [2.3217187107105532, 48.82826340986379], [2.321829551847832, 48.82836335933999], [2.321944797397174, 48.82847242097612], [2.322014132198872, 48.82853494030372], [2.322021220228849, 48.82854118708435], [2.322072789972678, 48.828532635851154], [2.322247116205003, 48.8284566840274], [2.322410644167036, 48.82838552380436], [2.3225741716709702, 48.82831436425255], [2.322748495092564, 48.82823841077621], [2.322912021673809, 48.82816725075307], [2.323086345473399, 48.828091296782006], [2.32324987113216, 48.82802013628759], [2.32342419257385, 48.82794418270573], [2.3235877173216988, 48.827873020840755], [2.3237620391413882, 48.82779706676419], [2.323925562966648, 48.82772590442791], [2.324099882440125, 48.82764994984124], [2.324263405342697, 48.827578787033715], [2.324437725194171, 48.82750283195235], [2.324601247174258, 48.82743166867359], [2.324775564679531, 48.82735571308215], [2.324939085737038, 48.82728454933209], [2.325052696746392, 48.82723504489639], [2.3250538235542, 48.82723123429811], [2.325040429677782, 48.82721637473902], [2.324881077906741, 48.827147162151725], [2.324685108013989, 48.82706192701788], [2.324525758560463, 48.82699271305599], [2.324329789817612, 48.82690747822749], [2.32417044130786, 48.82683826378265], [2.324000406658098, 48.826764251690996], [2.323841057661311, 48.82669503679077], [2.3236710253200012, 48.8266210233297], [2.323511677186592, 48.82655180888109], [2.32334164441792, 48.826477794934604], [2.323182298521619, 48.82640858004595], [2.323012266687658, 48.82633456562173], [2.322852921666389, 48.82626535028541], [2.322682890767136, 48.82619133538342], [2.322523546620897, 48.826122119599404], [2.322353516656351, 48.82604810421967], [2.322194172023083, 48.82597888798024], [2.3220241443553, 48.825904872130515], [2.321864800597063, 48.82583565544337], [2.3216947725019272, 48.825761639108215], [2.32153543098077, 48.82569242198111], [2.321505012180214, 48.82566100407345], [2.321502281200369, 48.825660997572626], [2.321373019499537, 48.825710490836116], [2.321246326748561, 48.825764047544034], [2.321117063198921, 48.825813539619276], [2.320990371296664, 48.82586709605889], [2.320987280244772, 48.82586806602614], [2.320811804571524, 48.825907824011985], [2.320601349515577, 48.82595350149644], [2.320425874622541, 48.825993258920654], [2.320215418883612, 48.8260389357225], [2.320039942046781, 48.82607869256971], [2.319829485624878, 48.82612436868889], [2.319654009556434, 48.826164125873845], [2.319640179567349, 48.82617750010148], [2.319655032735942, 48.82621066375442], [2.319692241622613, 48.826250178283004], [2.319789135212602, 48.82635382612298], [2.319884141806617, 48.82645471643905], [2.319981034796165, 48.82655836409695], [2.320076042134259, 48.82665925424219], [2.320172937235788, 48.82676290263276], [2.3202679453295962, 48.82686379170786], [2.320268195342349, 48.82686404855226], [2.320372513821137, 48.82696642765763], [2.320489400272615, 48.82708164294373], [2.3205937196211748, 48.82718402183626], [2.320710607049445, 48.827299236883825], [2.320814927255967, 48.82740161646284], [2.320931815672655, 48.82751683037255], [2.320995936440431, 48.82757975784876], [2.321003804424643, 48.82759052669807]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 10, "roussel_fabien": 27.0, "nb_emargement": 1102.0, "nb_procuration": 41.0, "nb_vote_blanc": 9.0, "jadot_yannick": 86.0, "le_pen_marine": 83.0, "nb_exprime": 1086.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1429.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "55", "geo_point_2d": [48.827030166283016, 2.32217879754579], "melenchon_jean_luc": 346.0, "poutou_philippe": 10.0, "macron_emmanuel": 337.0}, "geometry": {"type": "Point", "coordinates": [2.32217879754579, 48.827030166283016]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7ce081d0ef43818204193614da7b9f42c7454441", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 194, "zemmour_eric": 167.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "16-31", "geo_shape": {"coordinates": [[[2.270086994232211, 48.846877040474276], [2.27010238169095, 48.84689980919791], [2.270149987788014, 48.84704221851763], [2.270193134107411, 48.84717674102601], [2.27023627929944, 48.84731126259499], [2.270283886125665, 48.84745367270816], [2.270276071716164, 48.84746384095169], [2.270099649111983, 48.84751511778861], [2.269919092209857, 48.84756820654235], [2.269742668901022, 48.84761948284804], [2.269562111286256, 48.84767257015879], [2.269556627954603, 48.847686068550985], [2.269695565773342, 48.84781238646039], [2.269832189654302, 48.847936907523916], [2.2699711274472, 48.848063225076544], [2.270107754019433, 48.84818774490633], [2.270112068197441, 48.84820439690787], [2.270145843789591, 48.84820854667669], [2.270363876267866, 48.848242366156484], [2.270589433465676, 48.848274471052775], [2.270807466507635, 48.848308289722205], [2.271033024276527, 48.848340392881035], [2.271042916409451, 48.84834603641636], [2.271106685047644, 48.84845867658288], [2.271171123058429, 48.84857336323953], [2.271234892251905, 48.84868600331477], [2.271299332175902, 48.84880069078656], [2.2713631005747033, 48.848913329862874], [2.271427541061957, 48.84902801724219], [2.271491310003476, 48.84914065712643], [2.271555751066567, 48.849255343513995], [2.271619521925947, 48.849367983315226], [2.271683962177078, 48.8494826705013], [2.271700759673226, 48.84948890012566], [2.27173703798455, 48.84947346840723], [2.271862765484622, 48.849387480891956], [2.27200908902029, 48.84928619175377], [2.272134815632096, 48.84920020303887], [2.272281139475797, 48.84909891355922], [2.272406865174422, 48.84901292544326], [2.2725531866008533, 48.84891163560557], [2.272678911398664, 48.84882564718928], [2.272825233145685, 48.84872435611085], [2.272950957042889, 48.84863836739426], [2.273097276360115, 48.84853707685707], [2.273222999356519, 48.84845108784013], [2.273226818156018, 48.8484447057561], [2.273224424878635, 48.84834135050905], [2.273232230324475, 48.84823671894931], [2.273237747336632, 48.84822992627651], [2.273389422734427, 48.848156031995295], [2.273548995664584, 48.848078253445614], [2.273700670179502, 48.84800435875975], [2.273860240805547, 48.84792658067535], [2.273863106073629, 48.847914002445535], [2.27375124066372, 48.84781407390883], [2.273640355977139, 48.84771313132888], [2.273528491412998, 48.84761320346515], [2.273417608960421, 48.84751225976957], [2.27330574525457, 48.84741233167957], [2.273194863660835, 48.84731138775933], [2.273194657378409, 48.847298234170246], [2.273176670200454, 48.84728764907549], [2.2730071907770952, 48.84723581412487], [2.272813671403866, 48.84717613693208], [2.272644192704103, 48.847124301462095], [2.272450674160636, 48.84706462367616], [2.272281196184575, 48.847012787686765], [2.272087678470874, 48.84695310930773], [2.271918201218617, 48.84690127279893], [2.271724684334684, 48.846841593826824], [2.271555206443538, 48.84678975679035], [2.27136169175187, 48.84673007723341], [2.271192214584436, 48.846678239677544], [2.270998700722638, 48.84661855952753], [2.270829224278918, 48.84656672145228], [2.270816245291125, 48.84656726650737], [2.270662677727297, 48.84663096075591], [2.270491583781553, 48.84670442658752], [2.270338015416758, 48.8467681204115], [2.270166920550451, 48.84684158666905], [2.270109091435256, 48.846865571652394], [2.270086994232211, 48.846877040474276]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 31, "roussel_fabien": 7.0, "nb_emargement": 1128.0, "nb_procuration": 68.0, "nb_vote_blanc": 7.0, "jadot_yannick": 43.0, "le_pen_marine": 73.0, "nb_exprime": 1118.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1417.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1129, "quartier_bv": "61", "geo_point_2d": [48.8478538787108, 2.2717151487195224], "melenchon_jean_luc": 80.0, "poutou_philippe": 0.0, "macron_emmanuel": 524.0}, "geometry": {"type": "Point", "coordinates": [2.2717151487195224, 48.8478538787108]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c40adf1564620725afbeb17cbee5a190797f6b96", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 54, "zemmour_eric": 47.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "12-52", "geo_shape": {"coordinates": [[[2.37515814260252, 48.8474018569537], [2.37515598029721, 48.84737637588432], [2.375089626554904, 48.84729152397862], [2.374979306359755, 48.847141658985876], [2.374912953214741, 48.84705680606504], [2.374903659941071, 48.84705213211741], [2.374725993931937, 48.84702737344895], [2.374542499430163, 48.84700061175516], [2.374364833768251, 48.84697585254928], [2.374181340995856, 48.84694909030744], [2.374170686306773, 48.846940914279394], [2.374157426272927, 48.84681120530019], [2.374145082665351, 48.84668779659834], [2.374131824122134, 48.84655808759397], [2.374119480624334, 48.84643467976074], [2.374107137185095, 48.84631127191254], [2.37409387883211, 48.84618156286019], [2.374081535524144, 48.846058154082], [2.374068275936786, 48.84592844499022], [2.374081099688326, 48.84590508471161], [2.374062998575882, 48.845892352232035], [2.3740089285549892, 48.845886011251146], [2.373811831265455, 48.84586308581879], [2.37361438671657, 48.845839929805386], [2.373417291137352, 48.84581700372927], [2.373219846938458, 48.84579384706374], [2.373022750344501, 48.84577092032957], [2.372825306495506, 48.845747763011936], [2.372628211611984, 48.84572483563401], [2.372430768112796, 48.84570167766432], [2.372233672214655, 48.845678749628284], [2.372036229065383, 48.84565559100652], [2.371839133515115, 48.8456326623196], [2.371641692078348, 48.84560950305288], [2.371444596875958, 48.84558657371503], [2.371247154426547, 48.84556341378907], [2.371234646609215, 48.84556624938267], [2.371113149957023, 48.845654631058025], [2.37097107114635, 48.84575873489193], [2.370849573598431, 48.84584711628435], [2.370707493736496, 48.84595121978728], [2.370585995281983, 48.846039601796015], [2.370443914368775, 48.846143704967965], [2.370322416391873, 48.846232085801674], [2.370180334427388, 48.84633618864259], [2.370058834192249, 48.84642456918619], [2.369916751176476, 48.846528671696106], [2.369795250034707, 48.84661705285602], [2.369752477071936, 48.84664839229158], [2.369739275253223, 48.84668323220825], [2.369755582528949, 48.846693017686135], [2.369899162925082, 48.8466543623232], [2.36998909960556, 48.84663030778196], [2.370003430568987, 48.846632016480996], [2.370158667059802, 48.84672605044298], [2.37031634086883, 48.84682254057495], [2.370471578480905, 48.84691657501415], [2.370629252083109, 48.84701306471002], [2.37078449083828, 48.847107097827845], [2.370942165596168, 48.84720358709486], [2.371097405483478, 48.84729761979059], [2.37125508139726, 48.84739410862868], [2.371410322416613, 48.8474881409023], [2.371568000848826, 48.84758462931869], [2.371590333761062, 48.847580582602795], [2.371639974448521, 48.84746967204735], [2.371689590212953, 48.84735775944693], [2.371739230476925, 48.84724684882815], [2.371788845805231, 48.84713493706351], [2.371838485645725, 48.84702402638134], [2.371888100559592, 48.84691211365383], [2.371937739976611, 48.84680120290833], [2.371987355816971, 48.84668929102376], [2.372010511916514, 48.84668576388126], [2.37214373138332, 48.846782399328795], [2.372272833733808, 48.84687628706348], [2.372406054174064, 48.84697292220238], [2.372535156106604, 48.84706680963088], [2.372668377520312, 48.847163444461145], [2.37279748175994, 48.84725733159762], [2.372930704147112, 48.847353966119265], [2.373059809320505, 48.84744785385592], [2.373193032691967, 48.84754448716967], [2.373322137447323, 48.84763837460003], [2.373455361781445, 48.847735008504415], [2.373584468854845, 48.84782889474347], [2.373717694162452, 48.84792552833927], [2.373846800817817, 48.84801941427204], [2.373870566812814, 48.848037070698986], [2.373889976670057, 48.84803257566763], [2.374046222102916, 48.847955388478915], [2.374199979085533, 48.84787726802562], [2.374356223593601, 48.847800080421315], [2.374509979653393, 48.84772195955878], [2.374666223236571, 48.84764477153887], [2.374819977000023, 48.84756665115923], [2.374976221031834, 48.84748946183154], [2.375129973872377, 48.84741134104261], [2.37515814260252, 48.8474018569537]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 52, "roussel_fabien": 13.0, "nb_emargement": 1035.0, "nb_procuration": 71.0, "nb_vote_blanc": 12.0, "jadot_yannick": 102.0, "le_pen_marine": 42.0, "nb_exprime": 1020.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1248.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1035, "quartier_bv": "48", "geo_point_2d": [48.84665924676916, 2.3725525930141145], "melenchon_jean_luc": 292.0, "poutou_philippe": 8.0, "macron_emmanuel": 406.0}, "geometry": {"type": "Point", "coordinates": [2.3725525930141145, 48.84665924676916]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "90c024dac2c37e89bbbc1d6f269b988f7e87f048", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 37, "zemmour_eric": 78.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-7", "geo_shape": {"coordinates": [[[2.35489554894409, 48.83591008132773], [2.354895560690439, 48.835926305083376], [2.3549340303288933, 48.83605281163926], [2.35497166671144, 48.83617873987762], [2.355010136720899, 48.83630524638047], [2.355047773469574, 48.836431174566485], [2.355086243850045, 48.83655768101632], [2.355123879591384, 48.83668361004191], [2.355162350354095, 48.836810115539386], [2.3551999878239123, 48.836936044519945], [2.355238458946419, 48.837062550863706], [2.35527609543115, 48.83718847888523], [2.35531456692468, 48.83731498517595], [2.355352205137911, 48.837440913152435], [2.355390677002573, 48.837567419390155], [2.355428314219591, 48.83769334730691], [2.35542651866521, 48.83769983645089], [2.355365548776683, 48.83776457073077], [2.355295524500348, 48.83782815984888], [2.355284993199261, 48.8378818833761], [2.355304775596512, 48.83788697068713], [2.355383522494087, 48.83791226794601], [2.355576286992759, 48.837975352055466], [2.355748160756648, 48.83803056630344], [2.355940926134219, 48.83809364981862], [2.356112800674336, 48.8381488635368], [2.356305566930703, 48.83821194645768], [2.356477442236148, 48.8382671605454], [2.356670209371211, 48.83833024287199], [2.3568420868264752, 48.838385455537974], [2.356879922086128, 48.838397609731004], [2.356880167344967, 48.838397608351556], [2.356911104273371, 48.83834440903066], [2.35702350225649, 48.83824414941015], [2.357134391696559, 48.838145316058075], [2.357246788820871, 48.838045056209886], [2.357357677425198, 48.837946221733915], [2.357470073690711, 48.83784596165807], [2.357580962799295, 48.837747127864134], [2.357691850125095, 48.837648293951325], [2.357804245105413, 48.837548033534766], [2.357915131595278, 48.83744919849809], [2.358027525716817, 48.83734893785389], [2.358138412711055, 48.83725010349923], [2.358250805973822, 48.83714984262736], [2.3583616907589082, 48.837051008040824], [2.358474083162914, 48.836950746941305], [2.358584967112178, 48.836851911230895], [2.358697358657428, 48.83675164990375], [2.358703368759959, 48.83674861888375], [2.358848653351266, 48.83671153168954], [2.358998299226167, 48.836673080867264], [2.35914358339709, 48.836635993312356], [2.359293230188756, 48.83659754302512], [2.359295216188559, 48.83659690971652], [2.359449019575365, 48.83653727443251], [2.359585307052999, 48.83647180181407], [2.359585396034319, 48.8364717672152], [2.359600235200518, 48.83646656648158], [2.359597822236339, 48.83643996468447], [2.359588871692861, 48.83642684356837], [2.35956876177301, 48.83640074419822], [2.359574009618185, 48.83639121832262], [2.3595511882000553, 48.83637279761451], [2.359472022748061, 48.83627005454176], [2.359378311190892, 48.83614869754662], [2.35927903679195, 48.83601985491112], [2.359185326133884, 48.83589849773763], [2.359086052688454, 48.8357696549132], [2.358992342929478, 48.83564829756134], [2.358893069086399, 48.835519453641275], [2.358799360215341, 48.83539809701044], [2.35878265772339, 48.83537925025976], [2.358758729396256, 48.835382205013325], [2.358653145667418, 48.83546400211646], [2.35853937077282, 48.83555101919262], [2.358516565463668, 48.83554872941256], [2.358433953566196, 48.83542331020558], [2.358350986766323, 48.83529808958051], [2.358268375664457, 48.83517267023113], [2.358185408298861, 48.83504744945584], [2.358102799365965, 48.83492202907196], [2.35801983278607, 48.834796809053074], [2.357937224648755, 48.834671388526765], [2.357854258865522, 48.83454616836502], [2.357771651523778, 48.83442074769628], [2.357688686548173, 48.834295526492326], [2.3576660190154453, 48.834293159039156], [2.357577179790527, 48.834359198316605], [2.357488988119063, 48.834425625933704], [2.3574001484441123, 48.83449166507185], [2.357311957685126, 48.83455809255787], [2.357289205517344, 48.83455573087518], [2.357207200574593, 48.83443039938677], [2.357123228385491, 48.8343005721007], [2.357041224243098, 48.83417524046993], [2.356957254251764, 48.83404541214573], [2.356875249547651, 48.83392008036528], [2.356791280369607, 48.83379025279426], [2.356709277828203, 48.83366492087877], [2.356643860483125, 48.83356377670451], [2.356617542080424, 48.8335466343578], [2.3565982026215853, 48.83355037513014], [2.356494993477866, 48.83365371233597], [2.3563787012992172, 48.833768756284265], [2.356275492650265, 48.83387209328789], [2.356159199511116, 48.833987136100966], [2.356055989994662, 48.83409047289502], [2.35593969587279, 48.83420551637156], [2.355836485488822, 48.834308852956056], [2.355720190406438, 48.83442389529743], [2.355616979143832, 48.834527232571645], [2.355500683089914, 48.834642274677165], [2.355397470970793, 48.83474561084249], [2.355281173945232, 48.83486065271211], [2.355177959585148, 48.834963989559846], [2.355180977978793, 48.83497604297799], [2.355335946763621, 48.8350554894012], [2.355485146706118, 48.835132375507115], [2.355640117781591, 48.83521182153254], [2.355789318620193, 48.83528870724829], [2.355944289261711, 48.835368152861136], [2.356093490996317, 48.83544503818676], [2.35609484580686, 48.83544565075474], [2.356272624828938, 48.83551595162287], [2.356454228926006, 48.83558798609538], [2.356632007555786, 48.835658286413086], [2.356813612634375, 48.83573032123012], [2.356991393596596, 48.83580062101204], [2.357172999678703, 48.83587265437498], [2.3573507802488223, 48.83594295360651], [2.357532387312363, 48.83601498731392], [2.357710170214829, 48.83608528600964], [2.357891778271001, 48.836157319162275], [2.358069560781263, 48.83622761730757], [2.358251169840933, 48.83629964900609], [2.358256347064051, 48.83631137035235], [2.358190827738342, 48.836410301728364], [2.358100555509508, 48.83652984952069], [2.358084383099355, 48.83653443853939], [2.357887276161101, 48.836494696121584], [2.357689133695952, 48.836455538699276], [2.357492027357403, 48.83641579562732], [2.35729388548899, 48.83637663754758], [2.357096779750154, 48.83633689382153], [2.356898638478688, 48.83629773508425], [2.35670153335067, 48.83625798980482], [2.356503392664857, 48.83621883130939], [2.3563062894989, 48.83617908538318], [2.356108148058822, 48.836139925323636], [2.355911045481394, 48.836100179642614], [2.355712904638185, 48.83606101892564], [2.355515802660598, 48.83602127259053], [2.355317663776487, 48.83598211122338], [2.355120561036322, 48.83594236422688], [2.354922422749195, 48.83590320220225], [2.35489554894409, 48.83591008132773]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 7, "roussel_fabien": 34.0, "nb_emargement": 1253.0, "nb_procuration": 71.0, "nb_vote_blanc": 14.0, "jadot_yannick": 113.0, "le_pen_marine": 76.0, "nb_exprime": 1231.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1665.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1253, "quartier_bv": "49", "geo_point_2d": [48.836161966417926, 2.356963171059211], "melenchon_jean_luc": 454.0, "poutou_philippe": 7.0, "macron_emmanuel": 359.0}, "geometry": {"type": "Point", "coordinates": [2.356963171059211, 48.836161966417926]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b2cb19637d496df4bdfaecc325e03fc3f2ce0e5a", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 77, "zemmour_eric": 74.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "9-5", "geo_shape": {"coordinates": [[[2.339053792798781, 48.87594358301681], [2.33906686508871, 48.87597186918246], [2.339087040812426, 48.876031860206865], [2.339128193393223, 48.876143731944346], [2.339174553454359, 48.876281585452325], [2.339215707783716, 48.87639345714194], [2.339262068310274, 48.87653130968552], [2.339303221661645, 48.87664318131221], [2.339318957487404, 48.87667218900916], [2.339365519484728, 48.87667026238839], [2.339524702658742, 48.87665686829149], [2.33975820430897, 48.87663955629335], [2.339917387299548, 48.87662616077458], [2.340150890044966, 48.87660884801751], [2.3403100728293, 48.87659545287554], [2.34031065274747, 48.87659541739987], [2.340515831258148, 48.87658603557006], [2.340712418935308, 48.87657834719073], [2.340909006554325, 48.87657065848855], [2.341114184859679, 48.87656127563302], [2.341310772366421, 48.87655358537164], [2.341515950532135, 48.876544201827365], [2.34171253790364, 48.8765365118054], [2.341917715929708, 48.87652712757239], [2.342114303177546, 48.87651943689051], [2.342319481075312, 48.87651005106946], [2.342321575206181, 48.87651006167522], [2.342540273324619, 48.87651825802587], [2.34274002852684, 48.87652941221163], [2.342939783803272, 48.87654056696316], [2.343158482158421, 48.87654876128496], [2.343159499123002, 48.876548774959026], [2.343332878644353, 48.87654672687214], [2.3435293734614, 48.876542245787775], [2.343702751582983, 48.8765401971577], [2.343899246343672, 48.87653571546623], [2.344072625792349, 48.87653366630793], [2.344223141173595, 48.87653023258011], [2.344261940613009, 48.876536217955405], [2.344269087918095, 48.87653426237963], [2.34431506725492, 48.87653321289191], [2.344322449800312, 48.876534448545186], [2.344346715573894, 48.87653658427254], [2.34438213423256, 48.8765503231511], [2.344383588077732, 48.87655039946293], [2.344581967984694, 48.876553756591655], [2.344787213496206, 48.87655739199152], [2.344985593455813, 48.87656074845138], [2.3451908390230463, 48.87656438315918], [2.345389220398674, 48.87656773895762], [2.345594466032918, 48.87657137207413], [2.3457928460977833, 48.87657472719622], [2.345998091776424, 48.876578360519936], [2.346063506090334, 48.87659379343625], [2.346115444550245, 48.876591484363864], [2.346128094500193, 48.87658150788287], [2.346333338865656, 48.87658514062432], [2.346534240040525, 48.87658871333203], [2.346739485837269, 48.87659234448537], [2.346940387067782, 48.87659591651145], [2.347145632910051, 48.876599547867684], [2.347346534207469, 48.87660311831286], [2.34755178010633, 48.876606748972705], [2.347752681448101, 48.876610319635574], [2.347957927403648, 48.87661394959907], [2.348158828812391, 48.87661751868101], [2.34836407482461, 48.87662114794818], [2.348564976277597, 48.87662471724778], [2.348614986831003, 48.876622508117784], [2.348618135063789, 48.87660233876966], [2.348597774557991, 48.87656364110078], [2.348589513303225, 48.87655165657156], [2.348521644560923, 48.87655133760184], [2.348439682097648, 48.87650870729933], [2.348389974075188, 48.87648271124854], [2.348385397356209, 48.87647832096233], [2.3483238998943072, 48.87634791171755], [2.348257594908806, 48.87621404168748], [2.34819609943116, 48.876083633252456], [2.348129795110473, 48.875949763119515], [2.348068298912732, 48.87581935368092], [2.348001995257055, 48.87568548344511], [2.347988139731404, 48.875679302386544], [2.347821385942935, 48.87568654559464], [2.3476533852283312, 48.87569384472906], [2.347486631346853, 48.875701087470766], [2.347318631901794, 48.875708386142726], [2.347151877927111, 48.87571562841804], [2.346983877024882, 48.87572292661269], [2.346981840207564, 48.87572291460234], [2.346801036040035, 48.87571319110996], [2.346598933154441, 48.875701994892225], [2.346418129131019, 48.87569227082136], [2.346216027772175, 48.875681073964394], [2.346035222529507, 48.87567134930762], [2.345833121334265, 48.87566015180396], [2.345652317587782, 48.87565042747538], [2.345506803150533, 48.87564236443665], [2.345478336642737, 48.8756233335236], [2.345450870665176, 48.875626779791496], [2.345394282727626, 48.875623644646005], [2.345225952684747, 48.87565690870974], [2.345071908513055, 48.875686156917745], [2.344903576698898, 48.87571942051883], [2.344749533535869, 48.8757486674185], [2.344581201302589, 48.87578193146368], [2.344427157773658, 48.87581117794687], [2.344413821505052, 48.87580894380583], [2.344339571869868, 48.875760723036706], [2.3442697652167412, 48.875712981620566], [2.344261540750982, 48.87571029341898], [2.344064926379238, 48.87569507597125], [2.343876638107548, 48.87567968080032], [2.343688349958499, 48.87566428443376], [2.343491735927911, 48.875649066043955], [2.34330344662862, 48.875633669963364], [2.343106832826063, 48.87561845094098], [2.342918545114586, 48.875603054262044], [2.342721931539968, 48.87558783460708], [2.342719270548466, 48.875587801110235], [2.342515876858529, 48.87559817048588], [2.342310635838241, 48.875608847732], [2.342107241984765, 48.875619216413156], [2.34190200079778, 48.87562989295844], [2.341698606780778, 48.8756402609451], [2.341493365438476, 48.87565093589032], [2.341289971258063, 48.875661303182504], [2.341084729737617, 48.87567197832621], [2.340881335393698, 48.8756823449239], [2.340676095069948, 48.87569301937428], [2.340472699199173, 48.87570338526999], [2.34026745872016, 48.87571405812034], [2.340064062685904, 48.875724423321486], [2.339858822028861, 48.87573509637032], [2.339655425831131, 48.87574546087698], [2.339450185007457, 48.87575613322501], [2.3392467886462622, 48.87576649703718], [2.339041547667379, 48.8757771677851], [2.3390291428906282, 48.875787501022025], [2.339043776849104, 48.87585022872451], [2.339069962090019, 48.87592809038387], [2.339053792798781, 48.87594358301681]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 5, "roussel_fabien": 17.0, "nb_emargement": 1256.0, "nb_procuration": 106.0, "nb_vote_blanc": 11.0, "jadot_yannick": 117.0, "le_pen_marine": 45.0, "nb_exprime": 1242.0, "nb_vote_nul": 3.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1523.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1256, "quartier_bv": "35", "geo_point_2d": [48.87612987634869, 2.3437045630758186], "melenchon_jean_luc": 277.0, "poutou_philippe": 3.0, "macron_emmanuel": 557.0}, "geometry": {"type": "Point", "coordinates": [2.3437045630758186, 48.87612987634869]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cb2e75d86553924aa3c865d8c617522e066adfd7", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 16, "zemmour_eric": 35.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "18-68", "geo_shape": {"coordinates": [[[2.353354576214497, 48.89029098387023], [2.353337368974973, 48.89027802702005], [2.353360393048771, 48.89014963710544], [2.3533787011915033, 48.890043302803335], [2.353397009259459, 48.88993696848808], [2.353420031682827, 48.8898085776155], [2.353425694472735, 48.889802294039384], [2.353513460493081, 48.8897613207752], [2.353600936482613, 48.88971579530048], [2.353606101785714, 48.88970926531312], [2.353618584169805, 48.88956967035759], [2.353630954573598, 48.88943414691929], [2.353643436813946, 48.88929455282545], [2.353655807087796, 48.88915902935063], [2.353668178649704, 48.889023506764396], [2.353680660702985, 48.88888391171521], [2.3536930307824, 48.88874838818583], [2.3537055127031072, 48.88860879309907], [2.353705443641754, 48.88860721531032], [2.353688449519829, 48.88851175286472], [2.353674644151187, 48.88838243364002], [2.35368425806284, 48.88837633055246], [2.353681015734192, 48.888353750781626], [2.353680985703536, 48.888353313547505], [2.353677528871377, 48.88824781393359], [2.353673152222151, 48.88813808251525], [2.353669695409091, 48.88803258377968], [2.353665318805624, 48.88792285144032], [2.353663651115189, 48.88791877209086], [2.35362213373665, 48.88786609661053], [2.353552752322697, 48.887782445395594], [2.353510439422695, 48.887777276049924], [2.353491938305706, 48.88781905685201], [2.353498995605674, 48.88795098195088], [2.353500560343358, 48.888087251696156], [2.353507617701519, 48.888219176762284], [2.353509182469826, 48.88835544647422], [2.353493430329141, 48.88836439874292], [2.353312685951913, 48.88834568981344], [2.35313390278946, 48.88832599295426], [2.352953158674722, 48.88830728348142], [2.352774374416442, 48.888287586077396], [2.3525936305642, 48.8882688760612], [2.352414846573792, 48.888249178119665], [2.352234102984155, 48.888230467560135], [2.352055319261628, 48.88821076908111], [2.351874575945592, 48.888192057078975], [2.351695793854645, 48.88817235806982], [2.351682051538238, 48.88817638908401], [2.351641161144296, 48.888218623933675], [2.351590902492141, 48.88826933364229], [2.351536947790044, 48.888279538379365], [2.351532672877681, 48.8882982256931], [2.351554030749232, 48.888343014448914], [2.35156914027127, 48.88837189357145], [2.351569873688308, 48.88837443543933], [2.351578552566278, 48.88850586127329], [2.351590785744235, 48.888635951054916], [2.35159946472967, 48.888767375956775], [2.351611699373821, 48.888897466611965], [2.351620378455732, 48.88902889148101], [2.351632611861062, 48.88915898119643], [2.351632571080427, 48.88916017527878], [2.35161501395253, 48.88928939140236], [2.351595627169498, 48.88941757057236], [2.351578071226856, 48.889546786667644], [2.351558682882122, 48.88967496669348], [2.351541126760914, 48.88980418275301], [2.351521739604325, 48.88993236185097], [2.351504183304756, 48.890061577874775], [2.351484794586446, 48.890189757828516], [2.351467238108304, 48.890318973816626], [2.35144785057815, 48.89044715284246], [2.351447968323228, 48.890449524996654], [2.351480280542439, 48.89057725556461], [2.351519798690968, 48.890725298580634], [2.351552111257524, 48.89085302909708], [2.351591629819688, 48.891001072052205], [2.351609433839987, 48.891071447865535], [2.351620488600371, 48.89108243809732], [2.351678858656475, 48.891078001215455], [2.35183915700031, 48.891004695519605], [2.352000521329679, 48.890931067122374], [2.352160817404546, 48.89085776097873], [2.352322180823709, 48.89078413213821], [2.352482477357129, 48.89071082556155], [2.352643839866083, 48.8906371962777], [2.352804134130648, 48.89056388925328], [2.352965495740575, 48.89049025862687], [2.353125790463586, 48.89041695116942], [2.353287151152132, 48.890343320998966], [2.353337272335008, 48.89032039902915], [2.353354576214497, 48.89029098387023]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 68, "roussel_fabien": 13.0, "nb_emargement": 1027.0, "nb_procuration": 63.0, "nb_vote_blanc": 6.0, "jadot_yannick": 87.0, "le_pen_marine": 43.0, "nb_exprime": 1016.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1350.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1028, "quartier_bv": "71", "geo_point_2d": [48.889448816456365, 2.3525149819238287], "melenchon_jean_luc": 593.0, "poutou_philippe": 8.0, "macron_emmanuel": 188.0}, "geometry": {"type": "Point", "coordinates": [2.3525149819238287, 48.889448816456365]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c252a4d93e978479c9f077972c10fd7e991903b6", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 28, "zemmour_eric": 49.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "3-3", "geo_shape": {"coordinates": [[[2.365297658844149, 48.86541717152226], [2.365330098298347, 48.865418710551516], [2.365342787949257, 48.86540987165126], [2.36534873949558, 48.865401592384174], [2.365418643096814, 48.86528481194806], [2.36549380614037, 48.8651633845591], [2.365563710459664, 48.86504660402038], [2.365638872821407, 48.8649251765142], [2.365708776495979, 48.864808395865616], [2.365783936812843, 48.864686968234984], [2.365853839831655, 48.864570188375836], [2.365929000840751, 48.86444875973591], [2.365998903214757, 48.86433197976692], [2.366074063542067, 48.86421055100976], [2.3661439652712772, 48.864093770930936], [2.366219123553748, 48.86397234204935], [2.3662890246381743, 48.86385556186067], [2.366364183590998, 48.863734133768354], [2.366434084041582, 48.86361735257057], [2.366509242312646, 48.86349592436106], [2.366579140755415, 48.86337914304624], [2.366654298344733, 48.863257714719516], [2.366694558778695, 48.8631904517584], [2.366695542280765, 48.86317974127326], [2.366616269831988, 48.863167626681296], [2.366543701137783, 48.863129392781985], [2.366475439619336, 48.863093427300726], [2.366462443911668, 48.86309196362252], [2.366453236300161, 48.86309408319958], [2.366444080635512, 48.863096190460126], [2.366431151300017, 48.86309476130502], [2.366282135746757, 48.863017233050336], [2.366131046882579, 48.86293862430018], [2.365982032222511, 48.86286109566092], [2.365830942900935, 48.86278248651359], [2.365681930508028, 48.862704956597696], [2.365530842092082, 48.86262634706043], [2.365381830581307, 48.8625488176592], [2.365230743070983, 48.86247020773205], [2.365081732453485, 48.86239267794625], [2.364930645848782, 48.862314067629114], [2.364781636124456, 48.862236537458756], [2.36463055042537, 48.862157926751706], [2.364608641965757, 48.86216360671708], [2.36458059173493, 48.86228270020309], [2.364553225655877, 48.86239888702161], [2.364525173808675, 48.86251798046214], [2.364497807482342, 48.86263416724335], [2.364481492213431, 48.8626415811438], [2.364254421557253, 48.862609581535324], [2.364031329987103, 48.862578143145285], [2.363804259872939, 48.862546143580126], [2.363581170220094, 48.86251470345712], [2.363570064211847, 48.862516344159296], [2.363407934494315, 48.86259780702353], [2.363244064422699, 48.862680541072706], [2.363081933673445, 48.86276200438252], [2.362918062578757, 48.86284473707372], [2.362755930808768, 48.86292619992986], [2.362592058679812, 48.863008932162465], [2.362570523315342, 48.863011811381526], [2.36256739111036, 48.86302672382564], [2.362577175862297, 48.86309041269199], [2.362582827743088, 48.863146857802185], [2.362585903662195, 48.863151697371514], [2.362688741491609, 48.8632333704531], [2.362793632959777, 48.8633166758914], [2.362896470077362, 48.86339834877505], [2.363001362209856, 48.86348165401893], [2.363104199978856, 48.86356332671192], [2.363209092775683, 48.86364663176129], [2.363206983820592, 48.86365947397047], [2.363098398928118, 48.863715268863956], [2.362935637066064, 48.8637989013752], [2.362827051592377, 48.86385469601547], [2.36278069908804, 48.86387851388036], [2.362764268569242, 48.86388972575837], [2.36277898363359, 48.863902192575466], [2.362893239243386, 48.86400104342645], [2.36300837473961, 48.86410065518874], [2.363122631209028, 48.86419950670229], [2.363237767582475, 48.864299118226064], [2.363352024933311, 48.86439796860363], [2.363467160820915, 48.864497579881615], [2.363474430541425, 48.86450080582016], [2.363650341696995, 48.86453229378189], [2.3638264108385503, 48.8645638102025], [2.364002322419607, 48.86459529764509], [2.3641783919869273, 48.8646268135461], [2.364354303993463, 48.86465830046958], [2.364530375349823, 48.864689815858185], [2.364538150625514, 48.864693510275316], [2.364654576624737, 48.864808848640216], [2.364773656488664, 48.86492681535365], [2.364890082167603, 48.865042153457935], [2.365009163087242, 48.86516012081149], [2.365125591171978, 48.865275458669565], [2.365244671806072, 48.86539342485743], [2.365297658844149, 48.86541717152226]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 3, "roussel_fabien": 19.0, "nb_emargement": 966.0, "nb_procuration": 75.0, "nb_vote_blanc": 5.0, "jadot_yannick": 104.0, "le_pen_marine": 25.0, "nb_exprime": 956.0, "nb_vote_nul": 6.0, "arr_bv": "03", "arthaud_nathalie": 1, "nb_inscrit": 1278.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 967, "quartier_bv": "10", "geo_point_2d": [48.86364253635951, 2.3646622591031514], "melenchon_jean_luc": 222.0, "poutou_philippe": 4.0, "macron_emmanuel": 468.0}, "geometry": {"type": "Point", "coordinates": [2.3646622591031514, 48.86364253635951]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4a38f492bf7a13abf0d7bbff1de1b5fc94b717e8", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 69, "zemmour_eric": 93.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "1-8", "geo_shape": {"coordinates": [[[2.333660255123128, 48.86750790926318], [2.333670854284221, 48.867510669901144], [2.333853524284858, 48.86746994996665], [2.334048350535794, 48.86742458752731], [2.3342310199278993, 48.867383867912785], [2.33442584552817, 48.867338504855496], [2.334608514334827, 48.867297783762425], [2.334803339284424, 48.86725242008712], [2.334986007482652, 48.86721169931406], [2.335180833144708, 48.867166335028315], [2.335363500757466, 48.86712561277665], [2.335558324405699, 48.86708024786535], [2.3357409914101313, 48.867039525933684], [2.3358215315786133, 48.86702077190289], [2.335860769784214, 48.86701288475083], [2.335869510215408, 48.866997843153506], [2.335983792969659, 48.86697123160864], [2.336182002558481, 48.86692590515199], [2.336376826110175, 48.86688053890776], [2.336575035012047, 48.8668352117965], [2.336769857882283, 48.866789844908816], [2.336968066096996, 48.866744517142976], [2.337162888285769, 48.8666991496118], [2.337235805226841, 48.866682473964026], [2.337253120630074, 48.8666726105074], [2.337225433667806, 48.86664489408301], [2.337211556857025, 48.86662610277924], [2.337192746560636, 48.86660121177859], [2.3371758256093242, 48.8665967886266], [2.336972062813853, 48.86664642440533], [2.336767285357332, 48.8666961711292], [2.336563521783873, 48.86674580620796], [2.33635874354656, 48.866795552228325], [2.336154979195224, 48.86684518660706], [2.335950200165661, 48.86689493282331], [2.335932514179508, 48.866889248868006], [2.335874634303125, 48.86677063964119], [2.335819206142221, 48.8666564876392], [2.33576132815702, 48.86653787744092], [2.335705900492059, 48.86642372536242], [2.335650471695426, 48.866309574138185], [2.335592594479831, 48.866190963821104], [2.335591942939597, 48.86618796628485], [2.335595047729558, 48.866138843310765], [2.3355971437206122, 48.86608737194051], [2.335596892810932, 48.866085240898585], [2.335559907745123, 48.86596269946326], [2.335523478234393, 48.865840113421086], [2.335486493515202, 48.86571757193592], [2.335450064348638, 48.865594985844226], [2.335413078613172, 48.865472444301695], [2.335376649790673, 48.865349858160556], [2.335339665765011, 48.865227316575755], [2.33530323728667, 48.8651047303851], [2.3352662536077142, 48.864982188750474], [2.335229825473525, 48.86485960251034], [2.335192842152745, 48.86473705992663], [2.335156414351228, 48.86461447453631], [2.33515682633379, 48.864609963905274], [2.33521709391627, 48.8644876305432], [2.335279813701729, 48.864359832839405], [2.335340080706047, 48.86423749938781], [2.335402799888673, 48.86410970159067], [2.3353935413909452, 48.864098277938], [2.335244951389636, 48.86407055593257], [2.3351020592898513, 48.86404433942607], [2.334953469597592, 48.864016617057416], [2.334810579166972, 48.86399039930993], [2.334802925350994, 48.863986758482426], [2.334671376400001, 48.863855505925585], [2.33452347348319, 48.86371058752474], [2.3345263349875, 48.86369850451988], [2.334658355822006, 48.86362977028088], [2.334788720585645, 48.86356131987615], [2.334920740726434, 48.86349258533922], [2.3350511048020453, 48.86342413464018], [2.335183124248915, 48.863355399805265], [2.335313487636502, 48.86328694881198], [2.335318043551066, 48.863277301634554], [2.335267419010543, 48.86316716517363], [2.33521881000083, 48.86305975500521], [2.335168184518456, 48.8629496184731], [2.335119575916313, 48.86284220824329], [2.335097130579169, 48.86278180386074], [2.33508902766346, 48.86278185687093], [2.335022723161242, 48.86280327876856], [2.334840325454478, 48.862862033998695], [2.334662859438943, 48.862919369317176], [2.334480460908404, 48.862978124891995], [2.33430299410138, 48.86303545967083], [2.334120593395518, 48.86309421468346], [2.333943125797004, 48.86315154892264], [2.33376072564188, 48.86321030338825], [2.333583257251778, 48.86326763708781], [2.333400856295873, 48.863326390099495], [2.33322338710288, 48.86338372415869], [2.333040985334695, 48.863442476615774], [2.332863513998689, 48.86349980922847], [2.332686043623595, 48.863557142481895], [2.332503640642261, 48.8636158941108], [2.332326169487207, 48.86367322592529], [2.332143765682073, 48.86373197789887], [2.33196629373544, 48.863789309173676], [2.331783889118027, 48.86384806059265], [2.33160641501697, 48.86390539132019], [2.33142400958728, 48.86396414218448], [2.331358178416079, 48.863985408203604], [2.331349871743551, 48.863993674460204], [2.331385177859107, 48.8640406386606], [2.331463256037634, 48.86416028148841], [2.331544377550518, 48.86428296934954], [2.331622456457846, 48.86440261204733], [2.33170357734839, 48.864525300665335], [2.33178165699616, 48.86464494233379], [2.331862780001943, 48.864767630824666], [2.331940860378529, 48.864887272363106], [2.332021982773619, 48.86500996071157], [2.332100065230478, 48.86512960302685], [2.332181188389388, 48.865252290341274], [2.332259270212001, 48.86537193251887], [2.332340395474771, 48.86549462060547], [2.332418478037757, 48.86561426175373], [2.332499602689743, 48.86573694969789], [2.332577685981681, 48.8658565907161], [2.332658812748987, 48.865979278533125], [2.3327368967582682, 48.866098920320525], [2.332818022926317, 48.86622160709588], [2.332896107664471, 48.86634124875323], [2.332977235936557, 48.86646393630068], [2.3330553214150083, 48.866583576928676], [2.333136449076325, 48.86670626433373], [2.33319545159268, 48.86678513464266], [2.333196083712784, 48.86678612474551], [2.333214957677535, 48.866821447334615], [2.333296086096769, 48.86694413370584], [2.333358931887894, 48.86704208063394], [2.333440062352945, 48.86716476689065], [2.333502908680949, 48.86726271372363], [2.333584038465558, 48.86738539985072], [2.3336468853303423, 48.86748334658858], [2.333660255123128, 48.86750790926318]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 8, "roussel_fabien": 10.0, "nb_emargement": 750.0, "nb_procuration": 41.0, "nb_vote_blanc": 10.0, "jadot_yannick": 42.0, "le_pen_marine": 38.0, "nb_exprime": 738.0, "nb_vote_nul": 2.0, "arr_bv": "01", "arthaud_nathalie": 1, "nb_inscrit": 959.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 750, "quartier_bv": "03", "geo_point_2d": [48.865187854192285, 2.333897729210184], "melenchon_jean_luc": 111.0, "poutou_philippe": 3.0, "macron_emmanuel": 342.0}, "geometry": {"type": "Point", "coordinates": [2.333897729210184, 48.865187854192285]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8c4775c69381a66a1b455133e4c853cdeb51eb80", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 190, "zemmour_eric": 168.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-38", "geo_shape": {"coordinates": [[[2.262102448924176, 48.8450665842468], [2.262129177525273, 48.84505837867379], [2.262319089477316, 48.845048820378764], [2.262512519809812, 48.84503858016502], [2.26270243299467, 48.84502902037044], [2.262895863178354, 48.84501877953672], [2.263085774845476, 48.84500922002433], [2.263279204893054, 48.84499897767137], [2.263469116417803, 48.8449894175503], [2.263662546303737, 48.844979175476645], [2.263674509881078, 48.8449676310575], [2.263619870520073, 48.84484719564732], [2.263566362798905, 48.84472817827467], [2.263511723938854, 48.844607742789286], [2.263458215360675, 48.84448872443503], [2.263403577001576, 48.844368288874385], [2.2633500689035, 48.844249271345504], [2.263295432407867, 48.844128835717974], [2.2632419248025952, 48.844009818115175], [2.263187287445373, 48.84388938240405], [2.263133780345716, 48.84377036382802], [2.26314284954896, 48.84375920723853], [2.263274443896273, 48.84373257522609], [2.2634982439886953, 48.84369189420029], [2.263629837997148, 48.84366526089604], [2.263645541412943, 48.84366925902486], [2.263741273274304, 48.84377541274234], [2.263837231251171, 48.843881117177666], [2.263932963904815, 48.84398726982229], [2.264028922660533, 48.84409297408378], [2.264124656081064, 48.844199127454154], [2.264220615615643, 48.844304831541784], [2.264316351190897, 48.8444109838477], [2.264412311504346, 48.84451668776153], [2.264508046484086, 48.84462284078475], [2.264604007576412, 48.84472854452473], [2.264699743348456, 48.84483469647511], [2.264795705219666, 48.844940400041224], [2.2648185187986822, 48.84494975068088], [2.264837559656677, 48.84494390577213], [2.264973312566341, 48.84486768105393], [2.26511376409443, 48.84478928428505], [2.265249516209947, 48.84471305834361], [2.265389966905863, 48.844634661239546], [2.265525719564515, 48.84455843588176], [2.265666169428362, 48.84448003844263], [2.265801919930432, 48.844403811853205], [2.265942368962012, 48.84432541407893], [2.265968905756256, 48.84432524144052], [2.2659856978187563, 48.84430876189319], [2.265991218138645, 48.84430689989239], [2.266179049734241, 48.84427616145108], [2.266362965584749, 48.8442446989926], [2.266550796749674, 48.844213959066614], [2.266734712156259, 48.84418249603489], [2.266922542865089, 48.84415175642287], [2.267106457827746, 48.8441202928179], [2.267294289468301, 48.84408955172953], [2.267478202624499, 48.84405808754299], [2.267486256711885, 48.844054233594676], [2.267587789090364, 48.84394962988207], [2.267688067405451, 48.84384493295911], [2.267789598971142, 48.84374032905558], [2.267889876478117, 48.84363563194386], [2.267991407231028, 48.84353102784945], [2.268091683929902, 48.84342633054892], [2.2681932138699388, 48.8433217262636], [2.268293489760719, 48.84321702877429], [2.268393766611123, 48.84311233119941], [2.268495293970789, 48.84300772661997], [2.268595570013106, 48.84290302885626], [2.268697096560028, 48.84279842408593], [2.268713411848068, 48.84278047885027], [2.26868719777123, 48.84276382774022], [2.268684344268996, 48.84276268068654], [2.268543994034833, 48.842720850876134], [2.268412913676837, 48.84268367876951], [2.268281834880826, 48.84264650562706], [2.268141485282657, 48.84260467534012], [2.2681288239632043, 48.84260517797404], [2.267966677786429, 48.84266993796884], [2.267805342737455, 48.842733768260956], [2.267643195758792, 48.842798527809876], [2.2674818599156, 48.84286235765842], [2.267319712147487, 48.84292711586214], [2.267158375510179, 48.84299094526704], [2.266996226927437, 48.84305570392413], [2.266834889495908, 48.84311953288544], [2.266672738748777, 48.843184291088264], [2.266511401885425, 48.84324811961428], [2.266349250336197, 48.84331287737122], [2.26618791267873, 48.843376705453615], [2.266180339160161, 48.84337797747408], [2.26598457432562, 48.84337258180628], [2.2657967066387448, 48.84336818941692], [2.265608840345939, 48.8433637967409], [2.265413075623937, 48.84335840013785], [2.265403187673353, 48.843355179931514], [2.265303963524924, 48.84327677324051], [2.265210879969089, 48.843196885139925], [2.265111656398649, 48.84311847917756], [2.265018573420399, 48.843038590916], [2.2650160133386, 48.843035483150295], [2.264958474728062, 48.84291272614841], [2.264901981918737, 48.8427922572343], [2.264844443857981, 48.842669499251514], [2.264787951563178, 48.84254903115657], [2.264730414039513, 48.84242627309221], [2.26467392227191, 48.8423058049172], [2.2646163866477, 48.842183046779574], [2.264559895419974, 48.842062577625136], [2.264502358957778, 48.841939820296886], [2.264445868257239, 48.84181935106235], [2.264389377805148, 48.84169888268747], [2.26433184215875, 48.84157612433784], [2.264325697943018, 48.8415565620836], [2.264305372741892, 48.8415515445009], [2.2641272118141202, 48.84153836381292], [2.263962175506601, 48.8415254407902], [2.263797137905865, 48.841512518430605], [2.263618977252733, 48.84149933608593], [2.263609809320889, 48.84150083196645], [2.263452640210009, 48.84157124033241], [2.263277127287386, 48.84165201140586], [2.263119958633569, 48.84172241933357], [2.262944444699116, 48.841803189008665], [2.262787275140008, 48.84187359648982], [2.262660915787774, 48.84193174456525], [2.262640083250054, 48.84193465783358], [2.262626426743275, 48.84194666481225], [2.262577271120096, 48.8419692849991], [2.262423717959929, 48.84203999579456], [2.262248201877082, 48.842120764425154], [2.262094647824186, 48.84219147478862], [2.261919130721273, 48.842272242925496], [2.261765575775644, 48.84234295285694], [2.261590057652662, 48.842423720500044], [2.261480538749221, 48.8424741521275], [2.261452328896747, 48.84249399168746], [2.261479199834668, 48.84251931120447], [2.261576050937796, 48.84263881499089], [2.26167449264391, 48.842769089479134], [2.261675462977914, 48.84277542524376], [2.261622180234736, 48.84290701436831], [2.261567508632087, 48.843037553410404], [2.2615142267108608, 48.843169142464404], [2.261459554562857, 48.843299681426494], [2.261406270738584, 48.84343127039303], [2.261351598045314, 48.84356180927512], [2.261298315055636, 48.84369339727182], [2.261243641816997, 48.843823936073896], [2.261244384636073, 48.84383007436845], [2.261324273423123, 48.84394532466186], [2.261405771647067, 48.844065778688396], [2.261485662514825, 48.844181028858124], [2.261567161467509, 48.844301483648515], [2.26164705305347, 48.844416733686124], [2.261728552760591, 48.844537187441844], [2.261808445064661, 48.844652437347285], [2.261889945500646, 48.844772891866874], [2.261969837160498, 48.84488814163179], [2.262051339713273, 48.845008595125115], [2.262078092419102, 48.84504718840547], [2.262102448924176, 48.8450665842468]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 38, "roussel_fabien": 12.0, "nb_emargement": 1265.0, "nb_procuration": 68.0, "nb_vote_blanc": 12.0, "jadot_yannick": 64.0, "le_pen_marine": 61.0, "nb_exprime": 1251.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1581.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1265, "quartier_bv": "61", "geo_point_2d": [48.84340530708204, 2.2641612673227], "melenchon_jean_luc": 118.0, "poutou_philippe": 2.0, "macron_emmanuel": 601.0}, "geometry": {"type": "Point", "coordinates": [2.2641612673227, 48.84340530708204]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6ebba03692abe0d4e868436e4e6793f13a471661", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 55, "zemmour_eric": 84.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-27", "geo_shape": {"coordinates": [[[2.373061641202734, 48.828379050769165], [2.373042379212412, 48.82839144836472], [2.372939860905534, 48.82850083392003], [2.372836402840129, 48.8286115293325], [2.372733883668301, 48.828720914689775], [2.372630424728901, 48.828831609902345], [2.372527904681188, 48.82894099596092], [2.372424444867681, 48.82905169097359], [2.372321923965922, 48.82916107593481], [2.372218463278197, 48.82927177074755], [2.372115942873613, 48.82938115551791], [2.37201247994961, 48.82949185012357], [2.371909958680043, 48.82960123469587], [2.371806494871165, 48.829711930000954], [2.371788921215388, 48.82971528678073], [2.37166914208064, 48.829676633045835], [2.371546426350695, 48.829636834147514], [2.371533312908143, 48.82963756837731], [2.371519279614275, 48.82965381192367], [2.371493605673423, 48.82969212422001], [2.371454108105155, 48.82973911294182], [2.3714536276705243, 48.82974721195126], [2.37153800155532, 48.829869225124554], [2.37162131251895, 48.829991189468444], [2.371705685829, 48.830113202489706], [2.371788997563884, 48.830235167589606], [2.3718733730342763, 48.830357179573866], [2.37195668418929, 48.830479144523245], [2.372041060446918, 48.83060115636262], [2.372124373746332, 48.83072312117578], [2.372208749429121, 48.83084513286318], [2.372292063510761, 48.83096709753299], [2.372376441343103, 48.831089109082626], [2.372459756206983, 48.83121107360904], [2.3725441334537702, 48.83133308590601], [2.372627449110621, 48.831455049389774], [2.372630776716023, 48.83145802756934], [2.3727812867407, 48.831546608029456], [2.372940290452956, 48.831638296973736], [2.3729456214636713, 48.831656834844736], [2.372974774397852, 48.8316606670054], [2.373015529223083, 48.83166602325356], [2.373016096176936, 48.83166577620095], [2.373169947653726, 48.831602440505584], [2.373324484650698, 48.8315316830085], [2.373474362253916, 48.83146160600727], [2.373628899771615, 48.83139084901441], [2.3737787765607212, 48.83132077162291], [2.373933313247751, 48.83125001422784], [2.374083189222647, 48.831179936446055], [2.374237725089805, 48.831109177749454], [2.374387600250694, 48.83103909957744], [2.374542135276389, 48.830968341377925], [2.374546347862347, 48.830965235399745], [2.374636363746339, 48.8308608251957], [2.374725192341348, 48.830752587286014], [2.37481520749997, 48.83064817692757], [2.374904034010021, 48.83053993795811], [2.374994048443279, 48.830435527445246], [2.375082875581763, 48.83032728832955], [2.375172889289663, 48.83022287766227], [2.375261714332429, 48.8301146383861], [2.375351727314983, 48.83001022756443], [2.375440552986186, 48.82990198814196], [2.375530565243396, 48.82979757716595], [2.375619388808137, 48.82968933848234], [2.375615283351609, 48.82967771336795], [2.375434886062918, 48.82959340155553], [2.37529226014122, 48.8295263253455], [2.375149633224385, 48.82945924895424], [2.374969238806877, 48.82937493643014], [2.374826612719927, 48.829307859644594], [2.374646217997311, 48.82922354571551], [2.374546112621279, 48.82917646538546], [2.374511043894019, 48.829151484517155], [2.374502250633643, 48.82915252227034], [2.374459733502167, 48.829132526318084], [2.3744578055534022, 48.82913142619607], [2.374315418618712, 48.82903340985733], [2.374166207245314, 48.82893405893384], [2.3740238213979072, 48.82883604223073], [2.373874612507225, 48.828736690933084], [2.373732227747089, 48.82863867386553], [2.37358301861494, 48.82853932217949], [2.373440634941967, 48.82844130474757], [2.373291428292508, 48.82834195268733], [2.373270418024573, 48.828343300467495], [2.373227938576361, 48.82838541308588], [2.373186801372514, 48.828423174366485], [2.373168435432681, 48.82842551270605], [2.37311806379174, 48.82840437156045], [2.373082392469513, 48.82838564941823], [2.373061641202734, 48.828379050769165]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 27, "roussel_fabien": 37.0, "nb_emargement": 1451.0, "nb_procuration": 60.0, "nb_vote_blanc": 24.0, "jadot_yannick": 113.0, "le_pen_marine": 77.0, "nb_exprime": 1422.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1826.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1454, "quartier_bv": "50", "geo_point_2d": [48.83002147233658, 2.373452936300069], "melenchon_jean_luc": 548.0, "poutou_philippe": 14.0, "macron_emmanuel": 416.0}, "geometry": {"type": "Point", "coordinates": [2.373452936300069, 48.83002147233658]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4220772f4a637e414f800c60a3df70be2a453cec", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 132, "zemmour_eric": 94.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-54", "geo_shape": {"coordinates": [[[2.294327533468581, 48.83294358921089], [2.294313830805521, 48.83295167199873], [2.294278262994268, 48.832958538427], [2.294234355576718, 48.83296667322018], [2.2942265385847183, 48.83298015550524], [2.294336695647159, 48.83309460170315], [2.29444309513073, 48.83320588320035], [2.294553254519921, 48.833320328284465], [2.294659654914347, 48.83343161046585], [2.29476981525599, 48.83354605532747], [2.294876215211303, 48.83365733728575], [2.294986376505406, 48.83377178192482], [2.295092778758079, 48.83388306277678], [2.295199181452876, 48.8339943444223], [2.295309342805958, 48.83410878872142], [2.295326756765869, 48.83412700113005], [2.295324695367848, 48.83413356341528], [2.295346186368095, 48.83414637031492], [2.2954351760939, 48.83423943932067], [2.295532857318459, 48.834342839294465], [2.295639260541196, 48.83445411959545], [2.29573694256071, 48.834557520282004], [2.295752186267317, 48.83456526821059], [2.295771583625639, 48.834557299741476], [2.295947839201556, 48.83450072613691], [2.296122111384215, 48.83444481513095], [2.296296383192931, 48.834388903868266], [2.296472636267734, 48.83433232947386], [2.296646907324527, 48.834276417694845], [2.296823161000738, 48.83421984278628], [2.296997431305503, 48.83416393049094], [2.297173682858784, 48.83410735505218], [2.29734795241142, 48.8340514422405], [2.297524204566201, 48.83399486628753], [2.297698472004645, 48.83393895295154], [2.297874723398556, 48.833882376476375], [2.298048991447229, 48.83382646263209], [2.298225240718112, 48.83376988562672], [2.298399508014751, 48.83371397126612], [2.298575757887221, 48.833657393746556], [2.2985932051438738, 48.83366065017154], [2.298685373712002, 48.83375617541574], [2.298778151811867, 48.833852797791984], [2.29887032242091, 48.83394832288528], [2.298963101217563, 48.834044944202155], [2.298982534207527, 48.83404744414111], [2.299078161308814, 48.83400227857251], [2.299158878191115, 48.83396404248111], [2.299177931443783, 48.83395496251447], [2.299174711841326, 48.83394374283832], [2.299053070844421, 48.83383167485859], [2.298944139269294, 48.833730473733645], [2.298835209479274, 48.833629272508304], [2.298713569946151, 48.83351720415182], [2.298604641049405, 48.833416002697206], [2.298495288062245, 48.83331445778127], [2.298386360013023, 48.83321325610955], [2.2982770092386122, 48.83311171098363], [2.298168082036702, 48.8330105090948], [2.2980587307505482, 48.8329089637429], [2.297949804408158, 48.83280776073768], [2.297840455334727, 48.83270621517587], [2.297731528465497, 48.83260501284484], [2.297622180242545, 48.83250346706506], [2.297610118540123, 48.83250234126348], [2.297593250997698, 48.83251058931294], [2.297390970416471, 48.832525303055114], [2.297192835113777, 48.832540429344334], [2.296990554303644, 48.83255514240894], [2.296792418771353, 48.8325702680345], [2.296590136370303, 48.83258498041346], [2.296392000608423, 48.83260010537532], [2.296189719340714, 48.832614817084746], [2.295991583349358, 48.832629941382834], [2.295989377909513, 48.83263023328968], [2.295816236856345, 48.832663660122996], [2.295612435606917, 48.832702409423256], [2.295439294072325, 48.83273583570879], [2.295235492260537, 48.83277458436427], [2.295062350244525, 48.832808010101985], [2.294858547870385, 48.83284675811268], [2.294685405372959, 48.832880183302606], [2.2944816024364743, 48.832918930668534], [2.294344027260697, 48.832945488873285], [2.294327533468581, 48.83294358921089]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 54, "roussel_fabien": 15.0, "nb_emargement": 1249.0, "nb_procuration": 79.0, "nb_vote_blanc": 12.0, "jadot_yannick": 125.0, "le_pen_marine": 76.0, "nb_exprime": 1230.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1550.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1247, "quartier_bv": "57", "geo_point_2d": [48.83341938160625, 2.2965325953340057], "melenchon_jean_luc": 263.0, "poutou_philippe": 7.0, "macron_emmanuel": 455.0}, "geometry": {"type": "Point", "coordinates": [2.2965325953340057, 48.83341938160625]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "27ca2d92dd511b587cce3c359049dd0c259bb79d", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 144, "zemmour_eric": 143.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-56", "geo_shape": {"coordinates": [[[2.294458479574836, 48.884378342392495], [2.294408231727809, 48.88435716733533], [2.294312394339123, 48.88424297611117], [2.294217516892151, 48.88412992811281], [2.29412167897629, 48.88401573670437], [2.294026802345146, 48.883902689430755], [2.293930966629242, 48.88378849785411], [2.293836090826099, 48.88367545040603], [2.293740255958866, 48.88356125775383], [2.293645380983615, 48.88344821013129], [2.293549545576997, 48.88333401819409], [2.293454671429834, 48.88322097039706], [2.293358838235227, 48.883106777392435], [2.293263964916036, 48.88299372942093], [2.293260272178898, 48.88299091788405], [2.293104792114982, 48.882913184136505], [2.292949890854453, 48.88283573958577], [2.292794411717128, 48.88275800542419], [2.29263951002842, 48.88268055955363], [2.292484031817688, 48.882602824978036], [2.292329132403446, 48.88252537960232], [2.2921736551192993, 48.882447644612704], [2.29201875527699, 48.882370197917155], [2.2918638572464918, 48.882292751923124], [2.291708381351358, 48.88221501631286], [2.291688602409632, 48.882205675704625], [2.291672275761062, 48.88221751600094], [2.291650632987391, 48.88223552756384], [2.291624990453437, 48.882256867283054], [2.291605717467156, 48.88226566656868], [2.291605911634179, 48.88227274459424], [2.291473096078475, 48.88238327309479], [2.291343823231038, 48.88249085190297], [2.291211006562933, 48.88260138009091], [2.291081732644913, 48.882708957695506], [2.290948914864297, 48.88281948557077], [2.2908196412147452, 48.88292706377842], [2.290816726762363, 48.88293329959632], [2.290830245391958, 48.88305629278144], [2.290843616079769, 48.88317793786995], [2.2908571361998282, 48.88330093103277], [2.290870505662056, 48.88342257518392], [2.290884025909135, 48.88354556831632], [2.290897396860439, 48.88366721244549], [2.290910766510746, 48.88378885655163], [2.29092428694801, 48.883911849638565], [2.290925858129785, 48.88391543649813], [2.290996982508731, 48.884003258667725], [2.291068257323166, 48.88409126694035], [2.291069859851553, 48.88409525688497], [2.291074925530345, 48.88421678430264], [2.29107995051212, 48.884337296116804], [2.291085016238005, 48.884458823507316], [2.291090039902902, 48.88457933528649], [2.291095063603192, 48.884699846153], [2.291100130763307, 48.884821373510874], [2.291105154498057, 48.88494188524968], [2.291110221705172, 48.88506341258033], [2.291115245486725, 48.88518392429218], [2.291120311377336, 48.88530545158761], [2.291118212226606, 48.885315600731595], [2.2911308045007353, 48.885322116313844], [2.291287206439952, 48.88541799834575], [2.291441435645604, 48.88551254618247], [2.291595664047791, 48.88560709380435], [2.291752069062462, 48.885702975212226], [2.29190629859254, 48.88579752241762], [2.292062704751122, 48.88589340340312], [2.292216935409201, 48.88598795019199], [2.292373342711703, 48.886083830755105], [2.292418772564132, 48.88610265967479], [2.292454284138793, 48.88610764049358], [2.292589381993229, 48.886010647091354], [2.29271772727905, 48.88590785611179], [2.2928528241245862, 48.88581086239472], [2.292981168410194, 48.8857080702148], [2.293116264246633, 48.885611076182876], [2.293244606156212, 48.885508283693845], [2.293379700983767, 48.885411289347026], [2.293508043244549, 48.88530849656502], [2.293630507834885, 48.88520668431021], [2.2937588490963208, 48.8851038912402], [2.293881311351635, 48.88500207870188], [2.2940096516137363, 48.88489928534391], [2.294132114261032, 48.88479747253815], [2.294260453523807, 48.88469467889223], [2.29438291383611, 48.88459286580298], [2.29451125209957, 48.88449007186911], [2.294519192543918, 48.884457876629995], [2.294481255417309, 48.884448002330764], [2.294446038517778, 48.88442003415769], [2.294443025552731, 48.88441303487125], [2.2944473150460762, 48.88439295013759], [2.294458479574836, 48.884378342392495]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 56, "roussel_fabien": 5.0, "nb_emargement": 1262.0, "nb_procuration": 64.0, "nb_vote_blanc": 12.0, "jadot_yannick": 82.0, "le_pen_marine": 69.0, "nb_exprime": 1247.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1598.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1263, "quartier_bv": "65", "geo_point_2d": [48.884159829105734, 2.292403640208534], "melenchon_jean_luc": 149.0, "poutou_philippe": 3.0, "macron_emmanuel": 611.0}, "geometry": {"type": "Point", "coordinates": [2.292403640208534, 48.884159829105734]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6d67bf18ab2f728d0cdc1c5decb5e11b342578c0", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 64, "zemmour_eric": 103.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "2-1", "geo_shape": {"coordinates": [[[2.343071572268657, 48.87147071173339], [2.343039989746122, 48.87140032872314], [2.342999195267786, 48.871281531324634], [2.342950249330836, 48.87114395949362], [2.342909453905947, 48.87102516113021], [2.342860508446907, 48.8708875892306], [2.342819714779456, 48.870768791715804], [2.342770769809661, 48.870631218848295], [2.342729975184317, 48.870512421267854], [2.34268103069242, 48.870374848331714], [2.342640237835834, 48.870256050700675], [2.342591292447259, 48.87011847858766], [2.34253057733923, 48.86998571891401], [2.34253038041029, 48.86998522769131], [2.342476018010222, 48.8698637383382], [2.342415303492899, 48.86973097857544], [2.342360940263354, 48.869609489134604], [2.342300226335658, 48.869476729282944], [2.342245865003136, 48.86935523976938], [2.342185151665054, 48.86922247982879], [2.342130790866138, 48.86910099023506], [2.342070078117665, 48.86896823020555], [2.34201571648927, 48.868846740524134], [2.341955004330398, 48.86871398040573], [2.341900644598983, 48.86859249065158], [2.341900082179466, 48.86858942170097], [2.341904493820449, 48.86853405186006], [2.341895775478586, 48.86848423071378], [2.341895351655592, 48.86848281641573], [2.341840654406018, 48.86834890393033], [2.341786503607341, 48.868222474240696], [2.341731806910937, 48.868088561674064], [2.341677658010222, 48.867962131912925], [2.341622961866876, 48.867828219265], [2.341568813512313, 48.86770178852561], [2.341514665409218, 48.86757535864652], [2.341459970091068, 48.867441445877326], [2.341405821159606, 48.867315015911736], [2.341351126394598, 48.86718110306121], [2.341296979372417, 48.8670546721249], [2.341242285160543, 48.866920759193164], [2.341188138661748, 48.8667943290771], [2.3411334450029972, 48.86666041606412], [2.341079299038953, 48.86653398586907], [2.3410246045701992, 48.86640007276735], [2.341040248359989, 48.866384675788446], [2.341041143426298, 48.866378361024196], [2.341047672581298, 48.8663681642327], [2.341177421209887, 48.86632049379757], [2.341277183645212, 48.86628327674534], [2.341282251448198, 48.866279976163995], [2.341372694348231, 48.866181137722485], [2.341482961748429, 48.86605630211182], [2.34148237100267, 48.86604663540472], [2.341346360287512, 48.86591775196258], [2.341221044893861, 48.86578634519944], [2.341203584597329, 48.865749757277676], [2.3411867422059602, 48.86574698631921], [2.341174447450702, 48.86574496256572], [2.3411345045861722, 48.86576063500642], [2.340962385551638, 48.865801319826666], [2.340780293876952, 48.86584443346063], [2.340608174289026, 48.8658851177684], [2.340426082016906, 48.86592823175947], [2.3402539618867753, 48.86596891465552], [2.340071869028705, 48.86601202810444], [2.339899748345097, 48.866052710487985], [2.339766699384699, 48.866084211814595], [2.339735967554379, 48.866092515006045], [2.339751232874858, 48.866129911229145], [2.339814311136088, 48.86625890323158], [2.339880132885784, 48.86639474533299], [2.339943213161376, 48.86652373634488], [2.340009035570428, 48.866659579242175], [2.3400837801906142, 48.866805774164874], [2.3401496033339733, 48.866941616050944], [2.340215426820619, 48.86707745788416], [2.340290172619701, 48.86722365262272], [2.340290883680059, 48.86722670891446], [2.3402871715542553, 48.86734792177187], [2.340284385775909, 48.86748683700262], [2.340280673627735, 48.86760804893205], [2.340277887818251, 48.867746964130006], [2.340274175625032, 48.86786817693], [2.340271389784208, 48.868007092095105], [2.340267677557433, 48.86812830486639], [2.340264891685369, 48.868267219998735], [2.340261179424936, 48.868388432741284], [2.340258393521632, 48.86852734784076], [2.340254681238931, 48.86864855965532], [2.340251895304386, 48.86878747472198], [2.340248181613453, 48.868908687399546], [2.3402383695523, 48.8689171392935], [2.340064556254851, 48.86895057462269], [2.339892836640833, 48.86898347624513], [2.3397190229002582, 48.869016911070545], [2.339547302838022, 48.869049813094605], [2.3393734886543243, 48.869083247416235], [2.339201768166472, 48.8691161480433], [2.339027953539659, 48.869149581861166], [2.338856233966674, 48.86918248289732], [2.338855229859033, 48.86918264912529], [2.338854598352478, 48.869182781437665], [2.338815210959206, 48.8691882602997], [2.338757746145891, 48.869201299877815], [2.338749185571455, 48.869212519543495], [2.338807945746578, 48.86933489297861], [2.338869982867073, 48.869464727424536], [2.338928743621886, 48.869587099873165], [2.33899078270693, 48.86971693423442], [2.33904954403003, 48.86983930659579], [2.33911158371654, 48.86996914086476], [2.339170344244821, 48.87009151313144], [2.339232384532801, 48.870221347308174], [2.339291146981086, 48.87034372039441], [2.339346973702668, 48.87046046174709], [2.339405736701302, 48.87058283385127], [2.339461563935863, 48.87069957512524], [2.339520326098911, 48.87082194803847], [2.339576153846556, 48.87093868923374], [2.339634917923092, 48.87106106117245], [2.339690746183933, 48.87117780228904], [2.339749510788032, 48.87130017504427], [2.339805338198727, 48.87141691607459], [2.339864103353192, 48.87153928784783], [2.339919932640137, 48.87165602880696], [2.339978698333581, 48.871778400497426], [2.340034528133743, 48.87189514137783], [2.340033362352637, 48.87196745896276], [2.340058669922661, 48.871970365763715], [2.340065249237451, 48.8719703768561], [2.340258796174017, 48.87193897041953], [2.340439445226073, 48.87190889647092], [2.340632991708574, 48.87187748942755], [2.340813640331359, 48.87184741491257], [2.341007186359787, 48.87181600726239], [2.341187834553292, 48.871785932181], [2.341368481186407, 48.871755855919375], [2.341562026528603, 48.87172444826878], [2.3417426740955802, 48.87169437144828], [2.341936218983793, 48.8716629631909], [2.34211686612147, 48.871632885803955], [2.342310410555592, 48.871601476939816], [2.34249105726396, 48.871571398986525], [2.342684601243984, 48.871539989515576], [2.342865246159787, 48.87150991098841], [2.343058791048957, 48.871478500918165], [2.343071572268657, 48.87147071173339]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 1, "roussel_fabien": 16.0, "nb_emargement": 924.0, "nb_procuration": 70.0, "nb_vote_blanc": 9.0, "jadot_yannick": 79.0, "le_pen_marine": 49.0, "nb_exprime": 913.0, "nb_vote_nul": 2.0, "arr_bv": "02", "arthaud_nathalie": 1, "nb_inscrit": 1128.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 924, "quartier_bv": "06", "geo_point_2d": [48.86945299943515, 2.340922428534746], "melenchon_jean_luc": 162.0, "poutou_philippe": 2.0, "macron_emmanuel": 405.0}, "geometry": {"type": "Point", "coordinates": [2.340922428534746, 48.86945299943515]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e8adcfacdc3a3ca255fedb5e8a64db486e9c0cb9", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 53, "zemmour_eric": 68.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "18-33", "geo_shape": {"coordinates": [[[2.327556354793607, 48.89304537339333], [2.327559677663815, 48.89303995384155], [2.327746432511352, 48.893002008618126], [2.327941353454384, 48.892963580131465], [2.3281281077497162, 48.89292563431022], [2.328323026761415, 48.89288720519196], [2.328509781868447, 48.89284925878049], [2.328704700312416, 48.89281082903833], [2.328891453503625, 48.89277288202131], [2.329086372743762, 48.892734451662896], [2.32927312538285, 48.89269650404802], [2.329468042691538, 48.89265807305806], [2.329654796142199, 48.89262012485295], [2.329849712883339, 48.89258169323908], [2.330036464418064, 48.892543744428465], [2.330231381955245, 48.89250531219828], [2.330418132937931, 48.89246736278985], [2.330493398174274, 48.89245252209046], [2.330519272382751, 48.89244476528872], [2.330511932523956, 48.89240664777313], [2.330556791872121, 48.892269367629076], [2.330595684159211, 48.89215149388883], [2.330634574918082, 48.892033619216384], [2.330679434973728, 48.89189633988658], [2.330718325352418, 48.8917784651595], [2.330763183603643, 48.89164118575874], [2.330802074965931, 48.891523310984695], [2.330846932776526, 48.89138603152063], [2.330885823758535, 48.891268156691936], [2.330930681128503, 48.89113087716462], [2.330969570366682, 48.89101300227367], [2.330954652954514, 48.89100215940081], [2.330906071128152, 48.89100592592078], [2.330851835021289, 48.8910094656708], [2.330849155936596, 48.89100791375296], [2.33080049442363, 48.891010451306705], [2.330688005024208, 48.891017794217966], [2.33047717900521, 48.89103330079988], [2.330310451955673, 48.89104418380357], [2.330099625705817, 48.891059690619656], [2.3299328984929693, 48.89107057309748], [2.329919148586605, 48.891065357410724], [2.329890704156448, 48.89102426095057], [2.329860301682513, 48.890981651650655], [2.329845813224981, 48.890976599995504], [2.32959063370904, 48.891003449985654], [2.3293521145854292, 48.89102987293311], [2.329348205083366, 48.89102993107723], [2.329186827476169, 48.891017151551786], [2.328950953616647, 48.89099820047007], [2.32878957484164, 48.89098542040126], [2.328553702622613, 48.890966469443384], [2.3283923240550592, 48.89095368793962], [2.328386264518606, 48.89095411260941], [2.328200632901678, 48.890996196660325], [2.328014824342808, 48.89103791250584], [2.327829193490672, 48.891079995985386], [2.327643382959801, 48.89112171214294], [2.327457751508598, 48.89116379504347], [2.327271940392713, 48.89120550972221], [2.327086308342654, 48.891247592043726], [2.326900497982292, 48.89128930704985], [2.326850767885342, 48.89129808550609], [2.326846137937533, 48.89130998273349], [2.32685861502804, 48.89134664372127], [2.326898823132281, 48.8914678145942], [2.326943566781413, 48.89159928212378], [2.326956770044336, 48.89163907232689], [2.326954827597477, 48.89165175807972], [2.326965247484257, 48.891663887385526], [2.326992252744486, 48.89174526799516], [2.32704077576726, 48.891884149143486], [2.327080984710398, 48.89200531989591], [2.327129506836789, 48.89214420186692], [2.32716971618735, 48.89226537256078], [2.327218238804387, 48.89240425356366], [2.327258448562274, 48.892525424199], [2.327306973010526, 48.89266430603989], [2.327347183175747, 48.89278547661673], [2.327354396874118, 48.89280721422887], [2.327353764718052, 48.8928085335836], [2.327361436780293, 48.89282751914012], [2.327394432108318, 48.89292695116716], [2.327433723865451, 48.89304301915772], [2.327465192460444, 48.893066174518054], [2.32749793365377, 48.893058703350036], [2.327556354793607, 48.89304537339333]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 33, "roussel_fabien": 22.0, "nb_emargement": 1301.0, "nb_procuration": 83.0, "nb_vote_blanc": 18.0, "jadot_yannick": 126.0, "le_pen_marine": 72.0, "nb_exprime": 1279.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1682.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1301, "quartier_bv": "69", "geo_point_2d": [48.89187328634454, 2.328831670741358], "melenchon_jean_luc": 407.0, "poutou_philippe": 6.0, "macron_emmanuel": 476.0}, "geometry": {"type": "Point", "coordinates": [2.328831670741358, 48.89187328634454]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "751aa0fd263f2e0939e324b5ceb74c51b1dc22d1", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 68, "zemmour_eric": 73.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "11-51", "geo_shape": {"coordinates": [[[2.3862948844937533, 48.85286993782607], [2.3863205499911633, 48.85287034106659], [2.386504717780552, 48.85291462881276], [2.386682194346844, 48.85295729821746], [2.386866362751033, 48.8530015854036], [2.387043839909627, 48.85304425426853], [2.387221317358974, 48.853086922868606], [2.3874054866793992, 48.85313120921973], [2.387582964721041, 48.853173877280064], [2.387767136018932, 48.853218163078104], [2.387782729133772, 48.85322922303459], [2.38779609507937, 48.85322894067479], [2.387916037933591, 48.85316053452801], [2.38805588957002, 48.85308115097751], [2.388210741417606, 48.85299283426074], [2.38835059215499, 48.85291345035384], [2.38850544435695, 48.85282513414866], [2.388645294195193, 48.852745749885294], [2.388664152683765, 48.85274124426049], [2.38866855862519, 48.85273346759969], [2.388785818974627, 48.85265746982427], [2.3888961095792682, 48.85258506881301], [2.389013370636199, 48.85250906991209], [2.389123660600139, 48.852436669580655], [2.389126208945564, 48.85243435507018], [2.389199011281838, 48.85233942968042], [2.389270867904185, 48.8522457540076], [2.389343669702905, 48.85215082941303], [2.38941552716788, 48.85205715364439], [2.389488328450024, 48.8519622280464], [2.38956018538444, 48.85186855307428], [2.38956331710579, 48.85186587729247], [2.389717436180308, 48.851775949479595], [2.389870271968293, 48.85168838021485], [2.390024391350963, 48.85159845199923], [2.39017722611295, 48.85151088142913], [2.390180991943291, 48.851507350880745], [2.390231037782522, 48.85142245170589], [2.3903039000488793, 48.851298582934675], [2.390353946850094, 48.85121368369946], [2.390379027609442, 48.85117104370145], [2.390393857919806, 48.8511544596637], [2.390392011681524, 48.85115116942068], [2.390439792566005, 48.851069940542715], [2.390504538323289, 48.85096030118627], [2.390577399293336, 48.85083643219704], [2.3906421430977423, 48.850726793635495], [2.390715003424726, 48.850602923637176], [2.390779748012212, 48.8504932849851], [2.390767274821957, 48.85048102805071], [2.390553516741373, 48.85047870371443], [2.390351114289109, 48.85047687214458], [2.390137354881532, 48.85047454705785], [2.389934953812222, 48.85047271569026], [2.389732551394433, 48.85047088397335], [2.389518793401634, 48.850468557788474], [2.389316391014626, 48.85046672536756], [2.389102633057466, 48.85046439843917], [2.3889002307012532, 48.85046256531428], [2.388686471417139, 48.850460237635424], [2.388484070454437, 48.85045840381347], [2.388270311205886, 48.85045607539118], [2.388219056231045, 48.85045561097073], [2.388196434906515, 48.85045126654399], [2.388186117438481, 48.850455326527], [2.388034971483127, 48.850453956379894], [2.387850761464339, 48.850452409686575], [2.387648360561464, 48.850450574450925], [2.387464150555641, 48.850449028061625], [2.387463650397905, 48.85044902999783], [2.387238876711851, 48.85045115899445], [2.38702336554799, 48.85045457702944], [2.386798593182733, 48.85045670520592], [2.386583081956576, 48.85046012334717], [2.386569822788905, 48.850468412156474], [2.386553567475204, 48.85060549452882], [2.386537970616052, 48.85073687746258], [2.386521715134815, 48.85087395979756], [2.386506118115105, 48.85100534269545], [2.386490521016646, 48.851136725575806], [2.386474265285857, 48.85127380785508], [2.386458668026835, 48.85140519069954], [2.386442410765769, 48.851542272934445], [2.386426813345977, 48.85167365574307], [2.386410557280098, 48.85181073794752], [2.386394959699738, 48.85194212072029], [2.386378703466313, 48.8520792028873], [2.38636310572518, 48.85221058562423], [2.386346849324206, 48.852347667753804], [2.386331251433092, 48.852479049555576], [2.386314994853974, 48.85261613254704], [2.386299396802083, 48.85274751431291], [2.386286229967778, 48.85285853013534], [2.3862948844937533, 48.85286993782607]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 51, "roussel_fabien": 25.0, "nb_emargement": 1347.0, "nb_procuration": 93.0, "nb_vote_blanc": 17.0, "jadot_yannick": 152.0, "le_pen_marine": 56.0, "nb_exprime": 1326.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 4, "nb_inscrit": 1711.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1347, "quartier_bv": "44", "geo_point_2d": [48.85160759979788, 2.388156899116647], "melenchon_jean_luc": 407.0, "poutou_philippe": 10.0, "macron_emmanuel": 475.0}, "geometry": {"type": "Point", "coordinates": [2.388156899116647, 48.85160759979788]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2000207f496802b653b7b795759cbe223e83ee18", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 45, "zemmour_eric": 40.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "18-48", "geo_shape": {"coordinates": [[[2.342705876352739, 48.8979083681067], [2.342711510723665, 48.89788257690172], [2.342636562442516, 48.897766006870135], [2.342555510806208, 48.897640992844735], [2.342480564586074, 48.8975244226973], [2.342399512336635, 48.89739940853124], [2.342324566813566, 48.89728283826041], [2.342243515314826, 48.89715782396124], [2.342168570488711, 48.897041253567046], [2.342087519740658, 48.896916239134725], [2.342012575600326, 48.89679966951647], [2.341931525614318, 48.89667465405167], [2.341856582171022, 48.896558084310115], [2.341775532935582, 48.89643306871217], [2.341700590189312, 48.89631649884725], [2.341619541704635, 48.89619148311618], [2.341544599655383, 48.89607491312791], [2.341463551921357, 48.89594989726374], [2.341388610569112, 48.89583332715213], [2.341307563585625, 48.89570831115476], [2.341232622930379, 48.89559174091987], [2.341151576686247, 48.89546672568861], [2.341076636739371, 48.89535015443115], [2.340995591245858, 48.89522513906676], [2.340920651995965, 48.895108567685995], [2.340845713070263, 48.89499199714514], [2.34076466870004, 48.89486698068434], [2.34075614569528, 48.8948400341735], [2.340745403530421, 48.89483484980671], [2.340734989423991, 48.894829824626086], [2.3406810432364082, 48.89484338616865], [2.340549240338117, 48.89494615430459], [2.34042835913698, 48.895042694390824], [2.340296553871495, 48.89514546222247], [2.3401756717390683, 48.89524200203611], [2.340140911658806, 48.89526976319862], [2.340137807950283, 48.895269928659], [2.340106109835062, 48.895291129949975], [2.340019987253285, 48.89535990844416], [2.339911061125571, 48.895452310442465], [2.339790177566001, 48.895548849839926], [2.339681250635126, 48.89564125161331], [2.339560366210636, 48.895737790762134], [2.339451438476595, 48.89583019231052], [2.339449164992609, 48.89583834380082], [2.339473315570915, 48.895890353403026], [2.339493988047001, 48.89594172148482], [2.339492510338576, 48.89594864439605], [2.3393890273584, 48.896062730634085], [2.339284154246859, 48.896177982716516], [2.3391806703543683, 48.896292068750576], [2.339075796308202, 48.896407321525665], [2.338972311503284, 48.89652140735579], [2.338867436545312, 48.89663665902501], [2.338763949464045, 48.8967507446437], [2.338659074935331, 48.8968659970131], [2.338555586941507, 48.896980082427845], [2.33845071150098, 48.89709533369136], [2.338347222583364, 48.89720941980141], [2.338242346219589, 48.89732467085834], [2.338138856400926, 48.89743875586515], [2.338033979102459, 48.897554007614744], [2.338032477357319, 48.89758254010441], [2.338070061183685, 48.89758779661792], [2.338275629344905, 48.89759068271632], [2.338487419304806, 48.89759374042464], [2.338692987512629, 48.897596625806614], [2.338904777509796, 48.89759968367613], [2.3391103457756293, 48.89760256744247], [2.339322135821476, 48.8976056245739], [2.339527704122471, 48.897608508523085], [2.339739494228395, 48.897611564017176], [2.339752793085536, 48.89762126004743], [2.339739078947518, 48.89773626307603], [2.3397249256103843, 48.89782759989688], [2.339723050783323, 48.897857766199365], [2.339750825540604, 48.89786545291892], [2.339881170284606, 48.89786774075677], [2.340086235438032, 48.8978711245858], [2.340274483346616, 48.8978744280144], [2.340479549927175, 48.897877810278196], [2.3406752054946622, 48.897881679072185], [2.340880270754586, 48.897885061541615], [2.341075927743042, 48.89788892968845], [2.341280993068833, 48.89789231057246], [2.341476648738985, 48.897896178956344], [2.341681715483394, 48.89789955916168], [2.341877371210558, 48.89790342689088], [2.342082436645588, 48.89790680640258], [2.342278093804957, 48.897910672585354], [2.342483159294536, 48.897914051410865], [2.342678815135693, 48.89791791783077], [2.342705876352739, 48.8979083681067]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 48, "roussel_fabien": 22.0, "nb_emargement": 1027.0, "nb_procuration": 65.0, "nb_vote_blanc": 14.0, "jadot_yannick": 106.0, "le_pen_marine": 46.0, "nb_exprime": 1008.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1315.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1028, "quartier_bv": "69", "geo_point_2d": [48.89676274261439, 2.3404795465747026], "melenchon_jean_luc": 462.0, "poutou_philippe": 5.0, "macron_emmanuel": 225.0}, "geometry": {"type": "Point", "coordinates": [2.3404795465747026, 48.89676274261439]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1ff229112b1a8b971e977c2a06a910ed7e79d5a6", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 154, "zemmour_eric": 250.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-3", "geo_shape": {"coordinates": [[[2.272031383195794, 48.86394755543648], [2.272065194699719, 48.86390012325797], [2.272096915814191, 48.86378259265384], [2.272128456198522, 48.8636691089201], [2.272160177029718, 48.86355157827471], [2.272191717136389, 48.863438094500616], [2.272223439047238, 48.86332056382225], [2.272254978876249, 48.86320708000781], [2.272286518555294, 48.86309359707275], [2.272318238692057, 48.86297606542509], [2.272318729161196, 48.862974814708004], [2.272386710652302, 48.86284175582041], [2.272458070555078, 48.86270745472546], [2.272526051341437, 48.862574395726604], [2.272597410506254, 48.86244009541543], [2.272665390600432, 48.86230703540607], [2.272736747676963, 48.86217273497117], [2.272736959326859, 48.8621699743396], [2.272711739179797, 48.86214568149856], [2.272619996402465, 48.86209414220876], [2.2724969319628983, 48.86202929175869], [2.272486922262423, 48.862027380037055], [2.272315368753492, 48.86203994695504], [2.2721401174796982, 48.86204995046063], [2.271968563812794, 48.86206251688119], [2.271793313759485, 48.862072519887064], [2.271621758571623, 48.862085085801915], [2.271446508375811, 48.86209508829972], [2.271435687838566, 48.86209248174884], [2.271300196876469, 48.86200293097173], [2.2711610222289, 48.86191560238662], [2.271152491014975, 48.861913143755714], [2.270945346088246, 48.86190447581783], [2.270757339979624, 48.86189758075834], [2.270569335296345, 48.86189068451244], [2.270362189180361, 48.86188201645602], [2.270174184605556, 48.861875119589286], [2.269967039980295, 48.861866450857114], [2.269779034138382, 48.861859554260455], [2.269571889653268, 48.86185088394492], [2.26938388391984, 48.86184398672745], [2.269176739562488, 48.861835315727845], [2.268988733937557, 48.86182841788951], [2.268781589707775, 48.86181974620581], [2.268593585554334, 48.86181284775498], [2.268386440089349, 48.86180417537889], [2.268198436044422, 48.86179727630722], [2.267991290707026, 48.86178860324706], [2.267803286770623, 48.86178170355451], [2.26779049820261, 48.861771725205784], [2.267812596706586, 48.86164125781471], [2.267836008556705, 48.86151344794155], [2.267858106849903, 48.8613829796124], [2.267881519822548, 48.86125517060814], [2.267903617892229, 48.8611247022402], [2.267927030637264, 48.86099689319728], [2.267949128483327, 48.860866424790515], [2.267972539650332, 48.86073861480132], [2.267994637260252, 48.86060814725505], [2.268018049562512, 48.86048033723549], [2.268040146948926, 48.860349869650406], [2.2680635590234832, 48.86022205959221], [2.268085656186392, 48.86009159196834], [2.268109068033251, 48.85996378187145], [2.268131163622357, 48.8598333133012], [2.268154575228891, 48.859705504064905], [2.2681538645304062, 48.85970137166985], [2.268080834019086, 48.85956784085894], [2.268009987082728, 48.859435984454514], [2.26793695731214, 48.85930245352383], [2.267866111088027, 48.859170597901986], [2.267793082070797, 48.85903706595226], [2.267722236571652, 48.8589052102137], [2.267649208295136, 48.85877167814427], [2.267578363520949, 48.858639822288985], [2.267507519105337, 48.858507966376074], [2.267434491935897, 48.85837443412782], [2.267433852864017, 48.85837345261322], [2.267353865565351, 48.85826830100737], [2.267278094204278, 48.85816112101639], [2.267198107545822, 48.858055969286355], [2.267122338164175, 48.857948790083874], [2.2670423507832362, 48.85784363822124], [2.266966582030662, 48.85773645889964], [2.266886596652899, 48.857631306921135], [2.266810827166716, 48.85752412747209], [2.266746884822129, 48.857433675665455], [2.266666900352551, 48.85732852351142], [2.266655074947647, 48.85731179491023], [2.266647905354636, 48.85730746642485], [2.266498621818901, 48.85726851845001], [2.266294305811822, 48.857220793282785], [2.266145022776067, 48.85718184576308], [2.265940707432743, 48.857134119988395], [2.265791424909631, 48.85709517202453], [2.2657815768040432, 48.857095127787844], [2.265605466036801, 48.85713924529047], [2.2654168166336373, 48.857196060062705], [2.265240705216398, 48.85724017702453], [2.2650520564128263, 48.85729699122489], [2.264875944333007, 48.85734110854518], [2.264687293416085, 48.85739792125771], [2.264650717890405, 48.85739166899472], [2.264612133636963, 48.85740326205335], [2.26442645729111, 48.85745584586049], [2.264237805456057, 48.85751265875783], [2.264052128342583, 48.85756524197898], [2.263863477066153, 48.857622054288974], [2.263677799185063, 48.857674636924116], [2.263489145741512, 48.85773144863002], [2.26330346709291, 48.85778403067915], [2.263114812845013, 48.8578408417893], [2.262929133428799, 48.85789342325245], [2.262740479739547, 48.85795023377525], [2.262735766952224, 48.858030055225626], [2.266981972387125, 48.86398550399353], [2.26702990233459, 48.86401665257386], [2.267168900448336, 48.863920214402484], [2.267296336222322, 48.86382269080616], [2.267435333338011, 48.8637262514092], [2.267562768138789, 48.86362872751214], [2.2677017642311332, 48.86353228868811], [2.267829198058716, 48.86343476449026], [2.267968193140371, 48.863338325339946], [2.268095625994766, 48.863240800841346], [2.268260659615007, 48.86315067216383], [2.268388091462913, 48.86305314733729], [2.268399471913206, 48.863050053879206], [2.268588411794453, 48.86305974811584], [2.268824890164455, 48.86305731242192], [2.26901383015108, 48.86306700598683], [2.269202768845098, 48.863076699245056], [2.26943924862633, 48.863074262345584], [2.269441290371756, 48.863074470868526], [2.269663090109495, 48.8631086402583], [2.2698118391680833, 48.86314769222268], [2.269815365222626, 48.86314859060644], [2.269964115872343, 48.86318764238849], [2.270140971966423, 48.863252541044844], [2.270315828607159, 48.863326990971345], [2.270492685624909, 48.8633918882005], [2.270667541872927, 48.86346633759549], [2.270844401164879, 48.86353123430502], [2.270845122333321, 48.8635315210959], [2.271026660681834, 48.86359872949602], [2.271203519494959, 48.8636636265581], [2.271385060141774, 48.863730833515596], [2.271561919849919, 48.86379573004031], [2.271743461406845, 48.863862937345395], [2.271920322022481, 48.863927832433504], [2.271922140776341, 48.86392839390221], [2.272002868397546, 48.86394868065245], [2.272031383195794, 48.86394755543648]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 3, "roussel_fabien": 8.0, "nb_emargement": 1192.0, "nb_procuration": 77.0, "nb_vote_blanc": 8.0, "jadot_yannick": 33.0, "le_pen_marine": 53.0, "nb_exprime": 1184.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1557.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1196, "quartier_bv": "62", "geo_point_2d": [48.86064270459376, 2.2670669639739773], "melenchon_jean_luc": 64.0, "poutou_philippe": 0.0, "macron_emmanuel": 601.0}, "geometry": {"type": "Point", "coordinates": [2.2670669639739773, 48.86064270459376]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "db5ee533f10c7f1bb89da0eef7f1a3fc4678030e", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 44, "zemmour_eric": 52.0, "hidalgo_anne": 51.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-62", "geo_shape": {"coordinates": [[[2.3722731924142852, 48.852302018468244], [2.372290507442659, 48.85230164164311], [2.372475988668667, 48.852248064315845], [2.372661466871639, 48.85219300814853], [2.372846947318731, 48.852139431140316], [2.373032426105841, 48.85208437439971], [2.37321790443292, 48.852030795904774], [2.373403382430597, 48.85197573948307], [2.373588859989686, 48.85192216040789], [2.373774337208648, 48.85186710340577], [2.373775105628723, 48.8518668933815], [2.373952199312718, 48.85182288394614], [2.3741310023454663, 48.851778249145916], [2.374308094064891, 48.8517342391732], [2.374486896488526, 48.85168960383755], [2.37466398761691, 48.85164559243528], [2.374842789420738, 48.85160095746357], [2.375019879947279, 48.85155694553102], [2.375198682504827, 48.85151231003105], [2.375375772429621, 48.851468297568296], [2.375554573026195, 48.8514236606265], [2.375731662338259, 48.85137964853279], [2.375868519692849, 48.85134548198884], [2.375894696142989, 48.85133649549177], [2.375895861922005, 48.85133553566721], [2.37593780590419, 48.8513250647315], [2.3761166055172, 48.8512804278434], [2.376316900253912, 48.85123190421063], [2.376495700595926, 48.8511872658601], [2.376695994621549, 48.8511387415886], [2.376874792945689, 48.85109410356006], [2.377075086260322, 48.85104557864996], [2.377094696480285, 48.851022568261946], [2.377083146633887, 48.85099694041333], [2.377073718639918, 48.85098237126769], [2.377023510488545, 48.850984015588324], [2.376902909997075, 48.850947645489065], [2.376785871484141, 48.85091370948319], [2.376779004252652, 48.85090928127095], [2.376702187047925, 48.85080071047295], [2.376621008266257, 48.85068789622222], [2.376544191717054, 48.85057932530122], [2.376463013633064, 48.85046651002152], [2.376386196366016, 48.85035793986968], [2.376305020331639, 48.85024512446743], [2.3762841997891, 48.85024195902763], [2.376146534731343, 48.85031460341501], [2.37601093674812, 48.85038666664657], [2.375873270916272, 48.85045931160943], [2.375737673552095, 48.850531373629806], [2.375600006957122, 48.85060401826873], [2.37546440746503, 48.85067608086223], [2.375444921767133, 48.85067443945572], [2.375319322338874, 48.85056287364751], [2.375195029651783, 48.850454547695065], [2.375069431299399, 48.85034298070317], [2.374945141008055, 48.85023465537611], [2.374819542357953, 48.850123088092744], [2.3746952531213132, 48.85001476158545], [2.374569656888087, 48.84990319492415], [2.374445367332765, 48.849794868128754], [2.37431977217519, 48.849683300283786], [2.374195485015654, 48.849574974113814], [2.374193413242097, 48.849573532403845], [2.374032944052976, 48.84948543305092], [2.373877309284589, 48.849398674528864], [2.373716841157497, 48.849310575637425], [2.373561206074916, 48.84922381668344], [2.373405572873221, 48.849137057527344], [2.373245106360032, 48.84904895708325], [2.373089474206708, 48.848962197502395], [2.372929008755622, 48.84887409751979], [2.372773376288203, 48.84878733750699], [2.372612911920654, 48.848699236187315], [2.372592042898785, 48.848679679983874], [2.372572452676343, 48.8486792058172], [2.372530807226384, 48.84869940818474], [2.3723651672520862, 48.84878006236321], [2.372199183620571, 48.848860581401375], [2.372033542620633, 48.84894123510907], [2.371867557963376, 48.8490217536755], [2.371701915937898, 48.849102406912436], [2.371535930254896, 48.84918292500714], [2.371370287214822, 48.84926357687399], [2.371204300505971, 48.84934409449698], [2.371177052195169, 48.84936806480326], [2.371200203139642, 48.84938754240067], [2.371305062833119, 48.84945083157191], [2.371446318007783, 48.8495379226251], [2.371592599991629, 48.849626212663374], [2.371733856122123, 48.849713303363394], [2.371880139096278, 48.849801592136934], [2.37202139480928, 48.849888683375895], [2.372167680125592, 48.84997697179111], [2.37230893680527, 48.85006406177757], [2.372455223101058, 48.85015234982735], [2.372596480725952, 48.85023944035991], [2.372742766638523, 48.85032772803704], [2.372884026592794, 48.85041481732425], [2.373030313484849, 48.85050310463591], [2.373171574384262, 48.85059019446922], [2.373173088032547, 48.850602235756966], [2.373047777353752, 48.850710160010124], [2.372922175193739, 48.85081746204243], [2.3727968634885572, 48.85092538511264], [2.372671260293123, 48.85103268686078], [2.372545947550725, 48.85114060964733], [2.37242034331986, 48.85124791111132], [2.372295029529504, 48.85135583451346], [2.37216942563666, 48.85146313480112], [2.372044110809066, 48.851571057919635], [2.371918504507307, 48.851678358815306], [2.371916574430299, 48.851687093995494], [2.371974951403557, 48.85178693274854], [2.3720538957789072, 48.85192999439521], [2.372112273276544, 48.85202983395876], [2.372191218407827, 48.85217289458432], [2.372249596440689, 48.85227273405903], [2.3722731924142852, 48.852302018468244]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 62, "roussel_fabien": 13.0, "nb_emargement": 1231.0, "nb_procuration": 92.0, "nb_vote_blanc": 17.0, "jadot_yannick": 164.0, "le_pen_marine": 51.0, "nb_exprime": 1212.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1466.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1231, "quartier_bv": "48", "geo_point_2d": [48.85057182466477, 2.373764760344564], "melenchon_jean_luc": 367.0, "poutou_philippe": 12.0, "macron_emmanuel": 441.0}, "geometry": {"type": "Point", "coordinates": [2.373764760344564, 48.85057182466477]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3a991d6c2cd4558eb0d899d8974b76485e041c04", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 118, "zemmour_eric": 135.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-5", "geo_shape": {"coordinates": [[[2.301488231655742, 48.84786220089448], [2.301483560249067, 48.847856307074814], [2.3014393974108502, 48.8478266328525], [2.301304499018402, 48.84773371435561], [2.301160882910565, 48.847637210276524], [2.301025985505029, 48.847544291449864], [2.300882369084297, 48.847447786112774], [2.300747472653604, 48.847354867855564], [2.300603858633349, 48.84725836217573], [2.300468961826939, 48.84716544358072], [2.300325348844333, 48.847068937550155], [2.300190454399496, 48.84697601773403], [2.300046841080055, 48.84687951224405], [2.2999119476221033, 48.846786592098105], [2.299768336702892, 48.846690086265426], [2.299633444231815, 48.846597165789646], [2.299489832987834, 48.846500659598306], [2.299354941503526, 48.84640773879271], [2.299230044683999, 48.84632137787545], [2.299095154127029, 48.84622845676203], [2.2989702581555562, 48.846142096459], [2.298835367163236, 48.84604917502972], [2.2987104720640072, 48.845962813542286], [2.298575583361491, 48.84586989181318], [2.298450689110296, 48.84578353093992], [2.298315801334894, 48.84569060890297], [2.298190907955936, 48.845604246845355], [2.298056021107845, 48.84551132450058], [2.2979311285769, 48.84542496305714], [2.297904101933578, 48.845406344972865], [2.297901744292627, 48.84540373466842], [2.297882322874202, 48.845394198935324], [2.297774462290263, 48.84531989433855], [2.297674973307434, 48.84525090546973], [2.297656846318698, 48.84523845076142], [2.297605193176572, 48.84526803432699], [2.297465804469487, 48.84532079017959], [2.29729199084717, 48.84538952145706], [2.297152600123323, 48.84544227783025], [2.29697878569501, 48.84551100774591], [2.296839395691748, 48.845563763756466], [2.296665580445112, 48.845632493209614], [2.296526019100081, 48.845684266638074], [2.296352203038276, 48.84575299562849], [2.296212641059234, 48.84580476868583], [2.296189615512568, 48.845812490984706], [2.296186291346123, 48.84581687741952], [2.296244720949217, 48.84588527701838], [2.296286084709479, 48.84593400061751], [2.29628752772204, 48.84594026059329], [2.296243230713316, 48.846078274723396], [2.296199498910333, 48.846216394674045], [2.296155201433779, 48.84635440873736], [2.296111469153531, 48.846492529520866], [2.296067172571732, 48.84663054352541], [2.296023438476115, 48.84676866333523], [2.295979141426479, 48.84690667727298], [2.295935408216175, 48.84704479792369], [2.295933167952685, 48.84705982660904], [2.295948738377724, 48.84706575331527], [2.296131214004187, 48.847094671333046], [2.29631377497421, 48.84712374246452], [2.296496250994132, 48.847152660823355], [2.296678812370822, 48.84718173139629], [2.29686128880848, 48.84721064829754], [2.297043850591928, 48.847239718311975], [2.297226327423045, 48.847268635554265], [2.297408888250738, 48.84729770500215], [2.297591366862076, 48.84732662079493], [2.297773928096513, 48.84735568968426], [2.297783785932324, 48.84736185242719], [2.297844913620725, 48.8474965824561], [2.29790359599016, 48.847627943458896], [2.297909998798549, 48.847633243210154], [2.298090604868587, 48.84770011836865], [2.298270354180115, 48.84776659430139], [2.298450961174822, 48.84783346890793], [2.298630710043337, 48.84789994428333], [2.298811317962609, 48.8479668183379], [2.298991069113365, 48.84803329317191], [2.299003179984042, 48.848040353084265], [2.299020591454129, 48.84803660042895], [2.299219773733839, 48.8480254783795], [2.299422013021705, 48.84801421561175], [2.2996211964928133, 48.84800309290175], [2.299823435619029, 48.847991828555934], [2.300022617556262, 48.84798070516945], [2.300224856496852, 48.8479694410442], [2.300424039625462, 48.847958316997165], [2.300626278404469, 48.847947051293836], [2.300825461349647, 48.847935927477614], [2.301027699954985, 48.84792466109549], [2.301226881378428, 48.8479135357035], [2.301429119798029, 48.84790226954194], [2.301488231655742, 48.84786220089448]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 5, "roussel_fabien": 13.0, "nb_emargement": 1308.0, "nb_procuration": 82.0, "nb_vote_blanc": 14.0, "jadot_yannick": 92.0, "le_pen_marine": 81.0, "nb_exprime": 1293.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1646.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1308, "quartier_bv": "59", "geo_point_2d": [48.84680984577738, 2.29833138221647], "melenchon_jean_luc": 278.0, "poutou_philippe": 2.0, "macron_emmanuel": 515.0}, "geometry": {"type": "Point", "coordinates": [2.29833138221647, 48.84680984577738]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "74025e4c6e9e9fba111f33436d7b62a241b2d4fe", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 83, "zemmour_eric": 61.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-41", "geo_shape": {"coordinates": [[[2.40219892928073, 48.83710969438446], [2.402194345421409, 48.8371294745363], [2.402201610015305, 48.83717257950795], [2.40221596821389, 48.83721763017379], [2.402213554776711, 48.837226829381365], [2.402225173906515, 48.83724793792213], [2.402245307968935, 48.83728438896415], [2.402265173903601, 48.837346718708886], [2.402263874023226, 48.83735278920367], [2.402162531610029, 48.83747870877746], [2.402067027971961, 48.83760190539259], [2.401965685971585, 48.83772782387904], [2.401870181401414, 48.83785102120881], [2.401768837078884, 48.83797693949366], [2.401673331587007, 48.838100136638815], [2.401577825654094, 48.83822333279485], [2.401476479890989, 48.83834925168934], [2.401380973036356, 48.83847244766075], [2.401279627675734, 48.83859836636722], [2.40127886741005, 48.838599198068515], [2.401176736349136, 48.83869645549786], [2.401077127494912, 48.83879329826539], [2.400974995677246, 48.83889055550559], [2.400875384714856, 48.83898739808148], [2.40077577474473, 48.83908424057282], [2.400673641805018, 48.83918149663111], [2.400675234775407, 48.83920920222868], [2.400705348329608, 48.839235724158925], [2.400893823023118, 48.83923690479433], [2.40107109629334, 48.83923860823705], [2.401259572357542, 48.83923978920234], [2.401436845649627, 48.83924149210306], [2.401614118953192, 48.8392431947411], [2.401802595056597, 48.83924437395147], [2.401979868382009, 48.839246076047495], [2.402168344493791, 48.8392472555809], [2.40234561647853, 48.839248957128035], [2.402534092619312, 48.83925013518588], [2.4025478386992, 48.83924085408893], [2.402544944305036, 48.83918134872194], [2.402542822958954, 48.8391181130669], [2.402556892199723, 48.8391089253168], [2.402754628187317, 48.839113224192154], [2.4029693319940693, 48.83911862640465], [2.403167068052478, 48.83912292459821], [2.403381770589913, 48.839128325164275], [2.403579506708832, 48.83913262357533], [2.403794209328948, 48.83913802340109], [2.403916183905352, 48.83914067372691], [2.403930438738871, 48.839149428985955], [2.403966699903572, 48.83914617321341], [2.404042461536862, 48.83914781968556], [2.404115160577128, 48.83915421296788], [2.404152457589764, 48.83915247322495], [2.404165680060856, 48.839124846874995], [2.404131897284377, 48.838988780701854], [2.404100343806415, 48.83886461965428], [2.404068789106196, 48.83874045947712], [2.404035006842062, 48.83860439233048], [2.40400345381731, 48.838480232113994], [2.403969671882106, 48.83834416581651], [2.403938117818507, 48.83822000464778], [2.403904336222513, 48.83808393830014], [2.403872783834359, 48.83795977709207], [2.403839002577568, 48.83782371069433], [2.403838977875656, 48.83782360714461], [2.403805289314732, 48.83768088140769], [2.403771508425065, 48.837544814057665], [2.403737821591335, 48.83740208827297], [2.403704041058566, 48.83726602086988], [2.403670353227388, 48.837123295023794], [2.403636573041127, 48.83698722846707], [2.403602886947506, 48.836844501673895], [2.40356910711803, 48.83670843506421], [2.4035659440804222, 48.836703989032124], [2.403421544836542, 48.83659347113356], [2.403269668603743, 48.83647814012916], [2.403125270613682, 48.83636762185063], [2.402973394321914, 48.836252291339235], [2.402927661024323, 48.836238063576566], [2.402905658180169, 48.83624842952396], [2.402850476502959, 48.83631948792829], [2.402766843343634, 48.836425778889925], [2.402676390075841, 48.83654225878413], [2.402592756204104, 48.83664854960287], [2.402502300798369, 48.83676502933544], [2.40241866621421, 48.83687132001127], [2.402328210032866, 48.836987799588954], [2.402244574736275, 48.83709409012188], [2.40219892928073, 48.83710969438446]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 41, "roussel_fabien": 26.0, "nb_emargement": 1077.0, "nb_procuration": 53.0, "nb_vote_blanc": 17.0, "jadot_yannick": 102.0, "le_pen_marine": 54.0, "nb_exprime": 1057.0, "nb_vote_nul": 3.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1310.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1077, "quartier_bv": "45", "geo_point_2d": [48.83811024485814, 2.40272463294792], "melenchon_jean_luc": 293.0, "poutou_philippe": 6.0, "macron_emmanuel": 381.0}, "geometry": {"type": "Point", "coordinates": [2.40272463294792, 48.83811024485814]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eca032e6d92c6551741f9dda47ce2bb60757f4d4", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 88, "zemmour_eric": 59.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-32", "geo_shape": {"coordinates": [[[2.322263719093833, 48.891902436302416], [2.322271144708091, 48.891914322442965], [2.322276071586474, 48.89192244785199], [2.322283385764664, 48.891934513225856], [2.322286275786125, 48.89193744699322], [2.322310060437244, 48.891953561711446], [2.322328309909536, 48.891952540833955], [2.322336573223328, 48.89194805949508], [2.32252066060229, 48.891982314108745], [2.322698405255594, 48.89201538772113], [2.322882493098946, 48.89204964267574], [2.323060238211929, 48.89208271574901], [2.323244326543057, 48.89211696924603], [2.323422072104024, 48.892150042679496], [2.323606160911228, 48.892184295618144], [2.323783905579756, 48.89221736760553], [2.323967994863128, 48.892251619985856], [2.324145741343329, 48.89228469234108], [2.324157015333782, 48.89228351760072], [2.324245963411123, 48.892244379144785], [2.324335111631775, 48.89220515181893], [2.324346762430622, 48.89220405113284], [2.324531112775935, 48.89224217391354], [2.324716585585128, 48.892280527568595], [2.324900936483651, 48.892318648878046], [2.325086409837679, 48.89235700195768], [2.325270759902286, 48.892395123586695], [2.325456233801144, 48.89243347609084], [2.325640585782629, 48.892471596256335], [2.325826060226413, 48.892509948184966], [2.326010412737781, 48.89254806867774], [2.326195886362583, 48.89258642002322], [2.326380239427111, 48.892624539044725], [2.3265657149487913, 48.89266289072169], [2.326750068554937, 48.8927010091712], [2.326935544633056, 48.89273935937343], [2.3271198987807082, 48.89277747725089], [2.327305374028202, 48.89281582776927], [2.327353764718052, 48.8928085335836], [2.327354396874118, 48.89280721422887], [2.327347183175747, 48.89278547661673], [2.327306973010526, 48.89266430603989], [2.327258448562274, 48.892525424199], [2.327218238804387, 48.89240425356366], [2.32716971618735, 48.89226537256078], [2.327129506836789, 48.89214420186692], [2.327080984710398, 48.89200531989591], [2.32704077576726, 48.891884149143486], [2.326992252744486, 48.89174526799516], [2.326965247484257, 48.891663887385526], [2.326954827597477, 48.89165175807972], [2.326901674392332, 48.89165965396403], [2.326743761060619, 48.89159381156999], [2.32658955554295, 48.89152951416917], [2.326431643000515, 48.8914636713557], [2.326277436889928, 48.89139937353767], [2.326119525148515, 48.89133352940552], [2.325965321172654, 48.8912692311856], [2.325807410208983, 48.891203387533324], [2.325653205640109, 48.891139088896175], [2.325495295477467, 48.891073243925256], [2.325341093043207, 48.891008944886224], [2.32533130995623, 48.8910077044551], [2.325109076926695, 48.89103496255812], [2.324886171597829, 48.891062301894856], [2.324866449401928, 48.891061861547236], [2.324859066066672, 48.89106908197389], [2.324674150665489, 48.89112813848278], [2.324489744314826, 48.891187031201724], [2.324304826712107, 48.891246087126255], [2.324120419525986, 48.89130497927012], [2.323935502449262, 48.89136403462566], [2.323751094427688, 48.89142292619448], [2.323566175161111, 48.891481980066374], [2.3233817662924, 48.89154087195938], [2.323196847551835, 48.891599925262305], [2.323012436483894, 48.89165881657247], [2.322827516905674, 48.89171786929878], [2.322643106365953, 48.89177676004156], [2.3224581845862, 48.891835812183416], [2.322273773222733, 48.891894701451854], [2.322263719093833, 48.891902436302416]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 32, "roussel_fabien": 19.0, "nb_emargement": 1198.0, "nb_procuration": 69.0, "nb_vote_blanc": 10.0, "jadot_yannick": 115.0, "le_pen_marine": 57.0, "nb_exprime": 1187.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1482.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1198, "quartier_bv": "68", "geo_point_2d": [48.89187344768119, 2.3252029725865366], "melenchon_jean_luc": 318.0, "poutou_philippe": 7.0, "macron_emmanuel": 475.0}, "geometry": {"type": "Point", "coordinates": [2.3252029725865366, 48.89187344768119]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "63bddf157735af2c60bbc703dd188a62ed8a6ebf", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 82, "zemmour_eric": 85.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-30", "geo_shape": {"coordinates": [[[2.327793961205971, 48.83618509354181], [2.327782647594997, 48.836193140478684], [2.327667284372543, 48.836230045279464], [2.327560043365439, 48.83626612593976], [2.327553365086299, 48.83627117792999], [2.327486235664386, 48.83639829429294], [2.32742208882409, 48.836522408192344], [2.327354958758493, 48.8366495244531], [2.327290811296346, 48.83677363825423], [2.327226663528821, 48.83689775200718], [2.327159532503253, 48.837024868115584], [2.327095384113865, 48.837148981770234], [2.327028252456203, 48.83727609687709], [2.326964103445147, 48.83740021043347], [2.326896971132161, 48.837527326337394], [2.326832821499224, 48.837651439795465], [2.326765688542618, 48.837778555597154], [2.326701538287892, 48.83790266895692], [2.326634404687451, 48.83802978465634], [2.326570253810929, 48.838153897917806], [2.326503120929127, 48.83828101352268], [2.32648778877771, 48.83831067560369], [2.326468449655675, 48.83832673375835], [2.32647888590474, 48.83834129753431], [2.326430065150738, 48.838435748602556], [2.326368713914585, 48.8385541098329], [2.326304561760204, 48.83867822289365], [2.326243208591261, 48.83879658402628], [2.326179055839601, 48.83892069699278], [2.326117703462646, 48.83903905804302], [2.326053550113702, 48.83916317091528], [2.325992195804032, 48.839281531867776], [2.32592804185769, 48.83940564464581], [2.325866688351637, 48.83952400461663], [2.32580253244558, 48.83964811729271], [2.325741178357469, 48.83976647807277], [2.325677023216515, 48.83989059066229], [2.325615667195546, 48.84000895134464], [2.325551511457272, 48.8401330638399], [2.325490156228285, 48.840251424439785], [2.325432174082056, 48.84036327461542], [2.325368017459073, 48.84048738787219], [2.325364642730813, 48.84049389734297], [2.325359269447205, 48.84049849248233], [2.325207128753313, 48.840564976235186], [2.325056705530196, 48.840630639367774], [2.324904564064635, 48.840697122727946], [2.324754140078863, 48.8407627854723], [2.324748034267387, 48.84077049005571], [2.324751901564535, 48.840883299643124], [2.324757696382299, 48.841036635655], [2.324761563720108, 48.84114944521524], [2.32476735724508, 48.8413027802831], [2.3247705718648772, 48.841396561841336], [2.3247769974814823, 48.841412661688054], [2.324803757309198, 48.84141090607472], [2.324977985336931, 48.84136648754081], [2.325149783949116, 48.8413224678568], [2.325324011386325, 48.841278048815404], [2.325495809426392, 48.841234027731716], [2.325670036261433, 48.84118960908215], [2.3258418337177362, 48.84114558749804], [2.326013630883835, 48.84110156566547], [2.326187856834683, 48.841057146256446], [2.326359653417012, 48.841013123923474], [2.326533878789049, 48.8409687031077], [2.32653789568094, 48.840967108661665], [2.32667857715789, 48.84088658528981], [2.326821868734676, 48.840804061856865], [2.326962550695268, 48.84072353814699], [2.327105841374191, 48.84064101436184], [2.327246521093439, 48.84056049029857], [2.327389812225336, 48.84047796706821], [2.327530491065894, 48.84039744265925], [2.327673779949107, 48.84031491816972], [2.327693697693843, 48.84031635128336], [2.327814581405482, 48.840424385309504], [2.327932272553975, 48.840529302946294], [2.3280531586164512, 48.84063733671838], [2.328170850737631, 48.840742253201135], [2.328291736426176, 48.84085028670388], [2.328409430859311, 48.84095520383889], [2.328530317536174, 48.84106323707994], [2.328648011579558, 48.841168153053225], [2.328765706085183, 48.841273069800174], [2.328886595600225, 48.8413811026581], [2.32900429106708, 48.84148601915029], [2.32912518021968, 48.84159405083953], [2.329242878010036, 48.84169896708464], [2.329363768139513, 48.841806999411524], [2.329358707607156, 48.84182044982905], [2.329187414966259, 48.84187475091427], [2.329012393425459, 48.84192856946379], [2.328841098705943, 48.84198287004027], [2.328666077806849, 48.84203668808556], [2.328494782371191, 48.8420909881609], [2.328319759389052, 48.842144805686615], [2.328148464599736, 48.84219910526847], [2.3279734408968302, 48.84225292228233], [2.32780214539138, 48.84230722136298], [2.327627120967912, 48.84236103786498], [2.327455824746329, 48.842415336444496], [2.3272807996022, 48.84246915243458], [2.327109501301996, 48.84252345050528], [2.326934476799598, 48.84257726599114], [2.326763177783263, 48.84263156356068], [2.326588152560312, 48.84268537853464], [2.326416852827848, 48.84273967560302], [2.326241825521648, 48.842793490057396], [2.326235606626563, 48.84280593551705], [2.326316048786259, 48.842903662942575], [2.326370674081309, 48.842981494884896], [2.326426182438248, 48.84304857716645], [2.3264340217490522, 48.84304770395375], [2.326497181149885, 48.84302695506417], [2.326555510826873, 48.843007630527], [2.32655977385956, 48.84300703486323], [2.326582969968526, 48.84299958199912], [2.326701291804611, 48.842960381865076], [2.326878048952478, 48.84290250775382], [2.327054699643383, 48.84284398344046], [2.327231457378167, 48.84278610790936], [2.327408107277809, 48.84272758306806], [2.327584862851189, 48.84266970790039], [2.327761511971067, 48.84261118163183], [2.327938266757354, 48.84255330593598], [2.328114915074165, 48.84249478003875], [2.328291670447336, 48.84243690292308], [2.328468317972879, 48.84237837649792], [2.328645071184668, 48.84232049974567], [2.328821717918843, 48.84226197279257], [2.328998471717595, 48.842204094620506], [2.329175117660295, 48.842145567139454], [2.329351869309355, 48.84208768843158], [2.329420277783173, 48.84206502299375], [2.329426806646819, 48.842063473111814], [2.329446021081022, 48.84205523650853], [2.329554257720595, 48.842019373913764], [2.329729908581427, 48.841962052378115], [2.329906552882528, 48.84190352380434], [2.330082204327848, 48.84184620175309], [2.33025884785225, 48.84178767175374], [2.330434497157306, 48.841730349171634], [2.330611139881896, 48.84167181954534], [2.330786789771429, 48.84161449644765], [2.330963431719306, 48.841555965395784], [2.331139079468578, 48.84149864176727], [2.33131572061665, 48.84144011108843], [2.3314243664074112, 48.84140465379776], [2.3314468574794702, 48.8413963938134], [2.3313873624881323, 48.841318102500345], [2.331364966537919, 48.84118045443692], [2.331342783333585, 48.84104481852263], [2.331320386256079, 48.84090717040961], [2.331298204646515, 48.84077153446143], [2.331275807804172, 48.840633886306385], [2.331253626426918, 48.84049825031677], [2.331231229819732, 48.84036060211968], [2.331209048674784, 48.84022496608859], [2.331186867645279, 48.84008933003695], [2.331164471401648, 48.83995168087763], [2.331142289242022, 48.83981604477693], [2.331119894584421, 48.83967839648253], [2.331097712657201, 48.839542760340365], [2.331075316872328, 48.83940511199629], [2.331053136539718, 48.83926947582031], [2.331030740989986, 48.839131827434265], [2.331031144761907, 48.83912849933527], [2.331082819439653, 48.83899834317573], [2.33113483721328, 48.83887253913911], [2.3311868533849562, 48.83874673415877], [2.33123852864636, 48.8386165787944], [2.331238971558339, 48.8386141277956], [2.331235505381493, 48.83849392860553], [2.33123153359319, 48.83836811362058], [2.33123352673509, 48.83836323939766], [2.331364310617837, 48.838221857797166], [2.331500924348147, 48.83807235315105], [2.33149704843273, 48.83806032942259], [2.331333446362211, 48.83798507052024], [2.331166358435736, 48.83790799315887], [2.3311588968413632, 48.83789584863868], [2.331132760508373, 48.8378961036118], [2.331096384659853, 48.83790650195455], [2.331079242454732, 48.837913289857795], [2.331071412641432, 48.837919434624645], [2.331024560452188, 48.838047700416766], [2.33097767712745, 48.838176781729786], [2.330930824476122, 48.83830504745565], [2.330883940687778, 48.8384341287022], [2.330837087563014, 48.838562395261114], [2.330790203311056, 48.83869147644122], [2.330775290635388, 48.83869830555072], [2.330516750266796, 48.83867731376889], [2.330282327466517, 48.83865777762935], [2.33027197572005, 48.838653091525345], [2.330177281598446, 48.83853615703347], [2.330082816198968, 48.83841778474421], [2.329988122940873, 48.83830084917868], [2.329893658397427, 48.83818247671518], [2.329798965979609, 48.83806554187454], [2.329704502292181, 48.83794716923673], [2.329609810726191, 48.83783023422175], [2.329515349268704, 48.83771186051798], [2.329420657192164, 48.83759492532104], [2.329326196579101, 48.837476552342274], [2.329231505354375, 48.837359616970964], [2.329137045597293, 48.83724124381791], [2.329042356586615, 48.8371243082799], [2.328947896334832, 48.837005934045614], [2.328853208175941, 48.836888998333286], [2.328758748768548, 48.83677062482401], [2.32866406146143, 48.836653688937346], [2.328569602909992, 48.8365353152538], [2.328474916454639, 48.83641837919281], [2.328380460132959, 48.836300004443345], [2.328285773167134, 48.83618306820038], [2.328191317689797, 48.836064694175946], [2.328172694920917, 48.83606100648852], [2.327988377809085, 48.83612798055248], [2.327841192817159, 48.83617506477897], [2.327809369371572, 48.83618524488722], [2.327793961205971, 48.83618509354181]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 30, "roussel_fabien": 21.0, "nb_emargement": 1118.0, "nb_procuration": 77.0, "nb_vote_blanc": 13.0, "jadot_yannick": 98.0, "le_pen_marine": 55.0, "nb_exprime": 1103.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1410.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1118, "quartier_bv": "53", "geo_point_2d": [48.83950940201273, 2.328454503332543], "melenchon_jean_luc": 203.0, "poutou_philippe": 5.0, "macron_emmanuel": 499.0}, "geometry": {"type": "Point", "coordinates": [2.328454503332543, 48.83950940201273]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f4b32eac31378624e56ae22da7a40c44c1a7ba83", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 151, "zemmour_eric": 140.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-30", "geo_shape": {"coordinates": [[[2.306425990321979, 48.84365165425851], [2.306406257166062, 48.84368062894655], [2.30640521206823, 48.84368216350127], [2.306418272394823, 48.84370531785354], [2.306599059522544, 48.84376113455678], [2.306775361421307, 48.843815511188154], [2.306956147963132, 48.8438713264391], [2.307132451969632, 48.84392570254673], [2.30731323927611, 48.843981517252544], [2.3074895426655, 48.84403589282065], [2.30767033208721, 48.8440917078885], [2.307846636221913, 48.84414608292501], [2.3080274264201233, 48.844201896548384], [2.308203731300133, 48.8442562710533], [2.308204346201435, 48.84425644908599], [2.30839191326148, 48.84430755358738], [2.308591814079071, 48.844361508112044], [2.308779380534612, 48.844412611993285], [2.308979283518826, 48.84446656587327], [2.308991666067617, 48.84446447892044], [2.308999293796989, 48.84445103250145], [2.309020484358276, 48.84432674480882], [2.309041825353464, 48.84420251103062], [2.309063014349748, 48.8440782232949], [2.3090843551417928, 48.84395398948141], [2.309105545298037, 48.843829701718356], [2.309126884524521, 48.84370546786174], [2.3091480744783, 48.84358118006346], [2.309169414864166, 48.84345694617943], [2.309190603241052, 48.84333265923732], [2.309211943423785, 48.84320842531805], [2.30923313297264, 48.84308413744934], [2.309254472952137, 48.842959903494794], [2.309275660936139, 48.84283561558297], [2.309297000712507, 48.84271138159316], [2.3093181884940632, 48.84258709364615], [2.309339528067306, 48.84246285962108], [2.309360716996984, 48.84233857254603], [2.309382056367101, 48.842214338485704], [2.309403243743771, 48.84209005046825], [2.309424582910767, 48.84196581637271], [2.309428805426302, 48.841960266470835], [2.309583485217691, 48.84186461942866], [2.309737785119189, 48.84176921821494], [2.309892463776577, 48.84167357075692], [2.310046762546928, 48.84157816912834], [2.310201440058419, 48.841482522153726], [2.310355737697631, 48.8413871201103], [2.310367077716811, 48.84137870624886], [2.310361995820336, 48.84136827756537], [2.310288831754746, 48.84124604630832], [2.310215514932404, 48.841120866882235], [2.310142350207089, 48.84099863460131], [2.310069035447124, 48.84087345506561], [2.309995871400722, 48.8407512235673], [2.309922555978028, 48.84062604390626], [2.309849393984872, 48.84050381229913], [2.309776079262087, 48.84037863252057], [2.30970291797153, 48.840256399897505], [2.309629603948546, 48.84013122000141], [2.3095564419745402, 48.84000898815312], [2.309483130013664, 48.8398838081474], [2.309409968730439, 48.83976157618247], [2.309336656118941, 48.83963639515208], [2.309330934392619, 48.83963191743432], [2.309310769604375, 48.839623785827996], [2.309253206625414, 48.83960109153412], [2.309220912368395, 48.83958806925212], [2.3091978287004222, 48.83958305597097], [2.30917414534162, 48.83960817707897], [2.309089394272297, 48.83972041001401], [2.309003504624104, 48.83983514913944], [2.308918752818286, 48.83994738193079], [2.308832862420533, 48.84006212091036], [2.30874810987811, 48.84017435355802], [2.308662218730685, 48.84028909239174], [2.308577465451751, 48.84040132489568], [2.308491573554647, 48.84051606358358], [2.308406818176752, 48.84062829593593], [2.3083209268924, 48.84074303448587], [2.308236170777969, 48.84085526669448], [2.308150278743926, 48.840970005098605], [2.308065521893051, 48.84108223716349], [2.307979629109207, 48.84119697542173], [2.307894871521778, 48.84130920734291], [2.30782353739137, 48.84140953279183], [2.307798311226255, 48.841431289127065], [2.307802802644046, 48.84144017838499], [2.307781856087393, 48.841469637381635], [2.30769781983415, 48.84160843253915], [2.307605538162707, 48.84173821590304], [2.307603757026312, 48.841740083473105], [2.307470006068817, 48.841848194763045], [2.307334406069443, 48.841957806126864], [2.307200653994514, 48.84206591709459], [2.307065052862126, 48.842175528131705], [2.306931299669753, 48.84228363877719], [2.306795698767026, 48.84239324949555], [2.3066619444572, 48.84250135981873], [2.306526341059055, 48.84261097020249], [2.306392585631763, 48.84271908020344], [2.30625698110057, 48.84282869026049], [2.306260544268736, 48.842842097997604], [2.306400262531271, 48.84289721911506], [2.306543258054884, 48.84295111433898], [2.306682976908764, 48.84300623512085], [2.306825971661327, 48.843060129993724], [2.306831684119556, 48.84307156616138], [2.306761996214103, 48.8431759439348], [2.306663954847916, 48.84330933907383], [2.306594266288622, 48.84341371672728], [2.306496224045854, 48.8435471117004], [2.306426534832712, 48.843651489233935], [2.306425990321979, 48.84365165425851]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 30, "roussel_fabien": 15.0, "nb_emargement": 1293.0, "nb_procuration": 82.0, "nb_vote_blanc": 7.0, "jadot_yannick": 109.0, "le_pen_marine": 39.0, "nb_exprime": 1281.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1556.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "58", "geo_point_2d": [48.84227322718995, 2.3084119063393698], "melenchon_jean_luc": 200.0, "poutou_philippe": 5.0, "macron_emmanuel": 565.0}, "geometry": {"type": "Point", "coordinates": [2.3084119063393698, 48.84227322718995]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "46b20c558660a0e5dcea5d5f58d887dc4992e07a", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 59, "zemmour_eric": 62.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-78", "geo_shape": {"coordinates": [[[2.283422729557035, 48.840229016686024], [2.283422180459575, 48.84022069241477], [2.283327861748399, 48.84012953731017], [2.283193636317135, 48.83999988283919], [2.283099318405225, 48.83990872753635], [2.282965094111097, 48.839779072783266], [2.282870778360959, 48.83968791729042], [2.282864767851562, 48.839684687588345], [2.282677139812107, 48.83963308176169], [2.282484590375196, 48.83958012134171], [2.282296963100949, 48.83952851401464], [2.282104415798923, 48.83947555298596], [2.281916789277515, 48.839423945057746], [2.281724242748072, 48.839370983412195], [2.281714488680845, 48.83936198598338], [2.281694931495844, 48.839361589740655], [2.281692902797171, 48.839360894035735], [2.281524370806822, 48.839290719283646], [2.281357438298068, 48.83922157108616], [2.281188907222252, 48.83915139495338], [2.281021974242356, 48.839082246270955], [2.280853445431174, 48.83901206966498], [2.2806865133424292, 48.8389429205058], [2.280517985420966, 48.838872744317776], [2.280351054223571, 48.83880359468184], [2.280346509197275, 48.838802396354765], [2.280156156803589, 48.83877690228117], [2.279967664837077, 48.83875176895767], [2.27977917306477, 48.83872663443725], [2.279588819850446, 48.83870114035023], [2.279400328443913, 48.83867600523172], [2.279209976974605, 48.83865050964957], [2.279021485921415, 48.83862537483232], [2.278831133459935, 48.83859987863798], [2.278642642784973, 48.83857474232328], [2.278452292043645, 48.838549246432464], [2.27844906613264, 48.83854852726115], [2.278234720873956, 48.838480249701796], [2.2780265616400213, 48.838413752073066], [2.277818404312047, 48.838347253187095], [2.27760406070717, 48.838278974485405], [2.277590965238657, 48.83827942782708], [2.277429693398382, 48.83834535812369], [2.277273277023048, 48.83840892700406], [2.277112004380262, 48.83847485686473], [2.276955587228872, 48.83853842532233], [2.276799171058439, 48.83860199358001], [2.276637895856228, 48.83866792278186], [2.276631595358282, 48.838674236053855], [2.276601808485251, 48.83880552087777], [2.276572522133072, 48.838935876057064], [2.276542736336605, 48.83906715994445], [2.276513449689682, 48.83919751507878], [2.276483662232512, 48.839328798912476], [2.27645437529084, 48.83945915400182], [2.276424587522866, 48.83959043868933], [2.276395300298923, 48.83972079283441], [2.276391697815419, 48.83973414201015], [2.27640309353985, 48.839741029085836], [2.276492681217701, 48.83986761349639], [2.276582084048303, 48.83999370564788], [2.276671672582678, 48.84012029079504], [2.276761076279705, 48.84024638278422], [2.276850665683099, 48.84037296776871], [2.276940070246561, 48.84049905959561], [2.276953382735112, 48.840504217914535], [2.277152404440689, 48.84049481982367], [2.27735003794054, 48.84048530329242], [2.2775490608523308, 48.840475905449], [2.277746694208139, 48.840466388262286], [2.277945716976079, 48.8404569897588], [2.278143350187731, 48.84044747191661], [2.278342372812014, 48.84043807275304], [2.278540005879397, 48.84042855425537], [2.278541054714648, 48.84042847783887], [2.278744794839005, 48.84040830230856], [2.278941634699382, 48.84038883851194], [2.279138474412847, 48.84036937439111], [2.27934221407491, 48.84034919784225], [2.279539053489077, 48.84032973306157], [2.279742792841116, 48.84030955582971], [2.279762913963445, 48.840301507988414], [2.27976297197664, 48.84029109811278], [2.279652525789159, 48.84017708527611], [2.279546722344486, 48.84006838139577], [2.279436278464385, 48.83995436834491], [2.279330475922806, 48.839845664251634], [2.279328322045707, 48.83984111394414], [2.279325594679792, 48.83980167174635], [2.279322907490192, 48.839750357179824], [2.279330007902661, 48.83974214821955], [2.279386063718901, 48.83972127153565], [2.279465268366896, 48.83969280596114], [2.279483331413012, 48.8396959321556], [2.27958651940237, 48.83980472920612], [2.279686638733637, 48.83991071962361], [2.279695928743056, 48.839914828133516], [2.279835751440787, 48.83993043498725], [2.279975176663803, 48.83994690807742], [2.279983887184315, 48.839950556195774], [2.280104984157625, 48.84006320194595], [2.280225943104187, 48.84017502740106], [2.28023266249696, 48.84017832085886], [2.2804298679248642, 48.840222376728384], [2.28062556931734, 48.84026575229311], [2.28082277404562, 48.840309807503274], [2.281018476093344, 48.84035318242186], [2.281215682846946, 48.84039723698901], [2.281411384187586, 48.840440611253236], [2.281607085853842, 48.84048398519557], [2.2818042935998513, 48.840528038787255], [2.281999995921337, 48.84057141208343], [2.282197204317943, 48.84061546592325], [2.282392907307038, 48.84065883767395], [2.282590116366423, 48.84070289086258], [2.282603448198817, 48.840701144194036], [2.282738395643216, 48.84062331242772], [2.282870252435528, 48.840546771462115], [2.283005197719396, 48.84046893937593], [2.283137053741742, 48.84039239720638], [2.283271999577579, 48.84031456571593], [2.283403854817588, 48.8402380232417], [2.283422729557035, 48.840229016686024]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 78, "roussel_fabien": 11.0, "nb_emargement": 845.0, "nb_procuration": 26.0, "nb_vote_blanc": 6.0, "jadot_yannick": 54.0, "le_pen_marine": 67.0, "nb_exprime": 837.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1078.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 845, "quartier_bv": "60", "geo_point_2d": [48.83959117351086, 2.279389678598105], "melenchon_jean_luc": 273.0, "poutou_philippe": 4.0, "macron_emmanuel": 269.0}, "geometry": {"type": "Point", "coordinates": [2.279389678598105, 48.83959117351086]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "43397e9c756574fb21f8b38e3e67b653de3a7c92", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 77, "zemmour_eric": 87.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "3-8", "geo_shape": {"coordinates": [[[2.358915492101666, 48.85861836358391], [2.35896201219875, 48.858647931568456], [2.359090871733682, 48.8587349952431], [2.359220809059233, 48.858822785818695], [2.359349669459171, 48.85890984920089], [2.359479609008726, 48.85899764038826], [2.3596084702846323, 48.8590847025788], [2.359738409343408, 48.85917249346399], [2.359867271473075, 48.859259556261435], [2.359997211415152, 48.85934734595252], [2.36000902388447, 48.85934995248333], [2.360204438522358, 48.859330222464], [2.360399450423416, 48.859310533142235], [2.360594864765502, 48.85929080248472], [2.360789877734302, 48.85927111253324], [2.360985290417848, 48.8592513812302], [2.361180303091649, 48.859231690641856], [2.36137571684231, 48.85921195870786], [2.36157072785807, 48.859192267475265], [2.361766141313006, 48.85917253490304], [2.361961153396577, 48.85915284304084], [2.362156565192848, 48.85913310982311], [2.362351576981292, 48.85911341732395], [2.362360066248097, 48.85911437629632], [2.362524590528597, 48.859172429794], [2.362691865381127, 48.859231958250305], [2.362856390402722, 48.85929001128567], [2.363023664648808, 48.85934953926461], [2.363188191763339, 48.85940759274424], [2.363355466766018, 48.85946712025309], [2.363376517934661, 48.85947674914303], [2.363387359419765, 48.85947071373659], [2.363409123297518, 48.8594549209504], [2.36344437546808, 48.859440465291705], [2.363454869758114, 48.859437075712165], [2.363460522841397, 48.859422068686335], [2.363545237901421, 48.85931091379721], [2.363627896824696, 48.85920079384654], [2.363712612530791, 48.859089638824024], [2.363795270749264, 48.85897951873577], [2.363879984375576, 48.858868363565335], [2.363962641889157, 48.85875824333954], [2.364045299053441, 48.858648123045654], [2.364130012970442, 48.85853696767232], [2.364212669429946, 48.858426847240885], [2.364297381267199, 48.85831569171965], [2.364380037021932, 48.85820557115064], [2.3644647495051663, 48.858094415496026], [2.364473663298848, 48.85808972416726], [2.36458698999231, 48.858071287660216], [2.364706019667277, 48.858051923516264], [2.364716268694604, 48.858042014940665], [2.364694501671084, 48.857933178892885], [2.364669203295819, 48.85780668335002], [2.364647436468923, 48.85769784727064], [2.364622136970262, 48.85757135078445], [2.3646192810854982, 48.85756692071521], [2.364597738884904, 48.85754909634543], [2.364575972314895, 48.857440260227804], [2.364583263820952, 48.85738909808747], [2.364592921295103, 48.85737929519722], [2.364781422792119, 48.85734262043507], [2.364959352457252, 48.85730800274434], [2.36513728188595, 48.85727338478796], [2.365325782616738, 48.85723670916484], [2.365503711569468, 48.85720208976209], [2.365692210410568, 48.85716541445148], [2.365870138876367, 48.85713079450169], [2.366058638564492, 48.85709411861873], [2.3662365665433542, 48.85705949812192], [2.366425065715616, 48.85702282165938], [2.366602993207536, 48.85698820061548], [2.366791490501055, 48.85695152356624], [2.36704464683609, 48.85690226459844], [2.3672331435187512, 48.85686558595132], [2.367242912044967, 48.85685668997733], [2.367236782767117, 48.85672180548627], [2.367230647962747, 48.8565868175239], [2.367224517385532, 48.856451932992194], [2.367218382655633, 48.85631694409705], [2.367212253504776, 48.85618205953917], [2.367206118827502, 48.856047071509906], [2.367216448582756, 48.85603807507495], [2.367417517024578, 48.85600503752402], [2.367610594872341, 48.85597331272754], [2.36780367248509, 48.85594158761859], [2.368004740182239, 48.8559085490781], [2.368197817325823, 48.85587682243206], [2.368398884512231, 48.855843784126655], [2.368473189612423, 48.85585486238755], [2.368477642698406, 48.85584931441444], [2.368487172239701, 48.85583356492181], [2.368499256274113, 48.8557824718513], [2.368492498835251, 48.85576089315106], [2.368435183862373, 48.85575408745413], [2.368237610239396, 48.855785884276216], [2.368050164474732, 48.855816867286514], [2.367852590389564, 48.85584866257179], [2.36766514417012, 48.8558796449772], [2.3674776977168452, 48.85591062798743], [2.367280122926937, 48.85594242232483], [2.367092674666959, 48.8559734038237], [2.366895100756, 48.8560051984301], [2.366895063883195, 48.85600520453044], [2.3666906107408963, 48.856038598320644], [2.366493034985478, 48.856070391354834], [2.366288581329743, 48.85610378445621], [2.366091005070904, 48.85613557772405], [2.365893428581795, 48.85616736976545], [2.36568897416126, 48.85620076183941], [2.3654913971688343, 48.85623255411444], [2.365286942245835, 48.85626594460025], [2.365089364760943, 48.856297736209605], [2.364884909313582, 48.856331126905836], [2.3648839817896112, 48.856331299154924], [2.364746909847733, 48.8563602609005], [2.364542453935574, 48.856393651009725], [2.364405381628865, 48.85642261326176], [2.364340173558554, 48.85644319296443], [2.3642890652829323, 48.8564437461629], [2.364275939344624, 48.85646248004303], [2.36415039782932, 48.85650210120386], [2.363971826574198, 48.856557637675515], [2.363781076077585, 48.856617838807956], [2.363602502680385, 48.856673373816136], [2.36341175133336, 48.856733574353655], [2.363233178497647, 48.856789109711464], [2.363042426300211, 48.856849309653924], [2.362863852685304, 48.85690484355551], [2.36267309963736, 48.856965042902985], [2.362494523858294, 48.85702057713968], [2.362303769960046, 48.85708077589221], [2.362125194764575, 48.857136308679856], [2.361934440015824, 48.85719650683736], [2.361755862656182, 48.85725203996018], [2.361754322456889, 48.85725260193302], [2.361578242360807, 48.8573238705413], [2.361408275913603, 48.85739570033205], [2.361232193497718, 48.857466968414705], [2.36106222610666, 48.857538797704656], [2.36088614272282, 48.85761006616822], [2.360716174387899, 48.85768189495744], [2.360715532979092, 48.8576821838194], [2.360573167743002, 48.857750385294516], [2.360407553636719, 48.85782950455029], [2.3602651889468182, 48.85789770655651], [2.360099573904493, 48.857976825375594], [2.359957208419967, 48.85804502610705], [2.359791592441702, 48.85812414448938], [2.35964922477755, 48.85819234573741], [2.359483607874494, 48.858271462783726], [2.359349495994695, 48.85833813759599], [2.359348252893466, 48.85833880815068], [2.359228252136322, 48.85841175398575], [2.359050023865745, 48.85853394826139], [2.358930020878814, 48.85860689377725], [2.358915492101666, 48.85861836358391]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 8, "roussel_fabien": 14.0, "nb_emargement": 1082.0, "nb_procuration": 78.0, "nb_vote_blanc": 8.0, "jadot_yannick": 85.0, "le_pen_marine": 45.0, "nb_exprime": 1068.0, "nb_vote_nul": 6.0, "arr_bv": "03", "arthaud_nathalie": 0, "nb_inscrit": 1327.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1082, "quartier_bv": "11", "geo_point_2d": [48.85781506818422, 2.3630394114141278], "melenchon_jean_luc": 207.0, "poutou_philippe": 5.0, "macron_emmanuel": 493.0}, "geometry": {"type": "Point", "coordinates": [2.3630394114141278, 48.85781506818422]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "11f7fbdaf8b835431eadc1dd6ec51e13ef96e9cc", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 66, "zemmour_eric": 75.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-67", "geo_shape": {"coordinates": [[[2.355495726112641, 48.83138338298704], [2.355475040313477, 48.83138820726329], [2.355302190254232, 48.83133353822748], [2.355119585603904, 48.83127543470548], [2.354946736280108, 48.831220766049796], [2.354764133794304, 48.83116266108724], [2.354591285217284, 48.8311079919124], [2.3544086821492503, 48.83104988729331], [2.354235834330043, 48.83099521669995], [2.354053232053313, 48.830937111532315], [2.353880384980794, 48.83088244041976], [2.3536977848573573, 48.830824334710975], [2.353524938531522, 48.8307696630792], [2.353342337837205, 48.83071155681453], [2.353169492246801, 48.83065688556294], [2.352986892354851, 48.830598777850454], [2.352814047511234, 48.83054410607964], [2.352749437893553, 48.83052354575033], [2.352721686911827, 48.83052008317587], [2.352696088724028, 48.83055048551307], [2.352644271272616, 48.83064440348557], [2.352594803502218, 48.83073470338312], [2.352545335560449, 48.83082500325299], [2.352493518926773, 48.83091892114451], [2.352492743954676, 48.83092274737357], [2.3525103093094, 48.83106156876914], [2.352527361679968, 48.83119025954356], [2.352544415507995, 48.83131894940878], [2.352561981133814, 48.83145777074775], [2.352579035123647, 48.83158646147663], [2.352596600931797, 48.831725282777306], [2.352612365120088, 48.83173341028463], [2.352805113930334, 48.831712698559684], [2.35299448712199, 48.83169295307509], [2.353187236993139, 48.831672240740964], [2.35337660988193, 48.83165249554994], [2.353569358100505, 48.831631781692565], [2.3537587306976873, 48.831612035895844], [2.353951479977038, 48.83159132142926], [2.3541408522824, 48.83157157502677], [2.354155998395169, 48.831577816609176], [2.35420445491035, 48.831681926846414], [2.35424278754748, 48.83177126778399], [2.354281120315997, 48.83186060870216], [2.354329575981705, 48.83196471885503], [2.354322783987427, 48.831975357720296], [2.354150108437715, 48.832033980839896], [2.353981270082598, 48.83208875534232], [2.353808593773323, 48.83214737796293], [2.3536397546921, 48.83220215197771], [2.353467077623162, 48.83226077409931], [2.353298237815837, 48.83231554762645], [2.353125559998294, 48.832374168349745], [2.352956719453808, 48.832428942288566], [2.352950682753803, 48.832432811999496], [2.352875223457899, 48.83252709217573], [2.352797711759813, 48.83261976660815], [2.352722253290133, 48.83271404578019], [2.352644741042119, 48.832806720098006], [2.352569280651751, 48.83290100004976], [2.352491767853801, 48.83299367425299], [2.352481878215719, 48.83299821919255], [2.352287008210524, 48.833017666089475], [2.352097418401245, 48.83303755048574], [2.351902546754536, 48.833056995848885], [2.351712956655571, 48.83307687963502], [2.351523366411874, 48.83309676312031], [2.351328495692036, 48.833116207554546], [2.3513249626061112, 48.83311691238604], [2.351165125568341, 48.83316521397754], [2.351008056475487, 48.833213733631816], [2.350848218847209, 48.83326203479563], [2.350691150541118, 48.83331055313766], [2.350531312322237, 48.83335885387382], [2.3503742420561062, 48.833407372687354], [2.350214403246721, 48.833455672995846], [2.350057332393901, 48.83350419138904], [2.350021247599103, 48.833515073737836], [2.350020691091019, 48.83352922230037], [2.349917882772698, 48.833632907735], [2.3498167788289113, 48.83373611577977], [2.349713969685745, 48.83383980191929], [2.3496128649481802, 48.83394300887331], [2.349510054991375, 48.834046694818376], [2.3494089494375823, 48.834149902480306], [2.3493061386783562, 48.8342535873316], [2.349205032319448, 48.83435679480204], [2.349102222097625, 48.83446048036565], [2.349001113582742, 48.83456368673793], [2.348999355713165, 48.83456633930328], [2.348997798643532, 48.83461421954163], [2.349024274129074, 48.83461928228843], [2.349092808960052, 48.834732303056256], [2.349176836152045, 48.8348652409554], [2.34924537163718, 48.834978261610935], [2.349329399614726, 48.835111199373664], [2.349397937127554, 48.835224219025065], [2.349481965879442, 48.83535715755072], [2.349550502684142, 48.83547017708244], [2.349634532221604, 48.83560311547169], [2.3497030696804853, 48.83571613489114], [2.349715734911371, 48.835721664712004], [2.3499229570996523, 48.83572074236219], [2.350134002968623, 48.83571920637342], [2.350341225139728, 48.83571828329897], [2.350552270986412, 48.83571674657223], [2.350759493140326, 48.83571582277316], [2.350970538964714, 48.83571428530843], [2.351177761101427, 48.83571336078474], [2.35138880555238, 48.835711821675325], [2.351596029034192, 48.8357108964344], [2.351807073451631, 48.835709357486344], [2.352014295553901, 48.83570843151341], [2.352225341311323, 48.8357068918347], [2.352237894365789, 48.835719605830704], [2.352146765124079, 48.83585196421991], [2.352059645409415, 48.83598011991554], [2.351968515259654, 48.83611247813814], [2.351881393309217, 48.8362406336667], [2.351790262251286, 48.836372991722655], [2.351703140789415, 48.836501147098936], [2.351711644615442, 48.83651344077443], [2.35184042265177, 48.83653902326033], [2.351950702851778, 48.83655434973287], [2.352011488359354, 48.83656823970548], [2.3520191460162723, 48.836562795048515], [2.352040904643114, 48.836531371206235], [2.352125174008293, 48.83641021520981], [2.352207256581755, 48.83629166985573], [2.352291523810544, 48.83617051370871], [2.352373606990562, 48.83605196822248], [2.3524578734451023, 48.83593081193232], [2.352539954507032, 48.83581226629913], [2.3526242215497533, 48.83569110987323], [2.352706301855929, 48.83557256410048], [2.352790566762309, 48.83545140752406], [2.352872646301579, 48.83533286251108], [2.352956911807211, 48.835211704899564], [2.353038990590751, 48.83509315974706], [2.353121069012232, 48.834974613626336], [2.353205333350186, 48.83485345670029], [2.353287411015846, 48.834734910440055], [2.353371673217412, 48.83461375336353], [2.353453750127366, 48.83449520696374], [2.353538012917133, 48.83437404975147], [2.353620089060338, 48.83425550411146], [2.353704351087178, 48.83413434585674], [2.353786426474593, 48.83401580007722], [2.353870686365091, 48.83389464167199], [2.353952760996933, 48.83377609575295], [2.354037021464496, 48.83365493811131], [2.354119095351713, 48.833536391153395], [2.354203353682972, 48.83341523336127], [2.354285428176783, 48.83329668627119], [2.354369685734008, 48.83317552833595], [2.354451758110016, 48.83305698109901], [2.354536016255464, 48.83293582302803], [2.3546180878757292, 48.832817275651585], [2.35470234388492, 48.83269611743015], [2.35478441610066, 48.832577570820874], [2.354868671347079, 48.83245641155701], [2.354950741444965, 48.83233786480088], [2.355034997268388, 48.83221670630057], [2.35511706662179, 48.832098158505595], [2.355201320309106, 48.83197699985486], [2.355283388906908, 48.83185845192042], [2.355367643182365, 48.831737293133926], [2.355449711024573, 48.83161874505999], [2.3555339645260602, 48.83149758613042], [2.3555863607667, 48.83148520800616], [2.355593056185604, 48.831447311305276], [2.355597012349995, 48.83142493018507], [2.355539635587149, 48.83140139476936], [2.355495726112641, 48.83138338298704]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 67, "roussel_fabien": 21.0, "nb_emargement": 1192.0, "nb_procuration": 69.0, "nb_vote_blanc": 17.0, "jadot_yannick": 101.0, "le_pen_marine": 51.0, "nb_exprime": 1172.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1490.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1192, "quartier_bv": "52", "geo_point_2d": [48.833669774580414, 2.3522607719973703], "melenchon_jean_luc": 401.0, "poutou_philippe": 7.0, "macron_emmanuel": 377.0}, "geometry": {"type": "Point", "coordinates": [2.3522607719973703, 48.833669774580414]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b5d3d7ebeb4ab65c7945ebe6fd7fe2b58db8b515", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 78, "zemmour_eric": 84.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-49", "geo_shape": {"coordinates": [[[2.300953292604127, 48.8292082528193], [2.300959726546338, 48.8291889385047], [2.300970868647509, 48.82913251907788], [2.300986673288183, 48.82904737197491], [2.30100153741031, 48.82904211924296], [2.301010410623708, 48.8290289322545], [2.301015747903268, 48.829020999453405], [2.301004262027524, 48.8290021784847], [2.301010731226419, 48.828967328507545], [2.301033004921025, 48.82884733140469], [2.301061808012011, 48.82868473020661], [2.301044098656633, 48.82867512567158], [2.300870982683318, 48.828711974032174], [2.300665348775005, 48.82875565254605], [2.300492232278658, 48.828792499456476], [2.300286597735303, 48.828836177315964], [2.300113479329771, 48.82887302456683], [2.299907844151477, 48.82891670177198], [2.299734726584965, 48.828953547580596], [2.299529090771844, 48.82899722413142], [2.299355972658174, 48.82903407028844], [2.299182854311886, 48.82907091529436], [2.298977217573474, 48.82911459089171], [2.298959756642495, 48.82910405485098], [2.298996573317539, 48.82899606732242], [2.299032462777467, 48.82889259371627], [2.299069279152577, 48.82878460614492], [2.2991051669484133, 48.828681133388784], [2.29914198438572, 48.82857314578265], [2.299177871903779, 48.82846967208586], [2.299174231470574, 48.828461308113205], [2.299073700540446, 48.828394868219824], [2.298973029454431, 48.828328334778895], [2.298872500399143, 48.82826189471647], [2.298771829826669, 48.828195361098295], [2.298768607524477, 48.82819197043158], [2.298724423041154, 48.82810844681337], [2.29863863281314, 48.827947700393125], [2.298594448745066, 48.82786417670862], [2.298594841153079, 48.82785758835682], [2.298675034798687, 48.827737271085404], [2.298756011206252, 48.82761544378393], [2.298836202757449, 48.827495125471216], [2.298917178412201, 48.82737329803427], [2.298997370581189, 48.82725297959551], [2.299078345483236, 48.82713115202317], [2.299158535533654, 48.827010834341664], [2.299239509683011, 48.82688900663392], [2.299319700363115, 48.826768687927085], [2.299400673759787, 48.826646860083905], [2.299480862333546, 48.82652654123509], [2.299561834977545, 48.82640471325653], [2.299642024156926, 48.82628439518094], [2.29972299606034, 48.826162566167646], [2.299803183133308, 48.82604224795007], [2.299884154271991, 48.82592041970072], [2.299964341974647, 48.8258001004578], [2.300045312360684, 48.825678272073006], [2.3001254979570582, 48.825557952688136], [2.300206467590462, 48.825436124167986], [2.300191604071693, 48.82540801606417], [2.300152339893157, 48.82541549578442], [2.300013464704613, 48.82544571882552], [2.299825052865881, 48.82548751002338], [2.2996438507876062, 48.825526944498606], [2.299455438359078, 48.82556873511109], [2.2992742343448143, 48.82560816991479], [2.299085822688535, 48.82564995994989], [2.298904618124502, 48.825689393291334], [2.298716204516491, 48.82573118273316], [2.298535000752556, 48.825770615519694], [2.298346586554664, 48.82581240437613], [2.298173282612131, 48.8258501165806], [2.297984867837113, 48.82589190486416], [2.297811563356465, 48.825929617441076], [2.297623149366173, 48.82597140515985], [2.297449844371839, 48.82600911631058], [2.297261428442278, 48.82605090344849], [2.297172988098034, 48.826070148510674], [2.297111429431896, 48.82608354274451], [2.297084462227847, 48.82608956928347], [2.297031930951003, 48.826101308612635], [2.296843514353418, 48.82614309508866], [2.296674032267035, 48.826180969696175], [2.2964856150946122, 48.826222755605365], [2.29631613250152, 48.82626062880367], [2.296127714754369, 48.826302414146056], [2.29595823164234, 48.82634028683444], [2.295769813320467, 48.826382071609956], [2.295600329677355, 48.826419944687785], [2.295411910780762, 48.82646172889645], [2.295242426630869, 48.82649960056507], [2.295079986790772, 48.826535897329066], [2.294891567058107, 48.82657768071363], [2.294729128080377, 48.826613977905886], [2.294540707784343, 48.82665576073473], [2.294378266969272, 48.82669205654057], [2.294189846109875, 48.826733838813766], [2.2940274061570722, 48.82677013504784], [2.293838984734314, 48.82681191676528], [2.293788032803091, 48.82682330154591], [2.2937381260728, 48.82683445234284], [2.293722402715018, 48.82683796600152], [2.293584189344601, 48.82686884743548], [2.293395767210001, 48.82691062845097], [2.293247176383669, 48.82694382794113], [2.293058753707906, 48.82698560842285], [2.292910162441073, 48.82701880839137], [2.292882731078496, 48.82702493826546], [2.292694307817535, 48.827066718170016], [2.292654283153156, 48.82707565962211], [2.292594593149396, 48.8270889960313], [2.292517736781562, 48.827106167447496], [2.292329312934537, 48.8271479467739], [2.292237555359617, 48.827168447478996], [2.292128218995206, 48.82721442245194], [2.291961521224648, 48.82728317271233], [2.291953469740998, 48.82728655887861], [2.291820556542018, 48.827342447254765], [2.29165385794408, 48.82741119797772], [2.291440330082538, 48.827500983641315], [2.291273629114292, 48.82756973381656], [2.291092533727527, 48.82764588127805], [2.290925833211562, 48.8277146300684], [2.290868078623358, 48.82773891355656], [2.290701377501807, 48.827807662927626], [2.290521417575467, 48.8278833314864], [2.2903547141851393, 48.82795207945804], [2.29017475325725, 48.828027747485415], [2.290008050310016, 48.828096494973074], [2.289828088380477, 48.82817216246911], [2.289661383152223, 48.8282409094566], [2.28948142022103, 48.8283165764212], [2.289314715423718, 48.82838532382402], [2.289233739605233, 48.828419369797736], [2.28912145918092, 48.8284665782405], [2.28895475344166, 48.82853532423308], [2.288883025090792, 48.828565482066246], [2.288872389234268, 48.82858233975855], [2.291122163317581, 48.831355586917205], [2.291125184955413, 48.831356380989334], [2.291136784299235, 48.83134659795708], [2.291159355669369, 48.831339102314274], [2.291321515658338, 48.83127760061514], [2.291497158631168, 48.83121192181387], [2.291659317826105, 48.83115041964979], [2.291834959944842, 48.831084740344984], [2.291997118357858, 48.831023236816584], [2.292172759622498, 48.83095755700829], [2.292334915866982, 48.83089605390621], [2.29251055627753, 48.830830373594345], [2.292672713089962, 48.83076887003535], [2.292848352646517, 48.83070318921999], [2.2928496075481872, 48.83070276853596], [2.292920974367815, 48.8306818347564], [2.292948245761853, 48.83067629123018], [2.292949889955084, 48.83067378449118], [2.293069681530147, 48.830638647914974], [2.2932480329976013, 48.83058658832922], [2.29343919057574, 48.830530517360046], [2.293617541304263, 48.830478457218256], [2.293808698088477, 48.830422385653094], [2.293987046703719, 48.83037032584654], [2.29417820269411, 48.83031425368541], [2.294356551944766, 48.83026219243153], [2.294547707141122, 48.830206119674436], [2.294726055652839, 48.83015405786456], [2.294917208693097, 48.83009798450346], [2.295095556453712, 48.830045923036806], [2.295286710062197, 48.82998984908779], [2.295465057096028, 48.82993778616585], [2.29564340377364, 48.82988572297555], [2.295834556205452, 48.8298296481429], [2.295846806928189, 48.82983004404842], [2.295976505148007, 48.82987860865679], [2.29610381434879, 48.82992635771431], [2.296233513047641, 48.82997492203973], [2.2963608213567612, 48.83002267081159], [2.296371123313251, 48.83002353006929], [2.296560691845031, 48.82998951370464], [2.296750560915082, 48.82995541606431], [2.296940128939466, 48.82992139999547], [2.29712999751337, 48.82988730175073], [2.297319566416665, 48.82985328418709], [2.297509434494307, 48.829819185337946], [2.29769900152805, 48.82978516806213], [2.29788886910943, 48.82975106860852], [2.298078435660106, 48.82971704982992], [2.298268304107261, 48.82968294977987], [2.298457870150539, 48.82964893129713], [2.298647736739265, 48.82961483063467], [2.298837302299347, 48.82958081064914], [2.299027169754036, 48.829546709390215], [2.299216734806618, 48.82951268970052], [2.299406600402868, 48.8294785878292], [2.299596164972227, 48.82944456663676], [2.29978603143432, 48.82941046416896], [2.299975595496383, 48.829376443272366], [2.300165460099925, 48.829342340192206], [2.300355023678738, 48.829308317792815], [2.300544889148106, 48.82927421411622], [2.30073445221952, 48.829240192012676], [2.300924315830531, 48.82920608772369], [2.300953292604127, 48.8292082528193]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 49, "roussel_fabien": 13.0, "nb_emargement": 1154.0, "nb_procuration": 29.0, "nb_vote_blanc": 14.0, "jadot_yannick": 53.0, "le_pen_marine": 117.0, "nb_exprime": 1134.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1645.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1155, "quartier_bv": "57", "geo_point_2d": [48.828453709320705, 2.2947591572166286], "melenchon_jean_luc": 421.0, "poutou_philippe": 11.0, "macron_emmanuel": 303.0}, "geometry": {"type": "Point", "coordinates": [2.2947591572166286, 48.828453709320705]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "72962d98aba8fce7653d83615332c3f50ecbc6d8", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 93, "zemmour_eric": 100.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "6-15", "geo_shape": {"coordinates": [[[2.320568806865964, 48.8484405218138], [2.32058335458203, 48.84844078519902], [2.320738333013432, 48.84851981423499], [2.320898236287368, 48.84860066074361], [2.321053215671739, 48.84867968936034], [2.321213121275676, 48.84876053634355], [2.321368100250369, 48.84883956453332], [2.321528006845092, 48.84892041018477], [2.321682986772757, 48.84899943795536], [2.321842894334849, 48.84908028407362], [2.3219978765781573, 48.849159311432686], [2.322157783768367, 48.84924015621151], [2.322312766964559, 48.84931918315131], [2.322472675122254, 48.84940002839697], [2.322627659271436, 48.84947905491752], [2.322787569782583, 48.849559898839125], [2.322942553522081, 48.849638924932755], [2.323102465000635, 48.84971976932117], [2.323257449693128, 48.84979879499556], [2.323335461030223, 48.84983823334467], [2.323353438390207, 48.84984643104906], [2.323399181938817, 48.84981453764168], [2.323515362787826, 48.849705866662326], [2.323632619942768, 48.84959665393683], [2.323748799807653, 48.849487983608846], [2.323866054620447, 48.849378770625535], [2.323982233512694, 48.84927010004962], [2.324099488720358, 48.849160885924576], [2.324215666640173, 48.849052215100734], [2.324332920856714, 48.848943001624804], [2.324449097803909, 48.848834330553004], [2.324566349690107, 48.84872511592], [2.324682525664792, 48.84861644460032], [2.324799777922451, 48.848507230624115], [2.324815117274028, 48.84850087867014], [2.324815951634153, 48.84849043730847], [2.324912385720108, 48.84838474813583], [2.325008171517511, 48.84827984216057], [2.325104604812286, 48.848174153712314], [2.32520038983567, 48.84806924756333], [2.325296822350925, 48.84796355894015], [2.325392606600297, 48.84785865261744], [2.3254890383360403, 48.847752963819374], [2.3255848218114092, 48.84764805732295], [2.325681252779285, 48.84754236745067], [2.325777035480658, 48.84743746078051], [2.3258734656574003, 48.84733177163265], [2.325969247584786, 48.847226864788794], [2.326065676982042, 48.84712117546603], [2.326161458135347, 48.84701626844844], [2.32616269784292, 48.84701450278953], [2.326195228963069, 48.84695160210109], [2.326233396568607, 48.84687696230052], [2.326232587814789, 48.84686995351845], [2.326224667903101, 48.84686131191883], [2.326193862658783, 48.84686398490589], [2.326009528238187, 48.84687877894695], [2.325823472738585, 48.84689367092927], [2.325639138107845, 48.846908464399256], [2.325453083770672, 48.8469233549136], [2.325268748929801, 48.84693814781249], [2.325082693006576, 48.84695303864203], [2.324898357955576, 48.846967830969895], [2.324712301832201, 48.84698272032374], [2.324527966571186, 48.846997512080534], [2.324341911586874, 48.84701240176496], [2.324330658174843, 48.84701842059321], [2.3242617345836782, 48.84715149387397], [2.324192044441626, 48.8472866969556], [2.324123120141703, 48.847419770124496], [2.324053429292944, 48.847554972193535], [2.323984504284254, 48.847688045250514], [2.323914812705347, 48.847823248105556], [2.3238458869879812, 48.8479563210506], [2.323776194690681, 48.84809152379235], [2.323754577648797, 48.84809553956757], [2.323593304229819, 48.84800696360011], [2.323441137799681, 48.84792273245389], [2.323279865459901, 48.84783415515085], [2.3231276986783262, 48.84774992358523], [2.322975532388543, 48.84766569181968], [2.32281426299821, 48.847577113876376], [2.322799091215022, 48.84756260314449], [2.322783913349471, 48.847563136891765], [2.322619070823947, 48.84748111907503], [2.322455493780983, 48.847399595642806], [2.322290650927112, 48.84731757735382], [2.322127076285438, 48.84723605256904], [2.321962234454038, 48.847154034714826], [2.321798660839439, 48.847072509469065], [2.321633820053903, 48.84699049025103], [2.321470246092167, 48.84690896543586], [2.321450398812175, 48.84691146281852], [2.321349964141064, 48.84702025285342], [2.321250689959504, 48.84712737656666], [2.321150254443574, 48.84723616731209], [2.3210509794402983, 48.84734329083888], [2.320950544465685, 48.84745208050403], [2.3208512686287692, 48.84755920474361], [2.320750831458516, 48.847667994212316], [2.320651554799864, 48.84777511826544], [2.320551116796578, 48.84788390754535], [2.320451839327705, 48.8479910305127], [2.320351401842285, 48.84809982051091], [2.320252123551564, 48.84820694329176], [2.320207549064037, 48.84824455312975], [2.320224297001298, 48.84825509346734], [2.320373891558809, 48.84832785623627], [2.320528869336624, 48.848406885551576], [2.320568806865964, 48.8484405218138]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 15, "roussel_fabien": 6.0, "nb_emargement": 1010.0, "nb_procuration": 75.0, "nb_vote_blanc": 6.0, "jadot_yannick": 70.0, "le_pen_marine": 40.0, "nb_exprime": 1002.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1257.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1010, "quartier_bv": "23", "geo_point_2d": [48.8481845702576, 2.3230725431617003], "melenchon_jean_luc": 145.0, "poutou_philippe": 5.0, "macron_emmanuel": 506.0}, "geometry": {"type": "Point", "coordinates": [2.3230725431617003, 48.8481845702576]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1c7bebf7db2f5939f1204aedf3d2ee20322f55bd", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 96, "zemmour_eric": 78.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "12-18", "geo_shape": {"coordinates": [[[2.389940400511669, 48.84448091678009], [2.389938135390956, 48.84449690390041], [2.389842588389773, 48.844576116788275], [2.389709408369775, 48.844683494361824], [2.389584347348115, 48.84478717367826], [2.389451167629919, 48.84489455005164], [2.38932610558807, 48.844998229078534], [2.38924075109152, 48.845067045655014], [2.3892393193734582, 48.84507270879246], [2.389265149352521, 48.84509119114008], [2.38942474450781, 48.845156404230764], [2.389585926630794, 48.84522239145211], [2.3897455225892412, 48.84528760410724], [2.389906706886717, 48.84535359089554], [2.390066303648325, 48.84541880311508], [2.390227487384624, 48.84548479035579], [2.390387084960014, 48.84555000124044], [2.390548270870718, 48.845615988048145], [2.3907078692387502, 48.845681199396495], [2.390869055972001, 48.845747184864955], [2.391028655143094, 48.84581239577765], [2.391189841325683, 48.84587838079925], [2.391349441299938, 48.845943591276345], [2.39151062964654, 48.846009576764196], [2.39167023042396, 48.84607478680571], [2.391831418230399, 48.84614077094739], [2.391991019811084, 48.84620598055323], [2.392152209791943, 48.84627196426187], [2.392157259320956, 48.84628357092305], [2.392116390222961, 48.84633850457914], [2.392076147811773, 48.84637521955531], [2.3920619875684013, 48.846391296433936], [2.39209202972363, 48.846413290844204], [2.392254518021471, 48.846489414936094], [2.392410290511968, 48.84656200799847], [2.392566062073819, 48.84663460084638], [2.392728551754194, 48.84671072427937], [2.392884325566385, 48.846783316710145], [2.393046816164852, 48.846859440600014], [2.393202589502371, 48.846932032599796], [2.393365082402395, 48.84700815515484], [2.393520856627751, 48.84708074673052], [2.393683350456451, 48.84715686884319], [2.393702976600982, 48.84715410205969], [2.393795032194027, 48.847051027582324], [2.393903205454942, 48.84692800603996], [2.393995260242237, 48.846824932286914], [2.394103432571553, 48.846701909639215], [2.394195486563463, 48.84659883571123], [2.394303657940378, 48.84647581375686], [2.394395711147367, 48.84637273875456], [2.394428562919461, 48.846335377632904], [2.394451035954097, 48.84632458040023], [2.394454143403128, 48.84631479585001], [2.394529461994224, 48.84622913479364], [2.394605842350012, 48.84614518963205], [2.39461052185924, 48.84613285886096], [2.394568614718309, 48.84611469115559], [2.39438735140325, 48.84603020917274], [2.394204084914761, 48.84594496400158], [2.394022821418461, 48.845860481446636], [2.393839556123082, 48.84577523570414], [2.393658295170515, 48.845690752590954], [2.393475031068237, 48.84560550627705], [2.3934472468027073, 48.845597785639036], [2.393430190396993, 48.84560928197201], [2.393411022777196, 48.84563802894362], [2.393384707043861, 48.845675060511375], [2.393364385139732, 48.84567852881097], [2.393210806559486, 48.84560522497161], [2.393057387858573, 48.8455315682921], [2.392903811505681, 48.84545826405592], [2.392750392319274, 48.845384606066844], [2.392596816831254, 48.84531130142689], [2.39244339851126, 48.8452376430344], [2.392289823888111, 48.84516433799071], [2.392136407797294, 48.84509067920181], [2.391982832676446, 48.845017373747424], [2.391829417452032, 48.84494371455512], [2.391675843196052, 48.844870408697055], [2.39152242883824, 48.84479674910135], [2.391368855447127, 48.84472344283953], [2.39121544195571, 48.84464978284048], [2.391061869429563, 48.844576476174936], [2.390908456804642, 48.84450281577251], [2.390754885143254, 48.8444295087032], [2.390601473384926, 48.84435584789744], [2.390447903950943, 48.84428254043137], [2.390294491696457, 48.84420887921528], [2.390275840156136, 48.844210530709084], [2.390150781396228, 48.844314210661565], [2.389988064400653, 48.84444833597669], [2.389958551423595, 48.84447280270041], [2.389940400511669, 48.84448091678009]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 18, "roussel_fabien": 19.0, "nb_emargement": 1151.0, "nb_procuration": 82.0, "nb_vote_blanc": 17.0, "jadot_yannick": 145.0, "le_pen_marine": 44.0, "nb_exprime": 1130.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1432.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "46", "geo_point_2d": [48.845662280944055, 2.3920041059342076], "melenchon_jean_luc": 322.0, "poutou_philippe": 4.0, "macron_emmanuel": 360.0}, "geometry": {"type": "Point", "coordinates": [2.3920041059342076, 48.845662280944055]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "032c2a8b514e8c5e420fdcd3cdbf8139837e7fcb", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 23, "zemmour_eric": 67.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-45", "geo_shape": {"coordinates": [[[2.396791362821551, 48.89609517260848], [2.396784383584798, 48.89609339458206], [2.396600714117372, 48.89605445076022], [2.3964160351020602, 48.89601625519176], [2.396232367556625, 48.89597730990994], [2.396047689085182, 48.89593911377077], [2.395864020723526, 48.89590016791438], [2.395679342795958, 48.89586197120449], [2.39549567633544, 48.895823025686596], [2.39531099895175, 48.895784828406], [2.395127331685463, 48.895745881414314], [2.39494265620955, 48.895707683569924], [2.394758989490959, 48.89566873601057], [2.394574313195045, 48.895630537588595], [2.394390648377582, 48.895591590367744], [2.394205972625563, 48.895553391375074], [2.394022307002375, 48.89551444268042], [2.393837633158145, 48.89547624312395], [2.393653968072194, 48.89543729476095], [2.393469293418561, 48.89539909372759], [2.393285630244101, 48.89536014480384], [2.393100956123906, 48.89532194409908], [2.393096582015605, 48.895320419174936], [2.392941890854176, 48.895239822630764], [2.392787433616133, 48.895160728023036], [2.392632743407741, 48.8950801310678], [2.392478287123593, 48.89500103515054], [2.392323597868236, 48.89492043778424], [2.392169142516992, 48.89484134235603], [2.392014454214665, 48.89476074457865], [2.391859999806812, 48.89468164874017], [2.391705312457508, 48.89460105055173], [2.391550859003654, 48.894521953403746], [2.391396171243415, 48.89444135479733], [2.391241720086297, 48.894362258145314], [2.391087033279079, 48.89428165912783], [2.390932581712003, 48.89420256115938], [2.390777897211134, 48.894121962637065], [2.39062344658744, 48.894042864258374], [2.390468996422504, 48.89396376657402], [2.390314313359257, 48.89388316653608], [2.390159864148224, 48.89380406754229], [2.390005182037982, 48.893723467093274], [2.389850733759786, 48.89364436858849], [2.389696052602542, 48.8935637677285], [2.389541605278251, 48.893484667914265], [2.389386925063459, 48.893404067542434], [2.389232478682531, 48.89332496731799], [2.389077799431275, 48.89324436563592], [2.388923353983155, 48.893165265900514], [2.388768675684887, 48.8930846638074], [2.388614231190677, 48.893005562762546], [2.388459552481676, 48.89292496025148], [2.388305108920156, 48.89284585969566], [2.3881504325279552, 48.8927652567805], [2.387995989909776, 48.892686155814545], [2.387841314470549, 48.89260555248839], [2.387686872806286, 48.89252645021295], [2.387532198320031, 48.892445846475795], [2.38737775758853, 48.89236674468943], [2.387223084055241, 48.89228614054126], [2.387218226996914, 48.892277131490715], [2.387252952089089, 48.892174234641445], [2.387294384529638, 48.89204803835974], [2.387329109318523, 48.89194514146689], [2.387358959119156, 48.891854221928725], [2.3873429519077343, 48.8918354207025], [2.387317788118744, 48.89183351669899], [2.387161532880739, 48.891756500708816], [2.3870066216531782, 48.89168016587664], [2.386850367335639, 48.89160314946966], [2.386695458384296, 48.891526814231256], [2.386539204987217, 48.891449797407496], [2.386384295584521, 48.89137346174894], [2.386228044471678, 48.891296444515355], [2.386073135981409, 48.891220108443605], [2.385916884425244, 48.89114309078626], [2.3857619768474, 48.89106675430129], [2.385605727575455, 48.890989736234175], [2.385450820910032, 48.890913399336036], [2.385294571194767, 48.89083638084516], [2.385139665441762, 48.89076004353382], [2.384983418010703, 48.89068302463317], [2.384828513170111, 48.89060668690868], [2.384672265295734, 48.89052966758424], [2.384517361367555, 48.89045332944657], [2.384361115777368, 48.89037630971241], [2.384206212761597, 48.89029997116156], [2.384049966728093, 48.890222951003615], [2.383895065988472, 48.8901466120466], [2.38385292493042, 48.890133891054944], [2.383829371157407, 48.8901509055161], [2.383796143312996, 48.89016289874331], [2.383783272141423, 48.89016297819683], [2.383699828548431, 48.890141245638134], [2.383572239463769, 48.8900972137351], [2.383566386453093, 48.89008519655411], [2.383592936042711, 48.89005048453787], [2.383615553431541, 48.890012343846635], [2.383611014654221, 48.890001864076496], [2.383427654784418, 48.88991153024484], [2.383250158141372, 48.88982030631564], [2.383215754067362, 48.88978803412899], [2.383194902707396, 48.88979151231701], [2.383136540411443, 48.88984193519075], [2.382983703048017, 48.8899740017625], [2.382876826818519, 48.89006634007815], [2.382860348206879, 48.8900724199966], [2.382851421078227, 48.89008804105964], [2.382861158111063, 48.890108336759646], [2.382893789649449, 48.89012538429102], [2.383047184322315, 48.89019978954806], [2.383191476769014, 48.89027297949734], [2.383335768257503, 48.890346169260816], [2.383489165565472, 48.890420574843006], [2.38363345788151, 48.89049376423794], [2.38378685606023, 48.89056816852951], [2.383931149203716, 48.890641357555836], [2.384084548242643, 48.89071576145605], [2.38422884221358, 48.89078895011387], [2.384382242102083, 48.890863354521954], [2.384385654612406, 48.89086575796277], [2.384401238860686, 48.89089368733311], [2.384411257937995, 48.8908971121905], [2.384519131839408, 48.89100849353443], [2.384621535469022, 48.891113331980854], [2.384729410257579, 48.89122471401269], [2.384831813372154, 48.89132955225163], [2.384939689069016, 48.8914409331728], [2.385042094396008, 48.891545771218205], [2.385144500135283, 48.89165060916606], [2.385252377166304, 48.89176198977296], [2.385354782390445, 48.89186682751332], [2.385462660308654, 48.8919782088081], [2.385565067745251, 48.89208304635492], [2.38567294657189, 48.89219442653904], [2.385775354857162, 48.892299263885384], [2.385883234571017, 48.89241064475737], [2.385879215385843, 48.89242300686737], [2.385691784062375, 48.89250400042269], [2.385522188857686, 48.892582333291564], [2.385334755041384, 48.89266332626926], [2.385165158769972, 48.89274165952039], [2.385159479783888, 48.89274776551449], [2.3851295229708382, 48.89288745215279], [2.385097356599367, 48.89302620741798], [2.385067399459447, 48.89316589400522], [2.385035234103605, 48.89330465012477], [2.385005276647329, 48.89344433576178], [2.384973109590179, 48.893583091822364], [2.384966324099734, 48.89358956713595], [2.384776579100453, 48.89366008465314], [2.384597141990959, 48.893726212209856], [2.384417703072559, 48.89379233858742], [2.384227956591162, 48.89386285522227], [2.384048518086156, 48.8939289819447], [2.383858770606763, 48.89399949798583], [2.383841161437521, 48.89399705926414], [2.383758506988409, 48.8939243809615], [2.383665442139626, 48.893847206385715], [2.383582789526987, 48.893774528858145], [2.3834897252065153, 48.893697354135256], [2.383466140125329, 48.8937000502745], [2.383416143747702, 48.893796788807094], [2.38338323545663, 48.89386474269886], [2.383384314243352, 48.893872118164175], [2.383492051205535, 48.89399597564193], [2.383609513978706, 48.89412266016036], [2.383607553039173, 48.89413368919186], [2.383456448616909, 48.89423397574938], [2.3833194803096722, 48.89432818267486], [2.383182512881282, 48.894422388543376], [2.383031406791785, 48.89452267543741], [2.382894438330503, 48.894616880959724], [2.38274333112165, 48.89471716747247], [2.382724411601127, 48.89471744137064], [2.382563588344027, 48.89461969645863], [2.382402608946045, 48.89452113753061], [2.3822417868886783, 48.89442339306818], [2.382080808706814, 48.89432483368992], [2.382075707857555, 48.89432286394416], [2.381947208584781, 48.89429558551188], [2.381805895343431, 48.89426728481729], [2.381677396349193, 48.89424000609413], [2.381536083394774, 48.894211705979], [2.381529498835214, 48.894208801350246], [2.381391464885581, 48.89409773668441], [2.381253193755154, 48.8939877426067], [2.381115162334041, 48.89387667850623], [2.380976892374398, 48.89376668408736], [2.380953771552471, 48.89374993527454], [2.380912604704095, 48.893770145076665], [2.380789205587458, 48.89383209242253], [2.380668338633374, 48.89389716167803], [2.3805449389250732, 48.893959108765], [2.380424071370753, 48.89402417776638], [2.380396456832899, 48.89403685826699], [2.380406866107511, 48.89406024403235], [2.380446235731413, 48.89409115493694], [2.380581267826798, 48.89419688121445], [2.380704752907599, 48.894293834121946], [2.380711719240031, 48.89429674616621], [2.380880164835127, 48.89432603738663], [2.381078617032354, 48.894360812812764], [2.381247063041034, 48.8943901035154], [2.381445515727514, 48.89442487833151], [2.38145080418739, 48.89444044495729], [2.381289023625215, 48.89453038094343], [2.381148571100713, 48.89460853345118], [2.380986789483473, 48.89469846991453], [2.380846334687987, 48.894776622048795], [2.380705879481534, 48.89485477311348], [2.38054409633444, 48.89494470895854], [2.380403641573933, 48.89502286056308], [2.380241857382547, 48.89511279598605], [2.380101400361739, 48.89519094631782], [2.379939615125954, 48.895280881318676], [2.379799157187402, 48.89535903218323], [2.379637370917823, 48.89544896586268], [2.379496913435912, 48.895527116367795], [2.3793992089512512, 48.89558142884311], [2.379385042976216, 48.895580056817515], [2.379356693697776, 48.89559936122369], [2.379292610806674, 48.89563498288173], [2.379185401118415, 48.89567517700018], [2.379169641448073, 48.89570622335428], [2.379181314136344, 48.89572063606315], [2.379372299727729, 48.89572718825845], [2.379575065952333, 48.895733843449676], [2.37976605301622, 48.89574039412478], [2.379968819342585, 48.895747048649234], [2.380159805129956, 48.895753599588495], [2.380362571558073, 48.895760253446184], [2.380553557454022, 48.89576680285818], [2.380756323973184, 48.89577345694841], [2.38094731133109, 48.895780005739454], [2.381150077962682, 48.895786658263646], [2.38134106404386, 48.89579320731888], [2.381543830777175, 48.89579985917629], [2.381734816967085, 48.895806406704224], [2.381937583802111, 48.89581305789494], [2.382128571443073, 48.89581960570118], [2.382331338379904, 48.8958262562251], [2.382522324765571, 48.895832802497], [2.38272509180399, 48.89583945235418], [2.382916078277014, 48.895845998897336], [2.3831188454171173, 48.89585264808777], [2.383309833362499, 48.89585919311063], [2.383500819981458, 48.89586573872111], [2.38370358727311, 48.89587238692141], [2.383713932889989, 48.895876072500386], [2.383793148865143, 48.89594969346584], [2.38390740365309, 48.89605306414974], [2.383986620160484, 48.89612668587458], [2.38406361144659, 48.89619634180388], [2.384067906935646, 48.896222712055334], [2.3841036729315, 48.896231578895744], [2.384140935903891, 48.89626529252924], [2.384259236663561, 48.896371048847634], [2.384373491937801, 48.89647441904009], [2.384491793655792, 48.896580174209305], [2.384606049850611, 48.89668354416015], [2.384724352516194, 48.896789299079444], [2.384838609631805, 48.896892668788645], [2.384956913234366, 48.89699842435731], [2.385071171270577, 48.89710179382488], [2.385189474467546, 48.897207548237326], [2.385303734788396, 48.897310917470314], [2.385417995562975, 48.897414286584535], [2.385536300174451, 48.89752004062421], [2.385650560505918, 48.89762340948975], [2.385768867418353, 48.89772916418575], [2.385883128670453, 48.89783253280967], [2.386001436541143, 48.89793828635643], [2.386055899986467, 48.89796431563725], [2.386072323672078, 48.89795728985101], [2.386268710150409, 48.897963840688256], [2.386469477049577, 48.897970114172146], [2.386665863626355, 48.89797666435801], [2.386866630622829, 48.897982937176074], [2.387063018661895, 48.897989486717634], [2.3872637857556662, 48.897995758869854], [2.387460172539587, 48.898002306853826], [2.387660939720166, 48.89800857923943], [2.3878573266023952, 48.8980151265721], [2.388058095254677, 48.89802139739957], [2.388254482224739, 48.89802794498018], [2.388455249610336, 48.89803421513485], [2.388651636678693, 48.898040762064156], [2.388852404161546, 48.89804703155298], [2.389048792692042, 48.898053577837864], [2.3892495602722432, 48.89805984666084], [2.389445947537063, 48.89806639228749], [2.389646715214501, 48.898072660444605], [2.3898431025775873, 48.898079205419904], [2.390043871716103, 48.89808547291814], [2.390240259188082, 48.89809201634286], [2.390441027049326, 48.898098284067544], [2.390637414619545, 48.89810482684095], [2.39083818395248, 48.89811109300746], [2.391034571610306, 48.89811763602876], [2.391235339676584, 48.89812390152249], [2.391431727432637, 48.898130443892526], [2.391632495596099, 48.898136708720415], [2.39182888345037, 48.898143250439105], [2.392029653074864, 48.898149514608036], [2.392226041027445, 48.8981560556754], [2.392426809385148, 48.898162319171576], [2.392623197446418, 48.898168858688315], [2.392823967254741, 48.89817512242484], [2.393020355414091, 48.89818166129027], [2.393221123955712, 48.89818792435399], [2.393417512213234, 48.89819446256809], [2.393618280862369, 48.898200724066726], [2.393814669207679, 48.89820726252877], [2.394015439317896, 48.89821352336844], [2.394211827761366, 48.89822006117914], [2.394412596604742, 48.898226321346044], [2.394608985146258, 48.89823285850543], [2.394809755450798, 48.8982391180134], [2.395006144090454, 48.89824565452142], [2.395206913128029, 48.89825191335665], [2.395403301876359, 48.898258448314124], [2.395417345446784, 48.89826869583843], [2.395441712244767, 48.8982719835273], [2.395488009930854, 48.89824588443623], [2.395494519081986, 48.898235306294154], [2.395567108048955, 48.89811886625536], [2.395662101739528, 48.89796448746982], [2.395734689964518, 48.89784804640137], [2.395787702117896, 48.89776189162648], [2.395840715449425, 48.8976757377275], [2.395913302872333, 48.89755929652006], [2.395928814857915, 48.89753408785735], [2.396001401886284, 48.897417646581495], [2.396071254059502, 48.89730412142453], [2.3961411072920162, 48.897190596221925], [2.396213693366667, 48.897074154780846], [2.396283544616106, 48.89696062946448], [2.396356130051665, 48.89684418791259], [2.396425982045889, 48.896730662496196], [2.396498566842157, 48.896614220833506], [2.396568416853334, 48.896500695303295], [2.396641001000003, 48.89638425442909], [2.396710851766392, 48.89627072789956], [2.39678343527389, 48.89615428691458], [2.396800556226788, 48.89612645931635], [2.396791362821551, 48.89609517260848]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 45, "roussel_fabien": 25.0, "nb_emargement": 1148.0, "nb_procuration": 35.0, "nb_vote_blanc": 19.0, "jadot_yannick": 63.0, "le_pen_marine": 64.0, "nb_exprime": 1121.0, "nb_vote_nul": 8.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1634.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1148, "quartier_bv": "74", "geo_point_2d": [48.89547483389237, 2.388428973589931], "melenchon_jean_luc": 606.0, "poutou_philippe": 4.0, "macron_emmanuel": 225.0}, "geometry": {"type": "Point", "coordinates": [2.388428973589931, 48.89547483389237]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2a4637b5e9054c9b8b413bf53dc8c464005b2d5b", "fields": {"lassalle_jean": 23.0, "pecresse_valerie": 75, "zemmour_eric": 83.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "13-28", "geo_shape": {"coordinates": [[[2.3729456214636713, 48.831656834844736], [2.372940290452956, 48.831638296973736], [2.3727812867407, 48.831546608029456], [2.372630776716023, 48.83145802756934], [2.372627449110621, 48.831455049389774], [2.3725441334537702, 48.83133308590601], [2.372459756206983, 48.83121107360904], [2.372376441343103, 48.831089109082626], [2.372292063510761, 48.83096709753299], [2.372208749429121, 48.83084513286318], [2.372124373746332, 48.83072312117578], [2.372041060446918, 48.83060115636262], [2.37195668418929, 48.830479144523245], [2.3718733730342763, 48.830357179573866], [2.371788997563884, 48.830235167589606], [2.371705685829, 48.830113202489706], [2.37162131251895, 48.829991189468444], [2.37153800155532, 48.829869225124554], [2.3714536276705243, 48.82974721195126], [2.371454108105155, 48.82973911294182], [2.371493605673423, 48.82969212422001], [2.371519279614275, 48.82965381192367], [2.371533312908143, 48.82963756837731], [2.371515608358946, 48.82962522950378], [2.371471908840267, 48.82961105600414], [2.371281367449566, 48.82954976064074], [2.37111495297844, 48.82949578860788], [2.371108201870749, 48.829494880717704], [2.370911071100206, 48.82950073673825], [2.370703455801594, 48.829508241575525], [2.370506324935069, 48.82951409692887], [2.370298710876285, 48.82952160196993], [2.370101578562492, 48.82952745574959], [2.369893964392245, 48.829534960087976], [2.369891943480717, 48.82953513381174], [2.369700186844401, 48.82956134284384], [2.369542765311841, 48.82958289395387], [2.369531846080315, 48.82958128857441], [2.369358847468724, 48.829495856243305], [2.369185693816104, 48.82940988680923], [2.369012696351331, 48.829324453065], [2.368839543838821, 48.82923848311663], [2.368666548861342, 48.82915304976516], [2.368493396137783, 48.829067078396044], [2.368476842836014, 48.82906716906344], [2.368385607446105, 48.82911405987539], [2.36828953433385, 48.82916210324075], [2.368270329110338, 48.829160255216514], [2.368248731017207, 48.829140827119545], [2.368221726347309, 48.829120273223936], [2.368204158419266, 48.829115848144035], [2.368188176242491, 48.82912164020866], [2.368065894194296, 48.829204277773016], [2.367905933441979, 48.82931057550608], [2.367783650503231, 48.82939321276793], [2.367623688595614, 48.82949951010561], [2.367501404766309, 48.82958214706493], [2.367341441692671, 48.82968844490651], [2.367219156983715, 48.82977108066403], [2.367215359466623, 48.82977834458062], [2.367231867067876, 48.829877881707326], [2.367250776728346, 48.82997211264957], [2.36724938286185, 48.829977412464764], [2.367162074364249, 48.83008931345572], [2.367074566740464, 48.83019559315009], [2.367062534311531, 48.83021330194462], [2.367091622250232, 48.830224406621845], [2.367273872239942, 48.830305101077876], [2.367477029528542, 48.83039272485173], [2.367481196791577, 48.83040494955517], [2.367413531387475, 48.83047792008019], [2.367344518270089, 48.83054844254182], [2.367346957237488, 48.830560071716285], [2.367438454213799, 48.83061326869713], [2.367505891015373, 48.830649198160145], [2.367515336940862, 48.830651437182105], [2.367668534703628, 48.83064814611729], [2.367822606316929, 48.83064558616681], [2.367975804043, 48.8306422947084], [2.368129875623917, 48.83063973436209], [2.368134663451183, 48.830640223732374], [2.368301018014193, 48.830676369515864], [2.368474953637306, 48.83071600957854], [2.368641308678091, 48.830752154886284], [2.368815246175001, 48.830791794458555], [2.368981601693558, 48.8308279392906], [2.369155538339879, 48.83086757835811], [2.369321894336205, 48.83090372271438], [2.369495831494225, 48.830943361284326], [2.369501238798291, 48.83095807470772], [2.369344016180412, 48.83106676208326], [2.369185544228481, 48.83117101595606], [2.369185300772604, 48.83118359236284], [2.369341027158842, 48.83129142605719], [2.369488418390165, 48.8313909305987], [2.369644144671537, 48.83149876297197], [2.369791538429856, 48.83159826712872], [2.369792762519096, 48.831599217916896], [2.369903445628308, 48.831698317130744], [2.370014332577325, 48.83179557629539], [2.370125016524745, 48.831894675286804], [2.370235905667042, 48.83199193423616], [2.370346793871744, 48.83208919216782], [2.370457479074581, 48.832188290825556], [2.370568369461719, 48.83228554944121], [2.370679055502584, 48.83238464787651], [2.370789945369528, 48.8324819053632], [2.370900632237673, 48.83258100447541], [2.370917982208525, 48.832601912522655], [2.370937966091881, 48.83260109847515], [2.370995125732302, 48.83256664658415], [2.371015607284513, 48.83254998916165], [2.371019145573592, 48.83254013359861], [2.370951623118552, 48.83242363488947], [2.370883283704493, 48.832310851621585], [2.370815761850054, 48.8321943528119], [2.370747421668383, 48.832081569436156], [2.370679901776659, 48.831965070533066], [2.370611562189494, 48.831852287056584], [2.370615696461728, 48.83184192739108], [2.370756571170868, 48.831767455265265], [2.370867297818724, 48.831714016233384], [2.370883347066266, 48.831713543945014], [2.371034058427359, 48.83177960924236], [2.371184359959288, 48.83184557505734], [2.371335070732188, 48.831911639061126], [2.371485373025581, 48.83197760449004], [2.371636085923976, 48.83204366811391], [2.371786388968101, 48.832109634056096], [2.371804422284316, 48.83210787967155], [2.371955708242993, 48.83198724945197], [2.372103915804055, 48.831868453772614], [2.372255199012659, 48.83174782314129], [2.372403405199723, 48.83162902796475], [2.372415636140215, 48.83162582383589], [2.372551803314069, 48.83163570643683], [2.372795757460938, 48.83165615516354], [2.372931924775362, 48.83166603823075], [2.3729456214636713, 48.831656834844736]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 28, "roussel_fabien": 31.0, "nb_emargement": 1459.0, "nb_procuration": 53.0, "nb_vote_blanc": 23.0, "jadot_yannick": 104.0, "le_pen_marine": 92.0, "nb_exprime": 1427.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 10, "nb_inscrit": 1778.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1459, "quartier_bv": "50", "geo_point_2d": [48.830568010216496, 2.370037714546719], "melenchon_jean_luc": 481.0, "poutou_philippe": 16.0, "macron_emmanuel": 451.0}, "geometry": {"type": "Point", "coordinates": [2.370037714546719, 48.830568010216496]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5e622cbfdafd2648bf80b929d63fcc18ae7d0434", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 99, "zemmour_eric": 103.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "8-10", "geo_shape": {"coordinates": [[[2.323298353092091, 48.86618323506923], [2.323241337846547, 48.86620715816203], [2.323062480297958, 48.866263539348815], [2.322884769436145, 48.86632008144257], [2.322705912476958, 48.8663764620985], [2.322528200843021, 48.86643300365699], [2.322349341735414, 48.866489384665904], [2.32217162932925, 48.866545925689245], [2.321992769459732, 48.86660230526024], [2.321815057644364, 48.86665884575607], [2.321636197001345, 48.866715224788486], [2.321458483050638, 48.86677176474142], [2.321279621634015, 48.86682814323518], [2.32110190691109, 48.86688468265286], [2.320923046072275, 48.86694106151506], [2.320745330577133, 48.866997600397546], [2.320566467613311, 48.86705397781411], [2.320388751345955, 48.86711051616136], [2.320209888971673, 48.867166893047035], [2.320032171932108, 48.867223430859084], [2.319853307421099, 48.86727980719837], [2.319675589597581, 48.86733634537447], [2.319496724312978, 48.86739272117514], [2.319319007092135, 48.86744925792447], [2.319140141033947, 48.8675056331865], [2.318962421677759, 48.86756216939284], [2.318784701935817, 48.86761870533244], [2.318605834717594, 48.86767507978737], [2.318428114191684, 48.867731616090964], [2.318249247563025, 48.86778799001502], [2.318071526276682, 48.86784452488412], [2.317892657511292, 48.86790089826176], [2.317714935452752, 48.86795743259562], [2.317536067276839, 48.86801380544239], [2.317358344446208, 48.86807033924098], [2.317179474121777, 48.868126712440606], [2.317001750518949, 48.868183245703925], [2.316822879432729, 48.86823961746562], [2.316645156420774, 48.86829615020151], [2.316466284561084, 48.86835252142452], [2.316458791018349, 48.86835333660473], [2.316308204793589, 48.86834146314124], [2.316070530744927, 48.86831836179664], [2.315919944697959, 48.868306488743535], [2.31591761205252, 48.868306395369686], [2.315778919327121, 48.86830871612853], [2.31564556932361, 48.86831392809215], [2.315506876554321, 48.868316249435026], [2.315373526504309, 48.86832146109553], [2.315368697266738, 48.86832213136399], [2.315169524677196, 48.8683760534307], [2.315057708129514, 48.86840688258337], [2.315052536290728, 48.8684093468708], [2.314972870158722, 48.868455640699416], [2.314844800652209, 48.86855415217515], [2.31477030271522, 48.86863419099508], [2.314768326842989, 48.86863619961203], [2.314675806907171, 48.868765216040536], [2.314614305563427, 48.86884630135801], [2.3146146067739872, 48.868854388192915], [2.314675464716527, 48.86892945333424], [2.3147402245411772, 48.86902565469305], [2.314733703599173, 48.869037399673665], [2.314563632551655, 48.869091687881124], [2.314396700393687, 48.8691453813725], [2.314226630005496, 48.86919966910366], [2.314059697165968, 48.86925336122052], [2.31388962471094, 48.869307648459724], [2.313722692529362, 48.8693613410084], [2.31355261937048, 48.86941562776345], [2.313385685132312, 48.869469319829065], [2.313215612632975, 48.869523606107805], [2.313048677713269, 48.86957729679887], [2.312878603146991, 48.869631582585605], [2.312711668885231, 48.86968527370853], [2.312541593615104, 48.86973955901113], [2.312374658671825, 48.8697932487595], [2.312204582698057, 48.869847533577946], [2.312037645686316, 48.86990122374253], [2.311994758805409, 48.86992542590683], [2.312001189358751, 48.869947003063054], [2.312151993071434, 48.8700239381155], [2.312217401894202, 48.8700559744946], [2.312225184895946, 48.870055769199226], [2.312261895006274, 48.87002720831767], [2.312456636774757, 48.87002802582884], [2.312632030584818, 48.87002999279518], [2.31282677100631, 48.87003080969631], [2.313002164839718, 48.87003277612027], [2.313196905277416, 48.870033592419176], [2.313372299134062, 48.870035558300756], [2.313381307489373, 48.87003785294111], [2.313537378770042, 48.87013007831177], [2.313693582471623, 48.870223366352384], [2.313849653486041, 48.87031559219183], [2.314005858303176, 48.87040887980927], [2.314161930438047, 48.87050110432682], [2.31431813637074, 48.870594391521074], [2.314474209602593, 48.87068661651526], [2.314630416650853, 48.87077990328632], [2.314786492366395, 48.87087212696632], [2.314942699166997, 48.8709654133064], [2.315098775979448, 48.871057637463004], [2.315254983895627, 48.87115092337989], [2.315411061816929, 48.8712431471138], [2.315567272211935, 48.87133643261527], [2.31558190736264, 48.87133799751633], [2.315782663403382, 48.871279770649245], [2.315980883851807, 48.871222741269136], [2.316181639014159, 48.87116451282751], [2.316379857212228, 48.87110748367227], [2.316580611484375, 48.87104925455546], [2.316778828806935, 48.870992224733534], [2.316789016599283, 48.87099203556535], [2.316974220607973, 48.871037314130966], [2.317151756228337, 48.871078021368156], [2.317329292126185, 48.8711187283405], [2.317514497043277, 48.87116400696427], [2.317692033517662, 48.87120471339546], [2.317877239067463, 48.87124999055513], [2.317884372595674, 48.87125400180456], [2.317968797170669, 48.87135262993175], [2.318055233004782, 48.87145333793486], [2.318139658226476, 48.87155196592369], [2.318226093346786, 48.871652674676795], [2.318310520578232, 48.871751302535145], [2.318396956371331, 48.87185201024738], [2.318481382886235, 48.871950637959614], [2.318567820691953, 48.872051346437345], [2.318581455393372, 48.872055832631226], [2.318775383519469, 48.87203906834104], [2.318969438982454, 48.87202246094713], [2.319163368222591, 48.87200569603563], [2.31935742206253, 48.87198908890373], [2.319551351053545, 48.87197232336317], [2.319745406020458, 48.87195571471028], [2.319939333399177, 48.87193894853288], [2.320133388106302, 48.871922340149794], [2.320327316599038, 48.8719055733511], [2.320521369706586, 48.87188896343148], [2.320715297950268, 48.87187219600367], [2.320909350798025, 48.87185558635388], [2.321103278792446, 48.871838818296986], [2.321297332755391, 48.87182220802547], [2.321491259149104, 48.8718054384325], [2.321685312863969, 48.87178882753151], [2.321879240360143, 48.87177205821645], [2.322073292463668, 48.871755446678236], [2.322102130120342, 48.87176274447891], [2.32212236289565, 48.87174339820763], [2.322151628700925, 48.871702291351134], [2.3221767900062282, 48.87165999119965], [2.322183890146662, 48.871655073334644], [2.322370715076968, 48.87159965875721], [2.322551317504911, 48.871545912024025], [2.322738141652704, 48.87149049686766], [2.32291874331135, 48.87143675047401], [2.323099344608987, 48.87138300290606], [2.323286166226319, 48.871327586878465], [2.3234667667663462, 48.87127383875078], [2.323653588964503, 48.871218422151955], [2.323834188735242, 48.8711646743639], [2.3240210101625483, 48.87110925628689], [2.324201609175675, 48.87105550793917], [2.324388429820651, 48.87100008928324], [2.324406444877745, 48.87100458964812], [2.324486245361365, 48.87112114329649], [2.32456511920868, 48.87124032042489], [2.324583843203927, 48.871244722237016], [2.324737853553893, 48.87119253360021], [2.324892341030949, 48.87114137540341], [2.325046352129605, 48.87108918637249], [2.325200838997066, 48.87103802777277], [2.325218995211339, 48.87104184620996], [2.325311591805789, 48.87115685801065], [2.325402283957458, 48.87126915557075], [2.325494881372227, 48.87138416630669], [2.3255855756781623, 48.871496463712525], [2.325678172526821, 48.8716114751746], [2.325768867635329, 48.87172377151917], [2.325861466656032, 48.871838782823495], [2.325952162543742, 48.87195107990534], [2.326044761021727, 48.87206609013722], [2.326135457700386, 48.87217838705704], [2.326140203495361, 48.872181759322665], [2.326291223221193, 48.8722409280741], [2.326479323534175, 48.87231939378926], [2.326541268305974, 48.872315088233165], [2.326536506572186, 48.87227878203187], [2.326502397326522, 48.87214685645673], [2.326467094318553, 48.87201290062048], [2.326432986785957, 48.87188097500146], [2.326397684136691, 48.87174701911248], [2.326363575602366, 48.87161509253497], [2.326328274663419, 48.871481137500204], [2.32629416647899, 48.871349210871166], [2.326258865910358, 48.87121525488442], [2.326224758064289, 48.87108332910313], [2.326189456491103, 48.87094937305601], [2.326155350358051, 48.870817447230834], [2.326120049143546, 48.87068349113102], [2.326085941997142, 48.87055156524667], [2.326050642504536, 48.870417609101814], [2.326016535708107, 48.87028568316597], [2.325981236574062, 48.8701517269684], [2.325947130127503, 48.870019800981], [2.325911829989011, 48.86988584472308], [2.325877725255418, 48.86975391869185], [2.325842425475586, 48.869619962381265], [2.325858813652172, 48.86958792115501], [2.325820941104605, 48.86956491308954], [2.3257015261230363, 48.86954419225748], [2.325532766922583, 48.86951741408178], [2.325337733700482, 48.86948357162286], [2.325168974895086, 48.869456792033425], [2.325158969275355, 48.86944578701545], [2.32520334346288, 48.86933310215188], [2.325235280983522, 48.86923173733551], [2.325279654823631, 48.869119052421816], [2.325311592064544, 48.86901768756548], [2.325310611011616, 48.869012071030305], [2.325223873780524, 48.86888882255142], [2.325135842404579, 48.86875743033265], [2.325049107362605, 48.86863418260564], [2.324961075506278, 48.868502789321106], [2.324874341301779, 48.86837954143913], [2.3247863116680962, 48.86824814890276], [2.324699578312613, 48.868124899966425], [2.324611548186886, 48.86799350726358], [2.324524815657297, 48.86787025907154], [2.324435159829216, 48.86774781989899], [2.324348428125905, 48.867624571551744], [2.324258771760439, 48.86750213311143], [2.324172040895267, 48.86737888370971], [2.32408238536722, 48.86725644511008], [2.323995655316642, 48.867133196452464], [2.323906002000804, 48.867010756801946], [2.323819271413548, 48.86688750798143], [2.323729618923431, 48.86676506907089], [2.323642890537215, 48.86664181920363], [2.323553237521357, 48.866519380126086], [2.323566356910999, 48.86649030017954], [2.323533301993854, 48.866465750076145], [2.323443649550256, 48.86634330999771], [2.323351068952727, 48.866223947931665], [2.323298353092091, 48.86618323506923]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 10, "roussel_fabien": 4.0, "nb_emargement": 768.0, "nb_procuration": 43.0, "nb_vote_blanc": 5.0, "jadot_yannick": 35.0, "le_pen_marine": 54.0, "nb_exprime": 763.0, "nb_vote_nul": 0.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1031.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 768, "quartier_bv": "31", "geo_point_2d": [48.86951383502914, 2.3202931580992603], "melenchon_jean_luc": 94.0, "poutou_philippe": 3.0, "macron_emmanuel": 355.0}, "geometry": {"type": "Point", "coordinates": [2.3202931580992603, 48.86951383502914]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c95600e9b62208f1d3b5b98e1e915cc7e7fd00e5", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 26, "zemmour_eric": 43.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "18-51", "geo_shape": {"coordinates": [[[2.358836628169636, 48.901601965962804], [2.358830155631311, 48.90159065661599], [2.358841583728401, 48.901460443185805], [2.358850823807086, 48.90133033583665], [2.358862251784255, 48.90120012327276], [2.35887149176508, 48.90107001589103], [2.35888291964438, 48.9009398023949], [2.35889215951627, 48.90080969587984], [2.35890358728683, 48.90067948235073], [2.358912828435951, 48.90054937491114], [2.358924254722582, 48.90041916224101], [2.358933495773738, 48.90028905476887], [2.358944921962613, 48.90015884116652], [2.358954162916008, 48.9000287336618], [2.358965588984979, 48.89989852092575], [2.358974829840413, 48.89976841338847], [2.3589862571756193, 48.89963819972748], [2.358995496558232, 48.89950809304959], [2.359006923784604, 48.899377879355654], [2.359016163080439, 48.899247771745955], [2.359027590186806, 48.899117558918306], [2.359036829384793, 48.898987451276035], [2.359048256393502, 48.8988572375162], [2.359057495493642, 48.89872712984138], [2.359066735911564, 48.89859702215766], [2.359078161384744, 48.89846680924046], [2.359087401704714, 48.89833670152423], [2.359098828444097, 48.89820648768209], [2.359108067291294, 48.89807638082524], [2.359119493921853, 48.89794616695019], [2.359128732682176, 48.897816059161585], [2.359140159192842, 48.89768584615277], [2.359149397855426, 48.897555738331626], [2.35916082426834, 48.897425524390684], [2.359163567518475, 48.89740012886158], [2.359158394423906, 48.897393878804245], [2.359169820778794, 48.89726366484317], [2.359181833442059, 48.897133906359805], [2.359193258317344, 48.897003692358254], [2.359205270862208, 48.896873933841725], [2.359216696974671, 48.89674372071363], [2.359228709412201, 48.89661396126464], [2.359240134045079, 48.89648374809609], [2.359252146364212, 48.89635398861397], [2.359263572245327, 48.896223775419564], [2.359275584434994, 48.8960940168035], [2.3592870088476072, 48.8959638026694], [2.359299020918883, 48.89583404402021], [2.359310446579721, 48.895703829860246], [2.359322458532602, 48.89557407117793], [2.359333882713889, 48.89544385697751], [2.359345894548381, 48.89531409826202], [2.35935731997778, 48.89518388403577], [2.359369331693982, 48.89505412528715], [2.359360496876791, 48.89504076180597], [2.359292299183646, 48.89503662071425], [2.359094513263703, 48.89503762899585], [2.358897094923269, 48.89503813799789], [2.35869931035368, 48.895039145634115], [2.358501892014715, 48.895039653085384], [2.358304107431826, 48.89504066006893], [2.358106689083271, 48.895041166868715], [2.357908904486891, 48.895042173199556], [2.35771148611766, 48.895042680247116], [2.357513700144128, 48.89504368591792], [2.3573162817764173, 48.89504419141475], [2.357118497153282, 48.89504519644017], [2.356921078776112, 48.89504570128549], [2.356723294139616, 48.89504670565823], [2.356525875741679, 48.89504721075133], [2.356328089727959, 48.89504821446405], [2.356130671331693, 48.89504871800637], [2.355932886668501, 48.89504972107371], [2.355735468262603, 48.89505022396455], [2.355537683586081, 48.89505122637919], [2.355340265159627, 48.895051729517824], [2.355142480480918, 48.89505273038048], [2.354945062044845, 48.895053232867625], [2.354747275977918, 48.89505423396949], [2.354549857543482, 48.89505473490589], [2.354352072827022, 48.89505573536243], [2.354154654371939, 48.895056236546594], [2.353956869653444, 48.89505723545115], [2.353759451188871, 48.89505773598383], [2.353561665081966, 48.89505873512761], [2.35336424661908, 48.895059234109524], [2.353166461862873, 48.89506023260794], [2.352969043390526, 48.89506073093837], [2.3529221763994332, 48.895060788872286], [2.35291171739295, 48.89508133667224], [2.352920127727293, 48.895179531168964], [2.352929519671591, 48.895292029241574], [2.352931070391514, 48.89538432938597], [2.352940462385223, 48.895496828335965], [2.352942013130747, 48.895589128462944], [2.3529514051961202, 48.89570162649178], [2.35294307121895, 48.89579437771135], [2.352942982807574, 48.89579600410196], [2.352917556440277, 48.89592819882234], [2.352909222366537, 48.89602095002036], [2.352883756358862, 48.89615105087903], [2.352858329667785, 48.896283245544026], [2.352832863393557, 48.896413347259966], [2.352807435081145, 48.89654554187507], [2.352781968562613, 48.89667564264977], [2.352756541356877, 48.89680783722982], [2.352731074571579, 48.89693793886178], [2.352705647119691, 48.89707013250009], [2.352680180079008, 48.89720023409005], [2.352654752358499, 48.89733242858515], [2.352629285073505, 48.89746252923388], [2.352603855731823, 48.89759472367911], [2.352578388180046, 48.89772482518508], [2.352552959956132, 48.89785701869595], [2.352552385821931, 48.897857557880535], [2.352550757837045, 48.897885693219386], [2.3525323993490233, 48.897997471752575], [2.3525191603217612, 48.89811854181707], [2.352500803047739, 48.89823032032896], [2.3524875638767, 48.89835139126349], [2.352487537088937, 48.898351570982086], [2.352470955009898, 48.89847579122216], [2.352457715718105, 48.89859686122698], [2.352441133489781, 48.89872108143506], [2.352427894055071, 48.898842152308696], [2.352411311688646, 48.898966371585594], [2.352398072122203, 48.89908744242878], [2.352381489595302, 48.8992116625729], [2.352368249908312, 48.89933273248641], [2.352351667232119, 48.899456952598555], [2.352338427402205, 48.89957802338084], [2.352338347303981, 48.89957854095378], [2.35231210482739, 48.899711043655735], [2.3522851849896282, 48.89984283131446], [2.352258940880501, 48.899975333965365], [2.352232020782781, 48.90010712068104], [2.352205777757818, 48.900239624194896], [2.352178857388847, 48.90037141086679], [2.352152614106531, 48.90050391343772], [2.352125693455115, 48.900635700965076], [2.352099448540333, 48.90076820348494], [2.352072527617554, 48.900899990968476], [2.352045606569766, 48.90103177753081], [2.352019362604192, 48.90116428089179], [2.35199244128514, 48.90129606741029], [2.351966197051109, 48.90142857072759], [2.351963078761914, 48.90144982444414], [2.352011201561123, 48.90146539474308], [2.352055409034892, 48.90146619957879], [2.352058852621833, 48.90146626227466], [2.352061633409948, 48.90146631239163], [2.352067973692677, 48.901466428529154], [2.352098910062599, 48.901466991583455], [2.352144470428351, 48.90146782079176], [2.35234004868009, 48.90147224108533], [2.352555806867141, 48.90147616760773], [2.352751383809944, 48.90148058812144], [2.352967143437825, 48.901484513010935], [2.353162720446906, 48.901488932852985], [2.353378478776344, 48.90149285699412], [2.353574057215731, 48.90149727617178], [2.353789815599689, 48.901501200471166], [2.353985392752458, 48.90150561807051], [2.354201151201893, 48.90150954162887], [2.354396729773788, 48.901513959463145], [2.354612392829997, 48.901517879967464], [2.354807971479259, 48.901522296230894], [2.355003548786523, 48.90152671306685], [2.35521921194126, 48.901530632478526], [2.3554147906787692, 48.90153504865028], [2.355630453898996, 48.901538967321436], [2.355826032702804, 48.90154338282161], [2.356052674598884, 48.901547499173255], [2.356248253470453, 48.901551913983994], [2.356474896789879, 48.901556030443174], [2.356670474365364, 48.90156044455713], [2.356867702573198, 48.90156463519193], [2.357063280225319, 48.90156904776515], [2.357260509861406, 48.90157323776035], [2.357456087568039, 48.9015776505914], [2.357653315904292, 48.90158183993247], [2.357848895040576, 48.90158625212931], [2.357851742555543, 48.90158631236201], [2.357996463811324, 48.90158938594523], [2.358192041640999, 48.901593797574456], [2.358336762937781, 48.901596870746474], [2.358359637139445, 48.901597356614545], [2.35846061748381, 48.901599501026766], [2.358656196765939, 48.90160391100606], [2.358729146579694, 48.901605459930664], [2.358782387454684, 48.90160659033484], [2.358836628169636, 48.901601965962804]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 51, "roussel_fabien": 29.0, "nb_emargement": 1308.0, "nb_procuration": 29.0, "nb_vote_blanc": 16.0, "jadot_yannick": 31.0, "le_pen_marine": 74.0, "nb_exprime": 1271.0, "nb_vote_nul": 14.0, "arr_bv": "18", "arthaud_nathalie": 8, "nb_inscrit": 1973.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1301, "quartier_bv": "71", "geo_point_2d": [48.89833369102627, 2.355810976817785], "melenchon_jean_luc": 770.0, "poutou_philippe": 16.0, "macron_emmanuel": 231.0}, "geometry": {"type": "Point", "coordinates": [2.355810976817785, 48.89833369102627]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "445c7b778dc22f331e390ad8411967db53dd32ff", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 44, "zemmour_eric": 69.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "20-57", "geo_shape": {"coordinates": [[[2.408031929812628, 48.847300992569174], [2.408018206861663, 48.847299259964686], [2.407941059327611, 48.847305442594234], [2.4077410027965263, 48.847323070832935], [2.407553550591562, 48.847338091871826], [2.40735349244154, 48.8473557194553], [2.407166039997219, 48.84737074078597], [2.40696598295332, 48.84738836772772], [2.40677853029011, 48.84740338755144], [2.406578472989921, 48.847421013844695], [2.406391018724729, 48.84743603395346], [2.406354083845668, 48.84743920438104], [2.406342601865186, 48.847445424896776], [2.406142544256084, 48.84746305046044], [2.405944050947571, 48.84748102790973], [2.405743993067005, 48.84749865280643], [2.405545499485305, 48.847516629593954], [2.405345441333284, 48.84753425382362], [2.405146947478611, 48.84755222994936], [2.404946889055145, 48.84756985351205], [2.404748396289939, 48.847587828982775], [2.404548337595037, 48.847605451878444], [2.404349843194244, 48.8476234266806], [2.404149784227915, 48.84764104890929], [2.403951289553973, 48.84765902304963], [2.403751230316229, 48.84767664461133], [2.403552735369352, 48.84769461808989], [2.4034941023344603, 48.847699782150634], [2.403477098791983, 48.847698342946316], [2.40344833701718, 48.84770924630039], [2.403306910516593, 48.847721702180856], [2.403114678144032, 48.847738131398664], [2.40291461833003, 48.84775575066091], [2.4027223857081053, 48.84777217924791], [2.402522325620458, 48.84778979875292], [2.402330092759588, 48.84780622580988], [2.402130032408611, 48.84782384465837], [2.401937799298603, 48.84784027108448], [2.401737738684304, 48.84785788927646], [2.401545505314639, 48.847874315971055], [2.401345444447355, 48.84789193260725], [2.4011532108284612, 48.84790835867103], [2.400953149687644, 48.84792597555], [2.40076091582987, 48.84794240008373], [2.400560854425659, 48.847960016306196], [2.400368620318681, 48.84797644020905], [2.400168557288542, 48.84799405576816], [2.399976322922118, 48.848010479939504], [2.3997762610017013, 48.84802809394966], [2.399584026385983, 48.84804451749018], [2.399383964191944, 48.84806213174309], [2.399191729337408, 48.848078553753524], [2.399149181868327, 48.848081729748685], [2.3991326678881713, 48.848098104987905], [2.399132261258475, 48.84809850675559], [2.399137831431774, 48.84813223801388], [2.399156729257308, 48.84822313887001], [2.399178849723055, 48.848337816821825], [2.39918187304632, 48.84846267666927], [2.399203993669074, 48.84857735459175], [2.399207017066581, 48.84870221441174], [2.399229137846243, 48.84881689230486], [2.399257129851449, 48.848829747015515], [2.399323001314658, 48.848835638445884], [2.39952531400459, 48.848911182493595], [2.399730015510725, 48.84898583432637], [2.399736325657923, 48.848986954202296], [2.399935221091283, 48.84898966068309], [2.400134140855564, 48.84899238584152], [2.400333036330311, 48.84899509166104], [2.400531957498691, 48.84899781616491], [2.400730853014815, 48.84900052132308], [2.400929772862148, 48.84900324515872], [2.40112866841964, 48.84900594965551], [2.4013275883084813, 48.84900867282976], [2.401526483907329, 48.849011376665246], [2.401725405200342, 48.849014099184906], [2.40192430084054, 48.849016802359074], [2.402123220802053, 48.84901952510981], [2.40232211648359, 48.84902222762262], [2.402521036496905, 48.849024948812605], [2.40271993358244, 48.84902765067096], [2.402918853637224, 48.84903037119955], [2.403117749401404, 48.84903307238973], [2.403316669497649, 48.84903579225693], [2.4035155653031373, 48.84903849278577], [2.403714486803401, 48.84904121199833], [2.403913382650185, 48.84904391186588], [2.404112302829318, 48.84904663041024], [2.404311198717389, 48.849049329616435], [2.404510118937951, 48.849052047499406], [2.404709016229971, 48.84905474605105], [2.404907936481683, 48.84905746417188], [2.405106832452302, 48.84906016205544], [2.405305752755695, 48.849062878615584], [2.40550464876757, 48.849065575837784], [2.405703570475036, 48.8490682917433], [2.405902466528157, 48.84907098830414], [2.4061013869143393, 48.84907370354146], [2.406300283008696, 48.849076399441], [2.406499203436256, 48.8490791140169], [2.40669809957184, 48.84908180925512], [2.406897021403342, 48.84908452317638], [2.407095917580141, 48.84908721775326], [2.407294838090429, 48.84908993100635], [2.407493734308435, 48.84909262492186], [2.407692654860071, 48.84909533751354], [2.407711974262753, 48.84909605550588], [2.40772093752448, 48.849085930901175], [2.407721008788394, 48.849085415925096], [2.4077255534454842, 48.849038058744775], [2.407728514054707, 48.848989671157206], [2.40774257047218, 48.848981045801], [2.40783259198715, 48.848982969923874], [2.40791006714539, 48.8489843930067], [2.407935807918658, 48.84898340968887], [2.407936841057958, 48.84896624076888], [2.407944706288771, 48.84883181930974], [2.407952784384319, 48.84869724959486], [2.407960649543726, 48.84856282720286], [2.407968727556408, 48.848428257454394], [2.4079765926237773, 48.84829383592816], [2.40798467192646, 48.848159265253535], [2.407992536912106, 48.84802484369383], [2.408000614759054, 48.84789027387818], [2.408008479673299, 48.84775585138568], [2.40801655879992, 48.84762128154316], [2.408024423632442, 48.84748685901713], [2.408032501313664, 48.84735228913434], [2.408031929812628, 48.847300992569174]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 57, "roussel_fabien": 28.0, "nb_emargement": 1101.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 85.0, "le_pen_marine": 69.0, "nb_exprime": 1081.0, "nb_vote_nul": 5.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1391.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "80", "geo_point_2d": [48.848340346723056, 2.404087396260957], "melenchon_jean_luc": 387.0, "poutou_philippe": 15.0, "macron_emmanuel": 329.0}, "geometry": {"type": "Point", "coordinates": [2.404087396260957, 48.848340346723056]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bff5653976ad1472f94ce31cf198d7f7cbde88a0", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 89, "zemmour_eric": 110.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "14-42", "geo_shape": {"coordinates": [[[2.33042225389913, 48.82240469177225], [2.330378562029502, 48.82240599045187], [2.330193582847874, 48.822446102931195], [2.330011279900228, 48.82248567699999], [2.329826301515308, 48.82252578891595], [2.329643997998725, 48.82256536332132], [2.32945901768658, 48.8226054746587], [2.329276713624187, 48.82264504760201], [2.329091732746792, 48.82268515836838], [2.328909428127033, 48.82272473074897], [2.328724446684395, 48.822764840944366], [2.3285421428576702, 48.822804413669196], [2.328357160849793, 48.822844523293554], [2.328174855115317, 48.8228840945487], [2.327989872542207, 48.822924203602064], [2.327807566250381, 48.82296377429448], [2.327625259670242, 48.82300334560684], [2.327440277613256, 48.8230434538135], [2.32725797048727, 48.823083023663806], [2.327072986503185, 48.82312313129178], [2.326890678819863, 48.82316270057934], [2.32670569425885, 48.82320280853561], [2.326523386018295, 48.82324237726045], [2.326338400903683, 48.82328248374639], [2.326156093467793, 48.82332205191616], [2.325971107787979, 48.82336215783108], [2.325788798421151, 48.82340172632975], [2.325603812176137, 48.82344183167365], [2.32558614284943, 48.82343482118506], [2.32556652027258, 48.82336000348031], [2.325551254053329, 48.82328431095673], [2.325543213270416, 48.82327719107859], [2.325516413293432, 48.823280981904844], [2.325338474064701, 48.823317864535696], [2.325151996044026, 48.82335651636248], [2.324974054937742, 48.82339339844094], [2.324787577738662, 48.82343204970456], [2.3246096361168203, 48.82346893123825], [2.324423158377551, 48.823507581931004], [2.324245216240155, 48.823544462920026], [2.324058736598609, 48.82358311303419], [2.323880795307661, 48.82361999348612], [2.3236943151258362, 48.82365864302944], [2.323516371957349, 48.823695522928965], [2.323361441420914, 48.82372763295494], [2.323352164242659, 48.82373519551495], [2.323362045720063, 48.82374897417387], [2.323420891140071, 48.823865616788254], [2.323488458711463, 48.82399954352592], [2.323556834811416, 48.82413542913394], [2.323624403069893, 48.8242693566619], [2.323692781239909, 48.82440524216721], [2.323760350197356, 48.82453916958624], [2.323828727725282, 48.824675054074184], [2.323896297381502, 48.82480898138423], [2.32388749307568, 48.82484162135196], [2.32390342049686, 48.82484653297473], [2.323907194785054, 48.82484769652519], [2.3239409960972592, 48.82484050191701], [2.324122873831239, 48.82480100036424], [2.324314293213438, 48.82475799989921], [2.324496169014869, 48.82471849776813], [2.324687587786291, 48.82467549670241], [2.324869463005348, 48.824635994900035], [2.325060881165992, 48.82459299323364], [2.325242757188085, 48.824553489968984], [2.325434173376023, 48.82451048769424], [2.325616048827476, 48.82447098385895], [2.325807464392892, 48.82442798188289], [2.325825248713127, 48.82443487066315], [2.325859774892204, 48.82455897821933], [2.325894446753667, 48.824684999552055], [2.32590969776326, 48.82469230214179], [2.3261156376409042, 48.82467366838991], [2.32631030481626, 48.82465818246255], [2.326516244415956, 48.82463954802022], [2.326710909971288, 48.82462406233193], [2.326916850655054, 48.82460542720684], [2.32711151597561, 48.82458993996664], [2.327317456381407, 48.8245713041511], [2.327512121443959, 48.82455581715767], [2.327706786402461, 48.82454032894781], [2.327912726399422, 48.8245216921063], [2.3281073910999153, 48.82450620414322], [2.328313330818989, 48.82448756661129], [2.328343381627812, 48.824481413660905], [2.328350479402133, 48.82448131592093], [2.3283714898883803, 48.824469883196635], [2.3285305647639643, 48.824437315104426], [2.328709254120795, 48.824401848485145], [2.32889837789095, 48.82436312684356], [2.329077066743217, 48.824327659672335], [2.329266191321544, 48.82428893835345], [2.329444879669343, 48.82425347063029], [2.32963400371696, 48.824214747827845], [2.329812691560284, 48.82417927955275], [2.329991379160598, 48.824143811009556], [2.330180501030891, 48.82410508823073], [2.330359188126725, 48.82406961913557], [2.330548310828389, 48.82403089488084], [2.330726997419633, 48.82399542523377], [2.330916118205445, 48.82395670128652], [2.330970661265161, 48.82396488321505], [2.330988108526419, 48.82395254150809], [2.330993737581507, 48.82393739507181], [2.3309674444797412, 48.82391188097385], [2.330926163412469, 48.823786463571295], [2.330877778679164, 48.823648573365894], [2.330836498035948, 48.823523155903004], [2.330788115157658, 48.82338526473728], [2.330746834938592, 48.823259847214025], [2.330698451168238, 48.823121956871425], [2.330657171373316, 48.82299653928784], [2.330608788095974, 48.822858647977355], [2.330608778874077, 48.822858623642446], [2.33060543634693, 48.82284897346689], [2.33056415699187, 48.82272355582077], [2.330559095161294, 48.82270895212302], [2.330530497613378, 48.8226264222559], [2.330489218614768, 48.82250100455904], [2.330457955137191, 48.82241078171832], [2.33042225389913, 48.82240469177225]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 42, "roussel_fabien": 25.0, "nb_emargement": 1474.0, "nb_procuration": 74.0, "nb_vote_blanc": 10.0, "jadot_yannick": 125.0, "le_pen_marine": 103.0, "nb_exprime": 1459.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 4, "nb_inscrit": 1857.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1474, "quartier_bv": "55", "geo_point_2d": [48.823743431181, 2.3274258539918917], "melenchon_jean_luc": 495.0, "poutou_philippe": 2.0, "macron_emmanuel": 451.0}, "geometry": {"type": "Point", "coordinates": [2.3274258539918917, 48.823743431181]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "93654f74fc4bd6ff6601bf9d63e5df340276d71f", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 40, "zemmour_eric": 60.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-13", "geo_shape": {"coordinates": [[[2.38533686448769, 48.874090646134405], [2.385330262468885, 48.87409045844777], [2.385206332712614, 48.87415070872142], [2.385044597920489, 48.874229266651355], [2.384877419249521, 48.87431054205165], [2.384715684828346, 48.87438909953284], [2.384548503767796, 48.87447037445496], [2.384386768364866, 48.87454893058108], [2.384219587630664, 48.8746302059384], [2.384057849872117, 48.87470876160172], [2.383890668111654, 48.874790036487894], [2.383728930723962, 48.874868591702466], [2.38356174658463, 48.87494986521122], [2.383400008193906, 48.875028420869256], [2.383232824391657, 48.87510969391386], [2.383071083645185, 48.8751882491091], [2.382903898816666, 48.87526952168258], [2.382742158441149, 48.87534807642905], [2.382574971222898, 48.87542934852432], [2.3824132298657412, 48.87550790191572], [2.382246042973911, 48.875589174446155], [2.382084299260988, 48.87566772737475], [2.38208389598433, 48.87566793213964], [2.3820372049287473, 48.87569245335077], [2.381983398487058, 48.87572073389318], [2.381962820192441, 48.875717868498505], [2.3819205204656573, 48.875664507620286], [2.381872713167296, 48.875604664671435], [2.381858180161875, 48.87560170007044], [2.381837798083422, 48.87561309369254], [2.381761252663863, 48.87571268173693], [2.381680616693762, 48.875817090604485], [2.381604070673861, 48.87591667852991], [2.381523434062169, 48.876021088171555], [2.3814468874526, 48.87612067507878], [2.381366250209984, 48.87622508459525], [2.381365967406722, 48.87622547704144], [2.381347274639077, 48.87625302502247], [2.381346537015511, 48.876254402585225], [2.381295351282096, 48.876382212886675], [2.381236113500904, 48.87652855364495], [2.381184927227092, 48.87665636386741], [2.381125687460433, 48.87680270452761], [2.381074500646212, 48.87693051467107], [2.381028377320383, 48.87704583315937], [2.380977190017733, 48.877173644132334], [2.38093106489773, 48.877288962550615], [2.380879877117326, 48.8774167734538], [2.380833752929954, 48.87753209181621], [2.380787627164323, 48.87764741104103], [2.380736438690221, 48.877775220942], [2.380740872640661, 48.87778176492985], [2.380762040795585, 48.87778565521693], [2.3810136270438322, 48.8777601274774], [2.381243427215238, 48.87773713603689], [2.381253060587476, 48.87773285734652], [2.381336526577718, 48.87764064050119], [2.381420294546883, 48.87754822909761], [2.381503759955724, 48.877456011220936], [2.381587527331315, 48.87736359968485], [2.381670992137499, 48.877271382575415], [2.381754760282725, 48.87717897091386], [2.381760611648663, 48.87717546316177], [2.381949013695742, 48.877116428087604], [2.382135533374626, 48.87705788302903], [2.38232205128145, 48.87699933677042], [2.382510452044379, 48.87694030170252], [2.382696970472082, 48.87688175486059], [2.382885370384617, 48.87682271919633], [2.382888238647275, 48.87682206667805], [2.383062705725512, 48.876795887948134], [2.3832652445442912, 48.87676593070383], [2.383439711255636, 48.87673975052386], [2.383604839170383, 48.876715326064264], [2.383616412939963, 48.87671791008237], [2.383632736325062, 48.87671133277785], [2.383670146788109, 48.87670579934509], [2.383890821858881, 48.876672933346086], [2.384093358359805, 48.87664297469043], [2.384314032907962, 48.87661010701012], [2.384516568921138, 48.87658014763672], [2.384526516180777, 48.87657418764463], [2.3845907249508382, 48.876445540943756], [2.384654304598861, 48.87631841622859], [2.384718512737975, 48.8761897694293], [2.384782091761977, 48.87606264461679], [2.38484629927005, 48.875933997719144], [2.384909877669941, 48.87580687280927], [2.3849740859105513, 48.87567822582028], [2.385037663686234, 48.87555110081305], [2.385101241141049, 48.87542397665666], [2.385165447084243, 48.87529532861411], [2.385229023914869, 48.87516820436039], [2.385293229227154, 48.875039556219456], [2.3853568054338012, 48.87491243186839], [2.385421010115084, 48.874783783629105], [2.385484585708272, 48.874656658281445], [2.385548789748154, 48.87452801084308], [2.385612364717177, 48.87440088539808], [2.3856765681261782, 48.874272237861355], [2.385671802465283, 48.874262233497085], [2.385510471608546, 48.874182353989994], [2.385352051237032, 48.87410300721805], [2.38533686448769, 48.874090646134405]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 13, "roussel_fabien": 33.0, "nb_emargement": 1295.0, "nb_procuration": 81.0, "nb_vote_blanc": 14.0, "jadot_yannick": 156.0, "le_pen_marine": 46.0, "nb_exprime": 1278.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1703.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1295, "quartier_bv": "76", "geo_point_2d": [48.87591702524546, 2.3832915440161724], "melenchon_jean_luc": 523.0, "poutou_philippe": 14.0, "macron_emmanuel": 339.0}, "geometry": {"type": "Point", "coordinates": [2.3832915440161724, 48.87591702524546]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eb85d4e807ebb44ef1c39ae230ef1fb8a8ff0cb7", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 116, "zemmour_eric": 113.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "15-51", "geo_shape": {"coordinates": [[[2.297610118540123, 48.83250234126348], [2.297622180242545, 48.83250346706506], [2.297731528465497, 48.83260501284484], [2.297840455334727, 48.83270621517587], [2.297949804408158, 48.83280776073768], [2.2980587307505482, 48.8329089637429], [2.298168082036702, 48.8330105090948], [2.2982770092386122, 48.83311171098363], [2.298386360013023, 48.83321325610955], [2.298495288062245, 48.83331445778127], [2.298604641049405, 48.833416002697206], [2.298713569946151, 48.83351720415182], [2.298835209479274, 48.833629272508304], [2.298944139269294, 48.833730473733645], [2.299053070844421, 48.83383167485859], [2.299174711841326, 48.83394374283832], [2.299177931443783, 48.83395496251447], [2.299192335107179, 48.833959858564135], [2.299313976714585, 48.83407192549011], [2.29943505642082, 48.83418356987845], [2.299556700422361, 48.834295637442445], [2.299677781168073, 48.83440728156278], [2.299799424863188, 48.83451934795022], [2.2999205066484842, 48.83463099180251], [2.300042152737676, 48.83474305882803], [2.300163235562369, 48.83485470241229], [2.3001753173530712, 48.8348584353526], [2.300303548709983, 48.83485217224003], [2.300433465394506, 48.83484762675803], [2.300446047020562, 48.83485218462194], [2.300531453826323, 48.834951999246435], [2.300623050718763, 48.835060306803356], [2.300633353877978, 48.835062881695634], [2.300654536027289, 48.835054153912864], [2.30086374821939, 48.8349806875954], [2.301069786908542, 48.834908944453225], [2.30127582503055, 48.83483720095152], [2.30148503683847, 48.834763733541095], [2.301496020518006, 48.83476320499791], [2.30163927290124, 48.83479700893321], [2.301781216585253, 48.834830481280804], [2.301924469338315, 48.83486428487256], [2.302066413388652, 48.83489775687971], [2.302076082475579, 48.83489762982734], [2.302187667908803, 48.83486798368344], [2.302308361556738, 48.834837048699505], [2.302325653821949, 48.834841650930436], [2.302424874276984, 48.834983022061444], [2.302520327200499, 48.83511928246542], [2.302619548711952, 48.835260653399885], [2.302715001302468, 48.8353969127074], [2.302726886486626, 48.83541414382998], [2.302735168440401, 48.83541505910524], [2.302879915438207, 48.835374685446745], [2.303049778966383, 48.83532708670371], [2.303243452531632, 48.83527306549359], [2.303413315384787, 48.835225467129256], [2.303606989570038, 48.835171444434266], [2.303776850397695, 48.83512384554141], [2.303795844029278, 48.83511746622086], [2.303796791093073, 48.835104393947645], [2.30373140246164, 48.83502616627756], [2.30366558980181, 48.834948079996266], [2.303666268609064, 48.83493724380116], [2.303647277836249, 48.83492903348397], [2.303530525084631, 48.83482310902802], [2.303414392881161, 48.83471757748805], [2.303297642438559, 48.834611652792695], [2.303181509815472, 48.83450612099875], [2.30306476031969, 48.83440019605607], [2.3029486300014312, 48.834294664024014], [2.30283188009019, 48.83418873882608], [2.302715750702442, 48.83408320744731], [2.3025990031123023, 48.83397728111066], [2.302482874667081, 48.833871749485844], [2.302366126649442, 48.83376582379328], [2.302249999158774, 48.83366029102311], [2.302133253450176, 48.83355436509118], [2.302017125539769, 48.83344883206703], [2.301900380777945, 48.83334290588779], [2.301784255172191, 48.833237372625575], [2.30166751135723, 48.83313144619904], [2.301551385331729, 48.833025912682835], [2.301434642463523, 48.832919986008996], [2.301318518742745, 48.83281445225473], [2.301201775459051, 48.83270852532566], [2.30108565268075, 48.83260299132539], [2.301083961344641, 48.83260172321557], [2.300940965490121, 48.8325129996429], [2.300797223473799, 48.83242357271238], [2.300654228583913, 48.83233484968207], [2.300510487550805, 48.83224542239277], [2.300367493649572, 48.832156698106225], [2.300223753599572, 48.83206727045812], [2.300080760675125, 48.83197854581462], [2.299937021596049, 48.831889118707], [2.299794029648279, 48.83180039370663], [2.299650291564474, 48.831710965340875], [2.299507300593277, 48.83162223998362], [2.29936356349256, 48.83153281125905], [2.299220573486043, 48.83144408644419], [2.299076837368305, 48.831354657360855], [2.298933849712727, 48.83126593129774], [2.298790113215976, 48.8311765018476], [2.298647126536946, 48.83108777542766], [2.298503391011168, 48.83099834651802], [2.298360405308779, 48.83090961974114], [2.29821667077817, 48.830820189573444], [2.2980736860525193, 48.83073146243969], [2.297929952504972, 48.830642031913214], [2.297921969622051, 48.83062706438094], [2.297897367879027, 48.83062772220421], [2.297896525777182, 48.83062794120564], [2.297722710557996, 48.83067761770446], [2.297555561857875, 48.830725377858826], [2.297388414225789, 48.83077313688632], [2.297214596676036, 48.83082281263224], [2.297047448407058, 48.83087057207831], [2.296873630207636, 48.83092024732441], [2.296706481313885, 48.830968006289865], [2.296532662464693, 48.83101768103611], [2.296525830934115, 48.83102987688096], [2.296615835522992, 48.83115168545495], [2.296704716951603, 48.83127205823081], [2.296794722388822, 48.83139386574455], [2.296883603281202, 48.83151423835347], [2.296973609542304, 48.831636046605546], [2.297062492634987, 48.83175641816418], [2.297152499732323, 48.83187822625532], [2.297241383638765, 48.831998598554335], [2.297331391584364, 48.83212040558519], [2.297420274954691, 48.83224077771722], [2.297510283724317, 48.83236258548641], [2.297599169294886, 48.8324829565682], [2.297610118540123, 48.83250234126348]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 51, "roussel_fabien": 24.0, "nb_emargement": 1245.0, "nb_procuration": 56.0, "nb_vote_blanc": 11.0, "jadot_yannick": 90.0, "le_pen_marine": 68.0, "nb_exprime": 1225.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 7, "nb_inscrit": 1601.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1242, "quartier_bv": "57", "geo_point_2d": [48.83308716300564, 2.299944088620587], "melenchon_jean_luc": 264.0, "poutou_philippe": 1.0, "macron_emmanuel": 469.0}, "geometry": {"type": "Point", "coordinates": [2.299944088620587, 48.83308716300564]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1d7021f47c8c881a42231c06d3edac77b0f32191", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 89, "zemmour_eric": 85.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "13-51", "geo_shape": {"coordinates": [[[2.344342047524063, 48.82405368491445], [2.344308003680122, 48.82403819533377], [2.344245650329537, 48.824028448628816], [2.344236607022806, 48.82402371957359], [2.344157973768735, 48.82391990392102], [2.344080444011511, 48.82382010188798], [2.344002915901781, 48.82372030070264], [2.343924283570618, 48.823616484868346], [2.343846756073784, 48.823516682664355], [2.343768124360635, 48.82341286670853], [2.343766946638759, 48.823407094328815], [2.34380291264672, 48.82328734515087], [2.343837971333938, 48.8231664073891], [2.343873937012749, 48.82304665816415], [2.343908995373389, 48.82292572035564], [2.343944960723057, 48.82280597108367], [2.343980018757125, 48.822685033228446], [2.343977206205865, 48.82267766627271], [2.34385765989826, 48.822580655374914], [2.343740080654575, 48.82248473979376], [2.343620535230497, 48.82238772864223], [2.34350295821994, 48.82229181281893], [2.343383413679379, 48.82219480141377], [2.34326583754007, 48.822098885340836], [2.343146293883019, 48.82200187368195], [2.343028717264432, 48.8219059564526], [2.342911142428942, 48.82181004000634], [2.342791600094059, 48.82171302796793], [2.342674024767955, 48.82161711126453], [2.342554483316564, 48.821520098972435], [2.342553690576544, 48.82150001145134], [2.342543338271525, 48.821497281574715], [2.342483792721902, 48.82149120263124], [2.342467720184115, 48.821510703655754], [2.342397286067095, 48.821605429395994], [2.342312862629421, 48.821733932615395], [2.342242429291475, 48.82182865825311], [2.342158005099263, 48.821957162236984], [2.342087569827827, 48.82205188685788], [2.342003146254472, 48.822180390714394], [2.34192731331781, 48.82232351622406], [2.341842887559166, 48.82245201902956], [2.341767055149507, 48.82259514441055], [2.341766197454061, 48.822596947442136], [2.341731202121609, 48.8227116532308], [2.34169400679772, 48.82283748030404], [2.341659011144908, 48.82295218604702], [2.341621816837196, 48.82307801307839], [2.341586819513596, 48.82319271786889], [2.341549624848621, 48.823318545750155], [2.341514628566742, 48.82343325050248], [2.34147743220532, 48.82355907742757], [2.341442435591812, 48.82367378303347], [2.341442197300163, 48.8236761497853], [2.341455419412101, 48.8238088593646], [2.341469408415206, 48.823937796659365], [2.341482630662756, 48.824070506204805], [2.341496621154009, 48.82419944437317], [2.341510611714358, 48.82432838252509], [2.341523834165838, 48.8244610920198], [2.34153782351313, 48.82459002923167], [2.341551046100228, 48.824722738692465], [2.341565036935692, 48.82485167677794], [2.341578259658415, 48.8249843862048], [2.341592250642647, 48.82511332335775], [2.3416054735009952, 48.82524603275067], [2.341619464611485, 48.8253749707697], [2.341632687605461, 48.825507680128695], [2.341632712177153, 48.82550789161762], [2.341646703436632, 48.82563682870407], [2.341664854368187, 48.825770754133316], [2.34167884576634, 48.82589969208512], [2.341696998234035, 48.82603361748568], [2.341697030646132, 48.826034394725625], [2.3416948111626033, 48.826132283263696], [2.34169578680955, 48.82623236407427], [2.341697560205179, 48.82623388299029], [2.341757752343685, 48.826234484128825], [2.341892122184655, 48.826127200424345], [2.342021673489624, 48.82602359548228], [2.342156043606057, 48.82591631146859], [2.342285593862543, 48.825812706221186], [2.342419961530225, 48.82570542188332], [2.342549512100291, 48.82560181633802], [2.342683878681497, 48.825494531683475], [2.342813426841049, 48.82539092582536], [2.34294779369773, 48.8252836408616], [2.3430773408088292, 48.825180034698136], [2.343077594060148, 48.82517982653437], [2.343208494539377, 48.82506876372344], [2.343337756054382, 48.8249590902935], [2.3434686554365483, 48.8248480262766], [2.343597917218969, 48.82473835255139], [2.343727177095653, 48.82462867866824], [2.343858074807419, 48.82451761509177], [2.343987334951529, 48.82440794091335], [2.344118231555036, 48.82429687703026], [2.344247489242639, 48.82418720254163], [2.344378384737698, 48.82407613835198], [2.344342047524063, 48.82405368491445]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 51, "roussel_fabien": 47.0, "nb_emargement": 1366.0, "nb_procuration": 59.0, "nb_vote_blanc": 15.0, "jadot_yannick": 125.0, "le_pen_marine": 70.0, "nb_exprime": 1348.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 7, "nb_inscrit": 1695.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1369, "quartier_bv": "51", "geo_point_2d": [48.82377793791669, 2.342658178793837], "melenchon_jean_luc": 428.0, "poutou_philippe": 8.0, "macron_emmanuel": 422.0}, "geometry": {"type": "Point", "coordinates": [2.342658178793837, 48.82377793791669]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "48dc0835d61963f101273671b0789a68fe2eae29", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 42, "zemmour_eric": 60.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-57", "geo_shape": {"coordinates": [[[2.3832776231006942, 48.8448640911662], [2.38326289575138, 48.84493042742153], [2.383163561559098, 48.84504489907792], [2.383067377061437, 48.845156860589256], [2.382968042008125, 48.84527133206009], [2.38287185531006, 48.845383293384465], [2.3827725193957052, 48.84549776466966], [2.382676333211513, 48.84560972672043], [2.382576996436106, 48.84572419782003], [2.382480809424715, 48.84583615879157], [2.382381471788247, 48.84595062970556], [2.382285283928133, 48.84606259139647], [2.382189095665495, 48.846174552099434], [2.382089756743165, 48.84628902273648], [2.38199356627995, 48.846400983252494], [2.381894226496634, 48.84651545370396], [2.381798036547261, 48.84662741494632], [2.381698695902847, 48.84674188521217], [2.381694907241384, 48.84674467881892], [2.3815819844483412, 48.84679908721578], [2.381466227218521, 48.84686071527317], [2.381353303935204, 48.846915123448476], [2.381237546166643, 48.84697675217753], [2.381234083528541, 48.84697951327993], [2.381152260610868, 48.84708058422114], [2.381065879887366, 48.847188252579784], [2.380984057678266, 48.847289323394016], [2.380897676261265, 48.84739699161108], [2.380815852046273, 48.84749806138502], [2.380729469935765, 48.84760572946042], [2.380647645056226, 48.84770679999967], [2.380561262252201, 48.847814467933475], [2.38051974580266, 48.84782654716779], [2.380516773894998, 48.84783066252028], [2.380595373045181, 48.84795481900297], [2.380660711315107, 48.84805897525656], [2.380660199888684, 48.84806657755894], [2.380570562251845, 48.84817987297298], [2.380478064344029, 48.84829599636165], [2.380388425927201, 48.848409290716575], [2.380295927206328, 48.848525413940514], [2.380206287988218, 48.848638709034944], [2.380113789816939, 48.848754832101186], [2.380024148456369, 48.84886812612946], [2.379931649471915, 48.84898424903098], [2.379842007310033, 48.84909754379873], [2.379749507512498, 48.849213666535505], [2.379659864559992, 48.84932696114347], [2.379567363949465, 48.84944308371552], [2.379477720216932, 48.849556377264335], [2.379385218793305, 48.8496724996716], [2.379295574259523, 48.84978579395991], [2.379203072022682, 48.84990191620245], [2.379165614250542, 48.84994925450543], [2.379137075683373, 48.84996433428078], [2.37913465376145, 48.84997797120968], [2.379082466141212, 48.85004392701998], [2.379047986812408, 48.8501077613996], [2.379048836061353, 48.85011505956776], [2.37913040918256, 48.85021458540027], [2.3792078258067493, 48.850309681867735], [2.379289399536161, 48.85040920757447], [2.379366816739623, 48.85050430392244], [2.379382101442356, 48.850540470668534], [2.379410729912804, 48.85054097710525], [2.379557058547058, 48.850521294587836], [2.37973574663488, 48.85049674956617], [2.379945864682096, 48.850468486452414], [2.380124552416401, 48.85044393994964], [2.3801263655073, 48.85044377396904], [2.380298704210675, 48.85043570644494], [2.38051259554546, 48.850426213402756], [2.380684934141651, 48.850418144422946], [2.380898826696793, 48.85040865069724], [2.381071163801709, 48.85040058205323], [2.381285056224974, 48.850391086737616], [2.381457393211999, 48.85038301753716], [2.381457916865799, 48.85038298786759], [2.381642008975532, 48.850370097480706], [2.381834745100449, 48.85035478634315], [2.38201883701734, 48.850341895376175], [2.382211572916566, 48.8503265845305], [2.3823956646406073, 48.850313692983406], [2.382588400324806, 48.850298381530386], [2.382772493218694, 48.850285489410204], [2.382965228687856, 48.85027017734973], [2.383149320026176, 48.85025728464242], [2.383342055290936, 48.850241971075285], [2.383526146436381, 48.850229077787844], [2.383527745674967, 48.85022890166037], [2.383720480713008, 48.85021358838257], [2.383888005200833, 48.8501883105473], [2.384093778030956, 48.8501558870536], [2.384261303514904, 48.85013060870136], [2.384327962955263, 48.85011352496086], [2.384326197475962, 48.85008198094497], [2.384302565378452, 48.849953654687425], [2.384280789615714, 48.84983154350356], [2.384259015328339, 48.84970943141004], [2.384235383565314, 48.84958110509625], [2.3842136081263, 48.84945899295998], [2.38418997658866, 48.84933066660839], [2.384168202723265, 48.849208554443365], [2.3841445714110012, 48.84908022805392], [2.384122796394074, 48.84895811584618], [2.3840991653071892, 48.848829789418886], [2.384077391853335, 48.84870767808177], [2.384053761002448, 48.848579350717344], [2.384031986396968, 48.84845723933744], [2.384008355771351, 48.848328911935226], [2.383986582739553, 48.8482068005266], [2.383962952328771, 48.84807847398584], [2.383962948464189, 48.8480784550795], [2.383939650946131, 48.8479453789389], [2.383916020769457, 48.847817052358735], [2.383892722125559, 48.847683976170785], [2.38386909218297, 48.84755564955124], [2.383845795127666, 48.84742257422921], [2.383822164067166, 48.847294246664], [2.383798867248651, 48.847161171301636], [2.383775237784855, 48.84703284370404], [2.383751941202921, 48.84689976830129], [2.3837283105999543, 48.84677144155659], [2.383705014265437, 48.84663836521421], [2.383681385259153, 48.846510038437145], [2.383658089161209, 48.8463769620544], [2.383634459026394, 48.846248635230985], [2.3836111631652273, 48.84611555880787], [2.383587534627074, 48.84598723195209], [2.383564237629251, 48.84585415638093], [2.383540609335798, 48.84572582858647], [2.383517313937328, 48.845592752982], [2.38349368587783, 48.84546442514818], [2.3834700579241552, 48.8453360981942], [2.383446761517469, 48.845203022522426], [2.383423133808486, 48.84507469462984], [2.383399839000925, 48.84494161892477], [2.383406699303316, 48.84489812626655], [2.383402619847566, 48.84489488194271], [2.383375269106144, 48.84487313390191], [2.383340676020848, 48.84486993015535], [2.3832776231006942, 48.8448640911662]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 57, "roussel_fabien": 31.0, "nb_emargement": 1260.0, "nb_procuration": 64.0, "nb_vote_blanc": 11.0, "jadot_yannick": 134.0, "le_pen_marine": 41.0, "nb_exprime": 1245.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1544.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1260, "quartier_bv": "48", "geo_point_2d": [48.84845270104996, 2.3821231179759113], "melenchon_jean_luc": 471.0, "poutou_philippe": 8.0, "macron_emmanuel": 390.0}, "geometry": {"type": "Point", "coordinates": [2.3821231179759113, 48.84845270104996]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3ad7c30df79f3eb6e6d5da76c819f8d3f6f1e630", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 55, "zemmour_eric": 60.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-31", "geo_shape": {"coordinates": [[[2.355556543236465, 48.87652927552366], [2.355532337040073, 48.87653815744259], [2.35546811751069, 48.87654715578129], [2.355268674494746, 48.87657479125065], [2.355081105998346, 48.876601072110205], [2.354881662559457, 48.87662870783275], [2.354694093673506, 48.87665498808464], [2.354494649822913, 48.87668262316103], [2.354307081910911, 48.87670890281261], [2.354107636285029, 48.876736537235544], [2.353920067983697, 48.87676281627945], [2.353732498118437, 48.87678909592075], [2.3535330532551653, 48.87681672849247], [2.35334548436387, 48.87684300753345], [2.353146037725536, 48.876870639451745], [2.352958468444822, 48.876896917885055], [2.352759021394725, 48.87692454915716], [2.352571451735778, 48.87695082608355], [2.352372004262644, 48.87697845760879], [2.352184434214403, 48.877004733927485], [2.351984987692912, 48.87703236481397], [2.351797415891783, 48.87705864051764], [2.35159796895865, 48.877086270758014], [2.351410396768138, 48.87711254585396], [2.351210949423167, 48.87714017544819], [2.351210837435865, 48.87714019012993], [2.351032616096606, 48.8771641212839], [2.350833167001634, 48.877191749340746], [2.350654946675717, 48.87721567993871], [2.350455497182968, 48.87724330736508], [2.350277276507203, 48.87726723739965], [2.350077826616585, 48.8772948641955], [2.349899605590877, 48.87731879366675], [2.349700155302599, 48.87734641983209], [2.349521933926855, 48.87737034873994], [2.349343711024043, 48.87739427737457], [2.349144261515252, 48.87742190261926], [2.349098090997859, 48.87743590514102], [2.349094901857978, 48.877442121088414], [2.349114072446882, 48.87747767978638], [2.349124382707556, 48.87760372180579], [2.349133411552918, 48.8777362932042], [2.349143723263666, 48.87786233609909], [2.349152752203192, 48.877994907464945], [2.349163062648525, 48.87812095032116], [2.349172091682111, 48.87825352165442], [2.349182403588875, 48.87837956448685], [2.349191432716426, 48.878512135787545], [2.349191558089948, 48.878513014218775], [2.34921364101483, 48.878653262129], [2.34924310505368, 48.87878813885064], [2.34926518687058, 48.87892838670896], [2.349294651187332, 48.87906326428354], [2.349294839082667, 48.879063940704015], [2.34934421978493, 48.879194185216896], [2.34938526559426, 48.87931547200632], [2.349434646761053, 48.87944571645216], [2.349475691615845, 48.87956700317545], [2.349490050115221, 48.87958901412326], [2.349550270319047, 48.87957833439494], [2.349717745840649, 48.879554015228976], [2.34989241002738, 48.87952814394672], [2.35005988386446, 48.87950382429358], [2.350234549087483, 48.879477951619116], [2.350402022603392, 48.879453631486264], [2.350576687476898, 48.879427759210735], [2.350744160671635, 48.87940343859814], [2.350918823854589, 48.87937756491563], [2.350929369564359, 48.879369891427565], [2.350955057427799, 48.87923244266796], [2.350981616793151, 48.87909518477306], [2.351007305735452, 48.878957736874675], [2.351033864823119, 48.878820478933946], [2.351059553492035, 48.87868303099006], [2.351086112301818, 48.878545773003516], [2.3511118006973533, 48.87840832501417], [2.35113835922946, 48.87827106698184], [2.351154567406582, 48.878247843202985], [2.351116866190619, 48.87823102996335], [2.3510950619665563, 48.87813072240191], [2.3510756318247372, 48.878042877174444], [2.351053827758758, 48.87794256958838], [2.351034397745476, 48.8778547252385], [2.351035937352167, 48.877849126237216], [2.351101816121775, 48.87776985451458], [2.3512242950848172, 48.877625827177795], [2.351290173285391, 48.87754655533542], [2.351300874300494, 48.87754192329482], [2.35144444589893, 48.87753305853622], [2.351605622362475, 48.877523234040794], [2.351749195220829, 48.87751436892395], [2.351910370216931, 48.8775045431114], [2.351919865012634, 48.87750633382568], [2.351940619118975, 48.877516147297406], [2.35207338087538, 48.87758257667593], [2.352192336165424, 48.877638826272886], [2.352325097192187, 48.87770525535753], [2.352464807329893, 48.87777131897591], [2.352597569053091, 48.87783774685112], [2.352737279880642, 48.87790381104288], [2.352746770005769, 48.87790543708706], [2.352935620664153, 48.87789122688077], [2.353130927110621, 48.877876595298744], [2.353319778911859, 48.87786238539279], [2.353515085142247, 48.877847753183644], [2.35370393538183, 48.87783354176461], [2.35389924138497, 48.87781890982766], [2.354088092778558, 48.87780469780964], [2.3542833972133392, 48.877790064338946], [2.354296369824072, 48.87779410037276], [2.354382435470114, 48.87788145638351], [2.354501550384089, 48.877988887387325], [2.354524131229989, 48.87798833104444], [2.354622062753864, 48.87788455702386], [2.354730262571271, 48.87776744448649], [2.354828191905783, 48.87766367026916], [2.354936390811843, 48.87754655662274], [2.355034319320319, 48.87744278221601], [2.355142518656269, 48.87732566926645], [2.355240446338716, 48.87722189467028], [2.355278337686371, 48.87718088046302], [2.355291535599481, 48.87716858209947], [2.3552914001037912, 48.87716124370234], [2.355361705760722, 48.877085144733904], [2.355458698692455, 48.87697970833398], [2.355566894748864, 48.87686259494431], [2.355663885487381, 48.87675715834951], [2.355772081983386, 48.876640044758126], [2.355869071892092, 48.87653460797579], [2.3558641615109392, 48.876515142436006], [2.355844071265173, 48.876506636345546], [2.3557057689880683, 48.87651704201471], [2.35558242042497, 48.87653432609415], [2.355556543236465, 48.87652927552366]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 31, "roussel_fabien": 19.0, "nb_emargement": 936.0, "nb_procuration": 74.0, "nb_vote_blanc": 10.0, "jadot_yannick": 86.0, "le_pen_marine": 33.0, "nb_exprime": 924.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1226.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 936, "quartier_bv": "37", "geo_point_2d": [48.87782179427075, 2.3517934048142286], "melenchon_jean_luc": 231.0, "poutou_philippe": 10.0, "macron_emmanuel": 395.0}, "geometry": {"type": "Point", "coordinates": [2.3517934048142286, 48.87782179427075]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0c62836fc2ffaf5e4115ed9638f68c08869a9d69", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 30, "zemmour_eric": 49.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "18-67", "geo_shape": {"coordinates": [[[2.340137807950283, 48.895269928659], [2.34010022621761, 48.895243316615996], [2.340027906763483, 48.89513714895809], [2.339953226242033, 48.89503047360467], [2.339880907383207, 48.894924305837385], [2.339806228832003, 48.89481763037907], [2.339733910568673, 48.894711462502414], [2.33965923127159, 48.89460478602494], [2.339586913603549, 48.894498618038895], [2.339512236265284, 48.894391942355774], [2.339496697533759, 48.89438696254407], [2.339287318574521, 48.89441978478629], [2.339085910644364, 48.8944522432625], [2.338876529788267, 48.894485065676264], [2.338675122713339, 48.8945175234672], [2.338483809804043, 48.89454751228492], [2.338282402242624, 48.89457996941354], [2.338264333752212, 48.89458280225889], [2.338255824368456, 48.89458236043504], [2.338087751428287, 48.894535926791086], [2.337930215414651, 48.89449129224957], [2.337762143058857, 48.89444485814477], [2.337604607600015, 48.89440022317122], [2.337447072411182, 48.89435558798859], [2.33727900092435, 48.89430915319998], [2.337121467654057, 48.89426451759289], [2.336953395387761, 48.89421808233589], [2.336946016664546, 48.894213150068936], [2.336858142583683, 48.894069411384365], [2.336772381327448, 48.893929126920746], [2.336686619180984, 48.893788841470936], [2.336598746532369, 48.893645102540376], [2.336588136242574, 48.89361666833841], [2.336566047457889, 48.89361295227327], [2.336484121957677, 48.893620549102764], [2.336336159000185, 48.8936418408191], [2.336326679477897, 48.8936543904886], [2.33641121475409, 48.89377537715845], [2.336493507063156, 48.8938938808873], [2.336578044468137, 48.89401486831974], [2.336660337535448, 48.894133371908076], [2.336744874353115, 48.8942543591888], [2.336827168178677, 48.894372862636565], [2.336911707148183, 48.894493848881346], [2.336994001732007, 48.89461235218857], [2.337078540102854, 48.894733339180846], [2.337160835444948, 48.89485184234753], [2.33724537596756, 48.894972828303864], [2.33732767205649, 48.895091332229256], [2.337329211381299, 48.89511773762239], [2.337342934638289, 48.895123366868546], [2.33742523119877, 48.89524186981136], [2.337475845065204, 48.89532081614262], [2.337485971863833, 48.89533661208276], [2.337484448965278, 48.89534578032881], [2.33736515322114, 48.895449792257565], [2.337243287290736, 48.895554770095885], [2.337123990585944, 48.89565878176452], [2.337002122316104, 48.895763759329846], [2.336882824650646, 48.8958677707384], [2.33676095540544, 48.89597274803828], [2.336641656779305, 48.89607675918677], [2.336519786558522, 48.8961817362212], [2.336400486971805, 48.89628574710958], [2.336278615775535, 48.89639072387857], [2.336286811136834, 48.89640501363156], [2.336499657855341, 48.89643264927031], [2.3367096970731, 48.89646012239], [2.336922544241376, 48.89648775727576], [2.337132582529253, 48.896515230544104], [2.3373454301472902, 48.89654286467688], [2.337555470255988, 48.896570336310475], [2.337768318323771, 48.896597969690234], [2.337978358866486, 48.89662544148004], [2.338191207384009, 48.89665307410688], [2.338401247019796, 48.8966805442468], [2.338410471134391, 48.89669378552778], [2.33831858204181, 48.89680112788207], [2.338228782993427, 48.89690712013687], [2.338136893149607, 48.89701446233086], [2.3380470920108722, 48.89712045352196], [2.337955201404572, 48.897227796454885], [2.337865399527959, 48.897333787489096], [2.337773508181835, 48.897441129362434], [2.337683705555899, 48.89754712113901], [2.337686449495127, 48.89757964220362], [2.3376874797059832, 48.89758014792242], [2.33781788214631, 48.89758384396567], [2.338023450277842, 48.897586730496926], [2.338032477357319, 48.89758254010441], [2.338033979102459, 48.897554007614744], [2.338138856400926, 48.89743875586515], [2.338242346219589, 48.89732467085834], [2.338347222583364, 48.89720941980141], [2.33845071150098, 48.89709533369136], [2.338555586941507, 48.896980082427845], [2.338659074935331, 48.8968659970131], [2.338763949464045, 48.8967507446437], [2.338867436545312, 48.89663665902501], [2.338972311503284, 48.89652140735579], [2.339075796308202, 48.896407321525665], [2.3391806703543683, 48.896292068750576], [2.339284154246859, 48.896177982716516], [2.3393890273584, 48.896062730634085], [2.339492510338576, 48.89594864439605], [2.339493988047001, 48.89594172148482], [2.339473315570915, 48.895890353403026], [2.339449164992609, 48.89583834380082], [2.339451438476595, 48.89583019231052], [2.339560366210636, 48.895737790762134], [2.339681250635126, 48.89564125161331], [2.339790177566001, 48.895548849839926], [2.339911061125571, 48.895452310442465], [2.340019987253285, 48.89535990844416], [2.340106109835062, 48.895291129949975], [2.340137807950283, 48.895269928659]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 67, "roussel_fabien": 28.0, "nb_emargement": 1148.0, "nb_procuration": 56.0, "nb_vote_blanc": 8.0, "jadot_yannick": 116.0, "le_pen_marine": 60.0, "nb_exprime": 1138.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1448.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "69", "geo_point_2d": [48.895553332819524, 2.338247377255136], "melenchon_jean_luc": 447.0, "poutou_philippe": 16.0, "macron_emmanuel": 333.0}, "geometry": {"type": "Point", "coordinates": [2.338247377255136, 48.895553332819524]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8b5c83af0e3e215f8a42efa75482aca26df32d51", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 40, "zemmour_eric": 95.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-64", "geo_shape": {"coordinates": [[[2.378703797998635, 48.89253576231712], [2.378704038260656, 48.89253574377864], [2.378737259438015, 48.892518935186786], [2.378851000781116, 48.89246141210488], [2.379002821919001, 48.892384599040504], [2.379003081292954, 48.892384464588325], [2.379116820674203, 48.892326942139064], [2.379213859682343, 48.89227533776178], [2.379233849580896, 48.89225064714775], [2.379206285939074, 48.89222548338487], [2.379261390982472, 48.89209773110092], [2.379315548990751, 48.89197274557315], [2.379370654862371, 48.891844993216566], [2.379424810981699, 48.89172000760351], [2.379479916317753, 48.89159225516719], [2.379534071901217, 48.891467270375216], [2.379589176701714, 48.89133951785918], [2.379643333134528, 48.891214532096775], [2.379698436035701, 48.89108677949395], [2.379752591943375, 48.890961793653354], [2.379807695672774, 48.89083404097791], [2.379861849691655, 48.89070905505207], [2.379916952885417, 48.89058130229686], [2.379971106368472, 48.89045631719207], [2.380026209026808, 48.89032856435721], [2.380080363359106, 48.89020357828201], [2.380135464118176, 48.89007582536037], [2.380189617925365, 48.889950839207], [2.380185271072998, 48.8899414799515], [2.380152543157712, 48.88992127006013], [2.380081329580111, 48.889881869948944], [2.3800665601168842, 48.88988068462141], [2.379887299551108, 48.889938642185896], [2.379706097585278, 48.889995366346966], [2.379526836223567, 48.890053323365784], [2.37934563347658, 48.89011004607623], [2.379166371318836, 48.89016800254934], [2.378985166405617, 48.89022472560057], [2.378969832496968, 48.89022306236952], [2.378810237598425, 48.890121158017784], [2.378662304707814, 48.890024323175695], [2.37851437373117, 48.88992748814934], [2.378354780629936, 48.889825583163145], [2.37820685078982, 48.889728747739376], [2.378047258899468, 48.88962684232486], [2.378045363178594, 48.88961542907654], [2.378147448978066, 48.889513410500236], [2.378249486293376, 48.8894123349666], [2.3783515713054832, 48.889310315298175], [2.37845360782658, 48.8892092395719], [2.378450162579687, 48.88919692885309], [2.3782941120958663, 48.889123702597296], [2.378139293143264, 48.88905039529253], [2.378135969961884, 48.88903803393505], [2.378270210329669, 48.888907849941795], [2.378412297459607, 48.88876438845238], [2.378404940191792, 48.88875088560172], [2.378363505297615, 48.88873804940316], [2.3782568423200092, 48.88871611151318], [2.378218025916038, 48.888724746697875], [2.378213294227334, 48.888731549784396], [2.378058675491401, 48.88880725754428], [2.37790935636654, 48.88888041697542], [2.377754735382942, 48.88895612432547], [2.3776054154149, 48.88902928246843], [2.377450793547446, 48.88910498941572], [2.377301472714624, 48.889178148069], [2.377146849963207, 48.88925385461356], [2.376997528287208, 48.88932701197864], [2.376842904651827, 48.88940271812046], [2.376693582111133, 48.88947587599582], [2.376544259161719, 48.889549032780856], [2.376389634207918, 48.88962473832208], [2.376240310393796, 48.88969789561741], [2.376085685919756, 48.88977360076295], [2.376057487260752, 48.889781634962446], [2.376052494078863, 48.889804423842484], [2.376127072824115, 48.88992887388404], [2.376195346081778, 48.89004407116834], [2.376269925511601, 48.89016852109376], [2.376338199399534, 48.89028371827147], [2.376406473578792, 48.89039891629743], [2.37648105403235, 48.8905233651518], [2.376549328841893, 48.89063856307117], [2.376623909980042, 48.89076301180943], [2.376645955443322, 48.890800209179005], [2.376639869439459, 48.89082555094101], [2.37666184674624, 48.890837116402196], [2.3767080754157073, 48.89091511682949], [2.376767046374007, 48.89100326583931], [2.376835322456321, 48.89111846264594], [2.376894293849585, 48.89120661247604], [2.376896647789193, 48.89120900882411], [2.377022693597827, 48.8913010850872], [2.377148808188056, 48.8913932631885], [2.377274854877891, 48.891485340069906], [2.377400968997037, 48.891577517883086], [2.377527016578736, 48.89166959448361], [2.377653131590681, 48.89176177201575], [2.377779180075099, 48.89185384743615], [2.377905295969001, 48.89194602558644], [2.378031345345396, 48.892038100725934], [2.378157463495707, 48.892130278602274], [2.378283512400392, 48.892222353453775], [2.37840963144343, 48.89231453104906], [2.378535682603902, 48.892406605626725], [2.37866180117587, 48.89249878293389], [2.378703797998635, 48.89253576231712]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 64, "roussel_fabien": 8.0, "nb_emargement": 1217.0, "nb_procuration": 54.0, "nb_vote_blanc": 11.0, "jadot_yannick": 70.0, "le_pen_marine": 40.0, "nb_exprime": 1198.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1672.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1218, "quartier_bv": "73", "geo_point_2d": [48.89064534174295, 2.378115259224674], "melenchon_jean_luc": 580.0, "poutou_philippe": 8.0, "macron_emmanuel": 295.0}, "geometry": {"type": "Point", "coordinates": [2.378115259224674, 48.89064534174295]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "605b472a7c3289c7eda5116e3e550e1d608cd30c", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 23, "zemmour_eric": 67.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-21", "geo_shape": {"coordinates": [[[2.412608548373612, 48.87587789135702], [2.412592839051553, 48.87587764160145], [2.412402050048495, 48.87586390868442], [2.41221247706588, 48.87585031903102], [2.412021688273351, 48.87583658460814], [2.411832116852909, 48.87582299435875], [2.411642544167921, 48.87580940380234], [2.411451755675561, 48.875795668470644], [2.411262184552759, 48.875782077318206], [2.411071396260705, 48.87576834137997], [2.410881823973249, 48.87575474961818], [2.410691035881714, 48.87574101307339], [2.410501463792984, 48.87572742070891], [2.410310677265142, 48.87571368356434], [2.410121105375148, 48.87570009059723], [2.40993031768447, 48.87568635283937], [2.409740745993119, 48.87567275926957], [2.409549958492688, 48.87565902180446], [2.409360388363556, 48.875645427638744], [2.409169601073665, 48.87563168866784], [2.409166680027553, 48.8756312605586], [2.408982296048792, 48.87558995513293], [2.408794967277088, 48.87554781738514], [2.408610583878195, 48.875506512283096], [2.40842325570743, 48.87546437395046], [2.408238871535454, 48.87542306826603], [2.408051543965431, 48.87538092934855], [2.4078671617469, 48.87533962309519], [2.407679834777827, 48.87529748359286], [2.407671341202455, 48.87528605153838], [2.407736604850327, 48.87516065336735], [2.407800477325965, 48.875038269119344], [2.40786574171581, 48.874912870856505], [2.407929613594385, 48.87479048561283], [2.407994875999508, 48.874665087244686], [2.408058747260585, 48.87454270280389], [2.408059199947634, 48.87454161954918], [2.408096465197496, 48.874423479654645], [2.408134663487882, 48.87430324261162], [2.408171928396034, 48.874185102668065], [2.408210126327184, 48.87406486647426], [2.408247392256953, 48.87394672648841], [2.408285589849305, 48.8738264893453], [2.408322854074045, 48.873708349303726], [2.408361051317388, 48.87358811211055], [2.40835115035414, 48.873577566166915], [2.408148043270249, 48.873542594325926], [2.407949195152597, 48.87350838245409], [2.407746088608362, 48.8734734099289], [2.407547239655637, 48.87343919738044], [2.4073441336510673, 48.87340422417108], [2.407145286589696, 48.87337001095954], [2.406942179761593, 48.87333503705922], [2.406743333228376, 48.87330082317782], [2.406544486956387, 48.873266608965054], [2.406341382298104, 48.873231634048814], [2.406142535190976, 48.87319741915944], [2.405939431072489, 48.87316244355904], [2.40574058585684, 48.87312822800657], [2.405537480924915, 48.87309325081593], [2.4053386362271842, 48.873059035492936], [2.40513553319828, 48.87302405762486], [2.405099819441152, 48.873017912163654], [2.405084762135083, 48.87300744553616], [2.405063757765916, 48.873011074274714], [2.404900626041422, 48.87298300278771], [2.404733231172494, 48.87294921529891], [2.404723620488576, 48.872951160427625], [2.404713246526902, 48.872970743079186], [2.404759894001781, 48.87309275464765], [2.404806289940507, 48.87321365155846], [2.404852939224459, 48.87333566217134], [2.4048993355955153, 48.8734565590195], [2.404945983941384, 48.873578570461746], [2.4049923821182633, 48.87369946635472], [2.405039030899637, 48.87382147773388], [2.40508542813537, 48.87394237445667], [2.40513207872585, 48.874064384880214], [2.405178476393931, 48.87418528154035], [2.40522512604633, 48.87430729279327], [2.405271525510101, 48.874428189397506], [2.405318175608291, 48.874550199687995], [2.405364574141085, 48.87467109622278], [2.405411224664533, 48.87479310734949], [2.405457625003204, 48.87491400292905], [2.4054579390370723, 48.87491730773343], [2.405433831465568, 48.87504664496176], [2.405410251595658, 48.87517560797199], [2.405386672972338, 48.87530457096931], [2.405362563681361, 48.87543390813116], [2.405338984822933, 48.87556287108885], [2.4053148752939713, 48.87569220821081], [2.405291294837259, 48.87582117112213], [2.405267186433583, 48.87595050821097], [2.40524360574185, 48.87607947108272], [2.40521949710029, 48.87620880813163], [2.405195916173532, 48.87633777096375], [2.405171807293884, 48.876467107972786], [2.405148226132097, 48.87659607076535], [2.405124117014457, 48.876725407734476], [2.405112671369277, 48.87675496579602], [2.405121565887955, 48.876759080363634], [2.405159793450716, 48.87677014142312], [2.405324061099531, 48.87681560838768], [2.405512527772284, 48.87687014003427], [2.405676797417973, 48.87691560561816], [2.405865263448225, 48.87697013759695], [2.405865605953064, 48.87697023282713], [2.406029876222659, 48.8770156979224], [2.406255853526104, 48.87707629340959], [2.406420124470872, 48.87712175796498], [2.406429793482207, 48.87712875412829], [2.406445655829435, 48.877132476861696], [2.406687001000554, 48.87717661714296], [2.406923144693696, 48.87722389410673], [2.406925537014223, 48.87722454178471], [2.407126022977221, 48.8772941698865], [2.407320356027889, 48.877365006459236], [2.407520843059407, 48.87743463389095], [2.407715177181389, 48.87750546891448], [2.4079095131953983, 48.87757630362471], [2.408110001827901, 48.87764593005638], [2.408111138842549, 48.87764630080569], [2.408301395800865, 48.87770110574222], [2.408492807106034, 48.877757551954666], [2.408683064872367, 48.87781235627912], [2.408874477000046, 48.87786880187564], [2.409064734210963, 48.87792360558123], [2.409256148514274, 48.87798005146781], [2.4094464065435, 48.87803485366206], [2.409637820305991, 48.87809129892596], [2.409828080506544, 48.87814610051481], [2.410019495091438, 48.878202545162765], [2.410209756089903, 48.87825734703876], [2.410401171507483, 48.878313790171504], [2.410591433313845, 48.878368591435375], [2.410782849554016, 48.878425033952134], [2.410801364258189, 48.87842468890295], [2.410832328810688, 48.87841086393787], [2.410832558342613, 48.878410581779114], [2.410843212421826, 48.878397467147636], [2.410903299790959, 48.8783234918203], [2.411000774078123, 48.878202961416385], [2.411033502134509, 48.87816266974581], [2.411086466467018, 48.878097465493575], [2.411183939897003, 48.87797693581505], [2.4112091677701, 48.87794587657884], [2.411316118620956, 48.877814209340734], [2.411413590989461, 48.87769367944431], [2.411491358801447, 48.87759793612059], [2.411588830369816, 48.877477405158544], [2.411617738487742, 48.877441816007256], [2.411620434754436, 48.87743849634627], [2.411639968133429, 48.8774144489654], [2.411643039118624, 48.87741066709174], [2.411693885032898, 48.87734806737098], [2.411791355654802, 48.877227537116], [2.411809508970188, 48.87720518715129], [2.411916025405591, 48.87707404867281], [2.412013495000613, 48.876953518206975], [2.412110964144509, 48.876832987648655], [2.412217480433251, 48.87670184796509], [2.412229317393874, 48.87668727399356], [2.412234560435982, 48.876680819168065], [2.412355258021857, 48.87652568831057], [2.41242185334354, 48.87644369506273], [2.41242562104024, 48.87643905772613], [2.412430062110503, 48.87643358911651], [2.4124406614711003, 48.87642053970579], [2.412460322688383, 48.87639633271936], [2.412464664199303, 48.87639098682783], [2.412468470459995, 48.87637809563078], [2.41250841293688, 48.87625306988232], [2.412536417415747, 48.876158226390636], [2.412571386362173, 48.87603979615857], [2.412611326979344, 48.875914769431475], [2.412617628104335, 48.87589342777001], [2.412608548373612, 48.87587789135702]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 21, "roussel_fabien": 26.0, "nb_emargement": 1168.0, "nb_procuration": 28.0, "nb_vote_blanc": 13.0, "jadot_yannick": 57.0, "le_pen_marine": 102.0, "nb_exprime": 1146.0, "nb_vote_nul": 9.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1619.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1168, "quartier_bv": "78", "geo_point_2d": [48.87591307669715, 2.4081925483137816], "melenchon_jean_luc": 525.0, "poutou_philippe": 11.0, "macron_emmanuel": 280.0}, "geometry": {"type": "Point", "coordinates": [2.4081925483137816, 48.87591307669715]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e3e18e7cb9419aa4e0dbf9718bc4c998cc679234", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 129, "zemmour_eric": 200.0, "hidalgo_anne": 3.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-66", "geo_shape": {"coordinates": [[[2.284517905923893, 48.87269535914887], [2.28455385308959, 48.87270582564103], [2.284521029245586, 48.87283630692967], [2.284487897496452, 48.87296725671152], [2.284455074685765, 48.87309773795932], [2.284421942604526, 48.87322868769189], [2.284389119476231, 48.87335916799144], [2.284355987062782, 48.873490117674756], [2.284323162228867, 48.87362059881642], [2.284290029483402, 48.873751548450485], [2.28425720568281, 48.87388202955129], [2.284224072617583, 48.874012978236784], [2.284191248487013, 48.87414345928861], [2.284158115077203, 48.874274408824135], [2.284125289253333, 48.87440488981879], [2.284092155511491, 48.87453583930502], [2.284059330733311, 48.87466631935959], [2.284026196659335, 48.87479726879655], [2.283993371538802, 48.87492774970135], [2.283960237132586, 48.875058699089024], [2.283927410318717, 48.875189179936676], [2.283894275592818, 48.875320128375755], [2.2838614498122842, 48.875450609182536], [2.283828314741771, 48.87558155847163], [2.283795488631331, 48.87571203922943], [2.283762351865309, 48.875842988461066], [2.283729525437119, 48.875973468270566], [2.283696389702393, 48.876104417461015], [2.283663562931819, 48.876234898120806], [2.283630426864826, 48.876365847261965], [2.283597599776704, 48.87649632697346], [2.283564462014166, 48.87662727605716], [2.283531634583542, 48.876757756618865], [2.283498497852305, 48.876888705661464], [2.283465670091651, 48.87701918617414], [2.283432533040507, 48.87715013426811], [2.283399703586524, 48.877280614723624], [2.28336656619082, 48.877411563667565], [2.283397935739778, 48.877479159757925], [2.283479957038862, 48.877473361624354], [2.283540247808056, 48.877452443166625], [2.28372489890616, 48.87739418534128], [2.283875513610505, 48.87734192728051], [2.284026128012607, 48.877289669027796], [2.284171827581118, 48.87724369996646], [2.284195341468934, 48.87723621235774], [2.284196667687581, 48.87723545135117], [2.28423561807231, 48.87722316272023], [2.284414507863664, 48.87716552679933], [2.284599156966738, 48.87710726761036], [2.284778045957728, 48.877049631140174], [2.284962694243272, 48.87699137138433], [2.285141583797281, 48.876933734373004], [2.285326231265291, 48.876875474050316], [2.285505118655545, 48.87681783648155], [2.28568976530602, 48.87675957559202], [2.285868653259282, 48.8767019374821], [2.286053299092118, 48.87664367602572], [2.286232184869302, 48.87658603825763], [2.286416829884703, 48.87652777623446], [2.28659571487384, 48.87647013701782], [2.28678036043507, 48.87641187443594], [2.2869592446238283, 48.87635423467], [2.287143888004141, 48.87629597151318], [2.287229185659581, 48.87626848651909], [2.287239677917422, 48.876260980133225], [2.287183522579116, 48.87621376398623], [2.287119386864245, 48.87614315247733], [2.287049312502285, 48.8760662389464], [2.28704775112089, 48.87605948278543], [2.2870936059053832, 48.87593502706278], [2.287138810159733, 48.875811464079796], [2.287184664520595, 48.87568700739502], [2.2872298683436663, 48.87556344434988], [2.287275722268594, 48.87543898760223], [2.287320925660393, 48.875315424494914], [2.287366780512731, 48.875190967692525], [2.287411982109925, 48.87506740451494], [2.287457184855986, 48.87494384131454], [2.287503039055605, 48.874819384418025], [2.287548240007078, 48.87469582114736], [2.2875940937707773, 48.87457136418801], [2.287639294291006, 48.874447800855194], [2.287683386131427, 48.87432673106918], [2.287727476415958, 48.87420566034631], [2.287772677665718, 48.874082096930294], [2.287816767523324, 48.87396102704693], [2.287861968348965, 48.8738374635698], [2.287906057804243, 48.873716392727474], [2.287951258205772, 48.873592829189235], [2.287995347234038, 48.87347175918643], [2.288040547223752, 48.87334819468786], [2.288084635837508, 48.873227124625345], [2.288129835390829, 48.87310356096491], [2.288118940595445, 48.87309259432371], [2.287949704705751, 48.87307298299951], [2.287778648684411, 48.87305258537052], [2.287609411677253, 48.8730329744557], [2.287438355920666, 48.873012576339704], [2.287269120534905, 48.87299296495118], [2.287098065042873, 48.872972566348146], [2.286928828564262, 48.87295295357042], [2.286757773336997, 48.87293255448038], [2.286752292230287, 48.87292820047132], [2.286726376730113, 48.872928642313674], [2.286726307314779, 48.87292863380594], [2.286518436491337, 48.872903112663096], [2.286313684731589, 48.87287812687732], [2.286105815675163, 48.872852605024946], [2.285901064311888, 48.87282761853223], [2.285696314495998, 48.872802632596105], [2.285488444692519, 48.872777108762534], [2.285283693909835, 48.87275212211136], [2.2850758258733013, 48.87272659756818], [2.284871075487109, 48.872701610210115], [2.28466320649108, 48.87267608494109], [2.284559652753023, 48.87263883303959], [2.284559231473264, 48.8726391309028], [2.284547182789705, 48.872684241069784], [2.284517905923893, 48.87269535914887]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 66, "roussel_fabien": 9.0, "nb_emargement": 944.0, "nb_procuration": 57.0, "nb_vote_blanc": 5.0, "jadot_yannick": 40.0, "le_pen_marine": 40.0, "nb_exprime": 936.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1246.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 944, "quartier_bv": "64", "geo_point_2d": [48.874880189371446, 2.285641455581752], "melenchon_jean_luc": 81.0, "poutou_philippe": 3.0, "macron_emmanuel": 410.0}, "geometry": {"type": "Point", "coordinates": [2.285641455581752, 48.874880189371446]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5ecf7ec5290bfee77dc7d693b06fdc483a20abc4", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 139, "zemmour_eric": 168.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "15-15", "geo_shape": {"coordinates": [[[2.291588479585692, 48.851641440526855], [2.291601155371271, 48.851625781253404], [2.291642517500214, 48.85158391445024], [2.291729488001573, 48.851495372766266], [2.29183679558256, 48.851386757126036], [2.2919237640743733, 48.85129821437783], [2.292031070844425, 48.851189598544124], [2.292118038664876, 48.85110105653828], [2.292115583175153, 48.85108939977611], [2.292022039702638, 48.85103531989897], [2.291931034073408, 48.85098243402686], [2.291919703001268, 48.850969054619064], [2.291909212801191, 48.85096810936409], [2.291735079956363, 48.851030920780296], [2.29156118750277, 48.85109366141646], [2.291387053818904, 48.85115647231911], [2.291213160515091, 48.85121921334173], [2.291039025992184, 48.851282023730775], [2.29086513322533, 48.85134476334923], [2.290690997863387, 48.85140757322471], [2.290517102883487, 48.851470313221554], [2.290342966682605, 48.85153312258341], [2.290169070876961, 48.85159586116808], [2.289994933837045, 48.85165867001633], [2.289821038556141, 48.85172140809618], [2.289646900677191, 48.85178421643088], [2.289473003183317, 48.85184695488901], [2.28929886446533, 48.85190976271009], [2.2891249661457342, 48.851972499756016], [2.288950826588712, 48.85203530706348], [2.2887769287815942, 48.85209804450393], [2.288602788385435, 48.85216085129777], [2.288428888389975, 48.852223587317916], [2.288254747154784, 48.852286393598135], [2.288080846309056, 48.85234913000467], [2.288062475914697, 48.85234569846092], [2.2879868286201512, 48.85225828192231], [2.287909811325528, 48.852170112503124], [2.287890951358274, 48.852166909154214], [2.287724137767155, 48.852233489727716], [2.2875600176704, 48.852298902546146], [2.287393201871159, 48.852365482642284], [2.28722908094326, 48.852430894999024], [2.287062265661379, 48.85249747463404], [2.286898142539592, 48.852562886520936], [2.286731326400018, 48.852629466585974], [2.28656720380983, 48.8526948780193], [2.28640038547443, 48.85276145670761], [2.2862362620530963, 48.85282686767929], [2.286069444235065, 48.85289344590642], [2.285905318619831, 48.852958856408286], [2.285741193955308, 48.85302426668928], [2.285574374872791, 48.853090844214364], [2.285410248014362, 48.85315625402554], [2.285243428074123, 48.853222831980666], [2.285079300396879, 48.85328824043082], [2.284912479611351, 48.85335481791663], [2.284748352453287, 48.853420226812524], [2.284581529471939, 48.85348680292161], [2.2845130030251832, 48.85355095555644], [2.284519232406645, 48.85355524228309], [2.284570300607623, 48.85359134307683], [2.284705340773519, 48.853689561928384], [2.284839980259045, 48.853784739283334], [2.284975021434467, 48.85388295781344], [2.285109663262738, 48.85397813575583], [2.285244704097249, 48.8540763530571], [2.285379346917737, 48.85417153067946], [2.285514390124571, 48.854269747667374], [2.285649032574695, 48.85436492496159], [2.285784076778748, 48.854463142527365], [2.285918720233527, 48.85455831860229], [2.286053765447139, 48.8546565358466], [2.286188411256953, 48.854751711609595], [2.286323456117428, 48.85484992852431], [2.286458102919587, 48.8549451039673], [2.286593150152342, 48.8550433205687], [2.286727796584143, 48.85513849568347], [2.28686284482648, 48.85523671196341], [2.286997493601152, 48.855331887665585], [2.287132541502566, 48.85543010271666], [2.287267191269508, 48.85552527809876], [2.28740224153104, 48.855623493735735], [2.287536890939937, 48.855718667890386], [2.287537655015341, 48.855718905373585], [2.28760134796219, 48.855673571110906], [2.287712542545211, 48.85556103623254], [2.287819866872323, 48.85545242459219], [2.287927190739825, 48.855343813744234], [2.288038385290514, 48.85523127763849], [2.28814570824693, 48.85512266657291], [2.288256900490937, 48.855010130233616], [2.288364222536382, 48.85490151895045], [2.288475413836641, 48.85478898238569], [2.288582734983402, 48.85468036998566], [2.288693925327442, 48.85456783409475], [2.288801245563249, 48.85445922147711], [2.288912434963564, 48.854346685360746], [2.289019754288426, 48.85423807252553], [2.289130944107611, 48.8541255361918], [2.289238262521535, 48.854016923139], [2.289349450034123, 48.85390438657179], [2.289456767537224, 48.853795773301364], [2.289567954106018, 48.85368323650873], [2.289675270698102, 48.85357462302076], [2.28978645632311, 48.853462086002644], [2.2898937720043913, 48.85335347229712], [2.290004956685625, 48.853240935053634], [2.290112271455908, 48.85313232113049], [2.290223456556138, 48.85301978366967], [2.290330770415533, 48.852911169528994], [2.290441953209348, 48.852798631834645], [2.290549266157868, 48.852690017476405], [2.290660448007837, 48.85257747955665], [2.290767760045492, 48.85246886498086], [2.29087894095183, 48.85235632683574], [2.2909862520786293, 48.85224771204232], [2.29109743340388, 48.85213517367989], [2.291170931226755, 48.85206078139893], [2.291176763861006, 48.852059697147446], [2.291187598526245, 48.852043449625626], [2.291221409534495, 48.85200922688238], [2.291316038915093, 48.85191338671231], [2.291423348218763, 48.851804771483664], [2.291517976868898, 48.85170893023698], [2.291583921812093, 48.85164218159582], [2.291588479585692, 48.851641440526855]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 15, "roussel_fabien": 16.0, "nb_emargement": 1227.0, "nb_procuration": 44.0, "nb_vote_blanc": 9.0, "jadot_yannick": 71.0, "le_pen_marine": 82.0, "nb_exprime": 1215.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1586.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1228, "quartier_bv": "59", "geo_point_2d": [48.85335410953603, 2.288091184537117], "melenchon_jean_luc": 203.0, "poutou_philippe": 0.0, "macron_emmanuel": 483.0}, "geometry": {"type": "Point", "coordinates": [2.288091184537117, 48.85335410953603]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2aff466e88e21765243a8e25361d71b49705dfee", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 108, "zemmour_eric": 137.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "17-46", "geo_shape": {"coordinates": [[[2.313561952845777, 48.8838310746207], [2.313566949907999, 48.88382657692892], [2.313605693267694, 48.8838077970494], [2.31362323560607, 48.88380011389343], [2.313645473463882, 48.883791566414054], [2.313647150403734, 48.883790040866344], [2.313648055805615, 48.88378921777124], [2.313615117904388, 48.88375303315134], [2.313464764860734, 48.88367131927403], [2.313316380919346, 48.88359067500764], [2.313166028813202, 48.88350896074314], [2.313017645797046, 48.88342831609461], [2.312867294628406, 48.88334660144288], [2.312718912537375, 48.883265956412245], [2.312716227531689, 48.88326399394249], [2.312614589519344, 48.88316312758721], [2.312513397422586, 48.883062703468696], [2.312411760195953, 48.88296183692275], [2.312310568869584, 48.88286141351369], [2.312208932428654, 48.882760546777135], [2.312107741884536, 48.882660123178276], [2.312006553106095, 48.88255969859332], [2.311904916479306, 48.88245883156316], [2.311903926829035, 48.88245767113041], [2.31183615119753, 48.88236231819863], [2.311764330338249, 48.8822537316448], [2.311696553864229, 48.88215837860847], [2.311624733577274, 48.88204979195074], [2.311556957636255, 48.88195443791846], [2.311503319410722, 48.88187334135217], [2.311492522538888, 48.8818663202106], [2.311461790590688, 48.88187378601606], [2.311334796173397, 48.8819818318941], [2.311209490655129, 48.88208844031745], [2.311082493827421, 48.88219648589898], [2.310957187276078, 48.88230309403749], [2.3108301894015613, 48.88241113933025], [2.310704881817235, 48.88251774718391], [2.310577884259335, 48.88262579219587], [2.31045257427848, 48.8827323997568], [2.3103255756736543, 48.882840444480024], [2.310200264671701, 48.88294705085683], [2.310073265008028, 48.88305509619062], [2.309947954336612, 48.88316170229037], [2.309822641776677, 48.88326830914007], [2.309695640558001, 48.88337635314249], [2.309693517054139, 48.883378948966055], [2.30961553354192, 48.88352910438253], [2.309537349502267, 48.88367964258918], [2.309534459871998, 48.883682835645004], [2.309419123134751, 48.883765063782334], [2.30930379704897, 48.88384728377195], [2.309188459571361, 48.88392951257404], [2.309073134120787, 48.8840117323371], [2.308957795926669, 48.88409396000542], [2.308842469735695, 48.884176180433236], [2.308839610869063, 48.884179310695565], [2.308774413740039, 48.884301914482144], [2.3087093127893272, 48.884424338010795], [2.308644115058708, 48.88454694079988], [2.30857901349536, 48.88466936423041], [2.308513815139257, 48.88479196782049], [2.30844871159967, 48.884914391145024], [2.308446897507807, 48.884916680259714], [2.308310560407687, 48.88504115350714], [2.308173952549662, 48.88516655763198], [2.308037614142919, 48.885291030540316], [2.307901006347647, 48.885416433433846], [2.307891771952289, 48.885429013870194], [2.307898304392417, 48.88543555380119], [2.308061840137534, 48.88548776182443], [2.308223830883737, 48.88553947595343], [2.308387367281473, 48.88559168352712], [2.308549357298671, 48.8856433981022], [2.308712894349128, 48.88569560522629], [2.308874886388432, 48.885747318464695], [2.309038424079676, 48.885799526038525], [2.3092004154020103, 48.88585123882375], [2.309363955121526, 48.88590344505663], [2.309525947078378, 48.88595515829579], [2.309569795727632, 48.88598076420599], [2.309582975553121, 48.88597410871089], [2.309671097556524, 48.885907915210346], [2.309793992118033, 48.885812214480865], [2.309919734826839, 48.885717761219915], [2.310004920455958, 48.88565142463276], [2.310017856652759, 48.88564420830038], [2.310022807840592, 48.8856377544506], [2.310060515835277, 48.88560839092976], [2.310204119515407, 48.88549703301764], [2.310308428335893, 48.885415804623996], [2.310327013479266, 48.885401332612446], [2.310331861890409, 48.885394602961256], [2.310334193709018, 48.88539316846876], [2.310499375356794, 48.885313108017115], [2.310658978707105, 48.88523574918696], [2.310824159356213, 48.885155688275816], [2.31098376174157, 48.88507832900165], [2.311143362301031, 48.88500096860217], [2.311308542812421, 48.884920907912786], [2.31146814239494, 48.88484354796858], [2.311633321919563, 48.8847634859204], [2.311792920537242, 48.8846861255322], [2.311958099063204, 48.88460606302453], [2.312117696715946, 48.88452870219234], [2.312282874243253, 48.88444863922511], [2.3124424709310603, 48.88437127794894], [2.3126076474597133, 48.88429121452223], [2.31276724318259, 48.884213852802084], [2.312932418712594, 48.88413378891586], [2.313092013470542, 48.88405642675174], [2.313257187990041, 48.88397636330528], [2.313416781794824, 48.88389899979789], [2.313543211939142, 48.8838377157636], [2.313561952845777, 48.8838310746207]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 46, "roussel_fabien": 14.0, "nb_emargement": 1250.0, "nb_procuration": 72.0, "nb_vote_blanc": 9.0, "jadot_yannick": 90.0, "le_pen_marine": 66.0, "nb_exprime": 1239.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1530.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1249, "quartier_bv": "66", "geo_point_2d": [48.88407301365639, 2.310695623401222], "melenchon_jean_luc": 190.0, "poutou_philippe": 4.0, "macron_emmanuel": 597.0}, "geometry": {"type": "Point", "coordinates": [2.310695623401222, 48.88407301365639]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ca9dae10de819c40e06743379263035b2eaad804", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 37, "zemmour_eric": 88.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-14", "geo_shape": {"coordinates": [[[2.368461751970471, 48.82729287911847], [2.368438105606591, 48.82729258965925], [2.368369317082883, 48.82728308783582], [2.368160457202817, 48.827254497898245], [2.367962425388002, 48.82722714210023], [2.367753565944188, 48.82719855234993], [2.367555533193285, 48.82717119586964], [2.367346675569739, 48.82714260451517], [2.367148643244856, 48.82711524735974], [2.366939786057668, 48.82708665619258], [2.366741754169735, 48.82705929746274], [2.366532896067735, 48.82703070557634], [2.3663348659570103, 48.82700334707789], [2.366319468247965, 48.82699930464861], [2.366300672859175, 48.82700594676063], [2.366234126370515, 48.82711607318097], [2.366182693660392, 48.82721906847973], [2.366172272099841, 48.827225091212924], [2.365982014070909, 48.82724868416853], [2.365794200559075, 48.827273316870006], [2.365603942172121, 48.82729691012249], [2.3654161283079302, 48.82732154222921], [2.365225869584846, 48.82734513397987], [2.365038056730409, 48.82736976549897], [2.365029890525605, 48.82737312267227], [2.364950956544581, 48.827443844891626], [2.364863631826416, 48.82751922711625], [2.364784697398652, 48.827589949216666], [2.364697372206328, 48.82766533041077], [2.364696275841581, 48.827675152038935], [2.364802097257933, 48.827801293628994], [2.364906003468178, 48.827927363780546], [2.365011825903807, 48.828053505156674], [2.365115733134834, 48.82817957419832], [2.365221555216879, 48.828305716252615], [2.365325463457741, 48.82843178508372], [2.365324915494454, 48.82844098995292], [2.365211271420141, 48.82855624937714], [2.365102309268619, 48.828663410407], [2.365087425528196, 48.82867842735935], [2.365112059984323, 48.82869282038639], [2.365276275253304, 48.82876425499724], [2.36544917713299, 48.82883764213487], [2.36564362138748, 48.828922226246], [2.365816524308184, 48.828995612842256], [2.365829845977019, 48.82899623209974], [2.365995532934167, 48.82894446041431], [2.36615567016639, 48.828895022635955], [2.366321357840357, 48.82884325050171], [2.3664814931015092, 48.828793811376116], [2.366641629421184, 48.82874437204113], [2.3668073161337713, 48.82869259922667], [2.366967450471337, 48.828643159443736], [2.367133136527878, 48.82859138707256], [2.36729327160771, 48.82854194685611], [2.367458955667706, 48.828490173122354], [2.367466734523814, 48.82848247876273], [2.367471423035397, 48.82841849702203], [2.367487376359746, 48.82833041681028], [2.36749757119749, 48.82832276490468], [2.367522561796413, 48.82831738661544], [2.367533786943234, 48.82830093529824], [2.367738091947739, 48.82826692116334], [2.367942992304958, 48.828232878348246], [2.368147296775778, 48.828198863512235], [2.368329054852362, 48.82816871976015], [2.368533358830761, 48.828134703363425], [2.36871511509832, 48.828104559015685], [2.3688968725179143, 48.82807441439813], [2.369101175745374, 48.82804039792783], [2.369114289643146, 48.82804286033829], [2.3692255764387, 48.8281186933599], [2.3693624182888993, 48.82820622785926], [2.369473705794, 48.82828206063898], [2.369610548489723, 48.82836959484169], [2.369633343520969, 48.828361247403436], [2.369600840467348, 48.8282613114013], [2.369571017554624, 48.828175631971476], [2.369538513385055, 48.82807569502937], [2.36950869068094, 48.827990015569846], [2.3695187059958283, 48.827979268703245], [2.36971785634509, 48.82794685637655], [2.369915746768895, 48.827914303074074], [2.370114896634014, 48.827881889185086], [2.370312786563301, 48.82784933522377], [2.370511935933393, 48.82781692067173], [2.370709825368154, 48.82778436605154], [2.370720149749066, 48.827775413159955], [2.3707172980289393, 48.827700537067514], [2.370715280679045, 48.82763496847264], [2.370720949438279, 48.82761143203525], [2.370712738236183, 48.827606131095166], [2.37057980200222, 48.82758779301893], [2.370381766289926, 48.82756044122804], [2.370183322421502, 48.82753306537296], [2.369985288487206, 48.82750571293139], [2.369786843662315, 48.82747833730928], [2.36958881015479, 48.82745098331051], [2.369390365746511, 48.827423607029175], [2.3691923326548032, 48.82739625237256], [2.368993890025143, 48.82736887543918], [2.368795855987361, 48.82734152011755], [2.3685974137741272, 48.827314142524976], [2.368468168675353, 48.82729628925085], [2.368461751970471, 48.82729287911847]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 14, "roussel_fabien": 25.0, "nb_emargement": 1063.0, "nb_procuration": 33.0, "nb_vote_blanc": 15.0, "jadot_yannick": 51.0, "le_pen_marine": 117.0, "nb_exprime": 1036.0, "nb_vote_nul": 12.0, "arr_bv": "13", "arthaud_nathalie": 2, "nb_inscrit": 1436.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1063, "quartier_bv": "50", "geo_point_2d": [48.827877857063704, 2.3671464096821837], "melenchon_jean_luc": 396.0, "poutou_philippe": 8.0, "macron_emmanuel": 254.0}, "geometry": {"type": "Point", "coordinates": [2.3671464096821837, 48.827877857063704]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "75389252172e96cfee75da245b6facf598ee462e", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 158, "zemmour_eric": 170.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "16-16", "geo_shape": {"coordinates": [[[2.275835782564283, 48.85292682420487], [2.27583057451131, 48.85293971471317], [2.275824904907113, 48.852953749113794], [2.275884243232232, 48.85297974094053], [2.276013653215397, 48.85306051056007], [2.276166347102493, 48.8531543878822], [2.276295756593898, 48.85323515717566], [2.276448451501102, 48.85332903412312], [2.276577863226278, 48.85340980310704], [2.276730557778142, 48.85350368057075], [2.276859970386814, 48.853584448337564], [2.2770126659586962, 48.853678325426586], [2.277142079425908, 48.853759093774904], [2.27713787054505, 48.85377395277062], [2.276951534271806, 48.85382419751507], [2.276772258855606, 48.85387217059194], [2.276585923241375, 48.85392241477084], [2.276406647150761, 48.853970387295654], [2.276220309469987, 48.85402063089251], [2.276041032704859, 48.854068602865325], [2.275854695683112, 48.854118845896664], [2.275675418230873, 48.854166818216726], [2.275666995907215, 48.85417415188329], [2.275649744079269, 48.85427585327685], [2.275629279443567, 48.854371506795665], [2.275620284716846, 48.8543787389623], [2.275462077055128, 48.854413822065], [2.275259236404703, 48.854460634798166], [2.275237268744569, 48.854455096584196], [2.2752155604664432, 48.85446324460698], [2.275094935261656, 48.85455906473677], [2.274974380229894, 48.85465362965746], [2.274853754128343, 48.85474945042698], [2.274733198218496, 48.8548440150885], [2.274612571245101, 48.85493983469919], [2.274492014457062, 48.855034399101505], [2.2743713865869832, 48.85513021935193], [2.274250828920641, 48.85522478349506], [2.274130200166284, 48.85532060348594], [2.274009641634366, 48.855415166470564], [2.273889013358447, 48.85551098621016], [2.273768453935788, 48.855605549834884], [2.273765151338072, 48.855607425641075], [2.273625646272379, 48.85566390496221], [2.27347579742286, 48.85572509601716], [2.273336291728478, 48.855781574994985], [2.273186442200745, 48.85584276568108], [2.273182868770368, 48.85585594477625], [2.273271996503452, 48.855931331711865], [2.273385493841822, 48.85602449130468], [2.273474622156373, 48.85609987807792], [2.273546294807693, 48.8561587077259], [2.273545320503547, 48.85616895810457], [2.2735662613161702, 48.85618288500325], [2.273608086765093, 48.856217214734045], [2.2736657596568293, 48.856256490887624], [2.273681589533862, 48.85625829395728], [2.2738363897436358, 48.85620776943574], [2.273982357588605, 48.856159709330896], [2.274137157213846, 48.85610918441583], [2.2742831244927952, 48.85606112483908], [2.274429091502473, 48.85601306508225], [2.274583891634115, 48.855962538691564], [2.274588418401794, 48.85596015405241], [2.27471315601468, 48.85585901995824], [2.274840207250715, 48.8557570138797], [2.274867521082735, 48.85574088840602], [2.274866769303546, 48.8557344831085], [2.274993819935089, 48.85563247685546], [2.275106927118613, 48.855547148257706], [2.275109691621053, 48.855543878744875], [2.275156310871603, 48.85544418923082], [2.27521191098725, 48.85533963908825], [2.275218558325183, 48.85533461145947], [2.275389410000091, 48.85527688473127], [2.275544370823118, 48.8552268284218], [2.275699332723629, 48.85517677101835], [2.275870181985643, 48.8551190435872], [2.276025143240209, 48.85506898665625], [2.2761959918002432, 48.855011257855054], [2.276350952421262, 48.854961200497335], [2.276475251494567, 48.854919200177314], [2.276501853734869, 48.85491607206924], [2.276513052831387, 48.85490545988299], [2.276559601580151, 48.85488973091611], [2.276734772908297, 48.85483046798831], [2.276905621262863, 48.85477273816975], [2.27708079180426, 48.854713474729174], [2.277251638016691, 48.85465574530158], [2.277426807783611, 48.85459648044895], [2.277597654591887, 48.85453875052946], [2.277772823571947, 48.854479485164056], [2.277943668250468, 48.85442175473622], [2.278118837806463, 48.854362488866265], [2.278289681718027, 48.854304757938344], [2.278292329678027, 48.854303585854645], [2.278452024190502, 48.854213325033015], [2.278609965718296, 48.85412275213997], [2.278769659126352, 48.85403249087976], [2.278927599553808, 48.85394191755266], [2.27908729185755, 48.85385165585385], [2.279245231184775, 48.853761082092795], [2.279404922384009, 48.8536708199554], [2.279562860611112, 48.85358024576038], [2.279722550705945, 48.853489983184396], [2.279880487832728, 48.8533994085554], [2.280040176823267, 48.853309145540855], [2.28019811284984, 48.85321857047787], [2.280357800735888, 48.853128307024754], [2.280515735662358, 48.8530377315278], [2.280675422444024, 48.852947467636085], [2.280833356270194, 48.85285689170517], [2.280870723232375, 48.852813701427095], [2.280869836608013, 48.852776529094115], [2.280720878184319, 48.85268746124733], [2.280573144473049, 48.8525965892547], [2.28042418705844, 48.852507521923435], [2.280276453024592, 48.85241664864234], [2.280127496631375, 48.8523275809273], [2.279979763625077, 48.85223670726517], [2.279830809616084, 48.852147639174596], [2.279683077624792, 48.85205676603076], [2.279534123287075, 48.85196769664892], [2.279386392323416, 48.85187682312409], [2.279237438994639, 48.85178775425779], [2.2790897104335652, 48.85169687946088], [2.278940758126354, 48.85160781021083], [2.278793029217632, 48.85151693592396], [2.27864407794433, 48.85142786539093], [2.278496350063222, 48.85133699072306], [2.278453320329711, 48.851301500501734], [2.278407094896508, 48.85130901560523], [2.278268768470615, 48.85138353349288], [2.278120863689706, 48.85146219345269], [2.277982536447889, 48.851536710999135], [2.277834630800043, 48.85161537059428], [2.2776963027298303, 48.85168988869887], [2.277595715913662, 48.85174338258108], [2.277561229403085, 48.85175599836736], [2.277556037631563, 48.851761856044945], [2.277508717897109, 48.85178702137706], [2.277351863131599, 48.85187379523647], [2.2772039555749872, 48.851952454028165], [2.2770470984411793, 48.852039227466875], [2.276899189942585, 48.85211788676945], [2.276751281009834, 48.852196544984345], [2.2765944223874692, 48.85228331781059], [2.276446512512621, 48.85236197653631], [2.276289654247613, 48.85244874895834], [2.276141743455636, 48.85252740639637], [2.275984882822296, 48.852614178397715], [2.275980382781448, 48.852618980741326], [2.27593179315544, 48.85275317369079], [2.275854989973744, 48.85291489979666], [2.275835782564283, 48.85292682420487]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 16, "roussel_fabien": 3.0, "nb_emargement": 1094.0, "nb_procuration": 63.0, "nb_vote_blanc": 11.0, "jadot_yannick": 45.0, "le_pen_marine": 57.0, "nb_exprime": 1078.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1333.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1094, "quartier_bv": "62", "geo_point_2d": [48.8534834981454, 2.2774473926593397], "melenchon_jean_luc": 78.0, "poutou_philippe": 1.0, "macron_emmanuel": 537.0}, "geometry": {"type": "Point", "coordinates": [2.2774473926593397, 48.8534834981454]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b1be9f153fa377ccabe0a97b63feff12fb09828a", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 127, "zemmour_eric": 150.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-33", "geo_shape": {"coordinates": [[[2.312197613099932, 48.84692410157528], [2.312207737336138, 48.84691990669239], [2.312250933207508, 48.8468921191766], [2.312397111362491, 48.84679820882534], [2.312538943600551, 48.84670696960838], [2.312685120705457, 48.846613059788886], [2.312826951947261, 48.84652181931606], [2.312973128013758, 48.84642790912907], [2.313114958235598, 48.84633666919893], [2.313261133275647, 48.84624275774519], [2.313402962489385, 48.846151517458495], [2.313549136479291, 48.84605760653654], [2.3136909646967823, 48.845966364993956], [2.313697175687949, 48.845960364096435], [2.313656476976182, 48.84592499248587], [2.313472606949657, 48.84586643128873], [2.313286788924823, 48.84580702850933], [2.313102919718144, 48.84574846763707], [2.312917102535184, 48.8456890642772], [2.312733234171957, 48.84563050193133], [2.312547417831079, 48.845571097991], [2.312363551650055, 48.8455125359779], [2.3121777347885892, 48.84545313144929], [2.311993869451133, 48.84539456796255], [2.3118080534315553, 48.84533516285346], [2.311806102790759, 48.845319737429925], [2.311973491646011, 48.845241253977996], [2.312138683229856, 48.84516350772539], [2.312306072456908, 48.84508502290567], [2.312471263049318, 48.84500727618295], [2.312638649899426, 48.8449287917784], [2.312803840874917, 48.844851043694106], [2.312971226722304, 48.844772558813226], [2.31313641533216, 48.8446948111503], [2.313303801551327, 48.84461632490164], [2.31346898916986, 48.8445385767686], [2.313474330629229, 48.84452916499191], [2.313431309123199, 48.84441027930463], [2.313385464285821, 48.84428716745698], [2.313342443182266, 48.844168281711966], [2.3132965973933, 48.844045170695054], [2.313253576704066, 48.84392628399298], [2.313207732700413, 48.84380317292314], [2.313164712413645, 48.843684286163274], [2.313118867470252, 48.84356117502482], [2.313075847574094, 48.843442289106534], [2.313030004415989, 48.843319177915156], [2.3129869849341382, 48.84320029103984], [2.312941140836395, 48.843077179779876], [2.312960392540629, 48.843066964726], [2.313133146113758, 48.84312311664589], [2.313304245257997, 48.84317962575579], [2.313476999575014, 48.843235777173454], [2.313648098099416, 48.843292285778055], [2.313820854522829, 48.843348436701305], [2.313991953789793, 48.84340494480841], [2.314010611799135, 48.84340038679104], [2.314084496515313, 48.843284361491534], [2.3141594314601592, 48.84317237401356], [2.314233315521803, 48.84305634859842], [2.314308249819054, 48.842944361004356], [2.3143821332380012, 48.84282833457431], [2.314457066887662, 48.842716346864115], [2.31453094964026, 48.84260032121774], [2.31460588264234, 48.842488333391444], [2.3146797647404282, 48.84237230762948], [2.314754697094934, 48.84226031968711], [2.314829629127432, 48.84214833168656], [2.314903508894809, 48.842032304843954], [2.314911979706466, 48.8420150090722], [2.314902152921952, 48.84200620105905], [2.314874494460712, 48.8419914792139], [2.314873703860265, 48.84199108885772], [2.314725705160254, 48.84191870822404], [2.314582414617762, 48.84185315538754], [2.314434416714047, 48.841780774384596], [2.314291126905297, 48.841715222090386], [2.314147837468817, 48.8416496687214], [2.313999840746424, 48.84157728716761], [2.313997580914243, 48.84157589368014], [2.313836599964917, 48.8414517355422], [2.313672609959279, 48.841324678333], [2.31367115236023, 48.84132330922769], [2.313606659642937, 48.84124972890023], [2.313529918270993, 48.84116112266359], [2.3135309458331133, 48.84115883067668], [2.313513619282675, 48.84114180605181], [2.313466598103979, 48.84108751390107], [2.313413445389016, 48.841027655426615], [2.313397441992926, 48.84102365851989], [2.313204279390427, 48.841065498069284], [2.313021481875593, 48.8411050162065], [2.312838684071708, 48.84114453496229], [2.312645520572702, 48.84118637360493], [2.312462722198423, 48.841225891783296], [2.31226955809611, 48.84126772981588], [2.3122606743899112, 48.84127557518821], [2.312271293489945, 48.841289966758424], [2.312383954445296, 48.84138532047721], [2.3124974495197, 48.84148130663149], [2.312610111302392, 48.84157666012095], [2.312723607209946, 48.84167264604425], [2.312836271182458, 48.84176799931221], [2.312949767911316, 48.84186398590376], [2.312951146427162, 48.84187362783865], [2.31285874778606, 48.841992367557715], [2.312769068958384, 48.84210775738993], [2.312676669499261, 48.84222649604415], [2.312586988503139, 48.8423418857078], [2.312497308472406, 48.84245727530019], [2.312404907762652, 48.8425760146066], [2.312315226925941, 48.84269140403825], [2.312222825386282, 48.84281014317913], [2.312205045906473, 48.84281421401753], [2.311990086832624, 48.842749420621494], [2.311773671981147, 48.84268378024783], [2.311558713993413, 48.842618985169835], [2.31134230022683, 48.84255334400812], [2.311323241387044, 48.842559780779524], [2.311282897853204, 48.84269520805026], [2.311243545909979, 48.842828275668026], [2.31120320196112, 48.842963702879345], [2.311163849611692, 48.84309677043888], [2.311123505247911, 48.84323219759073], [2.311084153854684, 48.84336526509989], [2.311043809076081, 48.84350069219224], [2.311004455914233, 48.84363375963529], [2.310964110720592, 48.843769186668204], [2.310924757152525, 48.843902254053], [2.3108854033834, 48.84403532140901], [2.310845057569648, 48.84417074835298], [2.310805703394294, 48.84430381565072], [2.31076535716559, 48.844439242535245], [2.310765101142754, 48.8444399524579], [2.310723213242264, 48.84453831479825], [2.310680003257081, 48.84463844214649], [2.310638115036551, 48.84473680443954], [2.310594904735106, 48.844836930839854], [2.310594589601593, 48.844837576566434], [2.3105602237873972, 48.8448998124181], [2.31053338363205, 48.84495093051398], [2.310521292645626, 48.844966818257156], [2.310541153147087, 48.844975769873095], [2.310599367429313, 48.844996073045266], [2.310664680696851, 48.845018877754725], [2.3106715585258852, 48.84502892731213], [2.310614065316706, 48.84518691294868], [2.31056059640053, 48.8453318629594], [2.310552600174073, 48.84533806116404], [2.310358559081235, 48.84539156115006], [2.310168695665338, 48.845443913038636], [2.309974655135054, 48.845497413304045], [2.309784789585325, 48.845549764570535], [2.309594925016722, 48.84560211554114], [2.309400883308308, 48.84565561486834], [2.309211016617897, 48.845707964317555], [2.309016974121283, 48.84576146301702], [2.308988629486567, 48.845769278460715], [2.3089827276040182, 48.845775872684776], [2.3089920779529542, 48.845789452228736], [2.309038454696246, 48.845887797535966], [2.309086177526373, 48.845987406101386], [2.30913255461147, 48.84608575225395], [2.309180276440137, 48.84618536075629], [2.309188654189853, 48.846191111097966], [2.309373170949903, 48.84623494384454], [2.309558337919777, 48.84627888618041], [2.309742855301525, 48.846322718353385], [2.309928022894969, 48.84636666011361], [2.310112540910317, 48.84641049081371], [2.3102977091273242, 48.846454431998296], [2.310482227752451, 48.84649826302407], [2.3106673965930202, 48.846542203633035], [2.310851915839832, 48.8465860340852], [2.311037085303955, 48.846629974118564], [2.311221605184333, 48.846673803097794], [2.311406775272003, 48.846717742555484], [2.311591295762166, 48.84676157186039], [2.311776466473281, 48.84680551074246], [2.311960986222613, 48.846849339465905], [2.31214615891987, 48.8468932777802], [2.312197613099932, 48.84692410157528]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 33, "roussel_fabien": 21.0, "nb_emargement": 1282.0, "nb_procuration": 103.0, "nb_vote_blanc": 11.0, "jadot_yannick": 97.0, "le_pen_marine": 59.0, "nb_exprime": 1271.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1512.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1283, "quartier_bv": "58", "geo_point_2d": [48.8442306958186, 2.312166134152105], "melenchon_jean_luc": 214.0, "poutou_philippe": 3.0, "macron_emmanuel": 537.0}, "geometry": {"type": "Point", "coordinates": [2.312166134152105, 48.8442306958186]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b0ceb36dfcfc637f260fe6a932c8d7e90dd2d3f9", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 167, "zemmour_eric": 143.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-23", "geo_shape": {"coordinates": [[[2.305383134290451, 48.84680203802523], [2.305352350279898, 48.846809680155495], [2.305213637882004, 48.84685226717175], [2.305048329128328, 48.84690011190742], [2.304879593255335, 48.846951915286596], [2.304714283879002, 48.84699975955643], [2.304545547351322, 48.84705156245982], [2.304380237352131, 48.84709940626383], [2.304363961367371, 48.84709665131136], [2.304267963072129, 48.8470142447159], [2.304183734457052, 48.84694797361999], [2.304182314078181, 48.84693851664475], [2.304260467519047, 48.84683384274322], [2.304339104467529, 48.84672855103303], [2.304417257278507, 48.84662387700938], [2.3044958922309062, 48.846518585168376], [2.304574045774695, 48.846413911030474], [2.304652680093414, 48.84630861906662], [2.304730833007524, 48.84620394480657], [2.30480946669267, 48.84609865271981], [2.304802225326179, 48.846086305539224], [2.304611701162585, 48.84603692938223], [2.304426829001135, 48.84598903285616], [2.30423630556082, 48.84593965519773], [2.304051434077432, 48.84589175898672], [2.303860911348504, 48.84584238072618], [2.303676041917652, 48.84579448393882], [2.303491171476156, 48.845746585956526], [2.303300649808679, 48.84569720679738], [2.30311578004524, 48.8456493091301], [2.302925259089163, 48.84559992936881], [2.302740390015699, 48.84555203111731], [2.302549869770922, 48.84550265075391], [2.302365002762141, 48.84545475102683], [2.30217448321663, 48.845405370960634], [2.302155914642957, 48.845414412789275], [2.302162651456851, 48.84547385065003], [2.302166839750048, 48.84551561011339], [2.302167985146896, 48.84551860538434], [2.302252093542296, 48.84564295649785], [2.302336400538139, 48.845766854515], [2.302420508373455, 48.845891205474466], [2.302504816171169, 48.84601510334531], [2.302588924808976, 48.846139454158696], [2.302673233408775, 48.84626335188328], [2.302757344211571, 48.8463877025585], [2.302841653613368, 48.84651160013677], [2.302925763856194, 48.84663595065795], [2.3030100740598938, 48.84675984808997], [2.303011208371243, 48.84676439108976], [2.302993299203691, 48.84688763000695], [2.302975793413967, 48.8470045442348], [2.30295828753367, 48.84712145934715], [2.302940378118368, 48.84724469821692], [2.302930787467524, 48.84725244161829], [2.302776649150856, 48.847283805408836], [2.302549768388427, 48.84732943876307], [2.30239562961472, 48.847360802060614], [2.302168749546066, 48.84740643469708], [2.302014610315224, 48.84743779750154], [2.3020050702852313, 48.84744581812766], [2.302009919488336, 48.84745807506317], [2.302104767530807, 48.84752014033948], [2.302200275104236, 48.84758293606808], [2.3022951236125992, 48.84764500028722], [2.302390630281707, 48.847707795848876], [2.302388317535805, 48.84772175936672], [2.302234467396346, 48.847786226096275], [2.302086464424328, 48.847848645609446], [2.301932613536871, 48.847913111943505], [2.301784611217527, 48.847975530184804], [2.301721469541685, 48.848015626717924], [2.301725201003935, 48.848019871905095], [2.301767082406589, 48.84804877543664], [2.301905992015576, 48.8481466434911], [2.302042360560724, 48.84824075519955], [2.302181271198305, 48.84833862291753], [2.302317639380308, 48.848432734288], [2.302456552397196, 48.84853060257676], [2.302592921578701, 48.84862471361725], [2.302731834273798, 48.84872258066228], [2.302868205817457, 48.84881669138075], [2.303007119541174, 48.848914558089284], [2.303143492084352, 48.849008668477715], [2.303282406824875, 48.849106535749065], [2.303418780367481, 48.84920064580752], [2.303557696148765, 48.84929851184306], [2.303694069328341, 48.84939262156355], [2.303758500733415, 48.849439699477216], [2.30380637882562, 48.84942017503867], [2.303887503983839, 48.849368305117494], [2.304032190452463, 48.84927570855756], [2.30417774939715, 48.849182641129694], [2.304322434834564, 48.84909004420341], [2.304467992754315, 48.848996975507596], [2.304612677148524, 48.848904379114124], [2.30475823403134, 48.84881131004976], [2.304902917394358, 48.84871871328984], [2.305048473240245, 48.84862564385685], [2.30519315557208, 48.848533046730545], [2.305338710381147, 48.84843997692895], [2.305483391681703, 48.848347379436234], [2.305628945453857, 48.848254309266004], [2.305773625735224, 48.84816171050759], [2.305861039079826, 48.84810581597752], [2.305872789394726, 48.84809551180249], [2.305794957340627, 48.848048804199955], [2.305662978188941, 48.847936217876025], [2.305535040908607, 48.847827758645806], [2.305407105523321, 48.84771929927604], [2.30527512805601, 48.847606711591716], [2.305272362518325, 48.84760021562239], [2.305293677740129, 48.847473575972856], [2.305315316912138, 48.847343991872926], [2.305336633287273, 48.84721735219448], [2.305358272246081, 48.84708776805695], [2.305379588424119, 48.84696112744246], [2.305401227157745, 48.84683154416669], [2.305383134290451, 48.84680203802523]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 23, "roussel_fabien": 11.0, "nb_emargement": 1253.0, "nb_procuration": 101.0, "nb_vote_blanc": 6.0, "jadot_yannick": 77.0, "le_pen_marine": 55.0, "nb_exprime": 1246.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1522.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1257, "quartier_bv": "58", "geo_point_2d": [48.84754008442802, 2.303758276731331], "melenchon_jean_luc": 154.0, "poutou_philippe": 4.0, "macron_emmanuel": 584.0}, "geometry": {"type": "Point", "coordinates": [2.303758276731331, 48.84754008442802]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "364f1d9ba361f60f8718369ccaf3eebabf1e5014", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 33, "zemmour_eric": 92.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "19-49", "geo_shape": {"coordinates": [[[2.380953771552471, 48.89374993527454], [2.380976892374398, 48.89376668408736], [2.381115162334041, 48.89387667850623], [2.381253193755154, 48.8939877426067], [2.381391464885581, 48.89409773668441], [2.381529498835214, 48.894208801350246], [2.381536083394774, 48.894211705979], [2.381677396349193, 48.89424000609413], [2.381805895343431, 48.89426728481729], [2.381947208584781, 48.89429558551188], [2.382075707857555, 48.89432286394416], [2.382080808706814, 48.89432483368992], [2.3822417868886783, 48.89442339306818], [2.382402608946045, 48.89452113753061], [2.382563588344027, 48.89461969645863], [2.382724411601127, 48.89471744137064], [2.38274333112165, 48.89471716747247], [2.382894438330503, 48.894616880959724], [2.383031406791785, 48.89452267543741], [2.383182512881282, 48.894422388543376], [2.3833194803096722, 48.89432818267486], [2.383456448616909, 48.89423397574938], [2.383607553039173, 48.89413368919186], [2.383609513978706, 48.89412266016036], [2.383492051205535, 48.89399597564193], [2.383384314243352, 48.893872118164175], [2.38338323545663, 48.89386474269886], [2.383416143747702, 48.893796788807094], [2.383466140125329, 48.8937000502745], [2.3834897252065153, 48.893697354135256], [2.383582789526987, 48.893774528858145], [2.383665442139626, 48.893847206385715], [2.383758506988409, 48.8939243809615], [2.383841161437521, 48.89399705926414], [2.383858770606763, 48.89399949798583], [2.384048518086156, 48.8939289819447], [2.384227956591162, 48.89386285522227], [2.384417703072559, 48.89379233858742], [2.384597141990959, 48.893726212209856], [2.384776579100453, 48.89366008465314], [2.384966324099734, 48.89358956713595], [2.384973109590179, 48.893583091822364], [2.385005276647329, 48.89344433576178], [2.385035234103605, 48.89330465012477], [2.385067399459447, 48.89316589400522], [2.385097356599367, 48.89302620741798], [2.3851295229708382, 48.89288745215279], [2.385159479783888, 48.89274776551449], [2.385165158769972, 48.89274165952039], [2.385334755041384, 48.89266332626926], [2.385522188857686, 48.892582333291564], [2.385691784062375, 48.89250400042269], [2.385879215385843, 48.89242300686737], [2.385883234571017, 48.89241064475737], [2.385775354857162, 48.892299263885384], [2.38567294657189, 48.89219442653904], [2.385565067745251, 48.89208304635492], [2.385462660308654, 48.8919782088081], [2.385354782390445, 48.89186682751332], [2.385252377166304, 48.89176198977296], [2.385144500135283, 48.89165060916606], [2.385042094396008, 48.891545771218205], [2.384939689069016, 48.8914409331728], [2.384831813372154, 48.89132955225163], [2.384729410257579, 48.89122471401269], [2.384621535469022, 48.891113331980854], [2.384519131839408, 48.89100849353443], [2.384411257937995, 48.8908971121905], [2.384401238860686, 48.89089368733311], [2.3843491676358752, 48.89091217675048], [2.3841941384021093, 48.890991672700004], [2.384037234698991, 48.891071407015716], [2.383882203151115, 48.89115090254282], [2.383725298501241, 48.89123063553894], [2.383570265992371, 48.891310131549936], [2.383413360384893, 48.8913898641258], [2.383258326925665, 48.89146935972138], [2.383101420360784, 48.8915490918769], [2.382946387325534, 48.89162858616486], [2.382789479792487, 48.891708318799346], [2.382776357882995, 48.891709613633715], [2.38266317606007, 48.89168157486021], [2.382559477454004, 48.89165454714865], [2.382547039025721, 48.89165536614465], [2.382430500210877, 48.89170524039877], [2.382343122232784, 48.89174333367902], [2.382337048436559, 48.891749591293205], [2.382318462592327, 48.89183437861735], [2.382300615466142, 48.891925295009], [2.3822955812566082, 48.89193117757057], [2.382142394385471, 48.89201154726946], [2.38198766351044, 48.892094184978134], [2.38183447568443, 48.89217455427125], [2.381679743836174, 48.892257191569755], [2.381526555055286, 48.89233756045697], [2.381371822234005, 48.89242019734532], [2.381218632498236, 48.89250056582668], [2.381063898703824, 48.89258320230488], [2.380910708013166, 48.892663570380414], [2.380755973245618, 48.89274620644843], [2.38060278160007, 48.8928265741181], [2.3804480458592803, 48.892909209775965], [2.380294853248234, 48.89298957793903], [2.380140116534299, 48.893072213186706], [2.380138038045086, 48.89308480907985], [2.38027150788182, 48.893195127749216], [2.380409773469583, 48.89330512303284], [2.380543244457543, 48.8934154404779], [2.380681512568271, 48.89352543543276], [2.380814983322133, 48.89363575344498], [2.380953252592013, 48.893745748063964], [2.380953771552471, 48.89374993527454]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 49, "roussel_fabien": 22.0, "nb_emargement": 1196.0, "nb_procuration": 42.0, "nb_vote_blanc": 9.0, "jadot_yannick": 75.0, "le_pen_marine": 65.0, "nb_exprime": 1183.0, "nb_vote_nul": 4.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1657.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1196, "quartier_bv": "74", "geo_point_2d": [48.89284543652078, 2.3831518995220176], "melenchon_jean_luc": 606.0, "poutou_philippe": 7.0, "macron_emmanuel": 235.0}, "geometry": {"type": "Point", "coordinates": [2.3831518995220176, 48.89284543652078]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e877bd87892eeb030ac650b528eeca6c4485ac7b", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 50, "zemmour_eric": 55.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-42", "geo_shape": {"coordinates": [[[2.328891937821672, 48.89737249864748], [2.328897915693826, 48.89738957696017], [2.328931565853073, 48.89749453091349], [2.328969323817756, 48.897607795096185], [2.328969359252419, 48.897607903213135], [2.328980465662645, 48.8976405523], [2.328987482641769, 48.89764527437474], [2.329039947187639, 48.89763982526301], [2.329250318870055, 48.89764359103298], [2.329447169739328, 48.897647417425965], [2.329644020649114, 48.89765124259611], [2.329854392409676, 48.897655008204204], [2.33005124337808, 48.897658832704984], [2.330261616562797, 48.897662597605326], [2.330458466225876, 48.897666421429136], [2.3306688394706, 48.89767018561416], [2.33086569055621, 48.89767400877626], [2.3310760624972, 48.897677772238275], [2.331272913641396, 48.897681594730976], [2.331483287006307, 48.8976853574853], [2.331680138197535, 48.8976891802079], [2.331890510270232, 48.89769294134002], [2.332009659592209, 48.897695254433046], [2.332023233759803, 48.897689868577416], [2.332022300589765, 48.89765926672203], [2.332002049601543, 48.897551651797166], [2.3319718096569853, 48.89739644939053], [2.331951558875463, 48.89728883443128], [2.33192131924562, 48.89713363107537], [2.331901068670692, 48.89702601608174], [2.331892851291908, 48.897018842227915], [2.3317548459966853, 48.89698031878896], [2.3316180718921062, 48.896942061963436], [2.331480068379194, 48.89690353731354], [2.331343293314331, 48.89686528016385], [2.33133562528485, 48.896859733509864], [2.331276103821919, 48.89673664123276], [2.331219186707393, 48.89662266277956], [2.331162271205882, 48.89650868429502], [2.331102750542599, 48.89638559279158], [2.331045834191262, 48.89627161421941], [2.330986314085852, 48.89614852173219], [2.330929399612585, 48.896034543087616], [2.330869878678037, 48.895911451407514], [2.330885184058988, 48.89589985654139], [2.331094855346294, 48.89592362419788], [2.3312962317624, 48.89594692248756], [2.331505903426793, 48.89597068942337], [2.331707280220527, 48.895993986121645], [2.331916952262097, 48.89601775233676], [2.332118329410156, 48.89604104924211], [2.332328000465104, 48.89606481472897], [2.332529379354549, 48.89608811005045], [2.3327390507866532, 48.896111874816604], [2.332940430030519, 48.89613517034521], [2.332962015444673, 48.89613661347736], [2.33297879794175, 48.89612371446674], [2.33310802000934, 48.89602449981376], [2.333239624175157, 48.89592423977709], [2.333368845250606, 48.89582502482458], [2.333500448409919, 48.895724764483035], [2.333629668493236, 48.895625549231056], [2.333761270646056, 48.8955252885846], [2.333890489737248, 48.895426073033114], [2.3340220908835843, 48.895325812081836], [2.33415130898266, 48.89522659623087], [2.33428290912252, 48.89512633497465], [2.334412126229489, 48.8950271188242], [2.334543723999017, 48.89492685725559], [2.334672941477751, 48.894827640813226], [2.334804538240828, 48.89472737893973], [2.334813040388867, 48.8947115198629], [2.334791292782729, 48.89469473822615], [2.334790974530231, 48.89469466721053], [2.334613321979818, 48.894656290047166], [2.334408615895536, 48.89461334568659], [2.334230963892844, 48.89457496885243], [2.334026257079824, 48.894532023827544], [2.333848605648059, 48.89449364552405], [2.33364390083402, 48.894450699849976], [2.333466249949973, 48.894412321875684], [2.333261544407318, 48.894369375537224], [2.333083894094119, 48.894330996093636], [2.332879190550352, 48.89428804910601], [2.332701540785074, 48.894249669991645], [2.332685163266949, 48.894254105918236], [2.332602709655429, 48.89435991214007], [2.332526394799612, 48.894460181212104], [2.332508502236811, 48.89446841909765], [2.332514458897983, 48.89449126090777], [2.332493642533829, 48.894518611075696], [2.332392261509252, 48.894646703847656], [2.332295130620754, 48.894774322894015], [2.332193748598324, 48.8949024163673], [2.332096615382417, 48.89503003521523], [2.3319952337490513, 48.89515812759892], [2.331898099569379, 48.89528574625604], [2.331796716949674, 48.89541383844177], [2.331699581806326, 48.8955414569081], [2.331694449989108, 48.89554511818514], [2.331569023684111, 48.89559514348807], [2.33145597216987, 48.89564454256712], [2.3313429204411, 48.89569394153718], [2.331217492064372, 48.89574396735677], [2.3312062705221432, 48.89574483638582], [2.331037034507597, 48.89570906942394], [2.330868962374097, 48.895671695341186], [2.3306997268290273, 48.89563592790029], [2.330531655185245, 48.89559855244235], [2.330362420098091, 48.89556278542168], [2.330194348932574, 48.89552540948787], [2.330186713472099, 48.895525201306455], [2.329993377495176, 48.89555538200192], [2.329773008433678, 48.8955913331267], [2.329768002057854, 48.89559149036798], [2.329584899691319, 48.89557482716231], [2.329405022173921, 48.895557819307356], [2.329221920041978, 48.89554115554622], [2.329042042747801, 48.89552414804484], [2.328858942214334, 48.89550748373583], [2.328679063802784, 48.895490474781816], [2.328495963503924, 48.895473809917334], [2.328316085327402, 48.89545680041765], [2.328253248123047, 48.8954651470985], [2.328251669388171, 48.89546826248664], [2.328261973060504, 48.89549952404935], [2.328269407959411, 48.89552183026108], [2.328269088865289, 48.89552319903747], [2.328275321467979, 48.89553953060567], [2.328312112745495, 48.895649903868474], [2.328356133187285, 48.8957794120465], [2.328400359816275, 48.89591209145599], [2.328444380699367, 48.89604159957057], [2.328488609139869, 48.89617427892331], [2.328532630475667, 48.896303786075194], [2.328576857988403, 48.896436466255196], [2.328620879765413, 48.89656597334363], [2.3286651090896893, 48.896698653466906], [2.32870913130792, 48.89682816049191], [2.3287533597159262, 48.89696084054318], [2.328797382375383, 48.89709034750474], [2.328841612594854, 48.89722302749928], [2.328885634331721, 48.897352534389704], [2.328892107209017, 48.89737195011205], [2.328891937821672, 48.89737249864748]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 42, "roussel_fabien": 17.0, "nb_emargement": 1224.0, "nb_procuration": 48.0, "nb_vote_blanc": 17.0, "jadot_yannick": 70.0, "le_pen_marine": 78.0, "nb_exprime": 1195.0, "nb_vote_nul": 13.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1715.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1225, "quartier_bv": "69", "geo_point_2d": [48.896112183600444, 2.331131894855708], "melenchon_jean_luc": 524.0, "poutou_philippe": 8.0, "macron_emmanuel": 339.0}, "geometry": {"type": "Point", "coordinates": [2.331131894855708, 48.896112183600444]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "48f7cc82e3f77601cdfaa2374c6e64d67eb27b35", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 120, "zemmour_eric": 116.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-73", "geo_shape": {"coordinates": [[[2.286079696271588, 48.8355531139989], [2.286073440369205, 48.83554603725372], [2.285907447553758, 48.83547178690283], [2.285756127197493, 48.83540317127399], [2.285604808601794, 48.835334555457635], [2.28543881712732, 48.835260304442315], [2.285420406574485, 48.83526224143192], [2.285304542053098, 48.83536095618285], [2.28518905802638, 48.83545802093786], [2.28507319398178, 48.83555673635485], [2.284957709102863, 48.83565379997021], [2.284841842822565, 48.835752515137685], [2.28472635707911, 48.835849578512686], [2.284715898477211, 48.83585301453695], [2.284510085405811, 48.83585556365513], [2.284299883177404, 48.83585817429537], [2.284094068702981, 48.835860722689546], [2.283883867795249, 48.83586333260685], [2.283678053280124, 48.835865880285205], [2.28346785096846, 48.83586848946327], [2.283262037774955, 48.835871036433964], [2.283051835421679, 48.83587364488093], [2.282846022187394, 48.835876191135824], [2.28263581979262, 48.83587879885169], [2.282430005155358, 48.835881344382535], [2.282219802718995, 48.835883951367364], [2.282013989403388, 48.83588649619057], [2.281803786925448, 48.8358891024443], [2.281597973569196, 48.83589164655169], [2.28138777104959, 48.83589425207426], [2.281340512353181, 48.835937811764204], [2.281345960822534, 48.83594431730061], [2.281527025752458, 48.836020397610035], [2.281663350080702, 48.83607500529577], [2.281695348945436, 48.836085381981455], [2.281695407499209, 48.836085384131884], [2.281732658484938, 48.83610030630922], [2.281888827280876, 48.836162584943814], [2.2820624048965428, 48.83623211429136], [2.282218573119026, 48.83629439247992], [2.282392151625929, 48.83636392044146], [2.282548320637272, 48.836426198192164], [2.282721900010546, 48.836495726566284], [2.282878071172977, 48.83655800388732], [2.28305165007515, 48.836627530867275], [2.2832078220264442, 48.83668980775045], [2.283381403157228, 48.83675933515117], [2.283537574535158, 48.836821611588306], [2.283537814403586, 48.83682170476121], [2.283711396413756, 48.836891231674834], [2.283895813441415, 48.836961414085515], [2.284069396394346, 48.837030940470946], [2.284253815748302, 48.83710112322837], [2.284427398293999, 48.83717064817817], [2.284611818624371, 48.83724083037485], [2.284785403475167, 48.8373103548046], [2.2849698234194022, 48.83738053643243], [2.285160074890904, 48.837441494470966], [2.285161020018636, 48.83744182209479], [2.285332837723082, 48.8374958515403], [2.28552309004011, 48.83755680899518], [2.285694909861242, 48.83761083792318], [2.2856957634782082, 48.83761108315326], [2.285865542059911, 48.83765700528509], [2.286042974564031, 48.8377032696499], [2.286212753751795, 48.83774919128511], [2.286390185515633, 48.837795455122965], [2.286559965309658, 48.837841376261586], [2.286737399057629, 48.83788763958872], [2.286907179457808, 48.83793356023075], [2.2870846138278518, 48.83797982303902], [2.287254394834185, 48.83802574318446], [2.287431828463828, 48.83807200546577], [2.287542132526863, 48.838101838149086], [2.287577026453004, 48.8381185818397], [2.287599385993812, 48.83811467592664], [2.287658864937846, 48.8381307628716], [2.287820060143054, 48.83817143989441], [2.287989842409154, 48.83821735988741], [2.2880406817655983, 48.83823018895071], [2.2880549057313813, 48.838229898572436], [2.288069052172953, 48.83819678064209], [2.288147870252731, 48.83805812850934], [2.288227902184551, 48.837915461538984], [2.2882261194629008, 48.83790702740786], [2.288111160348435, 48.83780334534431], [2.2879959803443928, 48.837699509849095], [2.287881020770836, 48.83759582843631], [2.287765843046051, 48.83749199270834], [2.2876508844002252, 48.83738831015582], [2.28753570759253, 48.83728447418701], [2.287420749849746, 48.837180792293374], [2.28730557395903, 48.8370769560837], [2.287190617144069, 48.83697327305033], [2.287075442170223, 48.8368694365998], [2.28696048625838, 48.83676575422534], [2.286845312201595, 48.83666191753394], [2.286730357217361, 48.836558234019826], [2.286615184077531, 48.83645439708755], [2.28650022999649, 48.836350714232324], [2.2863850577735, 48.836246877059196], [2.286270104620161, 48.83614319306427], [2.286154933314107, 48.83603935565035], [2.286039981063833, 48.83593567231428], [2.285924810687125, 48.8358318337602], [2.285923081506769, 48.83582330276361], [2.285999038698495, 48.835692454721936], [2.28606937464667, 48.835567249919805], [2.286079696271588, 48.8355531139989]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 73, "roussel_fabien": 18.0, "nb_emargement": 1071.0, "nb_procuration": 68.0, "nb_vote_blanc": 12.0, "jadot_yannick": 64.0, "le_pen_marine": 64.0, "nb_exprime": 1056.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1319.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1071, "quartier_bv": "57", "geo_point_2d": [48.8366960813694, 2.2852434700891133], "melenchon_jean_luc": 171.0, "poutou_philippe": 2.0, "macron_emmanuel": 450.0}, "geometry": {"type": "Point", "coordinates": [2.2852434700891133, 48.8366960813694]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8c5f95d000fac1a3e03c0280fa3666a5b2ebe38a", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 49, "zemmour_eric": 64.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-64", "geo_shape": {"coordinates": [[[2.346329094620138, 48.834629364543694], [2.346301497560164, 48.834621742658754], [2.346175555475373, 48.834590160939925], [2.346045259991176, 48.834552129289634], [2.346041940054732, 48.83455092486958], [2.345880230022626, 48.83447111194014], [2.345730636026143, 48.83439823354647], [2.345581043810124, 48.83432535496844], [2.34541933382128, 48.83424554139232], [2.345414246786568, 48.8342404447039], [2.345368111679555, 48.834114001618275], [2.345320816913564, 48.83398705839771], [2.345274682257532, 48.8338606152474], [2.345227387937552, 48.83373367286047], [2.34518125373239, 48.833607229645516], [2.34513395988111, 48.833480286293586], [2.345087826126814, 48.83335384301396], [2.345040534083881, 48.83322690050314], [2.344994399418193, 48.83310045715143], [2.3449471078439412, 48.83297351367563], [2.344900973629112, 48.83284707025925], [2.344853682500935, 48.832720127617094], [2.344807550099193, 48.832593684143546], [2.344760258077454, 48.83246674052894], [2.344714126126551, 48.83234029699074], [2.344666834550876, 48.832213354209806], [2.344620703050806, 48.832086910606954], [2.3445734119438, 48.831959966861035], [2.344527280894556, 48.83183352319358], [2.344479990233599, 48.83170658028132], [2.344463119336381, 48.831688521059334], [2.344448533452676, 48.83168884133389], [2.344426053335805, 48.831684597193295], [2.344362589116117, 48.83152317986825], [2.344311870065704, 48.83136376330976], [2.344293048816444, 48.831357380707594], [2.344121657033379, 48.831407203307265], [2.343930425906906, 48.8314637529627], [2.343759033427555, 48.83151357503795], [2.3435678001439912, 48.831570125000056], [2.343396406968352, 48.83161994655099], [2.343205174274756, 48.83167649503605], [2.343033780402837, 48.83172631606262], [2.342842546925687, 48.831782863962516], [2.342671152357591, 48.83183268446472], [2.342479916734675, 48.831889231771974], [2.342308521470203, 48.83193905174976], [2.342117286414603, 48.83199559937864], [2.341945890453855, 48.83204541883205], [2.341754654626056, 48.83210196497643], [2.341583257969041, 48.832151783905466], [2.341411860984432, 48.83220160258668], [2.341220622642195, 48.83225814786183], [2.341148983354215, 48.83225611639161], [2.341147019575435, 48.83225789712254], [2.3411476584103372, 48.83229584423959], [2.341145049627134, 48.83240696973459], [2.341146835636396, 48.83251313600973], [2.341146929726601, 48.83251409885572], [2.341166379554262, 48.83262262434167], [2.341188817267224, 48.83274708244813], [2.34120826725765, 48.832855608804], [2.341230703808657, 48.83298006686921], [2.341250153973316, 48.8330885931957], [2.3412657758971163, 48.8331752509015], [2.341271258498326, 48.83319115679555], [2.3413309132514852, 48.833190071518665], [2.341511021504818, 48.83324065725879], [2.341689315582606, 48.833291667134475], [2.341869424534746, 48.833342252330326], [2.342047720672977, 48.83339326167462], [2.342227830312575, 48.83344384722553], [2.342406125797984, 48.833494855124144], [2.342586236136388, 48.83354544013073], [2.342764533682334, 48.83359644749794], [2.342944644719544, 48.83364703196026], [2.34312294159007, 48.833698039680364], [2.343303053337414, 48.83374862269908], [2.343481352268277, 48.833799629887814], [2.343661463352146, 48.83385021235476], [2.3438397629812853, 48.83390121900453], [2.344019876114892, 48.83395180183397], [2.344198175091249, 48.83400280703809], [2.344378288923647, 48.83405338932323], [2.3445565899490273, 48.83410439489519], [2.344736704491519, 48.83415497573671], [2.344915004852891, 48.83420598076233], [2.344915884247545, 48.83420625179221], [2.345079340106456, 48.834258831005386], [2.34524675093557, 48.83431544372981], [2.34541020883288, 48.83436802249317], [2.345577620372, 48.83442463474894], [2.345581149124969, 48.83442635026723], [2.345720498568252, 48.83451970451629], [2.345860203109833, 48.834614004872485], [2.345999554928085, 48.83470735788893], [2.346139260466129, 48.834801658802725], [2.346171031396555, 48.83482658851819], [2.346193208400204, 48.8348200346248], [2.346200487117801, 48.834815286169174], [2.346259907649712, 48.834744156060886], [2.346331330910157, 48.83463452655457], [2.346329094620138, 48.834629364543694]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 64, "roussel_fabien": 23.0, "nb_emargement": 1102.0, "nb_procuration": 58.0, "nb_vote_blanc": 6.0, "jadot_yannick": 100.0, "le_pen_marine": 62.0, "nb_exprime": 1091.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1391.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "52", "geo_point_2d": [48.83284917416526, 2.3434321402711342], "melenchon_jean_luc": 347.0, "poutou_philippe": 6.0, "macron_emmanuel": 376.0}, "geometry": {"type": "Point", "coordinates": [2.3434321402711342, 48.83284917416526]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f18526ce366c07c5bd62491991f51cae561af988", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 95, "zemmour_eric": 130.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-35", "geo_shape": {"coordinates": [[[2.32420249910148, 48.84317461911384], [2.324196558126205, 48.8431730512364], [2.324157878717393, 48.84314161307746], [2.324025877685116, 48.84303567216809], [2.323895726942034, 48.8429298845563], [2.32376372697897, 48.8428239433376], [2.323633577308379, 48.84271815452121], [2.323501578414317, 48.84261221299312], [2.323371429792969, 48.842506424770804], [2.323239431967999, 48.84240048293338], [2.323109283044966, 48.842294694398056], [2.322977286300762, 48.84218875135199], [2.322847139801008, 48.84208296251913], [2.322715144114195, 48.841977020063005], [2.3225849986751212, 48.84187123092487], [2.322453004057471, 48.84176528815947], [2.322322859690859, 48.841659497816764], [2.32219086614216, 48.84155355474202], [2.322060721462257, 48.84144776498567], [2.321928728982602, 48.84134182160157], [2.321798586725913, 48.8412360315477], [2.321668445009129, 48.84113024044296], [2.321536454130945, 48.841024296595904], [2.321498887053822, 48.84099536674488], [2.321463630534895, 48.84099922021241], [2.321441584110425, 48.841055161677154], [2.321325886482977, 48.84115193732132], [2.321183534654827, 48.84125864170008], [2.32106783747073, 48.84135541618548], [2.320925483196183, 48.84146212023], [2.320809785069546, 48.8415588953475], [2.320667429710842, 48.841665599065465], [2.320551730653371, 48.84176237391575], [2.320409375573174, 48.841869077314904], [2.320293674234116, 48.8419658509909], [2.320277437613291, 48.84196849640504], [2.320093427029126, 48.84191443037822], [2.319912988027232, 48.84186318679343], [2.319728976818816, 48.84180912109245], [2.319548538539824, 48.84175787695313], [2.31936452944373, 48.84170381069425], [2.319184090525177, 48.84165256599261], [2.319000082190587, 48.84159849826873], [2.31881964534566, 48.841547253919636], [2.318635636398572, 48.84149318562229], [2.318455200276551, 48.84144194071865], [2.318440885311885, 48.84144340876933], [2.3182958628212083, 48.8415264771396], [2.318164510562918, 48.841598691447864], [2.318019487199693, 48.84168175947152], [2.317888134155368, 48.84175397436558], [2.317756780758823, 48.84182618821143], [2.317611756112758, 48.84190925572387], [2.317607148715836, 48.84191502585778], [2.31758727585698, 48.842029706709745], [2.31756395511448, 48.842153688908915], [2.317544082069583, 48.842268369729176], [2.317520761129319, 48.84239235099411], [2.317518452321624, 48.84239635259191], [2.317418117955481, 48.84248992396434], [2.317316926761229, 48.84258667501154], [2.317216590304399, 48.84268024619117], [2.317115398378307, 48.84277699615211], [2.317015062543984, 48.842870568053854], [2.316913869874166, 48.84296731782782], [2.316845280539289, 48.84303289462274], [2.316744943727367, 48.84312646627646], [2.316712338535782, 48.84315763912378], [2.316691580236126, 48.843159250036265], [2.316701571216206, 48.84318165993153], [2.316801564733689, 48.84329203454986], [2.3168958121355, 48.8433958972332], [2.316995806463485, 48.843506272567296], [2.317090056002318, 48.843610135085434], [2.317190051164594, 48.84372050933667], [2.317284300115426, 48.843824371674046], [2.31738429608833, 48.843934746641], [2.317478545825461, 48.84403860790613], [2.317578542620684, 48.84414898268955], [2.317672793120566, 48.84425284468093], [2.31767888343677, 48.84425642651068], [2.317867359891906, 48.84431255773021], [2.318057213501626, 48.844369274789216], [2.31824568940979, 48.84442540539925], [2.31843554385397, 48.8444821209528], [2.318624020577792, 48.84453825096114], [2.318813875833004, 48.844594966807875], [2.318821864866792, 48.84460268297314], [2.318826999950593, 48.8446665346813], [2.318831721079408, 48.84472984441011], [2.318839892937151, 48.844737648852345], [2.318997393504383, 48.84478289854796], [2.319158382141544, 48.84482891885256], [2.319315883249275, 48.844874169024465], [2.319476872449601, 48.8449201888967], [2.319634374121423, 48.84496543774631], [2.31979536388491, 48.84501145718623], [2.319952866097339, 48.84505670651214], [2.320113856424088, 48.845102725519666], [2.320154407874964, 48.84515572882084], [2.320170473725115, 48.84515329830211], [2.320244862210604, 48.84512701529776], [2.32032396477212, 48.84510046223917], [2.320342844469031, 48.84509823834866], [2.32036224596914, 48.84508912469753], [2.320454411942659, 48.84505818582099], [2.320631570060855, 48.844998758353164], [2.320802839153037, 48.84494126589535], [2.320979996488308, 48.84488183700609], [2.32115126344934, 48.84482434403571], [2.321328419989857, 48.84476491462423], [2.32149968754484, 48.84470742115676], [2.321676843278895, 48.84464799212241], [2.321848110076982, 48.84459049725086], [2.3220252650161832, 48.844531067694355], [2.322196529671524, 48.84447357320952], [2.322373683827669, 48.84441414223156], [2.322544949076844, 48.84435664724966], [2.32272210243833, 48.8442972157495], [2.322893365556364, 48.84423972025507], [2.323070518111406, 48.844180289132055], [2.32324178183505, 48.84412279224126], [2.323418933595333, 48.844063360596074], [2.323590196538689, 48.84400586409976], [2.323767347515783, 48.843946431033146], [2.323911859759257, 48.843897914103344], [2.323938608328103, 48.84388893402431], [2.323962774471304, 48.84390329583252], [2.323963900425999, 48.84387910120582], [2.324135162162654, 48.84382160391984], [2.324318742392551, 48.84376129889798], [2.324490001988217, 48.843703801090264], [2.324673581380932, 48.84364349641682], [2.324713524963893, 48.84361706743699], [2.324665737794959, 48.84356866370199], [2.324559596378514, 48.84347777817761], [2.324429443448187, 48.84337199118838], [2.324323301493479, 48.84328110453134], [2.324231827626503, 48.84320675540528], [2.32420249910148, 48.84317461911384]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 35, "roussel_fabien": 18.0, "nb_emargement": 1292.0, "nb_procuration": 76.0, "nb_vote_blanc": 14.0, "jadot_yannick": 106.0, "le_pen_marine": 65.0, "nb_exprime": 1274.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1665.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1292, "quartier_bv": "58", "geo_point_2d": [48.84317262832417, 2.3204676310758625], "melenchon_jean_luc": 254.0, "poutou_philippe": 6.0, "macron_emmanuel": 543.0}, "geometry": {"type": "Point", "coordinates": [2.3204676310758625, 48.84317262832417]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3a5e1faa730dbefbb3e5bf3e7393aab29a401d86", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 92, "zemmour_eric": 80.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 23.0, "date_tour": "2022-04-10", "id_bvote": "15-38", "geo_shape": {"coordinates": [[[2.3111367084837102, 48.83815186624728], [2.311147008610135, 48.8381512501374], [2.311201594001254, 48.838131867369285], [2.311250573615505, 48.838113251838436], [2.311267436968074, 48.83811498488978], [2.31140124363192, 48.83821181785594], [2.311534746542827, 48.838308166850695], [2.3116685528250303, 48.83840500039257], [2.311802056736717, 48.83850134817303], [2.311935865373721, 48.838598181407015], [2.312069368912032, 48.838694528864636], [2.312203178541566, 48.83879136178289], [2.312336684419216, 48.83888770983264], [2.3123479521390102, 48.83889059682865], [2.312532403167154, 48.83887969992343], [2.312719449114463, 48.83887059839464], [2.312903900006025, 48.83885970001707], [2.313090945804738, 48.83885059880655], [2.313275396547949, 48.83883969985595], [2.313462442210021, 48.83883059806437], [2.313646892804771, 48.838819698540725], [2.313833938342034, 48.83881059526881], [2.314018388776476, 48.838799696071455], [2.314205434177075, 48.838790592218494], [2.314389884474877, 48.838779691548815], [2.314576929726973, 48.83877058801413], [2.3145914689799563, 48.83877854080443], [2.3146169436785993, 48.838926455813336], [2.314641900465005, 48.839070975409456], [2.314667375449689, 48.839218890368954], [2.31469233115354, 48.83936340990889], [2.314717807786677, 48.83951132482672], [2.314742763770375, 48.8396558443183], [2.314742857395898, 48.83965628824331], [2.314772059443553, 48.83977155309661], [2.314802097805889, 48.83989182230871], [2.3148313001282332, 48.84000708622392], [2.314861337388755, 48.84012735628732], [2.314890539974168, 48.840242620163785], [2.314920578869455, 48.84036289019472], [2.314939342241684, 48.84037479465951], [2.314948586821346, 48.840374488753746], [2.315078809227661, 48.84026694784631], [2.315204879244645, 48.84016305873593], [2.315335100582106, 48.840055518428464], [2.315461168214333, 48.83995162902052], [2.3155913898690033, 48.83984408752219], [2.315717456467204, 48.83974019872377], [2.315847675702439, 48.83963265691835], [2.315973742652753, 48.839528766938635], [2.316103960830978, 48.83942122483386], [2.316230026747188, 48.83931733546373], [2.3162305602301663, 48.83931686274727], [2.316350968087469, 48.839202833795255], [2.316474773266576, 48.839085804945455], [2.316595180055858, 48.83897177572405], [2.316718984137729, 48.838854746597356], [2.316839389870788, 48.838740716207234], [2.316963192843852, 48.83862368770287], [2.317083597508907, 48.8385096570434], [2.317207399384866, 48.838392628262085], [2.317295500753363, 48.83837573102647], [2.317294789116475, 48.83836671438582], [2.317170905852902, 48.838266062160706], [2.317047899557903, 48.838164233031144], [2.31692401861469, 48.83806358053992], [2.316801013279737, 48.83796175113802], [2.3166771319322272, 48.83786109836511], [2.316554127557519, 48.83775926869089], [2.316430247167875, 48.83765861564404], [2.316307245115559, 48.837556785705345], [2.316183365695774, 48.837456131485276], [2.316060363229421, 48.83735430216576], [2.315936484767592, 48.837253647671794], [2.315813483273156, 48.837151817180626], [2.315689607119815, 48.83705116331988], [2.315566606585484, 48.83694933255644], [2.315442730027728, 48.83684867841399], [2.315319730453494, 48.836746847378244], [2.315195856215899, 48.8366461929697], [2.315072857601853, 48.83654436166169], [2.314948982959836, 48.836443706971465], [2.314825985305871, 48.83634187539111], [2.314780849967387, 48.83630519949966], [2.3147685008249432, 48.83629693098711], [2.314721387374719, 48.836317249480935], [2.314548792477516, 48.836367482419924], [2.314376595713306, 48.83641756269983], [2.314203998789353, 48.836467795128996], [2.314031802736666, 48.83651787401659], [2.313859205148195, 48.83656810594373], [2.3136870070706452, 48.83661818432265], [2.313514410180095, 48.836668415755604], [2.313342211439816, 48.836718493633626], [2.31316961252262, 48.83676872455679], [2.312997413107861, 48.83681880283324], [2.312993466333099, 48.83682054832808], [2.312857085125253, 48.836907070469856], [2.31272434508068, 48.836990710204475], [2.312591603247774, 48.83707434977766], [2.312455220708824, 48.837160871441654], [2.312451083137093, 48.83716809208969], [2.312463927234861, 48.83727134441487], [2.312476687140436, 48.837378194626346], [2.312489532691189, 48.837481447836545], [2.312502292700685, 48.837588298025224], [2.312488613926082, 48.83759799825864], [2.312359677813715, 48.837597395610885], [2.312255301559406, 48.837597373828444], [2.312253286582398, 48.8375972651111], [2.3120412481356363, 48.83757542051938], [2.31183598029111, 48.83755415952119], [2.311630712625916, 48.83753289727105], [2.311418674701917, 48.837511051574495], [2.311407074009027, 48.83751349133878], [2.311279715830218, 48.83759527265028], [2.3111545331337853, 48.83767591515659], [2.311145639497134, 48.83767846311998], [2.310990543927114, 48.837683144140236], [2.310801035259623, 48.83768683164098], [2.31078943600952, 48.837700079088066], [2.310854132739398, 48.83777954697186], [2.310909673879177, 48.83785593389064], [2.31090723035396, 48.83787041136712], [2.310929268593706, 48.837881183270554], [2.310948640536464, 48.837907826286546], [2.311039976234658, 48.83803606115707], [2.311114891396177, 48.838139090963445], [2.3111367084837102, 48.83815186624728]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 38, "roussel_fabien": 17.0, "nb_emargement": 1138.0, "nb_procuration": 53.0, "nb_vote_blanc": 13.0, "jadot_yannick": 51.0, "le_pen_marine": 77.0, "nb_exprime": 1117.0, "nb_vote_nul": 8.0, "arr_bv": "15", "arthaud_nathalie": 5, "nb_inscrit": 1487.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1138, "quartier_bv": "58", "geo_point_2d": [48.83807344217925, 2.3143577452027615], "melenchon_jean_luc": 366.0, "poutou_philippe": 5.0, "macron_emmanuel": 346.0}, "geometry": {"type": "Point", "coordinates": [2.3143577452027615, 48.83807344217925]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8c3156788aa070ab24bb99e69bfe473990baf3cb", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 89, "zemmour_eric": 102.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "12-17", "geo_shape": {"coordinates": [[[2.402237766441933, 48.844953937936474], [2.4021760872267253, 48.84497058799366], [2.40197902523898, 48.844988386145566], [2.401786539682632, 48.84500491987856], [2.401589477421617, 48.84502271828756], [2.401396992977457, 48.84503925140011], [2.401199930463929, 48.84505704826763], [2.401007445759067, 48.845073581652244], [2.400814959579852, 48.84509011382078], [2.40061789667536, 48.84510790972877], [2.400425411597911, 48.845124442176164], [2.400228348430604, 48.84514223744196], [2.400035863113256, 48.84515876836281], [2.399838799683045, 48.84517656298642], [2.399646312742432, 48.84519309417245], [2.399449249049524, 48.845210888153844], [2.399256763221045, 48.84522741871945], [2.39905969926535, 48.84524521205863], [2.398867213197018, 48.8452617410977], [2.398670148978447, 48.84527953379465], [2.398477661286853, 48.84529606309893], [2.398280596805613, 48.84531385515367], [2.398221371333313, 48.84531894080301], [2.398208572176943, 48.84532342266635], [2.398211685142209, 48.84536796634596], [2.398131869524438, 48.84547989440336], [2.3980433534622962, 48.84560583195709], [2.397963537129102, 48.845717758979006], [2.397875021618672, 48.84584369638817], [2.397795203186782, 48.84595562416635], [2.397706686865574, 48.846081561424086], [2.39762686908084, 48.846193488173654], [2.397538350586246, 48.84631942527311], [2.397458532075675, 48.84643135188646], [2.397370014122484, 48.84655728974067], [2.397290194885969, 48.846669216217826], [2.397201674769859, 48.84679515301441], [2.397121854807492, 48.846907079355375], [2.397033335232667, 48.847033016906686], [2.396953513181919, 48.847144943104574], [2.396873692150926, 48.84725686924481], [2.396785171392669, 48.847382805673696], [2.396790249138239, 48.84739419192238], [2.396963305532449, 48.84746641641674], [2.3971320908583422, 48.84753801026889], [2.397305146841251, 48.84761023425258], [2.397473933102453, 48.84768182761325], [2.397479876042474, 48.84768746411718], [2.39749938635115, 48.84774610493762], [2.397523566107599, 48.84781269077731], [2.397539092050926, 48.84781946195411], [2.397721589557497, 48.84779907329468], [2.39789753748668, 48.84777953815934], [2.398080034713203, 48.84775914895242], [2.398255982373223, 48.84773961328928], [2.398431931263968, 48.847720077373864], [2.398614428073082, 48.84769968735073], [2.39879037533212, 48.84768015090062], [2.398972871861169, 48.84765976033001], [2.399036454241378, 48.84763702208292], [2.399030217817046, 48.847624207336125], [2.399010376011133, 48.84751901542417], [2.398981667075645, 48.84738643048668], [2.398985369114751, 48.847378900802454], [2.399124216289044, 48.84728430082935], [2.399262554292277, 48.84719020716759], [2.399401401812939, 48.8470956077629], [2.399539738814926, 48.84700151376469], [2.399678583977451, 48.8469069131162], [2.399816919977996, 48.84681281878158], [2.399955765497261, 48.8467182178022], [2.40009410048622, 48.84662412403047], [2.400232943637008, 48.846529522706575], [2.400371277634894, 48.846435427699085], [2.400510121142426, 48.84634082604435], [2.40064845412875, 48.846246731599784], [2.400787295267832, 48.84615212960051], [2.400925627263191, 48.8460580339202], [2.40106446875892, 48.84596343159009], [2.401202799752974, 48.84586933557339], [2.401341638870044, 48.84577473379806], [2.401479970225287, 48.845680637451764], [2.401618808346861, 48.845586034439485], [2.401757137338331, 48.845491937749976], [2.401895974443764, 48.84539733529936], [2.402034303796428, 48.84530323828025], [2.40217313990637, 48.845208634592666], [2.402311466895287, 48.84511453723039], [2.402333739833379, 48.84510412603814], [2.402308492569278, 48.845086234927685], [2.402289584293044, 48.845046953721656], [2.402266044683617, 48.8449822317708], [2.402237766441933, 48.844953937936474]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 17, "roussel_fabien": 23.0, "nb_emargement": 1120.0, "nb_procuration": 65.0, "nb_vote_blanc": 13.0, "jadot_yannick": 91.0, "le_pen_marine": 61.0, "nb_exprime": 1106.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1335.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1120, "quartier_bv": "46", "geo_point_2d": [48.846272663688, 2.3991778498390857], "melenchon_jean_luc": 261.0, "poutou_philippe": 7.0, "macron_emmanuel": 424.0}, "geometry": {"type": "Point", "coordinates": [2.3991778498390857, 48.846272663688]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "88e5f4da670d7ecc6e9ecd50d9f39c26eef387f0", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 75, "zemmour_eric": 74.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-2", "geo_shape": {"coordinates": [[[2.3810970876223, 48.861092703068394], [2.381133319082747, 48.861075689567976], [2.381239191664863, 48.86096945959753], [2.3813468442330112, 48.86086217210399], [2.381452715945871, 48.860755941924175], [2.381560368996008, 48.86064865422496], [2.3816662398290482, 48.86054242473509], [2.381773892008978, 48.860435135923844], [2.38187976197278, 48.86032890622464], [2.381987413271835, 48.860221617200665], [2.38209328236641, 48.860115387292076], [2.382200932784598, 48.86000809805538], [2.382306801009954, 48.859901867937474], [2.382414449173676, 48.859794579380285], [2.382520316540487, 48.85968834815375], [2.382627965186317, 48.85958105939088], [2.382659760483005, 48.859549155438394], [2.382664689821651, 48.859540007538186], [2.382618304099711, 48.859517230628676], [2.382452160051269, 48.85947072255769], [2.38228693397998, 48.85942418211786], [2.382120790524052, 48.859377673583], [2.381955565054613, 48.85933113178242], [2.381789422191102, 48.859284622783605], [2.381624197302081, 48.85923808142096], [2.381458055031089, 48.859191571958114], [2.381292830743834, 48.859145029234774], [2.381126689065468, 48.85909851930803], [2.380961465358523, 48.859051977022546], [2.380956955198513, 48.859049913973564], [2.380844903052866, 48.85897243384522], [2.380730477056832, 48.85889436843648], [2.380725208354238, 48.858892138671195], [2.380529333039727, 48.85884700740974], [2.380326387877541, 48.85879984536261], [2.380130513255363, 48.858754713444604], [2.379927570176603, 48.85870755072426], [2.379731696246864, 48.85866241814974], [2.37952875388861, 48.85861525474913], [2.379510950180904, 48.85862170248747], [2.379468431161544, 48.85874250713698], [2.37942716822268, 48.8588605986482], [2.3793846488140042, 48.85898140324197], [2.379343384122402, 48.8590994955911], [2.379336141450877, 48.85910553671095], [2.379158696205096, 48.85916340654189], [2.378977286314767, 48.859222703482196], [2.378799840271467, 48.85928057277493], [2.378618428201838, 48.8593398691579], [2.378440981360918, 48.859397737912396], [2.378259569837759, 48.85945703375216], [2.378082122199224, 48.859514901968474], [2.377900708496862, 48.85957419725087], [2.37772326006071, 48.859632064928945], [2.3775418455312423, 48.859691360560404], [2.37736439630812, 48.85974922680092], [2.377182982325233, 48.859808521889185], [2.377173344476279, 48.859828132337746], [2.377187278483515, 48.85983988196894], [2.377229727108701, 48.85985285381314], [2.377397992269059, 48.85990613066428], [2.377563554258773, 48.85995672395528], [2.377731820095847, 48.86001000033203], [2.377897382739795, 48.860060593156454], [2.378065649253786, 48.86011386905883], [2.378231213914924, 48.86016446142378], [2.378399479753498, 48.86021773594539], [2.378565045068763, 48.860268327843734], [2.378633764108034, 48.86029008550477], [2.3786347070882172, 48.860306219267635], [2.378665173614121, 48.860323803177515], [2.378764721152201, 48.86035532133524], [2.378938284095784, 48.86041094739071], [2.379106551453412, 48.86046422090634], [2.379280115124835, 48.86051984646051], [2.379448384535955, 48.860573120396644], [2.379621947572146, 48.86062874544258], [2.379790217684509, 48.860682018892824], [2.379963782811306, 48.86073764344461], [2.380158806587075, 48.86079865354647], [2.380332372496048, 48.86085427755783], [2.380527397129336, 48.8609152879519], [2.380700962457403, 48.86097091141577], [2.380895989321891, 48.861031921209836], [2.381069555432026, 48.8610875441333], [2.3810970876223, 48.861092703068394]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 2, "roussel_fabien": 25.0, "nb_emargement": 1333.0, "nb_procuration": 99.0, "nb_vote_blanc": 21.0, "jadot_yannick": 146.0, "le_pen_marine": 50.0, "nb_exprime": 1308.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1622.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1334, "quartier_bv": "43", "geo_point_2d": [48.859841456342636, 2.3801851089935395], "melenchon_jean_luc": 387.0, "poutou_philippe": 8.0, "macron_emmanuel": 466.0}, "geometry": {"type": "Point", "coordinates": [2.3801851089935395, 48.859841456342636]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c3659ea19015295a4a89252497ad1c2f80e190f9", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 105, "zemmour_eric": 120.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "15-10", "geo_shape": {"coordinates": [[[2.28151721178006, 48.84938027535259], [2.281492877134025, 48.84941298747854], [2.28134505648082, 48.84950488704457], [2.281200364079034, 48.84959472049211], [2.281052541031806, 48.849686619673506], [2.280907847621273, 48.84977645275261], [2.280760024892841, 48.84986835246511], [2.280615330473453, 48.84995818517581], [2.280467505363486, 48.85005008360443], [2.280322809935234, 48.85013991594671], [2.280174983793788, 48.850231813998896], [2.280030287344241, 48.85032164687203], [2.279975405022352, 48.85036567320603], [2.280027900720452, 48.85040364095608], [2.280162524535505, 48.8504988238634], [2.28029691913601, 48.85059494956061], [2.280431543924249, 48.85069013304814], [2.2805659395144913, 48.85078625842665], [2.28070056530066, 48.850881440695865], [2.280834961880541, 48.850977565755684], [2.280969588652331, 48.85107274770583], [2.281103986221858, 48.85116887244695], [2.281238613966971, 48.85126405497731], [2.281373013901173, 48.851360178508614], [2.281507641269209, 48.851455360711725], [2.281642042180677, 48.85155148482361], [2.281776670546753, 48.85164666580833], [2.281911072447998, 48.85174278960149], [2.282045703149954, 48.85183797117463], [2.282180104690548, 48.851934093741576], [2.282205446194003, 48.851952009965814], [2.2822064685964962, 48.8519523848377], [2.282271228362019, 48.85191192340723], [2.282421646734009, 48.851812964063235], [2.282572405986286, 48.85171345525979], [2.282722823225708, 48.851614494620215], [2.282873581316289, 48.851514986318875], [2.283023997410869, 48.851416025283], [2.28317475436452, 48.85131651568516], [2.2833251693018948, 48.851217555152296], [2.283475925106247, 48.851118045157236], [2.283626338911268, 48.851019083328865], [2.283777093553966, 48.85091957383587], [2.28392750621407, 48.85082061161123], [2.284078258357149, 48.85072110081357], [2.2840881079750748, 48.85071846705775], [2.284263354139684, 48.850720262890334], [2.284437552229355, 48.85072196675861], [2.284612797055073, 48.850723762071226], [2.284786995180106, 48.85072546453143], [2.284962241392424, 48.85072725934039], [2.285136439528225, 48.85072896219113], [2.285311685764237, 48.85073075648826], [2.285485883935577, 48.85073245793095], [2.285494609690761, 48.85073048287648], [2.285598324616309, 48.85067561422638], [2.285692884557774, 48.850624293675224], [2.285697494093721, 48.850619676886495], [2.285748468696855, 48.8504982066055], [2.285798874763029, 48.85037683722327], [2.285849848892304, 48.85025536687256], [2.285900253137209, 48.85013399651372], [2.2859512267925313, 48.8500125260933], [2.286001631916793, 48.849891156572724], [2.286052605098268, 48.8497696860826], [2.286103009763851, 48.84964831559352], [2.286109526619709, 48.849642834186376], [2.286282626568837, 48.84957928632747], [2.286455447040911, 48.84951591462414], [2.28662854614672, 48.849452366257516], [2.2868013657772233, 48.84938899404737], [2.286974462676949, 48.849325445164915], [2.287147282828544, 48.849262072456], [2.287320378872554, 48.84919852396509], [2.287493198182474, 48.84913515074936], [2.287505252038239, 48.8491278477514], [2.287502939468161, 48.84911698315825], [2.28740602284826, 48.849003940542104], [2.287308165668632, 48.84889015115495], [2.287211249893083, 48.84877710835798], [2.287113392202146, 48.848663318780204], [2.287016477258538, 48.848550276701715], [2.286918621781471, 48.848436486949595], [2.286821707694599, 48.84832344379103], [2.286723853068645, 48.84820965385643], [2.286626938451155, 48.84809661140824], [2.286529084676508, 48.84798282129117], [2.286432172278274, 48.84786977777102], [2.28633431935472, 48.84775598747148], [2.286341683373427, 48.84774305626261], [2.286396320283543, 48.84773048527084], [2.28643803653024, 48.84772095798868], [2.28645648650562, 48.84771347469043], [2.286455567398882, 48.84770217588481], [2.286375847001249, 48.84762141589537], [2.286300344220167, 48.8475456455], [2.286220624290209, 48.84746488629504], [2.28614512196159, 48.84738911579109], [2.286144307607778, 48.847388180988546], [2.286044213546931, 48.84725546786745], [2.285942899518606, 48.84712102777589], [2.285842806483664, 48.846988314454485], [2.28574149349437, 48.84685387416013], [2.285688528485501, 48.84681371874025], [2.285679836993303, 48.846816523231524], [2.285633238274301, 48.84684487899793], [2.285485432194442, 48.846936784790365], [2.285334663931935, 48.847028530601186], [2.28518685545429, 48.84712043510215], [2.285036086134845, 48.84721218052164], [2.284888277972494, 48.84730408464672], [2.284737507596005, 48.8473958296748], [2.284589697011273, 48.847487734307], [2.28443892559028, 48.84757947804445], [2.284291115320627, 48.84767138230076], [2.284140341467708, 48.84776312653792], [2.2840920350289178, 48.84779316227815], [2.284071881654429, 48.84780151190119], [2.284060997759063, 48.84783513158693], [2.283961492763776, 48.847896999690775], [2.2838086034941583, 48.84798977949752], [2.283660790961532, 48.84808168204197], [2.2835079006146453, 48.84817446144905], [2.283360087028003, 48.84826636360679], [2.28320719560394, 48.84835914261421], [2.283059379588061, 48.84845104527629], [2.282906488461829, 48.84854382299294], [2.282758671391909, 48.84863572526823], [2.282605777813472, 48.84872850347635], [2.2824579610644298, 48.84882040447384], [2.282305066408795, 48.848913182282274], [2.282157248605507, 48.849005082893], [2.28200435287267, 48.84909786030176], [2.281856534002938, 48.84918976142499], [2.2817036372052852, 48.84928253753478], [2.281555815918725, 48.849374438263055], [2.28151721178006, 48.84938027535259]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 10, "roussel_fabien": 15.0, "nb_emargement": 1252.0, "nb_procuration": 46.0, "nb_vote_blanc": 10.0, "jadot_yannick": 72.0, "le_pen_marine": 70.0, "nb_exprime": 1241.0, "nb_vote_nul": 3.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1651.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1254, "quartier_bv": "59", "geo_point_2d": [48.8495021152391, 2.2838992934668774], "melenchon_jean_luc": 236.0, "poutou_philippe": 5.0, "macron_emmanuel": 560.0}, "geometry": {"type": "Point", "coordinates": [2.2838992934668774, 48.8495021152391]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "db6c8f2c85ee1acb648543a55c840ba06820362e", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 53, "zemmour_eric": 70.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "12-23", "geo_shape": {"coordinates": [[[2.40219892928073, 48.83710969438446], [2.402159877521826, 48.83708553749635], [2.402151463707539, 48.837035608707836], [2.402127946566972, 48.836921508656935], [2.402112266963424, 48.83682847486381], [2.40211029844925, 48.836824897252654], [2.4020036143128802, 48.836712984173616], [2.401899903341023, 48.83660297541388], [2.401793220100251, 48.83649106302429], [2.401689510013961, 48.83638105406025], [2.401582827689416, 48.83626914056152], [2.401479118488687, 48.836159131393266], [2.401375408363371, 48.83604912211745], [2.4012687273822, 48.835937209204666], [2.401165019504762, 48.83582719973145], [2.401058339439802, 48.83571528570952], [2.4009546324479, 48.83560527603205], [2.400847953288812, 48.83549336180027], [2.400744247182435, 48.83538335191859], [2.400637568918869, 48.83527143837627], [2.400533862335697, 48.835161428283534], [2.400427184988326, 48.83504951363207], [2.4004094844231982, 48.83504188193516], [2.400389980052604, 48.835045387013935], [2.400295165441927, 48.835148385317176], [2.400180468998718, 48.83527640307514], [2.400085653553865, 48.83537940119106], [2.399970956087802, 48.835507418721676], [2.399876139808663, 48.83561041665022], [2.399761441319736, 48.83573843395351], [2.399666624206502, 48.83584143169471], [2.3996691785125153, 48.835852801678804], [2.399836647043602, 48.83595180401869], [2.39998957721309, 48.83604733898704], [2.399992166100552, 48.83604955721276], [2.400078611245763, 48.836153107322815], [2.400170350862898, 48.836263890507425], [2.400168638967338, 48.83627413556323], [2.4000442143424072, 48.8363677612087], [2.399917701594063, 48.83646178365494], [2.399793276070492, 48.83655540902372], [2.399666761051628, 48.83664943118193], [2.399542334619047, 48.836743057173244], [2.399415820054551, 48.83683707905712], [2.399291392733672, 48.8369307038724], [2.399164877260989, 48.83702472547507], [2.39904044903108, 48.83711835091291], [2.398913932650403, 48.837212372234355], [2.398789503532191, 48.83730599649613], [2.398662986243314, 48.83740001753641], [2.398538556216049, 48.83749364242072], [2.398412038019063, 48.837587663179804], [2.398413101828967, 48.83760031536332], [2.398584107225048, 48.837702079229246], [2.39874590337881, 48.8377976889799], [2.398916911434437, 48.83789945235889], [2.399078708821677, 48.8379950607432], [2.399085091392448, 48.83803102591445], [2.3991040445991683, 48.83803832591536], [2.39918448417827, 48.83808585923626], [2.399321759801781, 48.83813112283726], [2.399403119923167, 48.83817919934582], [2.3994266177034023, 48.8382012167842], [2.399431500496567, 48.83820135282033], [2.3996010928049962, 48.83814072740202], [2.399769241255926, 48.83808086704866], [2.399938832779512, 48.838020241144996], [2.4001069804538933, 48.83796038031044], [2.400276571192634, 48.83789975392141], [2.400444718090465, 48.837839892605636], [2.40061430804436, 48.837779265731214], [2.40078245416564, 48.83771940393426], [2.400952043334689, 48.83765877657451], [2.401120188669085, 48.83759891519563], [2.401289777063618, 48.83753828645125], [2.401457921621468, 48.83747842459118], [2.401627509231148, 48.83741779536142], [2.401795653012451, 48.83735793302016], [2.401965239837275, 48.837297303305064], [2.40213338284203, 48.8372374404826], [2.402213554776711, 48.837226829381365], [2.40221596821389, 48.83721763017379], [2.402201610015305, 48.83717257950795], [2.402194345421409, 48.8371294745363], [2.40219892928073, 48.83710969438446]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 23, "roussel_fabien": 16.0, "nb_emargement": 990.0, "nb_procuration": 45.0, "nb_vote_blanc": 11.0, "jadot_yannick": 86.0, "le_pen_marine": 49.0, "nb_exprime": 976.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1331.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 991, "quartier_bv": "46", "geo_point_2d": [48.836857011096626, 2.400412880741546], "melenchon_jean_luc": 300.0, "poutou_philippe": 5.0, "macron_emmanuel": 356.0}, "geometry": {"type": "Point", "coordinates": [2.400412880741546, 48.836857011096626]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a161a656bec6a3c51308c2916a7514419195c228", "fields": {"lassalle_jean": 23.0, "pecresse_valerie": 47, "zemmour_eric": 63.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-9", "geo_shape": {"coordinates": [[[2.377025171339645, 48.85328518670084], [2.377022500990891, 48.85328340826991], [2.376821822734876, 48.8532879590381], [2.3766271201485862, 48.85329231126738], [2.376426443186538, 48.85329686137948], [2.376231740533864, 48.85330121296539], [2.376031062140232, 48.853305762407274], [2.3758363594212852, 48.85331011334975], [2.375635680958859, 48.85331466212852], [2.375440978173748, 48.85331901242762], [2.375436333297719, 48.85331858347439], [2.37534774304038, 48.85330096768819], [2.375250426884969, 48.85328025657386], [2.375247735251095, 48.853279462782034], [2.375177261457053, 48.85325229231381], [2.37508981250686, 48.85321725555452], [2.375073285824369, 48.85321846610564], [2.374927510321241, 48.853311117633865], [2.374783883398731, 48.85340207413613], [2.374638105504586, 48.85349472528932], [2.374494477560129, 48.853585682328486], [2.374348700000522, 48.85367833312095], [2.374205071044697, 48.85376928979768], [2.374059291094047, 48.85386194021517], [2.373915661137752, 48.85395289563017], [2.373769881521639, 48.85404554568685], [2.373626250543262, 48.85413650163875], [2.373482619074367, 48.85422745651153], [2.373336836557333, 48.8543201060106], [2.373336697823902, 48.85432019611849], [2.373220538571671, 48.85439615576495], [2.373053048969074, 48.85450678704299], [2.37293688888739, 48.8545827464014], [2.372769399445602, 48.85469337727095], [2.372653238534462, 48.85476933634124], [2.372655532900104, 48.854783319784325], [2.372844040280255, 48.854862198913914], [2.373018407367606, 48.85493481251725], [2.373037568712343, 48.854945980325354], [2.373043782365341, 48.85494550564866], [2.373218149999003, 48.85501811985479], [2.373388507507068, 48.8550894564073], [2.373562876113659, 48.855162069202414], [2.373733235927035, 48.85523340526208], [2.3739076054958392, 48.855306017545395], [2.374077966241003, 48.855377354004304], [2.37425233677182, 48.855449965775925], [2.3744226984704833, 48.85552130083551], [2.374423208480887, 48.85552150405685], [2.374587558465465, 48.85558435805288], [2.374754898452456, 48.8556478300053], [2.374919249235496, 48.85571068353864], [2.3750865900430203, 48.8557741541207], [2.375250941624722, 48.85583700719132], [2.375418283231205, 48.855900478201605], [2.375582635611369, 48.85596333080949], [2.375749978038373, 48.856026800449435], [2.375750305068415, 48.85602691997029], [2.375909912227379, 48.856083429432644], [2.376080937115031, 48.856144244038944], [2.376240545002726, 48.85620075215507], [2.376411570661365, 48.85626156628242], [2.376571179266912, 48.85631807395155], [2.376742205696639, 48.85637888759991], [2.376748717831545, 48.85637614522759], [2.376742186965512, 48.85633932153748], [2.376646457264358, 48.85626215427259], [2.376541487865791, 48.856176850036526], [2.376412170746818, 48.85607260802799], [2.376307202113669, 48.855987303571844], [2.376302490997592, 48.85598487325676], [2.376133238883467, 48.855931966287024], [2.3759585352912422, 48.85587782281722], [2.375789283863322, 48.85582491625523], [2.375614580987434, 48.855770772278035], [2.375607845048354, 48.85575909594728], [2.375683100335014, 48.85564298594491], [2.375758353998408, 48.85552755218746], [2.37583360861537, 48.85541144206623], [2.375908862973657, 48.85529600819714], [2.375984116920824, 48.85517989795708], [2.3760593692376792, 48.85506446486149], [2.376134622515064, 48.85494835450256], [2.376209874174869, 48.854832920388965], [2.376285128145296, 48.85471680991831], [2.376360379137287, 48.85460137568598], [2.376435631075127, 48.85448526508937], [2.376510881388553, 48.85436983163766], [2.376586134030201, 48.85425372003001], [2.376661383675831, 48.85413828645961], [2.3767366342741623, 48.85402217562529], [2.376811883262868, 48.853906741036916], [2.376887133191354, 48.85379063008378], [2.376962382864319, 48.853675196283085], [2.3770376321338222, 48.85355908431182], [2.377112879776227, 48.853443650385344], [2.377112795895127, 48.85343641646506], [2.377068610307353, 48.85337138906467], [2.37702478432666, 48.853303764389906], [2.377025171339645, 48.85328518670084]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 9, "roussel_fabien": 23.0, "nb_emargement": 1359.0, "nb_procuration": 112.0, "nb_vote_blanc": 14.0, "jadot_yannick": 150.0, "le_pen_marine": 40.0, "nb_exprime": 1342.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1653.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1359, "quartier_bv": "43", "geo_point_2d": [48.854499711910826, 2.375090772524976], "melenchon_jean_luc": 470.0, "poutou_philippe": 8.0, "macron_emmanuel": 470.0}, "geometry": {"type": "Point", "coordinates": [2.375090772524976, 48.854499711910826]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9257ebeb9af681897f613384db24ff313debd431", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 180, "zemmour_eric": 153.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "16-28", "geo_shape": {"coordinates": [[[2.271413926259588, 48.85061399360973], [2.2714451163873752, 48.850613796810755], [2.271563639247491, 48.85053980829233], [2.2717016776588013, 48.85045259638138], [2.27185786720577, 48.8503550918271], [2.271995905985489, 48.85026788046979], [2.272152093065714, 48.85017037550698], [2.272290130876188, 48.85008316289648], [2.272446318202384, 48.84998565844092], [2.272584355031154, 48.849898445476484], [2.272602831242891, 48.849882058065496], [2.272597216182649, 48.84987066855167], [2.272481944502853, 48.84982347143412], [2.272334859554478, 48.84976425137915], [2.2721714175855983, 48.849697331104316], [2.2720243347087052, 48.849638110669154], [2.271860893546782, 48.8495711890633], [2.271713810016236, 48.8495119682314], [2.271708130948447, 48.849507417951074], [2.271700759673226, 48.84948890012566], [2.271683962177078, 48.8494826705013], [2.271619521925947, 48.849367983315226], [2.271555751066567, 48.849255343513995], [2.271491310003476, 48.84914065712643], [2.271427541061957, 48.84902801724219], [2.2713631005747033, 48.848913329862874], [2.271299332175902, 48.84880069078656], [2.271234892251905, 48.84868600331477], [2.271171123058429, 48.84857336323953], [2.271106685047644, 48.84845867658288], [2.271042916409451, 48.84834603641636], [2.271033024276527, 48.848340392881035], [2.270807466507635, 48.848308289722205], [2.270589433465676, 48.848274471052775], [2.270363876267866, 48.848242366156484], [2.270145843789591, 48.84820854667669], [2.270112068197441, 48.84820439690787], [2.270100439631734, 48.84821367127866], [2.269894011091894, 48.848259702200345], [2.269697351935579, 48.84830317884211], [2.269490922697753, 48.84834920816532], [2.269294262867287, 48.84839268414106], [2.26909760270869, 48.84843615979187], [2.268891172401863, 48.848482188974025], [2.268694511569222, 48.84852566395878], [2.268488080551721, 48.8485716924418], [2.268479768019652, 48.848571779220165], [2.268294582709338, 48.848534753108815], [2.268093408668687, 48.84849559633076], [2.2679082239036, 48.848458569618856], [2.267707051809883, 48.84841941219684], [2.267521867590129, 48.84838238488444], [2.267320696080715, 48.8483432268101], [2.26730338187245, 48.848353262930864], [2.267331701534669, 48.848470970037354], [2.26735757552794, 48.848582645388355], [2.267385894061935, 48.8487003533487], [2.267411768285228, 48.848812028664945], [2.267440087078918, 48.84892973568894], [2.267465961519593, 48.84904141186978], [2.267459992052096, 48.84905027904112], [2.267339024984324, 48.849102920183846], [2.267212843993398, 48.849158163511305], [2.267196513021371, 48.849179952247724], [2.267212822112316, 48.84919557608833], [2.267396571483991, 48.849259150616625], [2.267570705104268, 48.849321119982186], [2.267754455355214, 48.84938469395374], [2.267928591183236, 48.84944666279977], [2.268112342313453, 48.8495102362145], [2.268286477623894, 48.84957220452435], [2.268291772869007, 48.849573206424274], [2.268525810867407, 48.8495849316358], [2.268738971435063, 48.84959345475848], [2.2687448642099, 48.84959460598753], [2.268918509562277, 48.84965951579248], [2.269081416880561, 48.849721113931686], [2.26925506444897, 48.849786022349875], [2.269417972560548, 48.84984762002386], [2.269580881057251, 48.84990921747259], [2.269754529874575, 48.84997412515495], [2.269917439164573, 48.850035722138465], [2.270091087447367, 48.85010063021592], [2.270253998905832, 48.85016222584324], [2.270427648029374, 48.850227133424866], [2.27042770632168, 48.85022715536504], [2.270590618560987, 48.850288751426284], [2.270751345847684, 48.85034952811217], [2.270914258864787, 48.850411122826664], [2.271074988269064, 48.85047189907938], [2.271237900676004, 48.85053349423743], [2.271398630835178, 48.85059427004874], [2.271413926259588, 48.85061399360973]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 28, "roussel_fabien": 5.0, "nb_emargement": 1064.0, "nb_procuration": 73.0, "nb_vote_blanc": 10.0, "jadot_yannick": 49.0, "le_pen_marine": 43.0, "nb_exprime": 1047.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1289.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "61", "geo_point_2d": [48.849276426489915, 2.2699567224731876], "melenchon_jean_luc": 75.0, "poutou_philippe": 0.0, "macron_emmanuel": 506.0}, "geometry": {"type": "Point", "coordinates": [2.2699567224731876, 48.849276426489915]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "68b8c6619ad8d572d757e2800e7747f1dc7a3d42", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 137, "zemmour_eric": 150.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "7-18", "geo_shape": {"coordinates": [[[2.310189682802023, 48.86002706936881], [2.310191508066813, 48.86002355622729], [2.310188444916069, 48.85999167541216], [2.310181118939865, 48.859951916877534], [2.310194036892395, 48.85993385859532], [2.310188741706864, 48.8599155217517], [2.31015123714295, 48.85990159402919], [2.310088144810334, 48.85990020504724], [2.309879357542899, 48.85988451080659], [2.309685678188171, 48.85986943037263], [2.309491997582724, 48.859854349617116], [2.309283210666709, 48.85983865523502], [2.309089531655002, 48.859823573835584], [2.308880744995482, 48.85980787785168], [2.308868863692146, 48.85979738573513], [2.308905689182715, 48.8596591241576], [2.30893967165371, 48.85953079837483], [2.308976495405125, 48.85939253673437], [2.309010477539775, 48.85926421000136], [2.309044458144208, 48.85913588323598], [2.309081282689335, 48.85899762242125], [2.309115262945409, 48.85886929560488], [2.309152087126255, 48.85873103383589], [2.309186068385061, 48.85860270787578], [2.309222890826696, 48.85846444604388], [2.30925687174917, 48.85833611913354], [2.309293695165388, 48.858197858153794], [2.30931156144998, 48.858130384713135], [2.309305560611932, 48.85812490898493], [2.309265351813701, 48.85812498177831], [2.309058181245396, 48.85811445046709], [2.308853150914848, 48.858104411413116], [2.308648120663209, 48.858094372007756], [2.308440951704276, 48.858083839635576], [2.308235921613119, 48.858073799523794], [2.308028751468361, 48.85806326553069], [2.307823722888444, 48.858053225619656], [2.307616552908935, 48.85804269091271], [2.307411523126518, 48.85803265028741], [2.307204354674959, 48.85802211487457], [2.30699932506501, 48.85801207264355], [2.3067921554037643, 48.85800153740833], [2.306787922816482, 48.85800086175664], [2.306628612978305, 48.857956611476396], [2.30647234163279, 48.85791327075035], [2.306316070547255, 48.857869929818555], [2.306156761510152, 48.85782567890493], [2.306000490949838, 48.857782337557595], [2.305841182436593, 48.85773808711966], [2.305831146056763, 48.857737946158636], [2.30565701650788, 48.85778065983979], [2.305477138558198, 48.85782484002809], [2.305303008428605, 48.85786755319077], [2.305123129878763, 48.857911732843476], [2.304948999168566, 48.85795444548765], [2.304769120030569, 48.857998623705484], [2.304750880375971, 48.85799149827208], [2.304723677154596, 48.85786890476969], [2.304695439043963, 48.85774573774081], [2.304668236093245, 48.85762314329941], [2.304639996871981, 48.85749997712148], [2.304612794180124, 48.857377382640344], [2.304584556585986, 48.857254216430015], [2.304570915453691, 48.85724722111256], [2.304550345420638, 48.85724836785892], [2.304419577444187, 48.85728465583892], [2.304261881187724, 48.857331774536924], [2.304254517814341, 48.85733723487959], [2.304195377335607, 48.85745963320577], [2.304135678197941, 48.85758189693629], [2.30407653716233, 48.85770429517675], [2.304016836102579, 48.85782655881312], [2.30395769587287, 48.857948956975804], [2.30389799425391, 48.85807122052592], [2.303838852104521, 48.858193618594946], [2.303779151289139, 48.85831588206675], [2.303720008582851, 48.85843828005005], [2.303660305845446, 48.8585605434277], [2.303601162582247, 48.85868294132526], [2.303541460648418, 48.85880520462459], [2.303524697028979, 48.85882295564071], [2.303527893590816, 48.85882966004331], [2.303633221913792, 48.858919499730206], [2.303721145105021, 48.859000769728745], [2.303726201740687, 48.859003428861314], [2.303898886074295, 48.85905615173071], [2.304062100243776, 48.85910614639259], [2.304225314714575, 48.859156141728874], [2.304398001422208, 48.85920886387871], [2.304561216549001, 48.85925885785296], [2.3047339039370778, 48.85931157951323], [2.304744896204332, 48.859311711728225], [2.304916724318664, 48.859264177187846], [2.30508810366671, 48.85921797263658], [2.305097319701143, 48.85921771227946], [2.305303619389962, 48.85926020209102], [2.305494862679466, 48.859298978868985], [2.305686104890608, 48.85933775533209], [2.305892406909809, 48.85938024323266], [2.306083649715205, 48.8594190190576], [2.306289951005462, 48.85946150716112], [2.306298994557129, 48.859472565871236], [2.306278614718708, 48.85951955675363], [2.306260460341782, 48.8595565390394], [2.306257298919176, 48.859574394457724], [2.306290303407271, 48.85958470171154], [2.306473324405295, 48.859618544852204], [2.306653163224382, 48.859651755914584], [2.30683618469355, 48.85968559849825], [2.307016023975383, 48.85971880901331], [2.307195862123644, 48.85975201924927], [2.307378884309479, 48.85978586010062], [2.307558724283311, 48.85981906979716], [2.307741746928418, 48.85985291099076], [2.30774363404571, 48.859853166531266], [2.3079494135958543, 48.85987174662259], [2.308159215884932, 48.859890097796765], [2.308364995741078, 48.85990867627363], [2.308574798313202, 48.85992702761786], [2.308780578463392, 48.85994560537948], [2.3089903813307, 48.859963955994594], [2.309196161774925, 48.859982533040984], [2.309405966312067, 48.86000088203544], [2.309611747038396, 48.8600194592659], [2.309821550507748, 48.86003780752333], [2.3098240589704, 48.860037873253596], [2.309979214509545, 48.86003513910049], [2.310117215042361, 48.860030340765746], [2.310189682802023, 48.86002706936881]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 18, "roussel_fabien": 4.0, "nb_emargement": 1146.0, "nb_procuration": 81.0, "nb_vote_blanc": 11.0, "jadot_yannick": 56.0, "le_pen_marine": 62.0, "nb_exprime": 1132.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 5, "nb_inscrit": 1430.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1146, "quartier_bv": "28", "geo_point_2d": [48.85874967636126, 2.3065967598548163], "melenchon_jean_luc": 147.0, "poutou_philippe": 10.0, "macron_emmanuel": 515.0}, "geometry": {"type": "Point", "coordinates": [2.3065967598548163, 48.85874967636126]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "761b55855bb3d3b8ebd42d83a207094e99c3cd02", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 126, "zemmour_eric": 168.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "7-6", "geo_shape": {"coordinates": [[[2.319948405697291, 48.854969219236025], [2.319955891028185, 48.85497264065615], [2.320040386329615, 48.85508115141926], [2.320134390020888, 48.85520351944091], [2.320218886068436, 48.85531203005547], [2.320312890583703, 48.85543439881076], [2.320397387377481, 48.855542909276686], [2.320491392740214, 48.85566527696705], [2.320575890280028, 48.855773787284384], [2.320669896478505, 48.85589615480903], [2.320754394752741, 48.856004665877045], [2.3208484017869733, 48.856127033236085], [2.320932900819089, 48.85623554325619], [2.321026908689188, 48.85635791044955], [2.321111408455749, 48.85646642122036], [2.321112143039068, 48.856467260888074], [2.321215374092131, 48.85657189190378], [2.321324799673112, 48.856682206794225], [2.321428030227817, 48.85678683669928], [2.32153745807341, 48.85689715138162], [2.321640689481005, 48.85700178108296], [2.32175011822816, 48.857112095549496], [2.321853350477054, 48.85721672594639], [2.321962780137585, 48.8573270392978], [2.322066013239291, 48.85743166949096], [2.322175443789802, 48.85754198352585], [2.322278677756232, 48.85764661261601], [2.322388107845545, 48.857756926427335], [2.322491344027691, 48.857861555321485], [2.322600775018699, 48.85797186891696], [2.3227040120421982, 48.85807649850668], [2.322771779824002, 48.858144811960614], [2.322775359485213, 48.85816050344031], [2.322797436955055, 48.858172983689315], [2.322839101109177, 48.85821498360499], [2.322949991105312, 48.858330292903126], [2.323059425414775, 48.85844060604034], [2.3230965100309042, 48.858479169603356], [2.323113624581028, 48.858489065756295], [2.323167846811611, 48.85846976296966], [2.323269477568187, 48.85836158715201], [2.3233705630077273, 48.85825443791514], [2.323472192923316, 48.858146261904295], [2.323573278891217, 48.85803911248316], [2.323674907965927, 48.85793093627916], [2.323775991736304, 48.85782378665825], [2.323877619958476, 48.85771561116043], [2.323978704268688, 48.85760846045595], [2.324080330287119, 48.85750028475727], [2.324181413762816, 48.857393133860754], [2.324283040303283, 48.85728495797666], [2.324384121581496, 48.85717780688042], [2.324485747281126, 48.85706963080319], [2.32458682908751, 48.85696247952265], [2.324588451365095, 48.856961083889125], [2.324721502243197, 48.85686768327219], [2.324869449565055, 48.85676344929472], [2.325002498083673, 48.8566700474418], [2.325150444282131, 48.85656581309838], [2.325283493155237, 48.85647241092408], [2.3254314368675493, 48.85636817620701], [2.325564484732291, 48.85627477370367], [2.325712428684276, 48.85617053862833], [2.325800575103193, 48.856108657003105], [2.325801848996777, 48.856099105845324], [2.325774906204523, 48.85608408681691], [2.32567104736582, 48.85596699204715], [2.325574225658421, 48.85585832601215], [2.325477402992029, 48.855749659880495], [2.325373546851218, 48.85563256482501], [2.325276725022849, 48.85552389850887], [2.3251728684202693, 48.85540680324768], [2.325076048792742, 48.855298136754804], [2.324972193091114, 48.85518104129568], [2.324875374289932, 48.85507237551762], [2.3247715195009, 48.85495527896125], [2.324674700174891, 48.85484661299106], [2.324563557391935, 48.85472963517804], [2.324466738930549, 48.854620968118226], [2.3243879559256992, 48.85453804882294], [2.324389832628049, 48.85452312202379], [2.324355873806408, 48.85450819074171], [2.324323515004213, 48.854474132896826], [2.324200108636449, 48.8543420725032], [2.324088967983433, 48.8542250950956], [2.323965562799905, 48.854093034430456], [2.323854423204608, 48.85397605677877], [2.323852403807581, 48.85397214216256], [2.323831342325363, 48.85382802994548], [2.3238076761742, 48.85368457570437], [2.323786614931914, 48.85354046344215], [2.323762949034391, 48.85339700915508], [2.323741888032036, 48.8532528968477], [2.323718223751117, 48.853109442522396], [2.323707766845279, 48.85310165704578], [2.323516283770488, 48.8530722196905], [2.323326564900528, 48.85304295568688], [2.323135082268483, 48.85301351682071], [2.322945365177416, 48.852984253118166], [2.322753881613687, 48.852954813632714], [2.322564164962121, 48.8529255484249], [2.322372681817889, 48.85289610922717], [2.322182965594147, 48.85286684341341], [2.321991482892604, 48.85283740270482], [2.321801767084993, 48.85280813718439], [2.321612051502188, 48.8527788704631], [2.321420569446584, 48.85274942883857], [2.321230854279912, 48.85272016241062], [2.321039372655321, 48.852690720174515], [2.320849657916491, 48.852661453140655], [2.320658176723021, 48.85263201029294], [2.32046846242377, 48.85260274175387], [2.320276983012455, 48.85257329920163], [2.320087267778416, 48.85254403004886], [2.319895788809966, 48.852514585985745], [2.319706073991962, 48.85248531712636], [2.319514595454655, 48.85245587245167], [2.3193248824390222, 48.852426602094816], [2.319133402958367, 48.85239715770012], [2.319070834846115, 48.85239992781263], [2.319066615565198, 48.85241588179039], [2.319071025761944, 48.85246916685204], [2.31908720738294, 48.85263305534488], [2.319097860311964, 48.85276177895093], [2.319098283974305, 48.85276356568704], [2.319146196029409, 48.852884330634886], [2.319191985742552, 48.85300576878361], [2.31923989687485, 48.85312653365996], [2.319285687019198, 48.85324797174637], [2.319333599965772, 48.85336873566727], [2.319379389178556, 48.85349017368362], [2.319427302553352, 48.85361093844003], [2.319473093560129, 48.853732376401815], [2.319521006023661, 48.85385314018733], [2.319566797461658, 48.853974578086806], [2.319614711716212, 48.854095342715496], [2.3196605035853413, 48.85421678055264], [2.319708416928728, 48.854337544210495], [2.319754209229191, 48.85445898198527], [2.319802124363426, 48.8545797464863], [2.319847915732324, 48.85470118419105], [2.319895831306559, 48.85482194862821], [2.31994162446951, 48.854943386278364], [2.319948405697291, 48.854969219236025]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 6, "roussel_fabien": 5.0, "nb_emargement": 1181.0, "nb_procuration": 96.0, "nb_vote_blanc": 13.0, "jadot_yannick": 63.0, "le_pen_marine": 58.0, "nb_exprime": 1166.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 2, "nb_inscrit": 1451.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1181, "quartier_bv": "25", "geo_point_2d": [48.85511443205686, 2.3223681471978503], "melenchon_jean_luc": 105.0, "poutou_philippe": 1.0, "macron_emmanuel": 608.0}, "geometry": {"type": "Point", "coordinates": [2.3223681471978503, 48.85511443205686]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c103542d11973ca8b5c4ccdb36a754cc60391dea", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 127, "zemmour_eric": 138.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "8-7", "geo_shape": {"coordinates": [[[2.323313424692168, 48.88267735664509], [2.323321757187508, 48.882682018216514], [2.323386681940152, 48.882695018977266], [2.323586152254813, 48.88273657470269], [2.323776852192494, 48.88277476111968], [2.323976323135603, 48.88281631529276], [2.32416702365138, 48.88285450108553], [2.324366495211245, 48.88289605460556], [2.32455719630511, 48.88293423977412], [2.324747896315089, 48.8829724246299], [2.324947370142016, 48.88301397808469], [2.325138070730075, 48.883052162316254], [2.325337545185406, 48.88309371421866], [2.325528246351535, 48.88313189782599], [2.3257277214236, 48.88317344907534], [2.325918424531347, 48.88321163206616], [2.326117898856585, 48.88325318265475], [2.326308602542392, 48.88329136502128], [2.326508077472718, 48.8833329158561], [2.326698781736582, 48.88337109759838], [2.326849925147949, 48.88340257962557], [2.326872377519068, 48.88340911269954], [2.326881260718766, 48.88340875974197], [2.326929592877864, 48.88341882698458], [2.326976579030378, 48.883413392953805], [2.327022109710915, 48.88339237789473], [2.326976085682658, 48.88325964041366], [2.326930822599838, 48.88313029405971], [2.32688479903578, 48.8829975565119], [2.326839536407485, 48.8828682100926], [2.326793513307722, 48.88273547247811], [2.326748249770406, 48.8826061259858], [2.3267022271349322, 48.882473388304604], [2.32665696541567, 48.88234404175463], [2.326610943244477, 48.88221130400674], [2.326565681968091, 48.88208195829077], [2.326520420928163, 48.88195261164321], [2.32647439945091, 48.881819873795564], [2.326429138865477, 48.8816905270827], [2.326383117852487, 48.88155778916841], [2.326337857721542, 48.88142844239022], [2.326291837172808, 48.88129570440921], [2.326286344610115, 48.88129033325807], [2.326105862211795, 48.88120730994846], [2.325932595404438, 48.88112468222056], [2.325752115495988, 48.88104165927215], [2.325578849800899, 48.88095903101986], [2.325405584644066, 48.88087640340987], [2.3252251050843302, 48.88079337874136], [2.325051841051513, 48.88071074970772], [2.324871362618126, 48.88062772539272], [2.324855563154108, 48.880627818859246], [2.3247087823019212, 48.880697959276645], [2.324554862510839, 48.880772010009856], [2.32440808084728, 48.88084215004936], [2.324254160202378, 48.88091620038633], [2.324107377727545, 48.88098634004799], [2.323953457592422, 48.8810603899963], [2.32380667430611, 48.881130529280156], [2.323652751953869, 48.881204578824466], [2.323647882068012, 48.881203465816576], [2.323608691892992, 48.8812199135621], [2.323424467421225, 48.8813203120623], [2.323230671916858, 48.88142800282783], [2.323225850268085, 48.88143545353155], [2.32323735097202, 48.881554320522945], [2.323249311630177, 48.88167326384546], [2.323260812428495, 48.88179213170817], [2.323272771843019, 48.881911074095655], [2.323284272747402, 48.88202994193043], [2.323296233633648, 48.882148884297564], [2.3233077346441, 48.88226775210442], [2.32331969563855, 48.88238669444348], [2.323331196755073, 48.88250556222243], [2.32334315785773, 48.88262450453346], [2.323313424692168, 48.88267735664509]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 7, "roussel_fabien": 16.0, "nb_emargement": 1256.0, "nb_procuration": 72.0, "nb_vote_blanc": 17.0, "jadot_yannick": 89.0, "le_pen_marine": 46.0, "nb_exprime": 1234.0, "nb_vote_nul": 4.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1505.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1255, "quartier_bv": "32", "geo_point_2d": [48.8820525851276, 2.3250633463592827], "melenchon_jean_luc": 192.0, "poutou_philippe": 3.0, "macron_emmanuel": 572.0}, "geometry": {"type": "Point", "coordinates": [2.3250633463592827, 48.8820525851276]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3a84fa3752f9b44915da717a59838a0c46185d0d", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 60, "zemmour_eric": 106.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "12-44", "geo_shape": {"coordinates": [[[2.408363433216961, 48.838174626567266], [2.4084100578411523, 48.838171941437494], [2.408564853115264, 48.83815044052221], [2.408770477403895, 48.83812072136495], [2.408925272367025, 48.838099220881574], [2.409130897610483, 48.8380695011101], [2.40931118077118, 48.83804391252135], [2.409516805576413, 48.83801419208503], [2.409697089718641, 48.83798860292008], [2.409902712723358, 48.83795888181222], [2.410082996474648, 48.837933292963726], [2.410288619041025, 48.83790357119106], [2.410468902421729, 48.83787798086033], [2.410475368547962, 48.837878099966346], [2.410664764034197, 48.83791236805482], [2.410854086690314, 48.83794671282748], [2.411043482674937, 48.83798098031425], [2.411232804477574, 48.838015323579405], [2.411422202312604, 48.838049591370414], [2.411611524613972, 48.83808393403405], [2.411800922947384, 48.83811820122333], [2.411990245747477, 48.83815254328545], [2.412179644589204, 48.8381868089737], [2.412368967877873, 48.838221151333634], [2.4125583658555723, 48.83825541641341], [2.4127476910053502, 48.83828975817852], [2.412753652331081, 48.838289943933546], [2.412954630815941, 48.838266696266174], [2.413150587647597, 48.83824364666673], [2.4133465456581122, 48.838220597651734], [2.413547523611145, 48.838197348986775], [2.413566662402399, 48.83819427077242], [2.413565829151887, 48.83816782188905], [2.413554306058279, 48.83812842826246], [2.413506771604526, 48.83800010556262], [2.413476591106988, 48.837896930409464], [2.413429058407929, 48.83776860855816], [2.41338195253352, 48.83764172594418], [2.413334420300169, 48.83751340402597], [2.413287314886761, 48.837386521345785], [2.413255634627127, 48.83730118474668], [2.413208101652921, 48.83717286273249], [2.413168963821027, 48.83706743644505], [2.413121431273242, 48.836939114369585], [2.413082293782027, 48.83683368893109], [2.413034761660858, 48.83670536679438], [2.413010188228211, 48.83663917009247], [2.412978522104761, 48.836553868502946], [2.412930990494114, 48.8364255462929], [2.412899323267803, 48.83634024465946], [2.412851793409259, 48.83621192240008], [2.412817770202304, 48.83612027045716], [2.412766560378678, 48.83598232398177], [2.412719029811099, 48.835854001621875], [2.412671499487667, 48.83572567832908], [2.412620291801102, 48.83558773174907], [2.412572761953295, 48.83545940928584], [2.412521554799735, 48.8353214617314], [2.412507925346058, 48.83528474484785], [2.412460396051234, 48.835156422305204], [2.412445189271899, 48.83511545716354], [2.412419238210348, 48.835045550793275], [2.412403125804701, 48.83500214391867], [2.412355597025436, 48.83487382130195], [2.41230028821765, 48.83472482452933], [2.412252761316931, 48.834596500947356], [2.412239998225917, 48.834562121213985], [2.412165379584592, 48.8345134514934], [2.412037929898434, 48.83442910419164], [2.41200608644547, 48.834408334237814], [2.411936960300168, 48.83436324655173], [2.411927538189266, 48.834357101641245], [2.411800087918186, 48.834272753168236], [2.411622680989935, 48.83415703812371], [2.411495231701287, 48.83407268931077], [2.4113979730362702, 48.834009250749084], [2.411270524462392, 48.8339249025849], [2.411263988484553, 48.83392063800565], [2.411249527623754, 48.83391120534325], [2.411201580825992, 48.83387993136443], [2.411165706173132, 48.83386827167455], [2.411162655405351, 48.833869281930674], [2.41099257103256, 48.83393128215165], [2.410820433020396, 48.833993661437944], [2.410650347834749, 48.83405566116535], [2.410478210364622, 48.834118039958916], [2.410308124355947, 48.83418004009211], [2.410135986065475, 48.834242418386225], [2.409965897891931, 48.83430441711987], [2.40979375878132, 48.834366794914544], [2.409623671157107, 48.83442879316137], [2.409451531226156, 48.83449117045655], [2.409281441416706, 48.83455316910241], [2.409109300665512, 48.83461554589817], [2.4089392114156922, 48.83467754315794], [2.408767069844259, 48.83473991945423], [2.408596979781588, 48.8348019162204], [2.408424836027617, 48.83486429201051], [2.408254745152092, 48.83492628828311], [2.408082601940186, 48.83498866358049], [2.407912510241596, 48.83505066025888], [2.407740366209451, 48.835113035056786], [2.407570272345913, 48.835175030335584], [2.40739812749353, 48.83523740463397], [2.407228034179451, 48.83529939942594], [2.407055888506835, 48.83536177322488], [2.406885793017592, 48.83542376751652], [2.406713646524739, 48.83548614081595], [2.40669467007515, 48.83548194918985], [2.40661182295181, 48.83536047221354], [2.406536285961352, 48.835235347642026], [2.40645344097159, 48.83511386963666], [2.40640307095375, 48.83503043213037], [2.406377904718759, 48.83498874493754], [2.406359605423699, 48.83497942214835], [2.406332147487915, 48.83499433941874], [2.406195369137209, 48.83498826068174], [2.406049012426067, 48.83498537912964], [2.405912234131892, 48.83497930006884], [2.40576587610961, 48.83497641726424], [2.405756137420098, 48.834978855622126], [2.405737784502579, 48.83498954241632], [2.405597962029914, 48.83507635394952], [2.405479386114727, 48.83514540236401], [2.405475213585955, 48.835153132340906], [2.405502275040601, 48.83528828021612], [2.405527513481883, 48.83541425629265], [2.405552752045053, 48.8355402323496], [2.405579815264018, 48.8356753801673], [2.405605054069764, 48.83580135708314], [2.405632116207831, 48.83593650395138], [2.405634643837335, 48.835940649984], [2.405745246256838, 48.83604150817956], [2.405858396979214, 48.8361431847487], [2.40596900162384, 48.83624404272585], [2.406082153232565, 48.83634571816562], [2.406192757377445, 48.836446575910834], [2.406305911214376, 48.83654825202661], [2.406416516221957, 48.83664910954664], [2.406529670945252, 48.83675078453302], [2.406640276815643, 48.836851641827906], [2.406753431042474, 48.83695331747672], [2.406759441355001, 48.83695636644423], [2.406909262054281, 48.836995113743015], [2.4070624689105222, 48.83703586702594], [2.407212290063661, 48.83707461394243], [2.407365498752747, 48.83711536684108], [2.407515318997284, 48.83715411336855], [2.407668528156955, 48.83719486587617], [2.407677060277759, 48.837203199343584], [2.407677139306688, 48.83725870834772], [2.4076730285021912, 48.83731401223228], [2.407681848930811, 48.83732287325268], [2.407892413741072, 48.8373750336709], [2.408103470293351, 48.83742675905752], [2.408112005241374, 48.837433173267875], [2.408154061498109, 48.837553793289885], [2.408193265800617, 48.837678424714866], [2.408235322443275, 48.83779904468185], [2.408274527114436, 48.83792367695213], [2.408316584153233, 48.83804429596474], [2.40835578920306, 48.83816892818108], [2.408363433216961, 48.838174626567266]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 44, "roussel_fabien": 20.0, "nb_emargement": 1139.0, "nb_procuration": 52.0, "nb_vote_blanc": 22.0, "jadot_yannick": 90.0, "le_pen_marine": 75.0, "nb_exprime": 1115.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1480.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1139, "quartier_bv": "45", "geo_point_2d": [48.836249708395215, 2.40990676273231], "melenchon_jean_luc": 375.0, "poutou_philippe": 7.0, "macron_emmanuel": 322.0}, "geometry": {"type": "Point", "coordinates": [2.40990676273231, 48.836249708395215]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a37b24e4d46a556881117296da825d092b1adde6", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 57, "zemmour_eric": 79.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-19", "geo_shape": {"coordinates": [[[2.364581351717725, 48.82029398896275], [2.364569670259062, 48.820307379801655], [2.3645095260398, 48.82038128773968], [2.364414676751311, 48.820498226344625], [2.364322056578122, 48.82061203968068], [2.364227206449347, 48.820728978112946], [2.364134585446104, 48.82084279217978], [2.364039734477234, 48.82095973043931], [2.363947112654889, 48.82107354433759], [2.363852260845711, 48.82119048242445], [2.363759638204254, 48.82130429615417], [2.36366478555496, 48.8214212340683], [2.363572162094382, 48.821535047629446], [2.363477307242911, 48.821651985363594], [2.36338468433603, 48.82176579786411], [2.363289828644318, 48.82188273542556], [2.363197204907425, 48.821996548656784], [2.36310234837546, 48.82211348604556], [2.363009723819321, 48.822227299108214], [2.362914866447093, 48.82234423632421], [2.3628222410719, 48.822458049218284], [2.362727382859398, 48.82257498626159], [2.362634756665041, 48.822688798987095], [2.362539897612155, 48.82280573585762], [2.362507780221198, 48.82284519840562], [2.362508476146861, 48.82285422826709], [2.362518162627721, 48.82286907736174], [2.362457651630254, 48.82294342736708], [2.362425364477852, 48.8229847309085], [2.362423096844923, 48.82299685681383], [2.362481198908473, 48.823011698723185], [2.362681871647935, 48.823058697789605], [2.362891813695399, 48.823108915305944], [2.36309248582825, 48.82315591277266], [2.363302428662628, 48.82320612956382], [2.363310343442876, 48.82321807495968], [2.3633040041875972, 48.82322802159407], [2.363294279210145, 48.823247977355244], [2.363325958992646, 48.82325525380434], [2.363495637904947, 48.82329492922401], [2.363668541197398, 48.82333526371317], [2.363838219268869, 48.82337493863663], [2.364011123080588, 48.82341527352689], [2.364180803046084, 48.823454947069415], [2.364353707388148, 48.82349528146147], [2.364523387874693, 48.823534954515026], [2.364696292747197, 48.82357528840888], [2.364865973743734, 48.823614961872856], [2.365038879157528, 48.82365529436916], [2.365051748259995, 48.82365392909472], [2.365211429948812, 48.8235724047521], [2.36536127801683, 48.82349493995498], [2.365511125639482, 48.82341747496478], [2.365670807258793, 48.823335949099494], [2.365820653964732, 48.82325848371044], [2.365980334613036, 48.82317695742033], [2.3661301804021653, 48.82309949163243], [2.366289860079668, 48.82301796491748], [2.366439704951992, 48.82294049873082], [2.366599382285588, 48.82285897248311], [2.366749226241114, 48.82278150589763], [2.3668708577744573, 48.822719404006634], [2.36688094645037, 48.822709419473775], [2.366861882935136, 48.82268948367778], [2.366704554656124, 48.82264351443284], [2.366498315531957, 48.82258478632737], [2.36634098790043, 48.82253881570051], [2.366134748237825, 48.82248008695532], [2.365977421242766, 48.822434115845866], [2.36577118376588, 48.82237538647536], [2.365613857396247, 48.82232941578266], [2.365606113633371, 48.82232353234431], [2.365552236981404, 48.82219358324007], [2.365498446161507, 48.822060184537484], [2.365444570049992, 48.8219302353543], [2.365390778415176, 48.82179683656482], [2.365336902844108, 48.8216668873027], [2.365283113118482, 48.82153348844078], [2.365229238087848, 48.821403539099684], [2.365175448909242, 48.82127014015809], [2.3651215730572, 48.82114019073084], [2.365067784425711, 48.821006791709564], [2.365013910475929, 48.82087684221058], [2.364960122391647, 48.82074344310962], [2.364906248982275, 48.820613493531724], [2.364852460083171, 48.820480094343914], [2.364798587214104, 48.82035014468707], [2.364744800224012, 48.82021674542679], [2.364671547778451, 48.82019537911841], [2.364654736016856, 48.82020360995023], [2.364619863817124, 48.820250562023666], [2.364587388684448, 48.82029046939434], [2.364581351717725, 48.82029398896275]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 19, "roussel_fabien": 29.0, "nb_emargement": 1333.0, "nb_procuration": 32.0, "nb_vote_blanc": 12.0, "jadot_yannick": 53.0, "le_pen_marine": 91.0, "nb_exprime": 1310.0, "nb_vote_nul": 11.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1841.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1333, "quartier_bv": "50", "geo_point_2d": [48.82231582385739, 2.3645001504201253], "melenchon_jean_luc": 488.0, "poutou_philippe": 5.0, "macron_emmanuel": 456.0}, "geometry": {"type": "Point", "coordinates": [2.3645001504201253, 48.82231582385739]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d44acaf9c0fa9d6bec74cfab79e158c84b1ec52c", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 42, "zemmour_eric": 74.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "11-35", "geo_shape": {"coordinates": [[[2.377334278375316, 48.86566626738982], [2.377358896623019, 48.865672582935424], [2.3774526690551703, 48.86569480062769], [2.377630491059144, 48.865736466520545], [2.377824973074811, 48.865782545485374], [2.378002797039171, 48.865824210828876], [2.378197279722451, 48.865870288285755], [2.378375104273354, 48.86591195397208], [2.378569587613499, 48.86595803082039], [2.378747412761682, 48.86599969595022], [2.378941896758688, 48.86604577218988], [2.379119722504144, 48.866087436763294], [2.379136983735638, 48.86608223098699], [2.379205282545796, 48.86596672855486], [2.379272763635778, 48.865852558253266], [2.379341061843781, 48.86573705571969], [2.379408542338688, 48.86562288531787], [2.379476839944543, 48.86550738268284], [2.37954431984428, 48.86539321218075], [2.379612616837286, 48.86527771034357], [2.379680096152773, 48.86516353884196], [2.379748392543649, 48.8650480369033], [2.3798158712640802, 48.8649338653015], [2.379884167052833, 48.86481836326142], [2.379951645178216, 48.86470419155935], [2.379955905170815, 48.864700396821846], [2.380099583397671, 48.86462565482421], [2.380242071086826, 48.864551494655856], [2.38038574849246, 48.86447675230461], [2.380528235377685, 48.86440259088631], [2.380671911961996, 48.86432784818148], [2.380814398032595, 48.86425368641255], [2.380958073795789, 48.864178943354155], [2.381100559051765, 48.86410478123453], [2.381114302503306, 48.86409694168888], [2.381110405582257, 48.86408590549149], [2.381105504112928, 48.86407268319364], [2.381097716616083, 48.8640508806331], [2.381101028725144, 48.86403988890961], [2.381091448345031, 48.86403246116048], [2.3810630436572042, 48.86395294728738], [2.381035592485539, 48.863879347913254], [2.381022581296865, 48.86386147003907], [2.381010793910427, 48.86386116895012], [2.380840509841233, 48.86378152007961], [2.38067241613438, 48.863703762819135], [2.3805021330969103, 48.86362411345583], [2.380334039050727, 48.86354635480268], [2.380163757045085, 48.863466704946624], [2.379995664001131, 48.863388946706465], [2.37982538302731, 48.86330929635769], [2.379657290996276, 48.863231537631236], [2.379487011054276, 48.86315188678967], [2.379318921399094, 48.863074127584], [2.379294095579778, 48.86306621141302], [2.37928610453887, 48.86306946246369], [2.379188059726307, 48.86318911068467], [2.379089618685752, 48.86330822704584], [2.378991572972593, 48.863427875080056], [2.3788931296793, 48.8635469903476], [2.378795083054809, 48.86366663909437], [2.378696640224143, 48.863785754181684], [2.378598592709655, 48.86390540184239], [2.378500148967936, 48.864024517641674], [2.378402099189754, 48.86414416510853], [2.378303654547588, 48.86426328072051], [2.378205605231825, 48.86438292800767], [2.378107159699939, 48.86450204253306], [2.378089347019359, 48.86450586121259], [2.377973434236881, 48.864469557631544], [2.377863550788666, 48.86443701754983], [2.377854080612602, 48.86443660228832], [2.377663481922902, 48.86447403124339], [2.377474589940341, 48.864511317683046], [2.377283990715392, 48.86454874513198], [2.377095098179471, 48.86458603186948], [2.376904498408641, 48.8646234587115], [2.376715605340968, 48.86466074394829], [2.376526712002915, 48.86469802888566], [2.37633611140323, 48.864735455718005], [2.376147217522683, 48.864772740053915], [2.375956616377024, 48.864810166279405], [2.37576772195399, 48.86484745001387], [2.37557711889928, 48.86488487562534], [2.375388223933763, 48.86492215875833], [2.375197621706856, 48.86495958287076], [2.375008726198971, 48.86499686540227], [2.374818123415327, 48.865034289807085], [2.374784436734105, 48.86504841967104], [2.374794612794644, 48.865063854280145], [2.374976116207615, 48.86510668286048], [2.375170593535062, 48.86515276526536], [2.375352097566898, 48.865195593272055], [2.375546575558733, 48.865241675062336], [2.375728080220208, 48.86528450159608], [2.375922558876625, 48.86533058277171], [2.376104064146177, 48.865373409631154], [2.376298543466973, 48.86541949019211], [2.376480049366138, 48.86546231557864], [2.376674529351507, 48.865508395524984], [2.376856035858752, 48.86555122123716], [2.37705051787159, 48.86559730057593], [2.377232023634575, 48.86564012570738], [2.377332735269563, 48.86566398672565], [2.377334278375316, 48.86566626738982]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 35, "roussel_fabien": 20.0, "nb_emargement": 1353.0, "nb_procuration": 77.0, "nb_vote_blanc": 14.0, "jadot_yannick": 157.0, "le_pen_marine": 63.0, "nb_exprime": 1337.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1696.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1353, "quartier_bv": "42", "geo_point_2d": [48.86472004345908, 2.3785133781071868], "melenchon_jean_luc": 445.0, "poutou_philippe": 7.0, "macron_emmanuel": 467.0}, "geometry": {"type": "Point", "coordinates": [2.3785133781071868, 48.86472004345908]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "61a4e243153190f2e1d0bdc36ff5b6ceb33c4bdb", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 39, "zemmour_eric": 72.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "12-43", "geo_shape": {"coordinates": [[[2.407310294362036, 48.83202054604215], [2.40714611768917, 48.83194304520842], [2.40697180306235, 48.83198580568402], [2.406797623915479, 48.8320259728055], [2.4066233073632812, 48.83206873276331], [2.406449127670914, 48.83210889937428], [2.406274810555569, 48.83215165882098], [2.406100630317507, 48.83219182492149], [2.406098181422974, 48.832192259746215], [2.405924934670083, 48.8322118131595], [2.405735030842085, 48.83222744596585], [2.405561783836147, 48.832246998852504], [2.405371879771073, 48.832262631081804], [2.405198632501733, 48.83228218434114], [2.405008729561821, 48.832297816000114], [2.405007604587789, 48.83229791113269], [2.404778742441029, 48.83231094820251], [2.404588837908195, 48.83232657918762], [2.404359975520475, 48.83233961635511], [2.40417007211988, 48.832355246681715], [2.404167262194614, 48.832355681467156], [2.404041717239805, 48.83238967437054], [2.403842927564793, 48.83243554065492], [2.403839834386878, 48.83243656130689], [2.40371428766164, 48.83247055385733], [2.403604081117255, 48.83251935078646], [2.403472683143837, 48.8325978523059], [2.403362476114468, 48.83264664810761], [2.403360143898484, 48.832647954044525], [2.403228745233567, 48.83272645528702], [2.403095045815092, 48.83282025390377], [2.402963646326964, 48.83289875394358], [2.402829947351833, 48.8329925522564], [2.402687875958419, 48.83309293692707], [2.40255417598905, 48.833186734915344], [2.402412103525054, 48.83328712014039], [2.402278401199173, 48.83338091779733], [2.402240607723051, 48.833407654123164], [2.402260188955472, 48.83343563680621], [2.402442882733282, 48.83350206755173], [2.402601560674931, 48.83355898149498], [2.402784253957682, 48.833625411704915], [2.402942932647492, 48.833682325189024], [2.403101611683791, 48.83373923845971], [2.403284306235521, 48.83380566789523], [2.403442986019981, 48.83386258070676], [2.40358119566453, 48.83391283396229], [2.403621882804179, 48.83392095215009], [2.403646833859964, 48.83388177790937], [2.403742730831584, 48.833776865726335], [2.403860501036926, 48.83364942726066], [2.4038806844599963, 48.83364711216162], [2.4040337791851423, 48.83372866324394], [2.404178102993699, 48.833806821195296], [2.40433119865318, 48.83388837188529], [2.404475521987564, 48.833966529459886], [2.40462861994366, 48.83404807976432], [2.404772944166149, 48.83412623696886], [2.4049260416943072, 48.834207786874195], [2.405070368167188, 48.8342859437155], [2.405076741138571, 48.834287858683396], [2.405268829586152, 48.83430925201699], [2.405440565069874, 48.83432799417273], [2.4056123006874452, 48.83434673518225], [2.405804388199232, 48.83436812854719], [2.405816560108748, 48.83436543426165], [2.405921201634706, 48.834292278120564], [2.406033295576626, 48.83421499393648], [2.406137937858709, 48.83414183760271], [2.406250031155901, 48.83406455320512], [2.4062698587547082, 48.83406465702639], [2.406343200950006, 48.834116852346085], [2.406380816758264, 48.8341430207798], [2.406381970126756, 48.83415431262819], [2.406303599496064, 48.834227828917506], [2.406224604700092, 48.834299191673054], [2.406146233629651, 48.83437270784975], [2.406067237036507, 48.8344440704854], [2.40606558015115, 48.834452703349285], [2.406141634923875, 48.83457881749005], [2.406217170015561, 48.834703942384216], [2.406293226894241, 48.83483005550769], [2.406368762703619, 48.83495518117739], [2.406359605423699, 48.83497942214835], [2.406377904718759, 48.83498874493754], [2.40640307095375, 48.83503043213037], [2.40645344097159, 48.83511386963666], [2.406536285961352, 48.835235347642026], [2.40661182295181, 48.83536047221354], [2.40669467007515, 48.83548194918985], [2.406713646524739, 48.83548614081595], [2.406885793017592, 48.83542376751652], [2.407055888506835, 48.83536177322488], [2.407228034179451, 48.83529939942594], [2.40739812749353, 48.83523740463397], [2.407570272345913, 48.835175030335584], [2.407740366209451, 48.835113035056786], [2.407912510241596, 48.83505066025888], [2.408082601940186, 48.83498866358049], [2.408254745152092, 48.83492628828311], [2.408424836027617, 48.83486429201051], [2.408596979781588, 48.8348019162204], [2.408767069844259, 48.83473991945423], [2.4089392114156922, 48.83467754315794], [2.409109300665512, 48.83461554589817], [2.409281441416706, 48.83455316910241], [2.409451531226156, 48.83449117045655], [2.409623671157107, 48.83442879316137], [2.40979375878132, 48.834366794914544], [2.409965897891931, 48.83430441711987], [2.410135986065475, 48.834242418386225], [2.410308124355947, 48.83418004009211], [2.410478210364622, 48.834118039958916], [2.410650347834749, 48.83405566116535], [2.410820433020396, 48.833993661437944], [2.41099257103256, 48.83393128215165], [2.411162655405351, 48.833869281930674], [2.411165706173132, 48.83386827167455], [2.411177926822401, 48.833848804840116], [2.411189994424514, 48.833840112534055], [2.407310294362036, 48.83202054604215]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 43, "roussel_fabien": 15.0, "nb_emargement": 889.0, "nb_procuration": 38.0, "nb_vote_blanc": 13.0, "jadot_yannick": 49.0, "le_pen_marine": 91.0, "nb_exprime": 868.0, "nb_vote_nul": 8.0, "arr_bv": "12", "arthaud_nathalie": 4, "nb_inscrit": 1157.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 889, "quartier_bv": "45", "geo_point_2d": [48.83352324684886, 2.4067683188990223], "melenchon_jean_luc": 287.0, "poutou_philippe": 9.0, "macron_emmanuel": 260.0}, "geometry": {"type": "Point", "coordinates": [2.4067683188990223, 48.83352324684886]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e3d63e32fc2faaa9706eaa027b69b39c35df1f9f", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 152, "zemmour_eric": 107.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-43", "geo_shape": {"coordinates": [[[2.30779564622692, 48.837707499342294], [2.30780835464701, 48.83768742518099], [2.307891086037082, 48.83762177586827], [2.307976121827611, 48.837555456305786], [2.307977621734533, 48.83755444059993], [2.308127890575183, 48.83746761221814], [2.308279149410676, 48.83738201521131], [2.308429417251966, 48.837295186437316], [2.308580673717672, 48.8372095899274], [2.308730940559614, 48.83712276076125], [2.308882196029932, 48.83703716385691], [2.309032463234772, 48.836950334306415], [2.309183717721523, 48.836864736108275], [2.309333982552762, 48.836777907057076], [2.309485236044028, 48.83669230846449], [2.309635501250185, 48.83660547812967], [2.309786753734061, 48.836519880041934], [2.309889652531842, 48.836461645873975], [2.310039916399484, 48.83637481501325], [2.310069360648848, 48.83636823686741], [2.31004156466552, 48.83631287220879], [2.309979941914495, 48.836236178071], [2.309916867685157, 48.83615974263454], [2.309915513735183, 48.83615354714554], [2.309934705403335, 48.83609472023647], [2.309953730290491, 48.8360382999777], [2.309952519528389, 48.83603219705046], [2.309859973023751, 48.83591469080028], [2.309771620056662, 48.83580327942435], [2.309683268829563, 48.835691867979904], [2.309590723524197, 48.835574362385], [2.30950237172134, 48.835462949877005], [2.309409827230176, 48.83534544411806], [2.309390330246047, 48.83534204613986], [2.30934071167115, 48.83536327532761], [2.309292387384033, 48.835384088364194], [2.3092729794491422, 48.83538085816455], [2.309182602346641, 48.83527132957679], [2.309090408004956, 48.83515996648315], [2.309000031657126, 48.83505043863514], [2.3089078394584472, 48.834939075386636], [2.308817462526835, 48.834829546471845], [2.308725271108857, 48.83471818306064], [2.308634894931998, 48.834608654885656], [2.308542704294612, 48.83449729131177], [2.3084432308416423, 48.83448235592069], [2.308432289271757, 48.83450919201165], [2.308366683862943, 48.83457620989619], [2.30826185886644, 48.83468016302478], [2.308151475290662, 48.834792921141535], [2.3080466494292953, 48.83489687406141], [2.307936264929088, 48.83500963195766], [2.307831439552997, 48.835113585575996], [2.307721052777999, 48.83522634234466], [2.307616226536926, 48.83533029575425], [2.307511398527502, 48.83543424815508], [2.307401011731513, 48.835547005503265], [2.307296184219299, 48.83565095770326], [2.307185795136539, 48.835763714823095], [2.307080966759426, 48.83586766681431], [2.306970576752187, 48.83598042371367], [2.306865747509961, 48.83608437549621], [2.306755357940555, 48.83619713218295], [2.3067537941591922, 48.83620469313403], [2.306790686944992, 48.83628273770289], [2.306802079641582, 48.83639622801657], [2.30679882625648, 48.83640267834382], [2.30672818298709, 48.836457040664286], [2.306663289470884, 48.8365056281268], [2.306660070516814, 48.83650743968971], [2.306585452713666, 48.8365376388465], [2.306540389712205, 48.83654612489134], [2.306533202404716, 48.83654801147569], [2.306534071133412, 48.83660314260405], [2.30664221691959, 48.8367234875974], [2.306749661116758, 48.83683720723788], [2.306857806524063, 48.836957552003334], [2.306965251662091, 48.83707127232562], [2.307072697280896, 48.8371849916406], [2.307180845517933, 48.83730533608436], [2.307288292089575, 48.83741905518186], [2.307396439947551, 48.83753939939764], [2.307503887460191, 48.83765311917694], [2.307612037663931, 48.837773463180504], [2.307658504506676, 48.83779587824395], [2.307684109254331, 48.83778764970376], [2.307728434482097, 48.837750456446926], [2.307773597256765, 48.83771461887457], [2.30779564622692, 48.837707499342294]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 43, "roussel_fabien": 17.0, "nb_emargement": 1149.0, "nb_procuration": 59.0, "nb_vote_blanc": 11.0, "jadot_yannick": 89.0, "le_pen_marine": 68.0, "nb_exprime": 1138.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1377.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "57", "geo_point_2d": [48.83620183381766, 2.308262099951946], "melenchon_jean_luc": 197.0, "poutou_philippe": 3.0, "macron_emmanuel": 449.0}, "geometry": {"type": "Point", "coordinates": [2.308262099951946, 48.83620183381766]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ef1365adc5ec1a8e0fb52db962946e38571b80f1", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 74, "zemmour_eric": 67.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "5-14", "geo_shape": {"coordinates": [[[2.352043078785564, 48.84218421463849], [2.352046573166631, 48.842211988801544], [2.352066041090054, 48.84234079125781], [2.352086167869624, 48.842470857270975], [2.352105635987694, 48.84259965969092], [2.352125762965941, 48.84272972566725], [2.3521452312785582, 48.84285852805086], [2.352165358455585, 48.8429885939903], [2.352184826951575, 48.84311739723693], [2.352204954327387, 48.843247463139576], [2.352224423029108, 48.84337626545054], [2.352244550603707, 48.84350633131634], [2.352264019499986, 48.84363513359098], [2.352284147273374, 48.84376519941996], [2.352301841750719, 48.84379602370648], [2.352310298002861, 48.8437972314645], [2.352353558637547, 48.843787507941784], [2.35255949044166, 48.84373837529004], [2.352754485207803, 48.843694546903194], [2.35275865723424, 48.8436940172673], [2.352958749497862, 48.843689559596775], [2.35314429682155, 48.843685478023616], [2.353329845489758, 48.84368139527075], [2.353529936282379, 48.84367693753678], [2.353715484889968, 48.84367285418572], [2.353915575616912, 48.84366839580674], [2.354101124163874, 48.84366431185751], [2.354301216187554, 48.84365985284089], [2.354301312958594, 48.84365985066509], [2.354486860071241, 48.84365576700958], [2.354638437799788, 48.84365310787768], [2.354674384387975, 48.84365717623916], [2.3546872329452873, 48.843651179355], [2.354753455571568, 48.84364903633049], [2.354905033267037, 48.84364637686081], [2.354919012267753, 48.84365506002792], [2.354921877637732, 48.843710446459106], [2.354923811915555, 48.84376542855033], [2.3549291086329482, 48.84377233902379], [2.354947769836397, 48.843785512762196], [2.3550072192155582, 48.84376255603088], [2.355123070686031, 48.843700374593624], [2.355250949130681, 48.84363370529491], [2.355255649501326, 48.84362901527585], [2.355308776229089, 48.84350052562521], [2.355360477550112, 48.84337522099025], [2.355413603760634, 48.84324673126388], [2.355465304588988, 48.843121425655795], [2.355518430271257, 48.84299293675292], [2.355570130595825, 48.842867631071], [2.355621830660678, 48.842742326251994], [2.355674955581763, 48.842613836336646], [2.35572665515396, 48.84248853054454], [2.355779779558031, 48.84236004055346], [2.355831478615244, 48.842234735586835], [2.355884602502208, 48.84210624551995], [2.355936301055765, 48.841980940479566], [2.355989424425528, 48.84185245033694], [2.3560411224864453, 48.84172714432346], [2.356094245328107, 48.84159865500435], [2.356145942885178, 48.84147334891707], [2.356199065220865, 48.841344858622904], [2.356189223061529, 48.84133376597144], [2.356053136694605, 48.84131133455601], [2.355944981398192, 48.841291844091295], [2.355913233089534, 48.841284786731904], [2.355894867882207, 48.8413018485973], [2.355865469823284, 48.84138663695197], [2.355831024361733, 48.841486897736615], [2.355792175104257, 48.841598948819644], [2.355757729361501, 48.84169920956411], [2.35574170195461, 48.841706030354786], [2.35555354640241, 48.84168053531849], [2.355365961350013, 48.841654977405504], [2.355177804814569, 48.84162948087039], [2.354990221481517, 48.84160392327367], [2.35480206531419, 48.841578426146434], [2.354614482349136, 48.84155286795935], [2.354426326549934, 48.841527370239966], [2.354238743952886, 48.84150181146256], [2.354050588521816, 48.84147631315106], [2.353863006303929, 48.84145075288399], [2.353846820189327, 48.84145805192663], [2.353812623144953, 48.8415907094469], [2.353779886507086, 48.84172337213361], [2.353745689129521, 48.8418560287039], [2.353712952154638, 48.84198869134074], [2.353678755783857, 48.84212134876704], [2.353646018483107, 48.84225401045473], [2.353631517550435, 48.84226153081921], [2.353436027634502, 48.84225152843168], [2.353244997696074, 48.842241395146345], [2.3530495079299483, 48.842231392127], [2.352858478140376, 48.84222125822428], [2.352662988523965, 48.84221125457312], [2.352471958883357, 48.84220112005303], [2.352276470779055, 48.842191115777446], [2.352085439925037, 48.842180980632584], [2.352043078785564, 48.84218421463849]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 14, "roussel_fabien": 26.0, "nb_emargement": 1113.0, "nb_procuration": 88.0, "nb_vote_blanc": 18.0, "jadot_yannick": 93.0, "le_pen_marine": 61.0, "nb_exprime": 1089.0, "nb_vote_nul": 6.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1352.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1113, "quartier_bv": "18", "geo_point_2d": [48.84267680303196, 2.3540782301559897], "melenchon_jean_luc": 329.0, "poutou_philippe": 5.0, "macron_emmanuel": 385.0}, "geometry": {"type": "Point", "coordinates": [2.3540782301559897, 48.84267680303196]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a7b7d0086c4a5245a3c446a8ec47b3ce31df7e93", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 58, "zemmour_eric": 64.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-28", "geo_shape": {"coordinates": [[[2.396576506268194, 48.88040119013768], [2.3965762017707233, 48.880381456451374], [2.396545520895593, 48.88026316609681], [2.396513869216539, 48.8801465318861], [2.396483188621483, 48.88002824149033], [2.396451537214376, 48.8799116081376], [2.396419885949036, 48.87979497476409], [2.396389205774547, 48.87967668430646], [2.396388367607225, 48.87967476720892], [2.3963237141283003, 48.87956916672072], [2.396256111670946, 48.87946120856321], [2.3961914573618373, 48.879355607976244], [2.3961238554558433, 48.879247649723126], [2.3961236651947573, 48.87924736007888], [2.396106259169146, 48.87923154751393], [2.396083186084089, 48.87923904214241], [2.395894483561896, 48.87923174171183], [2.395706865644422, 48.879224628122735], [2.395518161863647, 48.87921732709205], [2.395330544049505, 48.87921021291307], [2.39514184173728, 48.87920291129601], [2.394954224026478, 48.87919579652723], [2.394765521808697, 48.87918849521618], [2.39457790283778, 48.879181379850635], [2.394389200735452, 48.87917407704705], [2.394201583231454, 48.87916696109856], [2.394012881234138, 48.879159657701756], [2.393825262469945, 48.879152541156515], [2.393636560567182, 48.8791452380657], [2.393448943269818, 48.879138120937526], [2.393260241482654, 48.87913081635416], [2.393072622925213, 48.87912369862924], [2.392883921242988, 48.87911639345267], [2.392696304152395, 48.879109275144806], [2.392690043778309, 48.879110017709074], [2.392564752441977, 48.87914608367636], [2.392332929045198, 48.87921314559071], [2.39220763585001, 48.87924921117394], [2.392166270706374, 48.879243727493034], [2.392159574914881, 48.879248829565164], [2.392014282411781, 48.879291817161686], [2.391807184495025, 48.87935729669593], [2.391661891387961, 48.87940028475985], [2.391454793970813, 48.879465762785685], [2.391309500270286, 48.8795087504177], [2.391308333696845, 48.879509165372326], [2.391150722526528, 48.87957412194446], [2.39099194183471, 48.87963749583427], [2.390834329881515, 48.87970245198231], [2.390675548402826, 48.87976582634438], [2.390517934313695, 48.879830781162106], [2.390359152058853, 48.879894155097176], [2.390340126318469, 48.879901870679824], [2.390353938729943, 48.87992693156538], [2.390444442939715, 48.88000852444828], [2.390534914568237, 48.88008814845919], [2.390625419352327, 48.88016974029405], [2.390715892900985, 48.88024936416342], [2.390717734251967, 48.88025071443328], [2.390849301264942, 48.880330807228724], [2.391022974506552, 48.880434736716694], [2.391154542453841, 48.88051482916334], [2.391328216918258, 48.88061875819113], [2.391459785799869, 48.8806988502889], [2.391510540559168, 48.88073137075818], [2.391514225967763, 48.880735129794616], [2.39154104763525, 48.88078807285311], [2.391566287026963, 48.88083955005094], [2.391569626640535, 48.88084314634817], [2.391676372639551, 48.88091344695634], [2.391782700792767, 48.8809834728443], [2.391889447367034, 48.88105377325354], [2.3919957747402423, 48.88112379803709], [2.391996504996755, 48.88112431795975], [2.392102449413442, 48.88120614796914], [2.392214455003668, 48.88129255474795], [2.392215067543506, 48.881292996729414], [2.392328280074214, 48.88136948724129], [2.39244402402985, 48.88144782241509], [2.392557237233309, 48.88152431269968], [2.392672981877434, 48.88160264764112], [2.392786195743264, 48.88167913859771], [2.39290194243931, 48.881757473313726], [2.3928968673829383, 48.8817721938437], [2.392748527802937, 48.88180803605023], [2.392616127074165, 48.881840479439596], [2.392607723548037, 48.88184653694098], [2.392571966621384, 48.88193090844956], [2.392531428347822, 48.882028647557355], [2.392533757233501, 48.88203649071194], [2.392598568536259, 48.88209227383027], [2.392660477392298, 48.88214742884549], [2.392663076925171, 48.88215182714957], [2.392681653251706, 48.88226687601523], [2.392698815685685, 48.88237922870728], [2.39271739081933, 48.88249427663743], [2.392734553405352, 48.8826066293011], [2.392751716065427, 48.88271898195089], [2.3927702927900922, 48.88283403074352], [2.3927683647781492, 48.88285132669784], [2.39279386226745, 48.882856181974], [2.392945149889684, 48.88292201989696], [2.393096537235622, 48.88298810904033], [2.39324782562387, 48.88305394657294], [2.393399212363396, 48.88312003621802], [2.393550501517457, 48.88318587336028], [2.393701890398647, 48.88325196172237], [2.393853180318624, 48.88331779847429], [2.394004569967443, 48.88338388644572], [2.394155860642976, 48.88344972370653], [2.394307249695855, 48.88351581128046], [2.394458541147666, 48.88358164725162], [2.394609932331747, 48.88364773444176], [2.394641373085694, 48.88365294222733], [2.394645671586408, 48.88365091979466], [2.394683161638794, 48.88350935048292], [2.394716149770201, 48.88338869737905], [2.394718509164818, 48.88338503286432], [2.39480102247339, 48.88330956219633], [2.394877595893306, 48.88324016876656], [2.394878758698689, 48.88323890929248], [2.394970765991475, 48.88311793743571], [2.395063213003028, 48.88299734363705], [2.39515521806665, 48.882876372504334], [2.395247665585802, 48.88275577854371], [2.395252007546223, 48.88275247117077], [2.3953936559258002, 48.88268699168131], [2.39553991565269, 48.88261939850503], [2.395681563308313, 48.88255391866704], [2.395827822298214, 48.88248632423158], [2.395969469229882, 48.882420844045036], [2.396115728835897, 48.88235324925657], [2.396120875310652, 48.88234311462709], [2.396063162078062, 48.88222555675709], [2.396009600606311, 48.882106760733535], [2.395951886523405, 48.88198920277776], [2.395898325548469, 48.881870406678935], [2.39590125172028, 48.88186183287417], [2.396011998765014, 48.88178053491537], [2.396169546599055, 48.88166569688617], [2.396280292818295, 48.881584397765394], [2.396437839467368, 48.88146955936269], [2.396548584840267, 48.88138826087852], [2.396556459673781, 48.88138683196996], [2.396566828973238, 48.881374181240766], [2.396568245238843, 48.88137328185752], [2.396665469091933, 48.8813198724873], [2.3967601493008193, 48.881272382181315], [2.396760861431938, 48.881271999058846], [2.396779737060859, 48.88125954495566], [2.396759410771409, 48.88124290751137], [2.39666585323701, 48.8811387670283], [2.3965763264912843, 48.8810391227285], [2.396486800088247, 48.880939478352765], [2.396393243643968, 48.88083533762795], [2.396303717951968, 48.88073569219758], [2.396210162229552, 48.880631552209685], [2.396120637238055, 48.880531906624], [2.396027082247814, 48.880427766473765], [2.396038292558284, 48.880414195513424], [2.3961725908837233, 48.880410809784216], [2.396345766387487, 48.88040803722689], [2.396480066050968, 48.88040465026036], [2.396551616515596, 48.88040350455926], [2.396576506268194, 48.88040119013768]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 28, "roussel_fabien": 24.0, "nb_emargement": 1378.0, "nb_procuration": 177.0, "nb_vote_blanc": 11.0, "jadot_yannick": 134.0, "le_pen_marine": 46.0, "nb_exprime": 1361.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1738.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1378, "quartier_bv": "75", "geo_point_2d": [48.88093261241505, 2.3939770252781996], "melenchon_jean_luc": 586.0, "poutou_philippe": 6.0, "macron_emmanuel": 387.0}, "geometry": {"type": "Point", "coordinates": [2.3939770252781996, 48.88093261241505]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "92b9fadb7cc9273c22387dc5b2d49097f8eb4c82", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 126, "zemmour_eric": 215.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "16-65", "geo_shape": {"coordinates": [[[2.299877844092862, 48.865307021284764], [2.299823143832235, 48.86528819177859], [2.299632194273002, 48.86528058391109], [2.299426715171567, 48.86527244011514], [2.29923576709115, 48.86526483162303], [2.299030286750639, 48.8652566871384], [2.298839338785864, 48.86524907801368], [2.298633858569571, 48.86524093284831], [2.298442910720345, 48.86523332309107], [2.29823743062818, 48.865225177245], [2.298046482894716, 48.865217566855144], [2.297841002926689, 48.86520942032834], [2.297650055308794, 48.86520180930593], [2.297444576827995, 48.865193662106435], [2.2972536279627, 48.865186050443405], [2.297048149606059, 48.86517790256319], [2.296857202219635, 48.86517029027559], [2.296651722623981, 48.865162141706705], [2.296460775353254, 48.86515452878655], [2.29625529589403, 48.86514637863758], [2.296064348738913, 48.86513876508489], [2.295858869391733, 48.86513061515453], [2.295667922352436, 48.86512300096922], [2.29546244449243, 48.86511485036617], [2.295271496205783, 48.8651072355403], [2.295066018470088, 48.865099084256514], [2.294875070299179, 48.86509146879804], [2.2948621280723103, 48.86509632997689], [2.294767945901226, 48.86521705865996], [2.294669787904723, 48.865341843277626], [2.294652055541874, 48.86534589017144], [2.294491278342402, 48.86529775094488], [2.294338399903598, 48.86525180481888], [2.294177623296615, 48.865203664267625], [2.294024746773524, 48.8651577177451], [2.293871869157224, 48.86511177101736], [2.29371109340123, 48.86506363073261], [2.293709471318013, 48.865063222747956], [2.293580038852279, 48.86503680668284], [2.293343843283029, 48.86498842306304], [2.293214411188536, 48.86496200660071], [2.293199045915094, 48.86496560499352], [2.2930917258936, 48.86507167813871], [2.292984624413179, 48.865176782971844], [2.292877303519956, 48.865282855904574], [2.292770202535857, 48.86538796053382], [2.292662880770998, 48.86549403325399], [2.292555777544837, 48.865599138562565], [2.292551962241297, 48.865601631491394], [2.292380729037759, 48.86567634175166], [2.292209144604925, 48.86575088060993], [2.29203791178217, 48.86582559037772], [2.291866326355022, 48.86590012963378], [2.291695091199184, 48.86597483799368], [2.291523504789937, 48.866049376748194], [2.291352270014991, 48.866124084615606], [2.2911806826236463, 48.8661986228686], [2.291009445503388, 48.866273330227415], [2.2908378571299393, 48.86634786797885], [2.290814669979866, 48.86635571950642], [2.290822217484951, 48.86637167821353], [2.290846634075279, 48.866408700703765], [2.290878590057917, 48.86645797652292], [2.290873117985511, 48.866469206650955], [2.2907322983029, 48.86652546829997], [2.290597202668225, 48.866581609921454], [2.29045638238368, 48.86663787124012], [2.2903212861480062, 48.866694013443734], [2.290180465273878, 48.86675027353275], [2.290045369812474, 48.8668064154273], [2.29002024836262, 48.86681523651543], [2.290027629149541, 48.866830812054786], [2.290100075217, 48.866935165143644], [2.290189850574644, 48.867062040816364], [2.29026229728863, 48.867166393785205], [2.290332173262871, 48.8672651429038], [2.290341761189676, 48.86726821526948], [2.290363171326461, 48.867261954141554], [2.290551660803119, 48.867236940096014], [2.290734544974229, 48.86721189433582], [2.29091742895714, 48.86718684919496], [2.291105917895899, 48.86716183427485], [2.29111324572725, 48.86716219514677], [2.291271923867331, 48.867200089999876], [2.291424239398964, 48.8672364324691], [2.291576555143121, 48.86727277474326], [2.2917352339570582, 48.867310668978405], [2.291887550135233, 48.867347010854374], [2.292046229389301, 48.86738490557392], [2.2920548545873682, 48.86739543130147], [2.292023618202493, 48.86748255886158], [2.291992166358921, 48.86756767778769], [2.291960931128955, 48.86765480532593], [2.291929479091182, 48.867739923322986], [2.291935531267668, 48.867749693670255], [2.292124972010742, 48.86782729658456], [2.292304547102244, 48.86790021820896], [2.292484121321234, 48.86797314045039], [2.292673563706344, 48.86805074158145], [2.2926862186921992, 48.868051341587154], [2.292863874040167, 48.86800007537351], [2.293042815090183, 48.86794877062338], [2.293220469737406, 48.86789750387571], [2.29339941008388, 48.86784619858773], [2.293577064030354, 48.86779493130602], [2.29375600503643, 48.867743625488195], [2.293933658269963, 48.867692358571745], [2.294112597209347, 48.86764105220798], [2.294290249754316, 48.867589783858236], [2.294469189353291, 48.86753847696465], [2.2946468398343622, 48.86748720807283], [2.29482577872978, 48.86743590064137], [2.2948435029908483, 48.86744025808442], [2.29491568899412, 48.86753951899579], [2.294986767287334, 48.867638655513645], [2.295058953850783, 48.86773791542157], [2.295130034050493, 48.86783705184459], [2.295202221161751, 48.86793631164827], [2.2952733005295, 48.868035448859686], [2.295287965221942, 48.868040462728956], [2.295508023539385, 48.86801514740996], [2.2957263602001943, 48.8679903117008], [2.295946416717425, 48.867964996465915], [2.296164752959124, 48.867940159955964], [2.296177547175935, 48.86794326959054], [2.296312717769601, 48.86805042209638], [2.296444599310767, 48.86815485706058], [2.296579769627581, 48.86826201013557], [2.296711652251949, 48.86836644388628], [2.296843534041946, 48.86847087747378], [2.296978707362451, 48.868578030075646], [2.297110590223614, 48.86868246334893], [2.297245764642495, 48.8687896156287], [2.2973776485625, 48.86889404948699], [2.297512824091898, 48.869001200545355], [2.297513291050515, 48.869001551333106], [2.297639435536673, 48.869091511286165], [2.297758547477647, 48.86917620373497], [2.297884694173579, 48.869266163423354], [2.298003805537358, 48.86935085650596], [2.29812291866366, 48.8694355485723], [2.298249066616893, 48.86952550785555], [2.298339810747454, 48.86955169818825], [2.298340066889351, 48.86955150722977], [2.29835409618423, 48.86952753556579], [2.298424605160636, 48.86940706508587], [2.29849683221222, 48.86928279859003], [2.298567340527157, 48.869162327999405], [2.298639568262082, 48.86903806139793], [2.298710074552479, 48.86891759068852], [2.298782301607568, 48.8687933239734], [2.29885280859979, 48.86867285316128], [2.298925033623985, 48.86854858542523], [2.298925687528856, 48.868547099937366], [2.298963214141506, 48.86842257765502], [2.299003979027009, 48.86828908534205], [2.299041506641897, 48.86816456211475], [2.299082271112859, 48.86803107064324], [2.299119798354623, 48.86790654736236], [2.299160562435152, 48.867773054933764], [2.299198089303997, 48.8676485315993], [2.299238852969796, 48.86751504001219], [2.299276379465628, 48.86739051662415], [2.299317142741104, 48.867257024079926], [2.299354668863826, 48.86713250063828], [2.29939543172469, 48.866999008935544], [2.299432957474512, 48.86687448544033], [2.299473719944858, 48.866740992780514], [2.299511243958564, 48.86661646922371], [2.299552007377531, 48.86648297741338], [2.299589531018253, 48.866358453803024], [2.299630292683598, 48.866224961027676], [2.299667817314447, 48.86610043737167], [2.29970857856531, 48.86596694543779], [2.299746102823076, 48.865842421728246], [2.299786863683542, 48.86570892883731], [2.299824387568434, 48.86558440507416], [2.299861911261852, 48.86545988218454], [2.299902671526151, 48.86532638920803], [2.299877844092862, 48.865307021284764]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 65, "roussel_fabien": 8.0, "nb_emargement": 1115.0, "nb_procuration": 60.0, "nb_vote_blanc": 8.0, "jadot_yannick": 41.0, "le_pen_marine": 60.0, "nb_exprime": 1108.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1432.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1116, "quartier_bv": "64", "geo_point_2d": [48.86674583875008, 2.2957166698030083], "melenchon_jean_luc": 92.0, "poutou_philippe": 2.0, "macron_emmanuel": 542.0}, "geometry": {"type": "Point", "coordinates": [2.2957166698030083, 48.86674583875008]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e9e753bef32fcd6a7c114fcfe43eb39029796efa", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 63, "zemmour_eric": 78.0, "hidalgo_anne": 41.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-14", "geo_shape": {"coordinates": [[[2.372672374048178, 48.855115785584175], [2.372671588567817, 48.855118993046744], [2.372578898620826, 48.85516866564355], [2.372472440930738, 48.85522622881432], [2.372322161816637, 48.855306763469535], [2.372215703560673, 48.85536432640467], [2.372205585021156, 48.85536628246653], [2.37210222022497, 48.85535859387779], [2.371992979233183, 48.855350743953814], [2.371980230187867, 48.855354631485746], [2.371867778603651, 48.855463876197334], [2.371761380585233, 48.85556701451259], [2.37165498079371, 48.85567015181718], [2.371542527846633, 48.855779396192105], [2.371436128540125, 48.85588253418883], [2.371323674675842, 48.855991778337206], [2.371209591561896, 48.856103740638964], [2.371097136734284, 48.856212985451954], [2.370983054012086, 48.85632494752257], [2.370870596880087, 48.85643419119447], [2.370756513186774, 48.85654615302684], [2.370644056454382, 48.856655397370524], [2.370641776118518, 48.85666139033328], [2.370663391188596, 48.85679710521372], [2.370686839367678, 48.85693080168105], [2.370708454677655, 48.85706651562111], [2.370731904456491, 48.85720021205438], [2.370755354355668, 48.857333908466934], [2.370776970000576, 48.85746962324464], [2.370800418784612, 48.85760331870945], [2.37082203602146, 48.85773903345325], [2.370830988129945, 48.85776260657957], [2.37084317907424, 48.8577657140714], [2.371013505608413, 48.85782304628369], [2.371197390991599, 48.85788751567712], [2.371367719676603, 48.85794484738614], [2.371551605938784, 48.858009315328886], [2.371656491075242, 48.8580460873593], [2.371826819420892, 48.858103418399544], [2.371905821168291, 48.85813111481095], [2.371920229338548, 48.85814059311936], [2.371957547632245, 48.85813933203918], [2.372112501758254, 48.85819048799268], [2.372295718703676, 48.85825183051897], [2.372450673496279, 48.858302986029436], [2.37262204272152, 48.8583598150412], [2.372776998155762, 48.858410970124126], [2.372948368092094, 48.85846779866303], [2.373103324167773, 48.85851895331843], [2.373274694804479, 48.85857578228378], [2.373440687609855, 48.858631354332616], [2.373612058984123, 48.85868818280913], [2.373778052507424, 48.85874375438437], [2.373949424630265, 48.858800581472735], [2.374115418860582, 48.85885615347367], [2.374286793084004, 48.85891298008021], [2.374452786669423, 48.858968551600476], [2.3746241616304022, 48.859025377718154], [2.3747901559445372, 48.85908094786551], [2.37496153163238, 48.85913777439358], [2.375127526664431, 48.859193344067336], [2.375298903090036, 48.85925017010653], [2.375464898840001, 48.8593057393067], [2.375636276003164, 48.85936256485698], [2.375762181113245, 48.85940471215575], [2.375774491726236, 48.85940425834825], [2.375786340839143, 48.85938566950324], [2.375845003392453, 48.859273229772796], [2.375903626856303, 48.85916004963718], [2.375962288902472, 48.859047609826376], [2.376020911868457, 48.85893442871099], [2.376079573396721, 48.858821989719125], [2.376138194491256, 48.85870880851616], [2.376196855512398, 48.85859636944395], [2.376255477461027, 48.85848318816762], [2.376256194257056, 48.85848206052471], [2.376346773573555, 48.858362619024994], [2.376437671357678, 48.8582431818036], [2.376528249853533, 48.85812373924153], [2.37661914679415, 48.85800430275582], [2.376633617632594, 48.85799038428717], [2.376618267144801, 48.85797883044238], [2.376465540133725, 48.85790879663921], [2.376291739316726, 48.85782932296151], [2.376139013172022, 48.85775928963147], [2.375965211988893, 48.857679815461715], [2.375812486732194, 48.85760978080622], [2.375638687908623, 48.85753030615865], [2.375485963529059, 48.857460271076995], [2.375312165702251, 48.857380795944486], [2.375159442189035, 48.85731076133596], [2.374985645358982, 48.85723128571852], [2.374832922733678, 48.857161249784575], [2.374659126900382, 48.85708177368221], [2.3745064051522062, 48.85701173732208], [2.374332608952891, 48.85693226072768], [2.374179888070937, 48.85686222484073], [2.374175905749905, 48.85685029573429], [2.374205026489139, 48.85681747789671], [2.374235542876194, 48.85678522404674], [2.3742314150848842, 48.85677292364886], [2.374054536811899, 48.85669699193188], [2.3738758696042153, 48.856621620772465], [2.37369899235208, 48.85654568941891], [2.373520327540382, 48.856470317725545], [2.373516158808688, 48.85645792445114], [2.373615733927035, 48.85635431636478], [2.373714898564582, 48.856250468611314], [2.373814474254142, 48.85614686034736], [2.373913638111677, 48.85604301151051], [2.374013211635941, 48.855939403953954], [2.3741123760653062, 48.85583555494018], [2.37421194880885, 48.85573194629959], [2.37431111107366, 48.85562809799386], [2.374306468509595, 48.855615543075686], [2.374204075963966, 48.855575974040015], [2.374123720551674, 48.855544554074996], [2.374116766845919, 48.855543321568064], [2.373898970919991, 48.85554402944514], [2.373675894040456, 48.85554357880127], [2.373458099470307, 48.85554428588303], [2.373235021230553, 48.85554383441011], [2.373222020995911, 48.8555374501797], [2.373173792959568, 48.85543246642802], [2.373126908393699, 48.855330132874634], [2.373078680740778, 48.85522514906497], [2.3730317965482453, 48.85512281545522], [2.373025638381322, 48.85511765779018], [2.372975911567695, 48.85509843981779], [2.372918279079558, 48.85507590406006], [2.372911865447746, 48.85506660803778], [2.372893303180498, 48.85506420752123], [2.372862838815206, 48.85505229514677], [2.372830154253177, 48.85503936925109], [2.3728144195324, 48.85504017713602], [2.3727504345671, 48.855075396667075], [2.37269284623258, 48.85510625816922], [2.372672374048178, 48.855115785584175]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 14, "roussel_fabien": 12.0, "nb_emargement": 1485.0, "nb_procuration": 88.0, "nb_vote_blanc": 8.0, "jadot_yannick": 147.0, "le_pen_marine": 59.0, "nb_exprime": 1479.0, "nb_vote_nul": 2.0, "arr_bv": "11", "arthaud_nathalie": 9, "nb_inscrit": 1849.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1489, "quartier_bv": "43", "geo_point_2d": [48.857321902222154, 2.3733681399080355], "melenchon_jean_luc": 508.0, "poutou_philippe": 5.0, "macron_emmanuel": 529.0}, "geometry": {"type": "Point", "coordinates": [2.3733681399080355, 48.857321902222154]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ded5f3fecaee4aeb0de0dbe30e932fbcb927620b", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 47, "zemmour_eric": 67.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "20-59", "geo_shape": {"coordinates": [[[2.397301825358641, 48.85687542299192], [2.397282026715104, 48.8569170736511], [2.397261968165286, 48.8570344425994], [2.397242020260123, 48.85715178241129], [2.3972219615299313, 48.857269151328126], [2.397202013444815, 48.85738649110849], [2.397181954534043, 48.857503859993805], [2.39716200626897, 48.85762119974274], [2.397141948540617, 48.857738568603345], [2.397122000105993, 48.85785590742152], [2.397101940823959, 48.85797327714302], [2.3970819922093742, 48.85809061592975], [2.397081970215493, 48.85809074982142], [2.397062806242151, 48.85822024900363], [2.397043837339931, 48.85834642786726], [2.397024868345735, 48.85847260671356], [2.397005705452936, 48.85860210584888], [2.396986736273309, 48.85872828466006], [2.396967571828768, 48.85885778375256], [2.396948602463806, 48.85898396252861], [2.396929437830339, 48.85911346158516], [2.396910468290346, 48.85923963942679], [2.396891303468151, 48.859369138447384], [2.396872333732206, 48.859495317153204], [2.396853168721179, 48.85962481613784], [2.39683419879989, 48.85975099480853], [2.396815034962883, 48.85988049376409], [2.396796064856149, 48.86000667239963], [2.396776899467453, 48.86013617131235], [2.396780985147456, 48.8601388170929], [2.3968115236386, 48.86013657337124], [2.39700119589524, 48.86018625571644], [2.397189101924352, 48.860235476489954], [2.397378774890695, 48.86028515913157], [2.397566681643715, 48.86033437840856], [2.397756355330062, 48.860384060447295], [2.397944262786085, 48.86043328002632], [2.398133937203029, 48.86048296056293], [2.398321845372346, 48.86053217954467], [2.398511520509381, 48.860581859478394], [2.3986994293920922, 48.8606310778629], [2.398889105249212, 48.86068075719375], [2.39907701484531, 48.86072997498095], [2.399266691422512, 48.8607796537089], [2.399454601731994, 48.86082887089887], [2.399642512396499, 48.86087808779163], [2.399839338481029, 48.86092924671118], [2.399847808474639, 48.860936221326774], [2.39987720943715, 48.86105997541155], [2.399904848019339, 48.86118255508853], [2.399934250619341, 48.86130630913868], [2.399961888113777, 48.86142888786909], [2.399991290988391, 48.86155264187772], [2.400018930100249, 48.86167522147388], [2.400018784447524, 48.8616785186335], [2.399975308710167, 48.86181092223321], [2.399926050270584, 48.86196394840954], [2.399882574059265, 48.862096351941474], [2.399833315077429, 48.86224937804021], [2.3997898383923433, 48.86238178150434], [2.399748678822002, 48.862504356857855], [2.39970520035627, 48.86263675935469], [2.3996640403854532, 48.862759334650896], [2.399620562844498, 48.8628917379926], [2.399579402483363, 48.86301431233222], [2.39953592451462, 48.863146715612714], [2.399494763742536, 48.86326929079433], [2.3995032020451053, 48.86327963509142], [2.399582649574684, 48.86329968611039], [2.399654630180606, 48.863315471815476], [2.39970065523062, 48.86333428397665], [2.399701793845201, 48.86333389217897], [2.399719471346335, 48.86331051702857], [2.399737598444242, 48.86328372933063], [2.399733941775974, 48.86327835990832], [2.399772718124847, 48.86316795427105], [2.399825992912366, 48.863042812760796], [2.39986476889095, 48.86293240707024], [2.399918043216389, 48.8628072654924], [2.3999568188245872, 48.86269685974852], [2.399957127722, 48.86269595835799], [2.399966058982104, 48.862661845231536], [2.3999980274916632, 48.86255010848004], [2.4000368027389642, 48.862439702684654], [2.400068770960487, 48.86232796589184], [2.4000940820228243, 48.8622114750616], [2.400094228358876, 48.86221084085949], [2.400116187090148, 48.86208562757382], [2.40014149792863, 48.861969136708105], [2.40016345644432, 48.86184392338646], [2.400188765696785, 48.861727432478496], [2.400188877010104, 48.86172699865387], [2.40023085732641, 48.861591002694645], [2.400270792211872, 48.861454943393525], [2.400312772105492, 48.8613189464729], [2.400352706568498, 48.86118288711105], [2.4003532310157, 48.861181612671665], [2.400421433799141, 48.86106233456047], [2.400489579004763, 48.86093452943681], [2.400557781142354, 48.86081525212061], [2.400625925690334, 48.86068744689083], [2.400626580798448, 48.860686424920345], [2.400699569634279, 48.86058962808304], [2.4007987622492672, 48.860453496502835], [2.40087175043889, 48.860356699540205], [2.400970942150192, 48.860220568688], [2.401043929693617, 48.86012377160003], [2.401044882496345, 48.86012269985416], [2.401159065998108, 48.86000700500387], [2.401289875623055, 48.8598808178296], [2.401404058050792, 48.859765122720326], [2.401534867848369, 48.85963893435829], [2.401634002632632, 48.85955531711457], [2.401634937322153, 48.85955451507627], [2.401763188011095, 48.859456549467275], [2.401862322081903, 48.859372932020676], [2.401990571896325, 48.85927496615192], [2.402089705256812, 48.85919134850325], [2.402128606701743, 48.85915343403579], [2.4021078494770602, 48.859137657450745], [2.402034847287295, 48.85909814601778], [2.401877516333915, 48.8590090728818], [2.401725069099837, 48.858926562182184], [2.401567739183844, 48.85883748952446], [2.401415292942481, 48.858754978417515], [2.401360178153013, 48.85872377424169], [2.401350173137755, 48.8587161283227], [2.401337722447713, 48.85871220244972], [2.401235508426768, 48.85865433262773], [2.401093822646597, 48.85857466110406], [2.40093649487227, 48.85848558758822], [2.400794810018549, 48.85840591479915], [2.400637483265051, 48.85831684087664], [2.400495799327338, 48.858237167721434], [2.400338473594561, 48.85814809339227], [2.400196790572954, 48.858068419870946], [2.400055107974405, 48.85798874707541], [2.399897783755489, 48.85789967124769], [2.399756102072932, 48.85781999808602], [2.399598778864366, 48.857730922750946], [2.39945709810826, 48.85765124832387], [2.399336489935677, 48.857582959996684], [2.399322853104481, 48.85757271904093], [2.399314869076555, 48.85757046117581], [2.399278155078706, 48.85754967375441], [2.39908062620064, 48.85744207528401], [2.398923305287964, 48.857352999030574], [2.398920957901324, 48.85735197007881], [2.398787050741399, 48.85730548287733], [2.398606775938089, 48.857243105779865], [2.398472869338261, 48.85719661822225], [2.398292593924859, 48.85713424063847], [2.398159386919407, 48.857088473919084], [2.397979112255366, 48.857026095857016], [2.397845904428474, 48.85698032967665], [2.397843585194712, 48.85697969835615], [2.397713251170427, 48.85695499389905], [2.397546633926048, 48.856921154535215], [2.397416301551877, 48.8568964497603], [2.3973173465999, 48.856876351048555], [2.397301825358641, 48.85687542299192]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 59, "roussel_fabien": 32.0, "nb_emargement": 1395.0, "nb_procuration": 79.0, "nb_vote_blanc": 13.0, "jadot_yannick": 131.0, "le_pen_marine": 64.0, "nb_exprime": 1380.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 9, "nb_inscrit": 1725.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1395, "quartier_bv": "79", "geo_point_2d": [48.85922760983899, 2.399096346981652], "melenchon_jean_luc": 597.0, "poutou_philippe": 6.0, "macron_emmanuel": 359.0}, "geometry": {"type": "Point", "coordinates": [2.399096346981652, 48.85922760983899]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a2762fa6f8b9dc1fa812a3dd77e707a884b293cb", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 37, "zemmour_eric": 48.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "10-10", "geo_shape": {"coordinates": [[[2.363495610355337, 48.870038132374475], [2.363475976625378, 48.870054511953846], [2.363337023876896, 48.87015402586915], [2.363205419809971, 48.87024687054326], [2.363066466031489, 48.87034638412716], [2.362934859644214, 48.8704392275811], [2.362795904835624, 48.87053874083358], [2.362664298832344, 48.87063158488043], [2.36252534299384, 48.8707310978015], [2.362393734669991, 48.87082394062814], [2.362262127229323, 48.870916784208845], [2.362123169861595, 48.87101629663735], [2.361991560089434, 48.87110913989716], [2.361852601691769, 48.8712086519942], [2.3618514294647133, 48.8712198730853], [2.361948659273041, 48.87131227051752], [2.362073886329528, 48.87143084212478], [2.362171116915141, 48.87152324025797], [2.36229634499622, 48.87164181071056], [2.362393576370344, 48.87173420864536], [2.362518805464905, 48.871852778842566], [2.362616036264183, 48.87194517657175], [2.362636166221048, 48.87196197007228], [2.362636465126662, 48.871963613854554], [2.362659174309372, 48.87197841915875], [2.362746965717424, 48.87205166187855], [2.362850692684856, 48.87213934098139], [2.362958612060154, 48.87222937787705], [2.363062339737745, 48.87231705678236], [2.363078233470523, 48.87231985195684], [2.363281536392793, 48.872265190827775], [2.363486757338408, 48.8722117374698], [2.363690059409996, 48.87215707564153], [2.363895279521402, 48.87210362067863], [2.364098580742298, 48.87204895815125], [2.364303799997521, 48.87199550338198], [2.364319439474605, 48.871998239484746], [2.36445838071291, 48.872112437690404], [2.364593467423383, 48.8722233632549], [2.364732409862968, 48.87233756111924], [2.364867497740746, 48.87244848635187], [2.364876696743782, 48.87245179795684], [2.365082767475057, 48.87246612312847], [2.3652822102325493, 48.87247962408089], [2.365488279822149, 48.87249394854688], [2.365687722791388, 48.87250744882327], [2.36589379396576, 48.87252177259801], [2.36609323715758, 48.87253527129915], [2.366292680441727, 48.87254877056716], [2.366498751946031, 48.87256309329988], [2.366572731669385, 48.8725595825841], [2.366576021809521, 48.872553833446695], [2.366738248281658, 48.87246172824207], [2.366897744610867, 48.87236907506619], [2.367059968564592, 48.87227697030221], [2.367219463755795, 48.872184316682166], [2.367381687939422, 48.87209221057472], [2.367541180618435, 48.87199955740261], [2.367703403657667, 48.871907450843715], [2.367862896561962, 48.87181479723463], [2.36786651471659, 48.87181143663249], [2.367878266375323, 48.871785616662564], [2.367820527609366, 48.87176454243512], [2.367605065613427, 48.8717958101178], [2.367389948573457, 48.871827165572604], [2.367174484696859, 48.87185843247124], [2.366959367128048, 48.87188978804975], [2.366743904097117, 48.87192105417876], [2.366528786021436, 48.8719524080824], [2.3663133211098613, 48.87198367342742], [2.366098202516392, 48.87201502655548], [2.3660816295097042, 48.87200620442251], [2.366082422001822, 48.87189291818553], [2.366085838963814, 48.87174702776168], [2.366086631442835, 48.871633741498094], [2.366090049739291, 48.871487851047114], [2.366090842205211, 48.87137456475693], [2.366094259109617, 48.87122867426437], [2.3660950515624393, 48.871115387947604], [2.366089256042707, 48.87110789005058], [2.365881064315037, 48.87101142597051], [2.365693185850042, 48.87093573325941], [2.365673260120019, 48.87093022084367], [2.365644955011646, 48.87093952738047], [2.365507085189538, 48.87104832973587], [2.365375192901915, 48.871151761293305], [2.365237321954597, 48.871260563317065], [2.365105428582968, 48.87136399545668], [2.364983720107476, 48.87146004125444], [2.364851827090437, 48.87156347310318], [2.36483566343996, 48.871576228079256], [2.364827985211872, 48.87157924688263], [2.364591831321794, 48.87161138052738], [2.364408195327043, 48.87163198517982], [2.36439236054825, 48.87162571095443], [2.364338230603122, 48.87150410192633], [2.364286581171434, 48.871385700481774], [2.364232451722572, 48.87126409137943], [2.364180802769309, 48.871145689863525], [2.364126673816911, 48.8710240806869], [2.364075025342064, 48.87090567909962], [2.36402089688592, 48.87078406984878], [2.363969248889485, 48.87066566819014], [2.36391512092969, 48.870544058865036], [2.363863473400778, 48.870425658034335], [2.363862051872531, 48.87042350555624], [2.363777056020761, 48.87033946654685], [2.363684214078812, 48.87023773623013], [2.36359921882806, 48.870153696181035], [2.363506377564521, 48.87005196570926], [2.363495610355337, 48.870038132374475]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 10, "roussel_fabien": 23.0, "nb_emargement": 1149.0, "nb_procuration": 97.0, "nb_vote_blanc": 10.0, "jadot_yannick": 153.0, "le_pen_marine": 37.0, "nb_exprime": 1135.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 8, "nb_inscrit": 1418.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1150, "quartier_bv": "39", "geo_point_2d": [48.87156580608642, 2.3643604014108006], "melenchon_jean_luc": 391.0, "poutou_philippe": 9.0, "macron_emmanuel": 370.0}, "geometry": {"type": "Point", "coordinates": [2.3643604014108006, 48.87156580608642]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b068e5597aef58b79bd402c68cfeeb0ca3d6ad2c", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 40, "zemmour_eric": 80.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "20-19", "geo_shape": {"coordinates": [[[2.4025469179788193, 48.87594107790101], [2.402548668002516, 48.87594077546668], [2.402601746118364, 48.87581836082445], [2.402657947435855, 48.875687994556706], [2.4027110264005263, 48.87556557984477], [2.402767227171734, 48.87543521349583], [2.402820304248392, 48.87531279959987], [2.402876504473328, 48.875182433169755], [2.4029295824092243, 48.8750600183048], [2.4029857820878933, 48.87492965179353], [2.403038858146013, 48.87480723684528], [2.403095057278426, 48.874676870252834], [2.403148134185474, 48.87455445523485], [2.403204332771633, 48.87442408856128], [2.40325740779063, 48.874301674359295], [2.40331360583055, 48.87417130760452], [2.403366681708678, 48.874048892433564], [2.403422879202361, 48.87391852559766], [2.403475953202869, 48.87379611034341], [2.403532150150327, 48.873665743426315], [2.403585224989469, 48.87354332900166], [2.403641421390706, 48.87341296200344], [2.403694494362455, 48.87329054659623], [2.403750690217481, 48.87316017951683], [2.403803762674861, 48.87303776403318], [2.403859959346981, 48.872907396879405], [2.403913031279706, 48.87278498221856], [2.40392262761122, 48.87277166321379], [2.403907424631302, 48.87276072895486], [2.403749289930706, 48.872711905267785], [2.4035950228711522, 48.872663836293434], [2.40343688875754, 48.87261501218932], [2.403282622273149, 48.872566942808135], [2.403277238844689, 48.872563931982235], [2.403176491970949, 48.87246719740441], [2.403052642685241, 48.87234925994246], [2.402951898007094, 48.87225252516359], [2.402828049740434, 48.87213458744632], [2.40272730453131, 48.872037852452834], [2.402603457273271, 48.87191991537957], [2.402502714270028, 48.87182317928577], [2.402378868030806, 48.8717052419572], [2.402278124496688, 48.87160850564879], [2.402267814627339, 48.871604625698396], [2.402255287799471, 48.87160397138095], [2.402237907232983, 48.87162354133905], [2.4021563397588, 48.87175112814621], [2.402073951228528, 48.87188013442981], [2.4019923829406142, 48.87200772199488], [2.401909993598417, 48.872136728135644], [2.401828424507081, 48.87226431555934], [2.401746032989664, 48.87239332155046], [2.401664463094891, 48.8725209088328], [2.401582072128705, 48.872649914687905], [2.401500501430588, 48.87277750182883], [2.401418109652442, 48.8729065075411], [2.401336538161205, 48.873034093641394], [2.401254145560754, 48.87316310011009], [2.401235983308991, 48.87316780900357], [2.401046326878271, 48.87311146573207], [2.400854021838266, 48.873056664744894], [2.400835412387392, 48.87306267897042], [2.400803244416252, 48.8731451289167], [2.4007683470818693, 48.87323289553382], [2.400764764769395, 48.87323450269592], [2.400760710720769, 48.873250924012105], [2.40074207988188, 48.873297776838506], [2.400699167130606, 48.87340402776162], [2.400645638435598, 48.873538647129024], [2.400602725289047, 48.873644897994346], [2.4005491974502142, 48.87377951819537], [2.400506282555615, 48.873885768096834], [2.400508266392054, 48.8738932200109], [2.400627298180733, 48.87400606089488], [2.4007459410480703, 48.87411874051757], [2.400864975230261, 48.874231581149004], [2.400983617772476, 48.87434425960698], [2.401102652974626, 48.8744571008783], [2.401221297908049, 48.8745697790845], [2.401340332787613, 48.87468261919032], [2.401458978738484, 48.874795298037185], [2.401578016011713, 48.87490813789039], [2.401696661637568, 48.87502081557256], [2.4018156999307, 48.87513365606566], [2.4019343479478152, 48.87524633349602], [2.402053385907938, 48.87535917372289], [2.4021720349529723, 48.87547185089462], [2.402291075317136, 48.87558468996957], [2.402409724026732, 48.875697366875926], [2.402411611134168, 48.875699969967435], [2.402458228534447, 48.87580497564565], [2.402513189293811, 48.87592813546356], [2.4025469179788193, 48.87594107790101]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 19, "roussel_fabien": 26.0, "nb_emargement": 1211.0, "nb_procuration": 50.0, "nb_vote_blanc": 13.0, "jadot_yannick": 114.0, "le_pen_marine": 67.0, "nb_exprime": 1192.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1507.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1211, "quartier_bv": "78", "geo_point_2d": [48.87367068140319, 2.402261270916857], "melenchon_jean_luc": 449.0, "poutou_philippe": 9.0, "macron_emmanuel": 334.0}, "geometry": {"type": "Point", "coordinates": [2.402261270916857, 48.87367068140319]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dec78fa6ac639010b8d2aea640205ccf45748aab", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 139, "zemmour_eric": 118.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-62", "geo_shape": {"coordinates": [[[2.302487375088198, 48.839914723856204], [2.302507168663419, 48.83985950286531], [2.302509586252607, 48.83974074891651], [2.302512733868799, 48.83962211612981], [2.302515151434298, 48.83950336215566], [2.302518299035521, 48.83938472844428], [2.3025207165773303, 48.83926597444477], [2.302523864139417, 48.839147341607365], [2.302526281657536, 48.839028587582526], [2.302529429204756, 48.838909953820455], [2.3025345268709883, 48.83889565117897], [2.302522205747388, 48.83888823777755], [2.302335131266132, 48.838817377277394], [2.302155402297924, 48.83874784543031], [2.301975673809229, 48.838678313308876], [2.301788600824409, 48.83860745194071], [2.3017757424555922, 48.83860720330717], [2.301588048453445, 48.8386689519883], [2.30139988143766, 48.83873159968031], [2.301212186542299, 48.838793347764835], [2.301024018625688, 48.8388559948586], [2.300836322837115, 48.83891774234651], [2.300648152669353, 48.838980387934775], [2.300460455987573, 48.83904213482606], [2.300272286269318, 48.83910478072339], [2.300255705188544, 48.839102524341], [2.300173591047956, 48.83903779204561], [2.300110122190962, 48.83898729699423], [2.300109458965273, 48.83897631629731], [2.3001870574509002, 48.8389041731154], [2.300265894674595, 48.83883169086833], [2.30034349274036, 48.83875954667625], [2.300422330890155, 48.83868706432468], [2.300419551440151, 48.838674680823246], [2.300329742358194, 48.83862924726932], [2.300240772217081, 48.838584865420586], [2.30023451907637, 48.83857609415098], [2.300215672968241, 48.838573286686874], [2.300215038488445, 48.83857295020786], [2.300052730555778, 48.83848142853144], [2.299896845992705, 48.83839354709912], [2.299734539165299, 48.83830202587559], [2.299578655675134, 48.83821414401454], [2.299422772710714, 48.83812626194345], [2.299260467560087, 48.83803473915546], [2.299104585668568, 48.837946856655584], [2.298942281623173, 48.83785533432047], [2.298941222245617, 48.83784232319991], [2.299073883729541, 48.83774952823053], [2.299206331994733, 48.83765654568997], [2.299338991183606, 48.83756374950392], [2.299471438491837, 48.83747076755368], [2.299604096735834, 48.83737797105817], [2.299736544461453, 48.83728498880693], [2.29986920176078, 48.83719219200198], [2.3000016471789912, 48.8370992094338], [2.300001985103637, 48.837087133744966], [2.299862423823033, 48.83698161204062], [2.299724574352086, 48.83687669556634], [2.299585014208483, 48.83677117261916], [2.299447165852421, 48.836666255805426], [2.299307606821845, 48.83656073341405], [2.299169759580655, 48.836455816260866], [2.299159540651212, 48.836440375316144], [2.299147434350524, 48.836438949926716], [2.299117136652197, 48.83644759074674], [2.298947745171522, 48.836495204653836], [2.298777143156963, 48.83654386079196], [2.298607749690445, 48.83659147420554], [2.298437148417878, 48.836640128963225], [2.298267754328053, 48.83668774189119], [2.298097151060722, 48.83673639615182], [2.298081052580257, 48.8367504685985], [2.29808265538778, 48.83675558374156], [2.298260666056851, 48.83686956600016], [2.298432602730246, 48.83698221096069], [2.298432778536764, 48.836994859863495], [2.29829985799632, 48.83708519647485], [2.298167437627805, 48.83717558803218], [2.298034514804293, 48.83726592432608], [2.297902093516508, 48.83735631557507], [2.297769171134512, 48.83744665156746], [2.297636748927553, 48.837537042508096], [2.297503824262466, 48.83762737818305], [2.297371401136223, 48.837717768815324], [2.297372336502836, 48.83773085387298], [2.297542023481288, 48.837826707230015], [2.297712794641892, 48.83792273218419], [2.297713709068964, 48.83793586118258], [2.2976664221858583, 48.83796783410862], [2.297627050559336, 48.83799560036523], [2.297612924436276, 48.83801239952002], [2.2976328208963333, 48.838022873512024], [2.297780801272275, 48.83810952528007], [2.2979381809898722, 48.83820088536994], [2.298086163741103, 48.838287536754414], [2.29824354315702, 48.83837889731929], [2.298391526921279, 48.8384655483122], [2.298548908784391, 48.838556907569476], [2.298549668960197, 48.83855731854289], [2.298721780515349, 48.838643754441335], [2.298872715424281, 48.83871937603877], [2.299023652133564, 48.838794997448616], [2.299195765259435, 48.83888143264673], [2.299346702906683, 48.838957053638], [2.299518817091297, 48.83904348925805], [2.299669754326204, 48.83911910892342], [2.299841869581758, 48.83920554406617], [2.299992809104848, 48.83928116422019], [2.300164925443323, 48.839367597986275], [2.3001649822889663, 48.83936762619933], [2.300246131727353, 48.839407841402824], [2.300298867471119, 48.83942911060414], [2.300313116141646, 48.83941816767176], [2.300351757700749, 48.839367215033775], [2.300405426594263, 48.83929531130318], [2.300423376299221, 48.839291126284735], [2.300624191838104, 48.83935255385467], [2.30082113851968, 48.839414884819135], [2.301021955004143, 48.83947631171453], [2.301218903991414, 48.839538642025175], [2.301419721433406, 48.83960006734675], [2.301616670001552, 48.83966239698761], [2.301832306746698, 48.83972444414729], [2.302029256278193, 48.83978677310198], [2.302029815404108, 48.839786939150265], [2.302245451793897, 48.839848985550354], [2.302422816638534, 48.83989876851987], [2.302480867341755, 48.839915061845716], [2.302487375088198, 48.839914723856204]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 62, "roussel_fabien": 20.0, "nb_emargement": 1276.0, "nb_procuration": 69.0, "nb_vote_blanc": 12.0, "jadot_yannick": 116.0, "le_pen_marine": 84.0, "nb_exprime": 1263.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1555.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1276, "quartier_bv": "57", "geo_point_2d": [48.83825265410368, 2.2997785910536837], "melenchon_jean_luc": 212.0, "poutou_philippe": 2.0, "macron_emmanuel": 504.0}, "geometry": {"type": "Point", "coordinates": [2.2997785910536837, 48.83825265410368]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a9eb5a8ef1180727e08010799d145ae82e3879f6", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 82, "zemmour_eric": 80.0, "hidalgo_anne": 44.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "13-61", "geo_shape": {"coordinates": [[[2.348997798643532, 48.83461421954163], [2.348999355713165, 48.83456633930328], [2.349001113582742, 48.83456368673793], [2.349102222097625, 48.83446048036565], [2.349205032319448, 48.83435679480204], [2.3493061386783562, 48.8342535873316], [2.3494089494375823, 48.834149902480306], [2.349510054991375, 48.834046694818376], [2.3496128649481802, 48.83394300887331], [2.349713969685745, 48.83383980191929], [2.3498167788289113, 48.83373611577977], [2.349917882772698, 48.833632907735], [2.350020691091019, 48.83352922230037], [2.350021247599103, 48.833515073737836], [2.350002721561965, 48.833503253369585], [2.349813924302198, 48.833453920243194], [2.349625677739288, 48.833404262438435], [2.34943687983261, 48.83335492870515], [2.34924863398635, 48.833305270302596], [2.3490598381460472, 48.83325593687646], [2.348871593016435, 48.83320627787615], [2.348682796540463, 48.83315694294379], [2.34849455212751, 48.83310728334564], [2.348305757729146, 48.83305794782124], [2.348117514032855, 48.833008287625326], [2.347928720349853, 48.83295895150142], [2.347740476007985, 48.83290929070027], [2.347551683040352, 48.83285995397687], [2.347363440777397, 48.83281029258536], [2.347174648525135, 48.83276095526249], [2.34698640696759, 48.83271129417253], [2.346981292560179, 48.83270892608574], [2.346951953735971, 48.83268512503284], [2.346945323167729, 48.832685033967664], [2.346817936436, 48.83259067605761], [2.346693702983027, 48.83249932563442], [2.346566317160547, 48.832404967440716], [2.3464420845909713, 48.83231361674107], [2.346314699677736, 48.83221925826375], [2.346190467991651, 48.83212790728756], [2.346063082625535, 48.83203354851917], [2.345938851822937, 48.831942197266486], [2.3458114687394582, 48.83184783732261], [2.345687238809052, 48.83175648669278], [2.3455598566347993, 48.83166212646527], [2.345435627587962, 48.831570775558944], [2.3454230212652343, 48.83156793919789], [2.345259072555756, 48.831587891938945], [2.345032726921346, 48.83161231710976], [2.34486877791162, 48.83163227021431], [2.34464243190166, 48.8316566946456], [2.344478481240777, 48.83167664720689], [2.344463119336381, 48.831688521059334], [2.344479990233599, 48.83170658028132], [2.344527280894556, 48.83183352319358], [2.3445734119438, 48.831959966861035], [2.344620703050806, 48.832086910606954], [2.344666834550876, 48.832213354209806], [2.344714126126551, 48.83234029699074], [2.344760258077454, 48.83246674052894], [2.344807550099193, 48.832593684143546], [2.344853682500935, 48.832720127617094], [2.344900973629112, 48.83284707025925], [2.3449471078439412, 48.83297351367563], [2.344994399418193, 48.83310045715143], [2.345040534083881, 48.83322690050314], [2.345087826126814, 48.83335384301396], [2.34513395988111, 48.833480286293586], [2.34518125373239, 48.833607229645516], [2.345227387937552, 48.83373367286047], [2.345274682257532, 48.8338606152474], [2.345320816913564, 48.83398705839771], [2.345368111679555, 48.834114001618275], [2.345414246786568, 48.8342404447039], [2.34541933382128, 48.83424554139232], [2.345581043810124, 48.83432535496844], [2.345730636026143, 48.83439823354647], [2.345880230022626, 48.83447111194014], [2.346041940054732, 48.83455092486958], [2.346045259991176, 48.834552129289634], [2.346175555475373, 48.834590160939925], [2.346301497560164, 48.834621742658754], [2.346329094620138, 48.834629364543694], [2.346344588770244, 48.83461360682636], [2.346370328664154, 48.8345740978881], [2.346388712414033, 48.834528564340346], [2.346406576109611, 48.83452244011825], [2.346600159501577, 48.834569424986476], [2.346785109829141, 48.83461663939631], [2.3469786925498273, 48.834663623640516], [2.347163644905489, 48.83471083836783], [2.347357228317181, 48.83475782199546], [2.347542179987734, 48.83480503612599], [2.347706779277011, 48.834847053943236], [2.3479003636840963, 48.83489403668611], [2.347920717800242, 48.83489923268576], [2.347929005610326, 48.83490496098155], [2.347986620439599, 48.835025169947926], [2.348041009540828, 48.83514090491699], [2.348098626251378, 48.835261113811484], [2.348153015847371, 48.83537684870526], [2.348160576770116, 48.835382426423536], [2.348368916598444, 48.83543585181668], [2.348609663227209, 48.83550523814788], [2.348628279321366, 48.835499308362515], [2.348685683555729, 48.835356883069565], [2.3487296673130142, 48.83524352600569], [2.348773650878902, 48.83513016891415], [2.348831054309563, 48.83498774350449], [2.348875037439252, 48.83487438634972], [2.348932440299995, 48.83473196175814], [2.348976422993289, 48.834618604540196], [2.348997798643532, 48.83461421954163]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 61, "roussel_fabien": 25.0, "nb_emargement": 1326.0, "nb_procuration": 62.0, "nb_vote_blanc": 9.0, "jadot_yannick": 129.0, "le_pen_marine": 51.0, "nb_exprime": 1306.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1583.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1324, "quartier_bv": "52", "geo_point_2d": [48.83353206028309, 2.347019326788085], "melenchon_jean_luc": 433.0, "poutou_philippe": 10.0, "macron_emmanuel": 421.0}, "geometry": {"type": "Point", "coordinates": [2.347019326788085, 48.83353206028309]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d2405ee32781bafed927a883d992dd221a942fec", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 155, "zemmour_eric": 168.0, "hidalgo_anne": 7.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "16-35", "geo_shape": {"coordinates": [[[2.268915618631627, 48.85325364741423], [2.268920947996344, 48.85328245416923], [2.268967550069264, 48.85340831142917], [2.269012109658623, 48.85352812955319], [2.269056670815578, 48.85364794765601], [2.2691032721805158, 48.85377380481334], [2.26914783375719, 48.85389362285573], [2.269194436912101, 48.8540194808574], [2.269197877677187, 48.854023597564485], [2.269339212933102, 48.85412004483285], [2.269489422487708, 48.85422805612777], [2.269493008927748, 48.85423422785595], [2.2694916491859862, 48.85432295233611], [2.269490415270584, 48.85441183946239], [2.269489054144369, 48.85450056481929], [2.269487820220334, 48.854589451931304], [2.269516525299605, 48.85461483446516], [2.269551934103743, 48.854623521706365], [2.269700109643084, 48.8545807936614], [2.269866799940894, 48.854530079663924], [2.270014974956321, 48.85448735122543], [2.270181664648657, 48.85443663678505], [2.270183450569, 48.85443601452772], [2.270347302369922, 48.85436817310157], [2.27047289283184, 48.854314495153474], [2.270598483035004, 48.85426081707102], [2.270762333744654, 48.854192975065814], [2.270763303955997, 48.8541925969515], [2.270932180031105, 48.854132875093484], [2.271089775452646, 48.85407790755214], [2.271258650781974, 48.85401818522715], [2.271416245499675, 48.85396321814946], [2.271585120083124, 48.85390349535755], [2.271742714109567, 48.853848527844214], [2.271745518353665, 48.85384778675009], [2.271948299266059, 48.85381077272547], [2.272152978606656, 48.85377130205801], [2.272355758931965, 48.85373428734034], [2.272560437650923, 48.85369481687248], [2.272763217389143, 48.853657801461736], [2.272967895511466, 48.85361832939491], [2.272970804135867, 48.85361801700236], [2.273067901327978, 48.8536146074748], [2.273140484561563, 48.85361335401986], [2.273144765959243, 48.85361281972575], [2.273334343697944, 48.85356753716279], [2.273516424742979, 48.85352356951722], [2.273706001846527, 48.85347828546254], [2.273888082266189, 48.853434317247896], [2.2740701637412393, 48.85339034876276], [2.274259738516114, 48.85334506381706], [2.274441819365682, 48.8533010947628], [2.274631393480329, 48.85325581012397], [2.274813473716927, 48.85321183960132], [2.2750030471838683, 48.85316655437003], [2.275185125419798, 48.853122584169355], [2.275374699601687, 48.85307729835386], [2.275556777224628, 48.85303332668483], [2.275746350758798, 48.852988040276884], [2.275778904942814, 48.852971775406374], [2.275804436460868, 48.85296570095956], [2.275824904907113, 48.852953749113794], [2.27583057451131, 48.85293971471317], [2.275835782564283, 48.85292682420487], [2.275775183309569, 48.85290085979536], [2.275617698330406, 48.85281252808224], [2.27546257463819, 48.85272505585025], [2.275305089345013, 48.852636724602725], [2.275149968076064, 48.852549251060616], [2.274994845952754, 48.85246177820161], [2.274837363623379, 48.85237344542653], [2.274682242548074, 48.85228597214837], [2.274524761267403, 48.852197639847205], [2.27436964125282, 48.85211016525068], [2.274212161033362, 48.85202183252418], [2.274057042066778, 48.851934357508576], [2.273899562908528, 48.85184602435661], [2.273898270398814, 48.85184537976413], [2.273737938537053, 48.851774806782814], [2.273576531461105, 48.85170269723531], [2.273416200473988, 48.851632123813836], [2.273254795648036, 48.851560013831346], [2.273094464172941, 48.851489439961405], [2.272933060234056, 48.85141732953567], [2.272772729633807, 48.85134675522557], [2.272611326582088, 48.85127464435659], [2.272571661975811, 48.85125718400212], [2.272542000610937, 48.85125639929336], [2.272528004904369, 48.85126975248684], [2.272491787330118, 48.8513932109228], [2.272458004617603, 48.85151630101193], [2.272421786706149, 48.85163975939932], [2.272388002293166, 48.85176285033246], [2.272351784057161, 48.851886307771984], [2.272318000681602, 48.85200939866634], [2.272281782095829, 48.85213285695663], [2.272247997044995, 48.85225594689635], [2.272211778122003, 48.85237940513808], [2.272177994096037, 48.85250249593833], [2.272141774848386, 48.85262595323219], [2.272107989134565, 48.852749043977084], [2.272100607645101, 48.852755506857285], [2.271912334614484, 48.852816786985734], [2.271737852501137, 48.85287518735805], [2.271549578599031, 48.852936467808405], [2.271375095678283, 48.85299486764546], [2.2712006137292953, 48.8530532672333], [2.271012337189204, 48.85311454682017], [2.270998618161255, 48.853113904732], [2.270849410620035, 48.85304658847218], [2.270708044304549, 48.852979829751455], [2.270558837522721, 48.85291251312119], [2.270417471943241, 48.85284575404918], [2.270268264557849, 48.85277843704015], [2.270126899714373, 48.85271167761673], [2.269985535233118, 48.85264491802229], [2.269836330343543, 48.85257760047083], [2.269812285635519, 48.85256409280639], [2.269775556655167, 48.852576381489655], [2.26963849767042, 48.85268798056191], [2.269498762628691, 48.85280008026509], [2.269361702462859, 48.852911678997806], [2.269221967575935, 48.8530237792628], [2.269084906228803, 48.85313537765602], [2.268945170159148, 48.85324747667591], [2.268915618631627, 48.85325364741423]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 35, "roussel_fabien": 3.0, "nb_emargement": 1012.0, "nb_procuration": 73.0, "nb_vote_blanc": 9.0, "jadot_yannick": 38.0, "le_pen_marine": 43.0, "nb_exprime": 1001.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1233.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1012, "quartier_bv": "61", "geo_point_2d": [48.853041359686806, 2.272142878724743], "melenchon_jean_luc": 56.0, "poutou_philippe": 2.0, "macron_emmanuel": 507.0}, "geometry": {"type": "Point", "coordinates": [2.272142878724743, 48.853041359686806]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "153cde3e1a03ad164c207aed34c9374139992fce", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 140, "zemmour_eric": 186.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-12", "geo_shape": {"coordinates": [[[2.277791925817521, 48.85768774509809], [2.277790248114774, 48.85767495420113], [2.277913967376468, 48.8575692546471], [2.278026214412336, 48.85747887375416], [2.2780277164609473, 48.8574777873988], [2.278150980879031, 48.85740209461502], [2.278287493141193, 48.85731753029353], [2.278410756790209, 48.85724183813052], [2.278547269573751, 48.85715727350869], [2.278670532466263, 48.85708158106715], [2.278807043045559, 48.856997016128595], [2.278916536757733, 48.85692289166231], [2.279053046509563, 48.85683832733028], [2.279162540901152, 48.856764202636505], [2.279163650100602, 48.85676353030279], [2.279300159046194, 48.85667896477746], [2.279423681682008, 48.85661202206329], [2.279425056953059, 48.856611032057145], [2.27950460087662, 48.85654421563906], [2.279607120945106, 48.8564583793571], [2.279607703798456, 48.85645792149517], [2.279733281874068, 48.85636576112403], [2.279861814489797, 48.85628601515555], [2.279877702871793, 48.85627009049961], [2.279842531327266, 48.856240780982624], [2.279662249339955, 48.856198493529995], [2.279485565360761, 48.856157616077105], [2.279305283963245, 48.85611532718417], [2.279128601908947, 48.85607444920938], [2.278948321076557, 48.85603216067485], [2.27877163822148, 48.8559912821617], [2.278591357966556, 48.85594899308621], [2.278414675673543, 48.855908114042954], [2.278234396008447, 48.855865823527225], [2.278057714277608, 48.85582494395382], [2.278055313450769, 48.8558242090822], [2.277861875225263, 48.85575016497584], [2.277668355675996, 48.85567504622265], [2.277474918554232, 48.855601001480835], [2.277281398741524, 48.8555258829828], [2.277087962735877, 48.85545183670623], [2.276894444035021, 48.85537671757232], [2.276889496390381, 48.85537339871507], [2.276795365109866, 48.85526375369174], [2.276706070658562, 48.85515718934615], [2.276611938804285, 48.855047543249654], [2.276522645086145, 48.8549409796458], [2.276501853734869, 48.85491607206924], [2.276475251494567, 48.854919200177314], [2.276350952421262, 48.854961200497335], [2.2761959918002432, 48.855011257855054], [2.276025143240209, 48.85506898665625], [2.275870181985643, 48.8551190435872], [2.275699332723629, 48.85517677101835], [2.275544370823118, 48.8552268284218], [2.275389410000091, 48.85527688473127], [2.275218558325183, 48.85533461145947], [2.27521191098725, 48.85533963908825], [2.275156310871603, 48.85544418923082], [2.275109691621053, 48.855543878744875], [2.275106927118613, 48.855547148257706], [2.274993819935089, 48.85563247685546], [2.274866769303546, 48.8557344831085], [2.274867521082735, 48.85574088840602], [2.274893614502891, 48.85575428330224], [2.274930995222332, 48.85576281180244], [2.274975501094638, 48.85577752608815], [2.274982643244333, 48.85578768086136], [2.274932586430666, 48.85592426725442], [2.274880724235015, 48.85605746917441], [2.274830666894998, 48.85619405549161], [2.274778804170267, 48.85632725733508], [2.274778652508836, 48.85633129903486], [2.274818092452603, 48.85646198108898], [2.274861969610691, 48.85660338967476], [2.274862180885373, 48.856604367658726], [2.274881316154692, 48.85674973365289], [2.274901192458639, 48.85689827075618], [2.27492032932011, 48.85704363581458], [2.274940205834875, 48.857192173771395], [2.274949215760739, 48.85719985582205], [2.27513756014827, 48.85724404825843], [2.275320075871402, 48.857288995632224], [2.275508422246065, 48.85733318838892], [2.2756909372511, 48.85737813428591], [2.275879284262535, 48.857422326455335], [2.276061799887129, 48.85746727268238], [2.276244317201976, 48.85751221773817], [2.276432663804574, 48.85755640902303], [2.276434847438852, 48.85755679006414], [2.276641038374329, 48.85758095229264], [2.276853726073379, 48.85760545920704], [2.277059917395701, 48.857629620712764], [2.277272605490332, 48.85765412688156], [2.277478797199487, 48.857678287664484], [2.277691485677421, 48.85770279398701], [2.277741336956754, 48.857711009233434], [2.277778191766217, 48.857703335313545], [2.277791925817521, 48.85768774509809]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 12, "roussel_fabien": 6.0, "nb_emargement": 1079.0, "nb_procuration": 81.0, "nb_vote_blanc": 8.0, "jadot_yannick": 32.0, "le_pen_marine": 70.0, "nb_exprime": 1069.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1330.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1079, "quartier_bv": "62", "geo_point_2d": [48.85643273394723, 2.276882622279649], "melenchon_jean_luc": 71.0, "poutou_philippe": 1.0, "macron_emmanuel": 541.0}, "geometry": {"type": "Point", "coordinates": [2.276882622279649, 48.85643273394723]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e4702a2069cddab73043cbfbe8541d1aaf84bc3e", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 85, "zemmour_eric": 72.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-11", "geo_shape": {"coordinates": [[[2.3250538235542, 48.82723123429811], [2.325085450485736, 48.82722217528404], [2.325146157339685, 48.827195722717356], [2.32520724094703, 48.82716930911987], [2.325235104940891, 48.8271615572141], [2.325236399828746, 48.82715865143663], [2.325388864710996, 48.827092720218346], [2.325536845190479, 48.827027930005805], [2.32554085924852, 48.82702521044197], [2.325547587918722, 48.82700660519256], [2.325528427455663, 48.82699620465531], [2.325438396974696, 48.82687196318847], [2.32534802628499, 48.826748676656344], [2.325257996661366, 48.826624435026304], [2.325167628189383, 48.82650114833837], [2.325077599423087, 48.82637690654509], [2.324987230444666, 48.826253619685986], [2.324897203897652, 48.82612937773721], [2.324806835774956, 48.82600609071457], [2.324716808723186, 48.82588184859489], [2.324626442818159, 48.825758561416485], [2.324536416623682, 48.8256343191336], [2.324446050212205, 48.82551103178399], [2.324356024875014, 48.825386789337934], [2.32426566068117, 48.825263501832545], [2.324175636201252, 48.8251392592233], [2.324085272862879, 48.82501597155439], [2.324083746477722, 48.82501435393751], [2.324007223019629, 48.824949651744404], [2.323917023493901, 48.82487439530906], [2.323907194785054, 48.82484769652519], [2.32390342049686, 48.82484653297473], [2.32388749307568, 48.82484162135196], [2.323872324751918, 48.82484287566756], [2.323688367572669, 48.824885358214225], [2.32350818356508, 48.82492633737468], [2.323324227168353, 48.82496881846643], [2.323144041224094, 48.82500979706747], [2.322960084224524, 48.82505227849526], [2.322779899067662, 48.82509325655231], [2.322599712265629, 48.82513423432865], [2.322415754383496, 48.825176714914406], [2.322235568368768, 48.82521769214677], [2.322051608545128, 48.82526017126217], [2.32187142195578, 48.825301147942824], [2.32168746289133, 48.825343627401985], [2.321687304405883, 48.825343664276964], [2.321630640325556, 48.82543452731903], [2.321449077045954, 48.825478120840664], [2.321443022602232, 48.82549213029257], [2.321553203017658, 48.82558468546181], [2.321590769645145, 48.82562295310756], [2.321535665052362, 48.82564690663651], [2.321505012180214, 48.82566100407345], [2.32153543098077, 48.82569242198111], [2.3216947725019272, 48.825761639108215], [2.321864800597063, 48.82583565544337], [2.3220241443553, 48.825904872130515], [2.322194172023083, 48.82597888798024], [2.322353516656351, 48.82604810421967], [2.322523546620897, 48.826122119599404], [2.322682890767136, 48.82619133538342], [2.322852921666389, 48.82626535028541], [2.323012266687658, 48.82633456562173], [2.323182298521619, 48.82640858004595], [2.32334164441792, 48.826477794934604], [2.323511677186592, 48.82655180888109], [2.3236710253200012, 48.8266210233297], [2.323841057661311, 48.82669503679077], [2.324000406658098, 48.826764251690996], [2.32417044130786, 48.82683826378265], [2.324329789817612, 48.82690747822749], [2.324525758560463, 48.82699271305599], [2.324685108013989, 48.82706192701788], [2.324881077906741, 48.827147162151725], [2.325040429677782, 48.82721637473902], [2.3250538235542, 48.82723123429811]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 11, "roussel_fabien": 24.0, "nb_emargement": 1194.0, "nb_procuration": 51.0, "nb_vote_blanc": 12.0, "jadot_yannick": 104.0, "le_pen_marine": 65.0, "nb_exprime": 1179.0, "nb_vote_nul": 3.0, "arr_bv": "14", "arthaud_nathalie": 6, "nb_inscrit": 1432.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1194, "quartier_bv": "55", "geo_point_2d": [48.825934690852534, 2.3236266044950544], "melenchon_jean_luc": 282.0, "poutou_philippe": 6.0, "macron_emmanuel": 480.0}, "geometry": {"type": "Point", "coordinates": [2.3236266044950544, 48.825934690852534]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1ce31ff555a6a588b4f3f0927cbf4220e9b6f2da", "fields": {"lassalle_jean": 22.0, "pecresse_valerie": 82, "zemmour_eric": 89.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-47", "geo_shape": {"coordinates": [[[2.303133881011982, 48.83208742668051], [2.303157491696263, 48.83207973068396], [2.303317768270897, 48.83205478936073], [2.303481191396946, 48.83202925097445], [2.303641469023716, 48.83200430922426], [2.303804890458713, 48.83197877128591], [2.303806181299151, 48.83197861331468], [2.303861499540977, 48.83197364877392], [2.303907762856833, 48.83196999136382], [2.303929884897299, 48.831964807501066], [2.303928308204298, 48.83194842069303], [2.303895406776733, 48.83190460318642], [2.303809998175134, 48.831783599596186], [2.303733537129105, 48.83167363659422], [2.30364813065595, 48.83155263197211], [2.303571670290121, 48.83144266884399], [2.30348626319687, 48.83132166497272], [2.303409803523253, 48.831211700819146], [2.303333345534286, 48.83110173661382], [2.303247939552769, 48.83098073253556], [2.303252046144475, 48.83096977327249], [2.303384857106066, 48.83090315212533], [2.30351289049714, 48.83083936842073], [2.303645702167358, 48.83077274608481], [2.303773734919114, 48.83070896209354], [2.303901767357571, 48.83064517796157], [2.3040345766619152, 48.83057855607367], [2.304043401209405, 48.830576731324804], [2.304226596588923, 48.830581914561726], [2.304409863101091, 48.83058728230376], [2.304593057191942, 48.83059246497144], [2.304776325141206, 48.8305978321598], [2.304959519305559, 48.83060301426612], [2.305142787329534, 48.83060838089292], [2.30532598156738, 48.83061356243788], [2.305509249654178, 48.830618929402405], [2.305692443977491, 48.83062410948667], [2.305875710777015, 48.830629475881686], [2.306058906535977, 48.830634655412496], [2.306242173410194, 48.83064002124594], [2.306251627475881, 48.830637872613224], [2.306411565459921, 48.83054762504673], [2.306570825983529, 48.83045828889986], [2.30673076286404, 48.830368040892054], [2.306890022292036, 48.83027870430584], [2.307049958068923, 48.83018845585672], [2.307209216401413, 48.83009911883118], [2.307267353505037, 48.83007006394957], [2.307257327168186, 48.83005808643257], [2.307176794551888, 48.82999254911706], [2.307054101605994, 48.82989630827068], [2.306934686877184, 48.829799128448265], [2.306811996195502, 48.82970288734481], [2.306811940934199, 48.82970284295502], [2.306681997424786, 48.829598464373994], [2.306559307669872, 48.82950222389341], [2.306429365166323, 48.829397845019194], [2.306306676361986, 48.82930160336296], [2.306176734864292, 48.82919722419557], [2.30605404698639, 48.82910098316225], [2.3059241064945413, 48.82899660370175], [2.305801419567208, 48.82890036149271], [2.3056714800811973, 48.82879598173905], [2.305548794092253, 48.82869973925368], [2.305418855600089, 48.82859536010619], [2.305296169187605, 48.828499117336534], [2.305173484590112, 48.828402874440656], [2.305043547601255, 48.828298493958485], [2.304920863930241, 48.828202251685575], [2.304790927947292, 48.828097870910234], [2.304736826419062, 48.82805440870328], [2.30461414253854, 48.82795816518756], [2.304612879459895, 48.82794859025089], [2.304494822171952, 48.82794076086555], [2.304294681994238, 48.82798336862945], [2.304103463889863, 48.82802393152343], [2.303903321711016, 48.828066538621314], [2.303712102997099, 48.82810710088656], [2.303520883985635, 48.82814766284461], [2.303320740855677, 48.82819026896285], [2.303129521234679, 48.82823083029215], [2.302929377465609, 48.828273435752294], [2.302920035926898, 48.828283082901955], [2.302945099748731, 48.82841893444508], [2.302962944644038, 48.8285553500726], [2.30295222694062, 48.828564917251505], [2.30276433669242, 48.82859149137622], [2.302573564893049, 48.82861717060874], [2.302385674275551, 48.82864374323802], [2.302194902098364, 48.82866942186527], [2.302007009725484, 48.8286959947898], [2.301816238532712, 48.82872167281985], [2.301628345790562, 48.82874824424891], [2.30143757422009, 48.82877392167371], [2.301427034909548, 48.82878479025934], [2.30145106609415, 48.8288523642275], [2.301472644779389, 48.828923640992855], [2.301463200446562, 48.82893401772023], [2.301245415933076, 48.8289771333952], [2.301055017530043, 48.82901706573934], [2.301015747903268, 48.829020999453405], [2.301010410623708, 48.8290289322545], [2.30100153741031, 48.82904211924296], [2.30103742882978, 48.829062259236345], [2.301201092302642, 48.82917254496164], [2.301363778810115, 48.8292800546563], [2.301526464614385, 48.82938756501078], [2.301690130155077, 48.829497849135514], [2.301693793488598, 48.82950250501964], [2.301725524474012, 48.82961555501533], [2.301757465715355, 48.829728681765644], [2.301789195614451, 48.8298417317137], [2.301821137132535, 48.829954858424195], [2.301852868669426, 48.83006790834045], [2.301884809102094, 48.83018103500319], [2.301916540914727, 48.83029408487974], [2.301948481624139, 48.8304072115026], [2.301949124699058, 48.830408730706544], [2.302018809920777, 48.8305295658056], [2.3020871778746113, 48.83064950637663], [2.3021568623759903, 48.830770341361294], [2.302225230951275, 48.83089028272696], [2.302294917468717, 48.83101111671391], [2.302363286677402, 48.831131057974886], [2.302365623198953, 48.83113368789033], [2.302490901639716, 48.83123175180182], [2.3026155963752952, 48.83132898294224], [2.302740875755607, 48.831427046574824], [2.302865571424454, 48.831524277437715], [2.302868233448119, 48.83152752801023], [2.302929063855822, 48.831662689149056], [2.302992496330756, 48.83180194227409], [2.303053328730938, 48.83193710422383], [2.303116761883747, 48.83207635634956], [2.303118028899529, 48.8320782865973], [2.303133881011982, 48.83208742668051]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 47, "roussel_fabien": 28.0, "nb_emargement": 1303.0, "nb_procuration": 50.0, "nb_vote_blanc": 10.0, "jadot_yannick": 110.0, "le_pen_marine": 97.0, "nb_exprime": 1287.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 4, "nb_inscrit": 1658.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1303, "quartier_bv": "57", "geo_point_2d": [48.829705876305916, 2.3039766197392386], "melenchon_jean_luc": 383.0, "poutou_philippe": 5.0, "macron_emmanuel": 420.0}, "geometry": {"type": "Point", "coordinates": [2.3039766197392386, 48.829705876305916]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4b30ce02529be791d3308c72e75957a0f2b9c2ff", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 81, "zemmour_eric": 72.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-38", "geo_shape": {"coordinates": [[[2.360399440208453, 48.822359383449275], [2.36040497320829, 48.822348690659496], [2.36032973310791, 48.822223234180214], [2.360254854328471, 48.82209988501502], [2.360179614937392, 48.8219744293128], [2.360104736881427, 48.82185107912703], [2.360029498210465, 48.8217256233026], [2.359954620855893, 48.82160227389483], [2.359879384278129, 48.82147681705616], [2.3598045062740303, 48.82135346751979], [2.359729270405521, 48.821228011458246], [2.359654393124881, 48.82110466090129], [2.359579157976456, 48.820979204717496], [2.359504282770155, 48.82085585404655], [2.359429046980077, 48.82073039773328], [2.3593541724751192, 48.82060704784034], [2.35935342909525, 48.82060203791141], [2.359385405554865, 48.82048987852391], [2.359415392467849, 48.82038389079474], [2.3594453792588252, 48.820277903048044], [2.359477355321879, 48.82016574360367], [2.359507341861554, 48.820059755820886], [2.359539319019456, 48.819947596345415], [2.359554320496394, 48.81994033055961], [2.359772028812738, 48.819957537763095], [2.359988124039936, 48.81997446522184], [2.360205831280144, 48.81999167162772], [2.360421926789626, 48.820008598302024], [2.360639634315389, 48.820025803917545], [2.360855730107143, 48.820042729807376], [2.360859750276143, 48.82004264966593], [2.36100488089324, 48.820025869428086], [2.361150448592901, 48.820008534633516], [2.361295577659686, 48.819991754035144], [2.361441145167465, 48.81997441888613], [2.361451428579343, 48.81996881580379], [2.361521611108736, 48.819849128761135], [2.361591507953455, 48.81972749748024], [2.361661689825504, 48.819607811228984], [2.361731586020092, 48.81948617984015], [2.36174968458324, 48.819481104112015], [2.361923520928103, 48.81953030521009], [2.362094135399996, 48.819578376330234], [2.36226797239416, 48.81962757692333], [2.362438587501777, 48.819675647547825], [2.36261242514534, 48.81972484763592], [2.36278304089977, 48.81977291686544], [2.362956880543438, 48.81982211735509], [2.36312749557188, 48.819870186081715], [2.36330133586485, 48.81991938606633], [2.363471951528997, 48.81996745429735], [2.363645792471365, 48.820016653776925], [2.363816408771318, 48.82006472151228], [2.363987025385938, 48.82011278900219], [2.364160867298736, 48.82016198772658], [2.364331484549054, 48.82021005472084], [2.364505327111244, 48.820259252940225], [2.364581351717725, 48.82029398896275], [2.364587388684448, 48.82029046939434], [2.364619863817124, 48.820250562023666], [2.364654736016856, 48.82020360995023], [2.364671547778451, 48.82019537911841], [2.364682855510298, 48.82016157307026], [2.364706436838158, 48.82012982165695], [2.364735278392521, 48.82009200848668], [2.364736249581307, 48.82008629898969], [2.364655601655025, 48.82006215027056], [2.36446717739771, 48.820006770669345], [2.364278472073266, 48.81994721974851], [2.364090048631807, 48.81989183954737], [2.36390134551591, 48.81983228803257], [2.363712921517431, 48.8197769081236], [2.363524219259256, 48.819717355108224], [2.363335797438432, 48.81966197460663], [2.363147096026908, 48.81960242099004], [2.363146485347438, 48.81960224055964], [2.362958062992965, 48.81954685855057], [2.36276423556996, 48.81949324709423], [2.362575814015333, 48.81943786447744], [2.362381987401592, 48.81938425149699], [2.362193566646817, 48.81932886827251], [2.361999740831153, 48.81927525466723], [2.3619972098161712, 48.81927473930828], [2.361804040929758, 48.81924871647884], [2.361613092375616, 48.81922290305362], [2.361419923872933, 48.81919687960246], [2.361228975698775, 48.81917106556266], [2.361035807579831, 48.81914504148977], [2.360844859785664, 48.81911922683537], [2.360651692050467, 48.81909320214072], [2.360460744636297, 48.81906738687176], [2.360267577284854, 48.81904136155542], [2.360076630250691, 48.81901554567186], [2.359883463294052, 48.81898951883447], [2.359692516639907, 48.81896370233635], [2.359619368839235, 48.8189556379889], [2.359606593463713, 48.81897484869396], [2.359582801206974, 48.81905183956604], [2.359539103850765, 48.81918505741689], [2.359499789219167, 48.819312273763785], [2.359456091432527, 48.81944549155344], [2.359416776413087, 48.819572706944314], [2.359373078196211, 48.81970592467276], [2.35933376276683, 48.819833140906205], [2.35929006413056, 48.81996635767417], [2.359250748302279, 48.82009357385083], [2.359207047862797, 48.820226791449656], [2.359167732997421, 48.82035400757692], [2.3591534768857763, 48.82039746654636], [2.359147364788384, 48.82040662454988], [2.359147957708219, 48.820418001282576], [2.359118514301796, 48.820507758955706], [2.359079644334872, 48.82063309500778], [2.359035944367891, 48.82076631248744], [2.35899707536052, 48.82089164939047], [2.3589533749659912, 48.82102486680935], [2.358914505578462, 48.82115020275736], [2.3588708033942343, 48.82128342010815], [2.3588319336154813, 48.82140875600049], [2.358788232365631, 48.821541973297784], [2.35874936218459, 48.82166731003379], [2.358705659145118, 48.82180052726292], [2.3586667885838, 48.821925863043965], [2.358623086478604, 48.82205908021963], [2.358584215526149, 48.82218441594497], [2.358576817752454, 48.822208267347904], [2.358577691371384, 48.82220988282045], [2.358627353198803, 48.822217346920006], [2.358801406526273, 48.8221800783512], [2.358962852684313, 48.82214602017942], [2.358970083352019, 48.82214582690159], [2.359144381579175, 48.82217259038208], [2.359324219157749, 48.82220036810467], [2.359498517760151, 48.82222713016833], [2.359678357077466, 48.82225490736426], [2.359852656032909, 48.82228166980982], [2.3600324957270002, 48.82230944647179], [2.360206795057462, 48.82233620750053], [2.360386633766449, 48.822363983621294], [2.360399440208453, 48.822359383449275]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 38, "roussel_fabien": 16.0, "nb_emargement": 1064.0, "nb_procuration": 40.0, "nb_vote_blanc": 13.0, "jadot_yannick": 44.0, "le_pen_marine": 69.0, "nb_exprime": 1047.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1445.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "51", "geo_point_2d": [48.82035667613191, 2.3605072557520206], "melenchon_jean_luc": 300.0, "poutou_philippe": 6.0, "macron_emmanuel": 413.0}, "geometry": {"type": "Point", "coordinates": [2.3605072557520206, 48.82035667613191]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1bb35652e4011b1d8ccf432e1a37cbd40b7576db", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 44, "zemmour_eric": 70.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "14-21", "geo_shape": {"coordinates": [[[2.31080211931362, 48.83301668710698], [2.310797455989394, 48.83303441747915], [2.310793901456739, 48.83304793347722], [2.310834837853679, 48.83308080494976], [2.310961615878747, 48.83318590684065], [2.311088835159267, 48.83328940844156], [2.311216054933091, 48.8333929107969], [2.311342834485813, 48.833498012254395], [2.311470055273051, 48.83360151432032], [2.311596835845222, 48.833706615489014], [2.31172405902002, 48.833810116373975], [2.311850840599778, 48.83391521815318], [2.311978063425748, 48.834018718740836], [2.312104846024977, 48.83412382023119], [2.312232069864388, 48.834227320529415], [2.312358853494963, 48.834332420831664], [2.312486078335959, 48.83443592173969], [2.312612864348301, 48.83454102176094], [2.31274009021462, 48.83464452148022], [2.312866875872325, 48.83474962210407], [2.312900916110049, 48.83475250318109], [2.312948196038747, 48.83474296441729], [2.313119579114971, 48.83464938151426], [2.313298116973578, 48.83455350196926], [2.3134695001491288, 48.83445991945614], [2.313648036715211, 48.8343640393726], [2.313666506790264, 48.83436481988839], [2.313713118677765, 48.834397188660276], [2.313759554969249, 48.83443037843193], [2.313777850051268, 48.834431414247604], [2.313941318095555, 48.834348695935496], [2.314100108086501, 48.83426809197709], [2.314263575107256, 48.834185373212485], [2.314422365452741, 48.834104769721606], [2.314585831461793, 48.834022049605245], [2.314744619449316, 48.83394144566697], [2.314903408319764, 48.8338608406206], [2.315066872788732, 48.833778120728084], [2.31508132401293, 48.833765611359354], [2.315069457882112, 48.83375369956306], [2.315038143925479, 48.83373611916654], [2.315006878836927, 48.833720316202694], [2.315005313421688, 48.833719389876784], [2.314875497690036, 48.8336296164855], [2.314743116985688, 48.83353819588548], [2.31461330353088, 48.833448421303586], [2.314480922384348, 48.83335700039077], [2.314351109820471, 48.83326722640912], [2.3142187295938, 48.83317580519129], [2.314088917944506, 48.83308603001122], [2.313956538637794, 48.83299460848843], [2.31382672787941, 48.83290483390859], [2.313694349492647, 48.83281341208083], [2.313564539648943, 48.832723636302596], [2.313432163544253, 48.83263221417767], [2.313302353229207, 48.832542438991865], [2.313169978044551, 48.83245101656196], [2.313040168643981, 48.83236124017776], [2.312907794379252, 48.832269817442906], [2.312908563204978, 48.83222967827488], [2.312887412030076, 48.8322237953706], [2.3127101018885208, 48.83228785984472], [2.312546818453413, 48.832352581177155], [2.312369507455251, 48.83241664513897], [2.312206223205763, 48.83248136509965], [2.312028911350997, 48.832545428549196], [2.311865626263399, 48.83261014893681], [2.3116883135638, 48.83267421097476], [2.31152502765006, 48.83273893088992], [2.311347714081985, 48.83280299331488], [2.311184427353879, 48.83286771185831], [2.311021138846213, 48.83293243106657], [2.31084382536297, 48.83299649274128], [2.31080211931362, 48.83301668710698]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 21, "roussel_fabien": 24.0, "nb_emargement": 1047.0, "nb_procuration": 32.0, "nb_vote_blanc": 8.0, "jadot_yannick": 32.0, "le_pen_marine": 101.0, "nb_exprime": 1030.0, "nb_vote_nul": 9.0, "arr_bv": "14", "arthaud_nathalie": 7, "nb_inscrit": 1444.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1047, "quartier_bv": "56", "geo_point_2d": [48.83347138255964, 2.3129165280852737], "melenchon_jean_luc": 459.0, "poutou_philippe": 10.0, "macron_emmanuel": 241.0}, "geometry": {"type": "Point", "coordinates": [2.3129165280852737, 48.83347138255964]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ed6afa954b95cd8a522d00c12994a3b6322b519a", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 75, "zemmour_eric": 58.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-13", "geo_shape": {"coordinates": [[[2.387149383019345, 48.84687186724564], [2.38714221118471, 48.84688751797171], [2.387110943984549, 48.84691306678518], [2.387021245713559, 48.847027553905946], [2.386936277019279, 48.84713774558022], [2.386846577977757, 48.847252232547], [2.386761608547832, 48.84736242407498], [2.386671907373347, 48.847476910880694], [2.386586938559813, 48.847587103168706], [2.386497236625461, 48.8477015889211], [2.386412267076268, 48.84781178106282], [2.386322564360868, 48.84792626756044], [2.386237594086495, 48.84803645865661], [2.386152622079656, 48.8481466505738], [2.386062919590681, 48.84826113595007], [2.385977946848155, 48.848371327721], [2.385888242215453, 48.848485813835445], [2.385889674325979, 48.848495536015356], [2.385990917401451, 48.84857971720386], [2.386081610558875, 48.84864944549913], [2.386083581068007, 48.84865916054486], [2.386005416538441, 48.848767792677904], [2.385925371076922, 48.84887561916841], [2.385847207255555, 48.84898425118397], [2.385767159771529, 48.84909207754064], [2.385688995295793, 48.84920070943173], [2.385608948525094, 48.84930853476936], [2.385530782021601, 48.84941716742826], [2.385450734591152, 48.84952499263902], [2.385372568806355, 48.84963362428111], [2.385292519342756, 48.849741450257376], [2.385214352903567, 48.84985008177503], [2.385134304142686, 48.849957907631456], [2.385139206333206, 48.85000857901805], [2.385187300598113, 48.850011587179544], [2.385375130743676, 48.84998232584231], [2.385571998760596, 48.849952460391165], [2.38575982983972, 48.84992319845544], [2.385956697423387, 48.84989333147041], [2.386144528073366, 48.849864068929236], [2.386341395213064, 48.84983420130966], [2.386529225433891, 48.849804938163004], [2.386726092129817, 48.849775069908866], [2.386913921921483, 48.84974580615673], [2.38711078816295, 48.84971593816732], [2.387298617525453, 48.84968667380971], [2.387429658462935, 48.84966679186814], [2.387447490984741, 48.84966624282742], [2.38745927349919, 48.84966251417357], [2.387525096996098, 48.849652526568605], [2.387725003819699, 48.84962176029078], [2.387921869138125, 48.84959189006421], [2.388121775494967, 48.84956112312176], [2.388318640356893, 48.84953125224074], [2.388518546246865, 48.8495004846337], [2.388715410641731, 48.84947061399751], [2.388915316064828, 48.84943984572589], [2.389112180013729, 48.849409973535955], [2.38931208496994, 48.84937920459974], [2.389508948462314, 48.84934933175534], [2.389583223416663, 48.84933789951129], [2.389598430849504, 48.849328419666065], [2.389569485696389, 48.84928554729483], [2.389482722496093, 48.849180796648106], [2.389395201814973, 48.84907431440217], [2.389308439316688, 48.848969563609195], [2.389220919335897, 48.848863082114875], [2.389134157539614, 48.84875833117559], [2.389046638280223, 48.84865184863435], [2.388959877185937, 48.8485470975488], [2.388872358637299, 48.84844061485984], [2.388785598245, 48.848335863628094], [2.38869808040731, 48.84822938079146], [2.388611320716992, 48.84812462941343], [2.388523803590142, 48.848018146429105], [2.388524023066934, 48.848009313188534], [2.388618869888976, 48.84790244641215], [2.38871160399992, 48.847797218174755], [2.388806450051289, 48.84769035122937], [2.388899182043428, 48.847585122819574], [2.388994028686767, 48.84747825571205], [2.389086759922747, 48.84737302713685], [2.389094970221532, 48.847360229864485], [2.389084638797156, 48.84734763739888], [2.388942182579381, 48.84727859306151], [2.388764081291364, 48.8471936699931], [2.388621625929606, 48.847124624365186], [2.388443524327522, 48.84703970080088], [2.38830106981144, 48.8469706547818], [2.388122969257911, 48.84688573072855], [2.387980516939452, 48.84681668522449], [2.387802417445031, 48.846731759783026], [2.387659964609421, 48.84666271388078], [2.387654613286641, 48.84665356342405], [2.387666440335381, 48.84661664423794], [2.387683956857477, 48.84659477071654], [2.387680195627695, 48.84658342857375], [2.38766399524069, 48.84657400674422], [2.387588807187404, 48.84653600092623], [2.387569498279913, 48.84653785368756], [2.387479203686519, 48.84661985878601], [2.387363247124739, 48.84671460848562], [2.3872729505380432, 48.8467966134084], [2.38718826036188, 48.846865814966385], [2.387149383019345, 48.84687186724564]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 13, "roussel_fabien": 16.0, "nb_emargement": 1237.0, "nb_procuration": 81.0, "nb_vote_blanc": 10.0, "jadot_yannick": 141.0, "le_pen_marine": 45.0, "nb_exprime": 1224.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1490.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1238, "quartier_bv": "46", "geo_point_2d": [48.848484103192284, 2.387441104225086], "melenchon_jean_luc": 389.0, "poutou_philippe": 9.0, "macron_emmanuel": 427.0}, "geometry": {"type": "Point", "coordinates": [2.387441104225086, 48.848484103192284]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "919699794d6def0bbb1c56e5977d8121ac9bd350", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 44, "zemmour_eric": 69.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "13-18", "geo_shape": {"coordinates": [[[2.3664188731038, 48.82674171554213], [2.366430824427496, 48.8267320899037], [2.366431019436957, 48.82673162326237], [2.366479344850438, 48.826602113100215], [2.366527005225854, 48.82647406626131], [2.366575331513317, 48.8263445569372], [2.366622991417545, 48.82621651003063], [2.366671315876698, 48.826086999731494], [2.366718975309749, 48.825958952757304], [2.366767300642886, 48.82582944329619], [2.3668149596046613, 48.825701396254395], [2.366863283109614, 48.82557188581824], [2.366910941600225, 48.82544383870876], [2.366959265979065, 48.82531432911064], [2.367006923998618, 48.8251862819336], [2.3670545817840782, 48.825058234722896], [2.367102905459634, 48.82492872412297], [2.367103296882321, 48.82492677544951], [2.367107282544082, 48.82480973025041], [2.367112787114277, 48.8246674224249], [2.367116772734906, 48.82455037719843], [2.3671222772518172, 48.824408069339675], [2.367126262831317, 48.824291024085845], [2.367131768656961, 48.824148716200966], [2.367135754184412, 48.824031671819135], [2.367141258605667, 48.82388936299443], [2.36714524409199, 48.823772318585284], [2.3671299902678, 48.823758852441955], [2.367103124118052, 48.82376608873772], [2.366959525620353, 48.823823144153266], [2.366793095830062, 48.823889499468486], [2.366617766493774, 48.8239591620866], [2.366451335823434, 48.82402551781746], [2.366276005584158, 48.824095179026756], [2.366109574044691, 48.824161534273934], [2.365934242880364, 48.82423119587301], [2.365767810471765, 48.8242975506365], [2.365601377639541, 48.824363905164454], [2.365426045126632, 48.824433565106645], [2.365424789221592, 48.82443412954585], [2.3653980031076483, 48.82445343010952], [2.365413767905783, 48.82446809175055], [2.365394696407742, 48.824598421616635], [2.365376298184904, 48.824725577543994], [2.365357226499012, 48.82485590737421], [2.365338828104979, 48.82498306236731], [2.365319756220187, 48.825113393060995], [2.365301359005952, 48.82524054802643], [2.365282286933307, 48.82537087868421], [2.365263888174782, 48.825498033607474], [2.365244815914381, 48.82562836422942], [2.36522641833556, 48.82575551912499], [2.365207345887302, 48.82588584971107], [2.365188946764172, 48.82601300456445], [2.365170547551397, 48.826140159400616], [2.365151474822763, 48.82627048993316], [2.365133076789703, 48.82639764474159], [2.365114003884157, 48.82652797433892], [2.365105852221698, 48.82654301176906], [2.3651318723817383, 48.82655270305814], [2.365184528008931, 48.8265604851597], [2.365394228059348, 48.82659086645412], [2.365588552254284, 48.82661958471279], [2.365798251426602, 48.82664996439062], [2.36599257606446, 48.82667868199128], [2.366202277061046, 48.82670906186564], [2.366396600779534, 48.826737778801075], [2.3664188731038, 48.82674171554213]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 18, "roussel_fabien": 33.0, "nb_emargement": 1122.0, "nb_procuration": 22.0, "nb_vote_blanc": 15.0, "jadot_yannick": 46.0, "le_pen_marine": 91.0, "nb_exprime": 1100.0, "nb_vote_nul": 7.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1520.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1122, "quartier_bv": "50", "geo_point_2d": [48.8253121414411, 2.366145511771737], "melenchon_jean_luc": 489.0, "poutou_philippe": 8.0, "macron_emmanuel": 261.0}, "geometry": {"type": "Point", "coordinates": [2.366145511771737, 48.8253121414411]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fdf634106d2c7553704a2f9f2d69576c5555007f", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 34, "zemmour_eric": 64.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-59", "geo_shape": {"coordinates": [[[2.376893693204376, 48.88351412494778], [2.37686911428515, 48.883535389317935], [2.376681941899954, 48.883532440091116], [2.376477985403314, 48.88352908030487], [2.37629081306305, 48.88352613046663], [2.376086857979828, 48.883522770021166], [2.375899685684302, 48.88351981957146], [2.375695730651141, 48.88351645845972], [2.375508558400463, 48.883513507398504], [2.3753046020537, 48.88351014561334], [2.375117429847879, 48.88350719394071], [2.374913474914667, 48.88350383149637], [2.374726302753712, 48.88350087921227], [2.374522346506919, 48.883497516094536], [2.374335174401645, 48.883494562299646], [2.374131219568424, 48.88349119852274], [2.373944047497234, 48.88348824501572], [2.373756875447273, 48.88348529121605], [2.373552919324156, 48.883481926446855], [2.373548100030528, 48.883481264507], [2.373368831720276, 48.883433087409564], [2.373190169727545, 48.88338531881083], [2.373010900704315, 48.88333714206542], [2.372832239379901, 48.883289372029154], [2.372652972381649, 48.88324119475077], [2.372474311703797, 48.883193425075476], [2.37229504401434, 48.88314524635053], [2.372116383993986, 48.883097476137024], [2.371937116965857, 48.883049296871974], [2.371758458966664, 48.883001526127295], [2.371579192589114, 48.88295334722142], [2.371400533883766, 48.88290557593136], [2.371221268178603, 48.882857395586065], [2.371042611494316, 48.882809623764906], [2.370863346450491, 48.88276144287947], [2.370684689060266, 48.88271367051292], [2.370505424677884, 48.8826654890874], [2.370326767945178, 48.88261771618254], [2.370246197305219, 48.8826150431862], [2.370243035049172, 48.8826195573688], [2.370243788855062, 48.88265859488084], [2.370197872758152, 48.8827293400306], [2.370193031302803, 48.882733225741006], [2.370050812697992, 48.88280418186131], [2.369934131286929, 48.88285678561525], [2.369817449651025, 48.88290938835369], [2.36967523005349, 48.88298034401653], [2.36967494764199, 48.88298046843562], [2.369483526869913, 48.883062233755915], [2.3693413050364303, 48.883133189005086], [2.369338678223551, 48.88313491716654], [2.369189800736218, 48.88326402279154], [2.369036340379106, 48.88340215940004], [2.369034450495647, 48.88340440135707], [2.368957693316847, 48.88353728258692], [2.368919075417118, 48.88363493578035], [2.368880457383355, 48.883732588053434], [2.368829289113236, 48.88382116828], [2.36881998853736, 48.88384562682243], [2.368890193479021, 48.88386639635302], [2.369064469886244, 48.88386480665049], [2.369237193864596, 48.88386292792553], [2.369411470249516, 48.883861337717924], [2.369584195567421, 48.883859458499536], [2.36975847193013, 48.883857867786865], [2.369931197224, 48.88385598806788], [2.370105473564597, 48.88385439685006], [2.370278197470748, 48.88385251662332], [2.370286619323625, 48.883854320902394], [2.370443343928573, 48.88393204837507], [2.370603267024401, 48.884012686483636], [2.370759993942164, 48.884090413537834], [2.370919918014651, 48.88417105121185], [2.371076644507304, 48.88424877873244], [2.371236569556454, 48.88432941597189], [2.371393298372699, 48.88440714217468], [2.371553223035021, 48.88448777897239], [2.371709952789661, 48.88456550564878], [2.371869879792147, 48.88464614201908], [2.372026610506889, 48.8847238673705], [2.372186537122547, 48.88480450329908], [2.372343268786441, 48.884882228224775], [2.372503197731539, 48.88496286462517], [2.372659928981185, 48.885040589118006], [2.372819858913701, 48.88512122418458], [2.372874829002349, 48.885148483806816], [2.37288831043394, 48.885160022624525], [2.372908125418829, 48.88516403487837], [2.373009888955353, 48.88521449930139], [2.373169673622096, 48.885293017007804], [2.373326408223788, 48.88537074061201], [2.3734318817285462, 48.88542256947187], [2.373460833505177, 48.88542624363534], [2.373489367574007, 48.8853962898161], [2.373607723632021, 48.885301907892234], [2.373745401292644, 48.885191303244525], [2.3738637564207172, 48.88509692104998], [2.37400143435909, 48.88498631609441], [2.374119788546421, 48.88489193452847], [2.374257465399044, 48.88478132925784], [2.374375818667259, 48.88468694652193], [2.374513494434239, 48.88457634093632], [2.374631846772537, 48.88448195792973], [2.374769520090089, 48.88437135202198], [2.374887871487685, 48.884276969644006], [2.3748965948208243, 48.884273784807874], [2.375120051420216, 48.88425432341396], [2.375339700533412, 48.88423247471131], [2.375563158164315, 48.88421301159753], [2.375782806917349, 48.88419116208118], [2.376002455486166, 48.8841693121614], [2.376225911223865, 48.88414984870178], [2.376232775834306, 48.884150417766236], [2.376415340711741, 48.88419873808939], [2.376589677993083, 48.88424577691812], [2.376764014236648, 48.884292814584576], [2.3769465801061163, 48.88434113409141], [2.377120916991287, 48.88438817123412], [2.37730348488981, 48.8844364901997], [2.377477822416582, 48.88448352681866], [2.377660390969714, 48.884531846135104], [2.3778347291380912, 48.88457888223031], [2.378017298367531, 48.88462720009907], [2.378191637177502, 48.8846742356705], [2.378374205708792, 48.88472255298373], [2.378548545160354, 48.884769588031396], [2.378731115709963, 48.884817905702626], [2.378905455803014, 48.88486494022652], [2.3790880270288, 48.88491325645004], [2.379104235332145, 48.884942556896334], [2.379109796295841, 48.88494496534982], [2.379312630110972, 48.884875839943994], [2.3794139394659912, 48.88484015824272], [2.379438966701756, 48.884801949706784], [2.379397379796583, 48.88478529088263], [2.379298942061936, 48.88474846942726], [2.379132642178315, 48.88468221900104], [2.378976642358344, 48.88462386568397], [2.3788771370194812, 48.88458422434481], [2.378868981363138, 48.8845783606984], [2.378850141416228, 48.88457398486558], [2.378783347706346, 48.88454737530802], [2.378734020112628, 48.88452771190604], [2.37873221532338, 48.88452685357736], [2.378585403201209, 48.88444417387624], [2.378435208277386, 48.884360126536365], [2.37828839709681, 48.88427744645854], [2.378138204496797, 48.88419339874038], [2.377991394257807, 48.88411071828587], [2.377841201254423, 48.88402667017534], [2.377694391946271, 48.88394399024335], [2.377544199913844, 48.88385994084827], [2.377397391547267, 48.88377726053959], [2.377247200475054, 48.883693210759176], [2.377100393050047, 48.8836105300738], [2.376950202938041, 48.883526479908106], [2.376893693204376, 48.88351412494778]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 59, "roussel_fabien": 32.0, "nb_emargement": 1189.0, "nb_procuration": 59.0, "nb_vote_blanc": 11.0, "jadot_yannick": 100.0, "le_pen_marine": 58.0, "nb_exprime": 1158.0, "nb_vote_nul": 20.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1576.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "73", "geo_point_2d": [48.88393826198988, 2.373274930657029], "melenchon_jean_luc": 465.0, "poutou_philippe": 2.0, "macron_emmanuel": 345.0}, "geometry": {"type": "Point", "coordinates": [2.373274930657029, 48.88393826198988]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2597f25c8730ff713d9174884afb3065415ef3bd", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 64, "zemmour_eric": 71.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-24", "geo_shape": {"coordinates": [[[2.315226109111446, 48.83156260976371], [2.315222163079183, 48.831566305186605], [2.315159450268226, 48.83158156015563], [2.314964527490241, 48.831624522228154], [2.314783117943106, 48.831668647848296], [2.314588194529347, 48.831711609304215], [2.314406784360514, 48.83175573435011], [2.314381881089201, 48.83176282796445], [2.3144093688654, 48.83181206441854], [2.314566705864768, 48.831898512040425], [2.314723165835656, 48.83198435543708], [2.31488050387539, 48.832070802632835], [2.315036964880112, 48.8321566456058], [2.315194302598, 48.832243092367676], [2.315350764636559, 48.83232893491699], [2.315508104757042, 48.83241538126056], [2.315664567829445, 48.832501223386124], [2.315821908990312, 48.83258766930359], [2.315978373096566, 48.832673511005446], [2.316135713935588, 48.83275995648902], [2.316292179063899, 48.832845798666504], [2.31644952230555, 48.832932243731754], [2.3166059884794192, 48.83301808458616], [2.316763332761469, 48.83310452922532], [2.316919799969304, 48.83319036965604], [2.317077143929512, 48.83327681386128], [2.317233613533466, 48.833362653876016], [2.31723725773134, 48.833365776617185], [2.317238683848397, 48.833368291311366], [2.317244269160425, 48.83337621429562], [2.31724818958864, 48.83338851491846], [2.317261424385672, 48.833392069242315], [2.317296368216839, 48.83341141096486], [2.317332084131751, 48.833430677938644], [2.317354163952143, 48.83343625506135], [2.317368806500359, 48.83342250627243], [2.317494944362588, 48.83333398221152], [2.317620003604474, 48.83324591953337], [2.317746140612837, 48.8331573951936], [2.317871200369078, 48.833069332246666], [2.317997336523579, 48.832980807628054], [2.318122394069495, 48.83289274439681], [2.318247452555222, 48.83280468103572], [2.318373587430415, 48.832716155999336], [2.318498643705832, 48.83262809235393], [2.318624777727181, 48.83253956703871], [2.318749834516959, 48.832451503124545], [2.318875967684466, 48.83236297753047], [2.318877985454371, 48.83236181533841], [2.319049558394707, 48.83228178838508], [2.319234194344401, 48.83219494543247], [2.319405767550915, 48.83211491796401], [2.319590402316179, 48.83202807444859], [2.319761973064437, 48.83194804644949], [2.319946606645278, 48.83186120237127], [2.319992276006698, 48.83183989954028], [2.320008926046045, 48.83182850469867], [2.319993111975614, 48.831813827836854], [2.319908064588525, 48.831686939003774], [2.319824416992452, 48.831560756868065], [2.319739370428838, 48.831433867886346], [2.319655723647255, 48.8313076856042], [2.319655635457379, 48.831307553793856], [2.319571439038958, 48.83118687877896], [2.319487392117883, 48.8310654256815], [2.319403196479971, 48.83094475052208], [2.319319151703504, 48.83082329728792], [2.3192349568460893, 48.830702621983974], [2.319150911489748, 48.83058116859759], [2.319117348330079, 48.83054893278282], [2.31909733254982, 48.83055489051325], [2.319017859860469, 48.830579612446726], [2.318856849512235, 48.830630065185446], [2.318677796654102, 48.830685763510154], [2.318516785660766, 48.830736214886954], [2.318337733436802, 48.83079191270503], [2.318176721774654, 48.83084236451862], [2.317997668834648, 48.83089806092296], [2.317836656515547, 48.83094851227397], [2.317656723256127, 48.830991477887075], [2.3174837306896, 48.83104753546879], [2.317303796785748, 48.831090501446475], [2.317130803511115, 48.831146558512785], [2.317126855851662, 48.83114737509011], [2.316946921309078, 48.83119034052708], [2.316686954942051, 48.83121652301924], [2.31650701843605, 48.83125948778398], [2.316325611464738, 48.831303615758074], [2.316145674372117, 48.83134657907653], [2.315964265429778, 48.831390706491334], [2.315784329100853, 48.83143366927062], [2.315602919549584, 48.83147779613392], [2.315422982610555, 48.83152075926554], [2.315304285205311, 48.831549631464384], [2.315264438039824, 48.83154447836292], [2.315243024783565, 48.83155460774158], [2.315226109111446, 48.83156260976371]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 24, "roussel_fabien": 19.0, "nb_emargement": 1251.0, "nb_procuration": 75.0, "nb_vote_blanc": 12.0, "jadot_yannick": 129.0, "le_pen_marine": 54.0, "nb_exprime": 1235.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 1, "nb_inscrit": 1619.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1251, "quartier_bv": "56", "geo_point_2d": [48.83192653247228, 2.3174727190221107], "melenchon_jean_luc": 329.0, "poutou_philippe": 10.0, "macron_emmanuel": 498.0}, "geometry": {"type": "Point", "coordinates": [2.3174727190221107, 48.83192653247228]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ae588a9e4adf04d0a9bc256c245fcedfdc015d05", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 35, "zemmour_eric": 73.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-5", "geo_shape": {"coordinates": [[[2.380322790995355, 48.87883363358004], [2.380315278465591, 48.87883623512747], [2.380183703711785, 48.87883819981391], [2.380000505193457, 48.87884004360155], [2.379801101497042, 48.878843019951574], [2.379617902948217, 48.87884486315367], [2.379418499222203, 48.87884783796718], [2.379235299279445, 48.878849680576714], [2.379035895502414, 48.87885265565219], [2.378852696892626, 48.878854497683335], [2.378653293075299, 48.87885747212151], [2.378470094435039, 48.878859313567155], [2.378467562445989, 48.87885919520009], [2.378305782527467, 48.878841558371924], [2.3781609419647642, 48.87883268335849], [2.378133270495975, 48.87882769312796], [2.378124515505732, 48.878831681147794], [2.378085851710946, 48.87882746658517], [2.377879739317271, 48.87880488547453], [2.377679294684914, 48.878783032250745], [2.377478851573469, 48.87876117959726], [2.377272739705413, 48.8787385974402], [2.377072295582883, 48.878716743198765], [2.376866184056106, 48.878694161240134], [2.376665740275297, 48.878672306317156], [2.376459630464103, 48.87864972366474], [2.376259187024824, 48.878627868060185], [2.3760530762131102, 48.87860528380058], [2.3758526331048, 48.8785834284137], [2.375646522645253, 48.878560843453215], [2.375630707412774, 48.87857050792148], [2.375648577013775, 48.878703619382605], [2.375664861364435, 48.87883351104641], [2.375682731143069, 48.878966622470664], [2.37569901429769, 48.87909651409169], [2.375716885617313, 48.879229625486204], [2.375733168939345, 48.879359517071585], [2.375751040436411, 48.879492628429205], [2.375767323936635, 48.879622519079646], [2.375785194247876, 48.87975563039327], [2.375801479268208, 48.879885521914424], [2.375801487885397, 48.879885599301744], [2.375809567836415, 48.87997334409398], [2.375819908470274, 48.88006542014678], [2.375813997342244, 48.880073512075334], [2.375691259725682, 48.88012876903595], [2.375568644242156, 48.88018166486609], [2.37555251577708, 48.88019421182948], [2.375566696863085, 48.88020829555657], [2.375717656532903, 48.88028335758887], [2.375872280732929, 48.88036022009971], [2.37602324263627, 48.88043528264268], [2.376177866385644, 48.88051214384188], [2.376328829169804, 48.880587205989166], [2.376483453821236, 48.88066406678308], [2.37663441748622, 48.880739128534714], [2.37678904303961, 48.880815988923324], [2.376940007585522, 48.88089105027927], [2.37709463403022, 48.880967911161896], [2.377095008231973, 48.88096809027666], [2.377255774418215, 48.88104251423013], [2.377413989128834, 48.88111539943001], [2.377574756225658, 48.881189822945174], [2.377732973204473, 48.88126270682159], [2.377893739848469, 48.88133712989137], [2.378051957710383, 48.88141001423575], [2.378212725264961, 48.88148443686725], [2.378370944031661, 48.88155731988103], [2.37853171249672, 48.881631742074205], [2.378689932146634, 48.881704625556026], [2.378850701522382, 48.881779047310864], [2.379008922076872, 48.88185192946207], [2.379169692363208, 48.881926350778656], [2.3793279138010313, 48.88199923339781], [2.379488684997858, 48.88207365427607], [2.37964690732964, 48.88214653646389], [2.379807679447872, 48.88222095600459], [2.3799659026735123, 48.88229383776112], [2.380112794220935, 48.88236149938927], [2.380273567657847, 48.882435919189064], [2.380284899811335, 48.882441139087916], [2.380293801422118, 48.882442742799356], [2.380486174644286, 48.88243276119823], [2.380675405982461, 48.8824228997334], [2.380867777694643, 48.8824129175119], [2.381057010262578, 48.882403054551524], [2.381249381828303, 48.88239307171669], [2.381438612877728, 48.88238320904526], [2.381464034219118, 48.88238426669068], [2.381469940437043, 48.88236781073197], [2.381470191015842, 48.88233144411996], [2.3814672642428922, 48.882303701831006], [2.381468446144171, 48.882299367782174], [2.381485005751431, 48.88227525332695], [2.381485062627435, 48.882275171782005], [2.381578263962901, 48.88214294665407], [2.381660506338443, 48.88202628076828], [2.381661238365563, 48.88202538072454], [2.381765710155709, 48.88191268857915], [2.381870931967866, 48.88179937966942], [2.381975404225081, 48.88168668642567], [2.382080625124374, 48.881573377308364], [2.382185096474459, 48.88146068385851], [2.382290316460898, 48.88134737453368], [2.382394785529687, 48.88123468176991], [2.382500004613949, 48.88112137133825], [2.382604474139147, 48.881008678375416], [2.382709692299912, 48.88089536863553], [2.382814160928674, 48.880782674567264], [2.382919378176616, 48.88066936461985], [2.383023844534796, 48.8805566703385], [2.383129060869927, 48.880443360183506], [2.383233527673876, 48.88033066660235], [2.383338743106855, 48.88021735534058], [2.383443207640257, 48.88010466154631], [2.383548423513278, 48.87999135098327], [2.383652887150276, 48.87987865608366], [2.383758100747035, 48.8797653453061], [2.383862564840468, 48.87965265020739], [2.383967777524454, 48.87953933922232], [2.38407223933675, 48.87942664480981], [2.384177451118614, 48.87931333271793], [2.384179951099413, 48.87929817208559], [2.384164923039719, 48.87929108180683], [2.383932945423132, 48.879257810968305], [2.38371756279497, 48.879224137670576], [2.383714602799642, 48.87922342904955], [2.383559708552485, 48.879172269996474], [2.383405773084197, 48.87911962009139], [2.383250879449041, 48.879068460633924], [2.3830969445997843, 48.87901581032676], [2.382942051566178, 48.87896465136418], [2.382788117346507, 48.8789119997557], [2.382633224925001, 48.87886084038871], [2.38247929132447, 48.87880818837818], [2.382472757069868, 48.878807180698026], [2.382273353640548, 48.87881016116599], [2.382060884929848, 48.878812806762035], [2.381861481455522, 48.878815786543925], [2.381649012711633, 48.87881843050975], [2.381449609192215, 48.87882140960561], [2.381237140393797, 48.87882405373969], [2.381037736829192, 48.87882703214956], [2.380825269350379, 48.8788296755597], [2.380625865740802, 48.87883265328352], [2.380413396854708, 48.87883529595562], [2.380345567952915, 48.87883630827371], [2.380322790995355, 48.87883363358004]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 5, "roussel_fabien": 12.0, "nb_emargement": 1021.0, "nb_procuration": 56.0, "nb_vote_blanc": 7.0, "jadot_yannick": 87.0, "le_pen_marine": 44.0, "nb_exprime": 1008.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 1, "nb_inscrit": 1348.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1021, "quartier_bv": "76", "geo_point_2d": [48.88022341832237, 2.379747282712506], "melenchon_jean_luc": 357.0, "poutou_philippe": 6.0, "macron_emmanuel": 354.0}, "geometry": {"type": "Point", "coordinates": [2.379747282712506, 48.88022341832237]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2ad13fb9a6733aefb9c731ede444ba5ec93c88a7", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 18, "zemmour_eric": 37.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-50", "geo_shape": {"coordinates": [[[2.37167416180715, 48.895480104709335], [2.37167301200805, 48.89548010407254], [2.371585561328112, 48.895548347681654], [2.371426968535352, 48.8956741752545], [2.371339517206927, 48.89574241867185], [2.371289958854494, 48.89574968669154], [2.371278281042891, 48.8957651305161], [2.371263052971316, 48.8957763855649], [2.371294183070252, 48.89579474848548], [2.371262225298511, 48.89587191391085], [2.371235396936746, 48.89591669485727], [2.371233150778297, 48.895919720958126], [2.371123291080278, 48.89601093382509], [2.371020465291377, 48.89610132827825], [2.370917637770745, 48.89619172352776], [2.370807778320771, 48.89628293519054], [2.3707049500720743, 48.89637333024245], [2.370595089866267, 48.896464541694996], [2.370492260900572, 48.89655493565005], [2.370382399928054, 48.896646147791614], [2.370379448157045, 48.896651458926485], [2.3703732311478243, 48.896782624866766], [2.370368413774578, 48.896907795211334], [2.370362196707047, 48.897038961120344], [2.370357379283552, 48.89716413143516], [2.370351162157508, 48.89729529731284], [2.370346343319932, 48.89742046759076], [2.37034012749941, 48.89755163344434], [2.370335308611475, 48.8976768036925], [2.370330491064414, 48.89780197393333], [2.370324273794455, 48.89793313973318], [2.370319454833091, 48.89805830993704], [2.370313238868771, 48.898189475712805], [2.370308419857147, 48.89831464588694], [2.370302202470357, 48.89844581162421], [2.370297384772536, 48.89857098177576], [2.370291167327329, 48.89870214748171], [2.370299217233379, 48.89871550416809], [2.3703877356507093, 48.89871542366991], [2.370589161369683, 48.898719549087524], [2.370791170905237, 48.89872356302043], [2.370992596687567, 48.89872768775951], [2.371194606285802, 48.89873170101187], [2.371396032131579, 48.898735825072436], [2.3715980431456, 48.89873983855073], [2.3717994677018, 48.898743961026284], [2.372001478778489, 48.89874797382407], [2.3722029047619753, 48.89875209562827], [2.372404914537353, 48.8987561077384], [2.372606340584246, 48.89876022886406], [2.372808350422271, 48.89876424029368], [2.373009776532664, 48.8987683607408], [2.373211786433325, 48.8987723714899], [2.373413212607003, 48.89877649125845], [2.37361522393426, 48.89878050133421], [2.37381664879653, 48.89878462131638], [2.374018660197217, 48.89878862981233], [2.374220086486932, 48.89879274912307], [2.374422096586248, 48.89879675693137], [2.374623522939222, 48.898800875563595], [2.374825533101126, 48.898804882691394], [2.375026959517454, 48.89880900064509], [2.375228969742034, 48.89881300709238], [2.375430396221704, 48.89881712436748], [2.375632407861935, 48.89882113104067], [2.37583383305175, 48.898825246730866], [2.376035844754545, 48.89882925272354], [2.376237270007673, 48.898833367735186], [2.37643928177302, 48.89883737304735], [2.3766407084535253, 48.898841487387536], [2.376842718917441, 48.898845492012065], [2.377044145661138, 48.89884960567377], [2.377246156187585, 48.89885360961777], [2.37744758298381, 48.89885772350015], [2.377649594947504, 48.89886172587151], [2.377851020443138, 48.89886583906826], [2.378053032469335, 48.898869840759055], [2.378254458028134, 48.89887395327731], [2.378456470116824, 48.898877954287606], [2.378657897102854, 48.89888206613437], [2.378859907890054, 48.89888606645708], [2.379061334939433, 48.89889017762527], [2.379263345778381, 48.898894178166735], [2.379464772901619, 48.89889828775715], [2.379666785167009, 48.89890228762516], [2.379868210989491, 48.89890639652996], [2.38007022331734, 48.89891039571742], [2.380271649203133, 48.898914503943665], [2.380473661593427, 48.898918502450655], [2.380675088906291, 48.89892261000543], [2.380877099995049, 48.898926607824826], [2.3810785273711, 48.898930714701045], [2.381280538522385, 48.89893471183993], [2.381481965950931, 48.89893881893686], [2.381683978539189, 48.89894281450303], [2.381885404666932, 48.89894692091437], [2.382087417317588, 48.89895091580002], [2.382288843508495, 48.8989550215328], [2.382490856221539, 48.898959015737944], [2.382692283839677, 48.8989631207992], [2.382894295251122, 48.898967114316775], [2.382898879381202, 48.89896668738104], [2.383082335977373, 48.898927389133355], [2.38326910911506, 48.898887788427], [2.383452565153722, 48.89884848960936], [2.383639337715975, 48.89880888922206], [2.383822793197127, 48.89876958983448], [2.384009565205438, 48.89872998796769], [2.38419302012907, 48.89869068801017], [2.384379791561949, 48.89865108646245], [2.3845632459281623, 48.89861178593499], [2.384750016806974, 48.89857218290778], [2.384933470615554, 48.89853288181038], [2.385120240919036, 48.898493279102226], [2.385303694170185, 48.8984539774349], [2.385490463919576, 48.89841437324728], [2.385673916613083, 48.898375071010015], [2.385860685787247, 48.89833546714146], [2.386044137923209, 48.898296164334276], [2.386230906543157, 48.89825655898623], [2.386239107885987, 48.89824422105918], [2.386146959992599, 48.898112956128315], [2.386044786297887, 48.897982336680435], [2.386055899986467, 48.89796431563725], [2.386001436541143, 48.89793828635643], [2.385883128670453, 48.89783253280967], [2.385768867418353, 48.89772916418575], [2.385650560505918, 48.89762340948975], [2.385536300174451, 48.89752004062421], [2.385417995562975, 48.897414286584535], [2.385303734788396, 48.897310917470314], [2.385189474467546, 48.897207548237326], [2.385071171270577, 48.89710179382488], [2.384956913234366, 48.89699842435731], [2.384838609631805, 48.896892668788645], [2.384724352516194, 48.896789299079444], [2.384606049850611, 48.89668354416015], [2.384491793655792, 48.896580174209305], [2.384373491937801, 48.89647441904009], [2.384259236663561, 48.896371048847634], [2.384140935903891, 48.89626529252924], [2.3841036729315, 48.896231578895744], [2.384067906935646, 48.896222712055334], [2.3840409844385, 48.89623601835884], [2.383844313527799, 48.896252457868854], [2.383650254051779, 48.89626904899107], [2.383453582903476, 48.89628548695965], [2.383259523179833, 48.89630207744822], [2.383062850408938, 48.896318515666884], [2.382868791801481, 48.89633510552885], [2.382672118782454, 48.89635154310535], [2.382478058563481, 48.89636813232661], [2.382281386670909, 48.8963845683687], [2.382087326204339, 48.896401156956344], [2.381890654052989, 48.89641759325555], [2.381696593338825, 48.89643418120955], [2.381499920950056, 48.89645061596732], [2.381305859977627, 48.89646720418692], [2.38110918597686, 48.89648363829548], [2.380915126131454, 48.89650022498923], [2.380718451871914, 48.89651665935485], [2.380524390415135, 48.89653324540794], [2.380327717282032, 48.896549678239204], [2.380133655577699, 48.89656626365857], [2.379936982185932, 48.896582696746925], [2.379742920233952, 48.89659928153268], [2.379546245230213, 48.896615713971805], [2.37935218439461, 48.89663229813097], [2.379155509153545, 48.896648729028655], [2.378961446706501, 48.8966653125471], [2.378767385499847, 48.89668189575789], [2.378570709876029, 48.8966983265937], [2.378376647057944, 48.89671490916378], [2.378179972550118, 48.896731339364514], [2.377985909484424, 48.89674792130092], [2.377789234739331, 48.896764349960215], [2.377595171426144, 48.89678093126297], [2.377398495058381, 48.89679736017224], [2.377204432861624, 48.896813940848396], [2.377007756256622, 48.896830368216264], [2.376813692437708, 48.89684694915095], [2.376617016948642, 48.896863375883726], [2.376422952893124, 48.896879955285456], [2.376226277145213, 48.896896382275344], [2.376032212842234, 48.89691296104342], [2.375835536857135, 48.896929386491834], [2.375827515715888, 48.89692843907541], [2.375655355592984, 48.89686925159487], [2.375481762648662, 48.8968085581289], [2.375309603315251, 48.896749370144875], [2.37513601116293, 48.89668867707036], [2.37496385262981, 48.89662948768359], [2.37479026128028, 48.89656879410124], [2.374618103525859, 48.8965096051102], [2.374444511626015, 48.89644891011368], [2.374272356025001, 48.8963897206263], [2.374098764917146, 48.89632902602123], [2.373926608752535, 48.896269835123945], [2.373753019811381, 48.89620914001824], [2.373580864436278, 48.89614994861742], [2.373407276297919, 48.89608925300392], [2.373235121701495, 48.89603006199893], [2.373061534376758, 48.89596936497836], [2.372889380569837, 48.89591017346989], [2.372715792673175, 48.89584947683367], [2.372543641030487, 48.895790283929564], [2.372370053936626, 48.89572958678555], [2.372319926421032, 48.895712351244285], [2.3723087071801903, 48.89570245660545], [2.3722677400140872, 48.89569970040149], [2.372145715373576, 48.89565774337366], [2.372017258223627, 48.89561705649825], [2.371845106779756, 48.89555786257034], [2.371716651475149, 48.89551717537596], [2.37167416180715, 48.895480104709335]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 50, "roussel_fabien": 21.0, "nb_emargement": 954.0, "nb_procuration": 43.0, "nb_vote_blanc": 13.0, "jadot_yannick": 54.0, "le_pen_marine": 46.0, "nb_exprime": 934.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1235.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 954, "quartier_bv": "74", "geo_point_2d": [48.89761530827116, 2.3776883430765765], "melenchon_jean_luc": 506.0, "poutou_philippe": 8.0, "macron_emmanuel": 217.0}, "geometry": {"type": "Point", "coordinates": [2.3776883430765765, 48.89761530827116]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "08a80995d5bfe250112cc42896cacce83b3a60da", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 41, "zemmour_eric": 112.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-44", "geo_shape": {"coordinates": [[[2.380396456832899, 48.89403685826699], [2.380378160176392, 48.8940330629039], [2.380294047125859, 48.89396702060178], [2.380156362186043, 48.8938597936678], [2.380032880519679, 48.89376284016348], [2.379895196657666, 48.8936556129093], [2.379771715961872, 48.893558659117616], [2.379634033177756, 48.8934514315432], [2.379510553452522, 48.89335447746412], [2.37937287174609, 48.89324724956948], [2.379249392991408, 48.8931502952031], [2.379111712362751, 48.89304306698822], [2.378988234578611, 48.89294611233451], [2.378864757254336, 48.892849157544866], [2.378727078214115, 48.8927419288583], [2.378708439382548, 48.89274056861268], [2.3785509053219283, 48.89281917096173], [2.37839869269984, 48.892896168458975], [2.3782411577009253, 48.89297477038943], [2.37808894552971, 48.89305176748915], [2.3779314082284753, 48.893130368993845], [2.377779195144313, 48.89320736568895], [2.377621658268598, 48.8932859667821], [2.3774694429076613, 48.89336296306543], [2.377311905093438, 48.89344156373998], [2.377159688819543, 48.893518559618656], [2.37713618415453, 48.89353047294869], [2.377136917963091, 48.89354472107551], [2.377248811906345, 48.893646318993966], [2.3773720953375452, 48.89375734241744], [2.377483990186003, 48.89385894099572], [2.3776072732583042, 48.893969964148475], [2.377719170397123, 48.89407156159514], [2.377842454463628, 48.89418258538348], [2.377954351154476, 48.89428418258361], [2.37807763760054, 48.89439520521614], [2.37818953519653, 48.89449680307604], [2.378312822647571, 48.89460782544488], [2.378424721170195, 48.89470942216605], [2.378548009615589, 48.89482044517053], [2.378659909054117, 48.89492204165221], [2.378783197151268, 48.89503306348666], [2.378895097494974, 48.895134660628166], [2.379018387961002, 48.89524568220598], [2.379130289231359, 48.89534727820877], [2.37925358069168, 48.89545830042217], [2.379365482877967, 48.89555989618545], [2.379385042976216, 48.895580056817515], [2.3793992089512512, 48.89558142884311], [2.379496913435912, 48.895527116367795], [2.379637370917823, 48.89544896586268], [2.379799157187402, 48.89535903218323], [2.379939615125954, 48.895280881318676], [2.380101400361739, 48.89519094631782], [2.380241857382547, 48.89511279598605], [2.380403641573933, 48.89502286056308], [2.38054409633444, 48.89494470895854], [2.380705879481534, 48.89485477311348], [2.380846334687987, 48.894776622048795], [2.380986789483473, 48.89469846991453], [2.381148571100713, 48.89460853345118], [2.381289023625215, 48.89453038094343], [2.38145080418739, 48.89444044495729], [2.381445515727514, 48.89442487833151], [2.381247063041034, 48.8943901035154], [2.381078617032354, 48.894360812812764], [2.380880164835127, 48.89432603738663], [2.380711719240031, 48.89429674616621], [2.380704752907599, 48.894293834121946], [2.380581267826798, 48.89419688121445], [2.380446235731413, 48.89409115493694], [2.380406866107511, 48.89406024403235], [2.380396456832899, 48.89403685826699]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 44, "roussel_fabien": 25.0, "nb_emargement": 1016.0, "nb_procuration": 17.0, "nb_vote_blanc": 10.0, "jadot_yannick": 30.0, "le_pen_marine": 83.0, "nb_exprime": 998.0, "nb_vote_nul": 8.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1573.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1016, "quartier_bv": "74", "geo_point_2d": [48.894146621853, 2.3791462952490803], "melenchon_jean_luc": 414.0, "poutou_philippe": 10.0, "macron_emmanuel": 228.0}, "geometry": {"type": "Point", "coordinates": [2.3791462952490803, 48.894146621853]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4e422eac0e334d9afc2dfd5cba3a764a95286242", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 191, "zemmour_eric": 181.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 21.0, "date_tour": "2022-04-10", "id_bvote": "16-49", "geo_shape": {"coordinates": [[[2.251276327244846, 48.84289030424618], [2.251269457063979, 48.842905670194526], [2.251331997624025, 48.84303302690108], [2.251390766524705, 48.84315490256599], [2.251453309042751, 48.843282259189245], [2.251512078508146, 48.8434041347673], [2.251574620246191, 48.84353149218942], [2.251633390289219, 48.84365336678139], [2.251692160594194, 48.84377524223044], [2.251754704593154, 48.8439025986253], [2.2518134754628623, 48.844024473987545], [2.251871553125943, 48.84414273579366], [2.251930324539693, 48.84426461107222], [2.2519884027355213, 48.84438287279616], [2.252046481194926, 48.8445011344793], [2.252105252059367, 48.84462300962429], [2.25216333106453, 48.844741270326], [2.252222103835458, 48.84486314539579], [2.252224170530513, 48.844867353878286], [2.252282943586001, 48.84498922890445], [2.252346721766877, 48.84511909279674], [2.252405495405744, 48.8452409668359], [2.252469274200064, 48.84537083063351], [2.252513177557212, 48.84546022625011], [2.252571951957151, 48.84558210106946], [2.252574039916223, 48.845586351046684], [2.252574490061752, 48.84558726851839], [2.252554317451831, 48.8455982766885], [2.252560830265515, 48.8456080161857], [2.252599357205468, 48.845624610129796], [2.252730868770829, 48.845681252857524], [2.252897698202488, 48.84575347723464], [2.253067737642896, 48.845826714317376], [2.253234568019927, 48.84589893731605], [2.253404609770895, 48.84597217391895], [2.2535714397050572, 48.84604439732926], [2.253741482416799, 48.8461176325445], [2.253908313283444, 48.846189855475636], [2.254078356930406, 48.846263091101804], [2.254245188742307, 48.84633531265445], [2.254415233337268, 48.846408547792294], [2.254582066068889, 48.846480769765016], [2.254752111611752, 48.846554004414465], [2.254918945288721, 48.84662622500874], [2.2550889917796892, 48.846699459169834], [2.255255826376289, 48.84677168018421], [2.25542266281063, 48.846843900070425], [2.255592709357104, 48.846917133492816], [2.255759546711092, 48.84698935379908], [2.255929594218413, 48.84706258583381], [2.256096432505001, 48.84713480566089], [2.256266482309987, 48.847208038114964], [2.256433320179306, 48.847280256555145], [2.256603370932404, 48.847353488520795], [2.256611350620256, 48.84735494291695], [2.256793653743375, 48.84735021975227], [2.256974309278283, 48.84734549956808], [2.257154964780465, 48.84734077911107], [2.257337267804763, 48.847336055118], [2.257517923254139, 48.84733133321364], [2.257700224849986, 48.84732660865902], [2.2578808802209203, 48.84732188710582], [2.258063183113318, 48.84731716200661], [2.258069993265326, 48.84731816386522], [2.258244082437522, 48.847377726546256], [2.258418248121481, 48.847438930789124], [2.258592338095232, 48.847498492956966], [2.258766503216389, 48.84755969757708], [2.258940593991595, 48.84761925923172], [2.259114759925357, 48.847680463338264], [2.259131087271549, 48.847678689264946], [2.259188082513512, 48.84763872893651], [2.259226830793573, 48.84761412022988], [2.259230141753997, 48.847605809886886], [2.259184094593843, 48.84748213870022], [2.259138596208745, 48.84736196132606], [2.259092550843797, 48.847238290085514], [2.259047052882793, 48.847118112650264], [2.259001006575149, 48.846994442238255], [2.258955509050923, 48.84687426384257], [2.258910013086337, 48.84675408632438], [2.258863967425528, 48.846630415819234], [2.25886391091993, 48.846630268872126], [2.258807218003817, 48.84648874105958], [2.258751491115924, 48.84634925445727], [2.258694800173378, 48.84620772656424], [2.25863907251149, 48.84606824076525], [2.258638712854734, 48.8460669893129], [2.258616519547668, 48.84594204902955], [2.258594204095552, 48.845817943484555], [2.25857201100114, 48.845693003165046], [2.258549697137008, 48.84556889669316], [2.25854966402819, 48.8455670096108], [2.258565411513246, 48.84545624462517], [2.258585520731576, 48.84535132557973], [2.258575661417118, 48.84533124900608], [2.258549864833009, 48.8453187192001], [2.258549384966465, 48.84531873421341], [2.258388432337973, 48.84532767101223], [2.258175408504169, 48.84533700242063], [2.258014455755133, 48.84534593871623], [2.257801431779702, 48.84535526945855], [2.25764047891013, 48.84536420525088], [2.257627326720973, 48.84535099553738], [2.257722481871496, 48.845233809902155], [2.257810962319752, 48.84512303755074], [2.257906116641159, 48.84500585174551], [2.2579945963121952, 48.84489507923559], [2.258089749804393, 48.84477789326037], [2.258178228698117, 48.844667120591986], [2.258273381361218, 48.84454993444677], [2.25836185947764, 48.844439161619924], [2.2584570113116538, 48.844321975304666], [2.258545488650783, 48.844211202319435], [2.258545671380058, 48.8442030515571], [2.258464514686688, 48.844093709399104], [2.2583801066145828, 48.84398258425047], [2.258298950611971, 48.84387324195855], [2.25821454324994, 48.84376211667114], [2.258133387937978, 48.843652774245285], [2.258048981298813, 48.8435416479198], [2.257967825302186, 48.843432306250875], [2.257883420735583, 48.84332117979506], [2.257802265442399, 48.84321183709291], [2.257717860210538, 48.843100711389184], [2.257694685745685, 48.843069488008815], [2.257679316421076, 48.84305814959561], [2.257645174272051, 48.84306712031513], [2.2575270142833332, 48.84311227385175], [2.257397166656009, 48.84316243257157], [2.257379912375888, 48.84316050243716], [2.257245093875437, 48.84305605064464], [2.257111439950719, 48.8429529100081], [2.256976621175637, 48.84284845698584], [2.256842968314565, 48.842745316030104], [2.256708151977007, 48.842640862694346], [2.256574500179465, 48.842537721419546], [2.256562722653835, 48.84253462273943], [2.256358283712482, 48.84254878887803], [2.256175866773316, 48.842566192634465], [2.256166233861506, 48.84256987952243], [2.256028507073804, 48.84269607106951], [2.255886842744016, 48.84282171542044], [2.255873720027505, 48.84282522228752], [2.255693974074847, 48.84280588639188], [2.255524743534375, 48.84278701228876], [2.255355513103622, 48.842768138845194], [2.255175767540088, 48.842748802169965], [2.255172757834461, 48.842748689896226], [2.254978840339533, 48.84275564956579], [2.254786439766775, 48.8427625796979], [2.254592522155722, 48.84276953964048], [2.254400122842911, 48.84277646915966], [2.254206205128493, 48.84278342847597], [2.254013804350565, 48.842790357365296], [2.253819886545872, 48.84279731515594], [2.253627485652344, 48.84280424432318], [2.253433567744412, 48.84281120148758], [2.253241168123638, 48.842818129142614], [2.253047250099592, 48.84282508658001], [2.2528548490138283, 48.84283201360511], [2.252660930886453, 48.842838970416224], [2.252468529698096, 48.842845896819945], [2.252274611480508, 48.84285285210546], [2.25208221017656, 48.8428597787871], [2.251889810196972, 48.84286670426846], [2.251695891824743, 48.84287365861576], [2.251503490367081, 48.84288058436651], [2.251309571891664, 48.84288753808753], [2.251276327244846, 48.84289030424618]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 49, "roussel_fabien": 9.0, "nb_emargement": 1314.0, "nb_procuration": 76.0, "nb_vote_blanc": 5.0, "jadot_yannick": 44.0, "le_pen_marine": 95.0, "nb_exprime": 1309.0, "nb_vote_nul": 0.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1638.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1314, "quartier_bv": "61", "geo_point_2d": [48.84484113161123, 2.2554875394466074], "melenchon_jean_luc": 167.0, "poutou_philippe": 4.0, "macron_emmanuel": 573.0}, "geometry": {"type": "Point", "coordinates": [2.2554875394466074, 48.84484113161123]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c252cb369d01901bc1be250df313aa5bc21e4c06", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 21, "zemmour_eric": 55.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-35", "geo_shape": {"coordinates": [[[2.415411366734103, 48.854339557370096], [2.415390529192079, 48.854343994571856], [2.415192942445508, 48.85430781960509], [2.415003495660682, 48.85427558997186], [2.414805908079487, 48.854239414357146], [2.4146164617928623, 48.854207183209866], [2.414427015730599, 48.854174952660976], [2.41422943029395, 48.85413877609777], [2.414039983367101, 48.85410654402818], [2.413842398458459, 48.85407036682367], [2.413652953372421, 48.854038135045315], [2.413455367629188, 48.85400195719279], [2.413265923041398, 48.85396972390039], [2.41306833918909, 48.85393354541326], [2.412878895079202, 48.85390131240547], [2.412681310392221, 48.85386513327032], [2.412491866780713, 48.85383289874847], [2.412294283984668, 48.85379671897876], [2.412104839488368, 48.85376448473477], [2.411907257220466, 48.85372830432374], [2.411717814585164, 48.853696068572425], [2.411578889743212, 48.85367062911258], [2.4115665923870733, 48.853666319217545], [2.411552500011179, 48.853666005291345], [2.411493843123923, 48.85365526368586], [2.41129898243551, 48.85362024411622], [2.411101401274089, 48.853584062369805], [2.410906541125752, 48.85354904125953], [2.410708960506816, 48.85351285886282], [2.410647207537503, 48.853501759838686], [2.410629981470563, 48.85350089345768], [2.410614316392507, 48.853533836774695], [2.410589217443908, 48.853672103072455], [2.41056406234428, 48.853810863713264], [2.410538964491595, 48.85394912997273], [2.4105138091244083, 48.85408789056844], [2.410488709642136, 48.85422615677619], [2.410463555380368, 48.85436491643412], [2.410438455621232, 48.85450318349613], [2.410413301091803, 48.854641943108945], [2.410388201076047, 48.854780209226654], [2.410363044906154, 48.854918969686864], [2.410337945986324, 48.855057235766274], [2.410312789548853, 48.85519599618134], [2.41028768899949, 48.855334262209034], [2.410262533657177, 48.855473022585635], [2.410251627217166, 48.85548077876163], [2.410017110670431, 48.85551116639824], [2.409776719444843, 48.855542183820305], [2.4097666761924432, 48.85555434201592], [2.409828980095334, 48.85565742037967], [2.409904565679304, 48.85577963664373], [2.409966870124369, 48.85588271491478], [2.410022612205025, 48.85597160867096], [2.410084917113168, 48.85607468686272], [2.41014065822755, 48.85616358144114], [2.410144346862939, 48.85617448441267], [2.410164596581339, 48.85617861599911], [2.410365533490377, 48.85619908882951], [2.410568388117732, 48.85622040985779], [2.410577274488328, 48.856224008746], [2.410682661344068, 48.85631984501809], [2.410815705582139, 48.85644057276841], [2.410921093324513, 48.856536407912515], [2.411054138668113, 48.856657135374185], [2.411159527276894, 48.8567529711889], [2.411292572363055, 48.85687369835525], [2.411397961848421, 48.85696953394127], [2.411387618245957, 48.85698379704681], [2.411173617250934, 48.85699091475888], [2.410966912429569, 48.85699799245852], [2.410752911318876, 48.85700510941814], [2.410546206384057, 48.857012186390975], [2.410533294489073, 48.85702081226448], [2.410525079653924, 48.857157823068455], [2.410518237742425, 48.857284792232186], [2.4105113971604712, 48.857411761387716], [2.410503182206102, 48.85754877214191], [2.41051498678587, 48.8575580404877], [2.410646604303145, 48.85756970036446], [2.410777723138962, 48.857581471857415], [2.41078945109861, 48.857591253324344], [2.410772320201272, 48.85770755322153], [2.410754958880676, 48.857824094792946], [2.410737829192697, 48.8579403946675], [2.410720467727437, 48.858056935310174], [2.41070333788592, 48.85817323515541], [2.410685976255856, 48.85828977666796], [2.410668844897881, 48.85840607647714], [2.410651484486068, 48.858522617067614], [2.410634352974645, 48.85863891684744], [2.410616991035001, 48.85875545830105], [2.410628739550158, 48.8587652506656], [2.410850911372707, 48.858784961995745], [2.411071213437222, 48.85880466550919], [2.411293385595334, 48.858824376017154], [2.4115136866410563, 48.85884407780933], [2.411531165921626, 48.85885140348506], [2.411546248337255, 48.85884721026471], [2.411736665936492, 48.8588575176373], [2.411923567102841, 48.85886758438852], [2.412113984851282, 48.858877891160525], [2.4123008861635142, 48.858887957322274], [2.412491304061049, 48.858898263493685], [2.412678205519358, 48.85890832906596], [2.412868623565876, 48.8589186346368], [2.413055525170151, 48.85892869961961], [2.413245943365748, 48.85893900458985], [2.413432845115981, 48.85894906898315], [2.413619746928297, 48.85895913398378], [2.413810165356828, 48.858969437156645], [2.4139970673150972, 48.85897950156778], [2.414187485892677, 48.858989804140094], [2.414374387996889, 48.858999867961735], [2.414564806723511, 48.85901016993346], [2.414593777755645, 48.85901883564], [2.41460931887099, 48.85900606723864], [2.414618228305751, 48.85895454605169], [2.414623258871254, 48.858925449910025], [2.4146456528237312, 48.85879817729811], [2.414662739779711, 48.85869936632766], [2.414685132175551, 48.858572093675754], [2.414702218982517, 48.85847328267953], [2.414709591911272, 48.85843064126546], [2.414709934467338, 48.8584286598871], [2.414732326641755, 48.85830138629602], [2.414743691933021, 48.85823566564112], [2.414766322016236, 48.85810479131164], [2.414788715276632, 48.85797751767955], [2.414811345144837, 48.85784664241183], [2.414833738174106, 48.85771936964098], [2.4148561297412803, 48.857592095945385], [2.414878759262553, 48.85746122151877], [2.414901151971706, 48.8573339477918], [2.414923781277873, 48.85720307242694], [2.414946173756009, 48.8570757995613], [2.414968802837075, 48.85694492415747], [2.414991195094196, 48.85681765125377], [2.415013823950063, 48.85668677581103], [2.4150362146234032, 48.85655950286266], [2.415058844616947, 48.85642862738762], [2.4150812350795823, 48.856301353501934], [2.41510386483773, 48.85617047888728], [2.415126255079466, 48.85604320496359], [2.415148884622514, 48.8559123294107], [2.415171274633261, 48.85578505634831], [2.415193902588372, 48.85565418074979], [2.415216293740972, 48.85552690765607], [2.415232909570015, 48.855431630251616], [2.4152495267012313, 48.85533635284338], [2.415271916228644, 48.85520907879687], [2.415276714687618, 48.855181533671335], [2.415277472103236, 48.855177192628574], [2.41527801224039, 48.85517411770352], [2.41530006817794, 48.855047653214555], [2.4153224574579513, 48.85492037912552], [2.415344513180125, 48.85479391459944], [2.415366902232459, 48.85466664137232], [2.415388957749554, 48.854540175909904], [2.415411346584304, 48.85441290264539], [2.415418941113275, 48.85436935647718], [2.415411366734103, 48.854339557370096]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 35, "roussel_fabien": 18.0, "nb_emargement": 961.0, "nb_procuration": 10.0, "nb_vote_blanc": 21.0, "jadot_yannick": 29.0, "le_pen_marine": 107.0, "nb_exprime": 928.0, "nb_vote_nul": 12.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1436.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 961, "quartier_bv": "80", "geo_point_2d": [48.85628285191557, 2.4127267611991523], "melenchon_jean_luc": 456.0, "poutou_philippe": 3.0, "macron_emmanuel": 193.0}, "geometry": {"type": "Point", "coordinates": [2.4127267611991523, 48.85628285191557]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f554732b175e5e08e9b017a4bd9cbd7af63327ef", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 54, "zemmour_eric": 63.0, "hidalgo_anne": 47.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-6", "geo_shape": {"coordinates": [[[2.369345844018825, 48.86946508549708], [2.369328943127544, 48.86944778579283], [2.369233539224939, 48.86941130050348], [2.369037065697579, 48.869338025525586], [2.368871331629664, 48.86927464226049], [2.368674857764053, 48.86920136667178], [2.368509124560756, 48.86913798379658], [2.368508737768999, 48.86913784055959], [2.368369921895647, 48.869088668765734], [2.368173449447701, 48.869015391442396], [2.368034634217254, 48.86896621925426], [2.367956155824923, 48.86894026811664], [2.36792817021484, 48.86893201818115], [2.367906092504648, 48.86893593782693], [2.367797775154607, 48.86890012062776], [2.367624434385123, 48.86884638850184], [2.367437640878711, 48.868784619570825], [2.367335367901616, 48.868752916892205], [2.367326129974688, 48.86875296339196], [2.367307495781142, 48.868781581714565], [2.367217540156263, 48.86889877130055], [2.367125369245482, 48.86901727382267], [2.367035412803763, 48.86913446324683], [2.366943241061626, 48.86925296560344], [2.366853285166356, 48.86937015487298], [2.366761112592857, 48.86948865706405], [2.366671154517631, 48.8696058461645], [2.3665789811236912, 48.86972434729077], [2.366489023583972, 48.86984153713585], [2.36639684935865, 48.86996003809661], [2.366306889638941, 48.87007722777254], [2.366214714582226, 48.87019572856783], [2.36612475541989, 48.87031291718987], [2.366032579520831, 48.870431418718866], [2.365942618178475, 48.870548607171735], [2.365850441447996, 48.87066710853522], [2.365760479288932, 48.87078429682623], [2.365668303090164, 48.87090279803141], [2.365673260120019, 48.87093022084367], [2.365693185850042, 48.87093573325941], [2.365881064315037, 48.87101142597051], [2.366089256042707, 48.87110789005058], [2.3660950515624393, 48.871115387947604], [2.366094259109617, 48.87122867426437], [2.366090842205211, 48.87137456475693], [2.366090049739291, 48.871487851047114], [2.366086631442835, 48.871633741498094], [2.366085838963814, 48.87174702776168], [2.366082422001822, 48.87189291818553], [2.3660816295097042, 48.87200620442251], [2.366098202516392, 48.87201502655548], [2.3663133211098613, 48.87198367342742], [2.366528786021436, 48.8719524080824], [2.366743904097117, 48.87192105417876], [2.366959367128048, 48.87188978804975], [2.367174484696859, 48.87185843247124], [2.367389948573457, 48.871827165572604], [2.367605065613427, 48.8717958101178], [2.367820527609366, 48.87176454243512], [2.367878266375323, 48.871785616662564], [2.367893693234263, 48.871779033140676], [2.367964764568578, 48.871663775224974], [2.3680433278048643, 48.87153845275356], [2.36811439847983, 48.87142319472391], [2.368192962356403, 48.871297872134186], [2.368264031008879, 48.87118261398339], [2.368342594162592, 48.87105729126816], [2.36841366351888, 48.870942033010635], [2.368492224586607, 48.870816710162735], [2.368563293283571, 48.870701451791255], [2.368641854991592, 48.87057612882502], [2.368712921666009, 48.87046087033243], [2.368791482651303, 48.87033554724073], [2.368862550029639, 48.870220288641384], [2.368941108928789, 48.870094965416996], [2.369012175647828, 48.869979706703724], [2.3690907338242733, 48.86985438335387], [2.369161799884022, 48.86973912452666], [2.369232865629284, 48.86962386564526], [2.369311422738141, 48.86949854211021], [2.369345844018825, 48.86946508549708]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 6, "roussel_fabien": 21.0, "nb_emargement": 1210.0, "nb_procuration": 90.0, "nb_vote_blanc": 10.0, "jadot_yannick": 129.0, "le_pen_marine": 45.0, "nb_exprime": 1198.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1473.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1210, "quartier_bv": "39", "geo_point_2d": [48.87041007598641, 2.36744230873153], "melenchon_jean_luc": 425.0, "poutou_philippe": 3.0, "macron_emmanuel": 387.0}, "geometry": {"type": "Point", "coordinates": [2.36744230873153, 48.87041007598641]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ee2883757f0835e87aec0e2535d14ae2eff851e4", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 193, "zemmour_eric": 200.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-50", "geo_shape": {"coordinates": [[[2.3009246422709, 48.88680146012378], [2.300933983040734, 48.88679024243833], [2.301065961560033, 48.88669294260959], [2.301197358322845, 48.88659607271217], [2.301329335845838, 48.886498773475175], [2.3014607316288602, 48.88640190327166], [2.301592709543217, 48.88630460283586], [2.3017241029827202, 48.8862077323182], [2.301856079900792, 48.88611043247419], [2.301987472360424, 48.88601356165043], [2.302119448306434, 48.885916260599664], [2.30225084114972, 48.88581938947771], [2.302382814735849, 48.885722089010756], [2.3025142065993762, 48.885625217582735], [2.302646179213252, 48.88552791590902], [2.302777570096926, 48.88543104417488], [2.302908960491657, 48.88533417228799], [2.303040931618401, 48.885236871052705], [2.303052046417568, 48.88522907198777], [2.303047343755863, 48.88521913666593], [2.3029545771090563, 48.885090093681576], [2.302862223258115, 48.8849616240875], [2.302769457528674, 48.884832580929476], [2.302677104591217, 48.88470411116248], [2.30258433977923, 48.88457506783086], [2.3024919877671888, 48.8844465969917], [2.302399223872645, 48.884317553486405], [2.302306872761815, 48.88418908337364], [2.302227045685736, 48.884078034309205], [2.302141548202143, 48.8839590982455], [2.302061721843205, 48.883848048148316], [2.301976226478243, 48.88372911194958], [2.301896399448767, 48.88361806261027], [2.301810904838956, 48.883499126268646], [2.301731079878112, 48.88338807680387], [2.301645584659886, 48.88326914031132], [2.301565760416165, 48.88315808981386], [2.3014802659531792, 48.88303915317844], [2.301400442402453, 48.88292810344679], [2.301314950058035, 48.88280916667638], [2.30124291938818, 48.88270895790563], [2.301157426411812, 48.882590020091826], [2.301085397711814, 48.8824898112143], [2.300999905442894, 48.8823708741636], [2.300927875985473, 48.882270665163354], [2.300908615403261, 48.88226575834154], [2.300900283478474, 48.88226770801218], [2.300829697238946, 48.882387781555785], [2.300759834322328, 48.88250798877536], [2.30068924608173, 48.8826280613027], [2.300619382518675, 48.882748268414076], [2.300548793616475, 48.88286834173166], [2.3004789294068733, 48.882988548734815], [2.300408341230768, 48.88310862105206], [2.3003384750109612, 48.88322882793906], [2.300267886173338, 48.88334890104651], [2.300198020682605, 48.88346910693399], [2.300127429831778, 48.88358917992446], [2.300057563682489, 48.88370938660298], [2.300042578670279, 48.88371384153399], [2.300048611210506, 48.883739121111766], [2.300047123383064, 48.88380618745047], [2.300045455689904, 48.88388146095533], [2.3000386354070113, 48.883889118482], [2.299877730176163, 48.883950352230194], [2.299716470933238, 48.88401172038906], [2.299555563581181, 48.884072953689476], [2.299394303578852, 48.88413432140759], [2.2992333968449348, 48.88419555337695], [2.299072134719728, 48.88425692064635], [2.298911227216074, 48.88431815307513], [2.298749964331562, 48.88437951990377], [2.29858905607017, 48.884440751892775], [2.298427793789937, 48.884502118288594], [2.298266884783128, 48.88456334893856], [2.298105620380007, 48.884624714885675], [2.298099178638882, 48.8846346111608], [2.298140106585351, 48.88474661127287], [2.298180769071304, 48.884857882241754], [2.298221697368732, 48.88496988230319], [2.298262360215484, 48.88508115232249], [2.298258448425631, 48.88508980886041], [2.2981342938511258, 48.88516684916185], [2.298009535217722, 48.885244262610264], [2.29788537991885, 48.88532130174354], [2.29776062190899, 48.885398714929686], [2.297636465861502, 48.88547575469329], [2.297511705747962, 48.88555316760121], [2.297503948519504, 48.88556371892738], [2.29751032432952, 48.88557146361896], [2.297538435765742, 48.88558287381053], [2.297557294731523, 48.885590528058756], [2.297563003069538, 48.88559518591822], [2.297625331392482, 48.885711315489516], [2.297689289586605, 48.885830480829355], [2.297751618472809, 48.88594661031008], [2.297815577232795, 48.886065776456185], [2.297877906682266, 48.88618190584631], [2.29794186603248, 48.88630107100016], [2.298004196045123, 48.88641720029969], [2.298068155973341, 48.886536365360584], [2.298130486549368, 48.886652494569525], [2.298185094898884, 48.88675423412557], [2.298195186991492, 48.88677068989802], [2.298219777379574, 48.88676494970045], [2.298394643706775, 48.886753651848], [2.298569496309854, 48.88674235455934], [2.298744362485299, 48.88673105619587], [2.29891921493663, 48.886719758396275], [2.299094080960315, 48.886708459521856], [2.299268933259791, 48.88669716121134], [2.299443799131809, 48.886685861825896], [2.299618651279525, 48.88667456300449], [2.2996288712022652, 48.88667039412732], [2.299718130640033, 48.886576633857565], [2.2998101715005452, 48.88647995076398], [2.299827367428652, 48.8864765466265], [2.300007639025056, 48.8865306198901], [2.300187081101315, 48.88658444431019], [2.300367353444777, 48.886638517026945], [2.300546796264655, 48.88669234090266], [2.300727070718816, 48.886746413080445], [2.300906512918666, 48.88680023640385], [2.3009246422709, 48.88680146012378]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 50, "roussel_fabien": 5.0, "nb_emargement": 1283.0, "nb_procuration": 96.0, "nb_vote_blanc": 7.0, "jadot_yannick": 65.0, "le_pen_marine": 39.0, "nb_exprime": 1274.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1515.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1283, "quartier_bv": "66", "geo_point_2d": [48.88505280034467, 2.300350770107931], "melenchon_jean_luc": 74.0, "poutou_philippe": 0.0, "macron_emmanuel": 667.0}, "geometry": {"type": "Point", "coordinates": [2.300350770107931, 48.88505280034467]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "66db519d14ce6859deac8210ea2eb3bf0b8b4744", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 105, "zemmour_eric": 68.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-63", "geo_shape": {"coordinates": [[[2.345025005390149, 48.83515941302548], [2.345036107493764, 48.835148451150836], [2.345077671623921, 48.83513688531361], [2.345267202426097, 48.835084785506254], [2.345439473859931, 48.83503684856206], [2.34561174361462, 48.834988911360306], [2.345801273344876, 48.83493681069977], [2.345973542436243, 48.834888872972655], [2.346163072803547, 48.83483677174163], [2.346171031396555, 48.83482658851819], [2.346139260466129, 48.834801658802725], [2.345999554928085, 48.83470735788893], [2.345860203109833, 48.834614004872485], [2.345720498568252, 48.83451970451629], [2.345581149124969, 48.83442635026723], [2.345577620372, 48.83442463474894], [2.34541020883288, 48.83436802249317], [2.34524675093557, 48.83431544372981], [2.345079340106456, 48.834258831005386], [2.344915884247545, 48.83420625179221], [2.344915004852891, 48.83420598076233], [2.344736704491519, 48.83415497573671], [2.3445565899490273, 48.83410439489519], [2.344378288923647, 48.83405338932323], [2.344198175091249, 48.83400280703809], [2.344019876114892, 48.83395180183397], [2.3438397629812853, 48.83390121900453], [2.343661463352146, 48.83385021235476], [2.343481352268277, 48.833799629887814], [2.343303053337414, 48.83374862269908], [2.34312294159007, 48.833698039680364], [2.342944644719544, 48.83364703196026], [2.342764533682334, 48.83359644749794], [2.342586236136388, 48.83354544013073], [2.342406125797984, 48.833494855124144], [2.342227830312575, 48.83344384722553], [2.342047720672977, 48.83339326167462], [2.341869424534746, 48.833342252330326], [2.341689315582606, 48.833291667134475], [2.341511021504818, 48.83324065725879], [2.3413309132514852, 48.833190071518665], [2.341271258498326, 48.83319115679555], [2.341266797906052, 48.833199701436314], [2.341273611386593, 48.83323750085423], [2.341297393852601, 48.8333649000233], [2.341319830835602, 48.833489358015186], [2.341343613540835, 48.83361675624707], [2.341366050742588, 48.833741214202256], [2.341389833664322, 48.83386861329563], [2.341412271084832, 48.83399307121415], [2.341436054245796, 48.83412046937034], [2.341458491885067, 48.83424492725217], [2.341482275273901, 48.834372325370516], [2.341504713131934, 48.83449678321569], [2.341530552930468, 48.8346250137406], [2.341552991012434, 48.8347494715486], [2.341555528070129, 48.834766269554116], [2.341557420671894, 48.834768512208605], [2.341562897385538, 48.83479568983407], [2.341562970705896, 48.83479614082196], [2.3415675415402353, 48.834832910634184], [2.341588409719219, 48.83496680225112], [2.3416127399153, 48.83509712441994], [2.341633608316154, 48.8352310159973], [2.341657938748557, 48.83536133812614], [2.34167880738254, 48.835495228764735], [2.341703138039911, 48.835625551752926], [2.341703189816496, 48.835625874911386], [2.341724058672716, 48.83575976551043], [2.341741981259881, 48.835896207573164], [2.341762851686191, 48.836030098140576], [2.341780774479204, 48.83616653926524], [2.341801643739811, 48.83630043068531], [2.341819566727314, 48.83643687177119], [2.341840436195692, 48.836570763152125], [2.34185835937769, 48.836707204199236], [2.341875628239589, 48.83684368119854], [2.341893551607547, 48.83698012220707], [2.341910820652005, 48.837116599168006], [2.341928744205824, 48.8372530401379], [2.341946013432846, 48.83738951706044], [2.341963937172732, 48.8375259579918], [2.341981206582318, 48.83766243487595], [2.341999130508173, 48.83779887576871], [2.342016400100226, 48.83793535261446], [2.3420343242007, 48.83807179436792], [2.342041973008171, 48.838132234334815], [2.342055363961157, 48.838152246958174], [2.34211931670003, 48.83814452868714], [2.342279184857749, 48.838069086649575], [2.342431852730379, 48.83799650437361], [2.34259171999319, 48.837921061009055], [2.342744385623352, 48.83784847921642], [2.342904251979708, 48.837773035424185], [2.343056918114829, 48.83770045233124], [2.343209582462511, 48.83762786903127], [2.343369447457607, 48.83755242550176], [2.343522110936445, 48.837479841793304], [2.343681976387558, 48.837404397843585], [2.343687344908318, 48.83739905267998], [2.34373140928113, 48.83726958226719], [2.343777249629878, 48.83713981938], [2.343821313571557, 48.83701034800473], [2.343867153457195, 48.836880585952365], [2.343911216956323, 48.83675111451394], [2.3439570564015, 48.836621351497705], [2.344001119446967, 48.836491880895494], [2.344046958440368, 48.83636211781475], [2.344091021043403, 48.83623264714936], [2.344136860947259, 48.83610288401156], [2.344180921745539, 48.835973413275596], [2.344226761197727, 48.83584365007325], [2.344270821564906, 48.835714178374865], [2.34431666055402, 48.835584416007336], [2.344360721840995, 48.83545494425327], [2.344406559016045, 48.83532518181375], [2.344414535260791, 48.83531893624385], [2.344551251633656, 48.83528096856854], [2.344723523011938, 48.835233032656454], [2.344860238945743, 48.83519506372575], [2.344990945607632, 48.8351586931864], [2.345025005390149, 48.83515941302548]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 63, "roussel_fabien": 27.0, "nb_emargement": 1118.0, "nb_procuration": 65.0, "nb_vote_blanc": 10.0, "jadot_yannick": 98.0, "le_pen_marine": 37.0, "nb_exprime": 1107.0, "nb_vote_nul": 1.0, "arr_bv": "13", "arthaud_nathalie": 1, "nb_inscrit": 1345.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1118, "quartier_bv": "52", "geo_point_2d": [48.835400439070604, 2.3430882435267564], "melenchon_jean_luc": 278.0, "poutou_philippe": 10.0, "macron_emmanuel": 440.0}, "geometry": {"type": "Point", "coordinates": [2.3430882435267564, 48.835400439070604]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6eaa8c5bee3e886f309e3c1b5b4738af66f17adf", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 106, "zemmour_eric": 135.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-4", "geo_shape": {"coordinates": [[[2.3317447380596352, 48.856418916679374], [2.331699097725012, 48.85643846195069], [2.331541260447374, 48.85650478720333], [2.331382975779685, 48.85657100182384], [2.331225136335294, 48.85663732664396], [2.3310668508747883, 48.856703539939176], [2.3309090106265, 48.8567698643344], [2.330750725712953, 48.85683607811047], [2.330592884660767, 48.85690240208079], [2.330434597591549, 48.85696861452388], [2.330276755735463, 48.85703493806935], [2.330118467850325, 48.85710115098561], [2.329960625190337, 48.857167474106156], [2.3298023378752752, 48.857233685704735], [2.329801480403098, 48.85723401726023], [2.329629519557694, 48.85729514265154], [2.329449295410135, 48.8573599205281], [2.329277333747621, 48.8574210445071], [2.329097110078023, 48.85748582275282], [2.328925146223946, 48.85754694621116], [2.328744921692589, 48.85761172301984], [2.328572956998241, 48.85767284686446], [2.328392731593647, 48.857737623135336], [2.3282207660821053, 48.857798745567614], [2.328040539804177, 48.857863521300764], [2.327868574815247, 48.85792464412694], [2.327688346301088, 48.857989419314634], [2.327516380495083, 48.858050540728456], [2.327336152458875, 48.858115316285335], [2.327164184461294, 48.85817643717846], [2.3269839555633602, 48.858241211298285], [2.326811986737104, 48.85830233167835], [2.3266278973274153, 48.85836697472027], [2.32645592765676, 48.858428095480996], [2.326271837360865, 48.858492737967836], [2.3260998668691633, 48.8585538573107], [2.325915775687168, 48.85861849924249], [2.325743804362696, 48.85867961806675], [2.3255597122946012, 48.85874425944342], [2.325387740137259, 48.85880537774905], [2.325203647183168, 48.85887001857073], [2.325031674181405, 48.85893113725703], [2.324847580341113, 48.85899577752356], [2.3246756065183343, 48.85905689479197], [2.324491511791943, 48.85912153450346], [2.324319538499222, 48.85918265126094], [2.324135441523914, 48.85924729040962], [2.323963467386761, 48.85930840754777], [2.323908624578301, 48.8593224459703], [2.323920736847136, 48.85934970989514], [2.3240316316520753, 48.859465018073045], [2.324137877725638, 48.85957160404948], [2.324244125596743, 48.85967818992905], [2.324355021804879, 48.85979349867243], [2.324461269209865, 48.85990008433019], [2.324572166370877, 48.86001539284924], [2.324572388373889, 48.860015616241974], [2.324678924977786, 48.86011794128825], [2.324781831307023, 48.860218235695626], [2.32488836872503, 48.86032056143601], [2.324991275869304, 48.860420854745676], [2.325097814112884, 48.86052318028091], [2.325200722060649, 48.86062347339215], [2.325307261129911, 48.86072579872224], [2.3254101698809713, 48.86082609163504], [2.325516709776025, 48.86092841675998], [2.325619619330489, 48.861028709474354], [2.325722530632495, 48.861129002998084], [2.32582907176036, 48.86123132781702], [2.325931982514449, 48.861331620235354], [2.326038524468126, 48.86143394484909], [2.326088552978284, 48.86149927205115], [2.326155925570813, 48.86147995027027], [2.32615687692462, 48.861479639055965], [2.326326397714575, 48.861418650743715], [2.326505433124744, 48.861357911795096], [2.32667495175924, 48.86129692207544], [2.326853986344747, 48.86123618259874], [2.327023505538118, 48.86117519238632], [2.327202539298858, 48.86111445238151], [2.327372057688221, 48.86105346166869], [2.327551090624294, 48.86099272113577], [2.327720606846474, 48.86093172991488], [2.327899638957982, 48.860870988853854], [2.328069155739024, 48.86080999714023], [2.328248187025865, 48.86074925555113], [2.328417701639828, 48.860688263329436], [2.328572370158951, 48.860629238989645], [2.328741883991328, 48.860568247201456], [2.328896551786899, 48.86050922243627], [2.329066066223824, 48.860448229290675], [2.329220731932881, 48.860389204092485], [2.329390245599801, 48.8603282104811], [2.329544910585305, 48.86026918485755], [2.329699576583317, 48.86021015903866], [2.329869087732605, 48.86014916563079], [2.329870996918999, 48.860148562065504], [2.330058250499321, 48.86010079286175], [2.3302473429308312, 48.86005150206247], [2.330434595817156, 48.86000373226563], [2.330623686177505, 48.85995444085974], [2.330810938369929, 48.85990667046987], [2.331000029384907, 48.85985737847268], [2.331187280883425, 48.85980960748977], [2.331376371189979, 48.85976031489357], [2.331563620631746, 48.85971254331], [2.331752710229972, 48.85966325011488], [2.3319399603407662, 48.859615477945894], [2.332129049230659, 48.8595661841518], [2.332316298647432, 48.85951841138977], [2.332505386829088, 48.85946911699672], [2.332692634189002, 48.8594213436341], [2.332881721662318, 48.85937204864209], [2.332891605787661, 48.859364947609], [2.332874837446899, 48.85931518028866], [2.332804729731761, 48.85918640799643], [2.332731782318567, 48.859048980646165], [2.332661673963685, 48.85892020733238], [2.332588727289003, 48.85878278076124], [2.332518621008796, 48.85865400734031], [2.3324456750956513, 48.858516579749654], [2.332452857729304, 48.85850543278435], [2.332650034660846, 48.85844577506593], [2.332849959110635, 48.85838503692946], [2.333047135131869, 48.85832537855029], [2.333247060019567, 48.85826463975142], [2.333253349954923, 48.85825219449507], [2.333153505738215, 48.85813031560448], [2.333063091212443, 48.85801928229144], [2.332963247887111, 48.857897403216484], [2.332872835545257, 48.85778636884469], [2.332772993111388, 48.85766448958548], [2.332682580204732, 48.85755345593833], [2.332592169046301, 48.85744242221938], [2.332492327928034, 48.8573205426882], [2.33240191622783, 48.85720950789534], [2.332302076000903, 48.85708762817983], [2.332211666461629, 48.85697659412684], [2.332111827126024, 48.856854714227055], [2.332021417033449, 48.856743679999376], [2.33192157860069, 48.85662179901601], [2.331831170680533, 48.85651076462897], [2.331763486836687, 48.856428137226125], [2.3317447380596352, 48.856418916679374]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 4, "roussel_fabien": 13.0, "nb_emargement": 1036.0, "nb_procuration": 86.0, "nb_vote_blanc": 8.0, "jadot_yannick": 50.0, "le_pen_marine": 79.0, "nb_exprime": 1021.0, "nb_vote_nul": 6.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1310.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1035, "quartier_bv": "25", "geo_point_2d": [48.85903569826358, 2.3288252526755344], "melenchon_jean_luc": 139.0, "poutou_philippe": 4.0, "macron_emmanuel": 471.0}, "geometry": {"type": "Point", "coordinates": [2.3288252526755344, 48.85903569826358]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0f31a6361e666ac17aff38e4cd9c1362f6ae112a", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 133, "zemmour_eric": 176.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-18", "geo_shape": {"coordinates": [[[2.295365715238077, 48.85451450961388], [2.295365604527043, 48.85450969559575], [2.295277319053902, 48.85444393170795], [2.295134254312546, 48.85433745307914], [2.29501165859895, 48.85424612944575], [2.294868594943543, 48.85413965048034], [2.2947460001609272, 48.854048326558505], [2.294602937591459, 48.853941847256586], [2.29448034238931, 48.853850522139005], [2.2943372808936022, 48.853744043399786], [2.294214687985103, 48.85365271800176], [2.294215248797153, 48.85364039289358], [2.294349921607346, 48.85355151657671], [2.29448351101332, 48.85346360772196], [2.294618181546288, 48.85337473108101], [2.294751770046468, 48.8532868219128], [2.294886441027658, 48.853197944963824], [2.295020028622047, 48.853110035482125], [2.295154698688897, 48.85302115821708], [2.295288285377503, 48.85293324842193], [2.295422954529918, 48.85284437084083], [2.295556538949991, 48.85275646072417], [2.295691207187876, 48.85266758282706], [2.295824792064935, 48.85257967240498], [2.295959459388498, 48.85249079419184], [2.296093043359792, 48.85240288345628], [2.296227709768937, 48.85231400492708], [2.296361292834471, 48.85222609387809], [2.296365033309789, 48.852221486868196], [2.296381960095524, 48.8521655364842], [2.296402067290109, 48.85209084144463], [2.296420467822785, 48.85208460465987], [2.296414434921527, 48.852058642426684], [2.296411746835266, 48.852055861086896], [2.296283216479, 48.8519652429266], [2.29615814954548, 48.85187714251584], [2.296029620071135, 48.8517865240686], [2.295904554007353, 48.85169842247932], [2.295776025414824, 48.851607803745075], [2.295650961571551, 48.85151970188461], [2.295525896776188, 48.85143160077772], [2.295397369500252, 48.851340981614996], [2.295272305574824, 48.85125287932962], [2.295143779180587, 48.85116225987994], [2.295138718196821, 48.8511600104419], [2.295112981362483, 48.851154902441316], [2.29510022527913, 48.851171446584814], [2.2949247246724562, 48.8512526905578], [2.2947509939297213, 48.85133291763252], [2.294575492234753, 48.85141416108145], [2.294401759065477, 48.85149438673013], [2.294226257644933, 48.851575629663046], [2.294052523399663, 48.85165585479296], [2.294046726323876, 48.85166367740567], [2.294053613506885, 48.8517536424297], [2.294060881198914, 48.85184167696478], [2.29405676134389, 48.85184862270275], [2.293912173308501, 48.85194115914697], [2.293772100982873, 48.85203048976362], [2.293632028164803, 48.85211982110841], [2.2934874386226722, 48.85221235701679], [2.2933473648277323, 48.85230168801372], [2.293202775638201, 48.85239422357105], [2.293062700866386, 48.85248355422012], [2.292918109316167, 48.85257608851099], [2.292897228183948, 48.852574565707506], [2.292768894927902, 48.85244547841041], [2.29264661622469, 48.85232229687607], [2.29251828557339, 48.85219320928896], [2.292396008066778, 48.85207002657129], [2.29239318773183, 48.852067967443894], [2.292261894405978, 48.85199776385893], [2.292132397150557, 48.85192920039102], [2.292001104525582, 48.85185899651113], [2.291871607958146, 48.85179043275246], [2.291742111743706, 48.8517218679501], [2.291610820167022, 48.85165166362888], [2.291588479585692, 48.851641440526855], [2.291583921812093, 48.85164218159582], [2.291517976868898, 48.85170893023698], [2.291423348218763, 48.851804771483664], [2.291316038915093, 48.85191338671231], [2.291221409534495, 48.85200922688238], [2.291187598526245, 48.852043449625626], [2.291176763861006, 48.852059697147446], [2.291198404835886, 48.85206876049883], [2.291330470933023, 48.85215309878769], [2.291472844609944, 48.85224374401953], [2.291604910219773, 48.85232808288345], [2.291747284852185, 48.852418727774456], [2.291879352712324, 48.852503066330215], [2.292021728300236, 48.852593710880434], [2.29215379569762, 48.85267804821271], [2.292296172241033, 48.852768692422075], [2.292428241876631, 48.85285303034548], [2.292570619375555, 48.85294367421404], [2.292702688548288, 48.85302801091391], [2.292845067002727, 48.85311865444163], [2.292845522511388, 48.8531189323378], [2.292994171728036, 48.85320557371365], [2.293129042409423, 48.853283818917376], [2.293277692567861, 48.853370459928115], [2.293412562738983, 48.85344870479265], [2.29356121382702, 48.85353534633762], [2.293696086213326, 48.85361359087897], [2.293844738255357, 48.853700231159614], [2.293979610131502, 48.85377847536174], [2.293982769619776, 48.8537811642015], [2.294032728523101, 48.853846222720065], [2.294086838903755, 48.85391580429904], [2.294088940781708, 48.853917791691615], [2.294215656365293, 48.85400924853564], [2.294344219991617, 48.85410134298705], [2.294470936469522, 48.854192799545594], [2.294599500987831, 48.85428489460681], [2.2947262170095453, 48.85437634997263], [2.294854783794719, 48.85446844475238], [2.2949815006986922, 48.85455990073202], [2.295110068387849, 48.854651995222284], [2.295129033153775, 48.85465268792653], [2.295245378204075, 48.854585931251485], [2.29534822060358, 48.854524836449194], [2.295365715238077, 48.85451450961388]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 18, "roussel_fabien": 12.0, "nb_emargement": 1171.0, "nb_procuration": 73.0, "nb_vote_blanc": 14.0, "jadot_yannick": 53.0, "le_pen_marine": 71.0, "nb_exprime": 1152.0, "nb_vote_nul": 5.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1399.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1171, "quartier_bv": "59", "geo_point_2d": [48.85254254929442, 2.2941522005916757], "melenchon_jean_luc": 182.0, "poutou_philippe": 4.0, "macron_emmanuel": 473.0}, "geometry": {"type": "Point", "coordinates": [2.2941522005916757, 48.85254254929442]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bb4d67c850ecb9c166325f0eba5c119c468716eb", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 36, "zemmour_eric": 67.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-33", "geo_shape": {"coordinates": [[[2.392166270706374, 48.879243727493034], [2.39220763585001, 48.87924921117394], [2.392332929045198, 48.87921314559071], [2.392564752441977, 48.87914608367636], [2.392690043778309, 48.879110017709074], [2.392696304152395, 48.879109275144806], [2.392883921242988, 48.87911639345267], [2.393072622925213, 48.87912369862924], [2.393260241482654, 48.87913081635416], [2.393448943269818, 48.879138120937526], [2.393636560567182, 48.8791452380657], [2.393825262469945, 48.879152541156515], [2.394012881234138, 48.879159657701756], [2.394201583231454, 48.87916696109856], [2.394389200735452, 48.87917407704705], [2.39457790283778, 48.879181379850635], [2.394765521808697, 48.87918849521618], [2.394954224026478, 48.87919579652723], [2.39514184173728, 48.87920291129601], [2.395330544049505, 48.87921021291307], [2.395518161863647, 48.87921732709205], [2.395706865644422, 48.879224628122735], [2.395894483561896, 48.87923174171183], [2.396083186084089, 48.87923904214241], [2.396106259169146, 48.87923154751393], [2.396108429987465, 48.8792269530015], [2.396027209215851, 48.87910915477184], [2.395948232334025, 48.87899424834543], [2.395867012287652, 48.87887644998221], [2.395788037475591, 48.878761543432745], [2.395706818154447, 48.87864374493595], [2.395627844038147, 48.87852883915581], [2.395546625442324, 48.87841104052544], [2.395467650679414, 48.878296133709235], [2.395386432808702, 48.878178334945304], [2.395307460115412, 48.87806342800603], [2.395306243282254, 48.87805972201673], [2.395306960672197, 48.87795319192321], [2.395306829731757, 48.8778416329777], [2.395307545743532, 48.87773510375549], [2.395307414802387, 48.877623544787895], [2.395315073059428, 48.87760948557096], [2.39530410826975, 48.87760053670952], [2.395303977325764, 48.877488978627554], [2.395303861118203, 48.877389186548065], [2.39530312585994, 48.87738628069496], [2.395243945432469, 48.87727182883413], [2.395184282844432, 48.8771568861584], [2.39512510293877, 48.877042434215], [2.39506544086534, 48.87692749235539], [2.395006261481478, 48.876813040329445], [2.39494660130693, 48.87669809749427], [2.394887422444862, 48.87658364538579], [2.394827761421505, 48.876468703359876], [2.394768583081225, 48.87635425116881], [2.3947089225933462, 48.87623930816049], [2.394697059445565, 48.87622451442998], [2.394675890718272, 48.87622779696975], [2.394636689845111, 48.876242280324306], [2.394466033021108, 48.87630530390235], [2.39430317101939, 48.87636547622461], [2.394132513388157, 48.87642849932015], [2.393969650615905, 48.87648867118197], [2.393798992177441, 48.87655169379503], [2.393636128634655, 48.87661186519634], [2.393465469388961, 48.8766748873269], [2.393302605065164, 48.87673505916705], [2.393139740375533, 48.8767952298831], [2.3929690799283803, 48.87685825129551], [2.392806214468215, 48.87691842155106], [2.392635553213834, 48.87698144248096], [2.392612746620752, 48.87698132676768], [2.392605667760843, 48.87698633519818], [2.392599390387952, 48.87699077841843], [2.392600180085994, 48.87700537047231], [2.392494115991166, 48.87714194785231], [2.39239231879335, 48.87726790679952], [2.392391113974058, 48.87727429312713], [2.392443059159718, 48.87741304559646], [2.392492952392403, 48.87754608765463], [2.392492913095908, 48.87755050856393], [2.392442320309189, 48.877678937001974], [2.392387590775824, 48.877805936956804], [2.392336997481269, 48.87793436532061], [2.392282268786198, 48.878061365204765], [2.392231674983804, 48.87818979349429], [2.392176944410455, 48.87831679239472], [2.392126350100213, 48.87844522060996], [2.3920716203546633, 48.87857222033896], [2.392071161760428, 48.878575530241385], [2.392086883366535, 48.87868459533958], [2.392102972946189, 48.87879227912432], [2.392118694684342, 48.87890134419687], [2.392134785749587, 48.87900902886234], [2.392150507630289, 48.87911809300999], [2.392166598828379, 48.87922577765001], [2.392166270706374, 48.879243727493034]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 33, "roussel_fabien": 27.0, "nb_emargement": 1040.0, "nb_procuration": 36.0, "nb_vote_blanc": 6.0, "jadot_yannick": 41.0, "le_pen_marine": 61.0, "nb_exprime": 1023.0, "nb_vote_nul": 11.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1459.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1040, "quartier_bv": "75", "geo_point_2d": [48.877989985396944, 2.3939348183144458], "melenchon_jean_luc": 503.0, "poutou_philippe": 7.0, "macron_emmanuel": 241.0}, "geometry": {"type": "Point", "coordinates": [2.3939348183144458, 48.877989985396944]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8804fedfc714fd49eb0572409db49d7c44717e44", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 17, "zemmour_eric": 47.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-10", "geo_shape": {"coordinates": [[[2.394116980208429, 48.872810002202804], [2.394114339472205, 48.87280202613119], [2.3941708973077622, 48.87273808823805], [2.394218937555646, 48.87268276150374], [2.3942158089284993, 48.87267136909135], [2.394047633205376, 48.872579389214096], [2.3938803792706, 48.87248814851382], [2.393712203357712, 48.87239616904243], [2.3935449505988142, 48.87230492785833], [2.393376777243449, 48.87221294700804], [2.393209525649946, 48.872121706239405], [2.393208852650277, 48.872121313415796], [2.393073388243987, 48.872037160258515], [2.392939965544769, 48.87195402814653], [2.392804502018421, 48.87186987377296], [2.392671080166351, 48.871786742247934], [2.392535618872726, 48.871702587564236], [2.392402196525504, 48.87161945482072], [2.39235560117633, 48.871589173294716], [2.392338427567671, 48.87159874677258], [2.392243106383509, 48.8716708994426], [2.392111373004567, 48.871774737762074], [2.391986816771732, 48.871869019177986], [2.3918550823809293, 48.87197285719677], [2.391787792260142, 48.872023791791484], [2.391782130077558, 48.87203058717523], [2.391837466188967, 48.872061886402456], [2.391957321358889, 48.87213096436688], [2.392081311296979, 48.87220242485806], [2.392201165750484, 48.87227150256263], [2.392325156357643, 48.872342962792125], [2.3924450128211863, 48.87241204025066], [2.392569002734135, 48.87248350021156], [2.392568607724094, 48.872497264321886], [2.392408123724698, 48.872582899258326], [2.392247888885889, 48.87266840034056], [2.392087403842435, 48.87275403393448], [2.391927167950716, 48.872839534574105], [2.391766681842213, 48.87292516862405], [2.391606446260874, 48.87301066882804], [2.391445959108315, 48.87309630153541], [2.391285721110662, 48.87318180128991], [2.391125232893031, 48.87326743445331], [2.39096499384255, 48.8733529337652], [2.390963584821044, 48.87336604967853], [2.391094601529796, 48.873458989674695], [2.391220101906506, 48.87354801544107], [2.391351120904498, 48.87364095424879], [2.39147662215808, 48.87372997973158], [2.39147903720266, 48.87373133651252], [2.3916538745272913, 48.87380829621915], [2.3918284112287083, 48.87388512463107], [2.392003248222547, 48.87396208380978], [2.392177787317847, 48.8740389117085], [2.392179175257775, 48.874039611242736], [2.392299126532474, 48.874108592975055], [2.39247321842895, 48.874208644337706], [2.392593170482448, 48.87427762576481], [2.392767263508722, 48.8743776766845], [2.392887216340921, 48.8744466578064], [2.392912780555876, 48.874449647337556], [2.392916197751219, 48.87444808094254], [2.393000246162735, 48.87433149944141], [2.393084578666993, 48.87421601200107], [2.393168627690383, 48.874099430364154], [2.393252959445459, 48.87398394278086], [2.393337007717597, 48.87386736100122], [2.3934213373708593, 48.873751872368835], [2.393505384881083, 48.873635291345714], [2.3935897151484973, 48.87351980257738], [2.393673761907492, 48.87340322141153], [2.393758091425849, 48.873287732500295], [2.393842136070222, 48.8731711511848], [2.393926464839535, 48.873055662130646], [2.3940105100959013, 48.872939080679345], [2.394094838116176, 48.87282359148232], [2.394095345790296, 48.87282296182014], [2.394116980208429, 48.872810002202804]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 10, "roussel_fabien": 24.0, "nb_emargement": 965.0, "nb_procuration": 44.0, "nb_vote_blanc": 9.0, "jadot_yannick": 40.0, "le_pen_marine": 70.0, "nb_exprime": 952.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 6, "nb_inscrit": 1394.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 965, "quartier_bv": "77", "geo_point_2d": [48.87306997380229, 2.3926799433589387], "melenchon_jean_luc": 527.0, "poutou_philippe": 5.0, "macron_emmanuel": 181.0}, "geometry": {"type": "Point", "coordinates": [2.3926799433589387, 48.87306997380229]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2eb5d5f1e3c8dd521c747b780e3c197dddb13679", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 41, "zemmour_eric": 37.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "18-8", "geo_shape": {"coordinates": [[[2.346741570126894, 48.891206622365154], [2.346723897967845, 48.89122245657097], [2.346662570968062, 48.891321198646494], [2.346598291145134, 48.891425798950536], [2.346536963656361, 48.891524541842685], [2.346472683330166, 48.89162914205993], [2.34641135537497, 48.89172788397016], [2.346347075909082, 48.89183248410803], [2.346347004900975, 48.89183259973312], [2.346274522540153, 48.89195406861276], [2.346210241156455, 48.89205866864819], [2.346201349451849, 48.89206393779723], [2.346117800761995, 48.892079682008095], [2.346022889701615, 48.892098465872174], [2.34601394840998, 48.89211006956629], [2.346082086440548, 48.89223748899987], [2.346150322798031, 48.892360146102455], [2.3462184628533, 48.8924875654368], [2.346286698484798, 48.89261022332556], [2.346354839201087, 48.892737642553264], [2.346423076856592, 48.8928602994445], [2.3464912168702, 48.892987718558075], [2.346559455174728, 48.89311037534363], [2.346560258398857, 48.89311407863772], [2.346548580725211, 48.89322807950767], [2.346536719713184, 48.893341252887716], [2.346525041936946, 48.8934552537317], [2.346513182174442, 48.89356842799269], [2.346501504307102, 48.8936824279115], [2.346489643077954, 48.89379560213927], [2.346494266492332, 48.8938206123165], [2.346518046111839, 48.8938267045846], [2.346639418228075, 48.893800990653524], [2.346843692624553, 48.893757760359065], [2.347021259287025, 48.89372013974432], [2.347225533038074, 48.893676909694605], [2.347403099160177, 48.89363928761162], [2.347607370913139, 48.89359605689999], [2.347784937836151, 48.89355843515471], [2.347793173557835, 48.89355360478822], [2.347875801211694, 48.89343415723852], [2.347960074992432, 48.89331076606548], [2.348042701889277, 48.89319131747492], [2.348126974881424, 48.89306792615706], [2.348146598821791, 48.89306397703963], [2.348271981446554, 48.893115251737576], [2.348374659291413, 48.89315969021596], [2.348417789964298, 48.89317164486687], [2.348431747145734, 48.89316353968018], [2.348458014430778, 48.89313388267501], [2.348554147833262, 48.89302740438078], [2.348650655657332, 48.89291843871472], [2.348746789620633, 48.89281196115158], [2.348843296642209, 48.89270299530886], [2.348877694089341, 48.892664895508354], [2.3489234143958, 48.8926454444494], [2.348911232242242, 48.89261828883352], [2.348972966514806, 48.89254990996847], [2.349081852271342, 48.892431792258336], [2.349177983090426, 48.892325314294354], [2.349286867912183, 48.89220719637368], [2.349382997908581, 48.89210071732405], [2.349491881795567, 48.89198259919272], [2.3495880109469143, 48.89187612085602], [2.349604394674832, 48.89186118396104], [2.349588838804844, 48.89184096543316], [2.349570126910461, 48.89175098997976], [2.34955308314672, 48.891656313823134], [2.349534372733125, 48.891566339255675], [2.34951732909484, 48.891471663077944], [2.349507579101044, 48.891463356127076], [2.349469395871946, 48.89146376743319], [2.349280563385402, 48.89149542013324], [2.349092745220259, 48.891526648173084], [2.3489039122766, 48.89155830027735], [2.348716093658743, 48.891589527724676], [2.348527260258178, 48.891621179233184], [2.348339441187612, 48.89165240608796], [2.348330738690326, 48.891651952234504], [2.348135052478916, 48.89159670202223], [2.347935804548306, 48.89154034390923], [2.347740117811651, 48.89148509303852], [2.347540872099282, 48.89142873427011], [2.347345186201263, 48.891373482748385], [2.347145939979694, 48.8913171233097], [2.346950256283987, 48.89126187114442], [2.346751010916994, 48.891205511042884], [2.346741570126894, 48.891206622365154]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 8, "roussel_fabien": 20.0, "nb_emargement": 1157.0, "nb_procuration": 78.0, "nb_vote_blanc": 14.0, "jadot_yannick": 123.0, "le_pen_marine": 45.0, "nb_exprime": 1141.0, "nb_vote_nul": 1.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1472.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1156, "quartier_bv": "70", "geo_point_2d": [48.892400549612354, 2.3476304130534937], "melenchon_jean_luc": 424.0, "poutou_philippe": 8.0, "macron_emmanuel": 392.0}, "geometry": {"type": "Point", "coordinates": [2.3476304130534937, 48.892400549612354]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2358f411f6578cd046f9c61d7adf42dc4c4d4098", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 87, "zemmour_eric": 99.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "6-5", "geo_shape": {"coordinates": [[[2.339740860663706, 48.85196142190459], [2.339717545809296, 48.8519585079398], [2.3396883662621732, 48.85197574585419], [2.339562022659666, 48.85205434836158], [2.339467031825634, 48.852110465444234], [2.339342860997574, 48.85218382117482], [2.339216516380807, 48.85226242240336], [2.33909234483799, 48.852335777863985], [2.338965999463498, 48.85241437971659], [2.338961384143829, 48.85241626894695], [2.338918710314614, 48.85242462652429], [2.338907807973162, 48.85243362999554], [2.338714081208824, 48.852480983485485], [2.338517288520138, 48.85252977756778], [2.338323562394807, 48.8525771313282], [2.338126768977338, 48.852625924764006], [2.337933040788345, 48.85267327698121], [2.3377362466421, 48.8527220697705], [2.337542519103549, 48.852769421358914], [2.337345724217099, 48.85281821440101], [2.337151994603473, 48.852865565345496], [2.337031734763015, 48.85289538183281], [2.336955198999691, 48.85291435684178], [2.33694051327118, 48.85293351177794], [2.336981071448453, 48.852960706399855], [2.336974268885467, 48.85310899041324], [2.336972211024179, 48.853257328578295], [2.336965408408801, 48.853405611652335], [2.336963349147895, 48.853553949770095], [2.336956546468474, 48.853702232804046], [2.336954488533304, 48.85385057088962], [2.336954782702759, 48.85385251512614], [2.336964266855664, 48.853893643013485], [2.336975491538395, 48.853928655037606], [2.336975593789854, 48.85393079426986], [2.336959369046759, 48.854052772882284], [2.336940133914556, 48.8541844766065], [2.336923909009461, 48.854306455186276], [2.336904672331281, 48.854438158867204], [2.336888447264184, 48.85456013741429], [2.336869210402615, 48.854691841059456], [2.336852985184955, 48.854813818674586], [2.3368337495029152, 48.85494552229153], [2.3368263556770428, 48.85500110905246], [2.336820125503579, 48.85501463228331], [2.336822026223512, 48.85502099045751], [2.336813194649386, 48.85508738217691], [2.336794094326854, 48.85522128452691], [2.336777868768487, 48.85534326207374], [2.336771773848395, 48.85538598626123], [2.336770277532095, 48.855397431235836], [2.336823744703581, 48.85540991831289], [2.337040927306199, 48.85540177480917], [2.337248496383288, 48.85539380969896], [2.337456065385379, 48.85538584512794], [2.337673247800256, 48.85537769957712], [2.337682087959569, 48.855375096314624], [2.33784219385935, 48.855269961209075], [2.338007523722991, 48.85516413260292], [2.338014674043872, 48.85516172771757], [2.338191466778117, 48.8551413972711], [2.338371808955148, 48.85512091171522], [2.338548602774279, 48.85510058074788], [2.338728944669631, 48.85508009465304], [2.338905738211023, 48.855059763157335], [2.339086079824588, 48.85503927652348], [2.339262871725312, 48.85501894449181], [2.339443214420106, 48.85499845732648], [2.339454453196985, 48.85498864446496], [2.339434713932739, 48.85486602283426], [2.3394143013889392, 48.8547449146793], [2.33939456231141, 48.854622293015105], [2.339374149967814, 48.854501183927454], [2.339382603700286, 48.85449184763915], [2.339537315432647, 48.854450730637176], [2.339691512029278, 48.854409591705846], [2.339846223273652, 48.85436847430141], [2.340000418020179, 48.85432733496145], [2.340155128776567, 48.85428621715456], [2.340309324398591, 48.85424507742102], [2.340321149031117, 48.85423826704946], [2.340319352686397, 48.854226647382525], [2.340253638882851, 48.85408889162226], [2.340187920373872, 48.85395013569876], [2.3401222072552192, 48.85381238073133], [2.340056489444862, 48.853673624701145], [2.340057037033373, 48.85366729806306], [2.340126917475613, 48.85356323330292], [2.3401962183157963, 48.85345928491192], [2.340266098189731, 48.8533552209503], [2.340335398475622, 48.853251272459254], [2.340405277804032, 48.8531472074976], [2.340474577535739, 48.85304325890647], [2.340475730231931, 48.85303951135169], [2.340473319705944, 48.85292556594931], [2.340471082637079, 48.8528134220007], [2.340468672143096, 48.85269947567575], [2.34046643509394, 48.852587331704186], [2.34046419669176, 48.852475187713786], [2.340461786216997, 48.85236124225336], [2.340461014293607, 48.85235837984594], [2.340405624978294, 48.85225298929484], [2.340346121012751, 48.85214150447063], [2.340338387942889, 48.85213615743575], [2.340196330805217, 48.852098157012904], [2.340054959212535, 48.85206006127095], [2.339912903840351, 48.852022061415816], [2.339771532672716, 48.8519839644371], [2.339740860663706, 48.85196142190459]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 5, "roussel_fabien": 6.0, "nb_emargement": 1014.0, "nb_procuration": 96.0, "nb_vote_blanc": 1.0, "jadot_yannick": 95.0, "le_pen_marine": 45.0, "nb_exprime": 1008.0, "nb_vote_nul": 5.0, "arr_bv": "06", "arthaud_nathalie": 1, "nb_inscrit": 1238.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1014, "quartier_bv": "21", "geo_point_2d": [48.85372608220962, 2.3385917951237114], "melenchon_jean_luc": 191.0, "poutou_philippe": 3.0, "macron_emmanuel": 434.0}, "geometry": {"type": "Point", "coordinates": [2.3385917951237114, 48.85372608220962]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d6d40ef3458dbeba2b4bc32ba4d6a75b56001db3", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 56, "zemmour_eric": 96.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-25", "geo_shape": {"coordinates": [[[2.318558221008657, 48.891595010160515], [2.318545114681031, 48.89158467156886], [2.318432121043711, 48.89147349323371], [2.318319639553933, 48.891362818618106], [2.318206646891276, 48.89125163914842], [2.318094166360021, 48.891140964298636], [2.317981176012228, 48.891029785500784], [2.317868696451263, 48.890919109517554], [2.3177562173566812, 48.89080843431677], [2.317643227100118, 48.89069725425927], [2.317530748964033, 48.890586578824355], [2.317417759658538, 48.890475399430926], [2.317416548762596, 48.89047392932344], [2.317401928165732, 48.89044691293671], [2.317382372068173, 48.89041676393517], [2.317381282077906, 48.890415226167654], [2.317352567225985, 48.89038305182503], [2.317324676857099, 48.89038306998774], [2.317306567843559, 48.89040087234387], [2.317205754551766, 48.89046106145723], [2.317054328672734, 48.890532439938745], [2.316899691523056, 48.89060561654746], [2.316748264803968, 48.8906769946325], [2.316739923842808, 48.89068123952586], [2.3167397110609302, 48.89068134533159], [2.316585074390619, 48.890754521531846], [2.316432258593632, 48.89082921069954], [2.3162776210520972, 48.890902386492904], [2.316124804380222, 48.89097707525818], [2.315970165967358, 48.89105025064462], [2.315817348420492, 48.891124939007454], [2.3156627091363973, 48.89119811398699], [2.315509889350772, 48.89127280193963], [2.315355249195544, 48.89134597651222], [2.315170982133573, 48.89143861464218], [2.315016339645932, 48.891511788758315], [2.315016172192042, 48.89151186963908], [2.314831902564198, 48.89160450812472], [2.314677621481197, 48.89167988901361], [2.314565950175933, 48.89173605758784], [2.314411668318109, 48.891811438125046], [2.314318923700259, 48.89185800480199], [2.31423157582666, 48.89190300960606], [2.314077292978205, 48.89197839060024], [2.3140571362067233, 48.89199145296209], [2.314055902131442, 48.89199216085711], [2.3140243657407282, 48.892008189654845], [2.313971449853501, 48.89203505245139], [2.313817166249037, 48.8921104322021], [2.31368430531692, 48.89218223021141], [2.313530020860639, 48.89225760958203], [2.313397159168866, 48.8923294063639], [2.313396516466056, 48.892329740825254], [2.313396337919107, 48.89232983513006], [2.313246828420109, 48.89241248827565], [2.31310109694119, 48.89248858613401], [2.312955365036184, 48.89256468380971], [2.312805854162805, 48.89264733638701], [2.312660121382061, 48.89272343369238], [2.3125106109598272, 48.89280608499775], [2.312364877291265, 48.89288218283204], [2.312215364580696, 48.89296483374894], [2.312069630048264, 48.8930409303137], [2.311920116401277, 48.893123581749286], [2.3117743809928912, 48.8931996779437], [2.3116248664214583, 48.89328232899866], [2.311479130137217, 48.893358424822765], [2.311329614653129, 48.893441074597895], [2.311300905146641, 48.89345236958851], [2.311323196615491, 48.89346001074922], [2.311482316323092, 48.893525290423696], [2.311641846270696, 48.89358948765293], [2.311800966773513, 48.893654766896304], [2.311960496146899, 48.89371896368559], [2.312119617444932, 48.893784242497894], [2.312279148971758, 48.89384843886292], [2.312438271065008, 48.893913717244125], [2.312597803369576, 48.893977914076345], [2.312756926269917, 48.89404319112711], [2.312916459364105, 48.894107387527264], [2.31307558169582, 48.8941726641391], [2.313235115579626, 48.894236860107135], [2.313394240070395, 48.894302136295686], [2.313553774743822, 48.89436633183167], [2.3135654259657112, 48.89438490940605], [2.313644149149769, 48.894376831440894], [2.313649067613138, 48.89435974909075], [2.3138447506647912, 48.89429936120071], [2.3140403524653, 48.89423899770586], [2.3142360346210262, 48.89417860827057], [2.314431635514334, 48.89411824412999], [2.314627318114275, 48.894057854955726], [2.314822918100281, 48.89399749016939], [2.314846325028984, 48.89399328575324], [2.314874778875004, 48.89397567789974], [2.31488703497722, 48.89397433338196], [2.31490038672422, 48.89396259174775], [2.3150149251203382, 48.89389171561244], [2.31514376829849, 48.8938079520176], [2.31528675960171, 48.89371946678474], [2.315415601916282, 48.893635702884275], [2.315558593648189, 48.89354721732073], [2.315687433735364, 48.893463453106854], [2.315863748519706, 48.89334882266571], [2.316042972005989, 48.89323230110282], [2.316046666370425, 48.89322797306868], [2.31609971095501, 48.893080533139475], [2.31615290386988, 48.89293268032625], [2.316157413400984, 48.89292786411272], [2.316306643289026, 48.89284538475936], [2.316452186161947, 48.89276581147366], [2.316597727226304, 48.89268623799752], [2.316746957088111, 48.89260375808506], [2.316892497248886, 48.89252418423887], [2.317041724827279, 48.892441703039864], [2.317187265448372, 48.89236212883145], [2.317336492083664, 48.892279648152204], [2.317482031801282, 48.89220007357381], [2.317631257505073, 48.89211759251498], [2.317776794955435, 48.89203801755882], [2.317926021103395, 48.891955535229044], [2.317934038810202, 48.8919556726287], [2.317950660769848, 48.89194781996398], [2.3180842119026073, 48.8918684344618], [2.318233437065777, 48.891785952635445], [2.318366988715993, 48.89170656681391], [2.318516211603626, 48.891624084615245], [2.3185509657825643, 48.89160487404784], [2.318558221008657, 48.891595010160515]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 25, "roussel_fabien": 30.0, "nb_emargement": 1580.0, "nb_procuration": 57.0, "nb_vote_blanc": 18.0, "jadot_yannick": 102.0, "le_pen_marine": 90.0, "nb_exprime": 1555.0, "nb_vote_nul": 11.0, "arr_bv": "17", "arthaud_nathalie": 5, "nb_inscrit": 2085.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1584, "quartier_bv": "68", "geo_point_2d": [48.89252175548412, 2.3150897829838577], "melenchon_jean_luc": 666.0, "poutou_philippe": 3.0, "macron_emmanuel": 446.0}, "geometry": {"type": "Point", "coordinates": [2.3150897829838577, 48.89252175548412]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0df85f7866e046d49ac428180e4998026808b6f4", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 34, "zemmour_eric": 45.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-26", "geo_shape": {"coordinates": [[[2.334971135396092, 48.88575751908848], [2.334986988961651, 48.885744445462336], [2.335040244394039, 48.88572850565345], [2.335057635592026, 48.885723487753985], [2.335093926444729, 48.88571717275488], [2.335101788701399, 48.885708158373546], [2.33524199551258, 48.88566619088149], [2.335384038298964, 48.885622674878796], [2.335390255045377, 48.885610199718805], [2.335296502324752, 48.88549729370368], [2.335205182405725, 48.8853918979186], [2.3351114318314172, 48.88527899264297], [2.335020112681265, 48.88517359579657], [2.335024654990602, 48.885161537632676], [2.335179022142804, 48.88509703790206], [2.335362983345795, 48.88502293013913], [2.3355173483045633, 48.884958429956676], [2.335701308536431, 48.88488432166461], [2.335855674028873, 48.8848198210454], [2.336039633289615, 48.88474571222416], [2.336193997952025, 48.88468121116061], [2.336377954878153, 48.88460710180269], [2.336532318710636, 48.88454260029482], [2.336686682149268, 48.88447809948345], [2.3368706390317913, 48.88440398846315], [2.33687635308597, 48.884393255130895], [2.336827132868505, 48.88430354234091], [2.336779348340209, 48.88421578902169], [2.336730128469045, 48.8841260752781], [2.336682344267055, 48.884038321905955], [2.336690865830257, 48.884026751568065], [2.3368148018887602, 48.883999505827944], [2.336932390453143, 48.88396719305315], [2.336939813612366, 48.883955562654194], [2.336867182328191, 48.88383535249751], [2.336795362947174, 48.88371780340161], [2.336722732328148, 48.88359759313126], [2.336650913601086, 48.88348004392331], [2.336578283646996, 48.88335983353936], [2.336506464210427, 48.8832422842118], [2.336433836284924, 48.88312207372183], [2.336362017502301, 48.88300452428217], [2.336289388878265, 48.88288431367104], [2.336217572113024, 48.88276676412688], [2.336195696826763, 48.88273008052474], [2.336173543252111, 48.88273031382901], [2.336057837106944, 48.88276468409869], [2.335868528244083, 48.88282224534818], [2.335683367027338, 48.88287724643216], [2.335494058704941, 48.88293480709128], [2.335308896703964, 48.88298980669121], [2.335119586194941, 48.88304736674478], [2.334934423386883, 48.88310236665923], [2.3347451120546783, 48.88315992611481], [2.334559949825965, 48.883214924552796], [2.334370637670689, 48.88327248341037], [2.334185473271231, 48.883327482155295], [2.333996160292982, 48.88338504041486], [2.333810995109229, 48.88344003767573], [2.333621682671479, 48.88349759534486], [2.333436516680531, 48.88355259292026], [2.333247202056152, 48.8836101499838], [2.333062035281131, 48.88366514607513], [2.332872719833591, 48.883722702540666], [2.332736093214988, 48.883763281612985], [2.332698043280204, 48.88377340285876], [2.332726375233381, 48.88382388552171], [2.332753359330356, 48.883871969343026], [2.332765646828526, 48.883872101673745], [2.332876477711217, 48.88398074958663], [2.332984890001866, 48.88408736940877], [2.333095720425124, 48.88419601798907], [2.333204134976283, 48.88430263759943], [2.333314966315114, 48.88441128595553], [2.333423380399731, 48.884517905338896], [2.33353421265414, 48.88462655347074], [2.3336426289994012, 48.88473317264231], [2.333753462169402, 48.88484182054995], [2.333861878048229, 48.88494843949455], [2.333972713508834, 48.88505708628626], [2.334081130273228, 48.88516370591072], [2.334191965285835, 48.88527235247064], [2.33430038294731, 48.88537897187564], [2.334411220239147, 48.88548761821889], [2.334519638809206, 48.88559423650524], [2.334630475641663, 48.885702883515954], [2.334738895108716, 48.885809501582905], [2.334756077487829, 48.88581261430022], [2.334848914978145, 48.88578349718764], [2.334935866723128, 48.885757470679756], [2.334971135396092, 48.88575751908848]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 26, "roussel_fabien": 19.0, "nb_emargement": 1188.0, "nb_procuration": 82.0, "nb_vote_blanc": 12.0, "jadot_yannick": 109.0, "le_pen_marine": 46.0, "nb_exprime": 1172.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 0, "nb_inscrit": 1481.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1188, "quartier_bv": "69", "geo_point_2d": [48.88412747837965, 2.3349926592172463], "melenchon_jean_luc": 441.0, "poutou_philippe": 9.0, "macron_emmanuel": 411.0}, "geometry": {"type": "Point", "coordinates": [2.3349926592172463, 48.88412747837965]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9d543499b9f0479a19eb278cc389111e938f8a3f", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 67, "zemmour_eric": 86.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "5-18", "geo_shape": {"coordinates": [[[2.356009055994515, 48.840987142104765], [2.356022185434939, 48.840970476531616], [2.356040321550792, 48.84092430371215], [2.356095560494548, 48.84078735728848], [2.356145078434903, 48.8406612911119], [2.3562003168357792, 48.84052434370828], [2.356249834272987, 48.840398277458654], [2.356305072108773, 48.840261330873695], [2.356354589042639, 48.84013526455104], [2.356404107110608, 48.8400091973017], [2.356459344128717, 48.83987225059781], [2.356508860319818, 48.83974618416735], [2.356564096783968, 48.83960923738287], [2.35657874356971, 48.83960261050475], [2.356727243565421, 48.839613326460984], [2.356985884920897, 48.83963293907099], [2.35713438509781, 48.83964365362219], [2.357138025002179, 48.83964425956925], [2.357301831481812, 48.839688117702906], [2.357475134467506, 48.8397322226796], [2.3576389415184282, 48.83977607944888], [2.357812245081845, 48.83982018393379], [2.357976052692857, 48.839864040237984], [2.358149355471566, 48.83990814422367], [2.358167329408287, 48.83990228687421], [2.358218126900848, 48.83978812342605], [2.358266065362336, 48.839676640902034], [2.358316862418727, 48.83956247738886], [2.35836480045043, 48.83945099570207], [2.358415597070555, 48.83933683212389], [2.358463534694621, 48.83922534947574], [2.358514330878688, 48.83911118583257], [2.358562268084051, 48.838999703122326], [2.358602586078861, 48.83894757268422], [2.358568414520954, 48.83893468772252], [2.358439559781662, 48.83889378519665], [2.358267678958144, 48.838838574851124], [2.358091060824012, 48.83878251051718], [2.357919182109946, 48.83872729877341], [2.35774256472782, 48.83867123391932], [2.357570686738753, 48.83861602256864], [2.357394070119517, 48.83855995629507], [2.357222191504245, 48.83850474443083], [2.357045575625829, 48.83844867853651], [2.356911534392963, 48.83840561945699], [2.356880167344967, 48.838397608351556], [2.356879922086128, 48.838397609731004], [2.3568420868264752, 48.838385455537974], [2.356670209371211, 48.83833024287199], [2.356477442236148, 48.8382671605454], [2.356305566930703, 48.83821194645768], [2.356112800674336, 48.8381488635368], [2.355940926134219, 48.83809364981862], [2.355748160756648, 48.83803056630344], [2.355576286992759, 48.837975352055466], [2.355383522494087, 48.83791226794601], [2.355304775596512, 48.83788697068713], [2.355284993199261, 48.8378818833761], [2.3552629315512, 48.83788339591539], [2.355169805491624, 48.83785347836382], [2.354986466894496, 48.83779493944712], [2.354814593352148, 48.83773972408572], [2.354631255554059, 48.83768118461866], [2.354459382774218, 48.837625967841994], [2.354411962752887, 48.83761082650654], [2.354402235353492, 48.83760969566561], [2.354366738792557, 48.83764904831273], [2.354274581748154, 48.83775214075808], [2.354180832202219, 48.83785617785496], [2.354088673050394, 48.8379592710299], [2.353994922771999, 48.83806330706248], [2.353902764248635, 48.838166400082514], [2.3538090132266323, 48.838270435950086], [2.353716852606962, 48.83837352880041], [2.353623100841343, 48.838477564503016], [2.353530940850025, 48.83858065719832], [2.353437188340885, 48.838684692735946], [2.353345026253336, 48.83878778526154], [2.353251273000462, 48.83889182063421], [2.353242034829243, 48.838916247813174], [2.353252909927826, 48.838923724577526], [2.353472718101542, 48.8389534047075], [2.353685154521997, 48.83898481635094], [2.353904963210515, 48.839014494785694], [2.354117400140439, 48.839045905659795], [2.354128002409251, 48.839055400843904], [2.354112013036496, 48.83918696087573], [2.354095841229329, 48.839317403793416], [2.354079851706067, 48.83944896289075], [2.354063679725978, 48.8395794066728], [2.3540476900412672, 48.83971096573502], [2.3540315178993962, 48.83984140948213], [2.35401552805313, 48.839972968509166], [2.353999355760622, 48.84010341132203], [2.353983365741552, 48.84023497121323], [2.353967193287258, 48.84036541399111], [2.35395120310673, 48.84049697384715], [2.353935030490649, 48.840627416590074], [2.353943395547547, 48.840651881296495], [2.353955202270628, 48.84065447587102], [2.354145634850396, 48.84059514517062], [2.354311905651187, 48.84054240829533], [2.354324033558423, 48.84054217247034], [2.354488609732904, 48.84058597112074], [2.354693043269179, 48.840640705874236], [2.354857620076102, 48.84068450311376], [2.355062054386355, 48.840739237231865], [2.35522663180335, 48.84078303485918], [2.355431066898705, 48.8408377674425], [2.355595644936797, 48.84088156455828], [2.355800080795102, 48.84093629740548], [2.355964659465506, 48.84098009311039], [2.356009055994515, 48.840987142104765]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 18, "roussel_fabien": 15.0, "nb_emargement": 1147.0, "nb_procuration": 75.0, "nb_vote_blanc": 8.0, "jadot_yannick": 107.0, "le_pen_marine": 67.0, "nb_exprime": 1136.0, "nb_vote_nul": 5.0, "arr_bv": "05", "arthaud_nathalie": 4, "nb_inscrit": 1442.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "18", "geo_point_2d": [48.83923792096113, 2.355668239098709], "melenchon_jean_luc": 335.0, "poutou_philippe": 5.0, "macron_emmanuel": 383.0}, "geometry": {"type": "Point", "coordinates": [2.355668239098709, 48.83923792096113]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fd9fdadd382641a0efccf720e465a2627bcaff95", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 17, "zemmour_eric": 40.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "10-14", "geo_shape": {"coordinates": [[[2.370243044122336, 48.87360334656603], [2.370251044678558, 48.87361110405759], [2.370334788244654, 48.87368127728517], [2.3704349301653203, 48.87376300322313], [2.370446725056209, 48.87376523355436], [2.370464807492394, 48.87375564910516], [2.370529465495011, 48.873677371914845], [2.37059386072647, 48.87359916165292], [2.370658518330023, 48.87352088528108], [2.37072291317424, 48.87344267493862], [2.37072301693064, 48.87344255047641], [2.370823429126466, 48.87332505396593], [2.370924030527257, 48.87320731913211], [2.371024441827033, 48.873089821528716], [2.371125042319142, 48.872972086500866], [2.371225454064449, 48.872854589610256], [2.371326052295553, 48.87273685348193], [2.371426463133962, 48.8726193563977], [2.371527060445458, 48.872501620974674], [2.371543533539849, 48.87249756961657], [2.371740655487325, 48.87254413330157], [2.37193578996412, 48.872590475785245], [2.372132912613845, 48.872637038820365], [2.3723280477876783, 48.8726833806607], [2.372525171139744, 48.872729943045925], [2.372720307010507, 48.87277628424292], [2.372917431075635, 48.872822845079014], [2.373112567643519, 48.87286918563263], [2.373309692399947, 48.87291574671813], [2.373504831028143, 48.87296208663556], [2.373511756130167, 48.872962488909835], [2.373672249643442, 48.87294430153697], [2.37389701989827, 48.872918279702155], [2.374057513140903, 48.87290009181207], [2.374282283001576, 48.8728740701521], [2.37444277461017, 48.87285588173761], [2.374461078346877, 48.87284174540039], [2.374460749037908, 48.872836585088585], [2.374297803512211, 48.87275648486202], [2.374142378313206, 48.87267993563312], [2.373979432403858, 48.872599834954705], [2.373824008140164, 48.87252328530155], [2.373661064573633, 48.87244318418553], [2.373505639881969, 48.87236663410103], [2.373342697295166, 48.87228653254025], [2.373187274902087, 48.872209982038626], [2.373031851613387, 48.872133430423496], [2.372868910484685, 48.8720533282009], [2.372857305989776, 48.87205184015438], [2.372688269822497, 48.872080985950895], [2.372473328621869, 48.872118167455085], [2.372304293387767, 48.8721473127148], [2.372089350286925, 48.87218449262083], [2.371920314622639, 48.87221363733654], [2.371705372337409, 48.872250816558], [2.37153633487977, 48.872279960722615], [2.371521143771004, 48.872266693090424], [2.371628817748084, 48.872146204962036], [2.371730050545425, 48.87203184517432], [2.371837723553813, 48.87191135683236], [2.371938956799347, 48.87179699685084], [2.371933593897767, 48.871784524585166], [2.371895492256228, 48.87177113498024], [2.371858258532133, 48.87175654660456], [2.371852847220958, 48.87174503816997], [2.371930566471301, 48.87163421868159], [2.372008485686413, 48.871523069226384], [2.372086202911296, 48.871412249607474], [2.372164121462266, 48.871301100028624], [2.372241839398941, 48.87119027939432], [2.372319755911694, 48.87107913058394], [2.372397473186076, 48.870968309826324], [2.372475390397849, 48.87085716089944], [2.372553107009943, 48.87074634001852], [2.372631022194467, 48.87063519096083], [2.372629320025755, 48.8706187295516], [2.372619719910713, 48.87061441097562], [2.3724689399262, 48.870625689688204], [2.372285935587985, 48.87063923642868], [2.372086132109887, 48.870654182268964], [2.371903127571919, 48.87066772842383], [2.371703325237934, 48.87068267363188], [2.371520320500423, 48.87069621920116], [2.371320516584091, 48.87071116376268], [2.3711375116468423, 48.8707247087463], [2.3709545066145212, 48.87073825344998], [2.370754703737867, 48.87075319707363], [2.370744165196549, 48.870757956727246], [2.370637530941951, 48.87089209172999], [2.370530353880745, 48.87102721394067], [2.370423718513486, 48.87116134961952], [2.370316540343522, 48.87129647160582], [2.370316175803171, 48.87129696702177], [2.370249928600558, 48.871394371094716], [2.370154705015489, 48.871533504797384], [2.370088457199226, 48.87163090965935], [2.369993232750334, 48.871770043203796], [2.369926984342264, 48.87186744705622], [2.369926465649506, 48.87187392315062], [2.369980140177952, 48.87198221785416], [2.370033861936733, 48.87209124752874], [2.370087536912407, 48.87219954216284], [2.370194934543032, 48.87241686633235], [2.370248655836518, 48.87252589586044], [2.370249189559768, 48.87252742034589], [2.3702809247581262, 48.872674758325616], [2.370312548363256, 48.87282277109091], [2.370344283920883, 48.87297010901444], [2.370375906522074, 48.8731181217162], [2.37040764243877, 48.873265459583536], [2.3704392653993143, 48.873413472228975], [2.370436823940151, 48.873419986767814], [2.370343035313723, 48.87350579192347], [2.3702505851908793, 48.87359159864639], [2.370243044122336, 48.87360334656603]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 14, "roussel_fabien": 16.0, "nb_emargement": 1242.0, "nb_procuration": 100.0, "nb_vote_blanc": 9.0, "jadot_yannick": 143.0, "le_pen_marine": 42.0, "nb_exprime": 1226.0, "nb_vote_nul": 8.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1642.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1243, "quartier_bv": "40", "geo_point_2d": [48.87201401115808, 2.371540376833685], "melenchon_jean_luc": 634.0, "poutou_philippe": 9.0, "macron_emmanuel": 272.0}, "geometry": {"type": "Point", "coordinates": [2.371540376833685, 48.87201401115808]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eea047e2ff2da39986dae670e98ae7c1e9d9a499", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 42, "zemmour_eric": 143.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "19-46", "geo_shape": {"coordinates": [[[2.38424633185356, 48.888417658224], [2.384236677329533, 48.888443299516176], [2.384195507003815, 48.88852180906511], [2.384136861267316, 48.88862926063225], [2.384076128024537, 48.88874507231348], [2.3840174831644863, 48.88885252290802], [2.383956748032077, 48.88896833449813], [2.383898102663588, 48.88907578591165], [2.383837368368967, 48.88919159742467], [2.383778721149593, 48.88929904785157], [2.3837767115352753, 48.88930153222775], [2.383635706531955, 48.88942452616338], [2.383528832586409, 48.889516865107225], [2.383421958272561, 48.8896092030486], [2.383280951598012, 48.88973219653201], [2.383232438642612, 48.889774111341225], [2.383215754067362, 48.88978803412899], [2.383250158141372, 48.88982030631564], [2.383427654784418, 48.88991153024484], [2.383611014654221, 48.890001864076496], [2.383615553431541, 48.890012343846635], [2.383592936042711, 48.89005048453787], [2.383566386453093, 48.89008519655411], [2.383572239463769, 48.8900972137351], [2.383699828548431, 48.890141245638134], [2.383783272141423, 48.89016297819683], [2.383796143312996, 48.89016289874331], [2.383829371157407, 48.8901509055161], [2.38385292493042, 48.890133891054944], [2.3838508350979533, 48.890119986691865], [2.384002726017885, 48.889997334559354], [2.384142147911962, 48.88988740554144], [2.384143238250145, 48.88987685671631], [2.384072501878327, 48.88980251652289], [2.384009425034525, 48.88972515709326], [2.383938689059833, 48.8896508168105], [2.383875612598704, 48.88957345729966], [2.383876384693497, 48.88956410563167], [2.383888513948532, 48.889550529832064], [2.383972334779632, 48.88947010219842], [2.384022865287009, 48.88941354391612], [2.384039713383559, 48.88941044069218], [2.384171760917795, 48.88944973135525], [2.38430569356933, 48.88949281410931], [2.384437740149433, 48.8895321044691], [2.384571674585915, 48.88957518782871], [2.38458830654042, 48.88957271923725], [2.384701913301123, 48.88947897774249], [2.384816621531472, 48.88938547201926], [2.384930227472505, 48.88929173029189], [2.385044934890983, 48.88919822343473], [2.385158540012556, 48.88910448147473], [2.385273245234209, 48.88901097527523], [2.385386849536129, 48.888917233082665], [2.385501555309737, 48.88882372575617], [2.385517466061703, 48.888821097751546], [2.385658252920349, 48.88886033092264], [2.385817749214406, 48.88889369828943], [2.385834294546034, 48.88888883778379], [2.3859209523253773, 48.8887627071811], [2.386011044613142, 48.888630711649434], [2.386097701545371, 48.88850457998996], [2.38618779293849, 48.88837258429428], [2.38620588295486, 48.888368092282626], [2.386383448192622, 48.8884214544374], [2.3865500524204553, 48.888471066653295], [2.386727618351474, 48.888524429191946], [2.386894221873094, 48.888574040917305], [2.387071788518549, 48.88862740204128], [2.387238394061256, 48.888677013290135], [2.387404998557724, 48.88872662429796], [2.38758256624693, 48.88877998465705], [2.387749172764485, 48.8888295951883], [2.387926741157529, 48.88888295503207], [2.388093346968748, 48.88893256507283], [2.388270916055062, 48.88898592530046], [2.388278590173211, 48.888996010826375], [2.388237162546351, 48.88912220779963], [2.388196651984996, 48.889249148672874], [2.388155223958152, 48.88937534558868], [2.388114712989532, 48.88950228730418], [2.388073284573368, 48.88962848326329], [2.388032773207942, 48.88975542492181], [2.387991344381215, 48.88988162172271], [2.387950832629648, 48.89000856242493], [2.38790940340292, 48.890134759168426], [2.387868891254638, 48.890261699813635], [2.387827461627904, 48.890387896499604], [2.387786949072329, 48.89051483798713], [2.387745519045583, 48.89064103461568], [2.387705006103854, 48.890767975146915], [2.387663575677089, 48.89089417171796], [2.3876230623387302, 48.891021112192185], [2.387581631511841, 48.891147308705804], [2.387541117766166, 48.89127425002224], [2.387499686549825, 48.89140044557911], [2.387459173771187, 48.89152738684554], [2.387417740780451, 48.8916535832372], [2.387377227615649, 48.89178052354734], [2.38736564536627, 48.89181579944625], [2.3873429519077343, 48.8918354207025], [2.387358959119156, 48.891854221928725], [2.387329109318523, 48.89194514146689], [2.387294384529638, 48.89204803835974], [2.387252952089089, 48.892174234641445], [2.387218226996914, 48.892277131490715], [2.387223084055241, 48.89228614054126], [2.38737775758853, 48.89236674468943], [2.387532198320031, 48.892445846475795], [2.387686872806286, 48.89252645021295], [2.387841314470549, 48.89260555248839], [2.387995989909776, 48.892686155814545], [2.3881504325279552, 48.8927652567805], [2.388305108920156, 48.89284585969566], [2.388459552481676, 48.89292496025148], [2.388614231190677, 48.893005562762546], [2.388768675684887, 48.8930846638074], [2.388923353983155, 48.893165265900514], [2.389077799431275, 48.89324436563592], [2.389232478682531, 48.89332496731799], [2.389386925063459, 48.893404067542434], [2.389541605278251, 48.893484667914265], [2.389696052602542, 48.8935637677285], [2.389850733759786, 48.89364436858849], [2.390005182037982, 48.893723467093274], [2.390159864148224, 48.89380406754229], [2.390314313359257, 48.89388316653608], [2.390468996422504, 48.89396376657402], [2.39062344658744, 48.894042864258374], [2.390777897211134, 48.894121962637065], [2.390932581712003, 48.89420256115938], [2.391087033279079, 48.89428165912783], [2.391241720086297, 48.894362258145314], [2.391396171243415, 48.89444135479733], [2.391550859003654, 48.894521953403746], [2.391705312457508, 48.89460105055173], [2.391859999806812, 48.89468164874017], [2.392014454214665, 48.89476074457865], [2.392169142516992, 48.89484134235603], [2.392323597868236, 48.89492043778424], [2.392478287123593, 48.89500103515054], [2.392632743407741, 48.8950801310678], [2.392787433616133, 48.895160728023036], [2.392941890854176, 48.895239822630764], [2.393096582015605, 48.895320419174936], [2.393100956123906, 48.89532194409908], [2.393285630244101, 48.89536014480384], [2.393469293418561, 48.89539909372759], [2.393653968072194, 48.89543729476095], [2.393837633158145, 48.89547624312395], [2.394022307002375, 48.89551444268042], [2.394205972625563, 48.895553391375074], [2.394390648377582, 48.895591590367744], [2.394574313195045, 48.895630537588595], [2.394758989490959, 48.89566873601057], [2.39494265620955, 48.895707683569924], [2.395127331685463, 48.895745881414314], [2.39531099895175, 48.895784828406], [2.39549567633544, 48.895823025686596], [2.395679342795958, 48.89586197120449], [2.395864020723526, 48.89590016791438], [2.396047689085182, 48.89593911377077], [2.396232367556625, 48.89597730990994], [2.3964160351020602, 48.89601625519176], [2.396600714117372, 48.89605445076022], [2.396784383584798, 48.89609339458206], [2.396791362821551, 48.89609517260848], [2.3968228045250193, 48.896088486288015], [2.396875532270092, 48.896002788129444], [2.396950961431016, 48.89588071005349], [2.397019901699815, 48.89576866168412], [2.397095330183023, 48.89564658349119], [2.397164268467317, 48.89553453500789], [2.397239696262412, 48.89541245759715], [2.397308635300194, 48.8953004081144], [2.3973840624175953, 48.89517833058671], [2.397453000834772, 48.89506628099687], [2.3975284272744872, 48.894944203352175], [2.397597363696589, 48.8948321545477], [2.397672789469035, 48.894710075886714], [2.397741726634424, 48.894598026982045], [2.397775832936517, 48.89446724908092], [2.397808724983951, 48.89434120534541], [2.397841615508378, 48.89421516157956], [2.3978757213087682, 48.89408438360426], [2.3979086128726133, 48.8939583397973], [2.397942718336385, 48.893827561772255], [2.397975609575798, 48.8937015179174], [2.39800971470306, 48.89357073984261], [2.398042605618045, 48.8934446959398], [2.398074671049085, 48.89332173432126], [2.398107561649522, 48.89319569037197], [2.398139626763413, 48.893072729607375], [2.398172517049305, 48.89294668561161], [2.39820458323066, 48.89282372390927], [2.398237471838196, 48.892697679860184], [2.3982695377024053, 48.8925747190118], [2.398302427369613, 48.892448674023825], [2.398334491563271, 48.89232571312326], [2.398366556969283, 48.892202752207176], [2.398399446166664, 48.89207670714981], [2.39843150990214, 48.89195374618157], [2.398464398774606, 48.891827701977014], [2.398496462213743, 48.891704740064206], [2.39852935077169, 48.891578695813216], [2.398561415257494, 48.89145573476118], [2.398594302147532, 48.89132968955758], [2.398617512950079, 48.89120254263443], [2.398637273824988, 48.8910761643717], [2.398660484409587, 48.890949017410804], [2.398680245083982, 48.89082263911179], [2.398703455450637, 48.89069549211321], [2.39872321592452, 48.89056911377788], [2.398746426083616, 48.8904419658423], [2.398766186357092, 48.89031558747074], [2.398773186268143, 48.89027724595538], [2.398742984534809, 48.8902519925025], [2.398737812705789, 48.89025142604244], [2.398551067780404, 48.890202578748315], [2.398352612176847, 48.89015113893586], [2.39816586933625, 48.89010229104343], [2.397967414495366, 48.8900508505879], [2.397780671001668, 48.890002002982676], [2.397582216934069, 48.88995056098477], [2.397395475525155, 48.889901712781224], [2.397197022220246, 48.88985027014027], [2.397010281532376, 48.889801421331555], [2.396829643387782, 48.88975358142815], [2.396642903391327, 48.88970473204224], [2.3964622672833302, 48.88965689158731], [2.39627552661456, 48.88960804161728], [2.3960948911796303, 48.88956020060396], [2.395908152566016, 48.889511350063565], [2.395727516440224, 48.88946350848498], [2.395540778518037, 48.88941465736736], [2.395360144418608, 48.889366816136516], [2.395173407198293, 48.889317963542425], [2.39499277240801, 48.88927012174631], [2.3949363348194552, 48.88925535661151], [2.394930697628681, 48.88925177760786], [2.394909381366237, 48.88924582520612], [2.394779081103795, 48.88921173713309], [2.394600620288266, 48.88916617651027], [2.394413884500089, 48.88911732272281], [2.394235422963968, 48.88907176154494], [2.394048687857021, 48.88902290718375], [2.393870228327752, 48.88897734546455], [2.393683492538424, 48.888928490522765], [2.393505033652292, 48.88888292825535], [2.393318299907816, 48.888834072746754], [2.393139840301112, 48.88878850992432], [2.392953107237878, 48.88873965384199], [2.392774649638029, 48.88869409047824], [2.392596190997376, 48.888648525940475], [2.392409458935737, 48.88859966990339], [2.392231002301846, 48.888554104824344], [2.392044270921454, 48.888505248213576], [2.391865813567021, 48.88845968257942], [2.39167908286788, 48.88841082539492], [2.391500627520315, 48.88836525921952], [2.391313896138831, 48.88831640145445], [2.391135441434435, 48.888270834730875], [2.390948712097808, 48.88822197639903], [2.390770256672891, 48.88817640912036], [2.390583528017528, 48.88812755021483], [2.390405074599585, 48.88808198239493], [2.390267627423552, 48.88804601834392], [2.390249817966951, 48.88803847047384], [2.390237790103571, 48.8880379703536], [2.390188509320412, 48.88802507491299], [2.3900376010637903, 48.887985254092925], [2.389850873781366, 48.887936394036345], [2.389699966039951, 48.88789657278755], [2.389513239392346, 48.88784771220053], [2.3893623321661392, 48.88780789052296], [2.389362292746549, 48.887807879530044], [2.389175566733845, 48.88775901841249], [2.388988091552748, 48.88770999489607], [2.388801366242179, 48.887661133190576], [2.388613893129474, 48.88761210909085], [2.388427168521145, 48.88756324679752], [2.388239694749476, 48.88751422210059], [2.38805297084319, 48.88746535921935], [2.387865499139916, 48.88741633393913], [2.387678774572105, 48.88736747046304], [2.387491303573553, 48.88731844459259], [2.387304581071669, 48.88726958053561], [2.387117110777843, 48.88722055407493], [2.386930387614347, 48.88717168942302], [2.386742918025253, 48.887122662372136], [2.386556196927586, 48.88707379713936], [2.386368728043226, 48.88702476949827], [2.386182006284064, 48.88697590367061], [2.385994538104544, 48.88692687543926], [2.385807818421822, 48.88687800813149], [2.385620350936339, 48.8868289802092], [2.385433630592139, 48.88678011230657], [2.3852461638114, 48.88673108379403], [2.385059445533043, 48.88668221531055], [2.384871979457049, 48.88663318620782], [2.3848387219772222, 48.88664258864609], [2.384826120739567, 48.886671607133685], [2.384799256826137, 48.886790969438636], [2.384767402407507, 48.886913262159126], [2.38474053824544, 48.88703262352537], [2.3847086835410822, 48.887154916203315], [2.384681819119749, 48.88727427753017], [2.384649965493333, 48.88739657017256], [2.384623100802004, 48.88751593235925], [2.384591245526282, 48.88763822495214], [2.38456438058631, 48.887757586200074], [2.384532525024848, 48.887879878750475], [2.384524027087484, 48.887896530096874], [2.384522130265853, 48.8878997480161], [2.384464093898146, 48.888013449624715], [2.384403362101407, 48.88812926153685], [2.384342630034523, 48.88824507340599], [2.384276093431479, 48.8883754262064], [2.384256532429638, 48.888412728434076], [2.38424633185356, 48.888417658224]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 46, "roussel_fabien": 19.0, "nb_emargement": 1300.0, "nb_procuration": 66.0, "nb_vote_blanc": 4.0, "jadot_yannick": 96.0, "le_pen_marine": 59.0, "nb_exprime": 1292.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1941.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1299, "quartier_bv": "74", "geo_point_2d": [48.891412936742846, 2.3923339631983205], "melenchon_jean_luc": 572.0, "poutou_philippe": 7.0, "macron_emmanuel": 299.0}, "geometry": {"type": "Point", "coordinates": [2.3923339631983205, 48.891412936742846]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d9694f2fa780c0e9081a419030705ed9c0682e06", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 61, "zemmour_eric": 72.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "11-21", "geo_shape": {"coordinates": [[[2.363863178922768, 48.86750003402926], [2.363914046528337, 48.867532248078334], [2.364068886121788, 48.86759979749509], [2.364253334101615, 48.86767771599687], [2.36440817320425, 48.867745264958565], [2.36459262358076, 48.8678231820352], [2.364645423814335, 48.867846216554774], [2.36465411627564, 48.867851424914015], [2.364673066861675, 48.86785586212979], [2.364775105271561, 48.8679003769922], [2.364957688299784, 48.867973329110725], [2.365112529183571, 48.868040878042436], [2.3651830369656652, 48.86806904884861], [2.365199393664297, 48.868074698922484], [2.365236224033953, 48.86804281567297], [2.365305166998135, 48.86792843710299], [2.365372632660272, 48.86781567665822], [2.365441573661284, 48.867701297978975], [2.365509038734089, 48.86758853743419], [2.365577979145852, 48.86747415775358], [2.36564544362923, 48.86736139710873], [2.365712906457401, 48.86724863640714], [2.365781847323907, 48.867134257480465], [2.365849309562669, 48.86702149667885], [2.365918249829087, 48.86690711765014], [2.365918415799315, 48.86690076198345], [2.365877070058337, 48.866824605228345], [2.36583157438462, 48.86674255376322], [2.365840851160113, 48.866730776573554], [2.366040252952312, 48.86669555979195], [2.366235400167586, 48.86666122128995], [2.36643480142692, 48.8666260038488], [2.366629946758433, 48.86659166469413], [2.366829347484793, 48.86655644659348], [2.3670244936697182, 48.866522105901296], [2.367223893852068, 48.866486888040384], [2.367419039516335, 48.866452546702774], [2.3676141835601943, 48.86641820503872], [2.367813582946285, 48.86638298619207], [2.367822122095936, 48.866383310092054], [2.367976758856388, 48.86642366454412], [2.368139846126594, 48.866467288446316], [2.368157639327853, 48.866462270523], [2.368233260512969, 48.86633651185684], [2.368308845968861, 48.86621040939337], [2.368384467797267, 48.866084649711006], [2.368460052510807, 48.86595854802258], [2.3685356722455833, 48.86583278820887], [2.36861125622769, 48.8657066863963], [2.368686876594858, 48.8655809264656], [2.36876245984564, 48.86545482452883], [2.368780258202368, 48.86544979754432], [2.368939774938035, 48.86549247075667], [2.369107748974717, 48.865537734373206], [2.369267264884908, 48.86558040713856], [2.369435240852773, 48.8656256702991], [2.369594757300381, 48.86566834262454], [2.369731378237035, 48.86570515726259], [2.369748844703977, 48.86570570340949], [2.369759409893271, 48.86568998818071], [2.369851595596824, 48.86556589759949], [2.369945101169826, 48.86543982723664], [2.370037285988392, 48.86531573648435], [2.3701307892999273, 48.865189665940726], [2.370222973233521, 48.86506557501737], [2.3703164756468, 48.86493950430023], [2.370408658695332, 48.86481541320581], [2.370502160210266, 48.86468934231516], [2.370594342373849, 48.86456525104967], [2.370687842990452, 48.86443917998546], [2.3707800242692, 48.86431508854892], [2.3708735253613042, 48.86418901641903], [2.370868431143181, 48.86417740789702], [2.370760904002153, 48.86413370020408], [2.370639157771894, 48.86408619885386], [2.370635650571101, 48.8640806602407], [2.3706052892484, 48.864075169267224], [2.370552064802631, 48.86405440230577], [2.37040463278257, 48.863996819776496], [2.370229663019332, 48.86392855005157], [2.370082231722651, 48.8638709662193], [2.369907262793706, 48.86380269691457], [2.369759830846588, 48.86374511267143], [2.369584864125755, 48.863676842894755], [2.369437432891151, 48.863619258247965], [2.369418883891882, 48.863622279440364], [2.369324067453184, 48.86372381757519], [2.369229758449819, 48.863824395104835], [2.369134939911705, 48.863925933064124], [2.36904063018812, 48.864026509527086], [2.368945810913533, 48.86412804731798], [2.368851501811106, 48.86422862452007], [2.368756681800039, 48.86433016214258], [2.368662370614425, 48.86443073827076], [2.368567549866869, 48.86453227572495], [2.368473237939325, 48.86463285258501], [2.368456145408998, 48.86463634897149], [2.368384602631255, 48.86461553115594], [2.368320162834531, 48.86459688133087], [2.368305158696455, 48.86459868626176], [2.368154579582276, 48.864695794785035], [2.368004012179882, 48.86479380161891], [2.367853431940391, 48.864890909746244], [2.367702863407536, 48.864988916183954], [2.367552282042725, 48.86508602391526], [2.367401712379298, 48.86518402995683], [2.36738700235143, 48.86518595773859], [2.367230988215705, 48.86514408337999], [2.36707147866638, 48.86510057061347], [2.366915465039989, 48.865058695840325], [2.366755954663598, 48.86501518174345], [2.366738545397841, 48.865019482919486], [2.366670255939636, 48.86510994891138], [2.366603668304094, 48.86519630937115], [2.366535378390811, 48.86528677437235], [2.366468791668757, 48.86537313475048], [2.366460957972598, 48.865377587298894], [2.366289227883083, 48.865415408321674], [2.366125004561436, 48.86545232544569], [2.365960781007141, 48.86548924234316], [2.365789050197383, 48.865527061745155], [2.365780347954675, 48.865527046208655], [2.365608396375767, 48.865489280724276], [2.365422272913448, 48.86544754479617], [2.365342787949257, 48.86540987165126], [2.365330098298347, 48.865418710551516], [2.365297658844149, 48.86541717152226], [2.365318206472753, 48.865439378240225], [2.365247703723357, 48.86555909088058], [2.365171892387221, 48.86568831913404], [2.365101388964797, 48.865808031661246], [2.365025576903435, 48.86593725979295], [2.364955072807872, 48.86605697220707], [2.364879260021274, 48.866186200217044], [2.364808755252565, 48.866305912518015], [2.364732943103841, 48.86643514041349], [2.364732888835283, 48.866435230959006], [2.364667958097471, 48.86654203840346], [2.364592145255846, 48.86667126618216], [2.364527213946241, 48.86677807262826], [2.3644513990488383, 48.866907300283025], [2.3643864685195, 48.8670141066372], [2.36431065292954, 48.8671433341752], [2.364245721817435, 48.86725014043025], [2.364242338233378, 48.86725338796599], [2.364072881642818, 48.86735703705953], [2.363893051866114, 48.86746256885744], [2.363863178922768, 48.86750003402926]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 21, "roussel_fabien": 22.0, "nb_emargement": 1262.0, "nb_procuration": 91.0, "nb_vote_blanc": 9.0, "jadot_yannick": 126.0, "le_pen_marine": 49.0, "nb_exprime": 1250.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1551.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1262, "quartier_bv": "41", "geo_point_2d": [48.865733678603355, 2.367361750006272], "melenchon_jean_luc": 429.0, "poutou_philippe": 7.0, "macron_emmanuel": 423.0}, "geometry": {"type": "Point", "coordinates": [2.367361750006272, 48.865733678603355]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "968ce66dffd8d4fc9882075569d49c6e63bbfcd9", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 168, "zemmour_eric": 154.0, "hidalgo_anne": 5.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "7-25", "geo_shape": {"coordinates": [[[2.289858944480748, 48.858234719607346], [2.289865860989075, 48.858257365963965], [2.289915874416232, 48.858297661604134], [2.290041208925009, 48.85839779577458], [2.290162420530723, 48.858495453701906], [2.290287756001375, 48.85859558669703], [2.290408968517097, 48.85869324525653], [2.290534304937377, 48.85879337797554], [2.29065551837537, 48.858891036267885], [2.290780855745389, 48.85899116871087], [2.29090207010566, 48.85908882673607], [2.2910274084252222, 48.85918895890293], [2.291148623707781, 48.85928661666101], [2.291273962976997, 48.859386748551785], [2.291395179194082, 48.859484405143434], [2.29152051940083, 48.859584537657426], [2.291641736540213, 48.85968219398192], [2.291762952758843, 48.859779851066236], [2.291905599435816, 48.859884490603186], [2.291940660877831, 48.859933008679214], [2.29197004604184, 48.859936744884315], [2.292112692189132, 48.86004138505083], [2.2922484042444218, 48.86014047368171], [2.292391052883823, 48.86024511260597], [2.292526765999185, 48.86034420090297], [2.292669414392489, 48.86044883946816], [2.292805128567932, 48.86054792743128], [2.292947779428746, 48.86065256655281], [2.293083494676486, 48.86075165328274], [2.293115961661671, 48.86076417160578], [2.293175436013052, 48.86071591463662], [2.293317961869356, 48.860623856733135], [2.293460232235053, 48.86053250943494], [2.293602755735658, 48.86044045026974], [2.293745025101305, 48.86034910261791], [2.293887547584792, 48.860257043997585], [2.294029815962381, 48.86016569509278], [2.294172337440949, 48.86007363611808], [2.294314604818396, 48.85998228685961], [2.294457126655094, 48.85989022753856], [2.294599393032404, 48.859798877926416], [2.294741912501152, 48.859706818242934], [2.294884177878334, 48.85961546827717], [2.295026442744477, 48.85952411903401], [2.295168960719347, 48.85943205791987], [2.295311224585376, 48.85934070832308], [2.295453741543091, 48.85924864775383], [2.295596004421175, 48.85915729690413], [2.295738521736927, 48.859065235988524], [2.29588078225209, 48.85897388477715], [2.296023298562964, 48.8588818235072], [2.296165559440843, 48.85879047195019], [2.296308073383934, 48.85869841031785], [2.296450333261723, 48.85860705840724], [2.296592846200056, 48.858514996420546], [2.296735105065622, 48.858423645055574], [2.296877617011138, 48.858331581815264], [2.297019874876633, 48.85824023009665], [2.297162387180295, 48.85814816651002], [2.297304644045721, 48.85805681443778], [2.297447153969414, 48.8579647513881], [2.297589409846909, 48.85787339806294], [2.297731918765769, 48.85778133465892], [2.297874173643309, 48.85768998098017], [2.298016681557344, 48.85759791722181], [2.2981589354347323, 48.85750656318945], [2.298301443706824, 48.857414499084776], [2.298443696584168, 48.85732314469878], [2.298586202488671, 48.857231080231784], [2.298728454353875, 48.85713972639153], [2.298870959265577, 48.85704766067092], [2.299013210130757, 48.85695630647701], [2.299155714025662, 48.85686424130138], [2.29929796390292, 48.85677288585464], [2.299440468155788, 48.85668082033266], [2.299582717033029, 48.85658946453233], [2.299725218918254, 48.856497398648095], [2.299867466795488, 48.85640604249419], [2.300009967676036, 48.856313976255635], [2.3001522145532682, 48.85622261974813], [2.300294714428946, 48.856130553155296], [2.300436960306183, 48.85603919629423], [2.300579460539935, 48.855947129355066], [2.300721705405214, 48.85585577303973], [2.300864203283439, 48.855763704839], [2.30100644714864, 48.85567234817012], [2.301148944010049, 48.855580280514424], [2.301291186887444, 48.85548892259267], [2.30143368274411, 48.85539685458268], [2.301575924621437, 48.85530549630736], [2.301718420836186, 48.85521342795109], [2.30186066171355, 48.855122069322206], [2.302003155560852, 48.855030000603655], [2.302145395438261, 48.854938641621274], [2.3022878882807403, 48.85484657254846], [2.302430127158202, 48.85475521321253], [2.3025726189960682, 48.85466314378546], [2.302714856861555, 48.85457178499527], [2.302857349069446, 48.854479714322615], [2.302999585935003, 48.85438835517889], [2.303142075763358, 48.85429628504332], [2.303284311641022, 48.85420492464677], [2.303426800464784, 48.85411285415699], [2.303569035342529, 48.85402149340692], [2.303711523161502, 48.85392942256287], [2.303853757039334, 48.85383806145926], [2.303996245216408, 48.853745990268926], [2.304138476731654, 48.85365462880387], [2.3042809639040502, 48.853562557259295], [2.304363937285587, 48.853540010704606], [2.304365419918291, 48.853516032539275], [2.304225134265483, 48.85342100369236], [2.30408487523011, 48.8533265710993], [2.303944590598995, 48.853231541907284], [2.303804332594024, 48.85313710807], [2.3036640489846, 48.853042078532845], [2.303523791998014, 48.85294764435066], [2.303383510761007, 48.85285261537563], [2.303243254792794, 48.852758180848504], [2.303102973226723, 48.85266315062116], [2.30296271827688, 48.85256871574913], [2.302822437732476, 48.85247368517671], [2.30268218378896, 48.85237925085903], [2.302541905628957, 48.85228421994949], [2.302401651353086, 48.852189784379604], [2.302261374214731, 48.85209475312498], [2.302121122319948, 48.85200031721822], [2.3019808448284502, 48.85190528650982], [2.301840593952004, 48.851810850258126], [2.301700317494187, 48.851715818305415], [2.301560067636075, 48.85162138170879], [2.30141979356261, 48.85152634941895], [2.30127954334804, 48.851431913368764], [2.30113927029619, 48.85133688073388], [2.301077300582528, 48.8512951526746], [2.300999022474714, 48.85124244344745], [2.30098952655104, 48.85121927620501], [2.300927222372468, 48.851209710837786], [2.300893304389505, 48.85118954685594], [2.300874717084549, 48.85118975842106], [2.30074200976446, 48.851274316040566], [2.300598205665553, 48.851366418132216], [2.300465497458954, 48.85145097453232], [2.30032169238371, 48.851543076277025], [2.300188983266554, 48.85162763325633], [2.300045175852338, 48.85171973464612], [2.299912465848567, 48.851804290405966], [2.299768658820931, 48.851896391456776], [2.299635947906479, 48.85198094779576], [2.299492139902485, 48.85207304849961], [2.299359428089428, 48.85215760451852], [2.29930857800083, 48.85219017025388], [2.299294755211049, 48.852195212958115], [2.29928465130595, 48.85220453141208], [2.299191692361436, 48.85226406601425], [2.299047332220463, 48.85235576002211], [2.298903520779082, 48.852447859979485], [2.298759159609747, 48.85253955452379], [2.298615348514442, 48.852631654127585], [2.298470986340945, 48.85272334740976], [2.298327172866417, 48.852815446643966], [2.298182809664535, 48.85290714046262], [2.298038996536079, 48.852999239343255], [2.29789463095515, 48.85309093279105], [2.297750816810205, 48.85318303131009], [2.2976064515878702, 48.853274723503745], [2.297462636426232, 48.8533668216612], [2.297318268812706, 48.85345851438331], [2.297174452634466, 48.85355061217917], [2.297030085379538, 48.85364230364714], [2.296886268184794, 48.85373440108141], [2.296741898538642, 48.85382609307779], [2.29659808032718, 48.85391819015043], [2.296453711027489, 48.854009881791974], [2.296309891799508, 48.854101978503024], [2.296165520132848, 48.854193668874366], [2.296021699888137, 48.85428576522379], [2.295877328555788, 48.85437745613959], [2.295733507294441, 48.85446955212741], [2.295589133583054, 48.85456124267228], [2.295536186357124, 48.85459514705088], [2.295527436210305, 48.85460223374202], [2.295522143675004, 48.85461295171281], [2.295431268588369, 48.85467114204959], [2.295291381417927, 48.85476054189605], [2.295147556700869, 48.85485263713982], [2.295007668556408, 48.85494203663995], [2.294863842836836, 48.855034131527674], [2.294723952355637, 48.85512353067354], [2.294580126996461, 48.85521562521324], [2.294440235553401, 48.85530502311351], [2.2942964091918068, 48.85539711729716], [2.294156516762428, 48.85548651575042], [2.294012689398507, 48.85557860957798], [2.293872795995077, 48.855668007685], [2.293728967628721, 48.855760101156505], [2.293589073251236, 48.85584949891718], [2.293445243894531, 48.85594159113335], [2.293305348543087, 48.85603098854771], [2.293161518171742, 48.85612308130707], [2.293021621846227, 48.85621247837516], [2.292877790472426, 48.85630457077845], [2.292737893172836, 48.85639396750022], [2.2925940607965742, 48.8564860595474], [2.292454162535011, 48.85657545502356], [2.292310329156384, 48.85666754671468], [2.292170429908523, 48.85675694274381], [2.292026595527318, 48.85684903407884], [2.291886695305462, 48.856938429761655], [2.29174285855891, 48.857030520732515], [2.291602958725818, 48.85711991607704], [2.291459120976774, 48.85721200669182], [2.291319220181808, 48.85730140079072], [2.291175381430265, 48.85739349104938], [2.291035478286082, 48.857482885693194], [2.290891639894908, 48.85757497560381], [2.290751735776503, 48.857664369901244], [2.290607896382921, 48.857756459455736], [2.290467991290387, 48.85784585340686], [2.290324150894289, 48.85793794260526], [2.290184244839871, 48.85802733531072], [2.290040403441151, 48.85811942415299], [2.289900496400443, 48.858208817411374], [2.289858944480748, 48.858234719607346]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 25, "roussel_fabien": 5.0, "nb_emargement": 1018.0, "nb_procuration": 65.0, "nb_vote_blanc": 9.0, "jadot_yannick": 42.0, "le_pen_marine": 45.0, "nb_exprime": 1006.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1246.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1018, "quartier_bv": "28", "geo_point_2d": [48.855939727684714, 2.297038423571086], "melenchon_jean_luc": 76.0, "poutou_philippe": 2.0, "macron_emmanuel": 491.0}, "geometry": {"type": "Point", "coordinates": [2.297038423571086, 48.855939727684714]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "0f74d0fcb868f43aca03210ac49e1bb492025c2e", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 28, "zemmour_eric": 49.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "19-70", "geo_shape": {"coordinates": [[[2.369281320050499, 48.88670453578762], [2.369300643235615, 48.8866991876638], [2.369414471729625, 48.88668226025336], [2.369522253299442, 48.88667108805101], [2.369529942467701, 48.88666845304697], [2.369665174325634, 48.88657615863965], [2.369801561508961, 48.88648605641476], [2.369936792411804, 48.8863937616853], [2.370073178636552, 48.886303660035374], [2.37020840859519, 48.886211364084545], [2.370344793872248, 48.88612126211026], [2.370480022875805, 48.88602896583737], [2.370616407205181, 48.88593886353879], [2.370751635253663, 48.8858465669438], [2.370888017271735, 48.885756464313666], [2.370899286584844, 48.88575388760215], [2.37110019765951, 48.885769716290625], [2.3713019529732913, 48.8857869007605], [2.37150286429772, 48.88580272877282], [2.37170461986133, 48.88581991346298], [2.371905531446363, 48.88583573989986], [2.372107288634481, 48.88585292391816], [2.372143781259894, 48.88584974281413], [2.372149861824544, 48.88583256340748], [2.372269864381791, 48.8857242824897], [2.372384918994595, 48.88561871575273], [2.372504919206753, 48.88551043457114], [2.3726199728814, 48.8854048666885], [2.37273997347552, 48.88529658525742], [2.372855024826832, 48.8851910180205], [2.37288831043394, 48.885160022624525], [2.372874829002349, 48.885148483806816], [2.372819858913701, 48.88512122418458], [2.372659928981185, 48.885040589118006], [2.372503197731539, 48.88496286462517], [2.372343268786441, 48.884882228224775], [2.372186537122547, 48.88480450329908], [2.372026610506889, 48.8847238673705], [2.371869879792147, 48.88464614201908], [2.371709952789661, 48.88456550564878], [2.371553223035021, 48.88448777897239], [2.371393298372699, 48.88440714217468], [2.371236569556454, 48.88432941597189], [2.371076644507304, 48.88424877873244], [2.370919918014651, 48.88417105121185], [2.370759993942164, 48.884090413537834], [2.370603267024401, 48.884012686483636], [2.370443343928573, 48.88393204837507], [2.370286619323625, 48.883854320902394], [2.370278197470748, 48.88385251662332], [2.370105473564597, 48.88385439685006], [2.369931197224, 48.88385598806788], [2.36975847193013, 48.883857867786865], [2.369584195567421, 48.883859458499536], [2.369411470249516, 48.883861337717924], [2.369237193864596, 48.88386292792553], [2.369064469886244, 48.88386480665049], [2.368890193479021, 48.88386639635302], [2.36881998853736, 48.88384562682243], [2.368807795567446, 48.88385276795446], [2.368782205748387, 48.88389706881349], [2.368713539410048, 48.883954218764615], [2.368658869677618, 48.88396151722182], [2.368645321246917, 48.88397517760805], [2.368642328924699, 48.88397701714112], [2.368512720453001, 48.88403544459859], [2.368417279839941, 48.88408764085501], [2.3684127624081412, 48.88408896241845], [2.368267321901862, 48.88411194184277], [2.368148576032671, 48.88414526394001], [2.368146937346182, 48.88414545404334], [2.367970121312169, 48.88415868968631], [2.367756572857933, 48.884168528598465], [2.367662590549136, 48.8841755632405], [2.367608553717039, 48.88415485591165], [2.36756787045416, 48.88417474008636], [2.36748503655234, 48.884180939545736], [2.367285562421828, 48.884193674060405], [2.367108746016002, 48.884206907531414], [2.366909271694006, 48.88421964141891], [2.366732455104493, 48.884232874333904], [2.366685987889804, 48.88423876735892], [2.366701173225769, 48.88429339907813], [2.366803728039282, 48.884419577506854], [2.366901393028986, 48.88453859651227], [2.36699905710152, 48.88465761541795], [2.367101614728512, 48.88478379265768], [2.367199279707584, 48.88490281227272], [2.367301836939104, 48.88502898930557], [2.367303118073728, 48.885030283011965], [2.367424850567843, 48.885134561024365], [2.367547208844476, 48.88523765599454], [2.367668942312142, 48.88534193373913], [2.367791301559177, 48.8854450284404], [2.367913037374945, 48.88554930502504], [2.368035397581679, 48.8856524003567], [2.368157133007394, 48.8857566766663], [2.368279494195563, 48.88585977082977], [2.368401230583946, 48.885964047770806], [2.368523592742544, 48.88606714166538], [2.368645330115419, 48.88617141743925], [2.368767693233755, 48.88627451196419], [2.368889431580226, 48.88637878747025], [2.369011795680013, 48.88648188082697], [2.36913353635284, 48.88658615697162], [2.369255901423086, 48.88668925005944], [2.369281320050499, 48.88670453578762]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 70, "roussel_fabien": 14.0, "nb_emargement": 963.0, "nb_procuration": 43.0, "nb_vote_blanc": 13.0, "jadot_yannick": 46.0, "le_pen_marine": 52.0, "nb_exprime": 945.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1370.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 963, "quartier_bv": "73", "geo_point_2d": [48.88507095106924, 2.3697151789431463], "melenchon_jean_luc": 517.0, "poutou_philippe": 3.0, "macron_emmanuel": 201.0}, "geometry": {"type": "Point", "coordinates": [2.3697151789431463, 48.88507095106924]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b8dcdfbafb879e12110fcf2b41663afb09f2bcc0", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 45, "zemmour_eric": 88.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-6", "geo_shape": {"coordinates": [[[2.374131231575129, 48.877163830293284], [2.374129232425539, 48.87717009628248], [2.374124361001201, 48.877278203842216], [2.374111634660895, 48.877424768039084], [2.3741067631761092, 48.87753287557311], [2.37409403673486, 48.87767943883495], [2.374089165189724, 48.877787546343335], [2.3740893280582442, 48.87778953741643], [2.374120995372682, 48.877914988006886], [2.374154533157345, 48.878065546901844], [2.37418620080747, 48.878190996544355], [2.374204239034428, 48.87827196952501], [2.374200333092418, 48.878277717419344], [2.374200614681941, 48.878291388730425], [2.374216115970147, 48.87836097459506], [2.374237678028265, 48.87848548732057], [2.374237757481656, 48.87848591042163], [2.374255220817278, 48.87860249028778], [2.374276784432218, 48.878727002986075], [2.374294247936039, 48.87884358282108], [2.374315811744205, 48.8789680954851], [2.374333276768777, 48.87908467619528], [2.374333338201088, 48.879085351014474], [2.3743549022136152, 48.87920986274485], [2.374358379583804, 48.879308577066844], [2.374347509409911, 48.87943548505691], [2.374350986781153, 48.87953419935891], [2.374350951619541, 48.87953508321701], [2.374335963251638, 48.87966632601467], [2.37432509158498, 48.87979323395439], [2.374310103088419, 48.87992447581882], [2.374299231304958, 48.88005138372644], [2.374298645305264, 48.88005339965974], [2.374247236261049, 48.88016150023024], [2.374195189862392, 48.88027326220693], [2.374143780397211, 48.880381361812184], [2.374091733546011, 48.88049312462082], [2.374040323649056, 48.88060122416006], [2.373988276366921, 48.88071298600214], [2.373936866027377, 48.88082108637466], [2.373884816940093, 48.8809328481423], [2.373890963309799, 48.88094786761049], [2.373923174816926, 48.88095682790825], [2.374086972688982, 48.88087971701408], [2.374241000064717, 48.880806698934634], [2.374404795630611, 48.88072958758802], [2.374558822116623, 48.880656569089695], [2.374722618103149, 48.88057945730485], [2.374876643699641, 48.88050643838774], [2.375040437380018, 48.880429326150434], [2.375194462086792, 48.88035630681444], [2.375348486361762, 48.880283287275475], [2.375512278641577, 48.88020617437703], [2.375512773568218, 48.88020595032758], [2.375540845551245, 48.88019384068877], [2.37555251577708, 48.88019421182948], [2.375568644242156, 48.88018166486609], [2.375691259725682, 48.88012876903595], [2.375813997342244, 48.880073512075334], [2.375819908470274, 48.88006542014678], [2.375809567836415, 48.87997334409398], [2.375801487885397, 48.879885599301744], [2.375801479268208, 48.879885521914424], [2.375785194247876, 48.87975563039327], [2.375767323936635, 48.879622519079646], [2.375751040436411, 48.879492628429205], [2.375733168939345, 48.879359517071585], [2.375716885617313, 48.879229625486204], [2.37569901429769, 48.87909651409169], [2.375682731143069, 48.878966622470664], [2.375664861364435, 48.87883351104641], [2.375648577013775, 48.878703619382605], [2.375630707412774, 48.87857050792148], [2.375646522645253, 48.878560843453215], [2.3758526331048, 48.8785834284137], [2.3760530762131102, 48.87860528380058], [2.376259187024824, 48.878627868060185], [2.376459630464103, 48.87864972366474], [2.376665740275297, 48.878672306317156], [2.376866184056106, 48.878694161240134], [2.377072295582883, 48.878716743198765], [2.377272739705413, 48.8787385974402], [2.377478851573469, 48.87876117959726], [2.377679294684914, 48.878783032250745], [2.377879739317271, 48.87880488547453], [2.378085851710946, 48.87882746658517], [2.378124515505732, 48.878831681147794], [2.378133270495975, 48.87882769312796], [2.378134549501933, 48.87880747832041], [2.378075537080775, 48.87870389621424], [2.378020357100678, 48.87860241952798], [2.377961343775538, 48.878498837339166], [2.377906164235194, 48.87839736058139], [2.3779054444768812, 48.87839335122048], [2.377925502294727, 48.87827182810664], [2.377945974281007, 48.87814838435833], [2.377966031920685, 48.87802686031145], [2.377986503703874, 48.87790341742804], [2.377982860027226, 48.87789626230056], [2.377833803109159, 48.8777922318717], [2.377690287088838, 48.87769192630123], [2.377546771621312, 48.877591620549595], [2.377397716435408, 48.87748759044826], [2.377387270362596, 48.87748478056673], [2.377207672254871, 48.87748944829682], [2.377026795123641, 48.877493778147524], [2.376847196952586, 48.877498445336755], [2.376666319771009, 48.87750277374348], [2.376486721536534, 48.87750744039192], [2.376305844282994, 48.87751176915325], [2.376126245995976, 48.87751643436154], [2.375945368681244, 48.877520762578236], [2.375765770320249, 48.87752542814499], [2.375584892955009, 48.8775297549177], [2.375571164155631, 48.87752292842528], [2.375523789275236, 48.87739666869383], [2.375478225441842, 48.87727449145165], [2.375430852386915, 48.8771482307628], [2.375385288988873, 48.87702605345774], [2.375339727157309, 48.87690387702817], [2.375292353411731, 48.87677761623495], [2.375292638787398, 48.87676553249199], [2.3752798996413, 48.87675976694123], [2.375146889442898, 48.87671643897592], [2.375022011525668, 48.87667557522001], [2.374897132430211, 48.87663471222448], [2.374764122869593, 48.876591383828966], [2.374748943228015, 48.8765927749552], [2.3746321758810742, 48.87666238402534], [2.374520409417069, 48.876729151136075], [2.374518460091855, 48.87673059247403], [2.374407527158599, 48.87683293963475], [2.374303087022423, 48.87692775993246], [2.37430140119511, 48.87692985196203], [2.374244622080967, 48.87703044230701], [2.374176741253476, 48.87715147036697], [2.374131231575129, 48.877163830293284]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 6, "roussel_fabien": 27.0, "nb_emargement": 1110.0, "nb_procuration": 56.0, "nb_vote_blanc": 10.0, "jadot_yannick": 107.0, "le_pen_marine": 44.0, "nb_exprime": 1097.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 2, "nb_inscrit": 1405.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1110, "quartier_bv": "76", "geo_point_2d": [48.87849782747433, 2.375538630936622], "melenchon_jean_luc": 414.0, "poutou_philippe": 10.0, "macron_emmanuel": 311.0}, "geometry": {"type": "Point", "coordinates": [2.375538630936622, 48.87849782747433]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6347b27eeeabc090df8a1f3525fe9ef7f4cd6a20", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 70, "zemmour_eric": 100.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "14-32", "geo_shape": {"coordinates": [[[2.32420249910148, 48.84317461911384], [2.324231827626503, 48.84320675540528], [2.324323301493479, 48.84328110453134], [2.324429443448187, 48.84337199118838], [2.324559596378514, 48.84347777817761], [2.324665737794959, 48.84356866370199], [2.324713524963893, 48.84361706743699], [2.324737582192934, 48.843615969304366], [2.324921161001452, 48.84355566334697], [2.325081005976564, 48.84350123186298], [2.32526458398356, 48.84344092537239], [2.325424428248107, 48.84338649342393], [2.325584272178774, 48.843332061259254], [2.32576784899593, 48.84327175488655], [2.325927692216034, 48.843217322257416], [2.326111268243301, 48.84315701445225], [2.32627111075284, 48.84310258135867], [2.326391526530743, 48.843063022786446], [2.326426182438248, 48.84304857716645], [2.326370674081309, 48.842981494884896], [2.326316048786259, 48.842903662942575], [2.326235606626563, 48.84280593551705], [2.326241825521648, 48.842793490057396], [2.326416852827848, 48.84273967560302], [2.326588152560312, 48.84268537853464], [2.326763177783263, 48.84263156356068], [2.326934476799598, 48.84257726599114], [2.327109501301996, 48.84252345050528], [2.3272807996022, 48.84246915243458], [2.327455824746329, 48.842415336444496], [2.327627120967912, 48.84236103786498], [2.32780214539138, 48.84230722136298], [2.3279734408968302, 48.84225292228233], [2.328148464599736, 48.84219910526847], [2.328319759389052, 48.842144805686615], [2.328494782371191, 48.8420909881609], [2.328666077806849, 48.84203668808556], [2.328841098705943, 48.84198287004027], [2.329012393425459, 48.84192856946379], [2.329187414966259, 48.84187475091427], [2.329358707607156, 48.84182044982905], [2.329363768139513, 48.841806999411524], [2.329242878010036, 48.84169896708464], [2.32912518021968, 48.84159405083953], [2.32900429106708, 48.84148601915029], [2.328886595600225, 48.8413811026581], [2.328765706085183, 48.841273069800174], [2.328648011579558, 48.841168153053225], [2.328530317536174, 48.84106323707994], [2.328409430859311, 48.84095520383889], [2.328291736426176, 48.84085028670388], [2.328170850737631, 48.840742253201135], [2.3280531586164512, 48.84063733671838], [2.327932272553975, 48.840529302946294], [2.327814581405482, 48.840424385309504], [2.327693697693843, 48.84031635128336], [2.327673779949107, 48.84031491816972], [2.327530491065894, 48.84039744265925], [2.327389812225336, 48.84047796706821], [2.327246521093439, 48.84056049029857], [2.327105841374191, 48.84064101436184], [2.326962550695268, 48.84072353814699], [2.326821868734676, 48.840804061856865], [2.32667857715789, 48.84088658528981], [2.32653789568094, 48.840967108661665], [2.326533878789049, 48.8409687031077], [2.326359653417012, 48.841013123923474], [2.326187856834683, 48.841057146256446], [2.326013630883835, 48.84110156566547], [2.3258418337177362, 48.84114558749804], [2.325670036261433, 48.84118960908215], [2.325495809426392, 48.841234027731716], [2.325324011386325, 48.841278048815404], [2.325149783949116, 48.8413224678568], [2.324977985336931, 48.84136648754081], [2.324803757309198, 48.84141090607472], [2.3247769974814823, 48.841412661688054], [2.324773523973426, 48.841416163099915], [2.324774176733419, 48.84143519107433], [2.32473835338731, 48.84155998274852], [2.324702139020204, 48.84167929055687], [2.324666316684657, 48.84180408308919], [2.324630101982944, 48.841923390849615], [2.324593887115534, 48.84204269858634], [2.324558062920195, 48.84216749013865], [2.324521849069097, 48.842286798734456], [2.324486024533494, 48.842411590237894], [2.324449808997048, 48.84253089787879], [2.324413985483566, 48.84265568934103], [2.324377769600941, 48.84277499783336], [2.32434194438479, 48.842899789239034], [2.324305729541796, 48.84301909679187], [2.324269903985266, 48.84314388814867], [2.32420249910148, 48.84317461911384]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 32, "roussel_fabien": 24.0, "nb_emargement": 1190.0, "nb_procuration": 63.0, "nb_vote_blanc": 19.0, "jadot_yannick": 101.0, "le_pen_marine": 58.0, "nb_exprime": 1170.0, "nb_vote_nul": 0.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1403.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1189, "quartier_bv": "53", "geo_point_2d": [48.841943864744465, 2.326507402408206], "melenchon_jean_luc": 287.0, "poutou_philippe": 8.0, "macron_emmanuel": 476.0}, "geometry": {"type": "Point", "coordinates": [2.326507402408206, 48.841943864744465]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b4641ceddce4b1058087190341642315a16d1ae4", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 65, "zemmour_eric": 114.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "13-21", "geo_shape": {"coordinates": [[[2.37048459660303, 48.818361244369875], [2.370462963431012, 48.81838394235347], [2.37037322721514, 48.81849165900039], [2.370268288559975, 48.81861235630471], [2.370178551559735, 48.818720071884364], [2.370073611994282, 48.81884076899331], [2.369983874187942, 48.81894848530431], [2.369878935074074, 48.81906918222511], [2.369789196472487, 48.81917689836814], [2.369684255086427, 48.81929759508638], [2.369594515689581, 48.81940531106139], [2.369489573393099, 48.81952600758433], [2.369399833211862, 48.819633722492085], [2.369294891367054, 48.81975441882681], [2.369205150379666, 48.81986213446591], [2.369100206262616, 48.81998283059807], [2.369010464479943, 48.82009054606921], [2.369009444085319, 48.82009765926935], [2.369070966028194, 48.82022640981893], [2.369138682181165, 48.820364085158374], [2.369144651869064, 48.82036902816096], [2.369269962467869, 48.820418448129466], [2.369398596406306, 48.820468217360244], [2.36952390612225, 48.82051763705114], [2.36965254054777, 48.82056740600435], [2.369658860990199, 48.8205773648644], [2.369616038152246, 48.82068950566855], [2.369568099202392, 48.820815750506874], [2.369525275973459, 48.82092789125472], [2.36947733658458, 48.821054136029936], [2.369425013770472, 48.82121092302149], [2.369377075240562, 48.821337167731876], [2.369384092911914, 48.82134736501412], [2.3695532036312033, 48.82140437881697], [2.369709814886414, 48.82145840531292], [2.369866426455403, 48.82151243250047], [2.370035538237461, 48.82156944561284], [2.370192150488237, 48.82162347146915], [2.370361264348541, 48.82168048412241], [2.37037920436883, 48.82167702514341], [2.370476902758761, 48.82156706716577], [2.370577289977054, 48.821457056699096], [2.370595068417459, 48.821453661592166], [2.370765119916079, 48.821510052651895], [2.370925435208493, 48.82156380923266], [2.371095487423636, 48.82162019981709], [2.371255803395313, 48.82167395594968], [2.371416118335701, 48.821727711857605], [2.371586172967079, 48.82178410264249], [2.371592440588028, 48.82179588774476], [2.371513618198491, 48.82190941740846], [2.371447168266257, 48.821995704254405], [2.37142855538106, 48.821999953106676], [2.371249564424429, 48.82193912076646], [2.37107244052008, 48.821878910448675], [2.370893450394445, 48.821818077568835], [2.370716327323263, 48.82175786581774], [2.370697830873719, 48.82176194878497], [2.370619013138847, 48.82186963194363], [2.370541772673827, 48.8219743509023], [2.370524218234652, 48.82197869422421], [2.370332722713053, 48.82192515878068], [2.370159931109307, 48.821876788636644], [2.369987139826254, 48.82182841824085], [2.369795645418883, 48.8217748810308], [2.369622854811487, 48.82172651010421], [2.369431361152325, 48.82167297230597], [2.3692585712205902, 48.82162460084862], [2.36906707966081, 48.82157106336864], [2.368894289042788, 48.821522691373374], [2.368702798242202, 48.82146915240587], [2.368530009661796, 48.82142077988703], [2.368338518247687, 48.82136724032415], [2.368165730332053, 48.82131886817386], [2.367974239666165, 48.821265328022804], [2.367801452437102, 48.82121695444244], [2.367609963881482, 48.82116341371039], [2.367437175966159, 48.82111503959209], [2.367418490636001, 48.821125033568414], [2.36745261659657, 48.82124114935048], [2.367496496892934, 48.82138301913361], [2.367530624547105, 48.82149913577329], [2.367574505272731, 48.821641005495245], [2.367608631918438, 48.82175712117948], [2.367652514435385, 48.821898990847465], [2.367686641412763, 48.82201510738213], [2.367720768553148, 48.82213122299571], [2.3677646516900612, 48.82227309257535], [2.36775930321555, 48.822282172291544], [2.3676219007669053, 48.8223507292722], [2.367434581540278, 48.82244043622115], [2.367297178247505, 48.82250899281904], [2.367109859255594, 48.8225986992539], [2.367009017241141, 48.822649012682035], [2.367001781636821, 48.82266497969596], [2.367019474811741, 48.82267774917444], [2.367171915732543, 48.822753291535506], [2.367313584847915, 48.82283173745205], [2.367372799271106, 48.82286108082204], [2.3673976541430273, 48.82285252972603], [2.3674035162944502, 48.8228472616087], [2.36761732600539, 48.82287154335642], [2.367807958190337, 48.82289209748677], [2.368021768273381, 48.822916378510364], [2.368212400781684, 48.8229369319952], [2.368426211237023, 48.82296121229471], [2.368616844068574, 48.82298176513398], [2.368649828239653, 48.822983164235396], [2.368653726855981, 48.82298020428432], [2.368664827562653, 48.82295433296117], [2.368687671636271, 48.82293151586103], [2.368695301558493, 48.82292782642649], [2.368873769967132, 48.822894251301676], [2.369058008556745, 48.822859485901645], [2.369236476497796, 48.82282591023348], [2.36942071596606, 48.82279114427969], [2.36959918343972, 48.82275756806815], [2.369783422424543, 48.822722801553425], [2.369961889430705, 48.82268922479857], [2.370146127932284, 48.82265445772294], [2.370324594470942, 48.82262088042472], [2.370508832489069, 48.82258611278816], [2.370687298560217, 48.82255253494658], [2.370871536095089, 48.82251776674912], [2.371050001687872, 48.82248418926352], [2.37123423875013, 48.82244941960578], [2.3714127038753983, 48.82241584157685], [2.37159693909241, 48.82238107135106], [2.371600821128348, 48.82237167167744], [2.371579468462641, 48.822350544624186], [2.371582510181934, 48.82225638504532], [2.371588123515819, 48.82209034276473], [2.371591165204304, 48.82199618316386], [2.371591870247463, 48.821993511221734], [2.371650365870374, 48.82187850585348], [2.371707260420196, 48.821763650324264], [2.371765755530824, 48.821648644876134], [2.371822648224539, 48.82153378836207], [2.371881142822789, 48.82141878283392], [2.371938035000691, 48.821303927140804], [2.371938470307453, 48.821299448727174], [2.371912463295719, 48.82120929430138], [2.371888692711366, 48.82111767573058], [2.371862685876362, 48.82102752127942], [2.371838914100408, 48.82093590267677], [2.37184447291337, 48.82092704242549], [2.372027703612953, 48.82084143429121], [2.372211969398784, 48.820757248727155], [2.372217142618513, 48.8207526926559], [2.37227376892936, 48.82064034011534], [2.37233195044343, 48.82052594601825], [2.372388576271579, 48.82041359250139], [2.372446757280768, 48.820299198325365], [2.372503382604473, 48.82018684563077], [2.372561563108788, 48.82007245137587], [2.372618187938779, 48.81996009860424], [2.372676367949148, 48.819845703371094], [2.372681221663713, 48.81984131648251], [2.372825388601201, 48.81977145710576], [2.372980747068507, 48.81969961734749], [2.373124913213031, 48.819629757600744], [2.373280270856191, 48.81955791654496], [2.373424434834946, 48.81948805732054], [2.373579791643353, 48.81941621586655], [2.373593670695605, 48.819395522810936], [2.373570283185641, 48.819375344133285], [2.373557218914669, 48.81937106929373], [2.37346504874592, 48.81934090686411], [2.373297792407141, 48.81928562241229], [2.373185301792689, 48.81924881027362], [2.373018046045917, 48.81919352542598], [2.372896946774725, 48.819153895983426], [2.37282832241767, 48.81913134657024], [2.372661068788144, 48.819076061224656], [2.372473803392495, 48.819014525157726], [2.372306549151573, 48.81895923930337], [2.372119285955724, 48.81889770268203], [2.371952032465395, 48.81884241632604], [2.371764768734752, 48.81878088003522], [2.371597517356993, 48.81872559318478], [2.371410254475105, 48.81866405543309], [2.371243003847837, 48.818608768081035], [2.371055741803874, 48.81854722976776], [2.370888490565433, 48.81849194190692], [2.370846422478642, 48.81847811743699], [2.370770946607186, 48.81845331379677], [2.370603697333706, 48.81839802554011], [2.370488822119664, 48.81836027459997], [2.37048459660303, 48.818361244369875]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 21, "roussel_fabien": 10.0, "nb_emargement": 1247.0, "nb_procuration": 39.0, "nb_vote_blanc": 23.0, "jadot_yannick": 52.0, "le_pen_marine": 137.0, "nb_exprime": 1221.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1660.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1247, "quartier_bv": "50", "geo_point_2d": [48.82078608549312, 2.370355016676002], "melenchon_jean_luc": 347.0, "poutou_philippe": 12.0, "macron_emmanuel": 425.0}, "geometry": {"type": "Point", "coordinates": [2.370355016676002, 48.82078608549312]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "12c3bbc258b6b8c08f8bb63dbd6f6571b70a7200", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 64, "zemmour_eric": 69.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "17-16", "geo_shape": {"coordinates": [[[2.309276153859508, 48.888651834356054], [2.309261162001961, 48.88865192683962], [2.309083880786058, 48.88871152510536], [2.308907637556451, 48.8887707729643], [2.308730354179534, 48.88883036979304], [2.308554110145526, 48.88888961712523], [2.308376825959361, 48.88894921342411], [2.308200581108802, 48.889008461128796], [2.308023297477096, 48.8890680569057], [2.307847051833982, 48.88912730318436], [2.307669766029328, 48.88918689842348], [2.307493519581716, 48.88924614417541], [2.307316234319568, 48.889305739791816], [2.307139987067457, 48.88936498501694], [2.30696269964432, 48.889424579196344], [2.306786451587814, 48.88948382389467], [2.306609163343361, 48.88954341844343], [2.306432914482358, 48.889602662615054], [2.306255626804462, 48.88966225574253], [2.306079377138868, 48.88972149938733], [2.305902087288017, 48.889781091977056], [2.305725836817931, 48.88984033509505], [2.305548546145851, 48.88989992805415], [2.305372296235002, 48.889959170653285], [2.305195004765682, 48.89001876218323], [2.30501875268672, 48.890078004247684], [2.305017842634897, 48.89007833981123], [2.304874893028796, 48.890133915028], [2.304702609447101, 48.89020322695987], [2.304559657797946, 48.8902588017861], [2.304421808095475, 48.89031425948719], [2.304420622363052, 48.890324307089955], [2.304430073004269, 48.89033201167462], [2.304597758221953, 48.89040864970413], [2.304765271319963, 48.89048279175494], [2.304932957516586, 48.89055942930448], [2.305100472940614, 48.89063357088413], [2.3052681601041822, 48.89071020885303], [2.305435676502693, 48.89078434905431], [2.305603364645211, 48.89086098654326], [2.305770880642347, 48.89093512625747], [2.305938569763716, 48.89101176326654], [2.306106088086984, 48.89108590250956], [2.306273606887304, 48.89116004151322], [2.306441297472961, 48.891236677802574], [2.306608815871901, 48.891310816319184], [2.306776507436618, 48.891387452128555], [2.306944028161706, 48.891461590173975], [2.307111720705284, 48.89153822550339], [2.307279242392762, 48.89161236306967], [2.307446935915407, 48.89168899791911], [2.307614458565275, 48.89176313500625], [2.307782153066785, 48.89183976937574], [2.307792068433228, 48.89184755820509], [2.307810983532732, 48.89183106237572], [2.307943925569082, 48.89174170563606], [2.308087389483495, 48.89164597126091], [2.308220330573007, 48.89155661419928], [2.308363793457281, 48.89146088037607], [2.308496733599763, 48.89137152299254], [2.308640195477795, 48.891275787922744], [2.308773133309692, 48.89118643020945], [2.308916595533204, 48.89109069480025], [2.309049532406254, 48.89100133766426], [2.309192993611693, 48.890905601907775], [2.309325929549773, 48.890816243550596], [2.309469389736939, 48.89072050744683], [2.309602324716194, 48.89063114966701], [2.309745783885302, 48.890535413216], [2.30987871792949, 48.89044605421499], [2.31002217608044, 48.89035031741667], [2.310155109165929, 48.89026095899304], [2.310298566298633, 48.89016522184743], [2.31043149844916, 48.89007586220264], [2.310574953200093, 48.889980124701964], [2.310707885755573, 48.88989076564236], [2.310708141525866, 48.88987834739432], [2.310571095851111, 48.8897810623052], [2.310435936798835, 48.8896851180188], [2.310298892129212, 48.889587833500315], [2.310163735443782, 48.889491888897645], [2.310026690439589, 48.889394603143366], [2.309891534757278, 48.889298658216575], [2.309754490758195, 48.889201373032904], [2.309619336090915, 48.889105426882736], [2.309617116628156, 48.889103310555974], [2.309534084677071, 48.8889931955086], [2.30945134928598, 48.888883471510376], [2.309368318047927, 48.88877335542677], [2.309285581991849, 48.888663631284146], [2.309276153859508, 48.888651834356054]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 16, "roussel_fabien": 14.0, "nb_emargement": 1067.0, "nb_procuration": 20.0, "nb_vote_blanc": 15.0, "jadot_yannick": 36.0, "le_pen_marine": 87.0, "nb_exprime": 1042.0, "nb_vote_nul": 11.0, "arr_bv": "17", "arthaud_nathalie": 5, "nb_inscrit": 1492.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1068, "quartier_bv": "67", "geo_point_2d": [48.89023059793377, 2.3078139991256137], "melenchon_jean_luc": 448.0, "poutou_philippe": 8.0, "macron_emmanuel": 260.0}, "geometry": {"type": "Point", "coordinates": [2.3078139991256137, 48.89023059793377]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "42bb6aa1183f89364ecc527078b0c1872273ad69", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 32, "zemmour_eric": 36.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "10-26", "geo_shape": {"coordinates": [[[2.361560381218888, 48.88281958008734], [2.361559646755296, 48.88280563387371], [2.361542549815406, 48.88275224037157], [2.361495845226867, 48.88259226595724], [2.361456549422616, 48.882469544360724], [2.36145007793807, 48.88246363452709], [2.361275772295838, 48.882396584249626], [2.361101143094197, 48.88232893483055], [2.360926838352167, 48.882261884036865], [2.360752210066516, 48.8821942332013], [2.360577906224592, 48.882127181891406], [2.360403278832855, 48.88205953143792], [2.36022897589093, 48.88199247961184], [2.3600543494152992, 48.88192482774185], [2.359880047373478, 48.881857775399546], [2.359705421791749, 48.88179012391161], [2.359531120650029, 48.881723071053145], [2.359356495984214, 48.881655418148725], [2.359182195742698, 48.88158836477407], [2.359007571970773, 48.881520712251714], [2.358833272629358, 48.881453658360876], [2.358658649773459, 48.88138600442209], [2.358484351332045, 48.88131895001506], [2.358309729370127, 48.881251296458295], [2.358303335517064, 48.88124156200855], [2.358348395446165, 48.88110992747676], [2.35839229048322, 48.88098505863122], [2.358437351317968, 48.88085342494189], [2.358481244573126, 48.88072855512806], [2.358525138970114, 48.88060368619057], [2.358570197775718, 48.88047205239833], [2.35861409174324, 48.88034718339912], [2.358659151476545, 48.880215548650746], [2.358703043651223, 48.880090679582516], [2.358748102937771, 48.879959044770054], [2.358752751026141, 48.87995529787015], [2.358737523190842, 48.87992538277773], [2.358728408841452, 48.879907479526665], [2.358707319243319, 48.879905352954495], [2.358567438369338, 48.87984064850254], [2.358432245426132, 48.87977563265409], [2.358292363890027, 48.87971092696652], [2.358157171626956, 48.87964591079984], [2.358017292133303, 48.87958120568982], [2.357882100561446, 48.8795161883056], [2.357869586215001, 48.8795149610443], [2.357683023614494, 48.87955777208429], [2.357494742254647, 48.87960006278869], [2.357308177677697, 48.87964287323391], [2.357119897069277, 48.87968516335284], [2.356933331879354, 48.87972797321066], [2.356745049295435, 48.87977026272949], [2.356558484856014, 48.87981307200715], [2.356370201660066, 48.87985536093319], [2.356183635244212, 48.8798981696161], [2.355995352799715, 48.87994045795667], [2.355808785770904, 48.87998326605212], [2.3556205013509173, 48.88002555379257], [2.355433935072631, 48.880068361307885], [2.355245650040632, 48.880110648455556], [2.355059081786024, 48.88015345537607], [2.354870796141917, 48.880195741930955], [2.35482804737725, 48.88020555080255], [2.354808712597005, 48.88021630963243], [2.354819182853348, 48.88023109351468], [2.354925006604991, 48.88033808977503], [2.355036341020387, 48.880450582653154], [2.355142165652933, 48.880557579599525], [2.355253501017753, 48.88067007135399], [2.355359326542452, 48.88077706808708], [2.3554706628455673, 48.880889559617174], [2.355576489262531, 48.88099655613698], [2.355687826503849, 48.88110904744268], [2.355793653812986, 48.881216043749234], [2.355904991981598, 48.8813285357298], [2.356010820193939, 48.88143553092379], [2.356122159300879, 48.88154802267997], [2.356227988394393, 48.88165501855995], [2.3563393284506873, 48.881767509192485], [2.356445158436404, 48.88187450485911], [2.356556499431146, 48.881986995267255], [2.356662330308972, 48.88209399072059], [2.35677367224207, 48.88220648090433], [2.356879504012117, 48.88231347614435], [2.356990846872477, 48.88242596700299], [2.357096679545961, 48.88253296113043], [2.3572080233447, 48.88264545176462], [2.3573138568992222, 48.88275244657802], [2.357425201647449, 48.88286493608854], [2.357531036094221, 48.88297193068865], [2.357642381780844, 48.88308441997472], [2.357748217119978, 48.8831914143615], [2.357859563733919, 48.88330390432244], [2.35796539997631, 48.883410897596605], [2.358076747528671, 48.88352338733311], [2.358182584652255, 48.88363038129324], [2.35829393315413, 48.88374286990607], [2.358399771170104, 48.88384986365281], [2.358511120610417, 48.88396235204122], [2.358616959518589, 48.88406934557463], [2.358613461350347, 48.88408388246199], [2.358643502179691, 48.88409387754165], [2.358862515606461, 48.88409229860344], [2.359065825810394, 48.88409067207489], [2.359269136012589, 48.88408904430183], [2.359488149400053, 48.884087464219235], [2.359501635269909, 48.88407831285491], [2.359498385060931, 48.88395718474074], [2.359494237451522, 48.88384050258812], [2.359490988638168, 48.883719374454884], [2.359486839700701, 48.88360269226946], [2.35948359091939, 48.88348156410981], [2.359479442017444, 48.883364881898935], [2.359478550798761, 48.88336184009794], [2.359413742004505, 48.88324961686252], [2.359344473242294, 48.88312928834414], [2.359279665015311, 48.883017065911694], [2.359210396872115, 48.88289673729031], [2.359224496079917, 48.882884596264056], [2.359435154979212, 48.88289842476176], [2.3596386698105842, 48.88291160223443], [2.359849328940151, 48.88292542910377], [2.360052845345406, 48.88293860587941], [2.36026350468302, 48.88295243291893], [2.360467019935146, 48.882965608982914], [2.360471100265189, 48.88296546710076], [2.360643987268098, 48.88294255196283], [2.360815921987522, 48.88291921869964], [2.360988808696197, 48.88289630216357], [2.361160741744874, 48.8828729683969], [2.361333628137338, 48.88285005226126], [2.361505560878717, 48.88282671799846], [2.361560381218888, 48.88281958008734]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 26, "roussel_fabien": 22.0, "nb_emargement": 980.0, "nb_procuration": 74.0, "nb_vote_blanc": 9.0, "jadot_yannick": 81.0, "le_pen_marine": 44.0, "nb_exprime": 967.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1249.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 980, "quartier_bv": "37", "geo_point_2d": [48.88167708723461, 2.358002401077562], "melenchon_jean_luc": 428.0, "poutou_philippe": 2.0, "macron_emmanuel": 275.0}, "geometry": {"type": "Point", "coordinates": [2.358002401077562, 48.88167708723461]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "800e0813bbc4017e0010fce832b7f0b174ebe386", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 84, "zemmour_eric": 85.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "9-14", "geo_shape": {"coordinates": [[[2.332294626482992, 48.88285878300268], [2.332324834606229, 48.88284975670238], [2.332475710456798, 48.88278757373742], [2.332624866047947, 48.882727654502375], [2.332775741186614, 48.882665471152436], [2.332924896082837, 48.88260555153696], [2.333074050635929, 48.882545631732434], [2.333224924710796, 48.882483447806145], [2.333374077205427, 48.88242352761363], [2.33352495193183, 48.882361343309924], [2.3335297432607582, 48.88235796421191], [2.33362412274217, 48.88224180302994], [2.3337194546485422, 48.882123534532816], [2.33381383329335, 48.88200737227724], [2.333909162976334, 48.88188910359626], [2.334003540761644, 48.88177294206569], [2.334098870959593, 48.8816546723168], [2.334193247897017, 48.88153851061195], [2.3342885758600103, 48.88142024157852], [2.334382951960955, 48.881304078800085], [2.334478280427525, 48.88118580959797], [2.3345726556689073, 48.88106964754458], [2.334667981912155, 48.88095137815866], [2.334762356317074, 48.88083521503169], [2.334857683063805, 48.88071694547713], [2.334952056609392, 48.88060078307515], [2.335047381144217, 48.88048251243751], [2.335079952624643, 48.880472354607534], [2.335077327301907, 48.880446333103706], [2.335078966201943, 48.880444738694756], [2.3351667952026682, 48.880376416667715], [2.335253442751205, 48.880308979252646], [2.335253500553791, 48.880296225225976], [2.335230158648149, 48.88028452119391], [2.335163293691667, 48.88017517674262], [2.335095587337427, 48.880062977580025], [2.3350287229594002, 48.87995363213232], [2.33496101718309, 48.87984143287105], [2.33489415200857, 48.87973208731861], [2.334826448173648, 48.87961988796626], [2.334759583554612, 48.87951054321594], [2.334691878945731, 48.87939834285804], [2.334689544003255, 48.879397640991826], [2.334650539795757, 48.879408773822895], [2.33446736869679, 48.87945165487583], [2.33427305016963, 48.87949679484155], [2.33408987981374, 48.879539675321055], [2.333895560630986, 48.87958481467048], [2.333850644139364, 48.879581105008256], [2.333839314516831, 48.8795921919111], [2.333644994932468, 48.87963732995235], [2.333452135621942, 48.87968308645653], [2.333257815362873, 48.87972822386566], [2.33306495401223, 48.87977397973471], [2.332870633078359, 48.87981911651167], [2.332677771050964, 48.879864871753256], [2.332483449442399, 48.87991000789802], [2.332290586738259, 48.87995576251206], [2.332096264455107, 48.880000898024676], [2.331903401074226, 48.88004665201123], [2.331709078116289, 48.880091786891676], [2.33151621542215, 48.88013754025832], [2.331507307937329, 48.88014716105865], [2.331533114876025, 48.88027822029887], [2.331557287850938, 48.880400929972765], [2.331583095029516, 48.8805319900713], [2.33160726823998, 48.88065469970678], [2.331631442916309, 48.88077741023068], [2.331657249116209, 48.8809084693615], [2.331681424028002, 48.88103117984695], [2.33170723047943, 48.88116223893684], [2.331714403382311, 48.88119864800774], [2.331705168465485, 48.881215602846595], [2.331718732151085, 48.88123004090912], [2.331735733061021, 48.88131634137537], [2.3317689905653, 48.88146375410656], [2.331793164646275, 48.881586463600705], [2.331826423849037, 48.88173387628739], [2.331850598179189, 48.88185658663905], [2.331883856365048, 48.88200399836675], [2.331908030955918, 48.882126708676715], [2.33190304457878, 48.88214794196641], [2.331918945782189, 48.88215504549162], [2.331934419308832, 48.88218517672929], [2.33197891759905, 48.88227182747039], [2.332036014553764, 48.882382812459085], [2.3320959855320043, 48.882499594347465], [2.33215308298593, 48.88261057925735], [2.332213054488882, 48.88272736106289], [2.332270152442125, 48.88283834589401], [2.332294626482992, 48.88285878300268]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 14, "roussel_fabien": 19.0, "nb_emargement": 1335.0, "nb_procuration": 97.0, "nb_vote_blanc": 18.0, "jadot_yannick": 130.0, "le_pen_marine": 44.0, "nb_exprime": 1312.0, "nb_vote_nul": 2.0, "arr_bv": "09", "arthaud_nathalie": 0, "nb_inscrit": 1612.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1332, "quartier_bv": "33", "geo_point_2d": [48.88095499157956, 2.3332126886033335], "melenchon_jean_luc": 295.0, "poutou_philippe": 2.0, "macron_emmanuel": 595.0}, "geometry": {"type": "Point", "coordinates": [2.3332126886033335, 48.88095499157956]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e44b3b06463a8d152c019d0eea0317cab608748d", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 29, "zemmour_eric": 63.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-8", "geo_shape": {"coordinates": [[[2.374131231575129, 48.877163830293284], [2.37411200001363, 48.8771424893126], [2.374035073010008, 48.87704948731889], [2.373948859620532, 48.87695207224073], [2.373871933189464, 48.87685907012612], [2.373785719057025, 48.87676165490647], [2.373782313996322, 48.8767590892845], [2.373644534505697, 48.876690235010805], [2.373494173223701, 48.87661312450085], [2.373356394500123, 48.87654426988642], [2.373206034066112, 48.876467159004335], [2.373187033087576, 48.87646862885098], [2.373099225778438, 48.87654077490715], [2.373012014898246, 48.876608546965585], [2.372924207110887, 48.87668069288422], [2.372836994405281, 48.87674846479944], [2.3728194152399, 48.87675028738066], [2.372653735945522, 48.8766825124749], [2.372490016261831, 48.87660863483888], [2.37232433784669, 48.8765408594685], [2.372160619086341, 48.87646698047324], [2.372090537755092, 48.8764659698754], [2.37207651124355, 48.87647914797631], [2.371946602859046, 48.87658489537061], [2.371819976440365, 48.87669510973854], [2.371690066996349, 48.87680085683373], [2.371563439520609, 48.876911070009434], [2.371433527653674, 48.87701681679839], [2.371306900462564, 48.877127030587594], [2.371176987536089, 48.8772327770774], [2.371050359287914, 48.87734298967441], [2.370920445301892, 48.877448735865116], [2.370793815985787, 48.877558948169174], [2.370663900929341, 48.87766469496004], [2.370537270545194, 48.87777490697111], [2.370407354440146, 48.87788065256355], [2.370280721624723, 48.87799086427452], [2.370277954927251, 48.877996179163134], [2.370276816194544, 48.87805382125903], [2.370281257939034, 48.878056005718555], [2.370338594173865, 48.87805667333367], [2.370423746818208, 48.878133376444204], [2.370533762740918, 48.87824484978992], [2.37061891596949, 48.87832155364779], [2.370619468512518, 48.87832209075581], [2.370729485252673, 48.87843356390256], [2.370841049225604, 48.87855097345991], [2.370951066923513, 48.8786624463799], [2.371062633249701, 48.87877985571353], [2.371172651905376, 48.878891328406745], [2.371284217857946, 48.87900873750228], [2.37132081019942, 48.879045812140546], [2.371336936477543, 48.87905180093435], [2.371374782913123, 48.87902406824379], [2.3715540937920983, 48.87895465318936], [2.371731154495705, 48.87888636011226], [2.371910464425584, 48.878816944515414], [2.372087524193719, 48.878748650902736], [2.372266833174602, 48.8786792347634], [2.372443892007166, 48.87861094061515], [2.37262095037548, 48.878542646200785], [2.372800257925319, 48.878473230148806], [2.372977316732328, 48.878404934306715], [2.373156623333074, 48.87833551771233], [2.373333679830451, 48.878267222226796], [2.373512985492825, 48.878197804190684], [2.373522452904593, 48.878196727771936], [2.373677120240961, 48.87821627373996], [2.373829706060276, 48.87823465028067], [2.37398437362457, 48.87825419585104], [2.374136959663395, 48.87827257199953], [2.374200333092418, 48.878277717419344], [2.374204239034428, 48.87827196952501], [2.37418620080747, 48.878190996544355], [2.374154533157345, 48.878065546901844], [2.374120995372682, 48.877914988006886], [2.3740893280582442, 48.87778953741643], [2.374089165189724, 48.877787546343335], [2.37409403673486, 48.87767943883495], [2.3741067631761092, 48.87753287557311], [2.374111634660895, 48.877424768039084], [2.374124361001201, 48.877278203842216], [2.374129232425539, 48.87717009628248], [2.374131231575129, 48.877163830293284]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 8, "roussel_fabien": 21.0, "nb_emargement": 904.0, "nb_procuration": 31.0, "nb_vote_blanc": 8.0, "jadot_yannick": 42.0, "le_pen_marine": 58.0, "nb_exprime": 887.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 6, "nb_inscrit": 1343.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 904, "quartier_bv": "76", "geo_point_2d": [48.87769811257919, 2.372341514758213], "melenchon_jean_luc": 432.0, "poutou_philippe": 8.0, "macron_emmanuel": 197.0}, "geometry": {"type": "Point", "coordinates": [2.372341514758213, 48.87769811257919]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9ba4a03170d4cdd9aedf26bb5653079393c4d6b3", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 63, "zemmour_eric": 52.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "12-27", "geo_shape": {"coordinates": [[[2.396732701622734, 48.83401787000693], [2.396718457210975, 48.83403692586389], [2.396730586181754, 48.834179589501375], [2.396744405400089, 48.83432253055419], [2.396756534508336, 48.83446519415264], [2.396770353863233, 48.83460813606528], [2.396764240032209, 48.834616224697236], [2.396615353182032, 48.83468080987092], [2.396471831468417, 48.8347421698259], [2.396322943896226, 48.83480675462833], [2.396179421491651, 48.83486811422551], [2.396178602411977, 48.83486849321999], [2.396015768141045, 48.83494984873234], [2.395853160386616, 48.83503112871782], [2.395690325089401, 48.835112484674646], [2.395527714957877, 48.83519376419902], [2.3953648786445862, 48.83527511970095], [2.395202267498367, 48.835356398771076], [2.3950394301690983, 48.835437753818155], [2.394876818007977, 48.83551903243404], [2.39471397967327, 48.83560038612689], [2.394551366486903, 48.8356816651878], [2.394388527136216, 48.83576301842577], [2.394225914307811, 48.83584429614], [2.394063072568363, 48.83592564981549], [2.393900458725049, 48.83600692707547], [2.393737617331933, 48.836088280303], [2.393575001111577, 48.8361695571018], [2.393412158702465, 48.83625090987439], [2.393249541467288, 48.836332186218925], [2.393249126141999, 48.836332402657575], [2.393152743593052, 48.836384583150945], [2.393040081322467, 48.83644462233938], [2.393024080534281, 48.836445157209134], [2.392890383237577, 48.836387578643894], [2.392692956193088, 48.83630356423938], [2.3925592596253162, 48.83624598529678], [2.392361833650806, 48.836161970335084], [2.392228137801482, 48.836104391914375], [2.392168686083068, 48.83608462577831], [2.392156516848117, 48.836095990358736], [2.392088129355437, 48.83618543981581], [2.391993673588508, 48.836312263797254], [2.391899615870503, 48.83643529170216], [2.3918051591920593, 48.8365621155064], [2.391711099226524, 48.83668514232935], [2.391616641636652, 48.83681196595641], [2.391577567946992, 48.83686307320599], [2.391570357180359, 48.8368736544139], [2.391630093484806, 48.836900495771296], [2.3916933806615672, 48.83693267579035], [2.391763843397148, 48.83696768748371], [2.391776786796866, 48.836968930566265], [2.391958752803696, 48.83692424447996], [2.392135470154392, 48.83687970412168], [2.392317435542242, 48.83683501748617], [2.392494150921696, 48.83679047658744], [2.3926708659991442, 48.836745935425924], [2.392852830461025, 48.836701247970616], [2.393029546291722, 48.83665670628257], [2.393211510134614, 48.836612018278004], [2.393388223994065, 48.8365674760496], [2.393570187228425, 48.83652278659656], [2.393746900468409, 48.836478244734046], [2.3939288644460053, 48.83643355473871], [2.39410557708744, 48.83638901144344], [2.394287539073333, 48.83634432179132], [2.394464251105755, 48.836299777962566], [2.394646213834877, 48.83625508776819], [2.394692261478156, 48.83624311194009], [2.394718571213671, 48.836243532875045], [2.394732878202895, 48.836230701200996], [2.394869182966322, 48.836195252618296], [2.395054461444512, 48.836146770670496], [2.395236813161043, 48.83609934567941], [2.395422090956407, 48.836050863158036], [2.395604442002949, 48.83600343760242], [2.39578971911538, 48.835954954507436], [2.395972069491932, 48.83590752838733], [2.396157345921631, 48.835859044718745], [2.396339695628185, 48.835811618034136], [2.396524971374943, 48.835763133791986], [2.39670732177382, 48.83571570654975], [2.396892595475513, 48.83566722172712], [2.397074945204283, 48.83561979392038], [2.39726021822313, 48.83557130852416], [2.39744256728199, 48.835523880152934], [2.397627839617988, 48.83547539418314], [2.39781018800673, 48.8354279652474], [2.397995459659875, 48.83537947870406], [2.398177807378699, 48.835332049203835], [2.398363079711298, 48.835283562093785], [2.398545425397685, 48.8352361320222], [2.398666318935779, 48.835204493160965], [2.398671550418691, 48.835194691209246], [2.398658521500288, 48.835177267077626], [2.398531836741649, 48.83506520426084], [2.398401777932006, 48.834952671945295], [2.398275092908844, 48.83484060882723], [2.3981450352034432, 48.83472807710926], [2.398018351278054, 48.83461601369678], [2.397888294687362, 48.83450348167706], [2.397761613232311, 48.834391417077725], [2.39763155639393, 48.83427888474939], [2.397631595662287, 48.83426794147281], [2.397701322685931, 48.83420819073744], [2.397775365737696, 48.83415265902751], [2.397775996206475, 48.83414478376298], [2.397740087863654, 48.83412649334276], [2.39762264944682, 48.83404946579877], [2.397504684394352, 48.83397064934006], [2.397493892563724, 48.83396800660487], [2.397306548339769, 48.833978042192356], [2.39712653483428, 48.83398807126725], [2.396939189105319, 48.83399810627227], [2.396759176811739, 48.83400813570025], [2.396732701622734, 48.83401787000693]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 27, "roussel_fabien": 16.0, "nb_emargement": 1118.0, "nb_procuration": 37.0, "nb_vote_blanc": 8.0, "jadot_yannick": 130.0, "le_pen_marine": 58.0, "nb_exprime": 1106.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1418.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1118, "quartier_bv": "46", "geo_point_2d": [48.83547682866424, 2.395736548507575], "melenchon_jean_luc": 362.0, "poutou_philippe": 6.0, "macron_emmanuel": 354.0}, "geometry": {"type": "Point", "coordinates": [2.395736548507575, 48.83547682866424]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "eb15e313f84ace5cafee0d1546e7a9ff9e17bf41", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 112, "zemmour_eric": 103.0, "hidalgo_anne": 6.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "7-1", "geo_shape": {"coordinates": [[[2.319948405697291, 48.854969219236025], [2.319904790794807, 48.854978481136854], [2.319714887819063, 48.85502577797561], [2.319526764448321, 48.85507276086519], [2.319338640738327, 48.85511974345713], [2.319148735371141, 48.85516703938358], [2.318960610991561, 48.85521402047788], [2.318770706300465, 48.855261315808185], [2.318582581228004, 48.85530829720347], [2.318392674487256, 48.855355591922], [2.318204548733566, 48.855402572718994], [2.318014642669023, 48.85544986684137], [2.317826516234009, 48.85549684704002], [2.317636608119921, 48.85554414055065], [2.31744848101557, 48.85559111925171], [2.31725857221477, 48.855638412158385], [2.317070444417328, 48.85568539116039], [2.316880536292654, 48.85573268347088], [2.316872878040646, 48.85573746838907], [2.316789840736253, 48.85586170969271], [2.316708178649498, 48.8559840476504], [2.316625140559429, 48.856108288812145], [2.316543476336671, 48.85623062662249], [2.316460438823663, 48.856354867650175], [2.316378773827734, 48.85647720532094], [2.316295734166279, 48.8566014461989], [2.316214069760025, 48.856723783737905], [2.316131029312865, 48.856848024474004], [2.316049362770558, 48.85697036186569], [2.315967697195819, 48.85709270009518], [2.315884655584936, 48.85721693971974], [2.315802987874116, 48.857339277801884], [2.315719946840482, 48.85746351729236], [2.315638278368253, 48.85758585433562], [2.315555235174187, 48.857710094575644], [2.3154735672916162, 48.85783243148715], [2.315390523311693, 48.85795667158528], [2.315389444641391, 48.85796127819877], [2.31540495693566, 48.85810927822537], [2.3154316817344602, 48.85827061862761], [2.315435996459009, 48.85827625617493], [2.315573578465038, 48.858359880786786], [2.3157078354313683, 48.85844027282908], [2.315842094163001, 48.858520665621974], [2.315979677477908, 48.858604288849264], [2.316113935688815, 48.858684681317506], [2.31625152122424, 48.858768305126965], [2.31629025791878, 48.85878260582229], [2.316300777260487, 48.85877971604617], [2.316328899320984, 48.85875587028855], [2.316454440656615, 48.85865248825816], [2.316574285643816, 48.85855086686685], [2.31669982463559, 48.85844748455213], [2.316819668660858, 48.85834586379563], [2.316939512230431, 48.8582442420105], [2.317065051121626, 48.85814085929186], [2.317184893741069, 48.85803923724222], [2.317310430288644, 48.857935854239265], [2.317430271957968, 48.85783423192514], [2.31755580752463, 48.857730848645694], [2.317560158994364, 48.85772849197373], [2.317708075875307, 48.85767803901547], [2.317869982830241, 48.85762251952172], [2.31801789911033, 48.85757206617562], [2.318179804054814, 48.85751654535033], [2.318198328555641, 48.85752056848248], [2.318283288196751, 48.85763498263985], [2.318367888224095, 48.85774888833846], [2.318452848609841, 48.85786330235188], [2.318537449378593, 48.8579772079072], [2.318622410508984, 48.8580916217767], [2.318707010656356, 48.85820552718097], [2.3187919738942, 48.85831994091431], [2.318876574782991, 48.85843384617526], [2.318961537402696, 48.858548259756915], [2.319046140395724, 48.858662164882304], [2.319131103760101, 48.85877657832003], [2.319215707494575, 48.858890483302126], [2.319300671603632, 48.8590048965959], [2.319385276079559, 48.85911880143466], [2.319470240933307, 48.8592332145845], [2.319554846150696, 48.85934711927994], [2.319573734305302, 48.85935101205127], [2.31975084730145, 48.859285688161705], [2.319923991802242, 48.859220912544345], [2.320101103916887, 48.85915558812879], [2.320274247549977, 48.85909081199703], [2.320451358783222, 48.85902548705545], [2.320624501548406, 48.85896071040934], [2.320801611888526, 48.85889538584099], [2.32097475378601, 48.85883060868057], [2.321151863256455, 48.85876528268688], [2.321325004286032, 48.858700505012095], [2.3215021128751783, 48.85863517849243], [2.32167525303695, 48.85857040030327], [2.321852360732886, 48.85850507415684], [2.32202549866405, 48.85844029544563], [2.3222026068532, 48.85837496788164], [2.322375743916459, 48.85831018865613], [2.322552849861403, 48.858244860558365], [2.32272598741976, 48.85818008082625], [2.322775359485213, 48.85816050344031], [2.322771779824002, 48.858144811960614], [2.3227040120421982, 48.85807649850668], [2.322600775018699, 48.85797186891696], [2.322491344027691, 48.857861555321485], [2.322388107845545, 48.857756926427335], [2.322278677756232, 48.85764661261601], [2.322175443789802, 48.85754198352585], [2.322066013239291, 48.85743166949096], [2.321962780137585, 48.8573270392978], [2.321853350477054, 48.85721672594639], [2.32175011822816, 48.857112095549496], [2.321640689481005, 48.85700178108296], [2.32153745807341, 48.85689715138162], [2.321428030227817, 48.85678683669928], [2.321324799673112, 48.856682206794225], [2.321215374092131, 48.85657189190378], [2.321112143039068, 48.856467260888074], [2.321111408455749, 48.85646642122036], [2.321026908689188, 48.85635791044955], [2.320932900819089, 48.85623554325619], [2.3208484017869733, 48.856127033236085], [2.320754394752741, 48.856004665877045], [2.320669896478505, 48.85589615480903], [2.320575890280028, 48.855773787284384], [2.320491392740214, 48.85566527696705], [2.320397387377481, 48.855542909276686], [2.320312890583703, 48.85543439881076], [2.320218886068436, 48.85531203005547], [2.320134390020888, 48.85520351944091], [2.320040386329615, 48.85508115141926], [2.319955891028185, 48.85497264065615], [2.319948405697291, 48.854969219236025]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 1, "roussel_fabien": 6.0, "nb_emargement": 831.0, "nb_procuration": 54.0, "nb_vote_blanc": 11.0, "jadot_yannick": 42.0, "le_pen_marine": 28.0, "nb_exprime": 818.0, "nb_vote_nul": 2.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1011.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 831, "quartier_bv": "26", "geo_point_2d": [48.857178133921266, 2.319040633017609], "melenchon_jean_luc": 79.0, "poutou_philippe": 0.0, "macron_emmanuel": 425.0}, "geometry": {"type": "Point", "coordinates": [2.319040633017609, 48.857178133921266]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5f3c6727dfff720464c176cf18f8d918dacf07f6", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 83, "zemmour_eric": 93.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "12-21", "geo_shape": {"coordinates": [[[2.396700021932774, 48.83957708691555], [2.3966992884272442, 48.83955358741243], [2.396694939716265, 48.83946516009699], [2.396684068205251, 48.83929251068416], [2.396679718179462, 48.839204083340576], [2.396686744906633, 48.839195921103176], [2.396856407602086, 48.83913401116809], [2.39702600458816, 48.83907338854512], [2.3971956678442092, 48.83901147812895], [2.397365264026504, 48.83895085591762], [2.397534926480739, 48.83888894501347], [2.397704521880255, 48.838828321415185], [2.397874182170268, 48.838766410016234], [2.398043778128418, 48.83870578683647], [2.39821343761672, 48.83864387494957], [2.398383032791973, 48.83858325038287], [2.398552691478357, 48.83852133800799], [2.398722285850051, 48.83846071385299], [2.398891943734621, 48.838398800990156], [2.399061537323304, 48.838338175448264], [2.399231194406057, 48.838276262097466], [2.399400785828803, 48.83821563696039], [2.3994266177034023, 48.8382012167842], [2.399403119923167, 48.83817919934582], [2.399321759801781, 48.83813112283726], [2.39918448417827, 48.83808585923626], [2.3991040445991683, 48.83803832591536], [2.399085091392448, 48.83803102591445], [2.399072519414897, 48.83805968927602], [2.398935244206323, 48.83801442448676], [2.398840050480237, 48.83798466648233], [2.3988371131631823, 48.837983358437704], [2.398698841383467, 48.83790263461187], [2.398563564210835, 48.83782289428818], [2.398425293269948, 48.83774217103386], [2.398290016932342, 48.837662430389365], [2.3981517468407523, 48.83758170680724], [2.398016471338066, 48.83750196584198], [2.397878202106157, 48.83742124103277], [2.397742928790261, 48.83734150065288], [2.397716985357157, 48.83732560060272], [2.3976994820335022, 48.83732810263408], [2.397599630123863, 48.83741593340447], [2.397491744533991, 48.837514059994064], [2.39735281791891, 48.837636260716316], [2.397244930056503, 48.83773438615772], [2.397244620230516, 48.837734669694356], [2.397139796714582, 48.837834742305894], [2.397031909392209, 48.83793286844393], [2.396927085069409, 48.8380329408513], [2.396819195573973, 48.83813106677324], [2.396714370444095, 48.83823113897645], [2.396606480138068, 48.83832926468916], [2.396501654201205, 48.8384293366882], [2.396393764446774, 48.83852746219852], [2.396392824558727, 48.838528503413485], [2.396292987257154, 48.83865820647621], [2.396186442492448, 48.8387941063624], [2.396166452223281, 48.83879730431229], [2.396006495389134, 48.83872228952372], [2.395848777195816, 48.838647891090886], [2.395688821277381, 48.83857287586751], [2.395531105351995, 48.83849847701277], [2.395371150338836, 48.838423462253886], [2.395213433956685, 48.83834906296348], [2.395053481232052, 48.83827404687734], [2.394895765755331, 48.838199647158156], [2.39473581258401, 48.838124630630354], [2.394578099364755, 48.838050231388586], [2.394418147109131, 48.837975214425946], [2.394260433443562, 48.8379008138492], [2.39424269398214, 48.83789406063908], [2.394226251282139, 48.837900930341185], [2.394075102110549, 48.837930621695534], [2.393926395286115, 48.837960341422324], [2.393775245771441, 48.837990032396206], [2.393626538606647, 48.83801975174863], [2.393618808185884, 48.83802372821403], [2.393502636765394, 48.838151378427696], [2.393389996442203, 48.838277957296214], [2.393273823894738, 48.83840560725862], [2.393161182466494, 48.83853218588291], [2.393149621824548, 48.83854343940976], [2.393163607088029, 48.83855645667552], [2.393302858039044, 48.83865337497208], [2.393440552245044, 48.83874888579461], [2.3935798042251, 48.83884580375208], [2.393717500809324, 48.83894131424633], [2.393855196535771, 48.83903682456695], [2.393994450056081, 48.839133742016756], [2.394132148160671, 48.839229252009034], [2.394271402710042, 48.8393261691198], [2.394277905085793, 48.83932869237742], [2.39445463979522, 48.839358592477616], [2.39464007802338, 48.83938932869796], [2.394816813146268, 48.83941922826143], [2.395002251793181, 48.83944996481801], [2.395178987329425, 48.83947986384477], [2.395364426416171, 48.83951059893891], [2.395541162365662, 48.83954049742897], [2.395726601881687, 48.83957123196], [2.395738619310015, 48.83958612672611], [2.395779819330849, 48.83958236775777], [2.395981652664032, 48.83958263790211], [2.396203450803746, 48.83958252192705], [2.396405284139718, 48.83958279135664], [2.396627082279138, 48.83958267459608], [2.396678317561709, 48.83958274235272], [2.396700021932774, 48.83957708691555]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 21, "roussel_fabien": 30.0, "nb_emargement": 1324.0, "nb_procuration": 80.0, "nb_vote_blanc": 23.0, "jadot_yannick": 102.0, "le_pen_marine": 94.0, "nb_exprime": 1300.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1650.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1325, "quartier_bv": "46", "geo_point_2d": [48.83858836605196, 2.3961201370284484], "melenchon_jean_luc": 360.0, "poutou_philippe": 3.0, "macron_emmanuel": 463.0}, "geometry": {"type": "Point", "coordinates": [2.3961201370284484, 48.83858836605196]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "aca450c9862d780e88ee6dccb04c86fffa63c525", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 54, "zemmour_eric": 76.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "13-6", "geo_shape": {"coordinates": [[[2.358602586078861, 48.83894757268422], [2.358607212043556, 48.838947762971635], [2.358654976213562, 48.83896292424394], [2.358829949796237, 48.839018093939906], [2.3590065695123332, 48.8390741580704], [2.359181543851614, 48.83912932634729], [2.359358164322699, 48.83918538995309], [2.359533139407517, 48.83924055771018], [2.359709760633794, 48.83929662079128], [2.359884736464147, 48.839351788028615], [2.360061358445408, 48.83940785058498], [2.36023633638371, 48.8394630173098], [2.360412959120159, 48.83951907934149], [2.360587936430545, 48.83957424643851], [2.36076455993301, 48.839630307046214], [2.36093953798893, 48.839685473623426], [2.36111616224657, 48.83974153370636], [2.361291141048022, 48.839796699763845], [2.361467766060634, 48.839852759322014], [2.361642745607616, 48.839907924859695], [2.3618193713754, 48.83996398389314], [2.361825729315899, 48.83996816837598], [2.361831525640164, 48.839976825995464], [2.361880031851395, 48.84004927218486], [2.361967247067455, 48.84016810893584], [2.362021550031365, 48.84024921266595], [2.362069538242214, 48.840314596892135], [2.362076095698697, 48.840333210011565], [2.362088037696288, 48.84034303538536], [2.36212726677254, 48.84039648688621], [2.362213571308806, 48.840515459758485], [2.362300788065411, 48.84063429621664], [2.362387093391535, 48.84075326893836], [2.36247431095271, 48.84087210434538], [2.362560617068598, 48.84099107691658], [2.362647835423348, 48.841109912171795], [2.362734142329214, 48.841228884592475], [2.362821361466554, 48.841347720595174], [2.362907669162307, 48.84146669286531], [2.362994889104239, 48.84158552781687], [2.363081197589889, 48.84170449993647], [2.363168418314436, 48.84182333563549], [2.363254726227513, 48.8419423075973], [2.363341949119145, 48.84206114225239], [2.363428257822132, 48.84218011406367], [2.363515481496413, 48.842298949466276], [2.363601790989322, 48.84241792112696], [2.363689015468228, 48.842536755478406], [2.363775325751066, 48.84265572698856], [2.363862551012646, 48.84277456208745], [2.363948862096401, 48.84289353254777], [2.364036088151544, 48.843012367494794], [2.364122400014273, 48.84313133870384], [2.364209626874164, 48.84325017259971], [2.364295939526854, 48.84336914365819], [2.364383167169458, 48.843487978301525], [2.364383215407798, 48.84348804511049], [2.364471616221904, 48.843607360770115], [2.364558843312198, 48.84372619435344], [2.364647244921457, 48.843845510757134], [2.364734472810781, 48.84396434418698], [2.364778289899585, 48.84402348404894], [2.364810706512178, 48.84404715735081], [2.364902412725741, 48.84401257098609], [2.364968496484963, 48.843888411666285], [2.365033886894798, 48.843765439370834], [2.36509997002746, 48.84364127995087], [2.365165359827975, 48.84351830665704], [2.365231442334085, 48.84339414713694], [2.36529683151433, 48.843271173744], [2.365362913393897, 48.84314701412378], [2.365428301943032, 48.84302404153103], [2.365494383195963, 48.842899881810695], [2.365559771135796, 48.842776908219555], [2.3656258517622, 48.8426527483991], [2.365691239081789, 48.84252977470887], [2.365757319081676, 48.84240561478829], [2.365822705781028, 48.84228264099893], [2.365888785154404, 48.84215848097829], [2.36595417122259, 48.842035507989166], [2.3660202499694662, 48.841911347868354], [2.366085635428374, 48.84178837388088], [2.366151713548757, 48.84166421365999], [2.366217098387455, 48.841541239573395], [2.366283175881354, 48.841417079252416], [2.36634856009985, 48.841294105066744], [2.366414636956342, 48.841169945544955], [2.366480020554644, 48.84104697126025], [2.3665460967956022, 48.84092281073903], [2.366611479773721, 48.84079983635524], [2.366677554025874, 48.84067567572676], [2.366742937746161, 48.840552701251084], [2.366809011371871, 48.84042854052253], [2.36687439446106, 48.8403055668471], [2.366940467460336, 48.84018140601844], [2.367005849940284, 48.840058431344644], [2.367071922313134, 48.839934270415945], [2.367137304172923, 48.83981129564307], [2.367203375919356, 48.83968713461428], [2.367268755796578, 48.83956415973517], [2.367334828268104, 48.839439999512784], [2.367400207525192, 48.83931702453462], [2.367466279381229, 48.83919286331289], [2.367531658018191, 48.839069888235684], [2.367597729247829, 48.83894572691387], [2.367663107264673, 48.83882275173762], [2.367729177867921, 48.83869859031577], [2.367794555253749, 48.83857561593978], [2.367860625230617, 48.838451454417815], [2.367926002007253, 48.83832847904349], [2.367992071357747, 48.8382043174215], [2.368057447514393, 48.83808134194814], [2.368123516238422, 48.83795718022609], [2.368188891774984, 48.83783420465372], [2.368189418321229, 48.837832915047635], [2.368199142464581, 48.837799385025406], [2.368195621921522, 48.83779511423317], [2.368150749427592, 48.83778673616161], [2.368019456645612, 48.83769179901224], [2.367887744497065, 48.83759721653989], [2.367756452671478, 48.83750227908575], [2.367624741479055, 48.837407696307814], [2.367493450609852, 48.83731275854888], [2.367361740373546, 48.837218175465324], [2.367230450471638, 48.83712323650235], [2.367098741180526, 48.83702865401246], [2.366967452234991, 48.83693371474471], [2.366835743899976, 48.83683913194924], [2.366704455910809, 48.836744192376734], [2.366572748531885, 48.83664960927565], [2.366441461499078, 48.836554669398396], [2.366309755087168, 48.836460085092405], [2.36617846899978, 48.83636514580972], [2.366046763543951, 48.83627056119812], [2.365915478412901, 48.8361756216107], [2.365783773913144, 48.836081036693514], [2.365652489738427, 48.83598609680135], [2.365520786194736, 48.835891511578545], [2.365389502976343, 48.83579657138164], [2.365257800388708, 48.83570198585325], [2.365126518126633, 48.83560704535167], [2.364994816495048, 48.835512459517695], [2.364863535189283, 48.83541751871137], [2.36473183451374, 48.83532293257183], [2.364600554175239, 48.83522799056145], [2.364468854444769, 48.835133405015654], [2.3643375750625673, 48.83503846270058], [2.364205876288119, 48.8349438768492], [2.364074597862208, 48.834848934229406], [2.363942900043776, 48.83475434807242], [2.36381162257415, 48.83465940514798], [2.363679925711727, 48.834564818685415], [2.363661332512208, 48.83456390943765], [2.363510034348189, 48.83464462851131], [2.363355291586138, 48.83472747404796], [2.363203993846656, 48.834808191830696], [2.363049248750376, 48.834891036951994], [2.362897950051266, 48.83497175523513], [2.3627432039830403, 48.83505459994842], [2.362591904346383, 48.835135316933304], [2.362437157306209, 48.83521816123853], [2.362285856709805, 48.83529887872381], [2.362131108697677, 48.83538172262097], [2.361979807163726, 48.83546243880802], [2.361825059541852, 48.83554528230443], [2.361673755685924, 48.835625998984554], [2.361519007092193, 48.83570884207288], [2.361517415006956, 48.835709576451684], [2.361359253498099, 48.835774153852334], [2.361201553793618, 48.83583636817313], [2.361043392870963, 48.8359009451561], [2.3608856924169332, 48.835963158154094], [2.360727530718369, 48.83602773471209], [2.360569829492739, 48.836089948185865], [2.360411665655831, 48.83615452431162], [2.360253965042991, 48.8362167364699], [2.360095800430067, 48.83628131217067], [2.359938097683285, 48.8363435247975], [2.359779933656675, 48.836408100080575], [2.359622230160263, 48.836470311384545], [2.359600235200518, 48.83646656648158], [2.359585396034319, 48.8364717672152], [2.359585307052999, 48.83647180181407], [2.359449019575365, 48.83653727443251], [2.359295216188559, 48.83659690971652], [2.359293230188756, 48.83659754302512], [2.35914358339709, 48.836635993312356], [2.358998299226167, 48.836673080867264], [2.358848653351266, 48.83671153168954], [2.358703368759959, 48.83674861888375], [2.358697358657428, 48.83675164990375], [2.358584967112178, 48.836851911230895], [2.358474083162914, 48.836950746941305], [2.3583616907589082, 48.837051008040824], [2.358250805973822, 48.83714984262736], [2.358138412711055, 48.83725010349923], [2.358027525716817, 48.83734893785389], [2.357915131595278, 48.83744919849809], [2.357804245105413, 48.837548033534766], [2.357691850125095, 48.837648293951325], [2.357580962799295, 48.837747127864134], [2.357470073690711, 48.83784596165807], [2.357357677425198, 48.837946221733915], [2.357246788820871, 48.838045056209886], [2.357134391696559, 48.838145316058075], [2.35702350225649, 48.83824414941015], [2.356911104273371, 48.83834440903066], [2.356880167344967, 48.838397608351556], [2.356911534392963, 48.83840561945699], [2.357045575625829, 48.83844867853651], [2.357222191504245, 48.83850474443083], [2.357394070119517, 48.83855995629507], [2.357570686738753, 48.83861602256864], [2.35774256472782, 48.83867123391932], [2.357919182109946, 48.83872729877341], [2.358091060824012, 48.83878251051718], [2.358267678958144, 48.838838574851124], [2.358439559781662, 48.83889378519665], [2.358568414520954, 48.83893468772252], [2.358602586078861, 48.83894757268422]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 6, "roussel_fabien": 12.0, "nb_emargement": 961.0, "nb_procuration": 56.0, "nb_vote_blanc": 13.0, "jadot_yannick": 70.0, "le_pen_marine": 53.0, "nb_exprime": 943.0, "nb_vote_nul": 5.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1201.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 961, "quartier_bv": "49", "geo_point_2d": [48.83858338520985, 2.3633647723276585], "melenchon_jean_luc": 283.0, "poutou_philippe": 9.0, "macron_emmanuel": 310.0}, "geometry": {"type": "Point", "coordinates": [2.3633647723276585, 48.83858338520985]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "feea300978968d3283c84323d7e1944d7dfaeb4d", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 84, "zemmour_eric": 86.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "12-12", "geo_shape": {"coordinates": [[[2.387149383019345, 48.84687186724564], [2.38713032335977, 48.84685425195729], [2.386970740806751, 48.846766220220665], [2.386815151859677, 48.84668092928209], [2.386655570359192, 48.84659289801071], [2.386499982455961, 48.846507605749714], [2.386340402018583, 48.846419574044226], [2.386184815138018, 48.84633428225943], [2.386156339769204, 48.84632016016127], [2.386149967402945, 48.84632020930676], [2.385994381130691, 48.84623491726666], [2.38584617364621, 48.84615637299339], [2.385690588360262, 48.846071080545705], [2.38554238315154, 48.84599253679088], [2.385386798862496, 48.84590724303624], [2.385238593215048, 48.845828698886535], [2.385227367216424, 48.84582689554851], [2.3850915092023532, 48.845844992099885], [2.384963772312485, 48.845871876492645], [2.384951203284402, 48.845870373804495], [2.384819186513036, 48.845801764809714], [2.384709071468633, 48.845749922599055], [2.384699203550844, 48.845745277032904], [2.384694633073242, 48.84574090603473], [2.384628501782899, 48.84560192280977], [2.384572123779748, 48.845461277326194], [2.3845499163270523, 48.84543928801861], [2.384521949062219, 48.84544233416103], [2.384345611271939, 48.84535356412921], [2.384173280618928, 48.845261530900395], [2.383996944044919, 48.84517275944096], [2.383824614594745, 48.84508072659433], [2.383648277863918, 48.84499195459954], [2.383475949627302, 48.84489992123573], [2.383406699303316, 48.84489812626655], [2.383399839000925, 48.84494161892477], [2.383423133808486, 48.84507469462984], [2.383446761517469, 48.845203022522426], [2.3834700579241552, 48.8453360981942], [2.38349368587783, 48.84546442514818], [2.383517313937328, 48.845592752982], [2.383540609335798, 48.84572582858647], [2.383564237629251, 48.84585415638093], [2.383587534627074, 48.84598723195209], [2.3836111631652273, 48.84611555880787], [2.383634459026394, 48.846248635230985], [2.383658089161209, 48.8463769620544], [2.383681385259153, 48.846510038437145], [2.383705014265437, 48.84663836521421], [2.3837283105999543, 48.84677144155659], [2.383751941202921, 48.84689976830129], [2.383775237784855, 48.84703284370404], [2.383798867248651, 48.847161171301636], [2.383822164067166, 48.847294246664], [2.383845795127666, 48.84742257422921], [2.38386909218297, 48.84755564955124], [2.383892722125559, 48.847683976170785], [2.383916020769457, 48.847817052358735], [2.383939650946131, 48.8479453789389], [2.383962948464189, 48.8480784550795], [2.383962952328771, 48.84807847398584], [2.383986582739553, 48.8482068005266], [2.384008355771351, 48.848328911935226], [2.384031986396968, 48.84845723933744], [2.384053761002448, 48.848579350717344], [2.384077391853335, 48.84870767808177], [2.3840991653071892, 48.848829789418886], [2.384122796394074, 48.84895811584618], [2.3841445714110012, 48.84908022805392], [2.384168202723265, 48.849208554443365], [2.38418997658866, 48.84933066660839], [2.3842136081263, 48.84945899295998], [2.384235383565314, 48.84958110509625], [2.384259015328339, 48.84970943141004], [2.384280789615714, 48.84983154350356], [2.384302565378452, 48.849953654687425], [2.384326197475962, 48.85008198094497], [2.384327962955263, 48.85011352496086], [2.384353489270195, 48.850128361639165], [2.384364269612659, 48.85013462714513], [2.384423138155114, 48.85013230842063], [2.384610970527584, 48.850103048293214], [2.384774681611848, 48.850073235748994], [2.384938392519411, 48.850043422080724], [2.385126224282179, 48.85001416114206], [2.385139206333206, 48.85000857901805], [2.385134304142686, 48.849957907631456], [2.385214352903567, 48.84985008177503], [2.385292519342756, 48.849741450257376], [2.385372568806355, 48.84963362428111], [2.385450734591152, 48.84952499263902], [2.385530782021601, 48.84941716742826], [2.385608948525094, 48.84930853476936], [2.385688995295793, 48.84920070943173], [2.385767159771529, 48.84909207754064], [2.385847207255555, 48.84898425118397], [2.385925371076922, 48.84887561916841], [2.386005416538441, 48.848767792677904], [2.386083581068007, 48.84865916054486], [2.386081610558875, 48.84864944549913], [2.385990917401451, 48.84857971720386], [2.385889674325979, 48.848495536015356], [2.385888242215453, 48.848485813835445], [2.385977946848155, 48.848371327721], [2.386062919590681, 48.84826113595007], [2.386152622079656, 48.8481466505738], [2.386237594086495, 48.84803645865661], [2.386322564360868, 48.84792626756044], [2.386412267076268, 48.84781178106282], [2.386497236625461, 48.8477015889211], [2.386586938559813, 48.847587103168706], [2.386671907373347, 48.847476910880694], [2.386761608547832, 48.84736242407498], [2.386846577977757, 48.847252232547], [2.386936277019279, 48.84713774558022], [2.387021245713559, 48.847027553905946], [2.387110943984549, 48.84691306678518], [2.38714221118471, 48.84688751797171], [2.387149383019345, 48.84687186724564]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 12, "roussel_fabien": 24.0, "nb_emargement": 1552.0, "nb_procuration": 76.0, "nb_vote_blanc": 17.0, "jadot_yannick": 130.0, "le_pen_marine": 91.0, "nb_exprime": 1528.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1876.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1551, "quartier_bv": "46", "geo_point_2d": [48.84748208213486, 2.3850004624297885], "melenchon_jean_luc": 541.0, "poutou_philippe": 12.0, "macron_emmanuel": 491.0}, "geometry": {"type": "Point", "coordinates": [2.3850004624297885, 48.84748208213486]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "61e70db36c016830b48d7090c56cfedfb93ae993", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 38, "zemmour_eric": 72.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "13-22", "geo_shape": {"coordinates": [[[2.376914452547419, 48.82412118264585], [2.376938533131494, 48.82412194756957], [2.377109345128172, 48.824181303990215], [2.377277585017164, 48.82423925183727], [2.377448397784235, 48.824298607767396], [2.377616637055711, 48.824356556023666], [2.377787450603805, 48.824415910564014], [2.377955690630728, 48.82447385833721], [2.378126504938276, 48.824533213286394], [2.378294747093299, 48.824591159684275], [2.378465562171134, 48.82465051414298], [2.378633803708748, 48.82470846095005], [2.378804619567688, 48.824767814018934], [2.3789728618605412, 48.82482576034296], [2.379143678479049, 48.824885113820635], [2.379311922900094, 48.82494305876937], [2.379482740288784, 48.82500241175656], [2.379650984092423, 48.82506035711444], [2.379819228280729, 48.825118301333326], [2.379990046821074, 48.82517765358665], [2.380158293126758, 48.82523559732954], [2.380329112437386, 48.8252949490923], [2.380497358125669, 48.82535289324441], [2.380668178217362, 48.82541224361734], [2.380724086876941, 48.825441076572744], [2.380737318707454, 48.8254368110107], [2.3808244974749933, 48.82531963872986], [2.3809110573388, 48.825204082044124], [2.380998233964799, 48.825086909605325], [2.381084793046484, 48.8249713536692], [2.381171968892905, 48.824854181079424], [2.381258527203057, 48.82473862499364], [2.381345702269908, 48.824621452252906], [2.381432259808738, 48.82450589601746], [2.381519435458055, 48.82438872313284], [2.381605990874013, 48.824273165841326], [2.381693165743771, 48.824155992805814], [2.381779720377765, 48.82404043626389], [2.381866894467977, 48.823923263077475], [2.381953449692491, 48.82380770639293], [2.382040621641157, 48.823690533048534], [2.382127176105044, 48.823574975315], [2.382214347274188, 48.8234578018197], [2.382300900956041, 48.82334224483583], [2.382388071345674, 48.8232250711896], [2.382474624256059, 48.82310951405602], [2.3825617952281792, 48.82299234026592], [2.382648346015969, 48.822876782076314], [2.382676246866709, 48.82286050171839], [2.382677231063436, 48.82284559425305], [2.382590774453432, 48.82281483804319], [2.382408007215566, 48.82275228612591], [2.382232306112209, 48.82268978212011], [2.382049538380878, 48.82262722964093], [2.381873839490634, 48.82256472510853], [2.381691072627719, 48.82250217207452], [2.381515374588608, 48.82243966700849], [2.381510527491388, 48.822436879055466], [2.381380276160662, 48.822315424493056], [2.3812542594328843, 48.822197000097354], [2.381124010671075, 48.82207554433758], [2.3809979950944182, 48.82195712054589], [2.380867747528665, 48.821835664481114], [2.380741733124465, 48.82171723949473], [2.380739227734542, 48.821714885442695], [2.380562247039855, 48.821657368307875], [2.380353145141704, 48.82158861043395], [2.38017616393967, 48.82153109271425], [2.380001500269292, 48.821473658693996], [2.379824519845339, 48.821416140447994], [2.379649856958068, 48.821358705008905], [2.379472877312099, 48.82130118623659], [2.37929821518654, 48.82124375117732], [2.3792274854233, 48.82122049216493], [2.379050506723197, 48.82116297186108], [2.3790157171739, 48.821151531894124], [2.3790056396945243, 48.82114821841761], [2.378988411125342, 48.821142552804915], [2.378860207010784, 48.82110039414879], [2.378683230474601, 48.82104287420161], [2.378643782247691, 48.821029901662094], [2.378461882708429, 48.82097008487167], [2.378284905692011, 48.820912564321226], [2.3781030083463452, 48.82085274608642], [2.377926032124186, 48.820795224998854], [2.377826979078101, 48.82076265043546], [2.377650004828171, 48.82070512894185], [2.377494801231895, 48.82065408901439], [2.377317826354853, 48.820596567016516], [2.377162623417617, 48.82054552575369], [2.37698565063752, 48.82048800326575], [2.376830448337841, 48.82043696246616], [2.37665347629256, 48.82037943948107], [2.376498274651932, 48.82032839734606], [2.376321301979655, 48.82027087385668], [2.376096042416934, 48.8201971665773], [2.375919071995711, 48.82013964249302], [2.37579998024123, 48.82010067497625], [2.375784352881421, 48.82009556137554], [2.375773719385977, 48.82009208193138], [2.375596749677097, 48.82003455736471], [2.375423949842192, 48.81997801484815], [2.375246979544311, 48.819920489750864], [2.375074180477483, 48.819863945823805], [2.37490138042352, 48.81980740163706], [2.374724412643205, 48.819749875764785], [2.374551613346554, 48.81969333106686], [2.374374646339153, 48.81963580467111], [2.37422406808026, 48.819586531210895], [2.374047101796683, 48.81952900432493], [2.374004055947813, 48.81951491774719], [2.3738620807563953, 48.8194684589487], [2.3736851139110042, 48.81941093151388], [2.373627533401384, 48.8193920882964], [2.373593670695605, 48.819395522810936], [2.373579791643353, 48.81941621586655], [2.373424434834946, 48.81948805732054], [2.373280270856191, 48.81955791654496], [2.373124913213031, 48.819629757600744], [2.372980747068507, 48.81969961734749], [2.372825388601201, 48.81977145710576], [2.372681221663713, 48.81984131648251], [2.372676367949148, 48.819845703371094], [2.372618187938779, 48.81996009860424], [2.372561563108788, 48.82007245137587], [2.372503382604473, 48.82018684563077], [2.372446757280768, 48.820299198325365], [2.372388576271579, 48.82041359250139], [2.37233195044343, 48.82052594601825], [2.37227376892936, 48.82064034011534], [2.372217142618513, 48.8207526926559], [2.372211969398784, 48.820757248727155], [2.372027703612953, 48.82084143429121], [2.37184447291337, 48.82092704242549], [2.371838914100408, 48.82093590267677], [2.371862685876362, 48.82102752127942], [2.371888692711366, 48.82111767573058], [2.371912463295719, 48.82120929430138], [2.371938470307453, 48.821299448727174], [2.371938035000691, 48.821303927140804], [2.371881142822789, 48.82141878283392], [2.371822648224539, 48.82153378836207], [2.371765755530824, 48.821648644876134], [2.371707260420196, 48.821763650324264], [2.371650365870374, 48.82187850585348], [2.371591870247463, 48.821993511221734], [2.371591165204304, 48.82199618316386], [2.371588123515819, 48.82209034276473], [2.371582510181934, 48.82225638504532], [2.371579468462641, 48.822350544624186], [2.371600821128348, 48.82237167167744], [2.371641054017128, 48.822361631998696], [2.371766997736742, 48.82239843609308], [2.371927144651999, 48.8224512172583], [2.371927713218005, 48.8224513938243], [2.37211712773497, 48.82251380338436], [2.372277275348178, 48.82256658497456], [2.372466689340038, 48.822628993967406], [2.372626837671733, 48.822681774184744], [2.372786986316838, 48.8227345550845], [2.372976402890874, 48.82279696326774], [2.372982563611151, 48.82280895278155], [2.372897325395216, 48.8229243544851], [2.372812672164685, 48.82303989589136], [2.372727433195281, 48.82315529745008], [2.37264277920249, 48.82327083961168], [2.37264951428453, 48.82328297605111], [2.3727092514000843, 48.82330267458132], [2.3728107211072382, 48.82333241405533], [2.372828742484708, 48.823327773358294], [2.37285489623493, 48.82328795574171], [2.372882894404273, 48.82324630676788], [2.372901045045271, 48.82324178725409], [2.373041714140059, 48.82328460306375], [2.373181636805174, 48.82332630676122], [2.373322306358406, 48.8233691222376], [2.373462230836767, 48.82341082561074], [2.3734800191681202, 48.823406646773655], [2.373522249268659, 48.82335081081572], [2.373547298818079, 48.82331896293286], [2.373542687412587, 48.823307469932196], [2.3734097359475532, 48.82324873033008], [2.373276532375999, 48.823188552950526], [2.373143581514039, 48.8231298130463], [2.373010378553474, 48.82306963536391], [2.373005577561436, 48.823058628807125], [2.373062436675104, 48.82297206515766], [2.3731359005172292, 48.82286044825301], [2.373154472550197, 48.822855985771014], [2.373326908500371, 48.82291279839189], [2.373511333946888, 48.82297422801466], [2.373683770676953, 48.82303104011499], [2.373868198334939, 48.823092468288706], [2.374040634472002, 48.823149280760646], [2.374225062968665, 48.823210708377545], [2.37439749989651, 48.82326751942965], [2.374581929221057, 48.82332894738898], [2.374754368290681, 48.82338575792762], [2.374938797102791, 48.823447184423706], [2.375111236941517, 48.82350399534105], [2.375295666592295, 48.823565421280314], [2.375468107221682, 48.823622230777765], [2.375652539062256, 48.82368365706662], [2.375824979109619, 48.82374046603635], [2.376009411799629, 48.82380189086901], [2.376181852626764, 48.823858699318194], [2.376366286144679, 48.82392012449331], [2.376538729113803, 48.823976932429005], [2.376538990934744, 48.82397702103344], [2.376723425291951, 48.82403844565127], [2.376894236770282, 48.82409780238358], [2.376914452547419, 48.82412118264585]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 22, "roussel_fabien": 15.0, "nb_emargement": 1163.0, "nb_procuration": 9.0, "nb_vote_blanc": 20.0, "jadot_yannick": 30.0, "le_pen_marine": 138.0, "nb_exprime": 1130.0, "nb_vote_nul": 13.0, "arr_bv": "13", "arthaud_nathalie": 9, "nb_inscrit": 1669.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1163, "quartier_bv": "50", "geo_point_2d": [48.82234577709151, 2.3769585453432205], "melenchon_jean_luc": 462.0, "poutou_philippe": 8.0, "macron_emmanuel": 292.0}, "geometry": {"type": "Point", "coordinates": [2.3769585453432205, 48.82234577709151]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1c36a84fdb7684b3eb9e482ff2f63d502249f56c", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 34, "zemmour_eric": 61.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "18-65", "geo_shape": {"coordinates": [[[2.371263052971316, 48.8957763855649], [2.371216693461894, 48.89576927677255], [2.371023283414997, 48.895795583276275], [2.37082579494963, 48.895822227767965], [2.370632384508518, 48.89584853363914], [2.370434897006144, 48.89587517749212], [2.370241484817911, 48.89590148182426], [2.370043996914551, 48.89592812503134], [2.369850585685036, 48.89595442963732], [2.369653096017001, 48.89598107219135], [2.369459684393397, 48.89600737616474], [2.369262195688285, 48.896034018080044], [2.369068782317499, 48.896060320514444], [2.368871293211526, 48.896086961783844], [2.368677880799569, 48.896113264492094], [2.3684803899289433, 48.89613990510836], [2.36828697712272, 48.89616620718406], [2.368089485851245, 48.89619284715442], [2.367896072661781, 48.89621914769825], [2.367698582353373, 48.89624578702989], [2.367505167394943, 48.896272087833225], [2.367307676685704, 48.89629872651894], [2.367114262697036, 48.89632502669688], [2.366916770223071, 48.8963516647295], [2.366723355851209, 48.89637796337559], [2.3665258629654913, 48.89640460166154], [2.3663324481995103, 48.89643089967504], [2.366134956287836, 48.89645753642303], [2.36594153975289, 48.89648383469597], [2.365744047440421, 48.89651047079804], [2.365550631886233, 48.896536767546344], [2.365353137798106, 48.896563403894525], [2.365159721849929, 48.8965897000102], [2.364962227371882, 48.89661633481321], [2.364768811018649, 48.89664263119557], [2.364571317503743, 48.896669265359876], [2.364377900767408, 48.89669556021041], [2.364180405476949, 48.89672219462078], [2.363986988346443, 48.89674848883871], [2.363789492666211, 48.89677512170392], [2.363596075130657, 48.896801416188424], [2.363398580413595, 48.89682804841499], [2.363205161131065, 48.896854341360424], [2.363007666002266, 48.89688097384027], [2.362881854222789, 48.896898075996084], [2.362859284338874, 48.896892059997725], [2.362826468163939, 48.89690610810806], [2.362758861599446, 48.89691529914023], [2.362561114968482, 48.8969426049337], [2.36236769620145, 48.8969688965311], [2.362169950525675, 48.8969962016846], [2.361976531350865, 48.897022493548256], [2.36177878390244, 48.89704979804728], [2.361585364342, 48.897076088378604], [2.361387617848783, 48.89710339223768], [2.361194196516847, 48.89712968282796], [2.3609964496148192, 48.89715698603984], [2.360803029261207, 48.89718327510509], [2.360605281950583, 48.8972105776697], [2.360411859825272, 48.89723686699393], [2.360214112105955, 48.89726416891137], [2.360020690959002, 48.89729045671054], [2.359822941467074, 48.89731775797345], [2.359629519912555, 48.89734404603885], [2.359431771375779, 48.89737134666182], [2.359238349435721, 48.89739763319491], [2.359163567518475, 48.89740012886158], [2.35916082426834, 48.897425524390684], [2.359149397855426, 48.897555738331626], [2.359140159192842, 48.89768584615277], [2.359128732682176, 48.897816059161585], [2.359119493921853, 48.89794616695019], [2.359108067291294, 48.89807638082524], [2.359098828444097, 48.89820648768209], [2.359087401704714, 48.89833670152423], [2.359078161384744, 48.89846680924046], [2.359066735911564, 48.89859702215766], [2.359057495493642, 48.89872712984138], [2.359048256393502, 48.8988572375162], [2.359036829384793, 48.898987451276035], [2.359027590186806, 48.899117558918306], [2.359016163080439, 48.899247771745955], [2.359006923784604, 48.899377879355654], [2.358995496558232, 48.89950809304959], [2.3589862571756193, 48.89963819972748], [2.358974829840413, 48.89976841338847], [2.358965588984979, 48.89989852092575], [2.358954162916008, 48.9000287336618], [2.358944921962613, 48.90015884116652], [2.358933495773738, 48.90028905476887], [2.358924254722582, 48.90041916224101], [2.358912828435951, 48.90054937491114], [2.35890358728683, 48.90067948235073], [2.35889215951627, 48.90080969587984], [2.35888291964438, 48.9009398023949], [2.35887149176508, 48.90107001589103], [2.358862251784255, 48.90120012327276], [2.358850823807086, 48.90133033583665], [2.358841583728401, 48.901460443185805], [2.358830155631311, 48.90159065661599], [2.358836628169636, 48.901601965962804], [2.3588973400633613, 48.90160865090237], [2.359028305264653, 48.901611431970366], [2.3592284952044222, 48.901615518554145], [2.359287356127093, 48.90161676783295], [2.359367499772584, 48.901618469064644], [2.35956768976604, 48.90162255508147], [2.359753325181295, 48.90162649461326], [2.359953515235892, 48.9016305799852], [2.360139152073, 48.901634518926265], [2.360324787574157, 48.90163845757229], [2.360524977708553, 48.901642542888275], [2.360752022308949, 48.90164735845411], [2.360952213886079, 48.90165144216399], [2.361152404130675, 48.901655525531964], [2.361379448834692, 48.90166034080762], [2.361579639146913, 48.90166442346151], [2.361748832063681, 48.90166801145208], [2.361918025003771, 48.901671599203674], [2.362118216765564, 48.901675680964566], [2.362221881922209, 48.90167771599481], [2.362422072367406, 48.90168179724053], [2.36263037647196, 48.90168588625619], [2.36283056834454, 48.901689966826375], [2.363038871149822, 48.90169405512425], [2.363239063085934, 48.90169813501169], [2.363447367319921, 48.90170222260635], [2.363647557955407, 48.90170630180369], [2.363679310927464, 48.90170692465937], [2.363910496794511, 48.90171146036228], [2.364110687501706, 48.901715538785545], [2.364252736524853, 48.90171832442084], [2.3644529286493, 48.901722402279276], [2.364665732196138, 48.90172657637939], [2.364865924384768, 48.901730653547475], [2.365078728009415, 48.901734826014554], [2.36527892026201, 48.901738902492326], [2.365491723953476, 48.90174307422556], [2.365691916270228, 48.90174715001302], [2.365693820118055, 48.90174718707522], [2.365745339842331, 48.90174819734974], [2.365948197516541, 48.901752173509756], [2.366148389903918, 48.90175624853423], [2.366351249004329, 48.90176022401876], [2.366551440090268, 48.90176429836233], [2.366751631207542, 48.90176837237123], [2.366954490401257, 48.90177234683404], [2.367154682944967, 48.90177642017647], [2.367357540836765, 48.901780393949416], [2.367374509077757, 48.90178072639084], [2.367574700322606, 48.90178479902406], [2.367761998651748, 48.901788818553115], [2.367962189958028, 48.90179289053862], [2.368149488335384, 48.90179691036101], [2.368336786752477, 48.90180092899126], [2.368536978150281, 48.90180500001597], [2.368724276615484, 48.90180901893947], [2.368924468074699, 48.901813089316526], [2.369120733312777, 48.90181729965488], [2.36932092483473, 48.901821369369245], [2.3695031093353123, 48.90182527650928], [2.369703302281879, 48.90182934559168], [2.369885486839072, 48.90183325215004], [2.370085678482246, 48.90183732058614], [2.370224633276366, 48.901840300495145], [2.370265534579417, 48.901833556673374], [2.370251577251595, 48.901820566460756], [2.370200832804423, 48.90171701628034], [2.370152495576638, 48.90161599860105], [2.370151870117001, 48.901613012291435], [2.37015808826084, 48.901481846941806], [2.370164541343116, 48.90135189328703], [2.370170759423838, 48.901220727905404], [2.370177212442115, 48.901090774218936], [2.370183665439053, 48.90096081961738], [2.370189883413898, 48.90082965508709], [2.370196337710857, 48.90069970046099], [2.37020255426955, 48.9005685349923], [2.370209008491627, 48.90043858123377], [2.370215224987212, 48.90030741573311], [2.370221679145286, 48.90017746194282], [2.370227896941667, 48.90004629641735], [2.370234349671736, 48.89991634258821], [2.370240567405109, 48.899785177030736], [2.370247020071183, 48.89965522316989], [2.370253237741446, 48.899524057580464], [2.370259690354405, 48.89939410278863], [2.37026590795068, 48.89926293806653], [2.370272360499646, 48.899132983243], [2.3702785780327122, 48.89900181848889], [2.370285030517687, 48.89887186363365], [2.370291247998623, 48.898740697948355], [2.370299217233379, 48.89871550416809], [2.370291167327329, 48.89870214748171], [2.370297384772536, 48.89857098177576], [2.370302202470357, 48.89844581162421], [2.370308419857147, 48.89831464588694], [2.370313238868771, 48.898189475712805], [2.370319454833091, 48.89805830993704], [2.370324273794455, 48.89793313973318], [2.370330491064414, 48.89780197393333], [2.370335308611475, 48.8976768036925], [2.37034012749941, 48.89755163344434], [2.370346343319932, 48.89742046759076], [2.370351162157508, 48.89729529731284], [2.370357379283552, 48.89716413143516], [2.370362196707047, 48.897038961120344], [2.370368413774578, 48.896907795211334], [2.3703732311478243, 48.896782624866766], [2.370379448157045, 48.896651458926485], [2.370382399928054, 48.896646147791614], [2.370492260900572, 48.89655493565005], [2.370595089866267, 48.896464541694996], [2.3707049500720743, 48.89637333024245], [2.370807778320771, 48.89628293519054], [2.370917637770745, 48.89619172352776], [2.371020465291377, 48.89610132827825], [2.371123291080278, 48.89601093382509], [2.371233150778297, 48.895919720958126], [2.371235396936746, 48.89591669485727], [2.371262225298511, 48.89587191391085], [2.371294183070252, 48.89579474848548], [2.371263052971316, 48.8957763855649]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 65, "roussel_fabien": 10.0, "nb_emargement": 1132.0, "nb_procuration": 15.0, "nb_vote_blanc": 14.0, "jadot_yannick": 24.0, "le_pen_marine": 130.0, "nb_exprime": 1103.0, "nb_vote_nul": 15.0, "arr_bv": "18", "arthaud_nathalie": 3, "nb_inscrit": 1802.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1132, "quartier_bv": "72", "geo_point_2d": [48.89914936040919, 2.3650050517517984], "melenchon_jean_luc": 547.0, "poutou_philippe": 9.0, "macron_emmanuel": 251.0}, "geometry": {"type": "Point", "coordinates": [2.3650050517517984, 48.89914936040919]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "efb75d5c76b3aee69def74a723fb025d105b84cb", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 63, "zemmour_eric": 84.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-36", "geo_shape": {"coordinates": [[[2.335620871081666, 48.830375879159895], [2.335651203833549, 48.83036907121345], [2.335827201361822, 48.83034208268754], [2.336009272105906, 48.83031312921187], [2.336185269259946, 48.83028614015771], [2.336367339609785, 48.83025718613549], [2.3365433363895862, 48.8302301965531], [2.336725406345172, 48.83020124198433], [2.336901402750728, 48.83017425187371], [2.3370834723120533, 48.830145296758374], [2.337099626691223, 48.83013269073651], [2.337090879600842, 48.83011363308579], [2.337124404829708, 48.82998910810938], [2.337158809126533, 48.829864322667284], [2.337192334044249, 48.829739796744875], [2.337226738013949, 48.82961501125548], [2.337260262597653, 48.829490486185605], [2.337294666240335, 48.82936570064894], [2.337328190512795, 48.829241174633005], [2.337362593828361, 48.82911638904905], [2.337396117766821, 48.828991863885705], [2.337430520766706, 48.828867077355135], [2.337464044382701, 48.82874255214507], [2.337498447043948, 48.82861776646657], [2.337531970337384, 48.82849324120978], [2.337566372682957, 48.828368454584684], [2.337599895653837, 48.82824392928112], [2.337634297660885, 48.828119143508054], [2.337667820309214, 48.827994618157824], [2.337702222000595, 48.827869831438164], [2.337735742964272, 48.82774530603369], [2.337770145679348, 48.82762052017361], [2.3378036663203883, 48.8274959947224], [2.337838068719797, 48.827371207915725], [2.3378347267116872, 48.82736353392224], [2.337703430728305, 48.82726857924068], [2.33757942205938, 48.82717636289811], [2.33744812701225, 48.827081407920396], [2.337324119251637, 48.8269891903984], [2.337200111918179, 48.82689697363952], [2.337068818265483, 48.826802018221784], [2.336944813202309, 48.826709800291034], [2.336813519112534, 48.82661484546893], [2.33679768791949, 48.826609407283264], [2.336770781996933, 48.82661685420574], [2.336674342226175, 48.82666307072743], [2.33656925352484, 48.82671392584254], [2.336524977840311, 48.82671951446964], [2.336517661987108, 48.82673319387351], [2.336474721282134, 48.82675397316604], [2.336319798117255, 48.82682855591474], [2.336171769140906, 48.826900190798675], [2.33601684510815, 48.826974773145196], [2.33586881531184, 48.82704640674552], [2.335720785108749, 48.82711804015802], [2.335565859783485, 48.82719262190581], [2.335417828737619, 48.827264255833335], [2.335262902544469, 48.827338837178964], [2.335114870678549, 48.82741046982283], [2.334959943617514, 48.82748505076624], [2.334954706283518, 48.82749026590472], [2.334911467020162, 48.82761208248882], [2.334865544291607, 48.827735589337664], [2.334822304616452, 48.82785740586291], [2.334776381460475, 48.82798091265053], [2.334733141373516, 48.828102729116885], [2.334687217790316, 48.82822623584323], [2.334643977291546, 48.82834805225069], [2.334598053280915, 48.82847155891583], [2.334554812370329, 48.82859337526445], [2.3345088879324623, 48.828716881868246], [2.334465646610054, 48.828838698157966], [2.334419720382708, 48.828962204693], [2.334404657838776, 48.82896897140519], [2.334247676626937, 48.82895488851655], [2.3341031715256593, 48.828940841610944], [2.334088602481267, 48.828946296144956], [2.33399944282629, 48.829088344328504], [2.333905316639007, 48.82923183794522], [2.333816155996284, 48.82937388595593], [2.333722028789069, 48.82951737939184], [2.333673751450219, 48.82953102555303], [2.333672057549097, 48.82954226729352], [2.333714216704967, 48.829604969143645], [2.333745477234268, 48.82964951394391], [2.333753664347491, 48.82966474729208], [2.333767640013628, 48.82967099305761], [2.333800051193128, 48.829717177514574], [2.333792155344134, 48.82973841813017], [2.333830831336917, 48.82975903048147], [2.333860292620651, 48.829801010998956], [2.333933831674381, 48.82991304733835], [2.334026965653445, 48.8300457578272], [2.334070130044353, 48.830111518492146], [2.334084891974033, 48.83011978319344], [2.334131440106556, 48.83010781177153], [2.334176113252024, 48.83011518622541], [2.334218930889595, 48.83011787898351], [2.334233289064707, 48.83011146722897], [2.334287196597546, 48.829990638678375], [2.334335304194075, 48.829861646566236], [2.334355562047282, 48.82985609415782], [2.334517560246061, 48.82992055626877], [2.334666663405458, 48.82998238859831], [2.334828662392841, 48.83004684938132], [2.334977764908794, 48.83010868220779], [2.335139764673299, 48.830173142562145], [2.335288869281724, 48.83023497500134], [2.3354379728930352, 48.83029680634437], [2.335599973799708, 48.83036126696387], [2.335620871081666, 48.830375879159895]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 36, "roussel_fabien": 12.0, "nb_emargement": 1031.0, "nb_procuration": 44.0, "nb_vote_blanc": 12.0, "jadot_yannick": 67.0, "le_pen_marine": 65.0, "nb_exprime": 1012.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 6, "nb_inscrit": 1333.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "54", "geo_point_2d": [48.828646767060725, 2.335982837537], "melenchon_jean_luc": 374.0, "poutou_philippe": 8.0, "macron_emmanuel": 286.0}, "geometry": {"type": "Point", "coordinates": [2.335982837537, 48.828646767060725]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "154e378bfa1ea2194d88e8d03a25d3984b14a906", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 39, "zemmour_eric": 56.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-29", "geo_shape": {"coordinates": [[[2.365945624925106, 48.83067573867637], [2.365927769840553, 48.830686494925395], [2.365857585841622, 48.83081388742402], [2.365787269609335, 48.83093879600539], [2.365717083565198, 48.83106618838566], [2.365646766655951, 48.831191096856266], [2.365576581280044, 48.831318490031975], [2.3655062637047752, 48.83144339749253], [2.365436076283628, 48.83157079054983], [2.365365758020534, 48.831695698799], [2.365295571289502, 48.83182309085308], [2.365225252349322, 48.83194799899148], [2.365222560365522, 48.83195091664982], [2.365088097994303, 48.83204851214584], [2.364951057384297, 48.83214613066949], [2.364816594012214, 48.83224372494397], [2.364679551018381, 48.83234134313231], [2.364545087996706, 48.83243893709178], [2.364408043981364, 48.832536554952036], [2.364273579947864, 48.83263414858923], [2.364136534910803, 48.83273176612138], [2.364002069865469, 48.832829359436296], [2.363865023806782, 48.832926976640366], [2.363730557749605, 48.83302456963305], [2.363593510669284, 48.83312218650896], [2.363459043589276, 48.83321978007871], [2.363321995498395, 48.83331739572721], [2.363299232425847, 48.83335721822537], [2.363314270597487, 48.83336595919969], [2.363419777340562, 48.83340096031701], [2.363614341166045, 48.8334659417071], [2.363794212209766, 48.8335256120949], [2.363988776967248, 48.83359059286872], [2.364168648869787, 48.83365026268677], [2.364363213196897, 48.833715242837], [2.364500837869585, 48.833760896703495], [2.364537313156331, 48.83377250258553], [2.364570084776992, 48.83373098197249], [2.364703373066924, 48.83362418939462], [2.364835598443418, 48.83351782361266], [2.364968885633532, 48.833411031617906], [2.365101111289844, 48.83330466552942], [2.365234397401858, 48.83319787231913], [2.365366620602634, 48.83309150680897], [2.365499905625707, 48.832984713282485], [2.365632127754913, 48.83287834655927], [2.365765411678111, 48.83277155361587], [2.365897634087251, 48.83266518658613], [2.366030916932467, 48.83255839242722], [2.36616313688593, 48.83245202597578], [2.366296418642337, 48.83234523150073], [2.366428637524349, 48.83223886383625], [2.366561918191752, 48.832132069044995], [2.366694137342682, 48.832025701973315], [2.366716404819873, 48.83200835861736], [2.366711752837794, 48.83199903270449], [2.366522455505516, 48.83190998284301], [2.366346655591714, 48.83182233614819], [2.366341280006298, 48.83181449304365], [2.366354643591193, 48.83169572740158], [2.366366304105379, 48.83156128479755], [2.366379667568355, 48.8314425191258], [2.366391327972401, 48.83130807558966], [2.366404691313459, 48.8311893098883], [2.366413827887909, 48.8310839619736], [2.366383924042053, 48.83106520097567], [2.366381088625749, 48.83106524621206], [2.366299251522027, 48.83098427310179], [2.366168285382284, 48.830854407008204], [2.366036775129748, 48.83073595538015], [2.366035893679185, 48.83073517724899], [2.365973287503371, 48.83068564979425], [2.365945624925106, 48.83067573867637]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 29, "roussel_fabien": 28.0, "nb_emargement": 926.0, "nb_procuration": 24.0, "nb_vote_blanc": 10.0, "jadot_yannick": 27.0, "le_pen_marine": 101.0, "nb_exprime": 908.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1311.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 926, "quartier_bv": "50", "geo_point_2d": [48.83243481500621, 2.3652101216261823], "melenchon_jean_luc": 374.0, "poutou_philippe": 7.0, "macron_emmanuel": 229.0}, "geometry": {"type": "Point", "coordinates": [2.3652101216261823, 48.83243481500621]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c739f0504851a005587588bb4025ce9c9a945a18", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 79, "zemmour_eric": 74.0, "hidalgo_anne": 53.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "13-47", "geo_shape": {"coordinates": [[[2.34650232061075, 48.82492502158622], [2.346505506540324, 48.824909484267266], [2.346509594942393, 48.82477999897904], [2.346513664442525, 48.82464952065988], [2.346517752804051, 48.824520035341415], [2.346521820912729, 48.82438955608506], [2.346525909233614, 48.824260070736315], [2.346529978663609, 48.82412959145686], [2.34653406694385, 48.824000106077904], [2.346538134971134, 48.82386962676059], [2.346542223210735, 48.82374014135138], [2.346546292548052, 48.82360966291031], [2.34655038074701, 48.82348017747084], [2.346554448692903, 48.82334969809256], [2.346558536851222, 48.823220212622886], [2.346562604756422, 48.82308973321414], [2.346566694235983, 48.822960247721625], [2.346570762100588, 48.82282976828243], [2.346574850177526, 48.822700282752265], [2.3465789179901693, 48.8225698041819], [2.346585140283984, 48.82256302718433], [2.34657687876948, 48.82255058679831], [2.346513799561382, 48.8224609580304], [2.346449751143666, 48.822370323814056], [2.346386672372078, 48.82228069496477], [2.346322624408151, 48.82219005976648], [2.346321389746606, 48.822186961850136], [2.346307073520236, 48.822066692315744], [2.34629124946608, 48.82194219643303], [2.346276934738289, 48.8218219268763], [2.346261110830377, 48.82169743096252], [2.346247156707014, 48.82168919370124], [2.346027158401458, 48.82169327728535], [2.345811139124817, 48.82169742090681], [2.345591142112354, 48.8217015036962], [2.345375122755797, 48.82170564742929], [2.3451551243124378, 48.82170972940903], [2.344939104887155, 48.82171387235447], [2.344723085427546, 48.821718014909656], [2.344503088254224, 48.82172209479789], [2.344500571204847, 48.82172198926327], [2.344306258252161, 48.821701758138055], [2.344112819702208, 48.82168175633703], [2.343918507049911, 48.82166152458102], [2.3437250674360213, 48.82164152214455], [2.343530755072798, 48.82162129065704], [2.343337315756926, 48.821601287592635], [2.343143003705328, 48.82158105457501], [2.34294956604943, 48.82156105089014], [2.342947747140549, 48.82156077557847], [2.342763468140454, 48.821523999007596], [2.342563251512593, 48.82148265291381], [2.342553690576544, 48.82150001145134], [2.342554483316564, 48.821520098972435], [2.342674024767955, 48.82161711126453], [2.342791600094059, 48.82171302796793], [2.342911142428942, 48.82181004000634], [2.343028717264432, 48.8219059564526], [2.343146293883019, 48.82200187368195], [2.34326583754007, 48.822098885340836], [2.343383413679379, 48.82219480141377], [2.34350295821994, 48.82229181281893], [2.343620535230497, 48.82238772864223], [2.343740080654575, 48.82248473979376], [2.34385765989826, 48.822580655374914], [2.343977206205865, 48.82267766627271], [2.343980018757125, 48.822685033228446], [2.343944960723057, 48.82280597108367], [2.343908995373389, 48.82292572035564], [2.343873937012749, 48.82304665816415], [2.343837971333938, 48.8231664073891], [2.34380291264672, 48.82328734515087], [2.343766946638759, 48.823407094328815], [2.343768124360635, 48.82341286670853], [2.343846756073784, 48.823516682664355], [2.343924283570618, 48.823616484868346], [2.344002915901781, 48.82372030070264], [2.344080444011511, 48.82382010188798], [2.344157973768735, 48.82391990392102], [2.344236607022806, 48.82402371957359], [2.344245650329537, 48.824028448628816], [2.344308003680122, 48.82403819533377], [2.344342047524063, 48.82405368491445], [2.344339755542347, 48.824046721054366], [2.344497098741023, 48.82407459196625], [2.3445479181324558, 48.824080000576735], [2.344554619618668, 48.82408682311573], [2.344582245802336, 48.8240877641873], [2.34463278366761, 48.82409671656683], [2.344672071942015, 48.824102322748146], [2.344679162691323, 48.82410537722036], [2.344784756870118, 48.82419218819413], [2.344887164134628, 48.82427802197116], [2.344992757636081, 48.82436483363981], [2.345095166944139, 48.824450667232966], [2.34519757522736, 48.824536500724435], [2.345303169769146, 48.82462331209896], [2.345313570350664, 48.82463299687585], [2.345336376662782, 48.82463142010805], [2.345516546209143, 48.82468028016952], [2.345692088854766, 48.82472774398847], [2.345872259067333, 48.82477660350987], [2.346047802349806, 48.82482406770188], [2.346227973228578, 48.82487292668322], [2.346403517170463, 48.8249203894497], [2.346406883677866, 48.82492098165199], [2.346438416188609, 48.82492317039189], [2.34648103449653, 48.824926909974295], [2.34650232061075, 48.82492502158622]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 47, "roussel_fabien": 33.0, "nb_emargement": 1513.0, "nb_procuration": 87.0, "nb_vote_blanc": 28.0, "jadot_yannick": 134.0, "le_pen_marine": 95.0, "nb_exprime": 1479.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 8, "nb_inscrit": 1818.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1513, "quartier_bv": "51", "geo_point_2d": [48.823019287086666, 2.345139561315075], "melenchon_jean_luc": 498.0, "poutou_philippe": 16.0, "macron_emmanuel": 469.0}, "geometry": {"type": "Point", "coordinates": [2.345139561315075, 48.823019287086666]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "07222bf8d67ca1e87fd175287643e0b8fe4a609b", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 74, "zemmour_eric": 87.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "14-43", "geo_shape": {"coordinates": [[[2.323352164242659, 48.82373519551495], [2.3233366422550352, 48.82373538739144], [2.323305092061567, 48.823741926331294], [2.323266553651502, 48.82374841852081], [2.323250558705563, 48.823743072922696], [2.323193547561154, 48.823649902729024], [2.323135721902528, 48.823555278986845], [2.323118827225005, 48.82355010275691], [2.322932718934359, 48.82359061134203], [2.322749840351436, 48.82363034557481], [2.322563731499378, 48.823670852683456], [2.322380852353811, 48.82371058634911], [2.322194742916977, 48.82375109377994], [2.322011863208769, 48.82379082687847], [2.321825753198847, 48.82383133373216], [2.321642872928003, 48.82387106626358], [2.321459993740333, 48.82391079852161], [2.321273881511423, 48.82395130450436], [2.321270083546069, 48.823952596942746], [2.321221307283544, 48.82397624900375], [2.321168779703918, 48.8240006406256], [2.321158940408773, 48.8240021793725], [2.321120318875205, 48.82399838688416], [2.321082322237662, 48.82399524548499], [2.321076418220635, 48.823995616686766], [2.320873476368412, 48.8240391905171], [2.32066492433532, 48.82408491402956], [2.320461981780006, 48.8241284880574], [2.320253429028865, 48.82417421084863], [2.320236182423384, 48.82416845301241], [2.320176999835269, 48.82404810235907], [2.320117833238026, 48.82392675523923], [2.320058651197342, 48.82380640450141], [2.319999485138087, 48.82368505819623], [2.319940303656757, 48.82356470647464], [2.31988113814721, 48.823443360084816], [2.319862849487312, 48.82343783819621], [2.319726173780507, 48.82347616943957], [2.319588942215603, 48.82351292974283], [2.319452267484321, 48.82355125977901], [2.319315035528763, 48.82358801976548], [2.319313000484546, 48.82358844528073], [2.319142195079711, 48.82361442284774], [2.318974896599208, 48.82364010625929], [2.31880409085668, 48.82366608334217], [2.318636790693623, 48.82369176537247], [2.318465985963552, 48.82371774287834], [2.318298685468298, 48.823743424434454], [2.318127880412301, 48.82376940055688], [2.317960579572889, 48.8237950825381], [2.317957982654725, 48.82379566401609], [2.317890070026754, 48.82381612700264], [2.317816672587921, 48.82383947895119], [2.317709348973257, 48.8238486303333], [2.317708984765206, 48.82386230603916], [2.31780527743976, 48.82390526840733], [2.317964506179953, 48.82397658918533], [2.318138901769605, 48.82405439801764], [2.318298131421597, 48.824125718341946], [2.318472529369958, 48.82420352668517], [2.31863175857174, 48.824274846547986], [2.318806157516806, 48.82435265439432], [2.318965387630388, 48.82442397380345], [2.319139787583903, 48.82450178025367], [2.319299018609285, 48.82457309920909], [2.31929571955457, 48.82458906511277], [2.319127259050293, 48.82462652129912], [2.318973383262596, 48.824663070989985], [2.318804920925614, 48.824700526712036], [2.318651046055564, 48.82473707599348], [2.318482583259656, 48.824774530359704], [2.318328706571454, 48.82481108011553], [2.318321774732064, 48.82482431724952], [2.3184202320600003, 48.82492807330712], [2.318519008024175, 48.825036243444984], [2.318617466144819, 48.82513999932062], [2.3187162429198, 48.82524816927514], [2.318814701833158, 48.82535192496881], [2.3189134794187503, 48.82546009474002], [2.319011937774534, 48.825563849344626], [2.319110717521147, 48.8256720198396], [2.319209176669756, 48.825775774262226], [2.319307955876793, 48.82588394366681], [2.319406417168346, 48.825987698814515], [2.319475167643268, 48.826062984046075], [2.3194741539010533, 48.82607041704017], [2.319494855451094, 48.826083791687], [2.319524885018453, 48.82611667567111], [2.319582680498335, 48.826178051658395], [2.319640179567349, 48.82617750010148], [2.319654009556434, 48.826164125873845], [2.319829485624878, 48.82612436868889], [2.320039942046781, 48.82607869256971], [2.320215418883612, 48.8260389357225], [2.320425874622541, 48.825993258920654], [2.320601349515577, 48.82595350149644], [2.320811804571524, 48.825907824011985], [2.320987280244772, 48.82586806602614], [2.320990371296664, 48.82586709605889], [2.321117063198921, 48.825813539619276], [2.321246326748561, 48.825764047544034], [2.321373019499537, 48.825710490836116], [2.321502281200369, 48.825660997572626], [2.321505012180214, 48.82566100407345], [2.321535665052362, 48.82564690663651], [2.321590769645145, 48.82562295310756], [2.321553203017658, 48.82558468546181], [2.321443022602232, 48.82549213029257], [2.321449077045954, 48.825478120840664], [2.321630640325556, 48.82543452731903], [2.321687304405883, 48.825343664276964], [2.32168746289133, 48.825343627401985], [2.32187142195578, 48.825301147942824], [2.322051608545128, 48.82526017126217], [2.322235568368768, 48.82521769214677], [2.322415754383496, 48.825176714914406], [2.322599712265629, 48.82513423432865], [2.322779899067662, 48.82509325655231], [2.322960084224524, 48.82505227849526], [2.323144041224094, 48.82500979706747], [2.323324227168353, 48.82496881846643], [2.32350818356508, 48.82492633737468], [2.323688367572669, 48.824885358214225], [2.323872324751918, 48.82484287566756], [2.32388749307568, 48.82484162135196], [2.323896297381502, 48.82480898138423], [2.323828727725282, 48.824675054074184], [2.323760350197356, 48.82453916958624], [2.323692781239909, 48.82440524216721], [2.323624403069893, 48.8242693566619], [2.323556834811416, 48.82413542913394], [2.323488458711463, 48.82399954352592], [2.323420891140071, 48.823865616788254], [2.323362045720063, 48.82374897417387], [2.323352164242659, 48.82373519551495]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 43, "roussel_fabien": 25.0, "nb_emargement": 1216.0, "nb_procuration": 48.0, "nb_vote_blanc": 11.0, "jadot_yannick": 116.0, "le_pen_marine": 52.0, "nb_exprime": 1204.0, "nb_vote_nul": 1.0, "arr_bv": "14", "arthaud_nathalie": 3, "nb_inscrit": 1509.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "55", "geo_point_2d": [48.824689288243505, 2.3208259078366504], "melenchon_jean_luc": 347.0, "poutou_philippe": 5.0, "macron_emmanuel": 437.0}, "geometry": {"type": "Point", "coordinates": [2.3208259078366504, 48.824689288243505]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b581e947924004ab3ffc62333e9bb087564f56e7", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 39, "zemmour_eric": 54.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-56", "geo_shape": {"coordinates": [[[2.412092244394048, 48.84884091715108], [2.412096217556038, 48.848835286944464], [2.412126838562868, 48.84882797817938], [2.412311876161629, 48.848783812596466], [2.412514048030358, 48.84873555696963], [2.412522415418238, 48.84872440921557], [2.412467672428483, 48.848609214880454], [2.412412654135103, 48.84849344087149], [2.412357912983111, 48.84837824736824], [2.412302895177413, 48.8482624732848], [2.412248154510649, 48.84814727970745], [2.412193137192627, 48.84803150554953], [2.412204028996815, 48.848019929530665], [2.412463746041056, 48.84799307077884], [2.412713094243035, 48.847967282958884], [2.41272166050309, 48.84796398750986], [2.412830200191787, 48.84787368831039], [2.412939315881085, 48.8477829088808], [2.413047854815505, 48.84769260946923], [2.413156969736495, 48.847601830725694], [2.413265509279278, 48.84751153110865], [2.413374623452118, 48.847420751252564], [2.413387642541668, 48.84741748118554], [2.413572046997749, 48.84743872587314], [2.4137528914404722, 48.84745955981374], [2.413937297556973, 48.84748080394424], [2.414118142291729, 48.84750163733196], [2.414298987171176, 48.847522470445995], [2.41448339237026, 48.84754371372688], [2.414664237541627, 48.84756454628802], [2.414848644411113, 48.847585788112546], [2.4150294898645, 48.84760662102009], [2.415213897031743, 48.84762786228083], [2.415225057418103, 48.84763551546258], [2.415254771534354, 48.84778033597422], [2.415284660274541, 48.84792600360306], [2.415314376074612, 48.84807082496809], [2.4153442651581, 48.848216491644706], [2.415373979926798, 48.848361312950495], [2.4154038693334092, 48.84850698047355], [2.415419422975406, 48.84851466408972], [2.415642757164683, 48.84849223164931], [2.415859518232165, 48.84847045830205], [2.416082852042548, 48.848448025039254], [2.416299611369545, 48.84842625178648], [2.416326245505095, 48.84842394088184], [2.41632825722855, 48.848421839916625], [2.416312829128831, 48.848345147943945], [2.41628878594985, 48.8482195584215], [2.416263435463164, 48.84809353530871], [2.416239392519302, 48.847967945747946], [2.416214040911814, 48.847841922589566], [2.416189999565709, 48.847716332997145], [2.416164648200064, 48.84759030979984], [2.416140607089066, 48.847464720169135], [2.416115698743887, 48.84734089441443], [2.41609165786591, 48.84721530474574], [2.416085728000786, 48.84718582828626], [2.416059295506912, 48.847054425192766], [2.416035253534392, 48.846928835473825], [2.41602899206918, 48.84689770437364], [2.416014310940093, 48.84682471943657], [2.415990270544561, 48.846699129689334], [2.41597663242558, 48.84663133190075], [2.415957245504158, 48.846611663729384], [2.415938975560527, 48.84661124357683], [2.415741547117595, 48.846628799978575], [2.415545970552356, 48.84664537041656], [2.41534854184775, 48.84666292616924], [2.415152965029485, 48.8466794959643], [2.414955534700602, 48.84669705106122], [2.414759957629322, 48.84671362021332], [2.414562528401395, 48.846731174667866], [2.414366951077108, 48.84674774317699], [2.414169521587534, 48.84676529698248], [2.413973944010251, 48.846781864848644], [2.413776512896424, 48.84679941799833], [2.413580935066153, 48.846815985221546], [2.413385357101412, 48.846832553024136], [2.413187926970063, 48.846850104309134], [2.412992348752342, 48.84686667146877], [2.412794918359385, 48.84688422210467], [2.412599339888692, 48.84690078862131], [2.41240190787152, 48.84691833860147], [2.412206329147864, 48.84693490447514], [2.4120088982317203, 48.84695245381293], [2.411813319255111, 48.84696901904366], [2.411615886714767, 48.846986567725644], [2.411420308847835, 48.847003132320076], [2.41122287604592, 48.847020680353], [2.411191039202358, 48.84700301505404], [2.411174255040172, 48.84701954890717], [2.411118813520776, 48.8470244769913], [2.410976822083052, 48.84703709743312], [2.410775832684438, 48.847055344903026], [2.410578399457548, 48.847072892770925], [2.410377409781383, 48.84709113957091], [2.410179976284735, 48.84710868678073], [2.409978986320847, 48.847126933810124], [2.409781552564632, 48.847144479462614], [2.409580562323204, 48.84716272582212], [2.409383128297256, 48.84718027081655], [2.409182137778298, 48.84719851650613], [2.408984703482627, 48.84721606084253], [2.408783712686048, 48.84723430586219], [2.408707707604901, 48.84724105942518], [2.408687035356161, 48.847239774605455], [2.408664536854978, 48.847246919391274], [2.408543107348148, 48.847257709462745], [2.408355655599375, 48.847272732658574], [2.408158220744315, 48.84729027562993], [2.408047916297665, 48.84729911557359], [2.408031929812628, 48.847300992569174], [2.408032501313664, 48.84735228913434], [2.408024423632442, 48.84748685901713], [2.40801655879992, 48.84762128154316], [2.408008479673299, 48.84775585138568], [2.408000614759054, 48.84789027387818], [2.407992536912106, 48.84802484369383], [2.40798467192646, 48.848159265253535], [2.4079765926237773, 48.84829383592816], [2.407968727556408, 48.848428257454394], [2.407960649543726, 48.84856282720286], [2.407952784384319, 48.84869724959486], [2.407944706288771, 48.84883181930974], [2.407936841057958, 48.84896624076888], [2.407935807918658, 48.84898340968887], [2.407938496025658, 48.848985137156646], [2.408057477936897, 48.84898732223322], [2.4082893007040322, 48.84899222915152], [2.40848575647437, 48.8489958365825], [2.40870235869236, 48.84899981306476], [2.408898814519878, 48.8490034198175], [2.409115416800799, 48.849007395551936], [2.409311872685486, 48.84901100162642], [2.4095284750295303, 48.84901497661306], [2.409724930971376, 48.849018582009286], [2.409747056106153, 48.849020513251105], [2.409755331777999, 48.84901198505071], [2.40977362628861, 48.84896133834882], [2.409793420062385, 48.84890837870915], [2.4098076000846422, 48.8489015614193], [2.409998462756398, 48.848910364013975], [2.410183736365912, 48.84891897866646], [2.410374599154816, 48.8489277815603], [2.4105598728986, 48.84893639473088], [2.41074514669346, 48.848945008513816], [2.4109360096724233, 48.84895381051189], [2.410937492294375, 48.84895393292855], [2.411156324879336, 48.84898013264392], [2.411381061181591, 48.84900667847363], [2.411388113708031, 48.84900627878304], [2.411557611645155, 48.84896565151263], [2.4117426502150723, 48.848921486815534], [2.411912147600009, 48.8488808590398], [2.412066564552273, 48.848844002548454], [2.412092244394048, 48.84884091715108]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 56, "roussel_fabien": 20.0, "nb_emargement": 965.0, "nb_procuration": 21.0, "nb_vote_blanc": 9.0, "jadot_yannick": 44.0, "le_pen_marine": 79.0, "nb_exprime": 954.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 2, "nb_inscrit": 1367.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 965, "quartier_bv": "80", "geo_point_2d": [48.84781679982843, 2.4116575037833146], "melenchon_jean_luc": 409.0, "poutou_philippe": 5.0, "macron_emmanuel": 252.0}, "geometry": {"type": "Point", "coordinates": [2.4116575037833146, 48.84781679982843]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c3db9ba9d318ed8203496f23f251f130fecbaecb", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 54, "zemmour_eric": 65.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "13-11", "geo_shape": {"coordinates": [[[2.363902290395071, 48.82885133873582], [2.363895606857625, 48.8288548458156], [2.363801745637868, 48.82896713144656], [2.363707977793779, 48.82907731385981], [2.363614114407324, 48.82918959931403], [2.363520347128697, 48.82929978156553], [2.363426482926594, 48.82941206774953], [2.363332714862156, 48.82952224893279], [2.363238849855374, 48.82963453494724], [2.363145080983355, 48.82974471686081], [2.36305121518287, 48.82985700180639], [2.362957445514042, 48.82996718355102], [2.362952907292732, 48.82997035574472], [2.362813000688584, 48.83002940606222], [2.362670158709477, 48.830089747359146], [2.362530251464549, 48.8301487973396], [2.362387410182214, 48.83020913919898], [2.362247502296708, 48.830268188842375], [2.362104660370973, 48.830328529458306], [2.362102826331224, 48.83032945772061], [2.361976223332533, 48.83040349318151], [2.361856547326528, 48.830475498710584], [2.361729943623419, 48.83054953390116], [2.361610266941991, 48.830621539174444], [2.361608693434563, 48.83062266038574], [2.361520467173345, 48.83070386222341], [2.361395480551747, 48.83080983245854], [2.361307253652673, 48.83089103322609], [2.361227030550519, 48.830959050521926], [2.361226093109646, 48.830965181923474], [2.361253845870762, 48.830981459464454], [2.361451752295342, 48.831025389266955], [2.3616451841680632, 48.831068305548186], [2.361843089900918, 48.831112233793164], [2.362036523780232, 48.83115514944539], [2.36223443017253, 48.83119907703945], [2.362427864696134, 48.831241992055425], [2.362621298176112, 48.83128490674971], [2.36281920691596, 48.83132883337827], [2.363012641040216, 48.83137174743631], [2.363210550428508, 48.8314156743132], [2.363403985197243, 48.831458587734986], [2.363601895255946, 48.83150251306161], [2.36361534425858, 48.83150067525954], [2.363720814618954, 48.831434343937445], [2.3638727130804043, 48.83134416443399], [2.363978182796756, 48.831277832875614], [2.364078267342041, 48.83121841393058], [2.364080541767979, 48.831209525852934], [2.36405854694001, 48.83119219135434], [2.36407537269895, 48.83106619085891], [2.36409279556487, 48.83096103104301], [2.364093589594423, 48.830958699599], [2.364158640646703, 48.830842620106814], [2.364224479246959, 48.830727173415525], [2.36428952971889, 48.830611093828175], [2.364355369099071, 48.83049564704822], [2.364420418990658, 48.83037956736571], [2.364486256426407, 48.830264120482596], [2.364551307099832, 48.83014804071214], [2.364617143953337, 48.830032593733144], [2.364682192684159, 48.8299165138603], [2.364748030317594, 48.82980106679266], [2.364813078468195, 48.82968498682464], [2.364878914157237, 48.82956953965384], [2.364943961727526, 48.82945345959067], [2.365009798196502, 48.82933801233127], [2.365010662302613, 48.82933450756978], [2.365007461242886, 48.82922165266402], [2.365000246486705, 48.82909408789001], [2.36499093619217, 48.82908589014443], [2.364810206750776, 48.82904616566186], [2.364637357867828, 48.829008572011524], [2.364456628974856, 48.82896884609259], [2.364283780603229, 48.82893125192862], [2.364110932491756, 48.828893656614284], [2.363930204387325, 48.82885393079513], [2.363902290395071, 48.82885133873582]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 11, "roussel_fabien": 23.0, "nb_emargement": 1123.0, "nb_procuration": 19.0, "nb_vote_blanc": 16.0, "jadot_yannick": 55.0, "le_pen_marine": 97.0, "nb_exprime": 1107.0, "nb_vote_nul": 1.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1512.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1124, "quartier_bv": "50", "geo_point_2d": [48.83029544185357, 2.363413587117874], "melenchon_jean_luc": 450.0, "poutou_philippe": 6.0, "macron_emmanuel": 300.0}, "geometry": {"type": "Point", "coordinates": [2.363413587117874, 48.83029544185357]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ab80bd2a2ac842e35dba81648535350761d2025a", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 172, "zemmour_eric": 202.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "16-33", "geo_shape": {"coordinates": [[[2.266766355811822, 48.84905702843451], [2.266818912722564, 48.849056554580116], [2.26698118940844, 48.8491163692316], [2.267164939580904, 48.84917994412852], [2.267196513021371, 48.849179952247724], [2.267212843993398, 48.849158163511305], [2.267339024984324, 48.849102920183846], [2.267459992052096, 48.84905027904112], [2.267465961519593, 48.84904141186978], [2.267440087078918, 48.84892973568894], [2.267411768285228, 48.848812028664945], [2.267385894061935, 48.8487003533487], [2.26735757552794, 48.848582645388355], [2.267331701534669, 48.848470970037354], [2.26730338187245, 48.848353262930864], [2.267320696080715, 48.8483432268101], [2.267521867590129, 48.84838238488444], [2.267707051809883, 48.84841941219684], [2.2679082239036, 48.848458569618856], [2.268093408668687, 48.84849559633076], [2.268294582709338, 48.848534753108815], [2.268479768019652, 48.848571779220165], [2.268488080551721, 48.8485716924418], [2.268694511569222, 48.84852566395878], [2.268891172401863, 48.848482188974025], [2.26909760270869, 48.84843615979187], [2.269294262867287, 48.84839268414106], [2.269490922697753, 48.84834920816532], [2.269697351935579, 48.84830317884211], [2.269894011091894, 48.848259702200345], [2.270100439631734, 48.84821367127866], [2.270112068197441, 48.84820439690787], [2.270107754019433, 48.84818774490633], [2.2699711274472, 48.848063225076544], [2.269832189654302, 48.847936907523916], [2.269695565773342, 48.84781238646039], [2.269556627954603, 48.847686068550985], [2.269562111286256, 48.84767257015879], [2.269742668901022, 48.84761948284804], [2.269919092209857, 48.84756820654235], [2.270099649111983, 48.84751511778861], [2.270276071716164, 48.84746384095169], [2.270283886125665, 48.84745367270816], [2.27023627929944, 48.84731126259499], [2.270193134107411, 48.84717674102601], [2.270149987788014, 48.84704221851763], [2.27010238169095, 48.84689980919791], [2.270086994232211, 48.846877040474276], [2.270073921230239, 48.84687592464382], [2.26997818113375, 48.84691563303136], [2.269795670419635, 48.84699169481932], [2.269642101720406, 48.84705538774194], [2.269459588676349, 48.847131448100065], [2.269306019154553, 48.847195140583295], [2.269152447894675, 48.84725883285742], [2.268969934773471, 48.847334893362316], [2.268951278538669, 48.847332234157065], [2.268844418207424, 48.8472251050845], [2.268739478275148, 48.847118855530795], [2.268632618829542, 48.847011725349255], [2.268527681121236, 48.84690547559774], [2.268420822535815, 48.84679834610579], [2.268315884326479, 48.84669209613985], [2.268209026626684, 48.846584965538916], [2.268104089278808, 48.84647871536686], [2.267997232451806, 48.846371584556266], [2.26789229732796, 48.846265334186405], [2.267785441361204, 48.846158204065425], [2.267680505736215, 48.846051953481165], [2.267573650654969, 48.84594482225122], [2.267468715891412, 48.845838571460845], [2.26736186167039, 48.8457314409205], [2.267256929130817, 48.84562518993236], [2.26715007579529, 48.84551805828309], [2.267045142754565, 48.845411807080524], [2.266938290279238, 48.84530467612085], [2.266833358099916, 48.84519842471221], [2.266726506510075, 48.84509129264362], [2.266621576554695, 48.84498504103719], [2.266514725825024, 48.84487790965823], [2.26640979536848, 48.84477165783741], [2.266302945524388, 48.84466452534952], [2.266198015929221, 48.84455827332259], [2.266093086761896, 48.84445202119351], [2.265986239573802, 48.84434488929971], [2.265968905756256, 48.84432524144052], [2.265942368962012, 48.84432541407893], [2.265801919930432, 48.844403811853205], [2.265666169428362, 48.84448003844263], [2.265525719564515, 48.84455843588176], [2.265389966905863, 48.844634661239546], [2.265249516209947, 48.84471305834361], [2.26511376409443, 48.84478928428505], [2.264973312566341, 48.84486768105393], [2.264837559656677, 48.84494390577213], [2.2648185187986822, 48.84494975068088], [2.264815039584952, 48.84496784169819], [2.264821267887041, 48.845068806290236], [2.264827447232918, 48.84516368004412], [2.264833627963948, 48.845258553798004], [2.264839854986918, 48.84535951745507], [2.264843277941499, 48.8453651217719], [2.264962769155825, 48.84545397885548], [2.265082444566366, 48.84554304109838], [2.265201936596399, 48.84563189792893], [2.265321612836996, 48.84572095901907], [2.265441105670063, 48.84580981649586], [2.265560782727841, 48.845898877332516], [2.2656802750268312, 48.84598773364859], [2.2657999542644642, 48.84607679424019], [2.265919447366403, 48.84616565120245], [2.266039126058856, 48.846254711532225], [2.266042211402727, 48.84625866069924], [2.266087385510467, 48.846388119460215], [2.266131497234349, 48.846513010076954], [2.2661756105322413, 48.8466379006718], [2.26622078530009, 48.846767359338365], [2.266264897664659, 48.84689224986339], [2.266310072874787, 48.8470217084667], [2.266354187031227, 48.847146598938636], [2.266399362670982, 48.847276058377986], [2.266443475894098, 48.84740094878013], [2.266488651988805, 48.84753040725692], [2.266475360501071, 48.84754141855875], [2.266373567141501, 48.847541356511016], [2.266372307189156, 48.847541317307154], [2.266194764834012, 48.84753081660997], [2.266051734405249, 48.847521964561906], [2.265874190805352, 48.84751146427976], [2.2657311604841572, 48.84750261184831], [2.2657262095106923, 48.84750292052371], [2.265544314357943, 48.84753713026402], [2.265336694306384, 48.847578260682035], [2.265290844327671, 48.84758688375854], [2.265268890106423, 48.84759632899355], [2.26527160310485, 48.8476153807595], [2.265255170956527, 48.84775073531524], [2.265239052953946, 48.84788806229502], [2.265222620635099, 48.84802341681319], [2.265206502462408, 48.84816074375494], [2.265190069960356, 48.84829609913478], [2.265173951617548, 48.848433426038525], [2.265180715203918, 48.84844190543566], [2.2653511425762902, 48.848506950066415], [2.265513415853443, 48.84856676763744], [2.265683842686772, 48.84863181177864], [2.265846116747184, 48.84869162799244], [2.266008391167553, 48.84875144488225], [2.266178820585283, 48.84881648831597], [2.266341095788903, 48.8488763038485], [2.266511524654922, 48.84894134769193], [2.266577981597091, 48.84896584371418], [2.26659660401541, 48.84900812104062], [2.266655003104463, 48.84900511987795], [2.26667271955647, 48.84901165084017], [2.266750823611015, 48.84904043977498], [2.266766355811822, 48.84905702843451]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 33, "roussel_fabien": 14.0, "nb_emargement": 1311.0, "nb_procuration": 100.0, "nb_vote_blanc": 6.0, "jadot_yannick": 75.0, "le_pen_marine": 49.0, "nb_exprime": 1299.0, "nb_vote_nul": 6.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1555.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1311, "quartier_bv": "61", "geo_point_2d": [48.847066125981314, 2.267158262016439], "melenchon_jean_luc": 138.0, "poutou_philippe": 1.0, "macron_emmanuel": 614.0}, "geometry": {"type": "Point", "coordinates": [2.267158262016439, 48.847066125981314]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f21e9cd970426f75c19b74c305bf534bb1feb8f1", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 40, "zemmour_eric": 47.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "18-60", "geo_shape": {"coordinates": [[[2.359819946980962, 48.887758405822275], [2.359828433750029, 48.88776637784824], [2.359833570806074, 48.88790138950249], [2.359835276419796, 48.88803464799633], [2.3598404121564602, 48.88816965961003], [2.359842117807533, 48.88830291717197], [2.35984725357734, 48.88843792965166], [2.359848959254708, 48.888571187180936], [2.359854095079768, 48.88870619872809], [2.359855800772379, 48.888839457123964], [2.359860936641637, 48.88897446863783], [2.359862642360441, 48.88910772700103], [2.359867778273901, 48.889242738481634], [2.359869484030158, 48.889375995912935], [2.359874621340488, 48.88951100826675], [2.359876327123047, 48.88964426566541], [2.359881463124911, 48.88977927707942], [2.359883168922712, 48.88991253534466], [2.359888304968676, 48.89004754672535], [2.359890010792776, 48.890180804957936], [2.35989632354429, 48.890197804433924], [2.359988847519221, 48.89019888086168], [2.360181984796037, 48.890181232263785], [2.360374673335784, 48.890163132195596], [2.360567811712965, 48.89014548298213], [2.360760499975358, 48.89012738319174], [2.360953638100193, 48.89010973245611], [2.361146326096066, 48.89009163204428], [2.361339463946469, 48.890073981585054], [2.361532151687048, 48.89005587965251], [2.361725287910308, 48.89003822856311], [2.361917976737061, 48.890020126915694], [2.362111112707931, 48.89000247430417], [2.362303801268239, 48.88998437203531], [2.362496936975681, 48.88996671880092], [2.362689623905901, 48.889948615903336], [2.362882760702642, 48.889930962952626], [2.363075447377302, 48.889912858534295], [2.363076513383155, 48.889912786862766], [2.363099555942766, 48.88991235994054], [2.363103652473556, 48.88991093741689], [2.363309482518182, 48.88990237779732], [2.36351471781493, 48.889893376692584], [2.363720547733548, 48.88988481546704], [2.363925781526376, 48.88987581365039], [2.364131612660629, 48.889867252624654], [2.364336846324143, 48.88985824920401], [2.364542677321375, 48.889849687471525], [2.364747910844573, 48.88984068334625], [2.364953741704773, 48.88983212090707], [2.365158975076681, 48.88982311697637], [2.365364805810802, 48.88981455293119], [2.365570039042381, 48.88980554829581], [2.365775869639541, 48.88979698354392], [2.365981102730677, 48.889787978203856], [2.36618693317982, 48.88977941364449], [2.366392166141551, 48.889770406700514], [2.366597996453617, 48.88976184143444], [2.366803229264043, 48.88975283468502], [2.367009058086225, 48.88974426780571], [2.36721429212011, 48.88973526035887], [2.367420120805086, 48.889726692772854], [2.367625354698586, 48.8897176846213], [2.367831183235529, 48.88970911722786], [2.36803641699955, 48.88970010747239], [2.368093080223761, 48.889682780685604], [2.36808940413386, 48.88966328195492], [2.368063185953903, 48.88961220235106], [2.367999583510118, 48.8894860711873], [2.367939629508185, 48.88936926452758], [2.367876027660436, 48.88924313327025], [2.367816074215388, 48.88912632652282], [2.367752472963665, 48.889000195171974], [2.367692520086414, 48.88888338743756], [2.367628919419789, 48.88875725689243], [2.36756896709941, 48.888640449070294], [2.367568706819334, 48.88863987122915], [2.367533612936628, 48.88854780826055], [2.367484083716694, 48.888421955168376], [2.367448988755849, 48.88832989304876], [2.367416479284974, 48.88824728657243], [2.367419587654645, 48.88822705021772], [2.367408615579368, 48.888215204811566], [2.367391596259131, 48.88817195813339], [2.367338377408281, 48.8880375760355], [2.367288849145533, 48.88791172280408], [2.3672356308258102, 48.887777340628666], [2.3671861030590162, 48.887651487324945], [2.367132886634086, 48.88751710507922], [2.367083357999358, 48.887391251696], [2.367033830956778, 48.88726539918433], [2.366980615319381, 48.88713101682372], [2.366931087419901, 48.88700516333326], [2.366877872313597, 48.88687078089514], [2.366828346273704, 48.88674492733956], [2.366775130334831, 48.88661054481673], [2.36677354139976, 48.8866080947451], [2.366679574350001, 48.886504402857554], [2.366578616722839, 48.8863964983341], [2.366484650442952, 48.88629280627362], [2.3663836922553543, 48.886184902457096], [2.36628972810907, 48.88608121023088], [2.366188770735608, 48.88597330622925], [2.366094806006591, 48.88586961292359], [2.36599385081089, 48.88576170874407], [2.365899886840875, 48.88565801616478], [2.365829258836091, 48.885582526769426], [2.365805974736978, 48.88556084478996], [2.365750528100324, 48.88558036504527], [2.365564927966204, 48.885627669257836], [2.365381013793849, 48.88567434989228], [2.365195412978125, 48.88572165442725], [2.365011496789933, 48.8857683335836], [2.364825895303567, 48.885815637541754], [2.364641979815838, 48.88586231613374], [2.364458062634762, 48.885908994434025], [2.364272460144317, 48.885956297528246], [2.36408854365263, 48.88600297616346], [2.363902940502638, 48.886050277781585], [2.3637190233477963, 48.88609695584517], [2.363533418152554, 48.886144257778454], [2.363349500345549, 48.886190934371214], [2.36316389584332, 48.88623823573493], [2.362979977373174, 48.88628491175606], [2.362794370836685, 48.88633221253567], [2.362610451703402, 48.88637888798524], [2.362424845859941, 48.88642618819521], [2.362240926063525, 48.8864728630732], [2.362055319549353, 48.88652016270631], [2.361871397726263, 48.886566837005404], [2.361685790541485, 48.88661413606171], [2.36150186940789, 48.88666081069571], [2.3613162615635392, 48.88670810827586], [2.361300438199658, 48.88670511814855], [2.361172753825891, 48.8865929151693], [2.361059627623704, 48.88649027042258], [2.3610463139708, 48.88648669200423], [2.360934984320877, 48.88649915965825], [2.360836469985743, 48.88651935877727], [2.360824601563768, 48.88651813888743], [2.360650863134011, 48.886437949191446], [2.360479299204123, 48.88636062890776], [2.360305560467987, 48.88628043869195], [2.360133998944446, 48.8862031170104], [2.359960261265576, 48.88612292628213], [2.3597887007626372, 48.88604560499396], [2.359780165337812, 48.8860440538822], [2.359656322894972, 48.88604909964868], [2.359552717154779, 48.88605585703361], [2.359488672613955, 48.88606458954776], [2.359486540213319, 48.88607896736441], [2.359496446651157, 48.886126931976406], [2.3595244118121412, 48.88626432777156], [2.359551152903959, 48.88639381911188], [2.3595791183527153, 48.88653121486088], [2.359605861070219, 48.88666070706407], [2.359633826817611, 48.8867981018677], [2.359660569808224, 48.88692759402721], [2.359688535832343, 48.88706498968393], [2.359715277743465, 48.887194480893186], [2.359743245418833, 48.88733187651104], [2.359769987592109, 48.8874613685759], [2.359796731273017, 48.88759085972757], [2.359824698012522, 48.887728255269515], [2.359824814266887, 48.887729226262884], [2.359819946980962, 48.887758405822275]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 60, "roussel_fabien": 24.0, "nb_emargement": 1309.0, "nb_procuration": 86.0, "nb_vote_blanc": 16.0, "jadot_yannick": 134.0, "le_pen_marine": 60.0, "nb_exprime": 1287.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1691.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1310, "quartier_bv": "72", "geo_point_2d": [48.888077255778306, 2.3635823297519263], "melenchon_jean_luc": 631.0, "poutou_philippe": 14.0, "macron_emmanuel": 271.0}, "geometry": {"type": "Point", "coordinates": [2.3635823297519263, 48.888077255778306]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e1dae345070f6ad277a80f33e7671332f200582a", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 192, "zemmour_eric": 187.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "16-24", "geo_shape": {"coordinates": [[[2.259705798921595, 48.84834777055074], [2.259682634497933, 48.84835089281775], [2.259484456170797, 48.8483884353808], [2.259291509304189, 48.848425195177974], [2.259098563527913, 48.84846195467123], [2.258900384370554, 48.84849949536382], [2.258707438043298, 48.848536254223816], [2.258509258321535, 48.848573794266045], [2.258316310080767, 48.848610552484445], [2.258118131157345, 48.84864809188473], [2.257925182365611, 48.84868484946989], [2.257727001502451, 48.84872238911064], [2.257534053522292, 48.848759146071046], [2.257335872107758, 48.848796684162146], [2.2571429235766463, 48.848833440489365], [2.256944741597737, 48.84887097793009], [2.256751792515782, 48.84890773362407], [2.256553609959775, 48.8489452713137], [2.2563606589642298, 48.84898202636603], [2.256162477219439, 48.84901956251443], [2.255969525672961, 48.84905631693352], [2.255771342001268, 48.8490938524231], [2.255781347295044, 48.84911150627657], [2.258339376453303, 48.85073816684975], [2.260097129672542, 48.85345291939474], [2.260126495400239, 48.8534624129842], [2.260307676573693, 48.853416659279155], [2.260492333101078, 48.853370686649136], [2.260673513634368, 48.853324932386386], [2.260858169501179, 48.85327896008732], [2.261039349394303, 48.85323320526686], [2.2612240046260492, 48.85318723150012], [2.261405183879, 48.853141476121934], [2.261589838462919, 48.853095501786875], [2.26177101843845, 48.85304974585939], [2.261955670999042, 48.85300377184685], [2.262136850347126, 48.85295801446236], [2.262321503622641, 48.8529120398899], [2.262502680955051, 48.85286628283859], [2.2626873335954603, 48.85282030679847], [2.262689235932276, 48.85281993539225], [2.262856923552493, 48.85279688723959], [2.263014465333198, 48.852774175677595], [2.263182152662203, 48.852751127068224], [2.26333969553837, 48.852728414186195], [2.263497238264385, 48.85270570199556], [2.263664925159599, 48.85268265270819], [2.263671834370455, 48.852680173412864], [2.263814420439722, 48.85258505636263], [2.263958935380649, 48.85249131713593], [2.264101520409087, 48.85239619972741], [2.26424603294705, 48.85230246012971], [2.264273805347118, 48.85229305448228], [2.26426770139065, 48.852269491400406], [2.26424083543555, 48.85223246129009], [2.264130631718302, 48.852085279946614], [2.264036260187579, 48.851955201931595], [2.26401426659787, 48.851942683308266], [2.263999562157467, 48.85194342566874], [2.263911078943274, 48.85199778210974], [2.263747815631553, 48.85210125487938], [2.263614415613457, 48.852183204177805], [2.263451152494445, 48.85228667653372], [2.26331775017228, 48.85236862547938], [2.263313730752778, 48.85237039046533], [2.2631644130453, 48.85241309645173], [2.262962825251221, 48.85247340729642], [2.262813508323607, 48.852516112849415], [2.262611919712242, 48.852576423996624], [2.262462600851938, 48.852619128200054], [2.262443603881869, 48.85261164171689], [2.2624250639527093, 48.85246826963047], [2.262409310898046, 48.852333770735164], [2.262390771162103, 48.85219039860757], [2.262375016904496, 48.85205590056504], [2.262360179555094, 48.85192922542766], [2.2623416414609823, 48.851785853248714], [2.262340724652138, 48.85177802942476], [2.262342713119004, 48.85177253397856], [2.262457295406531, 48.851650307163204], [2.262572680210771, 48.85152757343592], [2.262574459568389, 48.85152105861573], [2.262538018188653, 48.851401541434875], [2.2625028718420648, 48.85128441732595], [2.262467725666196, 48.85116729229508], [2.262431283403218, 48.85104777593462], [2.262396137547857, 48.85093065085779], [2.262359696977355, 48.850811134458525], [2.262324551442393, 48.850694009335754], [2.262288109838864, 48.85057449288084], [2.262252964624502, 48.85045736771214], [2.262216524713225, 48.85033785121843], [2.262214609055521, 48.85033474199187], [2.262108149051739, 48.850225863945006], [2.26200246564564, 48.850117992473365], [2.261896781301761, 48.85001012178872], [2.261790323987872, 48.84990124343576], [2.2616846405354423, 48.849793371643514], [2.261578184107575, 48.84968449308054], [2.261472502883664, 48.84957662198761], [2.261366045979245, 48.849467743206276], [2.261260365646763, 48.84935987100569], [2.261153909628352, 48.84925099201441], [2.261048230161795, 48.84914312050471], [2.260941776392032, 48.84903424131193], [2.260939602867418, 48.8490291446666], [2.260943296849061, 48.84892943583906], [2.260950636250917, 48.84882558815176], [2.260954328834377, 48.84872587929723], [2.260961668172827, 48.848622032489565], [2.260952184292444, 48.848613042295185], [2.260746421285379, 48.84856986688809], [2.26054325376378, 48.84852800045459], [2.260337490068658, 48.848484824332544], [2.260134323207033, 48.84844295720146], [2.259928561561907, 48.84839977948195], [2.259725393997836, 48.848357911644825], [2.259705798921595, 48.84834777055074]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 24, "roussel_fabien": 3.0, "nb_emargement": 1141.0, "nb_procuration": 63.0, "nb_vote_blanc": 5.0, "jadot_yannick": 47.0, "le_pen_marine": 90.0, "nb_exprime": 1141.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1505.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "61", "geo_point_2d": [48.85070435886961, 2.260053745493981], "melenchon_jean_luc": 85.0, "poutou_philippe": 2.0, "macron_emmanuel": 506.0}, "geometry": {"type": "Point", "coordinates": [2.260053745493981, 48.85070435886961]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6eba0e03bde6dca923c0f0a803db1f7db9365c39", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 38, "zemmour_eric": 61.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "10-39", "geo_shape": {"coordinates": [[[2.354054930285193, 48.872254593994036], [2.354073069510852, 48.87226405039306], [2.354087731974589, 48.87228814904052], [2.35416749155799, 48.87241712451107], [2.354236747956877, 48.87253095235654], [2.354306006021738, 48.87264478015758], [2.35438576532842, 48.87277375543367], [2.35440909166174, 48.872780628075915], [2.35443024942174, 48.87275830910303], [2.35460329877159, 48.87268996267587], [2.354772641470526, 48.8726239765641], [2.354945689913786, 48.872555630532936], [2.355115030378966, 48.87248964392144], [2.355288079300988, 48.87242129649504], [2.355457418895691, 48.872355309391125], [2.355626759424619, 48.87228932205109], [2.355799805635366, 48.87222097476447], [2.355867051103591, 48.872204098134695], [2.355862377195785, 48.87218990750776], [2.355815270385625, 48.872107510250025], [2.355742659028104, 48.87198141894215], [2.355673666201488, 48.87186073588823], [2.355601054167491, 48.87173464445893], [2.355532061995914, 48.87161396129642], [2.3554594506486, 48.87148786975308], [2.355390459131953, 48.87136718648197], [2.355317849834659, 48.871241094831916], [2.3552488589840612, 48.87112041055295], [2.355176248999252, 48.87099431968074], [2.355107258803467, 48.870873635293236], [2.355034649505413, 48.87074754430698], [2.354965659964531, 48.87062685981088], [2.354893052716448, 48.87050076871795], [2.35482406383046, 48.8703800841133], [2.354751455905883, 48.870253992898924], [2.354682467674884, 48.87013330818572], [2.354609860437032, 48.87000721685731], [2.354540872860809, 48.86988653203552], [2.354468266309675, 48.869760440593076], [2.3543992793883213, 48.86963975566274], [2.354326674887095, 48.8695136641136], [2.3542576886205993, 48.86939297907476], [2.354195810076205, 48.86933920190737], [2.354163473403087, 48.86934382361321], [2.353978388079322, 48.869385294350074], [2.353794945066266, 48.869425126974754], [2.353609859171392, 48.86946659623941], [2.353426414227126, 48.86950642828901], [2.353241329102032, 48.86954789788741], [2.353057883600721, 48.86958772846997], [2.352872796530273, 48.86962919748811], [2.352689351812893, 48.86966902840956], [2.35264955594884, 48.869648340596044], [2.352646525492274, 48.86967608594862], [2.352599380343051, 48.869686321764846], [2.352463080447935, 48.86971591562233], [2.352270392537153, 48.86975790377716], [2.3520869469059003, 48.86979773377073], [2.351894259763683, 48.86983972042505], [2.35171081219349, 48.86987954983186], [2.351518124434261, 48.8699215367768], [2.351334676299538, 48.86996136470494], [2.351141987934493, 48.87000335104126], [2.350958540576063, 48.87004317929663], [2.350765850253198, 48.87008516411771], [2.350582402319057, 48.87012499179364], [2.350389711379074, 48.87016697690536], [2.350206262869221, 48.87020680400189], [2.350013571334757, 48.87024878760569], [2.349830122249204, 48.87028861412277], [2.349637430097722, 48.87033059801726], [2.3494539804477013, 48.87037042305563], [2.34926128769043, 48.87041240634147], [2.349077837453487, 48.870452231699716], [2.3488851441016703, 48.870494213477635], [2.348701693289041, 48.87053403825645], [2.348509000683434, 48.870576020332415], [2.348325547931895, 48.870615844524366], [2.348132854731769, 48.87065782509245], [2.347949401404555, 48.870697648704954], [2.34790656477507, 48.87069854851033], [2.347880171149339, 48.87071053681509], [2.347865697833232, 48.87071711127966], [2.347873597791883, 48.87078476400989], [2.347873961753634, 48.870832136031225], [2.347873974606949, 48.87089045650115], [2.347879690874669, 48.8709037475127], [2.347898895315569, 48.87091532681784], [2.347899396559387, 48.87098048402784], [2.347899253639049, 48.87110907445713], [2.347900118862182, 48.871221604559516], [2.347899977294853, 48.87135019586744], [2.347900842534812, 48.87146272504597], [2.34790658774028, 48.87148383776209], [2.347963565397183, 48.871478362702916], [2.34811446206567, 48.87141244191515], [2.348295281691823, 48.87133399957262], [2.348446177522406, 48.87126807835813], [2.348626996147886, 48.87118963550427], [2.348777891140466, 48.87112371386295], [2.348958708754034, 48.871045271397044], [2.349109602908615, 48.870979349328955], [2.349290418169518, 48.87090090544506], [2.349441312849236, 48.87083498295761], [2.349622127109576, 48.870756538562354], [2.349773019576835, 48.87069061654], [2.349787741874643, 48.870690505855485], [2.349943968943173, 48.87075498360996], [2.350099937090937, 48.87081981139075], [2.350256164944937, 48.87088428783099], [2.350412133868304, 48.870949115197384], [2.350568362496551, 48.871013591222564], [2.350724332195626, 48.87107841817458], [2.350731201063578, 48.871079799046754], [2.35091372497872, 48.87108331251623], [2.351095028031493, 48.871086883841066], [2.351276332461166, 48.87109045579796], [2.351458855087274, 48.87109396842876], [2.351640159577645, 48.871097538935295], [2.351822682253104, 48.87110105101128], [2.352003986781977, 48.87110462186598], [2.352186509506679, 48.87110813338718], [2.352191061423261, 48.87110770925229], [2.352410959595342, 48.87106130611781], [2.352637703040053, 48.87101365624413], [2.352857600417299, 48.870967252285205], [2.353084344396089, 48.87091960246799], [2.353101414164047, 48.87092532548711], [2.353107827787345, 48.87093800845936], [2.353115329613286, 48.87095011993621], [2.353130889016931, 48.87095550023404], [2.353194199628636, 48.87094627698959], [2.353257527350804, 48.87093743062739], [2.353273004112855, 48.870942879709375], [2.353342256596958, 48.8710567082243], [2.353419159512032, 48.87118432800957], [2.353488413988615, 48.871298157321704], [2.353565317618246, 48.8714257769852], [2.353634572746401, 48.87153960528861], [2.353711477079441, 48.87166722572956], [2.353780732848016, 48.87178105392354], [2.353857637906791, 48.87190867334341], [2.353926894304639, 48.87202250232722], [2.354003800078001, 48.872150121625275], [2.354058393314032, 48.87223985094321], [2.354054930285193, 48.872254593994036]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 39, "roussel_fabien": 23.0, "nb_emargement": 1330.0, "nb_procuration": 98.0, "nb_vote_blanc": 11.0, "jadot_yannick": 134.0, "le_pen_marine": 51.0, "nb_exprime": 1314.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1662.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1330, "quartier_bv": "38", "geo_point_2d": [48.87081587553064, 2.352734891225214], "melenchon_jean_luc": 519.0, "poutou_philippe": 7.0, "macron_emmanuel": 415.0}, "geometry": {"type": "Point", "coordinates": [2.352734891225214, 48.87081587553064]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "559746749dab6b3434f02e7fd0e35581572ab2b9", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 32, "zemmour_eric": 52.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "15-76", "geo_shape": {"coordinates": [[[2.279021578393965, 48.83247862046566], [2.279008609616578, 48.83246647443605], [2.278887140909827, 48.83236727554564], [2.278756385077129, 48.83226084437877], [2.278634915954822, 48.83216164610507], [2.278504162515159, 48.832055214651184], [2.278382694351941, 48.83195601610309], [2.278251941942881, 48.83184958435392], [2.278130474738747, 48.83175038553152], [2.277999723360384, 48.83164395348705], [2.277878257127779, 48.831544753490945], [2.277747506767746, 48.831438322050595], [2.277626041494209, 48.83133912178016], [2.277495292164747, 48.83123269004449], [2.27737382785027, 48.83113348949971], [2.277243078189288, 48.83102705746057], [2.277121616196044, 48.83092785664968], [2.2769908675658233, 48.83082142431532], [2.276869406531615, 48.830722223230104], [2.276738658944418, 48.83061578970118], [2.276617198856761, 48.83051658924091], [2.276488013525762, 48.830411425791866], [2.2763665530415063, 48.83031222415146], [2.276237368722546, 48.83020706041251], [2.276093434752561, 48.830098345530494], [2.275964251514539, 48.82999318147648], [2.2758203173424523, 48.82988446623685], [2.2757222429512662, 48.829804626142355], [2.275578309804439, 48.82969591059315], [2.2754802361511, 48.82961606938751], [2.275464623400181, 48.829606670712316], [2.275345078124608, 48.82953469929677], [2.275201146509437, 48.82942598326751], [2.275095812334124, 48.82936256807873], [2.274943338491966, 48.829270747871966], [2.274838004931291, 48.82920733334669], [2.274685530635182, 48.82911551279027], [2.274550138730195, 48.829034000027555], [2.2743976654480402, 48.82894217908994], [2.274262274443394, 48.82886066598877], [2.274126883874545, 48.82877915182913], [2.273974412083196, 48.82868733033104], [2.273839022402161, 48.82860581673222], [2.273686552986765, 48.82851399486125], [2.273551164205954, 48.828432480923944], [2.273398694442372, 48.82834065866351], [2.273298891057741, 48.828280568043795], [2.273146422182859, 48.82818874544932], [2.2730862454344383, 48.82815251414359], [2.2730839368183178, 48.82815112405691], [2.273060772290322, 48.828137177741745], [2.272980963688642, 48.828089125188484], [2.272828495933595, 48.82799730217301], [2.272735434581069, 48.82794127049038], [2.272734428168236, 48.82794125267818], [2.27256319989116, 48.82793816428689], [2.272361283492797, 48.827935219010826], [2.2721900552703023, 48.82793212918596], [2.271988140265939, 48.827929184187525], [2.271796013130787, 48.82792571654702], [2.271594098186088, 48.82792276998396], [2.271401972450319, 48.82791930261805], [2.271200056190634, 48.82791635538141], [2.27100793051729, 48.82791288648314], [2.270806015654255, 48.827909939488855], [2.270613888668676, 48.82790646994923], [2.270411973865356, 48.827903521390354], [2.270219846929655, 48.82790005121771], [2.270017932160891, 48.82789710289284], [2.269825806637177, 48.82789363209546], [2.269623890566162, 48.82789068219769], [2.269431765079641, 48.827887211666614], [2.269229850417791, 48.827884261111855], [2.269037723631778, 48.827880789040115], [2.268835809004595, 48.82787783871942], [2.2686436822684968, 48.827874366014605], [2.26844176770101, 48.82787141412932], [2.268249642364213, 48.82786794169913], [2.268047726481925, 48.82786498914021], [2.267855601207784, 48.82786151517771], [2.267847029827013, 48.82786668901623], [2.267756683679144, 48.827918968313405], [2.267668116020368, 48.827972436622986], [2.267665399630975, 48.8279740973376], [2.267653307088522, 48.82811143006097], [2.267641342412057, 48.82824634690908], [2.267629249742982, 48.828383679596655], [2.267617284941881, 48.82851859640966], [2.26760519213365, 48.82865592996076], [2.26759322722034, 48.828790845839265], [2.267581134285583, 48.82892817935464], [2.267569169247635, 48.82906309519795], [2.267557440845714, 48.829196289258206], [2.267545475672177, 48.82933120596621], [2.267533747162042, 48.829464399093], [2.267521781865754, 48.82959931576636], [2.267510053222131, 48.82973250975824], [2.267498087815523, 48.82986742549769], [2.267486359051044, 48.8300006194554], [2.267474393509045, 48.830135536059494], [2.267462664623709, 48.830268729983], [2.267450698971389, 48.83040364565318], [2.267438969965194, 48.83053683954249], [2.267427004177476, 48.830671756077344], [2.267415275063058, 48.830804949033144], [2.267403309152378, 48.8309398655333], [2.267391579904459, 48.831073059354296], [2.267379613883655, 48.83120797492049], [2.267367884514872, 48.83134116870726], [2.267355918358462, 48.831476085138135], [2.267354650726137, 48.83149048094152], [2.267354346065984, 48.831493935392004], [2.267361723929405, 48.83150878617798], [2.267364479527671, 48.83151433334456], [2.267364601396948, 48.8315145796218], [2.267386372013167, 48.83152970923882], [2.267531199153402, 48.831613511009344], [2.267642381435043, 48.83169077404936], [2.267787208072185, 48.83177457548947], [2.267953304138826, 48.831868409998634], [2.268098131756661, 48.831952211948284], [2.268264230311148, 48.83204604601913], [2.268409058922318, 48.832129847578976], [2.268575158602459, 48.83222368120316], [2.268575403278676, 48.83222381670695], [2.26872023289657, 48.8323076169774], [2.268848595022147, 48.832378329363586], [2.268993425508376, 48.83246212929166], [2.269121788384993, 48.832532841374906], [2.2691637857078533, 48.83255597550623], [2.269308618544026, 48.83263977594701], [2.269429325226309, 48.83270626959144], [2.269495314689725, 48.832742620818635], [2.269640147227778, 48.83282641993638], [2.269679476370135, 48.83284808508819], [2.269838252029268, 48.83290442113039], [2.270038691832038, 48.832975461558696], [2.27007400092339, 48.83298798864021], [2.270077505377673, 48.83300205651861], [2.270077329226621, 48.83300218315532], [2.2700769081339702, 48.83300248457536], [2.270073110039057, 48.833005203600884], [2.2700334255483128, 48.833033604807845], [2.269893749808476, 48.83313216414409], [2.269841459787607, 48.833169588245624], [2.269740972150702, 48.83324150600757], [2.269601295288274, 48.833340065883256], [2.269500808353755, 48.83341198344083], [2.269361129218216, 48.833510543012785], [2.269208958965727, 48.83361944808795], [2.269069280097347, 48.83371800640987], [2.268917108629525, 48.833826911093574], [2.268777428653447, 48.83392546905635], [2.268625255970278, 48.834034373348565], [2.268485574873875, 48.83413293185157], [2.268372366227129, 48.83421394877074], [2.2682326841714, 48.83431250696259], [2.268119476103891, 48.834393523637736], [2.2679797930888332, 48.834492081518455], [2.267866582876017, 48.834573097932875], [2.2678656993524022, 48.83457324541889], [2.267856544629262, 48.83457476958745], [2.267835557264834, 48.8345969870471], [2.267843472339709, 48.834603215119365], [2.268041367799458, 48.834606478709965], [2.2682378832218753, 48.834609740724986], [2.268435778731188, 48.83461300366303], [2.268632294202882, 48.83461626503], [2.268830189774162, 48.83461952641617], [2.269026703932843, 48.8346227871268], [2.269224600903325, 48.83462604876802], [2.269421115111262, 48.83462930883066], [2.269619010768901, 48.83463256981101], [2.269815526388259, 48.83463582923394], [2.2700134221079162, 48.83463908866243], [2.270209937776609, 48.834642347437324], [2.270407833532981, 48.83464560711253], [2.270604349250901, 48.83464886523948], [2.270802245056778, 48.834652124262114], [2.270998760823915, 48.83465538174098], [2.271196656691659, 48.83465863921179], [2.271393172508, 48.83466189604264], [2.271591068412652, 48.834665153760156], [2.271787584278191, 48.834668409942985], [2.271985480232116, 48.83467166700793], [2.272181994797122, 48.83467492163519], [2.272379892162787, 48.83467817805585], [2.27257640676441, 48.8346814329344], [2.272774304179328, 48.83468468870249], [2.27297081883012, 48.834687942932995], [2.273168714932207, 48.83469119804025], [2.273365231006971, 48.83469445073174], [2.273563127158288, 48.83469770518641], [2.273759643269661, 48.8347009581292], [2.273957539470404, 48.8347042119313], [2.274154055630916, 48.83470746422605], [2.274351951880873, 48.83471071737557], [2.2745484681030312, 48.834713968123005], [2.274746364402391, 48.83471722061997], [2.274942880661148, 48.83472047161871], [2.275140777009702, 48.83472372346311], [2.275337293317569, 48.8347269738138], [2.275535189715511, 48.83473022500562], [2.275731704722693, 48.83473347380076], [2.275929602532085, 48.834736724348254], [2.276126117575858, 48.83473997339469], [2.276324014072338, 48.83474322328138], [2.276520530527471, 48.834746471688014], [2.276539551628328, 48.83474845834189], [2.276550086037662, 48.83473840587504], [2.276659587395372, 48.83463860151109], [2.276771156663577, 48.83453691275961], [2.276880657174861, 48.834437108175344], [2.276992225580557, 48.83433541919934], [2.27710172524532, 48.83423561439469], [2.277213291413781, 48.83413392608526], [2.277215152742426, 48.83412574581022], [2.277170260456839, 48.83403889421652], [2.277125007374239, 48.833949777585616], [2.277080115390284, 48.83386292594445], [2.277034862627025, 48.83377380836614], [2.277040759632809, 48.83376324215442], [2.277216108749835, 48.83369365945399], [2.277387198628154, 48.83362595024687], [2.277562545458673, 48.83355636702183], [2.277733635811014, 48.83348865641976], [2.277908981704819, 48.83341907357762], [2.278080071156563, 48.83335136247173], [2.278084153111773, 48.833348874249715], [2.278202565754577, 48.83323937741813], [2.278318086588576, 48.83313217621147], [2.27843649824777, 48.833022679127104], [2.278552018120488, 48.832915477673744], [2.278667537505538, 48.83280827699786], [2.278785946332858, 48.83269877952764], [2.278901466131315, 48.83259157771398], [2.279019873974957, 48.83248207999099], [2.279021578393965, 48.83247862046566]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 76, "roussel_fabien": 16.0, "nb_emargement": 843.0, "nb_procuration": 20.0, "nb_vote_blanc": 10.0, "jadot_yannick": 27.0, "le_pen_marine": 88.0, "nb_exprime": 824.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 6, "nb_inscrit": 1214.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 843, "quartier_bv": "60", "geo_point_2d": [48.831479450215035, 2.272507313527235], "melenchon_jean_luc": 363.0, "poutou_philippe": 6.0, "macron_emmanuel": 202.0}, "geometry": {"type": "Point", "coordinates": [2.272507313527235, 48.831479450215035]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8c3cdc768d37ca2990aa051542d3506f16d2e826", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 55, "zemmour_eric": 71.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "12-37", "geo_shape": {"coordinates": [[[2.408954394868334, 48.84443759277247], [2.408991079949434, 48.84443654189142], [2.408991347311143, 48.84443651623157], [2.409184349047364, 48.84441696152611], [2.409374528641262, 48.84439849248917], [2.409567531455447, 48.84437893717161], [2.409757710774799, 48.84436046752491], [2.409947889959458, 48.84434199757556], [2.410140892349289, 48.844322441332054], [2.410331071269463, 48.844303969873614], [2.410524072012135, 48.84428441300457], [2.410714252010111, 48.84426594184241], [2.410907252468168, 48.84424638435448], [2.411097432191568, 48.844227912582596], [2.411290432365, 48.84420835447587], [2.411480610451372, 48.8441898820875], [2.411673611702718, 48.844170323368644], [2.411691555709425, 48.84416441290814], [2.411697401657678, 48.84414759851856], [2.411672864896845, 48.84402331366726], [2.411646015697802, 48.84388613504653], [2.4116214791826023, 48.84376185015556], [2.411594628890975, 48.84362467148446], [2.41157009262151, 48.84350038655383], [2.411543242599834, 48.84336320783905], [2.411518706575898, 48.843238922868736], [2.411491856824171, 48.84310174411029], [2.411467321045964, 48.84297745910031], [2.411440472926693, 48.84284028030487], [2.411415937394002, 48.842715995255226], [2.411389088182157, 48.842578816409414], [2.411364552895086, 48.84245453132011], [2.411337703953279, 48.8423173524306], [2.411313168901665, 48.84219306820095], [2.411295920512006, 48.84218558160798], [2.411055743023272, 48.842230806269754], [2.410819050663576, 48.842272522132824], [2.410802265672122, 48.84226587145565], [2.410751156087792, 48.84212092477353], [2.410714191035018, 48.841997936295456], [2.410714165424608, 48.84199393492669], [2.410766818297777, 48.841838568510376], [2.410816917522353, 48.84167765302581], [2.410816785601986, 48.84167365383045], [2.410769931854344, 48.84154364119378], [2.4107188393829633, 48.84140930241467], [2.410715661022178, 48.84140540962463], [2.410590973635343, 48.84131576157102], [2.410470169463429, 48.84123012386769], [2.410349364336301, 48.841144485129874], [2.410224678203703, 48.84105483667353], [2.410218268219353, 48.84105224999318], [2.410040582530887, 48.84101985850165], [2.409875056561704, 48.84098971666856], [2.409709532146432, 48.840959574612334], [2.409531845727614, 48.84092718235576], [2.40936632170942, 48.840897039822984], [2.409188637089642, 48.84086464616218], [2.409171468868057, 48.84086746090183], [2.409163136205974, 48.84087294900414], [2.409204724568028, 48.84099636025607], [2.409247769015271, 48.84111670286331], [2.409289357782305, 48.84124011315957], [2.409332402626266, 48.84136045571013], [2.409373991778105, 48.84148386684932], [2.409417035656311, 48.841604209336396], [2.409458625213237, 48.841727619519936], [2.409501670850649, 48.84184796195701], [2.409543260802481, 48.84197137208419], [2.409586306836626, 48.842091714464495], [2.409627897173182, 48.84221512543457], [2.409670942241571, 48.842335467751454], [2.409712532983125, 48.8424588777659], [2.409755579810754, 48.84257922003271], [2.409797170937146, 48.84270263089008], [2.409840218161527, 48.842822973100176], [2.409838413264804, 48.842829908132735], [2.40973679628506, 48.842934072169015], [2.409620095463299, 48.84305529892001], [2.409518477607778, 48.843159462749796], [2.409401775763239, 48.84328069016265], [2.409300157031928, 48.84338485378597], [2.409183454174988, 48.843506080961355], [2.409081834567878, 48.84361024437819], [2.408965129345987, 48.84373147041003], [2.408863510225706, 48.843835633627116], [2.408846696547788, 48.84384614496295], [2.408823840482686, 48.84385323046746], [2.408824739426782, 48.843879809991925], [2.40885494501141, 48.84401246232045], [2.408884556642055, 48.84414247297905], [2.408914167057888, 48.8442724836084], [2.408944374470466, 48.844405134975084], [2.408954394868334, 48.84443759277247]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 37, "roussel_fabien": 19.0, "nb_emargement": 1040.0, "nb_procuration": 43.0, "nb_vote_blanc": 11.0, "jadot_yannick": 64.0, "le_pen_marine": 93.0, "nb_exprime": 1020.0, "nb_vote_nul": 9.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1365.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1040, "quartier_bv": "45", "geo_point_2d": [48.84293354362654, 2.4102826337476113], "melenchon_jean_luc": 393.0, "poutou_philippe": 10.0, "macron_emmanuel": 274.0}, "geometry": {"type": "Point", "coordinates": [2.4102826337476113, 48.84293354362654]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8e07901414e30040c25cb446e7448e66f78f0f9e", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 40, "zemmour_eric": 84.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "20-42", "geo_shape": {"coordinates": [[[2.405177604119349, 48.858459794436065], [2.405156415493012, 48.8584485597194], [2.405099980086971, 48.85841216687801], [2.404962291440356, 48.858323368079205], [2.4048299082801012, 48.85823799862191], [2.40469222055403, 48.85814919949848], [2.404559838278808, 48.858063829729], [2.40442215012065, 48.8579750293748], [2.404289768730458, 48.85788965929318], [2.404289542743736, 48.85788951697095], [2.404187907335504, 48.85782691206635], [2.404070401859241, 48.85775513745402], [2.403968766986632, 48.85769253145642], [2.403901847531082, 48.8576516556204], [2.403901487748579, 48.85764819764271], [2.40387937394823, 48.85763758762201], [2.403828788559437, 48.857606688611966], [2.403781133472993, 48.85757567917036], [2.4037628459751432, 48.857565506387054], [2.403741970487836, 48.857577702723574], [2.403633655030945, 48.85766979017971], [2.403525355378416, 48.85776213032699], [2.40341703778198, 48.857854218464276], [2.403308737362204, 48.857946558400165], [2.403200420372714, 48.85803864543355], [2.40309211918569, 48.85813098515805], [2.403083717641356, 48.858134336479914], [2.4028867780699192, 48.85815735477563], [2.402688567148082, 48.85818068836738], [2.402491625863965, 48.858203706005035], [2.402293414588735, 48.85822703894129], [2.402096474317768, 48.85825005593452], [2.401898262689258, 48.858273388215274], [2.401890056320279, 48.85827658843953], [2.4017650838328253, 48.85837860422491], [2.401640136630959, 48.85847944365575], [2.401515163167603, 48.85858145916153], [2.401390214995572, 48.85868229831298], [2.401350173137755, 48.8587161283227], [2.401360178153013, 48.85872377424169], [2.401415292942481, 48.858754978417515], [2.401567739183844, 48.85883748952446], [2.401725069099837, 48.858926562182184], [2.401877516333915, 48.8590090728818], [2.402034847287295, 48.85909814601778], [2.4021078494770602, 48.859137657450745], [2.402128606701743, 48.85915343403579], [2.402150319300591, 48.85915662816281], [2.402229765391184, 48.859199627892416], [2.402394852038901, 48.8592865232902], [2.402547301386801, 48.85936903310978], [2.402712389090665, 48.85945592895551], [2.402864839437106, 48.85953843835802], [2.403029928217542, 48.85962533285311], [2.403182379562529, 48.8597078418385], [2.403347469399133, 48.8597947367816], [2.403499921742672, 48.85987724534987], [2.403665012655848, 48.85996413894231], [2.4038174659876512, 48.860046647992704], [2.403821863216004, 48.86006545539098], [2.40384126434348, 48.860058548852855], [2.403868491448713, 48.860070502762], [2.404016651302751, 48.86013554918853], [2.404179268459055, 48.86020732254979], [2.40418298224186, 48.8602097449854], [2.404293860382765, 48.860317093118034], [2.404398957887647, 48.860421504788185], [2.404509838297459, 48.860528851807686], [2.404614936662434, 48.86063326326825], [2.404725817957638, 48.86074061096644], [2.404830917182513, 48.86084502221736], [2.404941798020789, 48.86095236878884], [2.405046898105671, 48.861056779830164], [2.405157781192245, 48.86116412708711], [2.405262882137248, 48.86126853791882], [2.405367983503408, 48.86137294864838], [2.405478866571717, 48.861480294671146], [2.405509407126763, 48.86151063371558], [2.40551396045979, 48.861511883037586], [2.405566750039701, 48.86147963493142], [2.405608789784042, 48.861376964357504], [2.405650328237126, 48.861277836479], [2.40569236765393, 48.86117516585704], [2.40573390441396, 48.86107603882401], [2.40574517061102, 48.86106952776787], [2.405873460246608, 48.86105779428176], [2.405999945517609, 48.861046029218784], [2.406011148107088, 48.86103959426601], [2.406071521411472, 48.86090016661619], [2.4061331808436313, 48.86075920652651], [2.40619355350688, 48.860619777880565], [2.406255212277044, 48.86047881769239], [2.406271302111719, 48.86047253826456], [2.406498127702014, 48.86050623761256], [2.406723115806897, 48.860539973285206], [2.406737714688812, 48.86053594735234], [2.406848768151894, 48.86041794642692], [2.406964524624454, 48.86028320493575], [2.406966038580084, 48.86028096138197], [2.407027845163022, 48.86014008783446], [2.407085573509343, 48.860009613826705], [2.407147379457314, 48.85986873928367], [2.407205105840686, 48.85973826517961], [2.407216516913483, 48.85972688565023], [2.407205027744314, 48.859716258751476], [2.407057714489976, 48.85964676420786], [2.406908899435556, 48.85957692477962], [2.40676158697016, 48.85950742986273], [2.406612772710759, 48.859437590057475], [2.40646546240739, 48.8593680938748], [2.406316648942804, 48.85929825369256], [2.406169338055288, 48.85922875802916], [2.406020525385717, 48.85915891746991], [2.405873215287035, 48.85908942143329], [2.4057244034226333, 48.85901957959769], [2.405722024668234, 48.85900634562309], [2.405787731067177, 48.858956552340445], [2.405850701862423, 48.858909146687694], [2.405849998967035, 48.85889680059393], [2.405717612895286, 48.85881143216281], [2.40555187773254, 48.858704095106454], [2.40541949264916, 48.85861872543137], [2.405253758713463, 48.85851138794351], [2.405177808670991, 48.85846241164719], [2.405177604119349, 48.858459794436065]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 42, "roussel_fabien": 22.0, "nb_emargement": 1180.0, "nb_procuration": 59.0, "nb_vote_blanc": 20.0, "jadot_yannick": 86.0, "le_pen_marine": 75.0, "nb_exprime": 1158.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1530.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1180, "quartier_bv": "80", "geo_point_2d": [48.859374839031524, 2.404489525037539], "melenchon_jean_luc": 538.0, "poutou_philippe": 7.0, "macron_emmanuel": 239.0}, "geometry": {"type": "Point", "coordinates": [2.404489525037539, 48.859374839031524]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a046409ed507857f6ba87f75496e90681ae37bcd", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 166, "zemmour_eric": 147.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "7-12", "geo_shape": {"coordinates": [[[2.305474074261746, 48.854322070293854], [2.305555034059246, 48.85432406099972], [2.305717717484563, 48.85429056145743], [2.305924330319654, 48.85424130435745], [2.306087013249175, 48.85420780431058], [2.306293625418993, 48.85415854567002], [2.306456306489918, 48.85412504511069], [2.3064597148535793, 48.8541245468361], [2.306654552705008, 48.85411296266681], [2.30684195949746, 48.854102959372874], [2.307036797183188, 48.854091374580904], [2.307224203824612, 48.854081370688135], [2.307411610406028, 48.85407136560244], [2.307606447835017, 48.854059780781874], [2.30779385426549, 48.85404977509733], [2.30798869152866, 48.854038189654155], [2.308176097808076, 48.85402818337075], [2.308370934905623, 48.85401659730497], [2.308558341033873, 48.854006590422685], [2.308753177965686, 48.853995003734276], [2.308940583942863, 48.85398499625319], [2.309135420708931, 48.85397340894215], [2.309322826535028, 48.85396340086218], [2.309517661772556, 48.85395181292067], [2.309561137163643, 48.85396406032071], [2.309597543730177, 48.853951594846414], [2.309792380225253, 48.853940006465315], [2.309991168156269, 48.85392888933331], [2.310186004478902, 48.853917300311046], [2.31038479222741, 48.85390618342418], [2.310579628389493, 48.85389459286145], [2.310778415967391, 48.85388347532044], [2.310973251945115, 48.85387188501585], [2.311172039352398, 48.85386076682065], [2.31136687516954, 48.8538491749756], [2.311565663768976, 48.85383805613412], [2.31176049803897, 48.85382646453937], [2.311959286479645, 48.85381534414443], [2.312154120577149, 48.8538037519085], [2.312352908835302, 48.85379263175869], [2.312547742772175, 48.85378103798236], [2.312746530859669, 48.85376991717841], [2.31294136461217, 48.853758323660145], [2.313140152528999, 48.85374720220203], [2.31333498748362, 48.853735607151215], [2.313533773866988, 48.8537244850311], [2.31372860863723, 48.853712890238384], [2.313927394861858, 48.853701766564875], [2.314122229459461, 48.85369017113097], [2.314321015501553, 48.853679047702606], [2.314515849938545, 48.853667450728295], [2.314714635809828, 48.853656326645755], [2.314727062231162, 48.85364659572013], [2.314710071316887, 48.85351614197795], [2.314695246345884, 48.85338846434803], [2.3146782542326623, 48.85325801056326], [2.314663429413158, 48.85313033289974], [2.314646438814598, 48.85299987998723], [2.314631612783728, 48.852872202282356], [2.314614622360814, 48.85274174843572], [2.314599797844098, 48.85261407070505], [2.314582807584998, 48.85248361682369], [2.314567981856924, 48.85235593905159], [2.314550991749809, 48.85222548603468], [2.314536167535872, 48.85209780823685], [2.314519177604395, 48.85196735428587], [2.314504352179108, 48.85183967644666], [2.314521026956872, 48.851819105615704], [2.314499238264496, 48.8517836809575], [2.314369413070026, 48.85177786200875], [2.3141357498154242, 48.851769773131245], [2.313909167761083, 48.85175961630499], [2.313675506022475, 48.851751526536404], [2.31344892277456, 48.851741368830574], [2.313435121155508, 48.851747401678615], [2.313371322829774, 48.851869111842305], [2.313305919501688, 48.85198880448112], [2.313242121929415, 48.852110515456616], [2.313176718013424, 48.85223020709954], [2.313112918481178, 48.852351917971895], [2.313047513953463, 48.85247161041753], [2.31298371383573, 48.85259332029526], [2.312918308708337, 48.852713012644244], [2.312854509344052, 48.8528347233338], [2.312789103616876, 48.85295441558622], [2.312777527451642, 48.852960319936514], [2.312575655777076, 48.85297039599987], [2.312328021910908, 48.85298537014116], [2.312313165135687, 48.85297683168968], [2.312303692924163, 48.85284241766113], [2.312295337259669, 48.852708287934355], [2.312285866505597, 48.85257387387978], [2.312277510941918, 48.85243974322012], [2.312268038919993, 48.85230532912383], [2.312259683433396, 48.85217119932978], [2.31225021150627, 48.85203678519962], [2.312241856108619, 48.851902655372], [2.312232384276291, 48.85176824120797], [2.312224028979456, 48.85163411044739], [2.312208665787575, 48.85162556096499], [2.312025915906348, 48.85164116194196], [2.311845258121148, 48.8516566370708], [2.311662508022139, 48.85167223749229], [2.311481851384013, 48.85168771207984], [2.311299101067231, 48.85170331194584], [2.31111844285073, 48.851718785976466], [2.3109356936789123, 48.85173438529479], [2.310755035246771, 48.85174985877629], [2.310572284494464, 48.8517654575313], [2.310391627209423, 48.85178093047152], [2.310376812998988, 48.85177458015261], [2.310317668371765, 48.851643606429256], [2.310264861487867, 48.851516411428726], [2.310205717434942, 48.85138543761969], [2.31015291109793, 48.851258241640906], [2.310093767619398, 48.8511272677461], [2.310040961805252, 48.85100007258772], [2.310029781001381, 48.85096974555505], [2.3099967061348, 48.85096716881706], [2.309791758938315, 48.850891025977695], [2.309592899383305, 48.85081831658783], [2.309387951999679, 48.850742173038704], [2.309189093576134, 48.85066946296798], [2.309185029033805, 48.850667153326924], [2.309065859602116, 48.8505661910485], [2.308952902657098, 48.85046704165738], [2.308833735495456, 48.85036607913748], [2.3087207780631642, 48.850266929501494], [2.308601611808863, 48.85016596673227], [2.308488655251988, 48.850066816859304], [2.308369489905019, 48.84996585384076], [2.308256534223552, 48.84986670373082], [2.308143580334693, 48.849767553513345], [2.308024416340514, 48.84966659012392], [2.307997999332544, 48.84963918849467], [2.307981691083484, 48.84963755806107], [2.307862526337543, 48.84953659449077], [2.307746319476264, 48.84943940723421], [2.307627155627605, 48.849338444310796], [2.307510949647043, 48.849241256808305], [2.307391788082109, 48.8491402927411], [2.307275581607745, 48.849043105884114], [2.307156420951913, 48.848942141564564], [2.307040215370413, 48.84884495356239], [2.306921055611617, 48.848743989889705], [2.306804850910917, 48.84864680164164], [2.306685692073167, 48.84854583681734], [2.306569488241296, 48.84844864922267], [2.306450330312725, 48.848347684146], [2.306334127361533, 48.848250496305425], [2.3062149703420323, 48.84814953097636], [2.306098769646218, 48.84805234199855], [2.306029456786891, 48.848003000259574], [2.306010810184175, 48.8480095941494], [2.3059389655836, 48.84805427861981], [2.305880826222994, 48.84809145463866], [2.305872789394726, 48.84809551180249], [2.305861039079826, 48.84810581597752], [2.305773625735224, 48.84816171050759], [2.305628945453857, 48.848254309266004], [2.305483391681703, 48.848347379436234], [2.305338710381147, 48.84843997692895], [2.30519315557208, 48.848533046730545], [2.305048473240245, 48.84862564385685], [2.304902917394358, 48.84871871328984], [2.30475823403134, 48.84881131004976], [2.304612677148524, 48.848904379114124], [2.304467992754315, 48.848996975507596], [2.304322434834564, 48.84909004420341], [2.30417774939715, 48.849182641129694], [2.304032190452463, 48.84927570855756], [2.303887503983839, 48.849368305117494], [2.30380637882562, 48.84942017503867], [2.303758500733415, 48.849439699477216], [2.303750855612954, 48.849453271323334], [2.303686420692709, 48.849494469329564], [2.303551110093937, 48.849582071021615], [2.303405550265095, 48.84967513856093], [2.303270238736979, 48.849762739021855], [2.303124676539197, 48.849855806196445], [2.302989364057884, 48.84994340722477], [2.302843802216508, 48.850036474050476], [2.302708488793916, 48.850124074746915], [2.302562924583472, 48.85021714120787], [2.302427610231629, 48.85030474067318], [2.302282046377693, 48.85039780678526], [2.302146729709824, 48.85048540681005], [2.302001164849494, 48.85057847256525], [2.301865848603018, 48.85066607226612], [2.30172028137379, 48.85075913765659], [2.3015849641980592, 48.85084673612623], [2.30143939732523, 48.85093980116781], [2.3013040791961368, 48.85102740020489], [2.301273033008735, 48.85104724856389], [2.301269031993292, 48.851049981738754], [2.301257845788216, 48.851065967300684], [2.3011433226711873, 48.85113918360266], [2.30104233615836, 48.85120567520833], [2.30098952655104, 48.85121927620501], [2.300999022474714, 48.85124244344745], [2.301077300582528, 48.8512951526746], [2.30113927029619, 48.85133688073388], [2.30127954334804, 48.851431913368764], [2.30141979356261, 48.85152634941895], [2.301560067636075, 48.85162138170879], [2.301700317494187, 48.851715818305415], [2.301840593952004, 48.851810850258126], [2.3019808448284502, 48.85190528650982], [2.302121122319948, 48.85200031721822], [2.302261374214731, 48.85209475312498], [2.302401651353086, 48.852189784379604], [2.302541905628957, 48.85228421994949], [2.30268218378896, 48.85237925085903], [2.302822437732476, 48.85247368517671], [2.30296271827688, 48.85256871574913], [2.303102973226723, 48.85266315062116], [2.303243254792794, 48.852758180848504], [2.303383510761007, 48.85285261537563], [2.303523791998014, 48.85294764435066], [2.3036640489846, 48.853042078532845], [2.303804332594024, 48.85313710807], [2.303944590598995, 48.853231541907284], [2.30408487523011, 48.8533265710993], [2.304225134265483, 48.85342100369236], [2.304365419918291, 48.853516032539275], [2.304363937285587, 48.853540010704606], [2.304396387919896, 48.853565663789276], [2.304521415004618, 48.85365390171405], [2.30466170183677, 48.85374892929445], [2.304786728435817, 48.85383716781879], [2.304927016245216, 48.85393219507245], [2.305052043745167, 48.85402043240576], [2.305192332519828, 48.854115460231974], [2.305205744696865, 48.85412454607916], [2.305330774493236, 48.85421278311388], [2.305457650660822, 48.854298724772974], [2.305474074261746, 48.854322070293854]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 12, "roussel_fabien": 7.0, "nb_emargement": 1050.0, "nb_procuration": 74.0, "nb_vote_blanc": 3.0, "jadot_yannick": 40.0, "le_pen_marine": 46.0, "nb_exprime": 1047.0, "nb_vote_nul": 0.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1283.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1050, "quartier_bv": "27", "geo_point_2d": [48.8517759409495, 2.3073124862413055], "melenchon_jean_luc": 71.0, "poutou_philippe": 2.0, "macron_emmanuel": 545.0}, "geometry": {"type": "Point", "coordinates": [2.3073124862413055, 48.8517759409495]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "335e1bdc1d47bc7274ab5574ba4ab596b9a7ccac", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 87, "zemmour_eric": 54.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "14-5", "geo_shape": {"coordinates": [[[2.333753664347491, 48.82966474729208], [2.333709489400578, 48.82968461570926], [2.333480640991114, 48.82967965041174], [2.333270976591194, 48.829675987792896], [2.333061312220837, 48.82967232480649], [2.332832463915461, 48.829667359167985], [2.332819290089415, 48.82965828833282], [2.332820855527703, 48.829544271634404], [2.332826251465302, 48.829429940826245], [2.332827816881508, 48.829315924104506], [2.332833211418164, 48.82920159326516], [2.332834776812292, 48.82908757652012], [2.332840171309955, 48.82897324565716], [2.332827047852458, 48.828963978134055], [2.332627783077721, 48.82895922657968], [2.332432191342041, 48.82895464988819], [2.332232926638952, 48.828949897675905], [2.332037334961417, 48.82894532123797], [2.33183807032998, 48.82894056836774], [2.33164247873364, 48.82893599038469], [2.331443212811734, 48.82893123684896], [2.331247622647217, 48.8289266582277], [2.331048356785547, 48.828921904933374], [2.330852766690621, 48.82891732566635], [2.330653500912175, 48.82891257081477], [2.3304579095249203, 48.82890799089437], [2.330258645168651, 48.82890323629179], [2.330063053851108, 48.8288986557256], [2.330062453413877, 48.82889863257583], [2.329862972938725, 48.82888812369648], [2.3296596169551, 48.82887762244076], [2.329460136641648, 48.82886711288925], [2.329256779458992, 48.828856610940726], [2.329057299307047, 48.82884610071716], [2.328853943649638, 48.82883559809113], [2.328654463659312, 48.82882508719545], [2.328451108165027, 48.82881458388427], [2.32825162833643, 48.82880407231646], [2.328048271643148, 48.828793568312484], [2.328018032419751, 48.828803997552214], [2.328017108104846, 48.82880627407521], [2.328127950636075, 48.82892933245555], [2.328234731910698, 48.829049298335704], [2.328345574110178, 48.82917235648001], [2.328452356394938, 48.82929232124051], [2.328563200986962, 48.829415379164125], [2.328669984258603, 48.82953534460365], [2.328780828518992, 48.8296584022912], [2.328887612800788, 48.829778366611094], [2.328888075513197, 48.829778930417596], [2.328963659459105, 48.82987964652786], [2.329070107721382, 48.83001880142924], [2.329097755675914, 48.830055642025144], [2.32910550279076, 48.83007543215561], [2.329111509860471, 48.83007694622345], [2.329159446587639, 48.83014082159449], [2.32920035405466, 48.830193278628755], [2.329211747931339, 48.83019814339576], [2.3293957657109052, 48.83020489177648], [2.329600601884555, 48.83021202278645], [2.329784621125514, 48.83021877057643], [2.329989457406984, 48.83022590092038], [2.330173476747259, 48.830232648111945], [2.330378313136336, 48.830239777789814], [2.330562332575918, 48.83024652438304], [2.330767169072797, 48.83025365339481], [2.330951188611678, 48.83026039938967], [2.331156025216145, 48.830267527735366], [2.331367660919992, 48.83027539345475], [2.331562394498325, 48.83028289632056], [2.331774030325871, 48.83029076132075], [2.331968764031513, 48.83029826262553], [2.332180399982744, 48.8303061269065], [2.332375133792834, 48.83031362844888], [2.332586769867742, 48.83032149201065], [2.332781503793598, 48.83032899289127], [2.332993141354344, 48.83033685574145], [2.333187874045486, 48.830344355053384], [2.333399511729783, 48.83035221718442], [2.333594244525263, 48.8303597167339], [2.333616614900865, 48.83036380222343], [2.333628186908533, 48.83035487295932], [2.333628396904277, 48.8303543237124], [2.333665130087466, 48.830243791136056], [2.333700586500301, 48.83013711064024], [2.333737319388872, 48.83002657712098], [2.333772775494759, 48.82991989748243], [2.333773078959661, 48.82991757698813], [2.3337687090982753, 48.82985168785692], [2.333762430911805, 48.82974794690695], [2.333792155344134, 48.82973841813017], [2.333800051193128, 48.829717177514574], [2.333767640013628, 48.82967099305761], [2.333753664347491, 48.82966474729208]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 5, "roussel_fabien": 23.0, "nb_emargement": 1148.0, "nb_procuration": 86.0, "nb_vote_blanc": 7.0, "jadot_yannick": 102.0, "le_pen_marine": 42.0, "nb_exprime": 1135.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1387.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "55", "geo_point_2d": [48.82959047977778, 2.330965914154471], "melenchon_jean_luc": 308.0, "poutou_philippe": 4.0, "macron_emmanuel": 459.0}, "geometry": {"type": "Point", "coordinates": [2.330965914154471, 48.82959047977778]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b5aaf661d2fe705840c7d6a1593bfb05b1c61cde", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 28, "zemmour_eric": 58.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-3", "geo_shape": {"coordinates": [[[2.376893693204376, 48.88351412494778], [2.376950202938041, 48.883526479908106], [2.377100393050047, 48.8836105300738], [2.377247200475054, 48.883693210759176], [2.377397391547267, 48.88377726053959], [2.377544199913844, 48.88385994084827], [2.377694391946271, 48.88394399024335], [2.377841201254423, 48.88402667017534], [2.377991394257807, 48.88411071828587], [2.378138204496797, 48.88419339874038], [2.37828839709681, 48.88427744645854], [2.378435208277386, 48.884360126536365], [2.378585403201209, 48.88444417387624], [2.37873221532338, 48.88452685357736], [2.378734020112628, 48.88452771190604], [2.378783347706346, 48.88454737530802], [2.378850141416228, 48.88457398486558], [2.378868981363138, 48.8845783606984], [2.378898098248233, 48.88454497408328], [2.3789910370464042, 48.88443245585806], [2.379084529232161, 48.884319124732336], [2.379177467235168, 48.884206605440035], [2.379270958609833, 48.88409327414544], [2.37936389579624, 48.883980755584616], [2.3794573877232, 48.88386742412825], [2.379550322750874, 48.88375490449323], [2.379643813866652, 48.88364157286804], [2.3797367480777583, 48.88352905396452], [2.379830238393075, 48.88341572127123], [2.379923173161902, 48.88330320220692], [2.380016661291884, 48.88318987023698], [2.380109595265578, 48.883077350105594], [2.380203082584311, 48.88296401796686], [2.380296015741467, 48.882851498566914], [2.380389503612614, 48.88273816626642], [2.38040416984657, 48.88273364660482], [2.38055522967115, 48.882753680168044], [2.380700892996378, 48.88277378095422], [2.380851953051419, 48.88279381414233], [2.380997616603433, 48.882813914566775], [2.381008121985464, 48.88281252905833], [2.3811291291278502, 48.882757787537045], [2.381245217485686, 48.882703962966126], [2.381366224115798, 48.88264922209905], [2.381482311986677, 48.88259539729293], [2.3815006657270272, 48.88258773990839], [2.381498968220555, 48.8825752098043], [2.381481565475776, 48.882555151235], [2.38146889104579, 48.88254284231295], [2.381460179393687, 48.88253144059946], [2.381439452201358, 48.88253147290923], [2.381247200309553, 48.88254029563745], [2.381044668615638, 48.88254965037501], [2.380852416600643, 48.88255847156988], [2.38064988611798, 48.88256782654577], [2.380457633969017, 48.88257664710659], [2.380255103355356, 48.88258600051524], [2.380062849698187, 48.88259482133421], [2.379860318943045, 48.88260417407488], [2.379668066515468, 48.882612994266815], [2.3794655356186523, 48.882622346339545], [2.379273283067848, 48.88263116499813], [2.379070750655306, 48.88264051729505], [2.378878497970571, 48.88264933531961], [2.378675966790646, 48.88265868605636], [2.378483713961262, 48.88266750434609], [2.378281181276348, 48.8826768544078], [2.378088928323787, 48.88268567116418], [2.377886396850149, 48.88269502146428], [2.377694143763688, 48.88270383758657], [2.377491610795619, 48.88271318631232], [2.377299357564516, 48.88272200269982], [2.377096825818587, 48.882731350764665], [2.376904572464354, 48.88274016561882], [2.3767020405660633, 48.88274951391498], [2.376509785714406, 48.882758328127956], [2.376307253685486, 48.88276767485687], [2.376115000052748, 48.882776489342135], [2.375912467882245, 48.88278583540306], [2.375720214126425, 48.88279464835496], [2.375687522644424, 48.882829471627545], [2.375702911368526, 48.882844230697934], [2.375849257466382, 48.88292305625426], [2.375999442697656, 48.88300710783999], [2.37614578970207, 48.88308593302223], [2.376295975881667, 48.88316998422356], [2.37644232379264, 48.88324880903165], [2.376592510920566, 48.88333285984855], [2.376738859738104, 48.88341168428249], [2.37688904917793, 48.88349573472212], [2.376893693204376, 48.88351412494778]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 3, "roussel_fabien": 19.0, "nb_emargement": 819.0, "nb_procuration": 25.0, "nb_vote_blanc": 3.0, "jadot_yannick": 73.0, "le_pen_marine": 51.0, "nb_exprime": 811.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1081.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 819, "quartier_bv": "76", "geo_point_2d": [48.88329541656554, 2.3784415690491314], "melenchon_jean_luc": 326.0, "poutou_philippe": 3.0, "macron_emmanuel": 209.0}, "geometry": {"type": "Point", "coordinates": [2.3784415690491314, 48.88329541656554]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cbcb6987ff08728edd15f79c2de7ef33272c2c62", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 27, "zemmour_eric": 41.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "17-19", "geo_shape": {"coordinates": [[[2.32390556737661, 48.89875644591104], [2.3239005466465033, 48.898748020621646], [2.323926318988697, 48.89862511581808], [2.323952072415413, 48.898502292727215], [2.323977844514321, 48.898379387884965], [2.324003599061868, 48.89825656476313], [2.324029369553542, 48.898133659874496], [2.324055123857971, 48.89801083671398], [2.32408089410637, 48.89788793178671], [2.324106648167684, 48.89776510858753], [2.324132419536746, 48.89764220362925], [2.324158171991014, 48.89751938038371], [2.324145522390837, 48.8975091736559], [2.323923725452879, 48.897499928599956], [2.323707627056216, 48.89749092035797], [2.323485831637615, 48.89748167449862], [2.3232697333925962, 48.897472665466374], [2.323254149732898, 48.897470768872715], [2.323243795775214, 48.8974789373483], [2.3232420632815423, 48.89748042222891], [2.323228219964621, 48.897492280682236], [2.323205430584377, 48.897491093395445], [2.323188165548008, 48.897470172056785], [2.323180914165576, 48.897461384283886], [2.32308770586172, 48.89734843160945], [2.322994162273294, 48.897235070460184], [2.322900954779787, 48.89712211761704], [2.322807412004628, 48.89700875629845], [2.322714206685373, 48.896895803294335], [2.322620663347858, 48.89678244269799], [2.322527458850626, 48.89666948862597], [2.322433917690268, 48.896556127868024], [2.322340712639449, 48.89644317361957], [2.322247172292326, 48.89632981269235], [2.322153968040213, 48.89621685917451], [2.322060428517923, 48.896103497178736], [2.321967225076112, 48.895990543492196], [2.321873686355429, 48.89587718222638], [2.321866761130611, 48.89587312753876], [2.321842759907357, 48.89586681058615], [2.321800698983891, 48.89585574096042], [2.321752525188858, 48.895850399554995], [2.321730125887486, 48.895857855776434], [2.321539317335704, 48.8958591878112], [2.321332524667068, 48.89586071494418], [2.321141716082811, 48.89586204724469], [2.320934923391159, 48.895863573691145], [2.320744114798089, 48.895864904458875], [2.320537322083435, 48.89586643021877], [2.320346513469634, 48.895867760353056], [2.320139720731989, 48.89586928542637], [2.319948912085926, 48.8958706158264], [2.319742119325296, 48.89587214021318], [2.319551310670365, 48.89587346908049], [2.319344517886664, 48.895874992780676], [2.319153709211135, 48.89587632101449], [2.318946916404575, 48.89587784402809], [2.318756107708456, 48.895879171628444], [2.318565297626952, 48.89588049981623], [2.318358506150373, 48.895882021821606], [2.318345375666568, 48.895888970791034], [2.318311666980131, 48.89598425996806], [2.318282694618524, 48.89606615910148], [2.318289191892439, 48.89607600229678], [2.318452319775969, 48.89613769438913], [2.31861448847335, 48.89619902286592], [2.318777617127794, 48.896260714508244], [2.318939787955449, 48.89632204254541], [2.31910291738081, 48.89638373373772], [2.319265087611047, 48.89644506131974], [2.319428217807324, 48.896506752061995], [2.319590390167741, 48.89656807920435], [2.319753521146684, 48.89662976859735], [2.319915692897826, 48.89669109618381], [2.320078824647677, 48.896752785126736], [2.320240998540852, 48.89681411137434], [2.320245865335566, 48.89681723895953], [2.320344325536508, 48.89692396626882], [2.320453790657808, 48.89704262067491], [2.320552251723077, 48.89714934689203], [2.320661716416485, 48.89726800197514], [2.320760178334248, 48.8973747279993], [2.32086964535109, 48.89749338197645], [2.320968108109626, 48.89760010870697], [2.321077576074258, 48.8977187624696], [2.321176039696935, 48.89782548810794], [2.321285508597745, 48.89794414255535], [2.321383973072947, 48.89805086800078], [2.321493441557624, 48.89816952222596], [2.321591906885359, 48.898276247478385], [2.321701377693521, 48.8983949005976], [2.321799843862083, 48.898501626556346], [2.321909315617978, 48.898620279461014], [2.322007782650909, 48.89872700432761], [2.322000857196101, 48.89874011407459], [2.32180638420441, 48.898787488100226], [2.321611887601602, 48.89883486707221], [2.321417415265972, 48.89888224046987], [2.321222916579388, 48.89892961969762], [2.321028443535959, 48.898976992459566], [2.320833944141385, 48.899024371051524], [2.320639470389959, 48.89907174317778], [2.3204449702875, 48.8991191211339], [2.320250495828187, 48.89916649262446], [2.320055995017747, 48.89921386994481], [2.319861519850549, 48.89926124079965], [2.319667019696011, 48.89930861749196], [2.319472542457059, 48.89935598770335], [2.319278041594556, 48.899403363759816], [2.319083563647628, 48.89945073333546], [2.318889062077265, 48.89949810875617], [2.318694583422468, 48.8995454776961], [2.3185000811440473, 48.89959285248101], [2.318488436203809, 48.89960264275678], [2.318491620046113, 48.89961128174894], [2.318520839347924, 48.89962015972018], [2.318566019214678, 48.89964730014206], [2.31872268287768, 48.899741030836694], [2.318777529137614, 48.899773977306715], [2.318794364422128, 48.89978409057998], [2.318809325212113, 48.89979307803343], [2.3188096419207422, 48.8997932677925], [2.318975435861349, 48.89989286146833], [2.3191321010122268, 48.8999865907071], [2.319249796163405, 48.90005729150488], [2.319406463667182, 48.90015102037845], [2.319524159562611, 48.900221720895985], [2.3196808266912, 48.9003154493888], [2.319798523331084, 48.900386149626094], [2.319833724119752, 48.90040729376849], [2.319844990324494, 48.900414061269785], [2.320001658609554, 48.90050778932645], [2.320161680494656, 48.90060391130275], [2.320318349909401, 48.900697639828174], [2.320379937157184, 48.90073463293952], [2.320396357535272, 48.90074449720758], [2.320564585803508, 48.90075032597867], [2.320760857266413, 48.90075582882538], [2.320929084248163, 48.900761657076714], [2.321125357167956, 48.900767158434526], [2.321275560424998, 48.900772362429876], [2.321471833421764, 48.90077786321984], [2.321622036744428, 48.90078306678062], [2.3218183084541453, 48.900788566995004], [2.321934161757181, 48.90079258010827], [2.322154180689711, 48.90080020080766], [2.322350453884261, 48.900805700157655], [2.322570472933175, 48.90081332009223], [2.32276674622116, 48.90081881875999], [2.322963018186692, 48.900824317098326], [2.323183037403842, 48.900831935907505], [2.323199506870014, 48.900832506514156], [2.323207983624287, 48.900832799929134], [2.323225871106259, 48.900833419913795], [2.323422144539243, 48.900838917507386], [2.323511613371565, 48.900842015622594], [2.3235555119849662, 48.900843535203265], [2.3235716703466, 48.900840754042875], [2.323572956507362, 48.9008193521473], [2.32359314551057, 48.90068399742316], [2.323613305957481, 48.9005488376702], [2.323633493386864, 48.90041348289805], [2.323653653636045, 48.90027832220563], [2.3236738422078362, 48.900142968300145], [2.323694000883506, 48.90000780755975], [2.323714189257172, 48.899872452714774], [2.323734347711656, 48.89973729283342], [2.323754535875517, 48.89960193794812], [2.323774694132185, 48.899466777127316], [2.323794853636478, 48.89933161719334], [2.323815041485709, 48.89919626224767], [2.323835199416528, 48.89906110226578], [2.32385538705596, 48.898925747279854], [2.323855512449068, 48.89892512475945], [2.323874971665599, 48.89884941839818], [2.32389641627429, 48.89876598549243], [2.32390556737661, 48.89875644591104]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 19, "roussel_fabien": 11.0, "nb_emargement": 863.0, "nb_procuration": 24.0, "nb_vote_blanc": 11.0, "jadot_yannick": 35.0, "le_pen_marine": 70.0, "nb_exprime": 848.0, "nb_vote_nul": 4.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1277.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 863, "quartier_bv": "68", "geo_point_2d": [48.89851774596766, 2.3216929624951455], "melenchon_jean_luc": 421.0, "poutou_philippe": 5.0, "macron_emmanuel": 202.0}, "geometry": {"type": "Point", "coordinates": [2.3216929624951455, 48.89851774596766]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5c773fc829f78ad33ac76fc59fe5762d51377b76", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 166, "zemmour_eric": 202.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-13", "geo_shape": {"coordinates": [[[2.279679494323125, 48.859912634764996], [2.279688513270377, 48.85989135543682], [2.279761842488599, 48.859808360872535], [2.279834437765842, 48.85973121305033], [2.279907034178602, 48.85965406608617], [2.279980362714764, 48.859571071370226], [2.279991838304534, 48.85956660946098], [2.280173667474382, 48.85956397280591], [2.280354594941485, 48.85956198068638], [2.280536425439747, 48.859559343488286], [2.2807173528769003, 48.85955735082034], [2.280730732669425, 48.85954784410761], [2.280719277567368, 48.85941606278853], [2.280706141247554, 48.859281763942356], [2.280694686266195, 48.85914998258934], [2.280681550076753, 48.85901568370821], [2.280670096579003, 48.858883902329424], [2.28065696052013, 48.858749603413436], [2.2806709788403072, 48.858740035786276], [2.280866162932432, 48.8587439807192], [2.2810580731837238, 48.85874663757212], [2.281253257317582, 48.85875058277289], [2.281445167612927, 48.85875323900509], [2.281640353163629, 48.85875718358266], [2.28183226214011, 48.85875983918585], [2.282027447744941, 48.85876378313203], [2.282219358128365, 48.8587664381226], [2.2822320632409863, 48.85876115056846], [2.28231917171865, 48.85863395632397], [2.282397950122393, 48.858511442666384], [2.2824850564023302, 48.85838424916359], [2.282563834050946, 48.858261734469984], [2.282586663344684, 48.85822555711321], [2.282550932581654, 48.85821170954731], [2.282396603228008, 48.85818529190296], [2.282216508364458, 48.85815173960399], [2.282013522571835, 48.85811699204512], [2.281833428191056, 48.85808343916761], [2.281630442919899, 48.85804869095678], [2.281450349022, 48.858015137500665], [2.2813589971069588, 48.857999003068294], [2.281358296487097, 48.85799950070194], [2.2811782043096738, 48.85796594594371], [2.280976762219312, 48.857929265072244], [2.280796669167584, 48.857895709729505], [2.280595227617475, 48.85785902821341], [2.280415135041714, 48.85782547319367], [2.280213694044187, 48.85778879013374], [2.280033603319796, 48.85775523454589], [2.279832162850012, 48.85771855174067], [2.279652071263663, 48.85768499466902], [2.279646343972844, 48.8576828323122], [2.279540433883451, 48.857615841010286], [2.279431397873693, 48.8575451704005], [2.279419766431676, 48.857542698175656], [2.279224585572314, 48.85756259463978], [2.27902809899137, 48.8575817904138], [2.278832917836007, 48.857601686238446], [2.278636432326229, 48.85762088137691], [2.278441249511998, 48.85764077655382], [2.278244763710519, 48.85765997104851], [2.278049581975646, 48.8576798646948], [2.277853094507135, 48.857699059436804], [2.277791925817521, 48.85768774509809], [2.277778191766217, 48.857703335313545], [2.277741336956754, 48.857711009233434], [2.277754332070137, 48.85772689837466], [2.2776911481700672, 48.857810116788166], [2.277567092958215, 48.85792837179525], [2.277557975548382, 48.857932139920244], [2.277393707980926, 48.85794895806151], [2.277207349972504, 48.85796935239946], [2.277043082174552, 48.85798617005887], [2.276899859548891, 48.858001843873126], [2.276864281835512, 48.858009297702644], [2.276876562649972, 48.858044919018845], [2.276908918147898, 48.85816485228117], [2.276941958451837, 48.858287012869845], [2.276974315601055, 48.85840694699588], [2.277007356211846, 48.858529107539894], [2.277039712311523, 48.858649040714546], [2.27707275322917, 48.85877120121384], [2.277105110980159, 48.85889113525216], [2.277138152204567, 48.85901329570674], [2.277146246839748, 48.85901999444593], [2.277352247028806, 48.85908016446507], [2.277588969906487, 48.859146429266474], [2.277603801730186, 48.85914459328052], [2.277716356958841, 48.859072280917275], [2.277833258802648, 48.85899778315856], [2.277945814758602, 48.858925470578164], [2.27806271593236, 48.85885097348476], [2.278082560571285, 48.85885161123342], [2.278215871825715, 48.858954902473045], [2.2783309422257743, 48.85904758536062], [2.278338937803353, 48.85905072106958], [2.278517351828688, 48.859073120616884], [2.278691517083685, 48.859093877244106], [2.278701098184385, 48.85909846685189], [2.278798054567673, 48.8592173984216], [2.278892942255721, 48.85933840393795], [2.27898989952343, 48.85945733532651], [2.279084788094012, 48.85957834066458], [2.279181746246051, 48.85969727187198], [2.279276637062114, 48.85981827703996], [2.2792843701739782, 48.85982266300499], [2.279456276763666, 48.85986107542626], [2.2796246083765173, 48.85990668430584], [2.27966583936113, 48.85991589817435], [2.279679494323125, 48.859912634764996]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 13, "roussel_fabien": 5.0, "nb_emargement": 1182.0, "nb_procuration": 65.0, "nb_vote_blanc": 4.0, "jadot_yannick": 51.0, "le_pen_marine": 58.0, "nb_exprime": 1176.0, "nb_vote_nul": 2.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1459.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1182, "quartier_bv": "62", "geo_point_2d": [48.85853309115004, 2.2794680325193504], "melenchon_jean_luc": 89.0, "poutou_philippe": 3.0, "macron_emmanuel": 571.0}, "geometry": {"type": "Point", "coordinates": [2.2794680325193504, 48.85853309115004]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cb708a669cc405947546846e0322298b2a6521b5", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 29, "zemmour_eric": 73.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-34", "geo_shape": {"coordinates": [[[2.377334278375316, 48.86566626738982], [2.377321110264845, 48.865683710858605], [2.377262112353362, 48.865751912131955], [2.377192331519722, 48.86583152386436], [2.377193590851596, 48.86583872694737], [2.377216659605925, 48.865846038122754], [2.377386667663881, 48.86588843714349], [2.377554338488324, 48.86592989564427], [2.377722009590485, 48.865971353009236], [2.377892017094838, 48.866013752199585], [2.377893137445187, 48.86601399544911], [2.378103247048646, 48.866053316583], [2.378311956022004, 48.86609214712339], [2.3785206639434833, 48.86613097729145], [2.3787307744816832, 48.8661702982188], [2.378939483028334, 48.866209127653754], [2.379149594208571, 48.866248446943814], [2.379150805607996, 48.866248714935985], [2.379348073844837, 48.866299079508266], [2.379550707804934, 48.86635094378795], [2.379747978189441, 48.86640130680424], [2.379950612945314, 48.86645317040209], [2.3801478840927413, 48.86650353365388], [2.3803505196443853, 48.8665553965699], [2.380358803117511, 48.86656312701826], [2.380376484625064, 48.86656396321201], [2.380377106926476, 48.86656413461041], [2.38055273569279, 48.86661517296182], [2.380760140464607, 48.866676214244016], [2.380935769984052, 48.866727252028156], [2.381143175651017, 48.866788292640436], [2.381202304550666, 48.866805475379465], [2.3812262057180202, 48.86680958302695], [2.381235838275053, 48.866793496863856], [2.381319913843376, 48.86667683019445], [2.381404816153014, 48.86655915866871], [2.381488890975484, 48.86644249095663], [2.381573792521512, 48.866324819286135], [2.38165786657658, 48.86620815232994], [2.3817427673591123, 48.866090480514615], [2.381826840657566, 48.865973813415046], [2.381911740676408, 48.86585614145494], [2.381995813218359, 48.86573947421196], [2.382080712473622, 48.865621802107086], [2.382164784269542, 48.86550513382145], [2.382249681387576, 48.865387462464064], [2.382333753790005, 48.86527079404204], [2.382418650155148, 48.86515312164063], [2.382502720427244, 48.86503645396747], [2.38258761739183, 48.8649187814283], [2.38267168690746, 48.86480211361179], [2.382756583108505, 48.86468444092786], [2.382750692386356, 48.86467264175987], [2.382586774701605, 48.86461492996716], [2.382426420044143, 48.864558186036014], [2.382262501715675, 48.86450047378618], [2.382102147753049, 48.86444373031399], [2.381938230143939, 48.864386017614095], [2.381777876886912, 48.8643292737016], [2.381613960007835, 48.864271559652316], [2.381453608819271, 48.86421481530654], [2.381293256616957, 48.86415807073589], [2.381129340802747, 48.864100356913276], [2.381114302503306, 48.86409694168888], [2.381100559051765, 48.86410478123453], [2.380958073795789, 48.864178943354155], [2.380814398032595, 48.86425368641255], [2.380671911961996, 48.86432784818148], [2.380528235377685, 48.86440259088631], [2.38038574849246, 48.86447675230461], [2.380242071086826, 48.864551494655856], [2.380099583397671, 48.86462565482421], [2.379955905170815, 48.864700396821846], [2.379951645178216, 48.86470419155935], [2.379884167052833, 48.86481836326142], [2.3798158712640802, 48.8649338653015], [2.379748392543649, 48.8650480369033], [2.379680096152773, 48.86516353884196], [2.379612616837286, 48.86527771034357], [2.37954431984428, 48.86539321218075], [2.379476839944543, 48.86550738268284], [2.379408542338688, 48.86562288531787], [2.379341061843781, 48.86573705571969], [2.379272763635778, 48.865852558253266], [2.379205282545796, 48.86596672855486], [2.379136983735638, 48.86608223098699], [2.379119722504144, 48.866087436763294], [2.378941896758688, 48.86604577218988], [2.378747412761682, 48.86599969595022], [2.378569587613499, 48.86595803082039], [2.378375104273354, 48.86591195397208], [2.378197279722451, 48.865870288285755], [2.378002797039171, 48.865824210828876], [2.377824973074811, 48.865782545485374], [2.377630491059144, 48.865736466520545], [2.3774526690551703, 48.86569480062769], [2.377358896623019, 48.865672582935424], [2.377334278375316, 48.86566626738982]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 34, "roussel_fabien": 25.0, "nb_emargement": 1307.0, "nb_procuration": 81.0, "nb_vote_blanc": 10.0, "jadot_yannick": 120.0, "le_pen_marine": 71.0, "nb_exprime": 1295.0, "nb_vote_nul": 1.0, "arr_bv": "11", "arthaud_nathalie": 8, "nb_inscrit": 1764.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1306, "quartier_bv": "42", "geo_point_2d": [48.86546361125782, 2.3807340638198236], "melenchon_jean_luc": 562.0, "poutou_philippe": 9.0, "macron_emmanuel": 336.0}, "geometry": {"type": "Point", "coordinates": [2.3807340638198236, 48.86546361125782]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "69276affe594ccb765613b5a69d297433490a8f0", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 58, "zemmour_eric": 60.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-28", "geo_shape": {"coordinates": [[[2.396732701622734, 48.83401787000693], [2.396720473551772, 48.83400854936499], [2.396717792349571, 48.833977013084606], [2.396708343296601, 48.83386588479848], [2.396698662597869, 48.83373687234662], [2.3966865338279773, 48.833594207750146], [2.396676853233673, 48.833465195265205], [2.396672434733228, 48.83345899973021], [2.396597419052047, 48.83341376543596], [2.396554675826557, 48.83339085789259], [2.396535093818586, 48.83339168544156], [2.396399847275098, 48.83349707239949], [2.3962668907941103, 48.83360464722189], [2.396131643145461, 48.833710034755825], [2.395998686930095, 48.833817609266525], [2.395863436834836, 48.83392299557094], [2.395730479512392, 48.83403057066235], [2.395711493018926, 48.8340319487994], [2.395586729490312, 48.83396704974121], [2.395468330051017, 48.833904236864676], [2.395343568493177, 48.83383933755233], [2.395225168274685, 48.833776524421], [2.395225096513716, 48.833776486284805], [2.395074655881522, 48.833697131738624], [2.3949432742923102, 48.833627430072404], [2.394902060131402, 48.833601706565716], [2.394875240033221, 48.833612270633964], [2.394816779982423, 48.833649937086314], [2.394699138747239, 48.833726578427914], [2.394554863469871, 48.83381953693065], [2.394437221466862, 48.83389617800303], [2.394292945242579, 48.83398913707503], [2.394175302471735, 48.83406577787824], [2.394173954298329, 48.83406678643334], [2.394058936205458, 48.83416711800795], [2.393941883961651, 48.834270355800186], [2.393897812487401, 48.834281931255994], [2.393891656096286, 48.834309345093324], [2.393774601839529, 48.83441258270184], [2.393664995484045, 48.83450852362106], [2.393547940341695, 48.83461176009005], [2.3934383331397733, 48.83470770168381], [2.39332127710116, 48.83481093791263], [2.393211667700952, 48.83490687927464], [2.3931020592700403, 48.835002819635655], [2.392985001892261, 48.83510605640746], [2.392875392625356, 48.83520199654362], [2.392758334351391, 48.83530523307523], [2.392757048742884, 48.835306596280866], [2.392662993289373, 48.83542962399045], [2.392570123049734, 48.83555238422688], [2.392476066701073, 48.83567541266173], [2.392383194231464, 48.835798171819896], [2.392289138360445, 48.83592120008764], [2.392196265002109, 48.83604395997295], [2.392170594349353, 48.83607753679458], [2.392168686083068, 48.83608462577831], [2.392228137801482, 48.836104391914375], [2.392361833650806, 48.836161970335084], [2.3925592596253162, 48.83624598529678], [2.392692956193088, 48.83630356423938], [2.392890383237577, 48.836387578643894], [2.393024080534281, 48.836445157209134], [2.393040081322467, 48.83644462233938], [2.393152743593052, 48.836384583150945], [2.393249126141999, 48.836332402657575], [2.393249541467288, 48.836332186218925], [2.393412158702465, 48.83625090987439], [2.393575001111577, 48.8361695571018], [2.393737617331933, 48.836088280303], [2.393900458725049, 48.83600692707547], [2.394063072568363, 48.83592564981549], [2.394225914307811, 48.83584429614], [2.394388527136216, 48.83576301842577], [2.394551366486903, 48.8356816651878], [2.39471397967327, 48.83560038612689], [2.394876818007977, 48.83551903243404], [2.3950394301690983, 48.835437753818155], [2.395202267498367, 48.835356398771076], [2.3953648786445862, 48.83527511970095], [2.395527714957877, 48.83519376419902], [2.395690325089401, 48.835112484674646], [2.395853160386616, 48.83503112871782], [2.396015768141045, 48.83494984873234], [2.396178602411977, 48.83486849321999], [2.396179421491651, 48.83486811422551], [2.396322943896226, 48.83480675462833], [2.396471831468417, 48.8347421698259], [2.396615353182032, 48.83468080987092], [2.396764240032209, 48.834616224697236], [2.396770353863233, 48.83460813606528], [2.396756534508336, 48.83446519415264], [2.396744405400089, 48.83432253055419], [2.396730586181754, 48.834179589501375], [2.396718457210975, 48.83403692586389], [2.396732701622734, 48.83401787000693]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 28, "roussel_fabien": 29.0, "nb_emargement": 1042.0, "nb_procuration": 51.0, "nb_vote_blanc": 16.0, "jadot_yannick": 71.0, "le_pen_marine": 91.0, "nb_exprime": 1020.0, "nb_vote_nul": 6.0, "arr_bv": "12", "arthaud_nathalie": 7, "nb_inscrit": 1405.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1042, "quartier_bv": "46", "geo_point_2d": [48.83490468131336, 2.3945604133615235], "melenchon_jean_luc": 362.0, "poutou_philippe": 10.0, "macron_emmanuel": 285.0}, "geometry": {"type": "Point", "coordinates": [2.3945604133615235, 48.83490468131336]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c0d42b5e11d7d09af0f688e3dd6395272351c043", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 19, "zemmour_eric": 66.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "20-62", "geo_shape": {"coordinates": [[[2.384971230562931, 48.86512653144118], [2.385020720746342, 48.865147113563054], [2.38520940149306, 48.86519271364148], [2.385397759230876, 48.8652382209267], [2.385586440637594, 48.86528382040699], [2.3857747976710773, 48.86532932708809], [2.385963479737788, 48.86537492597022], [2.386151838793122, 48.86542043206115], [2.386340521519721, 48.86546603034514], [2.386528881233909, 48.86551153583899], [2.386717564620492, 48.86555713352483], [2.386905923630324, 48.86560263841456], [2.387094607676885, 48.86564823550222], [2.387282968708559, 48.865693739801806], [2.387471653415095, 48.86573933629133], [2.387660013742399, 48.865784839986766], [2.387675810327897, 48.86579027278102], [2.387691438138817, 48.86578211477559], [2.387754590903197, 48.86574917574227], [2.387822791953359, 48.86571410048225], [2.387827206413689, 48.86571011110374], [2.387897435718771, 48.86558408326925], [2.387968097306596, 48.86545743254971], [2.3880383272933, 48.86533140461073], [2.388108988195872, 48.86520475377912], [2.388179216138013, 48.86507872572175], [2.388249876366006, 48.86495207387874], [2.388255026854549, 48.86494773390399], [2.388436305088975, 48.86486676275309], [2.38862087316908, 48.864784763995196], [2.388802150267797, 48.864703792278235], [2.388986718547114, 48.86462179385037], [2.388987705663117, 48.8646213114469], [2.388998042520645, 48.86461095074627], [2.388983708189006, 48.86459766714032], [2.388928421415689, 48.864518589973194], [2.38887480211457, 48.864442284965], [2.388872950570929, 48.86444034462432], [2.388718325770417, 48.86431668512338], [2.388553108389803, 48.864184819654824], [2.388556374357587, 48.86417147032398], [2.388703176890671, 48.86411075743127], [2.38884822978297, 48.86404996347495], [2.388995030270578, 48.86398925021061], [2.389140083846947, 48.86392845590085], [2.389144091981703, 48.86391585229692], [2.389096557201391, 48.86386913527346], [2.3890616209357622, 48.86383411373171], [2.389060684513371, 48.86383329684568], [2.388916003701893, 48.86372113421362], [2.388763247159459, 48.86360373734552], [2.388618567625864, 48.863491574330624], [2.388465813800376, 48.86337417616622], [2.388467531881587, 48.86336135402749], [2.388515431747769, 48.86333553673329], [2.388569042355932, 48.86330477703068], [2.38856653109425, 48.863290063549286], [2.388401176137312, 48.8632316490299], [2.388230310571182, 48.86317183910736], [2.388064956355907, 48.86311342501649], [2.387894090200575, 48.863053614600595], [2.387728736737416, 48.862995200038945], [2.387557872718856, 48.86293538914366], [2.387512338283151, 48.86291930249967], [2.387504521172494, 48.86291742873275], [2.387471160080744, 48.86289732315612], [2.387447077798647, 48.86289760190264], [2.38743790382218, 48.86290180703948], [2.387426484214429, 48.86292380137418], [2.38736476858499, 48.86300624029148], [2.387269590519347, 48.863114025804244], [2.387268603167092, 48.86311499293862], [2.387148279000905, 48.86322004870109], [2.387024547599943, 48.863325829740674], [2.386904222454564, 48.863430885237754], [2.386780490067907, 48.863536665105634], [2.386660163943531, 48.86364172033731], [2.38653643055, 48.86374750083202], [2.386416103446412, 48.86385255579839], [2.386292369067175, 48.86395833512131], [2.386172040984569, 48.864063389822306], [2.38604830559843, 48.86416916977206], [2.385927976536594, 48.86427422420767], [2.385800067043392, 48.864388839186695], [2.385679736973595, 48.864493893351856], [2.3855518263842, 48.86460850894215], [2.38543149530653, 48.86471356283687], [2.385303583642242, 48.86482817723986], [2.3851832515565903, 48.86493323086417], [2.385055338806794, 48.86504784497906], [2.384975656722649, 48.86511740878503], [2.384971230562931, 48.86512653144118]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 62, "roussel_fabien": 27.0, "nb_emargement": 1102.0, "nb_procuration": 48.0, "nb_vote_blanc": 19.0, "jadot_yannick": 61.0, "le_pen_marine": 61.0, "nb_exprime": 1082.0, "nb_vote_nul": 1.0, "arr_bv": "20", "arthaud_nathalie": 13, "nb_inscrit": 1505.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1102, "quartier_bv": "79", "geo_point_2d": [48.864436733864835, 2.3872609054679588], "melenchon_jean_luc": 575.0, "poutou_philippe": 8.0, "macron_emmanuel": 215.0}, "geometry": {"type": "Point", "coordinates": [2.3872609054679588, 48.864436733864835]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "59a8eb94555a62e7a948885a8adf2dd5450e907b", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 22, "zemmour_eric": 47.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-61", "geo_shape": {"coordinates": [[[2.388367632499064, 48.86099808145293], [2.388363139138455, 48.86101231219584], [2.388336509492688, 48.86106791475192], [2.388271969687244, 48.86120022824222], [2.388211565544502, 48.86132634745895], [2.388147026464702, 48.861458660858005], [2.388086621719776, 48.861584779982294], [2.388022080650086, 48.861717092376836], [2.387961676655609, 48.86184321231491], [2.387897134948454, 48.86197552461121], [2.387836728999336, 48.862101643550574], [2.387772188007151, 48.862233956654926], [2.387711781456026, 48.86236007550177], [2.387647238473811, 48.86249238760165], [2.387586832673018, 48.8626185072623], [2.387522289053413, 48.86275081926388], [2.387461882660972, 48.86287693793274], [2.387471160080744, 48.86289732315612], [2.387504521172494, 48.86291742873275], [2.387512338283151, 48.86291930249967], [2.387557872718856, 48.86293538914366], [2.387728736737416, 48.862995200038945], [2.387894090200575, 48.863053614600595], [2.388064956355907, 48.86311342501649], [2.388230310571182, 48.86317183910736], [2.388401176137312, 48.8632316490299], [2.38856653109425, 48.863290063549286], [2.388569042355932, 48.86330477703068], [2.388515431747769, 48.86333553673329], [2.388467531881587, 48.86336135402749], [2.388465813800376, 48.86337417616622], [2.388618567625864, 48.863491574330624], [2.388763247159459, 48.86360373734552], [2.388916003701893, 48.86372113421362], [2.389060684513371, 48.86383329684568], [2.3890616209357622, 48.86383411373171], [2.389096557201391, 48.86386913527346], [2.389144091981703, 48.86391585229692], [2.389140083846947, 48.86392845590085], [2.388995030270578, 48.86398925021061], [2.38884822978297, 48.86404996347495], [2.388703176890671, 48.86411075743127], [2.388556374357587, 48.86417147032398], [2.388553108389803, 48.864184819654824], [2.388718325770417, 48.86431668512338], [2.388872950570929, 48.86444034462432], [2.38887480211457, 48.864442284965], [2.388928421415689, 48.864518589973194], [2.388983708189006, 48.86459766714032], [2.388998042520645, 48.86461095074627], [2.389011940778442, 48.86460992810031], [2.38920966287733, 48.86450384196531], [2.389409414674908, 48.86439722175118], [2.389430432006675, 48.86440054412174], [2.389505942252689, 48.86451200878074], [2.389579132485197, 48.86462000717652], [2.389654643367367, 48.8647314717196], [2.389727835579551, 48.86483947000998], [2.389736972126768, 48.86484452412906], [2.389961101677696, 48.86488150550508], [2.3901749297984862, 48.86491654715197], [2.390388756833323, 48.86495158930805], [2.390612888670533, 48.86498856946689], [2.39061444570777, 48.86498889126483], [2.39075925609813, 48.86502519563928], [2.390897321237437, 48.86506003555589], [2.391042132022684, 48.86509633958575], [2.3911801975291063, 48.8651311800731], [2.391185988309629, 48.86513175273215], [2.391239912631582, 48.86512934519377], [2.391294982611979, 48.865127584687876], [2.391320524990081, 48.86513006097341], [2.391325742180515, 48.86512687506177], [2.39146506851596, 48.86512241954328], [2.391631791267593, 48.86511727393461], [2.3918261888696453, 48.86511105641712], [2.39199291154924, 48.865105910305346], [2.392187309065786, 48.86509969220125], [2.392354031683827, 48.86509454468708], [2.392354123040823, 48.86509454245291], [2.392567441646514, 48.86508849893732], [2.392780571439567, 48.86508262765657], [2.392993889946993, 48.86507658338089], [2.393207019643131, 48.86507071134066], [2.393420336689292, 48.86506466629792], [2.393633466278136, 48.865058794397505], [2.393846784589001, 48.86505274860155], [2.394059914091578, 48.86504687504241], [2.394061587779984, 48.86504689700621], [2.394222006384551, 48.86505550276427], [2.394386285320147, 48.865064121545586], [2.3943884295391102, 48.865064122502936], [2.394576329201069, 48.86505455536922], [2.394762565106706, 48.86504492646599], [2.3949488009329523, 48.86503529817218], [2.395136700398473, 48.865025729259145], [2.395322936086941, 48.86501610038303], [2.395510834041072, 48.86500653177481], [2.395512056929905, 48.86500651906519], [2.395512916005339, 48.86500649372594], [2.395513232288747, 48.86500649082675], [2.395764598053955, 48.86500422124587], [2.396024901893857, 48.865001602332256], [2.396025545490071, 48.865001585794666], [2.396227125353329, 48.86499329202221], [2.396425251050361, 48.86498510639837], [2.396626830796633, 48.864976811053324], [2.396824956368076, 48.8649686247677], [2.3970230818669442, 48.86496043905329], [2.397224662785652, 48.86495214270802], [2.39742278816933, 48.86494395543252], [2.397624367597512, 48.864935658407056], [2.397822492845384, 48.8649274713691], [2.39802407214612, 48.86491917367028], [2.398222197278766, 48.86491098507122], [2.398423776452043, 48.86490268669909], [2.3984712624924622, 48.86491594152737], [2.398478515562919, 48.86491123755899], [2.398500446240623, 48.86488369126848], [2.39855816990018, 48.864810127537176], [2.398539669568632, 48.864803380346224], [2.398491472139422, 48.864808889402276], [2.398287035663076, 48.864809681117436], [2.398086211002094, 48.86481063364343], [2.397881773149765, 48.86481142465949], [2.3976809484745543, 48.864812376505476], [2.397678978915415, 48.864812479010894], [2.397464116876905, 48.86483403298478], [2.397257410076705, 48.864855490945374], [2.397255238688377, 48.864855600521416], [2.397076198068793, 48.864855148370204], [2.396898883963597, 48.86485451129321], [2.396719841977353, 48.8648540595013], [2.396542527880225, 48.86485342189633], [2.396365212413933, 48.86485278492112], [2.396186171811763, 48.86485233143843], [2.39600885636407, 48.864851693035966], [2.395829815758329, 48.8648512399195], [2.39565250031862, 48.8648506009891], [2.395473459730169, 48.86485014644025], [2.395467931793571, 48.86484935857515], [2.395287127229216, 48.86479583104366], [2.395109237723392, 48.864743334222716], [2.394931347213105, 48.86469083712804], [2.394750543750145, 48.86463730877826], [2.394572653963354, 48.86458481114539], [2.394391852610553, 48.864531281356214], [2.394213963536704, 48.86447878408448], [2.39403316155736, 48.86442525374144], [2.393855273217472, 48.86437275503224], [2.3936744733272732, 48.864319225048405], [2.393496585710889, 48.86426672580106], [2.393315785194153, 48.86421319526334], [2.393137898301379, 48.86416069547782], [2.392957099894723, 48.86410716350077], [2.392951198353207, 48.86409411200271], [2.393053079178947, 48.86398906762497], [2.3931594045961, 48.86387970366812], [2.393261284582835, 48.86377465909281], [2.393367609125228, 48.863665294929824], [2.393469486909814, 48.86356025015002], [2.39357581057756, 48.863450885780914], [2.39367768888611, 48.86334584081047], [2.393784011679317, 48.86323647623526], [2.393885887785749, 48.8631314310603], [2.393992209714687, 48.86302206537966], [2.394094086334629, 48.862917020913365], [2.39420040738894, 48.862807655026586], [2.394302283180279, 48.86270260946348], [2.3944086033496212, 48.86259324426984], [2.394510476938884, 48.86248819850228], [2.394616796233525, 48.86237883310257], [2.394718670346769, 48.86227378714431], [2.394824988766816, 48.86216442153849], [2.394926862041025, 48.8620593753827], [2.39498021746589, 48.86200448933296], [2.394999506414698, 48.861985223094436], [2.394977514292994, 48.86197281699703], [2.394800929786955, 48.86191045134502], [2.394624944721896, 48.8618480309011], [2.394448362423859, 48.86178566472874], [2.394272378192273, 48.86172324465864], [2.394095796749686, 48.861660877059784], [2.393919813362026, 48.86159845646425], [2.393743232764439, 48.861536088338134], [2.393567250220705, 48.86147366721711], [2.393390670468119, 48.86141129856376], [2.393214688768212, 48.861348876917276], [2.393038108487263, 48.86128650862909], [2.392862129004751, 48.86122408556476], [2.392685549568802, 48.86116171674939], [2.392509570919736, 48.8610992940589], [2.392332992339174, 48.861036923817], [2.392157014534135, 48.86097450060109], [2.391980436798582, 48.86091212983198], [2.391804458474493, 48.860849706083656], [2.391627882946928, 48.860787334794274], [2.391451905466771, 48.86072491052052], [2.391275330773704, 48.86066253960325], [2.391099354147988, 48.86060011390473], [2.390922780299925, 48.86053774246027], [2.390746804507632, 48.8604753171356], [2.390570231515089, 48.86041294426466], [2.390394256566629, 48.86035051841462], [2.390217683056232, 48.86028814500951], [2.390041710314673, 48.860225718640955], [2.389865137649291, 48.860163344708674], [2.389689165751665, 48.860100917814705], [2.38951259392066, 48.860038544254536], [2.389336622877607, 48.859976115935815], [2.389160051891612, 48.859913741848494], [2.388984080319001, 48.85985131389671], [2.38893891453657, 48.859835365422676], [2.388928882507698, 48.85984154755812], [2.388913061921595, 48.85987525786928], [2.38885266222981, 48.86000137756726], [2.388786560529212, 48.86013727455697], [2.388726158864491, 48.860263394154316], [2.388660056501601, 48.86039929104204], [2.388599655579203, 48.86052541145201], [2.388533552553911, 48.8606613082377], [2.388473149669099, 48.860787427647814], [2.388407045981393, 48.86092332433151], [2.3883732734750662, 48.86099384109565], [2.388367632499064, 48.86099808145293]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 61, "roussel_fabien": 29.0, "nb_emargement": 1182.0, "nb_procuration": 67.0, "nb_vote_blanc": 12.0, "jadot_yannick": 104.0, "le_pen_marine": 38.0, "nb_exprime": 1170.0, "nb_vote_nul": 3.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1492.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1185, "quartier_bv": "79", "geo_point_2d": [48.86277971303473, 2.3911906882268377], "melenchon_jean_luc": 588.0, "poutou_philippe": 11.0, "macron_emmanuel": 286.0}, "geometry": {"type": "Point", "coordinates": [2.3911906882268377, 48.86277971303473]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "006655be5ecd882281ed4ec5c2efd9a4f3fe564f", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 39, "zemmour_eric": 65.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-7", "geo_shape": {"coordinates": [[[2.375894696142989, 48.85133649549177], [2.37592890231595, 48.85137744878726], [2.375998619091532, 48.85149110031844], [2.376067907681635, 48.85160366134583], [2.376137623700397, 48.85171731276578], [2.376206912891449, 48.851829873689766], [2.376276201029962, 48.85194243365583], [2.376345919318898, 48.85205608492692], [2.376415209410451, 48.85216864569599], [2.37648492694257, 48.852282296855876], [2.376554217635089, 48.852394857521546], [2.376623937146562, 48.852508507685116], [2.376624918036577, 48.852512295470966], [2.376620303110855, 48.852578515912725], [2.376615268516284, 48.85265247488773], [2.376624232147791, 48.852661332540244], [2.376676091649337, 48.852673756555276], [2.376724416433184, 48.85268534732217], [2.376732411032635, 48.85269045231836], [2.376816634533569, 48.85282905935691], [2.376903422066179, 48.852969025998554], [2.376987646472263, 48.853107632882], [2.377074434917446, 48.85324760026382], [2.377068870302674, 48.85326642170342], [2.377076716909154, 48.853267956376364], [2.377208902368087, 48.85326492294899], [2.377384282267225, 48.85325933065124], [2.377563061137103, 48.853251677376605], [2.377738439580233, 48.853246085451886], [2.377917218363384, 48.853238430748696], [2.378092596723921, 48.85323283830486], [2.37809589196178, 48.85323296155547], [2.378260283282035, 48.85325247921251], [2.378403103030043, 48.853265425439176], [2.378545924201072, 48.853278372401604], [2.378710314481094, 48.85329788853321], [2.3787207892376783, 48.85330966506793], [2.378650177414543, 48.8534451211496], [2.378581531205082, 48.85357628578647], [2.378510920021327, 48.85371174176052], [2.378442271758119, 48.85384290537967], [2.37844981771934, 48.85385411631546], [2.378626381409811, 48.853903692728494], [2.378798856879839, 48.853952352798736], [2.378975421246084, 48.8540019277931], [2.379147897367218, 48.85405058735594], [2.379324462398404, 48.854100161830864], [2.37949693917064, 48.854148820886294], [2.379673504866765, 48.854198394841816], [2.379845982290099, 48.85424705338981], [2.379870847369093, 48.85425372952965], [2.37987758559151, 48.85425119230834], [2.379952845957254, 48.85415852292271], [2.380037927516244, 48.85405399786584], [2.380137834467415, 48.85393098064723], [2.380222913921102, 48.85382645543031], [2.380307994396148, 48.853721930150215], [2.380407900073058, 48.85359891266935], [2.380401684230819, 48.853586525198196], [2.380361775908946, 48.85357415031811], [2.380309435847463, 48.853563253428376], [2.380299296537302, 48.85355051017372], [2.3802849862685163, 48.85354641595964], [2.380155297256721, 48.8535194157014], [2.379989840655358, 48.853490453752364], [2.379807813463774, 48.853452555170435], [2.379642357267747, 48.85342359273916], [2.379476901255747, 48.85339463007836], [2.379294873398478, 48.85335673160506], [2.379286559425583, 48.85335186525503], [2.379184955445764, 48.85320579070415], [2.379078736359561, 48.85305100346001], [2.379077786524222, 48.85304905413287], [2.379039716290943, 48.85292321084847], [2.3789998326968362, 48.852790474486774], [2.378961762840632, 48.8526646311483], [2.37892188100577, 48.85253189473682], [2.378883810164078, 48.85240605133719], [2.378843928725588, 48.85227331486887], [2.378805859623817, 48.85214747142228], [2.378765977219143, 48.85201473489001], [2.378727908494531, 48.85188889138937], [2.378688026486222, 48.85175615480027], [2.378649958138766, 48.85163031124558], [2.3786100765377443, 48.85149757370034], [2.378610069949386, 48.851497554779684], [2.378572001979106, 48.85137171117092], [2.378537298822094, 48.85125753073498], [2.378499231202797, 48.8511316870759], [2.3784645297278, 48.85101750660126], [2.378426461096961, 48.850891662884834], [2.378391759941147, 48.850777482364435], [2.378369694835437, 48.850737647780164], [2.378355253114356, 48.85073825265868], [2.37826521487801, 48.85076027495402], [2.378064923768228, 48.850808801868844], [2.377898835611074, 48.85084942379898], [2.377698543817563, 48.85089795009657], [2.377532455079928, 48.85093857241417], [2.377366366083348, 48.85097919449971], [2.377166073295209, 48.85102771990032], [2.377094696480285, 48.851022568261946], [2.377075086260322, 48.85104557864996], [2.376874792945689, 48.85109410356006], [2.376695994621549, 48.8511387415886], [2.376495700595926, 48.8511872658601], [2.376316900253912, 48.85123190421063], [2.3761166055172, 48.8512804278434], [2.37593780590419, 48.8513250647315], [2.375895861922005, 48.85133553566721], [2.375894696142989, 48.85133649549177]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 7, "roussel_fabien": 27.0, "nb_emargement": 1220.0, "nb_procuration": 66.0, "nb_vote_blanc": 17.0, "jadot_yannick": 124.0, "le_pen_marine": 51.0, "nb_exprime": 1199.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 5, "nb_inscrit": 1542.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1220, "quartier_bv": "44", "geo_point_2d": [48.85238315926177, 2.3779614605750194], "melenchon_jean_luc": 420.0, "poutou_philippe": 4.0, "macron_emmanuel": 411.0}, "geometry": {"type": "Point", "coordinates": [2.3779614605750194, 48.85238315926177]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "14a5467d0f120da2202d3beb69a898ad7203e171", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 71, "zemmour_eric": 97.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "4-1", "geo_shape": {"coordinates": [[[2.357370736444245, 48.852774739702326], [2.357369098227982, 48.85277496833319], [2.357334132497721, 48.85278697936872], [2.357164214117259, 48.85284381230726], [2.356993032273776, 48.85290261229529], [2.356823113144328, 48.852959444743576], [2.356651930524975, 48.85301824513676], [2.356482010646337, 48.85307507709472], [2.356310825910647, 48.853133876087185], [2.356140905282922, 48.85319070755482], [2.355969721134021, 48.85324950695982], [2.355799799757312, 48.85330633793719], [2.355628614854759, 48.85336513594873], [2.355458692717743, 48.8534219673351], [2.355287507050424, 48.853480764852534], [2.355286266338328, 48.85348124741567], [2.355113096195931, 48.85355533289008], [2.354975243693502, 48.85361567302453], [2.354837390871809, 48.85367601299692], [2.354664219443946, 48.85375009780873], [2.354526365906465, 48.853810437415454], [2.35442549082582, 48.85385359188002], [2.35441391410003, 48.853856720324806], [2.354402635048201, 48.85386343249823], [2.354330337795962, 48.853894361472975], [2.354158144256715, 48.85396739138442], [2.353984970906019, 48.85404147429446], [2.353812775033783, 48.85411450369184], [2.353639602065847, 48.854188586099625], [2.353467405223518, 48.85426161499033], [2.35329423127565, 48.85433569688848], [2.353122033463023, 48.8544087252725], [2.352948858535217, 48.85448280666099], [2.352776659752393, 48.85455583453833], [2.35260348248194, 48.85462991540986], [2.352507750853757, 48.85467051402963], [2.352487307873652, 48.85468902989994], [2.352517355194923, 48.854726548906], [2.352582720935619, 48.854845734949826], [2.35264969135435, 48.8549654485512], [2.352715057686269, 48.855084635396395], [2.352782028716095, 48.85520434889799], [2.352847395661591, 48.855323534745956], [2.352914365939786, 48.855443248140396], [2.352979733476419, 48.855562434789725], [2.353046705728556, 48.855682148091745], [2.353112073878776, 48.855801333743834], [2.353179045379186, 48.85592104693865], [2.353244414120664, 48.85604023339213], [2.353311387595044, 48.85615994649446], [2.3533767569501203, 48.85627913195071], [2.353443729672775, 48.85639884494589], [2.353509099619235, 48.85651803120349], [2.353576074315786, 48.856637744106166], [2.353641444875853, 48.856756929366576], [2.353708418820787, 48.85687664216206], [2.353702764167097, 48.85689552676734], [2.353723712559626, 48.85689178888768], [2.353751973676154, 48.85690855432528], [2.35385653153928, 48.85696273734512], [2.353948850006792, 48.8570175017233], [2.353952330219074, 48.85702074918153], [2.354025948222533, 48.85713804240847], [2.354083469244832, 48.857246502505845], [2.354140989154871, 48.857354961658345], [2.354214608044097, 48.85747225563319], [2.354216179838799, 48.857474320030356], [2.354244528267039, 48.857502003923514], [2.354250170108948, 48.85750602658473], [2.354311229522871, 48.85748509722654], [2.354480561351359, 48.85740799845544], [2.354648753649056, 48.85733141761779], [2.354818083115781, 48.85725431835109], [2.3549862744213153, 48.85717773702845], [2.354987474405378, 48.85717724885391], [2.355124906087986, 48.85712678234778], [2.355323448408843, 48.85705511627591], [2.355452479347352, 48.8570089695802], [2.355651019405957, 48.85693730294989], [2.355780051125364, 48.856891155903405], [2.355781918439646, 48.856890597566796], [2.355953621463316, 48.856849245155004], [2.356123507480554, 48.85680832879783], [2.356293393231077, 48.85676741219794], [2.356465095453879, 48.85672605814843], [2.356634980667916, 48.856685141060574], [2.356806682348496, 48.85664378651785], [2.356826597705134, 48.85664145182579], [2.356831063936335, 48.856635718188116], [2.356832332637721, 48.85662778374044], [2.356743699550717, 48.85647976612221], [2.356655123051421, 48.85633184225257], [2.3566629873531753, 48.85632012282181], [2.356857995423179, 48.85627156828506], [2.357053172653375, 48.85622297117041], [2.357248178633326, 48.85617441598621], [2.357443355135688, 48.85612581823088], [2.357638361751286, 48.856077262413926], [2.3578335375258073, 48.856028664017956], [2.358028543414194, 48.85598010756088], [2.358223718460868, 48.855931508524286], [2.358418723622038, 48.85588295142712], [2.3586138979407583, 48.85583435174987], [2.358808902374707, 48.855785794012604], [2.359004075965672, 48.855737193694665], [2.359199079672392, 48.855688635317335], [2.359394252535493, 48.855640034358785], [2.35958925551498, 48.85559147534136], [2.359784427650213, 48.85554287374218], [2.359793023303441, 48.85553612153472], [2.3597870156175063, 48.85552392116847], [2.359688016173804, 48.85541154271606], [2.359589206704339, 48.85529937743179], [2.359490208124834, 48.85518699789377], [2.359391398144159, 48.85507483241617], [2.359292401769761, 48.85496245359834], [2.359193592640695, 48.85485028793479], [2.35909459576766, 48.85473790802401], [2.358995788841946, 48.854625743081044], [2.358896792822232, 48.85451336298388], [2.358797986759062, 48.85440119695564], [2.35869899158149, 48.85428881757146], [2.3586001850071963, 48.85417665134985], [2.358501192056689, 48.85406427088735], [2.358402386333967, 48.85395210447976], [2.358303394225468, 48.85383972473017], [2.358204589354306, 48.85372755813664], [2.358105596747371, 48.85361517729412], [2.358006794090445, 48.853503010521905], [2.357907802325599, 48.85339063039233], [2.357809000520308, 48.853278463434116], [2.357710009608619, 48.85316608311822], [2.357611207292082, 48.853053915966726], [2.357512218607296, 48.85294153457251], [2.357413417142282, 48.85282936723505], [2.357370736444245, 48.852774739702326]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 1, "roussel_fabien": 23.0, "nb_emargement": 951.0, "nb_procuration": 70.0, "nb_vote_blanc": 5.0, "jadot_yannick": 52.0, "le_pen_marine": 68.0, "nb_exprime": 941.0, "nb_vote_nul": 5.0, "arr_bv": "04", "arthaud_nathalie": 4, "nb_inscrit": 1268.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 951, "quartier_bv": "14", "geo_point_2d": [48.85509426907016, 2.3559369291338337], "melenchon_jean_luc": 256.0, "poutou_philippe": 14.0, "macron_emmanuel": 316.0}, "geometry": {"type": "Point", "coordinates": [2.3559369291338337, 48.85509426907016]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cfe19ffe3de1691dcdd30367dc317ad9d93da497", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 139, "zemmour_eric": 169.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-39", "geo_shape": {"coordinates": [[[2.2705804494630533, 48.8416822759823], [2.2705641578884173, 48.84167338258983], [2.270466218892702, 48.84157312240882], [2.2703544927412462, 48.841457477934625], [2.270256555916899, 48.841357217570874], [2.270144830680862, 48.841241573777815], [2.270046893315769, 48.84114131231542], [2.269935170370176, 48.841025668312476], [2.269837233801489, 48.84092540755831], [2.269837069980241, 48.840925235677716], [2.269725346613524, 48.84080959054884], [2.269636377276845, 48.84071382904626], [2.269524654808574, 48.84059818370801], [2.269416038187818, 48.840481360154556], [2.269374012625503, 48.84043596397675], [2.26935166957181, 48.840428705377754], [2.269306073621572, 48.84046246901741], [2.2691256713317562, 48.8405340047371], [2.268949100485105, 48.84060540620818], [2.268768697210516, 48.84067694138035], [2.268592124015663, 48.84074834320637], [2.268411719769019, 48.840819876931725], [2.268235146963347, 48.84089127823001], [2.268054741719406, 48.840962812307176], [2.267878166590666, 48.841034212161794], [2.267701592340492, 48.841105611759524], [2.267521185622399, 48.841177145018314], [2.267344609036629, 48.84124854407165], [2.267164201333858, 48.84132007678296], [2.266987625137284, 48.84139147530856], [2.266807215087383, 48.84146300746395], [2.2667926133043332, 48.84146276777204], [2.266662171198841, 48.84140504604164], [2.266515689067219, 48.8413399966626], [2.266494356979502, 48.841342713273555], [2.266487203653404, 48.841348713191024], [2.266509015450503, 48.84142993071583], [2.266524665148307, 48.84148496120972], [2.266529483332767, 48.84149036809681], [2.266664294670237, 48.84156275043103], [2.266800528969011, 48.84163696705259], [2.266935341062081, 48.84170934907184], [2.267071577492461, 48.841783565383295], [2.267074808477804, 48.84179487589026], [2.267021472886071, 48.84185714895999], [2.266953370298711, 48.84193788554873], [2.266933104744261, 48.841940611471465], [2.266783985928099, 48.84186410899751], [2.266636597703895, 48.84178656197616], [2.266487478401336, 48.84171005911366], [2.26634009242904, 48.841632510825356], [2.266190974002344, 48.8415560075827], [2.266043588894171, 48.841478459817715], [2.265894471343536, 48.841401956194886], [2.265747087124808, 48.8413244071546], [2.265597970450028, 48.841247903151675], [2.265450587095406, 48.84117035463466], [2.265435804598161, 48.841169408559], [2.265250751708272, 48.84123296302659], [2.265073594122441, 48.84129479125172], [2.264888538995949, 48.84135834424423], [2.264711380554272, 48.84142017192601], [2.264534220329835, 48.84148199933365], [2.264349165243431, 48.84154555148948], [2.264325697943018, 48.8415565620836], [2.26433184215875, 48.84157612433784], [2.264389377805148, 48.84169888268747], [2.264445868257239, 48.84181935106235], [2.264502358957778, 48.841939820296886], [2.264559895419974, 48.842062577625136], [2.2646163866477, 48.842183046779574], [2.26467392227191, 48.8423058049172], [2.264730414039513, 48.84242627309221], [2.264787951563178, 48.84254903115657], [2.264844443857981, 48.842669499251514], [2.264901981918737, 48.8427922572343], [2.264958474728062, 48.84291272614841], [2.2650160133386, 48.843035483150295], [2.265018573420399, 48.843038590916], [2.265111656398649, 48.84311847917756], [2.265210879969089, 48.843196885139925], [2.265303963524924, 48.84327677324051], [2.265403187673353, 48.843355179931514], [2.265413075623937, 48.84335840013785], [2.265608840345939, 48.8433637967409], [2.2657967066387448, 48.84336818941692], [2.26598457432562, 48.84337258180628], [2.266180339160161, 48.84337797747408], [2.26618791267873, 48.843376705453615], [2.266349250336197, 48.84331287737122], [2.266511401885425, 48.84324811961428], [2.266672738748777, 48.843184291088264], [2.266834889495908, 48.84311953288544], [2.266996226927437, 48.84305570392413], [2.267158375510179, 48.84299094526704], [2.267319712147487, 48.84292711586214], [2.2674818599156, 48.84286235765842], [2.267643195758792, 48.842798527809876], [2.267805342737455, 48.842733768260956], [2.267966677786429, 48.84266993796884], [2.2681288239632043, 48.84260517797404], [2.268141485282657, 48.84260467534012], [2.268281834880826, 48.84264650562706], [2.268412913676837, 48.84268367876951], [2.268543994034833, 48.842720850876134], [2.268684344268996, 48.84276268068654], [2.26868719777123, 48.84276382774022], [2.268713411848068, 48.84278047885027], [2.268725448163809, 48.842778977629784], [2.268887227802789, 48.84286356296092], [2.269040065869557, 48.84294645657439], [2.269201846539001, 48.84303104146734], [2.269354684247502, 48.84311393375881], [2.269368384482037, 48.84311533860867], [2.269555530776879, 48.843066057362286], [2.269751617118002, 48.84301596520192], [2.269767759953185, 48.843019253808166], [2.269879341647, 48.84312629259999], [2.269990450383142, 48.84323366565233], [2.270102033005942, 48.84334070331656], [2.270213142657858, 48.84344807614142], [2.270324726197053, 48.84355511357738], [2.270435838127467, 48.843662486183085], [2.2705474225829683, 48.84376952339076], [2.270658534066766, 48.84387689576073], [2.270770119438783, 48.843983932740095], [2.270881231838485, 48.84409130488257], [2.270992818126822, 48.84419834163364], [2.271103931442438, 48.84430571354862], [2.271215518647311, 48.84441275007143], [2.271326634241282, 48.84452012176721], [2.2714382223626, 48.844627158061705], [2.271549337510073, 48.84473452952173], [2.271567085722217, 48.844737362677805], [2.271745932188006, 48.84467333183046], [2.27191782938146, 48.844612087836026], [2.272096676348964, 48.84454805646544], [2.272268571354625, 48.844486811951874], [2.272447417461205, 48.844422780049776], [2.272619311641508, 48.84436153502537], [2.272798156887365, 48.84429750259175], [2.272970050242208, 48.844236257056515], [2.273026632472476, 48.84421373175207], [2.273017737473052, 48.84419623353697], [2.27290574593162, 48.84408093193355], [2.272808280546144, 48.843980165977975], [2.272710815537553, 48.84387939993391], [2.272598825355944, 48.84376409801044], [2.272501361156381, 48.84366333177622], [2.272389371902433, 48.84354802963432], [2.272291908511891, 48.84344726320993], [2.272179920185593, 48.84333196084961], [2.2720729737789718, 48.843225645874234], [2.271960987763153, 48.8431103441937], [2.271854042257876, 48.84300402900146], [2.271742055852751, 48.84288872618545], [2.271635111236142, 48.84278241167569], [2.27163487617283, 48.842782169213265], [2.271522890729266, 48.84266686616917], [2.271420366295251, 48.842557498013605], [2.271308381808879, 48.84244219474549], [2.271205858266943, 48.842332826384045], [2.27109387610043, 48.84221752290028], [2.27099135345056, 48.842108154333], [2.270991184679109, 48.84210804358121], [2.270885979277963, 48.84199840403937], [2.270788039065012, 48.84189814325172], [2.270682834514889, 48.841788503510635], [2.27058489507456, 48.84168824343711], [2.2705804494630533, 48.8416822759823]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 39, "roussel_fabien": 6.0, "nb_emargement": 1201.0, "nb_procuration": 62.0, "nb_vote_blanc": 8.0, "jadot_yannick": 72.0, "le_pen_marine": 61.0, "nb_exprime": 1193.0, "nb_vote_nul": 1.0, "arr_bv": "16", "arthaud_nathalie": 3, "nb_inscrit": 1527.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1202, "quartier_bv": "61", "geo_point_2d": [48.842424874587216, 2.268639220791697], "melenchon_jean_luc": 141.0, "poutou_philippe": 2.0, "macron_emmanuel": 556.0}, "geometry": {"type": "Point", "coordinates": [2.268639220791697, 48.842424874587216]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4a5409d66a215f89a6db4c2179861c6bd9df159e", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 63, "zemmour_eric": 63.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "12-47", "geo_shape": {"coordinates": [[[2.372450360997428, 48.84015615094252], [2.37250601811843, 48.840202289716814], [2.372664699892184, 48.840282919731166], [2.372823570998281, 48.84036404786667], [2.372982253755639, 48.84044467744814], [2.373141124486723, 48.840525805143045], [2.373299808238602, 48.84060643339226], [2.373458681319359, 48.840687560660776], [2.373617366044238, 48.840768189376405], [2.373776238749879, 48.84084931620435], [2.373934924458475, 48.840929944487016], [2.374093798151453, 48.84101107088145], [2.374252484854566, 48.841091697831885], [2.374411360897344, 48.84117282379995], [2.374570048573382, 48.841253451216765], [2.374728924241044, 48.8413345767442], [2.374887612900812, 48.84141520372807], [2.375046490918292, 48.841496328829145], [2.375205180572475, 48.84157695448074], [2.375364058204159, 48.841658080040446], [2.375522748842071, 48.84173870525917], [2.375681628834268, 48.84181982949316], [2.375840320445247, 48.84190045517823], [2.375999200062327, 48.8419815789716], [2.376157892657049, 48.84206220422367], [2.376316773261495, 48.84214332758351], [2.376317220302862, 48.8421435448614], [2.376475358252457, 48.842217311857695], [2.376645214849587, 48.842292767544215], [2.376803353716166, 48.84236653409706], [2.376973211274462, 48.84244198930779], [2.377131349695532, 48.84251575541012], [2.377301209577392, 48.842591210152165], [2.377459348915448, 48.84266497581106], [2.377629208406819, 48.8427404291709], [2.377787350013629, 48.84281419529271], [2.377957210466064, 48.842889648176744], [2.378115351638199, 48.84296341294875], [2.378285214403582, 48.84303886626333], [2.378443356492609, 48.843112630591854], [2.378444511639508, 48.84311311415362], [2.378614374017528, 48.84318856608436], [2.37878729478365, 48.843253135209224], [2.378965510259309, 48.843319935894705], [2.379138431896211, 48.84338450450444], [2.379316649644365, 48.84345130376671], [2.379489572152148, 48.8435158718613], [2.379667789426432, 48.843582671484874], [2.379783202776344, 48.84362576461216], [2.379813384725685, 48.84363693373674], [2.379861783857589, 48.84359124357303], [2.380006266818582, 48.843499754175056], [2.380150710082474, 48.8434085809665], [2.380295190667384, 48.84331709119762], [2.380439634271435, 48.843225918531665], [2.3805841138427972, 48.8431344283988], [2.380728556445876, 48.84304325446977], [2.380873035003794, 48.84295176397301], [2.381017475232705, 48.84286058967319], [2.381161954128812, 48.842769099718886], [2.381306393346077, 48.842677925055284], [2.381450869876829, 48.84258643383071], [2.381595309444953, 48.8424952588104], [2.381739784962179, 48.84240376722198], [2.381884223518663, 48.84231259183789], [2.382028698011811, 48.84222110078487], [2.382173134194176, 48.84212992503001], [2.382317609046865, 48.8420384327208], [2.382462044217609, 48.841947256602225], [2.382606516694307, 48.841855763922126], [2.3827509522159183, 48.84176458744683], [2.382895423668573, 48.84167309530217], [2.383039858178471, 48.84158191846312], [2.383184328628285, 48.84149042505529], [2.383328760764211, 48.8413992478455], [2.383473231562909, 48.84130775408077], [2.383617662676604, 48.84121657740658], [2.383762131099362, 48.841125083270995], [2.38390656257457, 48.84103390534082], [2.384051029983958, 48.84094241084135], [2.384195460447478, 48.84085123254742], [2.384339926843403, 48.84075973768415], [2.384484354922376, 48.840668559918804], [2.384628821667194, 48.84057706469867], [2.384773248745224, 48.84048588567032], [2.3849177131141452, 48.84039439007932], [2.385062140543056, 48.84030321069429], [2.385206603898636, 48.84021171473946], [2.385351030305384, 48.84012053589002], [2.385495492647428, 48.84002903957136], [2.385639916690801, 48.8399378594519], [2.385784379381847, 48.83984636277639], [2.385928802413678, 48.83975518229329], [2.386073262728975, 48.83966368524695], [2.386217686101006, 48.83957250530644], [2.386362145402888, 48.839481007896296], [2.386506567774082, 48.83938982669281], [2.386651026062454, 48.83929832891884], [2.386795447422124, 48.83920714735167], [2.3868315320967453, 48.83918448043473], [2.386831213196435, 48.839180665504834], [2.386830770201563, 48.83917535429965], [2.386789939710176, 48.83915624310372], [2.386650990310212, 48.83906355205829], [2.386509844453554, 48.838970337839186], [2.386370897398988, 48.838877647359276], [2.3862297525466483, 48.83878443279418], [2.386090806496334, 48.83869174107419], [2.385949662637715, 48.83859852706242], [2.385810716218767, 48.838505834994685], [2.385669573364349, 48.838412620636916], [2.385530629301447, 48.838319928235414], [2.385389487451424, 48.83822671353166], [2.385250544382065, 48.838134020789425], [2.385109402184554, 48.838040804833426], [2.384970460098225, 48.8379481126497], [2.384829320267383, 48.83785489635471], [2.384690379185395, 48.83776220293099], [2.384549240348111, 48.837668987189325], [2.384410298897377, 48.83757629341783], [2.384269161064461, 48.837483077330184], [2.384130221969612, 48.83739038322501], [2.383989085140955, 48.83729716679138], [2.383850147039713, 48.837204472345455], [2.383709011215305, 48.837111255565894], [2.383691715848982, 48.83711017445558], [2.383652960620819, 48.83712756452758], [2.383611997742268, 48.83714799295403], [2.383594386818603, 48.83714732750851], [2.383452799115011, 48.83705827124649], [2.383322178421213, 48.83697723701695], [2.383180591644709, 48.83688818041915], [2.3830499718109612, 48.83680714498072], [2.382919352383243, 48.83672610939378], [2.382777768339445, 48.83663705230622], [2.382647148398889, 48.83655601640266], [2.382505565282163, 48.83646695897936], [2.382504837664734, 48.83645443157029], [2.382635188048073, 48.83635884182189], [2.382764593155294, 48.83626365266139], [2.382894942585209, 48.8361680626136], [2.383024345382135, 48.83607287314886], [2.383154695220864, 48.835977282808756], [2.3832840970698372, 48.83588209304673], [2.383414445955254, 48.83578650240728], [2.383543846856284, 48.835691312348025], [2.383674194788296, 48.83559572140919], [2.383803594741388, 48.83550053105269], [2.383933941719901, 48.835404939814524], [2.384063340725065, 48.8353097491608], [2.384193685387981, 48.835214157616214], [2.384323084807531, 48.83511896667234], [2.38445342851707, 48.83502337482842], [2.3845828269887, 48.83492818358728], [2.384612606258869, 48.83487872509257], [2.384579340489042, 48.834866813616614], [2.384486378628924, 48.834816737945275], [2.384339994753143, 48.83473529885433], [2.384188355532447, 48.834653615771565], [2.384041973942535, 48.834572176310985], [2.383890335663354, 48.83449049283853], [2.383743954997213, 48.834409053001416], [2.383592317670077, 48.83432736823991], [2.383445936554685, 48.83424592891849], [2.383294301531444, 48.83416424377429], [2.383147921339711, 48.83408280407625], [2.3829962858957, 48.834001118535355], [2.382849907989794, 48.83391967846777], [2.382698273487287, 48.833837992537156], [2.38255189514286, 48.83375655208596], [2.382400262944019, 48.833674865772636], [2.3822538855232382, 48.83359342494492], [2.382102254265988, 48.83351173824191], [2.381955877768848, 48.83343029703756], [2.381804246090724, 48.83334860993784], [2.38165787187948, 48.83326716836402], [2.381506241142942, 48.83318548087458], [2.381359866493073, 48.83310403891716], [2.381208238060168, 48.83302235104507], [2.381061864333926, 48.832940908711066], [2.380989544481681, 48.8328863286582], [2.380955884554687, 48.83290388368278], [2.380864484580918, 48.83297683495946], [2.380735823036391, 48.83308035161472], [2.380609216036615, 48.83318140280568], [2.380480553480381, 48.83328491916743], [2.380353945488828, 48.8333859700698], [2.380225280558517, 48.833489486130965], [2.380098672937544, 48.83359053675165], [2.3799700069954, 48.83369405251933], [2.37984339702057, 48.833795102844306], [2.379714731428757, 48.8338986183255], [2.379588120472928, 48.833999667462486], [2.379459453858668, 48.83410318354948], [2.379332841911031, 48.83420423239775], [2.37920417293334, 48.834307747284875], [2.379077561345562, 48.83440879675081], [2.379077476071203, 48.83440886466001], [2.378948807443495, 48.83451237926054], [2.378827802522372, 48.83461089526529], [2.37869913153799, 48.834714409571475], [2.378578127038323, 48.834812925312946], [2.378449455059446, 48.834916439331835], [2.378328448256632, 48.835014954795874], [2.378199776645555, 48.83511846853457], [2.378078768901884, 48.835216983728195], [2.377950094933989, 48.83532049717253], [2.377829086260184, 48.835419011196514], [2.37770041265998, 48.83552252436064], [2.377579403034672, 48.8356210390135], [2.377450727077723, 48.83572455188327], [2.377329716511427, 48.835823066265746], [2.3772010409221602, 48.8359265788553], [2.377080029415075, 48.83602509296737], [2.377079595818102, 48.83602546484533], [2.377000303378889, 48.83609739054136], [2.376884909427789, 48.8362029856276], [2.376805616449898, 48.836274911183175], [2.376746977637751, 48.836328570271846], [2.376717338813709, 48.83634439575531], [2.376710855818458, 48.836376584431825], [2.376654099803956, 48.836428520205416], [2.376542613362406, 48.8365311359182], [2.376427217513154, 48.83663673142121], [2.376315728817386, 48.83673934689633], [2.376200333409921, 48.83684494216791], [2.376088843822066, 48.8369475574124], [2.375973447494037, 48.837053152445506], [2.375861957014287, 48.837155767459386], [2.375746558403324, 48.837261362246835], [2.375635068393831, 48.83736397703727], [2.37551966886228, 48.83746957158612], [2.375408177950104, 48.83757218704529], [2.375292777508732, 48.83767778045628], [2.375181285704436, 48.83778039568487], [2.375065884342461, 48.83788598885732], [2.374954391646237, 48.83798860385531], [2.374838989363651, 48.8380941967892], [2.3748270804248612, 48.838095317212215], [2.374776852630893, 48.8381384723868], [2.374776827817147, 48.83813849653989], [2.374655124697146, 48.838248420065966], [2.374534748914794, 48.83835782067527], [2.374413043409885, 48.83846774392636], [2.374292666612821, 48.83857714427061], [2.374172289310545, 48.838686544482975], [2.374050583635986, 48.83879646734008], [2.373930205319088, 48.838905867287366], [2.373808498621884, 48.83901578987661], [2.37368811929035, 48.839125189558814], [2.37356641157049, 48.83923511188016], [2.37344603122431, 48.83934451129725], [2.373324322481785, 48.83945443335072], [2.373203941120949, 48.83956383250272], [2.3730822313557463, 48.839673754288285], [2.373081485460519, 48.839674371838946], [2.372930367679546, 48.83978901208314], [2.372796352886692, 48.83988890861405], [2.372662336228529, 48.839988804079425], [2.372511216614016, 48.84010344376185], [2.372458051720241, 48.84014307228635], [2.372450360997428, 48.84015615094252]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 47, "roussel_fabien": 18.0, "nb_emargement": 1054.0, "nb_procuration": 53.0, "nb_vote_blanc": 11.0, "jadot_yannick": 66.0, "le_pen_marine": 99.0, "nb_exprime": 1042.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 0, "nb_inscrit": 1446.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1058, "quartier_bv": "47", "geo_point_2d": [48.83867918941721, 2.3798244061348557], "melenchon_jean_luc": 384.0, "poutou_philippe": 5.0, "macron_emmanuel": 289.0}, "geometry": {"type": "Point", "coordinates": [2.3798244061348557, 48.83867918941721]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1fb7d2a297f126b627c26ad928b2e64ff8103e0f", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 117, "zemmour_eric": 108.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "15-56", "geo_shape": {"coordinates": [[[2.295752186267317, 48.83456526821059], [2.295752310465986, 48.83457382289224], [2.295849992934059, 48.834677223475445], [2.295948325450834, 48.8347804362267], [2.296046008707147, 48.83488383573143], [2.296144342001686, 48.83498704830248], [2.296242026021857, 48.83509044852734], [2.296340360094373, 48.835193660918186], [2.29643804490259, 48.835297060064555], [2.296536379752988, 48.83540027227519], [2.296634065337321, 48.8355036712424], [2.296732400953476, 48.835606884172115], [2.296732961908594, 48.835614887397696], [2.296750358870459, 48.83562342670679], [2.296847636594907, 48.835722582530394], [2.296942854242022, 48.83581914945057], [2.297040132697895, 48.83591830510025], [2.297135351059144, 48.83601487185028], [2.297232630234325, 48.836114028225374], [2.297327849309713, 48.83621059480529], [2.297329155730681, 48.83621171590369], [2.2974517321408, 48.836301321849], [2.297571079239511, 48.83638835987246], [2.297690428099012, 48.836475397778], [2.297813005750235, 48.836565003332026], [2.297932354055917, 48.83665204097445], [2.2980549325263, 48.83674164716571], [2.298055558935102, 48.83674207444617], [2.298081052580257, 48.8367504685985], [2.298097151060722, 48.83673639615182], [2.298267754328053, 48.83668774189119], [2.298437148417878, 48.836640128963225], [2.298607749690445, 48.83659147420554], [2.298777143156963, 48.83654386079196], [2.298947745171522, 48.836495204653836], [2.299117136652197, 48.83644759074674], [2.299147434350524, 48.836438949926716], [2.299159540651212, 48.836440375316144], [2.299176588573765, 48.83643054163239], [2.299316892200447, 48.83639052669001], [2.299482586765872, 48.83634321798017], [2.2996531874652533, 48.8362945608272], [2.299818881420307, 48.83624725164746], [2.29998948147961, 48.83619859490996], [2.300155174836469, 48.83615128436105], [2.300325774267773, 48.83610262713974], [2.300491467014453, 48.83605531612093], [2.300662065817757, 48.836006658415826], [2.300827757954052, 48.83595934692708], [2.300835686235297, 48.83594925553998], [2.300800849981856, 48.83583903522145], [2.300768477915661, 48.83572865121056], [2.300733641939695, 48.835618431750085], [2.300701271515023, 48.8355080477072], [2.300708312662295, 48.83549837564224], [2.300809557777811, 48.83546328398757], [2.300917233775838, 48.83542561085853], [2.300922761288297, 48.8354132956696], [2.300851052936317, 48.83532811960187], [2.3007358087189322, 48.835191850989844], [2.300664100964998, 48.83510667569245], [2.300640454686854, 48.83507871441518], [2.300633353877978, 48.835062881695634], [2.300623050718763, 48.835060306803356], [2.300531453826323, 48.834951999246435], [2.300446047020562, 48.83485218462194], [2.300433465394506, 48.83484762675803], [2.300303548709983, 48.83485217224003], [2.3001753173530712, 48.8348584353526], [2.300163235562369, 48.83485470241229], [2.300042152737676, 48.83474305882803], [2.2999205066484842, 48.83463099180251], [2.299799424863188, 48.83451934795022], [2.299677781168073, 48.83440728156278], [2.299556700422361, 48.834295637442445], [2.29943505642082, 48.83418356987845], [2.299313976714585, 48.83407192549011], [2.299192335107179, 48.833959858564135], [2.299177931443783, 48.83395496251447], [2.299158878191115, 48.83396404248111], [2.299078161308814, 48.83400227857251], [2.298982534207527, 48.83404744414111], [2.298963101217563, 48.834044944202155], [2.29887032242091, 48.83394832288528], [2.298778151811867, 48.833852797791984], [2.298685373712002, 48.83375617541574], [2.2985932051438738, 48.83366065017154], [2.298575757887221, 48.833657393746556], [2.298399508014751, 48.83371397126612], [2.298225240718112, 48.83376988562672], [2.298048991447229, 48.83382646263209], [2.297874723398556, 48.833882376476375], [2.297698472004645, 48.83393895295154], [2.297524204566201, 48.83399486628753], [2.29734795241142, 48.8340514422405], [2.297173682858784, 48.83410735505218], [2.296997431305503, 48.83416393049094], [2.296823161000738, 48.83421984278628], [2.296646907324527, 48.834276417694845], [2.296472636267734, 48.83433232947386], [2.296296383192931, 48.834388903868266], [2.296122111384215, 48.83444481513095], [2.295947839201556, 48.83450072613691], [2.295771583625639, 48.834557299741476], [2.295752186267317, 48.83456526821059]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 56, "roussel_fabien": 19.0, "nb_emargement": 1425.0, "nb_procuration": 67.0, "nb_vote_blanc": 10.0, "jadot_yannick": 119.0, "le_pen_marine": 89.0, "nb_exprime": 1409.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1781.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1425, "quartier_bv": "57", "geo_point_2d": [48.83520661375958, 2.2984295730661684], "melenchon_jean_luc": 312.0, "poutou_philippe": 9.0, "macron_emmanuel": 572.0}, "geometry": {"type": "Point", "coordinates": [2.2984295730661684, 48.83520661375958]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e8cac7daca98d17c2e0175e99d675d8438274fac", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 22, "zemmour_eric": 38.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "10-13", "geo_shape": {"coordinates": [[[2.375118970063018, 48.87378551602246], [2.375112890980746, 48.873758678705585], [2.375108339691617, 48.873737001654334], [2.375079504174833, 48.87371382903904], [2.375006352743328, 48.87360630212461], [2.374933834623125, 48.873499877448296], [2.374860683782017, 48.873392351323275], [2.374788166257319, 48.87328592653808], [2.374715017391487, 48.87317839941106], [2.374642500462284, 48.873071974516954], [2.37456935082353, 48.87296444817226], [2.374496834489817, 48.872858023169314], [2.374492545440557, 48.87285449874257], [2.374461078346877, 48.87284174540039], [2.37444277461017, 48.87285588173761], [2.374282283001576, 48.8728740701521], [2.374057513140903, 48.87290009181207], [2.37389701989827, 48.872918279702155], [2.373672249643442, 48.87294430153697], [2.373511756130167, 48.872962488909835], [2.373504831028143, 48.87296208663556], [2.373309692399947, 48.87291574671813], [2.373112567643519, 48.87286918563263], [2.372917431075635, 48.872822845079014], [2.372720307010507, 48.87277628424292], [2.372525171139744, 48.872729943045925], [2.3723280477876783, 48.8726833806607], [2.372132912613845, 48.872637038820365], [2.37193578996412, 48.872590475785245], [2.371740655487325, 48.87254413330157], [2.371543533539849, 48.87249756961657], [2.371527060445458, 48.872501620974674], [2.371426463133962, 48.8726193563977], [2.371326052295553, 48.87273685348193], [2.371225454064449, 48.872854589610256], [2.371125042319142, 48.872972086500866], [2.371024441827033, 48.873089821528716], [2.370924030527257, 48.87320731913211], [2.370823429126466, 48.87332505396593], [2.37072301693064, 48.87344255047641], [2.37072291317424, 48.87344267493862], [2.370658518330023, 48.87352088528108], [2.37059386072647, 48.87359916165292], [2.370529465495011, 48.873677371914845], [2.370464807492394, 48.87375564910516], [2.370446725056209, 48.87376523355436], [2.370454595382708, 48.873779145398316], [2.370480488205397, 48.87380027745849], [2.370611237873311, 48.87390721428844], [2.370737273693085, 48.87401007197898], [2.370868024403971, 48.8741170094074], [2.370994059886125, 48.87421986590159], [2.371124813014187, 48.87432680303633], [2.371250849500227, 48.87442966013987], [2.371258265875615, 48.8744327505375], [2.371461482391052, 48.87446497160599], [2.371664863214507, 48.87449738115063], [2.37186807888124, 48.87452960062051], [2.372071460210046, 48.87456200947249], [2.372274676369603, 48.87459422914955], [2.372478058203757, 48.874626637308786], [2.372486049265299, 48.87463024416202], [2.372611295915422, 48.87474903904941], [2.372736738789277, 48.87486834294214], [2.372861986594536, 48.874987136642346], [2.372987429252698, 48.87510644023949], [2.373112678202267, 48.87522523365177], [2.373238123371344, 48.8753445369676], [2.3732862383793982, 48.87536788197643], [2.37329563569935, 48.87536341022281], [2.3733280376973003, 48.875335279611065], [2.373440730947098, 48.875235665714555], [2.373564432826721, 48.87512827161785], [2.37367712517642, 48.87502865748014], [2.373800826066172, 48.87492126401827], [2.373913517515882, 48.874821649639316], [2.374037217437399, 48.874714255013735], [2.374149907987129, 48.874614640393595], [2.374273606929604, 48.87450724550361], [2.374386296579361, 48.874407630642196], [2.374509994532007, 48.87430023638708], [2.3746226832818023, 48.874200621284466], [2.374746380266229, 48.87409322586567], [2.374859068116069, 48.87399361052183], [2.374982764121483, 48.87388621483858], [2.375057579668781, 48.87382007804399], [2.375095451071378, 48.873786599253584], [2.375118970063018, 48.87378551602246]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 13, "roussel_fabien": 16.0, "nb_emargement": 1201.0, "nb_procuration": 61.0, "nb_vote_blanc": 19.0, "jadot_yannick": 92.0, "le_pen_marine": 48.0, "nb_exprime": 1179.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1665.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1202, "quartier_bv": "40", "geo_point_2d": [48.87376910284764, 2.3728155713340358], "melenchon_jean_luc": 630.0, "poutou_philippe": 8.0, "macron_emmanuel": 268.0}, "geometry": {"type": "Point", "coordinates": [2.3728155713340358, 48.87376910284764]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a4b0c3564670885c4a38f569e0214b99cb98deeb", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 45, "zemmour_eric": 93.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "19-63", "geo_shape": {"coordinates": [[[2.378703797998635, 48.89253576231712], [2.37866180117587, 48.89249878293389], [2.378535682603902, 48.892406605626725], [2.37840963144343, 48.89231453104906], [2.378283512400392, 48.892222353453775], [2.378157463495707, 48.892130278602274], [2.378031345345396, 48.892038100725934], [2.377905295969001, 48.89194602558644], [2.377779180075099, 48.89185384743615], [2.377653131590681, 48.89176177201575], [2.377527016578736, 48.89166959448361], [2.377400968997037, 48.891577517883086], [2.377274854877891, 48.891485340069906], [2.377148808188056, 48.8913932631885], [2.377022693597827, 48.8913010850872], [2.376896647789193, 48.89120900882411], [2.376894293849585, 48.89120661247604], [2.376835322456321, 48.89111846264594], [2.376767046374007, 48.89100326583931], [2.3767080754157073, 48.89091511682949], [2.37666184674624, 48.890837116402196], [2.376639869439459, 48.89082555094101], [2.376608083835816, 48.89083150175103], [2.376492977367337, 48.89093511936441], [2.376371125810507, 48.89104526857274], [2.376256018397908, 48.89114888593812], [2.37613416446509, 48.89125903577604], [2.376019056119131, 48.89136265199421], [2.375897202548425, 48.891472801576626], [2.375782093258331, 48.89157641754677], [2.375660237322376, 48.8916865668595], [2.375545127088133, 48.89179018258171], [2.375423270150594, 48.89190033163182], [2.3753081589721923, 48.89200394710606], [2.375186302396751, 48.892114095900666], [2.375071190274185, 48.89221771112687], [2.374949331333449, 48.89232785965178], [2.374834218266705, 48.89243147463001], [2.374712359688058, 48.89254162289939], [2.374597245666329, 48.89264523852891], [2.374475384733156, 48.892755385629286], [2.374360269767226, 48.89285900101082], [2.37423840783232, 48.89296914784856], [2.374123291922179, 48.893072762982044], [2.374001430338746, 48.89318291046358], [2.373886313495199, 48.89328652444982], [2.37376444954629, 48.893396671661584], [2.373649331758418, 48.89350028539977], [2.373646706159232, 48.893505962558045], [2.37364747551679, 48.89353701647331], [2.373651007536118, 48.89359476223792], [2.373665845626045, 48.89360335729713], [2.373874314486818, 48.89359111236834], [2.374079620872561, 48.89357859873797], [2.374288089536988, 48.89356635308861], [2.374493394361814, 48.89355383874143], [2.374701864193513, 48.893541592378575], [2.374907168821246, 48.89352907732179], [2.375115638456474, 48.893516830238354], [2.375320942887103, 48.89350431447185], [2.37552941232595, 48.893492066667875], [2.375734716559465, 48.89347955019174], [2.375943185801715, 48.89346730166716], [2.376148489838103, 48.89345478448138], [2.37635695752002, 48.893442535229106], [2.376562262723101, 48.893430017340776], [2.376569756758565, 48.89343097456009], [2.376589634736693, 48.893435821052485], [2.376681863081484, 48.89346710012252], [2.376685350281007, 48.89350449036809], [2.376770616345656, 48.89350783535835], [2.37680705884397, 48.89350926517419], [2.376826496708955, 48.89349573445402], [2.376868163637128, 48.89347442608168], [2.376875946886758, 48.89347378309982], [2.376908115810518, 48.89344881272614], [2.377021003097613, 48.8933910819215], [2.377172829645997, 48.8933142712424], [2.377327382896686, 48.89323523164436], [2.377479209902443, 48.89315842057296], [2.377633760861581, 48.89307938056122], [2.377785586960886, 48.89300256909045], [2.377940138356124, 48.89292352867916], [2.378091962195906, 48.89284671590272], [2.378246512652682, 48.89276767598402], [2.37839833558602, 48.89269086280821], [2.378552885125818, 48.89261182158361], [2.378671485943958, 48.8925518174903], [2.378703797998635, 48.89253576231712]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 63, "roussel_fabien": 17.0, "nb_emargement": 1070.0, "nb_procuration": 43.0, "nb_vote_blanc": 11.0, "jadot_yannick": 61.0, "le_pen_marine": 60.0, "nb_exprime": 1050.0, "nb_vote_nul": 9.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1449.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1070, "quartier_bv": "73", "geo_point_2d": [48.892513445526106, 2.376285868566798], "melenchon_jean_luc": 378.0, "poutou_philippe": 19.0, "macron_emmanuel": 328.0}, "geometry": {"type": "Point", "coordinates": [2.376285868566798, 48.892513445526106]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ab02072e6a777f8d01ae81fa0dd156b09f7bc152", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 95, "zemmour_eric": 85.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "5-5", "geo_shape": {"coordinates": [[[2.34494310122348, 48.84495127448424], [2.3449411711550843, 48.844967040511285], [2.344958664673785, 48.8450044346055], [2.344963092672752, 48.84502973809531], [2.3449658585904762, 48.84503300802778], [2.345047643836687, 48.84509468610696], [2.34512114663073, 48.84515239667412], [2.345160312699231, 48.84517962337285], [2.34518519963104, 48.84516630065498], [2.345364763959533, 48.84512058223817], [2.345578058020146, 48.845057325254636], [2.345578848321803, 48.84505711013363], [2.345758413302611, 48.84501139022966], [2.34596748108027, 48.84495952143216], [2.346147045372626, 48.844913801840164], [2.3463561123833, 48.8448619314597], [2.346535675998489, 48.844816211280396], [2.34674474221961, 48.84476434111554], [2.346924305157629, 48.84471862034897], [2.346924447311384, 48.844718585150524], [2.347128905369787, 48.84466957161103], [2.347308467644374, 48.844623850263915], [2.347512923607527, 48.84457483605649], [2.347692485218822, 48.84452911412918], [2.347896941800359, 48.84448010016803], [2.348076501397065, 48.844434376753696], [2.348082541219963, 48.844433883540454], [2.348272387762213, 48.84444670945346], [2.3484519112089792, 48.8444592099339], [2.348641757923141, 48.84447203615974], [2.348821282908286, 48.84448453609308], [2.349000806605765, 48.84449703664868], [2.349190653604027, 48.84450986110383], [2.349238946607863, 48.84452214827035], [2.349255759614278, 48.844511260324474], [2.349268864925785, 48.84450277418834], [2.349256209237948, 48.84447110449259], [2.349288365787308, 48.8443345620973], [2.349320771397399, 48.844198684760954], [2.34935292623587, 48.84406214320685], [2.349385331508159, 48.843926265819874], [2.349417487383174, 48.84378972332317], [2.349449892317865, 48.8436538458855], [2.349482046481816, 48.843517304230005], [2.349514451078818, 48.843381426741644], [2.349546604916894, 48.843244884136155], [2.349579009176109, 48.843109006597146], [2.349611164028272, 48.84297246484765], [2.349643567949805, 48.84283658725797], [2.349675721113491, 48.842700044551094], [2.349708124697451, 48.84256416691078], [2.34974027887512, 48.84242762505994], [2.349772682121408, 48.84229174736892], [2.349772771364395, 48.84228939961734], [2.349757123845027, 48.8421874976801], [2.349736311414258, 48.84205803815048], [2.349720665409333, 48.841956135295476], [2.349699853161407, 48.841826675732726], [2.349676251632836, 48.84168282286393], [2.349655439604466, 48.84155336326173], [2.349641397136881, 48.84146776823343], [2.349668202400693, 48.84146448468708], [2.349653421661166, 48.84144307862147], [2.349665047624097, 48.84142925475163], [2.349636666368592, 48.84141492288665], [2.349627107557608, 48.841356665898346], [2.349621136604501, 48.841317056934294], [2.349621072185037, 48.841315667966384], [2.349627332567805, 48.84124287422163], [2.34963672603756, 48.84111040942195], [2.349648697098248, 48.84100679222975], [2.349648771499256, 48.84100618016738], [2.349665134720023, 48.840912763147124], [2.34967710430527, 48.84080914682561], [2.349693467413398, 48.84071572978498], [2.349700712799196, 48.84066542545998], [2.34969719054534, 48.840644470910505], [2.349654730320521, 48.840641428665826], [2.349565508033413, 48.840642472485676], [2.3494485194879893, 48.840641735592065], [2.349436272538122, 48.840645937371534], [2.349436033830475, 48.8406710652113], [2.3494375249687423, 48.84069230731143], [2.34943753343135, 48.840729943953015], [2.349437544737532, 48.840730566374525], [2.349432371568183, 48.84087932365507], [2.349426854696633, 48.84101860964283], [2.349421681468185, 48.841167366884484], [2.349416164537578, 48.84130665283584], [2.34941064893995, 48.84144593877696], [2.349405474260363, 48.84159469595358], [2.349396089885674, 48.8416030368768], [2.349210976148322, 48.84164301395951], [2.34902956434606, 48.84168210254371], [2.3488444514204723, 48.84172207816456], [2.348663039068037, 48.841761166190125], [2.3484779242068052, 48.841801142132866], [2.348296511304397, 48.84184022959985], [2.348111395892482, 48.84188020407332], [2.347929982439906, 48.841919290981714], [2.3479225306927383, 48.8419232093607], [2.347824852684218, 48.84203054652854], [2.347734139270599, 48.84213344994897], [2.347636460491342, 48.84224078604349], [2.347545747702236, 48.84234368930913], [2.347455033192537, 48.84244659248902], [2.347357354614104, 48.84255392833298], [2.347266639366418, 48.842656831350624], [2.347168958643584, 48.84276416701311], [2.347168365039558, 48.84276478163598], [2.3470517537620292, 48.842875373905486], [2.346937112177658, 48.84298434266383], [2.34682049856684, 48.84309493377939], [2.346705856016015, 48.843203902294654], [2.34658924141196, 48.843314494062376], [2.346474597905945, 48.84342346143527], [2.346357983682533, 48.843534052963236], [2.346243337836248, 48.84364302098496], [2.346126722642032, 48.84375361136643], [2.346012077191786, 48.843862579152486], [2.345895459641868, 48.8439731701786], [2.345780813236413, 48.844082136822344], [2.345778481614774, 48.84408616940134], [2.34575530075977, 48.844210578164294], [2.345734152236536, 48.844336226552386], [2.345710971164492, 48.84446063527885], [2.345689822444204, 48.844586282731626], [2.345666641143827, 48.84471069232092], [2.345645492215194, 48.84483633973767], [2.345635056501111, 48.84484410350316], [2.345465519411016, 48.84487030529153], [2.345309759076519, 48.844894926509376], [2.345140221657656, 48.84492112783558], [2.344984461017591, 48.844945748628774], [2.34494310122348, 48.84495127448424]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 5, "roussel_fabien": 26.0, "nb_emargement": 1331.0, "nb_procuration": 91.0, "nb_vote_blanc": 13.0, "jadot_yannick": 104.0, "le_pen_marine": 48.0, "nb_exprime": 1317.0, "nb_vote_nul": 1.0, "arr_bv": "05", "arthaud_nathalie": 3, "nb_inscrit": 1661.0, "sec_bv": "05", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1331, "quartier_bv": "19", "geo_point_2d": [48.843348931594015, 2.347960931950205], "melenchon_jean_luc": 390.0, "poutou_philippe": 9.0, "macron_emmanuel": 494.0}, "geometry": {"type": "Point", "coordinates": [2.347960931950205, 48.843348931594015]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a984fa5ee07aa6a5e72532bcf5f13e7c931da1ab", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 52, "zemmour_eric": 75.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "11-55", "geo_shape": {"coordinates": [[[2.392773674003311, 48.850550918529414], [2.392763539286476, 48.850545406226324], [2.392732335290055, 48.85048313857719], [2.392701065560507, 48.85042640070091], [2.392687981126554, 48.85042048309958], [2.392481461434916, 48.85042325510733], [2.392279505065385, 48.85042607421966], [2.392256531574369, 48.85042268658379], [2.392245105317157, 48.85043456025413], [2.392218808268831, 48.85051971856679], [2.392193764602142, 48.85060174629356], [2.392189585418472, 48.85060661664106], [2.392050529771156, 48.8506902568194], [2.391914408246382, 48.85077233428028], [2.39177828629291, 48.850854411580215], [2.391639229324105, 48.850938051261934], [2.3915031065148282, 48.85102012733731], [2.391364048662132, 48.85110376668674], [2.391227924976046, 48.85118584333609], [2.3910888662394543, 48.851269482353246], [2.391076350712635, 48.8512715555197], [2.390908502972275, 48.85124358572292], [2.390747360923266, 48.85121649612487], [2.390586220404523, 48.85118940631607], [2.3904183731919453, 48.85116143582968], [2.390393857919806, 48.8511544596637], [2.390379027609442, 48.85117104370145], [2.390353946850094, 48.85121368369946], [2.3903039000488793, 48.851298582934675], [2.390231037782522, 48.85142245170589], [2.390180991943291, 48.851507350880745], [2.39017722611295, 48.85151088142913], [2.390024391350963, 48.85159845199923], [2.389870271968293, 48.85168838021485], [2.389717436180308, 48.851775949479595], [2.38956331710579, 48.85186587729247], [2.38956018538444, 48.85186855307428], [2.389488328450024, 48.8519622280464], [2.38941552716788, 48.85205715364439], [2.389343669702905, 48.85215082941303], [2.389270867904185, 48.8522457540076], [2.389199011281838, 48.85233942968042], [2.389126208945564, 48.85243435507018], [2.389123660600139, 48.852436669580655], [2.389013370636199, 48.85250906991209], [2.3888961095792682, 48.85258506881301], [2.388785818974627, 48.85265746982427], [2.38866855862519, 48.85273346759969], [2.388664152683765, 48.85274124426049], [2.388679994835956, 48.85275431362762], [2.388744293126902, 48.85281308374022], [2.388821791333934, 48.85288340684897], [2.388823090647998, 48.852892540098125], [2.388771663249185, 48.85296431270345], [2.388706859827256, 48.853050230286236], [2.388714754791773, 48.853062770695885], [2.388888019192298, 48.85310083939601], [2.389090434015186, 48.85314526039834], [2.389263698964455, 48.85318332855164], [2.389466114428026, 48.853227748915224], [2.389639379925931, 48.85326581652167], [2.389841796030285, 48.85331023624643], [2.3900150620769223, 48.85334830330609], [2.390217478821847, 48.85339272239201], [2.390390745406792, 48.85343078980412], [2.390593162792387, 48.853475208251254], [2.390766429936475, 48.85351327421726], [2.390790112621133, 48.85351987371616], [2.390806802146523, 48.853512286331785], [2.390888358543227, 48.853432688140906], [2.39096911607615, 48.853361600872326], [2.390970388010084, 48.853360050571006], [2.391065067990122, 48.85321153617785], [2.3911643661984963, 48.853060328253946], [2.391177895354677, 48.85305493623758], [2.391367100585905, 48.853064354496176], [2.391556895386937, 48.853073474170806], [2.391746100753974, 48.85308289183001], [2.391935895699346, 48.85309201000405], [2.392125101202182, 48.853101427063756], [2.392314896270995, 48.85311054553574], [2.392504103282784, 48.85311996110366], [2.392693898485422, 48.85312907897434], [2.392707503154588, 48.85312350999733], [2.392782695799268, 48.85300203413086], [2.392854304669393, 48.85288610250365], [2.392925914583652, 48.852770170828464], [2.393001106209204, 48.85264869478614], [2.393072714107946, 48.85253276299137], [2.393147905048706, 48.852411286830836], [2.393140859566602, 48.852399678250485], [2.392931222605063, 48.85233771976646], [2.392723027389396, 48.85227628085661], [2.392513391421103, 48.85221432163367], [2.392305197191099, 48.852152881989966], [2.3922974394149312, 48.85214277255423], [2.392339183381753, 48.852015294679916], [2.392380613116956, 48.85188868485443], [2.392422356676764, 48.85176120692195], [2.392463784645134, 48.851634597031854], [2.392505527808418, 48.8515071181419], [2.392546956735438, 48.85138050820101], [2.392588699481132, 48.85125303015226], [2.3926301280040683, 48.85112642015365], [2.392671868980145, 48.85099894203983], [2.392713297109486, 48.85087233108419], [2.392755039041294, 48.850744852919206], [2.3927964667560833, 48.85061824280513], [2.392796071003708, 48.850613494914455], [2.392785423429553, 48.850592466182846], [2.392772315872176, 48.85056630854955], [2.392773674003311, 48.850550918529414]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 55, "roussel_fabien": 24.0, "nb_emargement": 1401.0, "nb_procuration": 100.0, "nb_vote_blanc": 10.0, "jadot_yannick": 159.0, "le_pen_marine": 56.0, "nb_exprime": 1387.0, "nb_vote_nul": 4.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1723.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1401, "quartier_bv": "44", "geo_point_2d": [48.85220254271854, 2.39106950468862], "melenchon_jean_luc": 484.0, "poutou_philippe": 5.0, "macron_emmanuel": 444.0}, "geometry": {"type": "Point", "coordinates": [2.39106950468862, 48.85220254271854]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "7d8057a03ef49e8973f14cd436826ccb12ec270b", "fields": {"lassalle_jean": 23.0, "pecresse_valerie": 79, "zemmour_eric": 83.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "14-49", "geo_shape": {"coordinates": [[[2.31400478574274, 48.830585730713274], [2.314014500873847, 48.830578003238536], [2.31417434511792, 48.83050822811278], [2.314331905722233, 48.83043845856609], [2.314491749113615, 48.830368683007435], [2.314649310233455, 48.830298913041744], [2.314809152772148, 48.830229137050196], [2.314966711683376, 48.83015936664989], [2.315126553369383, 48.830089590225434], [2.315284112796134, 48.830019819406104], [2.315443952267394, 48.82995004254097], [2.315601510847605, 48.82988027129481], [2.31576135082824, 48.82981049400463], [2.31591890856191, 48.82974072233165], [2.316078746327811, 48.82967094460077], [2.316236303214943, 48.82960117250099], [2.316393859680443, 48.8295314001893], [2.316553696168764, 48.8294616218107], [2.316711251787628, 48.8293918490722], [2.31687108878542, 48.829322070268496], [2.317028642195708, 48.829252297095415], [2.317188478340823, 48.82918251785885], [2.317218906145881, 48.82917451624391], [2.317218641333309, 48.829163324688004], [2.317105450862731, 48.8290870687223], [2.316966610824893, 48.82899558630443], [2.316825141924984, 48.82890027893759], [2.316686302876475, 48.82880879617904], [2.316544836358004, 48.82871348847251], [2.316405998298813, 48.82862200537336], [2.316264532799637, 48.828526697319404], [2.316125694367636, 48.82843521387185], [2.315984229875951, 48.82833990636974], [2.315845393807177, 48.82824842169], [2.315703930334767, 48.828153113840514], [2.315565095255296, 48.82806162882015], [2.315423631440046, 48.82796632061541], [2.315284797349871, 48.82787483525443], [2.315143335915992, 48.82777952671009], [2.315004502815106, 48.82768804100848], [2.314863042400479, 48.82759273211672], [2.314724210288873, 48.827501246074526], [2.314582749531399, 48.82740593682756], [2.314443918409069, 48.82731445044473], [2.31430246003293, 48.82721914085815], [2.3141636298998662, 48.82712765413475], [2.314022171180875, 48.82703234419296], [2.3138833420370712, 48.82694085712892], [2.31384984415525, 48.826918782154515], [2.313849651028741, 48.826917620847865], [2.313819312855264, 48.82689724223396], [2.31371398216468, 48.82682782994748], [2.313567561855506, 48.82673279405081], [2.313428734307096, 48.82664130643462], [2.31328231505347, 48.8265462692736], [2.313143488490435, 48.82645478221043], [2.313034896403892, 48.826384296483866], [2.313016810758298, 48.82637915966505], [2.312990240159643, 48.82638705826959], [2.312866854631417, 48.826480140252016], [2.312736803636965, 48.82657694320154], [2.312613417206776, 48.82667002490676], [2.312483365256237, 48.826766828463604], [2.31235997793614, 48.82685990899229], [2.3122299250413603, 48.8269567122571], [2.3121065368192912, 48.82704979250854], [2.311976482980262, 48.82714659548145], [2.311853093844546, 48.82723967635493], [2.311723039073132, 48.827336478136495], [2.311599649035424, 48.82742955873275], [2.311469593319753, 48.82752636022234], [2.311346202380247, 48.82761944054138], [2.311216145708428, 48.827716242638246], [2.311080924216134, 48.827816262491105], [2.310950866572642, 48.827913063383214], [2.31081564406102, 48.828013082918545], [2.310685584059966, 48.82810988439665], [2.310550360528798, 48.828209903614514], [2.310420300906281, 48.82830670479495], [2.310285076367562, 48.828406722796004], [2.310155015761565, 48.828503523670996], [2.310109488031568, 48.82853719817221], [2.310092800538283, 48.82856307234192], [2.310118416160747, 48.82857629616317], [2.310278884815498, 48.82865890411058], [2.310438439537353, 48.828742674855626], [2.310598909211207, 48.8288252823614], [2.310758464956593, 48.82890905266713], [2.310918937011793, 48.82899165973908], [2.311078493780513, 48.8290754296054], [2.311238965492895, 48.82915803622784], [2.311398523273174, 48.82924180655413], [2.311558996016553, 48.82932441183561], [2.311718554820381, 48.82940818172247], [2.311879029933256, 48.829490787469446], [2.312038589772306, 48.8295745560176], [2.312199064542365, 48.82965716131507], [2.312358625404868, 48.82974092942383], [2.312519101194057, 48.8298235342796], [2.312678663080117, 48.82990730194897], [2.3128391412507048, 48.82998990637093], [2.312998704160127, 48.83007367360087], [2.313159181987897, 48.83015627757332], [2.313318745908939, 48.83024004526315], [2.313332772579026, 48.83024907279143], [2.3133446271257743, 48.830248535573], [2.313504191639016, 48.83033230210925], [2.313657347971961, 48.83041270395767], [2.313816912116159, 48.83049647095592], [2.31397006941371, 48.83057687239211], [2.31400478574274, 48.830585730713274]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 49, "roussel_fabien": 18.0, "nb_emargement": 1303.0, "nb_procuration": 66.0, "nb_vote_blanc": 15.0, "jadot_yannick": 98.0, "le_pen_marine": 71.0, "nb_exprime": 1283.0, "nb_vote_nul": 5.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1622.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1303, "quartier_bv": "56", "geo_point_2d": [48.82860787976412, 2.313576092829782], "melenchon_jean_luc": 397.0, "poutou_philippe": 11.0, "macron_emmanuel": 451.0}, "geometry": {"type": "Point", "coordinates": [2.313576092829782, 48.82860787976412]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dbffc9371acd75f914c6ef82a6d3626be35eeca8", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 32, "zemmour_eric": 55.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-58", "geo_shape": {"coordinates": [[[2.389598673415337, 48.8585100094817], [2.389597863064381, 48.85851100362255], [2.389567331877246, 48.85854082938844], [2.38954719064871, 48.8585523902651], [2.389543116080488, 48.85855651546554], [2.389479397769769, 48.85869229744758], [2.389420122666735, 48.85881654725414], [2.389356403717379, 48.85895232913884], [2.389297126651731, 48.859076579747715], [2.38923784930336, 48.85920083031333], [2.389174130782499, 48.859336611161595], [2.389114852845068, 48.85946086163714], [2.38905113232271, 48.85959664238117], [2.388991853796004, 48.85972089276664], [2.38894395319524, 48.859822963998894], [2.38893891453657, 48.859835365422676], [2.388984080319001, 48.85985131389671], [2.389160051891612, 48.859913741848494], [2.389336622877607, 48.859976115935815], [2.38951259392066, 48.860038544254536], [2.389689165751665, 48.860100917814705], [2.389865137649291, 48.860163344708674], [2.390041710314673, 48.860225718640955], [2.390217683056232, 48.86028814500951], [2.390394256566629, 48.86035051841462], [2.390570231515089, 48.86041294426466], [2.390746804507632, 48.8604753171356], [2.390922780299925, 48.86053774246027], [2.391099354147988, 48.86060011390473], [2.391275330773704, 48.86066253960325], [2.391451905466771, 48.86072491052052], [2.391627882946928, 48.860787334794274], [2.391804458474493, 48.860849706083656], [2.391980436798582, 48.86091212983198], [2.392157014534135, 48.86097450060109], [2.392332992339174, 48.861036923817], [2.392509570919736, 48.8610992940589], [2.392685549568802, 48.86116171674939], [2.392862129004751, 48.86122408556476], [2.393038108487263, 48.86128650862909], [2.393214688768212, 48.861348876917276], [2.393390670468119, 48.86141129856376], [2.393567250220705, 48.86147366721711], [2.393743232764439, 48.861536088338134], [2.393919813362026, 48.86159845646425], [2.394095796749686, 48.861660877059784], [2.394272378192273, 48.86172324465864], [2.394448362423859, 48.86178566472874], [2.394624944721896, 48.8618480309011], [2.394800929786955, 48.86191045134502], [2.394977514292994, 48.86197281699703], [2.394999506414698, 48.861985223094436], [2.395005471040535, 48.86198500143159], [2.395058431752008, 48.8619305216504], [2.395167379076074, 48.861818254231586], [2.395273695624598, 48.8617088881822], [2.395382640658332, 48.86159662053808], [2.395488956302707, 48.861487254275566], [2.395597901772118, 48.86137498641995], [2.395704216512351, 48.86126561994436], [2.395813161054448, 48.861153351870335], [2.39591947489055, 48.86104398518168], [2.396028417142362, 48.860931716882334], [2.396134730084767, 48.86082234908128], [2.396243672772269, 48.86071008057045], [2.396349984800138, 48.860600713455604], [2.396458926560356, 48.860488444726386], [2.396565237684124, 48.86037907739844], [2.396674177154104, 48.860266808443946], [2.396780487373782, 48.86015744090296], [2.396780985147456, 48.8601388170929], [2.396776899467453, 48.86013617131235], [2.396796064856149, 48.86000667239963], [2.396815034962883, 48.85988049376409], [2.39683419879989, 48.85975099480853], [2.396853168721179, 48.85962481613784], [2.396872333732206, 48.859495317153204], [2.396891303468151, 48.859369138447384], [2.396910468290346, 48.85923963942679], [2.396929437830339, 48.85911346158516], [2.396948602463806, 48.85898396252861], [2.396967571828768, 48.85885778375256], [2.396986736273309, 48.85872828466006], [2.397005705452936, 48.85860210584888], [2.397024868345735, 48.85847260671356], [2.397043837339931, 48.85834642786726], [2.397062806242151, 48.85822024900363], [2.397081970215493, 48.85809074982142], [2.3970819922093742, 48.85809061592975], [2.397101940823959, 48.85797327714302], [2.397122000105993, 48.85785590742152], [2.397141948540617, 48.857738568603345], [2.39716200626897, 48.85762119974274], [2.397181954534043, 48.857503859993805], [2.397202013444815, 48.85738649110849], [2.3972219615299313, 48.857269151328126], [2.397242020260123, 48.85715178241129], [2.397261968165286, 48.8570344425994], [2.397282026715104, 48.8569170736511], [2.397301825358641, 48.85687542299192], [2.397288443939055, 48.85687036961477], [2.397220783425895, 48.85685662673924], [2.397157429705159, 48.85684359981797], [2.397145805468825, 48.85683981256399], [2.397128431968425, 48.85683947771563], [2.396947620211593, 48.856824390227466], [2.396772215764196, 48.85680996915983], [2.396596810040605, 48.856795548727355], [2.396415998590157, 48.85678046043536], [2.3962405944377903, 48.85676603858787], [2.396059783192901, 48.85675094975726], [2.39588437922805, 48.85673652828655], [2.395703568188726, 48.85672143891731], [2.395528163069376, 48.85670701601793], [2.395347353598498, 48.85669192611689], [2.395346290508501, 48.856691809226085], [2.395151494793346, 48.85665640674691], [2.394934716100724, 48.85662668998709], [2.394739920908772, 48.856591286835865], [2.394523142721813, 48.85656156932875], [2.394514220855114, 48.85655618835677], [2.394427313915824, 48.85657906146186], [2.394272994625142, 48.8566589644485], [2.394118332180007, 48.85673821436787], [2.393964011944027, 48.85681811694459], [2.393809348546156, 48.85689736735253], [2.39365502737544, 48.85697726862005], [2.393500363035189, 48.857056518617284], [2.393346040919273, 48.85713641947488], [2.393191375636636, 48.85721566906139], [2.393037053938405, 48.85729556951598], [2.392882386350491, 48.857374818684846], [2.392728063696577, 48.85745471962877], [2.392573395176645, 48.85753396748764], [2.39241907157752, 48.85761386802162], [2.39226440347819, 48.8576931154767], [2.392261781124068, 48.85769416968314], [2.392071280270669, 48.85775088523462], [2.391883744685474, 48.85780831074597], [2.391693243003253, 48.85786502568984], [2.391505707964087, 48.8579224497105], [2.391318171148545, 48.857979873427354], [2.391127668223421, 48.85803658746209], [2.39094013193281, 48.85809401148682], [2.390749626815965, 48.85815072490695], [2.390562089708509, 48.85820814743407], [2.390371585125664, 48.8582648602535], [2.3901840458278443, 48.858322282175315], [2.389993540416295, 48.858378994387095], [2.389963717976987, 48.858388125414216], [2.389961563355468, 48.85838822145255], [2.389935715347507, 48.8583986318184], [2.389777997603685, 48.85844692207734], [2.3896261689796923, 48.85849963367372], [2.389598673415337, 48.8585100094817]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 58, "roussel_fabien": 34.0, "nb_emargement": 1366.0, "nb_procuration": 99.0, "nb_vote_blanc": 24.0, "jadot_yannick": 140.0, "le_pen_marine": 57.0, "nb_exprime": 1338.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1697.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1366, "quartier_bv": "79", "geo_point_2d": [48.85914602197675, 2.39371005489435], "melenchon_jean_luc": 598.0, "poutou_philippe": 15.0, "macron_emmanuel": 330.0}, "geometry": {"type": "Point", "coordinates": [2.39371005489435, 48.85914602197675]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dff01c8aa472daeff3ae1a381fde4e1a308ab39e", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 89, "zemmour_eric": 72.0, "hidalgo_anne": 45.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "13-62", "geo_shape": {"coordinates": [[[2.341110405583818, 48.83181941345034], [2.341136212201691, 48.83185157326608], [2.341141258226358, 48.83195051041253], [2.341143042861307, 48.8320566758242], [2.341148088918791, 48.83215561295226], [2.341149236112166, 48.83222383033437], [2.341148983354215, 48.83225611639161], [2.341220622642195, 48.83225814786183], [2.341411860984432, 48.83220160258668], [2.341583257969041, 48.832151783905466], [2.341754654626056, 48.83210196497643], [2.341945890453855, 48.83204541883205], [2.342117286414603, 48.83199559937864], [2.342308521470203, 48.83193905174976], [2.342479916734675, 48.831889231771974], [2.342671152357591, 48.83183268446472], [2.342842546925687, 48.831782863962516], [2.343033780402837, 48.83172631606262], [2.343205174274756, 48.83167649503605], [2.343396406968352, 48.83161994655099], [2.3435678001439912, 48.831570125000056], [2.343759033427555, 48.83151357503795], [2.343930425906906, 48.8314637529627], [2.344121657033379, 48.831407203307265], [2.344293048816444, 48.831357380707594], [2.344311870065704, 48.83136376330976], [2.344362589116117, 48.83152317986825], [2.344426053335805, 48.831684597193295], [2.344448533452676, 48.83168884133389], [2.344463119336381, 48.831688521059334], [2.344478481240777, 48.83167664720689], [2.34464243190166, 48.8316566946456], [2.34486877791162, 48.83163227021431], [2.345032726921346, 48.83161231710976], [2.345259072555756, 48.831587891938945], [2.3454230212652343, 48.83156793919789], [2.345435627587962, 48.831570775558944], [2.3455598566347993, 48.83166212646527], [2.345687238809052, 48.83175648669278], [2.3458114687394582, 48.83184783732261], [2.345938851822937, 48.831942197266486], [2.346063082625535, 48.83203354851917], [2.346190467991651, 48.83212790728756], [2.346314699677736, 48.83221925826375], [2.3464420845909713, 48.83231361674107], [2.346566317160547, 48.832404967440716], [2.346693702983027, 48.83249932563442], [2.346817936436, 48.83259067605761], [2.346945323167729, 48.832685033967664], [2.346951953735971, 48.83268512503284], [2.346982676982822, 48.8326649660971], [2.34703600548047, 48.832548731144385], [2.347089190400895, 48.83243306377593], [2.347142518423814, 48.832316828751686], [2.347195702871311, 48.8322011613119], [2.347196591652038, 48.832199701986426], [2.347290351715855, 48.832075981735414], [2.347385320884214, 48.831952491940676], [2.347479081417613, 48.83182877152182], [2.347574049688543, 48.83170528154998], [2.347667807967205, 48.8315815609485], [2.347762775340721, 48.83145807079955], [2.347856534089077, 48.83133435003021], [2.347951500565187, 48.83121085970416], [2.348045258421039, 48.83108713875957], [2.348140222637665, 48.83096364824903], [2.348233979601025, 48.83083992712918], [2.348328944282362, 48.83071643644899], [2.348330452563279, 48.830714889652384], [2.348454018513699, 48.83061277089677], [2.348574752301602, 48.830513124245236], [2.34869831729524, 48.8304110052188], [2.348819050149012, 48.83031135830273], [2.348942614185877, 48.83020923900556], [2.349063346105323, 48.83010959182492], [2.349184078936724, 48.83000994362166], [2.349307640181979, 48.82990782391251], [2.349309418708757, 48.8299059035345], [2.349401557396646, 48.82976444686007], [2.349505769930633, 48.82961167060541], [2.349508247388261, 48.82956661738912], [2.349483655239341, 48.82956027795376], [2.349331087258146, 48.82957775474401], [2.349217987330915, 48.82958756130532], [2.349207233538055, 48.82958879248968], [2.349177116184716, 48.82959140406648], [2.34912076750536, 48.82959785890265], [2.349117727761744, 48.8295984539333], [2.348936713832478, 48.829648302138025], [2.348723218436028, 48.8297087386891], [2.348647781563868, 48.82972951260227], [2.348621773577649, 48.82973117239882], [2.348607551472677, 48.82973894736535], [2.34850197360254, 48.82976802191838], [2.348316186115936, 48.82981801675813], [2.3481351706579, 48.829867863739956], [2.3479493824523763, 48.82991785890475], [2.347768366296945, 48.829967705326936], [2.3475825773951, 48.8300176990182], [2.347401560542282, 48.83006754488082], [2.347215770921613, 48.83011753889713], [2.347034753371409, 48.83016738420015], [2.346848963054438, 48.83021737674289], [2.346667944795584, 48.830267222385544], [2.346482153771055, 48.83031721435403], [2.34630113618827, 48.830367058545264], [2.346115343082835, 48.83041705083133], [2.34599965508091, 48.830448905418585], [2.345934324802576, 48.83046689446297], [2.345906535391015, 48.83045828028538], [2.345880113973471, 48.83048677271237], [2.345703605198694, 48.830535131510324], [2.34552258611486, 48.83058497451352], [2.345346075313859, 48.83063333277211], [2.345165055547105, 48.83068317522982], [2.344988545444044, 48.830731532964], [2.344807523632392, 48.83078137486876], [2.344631012865295, 48.83082973207105], [2.344449991721607, 48.83087957433704], [2.344273478928185, 48.830927931], [2.344092457112994, 48.83097777182119], [2.343915945017632, 48.831026127959724], [2.343734922519639, 48.83107596823538], [2.343558408397956, 48.83112432383454], [2.343377385217162, 48.83117416356474], [2.343200871793551, 48.83122251863945], [2.343019846556529, 48.83127235871593], [2.342843332468694, 48.83132071325878], [2.342662307922307, 48.831370551897926], [2.342485791808255, 48.83141890590135], [2.34230476657918, 48.831468743994996], [2.342128251163117, 48.831517097473984], [2.341947225251256, 48.83156693502211], [2.341770707808876, 48.831615287961675], [2.341589681202873, 48.83166512586361], [2.341413164458594, 48.83171347827879], [2.341232135818957, 48.83176331472837], [2.341197556149274, 48.83175648149526], [2.341145676917128, 48.83179394327007], [2.341110405583818, 48.83181941345034]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 62, "roussel_fabien": 36.0, "nb_emargement": 1359.0, "nb_procuration": 60.0, "nb_vote_blanc": 17.0, "jadot_yannick": 143.0, "le_pen_marine": 74.0, "nb_exprime": 1331.0, "nb_vote_nul": 11.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1646.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1359, "quartier_bv": "52", "geo_point_2d": [48.83112119341611, 2.346019783233248], "melenchon_jean_luc": 340.0, "poutou_philippe": 11.0, "macron_emmanuel": 487.0}, "geometry": {"type": "Point", "coordinates": [2.346019783233248, 48.83112119341611]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c792b693bbdb841482451d10a52dcc93f98056ee", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 66, "zemmour_eric": 79.0, "hidalgo_anne": 22.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "9-25", "geo_shape": {"coordinates": [[[2.346606441213742, 48.88209903325102], [2.346618881506154, 48.882100432153536], [2.346793354707327, 48.88205243721627], [2.346967425295924, 48.88200455314406], [2.347141897865936, 48.88195655679544], [2.347315967813679, 48.881908672212305], [2.347490438366452, 48.881860676243406], [2.347664507684505, 48.88181279025006], [2.347838978958357, 48.881764793776505], [2.3480130476354413, 48.881716907272285], [2.348187518266845, 48.88166891028663], [2.348361584939441, 48.88162102326404], [2.348536054928394, 48.881573025766315], [2.348710122323432, 48.88152513824025], [2.34888459166993, 48.881477140230395], [2.349058658424091, 48.88142925219342], [2.34923312576462, 48.8813812536641], [2.349407191866567, 48.88133336601552], [2.349581659939382, 48.88128536608221], [2.34975572540035, 48.8812374779227], [2.349811844478201, 48.88123968389705], [2.349813326842508, 48.88123792386212], [2.349815159392342, 48.88121390368051], [2.349825267946007, 48.881068612230024], [2.349836596552154, 48.88092017612759], [2.349846703625504, 48.880774884629105], [2.349858032106663, 48.88062644848506], [2.349857692374361, 48.88062395279292], [2.349814442889458, 48.88050513021405], [2.349770032229718, 48.8803796156645], [2.349726783147622, 48.88026079302761], [2.34968237427098, 48.88013527842513], [2.349639124228411, 48.880016455722796], [2.349594715771275, 48.87989094105992], [2.34955146749508, 48.87977211830696], [2.3495070580941793, 48.87964660357634], [2.349476474715252, 48.87962788056458], [2.349432479313852, 48.87963527143133], [2.349365952518002, 48.87962599031107], [2.349363904017166, 48.879625591565514], [2.349181240086863, 48.87957535482482], [2.348969771272581, 48.87952200505438], [2.348787106722312, 48.879471767700174], [2.348626344085699, 48.87945549922461], [2.348618738461381, 48.879454942524795], [2.348438832601328, 48.87947578852983], [2.348251844483645, 48.879490200552354], [2.348071939718304, 48.87951104601283], [2.347884951361248, 48.87952545836112], [2.347705044963907, 48.87954630326218], [2.347518057753466, 48.87956071414513], [2.347429563195444, 48.87956712788418], [2.347413153587642, 48.87957002511994], [2.347421295285922, 48.87961572503559], [2.347466521624659, 48.87978021760962], [2.347513790494226, 48.87995213806878], [2.347503290580593, 48.87996252748933], [2.347287783785484, 48.8799936540523], [2.347071916105049, 48.88002483221957], [2.3468564087943102, 48.88005595800425], [2.346640540597287, 48.88008713539191], [2.346425034134406, 48.88011826040579], [2.346209164057531, 48.880149437006466], [2.346198905823547, 48.880160536306306], [2.346234138150268, 48.88024779039459], [2.346301200499775, 48.880413872081775], [2.346336433169264, 48.880501126119896], [2.346336813119377, 48.880502468199495], [2.346358520069537, 48.88063410236277], [2.346380380506827, 48.88076666185709], [2.346402087677226, 48.88089829598087], [2.346423946984195, 48.88103085452872], [2.346445655738233, 48.881162488620426], [2.346467515255704, 48.88129504802775], [2.346489224230095, 48.88142668208], [2.346511083980539, 48.88155924054833], [2.346532793175184, 48.88169087456107], [2.346554653136139, 48.88182343388886], [2.346576362551041, 48.881955067862116], [2.346598222733896, 48.88208762715012], [2.346606441213742, 48.88209903325102]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 25, "roussel_fabien": 16.0, "nb_emargement": 1299.0, "nb_procuration": 84.0, "nb_vote_blanc": 21.0, "jadot_yannick": 121.0, "le_pen_marine": 45.0, "nb_exprime": 1277.0, "nb_vote_nul": 1.0, "arr_bv": "09", "arthaud_nathalie": 0, "nb_inscrit": 1641.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1299, "quartier_bv": "36", "geo_point_2d": [48.88069134139538, 2.348045241954994], "melenchon_jean_luc": 365.0, "poutou_philippe": 11.0, "macron_emmanuel": 524.0}, "geometry": {"type": "Point", "coordinates": [2.348045241954994, 48.88069134139538]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "15704d6d80e2deeee4d1f359efd26a4c50beac8c", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 40, "zemmour_eric": 60.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-49", "geo_shape": {"coordinates": [[[2.3989683458302062, 48.85490730448919], [2.398987526103852, 48.8548954493884], [2.399036975276782, 48.854855173112476], [2.39908452387427, 48.85481731641046], [2.399084980897308, 48.85481692209297], [2.399189666311205, 48.85472130023051], [2.399295073399162, 48.854624519035454], [2.399399756667683, 48.8545288978651], [2.399505162976216, 48.85443211646824], [2.399609846835474, 48.854336495104356], [2.399715251001777, 48.854239713498835], [2.399819934099324, 48.854144091035295], [2.399925337475965, 48.85404731012728], [2.399926382014547, 48.854046193877494], [2.400012101499939, 48.8539374391658], [2.400098828514714, 48.853826726156115], [2.400184547279256, 48.85371797129941], [2.400271274925148, 48.85360725814972], [2.400356992958395, 48.85349850404729], [2.40044371850983, 48.853387790743916], [2.400529437195175, 48.853279035604025], [2.400616162015052, 48.85316832215379], [2.400701878606342, 48.85305956776142], [2.400788604057347, 48.85294885417116], [2.400810664140157, 48.852946842178206], [2.400852512236149, 48.852976380428196], [2.400885474529387, 48.85299740139739], [2.4009078982282, 48.85300537039144], [2.400924257967891, 48.852994318352465], [2.401001916129455, 48.85285821822662], [2.401078200940758, 48.852724302877256], [2.401155858297741, 48.85258820261848], [2.401232142328471, 48.85245428623913], [2.40130979888098, 48.85231818584736], [2.40138608211048, 48.852184270236684], [2.401463737858532, 48.85204816971197], [2.401540020297149, 48.85191425397062], [2.401550200612978, 48.851894539862585], [2.401550066323697, 48.85189436651563], [2.401518313893371, 48.85188871626299], [2.401329474695227, 48.85185490209438], [2.40114081831273, 48.85182132866714], [2.400952162173433, 48.85178775494143], [2.400763323698203, 48.851753940775566], [2.400574668045991, 48.85172036645262], [2.400385830059928, 48.851686551688935], [2.400197174895013, 48.85165297676877], [2.400008337408478, 48.851619160508], [2.399819682730665, 48.851585584990595], [2.399630845722958, 48.85155176903128], [2.399442191532456, 48.8515181929167], [2.399253355013937, 48.85148437635956], [2.399064702673282, 48.8514507996546], [2.398875865281221, 48.85141698249283], [2.398687213438163, 48.85138340429133], [2.398498377898041, 48.851349586538596], [2.398457127861982, 48.85134862640257], [2.398431993847222, 48.85135666434831], [2.398342110586101, 48.85147250301176], [2.398250500345755, 48.85158998681888], [2.398160616278724, 48.851705825321716], [2.398069005219003, 48.85182330896525], [2.397979120346053, 48.85193914730746], [2.397887508466946, 48.85205663078736], [2.39779762415082, 48.85217246897579], [2.397706010089564, 48.85228995228524], [2.397616124967403, 48.852405790313], [2.397524510086737, 48.85252327345884], [2.397434624158734, 48.852639111325956], [2.3973430098214132, 48.85275659431503], [2.397253121724689, 48.85287243201465], [2.397179617425675, 48.852966690435075], [2.397163743050979, 48.8529830757587], [2.397213895439385, 48.853005204215194], [2.397409417702484, 48.8530462478971], [2.397607513322443, 48.85308776108169], [2.397803036205351, 48.85312880411735], [2.3980011324527393, 48.8531703166472], [2.39819665594506, 48.853211359935955], [2.398394752819873, 48.85325287181107], [2.39840333856275, 48.85326468746642], [2.398338722315874, 48.85337492861955], [2.398274279646603, 48.85348463099143], [2.398209664206348, 48.853594872959206], [2.398145219630568, 48.853704575232975], [2.398080603654914, 48.85381481620994], [2.398016158535403, 48.8539245183925], [2.397951542003569, 48.85403476017729], [2.397887097703124, 48.85414446227547], [2.397822479273077, 48.8542547030626], [2.397758034428896, 48.85436440506956], [2.3977632036292422, 48.85437514862688], [2.397912298949186, 48.85444045419403], [2.398059364189277, 48.85450515039105], [2.398208460252378, 48.85457045558153], [2.398355526227202, 48.85463515140699], [2.398504623033462, 48.854700456220826], [2.398651689753193, 48.85476515077542], [2.398800787292235, 48.854830456111905], [2.398947854746695, 48.85489515029493], [2.3989683458302062, 48.85490730448919]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 49, "roussel_fabien": 25.0, "nb_emargement": 1506.0, "nb_procuration": 87.0, "nb_vote_blanc": 14.0, "jadot_yannick": 183.0, "le_pen_marine": 60.0, "nb_exprime": 1488.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1938.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1506, "quartier_bv": "80", "geo_point_2d": [48.85290189456923, 2.3992615325149775], "melenchon_jean_luc": 665.0, "poutou_philippe": 10.0, "macron_emmanuel": 382.0}, "geometry": {"type": "Point", "coordinates": [2.3992615325149775, 48.85290189456923]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "aacebb24984fa5192ca5e7c4435506b0333060cd", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 24, "zemmour_eric": 25.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-56", "geo_shape": {"coordinates": [[[2.354002438082366, 48.88513261226353], [2.354012229506211, 48.885129406827524], [2.354205740969044, 48.88513115400734], [2.354398375555899, 48.885132464468825], [2.354591887042944, 48.88513421102456], [2.354784520287212, 48.88513552085741], [2.354978033173413, 48.88513726589712], [2.35517066643869, 48.88513857510874], [2.355183970957993, 48.88513192878413], [2.355227845895582, 48.88502906524019], [2.355284815154179, 48.884890032867155], [2.355276705588085, 48.88487933396248], [2.355078792029408, 48.88482724470245], [2.354879306962691, 48.88477622313883], [2.354681392829904, 48.8847241332097], [2.354481908547437, 48.884673110979186], [2.354283996567642, 48.88462102039563], [2.3540845117059392, 48.884569997490864], [2.354075864343331, 48.884560792980345], [2.354091084721647, 48.88445124877303], [2.354102064886699, 48.88435197269366], [2.354117285137715, 48.8842424293615], [2.354128265208892, 48.8841431532609], [2.3541424804970292, 48.884084283451514], [2.354106773450398, 48.88407811568963], [2.353976020452505, 48.88406872453247], [2.353787242715638, 48.88405308000081], [2.353592801481173, 48.88403911331829], [2.353404025330359, 48.88402346818937], [2.353209584309238, 48.88400950088415], [2.353020808380903, 48.88399385515062], [2.352826367573139, 48.88397988722266], [2.3526375905037122, 48.88396424087711], [2.352443151272789, 48.88395027233385], [2.352254374425859, 48.88393462538365], [2.352059935408409, 48.88392065621766], [2.351871158783983, 48.883905008662836], [2.351676718616338, 48.88389103886677], [2.351487943578002, 48.88387539071467], [2.351293503623748, 48.883861420295894], [2.351104727444358, 48.883845771531824], [2.350910289067078, 48.883831800497695], [2.3507215131102193, 48.88381615112899], [2.350527074946346, 48.88380217947217], [2.350338351487289, 48.88378791385019], [2.350143913531649, 48.88377394157073], [2.349955190279891, 48.88375967534441], [2.349760751168921, 48.88374570243495], [2.349572029488045, 48.88373143561171], [2.34951931133085, 48.88372017288942], [2.34950899780758, 48.88372434550186], [2.349492552366671, 48.88373099842288], [2.349486606162556, 48.883766316053354], [2.34947786916821, 48.883788159156985], [2.349473420884013, 48.88380541290205], [2.349473231497285, 48.883807146679224], [2.34947813396334, 48.88393550669776], [2.349481188036037, 48.884058789838136], [2.349486090556628, 48.88418714892771], [2.349489144651787, 48.88431043293892], [2.349492197409049, 48.88443371602958], [2.349497099992073, 48.884562075074925], [2.349500154146417, 48.884685358144516], [2.34950505676151, 48.884813718059476], [2.349508109585948, 48.88493700109325], [2.349513012255575, 48.885065360079224], [2.349516066477209, 48.88518864309201], [2.349520969178908, 48.885317002947545], [2.349535530290437, 48.88533110977356], [2.349584977825691, 48.88532005316], [2.3497895596021, 48.885304929666795], [2.349993544565771, 48.885290850301544], [2.350198126108793, 48.885275726109796], [2.3504021108477042, 48.88526164604813], [2.350606692157225, 48.8852465211579], [2.35081067530765, 48.88523244039239], [2.351015257747477, 48.885217314811065], [2.351219240661815, 48.88520323424841], [2.351423821504513, 48.88518810796122], [2.351627805568775, 48.88517402581024], [2.351832386178145, 48.88515889882454], [2.352036370017502, 48.88514481597712], [2.3522409503933313, 48.88512968829296], [2.352444932644162, 48.88511560474176], [2.352446639295181, 48.88511554922045], [2.352640152017568, 48.88511729893798], [2.352827905110237, 48.88511801805732], [2.353015658208093, 48.885118736882205], [2.353209169597827, 48.885120485672715], [2.3533969227098392, 48.88512120389975], [2.353590434121541, 48.885122952074056], [2.3537781872477, 48.88512366970321], [2.35397170004497, 48.88512541726868], [2.354002438082366, 48.88513261226353]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 56, "roussel_fabien": 19.0, "nb_emargement": 1266.0, "nb_procuration": 53.0, "nb_vote_blanc": 18.0, "jadot_yannick": 62.0, "le_pen_marine": 39.0, "nb_exprime": 1242.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1942.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1266, "quartier_bv": "71", "geo_point_2d": [48.88456634610835, 2.3518463340542657], "melenchon_jean_luc": 844.0, "poutou_philippe": 11.0, "macron_emmanuel": 188.0}, "geometry": {"type": "Point", "coordinates": [2.3518463340542657, 48.88456634610835]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2e68acf252713e2daa489922835a7b348c35b242", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 73, "zemmour_eric": 94.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "18-25", "geo_shape": {"coordinates": [[[2.334300999494606, 48.88793183585522], [2.334299437023436, 48.88795292628703], [2.334393734128942, 48.888064496745855], [2.3344818630404323, 48.888170116160204], [2.334576160930125, 48.8882816864533], [2.334664290579228, 48.88838730571245], [2.334758589253015, 48.888498875839836], [2.334846719639739, 48.88860449494382], [2.334934849020285, 48.88871011396522], [2.33502915023367, 48.888821682955054], [2.335117281715549, 48.888927301828836], [2.335211582337863, 48.88903887154461], [2.335223755201899, 48.88904348522174], [2.335358237679287, 48.889041787402796], [2.335491967396899, 48.88904724479213], [2.335626449875253, 48.88904554667195], [2.335760179630629, 48.88905100376175], [2.335772968499734, 48.88905971723114], [2.335779859514377, 48.88921581913285], [2.33577464223734, 48.889370577701584], [2.335773757618297, 48.88939683940936], [2.335780648691393, 48.88955294036384], [2.335776316006505, 48.88968143718471], [2.335777464697759, 48.889690495270514], [2.335803939034834, 48.8896916511681], [2.336012678722754, 48.88970614944737], [2.336208712762176, 48.88971983858192], [2.3364174540394202, 48.889734336162796], [2.336613486916186, 48.88974802552604], [2.336809519907479, 48.889761713668904], [2.337018261519971, 48.8897762102019], [2.33721429471233, 48.88978989858105], [2.33742303656184, 48.88980439350874], [2.33761906996671, 48.88981808122489], [2.337827812041978, 48.88983257544656], [2.338023847023079, 48.88984626250723], [2.33823258796016, 48.88986075601542], [2.338428623153753, 48.88987444241309], [2.338637365668776, 48.8898889361221], [2.338770236543354, 48.88989821171772], [2.33877305304011, 48.88991301307802], [2.338795477246698, 48.88993563262736], [2.338858515960168, 48.88991977396426], [2.338921679173088, 48.88992418314982], [2.339133388777859, 48.889895442921485], [2.339328354338599, 48.8898669480821], [2.339540063486189, 48.889838207133266], [2.339735028610066, 48.88980971163026], [2.339946737300464, 48.88978096996092], [2.34014170198747, 48.88975247379427], [2.340189478832501, 48.88974740137113], [2.340193908071596, 48.88972892036069], [2.340200001914335, 48.88970349044204], [2.340190940266389, 48.88969535557538], [2.340154977551204, 48.88957229516731], [2.340118797809412, 48.88945410518413], [2.340082835442744, 48.8893310438281], [2.340046656032225, 48.88921285379716], [2.340010693991275, 48.88908979329165], [2.33997451491223, 48.888971603212966], [2.339938553219789, 48.88884854175953], [2.339902373108408, 48.88873035162556], [2.339866194513569, 48.88861216237469], [2.339830233325363, 48.888489100848396], [2.339794055073283, 48.88837091065056], [2.339758094222178, 48.888247849075526], [2.339757855663726, 48.88824644301201], [2.339750712088204, 48.88812298813053], [2.339744852098174, 48.88800542820489], [2.339738992134603, 48.88788786826634], [2.339731848653098, 48.887764413343405], [2.339725990098175, 48.88764685428523], [2.339718845328292, 48.88752339842766], [2.339712986829842, 48.88740583934302], [2.33970584348752, 48.88728238346513], [2.33969998368198, 48.887164824346534], [2.339692840392146, 48.88704136934004], [2.339678281543358, 48.88703274004304], [2.339579782902193, 48.88703719166145], [2.339450412145535, 48.88704045934657], [2.339437758617262, 48.88702977567517], [2.339373869971229, 48.88703853338123], [2.339185108975415, 48.88709820087047], [2.338994712059987, 48.88715682300486], [2.338805950212341, 48.88721648899073], [2.338615551073999, 48.887275110508305], [2.338426788363111, 48.88733477588999], [2.338236388365314, 48.88739339679836], [2.338047624791189, 48.8874530615759], [2.337857223934142, 48.88751168187507], [2.337668459496783, 48.887571346048425], [2.337478059143959, 48.887629965745866], [2.337469344943981, 48.887630598319156], [2.337301921801195, 48.88760618227867], [2.337134527636931, 48.88758100173483], [2.336967104810602, 48.88755658522511], [2.336799712342808, 48.88753140332036], [2.336632288457718, 48.88750698723308], [2.33646489631128, 48.88748180485913], [2.336297472754218, 48.88745738740336], [2.336130080917679, 48.887432205459454], [2.336121914737427, 48.88743264132244], [2.335939593870343, 48.887481484526056], [2.335763042456591, 48.88753034327016], [2.335580719535762, 48.88757918681472], [2.335404168817696, 48.88762804503284], [2.335221845229537, 48.88767688712738], [2.335045293832112, 48.887725745711286], [2.334868740751185, 48.88777460312587], [2.334686416147659, 48.887823444398606], [2.334509863750842, 48.88787230218654], [2.334327538468622, 48.887921142908425], [2.334300999494606, 48.88793183585522]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 25, "roussel_fabien": 18.0, "nb_emargement": 1241.0, "nb_procuration": 84.0, "nb_vote_blanc": 19.0, "jadot_yannick": 141.0, "le_pen_marine": 40.0, "nb_exprime": 1218.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1500.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1241, "quartier_bv": "69", "geo_point_2d": [48.8885778115963, 2.3375907406238894], "melenchon_jean_luc": 260.0, "poutou_philippe": 8.0, "macron_emmanuel": 541.0}, "geometry": {"type": "Point", "coordinates": [2.3375907406238894, 48.8885778115963]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "94ad2c626bd33d35241ae3757e500e6824e7bd60", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 38, "zemmour_eric": 66.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-20", "geo_shape": {"coordinates": [[[2.4025469179788193, 48.87594107790101], [2.402527685955444, 48.87596456506928], [2.402528052454314, 48.87599192454445], [2.402545974402616, 48.876011924278615], [2.402726883245164, 48.87606502959549], [2.402915344482625, 48.87611956536794], [2.403096252712178, 48.87617267011462], [2.403284714715578, 48.876227206199516], [2.403465623695617, 48.876280310382846], [2.403654086485559, 48.876334844981656], [2.403834997579565, 48.87638794860836], [2.404023459772064, 48.876442483512804], [2.404204371616451, 48.876495586576155], [2.40439283459547, 48.876550119994505], [2.404573747190331, 48.87660322249445], [2.404762210935398, 48.87665775622526], [2.404943124280735, 48.87671085816183], [2.405093362622315, 48.87675432934473], [2.405112671369277, 48.87675496579602], [2.405124117014457, 48.876725407734476], [2.405148226132097, 48.87659607076535], [2.405171807293884, 48.876467107972786], [2.405195916173532, 48.87633777096375], [2.40521949710029, 48.87620880813163], [2.40524360574185, 48.87607947108272], [2.405267186433583, 48.87595050821097], [2.405291294837259, 48.87582117112213], [2.4053148752939713, 48.87569220821081], [2.405338984822933, 48.87556287108885], [2.405362563681361, 48.87543390813116], [2.405386672972338, 48.87530457096931], [2.405410251595658, 48.87517560797199], [2.405433831465568, 48.87504664496176], [2.4054579390370723, 48.87491730773343], [2.405457625003204, 48.87491400292905], [2.405411224664533, 48.87479310734949], [2.405364574141085, 48.87467109622278], [2.405318175608291, 48.874550199687995], [2.405271525510101, 48.874428189397506], [2.40522512604633, 48.87430729279327], [2.405178476393931, 48.87418528154035], [2.40513207872585, 48.874064384880214], [2.40508542813537, 48.87394237445667], [2.405039030899637, 48.87382147773388], [2.4049923821182633, 48.87369946635472], [2.404945983941384, 48.873578570461746], [2.4048993355955153, 48.8734565590195], [2.404852939224459, 48.87333566217134], [2.404806289940507, 48.87321365155846], [2.404759894001781, 48.87309275464765], [2.404713246526902, 48.872970743079186], [2.404723620488576, 48.872951160427625], [2.404699629911104, 48.87294146951691], [2.40469298064446, 48.87294124848793], [2.404637295540012, 48.87294855651452], [2.404595013777731, 48.87295465053484], [2.404586730547749, 48.87295412998853], [2.404427883448621, 48.872909198681214], [2.404262125499966, 48.87286214811115], [2.404103277597961, 48.87281721636256], [2.403937520235237, 48.8727701653391], [2.40392262761122, 48.87277166321379], [2.403913031279706, 48.87278498221856], [2.403859959346981, 48.872907396879405], [2.403803762674861, 48.87303776403318], [2.403750690217481, 48.87316017951683], [2.403694494362455, 48.87329054659623], [2.403641421390706, 48.87341296200344], [2.403585224989469, 48.87354332900166], [2.403532150150327, 48.873665743426315], [2.403475953202869, 48.87379611034341], [2.403422879202361, 48.87391852559766], [2.403366681708678, 48.874048892433564], [2.40331360583055, 48.87417130760452], [2.40325740779063, 48.874301674359295], [2.403204332771633, 48.87442408856128], [2.403148134185474, 48.87455445523485], [2.403095057278426, 48.874676870252834], [2.403038858146013, 48.87480723684528], [2.4029857820878933, 48.87492965179353], [2.4029295824092243, 48.8750600183048], [2.402876504473328, 48.875182433169755], [2.402820304248392, 48.87531279959987], [2.402767227171734, 48.87543521349583], [2.4027110264005263, 48.87556557984477], [2.402657947435855, 48.875687994556706], [2.402601746118364, 48.87581836082445], [2.402548668002516, 48.87594077546668], [2.4025469179788193, 48.87594107790101]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 20, "roussel_fabien": 24.0, "nb_emargement": 1220.0, "nb_procuration": 52.0, "nb_vote_blanc": 6.0, "jadot_yannick": 60.0, "le_pen_marine": 75.0, "nb_exprime": 1194.0, "nb_vote_nul": 20.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1657.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1220, "quartier_bv": "78", "geo_point_2d": [48.87493234396444, 2.404176635472895], "melenchon_jean_luc": 623.0, "poutou_philippe": 6.0, "macron_emmanuel": 246.0}, "geometry": {"type": "Point", "coordinates": [2.404176635472895, 48.87493234396444]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "aaa23323a0b109582dbb08d9bd8d932d14c942d4", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 44, "zemmour_eric": 47.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "20-66", "geo_shape": {"coordinates": [[[2.393290112604787, 48.86957687727724], [2.393315797785453, 48.86958496210427], [2.393472406866707, 48.869646790194665], [2.393630059287457, 48.86970556741406], [2.393786669093845, 48.869767395985846], [2.393944322234205, 48.869826172784926], [2.39410093278656, 48.86988800003952], [2.394258586646531, 48.86994677641827], [2.394263765121075, 48.86994788362755], [2.39434455509249, 48.8699538989176], [2.394453201916659, 48.869953844269254], [2.394482782351715, 48.86997037173332], [2.394524109236797, 48.86996117553222], [2.394535606849802, 48.86995861662335], [2.394547737529938, 48.86992340780565], [2.394640906741, 48.86980548588771], [2.394727620610958, 48.869699517602825], [2.394814334117665, 48.869593550144224], [2.394907502135238, 48.869475627983576], [2.394994214903219, 48.86936966037321], [2.395087383476346, 48.86925173805555], [2.39517409550581, 48.8691457702934], [2.395267261908097, 48.869027847805015], [2.395353973198954, 48.86892187989104], [2.395447138793616, 48.86880395723874], [2.395447288196663, 48.868803770031874], [2.395531237630961, 48.86869514756708], [2.395624402418838, 48.86857722475261], [2.395708351118725, 48.86846860214131], [2.3958015164636732, 48.868350679171755], [2.395885464429159, 48.86824205641399], [2.395978627604833, 48.86812413327548], [2.396062574835928, 48.86801551037126], [2.396155737205518, 48.86789758707076], [2.39623968370223, 48.867788964020086], [2.3963328466289022, 48.867671040564446], [2.396416792401658, 48.86756241646802], [2.396416865772922, 48.867562319709464], [2.396419385654951, 48.86754908516415], [2.396383092190219, 48.86753585003651], [2.396292834618566, 48.86750897495054], [2.396198477205199, 48.86749416172349], [2.396191334395874, 48.86749130356562], [2.396057423029248, 48.86738940379371], [2.3959154911224543, 48.867292320706675], [2.395781580806909, 48.86719042060781], [2.395639649966757, 48.86709333627691], [2.3956389087189462, 48.86709272008433], [2.395531229656903, 48.86699461693936], [2.395406978663245, 48.86687736668849], [2.39529929912008, 48.866779263308885], [2.395175049162085, 48.86666201279445], [2.395067371863957, 48.866563909194], [2.394943122941611, 48.866446658415974], [2.394835446525274, 48.86634855458773], [2.394711198638565, 48.866231303546144], [2.394603521741095, 48.86613319948329], [2.394479274890016, 48.866015948178116], [2.394371600237439, 48.86591784389444], [2.394357812391328, 48.86590524542151], [2.3943339837830813, 48.8659046949543], [2.394226586625957, 48.86597713194527], [2.394106437693198, 48.86605756956114], [2.393964030153449, 48.86615361840047], [2.393843879045224, 48.866234055733024], [2.393701471901956, 48.86633010425157], [2.393581319981274, 48.86641054130773], [2.393570588057305, 48.86642678296218], [2.393585291874574, 48.86643645701249], [2.393626641480478, 48.86655823651304], [2.39366769908625, 48.86667818255163], [2.393709047703063, 48.8667999628895], [2.39375010705223, 48.866919908880476], [2.393791456053659, 48.86704168916326], [2.393832514419953, 48.86716163509289], [2.393873865179406, 48.86728341442822], [2.393914923915506, 48.86740336120261], [2.393956275059489, 48.867525140482876], [2.393997334175966, 48.86764508720282], [2.3940386843413233, 48.86776686642104], [2.394079745211601, 48.86788681219415], [2.394081038277593, 48.86788909316655], [2.39416748270069, 48.86799506718905], [2.394256500639059, 48.86810320357952], [2.394342945774309, 48.86820917745473], [2.394431964453352, 48.868317312794474], [2.394518410300864, 48.86842328652248], [2.394607429699476, 48.86853142261003], [2.394604052877742, 48.86854269041894], [2.394541767866586, 48.868576120312134], [2.394488134502794, 48.86860539313499], [2.39448635689103, 48.868606561375024], [2.394369748857501, 48.86869924439911], [2.394251424831631, 48.868792800869485], [2.394134817326394, 48.86888548365599], [2.394016491092465, 48.868979039871455], [2.393899882752229, 48.86907172241347], [2.393781555662848, 48.86916527928019], [2.393664946487705, 48.86925796157769], [2.3935466185637972, 48.86935151729719], [2.393430008553743, 48.86944419935018], [2.3933116797848353, 48.869537754821636], [2.393290112604787, 48.86957687727724]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 66, "roussel_fabien": 24.0, "nb_emargement": 967.0, "nb_procuration": 53.0, "nb_vote_blanc": 13.0, "jadot_yannick": 80.0, "le_pen_marine": 54.0, "nb_exprime": 952.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1216.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 967, "quartier_bv": "79", "geo_point_2d": [48.86791066632933, 2.3947456936554823], "melenchon_jean_luc": 375.0, "poutou_philippe": 5.0, "macron_emmanuel": 282.0}, "geometry": {"type": "Point", "coordinates": [2.3947456936554823, 48.86791066632933]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ea807a7d69bd434fd38fc07c0db218f7d3739dda", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 60, "zemmour_eric": 76.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "13-58", "geo_shape": {"coordinates": [[[2.346488859041595, 48.8280878850493], [2.346490576287692, 48.82809313868685], [2.346488511489575, 48.82821308509244], [2.346488533191477, 48.82833316969861], [2.346486468379153, 48.8284531160785], [2.346486491438476, 48.828573200666376], [2.3464844266007763, 48.828693147919886], [2.346484448304639, 48.82881323157532], [2.346485186797981, 48.82881615138155], [2.346500551501645, 48.82885480679561], [2.346522808781642, 48.82889760910791], [2.346540994144193, 48.828915006133215], [2.346569416056643, 48.82890570450716], [2.346748126292556, 48.82884552335622], [2.346931793443974, 48.82878227605796], [2.3471105042006, 48.82872209436636], [2.347294170477447, 48.828658846504645], [2.347472879019364, 48.828598665156775], [2.347656544432998, 48.8285354158323], [2.347658817996165, 48.828534431727086], [2.347824210578906, 48.82844460309429], [2.347982665017698, 48.828359887119305], [2.348141118941525, 48.82827517092806], [2.348306509870758, 48.82818534160747], [2.348316227097087, 48.8281833215005], [2.348416126803135, 48.828188484115536], [2.34852224309169, 48.82819259406727], [2.348536226870846, 48.82818587187101], [2.348565569635079, 48.828111100325515], [2.348591151681709, 48.828043495186044], [2.348596349368683, 48.8280384042573], [2.348727373283336, 48.827975425045274], [2.348913282449208, 48.8278852434298], [2.349044305607411, 48.82782226296267], [2.349230212316784, 48.82773208083476], [2.349361236057984, 48.82766910091852], [2.34937932555015, 48.82767031725541], [2.349425868020462, 48.827704073959666], [2.349459262222346, 48.82773307517994], [2.349466156225488, 48.827736238907065], [2.349597190791184, 48.827762447981726], [2.349726264825557, 48.827786293487286], [2.349857299658934, 48.82781250137648], [2.349986373924984, 48.82783634749956], [2.349989106175986, 48.82783669781666], [2.350167010353602, 48.82784723397508], [2.35034670086139, 48.827859155615116], [2.350350898079625, 48.827859893417944], [2.350472593149068, 48.82789581440151], [2.350597039317888, 48.827930914679165], [2.35071873336059, 48.82796683540261], [2.350843179853557, 48.828001936321236], [2.350846536650143, 48.82800256251907], [2.351023499240262, 48.8280198573805], [2.351196863664531, 48.82803611796465], [2.351370226834929, 48.8280523782899], [2.351547189756574, 48.82806967327495], [2.351720553147814, 48.828085933091884], [2.351897516310852, 48.82810322665876], [2.351900403518938, 48.828103715375924], [2.35202971649245, 48.82813588607844], [2.352158049588735, 48.82816690103186], [2.352287361504662, 48.828199072345924], [2.352415694909758, 48.828230087021126], [2.352429473413319, 48.8282283358999], [2.35259081557746, 48.82813276594446], [2.352742902842631, 48.828040566896966], [2.352744988632329, 48.82803900787836], [2.352842844730988, 48.82794610416562], [2.352942985328354, 48.82784976002948], [2.353040840707809, 48.82775685703839], [2.353140979224829, 48.82766051181355], [2.353238833896251, 48.827567608644785], [2.353338973034829, 48.827471264144606], [2.353358056461253, 48.827469003775334], [2.353384646300178, 48.82748139073103], [2.353405054998624, 48.827494186753576], [2.353436877541282, 48.82749828907014], [2.353449272254668, 48.82747365925638], [2.353589252802862, 48.82735666443991], [2.353723061064453, 48.827243490815476], [2.3538630403914063, 48.82712649475522], [2.35399684746793, 48.82701332080128], [2.354130655336856, 48.82690014579422], [2.354270631453968, 48.82678315011309], [2.354286337523614, 48.82678036321286], [2.354472623965052, 48.826829099628725], [2.354654996682329, 48.826877334364724], [2.354841283825904, 48.82692606930279], [2.355023657223458, 48.8269743034724], [2.355209945058228, 48.827023037832035], [2.355392319124835, 48.82707127233459], [2.355578607650699, 48.82712000611574], [2.355760982408697, 48.82716823915262], [2.355943357504244, 48.82721647190933], [2.356129647064011, 48.82726520482583], [2.356312022839719, 48.827313437016166], [2.356498313079466, 48.82736217025352], [2.356533489265103, 48.82737147288525], [2.356545897165969, 48.827368940453916], [2.356555500796681, 48.82735158383582], [2.356560585275219, 48.827302730196095], [2.356564549534041, 48.8272659482259], [2.356559269992049, 48.82725820588612], [2.356402205142878, 48.82717836596649], [2.356247613128645, 48.827099515864234], [2.356090549234819, 48.827019675524014], [2.355935958173593, 48.826940824108455], [2.355778895223996, 48.82686098424695], [2.355624305104671, 48.826782132417364], [2.355467243121522, 48.826702291235996], [2.355312653933077, 48.82662343989171], [2.355155592905159, 48.82654359828974], [2.355001003307652, 48.826464745624826], [2.3548464155286, 48.826385893661204], [2.354689355930396, 48.82630605142999], [2.354534769093226, 48.82622719905238], [2.354377710450346, 48.826147356400604], [2.354366951828145, 48.82614563537235], [2.354232541126898, 48.82616185657556], [2.354100220843444, 48.82618019705448], [2.353965809970108, 48.82619641795741], [2.35383348950501, 48.82621475814061], [2.353822511566373, 48.826213148300404], [2.353713724347749, 48.82615921038113], [2.353614754308011, 48.826103839653605], [2.353606234687827, 48.826101709750844], [2.35342025776495, 48.82609913136566], [2.353235345026366, 48.82609630572197], [2.35304936814111, 48.82609372676002], [2.352864455441697, 48.82609090054287], [2.352678478594072, 48.82608832100409], [2.352493565934042, 48.82608549421349], [2.352307589124054, 48.82608291409791], [2.352122676503313, 48.82608008673379], [2.351936699730872, 48.8260775060415], [2.351751787149427, 48.826074678103865], [2.351565810414741, 48.826072096834764], [2.351380897872602, 48.82606926832365], [2.351194921175478, 48.82606668647779], [2.351010008672653, 48.82606385739318], [2.351006789665786, 48.82606355212377], [2.350878410353802, 48.82604131350308], [2.35074437154364, 48.8260175393618], [2.350719176343325, 48.82601140193585], [2.350706688307184, 48.826017418412206], [2.350534777718556, 48.826071543812304], [2.350350519435555, 48.826136785627206], [2.350345580668206, 48.826149657646724], [2.350435506366479, 48.82623983368226], [2.350563017840957, 48.82636599092442], [2.350652945650424, 48.82645616678648], [2.3507804581690532, 48.82658232467179], [2.350870385365679, 48.82667250034554], [2.3508732040011, 48.826674550931514], [2.351003574798751, 48.82674407421095], [2.351135735329978, 48.826815168368206], [2.351266106829243, 48.82688469135277], [2.351398269436909, 48.82695578521835], [2.351402233298532, 48.82695928999623], [2.351450810865265, 48.82702857508806], [2.351522915172329, 48.82714248071012], [2.351503541410955, 48.82715373925788], [2.351359650241421, 48.82709893614693], [2.351156379555976, 48.82702283818029], [2.351012490474735, 48.82696803465265], [2.350809220806383, 48.82689193608705], [2.350665331089258, 48.826837132127956], [2.350658653122514, 48.826838281245315], [2.350645679119136, 48.826855957272606], [2.350479818682541, 48.82692946997493], [2.350319790136356, 48.82699984472881], [2.350153928782597, 48.82707335696973], [2.349993899354855, 48.827143731278504], [2.349833870857077, 48.82721410537617], [2.349668008136522, 48.82728761692913], [2.349507977395093, 48.8273579905743], [2.349342113757268, 48.82743150166587], [2.349182083496481, 48.82750187487329], [2.349016218941386, 48.82757538550345], [2.3489974446235, 48.82757305375616], [2.348873548408247, 48.82745546411798], [2.348752284550271, 48.8273401568948], [2.34873735283352, 48.82733663906956], [2.348560568042153, 48.82737000266559], [2.348388095509664, 48.82740315925656], [2.348211310280476, 48.82743652143502], [2.348038837305814, 48.827469677520334], [2.347862051627574, 48.82750303918056], [2.347689576848642, 48.82753619475282], [2.347517103212441, 48.82756935008274], [2.347340316862361, 48.82760271096879], [2.347167842784, 48.82763586579309], [2.346991055984882, 48.82766922616084], [2.34698408098118, 48.8276723241956], [2.346863326709824, 48.82777399565428], [2.346744999148243, 48.827872532428046], [2.346624243947016, 48.827974203627186], [2.34650591546788, 48.82807274104612], [2.346488859041595, 48.8280878850493]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 58, "roussel_fabien": 21.0, "nb_emargement": 1293.0, "nb_procuration": 77.0, "nb_vote_blanc": 19.0, "jadot_yannick": 152.0, "le_pen_marine": 43.0, "nb_exprime": 1265.0, "nb_vote_nul": 9.0, "arr_bv": "13", "arthaud_nathalie": 13, "nb_inscrit": 1606.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1293, "quartier_bv": "51", "geo_point_2d": [48.82724734036544, 2.351298573672892], "melenchon_jean_luc": 458.0, "poutou_philippe": 9.0, "macron_emmanuel": 365.0}, "geometry": {"type": "Point", "coordinates": [2.351298573672892, 48.82724734036544]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dd8e84f22250e7f94a6a077f81abfc285e2930c5", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 62, "zemmour_eric": 102.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 20.0, "date_tour": "2022-04-10", "id_bvote": "19-47", "geo_shape": {"coordinates": [[[2.3873429519077343, 48.8918354207025], [2.38736564536627, 48.89181579944625], [2.387377227615649, 48.89178052354734], [2.387417740780451, 48.8916535832372], [2.387459173771187, 48.89152738684554], [2.387499686549825, 48.89140044557911], [2.387541117766166, 48.89127425002224], [2.387581631511841, 48.891147308705804], [2.3876230623387302, 48.891021112192185], [2.387663575677089, 48.89089417171796], [2.387705006103854, 48.890767975146915], [2.387745519045583, 48.89064103461568], [2.387786949072329, 48.89051483798713], [2.387827461627904, 48.890387896499604], [2.387868891254638, 48.890261699813635], [2.38790940340292, 48.890134759168426], [2.387950832629648, 48.89000856242493], [2.387991344381215, 48.88988162172271], [2.388032773207942, 48.88975542492181], [2.388073284573368, 48.88962848326329], [2.388114712989532, 48.88950228730418], [2.388155223958152, 48.88937534558868], [2.388196651984996, 48.889249148672874], [2.388237162546351, 48.88912220779963], [2.388278590173211, 48.888996010826375], [2.388270916055062, 48.88898592530046], [2.388093346968748, 48.88893256507283], [2.387926741157529, 48.88888295503207], [2.387749172764485, 48.8888295951883], [2.38758256624693, 48.88877998465705], [2.387404998557724, 48.88872662429796], [2.387238394061256, 48.888677013290135], [2.387071788518549, 48.88862740204128], [2.386894221873094, 48.888574040917305], [2.386727618351474, 48.888524429191946], [2.3865500524204553, 48.888471066653295], [2.386383448192622, 48.8884214544374], [2.38620588295486, 48.888368092282626], [2.38618779293849, 48.88837258429428], [2.386097701545371, 48.88850457998996], [2.386011044613142, 48.888630711649434], [2.3859209523253773, 48.8887627071811], [2.385834294546034, 48.88888883778379], [2.385817749214406, 48.88889369828943], [2.385658252920349, 48.88886033092264], [2.385517466061703, 48.888821097751546], [2.385501555309737, 48.88882372575617], [2.385386849536129, 48.888917233082665], [2.385273245234209, 48.88901097527523], [2.385158540012556, 48.88910448147473], [2.385044934890983, 48.88919822343473], [2.384930227472505, 48.88929173029189], [2.384816621531472, 48.88938547201926], [2.384701913301123, 48.88947897774249], [2.38458830654042, 48.88957271923725], [2.384571674585915, 48.88957518782871], [2.384437740149433, 48.8895321044691], [2.38430569356933, 48.88949281410931], [2.384171760917795, 48.88944973135525], [2.384039713383559, 48.88941044069218], [2.384022865287009, 48.88941354391612], [2.383972334779632, 48.88947010219842], [2.383888513948532, 48.889550529832064], [2.383876384693497, 48.88956410563167], [2.383875612598704, 48.88957345729966], [2.383938689059833, 48.8896508168105], [2.384009425034525, 48.88972515709326], [2.384072501878327, 48.88980251652289], [2.384143238250145, 48.88987685671631], [2.384142147911962, 48.88988740554144], [2.384002726017885, 48.889997334559354], [2.3838508350979533, 48.890119986691865], [2.38385292493042, 48.890133891054944], [2.383895065988472, 48.8901466120466], [2.384049966728093, 48.890222951003615], [2.384206212761597, 48.89029997116156], [2.384361115777368, 48.89037630971241], [2.384517361367555, 48.89045332944657], [2.384672265295734, 48.89052966758424], [2.384828513170111, 48.89060668690868], [2.384983418010703, 48.89068302463317], [2.385139665441762, 48.89076004353382], [2.385294571194767, 48.89083638084516], [2.385450820910032, 48.890913399336036], [2.385605727575455, 48.890989736234175], [2.3857619768474, 48.89106675430129], [2.385916884425244, 48.89114309078626], [2.386073135981409, 48.891220108443605], [2.386228044471678, 48.891296444515355], [2.386384295584521, 48.89137346174894], [2.386539204987217, 48.891449797407496], [2.386695458384296, 48.891526814231256], [2.386850367335639, 48.89160314946966], [2.3870066216531782, 48.89168016587664], [2.387161532880739, 48.891756500708816], [2.387317788118744, 48.89183351669899], [2.3873429519077343, 48.8918354207025]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 47, "roussel_fabien": 30.0, "nb_emargement": 1404.0, "nb_procuration": 66.0, "nb_vote_blanc": 14.0, "jadot_yannick": 101.0, "le_pen_marine": 69.0, "nb_exprime": 1385.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 7, "nb_inscrit": 1872.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1404, "quartier_bv": "74", "geo_point_2d": [48.889967585925596, 2.386332073813049], "melenchon_jean_luc": 588.0, "poutou_philippe": 3.0, "macron_emmanuel": 353.0}, "geometry": {"type": "Point", "coordinates": [2.386332073813049, 48.889967585925596]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a7052239e317712ba7fcea46dd24cb0f66f838b7", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 65, "zemmour_eric": 79.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "2-2", "geo_shape": {"coordinates": [[[2.340033362352637, 48.87196745896276], [2.340034528133743, 48.87189514137783], [2.339978698333581, 48.871778400497426], [2.339919932640137, 48.87165602880696], [2.339864103353192, 48.87153928784783], [2.339805338198727, 48.87141691607459], [2.339749510788032, 48.87130017504427], [2.339690746183933, 48.87117780228904], [2.339634917923092, 48.87106106117245], [2.339576153846556, 48.87093868923374], [2.339520326098911, 48.87082194803847], [2.339461563935863, 48.87069957512524], [2.339405736701302, 48.87058283385127], [2.339346973702668, 48.87046046174709], [2.339291146981086, 48.87034372039441], [2.339232384532801, 48.870221347308174], [2.339170344244821, 48.87009151313144], [2.33911158371654, 48.86996914086476], [2.33904954403003, 48.86983930659579], [2.33899078270693, 48.86971693423442], [2.338928743621886, 48.869587099873165], [2.338869982867073, 48.869464727424536], [2.338807945746578, 48.86933489297861], [2.338749185571455, 48.869212519543495], [2.338757746145891, 48.869201299877815], [2.338815210959206, 48.8691882602997], [2.338854598352478, 48.869182781437665], [2.338855229859033, 48.86918264912529], [2.338856233966674, 48.86918248289732], [2.339027953539659, 48.869149581861166], [2.339201768166472, 48.8691161480433], [2.3393734886543243, 48.869083247416235], [2.339547302838022, 48.869049813094605], [2.3397190229002582, 48.869016911070545], [2.339892836640833, 48.86898347624513], [2.340064556254851, 48.86895057462269], [2.3402383695523, 48.8689171392935], [2.340248181613453, 48.868908687399546], [2.340251895304386, 48.86878747472198], [2.340254681238931, 48.86864855965532], [2.340258393521632, 48.86852734784076], [2.340261179424936, 48.868388432741284], [2.340264891685369, 48.868267219998735], [2.340267677557433, 48.86812830486639], [2.340271389784208, 48.868007092095105], [2.340274175625032, 48.86786817693], [2.340277887818251, 48.867746964130006], [2.340280673627735, 48.86760804893205], [2.340284385775909, 48.86748683700262], [2.3402871715542553, 48.86734792177187], [2.340290883680059, 48.86722670891446], [2.340290172619701, 48.86722365262272], [2.340215426820619, 48.86707745788416], [2.3401496033339733, 48.866941616050944], [2.3400837801906142, 48.866805774164874], [2.340009035570428, 48.866659579242175], [2.339943213161376, 48.86652373634488], [2.339880132885784, 48.86639474533299], [2.339814311136088, 48.86625890323158], [2.339751232874858, 48.866129911229145], [2.339735967554379, 48.866092515006045], [2.339727218640601, 48.86609122564499], [2.339678174129878, 48.86610283810816], [2.339511420687199, 48.86614333370249], [2.339329326604841, 48.86618644601488], [2.339162571260146, 48.8662269411126], [2.338980477959959, 48.86627005289853], [2.338813722065051, 48.86631054840643], [2.33863162682091, 48.866353659650876], [2.338631383448244, 48.866353716763385], [2.338433176804636, 48.866399047292205], [2.338251080936124, 48.86644215795416], [2.338052874988213, 48.86648748785711], [2.337870778495841, 48.86653059793706], [2.337727410010924, 48.866564167755165], [2.337529201779903, 48.86660949677834], [2.337385832857737, 48.866643066184835], [2.337260542310632, 48.86667171898369], [2.337253120630074, 48.8666726105074], [2.337235805226841, 48.866682473964026], [2.337162888285769, 48.8666991496118], [2.336968066096996, 48.866744517142976], [2.336769857882283, 48.866789844908816], [2.336575035012047, 48.8668352117965], [2.336376826110175, 48.86688053890776], [2.336182002558481, 48.86692590515199], [2.335983792969659, 48.86697123160864], [2.335869510215408, 48.866997843153506], [2.335860769784214, 48.86701288475083], [2.335887842243259, 48.86703754210316], [2.33594502964947, 48.86716676061132], [2.336003055185418, 48.867296127620236], [2.336060243161392, 48.8674253460431], [2.336118267908346, 48.86755471295837], [2.336175456453984, 48.86768393129602], [2.336233483138241, 48.86781329813276], [2.336290672241997, 48.86794251728442], [2.336348698148821, 48.8680718831282], [2.336405889185425, 48.86820110220214], [2.336463915666316, 48.86833046795987], [2.336521105909553, 48.86845968694098], [2.336579132964616, 48.86858905261256], [2.336636325140629, 48.868718271515974], [2.336694352758528, 48.868847638000716], [2.336694852334976, 48.86884940887702], [2.336711083450946, 48.868977544532285], [2.336725651811567, 48.86910265546053], [2.336741884456849, 48.86923079019054], [2.336756452962374, 48.86935590108641], [2.336772685762236, 48.8694840357829], [2.336787254412564, 48.86960914664634], [2.336803487355762, 48.86973728220856], [2.336818056162245, 48.86986239214031], [2.3368342892601293, 48.86999052766897], [2.336848856836859, 48.87011563846005], [2.336865090100777, 48.87024377305591], [2.336879659185526, 48.870368883822124], [2.336894228340262, 48.87049399457235], [2.336910461833698, 48.870622129118225], [2.336925031133247, 48.87074723983605], [2.336941264781478, 48.870875374348316], [2.33695583422574, 48.87100048503373], [2.336972068017221, 48.87112862041177], [2.3369866376177493, 48.871253730165456], [2.337002870200683, 48.87138186550242], [2.336981283981487, 48.8714510086498], [2.33698735113472, 48.87145408562474], [2.337052928657344, 48.87146626797871], [2.33714308910064, 48.87148181416651], [2.337151717203031, 48.87148794958249], [2.337217756727466, 48.87149725831286], [2.337310625704688, 48.87151327173923], [2.337513898072748, 48.87154697196629], [2.337696926653825, 48.87157853002464], [2.337900199526473, 48.871612229593744], [2.338083228559459, 48.87164378795882], [2.338286501936691, 48.87167748686989], [2.338469531433019, 48.87170904464246], [2.338672805314827, 48.87174274289552], [2.338855835285904, 48.87177429917623], [2.339038866830592, 48.87180585608308], [2.339242140095263, 48.871839553358804], [2.339425172103276, 48.87187110967303], [2.339628445872503, 48.87190480629075], [2.339811478343835, 48.87193636201246], [2.3400147526176083, 48.87197005797217], [2.340033362352637, 48.87196745896276]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 2, "roussel_fabien": 9.0, "nb_emargement": 842.0, "nb_procuration": 34.0, "nb_vote_blanc": 4.0, "jadot_yannick": 47.0, "le_pen_marine": 46.0, "nb_exprime": 835.0, "nb_vote_nul": 3.0, "arr_bv": "02", "arthaud_nathalie": 2, "nb_inscrit": 1041.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 842, "quartier_bv": "06", "geo_point_2d": [48.86881103149866, 2.3382783462658367], "melenchon_jean_luc": 210.0, "poutou_philippe": 4.0, "macron_emmanuel": 346.0}, "geometry": {"type": "Point", "coordinates": [2.3382783462658367, 48.86881103149866]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "33bc4c536222fed74e842938aa7514f8b877d6b6", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 129, "zemmour_eric": 157.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "7-7", "geo_shape": {"coordinates": [[[2.330425124109578, 48.854453537962456], [2.330428519466483, 48.854437383861566], [2.330375717417147, 48.85435361024754], [2.330351659035854, 48.85430299031124], [2.330334399419735, 48.85427532668456], [2.330334621038398, 48.854268793210494], [2.330323957523423, 48.854256522986], [2.3302656809803413, 48.85416311535367], [2.330186974259068, 48.8540376608107], [2.330111437464601, 48.853916589417864], [2.330032732849944, 48.85379113475328], [2.3299571967712263, 48.85367006323617], [2.329878491537498, 48.85354460843465], [2.3298029575373, 48.85342353680096], [2.329724253047173, 48.853298081870186], [2.329648719762699, 48.85317701011232], [2.32957001601637, 48.85305155505226], [2.32949448344761, 48.85293048317018], [2.329415780444965, 48.85280502798084], [2.329340248591807, 48.85268395597455], [2.329294733227653, 48.85260821335713], [2.329293025807818, 48.8526061856301], [2.329186399339555, 48.852511757113824], [2.329068960629586, 48.85240684791718], [2.328962333612602, 48.85231241917672], [2.328844897154045, 48.85220751064833], [2.328738270950981, 48.85211308169124], [2.328620835392853, 48.85200817292413], [2.328514210003601, 48.85191374375046], [2.328537697641594, 48.85187993382068], [2.328474134006973, 48.851834520193115], [2.328386930097876, 48.85182049001372], [2.328182603627924, 48.851783948717944], [2.327993177867982, 48.85175347058765], [2.327788851936937, 48.8517169286173], [2.327599426639423, 48.85168645076108], [2.327410001563389, 48.851655972604135], [2.327205676423599, 48.85161942963471], [2.327199805149394, 48.85161723726262], [2.327093801110157, 48.85155009138009], [2.3270100254188932, 48.85148900438979], [2.326997863212865, 48.85147934073317], [2.326986806477647, 48.85147556779095], [2.326938600684736, 48.85144503234223], [2.326883246312128, 48.8514105462494], [2.326860545032668, 48.85140483172484], [2.326816284743761, 48.85143853436606], [2.326778961557481, 48.85157293483454], [2.326741710883617, 48.85170708746151], [2.326704387312646, 48.85184148787431], [2.326667134892082, 48.851975640438035], [2.3266298122991538, 48.85211004080272], [2.326592559494715, 48.85224419331084], [2.326555235154242, 48.85237859361217], [2.326517983328571, 48.852512746072314], [2.326480658603492, 48.852647146317956], [2.326443405030978, 48.852781298714795], [2.326406081283946, 48.85291569891234], [2.326368827327439, 48.85304985125364], [2.326331501832925, 48.85318425138778], [2.326294248855187, 48.8533184036811], [2.326256922975949, 48.853452803759524], [2.326219669614315, 48.853586955997166], [2.326182343350244, 48.85372135601985], [2.326145088241818, 48.85385550819426], [2.326107761593108, 48.853989908161196], [2.326070507463355, 48.854124060287624], [2.326033180429903, 48.85425846019883], [2.325995925916134, 48.85439261226959], [2.325984028753383, 48.85439992896251], [2.32578850843327, 48.85441429636382], [2.325591733018209, 48.854427803783146], [2.325396212485337, 48.85444217054309], [2.325199436874969, 48.85445567641769], [2.325003916129352, 48.854470042536256], [2.324807140300397, 48.85448354866469], [2.32461161934204, 48.854497914141945], [2.324414843306151, 48.85451141962488], [2.324389832628049, 48.85452312202379], [2.3243879559256992, 48.85453804882294], [2.324466738930549, 48.854620968118226], [2.324563557391935, 48.85472963517804], [2.324674700174891, 48.85484661299106], [2.3247715195009, 48.85495527896125], [2.324875374289932, 48.85507237551762], [2.324972193091114, 48.85518104129568], [2.325076048792742, 48.855298136754804], [2.3251728684202693, 48.85540680324768], [2.325276725022849, 48.85552389850887], [2.325373546851218, 48.85563256482501], [2.325477402992029, 48.855749659880495], [2.325574225658421, 48.85585832601215], [2.32567104736582, 48.85596699204715], [2.325774906204523, 48.85608408681691], [2.325801848996777, 48.856099105845324], [2.325828074688566, 48.85608717617878], [2.325872975090785, 48.85605565496072], [2.325921529621009, 48.85602454013288], [2.3259233865477382, 48.856023543316816], [2.326094883633553, 48.85594655146413], [2.326265330269122, 48.85587044111139], [2.326436826345863, 48.85579344875803], [2.326607273343964, 48.855717337915394], [2.326778768423045, 48.8556403441621], [2.326949214409219, 48.85556423372118], [2.327119659897556, 48.85548812303227], [2.327291153465099, 48.85541112852878], [2.327461597953036, 48.85533501734232], [2.327633090511402, 48.85525802233815], [2.3276351993322493, 48.855257250849846], [2.327806905676112, 48.85520695863426], [2.327977034773807, 48.855157831870926], [2.328148741822833, 48.85510753916797], [2.328318870273627, 48.85505841191423], [2.328490575290787, 48.85500811960789], [2.328660703106267, 48.854958990964455], [2.328832407465771, 48.85490869816314], [2.32900253463444, 48.854859569029315], [2.329172661470619, 48.85481044055072], [2.329344366220855, 48.85476014611635], [2.329514491047413, 48.85471101713976], [2.329686195128509, 48.854660723109724], [2.329856320682434, 48.85461159275105], [2.330028022743158, 48.85456129821834], [2.330198147650263, 48.85451216736932], [2.33036984905342, 48.85446187234164], [2.330425124109578, 48.854453537962456]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 7, "roussel_fabien": 8.0, "nb_emargement": 1135.0, "nb_procuration": 78.0, "nb_vote_blanc": 3.0, "jadot_yannick": 55.0, "le_pen_marine": 40.0, "nb_exprime": 1132.0, "nb_vote_nul": 1.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1383.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1136, "quartier_bv": "25", "geo_point_2d": [48.85385320098778, 2.3275527773794886], "melenchon_jean_luc": 113.0, "poutou_philippe": 5.0, "macron_emmanuel": 585.0}, "geometry": {"type": "Point", "coordinates": [2.3275527773794886, 48.85385320098778]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "93f18e557a490315f3bf0ebcf0959c1a0c999de2", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 120, "zemmour_eric": 132.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "6-17", "geo_shape": {"coordinates": [[[2.323962774471304, 48.84390329583252], [2.323938608328103, 48.84388893402431], [2.323911859759257, 48.843897914103344], [2.323767347515783, 48.843946431033146], [2.323590196538689, 48.84400586409976], [2.323418933595333, 48.844063360596074], [2.32324178183505, 48.84412279224126], [2.323070518111406, 48.844180289132055], [2.322893365556364, 48.84423972025507], [2.32272210243833, 48.8442972157495], [2.322544949076844, 48.84435664724966], [2.322373683827669, 48.84441414223156], [2.322196529671524, 48.84447357320952], [2.3220252650161832, 48.844531067694355], [2.321848110076982, 48.84459049725086], [2.321676843278895, 48.84464799212241], [2.32149968754484, 48.84470742115676], [2.321328419989857, 48.84476491462423], [2.32115126344934, 48.84482434403571], [2.320979996488308, 48.84488183700609], [2.320802839153037, 48.84494126589535], [2.320631570060855, 48.844998758353164], [2.320454411942659, 48.84505818582099], [2.32036224596914, 48.84508912469753], [2.320342844469031, 48.84509823834866], [2.3203791450588582, 48.84515163382804], [2.320555057564546, 48.84520335262868], [2.320728648370301, 48.84525455703859], [2.320904561570125, 48.84530627532053], [2.321078151699621, 48.84535747921081], [2.32125406559368, 48.84540919697409], [2.321427657783548, 48.84546039946098], [2.321603572371937, 48.84551211670555], [2.321777163873722, 48.84556331957213], [2.321953079156341, 48.845615036298035], [2.322126671344317, 48.84566623865277], [2.322302587321162, 48.84571795485997], [2.322476181557901, 48.845769156710574], [2.32265209822897, 48.845820872399095], [2.322825691789322, 48.845872073730106], [2.322833758694483, 48.84588035935146], [2.322831974446725, 48.84602123979698], [2.322830149009598, 48.84615868262842], [2.322828364730868, 48.846299563938025], [2.32282653791188, 48.84643700672741], [2.322824712445751, 48.84657444950753], [2.322822928149877, 48.84671532986514], [2.322821101301876, 48.84685277260317], [2.32281931833753, 48.846993653832584], [2.322817491470354, 48.84713109653619], [2.322815708486727, 48.84727197773037], [2.322813881600275, 48.8474094203996], [2.3228120986090532, 48.84755030065922], [2.322799091215022, 48.84756260314449], [2.32281426299821, 48.847577113876376], [2.322975532388543, 48.84766569181968], [2.3231276986783262, 48.84774992358523], [2.323279865459901, 48.84783415515085], [2.323441137799681, 48.84792273245389], [2.323593304229819, 48.84800696360011], [2.323754577648797, 48.84809553956757], [2.323776194690681, 48.84809152379235], [2.3238458869879812, 48.8479563210506], [2.323914812705347, 48.847823248105556], [2.323984504284254, 48.847688045250514], [2.324053429292944, 48.847554972193535], [2.324123120141703, 48.847419770124496], [2.324192044441626, 48.8472866969556], [2.3242617345836782, 48.84715149387397], [2.324330658174843, 48.84701842059321], [2.324341911586874, 48.84701240176496], [2.324527966571186, 48.846997512080534], [2.324712301832201, 48.84698272032374], [2.324898357955576, 48.846967830969895], [2.325082693006576, 48.84695303864203], [2.325268748929801, 48.84693814781249], [2.325453083770672, 48.8469233549136], [2.325639138107845, 48.846908464399256], [2.325823472738585, 48.84689367092927], [2.326009528238187, 48.84687877894695], [2.326193862658783, 48.84686398490589], [2.326224667903101, 48.84686131191883], [2.326228632379955, 48.84685010571723], [2.326129144554756, 48.84672321925871], [2.326030734948898, 48.8465975025485], [2.325931246725153, 48.84647061588901], [2.325832838073672, 48.846344898987525], [2.325733350814072, 48.84621801213473], [2.325634943116956, 48.846092295041956], [2.325535458183866, 48.84596540800351], [2.325437051452739, 48.84583968982016], [2.3254427399378, 48.84582762906729], [2.325551326247964, 48.84578936543355], [2.325644673702934, 48.845754905546926], [2.325665375498855, 48.84574781924191], [2.325665334877948, 48.84573768949342], [2.325559808136673, 48.84562483980308], [2.325455388864377, 48.84551321128901], [2.325349863032137, 48.84540036139076], [2.325245444647742, 48.845288733570264], [2.32513991973627, 48.845175882564824], [2.325035500888645, 48.845064254530925], [2.324929976886399, 48.844951403317594], [2.324825560300753, 48.84483977508568], [2.324720037207514, 48.84472692366445], [2.324615621521277, 48.84461529522683], [2.324510099325582, 48.84450244449702], [2.324405683187861, 48.84439081494669], [2.324300161901253, 48.84427796400897], [2.324195748025467, 48.844166334260656], [2.324090227647832, 48.844053483115076], [2.323985814671428, 48.84394185316106], [2.323962774471304, 48.84390329583252]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 17, "roussel_fabien": 21.0, "nb_emargement": 1264.0, "nb_procuration": 100.0, "nb_vote_blanc": 9.0, "jadot_yannick": 105.0, "le_pen_marine": 59.0, "nb_exprime": 1250.0, "nb_vote_nul": 5.0, "arr_bv": "06", "arthaud_nathalie": 3, "nb_inscrit": 1521.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1264, "quartier_bv": "23", "geo_point_2d": [48.84577610662066, 2.3236289308279883], "melenchon_jean_luc": 190.0, "poutou_philippe": 0.0, "macron_emmanuel": 574.0}, "geometry": {"type": "Point", "coordinates": [2.3236289308279883, 48.84577610662066]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8e318af33b217ae674bcdaeb6d1d11629345b55c", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 157, "zemmour_eric": 135.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "15-14", "geo_shape": {"coordinates": [[[2.292484078933557, 48.85075397431796], [2.292471945686879, 48.85074035008715], [2.292304303665031, 48.85070614429683], [2.292140376809264, 48.85067284162371], [2.291972735222238, 48.85063863536679], [2.291808808778514, 48.85060533313665], [2.291641167626311, 48.85057112641309], [2.291477242981768, 48.85053782283545], [2.291309600901702, 48.85050361563715], [2.291145676681429, 48.85047031160329], [2.291136352862567, 48.8504635759016], [2.291120679015053, 48.85041462698962], [2.291104450253431, 48.85036449752034], [2.291094182712941, 48.850357613224524], [2.290863602369065, 48.850322551305226], [2.290637317740206, 48.85028819432521], [2.290406738023035, 48.85025313062396], [2.290180455359526, 48.850218772785844], [2.290178529659385, 48.8502183800316], [2.2900160501573392, 48.85017627824462], [2.28985435783903, 48.850134832044546], [2.289692664415341, 48.85009338561629], [2.289530185695563, 48.85005128316479], [2.289368494151519, 48.85000983630346], [2.289206015954148, 48.84996773340857], [2.289202808512544, 48.8499671963207], [2.289031750440068, 48.84995277316464], [2.288858029073324, 48.84993878901089], [2.288686971189526, 48.84992436536154], [2.2885132513726862, 48.849910380714924], [2.288501338928904, 48.84990233342641], [2.288480952644798, 48.849765448776466], [2.288463125809964, 48.84963694160453], [2.2884452990508732, 48.849508435314405], [2.288424911705399, 48.84937155059836], [2.288432040026695, 48.84935599893361], [2.288409265358499, 48.8493470443254], [2.288360568227788, 48.849335312086346], [2.288140958344289, 48.849281633022855], [2.287942388960353, 48.849233795129145], [2.287722779935419, 48.84918011529321], [2.287524211334585, 48.84913227580183], [2.287505252038239, 48.8491278477514], [2.287493198182474, 48.84913515074936], [2.287320378872554, 48.84919852396509], [2.287147282828544, 48.849262072456], [2.286974462676949, 48.849325445164915], [2.2868013657772233, 48.84938899404737], [2.28662854614672, 48.849452366257516], [2.286455447040911, 48.84951591462414], [2.286282626568837, 48.84957928632747], [2.286109526619709, 48.849642834186376], [2.286103009763851, 48.84964831559352], [2.286052605098268, 48.8497696860826], [2.286001631916793, 48.849891156572724], [2.2859512267925313, 48.8500125260933], [2.285900253137209, 48.85013399651372], [2.285849848892304, 48.85025536687256], [2.285798874763029, 48.85037683722327], [2.285748468696855, 48.8504982066055], [2.285697494093721, 48.850619676886495], [2.285692884557774, 48.850624293675224], [2.285598324616309, 48.85067561422638], [2.285494609690761, 48.85073048287648], [2.285485883935577, 48.85073245793095], [2.285311685764237, 48.85073075648826], [2.285136439528225, 48.85072896219113], [2.284962241392424, 48.85072725934039], [2.284786995180106, 48.85072546453143], [2.284612797055073, 48.850723762071226], [2.284437552229355, 48.85072196675861], [2.284263354139684, 48.850720262890334], [2.2840881079750748, 48.85071846705775], [2.284078258357149, 48.85072110081357], [2.28392750621407, 48.85082061161123], [2.283777093553966, 48.85091957383587], [2.283626338911268, 48.851019083328865], [2.283475925106247, 48.851118045157236], [2.2833251693018948, 48.851217555152296], [2.28317475436452, 48.85131651568516], [2.283023997410869, 48.851416025283], [2.282873581316289, 48.851514986318875], [2.282722823225708, 48.851614494620215], [2.282572405986286, 48.85171345525979], [2.282421646734009, 48.851812964063235], [2.282271228362019, 48.85191192340723], [2.2822064685964962, 48.8519523848377], [2.282225661687232, 48.8519661010263], [2.282334950568291, 48.85204336602847], [2.28247642533114, 48.85214014762561], [2.282611058104861, 48.852235327629366], [2.282752533889311, 48.85233210978259], [2.282887166300585, 48.85242728945107], [2.283028643131403, 48.85252407036186], [2.283163277893345, 48.852619250610665], [2.2833047543954113, 48.8527160311701], [2.283439390157666, 48.852811211091776], [2.283580869056488, 48.85290799131623], [2.28371550446867, 48.85300317000334], [2.283856984389141, 48.85309995078391], [2.283991622164304, 48.853195129152034], [2.284133103131157, 48.85329190869012], [2.284267740531632, 48.85338708762228], [2.284409222532514, 48.85348386681716], [2.284492792775069, 48.853542943717514], [2.2845130030251832, 48.85355095555644], [2.284581529471939, 48.85348680292161], [2.284748352453287, 48.853420226812524], [2.284912479611351, 48.85335481791663], [2.285079300396879, 48.85328824043082], [2.285243428074123, 48.853222831980666], [2.285410248014362, 48.85315625402554], [2.285574374872791, 48.853090844214364], [2.285741193955308, 48.85302426668928], [2.285905318619831, 48.852958856408286], [2.286069444235065, 48.85289344590642], [2.2862362620530963, 48.85282686767929], [2.28640038547443, 48.85276145670761], [2.28656720380983, 48.8526948780193], [2.286731326400018, 48.852629466585974], [2.286898142539592, 48.852562886520936], [2.287062265661379, 48.85249747463404], [2.28722908094326, 48.852430894999024], [2.287393201871159, 48.852365482642284], [2.2875600176704, 48.852298902546146], [2.287724137767155, 48.852233489727716], [2.287890951358274, 48.852166909154214], [2.287909811325528, 48.852170112503124], [2.2879868286201512, 48.85225828192231], [2.288062475914697, 48.85234569846092], [2.288080846309056, 48.85234913000467], [2.288254747154784, 48.852286393598135], [2.288428888389975, 48.852223587317916], [2.288602788385435, 48.85216085129777], [2.2887769287815942, 48.85209804450393], [2.288950826588712, 48.85203530706348], [2.2891249661457342, 48.851972499756016], [2.28929886446533, 48.85190976271009], [2.289473003183317, 48.85184695488901], [2.289646900677191, 48.85178421643088], [2.289821038556141, 48.85172140809618], [2.289994933837045, 48.85165867001633], [2.290169070876961, 48.85159586116808], [2.290342966682605, 48.85153312258341], [2.290517102883487, 48.851470313221554], [2.290690997863387, 48.85140757322471], [2.29086513322533, 48.85134476334923], [2.291039025992184, 48.851282023730775], [2.291213160515091, 48.85121921334173], [2.291387053818904, 48.85115647231911], [2.29156118750277, 48.85109366141646], [2.291735079956363, 48.851030920780296], [2.291909212801191, 48.85096810936409], [2.291919703001268, 48.850969054619064], [2.291936047144297, 48.85095821060915], [2.292067097159457, 48.850910577939125], [2.292209372329366, 48.85085852371457], [2.2923404218440933, 48.850810890740945], [2.292482696468801, 48.85075883618677], [2.292484078933557, 48.85075397431796]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 14, "roussel_fabien": 8.0, "nb_emargement": 1377.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 78.0, "le_pen_marine": 57.0, "nb_exprime": 1364.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1745.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1377, "quartier_bv": "59", "geo_point_2d": [48.85130720507183, 2.2868470379907166], "melenchon_jean_luc": 263.0, "poutou_philippe": 1.0, "macron_emmanuel": 624.0}, "geometry": {"type": "Point", "coordinates": [2.2868470379907166, 48.85130720507183]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3151efa663a02f71e6fd9a7bff0f519d5b15904e", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 182, "zemmour_eric": 191.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-61", "geo_shape": {"coordinates": [[[2.291688602409632, 48.882205675704625], [2.291688158986304, 48.88220288693753], [2.291685787125131, 48.8821879888898], [2.2916702335430488, 48.88218259348343], [2.2916542670374183, 48.88218429769047], [2.291529655207754, 48.882092563705996], [2.2914146235542843, 48.88200651163239], [2.291290013935564, 48.881914777391735], [2.291174983058528, 48.88182872597323], [2.29105995257398, 48.8817426735382], [2.290935344211296, 48.88165093890642], [2.290938204733672, 48.881637340788544], [2.291136752189522, 48.88155441146059], [2.291330733661252, 48.881473389247], [2.291336410918324, 48.88146302202127], [2.291277807470489, 48.881343616394055], [2.291219419201601, 48.88122465087404], [2.291160814926845, 48.881105245155624], [2.291102427180216, 48.880986280452014], [2.291043823454174, 48.88086687375122], [2.290985436242033, 48.880747908964814], [2.2909268330402153, 48.88062850308015], [2.290868446374801, 48.88050953731168], [2.290809843709341, 48.8803901313439], [2.290751458941877, 48.880271165500716], [2.290753518611845, 48.88026300451968], [2.290868587710737, 48.88016168775276], [2.290985142702766, 48.88005906393698], [2.2911002122515782, 48.879957747835974], [2.291216764967314, 48.87985512376763], [2.291220445844594, 48.879844655679086], [2.291204605028535, 48.879836475043895], [2.291023946125355, 48.879726171671635], [2.290838583337139, 48.879612995539524], [2.290834577554837, 48.87960846702419], [2.290803481752748, 48.87952177005152], [2.290771832992341, 48.87943353191849], [2.290740738762596, 48.8793468349238], [2.290709090214898, 48.87925859676015], [2.290698206171818, 48.87925181241476], [2.290498953419046, 48.879228466596004], [2.290301900789034, 48.87920537900636], [2.290102648379302, 48.87918203342633], [2.289905596112921, 48.87915894428415], [2.289706344058489, 48.87913559804356], [2.28950929213123, 48.879112509147376], [2.2893100404443762, 48.87908916134693], [2.289112988868609, 48.879066071797475], [2.288915937479741, 48.87904298102396], [2.288716686312612, 48.879019633133765], [2.28851963526287, 48.87899654260624], [2.288320384463359, 48.878973193156206], [2.288123333765133, 48.8789501019754], [2.287924083320868, 48.8789267518648], [2.287912553485048, 48.878928936128716], [2.287806684965374, 48.87899207670704], [2.287699052398715, 48.879056268813315], [2.287593181997922, 48.87911940918744], [2.287485548904963, 48.87918360109433], [2.2874680407024393, 48.87918403289513], [2.287310128540991, 48.87910313806533], [2.287153512686773, 48.87902290635565], [2.286995602853533, 48.87894201200654], [2.286838987968376, 48.87886177987361], [2.286681077761084, 48.87878088419041], [2.286524463844987, 48.87870065163434], [2.286366555965877, 48.87861975643185], [2.286209943018834, 48.878539523452574], [2.286052034765682, 48.878458626915965], [2.285895422787691, 48.87837839351351], [2.285737515499273, 48.878297497449495], [2.2855809044903292, 48.87821726362387], [2.285422999554719, 48.87813636624207], [2.285266389502377, 48.87805613289252], [2.285109779945, 48.877975898433], [2.284951875109644, 48.87789500040394], [2.2849495008753182, 48.87789343935689], [2.28483070964828, 48.87779328876939], [2.284713385366115, 48.87769437531662], [2.284596062905342, 48.877595460848866], [2.284477271674274, 48.877495309875464], [2.284359950097984, 48.877396396057684], [2.284241161150622, 48.87729624394077], [2.284195341468934, 48.87723621235774], [2.284171827581118, 48.87724369996646], [2.284026128012607, 48.877289669027796], [2.283875513610505, 48.87734192728051], [2.28372489890616, 48.87739418534128], [2.283540247808056, 48.877452443166625], [2.283479957038862, 48.877473361624354], [2.283397935739778, 48.877479159757925], [2.283379889480928, 48.87749356439531], [2.283289564794541, 48.8775249034952], [2.283228709425793, 48.87754512325537], [2.283225333341435, 48.877546813587536], [2.2832865819209562, 48.8776267261007], [2.283442825825488, 48.87772116859057], [2.283588305722045, 48.877808754628134], [2.283733787471315, 48.87789634049006], [2.283890031632193, 48.87799078236501], [2.28403551439733, 48.878078367845845], [2.284191759651412, 48.87817280931139], [2.284225453980679, 48.87819309394563], [2.284244804005828, 48.87821885252893], [2.284263706334004, 48.87821607236518], [2.284375495896857, 48.87828337189426], [2.284508804212467, 48.87836340867468], [2.284654287707989, 48.87845099246653], [2.284787598244501, 48.87853102893249], [2.284933082664638, 48.87861861327144], [2.285066392707553, 48.878698648507374], [2.285211879428298, 48.87878623250238], [2.285345190328695, 48.87886626741565], [2.285490676622985, 48.87895385105039], [2.285623989744308, 48.87903388564922], [2.285628502869958, 48.8790356860777], [2.285834251346736, 48.879085086771134], [2.286039905082692, 48.8791344640579], [2.286245652976479, 48.87918386403178], [2.286451307492521, 48.87923324060739], [2.286657057542516, 48.879282638978616], [2.286862712826218, 48.87933201574238], [2.286866802593325, 48.87933357077986], [2.287026790061666, 48.87942193675541], [2.287186049988198, 48.87950990066712], [2.287346039903236, 48.87959826621], [2.287505300920389, 48.87968622878365], [2.287665290555422, 48.87977459387766], [2.28782455265099, 48.879862556012554], [2.287983815272344, 48.879950518827805], [2.288143806531173, 48.88003888326114], [2.288303070243146, 48.880126844738356], [2.288463063948706, 48.88021520873898], [2.288622328739213, 48.880303169777406], [2.28878232216467, 48.880391533329124], [2.288941588021334, 48.880479494828045], [2.289101582530166, 48.88056785793896], [2.289260849477552, 48.88065581809978], [2.289420846433246, 48.88074418077802], [2.289580114459081, 48.88083214050005], [2.289740111134677, 48.88092050272934], [2.2897449877195, 48.880927169670585], [2.2897502358008808, 48.88106326876156], [2.289755406284093, 48.88119736095352], [2.289760653044163, 48.88133346090182], [2.289765823581023, 48.881467553060425], [2.2897709927932652, 48.88160164429511], [2.289776240998311, 48.88173774420082], [2.2897814116154462, 48.88187183630951], [2.289786658523797, 48.882007935274], [2.289782758013473, 48.882021177350346], [2.289798121077674, 48.882027726622205], [2.2899769646208368, 48.882050643977344], [2.290156433124713, 48.88207364121298], [2.290335276983229, 48.88209655803193], [2.2905147458034563, 48.8821195547295], [2.290693589977421, 48.88214247101228], [2.290873059114094, 48.88216546717176], [2.2910519036034, 48.88218838291834], [2.291231373056512, 48.882211378539765], [2.291410217873387, 48.88223429285085], [2.291589687642929, 48.882257287934195], [2.291605717467156, 48.88226566656868], [2.291624990453437, 48.882256867283054], [2.291650632987391, 48.88223552756384], [2.291672275761062, 48.88221751600094], [2.291688602409632, 48.882205675704625]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 61, "roussel_fabien": 9.0, "nb_emargement": 1242.0, "nb_procuration": 91.0, "nb_vote_blanc": 10.0, "jadot_yannick": 57.0, "le_pen_marine": 56.0, "nb_exprime": 1229.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1503.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1242, "quartier_bv": "65", "geo_point_2d": [48.879767291585694, 2.288459674603393], "melenchon_jean_luc": 125.0, "poutou_philippe": 7.0, "macron_emmanuel": 568.0}, "geometry": {"type": "Point", "coordinates": [2.288459674603393, 48.879767291585694]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f593489d43c9bc8f5fb4ed09444d5a59ef076ce7", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 68, "zemmour_eric": 72.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "14-37", "geo_shape": {"coordinates": [[[2.332120635373362, 48.826864253100304], [2.332179284423217, 48.826853297940325], [2.332382082236263, 48.8268203258638], [2.332585015709936, 48.82678907920614], [2.332787813016585, 48.8267561064397], [2.332990745997018, 48.82672485909178], [2.333193544159339, 48.82669188564306], [2.333396475284648, 48.826660637597264], [2.333599407528676, 48.826629389213856], [2.3338022035726063, 48.826596414722594], [2.334005135323573, 48.82656516564892], [2.334207932211564, 48.82653219137471], [2.334410862107291, 48.826500941603214], [2.334613658500433, 48.82646796573979], [2.334619438069694, 48.826467860292034], [2.334813759727202, 48.82649204541451], [2.334997137875008, 48.82651421681898], [2.335180517540855, 48.82653638794933], [2.335374838351872, 48.82656057215108], [2.335558218341381, 48.826582742701405], [2.335752540862549, 48.826606926295995], [2.335935919813638, 48.82662909625864], [2.336130242671321, 48.82665328013786], [2.3363136219575082, 48.82667544862113], [2.336507945163053, 48.82669963188564], [2.336524977840311, 48.82671951446964], [2.33656925352484, 48.82671392584254], [2.336674342226175, 48.82666307072743], [2.336770781996933, 48.82661685420574], [2.33679768791949, 48.826609407283264], [2.336795156137411, 48.826585921307256], [2.33682080094669, 48.82646355400497], [2.336850293700396, 48.82632694300376], [2.336875938264315, 48.82620457476212], [2.336905430727048, 48.8260679637158], [2.336931076384794, 48.825945596340965], [2.336960567194498, 48.825808985241956], [2.336986212606884, 48.82568661692777], [2.337015703125529, 48.825550005783676], [2.3370413482696852, 48.825427638328726], [2.337070839859519, 48.82529102714706], [2.33709648339628, 48.82516865874523], [2.337125974695157, 48.82503204751845], [2.337151617963704, 48.82490967997592], [2.337181108971528, 48.82477306870399], [2.337206753345326, 48.824650701128924], [2.337236242711711, 48.82451408890508], [2.337261886828731, 48.82439172129], [2.337276628720122, 48.82434371681603], [2.337237002390774, 48.8243357121836], [2.337054315559819, 48.8243140138441], [2.336853739353145, 48.82429166110459], [2.336671052836146, 48.82426996217874], [2.3364704769746982, 48.82424760789618], [2.336287790771566, 48.824225908384015], [2.336087215243919, 48.82420355345774], [2.336086943212257, 48.82420352316736], [2.335895346973789, 48.82418339426607], [2.33569477177796, 48.824161038680735], [2.335503175846917, 48.82414090915037], [2.335302600982684, 48.82411855290641], [2.335111003997267, 48.82409842273944], [2.334910429464638, 48.82407606583688], [2.3347188341487772, 48.82405593504836], [2.33451825994776, 48.82403357748721], [2.334326663577445, 48.82401344606202], [2.3341260897080502, 48.82399108784227], [2.333934495007204, 48.8239709557956], [2.33373392146944, 48.82394859691724], [2.333542327076267, 48.82392846424148], [2.333341752508138, 48.8239061046969], [2.3331501584225443, 48.823885971392116], [2.332949585548069, 48.82386361119655], [2.332757991769963, 48.823843477262635], [2.332557417865245, 48.82382111640088], [2.332365824394735, 48.82380098183795], [2.332165252183586, 48.823778620325164], [2.331973659032307, 48.8237584842338], [2.3319674263621373, 48.82375878848212], [2.331808633974926, 48.82378952259006], [2.331653504918634, 48.82382178072428], [2.331494712154532, 48.82385251441366], [2.331339581354595, 48.823884772131194], [2.331180789575611, 48.82391550540962], [2.331025658393933, 48.82394776271812], [2.330993737581507, 48.82393739507181], [2.330988108526419, 48.82395254150809], [2.330970661265161, 48.82396488321505], [2.330974332134358, 48.82399258305434], [2.331020193863818, 48.82411356601899], [2.331082561206847, 48.82426557902645], [2.331082664061457, 48.824265843119925], [2.331128526282658, 48.82438682601358], [2.331178058145241, 48.82452384644], [2.331223922188305, 48.82464482837757], [2.331273454535164, 48.82478184963232], [2.331319319026444, 48.82490283150551], [2.331368851880657, 48.82503985178995], [2.33141471680883, 48.82516083449805], [2.331464250158869, 48.82529785471151], [2.331510115535373, 48.82541883735523], [2.331559649381245, 48.825555857497655], [2.331605513844038, 48.825676840069384], [2.33165137988174, 48.82579782261812], [2.3317009144589322, 48.825934842655776], [2.331701059775384, 48.82593519512457], [2.33176052921513, 48.82606877205895], [2.33181121806649, 48.82618092257973], [2.331861907147552, 48.82629307216842], [2.331921376045544, 48.82642664897262], [2.33197206695292, 48.82653879939702], [2.332031536413542, 48.8266723761172], [2.332082226446245, 48.82678452556344], [2.332115462887717, 48.82685917870808], [2.332120635373362, 48.826864253100304]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 37, "roussel_fabien": 26.0, "nb_emargement": 1206.0, "nb_procuration": 46.0, "nb_vote_blanc": 10.0, "jadot_yannick": 84.0, "le_pen_marine": 84.0, "nb_exprime": 1193.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1506.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1207, "quartier_bv": "54", "geo_point_2d": [48.82526076144728, 2.334116741803002], "melenchon_jean_luc": 370.0, "poutou_philippe": 10.0, "macron_emmanuel": 412.0}, "geometry": {"type": "Point", "coordinates": [2.334116741803002, 48.82526076144728]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c33547b56e95c8334b21fb008288b76627d8f717", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 162, "zemmour_eric": 179.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "17-64", "geo_shape": {"coordinates": [[[2.288953471148676, 48.87572491192364], [2.288978560442498, 48.8757763018468], [2.288933698775473, 48.87585751753653], [2.288912354460852, 48.87590402431407], [2.288899230640108, 48.875914058553086], [2.288925392891291, 48.87593769397417], [2.289096788631941, 48.87600235296655], [2.289268359700733, 48.87606718362308], [2.289439757656632, 48.876131842124884], [2.289611329578879, 48.87619667228228], [2.2897827270233, 48.87626133027737], [2.289954299798898, 48.876326159935545], [2.290125699458577, 48.876390817440125], [2.2902972730877282, 48.87645564659914], [2.290468672235923, 48.876520303596934], [2.290640246718527, 48.876585132256835], [2.290811646718606, 48.87664978875598], [2.290983223417941, 48.87671461692474], [2.291154624269906, 48.87677927292524], [2.291326200471651, 48.87684409968748], [2.291330870866406, 48.876856788253605], [2.29121998889886, 48.87696983632842], [2.291106641528742, 48.877082265335574], [2.290995758606714, 48.87719531228033], [2.290882410261758, 48.87730774105216], [2.290771526360856, 48.87742078866538], [2.2906581770534, 48.877533216302645], [2.290547292185651, 48.877646263685016], [2.290433940540137, 48.87775869107891], [2.290439426055823, 48.877771788305175], [2.290622860712324, 48.877829473583716], [2.290794256160792, 48.87788334869733], [2.290977690239696, 48.877941033418224], [2.291149086422334, 48.87799490801841], [2.291320482971798, 48.87804878147125], [2.291503919579605, 48.878106465385315], [2.291522226334608, 48.878102028466074], [2.291605907763028, 48.87797899037864], [2.291690994080656, 48.87785388215945], [2.291774674711684, 48.87773084392633], [2.291859760218422, 48.877605735559015], [2.291943440052068, 48.87748269718025], [2.292028524748128, 48.877357588664815], [2.292112203784404, 48.8772345501404], [2.292197289032986, 48.87710944148492], [2.292221739894711, 48.877108866578595], [2.292342489647715, 48.87725716308016], [2.2924509474767, 48.8773903633092], [2.292452937670793, 48.87739220612859], [2.292584877117805, 48.87748652623555], [2.29273030734156, 48.87759048947255], [2.292862246429883, 48.87768480924879], [2.2930076777609703, 48.877788772130195], [2.293139617853906, 48.877883091583755], [2.293285051655746, 48.877987054117526], [2.293416992765409, 48.878081372349186], [2.293562426299089, 48.87818533541848], [2.293672221770796, 48.87826632305858], [2.293817656330307, 48.87837028580039], [2.293927453952225, 48.87845127320085], [2.293935315781029, 48.87845138702009], [2.293952447676148, 48.87844368899305], [2.293974760606697, 48.878310589788754], [2.293995456039617, 48.87818797091943], [2.29401776876289, 48.878054870776985], [2.294038462629632, 48.87793225186375], [2.294059156411122, 48.87780963203401], [2.294081468797229, 48.877676532733275], [2.29406761327154, 48.877666553795535], [2.293895015460452, 48.87766908916648], [2.293727323072068, 48.87767155340286], [2.293554725227949, 48.87767408828317], [2.293387032807372, 48.877676552042885], [2.293377153976189, 48.8776739638888], [2.2932049181806162, 48.877561906519055], [2.293023100638642, 48.877443614733004], [2.293019415900613, 48.87743512118917], [2.293063084285214, 48.87731467774542], [2.293106420965232, 48.87719515144072], [2.293150088947433, 48.87707470793904], [2.293193425215909, 48.87695518247607], [2.293237094159098, 48.876834738924465], [2.293280428677063, 48.8767152124967], [2.293324097205657, 48.87659476978638], [2.293367432687673, 48.87647524330916], [2.293411099462705, 48.87635479963355], [2.293454434533201, 48.87623527399811], [2.2934977680536353, 48.87611574742668], [2.293541435589234, 48.87599530367233], [2.293584770073719, 48.87587577705149], [2.293628435831386, 48.87575533413043], [2.293630229574659, 48.875752559454895], [2.293747418647966, 48.87563240820738], [2.293867566101952, 48.875509220122616], [2.293984752716914, 48.8753890686082], [2.294104900411488, 48.87526588026608], [2.294101123972359, 48.875253588278284], [2.293960055353029, 48.875190036231814], [2.293821579469674, 48.87512765226492], [2.293680511544715, 48.875064098982506], [2.293542037694233, 48.8750017146932], [2.293400970439254, 48.87493816197336], [2.293262497270605, 48.87487577645429], [2.293257750158034, 48.87487203594325], [2.2931907424456153, 48.874773662381045], [2.293124365943572, 48.87467621522363], [2.293057358734995, 48.87457784156931], [2.292990982719838, 48.87448039521993], [2.292959591176914, 48.87443754140507], [2.292947539654188, 48.87443957738081], [2.292838600274226, 48.874474054085475], [2.292660135238333, 48.8745320118109], [2.29247669613493, 48.87459006577798], [2.292298230311056, 48.87464802205853], [2.292114791758933, 48.87470607547299], [2.291936325122647, 48.874764032107116], [2.291752885770912, 48.87482208406165], [2.291574418334332, 48.87488004015014], [2.291390978158434, 48.87493809244324], [2.291212509933898, 48.87499604708683], [2.291029067582831, 48.87505409881117], [2.290850598545869, 48.87511205380841], [2.290667156758348, 48.87517010408085], [2.290488686921201, 48.8752280585324], [2.290305244309503, 48.8752861091434], [2.290126773684527, 48.87534406215004], [2.289943330260904, 48.87540211220037], [2.289764858823388, 48.87546006556061], [2.2895814132367542, 48.87551811414284], [2.289402940999159, 48.87557606695745], [2.289219495951583, 48.87563411588633], [2.2890410229260842, 48.87569206725597], [2.288970164242481, 48.875714489677385], [2.288953471148676, 48.87572491192364]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 64, "roussel_fabien": 8.0, "nb_emargement": 1254.0, "nb_procuration": 86.0, "nb_vote_blanc": 9.0, "jadot_yannick": 65.0, "le_pen_marine": 75.0, "nb_exprime": 1243.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1560.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1254, "quartier_bv": "65", "geo_point_2d": [48.87620068506679, 2.2918899901281367], "melenchon_jean_luc": 137.0, "poutou_philippe": 2.0, "macron_emmanuel": 570.0}, "geometry": {"type": "Point", "coordinates": [2.2918899901281367, 48.87620068506679]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e37c8dc1a3693dfdb39697584b590772e543827c", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 33, "zemmour_eric": 72.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "19-52", "geo_shape": {"coordinates": [[[2.37404377939473, 48.89072647103451], [2.374032267373838, 48.890744622112784], [2.373923175290777, 48.890862692044465], [2.373797988493185, 48.89098391076043], [2.373799659246425, 48.890995358862746], [2.373931542565143, 48.89108158289915], [2.374064778558551, 48.89116752337129], [2.374196662752373, 48.89125374710216], [2.374329900987693, 48.89133968727294], [2.374461786056628, 48.89142591069829], [2.3745950238063163, 48.89151185055348], [2.374726909750367, 48.89159807367331], [2.374860148378202, 48.89168401321999], [2.374992036561161, 48.89177023604142], [2.375125276067151, 48.89185617527962], [2.375126638358135, 48.89186801024941], [2.375042386381878, 48.891941872412055], [2.374909554559706, 48.89206212147494], [2.374825301961299, 48.89213598347175], [2.374811776433035, 48.892139403118705], [2.374603837145383, 48.89211249153391], [2.374391041017394, 48.892085836598795], [2.374183102150325, 48.89205892518136], [2.373970306456651, 48.892032269497264], [2.373762366657181, 48.89200535734082], [2.373549572761622, 48.89197870091495], [2.373341633393556, 48.891951788026574], [2.373128838568541, 48.89192513084466], [2.372920900995678, 48.891898217231486], [2.372708106605009, 48.89187155930064], [2.372684011503543, 48.89188060974316], [2.372681539117579, 48.891903113078996], [2.372683489246785, 48.8919059579534], [2.372806850925941, 48.89202507792094], [2.372921925278528, 48.89214213627302], [2.37292403510843, 48.892148029775534], [2.37289905680123, 48.89229494772079], [2.372883505798329, 48.892457345546035], [2.372884059639661, 48.892460506858455], [2.3729399625740673, 48.89258422048202], [2.372994935995975, 48.89270450458728], [2.3730508394667362, 48.89282821723225], [2.373105812038593, 48.89294850125273], [2.373160786228268, 48.89306878524191], [2.373216690484124, 48.893192497768375], [2.373271665187575, 48.89331278167985], [2.373327569958048, 48.893436495026286], [2.373382545186105, 48.89355677796085], [2.373438450482027, 48.89368049122797], [2.373431545311992, 48.89373940365801], [2.37343250803592, 48.8937397594296], [2.373620436878074, 48.89372617810016], [2.373814685863549, 48.89371294248763], [2.374002614520027, 48.893699359658825], [2.374196863308393, 48.893686123426036], [2.374384791768262, 48.89367253999718], [2.374579040359407, 48.893659303144155], [2.374766968622861, 48.89364571911521], [2.374961217016674, 48.893632481641966], [2.375149145083606, 48.89361889701293], [2.375343393280182, 48.89360565891944], [2.375531322514413, 48.89359207369745], [2.375725569149908, 48.8935788349766], [2.37591349817682, 48.893565250053804], [2.376107744615063, 48.89355201071269], [2.376295673456206, 48.89353842429057], [2.376489919697184, 48.893525184329256], [2.376677848341769, 48.89351159730701], [2.376685350281007, 48.89350449036809], [2.376681863081484, 48.89346710012252], [2.376589634736693, 48.893435821052485], [2.376569756758565, 48.89343097456009], [2.376562262723101, 48.893430017340776], [2.37635695752002, 48.893442535229106], [2.376148489838103, 48.89345478448138], [2.375943185801715, 48.89346730166716], [2.375734716559465, 48.89347955019174], [2.37552941232595, 48.893492066667875], [2.375320942887103, 48.89350431447185], [2.375115638456474, 48.893516830238354], [2.374907168821246, 48.89352907732179], [2.374701864193513, 48.893541592378575], [2.374493394361814, 48.89355383874143], [2.374288089536988, 48.89356635308861], [2.374079620872561, 48.89357859873797], [2.373874314486818, 48.89359111236834], [2.373665845626045, 48.89360335729713], [2.373651007536118, 48.89359476223792], [2.37364747551679, 48.89353701647331], [2.373646706159232, 48.893505962558045], [2.373649331758418, 48.89350028539977], [2.37376444954629, 48.893396671661584], [2.373886313495199, 48.89328652444982], [2.374001430338746, 48.89318291046358], [2.374123291922179, 48.893072762982044], [2.37423840783232, 48.89296914784856], [2.374360269767226, 48.89285900101082], [2.374475384733156, 48.892755385629286], [2.374597245666329, 48.89264523852891], [2.374712359688058, 48.89254162289939], [2.374834218266705, 48.89243147463001], [2.374949331333449, 48.89232785965178], [2.375071190274185, 48.89221771112687], [2.375186302396751, 48.892114095900666], [2.3753081589721923, 48.89200394710606], [2.375423270150594, 48.89190033163182], [2.375545127088133, 48.89179018258171], [2.375660237322376, 48.8916865668595], [2.375782093258331, 48.89157641754677], [2.375897202548425, 48.891472801576626], [2.376019056119131, 48.89136265199421], [2.37613416446509, 48.89125903577604], [2.376256018397908, 48.89114888593812], [2.376371125810507, 48.89104526857274], [2.376492977367337, 48.89093511936441], [2.376608083835816, 48.89083150175103], [2.376639869439459, 48.89082555094101], [2.376645955443322, 48.890800209179005], [2.376623909980042, 48.89076301180943], [2.376549328841893, 48.89063856307117], [2.37648105403235, 48.8905233651518], [2.376406473578792, 48.89039891629743], [2.376338199399534, 48.89028371827147], [2.376269925511601, 48.89016852109376], [2.376195346081778, 48.89004407116834], [2.376127072824115, 48.88992887388404], [2.376052494078863, 48.889804423842484], [2.376057487260752, 48.889781634962446], [2.3760287428916422, 48.88976817521495], [2.375887198569151, 48.88968830350653], [2.375738506825184, 48.88960890517542], [2.375596963380947, 48.88952903311239], [2.375448272534355, 48.889449634409374], [2.375306729968266, 48.889369761991624], [2.375158040018943, 48.889290362916725], [2.375016498341791, 48.889210489245066], [2.3748678092899382, 48.88913108979826], [2.374850050195955, 48.889131426957654], [2.374733069419151, 48.889201600937874], [2.374628644146306, 48.88926988884569], [2.374511662760052, 48.88934006260082], [2.374407236919263, 48.889408350306894], [2.374368838392058, 48.88943409423744], [2.374406892616099, 48.88945891470763], [2.374549459428235, 48.88955526642456], [2.374698469489838, 48.88965796395035], [2.374841037397408, 48.88975431440341], [2.374990048603713, 48.88985701154772], [2.37513261759572, 48.88995336163615], [2.375281629946735, 48.89005605839898], [2.375424200023388, 48.89015240812279], [2.375573213519125, 48.89025510450413], [2.375715783305801, 48.89035145475545], [2.3758647979462673, 48.89045415075532], [2.3758578112339332, 48.89046915998565], [2.375672067238393, 48.89049548788684], [2.375498961319855, 48.890520582792405], [2.375313218312398, 48.89054691104213], [2.375140112060849, 48.89057200452851], [2.3749543686884103, 48.890598332220335], [2.374781262082173, 48.89062342608602], [2.374595518355759, 48.89064975232074], [2.374422411405633, 48.890674845666545], [2.374249304288556, 48.890699938761486], [2.374063560020248, 48.89072626416924], [2.37404377939473, 48.89072647103451]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 52, "roussel_fabien": 23.0, "nb_emargement": 1180.0, "nb_procuration": 47.0, "nb_vote_blanc": 7.0, "jadot_yannick": 67.0, "le_pen_marine": 60.0, "nb_exprime": 1166.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1623.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1180, "quartier_bv": "73", "geo_point_2d": [48.89151336588166, 2.3747614561682537], "melenchon_jean_luc": 543.0, "poutou_philippe": 9.0, "macron_emmanuel": 297.0}, "geometry": {"type": "Point", "coordinates": [2.3747614561682537, 48.89151336588166]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4c49e5f90ea56ec26a6c965f3749652e8c9e14d6", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 41, "zemmour_eric": 65.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "20-15", "geo_shape": {"coordinates": [[[2.395357761111863, 48.87526701909679], [2.395364720479995, 48.8752706165029], [2.395436224478292, 48.87527592307228], [2.395624298015008, 48.87529447718848], [2.395811792884861, 48.87530839113164], [2.395999868035961, 48.87532694466414], [2.396187363112591, 48.87534085891793], [2.396375438514709, 48.8753594118598], [2.396562933819065, 48.875373324625656], [2.396751008108731, 48.87539187697007], [2.396938504993633, 48.87540578915415], [2.397126579523888, 48.875424341807246], [2.39731407526261, 48.87543825339583], [2.397314909157559, 48.875438298064076], [2.397463349700904, 48.87544326768057], [2.397647217257659, 48.875448361422336], [2.397795657861389, 48.87545333062669], [2.397944228342628, 48.87545744593491], [2.397965541550699, 48.8754652091363], [2.397972131884526, 48.87546548240187], [2.398007430407687, 48.87546645942429], [2.398066650898557, 48.87546760439163], [2.398077277785799, 48.87546568199526], [2.39807749893918, 48.8754208271391], [2.398076283938297, 48.87529461060498], [2.398074971641268, 48.875160179069134], [2.398073756642197, 48.87503396340446], [2.398072445721605, 48.87489953184366], [2.398071230745127, 48.87477331524987], [2.398069918463881, 48.87463888454976], [2.398068703499609, 48.8745126679261], [2.398067391241845, 48.874378236294895], [2.398066176289776, 48.87425201964144], [2.398064865398037, 48.87411758888455], [2.398063650458166, 48.87399137220124], [2.398062338226579, 48.87385694050647], [2.398061123298914, 48.873730723793344], [2.398059811070021, 48.87359629296606], [2.39805907945971, 48.87352027404278], [2.398055527200688, 48.87351773804653], [2.398026769704456, 48.87351903416348], [2.397855784849153, 48.873532903457324], [2.397671783861123, 48.8735464156286], [2.397657748944973, 48.87354102724825], [2.397582030678325, 48.87342475721561], [2.397506086434389, 48.87330848688303], [2.397430368833922, 48.87319221762924], [2.397354425267574, 48.873075947175934], [2.397278708354086, 48.87295967690241], [2.397202765465321, 48.87284340632843], [2.397127049217989, 48.87272713683381], [2.397051107006796, 48.8726108661391], [2.396975391446532, 48.87249459562474], [2.396899449912905, 48.87237832480933], [2.39682373502909, 48.87226205417461], [2.396747792809743, 48.872145783231666], [2.396672079955327, 48.872029513382635], [2.396596138413536, 48.87191324231898], [2.396520424882897, 48.87179697144338], [2.396444485381815, 48.87168070026591], [2.396433299101591, 48.87167530900601], [2.396266979185333, 48.87166451999794], [2.396111765737943, 48.87165448467585], [2.395956553713519, 48.87164444915931], [2.395790232631287, 48.87163365948162], [2.395732594956854, 48.87164593763228], [2.395732313559328, 48.87165338900096], [2.395745436987799, 48.87168663711469], [2.395798204570197, 48.871824829082286], [2.395847533375884, 48.87194980321602], [2.395900302869346, 48.8720879942133], [2.395949632169218, 48.87221296827521], [2.395998960352948, 48.87233794139649], [2.396051730631041, 48.872476133177706], [2.396101060661816, 48.87260110713327], [2.396146150417474, 48.87271918605182], [2.39614572298008, 48.87273723982626], [2.396147509019601, 48.87273958710492], [2.396155188719769, 48.87275969988232], [2.396155330718166, 48.87276368015189], [2.3961204258608912, 48.87287742900218], [2.396078725852023, 48.87301822608895], [2.396043820656879, 48.87313197489066], [2.396002121610786, 48.87327277102592], [2.3959672147144673, 48.8733865197722], [2.395925515257519, 48.87352731584831], [2.395890609386631, 48.87364106455289], [2.3958903848509703, 48.87364220377441], [2.395877734715571, 48.873770160930405], [2.395868527367686, 48.873887041271864], [2.395855877119129, 48.87401499839715], [2.395846669689448, 48.87413187781175], [2.395834019327629, 48.87425983490631], [2.395824811805619, 48.87437671429331], [2.395824015478109, 48.87437930934582], [2.395748042366855, 48.87451770909827], [2.395673449145533, 48.87465571015446], [2.395597475231138, 48.874794109776666], [2.395522879851696, 48.87493211069761], [2.395446906497292, 48.875070510196494], [2.395372310323058, 48.87520851098903], [2.395357761111863, 48.87526701909679]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 15, "roussel_fabien": 45.0, "nb_emargement": 1150.0, "nb_procuration": 46.0, "nb_vote_blanc": 18.0, "jadot_yannick": 77.0, "le_pen_marine": 80.0, "nb_exprime": 1125.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1484.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1150, "quartier_bv": "78", "geo_point_2d": [48.87395188154467, 2.3967985963217613], "melenchon_jean_luc": 512.0, "poutou_philippe": 10.0, "macron_emmanuel": 245.0}, "geometry": {"type": "Point", "coordinates": [2.3967985963217613, 48.87395188154467]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "da035b65e3e49cf9471e047cd9c67cce6b295316", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 158, "zemmour_eric": 187.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "8-2", "geo_shape": {"coordinates": [[[2.307967429472824, 48.87628327895563], [2.3079618996905342, 48.87629412719657], [2.307921022322351, 48.87633647999475], [2.307866309971385, 48.876386830653665], [2.30786283216432, 48.876399832979665], [2.307949391985438, 48.87642819405567], [2.308111571267841, 48.87650854138018], [2.30827466840724, 48.87658942079271], [2.308436848693465, 48.87666976766482], [2.3085999482061332, 48.876750646630256], [2.308762129496184, 48.87683099304992], [2.308925230018851, 48.876911871560324], [2.309087412312834, 48.87699221752762], [2.3092505124821088, 48.87707309557516], [2.309412695779825, 48.87715344108998], [2.309575798322597, 48.87723431869038], [2.309737982624151, 48.877314663752806], [2.30990108617683, 48.8773955408982], [2.310063271482227, 48.87747588550815], [2.310226374681616, 48.87755676219065], [2.310388560990856, 48.87763710634818], [2.310551666563563, 48.87771798258353], [2.310558971680774, 48.87771976847146], [2.310761278813868, 48.877728475266125], [2.310962949517638, 48.877737368715], [2.311165256774734, 48.87774607572615], [2.311366927615633, 48.87775496849434], [2.311569235020512, 48.87776367392341], [2.311770905986541, 48.87777256691017], [2.311973213527401, 48.87778127165642], [2.312174884630546, 48.877790163962494], [2.312377192307171, 48.87779886802593], [2.312578863559394, 48.87780775875206], [2.312781171360008, 48.877816463031934], [2.312982842749317, 48.877825353077405], [2.313184514195615, 48.8778342436823], [2.313386822212173, 48.87784294603922], [2.313588493807401, 48.87785183506419], [2.31379080194794, 48.87786053763751], [2.31399247368023, 48.87786942598183], [2.314194781968439, 48.87787812697303], [2.314396453825837, 48.87788701553595], [2.314598762249957, 48.87789571584431], [2.314800434244404, 48.877904603726556], [2.3150027428042232, 48.87791330335209], [2.315204414947632, 48.87792218965432], [2.315406723631418, 48.87793088949634], [2.315438642280226, 48.87793074016755], [2.315447258812835, 48.87792509213753], [2.315452486743979, 48.877844052162104], [2.315460756192668, 48.87771044890552], [2.315469107271767, 48.877581005535774], [2.3154773752725513, 48.87744740223836], [2.315485726279988, 48.87731795793727], [2.315493994196486, 48.87718435460682], [2.315502345120442, 48.877054910273685], [2.315510614304122, 48.87692130781726], [2.31551896378121, 48.87679186344435], [2.315527232892315, 48.87665826005561], [2.315535582285932, 48.876528815650616], [2.315543851312646, 48.87639521222889], [2.315552201974346, 48.876265768698886], [2.315560469553196, 48.87613216523639], [2.315568820143239, 48.8760027207751], [2.3155770876378092, 48.87586911727953], [2.31558543813256, 48.87573967368548], [2.315593706906102, 48.87560607016473], [2.315602055965843, 48.87547662563159], [2.3155921915517412, 48.875467598323546], [2.31539718475146, 48.87543073360002], [2.315200329161534, 48.8753944065768], [2.315005322912742, 48.875357541212466], [2.314808469236103, 48.87532121355026], [2.314613463538604, 48.8752843475451], [2.314416609048668, 48.875248019228316], [2.314221603902569, 48.87521115258242], [2.314024751337675, 48.87517482272733], [2.31401483302545, 48.875165461321025], [2.314029741176463, 48.87503974979856], [2.314043822137026, 48.87491948891638], [2.3140587315109, 48.874793777370094], [2.314072810962859, 48.87467351734913], [2.314087720196357, 48.87454780577123], [2.314101799526739, 48.87442754482079], [2.314116708619865, 48.874301833211206], [2.3141307878049853, 48.87418157312985], [2.314144868288302, 48.87406131304154], [2.314159775821285, 48.87393560047777], [2.31417385617118, 48.87381534035925], [2.314188764915264, 48.873689628670974], [2.314217726030205, 48.87364654348898], [2.314194053914477, 48.873633163273134], [2.314002205102524, 48.873600071710584], [2.313809990025943, 48.87356696155046], [2.313618140338531, 48.87353386936256], [2.313425927101742, 48.87350075949081], [2.313234077902279, 48.87346766668544], [2.313041865165792, 48.873434555295745], [2.312850016454087, 48.87340146187284], [2.312657802830896, 48.873368350755904], [2.31246595597035, 48.8733352567233], [2.312273742847592, 48.873302144088434], [2.312271470381457, 48.87330160671623], [2.312084880089137, 48.873248774742706], [2.311918559611008, 48.873198095101884], [2.31175223945653, 48.87314741522767], [2.311565650243325, 48.873094582437375], [2.3115176031768803, 48.87308627227645], [2.311489134025225, 48.873115922603965], [2.311371329975625, 48.87321714215454], [2.3112588596091, 48.87331738680787], [2.311146388797668, 48.873417632245676], [2.311028582048244, 48.87351885052418], [2.310916110358705, 48.873619095727314], [2.310798304069435, 48.87372031376859], [2.310685831501581, 48.873820558737044], [2.310568022945851, 48.87392177652535], [2.3105667520028472, 48.873922723406245], [2.310435777599491, 48.87399823041077], [2.310308478725557, 48.87408051789328], [2.310177504926235, 48.87415602371302], [2.310050205258625, 48.8742383109091], [2.309919230676309, 48.87431381733471], [2.309791930214916, 48.87439610424437], [2.309763987954069, 48.874407575201516], [2.309754736249034, 48.874421643303265], [2.3096274352643382, 48.87450393002997], [2.309513751535218, 48.87460740718803], [2.309434970323432, 48.87470864927124], [2.309321285753195, 48.87481212712659], [2.30932005986576, 48.87481347715826], [2.309241277965895, 48.874914719095116], [2.309178667542494, 48.87499980231946], [2.309099885085967, 48.87510104414614], [2.30903727420762, 48.875186127282184], [2.309036645621055, 48.87518685032077], [2.308933078351532, 48.87529383783886], [2.308819198882246, 48.875411830298624], [2.308715630718707, 48.87551881760681], [2.308601750276852, 48.87563680893636], [2.308498181207249, 48.87574379693382], [2.308384299780879, 48.87586178803251], [2.308280729817338, 48.87596877582], [2.308166847406444, 48.87608676668772], [2.3080632765608, 48.87619375336603], [2.30799027047902, 48.876269392093256], [2.307967429472824, 48.87628327895563]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 2, "roussel_fabien": 2.0, "nb_emargement": 1149.0, "nb_procuration": 79.0, "nb_vote_blanc": 7.0, "jadot_yannick": 46.0, "le_pen_marine": 66.0, "nb_exprime": 1140.0, "nb_vote_nul": 4.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1403.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1151, "quartier_bv": "32", "geo_point_2d": [48.87582293628963, 2.312111245410252], "melenchon_jean_luc": 117.0, "poutou_philippe": 1.0, "macron_emmanuel": 533.0}, "geometry": {"type": "Point", "coordinates": [2.312111245410252, 48.87582293628963]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1747f6d0ebffa531a0538ba936060a38f49431ac", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 44, "zemmour_eric": 60.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "10-2", "geo_shape": {"coordinates": [[[2.355771192225159, 48.868973609020735], [2.355760039228591, 48.86897483864494], [2.355643580233017, 48.86900174956294], [2.355462567314905, 48.86904349723304], [2.355257976308882, 48.8690907726787], [2.355076961398066, 48.86913252065424], [2.354872369692448, 48.86917979543697], [2.35469135553758, 48.869221541934074], [2.354486763132481, 48.86926881605389], [2.3543057469848, 48.86931056285641], [2.354249265539085, 48.8692940736129], [2.354230517797375, 48.869310250531846], [2.354195810076205, 48.86933920190737], [2.3542576886205993, 48.86939297907476], [2.354326674887095, 48.8695136641136], [2.3543992793883213, 48.86963975566274], [2.354468266309675, 48.869760440593076], [2.354540872860809, 48.86988653203552], [2.354609860437032, 48.87000721685731], [2.354682467674884, 48.87013330818572], [2.354751455905883, 48.870253992898924], [2.35482406383046, 48.8703800841133], [2.354893052716448, 48.87050076871795], [2.354965659964531, 48.87062685981088], [2.355034649505413, 48.87074754430698], [2.355107258803467, 48.870873635293236], [2.355176248999252, 48.87099431968074], [2.3552488589840612, 48.87112041055295], [2.355317849834659, 48.871241094831916], [2.355390459131953, 48.87136718648197], [2.3554594506486, 48.87148786975308], [2.355532061995914, 48.87161396129642], [2.355601054167491, 48.87173464445893], [2.355673666201488, 48.87186073588823], [2.355742659028104, 48.87198141894215], [2.355815270385625, 48.872107510250025], [2.355862377195785, 48.87218990750776], [2.355867051103591, 48.872204098134695], [2.355874148071884, 48.8722103183755], [2.355896036123785, 48.872248604067586], [2.355969229524874, 48.87237553566324], [2.3560382237069373, 48.87249621938983], [2.356111417813584, 48.87262314997075], [2.356180412653071, 48.87274383358834], [2.356253606079862, 48.87287076494583], [2.356322601587896, 48.87299144755508], [2.356395797072328, 48.87311837880447], [2.356464793226691, 48.873239062204014], [2.3565337897119862, 48.87335974465131], [2.356606986228617, 48.87348667572922], [2.356675983360157, 48.87360735896676], [2.356749179219065, 48.873734289022664], [2.356759705559397, 48.873743256217], [2.356820677690866, 48.87373140592342], [2.356974638290724, 48.87362331618645], [2.357123172938818, 48.87352155901346], [2.357277133664968, 48.87341346797495], [2.357425667112599, 48.87331171130651], [2.357574199990975, 48.87320995354512], [2.357728158860104, 48.87310186189602], [2.357730865322626, 48.87309233804689], [2.357655463972965, 48.87296912264505], [2.357579680074835, 48.872845227925744], [2.3575042808038082, 48.872722012408396], [2.357428497635898, 48.87259811666643], [2.357353097705928, 48.8724749019182], [2.357277316620315, 48.872351006060086], [2.357201917416765, 48.872227790289806], [2.3571261356759923, 48.87210389520024], [2.357050738550924, 48.87198067931448], [2.356974957529249, 48.871856784101475], [2.356979458962591, 48.871846205084275], [2.357086803813761, 48.87179348780127], [2.357224301987839, 48.871725124675535], [2.3573316463417893, 48.87167240716723], [2.357418910882247, 48.871629018526086], [2.357420282481658, 48.87162547440163], [2.357405389320739, 48.87161112554473], [2.35733232384411, 48.87149307730728], [2.357259419410013, 48.87137537342298], [2.357186354594881, 48.871257325071284], [2.357113452183826, 48.871139621080275], [2.357040388030077, 48.87102157261423], [2.356967484915669, 48.870903868501905], [2.356894421423398, 48.87078581992161], [2.356821520332005, 48.87066811570256], [2.356748457501202, 48.87055006700797], [2.356675555706348, 48.870432362667636], [2.356602493537007, 48.87031431385875], [2.356529593776146, 48.870196608512394], [2.356456532257147, 48.87007856048855], [2.356383631792925, 48.86996085502087], [2.356310570935369, 48.86984280688273], [2.356237672494104, 48.869725101308404], [2.35616461229798, 48.86960705305598], [2.356091713153249, 48.869489347360314], [2.356018653629668, 48.86937129809436], [2.355945756496646, 48.86925359319129], [2.355872697634584, 48.869135543811076], [2.355799799798088, 48.86901783878668], [2.355771192225159, 48.868973609020735]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 2, "roussel_fabien": 16.0, "nb_emargement": 1372.0, "nb_procuration": 130.0, "nb_vote_blanc": 18.0, "jadot_yannick": 147.0, "le_pen_marine": 47.0, "nb_exprime": 1350.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 4, "nb_inscrit": 1745.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1372, "quartier_bv": "39", "geo_point_2d": [48.87114970706358, 2.3560950962559093], "melenchon_jean_luc": 535.0, "poutou_philippe": 9.0, "macron_emmanuel": 428.0}, "geometry": {"type": "Point", "coordinates": [2.3560950962559093, 48.87114970706358]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "540003d8daeffcb108e69e57e2701ab20162bb75", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 139, "zemmour_eric": 201.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "8-15", "geo_shape": {"coordinates": [[[2.298116340505461, 48.87806936614475], [2.298153477121402, 48.878069343749424], [2.298353937554418, 48.8781143903814], [2.298535030272848, 48.87815140181267], [2.298735492703022, 48.87819644870965], [2.298916585977819, 48.87823345956098], [2.299117047702523, 48.878278504908444], [2.2992981415338782, 48.87831551517988], [2.299479235622508, 48.87835252517608], [2.29967969828013, 48.87839757047578], [2.299860792937301, 48.878434578992874], [2.300061256240651, 48.87847962365032], [2.300242351442277, 48.878516632486686], [2.3004428153914542, 48.87856167650186], [2.300623911149419, 48.87859868475828], [2.300746799406056, 48.87862629642525], [2.300782102012157, 48.878629761824875], [2.30081070785464, 48.87856603271442], [2.3007824774184042, 48.878441234824535], [2.300753895111386, 48.87831594561764], [2.3007256635713462, 48.87819114857734], [2.30069708155032, 48.87806585842916], [2.300668851645491, 48.87794106135509], [2.3006402698862, 48.8778157720642], [2.300612040265129, 48.87769097404915], [2.300583457416442, 48.87756568470834], [2.300555228054874, 48.8774408875508], [2.300526646855574, 48.87731559727669], [2.30049841776568, 48.87719080007749], [2.300469836828202, 48.877065510660636], [2.300475884433594, 48.877056634444024], [2.300649315481642, 48.87698221564882], [2.300820567484112, 48.87690828390615], [2.300993997545773, 48.87683386460155], [2.301165249922402, 48.87675993326308], [2.301338678997579, 48.87668551344917], [2.301509930397156, 48.87661158160769], [2.301683358485851, 48.876537161284396], [2.301854608908379, 48.87646322893991], [2.302028036010593, 48.87638880810727], [2.302199284092805, 48.87631487525184], [2.30237271020844, 48.876240453909816], [2.302543958676978, 48.876166520559316], [2.302717383818176, 48.87609209780873], [2.302888631309668, 48.87601816395522], [2.303062055452348, 48.87594374159458], [2.303233301966798, 48.87586980723809], [2.303406725123005, 48.875795384368075], [2.303577970660415, 48.875721449508575], [2.3037492143483, 48.875647514391225], [2.303922636027169, 48.87557309075885], [2.304093880101372, 48.875499155146414], [2.304267300793774, 48.87542473100474], [2.304276538697175, 48.87542335474348], [2.304413480349337, 48.875435399507396], [2.304550536708918, 48.875447129112096], [2.304687479850299, 48.875459173570256], [2.3048245363461453, 48.87547090196174], [2.304839194444815, 48.87546488685899], [2.304915732946423, 48.87531688706876], [2.304981509699149, 48.87518389228278], [2.304991339427038, 48.8751591059681], [2.30499028610883, 48.87515803863061], [2.304812370782876, 48.875118260131615], [2.304644465853364, 48.875081043279394], [2.304466551054527, 48.87504126426367], [2.304298646632439, 48.875004046024536], [2.304146681316016, 48.87497036198056], [2.303968767287441, 48.87493058132177], [2.303952828421842, 48.87492704866455], [2.30394412178299, 48.874927037609076], [2.303765117690336, 48.87496658117287], [2.303585994127907, 48.87500749347036], [2.303406989486957, 48.875047036495815], [2.303227864015227, 48.87508794734723], [2.303048860189125, 48.87512748984221], [2.302869734159415, 48.87516840015475], [2.302690729784932, 48.87520794211132], [2.302511603185203, 48.87524885278428], [2.302332596898995, 48.875288394194456], [2.30215347111668, 48.87532930343725], [2.30213712390944, 48.87532521056777], [2.302039194188518, 48.87521024885618], [2.301938979916692, 48.87509578725141], [2.301841049713186, 48.87498082444662], [2.30174083768155, 48.874866362660136], [2.301727112607593, 48.874861956767624], [2.301540255981322, 48.8748794731084], [2.301351411112373, 48.87489710975696], [2.301164554233542, 48.87491462551075], [2.300975707734525, 48.87493226245733], [2.300788850603344, 48.87494977762409], [2.30060000522507, 48.87496741308614], [2.300413147841347, 48.87498492766591], [2.300224300845088, 48.87500256252674], [2.300037443196948, 48.87502007741877], [2.299848597309381, 48.87503771169435], [2.299835802130156, 48.87503422385533], [2.29970669027312, 48.87492135761258], [2.299582650985911, 48.874810511139124], [2.299453540231986, 48.874697644600495], [2.299329503379605, 48.874586797850284], [2.299200392365453, 48.874473931007735], [2.299076356584559, 48.874363083972725], [2.298947246673602, 48.87425021683429], [2.29882321196418, 48.87413936951452], [2.298814307667767, 48.874135820714116], [2.298618985905712, 48.874116078025786], [2.298417883226799, 48.874096860526606], [2.298222561761005, 48.874077117190744], [2.298021459378886, 48.874057899024834], [2.297826138209464, 48.87403815504144], [2.297625036123946, 48.8740189362089], [2.297429715250904, 48.87399919157799], [2.297228614825508, 48.87397997208681], [2.297033292885548, 48.873960226800364], [2.296832192756769, 48.87394100664252], [2.296636871113312, 48.873921260708556], [2.296435771281264, 48.87390203988406], [2.296240449934114, 48.87388229330256], [2.296039350398803, 48.873863071811435], [2.2958440307114802, 48.87384332459045], [2.295642930109612, 48.87382410242464], [2.295447610718614, 48.873804354556114], [2.295246510413607, 48.87378513172365], [2.295214084704143, 48.873743031438124], [2.295199365445194, 48.87373931232748], [2.295119487663505, 48.87371913378719], [2.295089913863394, 48.87372874538448], [2.295033474633914, 48.873789517956645], [2.295026595615515, 48.87380921352094], [2.295083894416308, 48.873832210800884], [2.295168032362533, 48.87394945621935], [2.295253367033881, 48.87406675447609], [2.2953375057404592, 48.87418399975052], [2.295422841177725, 48.87430129786156], [2.295506980644563, 48.874418542991904], [2.295592316859917, 48.874535840057916], [2.295676457075068, 48.87465308594356], [2.295761794056355, 48.874770382863815], [2.29584593503189, 48.87488762860536], [2.295931271415785, 48.87500492537186], [2.296015414514947, 48.87512217097737], [2.296100751664889, 48.87523946759813], [2.296184895536614, 48.875356712160354], [2.296270233440258, 48.875474009534585], [2.2963543780725, 48.87559125395274], [2.296439716742111, 48.87570855118122], [2.296523862134678, 48.875825795455306], [2.296609201582514, 48.87594309163877], [2.29669334772337, 48.87606033666803], [2.29677868793709, 48.87617763270574], [2.296862834838496, 48.87629487759096], [2.296948175818208, 48.87641217348288], [2.297032322128731, 48.87652941731675], [2.297117665225787, 48.87664671397017], [2.297201812296767, 48.87676395765995], [2.297287156159745, 48.87688125416757], [2.297371303991294, 48.876998497713295], [2.297456648620302, 48.877115794075145], [2.297540797212226, 48.87723303747678], [2.297626142619503, 48.87735033279357], [2.297710291959786, 48.87746757695043], [2.2977956381330102, 48.87758487212141], [2.2978797882338933, 48.87770211613416], [2.297965133809766, 48.877819411151336], [2.298031966916903, 48.87791126136023], [2.298116118089266, 48.87802850427284], [2.298134632376498, 48.87805394989939], [2.298116340505461, 48.87806936614475]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 15, "roussel_fabien": 5.0, "nb_emargement": 1264.0, "nb_procuration": 78.0, "nb_vote_blanc": 3.0, "jadot_yannick": 57.0, "le_pen_marine": 68.0, "nb_exprime": 1262.0, "nb_vote_nul": 0.0, "arr_bv": "08", "arthaud_nathalie": 1, "nb_inscrit": 1604.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1265, "quartier_bv": "30", "geo_point_2d": [48.87592278951314, 2.2992798888732997], "melenchon_jean_luc": 114.0, "poutou_philippe": 3.0, "macron_emmanuel": 640.0}, "geometry": {"type": "Point", "coordinates": [2.2992798888732997, 48.87592278951314]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "872119a1c92a7f2b05e019262167e3f56b786c75", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 84, "zemmour_eric": 75.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "6-8", "geo_shape": {"coordinates": [[[2.3317447380596352, 48.856418916679374], [2.331763486836687, 48.856428137226125], [2.331831170680533, 48.85651076462897], [2.33192157860069, 48.85662179901601], [2.332021417033449, 48.856743679999376], [2.332111827126024, 48.856854714227055], [2.332211666461629, 48.85697659412684], [2.332302076000903, 48.85708762817983], [2.33240191622783, 48.85720950789534], [2.332492327928034, 48.8573205426882], [2.332592169046301, 48.85744242221938], [2.332682580204732, 48.85755345593833], [2.332772993111388, 48.85766448958548], [2.332872835545257, 48.85778636884469], [2.332963247887111, 48.857897403216484], [2.333063091212443, 48.85801928229144], [2.333153505738215, 48.85813031560448], [2.333253349954923, 48.85825219449507], [2.333247060019567, 48.85826463975142], [2.333047135131869, 48.85832537855029], [2.332849959110635, 48.85838503692946], [2.332650034660846, 48.85844577506593], [2.332452857729304, 48.85850543278435], [2.3324456750956513, 48.858516579749654], [2.332518621008796, 48.85865400734031], [2.332588727289003, 48.85878278076124], [2.332661673963685, 48.85892020733238], [2.332731782318567, 48.859048980646165], [2.332804729731761, 48.85918640799643], [2.332874837446899, 48.85931518028866], [2.332891605787661, 48.859364947609], [2.332951731764932, 48.85936177890443], [2.33314556775331, 48.8593215142642], [2.333343923344024, 48.859279956939616], [2.333537758736409, 48.859239690761946], [2.333736112339967, 48.85919813277661], [2.333929947113242, 48.859157866860016], [2.334128301466889, 48.859116307329884], [2.3343221356326502, 48.85907604077506], [2.334520487987537, 48.85903448148351], [2.334714321557266, 48.85899421339119], [2.334912673287805, 48.85895265344654], [2.335106506238525, 48.85891238561532], [2.335304858707633, 48.858870825025114], [2.335498691062293, 48.8588305556564], [2.335697041544121, 48.85878899440557], [2.335890873279772, 48.858748725297936], [2.33608922451161, 48.85870716250223], [2.336283055639714, 48.85866689275642], [2.336481404872802, 48.858625330199345], [2.336582869585918, 48.85860424986857], [2.336612248133077, 48.85858599312783], [2.336581985839372, 48.85853835401468], [2.336522124540465, 48.858426001656646], [2.336459319297447, 48.85830531483198], [2.336399458530794, 48.85819296238904], [2.336336653852815, 48.85807227547464], [2.336276794981304, 48.857959922954294], [2.336213989505561, 48.85783923594264], [2.336154131166282, 48.85772688333729], [2.33609132625547, 48.857606196235935], [2.336099277315347, 48.8575948932263], [2.336196985659061, 48.85756982083485], [2.336307860444968, 48.85753102443167], [2.336336583442317, 48.857502453038016], [2.336342487651478, 48.857498396429726], [2.336404303994869, 48.85743690880098], [2.336468596995291, 48.85734842642969], [2.336469831697523, 48.85734565427825], [2.336486364878582, 48.85725838379087], [2.336508044448791, 48.857149711166315], [2.336508091713195, 48.85714942453501], [2.336525603101552, 48.8570246060971], [2.336547283855419, 48.8569159334501], [2.336564795071417, 48.856791114980155], [2.336583896547232, 48.856657213755334], [2.336601407588573, 48.85653239525099], [2.336620508875454, 48.85639849398909], [2.33663801974214, 48.85627367545029], [2.33665712084009, 48.85613977415136], [2.336674631532125, 48.856014955578146], [2.336693731078304, 48.85588105423464], [2.33671124295843, 48.85575623563453], [2.336730342315791, 48.855622334253965], [2.336747854021264, 48.855497515619454], [2.336760859621114, 48.85540633839559], [2.336770277532095, 48.855397431235836], [2.336771773848395, 48.85538598626123], [2.336777868768487, 48.85534326207374], [2.336794094326854, 48.85522128452691], [2.336813194649386, 48.85508738217691], [2.336822026223512, 48.85502099045751], [2.336820125503579, 48.85501463228331], [2.336763607800944, 48.85500927365645], [2.336694537398701, 48.85500609380423], [2.336617453594727, 48.855002561907085], [2.336605584443409, 48.85499665300144], [2.336521082712935, 48.854842719616904], [2.336434042221743, 48.8546852708838], [2.336415073809563, 48.85468033256223], [2.336237589342192, 48.85473973079249], [2.336047496129493, 48.854803535781066], [2.335870010812092, 48.854862934358835], [2.335679915337007, 48.85492673874882], [2.335502429192297, 48.854986135875485], [2.335312332806271, 48.85504994057372], [2.335134845822891, 48.85510933714862], [2.334969278218985, 48.85516500443116], [2.3347917904527202, 48.855224400491046], [2.334626222116698, 48.85528006729314], [2.334448733567444, 48.85533946283803], [2.334283164499309, 48.85539512915972], [2.334105675155474, 48.85545452508891], [2.333940105366821, 48.85551019003081], [2.333939789132562, 48.85551029979045], [2.333756479138705, 48.85557568397354], [2.333581109776652, 48.85563802281859], [2.333405740006382, 48.855700360503825], [2.333222430036578, 48.85576574386522], [2.333047058044588, 48.85582808101001], [2.332863747163858, 48.85589346471375], [2.332688375675623, 48.85595580133331], [2.332505063906995, 48.85602118358074], [2.332505043372467, 48.856021190661004], [2.332303738765217, 48.85609245832566], [2.332120424670322, 48.85615783996818], [2.331937111478129, 48.85622322133367], [2.331735805313551, 48.856294488029974], [2.331669110100596, 48.85629919598916], [2.331668489111632, 48.85631296971484], [2.331706790646753, 48.856363930541484], [2.3317389443221073, 48.85640318341451], [2.3317447380596352, 48.856418916679374]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 8, "roussel_fabien": 17.0, "nb_emargement": 851.0, "nb_procuration": 71.0, "nb_vote_blanc": 4.0, "jadot_yannick": 55.0, "le_pen_marine": 25.0, "nb_exprime": 845.0, "nb_vote_nul": 2.0, "arr_bv": "06", "arthaud_nathalie": 4, "nb_inscrit": 1050.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 851, "quartier_bv": "24", "geo_point_2d": [48.85705853300209, 2.334564608755204], "melenchon_jean_luc": 119.0, "poutou_philippe": 5.0, "macron_emmanuel": 427.0}, "geometry": {"type": "Point", "coordinates": [2.334564608755204, 48.85705853300209]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "73122d3dc8e123f474d12ca00348bf2d9d528714", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 144, "zemmour_eric": 172.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-47", "geo_shape": {"coordinates": [[[2.263523092752335, 48.839540598515036], [2.263541098645543, 48.839527450803836], [2.263586959499529, 48.83951458789687], [2.263763456640563, 48.83946555042969], [2.263934300976858, 48.839417633613685], [2.264110798825202, 48.839368595638135], [2.264281642524389, 48.8393206783219], [2.264458138355237, 48.83927163982128], [2.264628981417314, 48.83922372200477], [2.264805476593168, 48.83917468298742], [2.26497631901813, 48.83912676467074], [2.265152814913852, 48.83907772424571], [2.265323656701694, 48.83902980542879], [2.265494498175411, 48.83898188636583], [2.265670991717959, 48.83893284606083], [2.265704929974102, 48.838921227631396], [2.265691404894568, 48.83889780404908], [2.265554090950796, 48.83879233773931], [2.265417955658382, 48.838688256338095], [2.265280642819838, 48.83858278969464], [2.265144508633423, 48.838478707063445], [2.265007196900302, 48.83837324008633], [2.264871063794422, 48.838269158023735], [2.26473375316661, 48.83816369071298], [2.264597621166821, 48.83805960742035], [2.264460311644208, 48.83795413977593], [2.264324180725026, 48.837850057051924], [2.2641868723078042, 48.83774458907387], [2.264050742494601, 48.83764050511986], [2.263914613212253, 48.83753642190055], [2.2637773064499322, 48.83743095342277], [2.263771893710735, 48.837428427938136], [2.263613459165602, 48.83738793141346], [2.263458789934174, 48.837350378133884], [2.263300355882242, 48.837309880292416], [2.263145687107992, 48.83727232660535], [2.263139350278113, 48.837269155043366], [2.263014425100122, 48.83715509464009], [2.262886951400754, 48.83704266874101], [2.262876034786728, 48.837039064222324], [2.262645989180688, 48.83703916808417], [2.262416510400189, 48.83704138583417], [2.2621864661453293, 48.837041488820645], [2.261956985972731, 48.83704370568067], [2.261947337391546, 48.837041191749535], [2.261833091627429, 48.836968576257156], [2.261715915828021, 48.83689757942868], [2.261601670700959, 48.83682496370594], [2.261484495539593, 48.83675396664162], [2.261474692252079, 48.836751607308145], [2.2612626752283163, 48.83675769004281], [2.261059408293072, 48.83676574572715], [2.260856139919921, 48.836773801956866], [2.2606441241087962, 48.83677988270424], [2.260440855616335, 48.83678793822814], [2.26022883833694, 48.836794018230904], [2.260221150948106, 48.83679617056114], [2.260211528067456, 48.836821228828306], [2.260185780045836, 48.836906240514686], [2.260156081288596, 48.83700542980289], [2.260135918768288, 48.83702029859111], [2.260142133954501, 48.83703509669704], [2.260133156356552, 48.83706508033068], [2.260091989802978, 48.83720342674167], [2.260053312995217, 48.8373326005], [2.260012146018347, 48.83747094685042], [2.259973468814216, 48.837600120551976], [2.259934791431157, 48.837729293326824], [2.259893623826509, 48.83786763958739], [2.259899177414257, 48.83787673965453], [2.260045226482211, 48.83794425905793], [2.2602249669701058, 48.83802751076641], [2.260371018232131, 48.83809503067064], [2.260550759760284, 48.83817828187834], [2.260696810517281, 48.838245800467966], [2.260876554435209, 48.83832905208261], [2.261022606036681, 48.838396570265346], [2.261202349645255, 48.83847982047153], [2.261330646851298, 48.83853913063458], [2.261348403453579, 48.83854733825578], [2.261354128131075, 48.838555637062015], [2.261336238307612, 48.83866844759008], [2.261312589992362, 48.838805332979], [2.261294701355581, 48.838918143484044], [2.261271052830705, 48.83905502793489], [2.261253162643292, 48.83916783929939], [2.261240016543955, 48.839243932416515], [2.2612455342855142, 48.83924837882372], [2.26128130048694, 48.8392493794636], [2.261490438486054, 48.83925738375865], [2.261702621165209, 48.83926638859615], [2.261911759310002, 48.83927439125516], [2.262123942131278, 48.83928339534519], [2.262333080396163, 48.839291398166736], [2.262545263359449, 48.839300401509334], [2.262754401769974, 48.839308402694876], [2.262966584875255, 48.83931740529002], [2.26297732893766, 48.83932168415686], [2.263106062871265, 48.83946044662963], [2.263233209262846, 48.83960274359648], [2.263249642129054, 48.83960661678257], [2.263380938393838, 48.839574782603705], [2.263505922566354, 48.839539729231994], [2.263523092752335, 48.839540598515036]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 47, "roussel_fabien": 22.0, "nb_emargement": 1265.0, "nb_procuration": 39.0, "nb_vote_blanc": 16.0, "jadot_yannick": 50.0, "le_pen_marine": 110.0, "nb_exprime": 1244.0, "nb_vote_nul": 7.0, "arr_bv": "16", "arthaud_nathalie": 5, "nb_inscrit": 1616.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1267, "quartier_bv": "61", "geo_point_2d": [48.83816610832606, 2.2625647138111624], "melenchon_jean_luc": 207.0, "poutou_philippe": 7.0, "macron_emmanuel": 485.0}, "geometry": {"type": "Point", "coordinates": [2.2625647138111624, 48.83816610832606]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a873edf76964af4166037bf562bb2f12d40e3f9c", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 93, "zemmour_eric": 87.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "12-32", "geo_shape": {"coordinates": [[[2.407882420820184, 48.84476164951119], [2.407869673457239, 48.84476345797783], [2.4076658776053, 48.84477849271947], [2.407464118127503, 48.84479442036773], [2.407260322027373, 48.84480945531739], [2.407058562305772, 48.844825382281236], [2.40685476597771, 48.84484041564036], [2.4066530060124203, 48.844856341919844], [2.406451245923819, 48.844872267858754], [2.406247449226996, 48.844887301082046], [2.406045688904867, 48.844903225437314], [2.405841891970009, 48.84491825796926], [2.4058047385753882, 48.84491887656746], [2.40579431688688, 48.84493432700084], [2.405801892638308, 48.84496926053192], [2.40583170605054, 48.8451042588996], [2.405860712168656, 48.84523801032414], [2.405890525887092, 48.84537300864456], [2.405919532295488, 48.84550676092192], [2.405949344957448, 48.84564175918842], [2.405978353039218, 48.84577551052667], [2.406008165996928, 48.84591050964528], [2.406037173016755, 48.846044260930306], [2.406066987653419, 48.846179259109114], [2.40609599497369, 48.84631301034761], [2.406125809906327, 48.84644800937855], [2.40615481752715, 48.84658176057053], [2.406184631413549, 48.84671675864819], [2.406213640697539, 48.846850509800404], [2.406243454879713, 48.84698550873014], [2.406272463101751, 48.847119259829086], [2.40630227896292, 48.84725425781905], [2.406331287485421, 48.84738800887146], [2.406354083845668, 48.84743920438104], [2.406391018724729, 48.84743603395346], [2.406578472989921, 48.847421013844695], [2.40677853029011, 48.84740338755144], [2.40696598295332, 48.84738836772772], [2.407166039997219, 48.84737074078597], [2.40735349244154, 48.8473557194553], [2.407553550591562, 48.847338091871826], [2.4077410027965263, 48.847323070832935], [2.407941059327611, 48.847305442594234], [2.408018206861663, 48.847299259964686], [2.408031929812628, 48.847300992569174], [2.408047916297665, 48.84729911557359], [2.408158220744315, 48.84729027562993], [2.408355655599375, 48.847272732658574], [2.408543107348148, 48.847257709462745], [2.408664536854978, 48.847246919391274], [2.408687035356161, 48.847239774605455], [2.408672305676081, 48.84719250102323], [2.408649968959842, 48.84708919966793], [2.40862403186809, 48.84697355485661], [2.408601695351688, 48.84687025257273], [2.408575757113515, 48.846754607721515], [2.408587701410452, 48.84674435477261], [2.408794892261501, 48.84672883878379], [2.409002305636859, 48.846711593178526], [2.4092094975968292, 48.84669607647801], [2.4094169106944, 48.846678831052785], [2.409428645462188, 48.846668413303384], [2.409397237249935, 48.84654542357119], [2.409368346596255, 48.84642743226547], [2.409336938671535, 48.846304442490904], [2.40930804827777, 48.84618645204437], [2.409276640650774, 48.84606346132807], [2.4092477505271113, 48.8459454708415], [2.409216343187642, 48.84582248008279], [2.409187453334079, 48.84570448955614], [2.409158563621525, 48.845586498110706], [2.409127156698666, 48.84546350818825], [2.409120327195456, 48.8454571376016], [2.40893384945922, 48.845388909603905], [2.408749311517683, 48.84532233761508], [2.408742389975142, 48.84531303555211], [2.408751996859431, 48.845273128274115], [2.408762964534837, 48.84523578368681], [2.4087567495264652, 48.845226421261415], [2.408587691469885, 48.84515747656657], [2.408415436662778, 48.845091335298044], [2.408412929856273, 48.845090097979934], [2.408283456575608, 48.84500809387913], [2.408159737620938, 48.84493092605248], [2.408036017659865, 48.84485375898511], [2.407906546932169, 48.84477175356646], [2.407882420820184, 48.84476164951119]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 32, "roussel_fabien": 26.0, "nb_emargement": 1216.0, "nb_procuration": 56.0, "nb_vote_blanc": 15.0, "jadot_yannick": 110.0, "le_pen_marine": 46.0, "nb_exprime": 1194.0, "nb_vote_nul": 7.0, "arr_bv": "12", "arthaud_nathalie": 5, "nb_inscrit": 1493.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1216, "quartier_bv": "45", "geo_point_2d": [48.84607000333268, 2.4075091882990494], "melenchon_jean_luc": 312.0, "poutou_philippe": 7.0, "macron_emmanuel": 444.0}, "geometry": {"type": "Point", "coordinates": [2.4075091882990494, 48.84607000333268]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6f4a7fdac5c4e464ebf7aa5bff3d392ff1103823", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 90, "zemmour_eric": 76.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-13", "geo_shape": {"coordinates": [[[2.332120635373362, 48.826864253100304], [2.332115462887717, 48.82685917870808], [2.332082226446245, 48.82678452556344], [2.332031536413542, 48.8266723761172], [2.33197206695292, 48.82653879939702], [2.331921376045544, 48.82642664897262], [2.331861907147552, 48.82629307216842], [2.33181121806649, 48.82618092257973], [2.33176052921513, 48.82606877205895], [2.331701059775384, 48.82593519512457], [2.3317009144589322, 48.825934842655776], [2.33165137988174, 48.82579782261812], [2.331605513844038, 48.825676840069384], [2.331559649381245, 48.825555857497655], [2.331510115535373, 48.82541883735523], [2.331464250158869, 48.82529785471151], [2.33141471680883, 48.82516083449805], [2.331368851880657, 48.82503985178995], [2.331319319026444, 48.82490283150551], [2.331273454535164, 48.82478184963232], [2.331223922188305, 48.82464482837757], [2.331178058145241, 48.82452384644], [2.331128526282658, 48.82438682601358], [2.331082664061457, 48.824265843119925], [2.331082561206847, 48.82426557902645], [2.331020193863818, 48.82411356601899], [2.330974332134358, 48.82399258305434], [2.330970661265161, 48.82396488321505], [2.330916118205445, 48.82395670128652], [2.330726997419633, 48.82399542523377], [2.330548310828389, 48.82403089488084], [2.330359188126725, 48.82406961913557], [2.330180501030891, 48.82410508823073], [2.329991379160598, 48.824143811009556], [2.329812691560284, 48.82417927955275], [2.32963400371696, 48.824214747827845], [2.329444879669343, 48.82425347063029], [2.329266191321544, 48.82428893835345], [2.329077066743217, 48.824327659672335], [2.32889837789095, 48.82436312684356], [2.328709254120795, 48.824401848485145], [2.3285305647639643, 48.824437315104426], [2.3283714898883803, 48.824469883196635], [2.328350479402133, 48.82448131592093], [2.32837259935677, 48.82450482581662], [2.328496276046109, 48.824591775328734], [2.328619824355067, 48.82468068732772], [2.328743501885438, 48.82476763567124], [2.328867049659115, 48.824856548292566], [2.328867129311265, 48.824856603601695], [2.328990222951421, 48.824941675888084], [2.329115230469016, 48.825027087948655], [2.3292383249279682, 48.82511215906742], [2.329363333249296, 48.82519757175505], [2.329486428515577, 48.825282642605494], [2.329611437663581, 48.825368054121476], [2.32973453372563, 48.82545312560296], [2.329859543688948, 48.825538536846636], [2.3298596523243083, 48.82555096146734], [2.329737095688174, 48.825636648215024], [2.329618070428921, 48.825720232995906], [2.3294955129977453, 48.8258059194831], [2.329376486964755, 48.82588950401095], [2.3292539287387353, 48.82597519023763], [2.329134901943473, 48.82605877361313], [2.329131408558121, 48.82606053478427], [2.329047989337702, 48.82608990275285], [2.328940861416146, 48.82612365610086], [2.328937768481913, 48.82612986244041], [2.328952110915405, 48.82614633408372], [2.329103170047822, 48.82621614142594], [2.329250089242028, 48.82628463384432], [2.329401150536195, 48.82635444080921], [2.329548070523054, 48.826422931953736], [2.329699132616907, 48.82649273853363], [2.329846053384947, 48.82656122930363], [2.329997114904856, 48.82663103639023], [2.330144037816262, 48.82669952679337], [2.330144063545018, 48.826699538629384], [2.330301013976315, 48.82677171578582], [2.330462879318727, 48.826846028386086], [2.330619830632288, 48.82691820511474], [2.330781695510305, 48.82699251816549], [2.330938647706337, 48.827064694466266], [2.331100514867223, 48.82713900618415], [2.331257467945626, 48.8272111820571], [2.331419336004117, 48.82728549423306], [2.331576289964895, 48.82735766967816], [2.331738158944165, 48.82743198051358], [2.331895113787319, 48.827504155530846], [2.332056983675935, 48.82757846592501], [2.332062855357628, 48.82760095075315], [2.332063747358772, 48.82760149985784], [2.332244143858844, 48.827572722609304], [2.332367292864996, 48.82755419948229], [2.332426233576045, 48.82752977856897], [2.332417437048132, 48.8275165571977], [2.332380721221498, 48.827439422268924], [2.332321249991376, 48.82730584581371], [2.332265252852776, 48.827188201382], [2.332205782205063, 48.82705462483947], [2.332149785596845, 48.82693698032736], [2.332123552008045, 48.82687805593928], [2.332120635373362, 48.826864253100304]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 13, "roussel_fabien": 20.0, "nb_emargement": 1183.0, "nb_procuration": 67.0, "nb_vote_blanc": 11.0, "jadot_yannick": 123.0, "le_pen_marine": 44.0, "nb_exprime": 1170.0, "nb_vote_nul": 2.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1515.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1183, "quartier_bv": "55", "geo_point_2d": [48.82565310915359, 2.3305514827974942], "melenchon_jean_luc": 293.0, "poutou_philippe": 3.0, "macron_emmanuel": 452.0}, "geometry": {"type": "Point", "coordinates": [2.3305514827974942, 48.82565310915359]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a7c13b43666fae41bb75c480a55c81a1a31734b3", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 28, "zemmour_eric": 38.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "18-10", "geo_shape": {"coordinates": [[[2.347097710621428, 48.89467927683702], [2.347105477263853, 48.894651616508895], [2.347145471490471, 48.894607474660894], [2.3472419851915403, 48.894498510287164], [2.34734535091005, 48.89438442556599], [2.347441863779332, 48.894275461009016], [2.347545228617047, 48.89416137609213], [2.347641740654654, 48.894052411351865], [2.347745104611484, 48.89393832623923], [2.347841615817325, 48.89382936131577], [2.347944978893481, 48.89371527600738], [2.348041489256202, 48.89360631179989], [2.348144851451595, 48.893492226295756], [2.348241360993933, 48.893383261005766], [2.348344722308471, 48.89326917530594], [2.348414963711183, 48.89318986683347], [2.348417789964298, 48.89317164486687], [2.348374659291413, 48.89315969021596], [2.348271981446554, 48.893115251737576], [2.348146598821791, 48.89306397703963], [2.348126974881424, 48.89306792615706], [2.348042701889277, 48.89319131747492], [2.347960074992432, 48.89331076606548], [2.347875801211694, 48.89343415723852], [2.347793173557835, 48.89355360478822], [2.347784937836151, 48.89355843515471], [2.347607370913139, 48.89359605689999], [2.347403099160177, 48.89363928761162], [2.347225533038074, 48.893676909694605], [2.347021259287025, 48.89372013974432], [2.346843692624553, 48.893757760359065], [2.346639418228075, 48.893800990653524], [2.346518046111839, 48.8938267045846], [2.346494266492332, 48.8938206123165], [2.346468990093999, 48.89383064749898], [2.346412794980551, 48.89384255359062], [2.346217138302492, 48.89388959475829], [2.346039570481087, 48.893927214174894], [2.346022822768196, 48.89392213238091], [2.345944047677794, 48.893798345838974], [2.345878657204815, 48.893682897106196], [2.345799884182956, 48.89355911044986], [2.345734494318696, 48.893443662512446], [2.345719067230815, 48.893416425002755], [2.345717884165436, 48.89341592750911], [2.345666285384173, 48.89342828914155], [2.345493283006118, 48.8934565239996], [2.345311504930569, 48.89348596698315], [2.345138502179784, 48.89351420042786], [2.3449567223384182, 48.8935436428639], [2.344925011707842, 48.89356174361815], [2.344929564738269, 48.89357645984412], [2.34497631776827, 48.89365766712804], [2.34503759527577, 48.893770632428996], [2.345105946154939, 48.89388935425412], [2.345167224216369, 48.89400231946487], [2.345235575695282, 48.89412104119086], [2.345296854299344, 48.89423400721066], [2.345289080113618, 48.89424538428754], [2.345107707076079, 48.89429325266295], [2.344936173788743, 48.89433910884806], [2.34475480010035, 48.89438697668485], [2.34458326620463, 48.89443283146132], [2.344401891853964, 48.89448069965879], [2.344230357338752, 48.89452655392584], [2.344058822521294, 48.89457240794526], [2.34387744720223, 48.89462027534234], [2.343705911765284, 48.894666128852364], [2.343524535806508, 48.894713994811575], [2.343352999738639, 48.89475984871145], [2.343171623129027, 48.89480771413208], [2.343133833594984, 48.89480461194318], [2.343117039662612, 48.89482913783412], [2.343107200174716, 48.89485973631284], [2.343085567370536, 48.89490898496364], [2.343085136893457, 48.89491261855618], [2.3430898891466843, 48.89492805268767], [2.343135317399785, 48.89493456744332], [2.343361721694547, 48.89496816304564], [2.343595077763583, 48.89500125762896], [2.343821482645014, 48.89503485236004], [2.3440548393053, 48.89506794604547], [2.344058059725128, 48.89506869123536], [2.344224441690267, 48.89512236469565], [2.344391002293249, 48.895177151357636], [2.344557384948229, 48.89523082435], [2.34472394624854, 48.895285610543525], [2.344890329593356, 48.895339283068054], [2.345056891579683, 48.895394069692294], [2.345223275614439, 48.89544774174894], [2.345389838309408, 48.89550252700544], [2.345556223033897, 48.89555619859415], [2.345722786426191, 48.89561098338218], [2.345889171840512, 48.895664654503015], [2.346055735930129, 48.89571943882255], [2.346087772638705, 48.89573604523188], [2.346112207899718, 48.89572605591107], [2.34620816258741, 48.895623712897496], [2.346311532805103, 48.895509629185845], [2.346407486690811, 48.8954072868916], [2.346510856042141, 48.89529320298534], [2.346606810512225, 48.89519085961937], [2.346710178997095, 48.895076775518554], [2.346806131301344, 48.89497443286449], [2.346909498919769, 48.89486034856906], [2.347005450444734, 48.894758004835786], [2.347068822910928, 48.894688062180144], [2.347097710621428, 48.89467927683702]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 10, "roussel_fabien": 29.0, "nb_emargement": 1245.0, "nb_procuration": 72.0, "nb_vote_blanc": 10.0, "jadot_yannick": 151.0, "le_pen_marine": 44.0, "nb_exprime": 1239.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1701.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1252, "quartier_bv": "70", "geo_point_2d": [48.89452079017008, 2.3458404201971663], "melenchon_jean_luc": 555.0, "poutou_philippe": 7.0, "macron_emmanuel": 334.0}, "geometry": {"type": "Point", "coordinates": [2.3458404201971663, 48.89452079017008]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "c81fe8c17c504b9754c2099eff4741e4dcc0f509", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 122, "zemmour_eric": 177.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "7-10", "geo_shape": {"coordinates": [[[2.320568806865964, 48.8484405218138], [2.320528869336624, 48.848406885551576], [2.320373891558809, 48.84832785623627], [2.320224297001298, 48.84825509346734], [2.320207549064037, 48.84824455312975], [2.320200386981275, 48.84824274968763], [2.320050791547787, 48.84816998668847], [2.319916558644637, 48.84810702032507], [2.319782326065862, 48.84804405380753], [2.3196327331490902, 48.84797129028041], [2.319498501262858, 48.84790832343674], [2.31932813402811, 48.84784082492903], [2.319327123080203, 48.84784039377949], [2.319263074749956, 48.84781565038103], [2.319242000472739, 48.84781012350863], [2.31919747169577, 48.847844621455536], [2.3191270620160243, 48.847970924603395], [2.319055579428117, 48.84809786193617], [2.318985169062328, 48.84822416497187], [2.318913685793085, 48.84835110129172], [2.318843274741346, 48.848477404215146], [2.318771790767357, 48.84860434132061], [2.318701379029455, 48.84873064413186], [2.31862989436256, 48.84885758112366], [2.318559481950345, 48.84898388292336], [2.318487996590335, 48.84911081980155], [2.318417583480282, 48.84923712238832], [2.318346097427348, 48.84936405915283], [2.318275683631204, 48.84949036162735], [2.3182041968969003, 48.849617297378906], [2.318133782414657, 48.84974359974118], [2.318062294975646, 48.8498705362784], [2.317991879807293, 48.84999683852842], [2.317920391686897, 48.850123774052655], [2.317902461948736, 48.85012896546836], [2.317722939583152, 48.850080537530886], [2.317544215905437, 48.85003181438893], [2.317364694219242, 48.8499833850104], [2.317185969846995, 48.84993466132129], [2.317006450179215, 48.8498862323081], [2.316827726475227, 48.84983750807961], [2.316648207486852, 48.84978907762539], [2.316469484451024, 48.849740352857545], [2.316289964755799, 48.84969192275312], [2.316111242388135, 48.84964319744588], [2.315931724735013, 48.84959476590821], [2.315753003035415, 48.84954604006161], [2.315573486038216, 48.849497608881485], [2.315394765006788, 48.84944888249553], [2.315360190249999, 48.84945016050421], [2.315350971314162, 48.84947432303139], [2.315390259825795, 48.849553124969596], [2.315436007641448, 48.849643462168466], [2.315489151704252, 48.84975005622293], [2.315534901238711, 48.84984039247651], [2.315535210376822, 48.849845388391984], [2.315490888403007, 48.84996611405129], [2.315445992030199, 48.850086771641976], [2.31540166964439, 48.85020749724203], [2.31535677284533, 48.85032815567234], [2.315312450047522, 48.85044888121318], [2.315267552833913, 48.85056953958382], [2.315223228261396, 48.85069026505764], [2.315178331995938, 48.85081092337641], [2.315134007011403, 48.850931648791004], [2.315089110343212, 48.85105230615085], [2.315044784946655, 48.85117303150614], [2.314999887852086, 48.851293689705635], [2.3149555620435, 48.85141441500173], [2.3149106645343682, 48.851535073141505], [2.314866338313747, 48.85165579837836], [2.314821439027314, 48.85177645645071], [2.314804036305077, 48.85181840270848], [2.314819471782131, 48.85182542965314], [2.31492730855907, 48.851822200579285], [2.315134460583005, 48.851816143942656], [2.315331972893821, 48.85181022874661], [2.3155391234485823, 48.851804172300845], [2.315736635668185, 48.85179825643675], [2.315943787502751, 48.85179219839883], [2.316141298268293, 48.85178628185891], [2.316348450008209, 48.85178022312037], [2.316545962045142, 48.85177430592019], [2.316753112327666, 48.851768246473206], [2.316950624261462, 48.85176232950428], [2.317157775812047, 48.85175626936441], [2.317355287666274, 48.851750350828176], [2.317552799475634, 48.851744431965884], [2.3177599495223022, 48.851738370775614], [2.317957461240287, 48.85173245124527], [2.318164612554985, 48.851726389362106], [2.318362122818855, 48.85172046915597], [2.318569274027082, 48.85171440747148], [2.318766785562289, 48.85170848660506], [2.31897393532483, 48.851702423312865], [2.319009239400495, 48.85171479167096], [2.319041224862676, 48.85170235481664], [2.3190990787970502, 48.85157782704403], [2.319155463075351, 48.85145373784945], [2.31921331646071, 48.851329209993764], [2.31926970019787, 48.85120512071761], [2.319327553034219, 48.85108059277888], [2.3193839362186, 48.850956504320436], [2.319441788517795, 48.850831975399366], [2.319498171161152, 48.850707886859354], [2.319556022899507, 48.850583358754506], [2.319612405013591, 48.85045926923367], [2.31967025620296, 48.85033474104576], [2.3197266377643952, 48.85021065234268], [2.319784488416526, 48.85008612317241], [2.319840869436859, 48.84996203438777], [2.319898719528279, 48.849837506033786], [2.319955100019355, 48.849713416268294], [2.320012949561914, 48.84958888783126], [2.320069329500268, 48.84946479888349], [2.320127178505504, 48.849340269464115], [2.32018355790288, 48.84921618043482], [2.320241406359166, 48.849091650932436], [2.32029778521557, 48.84896756182159], [2.3203556331112862, 48.84884303313544], [2.320412011438456, 48.84871894304379], [2.3204698587851382, 48.848594414274594], [2.320526236559624, 48.84847032500072], [2.320568806865964, 48.8484405218138]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 10, "roussel_fabien": 9.0, "nb_emargement": 1297.0, "nb_procuration": 74.0, "nb_vote_blanc": 7.0, "jadot_yannick": 93.0, "le_pen_marine": 107.0, "nb_exprime": 1286.0, "nb_vote_nul": 4.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1589.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1297, "quartier_bv": "27", "geo_point_2d": [48.85029822858012, 2.3178169392070553], "melenchon_jean_luc": 148.0, "poutou_philippe": 3.0, "macron_emmanuel": 568.0}, "geometry": {"type": "Point", "coordinates": [2.3178169392070553, 48.85029822858012]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e0822658b78b78ee6887c38cbd4bd7e04e7445d1", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 162, "zemmour_eric": 211.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "17-44", "geo_shape": {"coordinates": [[[2.303172181186421, 48.879143622533704], [2.303151143943973, 48.87915203299561], [2.303027178747107, 48.87912615327626], [2.302972229599636, 48.879114054729975], [2.302969887332706, 48.87911423804735], [2.3029380658320058, 48.87918031596129], [2.3030518374580122, 48.879271194504355], [2.303158878740093, 48.879356697085626], [2.303272652500171, 48.87944757541221], [2.303379694507388, 48.87953307778235], [2.303493469037995, 48.87962395588452], [2.30360051178228, 48.87970945714425], [2.303601040993762, 48.87972045821587], [2.3034833808121338, 48.87982761232958], [2.303365195626584, 48.87993524261166], [2.303247534462432, 48.88004239737193], [2.303129348302062, 48.880150027400155], [2.303011686179436, 48.88025718100848], [2.302893500407715, 48.88036481079084], [2.302896211626713, 48.880377204147734], [2.303044779277145, 48.88045284088445], [2.303193541034148, 48.88052857568722], [2.303342109560248, 48.88060421114526], [2.303490872182012, 48.88067994556815], [2.303639440196235, 48.88075558153818], [2.303788205046254, 48.88083131558913], [2.3037904681702512, 48.88084409572586], [2.303654978637956, 48.880954397326605], [2.303520383215075, 48.88106397190839], [2.303384893890083, 48.88117427408865], [2.303250297330679, 48.88128384834487], [2.303114805498207, 48.881394150189536], [2.302980207802265, 48.88150372412022], [2.30284471618921, 48.88161402564509], [2.3027101173567193, 48.881723599250286], [2.30270241480184, 48.88173609562233], [2.30270921292847, 48.88174277231268], [2.30287948637963, 48.88178842310872], [2.303062206023635, 48.88183741159945], [2.303232480093652, 48.881883061889525], [2.303415200401754, 48.881932049837346], [2.303585475090621, 48.88197769962145], [2.303768196062816, 48.882026687026304], [2.303938471370532, 48.882072336304475], [2.304121194370238, 48.882121323174324], [2.304291468933377, 48.882166971938595], [2.30438862847998, 48.88219301914903], [2.304400755005123, 48.88219240970841], [2.304480232414601, 48.882161101543986], [2.30464564895844, 48.88209594059511], [2.304828804770298, 48.88202379116386], [2.304994221805372, 48.88195862973314], [2.305177375287982, 48.88188647975172], [2.305342791450666, 48.88182131783129], [2.305525945330963, 48.88174916731557], [2.305691360621359, 48.881684004905416], [2.305874512172314, 48.881611853839544], [2.306039926590525, 48.88154669093968], [2.30622307853906, 48.88147453933945], [2.306388492084984, 48.88140937594986], [2.30640411550735, 48.881410134670325], [2.306454634384255, 48.88143977534926], [2.306530561848196, 48.881480723936015], [2.306532853541583, 48.881485983932706], [2.306556064282355, 48.88149173922093], [2.306723723372532, 48.881582159895835], [2.306892965712913, 48.88167343486613], [2.307060625960908, 48.881763855953594], [2.30722987084585, 48.881855130440506], [2.30739753226375, 48.881945551041234], [2.307566776966126, 48.88203682502892], [2.307586908893984, 48.88203469492484], [2.307699739786391, 48.881917898795336], [2.307811618929981, 48.881802087215085], [2.307924448814471, 48.88168529084906], [2.308036326958546, 48.88156947903439], [2.30814915583513, 48.88145268243195], [2.30826103296796, 48.88133687128206], [2.308373860836652, 48.881220074443135], [2.308485736981936, 48.88110426215959], [2.308598563842746, 48.880987465084225], [2.308710438988752, 48.88087165256621], [2.308720384795554, 48.8808675505679], [2.30893989901266, 48.880850943578096], [2.309159183764788, 48.88083435464767], [2.309378697690118, 48.88081774775215], [2.309597980811128, 48.880801157110334], [2.309817495820092, 48.88078454941761], [2.310036778649714, 48.880767958870905], [2.310052081878518, 48.8807645711329], [2.3100555706030432, 48.88075484244075], [2.31004895669064, 48.880674195973604], [2.310042405965211, 48.880594339480965], [2.310061005422707, 48.88053100842669], [2.310045174713874, 48.880527694873436], [2.309927631882774, 48.88051325486699], [2.309764185206625, 48.88049024293116], [2.309560929532561, 48.88046527266869], [2.309397484532412, 48.8804422602391], [2.309234038313329, 48.880419247578004], [2.309030784534013, 48.880394276421754], [2.3090295166209422, 48.88039405596123], [2.308840588233766, 48.880354624896675], [2.308650661471674, 48.88031410406554], [2.308461733661382, 48.880274672400255], [2.308271807497683, 48.88023415006584], [2.308082880264284, 48.88019471779985], [2.307892954674996, 48.88015419576081], [2.307704028018493, 48.880114762894095], [2.307514103027419, 48.880074239351806], [2.307325175572493, 48.880034806775754], [2.307135252531258, 48.879994282637405], [2.306946325665102, 48.879954848561376], [2.3067564031983743, 48.879914324718385], [2.306567476909136, 48.879874890041656], [2.306377555040657, 48.879834364695434], [2.306188629328445, 48.87979492941797], [2.305998708034374, 48.87975440436706], [2.305809782898989, 48.87971496848893], [2.305619862191404, 48.87967444283412], [2.305430937632954, 48.87963500635528], [2.305241017523757, 48.87959447919725], [2.305052093542251, 48.879555042117694], [2.304862174007358, 48.879514515255], [2.304673250602799, 48.87947507757475], [2.30448333166642, 48.879434549208874], [2.304294408826804, 48.879395111827215], [2.304104489113391, 48.87935458284949], [2.303915568226198, 48.8793151439758], [2.3037256490871902, 48.87927461529338], [2.303536728776858, 48.879235175819], [2.303346810236303, 48.87919464563344], [2.303281854470669, 48.87918108513376], [2.303172181186421, 48.879143622533704]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 44, "roussel_fabien": 5.0, "nb_emargement": 1315.0, "nb_procuration": 64.0, "nb_vote_blanc": 9.0, "jadot_yannick": 64.0, "le_pen_marine": 57.0, "nb_exprime": 1307.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1585.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1318, "quartier_bv": "66", "geo_point_2d": [48.88075580455906, 2.3057114134799686], "melenchon_jean_luc": 109.0, "poutou_philippe": 0.0, "macron_emmanuel": 660.0}, "geometry": {"type": "Point", "coordinates": [2.3057114134799686, 48.88075580455906]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "dd56cb6e0d07bea0e56143d9b68fe29d85300223", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 126, "zemmour_eric": 80.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "15-8", "geo_shape": {"coordinates": [[[2.289483442303964, 48.845050655168535], [2.289483007159624, 48.84505098894727], [2.289453970352459, 48.8450623076985], [2.289289207195696, 48.84512653307903], [2.289110932007378, 48.84519902496198], [2.288946167995652, 48.84526324986222], [2.288767890500057, 48.84533574121699], [2.288603125633367, 48.845399965636894], [2.288424848555509, 48.84547245647968], [2.288260082833855, 48.84553668041929], [2.288132971843496, 48.845588365287014], [2.288115684228346, 48.84559681809074], [2.288147781023132, 48.84563675837127], [2.288188498411221, 48.84565761501605], [2.288214259746729, 48.845670958395544], [2.288217328616348, 48.84567214313224], [2.288401701647577, 48.84572331125526], [2.288584534933613, 48.84577410209271], [2.288767367213445, 48.845824892640366], [2.2889517426755, 48.845876060816074], [2.28913457567089, 48.84592685079794], [2.289318951866344, 48.845978017503775], [2.289501785565025, 48.846028807819074], [2.289686161119231, 48.84607997394621], [2.289868996908301, 48.8461307628045], [2.290053373171372, 48.84618192926036], [2.290236209675993, 48.84623271755283], [2.290420586672531, 48.846283882538806], [2.290603423892695, 48.846334670265385], [2.290787801598306, 48.84638583558005], [2.290970639534012, 48.84643662274083], [2.29115501797297, 48.84648778658563], [2.2911630241321292, 48.84649807329563], [2.291111003149215, 48.84664889979841], [2.291056638692796, 48.84680238348743], [2.291068735398649, 48.84681339054872], [2.291272206367611, 48.8468249846385], [2.2914721596912973, 48.84683662590094], [2.291675632215545, 48.84684821841311], [2.291875585706268, 48.84685985990035], [2.2920790584109643, 48.84687145172623], [2.292279012093255, 48.84688309163968], [2.292289528624591, 48.84688745641161], [2.292387271766188, 48.846996014104256], [2.292480337022123, 48.847101272151306], [2.292495177733082, 48.84711605373572], [2.292518649948914, 48.84710923955247], [2.292558333471327, 48.84709363820087], [2.292612457857774, 48.84707298415108], [2.292618528101039, 48.8470622825274], [2.292580590622098, 48.84698921506239], [2.292540040215452, 48.8469114860101], [2.292544174544361, 48.846903460243055], [2.292533738625501, 48.84689185068725], [2.292533003177636, 48.84688921119924], [2.292527160340862, 48.84676873190185], [2.2925210574208412, 48.846647337298094], [2.29251521600139, 48.84652685798202], [2.292509113125308, 48.846405464250594], [2.292503270397996, 48.84628498489974], [2.292497167590271, 48.84616359024205], [2.292491326280269, 48.84604311087254], [2.29248522351648, 48.845921717087194], [2.29247938089863, 48.84580123768287], [2.292473278203299, 48.84567984297131], [2.292458887870737, 48.84567116262609], [2.292299892272437, 48.845676762383], [2.292063348636377, 48.84568562284312], [2.2919043529515672, 48.84569122207434], [2.291667810545203, 48.84570008176039], [2.291508814773688, 48.84570568046585], [2.291494478209222, 48.84569626374168], [2.291502832089341, 48.8455826414512], [2.291508636456742, 48.84547873878891], [2.291514442163659, 48.84537483612474], [2.291522795948731, 48.84526121380013], [2.291529895967999, 48.84525374883624], [2.291690535490738, 48.845196084734226], [2.291853243065201, 48.84513782468541], [2.292013881872961, 48.84508016014322], [2.292176588724046, 48.84502189964865], [2.292337226816623, 48.84496423466631], [2.29249993158178, 48.84490597371782], [2.2926605703218232, 48.84484830830338], [2.292823274363707, 48.8447900469091], [2.292983912388664, 48.844732381054506], [2.293146615707068, 48.84467411921446], [2.293151707523641, 48.84466148441929], [2.293037968513562, 48.84454007506503], [2.292928686183034, 48.844422554707485], [2.292814948213922, 48.84430114511518], [2.292705666887284, 48.84418362452873], [2.292596386053586, 48.84406610383011], [2.292482649636467, 48.843944693883095], [2.292435597735612, 48.84390662958516], [2.292422557111957, 48.84391128042852], [2.292316767871875, 48.843952554394555], [2.292152011751411, 48.8440167837816], [2.2919782626890592, 48.844084571575785], [2.291813505734089, 48.84414880048905], [2.291639755791337, 48.844216587783635], [2.291474998001861, 48.844280816223105], [2.291318354662968, 48.844331783670114], [2.291153596113239, 48.84439601166035], [2.290996950751373, 48.844446978673204], [2.290832191441389, 48.84451120621416], [2.290831413739742, 48.844511480407775], [2.290604450710343, 48.84459778977639], [2.290439690439893, 48.844662016768105], [2.29043910812506, 48.84466225164653], [2.29028477340699, 48.84472794417039], [2.290120012318869, 48.84479217161365], [2.289965675451305, 48.84485786371011], [2.289800913571469, 48.84492208980713], [2.289646577267245, 48.844987782391705], [2.289510851378823, 48.84504068928371], [2.289483442303964, 48.845050655168535]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 8, "roussel_fabien": 15.0, "nb_emargement": 1178.0, "nb_procuration": 78.0, "nb_vote_blanc": 7.0, "jadot_yannick": 93.0, "le_pen_marine": 63.0, "nb_exprime": 1170.0, "nb_vote_nul": 1.0, "arr_bv": "15", "arthaud_nathalie": 0, "nb_inscrit": 1391.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1178, "quartier_bv": "59", "geo_point_2d": [48.84547537107098, 2.2910301497710726], "melenchon_jean_luc": 187.0, "poutou_philippe": 3.0, "macron_emmanuel": 554.0}, "geometry": {"type": "Point", "coordinates": [2.2910301497710726, 48.84547537107098]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b89c3ae0217c4464553d2c9bcd959ce23996a29c", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 39, "zemmour_eric": 65.0, "hidalgo_anne": 40.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-23", "geo_shape": {"coordinates": [[[2.371175999146482, 48.86592565010167], [2.371193557322153, 48.86595338901895], [2.371132547742816, 48.866056775166754], [2.371073859258431, 48.86614662488973], [2.371073798120681, 48.86614672079801], [2.371012788066497, 48.866250107766014], [2.370940009828495, 48.8663651998267], [2.3709398777278983, 48.86636541497437], [2.370866110518681, 48.86648143799623], [2.37079333299657, 48.86659652995079], [2.370719565144465, 48.86671255195886], [2.3706467856125792, 48.866827643793144], [2.370573017095949, 48.866943666585904], [2.370500238280542, 48.867058758314215], [2.370426469121116, 48.86717478009316], [2.370353688295906, 48.86728987170111], [2.370279918482908, 48.86740589336549], [2.370207138374173, 48.86752098486747], [2.37013336789652, 48.86763700731656], [2.370060585777954, 48.867752098698205], [2.369986814657484, 48.86786812013347], [2.369914033255389, 48.86798321140909], [2.369840261470345, 48.868099233629046], [2.369767478058491, 48.86821432478434], [2.369693705630618, 48.86833034599045], [2.3696209229351313, 48.868445437039746], [2.369628131469514, 48.86848488767818], [2.369645048373926, 48.86848935565894], [2.369708620699619, 48.86848177715633], [2.369904502583057, 48.86845624830628], [2.370101473284586, 48.8684327663679], [2.370297354802072, 48.86840723597456], [2.370494323778011, 48.86838375338145], [2.370690206270965, 48.86835822325051], [2.370887174884482, 48.868334740009885], [2.371083057011552, 48.8683092083356], [2.371280025262636, 48.86828572444747], [2.371280716198543, 48.86828563004881], [2.371476596573936, 48.86826009862147], [2.37166785824295, 48.86823048840302], [2.371863739584416, 48.868204956347995], [2.372055000819965, 48.86817534640872], [2.372250881775168, 48.86814981281955], [2.372442142588296, 48.868120202260165], [2.372451256118148, 48.86811542148772], [2.3725499547350353, 48.86798327909156], [2.37263456076243, 48.867867587209524], [2.372719165050766, 48.86775189524841], [2.372817863662454, 48.867619752595104], [2.372839442860768, 48.867590243198656], [2.372847847266017, 48.86758490648366], [2.372853293028574, 48.867572474657926], [2.372916317264689, 48.86748629192912], [2.372993578005176, 48.86737513441176], [2.373078180696501, 48.867259442145375], [2.373155442118299, 48.86714828450789], [2.373240044081732, 48.86703259210338], [2.373317303458566, 48.86692143433146], [2.37340190605725, 48.86680574179596], [2.37348827927112, 48.86669071227994], [2.373572879752169, 48.866575019592354], [2.373659252216782, 48.86645998902968], [2.373743851943538, 48.8663442961971], [2.373830223637277, 48.866229266386355], [2.373914823972766, 48.86611357341592], [2.374001193543339, 48.865998543450665], [2.374085793124348, 48.8658828503353], [2.374172163308796, 48.86576781933053], [2.374256760772429, 48.86565212606307], [2.374343130186038, 48.865537095810254], [2.374427726895317, 48.86542140239782], [2.374514095548903, 48.865306371997654], [2.374513939244619, 48.86530043012716], [2.374464631310333, 48.86528407150311], [2.374279150598033, 48.86531859356053], [2.374079114218186, 48.865358076422964], [2.3738936329870333, 48.86539259788064], [2.373693596041657, 48.865432079196815], [2.373508114291558, 48.865466600054745], [2.373308078132957, 48.86550608073108], [2.37312259586382, 48.86554060098923], [2.372922557754979, 48.86558008191073], [2.372737074967008, 48.86561460156912], [2.372537036292678, 48.86565408094433], [2.372351552985782, 48.865688600003004], [2.372151513724312, 48.86572807963051], [2.371966029909235, 48.86576259719007], [2.371765991434568, 48.865802076177786], [2.3715805070898393, 48.86583659403687], [2.371380466686619, 48.86587607147112], [2.371194981822986, 48.86591058873047], [2.371175999146482, 48.86592565010167]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 23, "roussel_fabien": 32.0, "nb_emargement": 1335.0, "nb_procuration": 81.0, "nb_vote_blanc": 8.0, "jadot_yannick": 159.0, "le_pen_marine": 49.0, "nb_exprime": 1324.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1663.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1335, "quartier_bv": "41", "geo_point_2d": [48.86692523987219, 2.3719830346931423], "melenchon_jean_luc": 474.0, "poutou_philippe": 8.0, "macron_emmanuel": 435.0}, "geometry": {"type": "Point", "coordinates": [2.3719830346931423, 48.86692523987219]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3d418245047b2faa0646dc8de4dd0b877ff60511", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 19, "zemmour_eric": 38.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "20-73", "geo_shape": {"coordinates": [[[2.393290112604787, 48.86957687727724], [2.393283195065217, 48.869577139893465], [2.393125543424539, 48.869518362210385], [2.39294290673044, 48.869452760235646], [2.392785254486959, 48.86939398209084], [2.392602618647012, 48.869328380488774], [2.39259913884152, 48.86932751115767], [2.39243269486669, 48.86929346736121], [2.392281855505864, 48.86927071010274], [2.392115411919886, 48.86923666586334], [2.391964572862153, 48.86921390820384], [2.39179812967543, 48.86917986262221], [2.391643790634315, 48.869144800922705], [2.39147734787806, 48.86911075489283], [2.391323009257615, 48.8690756927775], [2.391318870687714, 48.86907578684655], [2.391297435341273, 48.86910911520519], [2.3912771964180832, 48.86913653560079], [2.391253887012033, 48.86916947399937], [2.391248097327765, 48.86917355182737], [2.391097431535501, 48.86922815135997], [2.390949630713267, 48.86928230841671], [2.390801830936495, 48.86933646619455], [2.390651162842072, 48.86939106515041], [2.390623689252818, 48.86939967133618], [2.390623773806105, 48.86940945745572], [2.390513675444883, 48.86948880479089], [2.39040984949442, 48.86956241291931], [2.39029975047353, 48.869641760946024], [2.390195923915909, 48.86971536887871], [2.39019236238052, 48.86972253014151], [2.390217757573662, 48.86986714970223], [2.3902430311263902, 48.87000959492115], [2.390268427963479, 48.87015421444052], [2.390293701804577, 48.87029665871243], [2.390319097548446, 48.870441279075834], [2.390344371667386, 48.87058372330004], [2.39036964591403, 48.87072616839986], [2.390395042088778, 48.870870787791624], [2.39039940844889, 48.870876403899686], [2.39056468325089, 48.87097562568138], [2.3907328691310332, 48.871076380119376], [2.39089814521314, 48.871175600523344], [2.391066332373453, 48.87127635537385], [2.391231609725357, 48.8713755752994], [2.391399796823617, 48.87147632875693], [2.391401517783687, 48.87147757319411], [2.39140631245105, 48.871495551906705], [2.391432988997873, 48.87149818859037], [2.391522927845787, 48.8715768862102], [2.391589803559166, 48.87163540235863], [2.391588800900842, 48.87164701038004], [2.39145735634952, 48.87173827225203], [2.391325897589649, 48.87182954379494], [2.391194452117189, 48.871920805363175], [2.391062992435978, 48.87201207660224], [2.390931546042273, 48.87210333786669], [2.3908000854397162, 48.87219460880195], [2.3906686381247573, 48.872285869762635], [2.390537176600846, 48.87237714039406], [2.390405728364629, 48.8724684010509], [2.390274265919358, 48.872559671378546], [2.390142816761875, 48.87265093173159], [2.390011353395236, 48.872742201755415], [2.389879904679773, 48.87283346181161], [2.389748440391763, 48.87292473153157], [2.389747535826688, 48.87293642456379], [2.389836462874241, 48.87301234104558], [2.389920177010849, 48.8730838079601], [2.390003892750908, 48.87315527391915], [2.390092820545733, 48.873231190195426], [2.390144141001651, 48.87326081313589], [2.390156290582661, 48.873254352163734], [2.390234163565427, 48.873195848780306], [2.390358724769661, 48.873101570193775], [2.390480603379559, 48.87301000729195], [2.390605165056612, 48.872915728440034], [2.390727041435161, 48.872824165264966], [2.390851602221741, 48.87272988614074], [2.390973477721733, 48.87263832359863], [2.39109803762836, 48.87254404330281], [2.391219912260321, 48.8724524804944], [2.391344471276485, 48.872358199926275], [2.391466346403599, 48.87226663685847], [2.391590903166128, 48.87217235601112], [2.391712777425221, 48.872080792677004], [2.391770043141423, 48.87203744614146], [2.391782130077558, 48.87203058717523], [2.391787792260142, 48.872023791791484], [2.3918550823809293, 48.87197285719677], [2.391986816771732, 48.871869019177986], [2.392111373004567, 48.871774737762074], [2.392243106383509, 48.8716708994426], [2.392338427567671, 48.87159874677258], [2.39235560117633, 48.871589173294716], [2.3923584722248012, 48.87158532522409], [2.3923877063093, 48.87156319708873], [2.392387776453345, 48.87156314438403], [2.392520576518744, 48.87146313783188], [2.392648821217739, 48.871367576810066], [2.39278162028336, 48.87126756995062], [2.392909864032444, 48.871172007732945], [2.393042662087816, 48.87107200146543], [2.393170904876612, 48.87097643895118], [2.393299147194764, 48.87088087629127], [2.393431943760541, 48.87078086956553], [2.393560183755078, 48.87068530660212], [2.393692980694817, 48.87058529867671], [2.393821219729089, 48.87048973541671], [2.393954015658517, 48.87038972808328], [2.394082253732432, 48.870294164526705], [2.39421504866223, 48.87019415688598], [2.394343285775696, 48.870098593032836], [2.394476079716223, 48.869998584185566], [2.394482782351715, 48.86997037173332], [2.394453201916659, 48.869953844269254], [2.39434455509249, 48.8699538989176], [2.394263765121075, 48.86994788362755], [2.394258586646531, 48.86994677641827], [2.39410093278656, 48.86988800003952], [2.393944322234205, 48.869826172784926], [2.393786669093845, 48.869767395985846], [2.393630059287457, 48.86970556741406], [2.393472406866707, 48.869646790194665], [2.393315797785453, 48.86958496210427], [2.393290112604787, 48.86957687727724]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 73, "roussel_fabien": 25.0, "nb_emargement": 1337.0, "nb_procuration": 89.0, "nb_vote_blanc": 12.0, "jadot_yannick": 129.0, "le_pen_marine": 40.0, "nb_exprime": 1323.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 7, "nb_inscrit": 1663.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1337, "quartier_bv": "77", "geo_point_2d": [48.870608084175934, 2.3918602537112705], "melenchon_jean_luc": 710.0, "poutou_philippe": 7.0, "macron_emmanuel": 302.0}, "geometry": {"type": "Point", "coordinates": [2.3918602537112705, 48.870608084175934]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "15af029c01d77c320f1e31ad31252ef2a725da43", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 37, "zemmour_eric": 56.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 2.0, "date_tour": "2022-04-10", "id_bvote": "10-22", "geo_shape": {"coordinates": [[[2.365059563469854, 48.88102549214485], [2.365085877378456, 48.88103882127343], [2.365137001164539, 48.88108047236234], [2.365188264059566, 48.88112492467872], [2.365219478478859, 48.881150355963996], [2.365222162321841, 48.881157264457855], [2.365253830719225, 48.88117230188587], [2.365354707113998, 48.88125448774112], [2.365483261073673, 48.881359556153086], [2.365615352995726, 48.88146717297575], [2.365743909358724, 48.881572241994064], [2.365750154844014, 48.88157289112162], [2.365795305358959, 48.881546838405406], [2.365943195139867, 48.88147137386822], [2.366092301713511, 48.88139449015063], [2.366240190631324, 48.881319025236124], [2.366389296330325, 48.88124214113801], [2.36653718439619, 48.881166674946954], [2.366686289220547, 48.88108979046827], [2.366834176412384, 48.88101432479919], [2.366983281725607, 48.88093743994723], [2.367131166691061, 48.88086197389364], [2.367280271129545, 48.880785088661135], [2.367428155242947, 48.880709621330986], [2.367577258806897, 48.88063273571801], [2.367582488761197, 48.880625940127004], [2.367589489408847, 48.880482312695335], [2.367597379840887, 48.88034861405624], [2.367605268858012, 48.88021491629248], [2.367612270751067, 48.88007128881306], [2.367620159698875, 48.879937590115354], [2.36762716151358, 48.87979396259888], [2.367608780901776, 48.87977005662142], [2.367599701695236, 48.87976810028133], [2.367505254652849, 48.87965675879347], [2.367411116336001, 48.87954551597685], [2.367316670100536, 48.879434174317744], [2.367222531214445, 48.879322932222394], [2.367128085796723, 48.87921158949275], [2.367033949079222, 48.879100347233866], [2.366939504457375, 48.8789890052322], [2.366845367192478, 48.878877761896064], [2.366750924740771, 48.87876641973039], [2.36665678827016, 48.878655177122745], [2.366562345272728, 48.8785438338793], [2.366468210970562, 48.87843259110815], [2.36637376876907, 48.87832124859275], [2.366279633919507, 48.87821000474432], [2.366185192524784, 48.87809866205766], [2.366091059832794, 48.877987418944976], [2.365996619255673, 48.87787607518781], [2.365902487368756, 48.87776483190439], [2.365808047587536, 48.877653488875225], [2.365713915153224, 48.877542244514565], [2.365695480570041, 48.877537572831876], [2.3656771675536152, 48.877539936372415], [2.365554190398627, 48.87764008551219], [2.365454324822887, 48.87771799241861], [2.365451742446073, 48.87772134493307], [2.365404635670479, 48.87783837990917], [2.365359097200432, 48.8779541425199], [2.365311991369521, 48.87807117744202], [2.365266451126575, 48.878186939985845], [2.365219344876921, 48.878303974846766], [2.365173805587927, 48.87841973733812], [2.365126697567051, 48.87853677123135], [2.365081157868573, 48.878652533663036], [2.365034049417976, 48.87876956839437], [2.36498850931001, 48.878885330766316], [2.364941401804098, 48.879002365443725], [2.364895859923188, 48.87911812774873], [2.364891002473737, 48.87912298445113], [2.364729677900021, 48.879205242928734], [2.364573057839188, 48.87928396570229], [2.364411732264544, 48.87936622373937], [2.364255111249987, 48.87944494518624], [2.364093784663638, 48.87952720368217], [2.363937162684281, 48.879605924701536], [2.363780540231446, 48.87968464551041], [2.363619212153031, 48.87976690334892], [2.363566946463399, 48.879785871198926], [2.363582878555146, 48.87981204909148], [2.36367968126579, 48.87989085672937], [2.363811767099217, 48.87999847569276], [2.3639387686303692, 48.88010186760868], [2.3640708541708673, 48.88020948625832], [2.364197858094427, 48.88031287788689], [2.364329944705481, 48.88042049623003], [2.3644569482944933, 48.88052388755668], [2.364589035976211, 48.880631505593406], [2.364716041957561, 48.88073489663259], [2.364848130709856, 48.88084251436281], [2.364975136356767, 48.880945905100106], [2.365056103807233, 48.881011871428434], [2.365059563469854, 48.88102549214485]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 22, "roussel_fabien": 21.0, "nb_emargement": 1158.0, "nb_procuration": 71.0, "nb_vote_blanc": 14.0, "jadot_yannick": 133.0, "le_pen_marine": 54.0, "nb_exprime": 1141.0, "nb_vote_nul": 3.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1432.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1158, "quartier_bv": "40", "geo_point_2d": [48.87978109201179, 2.36584024416718], "melenchon_jean_luc": 446.0, "poutou_philippe": 10.0, "macron_emmanuel": 337.0}, "geometry": {"type": "Point", "coordinates": [2.36584024416718, 48.87978109201179]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5e7693c49263df746491ad8150edc7fd5af7c5cd", "fields": {"lassalle_jean": 3.0, "pecresse_valerie": 67, "zemmour_eric": 78.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "1-2", "geo_shape": {"coordinates": [[[2.344799167345059, 48.86164017532197], [2.344828963451888, 48.86163381817717], [2.34498208698324, 48.861556655041355], [2.345129769999324, 48.86148307731405], [2.345282891279237, 48.86140591377537], [2.3454305734432133, 48.86133233566685], [2.345578255189957, 48.8612587573712], [2.345731376509333, 48.86118159325058], [2.345879057404075, 48.86110801457372], [2.346032176471929, 48.8610308500503], [2.346035454314686, 48.86101892821635], [2.345936655553552, 48.86091488498939], [2.345839979241728, 48.860812703230465], [2.345741181273316, 48.860708658923485], [2.345644505727432, 48.86060647698761], [2.345545709892113, 48.86050243340667], [2.345449035112259, 48.86040025129392], [2.345448592987497, 48.86039974883779], [2.345349129526988, 48.86027784844576], [2.345248290575123, 48.86015415702045], [2.345148826689157, 48.86003225642744], [2.345047990051203, 48.85990856481343], [2.344948527114033, 48.859786663127736], [2.344847690063878, 48.85966297131008], [2.3448412091084, 48.859619601577386], [2.344814625126181, 48.85961915295284], [2.344675432850581, 48.85966413980225], [2.344500315638016, 48.85972178141477], [2.344322870950503, 48.85977913121953], [2.344147752961288, 48.85983677231019], [2.343970307494065, 48.85989412158621], [2.343795188739632, 48.85995176125572], [2.3436177424813742, 48.860009110902325], [2.343442622950403, 48.8600667500499], [2.343265174560817, 48.86012409826101], [2.343090054242074, 48.860181737785986], [2.342912606435632, 48.86023908547589], [2.342737485340349, 48.86029672447897], [2.342560036754308, 48.86035407164012], [2.342384914893736, 48.86041170922199], [2.3422074655166423, 48.86046905675373], [2.34203234287954, 48.86052669381371], [2.341854892734103, 48.860584039917384], [2.341679769309111, 48.860641677354764], [2.341502318383978, 48.860699022929715], [2.341327194182453, 48.86075665984519], [2.341149741114755, 48.86081400488388], [2.340974616148074, 48.86087164037811], [2.340797163652177, 48.86092898579487], [2.340622037908973, 48.86098662076722], [2.340444584644763, 48.861043964755915], [2.340269458113652, 48.86110160010563], [2.340092004069753, 48.86115894356559], [2.339916876762117, 48.86121657839334], [2.339739421938532, 48.86127392132457], [2.339564293865874, 48.8613315547311], [2.339386838251102, 48.86138889803286], [2.339211709401928, 48.861446530917505], [2.339129062266617, 48.86147323666688], [2.339106613320092, 48.86149467457424], [2.339139827238701, 48.86153463167623], [2.339194230963979, 48.86163953080165], [2.339262991528213, 48.861772418630984], [2.339317394375379, 48.86187731856966], [2.339386155567598, 48.86201020629977], [2.339440560285462, 48.86211510526818], [2.339432926715455, 48.86212631217707], [2.339296385991746, 48.86216402804479], [2.339171060583933, 48.86220485267694], [2.339164015376633, 48.86221544766312], [2.3392033601586713, 48.86230393320414], [2.339223083197134, 48.862344079267906], [2.339231234832674, 48.86235243065175], [2.339297232028315, 48.86233538725153], [2.339491569763537, 48.8622909646868], [2.339691103222266, 48.862246004784325], [2.339697142210022, 48.86224327350926], [2.3397823982669212, 48.86217619925879], [2.339868271118422, 48.86210625672924], [2.33987941824338, 48.86210293127262], [2.340011960928313, 48.862106497041964], [2.340136169927322, 48.862109728023725], [2.340141402855497, 48.86210918399238], [2.3403326852265183, 48.86206286267842], [2.340522023488505, 48.862016973724025], [2.340713303819661, 48.861970651790315], [2.3409026427741813, 48.86192476223743], [2.341091980020884, 48.86187887327488], [2.341283259349515, 48.861832549525175], [2.341472595925852, 48.86178665995665], [2.341663875940498, 48.86174033560228], [2.341853211846459, 48.86169444542775], [2.3420444898212223, 48.8616481204537], [2.342233826419697, 48.86160222968069], [2.342425103717467, 48.86155590409444], [2.342426497610788, 48.86155562126408], [2.342607563494345, 48.86152574501216], [2.342785920467018, 48.86149654071196], [2.342966987313464, 48.86146666302288], [2.343145343871162, 48.86143745908478], [2.3433264103060543, 48.86140758085027], [2.343504766471349, 48.86137837547565], [2.343685831120562, 48.86134849758759], [2.343864188244996, 48.861319291683266], [2.344042545169462, 48.861290085512344], [2.344223609203429, 48.86126020680825], [2.344229881292964, 48.861260153041385], [2.344417007992169, 48.86128627459945], [2.344621266966182, 48.86131630921903], [2.344631187394768, 48.861322151751], [2.344675891330682, 48.86140690828862], [2.344754261595293, 48.86155669392002], [2.34478645417646, 48.86161772994517], [2.344799167345059, 48.86164017532197]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 2, "roussel_fabien": 13.0, "nb_emargement": 975.0, "nb_procuration": 68.0, "nb_vote_blanc": 8.0, "jadot_yannick": 76.0, "le_pen_marine": 53.0, "nb_exprime": 963.0, "nb_vote_nul": 4.0, "arr_bv": "01", "arthaud_nathalie": 0, "nb_inscrit": 1234.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 975, "quartier_bv": "02", "geo_point_2d": [48.860999796411164, 2.342771638426517], "melenchon_jean_luc": 200.0, "poutou_philippe": 4.0, "macron_emmanuel": 442.0}, "geometry": {"type": "Point", "coordinates": [2.342771638426517, 48.860999796411164]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f104bb5a3e97634f8d5b7eaeeb8918057f1fc476", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 37, "zemmour_eric": 73.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "13-10", "geo_shape": {"coordinates": [[[2.3618871317521313, 48.83288296338113], [2.361913589274479, 48.83288540332181], [2.361939578982819, 48.83289111536491], [2.362030697558117, 48.83292268992437], [2.362041947811175, 48.83293914093867], [2.362070917630632, 48.83294835840124], [2.362149218249852, 48.83297549086803], [2.362329087286531, 48.83303516349254], [2.362498507339266, 48.83309386908715], [2.362678377184235, 48.83315354118009], [2.362847798015052, 48.83321224627373], [2.363027667306055, 48.83327191782782], [2.363197090277205, 48.83333062242777], [2.363271452321499, 48.833355292287614], [2.363299232425847, 48.83335721822537], [2.363321995498395, 48.83331739572721], [2.363459043589276, 48.83321978007871], [2.363593510669284, 48.83312218650896], [2.363730557749605, 48.83302456963305], [2.363865023806782, 48.832926976640366], [2.364002069865469, 48.832829359436296], [2.364136534910803, 48.83273176612138], [2.364273579947864, 48.83263414858923], [2.364408043981364, 48.832536554952036], [2.364545087996706, 48.83243893709178], [2.364679551018381, 48.83234134313231], [2.364816594012214, 48.83224372494397], [2.364951057384297, 48.83214613066949], [2.365088097994303, 48.83204851214584], [2.365222560365522, 48.83195091664982], [2.365225252349322, 48.83194799899148], [2.365295571289502, 48.83182309085308], [2.365365758020534, 48.831695698799], [2.365436076283628, 48.83157079054983], [2.3655062637047752, 48.83144339749253], [2.365576581280044, 48.831318490031975], [2.365646766655951, 48.831191096856266], [2.365717083565198, 48.83106618838566], [2.365787269609335, 48.83093879600539], [2.365857585841622, 48.83081388742402], [2.365927769840553, 48.830686494925395], [2.365945624925106, 48.83067573867637], [2.36594518091909, 48.83066531531299], [2.365920508191, 48.830645797671195], [2.365831346271773, 48.83058397434633], [2.36574406650959, 48.830514929090164], [2.365727714028098, 48.83051258314912], [2.365522128995782, 48.83057773405858], [2.365329951631668, 48.8306393411923], [2.365124365613432, 48.83070449051138], [2.364932188674177, 48.830766097006205], [2.364930235518173, 48.83076685379838], [2.3647225030147903, 48.830863520268], [2.364516966796624, 48.83096043187872], [2.364515745220054, 48.830961072035535], [2.3643638489872, 48.83105125238648], [2.364166233525704, 48.83116765976638], [2.3641144191788213, 48.831198421572516], [2.364080541767979, 48.831209525852934], [2.364078267342041, 48.83121841393058], [2.363978182796756, 48.831277832875614], [2.3638727130804043, 48.83134416443399], [2.363720814618954, 48.831434343937445], [2.36361534425858, 48.83150067525954], [2.363601895255946, 48.83150251306161], [2.363403985197243, 48.831458587734986], [2.363210550428508, 48.8314156743132], [2.363012641040216, 48.83137174743631], [2.36281920691596, 48.83132883337827], [2.362621298176112, 48.83128490674971], [2.362427864696134, 48.831241992055425], [2.36223443017253, 48.83119907703945], [2.362036523780232, 48.83115514944539], [2.361843089900918, 48.831112233793164], [2.3616451841680632, 48.831068305548186], [2.361451752295342, 48.831025389266955], [2.361253845870762, 48.830981459464454], [2.361226093109646, 48.830965181923474], [2.361201562783851, 48.83097797576739], [2.361156798347458, 48.831015928455955], [2.361051499534315, 48.83110496398921], [2.360926510997763, 48.83121093369627], [2.360821210046247, 48.831299968104695], [2.360696220574034, 48.831405937552674], [2.360590920186487, 48.83149497264941], [2.360465928416394, 48.831600941830985], [2.360361362192512, 48.831690476193195], [2.360256794247331, 48.831780010449556], [2.360131802465792, 48.831885980161616], [2.360136200635262, 48.831899461869504], [2.360306285921943, 48.83195863200024], [2.360473452055691, 48.832016482188116], [2.360643539469188, 48.83207565184036], [2.360810706352441, 48.83213350155084], [2.360980794530537, 48.83219267071727], [2.361147962174313, 48.83225051905106], [2.361151983271342, 48.83226433506592], [2.361010958629888, 48.83237302604282], [2.360868413116283, 48.832483713414284], [2.360864762230554, 48.83253859593376], [2.360898553148031, 48.83254089631401], [2.361009918956134, 48.832578314237765], [2.361179336038625, 48.832637021724906], [2.36135605815377, 48.83269639843144], [2.361525476009737, 48.83275510542207], [2.361702198919554, 48.83281448161093], [2.361871617549099, 48.832873188105104], [2.3618871317521313, 48.83288296338113]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 10, "roussel_fabien": 38.0, "nb_emargement": 1003.0, "nb_procuration": 38.0, "nb_vote_blanc": 18.0, "jadot_yannick": 47.0, "le_pen_marine": 102.0, "nb_exprime": 984.0, "nb_vote_nul": 2.0, "arr_bv": "13", "arthaud_nathalie": 9, "nb_inscrit": 1292.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1004, "quartier_bv": "50", "geo_point_2d": [48.83193544625876, 2.363057780540138], "melenchon_jean_luc": 343.0, "poutou_philippe": 7.0, "macron_emmanuel": 269.0}, "geometry": {"type": "Point", "coordinates": [2.363057780540138, 48.83193544625876]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "284f96a10289102b9cc4babe7d5f8e194ee8be6c", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 139, "zemmour_eric": 160.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "7-19", "geo_shape": {"coordinates": [[[2.30539700497412, 48.85435170913879], [2.305342046058883, 48.85434318255296], [2.305199833930327, 48.854434130899435], [2.305063504316892, 48.85452174874065], [2.304927174232982, 48.85460936731896], [2.304784959291109, 48.85470031514267], [2.304648629634432, 48.85478793339747], [2.304506413719018, 48.85487888087549], [2.304370081775957, 48.85496649789163], [2.304227864874886, 48.8550574459233], [2.304091531996241, 48.855145062608], [2.303949314133725, 48.855236009394694], [2.303812981670298, 48.855323626655164], [2.303670762834221, 48.85541457309618], [2.303534428072373, 48.8555021900173], [2.303392208262625, 48.85559313611262], [2.303255872577195, 48.855680751802964], [2.303113651781948, 48.85577169845191], [2.303113835808103, 48.85577567018306], [2.303152758003995, 48.85579839426115], [2.303160960997863, 48.85587424429783], [2.303164199580479, 48.85591519017369], [2.303160196712399, 48.85592221961648], [2.303037957460425, 48.85600212060883], [2.302911258319138, 48.85608732058049], [2.302789019660841, 48.856167221314635], [2.302662319699106, 48.856252421909325], [2.302663067559387, 48.85626548581969], [2.302823939992345, 48.856358454334504], [2.302980607644748, 48.856449844941466], [2.3031414798506322, 48.856542813006016], [2.303298149977279, 48.85663420318998], [2.303301509752124, 48.85664469215323], [2.303212709023358, 48.85677237467697], [2.303125274828401, 48.85689618975729], [2.303036471864348, 48.85702387301264], [2.302949036828568, 48.857147687936155], [2.302860234378799, 48.857275370140464], [2.302772797139412, 48.85739918489924], [2.302683993817089, 48.8575268678431], [2.30259655709963, 48.857650682452956], [2.3025918067381372, 48.857654379896594], [2.302415990778421, 48.85773287787979], [2.302231299590435, 48.85781476388359], [2.302055481183605, 48.85789326131779], [2.301870790223418, 48.85797514676134], [2.3016949707322523, 48.85805364365455], [2.301510277262024, 48.8581355294212], [2.301511674070996, 48.8581510010815], [2.301689753012672, 48.858211083042235], [2.301851239439036, 48.85826516186758], [2.302029319150515, 48.85832524421614], [2.30219080628315, 48.858379322577676], [2.3023522951139093, 48.8584334007266], [2.302530375978094, 48.85849348232045], [2.302691864152322, 48.85854755999762], [2.30286994579826, 48.858607641079935], [2.303031434678656, 48.85866171829329], [2.303209517118473, 48.85872179796484], [2.303266887591743, 48.85874100945048], [2.303292838188608, 48.85875880586831], [2.303307109994738, 48.858757285410434], [2.30341123051846, 48.85879215154604], [2.303492928655909, 48.858815282718446], [2.303524697028979, 48.85882295564071], [2.303541460648418, 48.85880520462459], [2.303601162582247, 48.85868294132526], [2.303660305845446, 48.8585605434277], [2.303720008582851, 48.85843828005005], [2.303779151289139, 48.85831588206675], [2.303838852104521, 48.858193618594946], [2.30389799425391, 48.85807122052592], [2.30395769587287, 48.857948956975804], [2.304016836102579, 48.85782655881312], [2.30407653716233, 48.85770429517675], [2.304135678197941, 48.85758189693629], [2.304195377335607, 48.85745963320577], [2.304254517814341, 48.85733723487959], [2.304261881187724, 48.857331774536924], [2.304419577444187, 48.85728465583892], [2.304550345420638, 48.85724836785892], [2.304570915453691, 48.85724722111256], [2.304580526598541, 48.85722274435501], [2.304634580289818, 48.857105791535204], [2.304690365724384, 48.8569862073356], [2.304744418911832, 48.856869255340555], [2.304800205203819, 48.85674967107219], [2.304854257911343, 48.85663271810333], [2.30491004369799, 48.85651313375826], [2.304964095913592, 48.856396180714874], [2.305019879832161, 48.85627659628522], [2.305020089809502, 48.85627618110291], [2.30508255913229, 48.856161361577094], [2.305152362570417, 48.856033014211306], [2.305214832673133, 48.855918194599184], [2.305284635459679, 48.855789847128165], [2.305347103616551, 48.85567502741395], [2.305416907126244, 48.85554667894624], [2.30547937468813, 48.85543186003715], [2.30554917618353, 48.85530351145633], [2.3055947532876893, 48.855219739164355], [2.305609109337752, 48.85521366008241], [2.305612230489245, 48.85519800510375], [2.305629121721331, 48.85516695749792], [2.305694584255418, 48.85504209651508], [2.30575705060051, 48.85492727740883], [2.3058225125268272, 48.85480241632903], [2.305884978314672, 48.854687596232004], [2.305909223582355, 48.85466502360724], [2.305887927859311, 48.854650745991655], [2.305823882595782, 48.85461068042527], [2.305703439925445, 48.85453450666364], [2.3055598727475948, 48.85444469291939], [2.305439429484183, 48.85436851887275], [2.30539700497412, 48.85435170913879]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 19, "roussel_fabien": 7.0, "nb_emargement": 1053.0, "nb_procuration": 83.0, "nb_vote_blanc": 12.0, "jadot_yannick": 60.0, "le_pen_marine": 69.0, "nb_exprime": 1040.0, "nb_vote_nul": 1.0, "arr_bv": "07", "arthaud_nathalie": 0, "nb_inscrit": 1267.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1053, "quartier_bv": "28", "geo_point_2d": [48.85661103383572, 2.3039095240688385], "melenchon_jean_luc": 106.0, "poutou_philippe": 2.0, "macron_emmanuel": 451.0}, "geometry": {"type": "Point", "coordinates": [2.3039095240688385, 48.85661103383572]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d71f6c639a282f947d159067f83a169de45c214c", "fields": {"lassalle_jean": 5.0, "pecresse_valerie": 165, "zemmour_eric": 184.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "8-4", "geo_shape": {"coordinates": [[[2.303172181186421, 48.879143622533704], [2.303281854470669, 48.87918108513376], [2.303346810236303, 48.87919464563344], [2.303536728776858, 48.879235175819], [2.3037256490871902, 48.87927461529338], [2.303915568226198, 48.8793151439758], [2.304104489113391, 48.87935458284949], [2.304294408826804, 48.879395111827215], [2.30448333166642, 48.879434549208874], [2.304673250602799, 48.87947507757475], [2.304862174007358, 48.879514515255], [2.305052093542251, 48.879555042117694], [2.305241017523757, 48.87959447919725], [2.305430937632954, 48.87963500635528], [2.305619862191404, 48.87967444283412], [2.305809782898989, 48.87971496848893], [2.305998708034374, 48.87975440436706], [2.306188629328445, 48.87979492941797], [2.306377555040657, 48.879834364695434], [2.306567476909136, 48.879874890041656], [2.3067564031983743, 48.879914324718385], [2.306946325665102, 48.879954848561376], [2.307135252531258, 48.879994282637405], [2.307325175572493, 48.880034806775754], [2.307514103027419, 48.880074239351806], [2.307704028018493, 48.880114762894095], [2.307892954674996, 48.88015419576081], [2.308082880264284, 48.88019471779985], [2.308271807497683, 48.88023415006584], [2.308461733661382, 48.880274672400255], [2.308650661471674, 48.88031410406554], [2.308840588233766, 48.880354624896675], [2.3090295166209422, 48.88039405596123], [2.309030784534013, 48.880394276421754], [2.309234038313329, 48.880419247578004], [2.309397484532412, 48.8804422602391], [2.309560929532561, 48.88046527266869], [2.309764185206625, 48.88049024293116], [2.309927631882774, 48.88051325486699], [2.310045174713874, 48.880527694873436], [2.310061005422707, 48.88053100842669], [2.310072774251056, 48.88053122104276], [2.310158486105105, 48.88054175064741], [2.31035550427693, 48.88056536463368], [2.310558759359106, 48.880590333537064], [2.310755777896211, 48.88061394686358], [2.310959033359997, 48.880638915086294], [2.311156052262371, 48.88066252775306], [2.311359309471043, 48.880687495302965], [2.311556327375193, 48.88071110730214], [2.311759584965356, 48.88073607417138], [2.311956603234857, 48.88075968551082], [2.312159861206503, 48.88078465169939], [2.312356879841145, 48.88080826237908], [2.312560138194264, 48.88083322788697], [2.3127571571942402, 48.880856837906904], [2.312960415928822, 48.880881802734145], [2.313088871408928, 48.88089719540187], [2.313118722083282, 48.880897969225416], [2.313132993130136, 48.88083946121447], [2.313252833239261, 48.880730169903984], [2.31337100057602, 48.88062247058802], [2.313490839686358, 48.88051317901778], [2.313609006026828, 48.880405480344926], [2.313728844138391, 48.88029618851491], [2.313847008142714, 48.88018848867884], [2.313966846618985, 48.88007919659685], [2.31408500962685, 48.87997149740396], [2.314204847104362, 48.879862205062224], [2.314323009139672, 48.879754504713866], [2.314442845618432, 48.879645212112386], [2.314561006657314, 48.879537512407204], [2.314679167219432, 48.87942981167565], [2.314799002203675, 48.879320518685404], [2.314917161769385, 48.87921281859697], [2.315036995754905, 48.87910352534701], [2.315040711778978, 48.87910121283043], [2.315203078711361, 48.879032899998926], [2.31537598450064, 48.87896412470064], [2.3153825526811582, 48.87895696037551], [2.315390503526504, 48.87886919642058], [2.315398622866139, 48.87874651847392], [2.315406572288742, 48.87865875449345], [2.315409605971554, 48.87861291645762], [2.315414075652138, 48.87859423850984], [2.315406465634755, 48.87858751561721], [2.315411551223074, 48.87851067568016], [2.315419901189352, 48.87838123240005], [2.31542802038367, 48.878258554397036], [2.315436371632016, 48.87812911109392], [2.315444489384818, 48.87800643305394], [2.315447612629727, 48.877958028793806], [2.315438642280226, 48.87793074016755], [2.315406723631418, 48.87793088949634], [2.315204414947632, 48.87792218965432], [2.3150027428042232, 48.87791330335209], [2.314800434244404, 48.877904603726556], [2.314598762249957, 48.87789571584431], [2.314396453825837, 48.87788701553595], [2.314194781968439, 48.87787812697303], [2.31399247368023, 48.87786942598183], [2.31379080194794, 48.87786053763751], [2.313588493807401, 48.87785183506419], [2.313386822212173, 48.87784294603922], [2.313184514195615, 48.8778342436823], [2.312982842749317, 48.877825353077405], [2.312781171360008, 48.877816463031934], [2.312578863559394, 48.87780775875206], [2.312377192307171, 48.87779886802593], [2.312174884630546, 48.877790163962494], [2.311973213527401, 48.87778127165642], [2.311770905986541, 48.87777256691017], [2.311569235020512, 48.87776367392341], [2.311366927615633, 48.87775496849434], [2.311165256774734, 48.87774607572615], [2.310962949517638, 48.877737368715], [2.310761278813868, 48.877728475266125], [2.310558971680774, 48.87771976847146], [2.310551666563563, 48.87771798258353], [2.310388560990856, 48.87763710634818], [2.310226374681616, 48.87755676219065], [2.310063271482227, 48.87747588550815], [2.30990108617683, 48.8773955408982], [2.309737982624151, 48.877314663752806], [2.309575798322597, 48.87723431869038], [2.309412695779825, 48.87715344108998], [2.3092505124821088, 48.87707309557516], [2.309087412312834, 48.87699221752762], [2.308925230018851, 48.876911871560324], [2.308762129496184, 48.87683099304992], [2.3085999482061332, 48.876750646630256], [2.308436848693465, 48.87666976766482], [2.30827466840724, 48.87658942079271], [2.308111571267841, 48.87650854138018], [2.307949391985438, 48.87642819405567], [2.30786283216432, 48.876399832979665], [2.307844366500813, 48.876415969181046], [2.307784851773263, 48.87647074016491], [2.30767329383278, 48.87656129702928], [2.307559067180862, 48.876666418434496], [2.307447508428687, 48.87675697507237], [2.307317842779717, 48.87686011560456], [2.307206283193242, 48.87695067200168], [2.30707661658435, 48.877053812254495], [2.306965057526963, 48.87714436841881], [2.306853496718246, 48.87723492446387], [2.3067238287030483, 48.877338064307956], [2.306721280941022, 48.87733965936953], [2.306570159834808, 48.87741234819979], [2.306408008502175, 48.87749183758156], [2.306256886505314, 48.8775645269056], [2.306094734220773, 48.87764401585204], [2.305943611357117, 48.877716703871336], [2.305781458120668, 48.87779619238254], [2.305630334366145, 48.877868880895534], [2.305468180177782, 48.87794836897143], [2.305317055544574, 48.878021057078946], [2.305154900404295, 48.878100544719516], [2.304991089840462, 48.87818613532853], [2.304828933688831, 48.87826562251566], [2.304665122058092, 48.87835121356511], [2.304502963531574, 48.878430700290906], [2.304339150857935, 48.87851628998224], [2.30417699268328, 48.878595776262486], [2.304013178942815, 48.87868136639422], [2.3038510197566913, 48.87876085222103], [2.303687204973229, 48.878846440994614], [2.303525043412297, 48.8789259263601], [2.303361227561886, 48.87901151557407], [2.303199066352815, 48.87909100049399], [2.303172181186421, 48.879143622533704]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 4, "roussel_fabien": 4.0, "nb_emargement": 1125.0, "nb_procuration": 91.0, "nb_vote_blanc": 9.0, "jadot_yannick": 57.0, "le_pen_marine": 53.0, "nb_exprime": 1114.0, "nb_vote_nul": 2.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1406.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1125, "quartier_bv": "32", "geo_point_2d": [48.87886628429173, 2.309792525796506], "melenchon_jean_luc": 79.0, "poutou_philippe": 3.0, "macron_emmanuel": 547.0}, "geometry": {"type": "Point", "coordinates": [2.309792525796506, 48.87886628429173]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "054b44ce9f8e1b93a3d12a5cb7a9cebd1d1c2867", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 107, "zemmour_eric": 78.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-9", "geo_shape": {"coordinates": [[[2.316390267716633, 48.88610351513503], [2.316366240187217, 48.886109566241835], [2.3162438036047748, 48.886202937981814], [2.316135636198255, 48.88628542825327], [2.316027467085501, 48.88636791841305], [2.315922067800191, 48.88644829737962], [2.315813899374441, 48.88653078734199], [2.315708498066174, 48.88661116610086], [2.315706616929096, 48.886612350559794], [2.31554822695909, 48.886694555939286], [2.31537291169388, 48.88678554611444], [2.315214520670261, 48.88686775103948], [2.3150392028870233, 48.886958739804605], [2.31488081217344, 48.88704094428307], [2.314739230636309, 48.88711442322411], [2.314731010971828, 48.88711455964481], [2.314718042108675, 48.88712542037299], [2.314684303306621, 48.887142930579394], [2.314656462016076, 48.88715737993856], [2.314654952952731, 48.8871580601876], [2.314471015862614, 48.88722956515352], [2.3142755913234883, 48.88730553487063], [2.314268400909109, 48.8873131532829], [2.314276392690591, 48.8873242140434], [2.314395074781589, 48.88742086385073], [2.31451773770331, 48.88752075412082], [2.314636420702151, 48.887617402772335], [2.314759083186151, 48.88771729276956], [2.3148777670690652, 48.887813942063794], [2.315000431842694, 48.887913831803694], [2.315119116621529, 48.888010480841444], [2.315241782321127, 48.88811037031619], [2.315360468007612, 48.88820701819816], [2.315483134633287, 48.888306907407795], [2.315601821203884, 48.888403555932506], [2.315724487391749, 48.88850344486921], [2.315724941843107, 48.888503835976294], [2.315811428176255, 48.88858001499424], [2.315949207720368, 48.88870571173171], [2.316027821561602, 48.888777430797674], [2.316028275356134, 48.8887778722621], [2.316134543937479, 48.888888028229516], [2.316240725498201, 48.88899809455861], [2.316346994978427, 48.88910825031544], [2.316453177437303, 48.88921831643403], [2.316559446452708, 48.889328471972384], [2.316665631173357, 48.889438537888324], [2.316771814979294, 48.88954860369127], [2.316878085342966, 48.88965875891371], [2.316878335475225, 48.889659028340326], [2.316973954818498, 48.889766284422066], [2.3170714615748498, 48.889875657404154], [2.317167083065582, 48.88998291421751], [2.317264590633168, 48.89009228702072], [2.31726465109225, 48.890092356613636], [2.31729006740506, 48.89012145806531], [2.317273032112602, 48.89014526865164], [2.317304208745713, 48.89016826863126], [2.317354635534496, 48.890179939805805], [2.317502338428101, 48.890100838771026], [2.317646927417133, 48.89002214428876], [2.317794629419095, 48.88994304288212], [2.3179392175400872, 48.889864347136324], [2.318086918650308, 48.88978524535778], [2.318231505879599, 48.88970655014705], [2.318379207473679, 48.88962744710507], [2.318523793823053, 48.88954875153007], [2.318671493150005, 48.88946964900767], [2.318816078631231, 48.8893909521692], [2.318842893217991, 48.889376591360275], [2.318844287856841, 48.88937475477278], [2.3188096129456, 48.88934716399479], [2.318701738108099, 48.88926994192369], [2.318590969462054, 48.8891906483162], [2.318483095273062, 48.8891134260371], [2.3183723286566282, 48.88903413222378], [2.3182644537406603, 48.888956910628245], [2.318153687790121, 48.88887761660136], [2.318154922700491, 48.88886464992562], [2.318293656173398, 48.88878745011299], [2.318431764160348, 48.888710598213514], [2.318570496812371, 48.888633398069274], [2.318708603993904, 48.88855654494047], [2.318847335825045, 48.88847934446466], [2.318985442177732, 48.88840249190503], [2.318988241057638, 48.88839088490281], [2.318890547601947, 48.88828682910915], [2.3187927251632843, 48.8881829676442], [2.318695031124797, 48.888078911663605], [2.318597209466704, 48.887975050019264], [2.318499517572577, 48.88787099386716], [2.3184016953314712, 48.88776713203572], [2.318304004218116, 48.88766307570441], [2.31820618275757, 48.88755921369352], [2.318108492424977, 48.887455157183005], [2.318010671756659, 48.887351294093506], [2.317912982204925, 48.887247237403805], [2.317815163669029, 48.88714337504195], [2.317717474897938, 48.88703931817304], [2.317619655779021, 48.886935455624034], [2.317615840296678, 48.886923574417175], [2.317605120900243, 48.88691986474432], [2.317453611114823, 48.88681848485946], [2.317304146688942, 48.88671727111713], [2.31715263809063, 48.8866158899335], [2.317003176194889, 48.886514675804605], [2.316851668760194, 48.88641329512067], [2.316702208042733, 48.886312079698165], [2.316550701783437, 48.88621069861474], [2.316401240857019, 48.88610948368933], [2.316390267716633, 48.88610351513503]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 9, "roussel_fabien": 22.0, "nb_emargement": 1349.0, "nb_procuration": 88.0, "nb_vote_blanc": 12.0, "jadot_yannick": 137.0, "le_pen_marine": 42.0, "nb_exprime": 1336.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 0, "nb_inscrit": 1605.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1350, "quartier_bv": "67", "geo_point_2d": [48.88805669751957, 2.3168532238149826], "melenchon_jean_luc": 293.0, "poutou_philippe": 3.0, "macron_emmanuel": 609.0}, "geometry": {"type": "Point", "coordinates": [2.3168532238149826, 48.88805669751957]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e2839f943d042c402baef37e4032bc784ccaccd4", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 48, "zemmour_eric": 75.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "4-2", "geo_shape": {"coordinates": [[[2.358904825827535, 48.85862198387922], [2.358859408110577, 48.85859166722387], [2.358772757408689, 48.85850809140525], [2.358687363748638, 48.85842572558187], [2.358600713609763, 48.85834214872685], [2.358515320493758, 48.8582597827684], [2.358514719202296, 48.858259247130356], [2.3584113287763833, 48.85817385543078], [2.358306227836615, 48.85808705147602], [2.358202838094094, 48.85800165958305], [2.358097737849021, 48.85791485543171], [2.358089759023463, 48.85791164961936], [2.358021179685417, 48.85790261199483], [2.357941008087809, 48.85789204799225], [2.357920838853991, 48.8578796681479], [2.357901542137121, 48.857886846640774], [2.35786825945055, 48.85788246089043], [2.357864197600701, 48.85788192556553], [2.357854920700792, 48.857877437493975], [2.357752662430726, 48.85775463831392], [2.357651113781655, 48.8576326909264], [2.357548856483353, 48.85750989064583], [2.35744730878819, 48.857387943058484], [2.357345052439566, 48.857265143476], [2.357243505698396, 48.857143195688835], [2.357141250321418, 48.85702039500582], [2.357039704534334, 48.8568984470188], [2.356938159222475, 48.85677649893223], [2.356835905273686, 48.85665369884701], [2.356826597705134, 48.85664145182579], [2.356806682348496, 48.85664378651785], [2.356634980667916, 48.856685141060574], [2.356465095453879, 48.85672605814843], [2.356293393231077, 48.85676741219794], [2.356123507480554, 48.85680832879783], [2.355953621463316, 48.856849245155004], [2.355781918439646, 48.856890597566796], [2.355780051125364, 48.856891155903405], [2.355651019405957, 48.85693730294989], [2.355452479347352, 48.8570089695802], [2.355323448408843, 48.85705511627591], [2.355124906087986, 48.85712678234778], [2.354987474405378, 48.85717724885391], [2.3549862744213153, 48.85717773702845], [2.354818083115781, 48.85725431835109], [2.354648753649056, 48.85733141761779], [2.354480561351359, 48.85740799845544], [2.354311229522871, 48.85748509722654], [2.354250170108948, 48.85750602658473], [2.354257192458602, 48.85751809059102], [2.354334551239622, 48.85759363523547], [2.354440671762947, 48.85769819153605], [2.35454637982902, 48.85780141986376], [2.354652499837729, 48.85790597594956], [2.35475821010794, 48.858009204078215], [2.354864330964934, 48.858113759956595], [2.354970040713494, 48.85821698787143], [2.355076163781685, 48.858321543549714], [2.355181874371502, 48.858424771258115], [2.355287996925088, 48.858529326721616], [2.355400816196592, 48.85864005531082], [2.35550693962813, 48.85874461055989], [2.355619759819974, 48.85885533982049], [2.355725885492194, 48.85895989486245], [2.355838706626742, 48.859070622995866], [2.355944831813908, 48.859175177816], [2.3560576538799403, 48.85928590572151], [2.356163779944983, 48.85939046032721], [2.356276602931294, 48.85950118890414], [2.356382729874327, 48.8596057432954], [2.356495553803255, 48.85971647074506], [2.356601682987028, 48.85982102492919], [2.356714506484622, 48.85993175214361], [2.3568206365463062, 48.86003630611327], [2.356860162191347, 48.860069809703916], [2.356890784036394, 48.860064934324264], [2.356917038700995, 48.86006061554797], [2.356920211838018, 48.86003124011048], [2.357039291520354, 48.85994469716588], [2.357181667242486, 48.85984381142514], [2.357300746062155, 48.85975726820577], [2.35744312076584, 48.859656382136926], [2.357562198711759, 48.85956983954203], [2.357704572397009, 48.85946895314513], [2.357823649491364, 48.85938240937618], [2.357966022158184, 48.85928152265117], [2.358093637862186, 48.859194180825064], [2.358231944114683, 48.859094364668024], [2.358359560277417, 48.85900702255093], [2.3584978655125752, 48.858907206969064], [2.3586254807711162, 48.858819864553595], [2.358763785000126, 48.85872004864756], [2.358891399365444, 48.85863270503452], [2.358904825827535, 48.85862198387922]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 2, "roussel_fabien": 16.0, "nb_emargement": 956.0, "nb_procuration": 72.0, "nb_vote_blanc": 7.0, "jadot_yannick": 83.0, "le_pen_marine": 51.0, "nb_exprime": 949.0, "nb_vote_nul": 0.0, "arr_bv": "04", "arthaud_nathalie": 4, "nb_inscrit": 1154.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 956, "quartier_bv": "14", "geo_point_2d": [48.85823123897838, 2.3566184584455723], "melenchon_jean_luc": 228.0, "poutou_philippe": 2.0, "macron_emmanuel": 396.0}, "geometry": {"type": "Point", "coordinates": [2.3566184584455723, 48.85823123897838]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a9689065a75394bde260c49eb2406eda0fe8ea7b", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 65, "zemmour_eric": 65.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "13-49", "geo_shape": {"coordinates": [[[2.350719176343325, 48.82601140193585], [2.350719298018483, 48.825994850481415], [2.350725887866895, 48.825963142784516], [2.350735976660728, 48.825913197649086], [2.350750092774172, 48.82590540204863], [2.350947567645785, 48.82591129284368], [2.351146414768012, 48.82591724921726], [2.351343889729274, 48.825923139357776], [2.351542738304018, 48.82592909507973], [2.351740213354818, 48.82593498456577], [2.351939062020009, 48.82594093962862], [2.352136537160539, 48.82594682846015], [2.352335384554105, 48.825952782856625], [2.352532859784254, 48.82595867103365], [2.352731708630309, 48.825964624778464], [2.352745607886166, 48.82595364667844], [2.352715900327156, 48.82586737244868], [2.352696821975076, 48.82581090349686], [2.352684612619126, 48.825803932001286], [2.352488073398754, 48.82579368446743], [2.352292658733921, 48.825783816841316], [2.352096119666319, 48.82577356866317], [2.351900703800292, 48.82576369948972], [2.351704164874492, 48.82575345156656], [2.351508750520019, 48.82574358175983], [2.35131221175819, 48.82573333229301], [2.351116797553431, 48.82572346184564], [2.3509202589333063, 48.825713212633836], [2.350724844878063, 48.82570334154581], [2.350713701620918, 48.82569839743263], [2.350687485360559, 48.82566379369331], [2.350682092211004, 48.825646007126075], [2.350684264196998, 48.82563588384827], [2.350818961713075, 48.82553950947372], [2.350952892541625, 48.825439797691864], [2.351087589065752, 48.825343422098584], [2.35122151750351, 48.825243710890405], [2.351356213024497, 48.825147334977736], [2.351490140456112, 48.82504762255204], [2.351482801149145, 48.825032861753996], [2.351437015459263, 48.82502638976196], [2.351401444424198, 48.82502220001063], [2.351385868015089, 48.82501393749564], [2.35136770077283, 48.825017946411535], [2.351214851353269, 48.8249999436628], [2.35105041277213, 48.82498121318876], [2.350861992609908, 48.82495902102122], [2.350697554284602, 48.824940290061335], [2.350533117428178, 48.82492155978173], [2.350344696351001, 48.824899365891255], [2.3503348858531, 48.824886518059316], [2.35041568210087, 48.82477890942293], [2.350497630211971, 48.82467010900935], [2.35057842577739, 48.82456250114156], [2.350660371857922, 48.824453699688796], [2.350741166752104, 48.82434609169034], [2.350823113503719, 48.824237291011784], [2.350903907726669, 48.82412968288267], [2.350985853809747, 48.824020881172316], [2.350971877626608, 48.82400796040897], [2.350770376513837, 48.8240255044119], [2.35057280049783, 48.824042961466745], [2.350371300488626, 48.82406050390478], [2.350173724206476, 48.824077960299725], [2.349972222554518, 48.82409550295673], [2.34977464600603, 48.82411295869177], [2.349573144095862, 48.82413049977649], [2.3493755672811503, 48.82414795485163], [2.349174065090246, 48.82416549616263], [2.348976488009316, 48.824182950577914], [2.348963378929652, 48.8241790541576], [2.348847283754859, 48.824065028525474], [2.348730912545764, 48.8239508969352], [2.348614818387392, 48.82383687105427], [2.3484984481964988, 48.823722739214574], [2.348382355054538, 48.82360871308483], [2.34826598588163, 48.823494580995735], [2.348149893744824, 48.82338055551646], [2.348033525601339, 48.82326642227867], [2.347917434480917, 48.82315239655058], [2.3478010659935142, 48.823038263055984], [2.347684977251349, 48.82292423708649], [2.34756860978201, 48.822810103342526], [2.347452522056302, 48.82269607712419], [2.347336155593756, 48.822581944030205], [2.347319170850379, 48.822578794337545], [2.347158569040392, 48.822627469833776], [2.346968450309061, 48.82268515039509], [2.346962797874543, 48.82269830442237], [2.347078364116391, 48.822812992915296], [2.347193803900459, 48.82292770487495], [2.34730936979691, 48.82304239311378], [2.347424810597217, 48.82315710482701], [2.347540378860995, 48.823271793725944], [2.347655820677354, 48.82338650519272], [2.347771389969, 48.82350119294566], [2.347886831439521, 48.82361590415862], [2.348002401747786, 48.8237305916649], [2.34811784559658, 48.823845302638816], [2.348233416910236, 48.823959990797725], [2.348348861775117, 48.824074701525205], [2.348464434116663, 48.82418938853812], [2.3485798786357233, 48.824304099011776], [2.348575255135912, 48.82431689984842], [2.34840421266805, 48.82438095610567], [2.348234682209724, 48.824444535593315], [2.34806363889348, 48.8245085922555], [2.34789410760493, 48.824572171253074], [2.347723064824717, 48.82463622652899], [2.347553532705847, 48.82469980503653], [2.347382487715316, 48.824763860709915], [2.347212954766019, 48.82482743872747], [2.347041908938343, 48.824891493906414], [2.346872375169988, 48.824955070534585], [2.346855427079506, 48.82496676700565], [2.346856685941705, 48.82497261623518], [2.346950162761247, 48.82509259100047], [2.347036586672727, 48.82520323840255], [2.347123010962393, 48.82531388483195], [2.347216489006644, 48.82543385935261], [2.34723213153245, 48.82543843082989], [2.3474411476013692, 48.82540138762767], [2.347648971954361, 48.82536474497736], [2.347857987431609, 48.82532770104413], [2.348065809824627, 48.82529105855892], [2.348274824710402, 48.82525401389476], [2.3484826478899192, 48.825217369790856], [2.348691662184105, 48.82518032439571], [2.348899484765688, 48.82514368046431], [2.349108497106243, 48.825106634330794], [2.34931631911245, 48.82506998877334], [2.349330952195999, 48.8250734842262], [2.349448363430819, 48.82518305911672], [2.349559135741544, 48.825286667279606], [2.349669908492428, 48.82539027533031], [2.349787319779859, 48.825499850749054], [2.349898094810499, 48.82560345767682], [2.350015507057588, 48.82571303285072], [2.350126281621263, 48.82581664043932], [2.350243694828018, 48.82592621536838], [2.350235369403263, 48.825940212092064], [2.3500003861706222, 48.82597272647165], [2.349791932497693, 48.825997516894105], [2.349786383112482, 48.82599752179736], [2.349590383058874, 48.825970788670745], [2.349391762655821, 48.82594371269315], [2.349195763006845, 48.825916978918514], [2.348997143024957, 48.82588990138488], [2.348801143780625, 48.82586316696219], [2.34860252419735, 48.82583608967124], [2.3484065239957133, 48.82580935459311], [2.348207906184449, 48.825782276652866], [2.348191932636653, 48.82578891422789], [2.348166252501303, 48.82585711246832], [2.34815081312506, 48.82590382196164], [2.348157382726211, 48.82591384084756], [2.348335259326143, 48.82597953837983], [2.348511213571427, 48.82604432129571], [2.348689092424452, 48.8261100183015], [2.348865047560879, 48.82617479978995], [2.349042927305034, 48.8262404962618], [2.349218883310237, 48.82630527812141], [2.349396762583354, 48.826370974051926], [2.349572719479785, 48.82643575448411], [2.349750601005899, 48.82650144988809], [2.349926558771219, 48.82656623069147], [2.350104439826286, 48.826631925554075], [2.350280398471615, 48.826696705829335], [2.350458281779789, 48.82676240016543], [2.350634241316227, 48.82682717901317], [2.35063432673405, 48.82682721095512], [2.350658653122514, 48.826838281245315], [2.350665331089258, 48.826837132127956], [2.350809220806383, 48.82689193608705], [2.351012490474735, 48.82696803465265], [2.351156379555976, 48.82702283818029], [2.351359650241421, 48.82709893614693], [2.351503541410955, 48.82715373925788], [2.351522915172329, 48.82714248071012], [2.351450810865265, 48.82702857508806], [2.351402233298532, 48.82695928999623], [2.351398269436909, 48.82695578521835], [2.351266106829243, 48.82688469135277], [2.351135735329978, 48.826815168368206], [2.351003574798751, 48.82674407421095], [2.3508732040011, 48.826674550931514], [2.350870385365679, 48.82667250034554], [2.3507804581690532, 48.82658232467179], [2.350652945650424, 48.82645616678648], [2.350563017840957, 48.82636599092442], [2.350435506366479, 48.82623983368226], [2.350345580668206, 48.826149657646724], [2.350350519435555, 48.826136785627206], [2.350534777718556, 48.826071543812304], [2.350706688307184, 48.826017418412206], [2.350719176343325, 48.82601140193585]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 49, "roussel_fabien": 37.0, "nb_emargement": 1423.0, "nb_procuration": 73.0, "nb_vote_blanc": 11.0, "jadot_yannick": 138.0, "le_pen_marine": 72.0, "nb_exprime": 1408.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 4, "nb_inscrit": 1705.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1423, "quartier_bv": "51", "geo_point_2d": [48.82503671136177, 2.349415175035495], "melenchon_jean_luc": 477.0, "poutou_philippe": 9.0, "macron_emmanuel": 472.0}, "geometry": {"type": "Point", "coordinates": [2.349415175035495, 48.82503671136177]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cdf41206b6e75abb7b2024e976445dd53ec39b60", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 205, "zemmour_eric": 199.0, "hidalgo_anne": 8.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "16-34", "geo_shape": {"coordinates": [[[2.259705798921595, 48.84834777055074], [2.259725393997836, 48.848357911644825], [2.259928561561907, 48.84839977948195], [2.260134323207033, 48.84844295720146], [2.260337490068658, 48.848484824332544], [2.26054325376378, 48.84852800045459], [2.260746421285379, 48.84856986688809], [2.260952184292444, 48.848613042295185], [2.260961668172827, 48.848622032489565], [2.260954328834377, 48.84872587929723], [2.260950636250917, 48.84882558815176], [2.260943296849061, 48.84892943583906], [2.260939602867418, 48.8490291446666], [2.260941776392032, 48.84903424131193], [2.261048230161795, 48.84914312050471], [2.261153909628352, 48.84925099201441], [2.261260365646763, 48.84935987100569], [2.261366045979245, 48.849467743206276], [2.261472502883664, 48.84957662198761], [2.261578184107575, 48.84968449308054], [2.2616846405354423, 48.849793371643514], [2.261790323987872, 48.84990124343576], [2.261896781301761, 48.85001012178872], [2.26200246564564, 48.850117992473365], [2.262108149051739, 48.850225863945006], [2.262214609055521, 48.85033474199187], [2.262216524713225, 48.85033785121843], [2.262252964624502, 48.85045736771214], [2.262288109838864, 48.85057449288084], [2.262324551442393, 48.850694009335754], [2.262359696977355, 48.850811134458525], [2.262396137547857, 48.85093065085779], [2.262431283403218, 48.85104777593462], [2.262467725666196, 48.85116729229508], [2.2625028718420648, 48.85128441732595], [2.262538018188653, 48.851401541434875], [2.262574459568389, 48.85152105861573], [2.262572680210771, 48.85152757343592], [2.262457295406531, 48.851650307163204], [2.262342713119004, 48.85177253397856], [2.262340724652138, 48.85177802942476], [2.2623416414609823, 48.851785853248714], [2.262360179555094, 48.85192922542766], [2.262375016904496, 48.85205590056504], [2.262390771162103, 48.85219039860757], [2.262409310898046, 48.852333770735164], [2.2624250639527093, 48.85246826963047], [2.262443603881869, 48.85261164171689], [2.262462600851938, 48.852619128200054], [2.262611919712242, 48.852576423996624], [2.262813508323607, 48.852516112849415], [2.262962825251221, 48.85247340729642], [2.2631644130453, 48.85241309645173], [2.263313730752778, 48.85237039046533], [2.26331775017228, 48.85236862547938], [2.263451152494445, 48.85228667653372], [2.263614415613457, 48.852183204177805], [2.263747815631553, 48.85210125487938], [2.263911078943274, 48.85199778210974], [2.263999562157467, 48.85194342566874], [2.26401426659787, 48.851942683308266], [2.264032019666858, 48.85191859063054], [2.264076935491045, 48.851890997415914], [2.2641221986655182, 48.85186592184085], [2.264126987945719, 48.85185808186294], [2.2641092237780143, 48.85174796062417], [2.264091542328134, 48.85163854947834], [2.264073778310172, 48.85152842821257], [2.264056097022006, 48.85141901614061], [2.264038334516396, 48.85130889485622], [2.264020653364334, 48.85119948365672], [2.264022412205647, 48.8511940218437], [2.264130260577787, 48.85107115749307], [2.264238131164828, 48.85094928966726], [2.264345979884553, 48.85082642510354], [2.264453849460402, 48.850704557056474], [2.264561695802326, 48.85058169226293], [2.264669564367099, 48.85045982399458], [2.264777409694038, 48.850336958979554], [2.26488527861033, 48.85021509049832], [2.2649931229221902, 48.850092225261875], [2.265100989464849, 48.84997035655095], [2.265102844799666, 48.84996557882724], [2.265097492848486, 48.84983428269265], [2.265092625302837, 48.84969975539952], [2.265087273417389, 48.849568458333856], [2.265082405910166, 48.84943393190745], [2.265077054077766, 48.84930263480999], [2.265072186634537, 48.84916810745176], [2.265066834842501, 48.84903681122177], [2.265061967450481, 48.84890228383101], [2.265077258229254, 48.848893143966365], [2.265259069859014, 48.84890793639465], [2.265473356655245, 48.84892450271628], [2.265655169869491, 48.8489392945506], [2.265869455545262, 48.848955861053255], [2.266051268981339, 48.84897065228531], [2.266265556274516, 48.848987218086414], [2.266447369932416, 48.84900200871611], [2.26658421765942, 48.849018700798716], [2.26659660401541, 48.84900812104062], [2.266577981597091, 48.84896584371418], [2.266511524654922, 48.84894134769193], [2.266341095788903, 48.8488763038485], [2.266178820585283, 48.84881648831597], [2.266008391167553, 48.84875144488225], [2.265846116747184, 48.84869162799244], [2.265683842686772, 48.84863181177864], [2.265513415853443, 48.84856676763744], [2.2653511425762902, 48.848506950066415], [2.265180715203918, 48.84844190543566], [2.265173951617548, 48.848433426038525], [2.265190069960356, 48.84829609913478], [2.265206502462408, 48.84816074375494], [2.265222620635099, 48.84802341681319], [2.265239052953946, 48.84788806229502], [2.265255170956527, 48.84775073531524], [2.26527160310485, 48.8476153807595], [2.265268890106423, 48.84759632899355], [2.265246192927464, 48.84758965300293], [2.265110147205521, 48.8476152390214], [2.264943063350603, 48.847647072762406], [2.264761165830707, 48.847681280400025], [2.264594081550778, 48.84771311365178], [2.26441218355861, 48.84774732165605], [2.26424509886647, 48.84777915351929], [2.264063200414724, 48.84781336099098], [2.263896115284987, 48.84784519326423], [2.263884535115229, 48.847843925856665], [2.26371534087468, 48.84776595736042], [2.263547780993837, 48.84768808771411], [2.263378587775771, 48.84761011783138], [2.263211027536562, 48.84753224769418], [2.263041836678066, 48.8474542782321], [2.262874277443204, 48.84737640761238], [2.262705087607193, 48.84729843676383], [2.2625375293765773, 48.84722056566159], [2.262535466524099, 48.847219775892285], [2.262383662069417, 48.8471725819762], [2.262220007269722, 48.84712196554042], [2.262068203385628, 48.847074771219965], [2.261904550562075, 48.84702415435665], [2.261858294891296, 48.84702523871506], [2.261848275096326, 48.8470447615307], [2.261942372427792, 48.847192900447], [2.262029753574296, 48.847335166338915], [2.262021962352392, 48.84734695215968], [2.2619686782587323, 48.84736030465193], [2.261915887776179, 48.84737815520513], [2.261909377238867, 48.84738937961948], [2.261971029302312, 48.84749546892348], [2.262037436290736, 48.847610206151884], [2.262099088876116, 48.84771629536886], [2.262165496440609, 48.847831031604116], [2.262149923690663, 48.84784303655041], [2.261982455579044, 48.847819452879776], [2.261750147239217, 48.84778613165599], [2.2615826794913803, 48.84776254742457], [2.261350371660942, 48.847729225422846], [2.261182904289645, 48.847705639731316], [2.26117887039254, 48.84770546642489], [2.260958449928243, 48.847717311352085], [2.260735161574175, 48.84772968137073], [2.260514740906614, 48.847741525480174], [2.260291452343583, 48.84775389467046], [2.260281225604519, 48.84775789658137], [2.260183991660183, 48.84785495677173], [2.260092430597747, 48.84794652894545], [2.259995195949935, 48.84804358896595], [2.2599036328617093, 48.84813516097132], [2.259812070827102, 48.84822673200817], [2.259714835134211, 48.848323791776394], [2.259705798921595, 48.84834777055074]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 34, "roussel_fabien": 9.0, "nb_emargement": 1361.0, "nb_procuration": 94.0, "nb_vote_blanc": 9.0, "jadot_yannick": 44.0, "le_pen_marine": 77.0, "nb_exprime": 1346.0, "nb_vote_nul": 6.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1689.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1361, "quartier_bv": "61", "geo_point_2d": [48.84939677174295, 2.2631013835353513], "melenchon_jean_luc": 98.0, "poutou_philippe": 0.0, "macron_emmanuel": 680.0}, "geometry": {"type": "Point", "coordinates": [2.2631013835353513, 48.84939677174295]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "af7e2e35de15683e44d0b895b275e6766eb7a09e", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 160, "zemmour_eric": 188.0, "hidalgo_anne": 10.0, "dupont_aignan_nicolas": 18.0, "date_tour": "2022-04-10", "id_bvote": "16-25", "geo_shape": {"coordinates": [[[2.259705798921595, 48.84834777055074], [2.259714835134211, 48.848323791776394], [2.259812070827102, 48.84822673200817], [2.2599036328617093, 48.84813516097132], [2.259995195949935, 48.84804358896595], [2.260092430597747, 48.84794652894545], [2.260183991660183, 48.84785495677173], [2.260281225604519, 48.84775789658137], [2.260291452343583, 48.84775389467046], [2.260514740906614, 48.847741525480174], [2.260735161574175, 48.84772968137073], [2.260958449928243, 48.847717311352085], [2.26117887039254, 48.84770546642489], [2.261182904289645, 48.847705639731316], [2.261350371660942, 48.847729225422846], [2.2615826794913803, 48.84776254742457], [2.261750147239217, 48.84778613165599], [2.261982455579044, 48.847819452879776], [2.262149923690663, 48.84784303655041], [2.262165496440609, 48.847831031604116], [2.262099088876116, 48.84771629536886], [2.262037436290736, 48.847610206151884], [2.261971029302312, 48.84749546892348], [2.261909377238867, 48.84738937961948], [2.261915887776179, 48.84737815520513], [2.2619686782587323, 48.84736030465193], [2.262021962352392, 48.84734695215968], [2.262029753574296, 48.847335166338915], [2.261942372427792, 48.847192900447], [2.261848275096326, 48.8470447615307], [2.261858294891296, 48.84702523871506], [2.2618464683782102, 48.84701117068273], [2.2616828159824838, 48.84696055261394], [2.26154437299629, 48.84691267650558], [2.261538187444602, 48.84690827369233], [2.261463198019767, 48.846793596442474], [2.261390221890387, 48.84668120696308], [2.261315233117977, 48.84656652959714], [2.261242257625649, 48.846454140004624], [2.261167269518304, 48.84633946162325], [2.2610942960255, 48.846227071925995], [2.261021321484963, 48.84611468216447], [2.260946334339466, 48.84600000450897], [2.260873361798531, 48.84588761464272], [2.260798375305325, 48.84577293687118], [2.260725402038745, 48.84566054688336], [2.260650416197827, 48.845545868995686], [2.260577443568366, 48.845433478894705], [2.260502458392488, 48.84531879999166], [2.260498110109778, 48.84528557828538], [2.260448670726273, 48.84528709659298], [2.260302917619165, 48.845290076268235], [2.260120532395435, 48.84529353522417], [2.259920684067855, 48.845297620658016], [2.259738298792255, 48.84530107903123], [2.259538451781118, 48.84530516293567], [2.259356066453865, 48.84530862072612], [2.259173681102309, 48.84531207823854], [2.258973832629417, 48.84531616209068], [2.258828583684803, 48.84531912960302], [2.258646198261584, 48.84532258631122], [2.258591600069705, 48.84532370134307], [2.258575661417118, 48.84533124900608], [2.258585520731576, 48.84535132557973], [2.258565411513246, 48.84545624462517], [2.25854966402819, 48.8455670096108], [2.258549697137008, 48.84556889669316], [2.25857201100114, 48.845693003165046], [2.258594204095552, 48.845817943484555], [2.258616519547668, 48.84594204902955], [2.258638712854734, 48.8460669893129], [2.25863907251149, 48.84606824076525], [2.258694800173378, 48.84620772656424], [2.258751491115924, 48.84634925445727], [2.258807218003817, 48.84648874105958], [2.25886391091993, 48.846630268872126], [2.258863967425528, 48.846630415819234], [2.258910013086337, 48.84675408632438], [2.258955509050923, 48.84687426384257], [2.259001006575149, 48.846994442238255], [2.259047052882793, 48.847118112650264], [2.259092550843797, 48.847238290085514], [2.259138596208745, 48.84736196132606], [2.259184094593843, 48.84748213870022], [2.259230141753997, 48.847605809886886], [2.259226830793573, 48.84761412022988], [2.259188082513512, 48.84763872893651], [2.259131087271549, 48.847678689264946], [2.259114759925357, 48.847680463338264], [2.258940593991595, 48.84761925923172], [2.258766503216389, 48.84755969757708], [2.258592338095232, 48.847498492956966], [2.258418248121481, 48.847438930789124], [2.258244082437522, 48.847377726546256], [2.258069993265326, 48.84731816386522], [2.258063183113318, 48.84731716200661], [2.2578808802209203, 48.84732188710582], [2.257700224849986, 48.84732660865902], [2.257517923254139, 48.84733133321364], [2.257337267804763, 48.847336055118], [2.257154964780465, 48.84734077911107], [2.256974309278283, 48.84734549956808], [2.256793653743375, 48.84735021975227], [2.256611350620256, 48.84735494291695], [2.256603370932404, 48.847353488520795], [2.256433320179306, 48.847280256555145], [2.256266482309987, 48.847208038114964], [2.256096432505001, 48.84713480566089], [2.255929594218413, 48.84706258583381], [2.255759546711092, 48.84698935379908], [2.255592709357104, 48.846917133492816], [2.25542266281063, 48.846843900070425], [2.255255826376289, 48.84677168018421], [2.2550889917796892, 48.846699459169834], [2.254918945288721, 48.84662622500874], [2.254752111611752, 48.846554004414465], [2.254582066068889, 48.846480769765016], [2.254415233337268, 48.846408547792294], [2.254245188742307, 48.84633531265445], [2.254078356930406, 48.846263091101804], [2.253908313283444, 48.846189855475636], [2.253741482416799, 48.8461176325445], [2.2535714397050572, 48.84604439732926], [2.253404609770895, 48.84597217391895], [2.253234568019927, 48.84589893731605], [2.253067737642896, 48.845826714317376], [2.252897698202488, 48.84575347723464], [2.252730868770829, 48.845681252857524], [2.252599357205468, 48.845624610129796], [2.252560830265515, 48.8456080161857], [2.252554317451831, 48.8455982766885], [2.252527630649074, 48.84559954624725], [2.252341163883162, 48.84560433309508], [2.252160778556783, 48.845608080222476], [2.251974310376993, 48.84561286559067], [2.251793924994707, 48.8456166121649], [2.251613539599503, 48.845620357567896], [2.251427071312523, 48.8456251429824], [2.251246685861431, 48.84562888783219], [2.251060218872808, 48.845633672683405], [2.250879832003274, 48.845637416971556], [2.250693364950457, 48.84564220125093], [2.250685832064446, 48.84564239779937], [2.250603180291551, 48.845664640456214], [2.250541457783755, 48.84568042448469], [2.250515390411514, 48.84569072895142], [2.250902167131855, 48.84792646791205], [2.255707440657157, 48.849086456039686], [2.255771342001268, 48.8490938524231], [2.255969525672961, 48.84905631693352], [2.256162477219439, 48.84901956251443], [2.2563606589642298, 48.84898202636603], [2.256553609959775, 48.8489452713137], [2.256751792515782, 48.84890773362407], [2.256944741597737, 48.84887097793009], [2.2571429235766463, 48.848833440489365], [2.257335872107758, 48.848796684162146], [2.257534053522292, 48.848759146071046], [2.257727001502451, 48.84872238911064], [2.257925182365611, 48.84868484946989], [2.258118131157345, 48.84864809188473], [2.258316310080767, 48.848610552484445], [2.258509258321535, 48.848573794266045], [2.258707438043298, 48.848536254223816], [2.258900384370554, 48.84849949536382], [2.259098563527913, 48.84846195467123], [2.259291509304189, 48.848425195177974], [2.259484456170797, 48.8483884353808], [2.259682634497933, 48.84835089281775], [2.259705798921595, 48.84834777055074]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 25, "roussel_fabien": 13.0, "nb_emargement": 1239.0, "nb_procuration": 57.0, "nb_vote_blanc": 12.0, "jadot_yannick": 44.0, "le_pen_marine": 94.0, "nb_exprime": 1224.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 4, "nb_inscrit": 1502.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1239, "quartier_bv": "61", "geo_point_2d": [48.84726292519021, 2.2559309929045877], "melenchon_jean_luc": 185.0, "poutou_philippe": 5.0, "macron_emmanuel": 488.0}, "geometry": {"type": "Point", "coordinates": [2.2559309929045877, 48.84726292519021]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b095cebf230587b186a13ce72c7107830fa82981", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 42, "zemmour_eric": 85.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "14-22", "geo_shape": {"coordinates": [[[2.314381881089201, 48.83176282796445], [2.314377248088142, 48.83176292102251], [2.314182325349613, 48.83180588182114], [2.314025965998256, 48.83184397572445], [2.314023739754851, 48.831844616801355], [2.313867380171329, 48.831882710496046], [2.313690073756331, 48.83194677645023], [2.313490794003964, 48.83202142846932], [2.313313485303981, 48.83208549295014], [2.313136177518566, 48.83214955807161], [2.3129368962096812, 48.83222420825499], [2.312908563204978, 48.83222967827488], [2.312907794379252, 48.832269817442906], [2.313040168643981, 48.83236124017776], [2.313169978044551, 48.83245101656196], [2.313302353229207, 48.832542438991865], [2.313432163544253, 48.83263221417767], [2.313564539648943, 48.832723636302596], [2.313694349492647, 48.83281341208083], [2.31382672787941, 48.83290483390859], [2.313956538637794, 48.83299460848843], [2.314088917944506, 48.83308603001122], [2.3142187295938, 48.83317580519129], [2.314351109820471, 48.83326722640912], [2.314480922384348, 48.83335700039077], [2.31461330353088, 48.833448421303586], [2.314743116985688, 48.83353819588548], [2.314875497690036, 48.8336296164855], [2.315005313421688, 48.833719389876784], [2.315006878836927, 48.833720316202694], [2.315038143925479, 48.83373611916654], [2.315069457882112, 48.83375369956306], [2.31508132401293, 48.833765611359354], [2.315094304692817, 48.833766210026106], [2.315214137781105, 48.83383348845203], [2.315352515483323, 48.8339113398087], [2.315503664861308, 48.83399619735469], [2.315642043427844, 48.834074048365125], [2.315793192374851, 48.83415890642448], [2.315931571805708, 48.83423675708863], [2.31595000091768, 48.834236297682075], [2.316079031437205, 48.83415181728957], [2.316206399484476, 48.834068270691596], [2.316335430522935, 48.83398379091689], [2.316462797748826, 48.83390024403337], [2.316591826593593, 48.833815763961624], [2.316719192998008, 48.83373221679254], [2.316848221011357, 48.8336477364315], [2.316975587956457, 48.83356418898462], [2.317104615150273, 48.833479707435025], [2.317231979911649, 48.83339615969483], [2.31724818958864, 48.83338851491846], [2.317244269160425, 48.83337621429562], [2.317238683848397, 48.833368291311366], [2.31723725773134, 48.833365776617185], [2.317233613533466, 48.833362653876016], [2.317077143929512, 48.83327681386128], [2.316919799969304, 48.83319036965604], [2.316763332761469, 48.83310452922532], [2.3166059884794192, 48.83301808458616], [2.31644952230555, 48.832932243731754], [2.316292179063899, 48.832845798666504], [2.316135713935588, 48.83275995648902], [2.315978373096566, 48.832673511005446], [2.315821908990312, 48.83258766930359], [2.315664567829445, 48.832501223386124], [2.315508104757042, 48.83241538126056], [2.315350764636559, 48.83232893491699], [2.315194302598, 48.832243092367676], [2.315036964880112, 48.8321566456058], [2.31488050387539, 48.832070802632835], [2.314723165835656, 48.83198435543708], [2.314566705864768, 48.831898512040425], [2.3144093688654, 48.83181206441854], [2.314381881089201, 48.83176282796445]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 22, "roussel_fabien": 22.0, "nb_emargement": 1172.0, "nb_procuration": 63.0, "nb_vote_blanc": 21.0, "jadot_yannick": 105.0, "le_pen_marine": 70.0, "nb_exprime": 1145.0, "nb_vote_nul": 7.0, "arr_bv": "14", "arthaud_nathalie": 5, "nb_inscrit": 1525.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1173, "quartier_bv": "56", "geo_point_2d": [48.83295355660132, 2.315112462765204], "melenchon_jean_luc": 394.0, "poutou_philippe": 8.0, "macron_emmanuel": 355.0}, "geometry": {"type": "Point", "coordinates": [2.315112462765204, 48.83295355660132]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "75a9610bb3c8b3bbd88c555addaa4ad9fd909dee", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 80, "zemmour_eric": 92.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-4", "geo_shape": {"coordinates": [[[2.396700021932774, 48.83957708691555], [2.396716417133776, 48.83958222490986], [2.396867013826284, 48.83958242581317], [2.397059741682332, 48.839581989896026], [2.397261575020555, 48.83958225788085], [2.397454301510255, 48.839581821321154], [2.397656134849951, 48.839582088640206], [2.397848862698141, 48.83958165145167], [2.398050696039096, 48.839581918105075], [2.398243422520918, 48.83958148027399], [2.398445255863327, 48.839581746261686], [2.398637983703621, 48.83958130780177], [2.39883981704727, 48.8395815731237], [2.399032543521177, 48.83958113402128], [2.399234376866259, 48.83958139867754], [2.399427104698618, 48.83958095894626], [2.39962893804492, 48.83958122293679], [2.399821664510872, 48.839580782563], [2.40001439233599, 48.839580341885515], [2.400216225682972, 48.83958060488513], [2.40027266444612, 48.83959699720368], [2.400296008298719, 48.8395874820852], [2.400320442095081, 48.83952598308769], [2.400327109662069, 48.839509202066665], [2.400429243900852, 48.83941194543349], [2.400544582131387, 48.83930764273141], [2.400615670983024, 48.839239948823], [2.400646715569431, 48.83921038589503], [2.400675234775407, 48.83920920222868], [2.400673641805018, 48.83918149663111], [2.40077577474473, 48.83908424057282], [2.400875384714856, 48.83898739808148], [2.400974995677246, 48.83889055550559], [2.401077127494912, 48.83879329826539], [2.401176736349136, 48.83869645549786], [2.40127886741005, 48.838599198068515], [2.401279627675734, 48.83859836636722], [2.401380973036356, 48.83847244766075], [2.401476479890989, 48.83834925168934], [2.401577825654094, 48.83822333279485], [2.401673331587007, 48.838100136638815], [2.401768837078884, 48.83797693949366], [2.401870181401414, 48.83785102120881], [2.401965685971585, 48.83772782387904], [2.402067027971961, 48.83760190539259], [2.402162531610029, 48.83747870877746], [2.402263874023226, 48.83735278920367], [2.402265173903601, 48.837346718708886], [2.402245307968935, 48.83728438896415], [2.402225173906515, 48.83724793792213], [2.402213554776711, 48.837226829381365], [2.40213338284203, 48.8372374404826], [2.401965239837275, 48.837297303305064], [2.401795653012451, 48.83735793302016], [2.401627509231148, 48.83741779536142], [2.401457921621468, 48.83747842459118], [2.401289777063618, 48.83753828645125], [2.401120188669085, 48.83759891519563], [2.400952043334689, 48.83765877657451], [2.40078245416564, 48.83771940393426], [2.40061430804436, 48.837779265731214], [2.400444718090465, 48.837839892605636], [2.400276571192634, 48.83789975392141], [2.4001069804538933, 48.83796038031044], [2.399938832779512, 48.838020241144996], [2.399769241255926, 48.83808086704866], [2.3996010928049962, 48.83814072740202], [2.399431500496567, 48.83820135282033], [2.3994266177034023, 48.8382012167842], [2.399400785828803, 48.83821563696039], [2.399231194406057, 48.838276262097466], [2.399061537323304, 48.838338175448264], [2.398891943734621, 48.838398800990156], [2.398722285850051, 48.83846071385299], [2.398552691478357, 48.83852133800799], [2.398383032791973, 48.83858325038287], [2.39821343761672, 48.83864387494957], [2.398043778128418, 48.83870578683647], [2.397874182170268, 48.838766410016234], [2.397704521880255, 48.838828321415185], [2.397534926480739, 48.83888894501347], [2.397365264026504, 48.83895085591762], [2.3971956678442092, 48.83901147812895], [2.39702600458816, 48.83907338854512], [2.396856407602086, 48.83913401116809], [2.396686744906633, 48.839195921103176], [2.396679718179462, 48.839204083340576], [2.396684068205251, 48.83929251068416], [2.396694939716265, 48.83946516009699], [2.3966992884272442, 48.83955358741243], [2.396700021932774, 48.83957708691555]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 4, "roussel_fabien": 18.0, "nb_emargement": 1199.0, "nb_procuration": 52.0, "nb_vote_blanc": 12.0, "jadot_yannick": 99.0, "le_pen_marine": 62.0, "nb_exprime": 1179.0, "nb_vote_nul": 8.0, "arr_bv": "12", "arthaud_nathalie": 8, "nb_inscrit": 1523.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1199, "quartier_bv": "46", "geo_point_2d": [48.8387309409614, 2.399603009909581], "melenchon_jean_luc": 335.0, "poutou_philippe": 6.0, "macron_emmanuel": 416.0}, "geometry": {"type": "Point", "coordinates": [2.399603009909581, 48.8387309409614]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fac29016f20958e19192d995ad0b51d4a4b5d939", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 57, "zemmour_eric": 79.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "9-12", "geo_shape": {"coordinates": [[[2.340427435702178, 48.88039119213905], [2.340408356547813, 48.88037291240462], [2.340358781579144, 48.88024815898307], [2.340308846353574, 48.880128936237995], [2.340259273218887, 48.88000418275514], [2.340209338455041, 48.87988495994213], [2.340159403919817, 48.879765737095404], [2.340109831477524, 48.8796409844088], [2.340059897404015, 48.87952176149416], [2.340010324080139, 48.879397007831905], [2.33999778542483, 48.879367068233854], [2.339989156465934, 48.8793627002621], [2.339947738171272, 48.87937505269176], [2.339770815397922, 48.87941835310604], [2.339589064432217, 48.8794624845888], [2.3394121424156022, 48.87950578537642], [2.339230389477492, 48.87954991630366], [2.33905346687707, 48.879593215658495], [2.338871713329915, 48.879637346037725], [2.338694790122869, 48.879680645758334], [2.338513035966571, 48.87972477558953], [2.33833611217584, 48.87976807387737], [2.338154357410509, 48.879812203160526], [2.337977433013148, 48.87985550181415], [2.3377956790022543, 48.87989963055681], [2.337618752657557, 48.8799429277701], [2.337436998037743, 48.87998705596471], [2.337431483507638, 48.88000144535913], [2.337575597982636, 48.88010918440298], [2.337720468333693, 48.88021478882636], [2.337864583985449, 48.88032252840076], [2.338009455515955, 48.88042813245401], [2.338153572355921, 48.88053587165966], [2.338298445077314, 48.880641474443436], [2.338294861918714, 48.88065540329252], [2.338136943003188, 48.88071220906672], [2.338002582293812, 48.880759879073864], [2.337868219986304, 48.88080754802133], [2.337710300144174, 48.88086435322492], [2.337705535108172, 48.88086537548679], [2.3375257865964, 48.880880720057085], [2.337312513216204, 48.88089906872573], [2.337132764472447, 48.8809144127055], [2.336919490815807, 48.88093276067345], [2.33673974183987, 48.88094810406267], [2.336526467906797, 48.88096645132996], [2.336346718698889, 48.88098179412865], [2.336133444489392, 48.8810001406952], [2.335953695049322, 48.881015482903365], [2.335923243329977, 48.881040003379105], [2.3359537248079922, 48.88106533488551], [2.336092936571274, 48.88116092451285], [2.336230343931231, 48.88126064988637], [2.336369556712778, 48.881356240074346], [2.336506965117867, 48.881455965112686], [2.336646178940711, 48.88155155406276], [2.336783588379285, 48.88165127966521], [2.336922801868557, 48.88174686826914], [2.337060212363628, 48.88184659263714], [2.337060739884469, 48.88185828327755], [2.336972304162856, 48.88193066912207], [2.336883258695629, 48.8819998400062], [2.336794822498292, 48.882072224811026], [2.3367057765532913, 48.882141395554264], [2.336702546528236, 48.88214757765292], [2.336708466337469, 48.88224454133162], [2.336717208119548, 48.882334173994884], [2.336725948568283, 48.88242380664268], [2.336731868452488, 48.88252077029587], [2.336748768762548, 48.88255526874878], [2.33677295097983, 48.882557310193796], [2.336881467534551, 48.88252473584574], [2.337011567193136, 48.88248809093492], [2.337191657343042, 48.8824340318962], [2.337321757920298, 48.882397386652855], [2.337324003147338, 48.88239690085061], [2.337510338433968, 48.88236810214999], [2.337738432716766, 48.882330824134], [2.337800574408771, 48.88232121945394], [2.337839576141004, 48.88232283902547], [2.337854658386668, 48.88230776510576], [2.337978852838631, 48.88228856949042], [2.338169708129344, 48.88226188390591], [2.3383560424653, 48.88223308388555], [2.338546898722815, 48.88220639770601], [2.338733232663063, 48.88217759619789], [2.33892408716041, 48.882150909408146], [2.339110422045632, 48.882122108218354], [2.339301276146337, 48.882095420826], [2.339487609272295, 48.88206661814093], [2.339602101024591, 48.8820506085051], [2.339627516030271, 48.8820312331959], [2.33961954729706, 48.882006275056], [2.3396778645381913, 48.88189043363265], [2.339741400011939, 48.88176007065804], [2.33979971534291, 48.88164422914192], [2.339863250211272, 48.88151386607353], [2.339921566358925, 48.881398024479644], [2.339985100621906, 48.88126766131742], [2.340043414847929, 48.881151820530064], [2.34010694851704, 48.88102145637474], [2.340165263559851, 48.880905615509604], [2.340228796612099, 48.88077525215976], [2.3402871097561, 48.88065941030259], [2.340350642202997, 48.88052904685893], [2.340408956163783, 48.88041320492403], [2.340427435702178, 48.88039119213905]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 12, "roussel_fabien": 15.0, "nb_emargement": 1209.0, "nb_procuration": 71.0, "nb_vote_blanc": 9.0, "jadot_yannick": 103.0, "le_pen_marine": 47.0, "nb_exprime": 1195.0, "nb_vote_nul": 5.0, "arr_bv": "09", "arthaud_nathalie": 4, "nb_inscrit": 1470.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "33", "geo_point_2d": [48.88100993633296, 2.338538723700853], "melenchon_jean_luc": 325.0, "poutou_philippe": 2.0, "macron_emmanuel": 518.0}, "geometry": {"type": "Point", "coordinates": [2.338538723700853, 48.88100993633296]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a302911eb339cedcc2335dda0a139898523506ea", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 33, "zemmour_eric": 62.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "20-52", "geo_shape": {"coordinates": [[[2.406268890887341, 48.851498326578785], [2.406333656395485, 48.85150201241289], [2.406493696733604, 48.851537936802586], [2.406657682031446, 48.85157474661338], [2.406817722816227, 48.85161067056738], [2.4069817072092032, 48.85164747992492], [2.406999370521679, 48.85164100131126], [2.407041719834157, 48.85152071803438], [2.407083245027509, 48.851402780649394], [2.407125593942553, 48.85128249821639], [2.407167118756149, 48.851164560777015], [2.407209467294228, 48.851044277389285], [2.40725099036555, 48.85092633988881], [2.40729333986893, 48.85080605735165], [2.407334862560611, 48.85068811979679], [2.407335103694245, 48.850687527419566], [2.407411506762071, 48.850522444138186], [2.407488121719424, 48.85035690046809], [2.407488617609029, 48.8503553560396], [2.407511545232409, 48.85023161631054], [2.407534746156472, 48.85010540380132], [2.407557673560346, 48.84998166403562], [2.4075808756241, 48.8498554514958], [2.407603802808469, 48.84973171169347], [2.407627004649212, 48.84960549911643], [2.407649931614079, 48.84948175927747], [2.407673131869135, 48.849355546656355], [2.407696058614506, 48.84923180678078], [2.407719260009241, 48.84910559412917], [2.407711974262753, 48.84909605550588], [2.407692654860071, 48.84909533751354], [2.407493734308435, 48.84909262492186], [2.407294838090429, 48.84908993100635], [2.407095917580141, 48.84908721775326], [2.406897021403342, 48.84908452317638], [2.40669809957184, 48.84908180925512], [2.406499203436256, 48.8490791140169], [2.406300283008696, 48.849076399441], [2.4061013869143393, 48.84907370354146], [2.405902466528157, 48.84907098830414], [2.405703570475036, 48.8490682917433], [2.40550464876757, 48.849065575837784], [2.405305752755695, 48.849062878615584], [2.405106832452302, 48.84906016205544], [2.404907936481683, 48.84905746417188], [2.404709016229971, 48.84905474605105], [2.404510118937951, 48.849052047499406], [2.404311198717389, 48.849049329616435], [2.404112302829318, 48.84904663041024], [2.403913382650185, 48.84904391186588], [2.403714486803401, 48.84904121199833], [2.4035155653031373, 48.84903849278577], [2.403316669497649, 48.84903579225693], [2.403117749401404, 48.84903307238973], [2.402918853637224, 48.84903037119955], [2.40271993358244, 48.84902765067096], [2.402521036496905, 48.849024948812605], [2.40232211648359, 48.84902222762262], [2.402123220802053, 48.84901952510981], [2.40192430084054, 48.849016802359074], [2.401725405200342, 48.849014099184906], [2.401526483907329, 48.849011376665246], [2.4013275883084813, 48.84900867282976], [2.40112866841964, 48.84900594965551], [2.400929772862148, 48.84900324515872], [2.400730853014815, 48.84900052132308], [2.400531957498691, 48.84899781616491], [2.400333036330311, 48.84899509166104], [2.400134140855564, 48.84899238584152], [2.399935221091283, 48.84898966068309], [2.399736325657923, 48.848986954202296], [2.399730015510725, 48.84898583432637], [2.39952531400459, 48.848911182493595], [2.399323001314658, 48.848835638445884], [2.399257129851449, 48.848829747015515], [2.399219249039969, 48.84883671026138], [2.399222271116037, 48.84896157094436], [2.399175278364531, 48.849105223361484], [2.399133235037811, 48.84923183627773], [2.399086241786784, 48.84937548952427], [2.399044198025691, 48.84950210237849], [2.398997204295874, 48.84964575465593], [2.398955160100403, 48.84977236744811], [2.3990042218457512, 48.849801894119615], [2.399011045205349, 48.849802595713506], [2.399143350125859, 48.84978546742787], [2.399347798952081, 48.849811946560195], [2.399505330017345, 48.849831914192826], [2.399709779209718, 48.84985839270554], [2.399867310554085, 48.84987835986073], [2.400071758739553, 48.84990483864627], [2.400229290363019, 48.84992480532404], [2.400230036227141, 48.84992488550791], [2.40038932270362, 48.849939091426336], [2.400593771403039, 48.84996556841913], [2.400753058103025, 48.84997977385282], [2.400957508499115, 48.85000625112929], [2.401116795422605, 48.85002045607823], [2.401119645661423, 48.85002051171508], [2.401298251984594, 48.85001755545502], [2.40149812004995, 48.85000758961347], [2.401676724944661, 48.8500046327816], [2.401876592888072, 48.849994666307694], [2.402118123377487, 48.849953648019984], [2.402317989678232, 48.84994368080146], [2.402321997955074, 48.849943405836925], [2.402378411630819, 48.849945078029506], [2.402386818607371, 48.84994613269164], [2.402407266521311, 48.84994388841438], [2.4025278766441422, 48.84994746221979], [2.402748618205667, 48.84994218432042], [2.402925642054015, 48.84994742881697], [2.402927051461713, 48.84994751949011], [2.403154542160827, 48.849972150994574], [2.403344673112242, 48.84999096132441], [2.403534804190726, 48.85000977225109], [2.403762295448858, 48.85003440259866], [2.403763664282908, 48.85003458569295], [2.403976570147553, 48.85007065914685], [2.404157474381432, 48.85010247360949], [2.4043383788363, 48.850134287797694], [2.404551285506017, 48.85017036022572], [2.404732190436972, 48.85020217381655], [2.404945097656646, 48.850238245541625], [2.4051260044263882, 48.85027005854187], [2.405338912206273, 48.85030612866464], [2.405519818089383, 48.85033794106074], [2.4055206815361583, 48.85033810813345], [2.405686831558484, 48.850374111682584], [2.405867739252599, 48.850405923557446], [2.406033889730927, 48.85044192662239], [2.406214797872432, 48.8504737379706], [2.406380948806757, 48.850509740551416], [2.406390265342123, 48.85051913193278], [2.406372794513355, 48.850641047637936], [2.406357851454862, 48.85077708668704], [2.406340380453431, 48.85089900325851], [2.406325437246593, 48.85103504137272], [2.406307967445569, 48.85115695791795], [2.406293022707165, 48.851292996889086], [2.406275552754072, 48.851414912502015], [2.406267101834236, 48.851491842377825], [2.406268890887341, 48.851498326578785]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 52, "roussel_fabien": 23.0, "nb_emargement": 1045.0, "nb_procuration": 48.0, "nb_vote_blanc": 16.0, "jadot_yannick": 81.0, "le_pen_marine": 72.0, "nb_exprime": 1025.0, "nb_vote_nul": 4.0, "arr_bv": "20", "arthaud_nathalie": 5, "nb_inscrit": 1331.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "80", "geo_point_2d": [48.84972783911852, 2.404002699818416], "melenchon_jean_luc": 427.0, "poutou_philippe": 10.0, "macron_emmanuel": 258.0}, "geometry": {"type": "Point", "coordinates": [2.404002699818416, 48.84972783911852]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9d1fcd7b17f3ecf006d7472f681baaad41789d1d", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 25, "zemmour_eric": 75.0, "hidalgo_anne": 12.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "19-22", "geo_shape": {"coordinates": [[[2.3912698980077, 48.884338871379626], [2.391274419469236, 48.88434555566834], [2.391303601337233, 48.884357362881], [2.39147398317741, 48.884427236877634], [2.391641237096783, 48.88449490577492], [2.391811619839909, 48.88456477928236], [2.391978874650275, 48.88463244680031], [2.391983866445448, 48.88463366285592], [2.392170218546953, 48.88465318550386], [2.392356363902864, 48.88467244061131], [2.39254271628278, 48.884691962678765], [2.39272886055153, 48.88471121719952], [2.392915214583936, 48.884730737794186], [2.393101359129016, 48.884749991735184], [2.393287712065726, 48.88476951264172], [2.393473856887129, 48.88478876600287], [2.393660211465733, 48.884808286335904], [2.393846356563452, 48.88482753911726], [2.3940327114310023, 48.88484705797059], [2.39421885680503, 48.88486631017216], [2.39422457873735, 48.884867834698824], [2.394298344445791, 48.88490198561692], [2.394381146665787, 48.884939823560764], [2.394401576150872, 48.884941900912075], [2.394413789183623, 48.88493357288893], [2.394444264643132, 48.884834580117676], [2.3944738794479132, 48.88474133955344], [2.394504354670237, 48.88464234764891], [2.394533967904962, 48.884549106147325], [2.394542851836164, 48.88452989653291], [2.394519030272208, 48.88452284677158], [2.394447041911917, 48.88450674541733], [2.394363047187878, 48.884487076820236], [2.394354351442332, 48.88447649994304], [2.394391807331073, 48.88437375090175], [2.394439092008458, 48.88424158967031], [2.3944765475716, 48.8841388396813], [2.394523831810071, 48.88400667928747], [2.394561287037054, 48.88390392925001], [2.394608570857732, 48.88377176789515], [2.394637101603063, 48.88367352057552], [2.394637261716476, 48.88367300247435], [2.394641373085694, 48.88365294222733], [2.394609932331747, 48.88364773444176], [2.394458541147666, 48.88358164725162], [2.394307249695855, 48.88351581128046], [2.394155860642976, 48.88344972370653], [2.394004569967443, 48.88338388644572], [2.393853180318624, 48.88331779847429], [2.393701890398647, 48.88325196172237], [2.393550501517457, 48.88318587336028], [2.393399212363396, 48.88312003621802], [2.39324782562387, 48.88305394657294], [2.393096537235622, 48.88298810904033], [2.392945149889684, 48.88292201989696], [2.39279386226745, 48.882856181974], [2.3927683647781492, 48.88285132669784], [2.392761286252482, 48.88285460211506], [2.392746506736254, 48.88286144297142], [2.392746689983703, 48.88287695098119], [2.392641519252074, 48.88298106758325], [2.392537868677953, 48.88308353523973], [2.392432695748064, 48.883187651631886], [2.392329045704853, 48.88329011999452], [2.392223871940352, 48.88339423618371], [2.392120221075074, 48.883496704346335], [2.392015046475751, 48.883600820332504], [2.391911393424922, 48.88370328828821], [2.391806219354344, 48.883807404078304], [2.391702565481427, 48.88390987183394], [2.391597389212631, 48.88401398741411], [2.391493735891711, 48.88411645407735], [2.391388558788171, 48.88422056945457], [2.391284904634543, 48.88432303681703], [2.3912698980077, 48.884338871379626]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 22, "roussel_fabien": 7.0, "nb_emargement": 1017.0, "nb_procuration": 20.0, "nb_vote_blanc": 11.0, "jadot_yannick": 40.0, "le_pen_marine": 63.0, "nb_exprime": 1004.0, "nb_vote_nul": 2.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1530.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1017, "quartier_bv": "75", "geo_point_2d": [48.883997177782256, 2.3931165432550894], "melenchon_jean_luc": 572.0, "poutou_philippe": 4.0, "macron_emmanuel": 186.0}, "geometry": {"type": "Point", "coordinates": [2.3931165432550894, 48.883997177782256]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "af06caec2f8306ff68377884cdba19bc7f8efb51", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 26, "zemmour_eric": 47.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 3.0, "date_tour": "2022-04-10", "id_bvote": "10-11", "geo_shape": {"coordinates": [[[2.370087536912407, 48.87219954216284], [2.370033861936733, 48.87209124752874], [2.369980140177952, 48.87198221785416], [2.369926465649506, 48.87187392315062], [2.369926984342264, 48.87186744705622], [2.369993232750334, 48.871770043203796], [2.370088457199226, 48.87163090965935], [2.370154705015489, 48.871533504797384], [2.370249928600558, 48.871394371094716], [2.370316175803171, 48.87129696702177], [2.370316540343522, 48.87129647160582], [2.370423718513486, 48.87116134961952], [2.370530353880745, 48.87102721394067], [2.370637530941951, 48.87089209172999], [2.370744165196549, 48.870757956727246], [2.370754703737867, 48.87075319707363], [2.3709545066145212, 48.87073825344998], [2.3711375116468423, 48.8707247087463], [2.371320516584091, 48.87071116376268], [2.371520320500423, 48.87069621920116], [2.371703325237934, 48.87068267363188], [2.371903127571919, 48.87066772842383], [2.372086132109887, 48.870654182268964], [2.372285935587985, 48.87063923642868], [2.3724689399262, 48.870625689688204], [2.372619719910713, 48.87061441097562], [2.372629320025755, 48.8706187295516], [2.3726541017629073, 48.87061286355369], [2.372704167629776, 48.870609109504045], [2.372817325252856, 48.87059970724056], [2.372838036396119, 48.87055362576561], [2.372816227606869, 48.87053824253367], [2.37263727424688, 48.8704836286264], [2.372463069309093, 48.87042926507588], [2.372284118046049, 48.870374651541724], [2.372109913852125, 48.870320286572586], [2.371930961970509, 48.87026567249788], [2.37175675850972, 48.87021130700943], [2.3717565411680273, 48.87021124201563], [2.371546204321992, 48.87014997749232], [2.371372001649682, 48.8700956114382], [2.371197799330039, 48.87004124602716], [2.370987463827584, 48.86997998051257], [2.370813262306834, 48.86992561363692], [2.370633339556102, 48.86986988629832], [2.370459138773127, 48.86981551890191], [2.370279215418303, 48.86975979101831], [2.370105016736317, 48.869705423108265], [2.369925094140616, 48.869649694686835], [2.369750894833305, 48.869595326248806], [2.369570974359833, 48.86953959729666], [2.369570416291243, 48.8695394126908], [2.369448887177207, 48.86949689570364], [2.369378556069988, 48.86946999916619], [2.369345844018825, 48.86946508549708], [2.369311422738141, 48.86949854211021], [2.369232865629284, 48.86962386564526], [2.369161799884022, 48.86973912452666], [2.3690907338242733, 48.86985438335387], [2.369012175647828, 48.869979706703724], [2.368941108928789, 48.870094965416996], [2.368862550029639, 48.870220288641384], [2.368791482651303, 48.87033554724073], [2.368712921666009, 48.87046087033243], [2.368641854991592, 48.87057612882502], [2.368563293283571, 48.870701451791255], [2.368492224586607, 48.870816710162735], [2.36841366351888, 48.870942033010635], [2.368342594162592, 48.87105729126816], [2.368264031008879, 48.87118261398339], [2.368192962356403, 48.871297872134186], [2.36811439847983, 48.87142319472391], [2.3680433278048643, 48.87153845275356], [2.367964764568578, 48.871663775224974], [2.367893693234263, 48.871779033140676], [2.367878266375323, 48.871785616662564], [2.36786651471659, 48.87181143663249], [2.367862896561962, 48.87181479723463], [2.367703403657667, 48.871907450843715], [2.367541180618435, 48.87199955740261], [2.367381687939422, 48.87209221057472], [2.367219463755795, 48.872184316682166], [2.367059968564592, 48.87227697030221], [2.366897744610867, 48.87236907506619], [2.366738248281658, 48.87246172824207], [2.366576021809521, 48.872553833446695], [2.366572731669385, 48.8725595825841], [2.366579218352713, 48.87258313546839], [2.36661866897084, 48.872613229186726], [2.366660991631282, 48.87264684639991], [2.366659621638445, 48.8726592778784], [2.36651043328648, 48.87274781414894], [2.366369292778233, 48.87283149234471], [2.3662201034394252, 48.872920028239584], [2.366078963361413, 48.87300370608718], [2.365929773025014, 48.873092242505685], [2.365788630650644, 48.87317591999069], [2.365639439338437, 48.873264455134276], [2.365498297394301, 48.8733481322711], [2.365349105084277, 48.87343666793829], [2.365207962207072, 48.87352034471974], [2.365066817513068, 48.87360402132122], [2.364917623747751, 48.873692555530845], [2.364896305809715, 48.873702074316654], [2.364734323402701, 48.8737457481084], [2.364535195909102, 48.873795083669975], [2.364373212910058, 48.87383875696939], [2.3641740833555343, 48.873888091918836], [2.364173954810807, 48.87388812361216], [2.364011972582745, 48.87393179642631], [2.363901191705267, 48.8739600854724], [2.363882854394979, 48.87396531569389], [2.3638998994298, 48.87401454688763], [2.363948680987226, 48.8740474007322], [2.363975878025068, 48.87406703385046], [2.363990577146691, 48.874069118368915], [2.364149365763113, 48.874028208470015], [2.364300134478269, 48.873989550875336], [2.364450904332949, 48.873950893096634], [2.364609692227399, 48.873909982582816], [2.364612689774289, 48.873908908498635], [2.364769904165128, 48.87383557105548], [2.364934956297263, 48.87375730345574], [2.364939975407497, 48.873750775722485], [2.364956274239875, 48.87374778556277], [2.364966542418713, 48.87374717902458], [2.365151550848763, 48.87378962335181], [2.365332124460592, 48.87383095208271], [2.365517133475148, 48.87387339674098], [2.36569770630426, 48.87391472491002], [2.365878279419923, 48.873956052805134], [2.366063290698047, 48.87399849572245], [2.366243864394197, 48.87403982306294], [2.366428874904549, 48.874082265404816], [2.366435452106738, 48.87408549735475], [2.366455298301115, 48.874104043271494], [2.366459768610854, 48.87410417485119], [2.366567737519358, 48.874202866443525], [2.366680654830799, 48.87430804133652], [2.3667886232172, 48.87440673270413], [2.366878186338262, 48.87449015393371], [2.366889524575493, 48.87449361248934], [2.36691027211367, 48.87448469199421], [2.3670952628182, 48.874435587138564], [2.367278466101241, 48.874386790913675], [2.367463456110939, 48.87433768548469], [2.367646660067914, 48.87428888869917], [2.367831649382774, 48.874239782696854], [2.368014851287126, 48.87419098533633], [2.368198054211532, 48.87414218770048], [2.368383042485518, 48.87409308083953], [2.368566244720618, 48.87404428263584], [2.368751232288857, 48.87399517610082], [2.3689344324823303, 48.87394637642285], [2.369119419355724, 48.87389726931451], [2.3693026202122063, 48.87384846997522], [2.36948760640164, 48.87379936139426], [2.36967080520549, 48.87375056147995], [2.369855790700064, 48.87370145232572], [2.370038990178008, 48.873652651850776], [2.370223974977718, 48.873603542123185], [2.370243044122336, 48.87360334656603], [2.3702505851908793, 48.87359159864639], [2.370343035313723, 48.87350579192347], [2.370436823940151, 48.873419986767814], [2.3704392653993143, 48.873413472228975], [2.37040764243877, 48.873265459583536], [2.370375906522074, 48.8731181217162], [2.370344283920883, 48.87297010901444], [2.370312548363256, 48.87282277109091], [2.3702809247581262, 48.872674758325616], [2.370249189559768, 48.87252742034589], [2.370248655836518, 48.87252589586044], [2.370194934543032, 48.87241686633235], [2.370087536912407, 48.87219954216284]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 11, "roussel_fabien": 18.0, "nb_emargement": 1278.0, "nb_procuration": 135.0, "nb_vote_blanc": 9.0, "jadot_yannick": 135.0, "le_pen_marine": 57.0, "nb_exprime": 1264.0, "nb_vote_nul": 5.0, "arr_bv": "10", "arthaud_nathalie": 3, "nb_inscrit": 1617.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1278, "quartier_bv": "40", "geo_point_2d": [48.87223558914454, 2.3686799824295877], "melenchon_jean_luc": 534.0, "poutou_philippe": 7.0, "macron_emmanuel": 391.0}, "geometry": {"type": "Point", "coordinates": [2.3686799824295877, 48.87223558914454]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "5bb72f186bf881627b404445fd513882927d90ce", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 36, "zemmour_eric": 74.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "20-18", "geo_shape": {"coordinates": [[[2.400112628115851, 48.870937832251116], [2.4001051340848543, 48.87094919376665], [2.400162090520479, 48.8710695503422], [2.400214465278979, 48.87117935810133], [2.400214080093646, 48.87118545995792], [2.400143006611042, 48.87130019259239], [2.400071541655783, 48.871415980830015], [2.400000466181423, 48.871530713349074], [2.399929000593144, 48.87164650147741], [2.399857924490169, 48.871761233887895], [2.399786458268757, 48.87187702190699], [2.399715381537364, 48.87199175420887], [2.399643916045986, 48.872107542125526], [2.399572838686067, 48.87222227431885], [2.399501371198272, 48.87233806211936], [2.399430293209816, 48.87245279420408], [2.3993588250889673, 48.872568581895344], [2.399287746471864, 48.87268331387146], [2.399216277717853, 48.87279910145342], [2.399223638609975, 48.8728107883674], [2.399415211504814, 48.87286371141633], [2.399602440311604, 48.872915524171425], [2.399794013966164, 48.87296844750833], [2.399981243526232, 48.87302025966607], [2.40017281931418, 48.873073182398535], [2.400360049627523, 48.87312499395888], [2.400547278950039, 48.87317680521708], [2.400738855888869, 48.87322972703616], [2.400764764769395, 48.87323450269592], [2.4007683470818693, 48.87323289553382], [2.400803244416252, 48.8731451289167], [2.400835412387392, 48.87306267897042], [2.400854021838266, 48.873056664744894], [2.401046326878271, 48.87311146573207], [2.401235983308991, 48.87316780900357], [2.401254145560754, 48.87316310011009], [2.401336538161205, 48.873034093641394], [2.401418109652442, 48.8729065075411], [2.401500501430588, 48.87277750182883], [2.401582072128705, 48.872649914687905], [2.401664463094891, 48.8725209088328], [2.401746032989664, 48.87239332155046], [2.401828424507081, 48.87226431555934], [2.401909993598417, 48.872136728135644], [2.4019923829406142, 48.87200772199488], [2.402073951228528, 48.87188013442981], [2.4021563397588, 48.87175112814621], [2.402237907232983, 48.87162354133905], [2.402255287799471, 48.87160397138095], [2.402241402978243, 48.87159441856048], [2.402104100519159, 48.87158825136619], [2.401978359623689, 48.87158226858344], [2.401973779409343, 48.87158151004461], [2.401958901747922, 48.87157341724645], [2.40194323862358, 48.871575553150315], [2.401771344544771, 48.8715248962264], [2.4016118708717142, 48.871478249222875], [2.401439978799424, 48.87142759182546], [2.401280505721018, 48.87138094437634], [2.401121031564983, 48.871334296705946], [2.400949140455425, 48.871283637697815], [2.400943291568769, 48.87127050511669], [2.400974884638088, 48.871238637013654], [2.401007487336615, 48.87120871292003], [2.40100206724552, 48.87119528031019], [2.400838380395797, 48.8711461029245], [2.40063057001833, 48.87108441046578], [2.400466885230884, 48.87103523257391], [2.400259075746173, 48.87097353856476], [2.400130251928209, 48.870934834956486], [2.400112628115851, 48.870937832251116]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 18, "roussel_fabien": 26.0, "nb_emargement": 1003.0, "nb_procuration": 22.0, "nb_vote_blanc": 19.0, "jadot_yannick": 48.0, "le_pen_marine": 77.0, "nb_exprime": 973.0, "nb_vote_nul": 11.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1448.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1003, "quartier_bv": "78", "geo_point_2d": [48.87217062745521, 2.4007027494582114], "melenchon_jean_luc": 465.0, "poutou_philippe": 10.0, "macron_emmanuel": 186.0}, "geometry": {"type": "Point", "coordinates": [2.4007027494582114, 48.87217062745521]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9d569331ca1ff770fe064686ce738aa2f0a40a40", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 108, "zemmour_eric": 108.0, "hidalgo_anne": 15.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "6-11", "geo_shape": {"coordinates": [[[2.328043110286374, 48.84994521109158], [2.328027562696538, 48.8499553449851], [2.328027433661219, 48.849955523232815], [2.327949479681016, 48.85006657710261], [2.327876004021335, 48.850173569384054], [2.32780252804834, 48.85028056250938], [2.327724573102711, 48.85039161620023], [2.327723850139714, 48.850397902251444], [2.327738978670912, 48.85043230857446], [2.327752795595413, 48.85046465159155], [2.327751968549465, 48.850470977528865], [2.327662928506219, 48.850593639853194], [2.327575471092831, 48.85071401763094], [2.32748643020725, 48.850836680696425], [2.327398971978349, 48.850957058318876], [2.327311513345381, 48.851077435864376], [2.327222471229002, 48.85120009779404], [2.327135011780404, 48.851320475184224], [2.327045968821757, 48.851443137855064], [2.326997863212865, 48.85147934073317], [2.3270100254188932, 48.85148900438979], [2.327093801110157, 48.85155009138009], [2.327199805149394, 48.85161723726262], [2.327205676423599, 48.85161942963471], [2.327410001563389, 48.851655972604135], [2.327599426639423, 48.85168645076108], [2.327788851936937, 48.8517169286173], [2.327993177867982, 48.85175347058765], [2.328182603627924, 48.851783948717944], [2.328386930097876, 48.85182049001372], [2.328474134006973, 48.851834520193115], [2.328537697641594, 48.85187993382068], [2.328587775915583, 48.85186890182848], [2.328689996992512, 48.85188534814966], [2.328891217869215, 48.85191832948393], [2.329080644765158, 48.85194880528872], [2.329281864759834, 48.851981786855795], [2.32947129211502, 48.85201226204036], [2.329472633806359, 48.85201252677542], [2.329646483406598, 48.852053355016494], [2.329868400574, 48.85210186022808], [2.330042250782465, 48.852142687890876], [2.330178994673584, 48.85217257645231], [2.330233747447804, 48.8521845440133], [2.330234678669115, 48.85218472370116], [2.33043070896835, 48.85221794317751], [2.330607118371434, 48.85224749740489], [2.3308031477815, 48.85228071626155], [2.330979557608323, 48.85231026993819], [2.331175588854704, 48.852343488190435], [2.331351997742515, 48.85237304130865], [2.331489518403034, 48.85239634491282], [2.331665927659359, 48.85242589666755], [2.331674462690996, 48.852425498260274], [2.331732973818442, 48.8524354122056], [2.331778767337139, 48.8524229888308], [2.331920393034483, 48.85241972718718], [2.331927934625457, 48.85240167874009], [2.332002346906981, 48.85233082199166], [2.331990757748815, 48.85220695276146], [2.33197570850718, 48.85206447629276], [2.3319641194831, 48.851940606131045], [2.331952530502587, 48.85181673685368], [2.331937482852426, 48.85167425943847], [2.331925892631737, 48.851550390121304], [2.331910845119791, 48.85140791356792], [2.331920725800906, 48.85139863520857], [2.331973845506012, 48.851388705206915], [2.332023131726026, 48.85138057587805], [2.332033339173211, 48.85137068147513], [2.3320055586561272, 48.85123087686653], [2.331976817809088, 48.8510984910679], [2.331949036226037, 48.85095868640439], [2.331920297023895, 48.850826301466675], [2.331892515749018, 48.85068649585656], [2.331863776840677, 48.85055411087287], [2.331835995851015, 48.850414306114715], [2.331807257247799, 48.8502819201858], [2.331808711733919, 48.850256806535384], [2.33180112400291, 48.85024924822303], [2.33177606926944, 48.85024629150517], [2.331728380919713, 48.85026018465289], [2.331545354415013, 48.85026017671491], [2.331364963500173, 48.85026016883611], [2.331184571222694, 48.85026016067771], [2.331001546080861, 48.85026015191549], [2.330821153803399, 48.850260143209184], [2.330638127299099, 48.85026013388345], [2.330457736384457, 48.85026012463684], [2.330274709880188, 48.85026011475518], [2.330094318965781, 48.850260104960675], [2.329911292461654, 48.850260094523136], [2.329899347825847, 48.850255429206086], [2.329832858756594, 48.85017550045394], [2.329765042876471, 48.85009544101329], [2.329754813723814, 48.850090904005995], [2.329543700988578, 48.85007375397418], [2.329331922246667, 48.850056160948576], [2.329120809791362, 48.85003901017004], [2.32890903132184, 48.85002141729466], [2.328697919146473, 48.850004265769435], [2.328486140972512, 48.84998667124568], [2.328275029077097, 48.84996951897378], [2.328063251175534, 48.84995192460028], [2.328043110286374, 48.84994521109158]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 11, "roussel_fabien": 10.0, "nb_emargement": 1008.0, "nb_procuration": 69.0, "nb_vote_blanc": 6.0, "jadot_yannick": 50.0, "le_pen_marine": 38.0, "nb_exprime": 998.0, "nb_vote_nul": 4.0, "arr_bv": "06", "arthaud_nathalie": 0, "nb_inscrit": 1282.0, "sec_bv": "06", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1008, "quartier_bv": "23", "geo_point_2d": [48.8511440683992, 2.329785748385855], "melenchon_jean_luc": 177.0, "poutou_philippe": 0.0, "macron_emmanuel": 472.0}, "geometry": {"type": "Point", "coordinates": [2.329785748385855, 48.8511440683992]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "909adfd69c6a57c35ecd677640ba42ba0b6e8472", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 32, "zemmour_eric": 65.0, "hidalgo_anne": 27.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "4-3", "geo_shape": {"coordinates": [[[2.358904825827535, 48.85862198387922], [2.358911101317017, 48.85861985366547], [2.358915492101666, 48.85861836358391], [2.358930020878814, 48.85860689377725], [2.359050023865745, 48.85853394826139], [2.359228252136322, 48.85841175398575], [2.359348252893466, 48.85833880815068], [2.359349495994695, 48.85833813759599], [2.359483607874494, 48.858271462783726], [2.35964922477755, 48.85819234573741], [2.359791592441702, 48.85812414448938], [2.359957208419967, 48.85804502610705], [2.360099573904493, 48.857976825375594], [2.3602651889468182, 48.85789770655651], [2.360407553636719, 48.85782950455029], [2.360573167743002, 48.857750385294516], [2.360715532979092, 48.8576821838194], [2.360716174387899, 48.85768189495744], [2.36088614272282, 48.85761006616822], [2.36106222610666, 48.857538797704656], [2.361232193497718, 48.857466968414705], [2.361408275913603, 48.85739570033205], [2.361578242360807, 48.8573238705413], [2.361754322456889, 48.85725260193302], [2.361755862656182, 48.85725203996018], [2.361934440015824, 48.85719650683736], [2.362125194764575, 48.857136308679856], [2.362303769960046, 48.85708077589221], [2.362494523858294, 48.85702057713968], [2.36267309963736, 48.856965042902985], [2.362863852685304, 48.85690484355551], [2.363042426300211, 48.856849309653924], [2.363233178497647, 48.856789109711464], [2.36341175133336, 48.856733574353655], [2.363602502680385, 48.856673373816136], [2.363781076077585, 48.856617838807956], [2.363971826574198, 48.856557637675515], [2.36415039782932, 48.85650210120386], [2.364275939344624, 48.85646248004303], [2.3642890652829323, 48.8564437461629], [2.364274965880836, 48.8564232991776], [2.3641967858428092, 48.85631059812844], [2.364112643904801, 48.85619483811976], [2.364034465934487, 48.85608213604933], [2.36395032472603, 48.85596637590266], [2.363872146075762, 48.8558536745951], [2.36378800695969, 48.85573791431773], [2.363709829003287, 48.855625212880895], [2.3636256892539063, 48.85550945245837], [2.363547513365079, 48.85539675000027], [2.36346337434522, 48.85528098943976], [2.363385197776527, 48.85516828774452], [2.363316236342531, 48.855073407100335], [2.363304623255204, 48.85506023816122], [2.363260926971485, 48.855073900626394], [2.363102858599471, 48.855119314830475], [2.362895949492833, 48.855178761281316], [2.362737880473613, 48.85522417589826], [2.362530971896916, 48.85528362171967], [2.362372902241487, 48.855329035850176], [2.36216599146928, 48.85538848102762], [2.36200792117764, 48.85543389467175], [2.3619909369251513, 48.85543042795038], [2.361907256018583, 48.855342418208], [2.361823605001829, 48.85525443913594], [2.361739924660526, 48.85516642926261], [2.36165627285713, 48.855078449153126], [2.361639406341467, 48.855074950631405], [2.361506450005328, 48.855112176800006], [2.361383640956398, 48.855146561964595], [2.3612608317452812, 48.855180947002125], [2.361127876231042, 48.855218172753794], [2.361119698161258, 48.85522767840351], [2.361143302229409, 48.85534082771738], [2.361168461458888, 48.85546142565011], [2.361164373253614, 48.8554659428499], [2.361172285830924, 48.85547976135564], [2.361197445194672, 48.85560035926725], [2.36122196619099, 48.85571789685781], [2.36124648593509, 48.855835434423675], [2.36127164563129, 48.85595603318031], [2.36129616559952, 48.85607357071074], [2.361321325536613, 48.85619416853183], [2.36131623547932, 48.856202471149714], [2.36116973504806, 48.856278300305064], [2.361024535868678, 48.85635345541834], [2.360878034599418, 48.85642928330696], [2.360732833204658, 48.856504438948065], [2.360586331086369, 48.85658026646927], [2.360441130224011, 48.85665542085419], [2.360294627245651, 48.85673124890725], [2.360149425541798, 48.856806402927994], [2.360002921714399, 48.85688223061361], [2.359857717806177, 48.856957384262905], [2.359857008958942, 48.85695772672069], [2.359717578465434, 48.85702075726456], [2.35957791738196, 48.85708389163403], [2.359438484850339, 48.85714692183822], [2.359298823090514, 48.85721005587477], [2.359297266063585, 48.85721087583952], [2.35916779195711, 48.85728997017122], [2.3590188225049, 48.85738097344974], [2.358889347553062, 48.85746006746806], [2.358779636448073, 48.85752708735463], [2.358777466949073, 48.857528168439394], [2.358639133825318, 48.857583755174936], [2.358492761421746, 48.857642573184336], [2.358354429053303, 48.85769815959234], [2.35820805465523, 48.857756976340845], [2.358069721679314, 48.857812562414004], [2.357923348001251, 48.857871378815524], [2.357920838853991, 48.8578796681479], [2.357941008087809, 48.85789204799225], [2.358021179685417, 48.85790261199483], [2.358089759023463, 48.85791164961936], [2.358097737849021, 48.85791485543171], [2.358202838094094, 48.85800165958305], [2.358306227836615, 48.85808705147602], [2.3584113287763833, 48.85817385543078], [2.358514719202296, 48.858259247130356], [2.358515320493758, 48.8582597827684], [2.358600713609763, 48.85834214872685], [2.358687363748638, 48.85842572558187], [2.358772757408689, 48.85850809140525], [2.358859408110577, 48.85859166722387], [2.358904825827535, 48.85862198387922]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 3, "roussel_fabien": 16.0, "nb_emargement": 1079.0, "nb_procuration": 77.0, "nb_vote_blanc": 12.0, "jadot_yannick": 113.0, "le_pen_marine": 43.0, "nb_exprime": 1063.0, "nb_vote_nul": 3.0, "arr_bv": "04", "arthaud_nathalie": 1, "nb_inscrit": 1418.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1078, "quartier_bv": "14", "geo_point_2d": [48.85669914039026, 2.361401520519799], "melenchon_jean_luc": 293.0, "poutou_philippe": 3.0, "macron_emmanuel": 449.0}, "geometry": {"type": "Point", "coordinates": [2.361401520519799, 48.85669914039026]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "69489abc11177af695f539bf2cadf7fa69b91eeb", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 62, "zemmour_eric": 78.0, "hidalgo_anne": 50.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "11-50", "geo_shape": {"coordinates": [[[2.392256531574369, 48.85042268658379], [2.392251896871307, 48.850414502316916], [2.392279493293555, 48.8503181770325], [2.392301163082659, 48.85024182503447], [2.392310024139475, 48.85023501337554], [2.392508553520565, 48.85018884870055], [2.392705973739471, 48.85014217532802], [2.392714718123658, 48.8501355465146], [2.392756209935305, 48.85000433828145], [2.392796436521811, 48.849876554629944], [2.392837927921495, 48.84974534633787], [2.392878154107697, 48.84961756262914], [2.39291837873394, 48.849489778885314], [2.392959870881327, 48.84935857051229], [2.393000095107282, 48.849230786711246], [2.393041585480041, 48.849099578272465], [2.393081810668385, 48.84897179442114], [2.393123300629202, 48.84884058592351], [2.393107244512517, 48.84880119732447], [2.393104451409061, 48.848800805427786], [2.393067670965062, 48.84880623801435], [2.392867770424385, 48.84883701324118], [2.392677045282766, 48.84886517981768], [2.3924863212976453, 48.84889334609632], [2.392286420079618, 48.848924120349466], [2.392095694304889, 48.84895228599701], [2.391895792630097, 48.84898305959585], [2.391705067791306, 48.84901122462614], [2.391505165659758, 48.84904199757072], [2.391314439031373, 48.849070161969905], [2.391114536443075, 48.849100934260186], [2.390923809387975, 48.84912909803517], [2.390723906342937, 48.84915986967119], [2.3905331802236, 48.84918803282892], [2.39033327672183, 48.84921880381065], [2.390142548813121, 48.84924696633724], [2.389942644854627, 48.84927773666469], [2.389751917881699, 48.84930589857406], [2.389626288403877, 48.849325235077], [2.389598430849504, 48.849328419666065], [2.389583223416663, 48.84933789951129], [2.389508948462314, 48.84934933175534], [2.38931208496994, 48.84937920459974], [2.389112180013729, 48.849409973535955], [2.388915316064828, 48.84943984572589], [2.388715410641731, 48.84947061399751], [2.388518546246865, 48.8495004846337], [2.388318640356893, 48.84953125224074], [2.388121775494967, 48.84956112312176], [2.387921869138125, 48.84959189006421], [2.387725003819699, 48.84962176029078], [2.387525096996098, 48.849652526568605], [2.38745927349919, 48.84966251417357], [2.387447490984741, 48.84966624282742], [2.38746280114171, 48.84971240858314], [2.387458165743204, 48.84986376043085], [2.38745094429053, 48.85001912902036], [2.387446308830303, 48.85017048082591], [2.387439087299774, 48.85032584937186], [2.3874522585185263, 48.8503351135884], [2.387635097231148, 48.85033909112581], [2.387817455411369, 48.85034233025424], [2.388000294187744, 48.85034630633428], [2.388182652415912, 48.850349544906095], [2.388195914162448, 48.85035853879758], [2.388195885581274, 48.850401946819915], [2.3881968362230213, 48.85043101337053], [2.388196434906515, 48.85045126654399], [2.388219056231045, 48.85045561097073], [2.388270311205886, 48.85045607539118], [2.388484070454437, 48.85045840381347], [2.388686471417139, 48.850460237635424], [2.3889002307012532, 48.85046256531428], [2.389102633057466, 48.85046439843917], [2.389316391014626, 48.85046672536756], [2.389518793401634, 48.850468557788474], [2.389732551394433, 48.85047088397335], [2.389934953812222, 48.85047271569026], [2.390137354881532, 48.85047454705785], [2.390351114289109, 48.85047687214458], [2.390553516741373, 48.85047870371443], [2.390767274821957, 48.85048102805071], [2.390779748012212, 48.8504932849851], [2.390715003424726, 48.850602923637176], [2.3906421430977423, 48.850726793635495], [2.390577399293336, 48.85083643219704], [2.390504538323289, 48.85096030118627], [2.390439792566005, 48.851069940542715], [2.390392011681524, 48.85115116942068], [2.390393857919806, 48.8511544596637], [2.3904183731919453, 48.85116143582968], [2.390586220404523, 48.85118940631607], [2.390747360923266, 48.85121649612487], [2.390908502972275, 48.85124358572292], [2.391076350712635, 48.8512715555197], [2.3910888662394543, 48.851269482353246], [2.391227924976046, 48.85118584333609], [2.391364048662132, 48.85110376668674], [2.3915031065148282, 48.85102012733731], [2.391639229324105, 48.850938051261934], [2.39177828629291, 48.850854411580215], [2.391914408246382, 48.85077233428028], [2.392050529771156, 48.8506902568194], [2.392189585418472, 48.85060661664106], [2.392193764602142, 48.85060174629356], [2.392218808268831, 48.85051971856679], [2.392245105317157, 48.85043456025413], [2.392256531574369, 48.85042268658379]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 50, "roussel_fabien": 26.0, "nb_emargement": 1470.0, "nb_procuration": 93.0, "nb_vote_blanc": 17.0, "jadot_yannick": 159.0, "le_pen_marine": 40.0, "nb_exprime": 1449.0, "nb_vote_nul": 5.0, "arr_bv": "11", "arthaud_nathalie": 6, "nb_inscrit": 1792.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1471, "quartier_bv": "44", "geo_point_2d": [48.84992413882976, 2.3905706630872965], "melenchon_jean_luc": 523.0, "poutou_philippe": 7.0, "macron_emmanuel": 465.0}, "geometry": {"type": "Point", "coordinates": [2.3905706630872965, 48.84992413882976]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "de558934d430f38e0f8e52cf6d7ccd5fbb493b89", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 77, "zemmour_eric": 87.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "9-15", "geo_shape": {"coordinates": [[[2.332294626482992, 48.88285878300268], [2.332270152442125, 48.88283834589401], [2.332213054488882, 48.88272736106289], [2.33215308298593, 48.88261057925735], [2.3320959855320043, 48.882499594347465], [2.332036014553764, 48.882382812459085], [2.33197891759905, 48.88227182747039], [2.331934419308832, 48.88218517672929], [2.331918945782189, 48.88215504549162], [2.33190304457878, 48.88214794196641], [2.331882156981266, 48.882162072626826], [2.331743565944739, 48.88226652011236], [2.331608615216511, 48.88236714041082], [2.331470023085529, 48.88247158756022], [2.33133507266092, 48.88257220753919], [2.331196479435577, 48.882676654352494], [2.331061526587503, 48.88277727399678], [2.331053333071791, 48.88278020950197], [2.330879698506671, 48.88279735895304], [2.330657506307325, 48.882818143390075], [2.330483872849027, 48.88283529227417], [2.330261680329864, 48.8828560759759], [2.330088045239534, 48.88287322517699], [2.329865852400556, 48.882894008143424], [2.329692218428633, 48.88291115587826], [2.3296803727722972, 48.88290849678315], [2.329550764191936, 48.882819656310616], [2.329422077353358, 48.88273085502544], [2.329292468292303, 48.8826420142513], [2.329163782344617, 48.882553211774926], [2.329034175529845, 48.88246437071449], [2.328905490461564, 48.8823755679461], [2.328775883165998, 48.882286726584084], [2.328647198965626, 48.882197924423025], [2.32851759391622, 48.88210908277469], [2.328388910606832, 48.882020279422456], [2.328259306440148, 48.881931437480176], [2.328130622635025, 48.881842634727576], [2.3281219242570153, 48.88183988701478], [2.327959523439533, 48.881830749317814], [2.327724724569394, 48.881819030298956], [2.327562322523027, 48.8818098920554], [2.327327523836311, 48.88179817225735], [2.327165123299927, 48.88178903258323], [2.327110089853369, 48.881784717654924], [2.327099783464843, 48.88179698598715], [2.327101685117582, 48.88183924194574], [2.32710813878571, 48.88197370781267], [2.327113951609825, 48.882102790251984], [2.327120405353905, 48.88223725518677], [2.327126216862688, 48.88236633848621], [2.327132670671098, 48.88250080338812], [2.327138482239693, 48.88262988665602], [2.327144936112433, 48.88276435152506], [2.327150747752461, 48.88289343386218], [2.327156559409679, 48.88302251708311], [2.327163013377755, 48.883156981903234], [2.327168826469863, 48.88328606420106], [2.327175279127196, 48.883420529879885], [2.327160532976679, 48.88345375825674], [2.327202902833591, 48.883470413660056], [2.327297372532305, 48.88348807496117], [2.327427150498351, 48.88351327128687], [2.327435317309578, 48.883521403054964], [2.32748041071501, 48.883528432822985], [2.327610187506627, 48.883553628941705], [2.327799178962469, 48.883588453782046], [2.327800954258062, 48.88358888913319], [2.328012538033067, 48.88365209297344], [2.328141332364619, 48.8836969351863], [2.328145330266779, 48.88369875538433], [2.328272107157977, 48.88378203704371], [2.328404396728978, 48.88386761309986], [2.328531174433864, 48.88395089537136], [2.328663463495965, 48.88403647112049], [2.328790243401516, 48.8841197522133], [2.328922533306706, 48.884205328562295], [2.329049314037557, 48.88428860936801], [2.32918160480902, 48.884374184518364], [2.329308386353795, 48.88445746593618], [2.329440677979947, 48.884543040787136], [2.3294547995870643, 48.88454509300779], [2.329634516068658, 48.884502908129875], [2.32982595801233, 48.88445704470202], [2.330005675264553, 48.884414858372], [2.33019711519406, 48.884368994339376], [2.330376831830173, 48.88432680834815], [2.330568272472687, 48.88428094372601], [2.330747988515814, 48.884238756275025], [2.330939427144158, 48.884192891048194], [2.331119142571179, 48.88415070393599], [2.331310580548934, 48.88410483811201], [2.331490295371403, 48.88406265043933], [2.331681734073686, 48.88401678312658], [2.331861448291595, 48.88397459489343], [2.332052884968258, 48.883928727875265], [2.332232598581505, 48.88388653908163], [2.332424034619093, 48.88384067056707], [2.33255428527524, 48.883810092839916], [2.332591836155218, 48.883798802425744], [2.332564926137025, 48.88375229460454], [2.332529154270813, 48.883638941359564], [2.332485318591348, 48.88349522308314], [2.332449547075, 48.883381869787875], [2.332405711831619, 48.88323815144874], [2.332369940653602, 48.88312479900245], [2.3323261058462, 48.88298108060055], [2.332290335029563, 48.88286772720476], [2.332294626482992, 48.88285878300268]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 15, "roussel_fabien": 24.0, "nb_emargement": 1241.0, "nb_procuration": 96.0, "nb_vote_blanc": 13.0, "jadot_yannick": 99.0, "le_pen_marine": 53.0, "nb_exprime": 1228.0, "nb_vote_nul": 1.0, "arr_bv": "09", "arthaud_nathalie": 3, "nb_inscrit": 1488.0, "sec_bv": "09", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1242, "quartier_bv": "33", "geo_point_2d": [48.88322403597243, 2.3296594555186805], "melenchon_jean_luc": 270.0, "poutou_philippe": 1.0, "macron_emmanuel": 555.0}, "geometry": {"type": "Point", "coordinates": [2.3296594555186805, 48.88322403597243]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b9e1b7655aaf45e07071335dd9872ab9398aa8a6", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 43, "zemmour_eric": 46.0, "hidalgo_anne": 28.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "13-9", "geo_shape": {"coordinates": [[[2.362462423908621, 48.827607135411554], [2.362421776450487, 48.827608381097455], [2.362377691254082, 48.82759689849328], [2.362193571082101, 48.82755299048569], [2.3620124828437072, 48.827509796279756], [2.3618283632869153, 48.827465887706516], [2.361647275653647, 48.82742269294421], [2.361463156712051, 48.8273787838053], [2.36128207104591, 48.82733558849397], [2.361097952719614, 48.82729167878942], [2.360916866296509, 48.82724848291444], [2.360732748585316, 48.82720457264423], [2.360551662767452, 48.82716137621296], [2.360367545671468, 48.827117465377114], [2.360186460458748, 48.827074268389445], [2.360002343977979, 48.827030356987954], [2.359821259370306, 48.826987159444], [2.359637144866946, 48.82694324748415], [2.359456060864426, 48.82690004938386], [2.359388070714937, 48.82687374454262], [2.359385569279532, 48.826875006456106], [2.359363620451465, 48.826902645374], [2.3592736164656403, 48.82702309667431], [2.359179431209715, 48.827141695264594], [2.359089425034622, 48.827262145494], [2.358995238927836, 48.82738074391393], [2.358905233265544, 48.82750119488568], [2.35881104630779, 48.827619793135305], [2.358721039818413, 48.827740243043436], [2.35862685200978, 48.82785884112273], [2.358536844670982, 48.82797929176586], [2.358442654649445, 48.82809788966751], [2.358352646483441, 48.82821833924706], [2.35825845697312, 48.828336936985664], [2.358258053051153, 48.82833743756797], [2.358190531352456, 48.8284150499977], [2.358096341117851, 48.82853364758781], [2.358028818924289, 48.82861125991268], [2.357987598504449, 48.82866316091125], [2.357984679924485, 48.82867218124552], [2.358073763057303, 48.82869757027003], [2.358227534345509, 48.828771439022695], [2.358378052445992, 48.82884414521549], [2.358531824597681, 48.82891801356722], [2.3586823435346522, 48.828990720266845], [2.358832861540475, 48.82906342586571], [2.358986634983272, 48.829137293618274], [2.359137155198793, 48.82920999883196], [2.35929092950518, 48.82928386618359], [2.359441450568156, 48.82935657100483], [2.359595224375883, 48.82943043794825], [2.359745746275374, 48.829503143276334], [2.359899522308747, 48.82957700982611], [2.36005004506685, 48.829649713862416], [2.360203820601559, 48.82972358000403], [2.3602068337172533, 48.82973613336975], [2.360083084915602, 48.829848768798186], [2.359963001049144, 48.829957989002], [2.359839249831881, 48.830070624148505], [2.3597191649325993, 48.83017984498517], [2.359595414024046, 48.83029247986444], [2.359475328113919, 48.830401699535344], [2.3593515761518002, 48.83051433414], [2.359231489208721, 48.83062355444374], [2.359230626870176, 48.8306244437989], [2.35914107239658, 48.83073005471826], [2.359035859533091, 48.83085673665826], [2.358946302914743, 48.830962346503306], [2.358841090471435, 48.83108902825301], [2.3587515330483972, 48.83119463882963], [2.358646318300764, 48.83132132037445], [2.358556761446186, 48.83142693079059], [2.358451545767481, 48.831553611238505], [2.35836198811936, 48.831659221486966], [2.358336337433609, 48.83168005629929], [2.358349630717166, 48.831686351262064], [2.35847414443018, 48.83172819058824], [2.358646662928193, 48.83178759290077], [2.358698865013122, 48.83180513353694], [2.358875581482928, 48.83186451395253], [2.359048100889517, 48.83192391567882], [2.359224818159785, 48.83198329557209], [2.359397338357518, 48.83204269678832], [2.359574056439193, 48.832102075259975], [2.359746577427963, 48.832161475966195], [2.359923296299148, 48.832220854814864], [2.360095819441085, 48.83228025501829], [2.360272537750498, 48.83233963333742], [2.360445061683476, 48.83239903303075], [2.360621780804375, 48.832458409928236], [2.360794305528389, 48.832517809111565], [2.360859661023165, 48.83253976843331], [2.360864762230554, 48.83253859593376], [2.360868413116283, 48.832483713414284], [2.361010958629888, 48.83237302604282], [2.361151983271342, 48.83226433506592], [2.361147962174313, 48.83225051905106], [2.360980794530537, 48.83219267071727], [2.360810706352441, 48.83213350155084], [2.360643539469188, 48.83207565184036], [2.360473452055691, 48.832016482188116], [2.360306285921943, 48.83195863200024], [2.360136200635262, 48.831899461869504], [2.360131802465792, 48.831885980161616], [2.360256794247331, 48.831780010449556], [2.360361362192512, 48.831690476193195], [2.360465928416394, 48.831600941830985], [2.360590920186487, 48.83149497264941], [2.360696220574034, 48.831405937552674], [2.360821210046247, 48.831299968104695], [2.360926510997763, 48.83121093369627], [2.361051499534315, 48.83110496398921], [2.361156798347458, 48.831015928455955], [2.361201562783851, 48.83097797576739], [2.361226093109646, 48.830965181923474], [2.361227030550519, 48.830959050521926], [2.361307253652673, 48.83089103322609], [2.361395480551747, 48.83080983245854], [2.361520467173345, 48.83070386222341], [2.361608693434563, 48.83062266038574], [2.361610266941991, 48.830621539174444], [2.361729943623419, 48.83054953390116], [2.361856547326528, 48.830475498710584], [2.361976223332533, 48.83040349318151], [2.362102826331224, 48.83032945772061], [2.362104660370973, 48.830328529458306], [2.362247502296708, 48.830268188842375], [2.362387410182214, 48.83020913919898], [2.362530251464549, 48.8301487973396], [2.362670158709477, 48.830089747359146], [2.362813000688584, 48.83002940606222], [2.362952907292732, 48.82997035574472], [2.362957445514042, 48.82996718355102], [2.36305121518287, 48.82985700180639], [2.363145080983355, 48.82974471686081], [2.363238849855374, 48.82963453494724], [2.363332714862156, 48.82952224893279], [2.363426482926594, 48.82941206774953], [2.363520347128697, 48.82929978156553], [2.363614114407324, 48.82918959931403], [2.363707977793779, 48.82907731385981], [2.363801745637868, 48.82896713144656], [2.363895606857625, 48.8288548458156], [2.363902290395071, 48.82885133873582], [2.363900974868207, 48.82882965056699], [2.36399483699973, 48.82871736395228], [2.364086698079134, 48.828613306666796], [2.364180559410272, 48.82850102078397], [2.364272419737782, 48.82839696333573], [2.36436427968763, 48.82829290670657], [2.364458138492919, 48.8281806196673], [2.364484826763571, 48.82816662604605], [2.364475621229991, 48.82814728467872], [2.36446869016812, 48.82814328341058], [2.364269713549272, 48.828091741359856], [2.36409520270794, 48.82804629370855], [2.36392069352191, 48.82800084670727], [2.363721716626344, 48.827949303731096], [2.36354720673941, 48.82790385527437], [2.363348231945487, 48.82785231167956], [2.363173722708801, 48.82780686267395], [2.362974747281207, 48.82775531934537], [2.362800240056881, 48.827709869798085], [2.362601265379608, 48.82765832494437], [2.362470844026359, 48.82762435743416], [2.362462423908621, 48.827607135411554]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 9, "roussel_fabien": 26.0, "nb_emargement": 939.0, "nb_procuration": 34.0, "nb_vote_blanc": 8.0, "jadot_yannick": 55.0, "le_pen_marine": 95.0, "nb_exprime": 927.0, "nb_vote_nul": 4.0, "arr_bv": "13", "arthaud_nathalie": 6, "nb_inscrit": 1257.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 939, "quartier_bv": "50", "geo_point_2d": [48.82924728873352, 2.360894464090846], "melenchon_jean_luc": 365.0, "poutou_philippe": 16.0, "macron_emmanuel": 213.0}, "geometry": {"type": "Point", "coordinates": [2.360894464090846, 48.82924728873352]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "86c8cfd3fc3b7ff285b1bdc71c5285396e2677ce", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 74, "zemmour_eric": 71.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "11-17", "geo_shape": {"coordinates": [[[2.367829418244922, 48.85850936745307], [2.367829780414413, 48.858523440567815], [2.367811945231309, 48.85859886281184], [2.367780541295005, 48.858732148463645], [2.367748889165668, 48.8588659930745], [2.367717484896032, 48.85899927957699], [2.367685832453442, 48.859133123239644], [2.367654427861483, 48.85926640969346], [2.367622775083605, 48.85940025420649], [2.367591370180334, 48.85953353971239], [2.367559718441123, 48.85966738418373], [2.367528313215422, 48.85980066964099], [2.367496659789087, 48.85993451405619], [2.367465254230131, 48.860067800364064], [2.367433600490326, 48.86020164383111], [2.367402194609026, 48.86033493009033], [2.367370540534111, 48.86046877440771], [2.367355284380483, 48.860533521358064], [2.367351927687237, 48.86054358618729], [2.367437565065169, 48.8605653003342], [2.367570265960058, 48.860609756700946], [2.36770355258395, 48.860654037941735], [2.367836253931817, 48.860698494009974], [2.367969541008792, 48.86074277495098], [2.367974304622528, 48.86074369046213], [2.368135134654791, 48.860754383993914], [2.368369175525049, 48.86077042093642], [2.368530005720973, 48.8607811139373], [2.368764046832846, 48.860797150107146], [2.36892487719222, 48.860807842577074], [2.368938592485071, 48.86080477168708], [2.368942769020622, 48.86079339090025], [2.368962942458646, 48.86066922740825], [2.368983241304098, 48.8605428045032], [2.369003414559535, 48.860418640077015], [2.369023711846291, 48.860292217129334], [2.369043886271211, 48.860168052675526], [2.36906418336214, 48.86004162969239], [2.3690843562197372, 48.85991746609579], [2.369104653125735, 48.85979104217791], [2.36912482715281, 48.85966687855361], [2.3691451238629853, 48.859540454600356], [2.369163424216852, 48.859532972273215], [2.369351416513913, 48.859579047403756], [2.369541149149772, 48.85962573126852], [2.36972914211556, 48.85967180580185], [2.369918875427655, 48.85971848906389], [2.370106870414137, 48.8597645639064], [2.370296604402469, 48.85981124656566], [2.370484598705696, 48.8598573199045], [2.370674333370253, 48.85990400196099], [2.370862328331333, 48.85995007560188], [2.371052063672114, 48.85999675705559], [2.371240060675615, 48.86004282920714], [2.371429796692715, 48.86008951005806], [2.371617792991116, 48.86013558250447], [2.371807529684329, 48.8601822627526], [2.371825362213733, 48.860171288103516], [2.371768366399976, 48.86004398319143], [2.371713281575467, 48.85992042775266], [2.371656284947048, 48.859793122751256], [2.371601202016403, 48.859669567240104], [2.371544205947218, 48.85954226125724], [2.371489123547577, 48.859418705666556], [2.371432128015824, 48.85929140050079], [2.371377046147178, 48.85916784483061], [2.371320051163695, 48.85904053958271], [2.371264969826036, 48.858916983832984], [2.371207975390815, 48.85878967850287], [2.371152894584138, 48.85866612267364], [2.371152490896069, 48.85866535250928], [2.371076504458161, 48.858539016605064], [2.370993523186264, 48.858414069335815], [2.370917536148331, 48.85828773239559], [2.370834557020765, 48.858162784994946], [2.370758570723897, 48.8580364488245], [2.370675592377634, 48.857911501285336], [2.370669577838406, 48.85790008660167], [2.370632062924785, 48.857897326158216], [2.370475099948938, 48.85783518024642], [2.370319263489102, 48.85777289345732], [2.370162301261205, 48.85771074712831], [2.370006465547471, 48.85764845992484], [2.369849504056643, 48.85758631407788], [2.369693669099889, 48.857524025560835], [2.36969293097538, 48.85752375096894], [2.369516069426723, 48.857463436150425], [2.369338791843532, 48.857402169160075], [2.369161931117625, 48.85734185381158], [2.368984655727307, 48.85728058629707], [2.368807794461167, 48.85722027041137], [2.368630519900937, 48.85715900236551], [2.36845366082033, 48.85709868595701], [2.368276385727313, 48.857037417372645], [2.368196154660804, 48.85703125324396], [2.368187662568569, 48.8570457203075], [2.368169675657722, 48.85711822890642], [2.368138025508523, 48.85725207381484], [2.368105629516758, 48.85738267170837], [2.3680739790532073, 48.85751651566865], [2.3680415813736992, 48.857647113506594], [2.368009930584983, 48.85778095741803], [2.367977533943406, 48.85791155521471], [2.367945882818616, 48.85804539997662], [2.367913484500079, 48.858175996818325], [2.367881833050112, 48.858309841531415], [2.3678494344065992, 48.85844043832467], [2.367835619160505, 48.85849886074958], [2.367829418244922, 48.85850936745307]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 17, "roussel_fabien": 25.0, "nb_emargement": 1270.0, "nb_procuration": 116.0, "nb_vote_blanc": 16.0, "jadot_yannick": 140.0, "le_pen_marine": 51.0, "nb_exprime": 1246.0, "nb_vote_nul": 8.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1542.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1270, "quartier_bv": "42", "geo_point_2d": [48.858974228646936, 2.3692769910893112], "melenchon_jean_luc": 328.0, "poutou_philippe": 8.0, "macron_emmanuel": 503.0}, "geometry": {"type": "Point", "coordinates": [2.3692769910893112, 48.858974228646936]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "581940345c4b7eb1185613005e639930820b80a8", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 37, "zemmour_eric": 56.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-25", "geo_shape": {"coordinates": [[[2.405024907974186, 48.86510827984656], [2.405013524270113, 48.865111746866845], [2.404959637975037, 48.86521531220732], [2.404910136335388, 48.865310439230925], [2.404856248266155, 48.86541400449947], [2.404806746248914, 48.865509131463256], [2.404802589447161, 48.86551311554872], [2.404643137792726, 48.865600940662176], [2.4044894842476072, 48.86568544796783], [2.404335831577476, 48.86576995417721], [2.4041763769766282, 48.865857779540924], [2.404022723290198, 48.86594228533521], [2.403863267634009, 48.86603011026812], [2.403709612931478, 48.86611461564726], [2.40355015758306, 48.86620244015614], [2.403528408769377, 48.86619821639509], [2.4034861824206812, 48.86610898669177], [2.403443797112105, 48.86601960418506], [2.403401569700298, 48.86593037353141], [2.403359184682219, 48.86584099098032], [2.403323458593067, 48.86583648885396], [2.403294631933634, 48.86584539608619], [2.403206823726399, 48.86596366023394], [2.403120588541241, 48.86607892206411], [2.403034351611362, 48.86619418381331], [2.402946542225341, 48.866312447732824], [2.4028603058869242, 48.866427709339085], [2.402772494349027, 48.866545973099164], [2.40268625723894, 48.866661234555714], [2.402598446275415, 48.866779498169926], [2.4025122070305143, 48.866894759469965], [2.402424395278222, 48.86701302293149], [2.402338156624772, 48.867128284088594], [2.402250344083705, 48.86724654739747], [2.402250386452694, 48.86725616063326], [2.402293019946419, 48.86726536872632], [2.40247704898536, 48.86734458036982], [2.402656729604645, 48.867422038794416], [2.402840759750097, 48.867501249867445], [2.403020441440374, 48.867578708634326], [2.403200123675198, 48.86765616622678], [2.403384155474023, 48.867735376447584], [2.403390190220601, 48.86774158407841], [2.403423425587348, 48.86788881390064], [2.403457194005444, 48.868034986031155], [2.403461030065478, 48.86803999017688], [2.403589190691403, 48.868124537030695], [2.403717386824094, 48.868208519131954], [2.403845546927933, 48.86829306479232], [2.403973743888651, 48.868377046606206], [2.404101904812788, 48.868461592878475], [2.404230102601542, 48.86854557440498], [2.404230691420516, 48.86854594066795], [2.404257678607092, 48.868561745939004], [2.4042655107954483, 48.86856135413983], [2.4042824301118513, 48.868548106582026], [2.404376680978772, 48.86844765296388], [2.40447296628864, 48.86834700433788], [2.404567216434562, 48.868246549652085], [2.404663501004585, 48.86814590085449], [2.4047577504192272, 48.868045446000444], [2.404854034249411, 48.86794479703127], [2.404856330223445, 48.8679429800952], [2.404995777690385, 48.867857211117354], [2.405137893008597, 48.86777092102569], [2.405277338188312, 48.86768515169968], [2.4054194525603663, 48.867598862159554], [2.405423089963347, 48.86759727850911], [2.405530127244552, 48.867563656949685], [2.405646316123832, 48.86752915442227], [2.405671402962656, 48.86752834548448], [2.405677859606984, 48.86751420398635], [2.405740555093141, 48.867402702448906], [2.405801335683079, 48.86729317350236], [2.405862117380575, 48.86718364452087], [2.4059248120745123, 48.86707214285359], [2.405985593254502, 48.86696261378751], [2.406048287407786, 48.866851112932544], [2.406109068070276, 48.86674158378189], [2.406171761703626, 48.866630081940706], [2.406232541848623, 48.86652055270544], [2.406295234951689, 48.8664090507773], [2.406312514767361, 48.866398273384874], [2.406297344078211, 48.866382113464546], [2.406158129937363, 48.86627395906101], [2.406022014250995, 48.86616813026001], [2.406020779783145, 48.86616700445701], [2.405924243809087, 48.86606289543338], [2.40582616294507, 48.865956705674755], [2.405729626386431, 48.86585259646761], [2.405631546315056, 48.86574640652929], [2.405535010535152, 48.86564229714538], [2.405436931256411, 48.86553610702742], [2.405340396255129, 48.86543199746678], [2.405242317769014, 48.865325807169135], [2.40514578354635, 48.86522169743173], [2.405047705852851, 48.86511550695448], [2.405024907974186, 48.86510827984656]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 25, "roussel_fabien": 43.0, "nb_emargement": 1252.0, "nb_procuration": 81.0, "nb_vote_blanc": 15.0, "jadot_yannick": 138.0, "le_pen_marine": 42.0, "nb_exprime": 1231.0, "nb_vote_nul": 7.0, "arr_bv": "20", "arthaud_nathalie": 8, "nb_inscrit": 1561.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1253, "quartier_bv": "78", "geo_point_2d": [48.86686472090766, 2.4043906417494147], "melenchon_jean_luc": 562.0, "poutou_philippe": 19.0, "macron_emmanuel": 278.0}, "geometry": {"type": "Point", "coordinates": [2.4043906417494147, 48.86686472090766]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e452eb753422f9b512089b02d5b977d10e8324c2", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 69, "zemmour_eric": 93.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-33", "geo_shape": {"coordinates": [[[2.402325570533197, 48.84108872345737], [2.40229107773661, 48.84108426387295], [2.402224510927273, 48.84108981216156], [2.402007138237606, 48.841110758237164], [2.401805330445381, 48.841127579946594], [2.401587957429746, 48.841148525259825], [2.4013861507288, 48.84116534536906], [2.401168776024749, 48.84118628991307], [2.4009669690319733, 48.8412031102139], [2.40086298663433, 48.84121592606624], [2.400860549003727, 48.84122280744585], [2.40087926045388, 48.84127401893777], [2.400926622527527, 48.841404229712495], [2.400973030914384, 48.84153125284517], [2.401020394818527, 48.8416614635596], [2.401066803673296, 48.841788485727314], [2.401114168035135, 48.841918697273925], [2.40116057734749, 48.842045719376], [2.401207940814775, 48.842175930848626], [2.401254351947212, 48.8423029528919], [2.401270940354694, 48.84233918472409], [2.401271162136933, 48.84233933063073], [2.401318527509916, 48.84246954203217], [2.401366801128753, 48.84259626573605], [2.401414166974174, 48.84272647706961], [2.401462441063428, 48.84285320070574], [2.401509807381295, 48.84298341197146], [2.401558081941176, 48.843110135539824], [2.401605448731496, 48.843240346737716], [2.40165372512433, 48.843367070245094], [2.401701091024587, 48.843497281368265], [2.401749367888069, 48.84362400480788], [2.401796734260684, 48.84375421586323], [2.401845011594718, 48.84388093923503], [2.401892378439902, 48.84401115022251], [2.401940656244496, 48.84413787352654], [2.40198802356205, 48.84426808444616], [2.40203630183721, 48.84439480768239], [2.402083669627348, 48.84452501853413], [2.40213194837308, 48.84465174170258], [2.402179316635602, 48.84478195248645], [2.402227595851916, 48.84490867558709], [2.402243872347027, 48.84493338488207], [2.402317553213451, 48.84492031932618], [2.402503747339995, 48.844907921834], [2.402691053099699, 48.844895063736026], [2.402877247047165, 48.84488266566227], [2.403064553986611, 48.84486980698604], [2.403250746392426, 48.844857408323925], [2.403438053159237, 48.844844548163316], [2.403624245375661, 48.84483214981894], [2.403811551959427, 48.84481928907329], [2.403997744007142, 48.84480688924805], [2.404185050397669, 48.844794028816665], [2.404371242266171, 48.844781628409834], [2.404558548473846, 48.844768767393404], [2.404744740163229, 48.84475636640503], [2.404932046187839, 48.84474350480354], [2.405118237698196, 48.84473110323359], [2.405305543550098, 48.844718240147756], [2.405491734881316, 48.84470583799623], [2.405679040539975, 48.844692975224646], [2.4057156095194943, 48.84468014140789], [2.405712850891144, 48.8446601278252], [2.405709585702767, 48.84465585855048], [2.405570076003896, 48.844554318846036], [2.405439605783111, 48.8444584448686], [2.405300097138682, 48.84435690483136], [2.405169627908748, 48.84426103054256], [2.405166421827408, 48.84425684158775], [2.405127166107512, 48.844131543214935], [2.405090167226235, 48.844008734663866], [2.405050911886808, 48.84388343533884], [2.405013913361347, 48.8437606267369], [2.40497465839212, 48.84363532735896], [2.404937660222468, 48.84351251870613], [2.4049006635897, 48.843389710035105], [2.404861409172109, 48.843264410578364], [2.404824411532617, 48.84314160184966], [2.404785157485212, 48.843016302340004], [2.4047825170987522, 48.842992178329204], [2.404753955116492, 48.84298500503887], [2.404553360150082, 48.84301545369421], [2.404351636688241, 48.84304602590207], [2.404151041241655, 48.84307647478042], [2.403949317317929, 48.84310704540888], [2.403748721401449, 48.84313749361096], [2.403546996995279, 48.84316806445869], [2.4033464006089122, 48.843198511984504], [2.403144675740887, 48.84322908125287], [2.402944078884644, 48.843259528102415], [2.402742353534078, 48.84329009759001], [2.402541756207965, 48.84332054376326], [2.402340030395678, 48.84335111167149], [2.402323364772383, 48.84334266978329], [2.402316503117267, 48.84321670028001], [2.402309119875221, 48.843086194494404], [2.402302258298614, 48.842960224062054], [2.40229487512857, 48.84282971824559], [2.402288013609843, 48.84270374868277], [2.402280630511698, 48.8425732428354], [2.402273769061166, 48.8424472732428], [2.402266386035122, 48.842316767364586], [2.402266383284403, 48.84231617557312], [2.402272012694944, 48.8421917226249], [2.402280410299234, 48.84204651910684], [2.402286041009641, 48.84192206613468], [2.4022944371690222, 48.841776862573774], [2.402300067816804, 48.84165240957086], [2.402308465256141, 48.84150720598069], [2.4023140944788253, 48.841382752940284], [2.4023224918355393, 48.84123754931406], [2.402328122358071, 48.84111309624972], [2.402325570533197, 48.84108872345737]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 33, "roussel_fabien": 32.0, "nb_emargement": 1184.0, "nb_procuration": 37.0, "nb_vote_blanc": 18.0, "jadot_yannick": 92.0, "le_pen_marine": 89.0, "nb_exprime": 1163.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 6, "nb_inscrit": 1498.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1185, "quartier_bv": "45", "geo_point_2d": [48.84343145722386, 2.4030086558331214], "melenchon_jean_luc": 349.0, "poutou_philippe": 6.0, "macron_emmanuel": 369.0}, "geometry": {"type": "Point", "coordinates": [2.4030086558331214, 48.84343145722386]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "68456200c65732483f925709536a7de6710c3979", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 24, "zemmour_eric": 42.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "18-45", "geo_shape": {"coordinates": [[[2.332023233759803, 48.897689868577416], [2.332054603177637, 48.897694658847406], [2.332132305105773, 48.897696167778456], [2.332332528779719, 48.897700583799946], [2.332529380090864, 48.897704405126575], [2.332729603818641, 48.89770882138346], [2.332926455190075, 48.89771264205742], [2.333126678994627, 48.897717056751155], [2.333323530426337, 48.89772087677246], [2.333523754284816, 48.89772529170155], [2.333720605788303, 48.89772911017088], [2.333920829712015, 48.8977335244361], [2.334117681264248, 48.897737343152016], [2.334317905253389, 48.897741756753376], [2.334514756877367, 48.89774557391732], [2.334714980931719, 48.897749986854826], [2.334911832604439, 48.897753804265335], [2.335112056735686, 48.89775821563969], [2.33530890846863, 48.89776203239754], [2.335509132653685, 48.89776644400727], [2.335705984446748, 48.89777026011242], [2.335906208708561, 48.89777467015902], [2.336103060561932, 48.89777848561147], [2.336303286241383, 48.897782895901024], [2.336500136802477, 48.89778670979396], [2.336700362547294, 48.89779111941962], [2.336897213157112, 48.89779493355915], [2.337097438978637, 48.89779934162167], [2.337294289648631, 48.89780315510848], [2.337361179784952, 48.89780462779639], [2.337405078431434, 48.897835442128226], [2.33744659377334, 48.89781838150496], [2.337579928188438, 48.89782131701231], [2.337790738928921, 48.89782529323197], [2.337990964942847, 48.89782969980053], [2.338201774384723, 48.89783367528912], [2.338402000454245, 48.8978380820697], [2.338612811325386, 48.897842056842286], [2.338813036109412, 48.897846462028866], [2.339023847045965, 48.897850436077896], [2.339180968832622, 48.89785389318784], [2.339205552252174, 48.89785616471406], [2.339212192180761, 48.89785445217547], [2.339255293870809, 48.897855400445394], [2.339443543033644, 48.89785870518764], [2.339643767951976, 48.897863108985334], [2.339701671053576, 48.89786412611734], [2.339723050783323, 48.897857766199365], [2.3397249256103843, 48.89782759989688], [2.339739078947518, 48.89773626307603], [2.339752793085536, 48.89762126004743], [2.339739494228395, 48.897611564017176], [2.339527704122471, 48.897608508523085], [2.339322135821476, 48.8976056245739], [2.3391103457756293, 48.89760256744247], [2.338904777509796, 48.89759968367613], [2.338692987512629, 48.897596625806614], [2.338487419304806, 48.89759374042464], [2.338275629344905, 48.89759068271632], [2.338070061183685, 48.89758779661792], [2.338032477357319, 48.89758254010441], [2.338023450277842, 48.897586730496926], [2.33781788214631, 48.89758384396567], [2.3376874797059832, 48.89758014792242], [2.337686449495127, 48.89757964220362], [2.337644621735906, 48.897581719427365], [2.33745491598752, 48.89758009361297], [2.3372493479136223, 48.89757720610582], [2.33705964219413, 48.89757557966528], [2.336854075523916, 48.89757269148725], [2.336664369833125, 48.89757106442058], [2.336458801838738, 48.89756817555647], [2.336269096188326, 48.89756654696447], [2.336063528222246, 48.89756365832114], [2.336053332049205, 48.89754891680974], [2.336215202241994, 48.89742057651986], [2.336345768960647, 48.897323607963564], [2.3363489956059302, 48.89731605627229], [2.336308959191544, 48.89716832172038], [2.336272331885973, 48.89703522357024], [2.336235703403865, 48.896902125385154], [2.336195668981619, 48.896754391646354], [2.336184830417788, 48.89674714420425], [2.336003880990351, 48.8967240843513], [2.335833717300604, 48.8967024770873], [2.335663553752102, 48.89668086958106], [2.335482604785901, 48.89665780893911], [2.33531244152922, 48.89663620093315], [2.335131492862208, 48.896613140659], [2.335126233218547, 48.89661315102866], [2.334918334385772, 48.896639160598426], [2.334717559411879, 48.896665597888905], [2.3345167842225862, 48.89669203574145], [2.334308884781945, 48.89671804335214], [2.334108109182874, 48.896744480518265], [2.333900210692468, 48.89677048742583], [2.333699433319822, 48.896796923897945], [2.333491534415854, 48.896822930094835], [2.333476785985838, 48.896818107696035], [2.333391570808744, 48.896705411725115], [2.333309225192458, 48.89659681187115], [2.333224010728663, 48.89648411665747], [2.333141665811909, 48.89637551666636], [2.333056452084639, 48.89626282041142], [2.332974107867411, 48.89615422028315], [2.332962015444673, 48.89613661347736], [2.332940430030519, 48.89613517034521], [2.3327390507866532, 48.896111874816604], [2.332529379354549, 48.89608811005045], [2.332328000465104, 48.89606481472897], [2.332118329410156, 48.89604104924211], [2.331916952262097, 48.89601775233676], [2.331707280220527, 48.895993986121645], [2.331505903426793, 48.89597068942337], [2.3312962317624, 48.89594692248756], [2.331094855346294, 48.89592362419788], [2.330885184058988, 48.89589985654139], [2.330869878678037, 48.895911451407514], [2.330929399612585, 48.896034543087616], [2.330986314085852, 48.89614852173219], [2.331045834191262, 48.89627161421941], [2.331102750542599, 48.89638559279158], [2.331162271205882, 48.89650868429502], [2.331219186707393, 48.89662266277956], [2.331276103821919, 48.89673664123276], [2.33133562528485, 48.896859733509864], [2.331343293314331, 48.89686528016385], [2.331480068379194, 48.89690353731354], [2.3316180718921062, 48.896942061963436], [2.3317548459966853, 48.89698031878896], [2.331892851291908, 48.897018842227915], [2.331901068670692, 48.89702601608174], [2.33192131924562, 48.89713363107537], [2.331951558875463, 48.89728883443128], [2.3319718096569853, 48.89739644939053], [2.332002049601543, 48.897551651797166], [2.332022300589765, 48.89765926672203], [2.332023233759803, 48.897689868577416]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 45, "roussel_fabien": 20.0, "nb_emargement": 1129.0, "nb_procuration": 42.0, "nb_vote_blanc": 9.0, "jadot_yannick": 55.0, "le_pen_marine": 81.0, "nb_exprime": 1114.0, "nb_vote_nul": 6.0, "arr_bv": "18", "arthaud_nathalie": 5, "nb_inscrit": 1611.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1129, "quartier_bv": "69", "geo_point_2d": [48.897092927241566, 2.3341373678176955], "melenchon_jean_luc": 578.0, "poutou_philippe": 7.0, "macron_emmanuel": 256.0}, "geometry": {"type": "Point", "coordinates": [2.3341373678176955, 48.897092927241566]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "32d993fa3222e67512ca24175400b4a351642bdc", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 75, "zemmour_eric": 92.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "12-29", "geo_shape": {"coordinates": [[[2.396732701622734, 48.83401787000693], [2.396759176811739, 48.83400813570025], [2.396939189105319, 48.83399810627227], [2.39712653483428, 48.83398807126725], [2.397306548339769, 48.833978042192356], [2.397493892563724, 48.83396800660487], [2.397504684394352, 48.83397064934006], [2.39762264944682, 48.83404946579877], [2.397740087863654, 48.83412649334276], [2.397775996206475, 48.83414478376298], [2.397803364713755, 48.8341287024079], [2.397865028380454, 48.834082454515205], [2.397986353325314, 48.833992622364946], [2.3981220589792462, 48.833890842434755], [2.3982433816626543, 48.83380101090087], [2.398379086326301, 48.83369922976232], [2.398500409482995, 48.83360939795919], [2.398636113135603, 48.833507617410916], [2.398757434051629, 48.833417784425535], [2.398893136703587, 48.833316003568264], [2.399014458092898, 48.833226170313644], [2.3990279098679332, 48.83322342738601], [2.399194399560886, 48.833250733048], [2.399406516485536, 48.83329219247869], [2.3995730052341653, 48.833319497605196], [2.39978512411225, 48.83336095546939], [2.399951613268556, 48.833388260966515], [2.400163732727548, 48.833429718156765], [2.400330222312129, 48.833457022225915], [2.4003330628745, 48.833457366534674], [2.400536022068452, 48.83346748281168], [2.400738208100303, 48.83348229045703], [2.400941167469913, 48.8334924060463], [2.40114335370308, 48.83350721390578], [2.40134631325867, 48.83351732790804], [2.401548499703582, 48.83353213508236], [2.401751459434803, 48.833542248396896], [2.401953644729284, 48.833557054879215], [2.402011600037993, 48.83356173804698], [2.402015489876763, 48.83355718961837], [2.402073108718716, 48.83349654837385], [2.402206810348401, 48.83340275094929], [2.402240607723051, 48.833407654123164], [2.402278401199173, 48.83338091779733], [2.402412103525054, 48.83328712014039], [2.40255417598905, 48.833186734915344], [2.402687875958419, 48.83309293692707], [2.402829947351833, 48.8329925522564], [2.402963646326964, 48.83289875394358], [2.403095045815092, 48.83282025390377], [2.403228745233567, 48.83272645528702], [2.403360143898484, 48.832647954044525], [2.403362476114468, 48.83264664810761], [2.403472683143837, 48.8325978523059], [2.403604081117255, 48.83251935078646], [2.40371428766164, 48.83247055385733], [2.403839834386878, 48.83243656130689], [2.403842927564793, 48.83243554065492], [2.404041717239805, 48.83238967437054], [2.404167262194614, 48.832355681467156], [2.40417007211988, 48.832355246681715], [2.404359975520475, 48.83233961635511], [2.404588837908195, 48.83232657918762], [2.404778742441029, 48.83231094820251], [2.405007604587789, 48.83229791113269], [2.405008729561821, 48.832297816000114], [2.405198632501733, 48.83228218434114], [2.405371879771073, 48.832262631081804], [2.405561783836147, 48.832246998852504], [2.405735030842085, 48.83222744596585], [2.405924934670083, 48.8322118131595], [2.406098181422974, 48.832192259746215], [2.406100630317507, 48.83219182492149], [2.406274810555569, 48.83215165882098], [2.406449127670914, 48.83210889937428], [2.4066233073632812, 48.83206873276331], [2.406797623915479, 48.8320259728055], [2.40697180306235, 48.83198580568402], [2.40714611768917, 48.83194304520842], [2.407310294362036, 48.83202054604215], [2.402425458542417, 48.82966715858986], [2.402213216394621, 48.82959683576343], [2.401995038421655, 48.82953469410778], [2.401812602682819, 48.82948300701022], [2.401594425663757, 48.8294208646174], [2.401510424169436, 48.82939706429723], [2.401460178897957, 48.829388999133016], [2.401443106828584, 48.829400578503794], [2.401300727776929, 48.82949136311088], [2.4011564759922193, 48.82958432992771], [2.401014095949916, 48.82967511327939], [2.400869843135391, 48.82976808063458], [2.400727462092106, 48.82985886363012], [2.400583209620057, 48.82995183063113], [2.400440827575784, 48.83004261327061], [2.400296572721964, 48.83013557990385], [2.400154189676694, 48.83022636218719], [2.400009933813616, 48.8303193275602], [2.399867549757092, 48.83041011038671], [2.399723292874404, 48.83050307539868], [2.399580907827122, 48.83059385696978], [2.399436649914458, 48.830686822520136], [2.399294263866159, 48.83077760373509], [2.399150006296062, 48.83087056893131], [2.399007619246741, 48.8309613497901], [2.398863359305285, 48.83105431371917], [2.398720971244563, 48.83114509512117], [2.398576710283367, 48.831238058689244], [2.39843432123198, 48.83132883883578], [2.39829005924076, 48.83142180294218], [2.39814766918843, 48.831512582732536], [2.398003406177553, 48.83160554647795], [2.397861016486289, 48.831696325919054], [2.3977167524557492, 48.83178928930346], [2.39757436040121, 48.83188006838153], [2.397430095361395, 48.8319730305056], [2.397287702295396, 48.83206381012684], [2.397143436236009, 48.83215677188991], [2.397001042179336, 48.83224755025563], [2.396856775089763, 48.832340512557], [2.396714380032012, 48.832431290566575], [2.3965701119227463, 48.83252425250692], [2.396427717226152, 48.83261503016719], [2.396283448107605, 48.8327079908472], [2.396141051037365, 48.83279876904374], [2.395996780899117, 48.8328917293627], [2.395854382838093, 48.83298250630374], [2.395710111669713, 48.833075467161], [2.3955677126075843, 48.833166243745836], [2.395423440419484, 48.83325920424207], [2.395281040356343, 48.83334998047072], [2.395136767148517, 48.83344294060592], [2.39499436744642, 48.833533716485256], [2.394908551867776, 48.83358900888376], [2.394902060131402, 48.833601706565716], [2.3949432742923102, 48.833627430072404], [2.395074655881522, 48.833697131738624], [2.395225096513716, 48.833776486284805], [2.395225168274685, 48.833776524421], [2.395343568493177, 48.83383933755233], [2.395468330051017, 48.833904236864676], [2.395586729490312, 48.83396704974121], [2.395711493018926, 48.8340319487994], [2.395730479512392, 48.83403057066235], [2.395863436834836, 48.83392299557094], [2.395998686930095, 48.833817609266525], [2.396131643145461, 48.833710034755825], [2.3962668907941103, 48.83360464722189], [2.396399847275098, 48.83349707239949], [2.396535093818586, 48.83339168544156], [2.396554675826557, 48.83339085789259], [2.396597419052047, 48.83341376543596], [2.396672434733228, 48.83345899973021], [2.396676853233673, 48.833465195265205], [2.3966865338279773, 48.833594207750146], [2.396698662597869, 48.83373687234662], [2.396708343296601, 48.83386588479848], [2.396717792349571, 48.833977013084606], [2.396720473551772, 48.83400854936499], [2.396732701622734, 48.83401787000693]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 29, "roussel_fabien": 23.0, "nb_emargement": 1031.0, "nb_procuration": 49.0, "nb_vote_blanc": 9.0, "jadot_yannick": 75.0, "le_pen_marine": 75.0, "nb_exprime": 1020.0, "nb_vote_nul": 2.0, "arr_bv": "12", "arthaud_nathalie": 3, "nb_inscrit": 1352.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1031, "quartier_bv": "46", "geo_point_2d": [48.83191412100062, 2.400966889234009], "melenchon_jean_luc": 281.0, "poutou_philippe": 10.0, "macron_emmanuel": 335.0}, "geometry": {"type": "Point", "coordinates": [2.400966889234009, 48.83191412100062]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "aa98f1d35232aa4e869f4d08e520a6fc205ece9d", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 54, "zemmour_eric": 66.0, "hidalgo_anne": 35.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "12-24", "geo_shape": {"coordinates": [[[2.400748318286822, 48.83467359228453], [2.400727986093452, 48.83466616689205], [2.400557080913922, 48.8347102013739], [2.400371812649675, 48.83475869280643], [2.400200906865914, 48.83480272677573], [2.400015639303792, 48.8348512176594], [2.399844732915704, 48.83489525111613], [2.399659463341469, 48.83494374053796], [2.399488556349263, 48.83498777348212], [2.399303287466809, 48.83503626325442], [2.3991323798702853, 48.83508029568603], [2.398947108965465, 48.83512878489578], [2.398776200764726, 48.83517281681485], [2.3987118226861073, 48.83518966566194], [2.398671550418691, 48.835194691209246], [2.398666318935779, 48.835204493160965], [2.398545425397685, 48.8352361320222], [2.398363079711298, 48.835283562093785], [2.398177807378699, 48.835332049203835], [2.397995459659875, 48.83537947870406], [2.39781018800673, 48.8354279652474], [2.397627839617988, 48.83547539418314], [2.39744256728199, 48.835523880152934], [2.39726021822313, 48.83557130852416], [2.397074945204283, 48.83561979392038], [2.396892595475513, 48.83566722172712], [2.39670732177382, 48.83571570654975], [2.396524971374943, 48.835763133791986], [2.396339695628185, 48.835811618034136], [2.396157345921631, 48.835859044718745], [2.395972069491932, 48.83590752838733], [2.39578971911538, 48.835954954507436], [2.395604442002949, 48.83600343760242], [2.395422090956407, 48.836050863158036], [2.395236813161043, 48.83609934567941], [2.395054461444512, 48.836146770670496], [2.394869182966322, 48.836195252618296], [2.394732878202895, 48.836230701200996], [2.394718571213671, 48.836243532875045], [2.39473171991001, 48.83626228459215], [2.394872440355182, 48.83629724165624], [2.394978247112668, 48.83632314074331], [2.394988417802874, 48.83632298803216], [2.395170502391087, 48.836271403137324], [2.395352908969726, 48.83621974674398], [2.395534992836691, 48.836168161289535], [2.395717398692843, 48.83611650433558], [2.395899481838355, 48.83606491832157], [2.396081886982434, 48.8360132599077], [2.39626396939617, 48.835961674233374], [2.39644637381775, 48.835910015258946], [2.396628454158317, 48.83585842811884], [2.3968108592092072, 48.83580676949], [2.3969929388284132, 48.83575518179033], [2.397175343156901, 48.835703522600916], [2.3971912128077433, 48.83570605694456], [2.397318237291122, 48.835807477065295], [2.397439936857182, 48.83590711645535], [2.397566962314448, 48.83600853629374], [2.39768866281487, 48.83610817631215], [2.3978156878837, 48.83620959586126], [2.397937389329091, 48.836309235608695], [2.398059091239651, 48.83640887522343], [2.398186119134713, 48.836510293459426], [2.3983078219902563, 48.8366099328032], [2.398434850848853, 48.836711351656184], [2.3984351093235903, 48.83672259949102], [2.398318320068667, 48.836821842271505], [2.398213615285088, 48.83690536101089], [2.3981089101555932, 48.83698888055169], [2.397992118320734, 48.83708812298317], [2.397887412479604, 48.83717164141714], [2.397770621175792, 48.83727088362297], [2.397770220827919, 48.837271219767715], [2.397731145963724, 48.83730559003446], [2.397716985357157, 48.83732560060272], [2.397742928790261, 48.83734150065288], [2.397878202106157, 48.83742124103277], [2.398016471338066, 48.83750196584198], [2.3981517468407523, 48.83758170680724], [2.398290016932342, 48.837662430389365], [2.398425293269948, 48.83774217103386], [2.398563564210835, 48.83782289428818], [2.398698841383467, 48.83790263461187], [2.3988371131631823, 48.837983358437704], [2.398840050480237, 48.83798466648233], [2.398935244206323, 48.83801442448676], [2.399072519414897, 48.83805968927602], [2.399085091392448, 48.83803102591445], [2.399078708821677, 48.8379950607432], [2.398916911434437, 48.83789945235889], [2.39874590337881, 48.8377976889799], [2.398584107225048, 48.837702079229246], [2.398413101828967, 48.83760031536332], [2.398412038019063, 48.837587663179804], [2.398538556216049, 48.83749364242072], [2.398662986243314, 48.83740001753641], [2.398789503532191, 48.83730599649613], [2.398913932650403, 48.837212372234355], [2.39904044903108, 48.83711835091291], [2.399164877260989, 48.83702472547507], [2.399291392733672, 48.8369307038724], [2.399415820054551, 48.83683707905712], [2.399542334619047, 48.836743057173244], [2.399666761051628, 48.83664943118193], [2.399793276070492, 48.83655540902372], [2.399917701594063, 48.83646178365494], [2.4000442143424072, 48.8363677612087], [2.400168638967338, 48.83627413556323], [2.400170350862898, 48.836263890507425], [2.400078611245763, 48.836153107322815], [2.399992166100552, 48.83604955721276], [2.39998957721309, 48.83604733898704], [2.399836647043602, 48.83595180401869], [2.3996691785125153, 48.835852801678804], [2.399666624206502, 48.83584143169471], [2.399761441319736, 48.83573843395351], [2.399876139808663, 48.83561041665022], [2.399970956087802, 48.835507418721676], [2.400085653553865, 48.83537940119106], [2.400180468998718, 48.83527640307514], [2.400295165441927, 48.835148385317176], [2.400389980052604, 48.835045387013935], [2.4004094844231982, 48.83504188193516], [2.400415039137146, 48.835020057027926], [2.400415372791949, 48.83501971244523], [2.400496014880167, 48.834940475258065], [2.400601567298291, 48.834837552175685], [2.400682207459378, 48.83475831484325], [2.40075472374081, 48.834687604097674], [2.400748318286822, 48.83467359228453]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 24, "roussel_fabien": 11.0, "nb_emargement": 1087.0, "nb_procuration": 57.0, "nb_vote_blanc": 16.0, "jadot_yannick": 90.0, "le_pen_marine": 69.0, "nb_exprime": 1070.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1420.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1087, "quartier_bv": "46", "geo_point_2d": [48.8360838739199, 2.3986864194576007], "melenchon_jean_luc": 377.0, "poutou_philippe": 9.0, "macron_emmanuel": 337.0}, "geometry": {"type": "Point", "coordinates": [2.3986864194576007, 48.8360838739199]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e34b096f2f343c119613a4f5bc83c60542e3389d", "fields": {"lassalle_jean": 27.0, "pecresse_valerie": 123, "zemmour_eric": 87.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "15-93", "geo_shape": {"coordinates": [[[2.289483442303964, 48.845050655168535], [2.2894415234360412, 48.845001285490945], [2.289436185608921, 48.84499321794559], [2.289418655719552, 48.84497229888222], [2.28941997041149, 48.84496332291689], [2.289406169069467, 48.84495327056136], [2.289328664558889, 48.84486077617631], [2.289237272673306, 48.84475597143244], [2.289142240438648, 48.84464255871892], [2.289050849310616, 48.84453775381212], [2.289032587943323, 48.844534318528375], [2.288827476202013, 48.844607103807725], [2.288628703454033, 48.844675351347675], [2.2886207232578712, 48.844676296795946], [2.2884574286352652, 48.84466281637846], [2.288296421308927, 48.844649482451096], [2.288135414077258, 48.84463614740759], [2.287972119693694, 48.844622667226496], [2.287811112627848, 48.84460933174621], [2.287647817049649, 48.844595851114036], [2.287638934931062, 48.8445925991759], [2.287542487918056, 48.84451427543612], [2.287444740976036, 48.84443497525001], [2.287348294558965, 48.844356650443295], [2.287250549570582, 48.84427735009547], [2.2872288942982513, 48.84427021590074], [2.2872131642128872, 48.84428257122411], [2.287133503857862, 48.84439725337538], [2.287044191912076, 48.844526759776194], [2.287020047026949, 48.84452759529181], [2.28692143999684, 48.84441700055649], [2.286807924603789, 48.84428980356294], [2.28670931983614, 48.84417920863733], [2.286595805466398, 48.844052012314684], [2.286497200236239, 48.84394141718249], [2.286430220002902, 48.84386636295046], [2.286427049670858, 48.843865732469915], [2.286402655416889, 48.84387504921038], [2.286223112875959, 48.84395025169661], [2.286042020837916, 48.844025928523855], [2.285862477256846, 48.844101130458675], [2.285681384170995, 48.844176806729784], [2.285501838187252, 48.84425200810508], [2.285320745415919, 48.844327683828176], [2.285141198392028, 48.84440288465202], [2.284960104572786, 48.844478559819], [2.284949062483734, 48.84447960723712], [2.284837691193209, 48.84445855014845], [2.284726597995297, 48.844436498118505], [2.284715654635963, 48.84443740130717], [2.284564463200526, 48.84449737003044], [2.284382888389639, 48.84456928658818], [2.284231696188706, 48.84462925488381], [2.28405012045905, 48.84470117092805], [2.28394237194539, 48.84474390704144], [2.283913793287494, 48.84475671385391], [2.283913256041213, 48.84475693907742], [2.283896519258816, 48.844784278595625], [2.2839020994325763, 48.84480518901364], [2.283931395025578, 48.84483908075204], [2.283934526847332, 48.844848764099545], [2.283943524842908, 48.844875503086065], [2.283956095978865, 48.84488119487832], [2.284074443464857, 48.84482972007614], [2.2841431671327, 48.844800212967534], [2.284158389626535, 48.84480037330591], [2.284310952220478, 48.844870561659306], [2.284459739926091, 48.84493921989379], [2.284612304707219, 48.845009406963065], [2.2847610932062192, 48.84507806481422], [2.284909883459695, 48.84514672248424], [2.285062448079692, 48.84521690985752], [2.285064828829877, 48.84521778837666], [2.285223317766856, 48.84526320190546], [2.285405603484886, 48.84531463202968], [2.285406914162857, 48.84533074482066], [2.285219936125169, 48.84539997629971], [2.285040379699266, 48.84546704029555], [2.284853400673344, 48.84553627209254], [2.284673843306198, 48.845603335530114], [2.284668607429149, 48.84561548794397], [2.2847543966626143, 48.84571870044742], [2.284837878471267, 48.845818395152456], [2.284923668361634, 48.84592160841505], [2.285007149456548, 48.846021302975686], [2.2850906322334312, 48.84612099747731], [2.285176423134732, 48.846224209631345], [2.285259906560461, 48.846323903996684], [2.285345698118793, 48.84642711690982], [2.285359731074606, 48.84643167867844], [2.285500540355232, 48.84641727005885], [2.285635132840774, 48.846402279137045], [2.285648662459084, 48.84640608419759], [2.285765950517371, 48.84651973403072], [2.28587566808506, 48.84662741352411], [2.285921818625035, 48.846672516077106], [2.285931994704339, 48.846669961459064], [2.285985223888653, 48.846638623276746], [2.286154074879333, 48.846540643096084], [2.286306141290424, 48.846451111017394], [2.286474992432812, 48.84635313037542], [2.286627057745337, 48.846263597873744], [2.286779121172898, 48.8461740651635], [2.286947970528438, 48.84607608382967], [2.286949821115938, 48.846075181103565], [2.287138008443499, 48.84599604944875], [2.287316290452654, 48.84592356146497], [2.287494570615586, 48.84585107230341], [2.287684865847412, 48.84577133087412], [2.287863146339494, 48.845698841161536], [2.288053440439232, 48.845619100034355], [2.288104607492624, 48.845598294591646], [2.288115684228346, 48.84559681809074], [2.288132971843496, 48.845588365287014], [2.288260082833855, 48.84553668041929], [2.288424848555509, 48.84547245647968], [2.288603125633367, 48.845399965636894], [2.288767890500057, 48.84533574121699], [2.288946167995652, 48.84526324986222], [2.289110932007378, 48.84519902496198], [2.289289207195696, 48.84512653307903], [2.289453970352459, 48.8450623076985], [2.289483007159624, 48.84505098894727], [2.289483442303964, 48.845050655168535]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 93, "roussel_fabien": 15.0, "nb_emargement": 1209.0, "nb_procuration": 70.0, "nb_vote_blanc": 13.0, "jadot_yannick": 89.0, "le_pen_marine": 70.0, "nb_exprime": 1194.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1555.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1209, "quartier_bv": "60", "geo_point_2d": [48.8451911254025, 2.2865464030308043], "melenchon_jean_luc": 271.0, "poutou_philippe": 7.0, "macron_emmanuel": 462.0}, "geometry": {"type": "Point", "coordinates": [2.2865464030308043, 48.8451911254025]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6680bf4792b910ae930038108dc76abc5b141da2", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 50, "zemmour_eric": 47.0, "hidalgo_anne": 42.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "12-58", "geo_shape": {"coordinates": [[[2.377109588606968, 48.84773087708227], [2.377141875786621, 48.84774733970888], [2.377312919163982, 48.8478316929845], [2.377486087059956, 48.84791745555891], [2.377657130190169, 48.84800180832245], [2.377830299228516, 48.848087569486296], [2.37800134347432, 48.84817192174484], [2.378174513633668, 48.84825768329669], [2.378345560357517, 48.84834203505735], [2.378518731659338, 48.84842779519856], [2.378524108957828, 48.84843590563744], [2.37850656362702, 48.84854883018503], [2.378487189266039, 48.84865754253094], [2.378469645153893, 48.84877046615848], [2.378450270633497, 48.84887917847675], [2.378432726366837, 48.848992102076366], [2.3784133516870263, 48.849100814367034], [2.378414857245074, 48.8491060915088], [2.378501752366125, 48.84921379547643], [2.37858439022738, 48.84931547856174], [2.378671286047964, 48.849423182385955], [2.378753924571959, 48.84952486533504], [2.378836564781133, 48.849626548224805], [2.37892346164161, 48.84973425183583], [2.379006101161774, 48.84983593368297], [2.3790929987218, 48.849943637150595], [2.379137075683373, 48.84996433428078], [2.379165614250542, 48.84994925450543], [2.379203072022682, 48.84990191620245], [2.379295574259523, 48.84978579395991], [2.379385218793305, 48.8496724996716], [2.379477720216932, 48.849556377264335], [2.379567363949465, 48.84944308371552], [2.379659864559992, 48.84932696114347], [2.379749507512498, 48.849213666535505], [2.379842007310033, 48.84909754379873], [2.379931649471915, 48.84898424903098], [2.380024148456369, 48.84886812612946], [2.380113789816939, 48.848754832101186], [2.380206287988218, 48.848638709034944], [2.380295927206328, 48.848525413940514], [2.380388425927201, 48.848409290716575], [2.380478064344029, 48.84829599636165], [2.380570562251845, 48.84817987297298], [2.380660199888684, 48.84806657755894], [2.380660711315107, 48.84805897525656], [2.380595373045181, 48.84795481900297], [2.380516773894998, 48.84783066252028], [2.38051974580266, 48.84782654716779], [2.380491249709438, 48.84779244803984], [2.380412651052211, 48.847668291470654], [2.380331067642268, 48.847543861259666], [2.380252469741576, 48.84741970455755], [2.380170887103244, 48.84729527420952], [2.380092291321596, 48.84717111738155], [2.380010708092346, 48.84704668688946], [2.379932113067207, 48.84692252992857], [2.379850530609452, 48.84679809929946], [2.379771936351617, 48.846673941306335], [2.379690356028053, 48.84654951054738], [2.379680013888451, 48.84654420378109], [2.37949407223615, 48.84652445826457], [2.379320968173114, 48.84650472959527], [2.379147862878639, 48.84648500066809], [2.378961921639298, 48.846465254323455], [2.3789498475379602, 48.84646796076623], [2.378799057573318, 48.84657339914942], [2.378649931780372, 48.846678070733205], [2.378499140611735, 48.84678350781916], [2.37835001361519, 48.84688817900937], [2.3781992212211, 48.846993616596734], [2.378050093020943, 48.847098287393386], [2.377899299412111, 48.847203724582876], [2.377750170008332, 48.847308394985916], [2.377749852659921, 48.84730861008026], [2.377722712770191, 48.84730923607263], [2.377721583457108, 48.847318221963455], [2.377689705663625, 48.8473391469595], [2.377570901912125, 48.84741713357879], [2.377422043999051, 48.847513572265186], [2.377271361320716, 48.847612483485925], [2.377122502306085, 48.847708920883385], [2.377109588606968, 48.84773087708227]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 58, "roussel_fabien": 18.0, "nb_emargement": 1147.0, "nb_procuration": 72.0, "nb_vote_blanc": 13.0, "jadot_yannick": 134.0, "le_pen_marine": 48.0, "nb_exprime": 1133.0, "nb_vote_nul": 1.0, "arr_bv": "12", "arthaud_nathalie": 2, "nb_inscrit": 1461.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1147, "quartier_bv": "48", "geo_point_2d": [48.84798550576502, 2.3791026016680523], "melenchon_jean_luc": 372.0, "poutou_philippe": 12.0, "macron_emmanuel": 389.0}, "geometry": {"type": "Point", "coordinates": [2.3791026016680523, 48.84798550576502]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "f582bad1b4a9d4caa3f657a8d71cefeb132a5250", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 38, "zemmour_eric": 68.0, "hidalgo_anne": 38.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "19-10", "geo_shape": {"coordinates": [[[2.37983994096226, 48.87470489708], [2.379813725399563, 48.87469986618727], [2.3796378281438972, 48.87469993322199], [2.379464953467735, 48.87470183771745], [2.379453993234635, 48.874698392210426], [2.379401472864441, 48.87465417667916], [2.379349717204078, 48.87461329981816], [2.37934476059243, 48.87461083782302], [2.379219924852209, 48.87457436552947], [2.379029027756093, 48.87451875344541], [2.378904192468283, 48.874482279920315], [2.3788401350212802, 48.87446361820731], [2.378814935641056, 48.8744593675928], [2.378805417151654, 48.87447622478201], [2.378748877009258, 48.87460894468145], [2.378691796550408, 48.87474247473319], [2.378635255840098, 48.874875193647604], [2.378578174798279, 48.87500872361298], [2.378521633498693, 48.87514144334096], [2.378464551884525, 48.875274972320625], [2.378408010006383, 48.87540769196292], [2.37835092917239, 48.87554122086329], [2.378294386715686, 48.875673940419894], [2.378237303924605, 48.87580747012601], [2.3781807609000643, 48.87594018869762], [2.378123677525876, 48.876073718317365], [2.378067133912017, 48.87620643770252], [2.378010049965454, 48.87633996633653], [2.377996952179092, 48.87634651916978], [2.377810454915105, 48.87634673801524], [2.377623830846338, 48.8763469568103], [2.377437333579219, 48.8763471750745], [2.3772507081439382, 48.87634739328081], [2.377064210873697, 48.876347610963705], [2.376877585435294, 48.87634782858831], [2.376856073470287, 48.87635314588284], [2.376853082906805, 48.87635934380622], [2.376903204187641, 48.87645293656081], [2.376951603974029, 48.876544903325566], [2.376941243904835, 48.87655669091806], [2.376736075402626, 48.876582151410574], [2.376533584010656, 48.876607540058096], [2.376328413734706, 48.87663300074293], [2.3761259219464312, 48.876658388699724], [2.375920751270897, 48.87668384868475], [2.375718259086224, 48.876709235950784], [2.375513088011116, 48.87673469523591], [2.375310595429954, 48.87676008181128], [2.375292638787398, 48.87676553249199], [2.375292353411731, 48.87677761623495], [2.375339727157309, 48.87690387702817], [2.375385288988873, 48.87702605345774], [2.375430852386915, 48.8771482307628], [2.375478225441842, 48.87727449145165], [2.375523789275236, 48.87739666869383], [2.375571164155631, 48.87752292842528], [2.375584892955009, 48.8775297549177], [2.375765770320249, 48.87752542814499], [2.375945368681244, 48.877520762578236], [2.376126245995976, 48.87751643436154], [2.376305844282994, 48.87751176915325], [2.376486721536534, 48.87750744039192], [2.376666319771009, 48.87750277374348], [2.376847196952586, 48.877498445336755], [2.377026795123641, 48.877493778147524], [2.377207672254871, 48.87748944829682], [2.377387270362596, 48.87748478056673], [2.377397716435408, 48.87748759044826], [2.377546771621312, 48.877591620549595], [2.377690287088838, 48.87769192630123], [2.377833803109159, 48.8777922318717], [2.377982860027226, 48.87789626230056], [2.377986503703874, 48.87790341742804], [2.377966031920685, 48.87802686031145], [2.377945974281007, 48.87814838435833], [2.377925502294727, 48.87827182810664], [2.3779054444768812, 48.87839335122048], [2.377906164235194, 48.87839736058139], [2.377961343775538, 48.878498837339166], [2.378020357100678, 48.87860241952798], [2.378075537080775, 48.87870389621424], [2.378134549501933, 48.87880747832041], [2.378133270495975, 48.87882769312796], [2.3781609419647642, 48.87883268335849], [2.378305782527467, 48.878841558371924], [2.378467562445989, 48.87885919520009], [2.378470094435039, 48.878859313567155], [2.378653293075299, 48.87885747212151], [2.378852696892626, 48.878854497683335], [2.379035895502414, 48.87885265565219], [2.379235299279445, 48.878849680576714], [2.379418499222203, 48.87884783796718], [2.379617902948217, 48.87884486315367], [2.379801101497042, 48.878843019951574], [2.380000505193457, 48.87884004360155], [2.380183703711785, 48.87883819981391], [2.380315278465591, 48.87883623512747], [2.380322790995355, 48.87883363358004], [2.380322933854526, 48.878807875694505], [2.380374124358331, 48.8786800660901], [2.380424142544268, 48.8785548467509], [2.380475332561703, 48.878427036174564], [2.380525350261405, 48.8783018167643], [2.380575369083924, 48.87817659732598], [2.38062655834778, 48.878048787540436], [2.38067657532054, 48.87792356802398], [2.380727764098039, 48.87779575726653], [2.380740872640661, 48.87778176492985], [2.380736438690221, 48.877775220942], [2.380787627164323, 48.87764741104103], [2.380833752929954, 48.87753209181621], [2.380879877117326, 48.8774167734538], [2.38093106489773, 48.877288962550615], [2.380977190017733, 48.877173644132334], [2.381028377320383, 48.87704583315937], [2.381074500646212, 48.87693051467107], [2.381125687460433, 48.87680270452761], [2.381184927227092, 48.87665636386741], [2.381236113500904, 48.87652855364495], [2.381295351282096, 48.876382212886675], [2.381346537015511, 48.876254402585225], [2.381347274639077, 48.87625302502247], [2.381365967406722, 48.87622547704144], [2.381366250209984, 48.87622508459525], [2.3814468874526, 48.87612067507878], [2.381523434062169, 48.876021088171555], [2.381604070673861, 48.87591667852991], [2.381680616693762, 48.875817090604485], [2.381761252663863, 48.87571268173693], [2.381837798083422, 48.87561309369254], [2.381858180161875, 48.87560170007044], [2.381850028092152, 48.87558700873922], [2.381844092350385, 48.87558316671451], [2.381761836381607, 48.87555588064697], [2.381705827229468, 48.87553748150073], [2.381690919476782, 48.87553863748639], [2.381555896574059, 48.87561365304742], [2.38142331271866, 48.87568703887452], [2.381288290398384, 48.87576205502995], [2.381155704424799, 48.8758354405438], [2.38115136722641, 48.875837057605956], [2.380995900933176, 48.87587225589493], [2.380772665149648, 48.875923153837064], [2.3806171983435043, 48.875958351631446], [2.380393961810195, 48.8760092497627], [2.380238494491142, 48.87604444706255], [2.380221253080826, 48.87603901126481], [2.380145173526771, 48.87590083415557], [2.380070926489586, 48.87576646525136], [2.379994847721841, 48.87562828891174], [2.379920601460979, 48.8754939198811], [2.379844523500838, 48.875355742512504], [2.379770278016294, 48.87522137335543], [2.379769511272954, 48.87521752293331], [2.379781402702653, 48.875130414841905], [2.37979788331294, 48.87500575276124], [2.379809774646942, 48.874918644650286], [2.379826253748266, 48.87479398343402], [2.379842412349696, 48.87470825630506], [2.37983994096226, 48.87470489708]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 10, "roussel_fabien": 29.0, "nb_emargement": 1317.0, "nb_procuration": 95.0, "nb_vote_blanc": 11.0, "jadot_yannick": 127.0, "le_pen_marine": 40.0, "nb_exprime": 1303.0, "nb_vote_nul": 3.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1665.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1317, "quartier_bv": "76", "geo_point_2d": [48.8769410383036, 2.3789224911772417], "melenchon_jean_luc": 569.0, "poutou_philippe": 9.0, "macron_emmanuel": 366.0}, "geometry": {"type": "Point", "coordinates": [2.3789224911772417, 48.8769410383036]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e397ca3161d9f16ba13524d3079eead4e4fbd2d2", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 166, "zemmour_eric": 181.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "16-29", "geo_shape": {"coordinates": [[[2.267269587350131, 48.84985811026394], [2.267304572181839, 48.849858507983775], [2.267462694906059, 48.849836833795095], [2.267621216942297, 48.84981524548307], [2.267779340766317, 48.84979357088344], [2.267937862552305, 48.849771981251756], [2.268095984750674, 48.84975030622446], [2.26825450626134, 48.84972871707172], [2.268265886677993, 48.849730562919746], [2.268327304440814, 48.849760503356364], [2.268423540141617, 48.84981243838309], [2.268424815187319, 48.849825578707], [2.268255874167997, 48.84994350548952], [2.268091317609502, 48.85005833984969], [2.2680877514358873, 48.85006589338416], [2.268115069372465, 48.85018253722611], [2.268141844508874, 48.85029494981554], [2.2681686183981142, 48.85040736237928], [2.268195936682181, 48.85052400706629], [2.268222710805793, 48.85063641959481], [2.268250030706244, 48.85075306335451], [2.268276805064236, 48.85086547584774], [2.26830412383063, 48.850982120462064], [2.268309873188337, 48.850988157977405], [2.268467183542857, 48.85105951130836], [2.268625364508291, 48.85113227005667], [2.2687826771051762, 48.851203622072646], [2.2689408589485662, 48.85127638039443], [2.269098171049776, 48.851347731978045], [2.269256353758612, 48.85142049077262], [2.269413668089473, 48.851491841940486], [2.269571851688883, 48.851564599409265], [2.269729165524168, 48.85163595014476], [2.269887350001436, 48.851708707187015], [2.270044666053886, 48.851780058406085], [2.2702028514091213, 48.851852815021786], [2.270207849261189, 48.85186329610565], [2.27014367427642, 48.85197848361085], [2.270076253258499, 48.85209130033426], [2.270012077702142, 48.85220648774526], [2.269944657479547, 48.85231930348043], [2.269880479988756, 48.852434490788916], [2.269813059173651, 48.85254730732609], [2.269812285635519, 48.85256409280639], [2.269836330343543, 48.85257760047083], [2.269985535233118, 48.85264491802229], [2.270126899714373, 48.85271167761673], [2.270268264557849, 48.85277843704015], [2.270417471943241, 48.85284575404918], [2.270558837522721, 48.85291251312119], [2.270708044304549, 48.852979829751455], [2.270849410620035, 48.85304658847218], [2.270998618161255, 48.853113904732], [2.271012337189204, 48.85311454682017], [2.2712006137292953, 48.8530532672333], [2.271375095678283, 48.85299486764546], [2.271549578599031, 48.852936467808405], [2.271737852501137, 48.85287518735805], [2.271912334614484, 48.852816786985734], [2.272100607645101, 48.852755506857285], [2.272107989134565, 48.852749043977084], [2.272141774848386, 48.85262595323219], [2.272177994096037, 48.85250249593833], [2.272211778122003, 48.85237940513808], [2.272247997044995, 48.85225594689635], [2.272281782095829, 48.85213285695663], [2.272318000681602, 48.85200939866634], [2.272351784057161, 48.851886307771984], [2.272388002293166, 48.85176285033246], [2.272421786706149, 48.85163975939932], [2.272458004617603, 48.85151630101193], [2.272491787330118, 48.8513932109228], [2.272528004904369, 48.85126975248684], [2.272542000610937, 48.85125639929336], [2.272529926341788, 48.85123813265936], [2.272409261309113, 48.85118501822054], [2.272253088802533, 48.851118434669615], [2.272092760042817, 48.85104785942942], [2.271936586989101, 48.850981275448916], [2.271776260430069, 48.85091070068349], [2.271620088191818, 48.85084411628168], [2.271459761133295, 48.85077354017587], [2.271303591073209, 48.85070695536104], [2.271301287046603, 48.85069308482787], [2.27136146906654, 48.85065284056505], [2.271399136864491, 48.850629326742805], [2.271413926259588, 48.85061399360973], [2.271398630835178, 48.85059427004874], [2.271237900676004, 48.85053349423743], [2.271074988269064, 48.85047189907938], [2.270914258864787, 48.850411122826664], [2.270751345847684, 48.85034952811217], [2.270590618560987, 48.850288751426284], [2.27042770632168, 48.85022715536504], [2.270427648029374, 48.850227133424866], [2.270253998905832, 48.85016222584324], [2.270091087447367, 48.85010063021592], [2.269917439164573, 48.850035722138465], [2.269754529874575, 48.84997412515495], [2.269580881057251, 48.84990921747259], [2.269417972560548, 48.84984762002386], [2.26925506444897, 48.849786022349875], [2.269081416880561, 48.849721113931686], [2.268918509562277, 48.84965951579248], [2.2687448642099, 48.84959460598753], [2.268738971435063, 48.84959345475848], [2.268525810867407, 48.8495849316358], [2.268291772869007, 48.849573206424274], [2.268286477623894, 48.84957220452435], [2.268112342313453, 48.8495102362145], [2.267928591183236, 48.84944666279977], [2.267754455355214, 48.84938469395374], [2.267570705104268, 48.849321119982186], [2.267396571483991, 48.849259150616625], [2.267212822112316, 48.84919557608833], [2.267196513021371, 48.849179952247724], [2.267164939580904, 48.84917994412852], [2.26698118940844, 48.8491163692316], [2.266818912722564, 48.849056554580116], [2.266766355811822, 48.84905702843451], [2.266729329718926, 48.8490740918208], [2.266820217185875, 48.84920772706345], [2.266904892619464, 48.84933000743864], [2.266995780982857, 48.849463642517215], [2.267080457256883, 48.84958592184073], [2.267171346516936, 48.8497195567552], [2.267256022243441, 48.849841836817326], [2.267269587350131, 48.84985811026394]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 29, "roussel_fabien": 3.0, "nb_emargement": 1062.0, "nb_procuration": 80.0, "nb_vote_blanc": 11.0, "jadot_yannick": 38.0, "le_pen_marine": 49.0, "nb_exprime": 1048.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 3, "nb_inscrit": 1330.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1064, "quartier_bv": "61", "geo_point_2d": [48.85119171144433, 2.270206216779768], "melenchon_jean_luc": 86.0, "poutou_philippe": 3.0, "macron_emmanuel": 481.0}, "geometry": {"type": "Point", "coordinates": [2.270206216779768, 48.85119171144433]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b764dda7fd5fa1c804cd1b48be90ceede05e3f85", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 30, "zemmour_eric": 55.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "20-26", "geo_shape": {"coordinates": [[[2.406332584119689, 48.862342841391815], [2.406294484625949, 48.86236379141434], [2.406094878021105, 48.862438820562296], [2.405896394653068, 48.8625123593461], [2.405895475065253, 48.8625126749466], [2.40574175188159, 48.86256064884444], [2.405591608650818, 48.86260688121312], [2.40543788491964, 48.862654853817304], [2.405287741147623, 48.86270108580083], [2.405134015495748, 48.862749058003836], [2.404983871182587, 48.8627952896022], [2.4049817038747, 48.86279612510694], [2.404865177565363, 48.86285424930789], [2.404673543030053, 48.86294473312335], [2.404671042027758, 48.8629462603546], [2.404554515046299, 48.863004383345945], [2.404447949227838, 48.863088028733195], [2.404317035537166, 48.863194673996624], [2.404210468958463, 48.86327831825877], [2.40407955430339, 48.863384963244094], [2.403972986943874, 48.863468608179716], [2.403970573971896, 48.86347077706434], [2.403971631811812, 48.863491382636276], [2.404017368997069, 48.86361045291098], [2.404063495699232, 48.86373040464916], [2.404109233304292, 48.863849474863066], [2.404155361802846, 48.86396942564746], [2.404201099817432, 48.86408849669983], [2.404247227376179, 48.86420844741616], [2.404292967183833, 48.864327517515235], [2.404339095155455, 48.864447469069525], [2.404338131900642, 48.864453626553896], [2.404254476268965, 48.864566660117184], [2.404174086627631, 48.86466632049849], [2.404173879083366, 48.86466658926724], [2.404086073495935, 48.864784854179184], [2.404002418148564, 48.864897887539264], [2.403918761064796, 48.86501092172185], [2.403830955680943, 48.86512918641664], [2.403747297864009, 48.86524221955644], [2.403659491701062, 48.86536048410073], [2.403575833140665, 48.865473517097065], [2.403488026198615, 48.865591781490856], [2.403404366884446, 48.865704815243035], [2.403336371706069, 48.865796394142286], [2.403316559163385, 48.86582307948627], [2.403323458593067, 48.86583648885396], [2.403359184682219, 48.86584099098032], [2.403401569700298, 48.86593037353141], [2.403443797112105, 48.86601960418506], [2.4034861824206812, 48.86610898669177], [2.403528408769377, 48.86619821639509], [2.40355015758306, 48.86620244015614], [2.403709612931478, 48.86611461564726], [2.403863267634009, 48.86603011026812], [2.404022723290198, 48.86594228533521], [2.4041763769766282, 48.865857779540924], [2.404335831577476, 48.86576995417721], [2.4044894842476072, 48.86568544796783], [2.404643137792726, 48.865600940662176], [2.404802589447161, 48.86551311554872], [2.404806746248914, 48.865509131463256], [2.404856248266155, 48.86541400449947], [2.404910136335388, 48.865310439230925], [2.404959637975037, 48.86521531220732], [2.405013524270113, 48.865111746866845], [2.405024907974186, 48.86510827984656], [2.405029613624037, 48.86508965453485], [2.405032879560197, 48.865086207413945], [2.405176408273329, 48.86499174463089], [2.405318427627587, 48.864899894846296], [2.405461955309643, 48.86480543170489], [2.405603973642289, 48.86471358246529], [2.40560566929032, 48.864712634888456], [2.4057748690598, 48.864632762940765], [2.405942635233064, 48.86455352576347], [2.406111833969162, 48.86447365332792], [2.406279597764706, 48.86439441476086], [2.406448796830394, 48.86431454184423], [2.40661655960114, 48.86423530279343], [2.406785757633445, 48.864155429388966], [2.406953519369059, 48.86407619075377], [2.407122716367986, 48.86399631686145], [2.407290477088948, 48.863917076843244], [2.407459673054499, 48.8638372024631], [2.407627432750471, 48.863757961961234], [2.407686407958135, 48.86373168733809], [2.407683010781575, 48.863724880504655], [2.407650718537803, 48.863691927129636], [2.407544150938704, 48.863579591817874], [2.407432111891221, 48.863465255254056], [2.407325545227058, 48.86335291972466], [2.407213508509856, 48.86323858293952], [2.407106942780819, 48.86312624719249], [2.406994905667797, 48.86301191017255], [2.406888340873675, 48.86289957420789], [2.406776304727869, 48.86278523695992], [2.406669740868854, 48.86267290077764], [2.406557705690252, 48.86255856330167], [2.406451142755886, 48.86244622780103], [2.406368618064363, 48.862362006138724], [2.406332584119689, 48.862342841391815]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 26, "roussel_fabien": 31.0, "nb_emargement": 1036.0, "nb_procuration": 66.0, "nb_vote_blanc": 12.0, "jadot_yannick": 80.0, "le_pen_marine": 61.0, "nb_exprime": 1018.0, "nb_vote_nul": 6.0, "arr_bv": "20", "arthaud_nathalie": 3, "nb_inscrit": 1387.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1036, "quartier_bv": "78", "geo_point_2d": [48.86399173851161, 2.4053737979633585], "melenchon_jean_luc": 502.0, "poutou_philippe": 7.0, "macron_emmanuel": 216.0}, "geometry": {"type": "Point", "coordinates": [2.4053737979633585, 48.86399173851161]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "a5030f2273eaf730492415d66680b049a192cc1c", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 121, "zemmour_eric": 271.0, "hidalgo_anne": 4.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "16-58", "geo_shape": {"coordinates": [[[2.284517905923893, 48.87269535914887], [2.284547182789705, 48.872684241069784], [2.284559231473264, 48.8726391309028], [2.284559652753023, 48.87263883303959], [2.284574086711619, 48.872621160847494], [2.284606149985478, 48.872496900240314], [2.284627237508841, 48.872417948668684], [2.284660373471933, 48.87229388779565], [2.284692436338493, 48.87216962712855], [2.284725572000678, 48.87204556531032], [2.2847576345465, 48.87192130549709], [2.284790769895433, 48.871797243632926], [2.284822830781973, 48.87167298286686], [2.2848559658053142, 48.871548921856], [2.284888027746724, 48.87142466105271], [2.284921162456821, 48.871300599995934], [2.284953224089855, 48.8711763391472], [2.28498635849906, 48.87105227714523], [2.285018419811379, 48.8709280171504], [2.285051553907348, 48.870803955102474], [2.285083614923645, 48.87067969416297], [2.285116748694041, 48.870555632968404], [2.285148809402076, 48.87043137198351], [2.28516750352785, 48.87035891445607], [2.28520063690675, 48.87023485230299], [2.2852165767119272, 48.87021954348262], [2.285126060933419, 48.87017710054784], [2.284978767339096, 48.87009459243189], [2.2848292184327432, 48.87001036189108], [2.284681925780077, 48.86992785339743], [2.284532377832414, 48.86984362247306], [2.284519204412264, 48.86984193299735], [2.284347601389087, 48.86987977777506], [2.284174291573854, 48.8699177991637], [2.284002689413369, 48.869955643452506], [2.283829379093973, 48.86999366433907], [2.283657775082149, 48.870031507223395], [2.283484464258594, 48.87006952760796], [2.283468125876981, 48.87006521546123], [2.28339176039862, 48.869963089798034], [2.283288066730713, 48.86983441089447], [2.283211701956099, 48.86973228419579], [2.283108010555628, 48.86960360511751], [2.283031646472278, 48.86950147828261], [2.2829279559760263, 48.8693727990215], [2.282851591208572, 48.86927067294154], [2.282832570225707, 48.86926685456008], [2.282693797592369, 48.869319494600404], [2.282553037113079, 48.86936707992136], [2.2824142639426492, 48.86941971873356], [2.282273502937282, 48.86946730372148], [2.282255006520255, 48.86946320779819], [2.282172634255073, 48.86935054897438], [2.282091146276188, 48.86924072023575], [2.28200877335413, 48.86912806126838], [2.2819272860687683, 48.86901823239606], [2.281844915216086, 48.868905573301404], [2.281763428636535, 48.86879574339617], [2.281681057126872, 48.86868308415793], [2.281599571228532, 48.8685732550183], [2.281517201788216, 48.86846059565279], [2.281435716583371, 48.86835076637953], [2.2813533464860702, 48.86823810687041], [2.281271861974613, 48.868128277463526], [2.2811903791700052, 48.868018447998395], [2.281108010128756, 48.86790578828659], [2.281105929061456, 48.867871962062715], [2.2810866978906432, 48.867859910390976], [2.281077840372629, 48.867858865205555], [2.281036398651776, 48.867900103244324], [2.280947368824806, 48.86799665403432], [2.280854631631514, 48.868098762036546], [2.280765601128024, 48.868195312674], [2.2806728632247832, 48.86829742051704], [2.280583832032549, 48.86839397190123], [2.280491092056186, 48.86849607957692], [2.280493505591823, 48.86850728917685], [2.280623644097941, 48.86858707919217], [2.280755774100224, 48.86866681537279], [2.2808859133942843, 48.868746605990744], [2.281018044214966, 48.86882634097107], [2.281020613812006, 48.86883751282172], [2.280916427175842, 48.8689551799985], [2.280815716755696, 48.869070155528554], [2.280711529191397, 48.869187822502234], [2.280610817856805, 48.86930279873497], [2.280506629376779, 48.86942046460624], [2.280405915776956, 48.86953544063418], [2.280301726356245, 48.869653107201614], [2.280201013217557, 48.86976808304116], [2.280096822881207, 48.86988574850618], [2.279996108840455, 48.870000724149094], [2.2798953929918993, 48.870115699687105], [2.279791201257462, 48.87023336574839], [2.279690485869928, 48.870348341097994], [2.279586293219731, 48.87046600605684], [2.27948557556699, 48.870580981201606], [2.279381383339366, 48.87069864686481], [2.279345137590842, 48.87071643896461], [2.279362044572557, 48.87073522019101], [2.279354437132162, 48.87088166269746], [2.27934584453188, 48.87102609370991], [2.279338238366693, 48.87117253618499], [2.279329645673513, 48.87131696715826], [2.279322039420209, 48.87146340959374], [2.279313446634129, 48.871607840527815], [2.279318465923844, 48.87161516894257], [2.279462592503415, 48.8716925161175], [2.279602258827425, 48.87176906282946], [2.279746386254218, 48.87184640965194], [2.279886053407914, 48.87192295602212], [2.280030181694365, 48.87200030159284], [2.280169849677851, 48.872076847621216], [2.280309519434989, 48.872153393489505], [2.280453648975437, 48.872230739433455], [2.280467257466804, 48.87223699164728], [2.280482887438951, 48.87223507916116], [2.280681397676767, 48.87225831431332], [2.280879864130249, 48.87228117834139], [2.28107837472093, 48.87230441283425], [2.281276841524305, 48.87232727620314], [2.281475352467639, 48.87235051003669], [2.281673819620899, 48.87237337274642], [2.281872330917079, 48.87239660592065], [2.282070798420214, 48.87241946797128], [2.282269310069028, 48.87244270048624], [2.282467776558864, 48.872465561869504], [2.282666288560404, 48.87248879372513], [2.282864756763262, 48.87251165445746], [2.28306326911752, 48.872534885653764], [2.283261737670328, 48.872557745726915], [2.283460250377295, 48.87258097626392], [2.283658719279839, 48.87260383567796], [2.283857232339505, 48.872627065555626], [2.2840557015919822, 48.87264992431046], [2.284254215004338, 48.87267315352881], [2.28445268324326, 48.87269601161636], [2.284517905923893, 48.87269535914887]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 58, "roussel_fabien": 11.0, "nb_emargement": 1203.0, "nb_procuration": 61.0, "nb_vote_blanc": 14.0, "jadot_yannick": 26.0, "le_pen_marine": 58.0, "nb_exprime": 1188.0, "nb_vote_nul": 4.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1601.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1206, "quartier_bv": "63", "geo_point_2d": [48.87082703503082, 2.2821936279277932], "melenchon_jean_luc": 67.0, "poutou_philippe": 1.0, "macron_emmanuel": 601.0}, "geometry": {"type": "Point", "coordinates": [2.2821936279277932, 48.87082703503082]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "be38902ce7489bd60e1e4d8426f1d85d9122ecb2", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 101, "zemmour_eric": 116.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "15-9", "geo_shape": {"coordinates": [[[2.290090817275724, 48.84804698731359], [2.290093703379334, 48.848037893879685], [2.290099943233908, 48.84803269390706], [2.290270547522038, 48.84796772872645], [2.290449559865355, 48.8478994207653], [2.290620163281456, 48.84783445507841], [2.290799174708715, 48.847766146586004], [2.290969777252585, 48.84770118039279], [2.291148786401166, 48.84763287136101], [2.291319388073007, 48.84756790466153], [2.291498397668153, 48.84749959510658], [2.291668998467763, 48.84743462790082], [2.29184800714685, 48.84736631781456], [2.29201860707443, 48.84730135010252], [2.292197613462636, 48.847233040376295], [2.2923682125302, 48.84716807125865], [2.292493094924954, 48.84712041502899], [2.292495177733082, 48.84711605373572], [2.292480337022123, 48.847101272151306], [2.292387271766188, 48.846996014104256], [2.292289528624591, 48.84688745641161], [2.292279012093255, 48.84688309163968], [2.2920790584109643, 48.84687145172623], [2.291875585706268, 48.84685985990035], [2.291675632215545, 48.84684821841311], [2.2914721596912973, 48.84683662590094], [2.291272206367611, 48.8468249846385], [2.291068735398649, 48.84681339054872], [2.291056638692796, 48.84680238348743], [2.291111003149215, 48.84664889979841], [2.2911630241321292, 48.84649807329563], [2.29115501797297, 48.84648778658563], [2.290970639534012, 48.84643662274083], [2.290787801598306, 48.84638583558005], [2.290603423892695, 48.846334670265385], [2.290420586672531, 48.846283882538806], [2.290236209675993, 48.84623271755283], [2.290053373171372, 48.84618192926036], [2.289868996908301, 48.8461307628045], [2.289686161119231, 48.84607997394621], [2.289501785565025, 48.846028807819074], [2.289318951866344, 48.845978017503775], [2.28913457567089, 48.84592685079794], [2.2889517426755, 48.845876060816074], [2.288767367213445, 48.845824892640366], [2.288584534933613, 48.84577410209271], [2.288401701647577, 48.84572331125526], [2.288217328616348, 48.84567214313224], [2.288214259746729, 48.845670958395544], [2.288188498411221, 48.84565761501605], [2.288147781023132, 48.84563675837127], [2.288115684228346, 48.84559681809074], [2.288104607492624, 48.845598294591646], [2.288053440439232, 48.845619100034355], [2.287863146339494, 48.845698841161536], [2.287684865847412, 48.84577133087412], [2.287494570615586, 48.84585107230341], [2.287316290452654, 48.84592356146497], [2.287138008443499, 48.84599604944875], [2.286949821115938, 48.846075181103565], [2.286947970528438, 48.84607608382967], [2.286779121172898, 48.8461740651635], [2.286627057745337, 48.846263597873744], [2.286474992432812, 48.84635313037542], [2.286306141290424, 48.846451111017394], [2.286154074879333, 48.846540643096084], [2.285985223888653, 48.846638623276746], [2.285931994704339, 48.846669961459064], [2.285921818625035, 48.846672516077106], [2.285906687754488, 48.84668124224669], [2.285807848029522, 48.8467394347912], [2.285703679611552, 48.84680282434927], [2.285688528485501, 48.84681371874025], [2.28574149349437, 48.84685387416013], [2.285842806483664, 48.846988314454485], [2.285942899518606, 48.84712102777589], [2.286044213546931, 48.84725546786745], [2.286144307607778, 48.847388180988546], [2.28614512196159, 48.84738911579109], [2.286220624290209, 48.84746488629504], [2.286300344220167, 48.8475456455], [2.286375847001249, 48.84762141589537], [2.286455567398882, 48.84770217588481], [2.28645648650562, 48.84771347469043], [2.286471939451439, 48.847719757180194], [2.286472198714165, 48.8477200303346], [2.286541122218104, 48.84779564625345], [2.286609261102954, 48.84787244910593], [2.28667818500735, 48.847948064935466], [2.286746324281178, 48.84802486859867], [2.286765163113915, 48.8480280081684], [2.286929104324449, 48.84796221116855], [2.287092674262432, 48.84789632898883], [2.287256613282595, 48.847830531524345], [2.287420182380938, 48.84776464978838], [2.287584121935984, 48.84769885187545], [2.2877476888566672, 48.8476329687765], [2.287911627583968, 48.847567170407096], [2.288075193665029, 48.8475012877519], [2.2882391315645902, 48.847435488925925], [2.288402698193215, 48.84736960492404], [2.288566633902421, 48.847303805633395], [2.288730199691433, 48.8472379220753], [2.28889413593551, 48.84717212233628], [2.289057699546853, 48.84710623741524], [2.289076692859457, 48.84710952593793], [2.289182530913977, 48.84723447312861], [2.289275452013989, 48.84734306587147], [2.289276153460823, 48.84735088461936], [2.289226673634933, 48.8474300315623], [2.289176733131983, 48.847510871944834], [2.289178766728109, 48.84751993073664], [2.289315838755633, 48.84763151259865], [2.289451526884133, 48.847741493295445], [2.289588600090691, 48.84785307392347], [2.289724288008974, 48.84796305428094], [2.289727697752311, 48.84796503693654], [2.289871408868383, 48.84802279459652], [2.29004194353461, 48.84809249202597], [2.290062251400669, 48.84808724332886], [2.290069016489799, 48.8480710976156], [2.290077006568893, 48.84805355796122], [2.290090817275724, 48.84804698731359]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 9, "roussel_fabien": 20.0, "nb_emargement": 1239.0, "nb_procuration": 71.0, "nb_vote_blanc": 3.0, "jadot_yannick": 89.0, "le_pen_marine": 71.0, "nb_exprime": 1226.0, "nb_vote_nul": 9.0, "arr_bv": "15", "arthaud_nathalie": 1, "nb_inscrit": 1543.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1238, "quartier_bv": "59", "geo_point_2d": [48.84688948024053, 2.288789222671125], "melenchon_jean_luc": 209.0, "poutou_philippe": 4.0, "macron_emmanuel": 558.0}, "geometry": {"type": "Point", "coordinates": [2.288789222671125, 48.84688948024053]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "fb4d260d489ebccaf692ca69756797e9e1656843", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 119, "zemmour_eric": 157.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "8-12", "geo_shape": {"coordinates": [[[2.317465656560742, 48.87420128655666], [2.3174888136501552, 48.87419984564685], [2.317599063769454, 48.874218858517146], [2.317802875394201, 48.874253618669044], [2.317994729027789, 48.87428670412075], [2.318198541182062, 48.874321463596814], [2.318390396680198, 48.87435454842011], [2.318594208000768, 48.87438930721265], [2.318786064000025, 48.87442239139973], [2.318989875850102, 48.874457149516466], [2.319181732350673, 48.8744902330674], [2.319385546093475, 48.87452499051612], [2.319577401731925, 48.874558073423124], [2.319582297425955, 48.87455966160535], [2.319737270563662, 48.87464764343794], [2.319903644146542, 48.874732562827695], [2.319939674244967, 48.87475475727516], [2.319999384286413, 48.87471334014675], [2.320083176428575, 48.87459565637982], [2.320170446659446, 48.87447449296594], [2.3202542380191318, 48.87435680995307], [2.3203415088151083, 48.874235646395995], [2.320425299404064, 48.87411796323794], [2.320512568038717, 48.873996799522196], [2.320596357856855, 48.873879116218895], [2.320683625705143, 48.87375795145297], [2.320767414752674, 48.87364026800448], [2.32085468315435, 48.873519103994646], [2.320938471431182, 48.87340142040094], [2.321025737671582, 48.873280256232455], [2.321109525177726, 48.873162572493584], [2.321196790619963, 48.873041408174146], [2.321280577367147, 48.872923723390834], [2.321367842011433, 48.87280255892048], [2.321451627976232, 48.872684874891235], [2.321538893185648, 48.87256371027771], [2.321622678379786, 48.87244602610329], [2.321709941427994, 48.87232486133116], [2.321793725863193, 48.87220717611225], [2.321880988113276, 48.8720860111892], [2.321964771766126, 48.871968326724414], [2.322052034581557, 48.87184716165821], [2.3221065516423502, 48.871770583000625], [2.322102130120342, 48.87176274447891], [2.322073292463668, 48.871755446678236], [2.321879240360143, 48.87177205821645], [2.321685312863969, 48.87178882753151], [2.321491259149104, 48.8718054384325], [2.321297332755391, 48.87182220802547], [2.321103278792446, 48.871838818296986], [2.320909350798025, 48.87185558635388], [2.320715297950268, 48.87187219600367], [2.320521369706586, 48.87188896343148], [2.320327316599038, 48.8719055733511], [2.320133388106302, 48.871922340149794], [2.319939333399177, 48.87193894853288], [2.319745406020458, 48.87195571471028], [2.319551351053545, 48.87197232336317], [2.31935742206253, 48.87198908890373], [2.319163368222591, 48.87200569603563], [2.318969438982454, 48.87202246094713], [2.318775383519469, 48.87203906834104], [2.318581455393372, 48.872055832631226], [2.318567820691953, 48.872051346437345], [2.318481382886235, 48.871950637959614], [2.318396956371331, 48.87185201024738], [2.318310520578232, 48.871751302535145], [2.318226093346786, 48.871652674676795], [2.318139658226476, 48.87155196592369], [2.318055233004782, 48.87145333793486], [2.317968797170669, 48.87135262993175], [2.317884372595674, 48.87125400180456], [2.317877239067463, 48.87124999055513], [2.317692033517662, 48.87120471339546], [2.317514497043277, 48.87116400696427], [2.317329292126185, 48.8711187283405], [2.317151756228337, 48.871078021368156], [2.316974220607973, 48.871037314130966], [2.316789016599283, 48.87099203556535], [2.316778828806935, 48.870992224733534], [2.316580611484375, 48.87104925455546], [2.316379857212228, 48.87110748367227], [2.316181639014159, 48.87116451282751], [2.315980883851807, 48.871222741269136], [2.315782663403382, 48.871279770649245], [2.31558190736264, 48.87133799751633], [2.315567272211935, 48.87133643261527], [2.315411061816929, 48.8712431471138], [2.315254983895627, 48.87115092337989], [2.315098775979448, 48.871057637463004], [2.314942699166997, 48.8709654133064], [2.314786492366395, 48.87087212696632], [2.314630416650853, 48.87077990328632], [2.314474209602593, 48.87068661651526], [2.31431813637074, 48.870594391521074], [2.314161930438047, 48.87050110432682], [2.314005858303176, 48.87040887980927], [2.313849653486041, 48.87031559219183], [2.313693582471623, 48.870223366352384], [2.313537378770042, 48.87013007831177], [2.313381307489373, 48.87003785294111], [2.313372299134062, 48.870035558300756], [2.313196905277416, 48.870033592419176], [2.313002164839718, 48.87003277612027], [2.31282677100631, 48.87003080969631], [2.312632030584818, 48.87002999279518], [2.312456636774757, 48.87002802582884], [2.312261895006274, 48.87002720831767], [2.312225184895946, 48.870055769199226], [2.3122652625132822, 48.87008274597608], [2.312416066997097, 48.870159681585676], [2.31258146295538, 48.87024314819525], [2.31273226700747, 48.87032008338747], [2.31289766398172, 48.87040354954805], [2.312901100083761, 48.870415286822364], [2.312807704275773, 48.870518958508065], [2.312716719085188, 48.870621029633206], [2.312623321178119, 48.87072470114789], [2.312532335266962, 48.87082677211387], [2.312438937987253, 48.870930443473206], [2.312347951355417, 48.87103251428003], [2.312254551976601, 48.87113618546837], [2.312163564623974, 48.871238256116015], [2.3120701658725142, 48.871341927149004], [2.311979176436049, 48.871443997629655], [2.31197873320431, 48.871452575713356], [2.31207183885604, 48.87157551501884], [2.312167589383515, 48.871702616303715], [2.312260695927916, 48.87182555543445], [2.312356446012593, 48.87195265653165], [2.312449554824806, 48.872075594596225], [2.3125453058179772, 48.87220269641287], [2.312539354691903, 48.87221468823963], [2.312362418573541, 48.87227498008625], [2.31217706812772, 48.872338421380846], [2.312000131169711, 48.87239871268521], [2.311814778490957, 48.87246215250463], [2.311637842056677, 48.87252244327457], [2.311452488484503, 48.872585883425145], [2.31127555121048, 48.87264617365279], [2.311090196768657, 48.87270961233604], [2.31091325729182, 48.87276990201357], [2.310727901956565, 48.87283334102794], [2.31072879676467, 48.87284958559856], [2.310931460974097, 48.87290706202399], [2.311118050235577, 48.872959895819655], [2.311320715291837, 48.87301737247956], [2.311507305343305, 48.873070205663176], [2.3115176031768803, 48.87308627227645], [2.311565650243325, 48.873094582437375], [2.31175223945653, 48.87314741522767], [2.311918559611008, 48.873198095101884], [2.312084880089137, 48.873248774742706], [2.312271470381457, 48.87330160671623], [2.312273742847592, 48.873302144088434], [2.31246595597035, 48.8733352567233], [2.312657802830896, 48.873368350755904], [2.312850016454087, 48.87340146187284], [2.313041865165792, 48.873434555295745], [2.313234077902279, 48.87346766668544], [2.313425927101742, 48.87350075949081], [2.313618140338531, 48.87353386936256], [2.313809990025943, 48.87356696155046], [2.314002205102524, 48.873600071710584], [2.314194053914477, 48.873633163273134], [2.314217726030205, 48.87364654348898], [2.314243376584617, 48.873647588881276], [2.314435225724808, 48.87368068005591], [2.314632619260807, 48.87371351577589], [2.3148244702543153, 48.87374660633251], [2.31502186429736, 48.87377944050944], [2.315213715780973, 48.87381253044019], [2.315411110319221, 48.873845363973295], [2.315602960929723, 48.87387845327047], [2.315800357314561, 48.87391128706684], [2.315992208415154, 48.87394437573816], [2.316189603943685, 48.8739772079836], [2.316381456897671, 48.87401029603695], [2.316578852921483, 48.87404312763856], [2.316770706365443, 48.87407621506608], [2.316968102872634, 48.87410904692309], [2.317159955443448, 48.874142133717], [2.317357352457498, 48.87417496403094], [2.317438956803467, 48.87418903729035], [2.317465656560742, 48.87420128655666]]], "type": "Polygon"}, "circ_bv": "01", "num_bureau": 12, "roussel_fabien": 2.0, "nb_emargement": 1039.0, "nb_procuration": 65.0, "nb_vote_blanc": 12.0, "jadot_yannick": 42.0, "le_pen_marine": 104.0, "nb_exprime": 1024.0, "nb_vote_nul": 3.0, "arr_bv": "08", "arthaud_nathalie": 0, "nb_inscrit": 1325.0, "sec_bv": "08", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1039, "quartier_bv": "31", "geo_point_2d": [48.87253566445706, 2.316405031197583], "melenchon_jean_luc": 116.0, "poutou_philippe": 1.0, "macron_emmanuel": 441.0}, "geometry": {"type": "Point", "coordinates": [2.316405031197583, 48.87253566445706]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "53f2def4457b80cbf03a1c3406feb9428f973ffd", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 70, "zemmour_eric": 74.0, "hidalgo_anne": 23.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "17-3", "geo_shape": {"coordinates": [[[2.323034328562558, 48.88698204177591], [2.323069444935493, 48.88694740030032], [2.323219049594138, 48.88684724144133], [2.323368754098302, 48.88674701550408], [2.323518357593865, 48.8866468571521], [2.323668060945864, 48.88654663082233], [2.323817663301822, 48.886446471178914], [2.323967365501662, 48.88634624445664], [2.324116966694464, 48.886246085320195], [2.324266667742156, 48.88614585820549], [2.324416267795259, 48.88604569777759], [2.324565967690812, 48.88594547027035], [2.324569876828715, 48.88593878781804], [2.324564440990401, 48.885852166068], [2.324559031237313, 48.88576595275378], [2.32456226170476, 48.88575976020431], [2.324678132212949, 48.88566976672643], [2.324793114865757, 48.885579749238445], [2.324908985938065, 48.88548975553013], [2.32502396779444, 48.88539973780571], [2.325139836691884, 48.885309744750856], [2.325254817751736, 48.885219726790005], [2.325267228328146, 48.885206595458], [2.3252590259060613, 48.88519890222668], [2.325129899384634, 48.885130665321064], [2.324982679727864, 48.885052447118866], [2.324829089438485, 48.88497128166955], [2.3246818706842323, 48.88489306308613], [2.324528281333792, 48.88481189723918], [2.324381063470284, 48.884733679173806], [2.324227475058672, 48.88465251292925], [2.324080259472829, 48.884574293591115], [2.323926672000246, 48.88449312694892], [2.323779455953214, 48.884414907221874], [2.323632240348331, 48.8843366873083], [2.3234786542748243, 48.88425552007385], [2.323467262131011, 48.884253746073234], [2.32322496549617, 48.884288081069194], [2.322993824738715, 48.884320835578755], [2.322985984083948, 48.88432405671563], [2.322857801938149, 48.884431185043], [2.322730701524088, 48.88453740742281], [2.322602518327968, 48.884644535456104], [2.322475418236051, 48.88475075755203], [2.322347232626107, 48.88485788528349], [2.322220131492735, 48.8849641070878], [2.322093028465531, 48.8850703296385], [2.321964842657504, 48.88517745603786], [2.321837738588819, 48.885283678296936], [2.321709551730441, 48.885390804402235], [2.321706718048894, 48.88539530119022], [2.321689950835205, 48.8854871636542], [2.321673447787084, 48.88557758597832], [2.321656680444296, 48.88566944932164], [2.321640177280734, 48.885759871626185], [2.321638371144195, 48.88577185126538], [2.3216514227273892, 48.885777533434734], [2.321765069120143, 48.88587523567456], [2.321889035448518, 48.885981811477585], [2.322002682744615, 48.88607951257445], [2.322126651409231, 48.88618608811936], [2.322240298233332, 48.8862837889648], [2.3223642678705723, 48.88639036424391], [2.322477915574612, 48.886488065744935], [2.322601886196185, 48.886594639858906], [2.322715536155522, 48.88669234112395], [2.322839506386089, 48.88679891496439], [2.322911905986113, 48.88686115419274], [2.3229115664201982, 48.88686388083773], [2.322928826184554, 48.88687569939807], [2.322963179082898, 48.88690523157134], [2.323004430403813, 48.88694069334518], [2.323012063134382, 48.88694227165648], [2.3230251131480832, 48.886980835833306], [2.323032937200318, 48.88698185943943], [2.323034328562558, 48.88698204177591]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 3, "roussel_fabien": 19.0, "nb_emargement": 1243.0, "nb_procuration": 94.0, "nb_vote_blanc": 21.0, "jadot_yannick": 139.0, "le_pen_marine": 50.0, "nb_exprime": 1215.0, "nb_vote_nul": 7.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1515.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1243, "quartier_bv": "67", "geo_point_2d": [48.88551874355891, 2.3233148611535275], "melenchon_jean_luc": 254.0, "poutou_philippe": 3.0, "macron_emmanuel": 559.0}, "geometry": {"type": "Point", "coordinates": [2.3233148611535275, 48.88551874355891]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "9343edd85aa4f3d100ea82d6944746c27bf286fa", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 32, "zemmour_eric": 68.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "19-20", "geo_shape": {"coordinates": [[[2.398363943371222, 48.88412904974182], [2.398379885835235, 48.884126327556274], [2.398580569064781, 48.884091999533595], [2.398782013099342, 48.88405777571957], [2.398982695799629, 48.88402344702079], [2.399184137941247, 48.88398922252122], [2.399384820112269, 48.88395489314624], [2.399586261724424, 48.88392066796802], [2.3997869433558052, 48.88388633881618], [2.399988384448853, 48.88385211205998], [2.400032598171543, 48.88384733518074], [2.400035015607979, 48.88384156103968], [2.400045749743907, 48.883822304528785], [2.400045916402563, 48.88382216057266], [2.400046083071476, 48.88382201571722], [2.400154669381834, 48.88372495158204], [2.400255305024365, 48.883637976610906], [2.400363890561011, 48.88354091226972], [2.400464524134894, 48.88345393710135], [2.400573108897837, 48.8833568725542], [2.400673743130223, 48.88326989720223], [2.400782325755901, 48.88317283244228], [2.400928530397436, 48.88304647055438], [2.400946450575105, 48.88303098300708], [2.4010550335682472, 48.88293391708628], [2.40112459976761, 48.88287379264511], [2.401128953725513, 48.88286526004069], [2.401089602493249, 48.88284463951786], [2.400901089365714, 48.88281399793299], [2.400713679251762, 48.8827836250729], [2.400525166566283, 48.8827529828945], [2.400337758254712, 48.88272260945111], [2.400149246011295, 48.8826919666791], [2.399961836775003, 48.882661592638776], [2.399773324973657, 48.88263094927317], [2.399585916186572, 48.88260057374346], [2.399397404816936, 48.88256993068352], [2.399209996468604, 48.88253955456371], [2.399021485551525, 48.88250891001094], [2.39883407899522, 48.88247853420712], [2.398645567156688, 48.882447889053914], [2.398458161039243, 48.88241751265997], [2.398269651006252, 48.88238686692004], [2.398082243964231, 48.882356489929144], [2.397893734373346, 48.882325843595616], [2.3977063277702, 48.88229546601467], [2.397517818621427, 48.88226481908753], [2.397330412457162, 48.882234440916484], [2.397141903750509, 48.88220379339579], [2.396954499388671, 48.882173414641485], [2.396951305676987, 48.88217260534898], [2.396754708045318, 48.88210292167842], [2.39654293397557, 48.88202795947889], [2.396536263539451, 48.882017582702964], [2.3965908891897563, 48.88189046482931], [2.396645146826364, 48.88176484064305], [2.396699771956209, 48.881637721791265], [2.396754030430372, 48.88151209753368], [2.396750051029856, 48.88150295740859], [2.396658344676585, 48.88144837649181], [2.396576913335149, 48.88139836011259], [2.396556459673781, 48.88138683196996], [2.396548584840267, 48.88138826087852], [2.396437839467368, 48.88146955936269], [2.396280292818295, 48.881584397765394], [2.396169546599055, 48.88166569688617], [2.396011998765014, 48.88178053491537], [2.39590125172028, 48.88186183287417], [2.395898325548469, 48.881870406678935], [2.395951886523405, 48.88198920277776], [2.396009600606311, 48.882106760733535], [2.396063162078062, 48.88222555675709], [2.396120875310652, 48.88234311462709], [2.396115728835897, 48.88235324925657], [2.395969469229882, 48.882420844045036], [2.395827822298214, 48.88248632423158], [2.395681563308313, 48.88255391866704], [2.39553991565269, 48.88261939850503], [2.3953936559258002, 48.88268699168131], [2.395252007546223, 48.88275247117077], [2.395247665585802, 48.88275577854371], [2.39515521806665, 48.882876372504334], [2.395063213003028, 48.88299734363705], [2.394970765991475, 48.88311793743571], [2.394878758698689, 48.88323890929248], [2.394877595893306, 48.88324016876656], [2.39480102247339, 48.88330956219633], [2.394718509164818, 48.88338503286432], [2.394716149770201, 48.88338869737905], [2.394683161638794, 48.88350935048292], [2.394645671586408, 48.88365091979466], [2.394641373085694, 48.88365294222733], [2.394637261716476, 48.88367300247435], [2.394637101603063, 48.88367352057552], [2.394608570857732, 48.88377176789515], [2.394561287037054, 48.88390392925001], [2.394523831810071, 48.88400667928747], [2.3944765475716, 48.8841388396813], [2.394439092008458, 48.88424158967031], [2.394391807331073, 48.88437375090175], [2.394354351442332, 48.88447649994304], [2.394363047187878, 48.884487076820236], [2.394447041911917, 48.88450674541733], [2.394519030272208, 48.88452284677158], [2.394542851836164, 48.88452989653291], [2.394547887297517, 48.88452865125088], [2.394650622611759, 48.8845516286564], [2.394730288941932, 48.88457015460981], [2.39473960340834, 48.884570095576684], [2.394926741757615, 48.8845238943684], [2.3951098644684032, 48.88447881022549], [2.395297000797643, 48.88443260842778], [2.395480122866872, 48.88438752371481], [2.395663244619024, 48.88434243871991], [2.395850381320295, 48.884296236957724], [2.396033502430882, 48.884251151392775], [2.396220637122445, 48.884204948141914], [2.396403757591461, 48.88415986200696], [2.39659089299006, 48.88411365818044], [2.396599655406774, 48.88410627571714], [2.396626238104591, 48.88395564866763], [2.396651882624675, 48.883798652341426], [2.396669339950085, 48.88379099802442], [2.396840944220907, 48.88382477614498], [2.397046841480289, 48.883865150600975], [2.397218446240421, 48.88389892817821], [2.397424342711669, 48.88393930287474], [2.397595949324489, 48.88397307991547], [2.397801846391991, 48.884013453060824], [2.397973452130424, 48.88404722955134], [2.398179351147353, 48.88408760205166], [2.3983509573749773, 48.88412137799886], [2.398363943371222, 48.88412904974182]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 20, "roussel_fabien": 24.0, "nb_emargement": 1036.0, "nb_procuration": 22.0, "nb_vote_blanc": 9.0, "jadot_yannick": 37.0, "le_pen_marine": 82.0, "nb_exprime": 1021.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 8, "nb_inscrit": 1523.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1035, "quartier_bv": "75", "geo_point_2d": [48.88322454406188, 2.3973931616436404], "melenchon_jean_luc": 519.0, "poutou_philippe": 11.0, "macron_emmanuel": 192.0}, "geometry": {"type": "Point", "coordinates": [2.3973931616436404, 48.88322454406188]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "af4ec68bbce7e350ce49d9238de3c7b1c0d1fe67", "fields": {"lassalle_jean": 20.0, "pecresse_valerie": 52, "zemmour_eric": 95.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "10-9", "geo_shape": {"coordinates": [[[2.363863178922768, 48.86750003402926], [2.363832727741581, 48.86750402713534], [2.36379812373917, 48.86750136102104], [2.363791318314299, 48.86753486757665], [2.363663662116126, 48.86760935048731], [2.363526267151505, 48.86769205361043], [2.363398611552325, 48.86776653623508], [2.363261215752229, 48.867849239042215], [2.363254896851857, 48.86785138722713], [2.363045380301313, 48.86788114769264], [2.362847181418887, 48.867909202634486], [2.362637664402886, 48.86793896238473], [2.362439465081017, 48.86796701664997], [2.362241266908732, 48.86799507059352], [2.3620317492012273, 48.868024829280856], [2.36183354922625, 48.86805288254057], [2.361642978765358, 48.868080401485436], [2.361444778369682, 48.86810845409995], [2.361254208874212, 48.868135971532396], [2.361063637814344, 48.868163488653515], [2.360865436790461, 48.86819154030656], [2.360674865310907, 48.8682190577066], [2.360476663877389, 48.86824710781519], [2.360286093352255, 48.86827462460209], [2.360087891486929, 48.868302674964774], [2.359897319201034, 48.86833019022475], [2.359699116914951, 48.86835823994226], [2.359601288445834, 48.86837208442462], [2.359410715638037, 48.868399599807354], [2.359379874403786, 48.86839145218922], [2.359332475041798, 48.86846279771096], [2.359368558550588, 48.86859393936995], [2.359402370485528, 48.86872069445096], [2.359394546780295, 48.86873045179331], [2.359230502958795, 48.86877922628965], [2.359064654883992, 48.86882869508273], [2.358900609081043, 48.86887746911528], [2.358734761743261, 48.868926937454184], [2.35857071532205, 48.868975711030295], [2.358404867347235, 48.86902517980698], [2.358240820318839, 48.869073952027314], [2.358074970354772, 48.86912342033516], [2.357910924071314, 48.86917219210637], [2.357745073481083, 48.86922165995274], [2.357740245648335, 48.869235634079054], [2.357872008931459, 48.8693392552517], [2.357988600410454, 48.86943075272339], [2.357990234280525, 48.869432356916725], [2.358083565672298, 48.869549553173265], [2.35817771243656, 48.869667657551304], [2.358271043308511, 48.869784853629405], [2.358365190923212, 48.869902957834825], [2.358458524001663, 48.8700201537491], [2.358552672466716, 48.87013825778192], [2.358646006388572, 48.87025545352504], [2.358740155703987, 48.870373557385236], [2.358833490469261, 48.87049075295726], [2.358927640634947, 48.87060885664481], [2.358944392204442, 48.870613116598356], [2.359141860691587, 48.87056543793209], [2.359338377117826, 48.87051754699608], [2.359535844882056, 48.870469867675695], [2.359732359222394, 48.87042197608142], [2.359929827626923, 48.87037429611423], [2.360126341233332, 48.870326404768285], [2.360142260676735, 48.87032970860582], [2.36024219431227, 48.8704245771736], [2.360335545256974, 48.8705129828928], [2.360428895155213, 48.87060138852484], [2.360528831197327, 48.87069625683724], [2.360622181752051, 48.870784662303876], [2.360722118508741, 48.87087952953989], [2.360716463285929, 48.870892878799125], [2.360634767501717, 48.87091685229669], [2.36055653763231, 48.87094100973237], [2.360549941550464, 48.870952925807096], [2.360596312043212, 48.87101842054478], [2.360656275768275, 48.87110405480965], [2.360677891121223, 48.87111426713759], [2.360687017356293, 48.871112692575934], [2.360705303581343, 48.87109279704671], [2.36079205414296, 48.87099943954031], [2.360921989155567, 48.87086790897787], [2.361008737591064, 48.870774551288186], [2.361138671495559, 48.87064302046376], [2.361225420531317, 48.87054966260533], [2.361225778310552, 48.87054928049691], [2.361319401393414, 48.870443306447], [2.361427397702165, 48.87032361763166], [2.361521021321352, 48.87021764430892], [2.361629016698986, 48.87009795528725], [2.361722638150217, 48.86999198087867], [2.361830633959853, 48.86987229165792], [2.361924254595431, 48.86976631706999], [2.362032249473963, 48.86964662764289], [2.362125869293797, 48.86954065287562], [2.362233863241236, 48.869420963242206], [2.362327482245335, 48.869314988295606], [2.362435473898497, 48.86919529844856], [2.362529093450065, 48.869089323329916], [2.362637084172162, 48.86896963327655], [2.3627307015448222, 48.86886365797132], [2.362735040219888, 48.86886069436259], [2.362838959877134, 48.86881630128243], [2.362954977477386, 48.86876706120471], [2.362971932220723, 48.86876516390147], [2.362979373859964, 48.868755938503845], [2.363095389829871, 48.86870669828003], [2.363204619599836, 48.86865966749097], [2.363205814054916, 48.86865908927464], [2.363346822354372, 48.86858293410738], [2.363488486629825, 48.8685062777294], [2.363629494113373, 48.8684301213193], [2.363771157557286, 48.86835346459621], [2.363912165577004, 48.86827730784983], [2.36405382818938, 48.868200650781574], [2.364194834008158, 48.8681244945837], [2.364336495789004, 48.86804783717028], [2.364477500791768, 48.867971679729635], [2.364619161741188, 48.86789502197108], [2.36465411627564, 48.867851424914015], [2.364645423814335, 48.867846216554774], [2.36459262358076, 48.8678231820352], [2.36440817320425, 48.867745264958565], [2.364253334101615, 48.86767771599687], [2.364068886121788, 48.86759979749509], [2.363914046528337, 48.867532248078334], [2.363863178922768, 48.86750003402926]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 9, "roussel_fabien": 32.0, "nb_emargement": 1343.0, "nb_procuration": 102.0, "nb_vote_blanc": 21.0, "jadot_yannick": 124.0, "le_pen_marine": 107.0, "nb_exprime": 1319.0, "nb_vote_nul": 2.0, "arr_bv": "10", "arthaud_nathalie": 0, "nb_inscrit": 1642.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1342, "quartier_bv": "39", "geo_point_2d": [48.869174876395626, 2.3608662663625997], "melenchon_jean_luc": 376.0, "poutou_philippe": 14.0, "macron_emmanuel": 457.0}, "geometry": {"type": "Point", "coordinates": [2.3608662663625997, 48.869174876395626]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d85a8c5b679f8520b9a451c2296287b250fd156b", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 56, "zemmour_eric": 62.0, "hidalgo_anne": 31.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-36", "geo_shape": {"coordinates": [[[2.337263603064736, 48.891437729256495], [2.337272917920037, 48.89143860279181], [2.33738922808614, 48.89142595084076], [2.337564648308382, 48.89140763898887], [2.337766542041706, 48.89138567634425], [2.337941963347897, 48.89136736484575], [2.338143856765901, 48.8913454015642], [2.338319276439936, 48.89132708950476], [2.338521170906383, 48.89130512559377], [2.338696590323447, 48.891286812081695], [2.338872009605693, 48.891268499211556], [2.339073902248125, 48.89124653436], [2.339276333118527, 48.89122319707165], [2.339469107242797, 48.89121130133553], [2.33947292418706, 48.891210691064714], [2.339502512612272, 48.89120284759113], [2.339564061826847, 48.891175710021095], [2.339573813325068, 48.891174307797854], [2.339598478053115, 48.89117594300151], [2.339636748938194, 48.89115775209048], [2.33969666744726, 48.89116412327167], [2.339864262891289, 48.89118163804969], [2.340083222537841, 48.89120491885137], [2.340250818231712, 48.89122243398696], [2.340469778222653, 48.891245714081016], [2.340637374189252, 48.89126322777566], [2.34065288742965, 48.89125260044886], [2.3406163547636, 48.89113086642866], [2.340580484277615, 48.89101145808457], [2.34054395194993, 48.89088972401557], [2.340508080420963, 48.89077031651529], [2.340471549795597, 48.890648582404914], [2.340435678610083, 48.890529173957454], [2.340399146959422, 48.89040743979076], [2.340363277458526, 48.89028803220214], [2.340326746146215, 48.890166297986575], [2.340290876988861, 48.8900468894508], [2.340254346015099, 48.88992515518641], [2.340218477178395, 48.88980574750191], [2.340221122386045, 48.889802348238454], [2.340205112175712, 48.88977010284734], [2.340201171094942, 48.88975867049218], [2.340189478832501, 48.88974740137113], [2.34014170198747, 48.88975247379427], [2.339946737300464, 48.88978096996092], [2.339735028610066, 48.88980971163026], [2.339540063486189, 48.889838207133266], [2.339328354338599, 48.8898669480821], [2.339133388777859, 48.889895442921485], [2.338921679173088, 48.88992418314982], [2.338858515960168, 48.88991977396426], [2.338795477246698, 48.88993563262736], [2.338793242881708, 48.8899479113678], [2.338603070425142, 48.88997372754098], [2.338423563415739, 48.88999809596991], [2.338233389228967, 48.89002391154723], [2.33805388324872, 48.89004827852915], [2.337863708695384, 48.890074093518166], [2.337684202369141, 48.89009845994481], [2.33749402744925, 48.89012427434556], [2.337314520776917, 48.89014864021688], [2.33712434547903, 48.89017445492858], [2.336944838460813, 48.89019882024463], [2.33675466280783, 48.89022463346876], [2.336575154079898, 48.89024899822197], [2.336565238532898, 48.89026114173262], [2.336634528925047, 48.8903755411616], [2.336703074289199, 48.890488709730626], [2.336772365287017, 48.89060310905608], [2.336840909898026, 48.89071627661591], [2.336910201501517, 48.89083067583794], [2.336978748063886, 48.89094384420219], [2.337048040284512, 48.89105824242146], [2.337116586082386, 48.89117141067579], [2.33718587889725, 48.89128580969079], [2.337254426658067, 48.89139897785034], [2.337263603064736, 48.891437729256495]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 36, "roussel_fabien": 16.0, "nb_emargement": 1221.0, "nb_procuration": 89.0, "nb_vote_blanc": 15.0, "jadot_yannick": 148.0, "le_pen_marine": 41.0, "nb_exprime": 1203.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 1, "nb_inscrit": 1501.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1221, "quartier_bv": "69", "geo_point_2d": [48.890625329380995, 2.3387072400879485], "melenchon_jean_luc": 383.0, "poutou_philippe": 6.0, "macron_emmanuel": 440.0}, "geometry": {"type": "Point", "coordinates": [2.3387072400879485, 48.890625329380995]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6b014ac3247efc854df0c96f12a603c8db08b484", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 164, "zemmour_eric": 213.0, "hidalgo_anne": 11.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-47", "geo_shape": {"coordinates": [[[2.311492522538888, 48.8818663202106], [2.311492206012705, 48.881853440819036], [2.311474024536317, 48.881825950621554], [2.311471631081631, 48.88180534928951], [2.3114692740106, 48.88180293271182], [2.311328329627217, 48.881699531346804], [2.311188302785912, 48.88159680238838], [2.311047359518263, 48.88149340067326], [2.310907335148934, 48.88139067137483], [2.310766392997007, 48.88128726930956], [2.310626368372632, 48.88118453965544], [2.310486345652367, 48.881081810735104], [2.310345405172082, 48.880978408145225], [2.310205382208668, 48.88087567796991], [2.310064442844185, 48.880772275029905], [2.310052081878518, 48.8807645711329], [2.310036778649714, 48.880767958870905], [2.309817495820092, 48.88078454941761], [2.309597980811128, 48.880801157110334], [2.309378697690118, 48.88081774775215], [2.309159183764788, 48.88083435464767], [2.30893989901266, 48.880850943578096], [2.308720384795554, 48.8808675505679], [2.308710438988752, 48.88087165256621], [2.308598563842746, 48.880987465084225], [2.308485736981936, 48.88110426215959], [2.308373860836652, 48.881220074443135], [2.30826103296796, 48.88133687128206], [2.30814915583513, 48.88145268243195], [2.308036326958546, 48.88156947903439], [2.307924448814471, 48.88168529084906], [2.307811618929981, 48.881802087215085], [2.307699739786391, 48.881917898795336], [2.307586908893984, 48.88203469492484], [2.307566776966126, 48.88203682502892], [2.30739753226375, 48.881945551041234], [2.30722987084585, 48.881855130440506], [2.307060625960908, 48.881763855953594], [2.306892965712913, 48.88167343486613], [2.306723723372532, 48.881582159895835], [2.306556064282355, 48.88149173922093], [2.306532853541583, 48.881485983932706], [2.306520431005466, 48.88149849457713], [2.3063656818180682, 48.88155466182619], [2.306210297674067, 48.88161097268573], [2.306055546454552, 48.881667139520296], [2.305900161651603, 48.88172344907231], [2.305745409763277, 48.88177961550029], [2.30559002427741, 48.88183592554328], [2.30558598348561, 48.88184945778451], [2.30570380829025, 48.88194567840107], [2.305821879025894, 48.88204209996902], [2.30593970470233, 48.88213832033658], [2.306057777675018, 48.882234741662955], [2.306175604223058, 48.88233096178147], [2.306293676705747, 48.88242738285044], [2.306411504113621, 48.88252360361924], [2.306529578833381, 48.882620024446574], [2.306647407124853, 48.882716244067154], [2.30676548135472, 48.88281266463703], [2.306883310517917, 48.882908884008536], [2.307001386984778, 48.883005304336805], [2.307119217019811, 48.88310152345934], [2.307237292996683, 48.883197943530135], [2.307231394657157, 48.883212033439044], [2.307031912108597, 48.883260444891455], [2.306831658971042, 48.88330904310824], [2.306632175679181, 48.88335745389039], [2.30643192317109, 48.8834060505429], [2.306232439136041, 48.8834544606548], [2.30603218450636, 48.883503057525786], [2.305832699728123, 48.88355146696737], [2.3056324457279382, 48.883600062274176], [2.305432960206523, 48.883648471045476], [2.305232704084741, 48.88369706657074], [2.3050332178201502, 48.88374547467174], [2.304832962327897, 48.88379406863278], [2.304824654034126, 48.883804149586815], [2.304827661998816, 48.883811829374466], [2.304856450495538, 48.88382313297416], [2.304910701865569, 48.88384490155206], [2.304910861935697, 48.8838449645354], [2.305098207421208, 48.8839185212401], [2.305226878042867, 48.883968573038814], [2.305229449090667, 48.883969348794565], [2.305279952242394, 48.883980576846], [2.3053300692954313, 48.883991718098414], [2.305331980815784, 48.88399225350062], [2.305502858430661, 48.88405058272331], [2.305672380306251, 48.884108448772004], [2.305841902558582, 48.88416631457761], [2.306012781315763, 48.88422464306333], [2.30618230432459, 48.88428250838085], [2.306353182480633, 48.88434083636671], [2.306522706246054, 48.88439870119618], [2.306693586528225, 48.884457028697945], [2.306863111050037, 48.8845148930393], [2.3070339921067182, 48.88457321914984], [2.307041107568637, 48.88457948281589], [2.307072621103865, 48.88468592406207], [2.30711795365437, 48.88483904237932], [2.307149467503745, 48.88494548358015], [2.307194801869762, 48.88509860184002], [2.307226316033292, 48.88520504299553], [2.307222232187715, 48.885214751039825], [2.307232383387378, 48.88522295772573], [2.307398061960728, 48.885275850873], [2.307553436930335, 48.8853254546958], [2.307708812195846, 48.88537505831478], [2.307874491725078, 48.88542795169475], [2.307891771952289, 48.885429013870194], [2.307901006347647, 48.885416433433846], [2.308037614142919, 48.885291030540316], [2.308173952549662, 48.88516655763198], [2.308310560407687, 48.88504115350714], [2.308446897507807, 48.884916680259714], [2.30844871159967, 48.884914391145024], [2.308513815139257, 48.88479196782049], [2.30857901349536, 48.88466936423041], [2.308644115058708, 48.88454694079988], [2.3087093127893272, 48.884424338010795], [2.308774413740039, 48.884301914482144], [2.308839610869063, 48.884179310695565], [2.308842469735695, 48.884176180433236], [2.308957795926669, 48.88409396000542], [2.309073134120787, 48.8840117323371], [2.309188459571361, 48.88392951257404], [2.30930379704897, 48.88384728377195], [2.309419123134751, 48.883765063782334], [2.309534459871998, 48.883682835645004], [2.309537349502267, 48.88367964258918], [2.30961553354192, 48.88352910438253], [2.309693517054139, 48.883378948966055], [2.309695640558001, 48.88337635314249], [2.309822641776677, 48.88326830914007], [2.309947954336612, 48.88316170229037], [2.310073265008028, 48.88305509619062], [2.310200264671701, 48.88294705085683], [2.3103255756736543, 48.882840444480024], [2.31045257427848, 48.8827323997568], [2.310577884259335, 48.88262579219587], [2.310704881817235, 48.88251774718391], [2.3108301894015613, 48.88241113933025], [2.310957187276078, 48.88230309403749], [2.311082493827421, 48.88219648589898], [2.311209490655129, 48.88208844031745], [2.311334796173397, 48.8819818318941], [2.311461790590688, 48.88187378601606], [2.311492522538888, 48.8818663202106]]], "type": "Polygon"}, "circ_bv": "04", "num_bureau": 47, "roussel_fabien": 9.0, "nb_emargement": 1201.0, "nb_procuration": 82.0, "nb_vote_blanc": 13.0, "jadot_yannick": 51.0, "le_pen_marine": 43.0, "nb_exprime": 1187.0, "nb_vote_nul": 2.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1452.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1202, "quartier_bv": "66", "geo_point_2d": [48.882840289091405, 2.3083324911208383], "melenchon_jean_luc": 87.0, "poutou_philippe": 0.0, "macron_emmanuel": 585.0}, "geometry": {"type": "Point", "coordinates": [2.3083324911208383, 48.882840289091405]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "46b417811097e426c1f6f1e76ce708b180c223db", "fields": {"lassalle_jean": 21.0, "pecresse_valerie": 55, "zemmour_eric": 82.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 4.0, "date_tour": "2022-04-10", "id_bvote": "18-40", "geo_shape": {"coordinates": [[[2.334997530569917, 48.891686722029725], [2.334952657856663, 48.89168346008747], [2.3348536898556222, 48.8916930745592], [2.334666571575418, 48.89171061507726], [2.334450280984351, 48.89173162643703], [2.334263162429707, 48.89174916632414], [2.334046870151827, 48.891770176946906], [2.333859751322851, 48.89178771620302], [2.3338573104738822, 48.89178810732065], [2.333745981032633, 48.89181331474225], [2.333678302735913, 48.89182671851459], [2.333661935534969, 48.89182806995526], [2.333651784587246, 48.89183242105708], [2.333534153845929, 48.89185571722681], [2.333343016186887, 48.89189352745929], [2.333157706592677, 48.89193022770051], [2.332966568386745, 48.89196803732955], [2.332781259625801, 48.89200473699337], [2.332590119509201, 48.89204254601138], [2.332404810217743, 48.89207924509016], [2.332213669554266, 48.8921170535047], [2.3320283597323, 48.89215375199839], [2.331837218521952, 48.892191559809525], [2.331651908169484, 48.89222825771822], [2.331460766412271, 48.89226606492587], [2.331275455529309, 48.892302762249514], [2.33108431323679, 48.892340567954435], [2.330899001811785, 48.89237726559231], [2.330821977809542, 48.89239249961518], [2.330793327741577, 48.8924047483815], [2.33080897644466, 48.89243735359005], [2.330928322649974, 48.89254503642778], [2.3310516761643783, 48.892657197668534], [2.331171023364107, 48.892764881142035], [2.331294377933727, 48.89287704121106], [2.331413726139234, 48.89298472442109], [2.331537081740978, 48.89309688511691], [2.331656429600205, 48.89320456715655], [2.331779786245634, 48.893316727579844], [2.331899136462931, 48.893424410262895], [2.332022494152057, 48.893536570413715], [2.332141845386904, 48.89364425193397], [2.332265204119739, 48.8937564118123], [2.332384556348871, 48.89386409396835], [2.332507916136956, 48.893976252674875], [2.332554368375005, 48.89401816281355], [2.332580706223339, 48.89403438859398], [2.332609081691626, 48.89402040309209], [2.332802925181834, 48.89398666417883], [2.332997898301059, 48.89395447807882], [2.333004141839074, 48.89395217101855], [2.333133765695351, 48.89386822890705], [2.333287748440929, 48.89376831630185], [2.333417371382237, 48.89368437386927], [2.333571354403567, 48.89358446089024], [2.333700975066185, 48.89350051812901], [2.333854956999644, 48.89340060476855], [2.333984578111031, 48.893316661693866], [2.334138557592703, 48.8932167479444], [2.33426817778914, 48.89313280454865], [2.334422157546674, 48.89303289042537], [2.334551775464353, 48.892948946701004], [2.334555438021431, 48.89294474383204], [2.334598757391438, 48.892825138933375], [2.334651350976563, 48.892688561344855], [2.334694669913102, 48.89256895638353], [2.334747262999354, 48.89243237782174], [2.334790580138637, 48.89231277279022], [2.334843172703047, 48.892176195053636], [2.334886490772672, 48.89205658996704], [2.3349390828267342, 48.89192001215648], [2.334968616812121, 48.89183846179995], [2.334985399736714, 48.8918245273484], [2.33498577581239, 48.891812061207666], [2.3349995580798693, 48.891774006404475], [2.335008835854684, 48.89172716896491], [2.334997530569917, 48.891686722029725]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 40, "roussel_fabien": 29.0, "nb_emargement": 1285.0, "nb_procuration": 78.0, "nb_vote_blanc": 13.0, "jadot_yannick": 120.0, "le_pen_marine": 65.0, "nb_exprime": 1263.0, "nb_vote_nul": 10.0, "arr_bv": "18", "arthaud_nathalie": 6, "nb_inscrit": 1591.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1286, "quartier_bv": "69", "geo_point_2d": [48.892738826076176, 2.33305315237784], "melenchon_jean_luc": 348.0, "poutou_philippe": 7.0, "macron_emmanuel": 492.0}, "geometry": {"type": "Point", "coordinates": [2.33305315237784, 48.892738826076176]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b3f39d91c0dabe631d078edd4bf3258e1b93f029", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 112, "zemmour_eric": 140.0, "hidalgo_anne": 14.0, "dupont_aignan_nicolas": 17.0, "date_tour": "2022-04-10", "id_bvote": "16-45", "geo_shape": {"coordinates": [[[2.258084587232748, 48.83810057816587], [2.25811042087005, 48.838109480325045], [2.258272739633363, 48.838167274420954], [2.258462594901387, 48.83823468963752], [2.258624914445098, 48.83829248324904], [2.258814770624673, 48.83835989789907], [2.258977090948882, 48.83841769102629], [2.259166948040004, 48.838485105109804], [2.259329269144508, 48.838542897752646], [2.259519127147179, 48.83861031126962], [2.259681449044953, 48.83866810252882], [2.259871307946397, 48.83873551637859], [2.260033630624458, 48.83879330715337], [2.260039234601773, 48.83880539254231], [2.259958636329671, 48.83890706919731], [2.25986334453972, 48.839021422397906], [2.259782745590457, 48.83912309891472], [2.259687454382061, 48.83923745196154], [2.259606854755635, 48.83933912834019], [2.259511561403999, 48.839453481216374], [2.259430961100398, 48.83955515745686], [2.259393528493781, 48.83960007878731], [2.259382106807334, 48.839624230916264], [2.259417628715241, 48.83964033109132], [2.259500657636771, 48.839746821951785], [2.259582726598651, 48.8398502246459], [2.259665756191746, 48.8399567153718], [2.259747825811647, 48.84006011793323], [2.259830856076518, 48.84016660852449], [2.259912926354447, 48.84027001095325], [2.259918484292499, 48.84027373726807], [2.260119114473591, 48.84034576805923], [2.260319742548221, 48.84041817802837], [2.260325797071097, 48.84042263138976], [2.260399224087639, 48.84053981956425], [2.260476208721442, 48.840659139602664], [2.260549636396596, 48.84077632855934], [2.2606266230993652, 48.840895647584816], [2.26070005008346, 48.841012836415885], [2.260777037479807, 48.841132155319286], [2.260794858689675, 48.84113692059887], [2.260959408325609, 48.841091204096266], [2.261118838115062, 48.8410465799596], [2.261283387181612, 48.84100086300765], [2.261442816417344, 48.84095623843559], [2.261607363552068, 48.84091052102595], [2.261766793609255, 48.84086589512758], [2.261931340161854, 48.84082017816788], [2.262090769665205, 48.84077555183418], [2.262125679565091, 48.84076637412393], [2.262128167792974, 48.84076125585129], [2.262081856644769, 48.84069120221996], [2.262007071293434, 48.84057853688121], [2.261924074172085, 48.8404529903571], [2.261849289503703, 48.8403403248957], [2.261766293141729, 48.84021477823536], [2.261691510505768, 48.84010211355895], [2.261608514903153, 48.839976566762374], [2.261533731600446, 48.839863901055615], [2.261450736757185, 48.839738354122765], [2.261375954124458, 48.83962568919266], [2.261292960040541, 48.83950014212357], [2.261218179465775, 48.839387476179915], [2.261217121012392, 48.839382847758976], [2.261227623677758, 48.83932205736867], [2.261238168627754, 48.83927270098046], [2.2612455342855142, 48.83924837882372], [2.261240016543955, 48.839243932416515], [2.261253162643292, 48.83916783929939], [2.261271052830705, 48.83905502793489], [2.261294701355581, 48.838918143484044], [2.261312589992362, 48.838805332979], [2.261336238307612, 48.83866844759008], [2.261354128131075, 48.838555637062015], [2.261348403453579, 48.83854733825578], [2.261330646851298, 48.83853913063458], [2.261202349645255, 48.83847982047153], [2.261022606036681, 48.838396570265346], [2.260876554435209, 48.83832905208261], [2.260696810517281, 48.838245800467966], [2.260550759760284, 48.83817828187834], [2.260371018232131, 48.83809503067064], [2.2602249669701058, 48.83802751076641], [2.260045226482211, 48.83794425905793], [2.259899177414257, 48.83787673965453], [2.259893623826509, 48.83786763958739], [2.259934791431157, 48.837729293326824], [2.259973468814216, 48.837600120551976], [2.260012146018347, 48.83747094685042], [2.260053312995217, 48.8373326005], [2.260091989802978, 48.83720342674167], [2.260133156356552, 48.83706508033068], [2.260142133954501, 48.83703509669704], [2.260135918768288, 48.83702029859111], [2.260107098562938, 48.83701439399399], [2.259926267083789, 48.83703338084768], [2.259718865853297, 48.83705578071199], [2.259538034089156, 48.837074766978056], [2.259330632539938, 48.83709716526912], [2.259149800490818, 48.83711615094755], [2.258942398597227, 48.83713854946392], [2.258761566263233, 48.83715753455478], [2.258554164038156, 48.83717993239715], [2.258373331431991, 48.837198916001064], [2.25816592887544, 48.8372213131695], [2.257985097333764, 48.837240297093544], [2.2579736762322202, 48.83725004293509], [2.257994082154553, 48.83738963218681], [2.2580131587428403, 48.83752498880182], [2.258033566240897, 48.83766457802095], [2.258052643045142, 48.837799933697084], [2.258073049381423, 48.837939523765954], [2.258092126388826, 48.83807487940249], [2.258084587232748, 48.83810057816587]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 45, "roussel_fabien": 9.0, "nb_emargement": 1045.0, "nb_procuration": 46.0, "nb_vote_blanc": 5.0, "jadot_yannick": 56.0, "le_pen_marine": 67.0, "nb_exprime": 1035.0, "nb_vote_nul": 5.0, "arr_bv": "16", "arthaud_nathalie": 0, "nb_inscrit": 1366.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1045, "quartier_bv": "61", "geo_point_2d": [48.83896496786254, 2.2601226680171282], "melenchon_jean_luc": 158.0, "poutou_philippe": 5.0, "macron_emmanuel": 441.0}, "geometry": {"type": "Point", "coordinates": [2.2601226680171282, 48.83896496786254]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "79e706b8405183758d1657a3f12e54c5dc02ef19", "fields": {"lassalle_jean": 25.0, "pecresse_valerie": 109, "zemmour_eric": 131.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "15-66", "geo_shape": {"coordinates": [[[2.29639440456761, 48.839588530432536], [2.296380712847519, 48.83956128081815], [2.296377490347334, 48.8395586716764], [2.296246154582747, 48.839485881984615], [2.296111896004196, 48.839412130603826], [2.295980560979761, 48.839339340610955], [2.295846301792077, 48.83926558891437], [2.295844056095913, 48.8392611750742], [2.295817655887236, 48.83925467010624], [2.295816905709051, 48.83925422589779], [2.295692811390091, 48.83917510885511], [2.295532352672636, 48.8390722113083], [2.2954082592190392, 48.83899309395749], [2.29524780026126, 48.838890196004236], [2.2951237076728193, 48.838811078345366], [2.294963249837209, 48.838708179993674], [2.294839159488571, 48.83862906113547], [2.294837811860973, 48.838628064782014], [2.294767727435203, 48.8385687796597], [2.294702733369776, 48.83851281530629], [2.294700148913121, 48.838508978638615], [2.2946696766388612, 48.83840019266644], [2.294640533415726, 48.838288146196014], [2.294610061394989, 48.83817936018714], [2.294580918423576, 48.83806731368007], [2.294569917725604, 48.83805907621374], [2.294551403838127, 48.838059440997064], [2.294395219147773, 48.83813087334234], [2.294201743929269, 48.83821676500002], [2.2940455582884223, 48.83828819687874], [2.2938520819096713, 48.83837408795875], [2.293797955105397, 48.838398841995456], [2.293774959285662, 48.838409512179105], [2.293774130959552, 48.83841684885866], [2.293672069753412, 48.83846352620494], [2.293500143500963, 48.838541686149796], [2.293343954550437, 48.83861311798292], [2.2931720273126572, 48.83869127744576], [2.293015838838699, 48.838762707949634], [2.292843910615487, 48.83884086693039], [2.292687721243624, 48.838912296996284], [2.292515792022671, 48.838990456394306], [2.292359600390606, 48.839061886014164], [2.292187670196518, 48.83914004403082], [2.292031479028835, 48.839211473220736], [2.292026635021087, 48.839215412576614], [2.291946788510038, 48.83934154083961], [2.291866043503476, 48.83946838771196], [2.291786196216287, 48.83959451583924], [2.291705451789418, 48.83972136258251], [2.291625602363666, 48.839847490565944], [2.291544857166298, 48.83997433627279], [2.291465006964482, 48.840100464120454], [2.291384260972158, 48.84022731058955], [2.2913044099940603, 48.840353438301385], [2.291223663218991, 48.840480284633344], [2.29114381282714, 48.840606412217525], [2.291063063906882, 48.84073325840423], [2.291020235957023, 48.840758877655155], [2.291034151896471, 48.84077206574978], [2.291163082475064, 48.84085039866189], [2.291282383748453, 48.8409113471198], [2.291315410958386, 48.84092821980106], [2.291312609747343, 48.84094594507339], [2.291348100543018, 48.84094296885944], [2.291500428210686, 48.84102078974852], [2.291660139946901, 48.841099810748936], [2.291812469901305, 48.84117763123775], [2.291972182591213, 48.841256651810475], [2.291991049883198, 48.84126195194225], [2.292024453654392, 48.84122646086234], [2.292171680336293, 48.84113252866928], [2.292317197708846, 48.84103991274829], [2.292464423348426, 48.840945979279915], [2.292609939679963, 48.840853362987346], [2.292757164252811, 48.84075943004232], [2.29290267954334, 48.840666813378206], [2.293048195679057, 48.84057419653745], [2.293195417323401, 48.8404802621222], [2.293340932418113, 48.84038764490991], [2.29348815299576, 48.840293711018035], [2.29363366704948, 48.84020109343411], [2.293780886572636, 48.8401071591663], [2.293926399585369, 48.84001454121088], [2.2940736180662222, 48.83992060566778], [2.294089384955137, 48.839919096934096], [2.2942711301292222, 48.83998162598188], [2.294440883688916, 48.840039873167235], [2.294610637640185, 48.84009811920937], [2.294792384063936, 48.84016064745521], [2.29496213880125, 48.840218892992276], [2.29514388743024, 48.84028142070532], [2.295313641579213, 48.840339666628516], [2.29549539105092, 48.8404021938008], [2.295541654647019, 48.840418067624206], [2.29558540129874, 48.84042136960751], [2.295592098067374, 48.840409473506185], [2.295691898499951, 48.840305906931526], [2.29578597193823, 48.84020667389192], [2.295880045006153, 48.84010744166885], [2.295979842925944, 48.84000387481795], [2.296073915270787, 48.83990464152506], [2.296173713779473, 48.839801074501615], [2.296267785389291, 48.839701841038305], [2.296367581762046, 48.83959827382629], [2.29639440456761, 48.839588530432536]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 66, "roussel_fabien": 9.0, "nb_emargement": 1266.0, "nb_procuration": 94.0, "nb_vote_blanc": 11.0, "jadot_yannick": 81.0, "le_pen_marine": 100.0, "nb_exprime": 1253.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1601.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1266, "quartier_bv": "57", "geo_point_2d": [48.839671292026445, 2.2935908247097325], "melenchon_jean_luc": 273.0, "poutou_philippe": 2.0, "macron_emmanuel": 489.0}, "geometry": {"type": "Point", "coordinates": [2.2935908247097325, 48.839671292026445]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8fafc026af85b42a5b920c46919150571413366d", "fields": {"lassalle_jean": 26.0, "pecresse_valerie": 56, "zemmour_eric": 69.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "17-18", "geo_shape": {"coordinates": [[[2.318488436203809, 48.89960264275678], [2.3185000811440473, 48.89959285248101], [2.318694583422468, 48.8995454776961], [2.318889062077265, 48.89949810875617], [2.319083563647628, 48.89945073333546], [2.319278041594556, 48.899403363759816], [2.319472542457059, 48.89935598770335], [2.319667019696011, 48.89930861749196], [2.319861519850549, 48.89926124079965], [2.320055995017747, 48.89921386994481], [2.320250495828187, 48.89916649262446], [2.3204449702875, 48.8991191211339], [2.320639470389959, 48.89907174317778], [2.320833944141385, 48.899024371051524], [2.321028443535959, 48.898976992459566], [2.321222916579388, 48.89892961969762], [2.321417415265972, 48.89888224046987], [2.321611887601602, 48.89883486707221], [2.32180638420441, 48.898787488100226], [2.322000857196101, 48.89874011407459], [2.322007782650909, 48.89872700432761], [2.321909315617978, 48.898620279461014], [2.321799843862083, 48.898501626556346], [2.321701377693521, 48.8983949005976], [2.321591906885359, 48.898276247478385], [2.321493441557624, 48.89816952222596], [2.321383973072947, 48.89805086800078], [2.321285508597745, 48.89794414255535], [2.321176039696935, 48.89782548810794], [2.321077576074258, 48.8977187624696], [2.320968108109626, 48.89760010870697], [2.32086964535109, 48.89749338197645], [2.320760178334248, 48.8973747279993], [2.320661716416485, 48.89726800197514], [2.320552251723077, 48.89714934689203], [2.320453790657808, 48.89704262067491], [2.320344325536508, 48.89692396626882], [2.320245865335566, 48.89681723895953], [2.320240998540852, 48.89681411137434], [2.320078824647677, 48.896752785126736], [2.319915692897826, 48.89669109618381], [2.319753521146684, 48.89662976859735], [2.319590390167741, 48.89656807920435], [2.319428217807324, 48.896506752061995], [2.319265087611047, 48.89644506131974], [2.31910291738081, 48.89638373373772], [2.318939787955449, 48.89632204254541], [2.318777617127794, 48.896260714508244], [2.31861448847335, 48.89619902286592], [2.318452319775969, 48.89613769438913], [2.318289191892439, 48.89607600229678], [2.318282694618524, 48.89606615910148], [2.318311666980131, 48.89598425996806], [2.318345375666568, 48.895888970791034], [2.318358506150373, 48.895882021821606], [2.318565297626952, 48.89588049981623], [2.318756107708456, 48.895879171628444], [2.318946916404575, 48.89587784402809], [2.319153709211135, 48.89587632101449], [2.319344517886664, 48.895874992780676], [2.319551310670365, 48.89587346908049], [2.319742119325296, 48.89587214021318], [2.319948912085926, 48.8958706158264], [2.320139720731989, 48.89586928542637], [2.320346513469634, 48.895867760353056], [2.320537322083435, 48.89586643021877], [2.320744114798089, 48.895864904458875], [2.320934923391159, 48.895863573691145], [2.321141716082811, 48.89586204724469], [2.321332524667068, 48.89586071494418], [2.321539317335704, 48.8958591878112], [2.321730125887486, 48.895857855776434], [2.321752525188858, 48.895850399554995], [2.321726750703265, 48.89583760191347], [2.321600660557547, 48.89580441767385], [2.321408983367086, 48.895753530833844], [2.321240832941514, 48.89570927643326], [2.32104915645302, 48.895658389012915], [2.320881006640484, 48.89561413410327], [2.320689330853963, 48.895563246102604], [2.320521181654668, 48.8955189906839], [2.320514116159768, 48.89551472198057], [2.320430035046408, 48.895400311506826], [2.3203333018472723, 48.89527475759238], [2.320317513642016, 48.895253273997966], [2.320299157050518, 48.89524621444957], [2.320281752041171, 48.89525172653562], [2.320088307598918, 48.895206386220515], [2.319897890377308, 48.89516175436044], [2.319704446603737, 48.89511641342152], [2.319514030028501, 48.89507178184667], [2.319320586935271, 48.89502643938474], [2.319130169654299, 48.894981807188124], [2.318936727217907, 48.894936465001706], [2.318746311970594, 48.89489183129957], [2.318552870202799, 48.89484648848937], [2.318362455613733, 48.894801854173245], [2.318169014514542, 48.89475651073928], [2.317978600571844, 48.894711876708406], [2.317785160152944, 48.894666531751454], [2.317594746868395, 48.89462189710656], [2.317401307106429, 48.89457655242507], [2.317210894491825, 48.894531916266956], [2.31701745539848, 48.89448657096172], [2.316827043442043, 48.89444193418962], [2.316636631800296, 48.89439729801217], [2.3164431923434092, 48.894351951765984], [2.316252781371638, 48.89430731407534], [2.316059343947132, 48.894261967213176], [2.315868933633543, 48.89421732890853], [2.31567549687778, 48.89417198142264], [2.315485087210551, 48.89412734340327], [2.315291651135259, 48.89408199439436], [2.315101242126218, 48.89403735576104], [2.314907806707649, 48.893992007027656], [2.31488703497722, 48.89397433338196], [2.314874778875004, 48.89397567789974], [2.314846325028984, 48.89399328575324], [2.314822918100281, 48.89399749016939], [2.314627318114275, 48.894057854955726], [2.314431635514334, 48.89411824412999], [2.3142360346210262, 48.89417860827057], [2.3140403524653, 48.89423899770586], [2.3138447506647912, 48.89429936120071], [2.313649067613138, 48.89435974909075], [2.313644149149769, 48.894376831440894], [2.3135654259657112, 48.89438490940605], [2.313561567984526, 48.89439934932201], [2.313421967587784, 48.89447793955939], [2.313271833768959, 48.894565374332764], [2.31313223248961, 48.89464396422046], [2.312982097693604, 48.89473139951662], [2.312842496895704, 48.89480998906249], [2.312692361146143, 48.89489742308291], [2.312552758101874, 48.89497601227133], [2.312402621375214, 48.89506344681448], [2.312263017448425, 48.89514203565323], [2.312112879768208, 48.89522946892064], [2.311973276322766, 48.89530805741754], [2.311823137677318, 48.89539549030849], [2.311678463040008, 48.89547937690462], [2.311528323405428, 48.89556680941227], [2.311383649180923, 48.895650695646985], [2.311233508557208, 48.895738127771345], [2.311088832017748, 48.89582201362892], [2.31093869040489, 48.89590944536998], [2.310794014278234, 48.89599333086616], [2.310643871676229, 48.896080762223924], [2.310499194610399, 48.89616464645157], [2.3103490496434382, 48.896252078317474], [2.310204371626625, 48.896335962175776], [2.310059693131582, 48.89641984675213], [2.309909548066391, 48.89650727715523], [2.309764867256348, 48.89659116135448], [2.309614721201988, 48.89667859137427], [2.309602827553976, 48.89669337871846], [2.309605754836124, 48.8967027260657], [2.309670501521655, 48.89672713729964], [2.30967095076122, 48.89672730626389], [2.309757819945576, 48.89676005758292], [2.309920584196428, 48.89682122141294], [2.30997095427452, 48.896840211259544], [2.309971292213614, 48.89684033911182], [2.3101195728805433, 48.89689624181231], [2.310282337982144, 48.896957405143056], [2.310430619304572, 48.89701330835172], [2.310593385137584, 48.89707447125316], [2.310741667127327, 48.897130374070734], [2.310904433691851, 48.897191536542906], [2.311059535082996, 48.897250008887795], [2.311222302394874, 48.897311170921334], [2.311377404499437, 48.89736964284812], [2.311540171183054, 48.89743080533437], [2.311693403719938, 48.89748857181752], [2.311856172522328, 48.89754973297624], [2.311890994023378, 48.897562860804854], [2.311933565437915, 48.897578909180005], [2.312096334792996, 48.897640070906505], [2.312270293844621, 48.89770564848069], [2.3124528972057012, 48.89776171563656], [2.312655088095511, 48.897823164952676], [2.312837690919337, 48.89787923150802], [2.313039882707856, 48.897940681067105], [2.313222487722202, 48.89799674703756], [2.313374156331158, 48.89804283995582], [2.31338980983655, 48.89804759807665], [2.31357241560265, 48.89810366350807], [2.313772783202112, 48.898164556363255], [2.313797752603624, 48.89817214401276], [2.313980357882045, 48.898228208808], [2.314116439379145, 48.89826956469095], [2.314299046706314, 48.898325629003104], [2.314498897026188, 48.898386362976495], [2.314681505175003, 48.898442426699475], [2.31488135638941, 48.8985031600282], [2.314889575935103, 48.89850565679832], [2.315072184911239, 48.89856172081879], [2.315265373081813, 48.898620427890286], [2.315447982877041, 48.89867649043265], [2.31564117189728, 48.8987351968918], [2.315823782499762, 48.89879125885528], [2.316016972369663, 48.898849964702116], [2.316199583779397, 48.898906026086735], [2.3162854935148243, 48.898932131899805], [2.316414243481034, 48.89897125522367], [2.316596855732215, 48.899027316895626], [2.31672620668315, 48.89906662227209], [2.316908818252621, 48.899122682556396], [2.317038169676038, 48.89916198759255], [2.317110699057506, 48.89918402621785], [2.317293312816803, 48.899240085917704], [2.31737779301223, 48.8992657556072], [2.317458345444563, 48.89929023283672], [2.317640959950762, 48.89934629200108], [2.317786517050202, 48.89939052058939], [2.317969132261571, 48.89944657924819], [2.318078631327844, 48.89947984986397], [2.318283796032489, 48.89954218956898], [2.318466412311255, 48.899598247461796], [2.318488436203809, 48.89960264275678]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 18, "roussel_fabien": 14.0, "nb_emargement": 1182.0, "nb_procuration": 40.0, "nb_vote_blanc": 16.0, "jadot_yannick": 75.0, "le_pen_marine": 93.0, "nb_exprime": 1159.0, "nb_vote_nul": 9.0, "arr_bv": "17", "arthaud_nathalie": 2, "nb_inscrit": 1571.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1184, "quartier_bv": "68", "geo_point_2d": [48.89678416966071, 2.31618954911135], "melenchon_jean_luc": 450.0, "poutou_philippe": 9.0, "macron_emmanuel": 320.0}, "geometry": {"type": "Point", "coordinates": [2.31618954911135, 48.89678416966071]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "b0fed90a7e5135635fb8b383094740fde7033311", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 100, "zemmour_eric": 77.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "14-12", "geo_shape": {"coordinates": [[[2.323907194785054, 48.82484769652519], [2.323917023493901, 48.82487439530906], [2.324007223019629, 48.824949651744404], [2.324083746477722, 48.82501435393751], [2.324085272862879, 48.82501597155439], [2.324175636201252, 48.8251392592233], [2.32426566068117, 48.825263501832545], [2.324356024875014, 48.825386789337934], [2.324446050212205, 48.82551103178399], [2.324536416623682, 48.8256343191336], [2.324626442818159, 48.825758561416485], [2.324716808723186, 48.82588184859489], [2.324806835774956, 48.82600609071457], [2.324897203897652, 48.82612937773721], [2.324987230444666, 48.826253619685986], [2.325077599423087, 48.82637690654509], [2.325167628189383, 48.82650114833837], [2.325257996661366, 48.826624435026304], [2.32534802628499, 48.826748676656344], [2.325438396974696, 48.82687196318847], [2.325528427455663, 48.82699620465531], [2.325547587918722, 48.82700660519256], [2.32556900655393, 48.827002603238235], [2.325685576482343, 48.82687978682707], [2.325795753136536, 48.826759297813815], [2.325912321986801, 48.82663648115503], [2.326022497602807, 48.82651599190681], [2.32604148165297, 48.82651305809827], [2.326221241528127, 48.82658874456365], [2.326389270796648, 48.82666065654217], [2.326569031674085, 48.82673634337414], [2.326737061897914, 48.82680825485454], [2.326752071278905, 48.82681396765774], [2.326770378316245, 48.8268070321892], [2.326938643301224, 48.82675402115602], [2.327133312656334, 48.82669293184413], [2.327301576904134, 48.82663992029493], [2.327475818322662, 48.826585504916224], [2.327644081875392, 48.826532492880034], [2.327818322577513, 48.82647807699713], [2.327986584084894, 48.826425063567015], [2.32816082543247, 48.82637064718749], [2.328329086233285, 48.82631763416974], [2.328503325502279, 48.826263217278374], [2.328671586970188, 48.82621020378132], [2.328845825522668, 48.82615578638573], [2.328906958337224, 48.826136524819695], [2.328937768481913, 48.82612986244041], [2.328940861416146, 48.82612365610086], [2.329047989337702, 48.82608990275285], [2.329131408558121, 48.82606053478427], [2.329134901943473, 48.82605877361313], [2.3292539287387353, 48.82597519023763], [2.329376486964755, 48.82588950401095], [2.3294955129977453, 48.8258059194831], [2.329618070428921, 48.825720232995906], [2.329737095688174, 48.825636648215024], [2.3298596523243083, 48.82555096146734], [2.329859543688948, 48.825538536846636], [2.32973453372563, 48.82545312560296], [2.329611437663581, 48.825368054121476], [2.329486428515577, 48.825282642605494], [2.329363333249296, 48.82519757175505], [2.3292383249279682, 48.82511215906742], [2.329115230469016, 48.825027087948655], [2.328990222951421, 48.824941675888084], [2.328867129311265, 48.824856603601695], [2.328867049659115, 48.824856548292566], [2.328743501885438, 48.82476763567124], [2.328619824355067, 48.82468068732772], [2.328496276046109, 48.824591775328734], [2.32837259935677, 48.82450482581662], [2.328350479402133, 48.82448131592093], [2.328343381627812, 48.824481413660905], [2.328313330818989, 48.82448756661129], [2.3281073910999153, 48.82450620414322], [2.327912726399422, 48.8245216921063], [2.327706786402461, 48.82454032894781], [2.327512121443959, 48.82455581715767], [2.327317456381407, 48.8245713041511], [2.32711151597561, 48.82458993996664], [2.326916850655054, 48.82460542720684], [2.326710909971288, 48.82462406233193], [2.326516244415956, 48.82463954802022], [2.32631030481626, 48.82465818246255], [2.3261156376409042, 48.82467366838991], [2.32590969776326, 48.82469230214179], [2.325894446753667, 48.824684999552055], [2.325859774892204, 48.82455897821933], [2.325825248713127, 48.82443487066315], [2.325807464392892, 48.82442798188289], [2.325616048827476, 48.82447098385895], [2.325434173376023, 48.82451048769424], [2.325242757188085, 48.824553489968984], [2.325060881165992, 48.82459299323364], [2.324869463005348, 48.824635994900035], [2.324687587786291, 48.82467549670241], [2.324496169014869, 48.82471849776813], [2.324314293213438, 48.82475799989921], [2.324122873831239, 48.82480100036424], [2.3239409960972592, 48.82484050191701], [2.323907194785054, 48.82484769652519]]], "type": "Polygon"}, "circ_bv": "11", "num_bureau": 12, "roussel_fabien": 27.0, "nb_emargement": 1177.0, "nb_procuration": 66.0, "nb_vote_blanc": 16.0, "jadot_yannick": 103.0, "le_pen_marine": 59.0, "nb_exprime": 1157.0, "nb_vote_nul": 4.0, "arr_bv": "14", "arthaud_nathalie": 2, "nb_inscrit": 1589.0, "sec_bv": "14", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1177, "quartier_bv": "55", "geo_point_2d": [48.825550796917156, 2.3268130563480574], "melenchon_jean_luc": 281.0, "poutou_philippe": 3.0, "macron_emmanuel": 444.0}, "geometry": {"type": "Point", "coordinates": [2.3268130563480574, 48.825550796917156]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "3f01b99e3b2941fdef1d5f0dbf60b1514129c380", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 56, "zemmour_eric": 69.0, "hidalgo_anne": 43.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-12", "geo_shape": {"coordinates": [[[2.376633617632594, 48.85799038428717], [2.376643461372284, 48.85799023591], [2.376787320126873, 48.85796557233672], [2.376958133789066, 48.85793591635752], [2.376972620439426, 48.85793343223806], [2.376981368364566, 48.857928722931234], [2.377069327430325, 48.857811395053844], [2.37715379957788, 48.85769840629345], [2.377241757866441, 48.857581078265014], [2.377326229266678, 48.857468089359415], [2.377410698926923, 48.85735510127489], [2.377498656068298, 48.857237772122055], [2.3775831263441303, 48.85712478389946], [2.377671082697587, 48.85700745549486], [2.377755552236867, 48.856894466227814], [2.377843506450492, 48.85677713766502], [2.377842608723947, 48.85677264884496], [2.377822834151933, 48.856763271946384], [2.377656711650983, 48.856704065536995], [2.377485683075804, 48.856643254112775], [2.377319561340607, 48.85658404722896], [2.377148533552867, 48.856523235316246], [2.376982412583425, 48.85646402795798], [2.376811385593879, 48.8564032146576], [2.376777797205433, 48.85637613929652], [2.376748717831545, 48.85637614522759], [2.376742205696639, 48.85637888759991], [2.376571179266912, 48.85631807395155], [2.376411570661365, 48.85626156628242], [2.376240545002726, 48.85620075215507], [2.376080937115031, 48.856144244038944], [2.375909912227379, 48.856083429432644], [2.375750305068415, 48.85602691997029], [2.375749978038373, 48.856026800449435], [2.375582635611369, 48.85596333080949], [2.375418283231205, 48.855900478201605], [2.375250941624722, 48.85583700719132], [2.3750865900430203, 48.8557741541207], [2.374919249235496, 48.85571068353864], [2.374754898452456, 48.8556478300053], [2.374587558465465, 48.85558435805288], [2.374423208480887, 48.85552150405685], [2.3744226984704833, 48.85552130083551], [2.37425233677182, 48.855449965775925], [2.374077966241003, 48.855377354004304], [2.3739076054958392, 48.855306017545395], [2.373733235927035, 48.85523340526208], [2.373562876113659, 48.855162069202414], [2.373388507507068, 48.8550894564073], [2.373218149999003, 48.85501811985479], [2.373043782365341, 48.85494550564866], [2.373037568712343, 48.854945980325354], [2.37302300787241, 48.85496102571199], [2.372973573932291, 48.85500842596533], [2.372924539038085, 48.85505482281406], [2.372911865447746, 48.85506660803778], [2.372918279079558, 48.85507590406006], [2.372975911567695, 48.85509843981779], [2.373025638381322, 48.85511765779018], [2.3730317965482453, 48.85512281545522], [2.373078680740778, 48.85522514906497], [2.373126908393699, 48.855330132874634], [2.373173792959568, 48.85543246642802], [2.373222020995911, 48.8555374501797], [2.373235021230553, 48.85554383441011], [2.373458099470307, 48.85554428588303], [2.373675894040456, 48.85554357880127], [2.373898970919991, 48.85554402944514], [2.374116766845919, 48.855543321568064], [2.374123720551674, 48.855544554074996], [2.374204075963966, 48.855575974040015], [2.374306468509595, 48.855615543075686], [2.37431111107366, 48.85562809799386], [2.37421194880885, 48.85573194629959], [2.3741123760653062, 48.85583555494018], [2.374013211635941, 48.855939403953954], [2.373913638111677, 48.85604301151051], [2.373814474254142, 48.85614686034736], [2.373714898564582, 48.856250468611314], [2.373615733927035, 48.85635431636478], [2.373516158808688, 48.85645792445114], [2.373520327540382, 48.856470317725545], [2.37369899235208, 48.85654568941891], [2.3738758696042153, 48.856621620772465], [2.374054536811899, 48.85669699193188], [2.3742314150848842, 48.85677292364886], [2.374235542876194, 48.85678522404674], [2.374205026489139, 48.85681747789671], [2.374175905749905, 48.85685029573429], [2.374179888070937, 48.85686222484073], [2.374332608952891, 48.85693226072768], [2.3745064051522062, 48.85701173732208], [2.374659126900382, 48.85708177368221], [2.374832922733678, 48.857161249784575], [2.374985645358982, 48.85723128571852], [2.375159442189035, 48.85731076133596], [2.375312165702251, 48.857380795944486], [2.375485963529059, 48.857460271076995], [2.375638687908623, 48.85753030615865], [2.375812486732194, 48.85760978080622], [2.375965211988893, 48.857679815461715], [2.376139013172022, 48.85775928963147], [2.376291739316726, 48.85782932296151], [2.376465540133725, 48.85790879663921], [2.376618267144801, 48.85797883044238], [2.376633617632594, 48.85799038428717]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 12, "roussel_fabien": 31.0, "nb_emargement": 1392.0, "nb_procuration": 92.0, "nb_vote_blanc": 22.0, "jadot_yannick": 150.0, "le_pen_marine": 57.0, "nb_exprime": 1368.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 2, "nb_inscrit": 1685.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1393, "quartier_bv": "43", "geo_point_2d": [48.85665149022988, 2.3755570763557], "melenchon_jean_luc": 489.0, "poutou_philippe": 5.0, "macron_emmanuel": 448.0}, "geometry": {"type": "Point", "coordinates": [2.3755570763557, 48.85665149022988]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "386bb8673a8fedaf3535c98ac7656c2bb25eb3d7", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 47, "zemmour_eric": 85.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "19-17", "geo_shape": {"coordinates": [[[2.384227777390783, 48.87928645700712], [2.384230397579634, 48.87927612009755], [2.384417621940647, 48.87920499537024], [2.384589657634105, 48.87913998145901], [2.384776879651736, 48.87906885615408], [2.384948914457644, 48.87900384081929], [2.384949504921052, 48.87900360463104], [2.3850808231847243, 48.87894796856989], [2.385220702811047, 48.87888896876751], [2.38535201913262, 48.878833332396084], [2.385491898143831, 48.878774332270645], [2.385512686825813, 48.87878040153727], [2.38554881807052, 48.878920615375], [2.38558364513611, 48.879057318700404], [2.385619776763864, 48.87919753248146], [2.385654604211596, 48.879334234852614], [2.385666612103663, 48.87934168716329], [2.385819851099787, 48.879352010810095], [2.386002878388195, 48.879364817203474], [2.386017799276099, 48.87935453524983], [2.385987960480899, 48.87922380404682], [2.385958257040616, 48.879095251691105], [2.385928418543427, 48.87896452044244], [2.385898715408592, 48.87883596714243], [2.385868877209409, 48.87870523584816], [2.385839174358811, 48.87857668340242], [2.385809336457529, 48.87844595206252], [2.385779633901766, 48.87831739957175], [2.385783676485641, 48.8783095529702], [2.38583294149351, 48.87827840110327], [2.385881580804496, 48.87824919755296], [2.385885956232354, 48.878241567595005], [2.38586173168061, 48.87809570680596], [2.385838635623893, 48.8779546380197], [2.385815541055611, 48.87781356921794], [2.385791315547428, 48.87766770745169], [2.385786402534677, 48.87766172957269], [2.385703396667898, 48.87761688300658], [2.385620439299708, 48.877572213797485], [2.385615469583072, 48.877565959525164], [2.385602115477429, 48.877455022346744], [2.385589738730343, 48.877346075895], [2.3855763833724772, 48.87723513868459], [2.38556400672086, 48.877126193107735], [2.385551630131734, 48.877017246619594], [2.385538276302655, 48.876906309378825], [2.385538362119522, 48.87688840322716], [2.385535672498408, 48.87688674454404], [2.385398129040458, 48.87688633254932], [2.385289250924509, 48.87688580409126], [2.385286353985346, 48.87688600055848], [2.38510288333633, 48.876911729778215], [2.384916534817199, 48.87693787201227], [2.38473306516617, 48.87696360067101], [2.384546714912431, 48.876989742321214], [2.3843632448959973, 48.877015470411955], [2.384176894281686, 48.87704161058598], [2.383993423899756, 48.87706733810872], [2.383807074267022, 48.87709347861208], [2.383791233395438, 48.87708738414165], [2.383747676972051, 48.87699617094613], [2.383706351776077, 48.87691033462661], [2.383662795649407, 48.87681912138552], [2.3836214707337993, 48.876733285022915], [2.383616412939963, 48.87671791008237], [2.383604839170383, 48.876715326064264], [2.383439711255636, 48.87673975052386], [2.3832652445442912, 48.87676593070383], [2.383062705725512, 48.876795887948134], [2.382888238647275, 48.87682206667805], [2.382885370384617, 48.87682271919633], [2.382696970472082, 48.87688175486059], [2.382510452044379, 48.87694030170252], [2.38232205128145, 48.87699933677042], [2.382135533374626, 48.87705788302903], [2.381949013695742, 48.877116428087604], [2.381760611648663, 48.87717546316177], [2.381754760282725, 48.87717897091386], [2.381670992137499, 48.877271382575415], [2.381587527331315, 48.87736359968485], [2.381503759955724, 48.877456011220936], [2.381420294546883, 48.87754822909761], [2.381336526577718, 48.87764064050119], [2.381253060587476, 48.87773285734652], [2.381243427215238, 48.87773713603689], [2.3810136270438322, 48.8777601274774], [2.380762040795585, 48.87778565521693], [2.380740872640661, 48.87778176492985], [2.380727764098039, 48.87779575726653], [2.38067657532054, 48.87792356802398], [2.38062655834778, 48.878048787540436], [2.380575369083924, 48.87817659732598], [2.380525350261405, 48.8783018167643], [2.380475332561703, 48.878427036174564], [2.380424142544268, 48.8785548467509], [2.380374124358331, 48.8786800660901], [2.380322933854526, 48.878807875694505], [2.380322790995355, 48.87883363358004], [2.380345567952915, 48.87883630827371], [2.380413396854708, 48.87883529595562], [2.380625865740802, 48.87883265328352], [2.380825269350379, 48.8788296755597], [2.381037736829192, 48.87882703214956], [2.381237140393797, 48.87882405373969], [2.381449609192215, 48.87882140960561], [2.381649012711633, 48.87881843050975], [2.381861481455522, 48.878815786543925], [2.382060884929848, 48.878812806762035], [2.382273353640548, 48.87881016116599], [2.382472757069868, 48.878807180698026], [2.38247929132447, 48.87880818837818], [2.382633224925001, 48.87886084038871], [2.382788117346507, 48.8789119997557], [2.382942051566178, 48.87896465136418], [2.3830969445997843, 48.87901581032676], [2.383250879449041, 48.879068460633924], [2.383405773084197, 48.87911962009139], [2.383559708552485, 48.879172269996474], [2.383714602799642, 48.87922342904955], [2.38371756279497, 48.879224137670576], [2.383932945423132, 48.879257810968305], [2.384164923039719, 48.87929108180683], [2.384179951099413, 48.87929817208559], [2.3841989372142303, 48.879293521286925], [2.384227777390783, 48.87928645700712]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 17, "roussel_fabien": 22.0, "nb_emargement": 1176.0, "nb_procuration": 60.0, "nb_vote_blanc": 6.0, "jadot_yannick": 92.0, "le_pen_marine": 49.0, "nb_exprime": 1168.0, "nb_vote_nul": 6.0, "arr_bv": "19", "arthaud_nathalie": 6, "nb_inscrit": 1515.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1180, "quartier_bv": "76", "geo_point_2d": [48.8780484663253, 2.383438137359042], "melenchon_jean_luc": 468.0, "poutou_philippe": 12.0, "macron_emmanuel": 336.0}, "geometry": {"type": "Point", "coordinates": [2.383438137359042, 48.8780484663253]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "82553d76252f229627c9c56d97d62d95484f1f13", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 60, "zemmour_eric": 95.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "12-15", "geo_shape": {"coordinates": [[[2.389094970221532, 48.847360229864485], [2.389086759922747, 48.84737302713685], [2.388994028686767, 48.84747825571205], [2.388899182043428, 48.847585122819574], [2.388806450051289, 48.84769035122937], [2.38871160399992, 48.847797218174755], [2.388618869888976, 48.84790244641215], [2.388524023066934, 48.848009313188534], [2.388523803590142, 48.848018146429105], [2.388611320716992, 48.84812462941343], [2.38869808040731, 48.84822938079146], [2.388785598245, 48.848335863628094], [2.388872358637299, 48.84844061485984], [2.388959877185937, 48.8485470975488], [2.389046638280223, 48.84865184863435], [2.389134157539614, 48.84875833117559], [2.389220919335897, 48.848863082114875], [2.389308439316688, 48.848969563609195], [2.389395201814973, 48.84907431440217], [2.389482722496093, 48.849180796648106], [2.389569485696389, 48.84928554729483], [2.389598430849504, 48.849328419666065], [2.389626288403877, 48.849325235077], [2.389751917881699, 48.84930589857406], [2.389942644854627, 48.84927773666469], [2.390142548813121, 48.84924696633724], [2.39033327672183, 48.84921880381065], [2.3905331802236, 48.84918803282892], [2.390723906342937, 48.84915986967119], [2.390923809387975, 48.84912909803517], [2.391114536443075, 48.849100934260186], [2.391314439031373, 48.849070161969905], [2.391505165659758, 48.84904199757072], [2.391705067791306, 48.84901122462614], [2.391895792630097, 48.84898305959585], [2.392095694304889, 48.84895228599701], [2.392286420079618, 48.848924120349466], [2.3924863212976453, 48.84889334609632], [2.392677045282766, 48.84886517981768], [2.392867770424385, 48.84883701324118], [2.393067670965062, 48.84880623801435], [2.393104451409061, 48.848800805427786], [2.393107244512517, 48.84880119732447], [2.393138027432695, 48.84879484394465], [2.393291971671101, 48.84877210928724], [2.393490010964249, 48.84874314420924], [2.393680735219821, 48.848714976333696], [2.393878774079769, 48.848686010610756], [2.394069497916206, 48.84865784211405], [2.394267536342945, 48.84862887574612], [2.394458259760039, 48.84860070662832], [2.394656297743114, 48.84857174051469], [2.39484702074096, 48.84854357077568], [2.3950450583012612, 48.8485146031178], [2.395235780879847, 48.848486432757674], [2.395370607607886, 48.848466710557105], [2.395390404684311, 48.84845864177155], [2.39537302432984, 48.848420263049036], [2.395340315282178, 48.84829071219128], [2.395306543914482, 48.848160302452506], [2.395273836568331, 48.84803075065396], [2.395240065535456, 48.847900340865955], [2.395207357155082, 48.84777078901211], [2.395173586456926, 48.84764037917497], [2.395140879767605, 48.84751082727956], [2.39510710940436, 48.847380417393204], [2.395074401670383, 48.84725086634184], [2.395040633015007, 48.84712045551386], [2.395007925609438, 48.846990904414085], [2.394974155915802, 48.846860494429365], [2.39494144884908, 48.84673094238185], [2.39490768085285, 48.846600532354785], [2.394874974114527, 48.84647098025897], [2.394841205090481, 48.8463405701758], [2.394827057473561, 48.84633310411064], [2.394661043343437, 48.84633887629397], [2.394485532636489, 48.84634325654569], [2.394451035954097, 48.84632458040023], [2.394428562919461, 48.846335377632904], [2.394395711147367, 48.84637273875456], [2.394303657940378, 48.84647581375686], [2.394195486563463, 48.84659883571123], [2.394103432571553, 48.846701909639215], [2.393995260242237, 48.846824932286914], [2.393903205454942, 48.84692800603996], [2.393795032194027, 48.847051027582324], [2.393702976600982, 48.84715410205969], [2.393683350456451, 48.84715686884319], [2.393520856627751, 48.84708074673052], [2.393365082402395, 48.84700815515484], [2.393202589502371, 48.846932032599796], [2.393046816164852, 48.846859440600014], [2.392884325566385, 48.846783316710145], [2.392728551754194, 48.84671072427937], [2.392566062073819, 48.84663460084638], [2.392410290511968, 48.84656200799847], [2.392254518021471, 48.846489414936094], [2.39209202972363, 48.846413290844204], [2.3920619875684013, 48.846391296433936], [2.392043472024429, 48.8463946612683], [2.391977261533932, 48.84645506638217], [2.391859251625602, 48.84656151328994], [2.391752796499553, 48.84665863224467], [2.391634785671787, 48.846765078911574], [2.391528331063823, 48.84686219855502], [2.391410319316612, 48.846968644981075], [2.3913038625117933, 48.84706576440015], [2.391185849855632, 48.84717220968602], [2.391079393579389, 48.84726932889455], [2.39097293554364, 48.84736644799295], [2.390854921520137, 48.84747289382298], [2.390842499038913, 48.84747652692279], [2.39062667616301, 48.84746153281314], [2.390413297427424, 48.84744717581851], [2.390197476159194, 48.8474321809412], [2.38998409767246, 48.8474178222814], [2.389768275276234, 48.84740282752181], [2.389554897027945, 48.84738846809616], [2.389339076239308, 48.8473734725689], [2.389125698229576, 48.8473591123774], [2.389094970221532, 48.847360229864485]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 15, "roussel_fabien": 25.0, "nb_emargement": 1273.0, "nb_procuration": 68.0, "nb_vote_blanc": 17.0, "jadot_yannick": 106.0, "le_pen_marine": 70.0, "nb_exprime": 1252.0, "nb_vote_nul": 4.0, "arr_bv": "12", "arthaud_nathalie": 7, "nb_inscrit": 1618.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1273, "quartier_bv": "46", "geo_point_2d": [48.847926883306066, 2.392095938121077], "melenchon_jean_luc": 442.0, "poutou_philippe": 6.0, "macron_emmanuel": 384.0}, "geometry": {"type": "Point", "coordinates": [2.392095938121077, 48.847926883306066]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8304259716f37a48fc85475bc1e1d3fe1f364488", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 95, "zemmour_eric": 98.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 23.0, "date_tour": "2022-04-10", "id_bvote": "15-45", "geo_shape": {"coordinates": [[[2.31080211931362, 48.83301668710698], [2.310742401795921, 48.83298486488523], [2.310618543585349, 48.8328810413893], [2.31049167658561, 48.83276876697345], [2.310367819387936, 48.83266494319785], [2.310240954816234, 48.83255266850223], [2.310117098643245, 48.83244884354766], [2.309990233775317, 48.83233656855659], [2.309945139258516, 48.832298766686534], [2.309940776886939, 48.83229261317739], [2.309928460268003, 48.83228386944331], [2.309849701006536, 48.83221784787376], [2.309746747704186, 48.832130516232795], [2.309746645308806, 48.83213043020123], [2.30962279111149, 48.832026605594955], [2.309505820127701, 48.83192984560629], [2.309381966898495, 48.83182601983272], [2.309264996811777, 48.831729259591235], [2.3091411445268433, 48.831625434449016], [2.309024173975087, 48.831528673946806], [2.308900322658254, 48.83142484763732], [2.308783354365656, 48.83132808689016], [2.308666386507268, 48.83123132602021], [2.308542536597516, 48.831127500212], [2.3084255696481, 48.83103073818993], [2.308301720694505, 48.83092691211375], [2.308184753268011, 48.830830150730286], [2.308079543418748, 48.83074194825499], [2.308064699152362, 48.830725504519314], [2.308063612956157, 48.83072492443309], [2.3080449761811153, 48.83070930056944], [2.30792555910512, 48.830612121814696], [2.307801712141852, 48.83050829518197], [2.307682294617589, 48.83041111615902], [2.307558448628269, 48.83030728835649], [2.307439033380077, 48.830210109081115], [2.30731518834091, 48.83010628190739], [2.307276306660282, 48.83007464057279], [2.307267353505037, 48.83007006394957], [2.307209216401413, 48.83009911883118], [2.307049958068923, 48.83018845585672], [2.306890022292036, 48.83027870430584], [2.30673076286404, 48.830368040892054], [2.306570825983529, 48.83045828889986], [2.306411565459921, 48.83054762504673], [2.306251627475881, 48.830637872613224], [2.306242173410194, 48.83064002124594], [2.306058906535977, 48.830634655412496], [2.305875710777015, 48.830629475881686], [2.305692443977491, 48.83062410948667], [2.305509249654178, 48.830618929402405], [2.30532598156738, 48.83061356243788], [2.305142787329534, 48.83060838089292], [2.304959519305559, 48.83060301426612], [2.304776325141206, 48.8305978321598], [2.304593057191942, 48.83059246497144], [2.304409863101091, 48.83058728230376], [2.304226596588923, 48.830581914561726], [2.304043401209405, 48.830576731324804], [2.3040345766619152, 48.83057855607367], [2.303901767357571, 48.83064517796157], [2.303773734919114, 48.83070896209354], [2.303645702167358, 48.83077274608481], [2.30351289049714, 48.83083936842073], [2.303384857106066, 48.83090315212533], [2.303252046144475, 48.83096977327249], [2.303247939552769, 48.83098073253556], [2.303333345534286, 48.83110173661382], [2.303409803523253, 48.831211700819146], [2.30348626319687, 48.83132166497272], [2.303571670290121, 48.83144266884399], [2.30364813065595, 48.83155263197211], [2.303733537129105, 48.83167363659422], [2.303809998175134, 48.831783599596186], [2.303895406776733, 48.83190460318642], [2.303928308204298, 48.83194842069303], [2.303929884897299, 48.831964807501066], [2.30393919361524, 48.83196867233114], [2.304067535976204, 48.831958524151695], [2.304275069661505, 48.831941954493466], [2.304449675132108, 48.831928148333496], [2.304657208575015, 48.83191157801172], [2.304831812492348, 48.83189777038627], [2.305039345692848, 48.83188119940095], [2.305213950757538, 48.831867392124536], [2.305218045114886, 48.8318666262574], [2.305371166646082, 48.83181990720941], [2.305531713678681, 48.831770533853714], [2.305684834646521, 48.831723814400185], [2.3058453824482052, 48.83167444062711], [2.305863095414256, 48.83167828933], [2.3059482850366813, 48.83178149961829], [2.3060280047998702, 48.83187728433005], [2.3061077248680872, 48.83197306808119], [2.306192915456561, 48.8320762781681], [2.306193277838232, 48.83207668678793], [2.306305788506481, 48.83219646706196], [2.306418209924943, 48.83231521241533], [2.306530722987052, 48.83243499246018], [2.306643144058094, 48.83255373846824], [2.306755658163819, 48.832673517376655], [2.30686808162387, 48.83279226315591], [2.306980596749304, 48.832912042726534], [2.307093019873916, 48.83303078826117], [2.30709496829154, 48.833034352977705], [2.307118270849651, 48.83314842343218], [2.30714143688616, 48.833258525938746], [2.307164603020529, 48.833368628430065], [2.307187905880445, 48.83348269883688], [2.307188238822148, 48.83348378631007], [2.307245970617876, 48.8336262622851], [2.307302387352292, 48.83376428139336], [2.307358804373402, 48.83390230135727], [2.30741653709882, 48.834044777196716], [2.307428109519348, 48.834061750632564], [2.307433551624543, 48.83406281192717], [2.307572221571383, 48.834027077736835], [2.307739272398203, 48.83398524081565], [2.307940250823331, 48.83393344874364], [2.308107301054734, 48.83389161130492], [2.3081246433869422, 48.83389645851889], [2.308204097885854, 48.83401811230461], [2.308284279795741, 48.83413949232261], [2.308363736411745, 48.83426114508452], [2.3084439190671793, 48.834382524969115], [2.308506555752849, 48.834417471609534], [2.30850955672407, 48.8344163647425], [2.308611925728311, 48.834309843860524], [2.308727959968325, 48.83419398182482], [2.3088303267272883, 48.834087460726906], [2.308946359974942, 48.83397159935561], [2.309048727213179, 48.833865078057485], [2.309164759492329, 48.833749215552], [2.309260717569692, 48.8337116677882], [2.30926692835846, 48.8337016009903], [2.309239716144439, 48.833634635650355], [2.309224057296043, 48.833580777047935], [2.309231266078401, 48.83357106317291], [2.309425087046334, 48.833506060433265], [2.309606805792756, 48.833445594115645], [2.309800625837699, 48.833380589860845], [2.309982343711133, 48.83332012296589], [2.310176162821372, 48.83325511809526], [2.310357879821814, 48.833194650623], [2.310551697997144, 48.833129645136545], [2.310733414124595, 48.833069177086976], [2.310793901456739, 48.83304793347722], [2.310797455989394, 48.83303441747915], [2.31080211931362, 48.83301668710698]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 45, "roussel_fabien": 15.0, "nb_emargement": 1332.0, "nb_procuration": 60.0, "nb_vote_blanc": 11.0, "jadot_yannick": 120.0, "le_pen_marine": 87.0, "nb_exprime": 1317.0, "nb_vote_nul": 4.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1657.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1332, "quartier_bv": "57", "geo_point_2d": [48.832012133354375, 2.3072751656793806], "melenchon_jean_luc": 349.0, "poutou_philippe": 9.0, "macron_emmanuel": 490.0}, "geometry": {"type": "Point", "coordinates": [2.3072751656793806, 48.832012133354375]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1a1a7c6847e8669c5955ed8f0e3735bc6155a60f", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 66, "zemmour_eric": 39.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-46", "geo_shape": {"coordinates": [[[2.334813040388867, 48.8947115198629], [2.334804538240828, 48.89472737893973], [2.334672941477751, 48.894827640813226], [2.334543723999017, 48.89492685725559], [2.334412126229489, 48.8950271188242], [2.33428290912252, 48.89512633497465], [2.33415130898266, 48.89522659623087], [2.3340220908835843, 48.895325812081836], [2.333890489737248, 48.895426073033114], [2.333761270646056, 48.8955252885846], [2.333629668493236, 48.895625549231056], [2.333500448409919, 48.895724764483035], [2.333368845250606, 48.89582502482458], [2.333239624175157, 48.89592423977709], [2.33310802000934, 48.89602449981376], [2.33297879794175, 48.89612371446674], [2.332962015444673, 48.89613661347736], [2.332974107867411, 48.89615422028315], [2.333056452084639, 48.89626282041142], [2.333141665811909, 48.89637551666636], [2.333224010728663, 48.89648411665747], [2.333309225192458, 48.89659681187115], [2.333391570808744, 48.896705411725115], [2.333476785985838, 48.896818107696035], [2.333491534415854, 48.896822930094835], [2.333699433319822, 48.896796923897945], [2.333900210692468, 48.89677048742583], [2.334108109182874, 48.896744480518265], [2.334308884781945, 48.89671804335214], [2.3345167842225862, 48.89669203574145], [2.334717559411879, 48.896665597888905], [2.334918334385772, 48.896639160598426], [2.335126233218547, 48.89661315102866], [2.335131492862208, 48.896613140659], [2.33531244152922, 48.89663620093315], [2.335482604785901, 48.89665780893911], [2.335663553752102, 48.89668086958106], [2.335833717300604, 48.8967024770873], [2.336003880990351, 48.8967240843513], [2.336184830417788, 48.89674714420425], [2.336195668981619, 48.896754391646354], [2.336235703403865, 48.896902125385154], [2.336272331885973, 48.89703522357024], [2.336308959191544, 48.89716832172038], [2.3363489956059302, 48.89731605627229], [2.336345768960647, 48.897323607963564], [2.336215202241994, 48.89742057651986], [2.336053332049205, 48.89754891680974], [2.336063528222246, 48.89756365832114], [2.336269096188326, 48.89756654696447], [2.336458801838738, 48.89756817555647], [2.336664369833125, 48.89757106442058], [2.336854075523916, 48.89757269148725], [2.33705964219413, 48.89757557966528], [2.3372493479136223, 48.89757720610582], [2.33745491598752, 48.89758009361297], [2.337644621735906, 48.897581719427365], [2.337686449495127, 48.89757964220362], [2.337683705555899, 48.89754712113901], [2.337773508181835, 48.897441129362434], [2.337865399527959, 48.897333787489096], [2.337955201404572, 48.897227796454885], [2.3380470920108722, 48.89712045352196], [2.338136893149607, 48.89701446233086], [2.338228782993427, 48.89690712013687], [2.33831858204181, 48.89680112788207], [2.338410471134391, 48.89669378552778], [2.338401247019796, 48.8966805442468], [2.338191207384009, 48.89665307410688], [2.337978358866486, 48.89662544148004], [2.337768318323771, 48.896597969690234], [2.337555470255988, 48.896570336310475], [2.3373454301472902, 48.89654286467688], [2.337132582529253, 48.896515230544104], [2.336922544241376, 48.89648775727576], [2.3367096970731, 48.89646012239], [2.336499657855341, 48.89643264927031], [2.336286811136834, 48.89640501363156], [2.336278615775535, 48.89639072387857], [2.336400486971805, 48.89628574710958], [2.336519786558522, 48.8961817362212], [2.336641656779305, 48.89607675918677], [2.33676095540544, 48.89597274803828], [2.336882824650646, 48.8958677707384], [2.337002122316104, 48.895763759329846], [2.337123990585944, 48.89565878176452], [2.337243287290736, 48.895554770095885], [2.33736515322114, 48.895449792257565], [2.337484448965278, 48.89534578032881], [2.337485971863833, 48.89533661208276], [2.337475845065204, 48.89532081614262], [2.33742523119877, 48.89524186981136], [2.337342934638289, 48.895123366868546], [2.337329211381299, 48.89511773762239], [2.337296336911776, 48.89512454702709], [2.33710621414801, 48.89508556859071], [2.336916343896983, 48.895046276485296], [2.336726221714882, 48.89500729654359], [2.336536352024718, 48.894968004732185], [2.336346231776801, 48.894929024192], [2.336156362658752, 48.89488973177531], [2.335966241617399, 48.89485075062154], [2.335776373071575, 48.89481145759959], [2.335586252600453, 48.89477247583977], [2.33539638599072, 48.894733182220136], [2.335361445814756, 48.89473951198459], [2.335355564052796, 48.89474638792937], [2.335367976366894, 48.89477850594378], [2.335379454289578, 48.894819714508785], [2.335361372213061, 48.89482978907826], [2.3352257995671772, 48.89479723205802], [2.334977214566718, 48.894739030916966], [2.334841642397488, 48.89470647345908], [2.334813040388867, 48.8947115198629]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 46, "roussel_fabien": 24.0, "nb_emargement": 1141.0, "nb_procuration": 53.0, "nb_vote_blanc": 19.0, "jadot_yannick": 86.0, "le_pen_marine": 61.0, "nb_exprime": 1120.0, "nb_vote_nul": 4.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1456.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1143, "quartier_bv": "69", "geo_point_2d": [48.8960885134674, 2.3356522009162783], "melenchon_jean_luc": 409.0, "poutou_philippe": 5.0, "macron_emmanuel": 367.0}, "geometry": {"type": "Point", "coordinates": [2.3356522009162783, 48.8960885134674]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8bdf301754ec0a8cf33da4a2920b0ac8d22eee70", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 96, "zemmour_eric": 118.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "17-13", "geo_shape": {"coordinates": [[[2.315366195202698, 48.8862419497477], [2.315357761065535, 48.886231026815516], [2.315302656335507, 48.88619564950715], [2.3152300949382623, 48.886149063803316], [2.315209902175134, 48.88614991689513], [2.315056532537226, 48.886277332736995], [2.31490566052522, 48.8864026717196], [2.314888877735214, 48.88640512349324], [2.314799510033892, 48.88637563387204], [2.314715190782464, 48.88634781165762], [2.314705149031812, 48.886347244263426], [2.314552423219031, 48.886377645155974], [2.314399075102186, 48.88640816999546], [2.314246348932028, 48.886438570495926], [2.314093000468196, 48.886469094042496], [2.31408109743879, 48.88646778567718], [2.313951082897348, 48.88640612103728], [2.313807521621832, 48.88633803203877], [2.313802514606718, 48.88632795242402], [2.31388254213671, 48.88616551526741], [2.313962557926791, 48.88600310315012], [2.313957592925031, 48.885993043564724], [2.313799332338977, 48.885917377972646], [2.313643496602866, 48.88584287091235], [2.313485238293226, 48.8857672049026], [2.313329403456026, 48.885692697423295], [2.313171144695554, 48.88561703098022], [2.31301531075716, 48.885542523081945], [2.313013877023597, 48.8855417333366], [2.312891590835725, 48.885464399597154], [2.312765988922393, 48.88538496833847], [2.312643703470679, 48.885307634334836], [2.312518102313571, 48.88522820280474], [2.312395817598213, 48.88515086853692], [2.3122702185608253, 48.885071436743324], [2.312269268458183, 48.885059120332365], [2.312407048896193, 48.88495226973422], [2.312544090248452, 48.88484599389658], [2.312681869558777, 48.88473914296153], [2.312818908437589, 48.88463286588163], [2.3129566879717602, 48.884526015516684], [2.313093725728859, 48.8844197381017], [2.313231504147125, 48.88431288650051], [2.313368540770663, 48.88420660964963], [2.313506318061269, 48.884099757711546], [2.313643353574871, 48.883993479626255], [2.313646147117938, 48.88398535038544], [2.313623969369974, 48.883930152613694], [2.313597340815183, 48.88386387741872], [2.313561952845777, 48.8838310746207], [2.313543211939142, 48.8838377157636], [2.313416781794824, 48.88389899979789], [2.313257187990041, 48.88397636330528], [2.313092013470542, 48.88405642675174], [2.312932418712594, 48.88413378891586], [2.31276724318259, 48.884213852802084], [2.3126076474597133, 48.88429121452223], [2.3124424709310603, 48.88437127794894], [2.312282874243253, 48.88444863922511], [2.312117696715946, 48.88452870219234], [2.311958099063204, 48.88460606302453], [2.311792920537242, 48.8846861255322], [2.311633321919563, 48.8847634859204], [2.31146814239494, 48.88484354796858], [2.311308542812421, 48.884920907912786], [2.311143362301031, 48.88500096860217], [2.31098376174157, 48.88507832900165], [2.310824159356213, 48.885155688275816], [2.310658978707105, 48.88523574918696], [2.310499375356794, 48.885313108017115], [2.310334193709018, 48.88539316846876], [2.310331861890409, 48.885394602961256], [2.310327013479266, 48.885401332612446], [2.310308428335893, 48.885415804623996], [2.310204119515407, 48.88549703301764], [2.310060515835277, 48.88560839092976], [2.310022807840592, 48.8856377544506], [2.310017856652759, 48.88564420830038], [2.310066838181851, 48.88567208295086], [2.310235252473399, 48.88575205417055], [2.310404058920907, 48.8858322117661], [2.310572472872784, 48.885912183391184], [2.310741281722088, 48.885992340507435], [2.310909696709727, 48.88607231164659], [2.3110785052335823, 48.88615246826789], [2.311083119795612, 48.886156299889], [2.311143033610558, 48.88625089179914], [2.311203178718721, 48.88634585012881], [2.311263092969847, 48.88644044196253], [2.311323238527771, 48.88653539931625], [2.311329704833679, 48.88653997093419], [2.311506248869806, 48.886598388710034], [2.311688257532288, 48.88665857604082], [2.311864801021, 48.88671699237462], [2.312046810512455, 48.88677717915386], [2.312223356157266, 48.88683559585975], [2.312405366489569, 48.88689578118823], [2.312581911575068, 48.88695419735137], [2.312763922736334, 48.887014382128264], [2.312940468626165, 48.88707279775644], [2.313122480604528, 48.88713298288106], [2.31329902866235, 48.88719139798207], [2.313481041481539, 48.8872515816559], [2.313657588980033, 48.887309996214114], [2.3138396026281782, 48.88737017933637], [2.313840718819363, 48.887382341973705], [2.313889361054779, 48.88738791057191], [2.314002236451651, 48.88736463604618], [2.314185713463294, 48.88732680277386], [2.314250268245409, 48.88731349190496], [2.314268400909109, 48.8873131532829], [2.3142755913234883, 48.88730553487063], [2.314471015862614, 48.88722956515352], [2.314654952952731, 48.8871580601876], [2.314656462016076, 48.88715737993856], [2.314684303306621, 48.887142930579394], [2.314718042108675, 48.88712542037299], [2.314731010971828, 48.88711455964481], [2.314717187853936, 48.887102976302835], [2.3146979228846902, 48.88708832657429], [2.314697813495614, 48.887088245008485], [2.314612451063847, 48.88702489953601], [2.314552989483401, 48.88698077346896], [2.314552195906811, 48.886969472441145], [2.314653247977555, 48.886878843534774], [2.314785205096907, 48.8867604968804], [2.314886256356583, 48.88666986776011], [2.315018212428647, 48.88655151992716], [2.315119262865535, 48.8864608914923], [2.315251217878489, 48.886342543380074], [2.315352267516051, 48.88625191383203], [2.315366195202698, 48.8862419497477]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 13, "roussel_fabien": 13.0, "nb_emargement": 1324.0, "nb_procuration": 79.0, "nb_vote_blanc": 11.0, "jadot_yannick": 106.0, "le_pen_marine": 54.0, "nb_exprime": 1310.0, "nb_vote_nul": 3.0, "arr_bv": "17", "arthaud_nathalie": 6, "nb_inscrit": 1671.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1324, "quartier_bv": "67", "geo_point_2d": [48.88594549445175, 2.312553040443332], "melenchon_jean_luc": 240.0, "poutou_philippe": 6.0, "macron_emmanuel": 619.0}, "geometry": {"type": "Point", "coordinates": [2.312553040443332, 48.88594549445175]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "68ac4c4bc1d0406a79670a50c4bdaac6d8c576d6", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 85, "zemmour_eric": 91.0, "hidalgo_anne": 37.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "12-30", "geo_shape": {"coordinates": [[[2.399036454241378, 48.84763702208292], [2.399046581476699, 48.84764413648016], [2.399066423392961, 48.84774932927365], [2.399085407864669, 48.84784651979149], [2.3991052499364622, 48.847951712559414], [2.399124234543938, 48.84804890395277], [2.399149181868327, 48.848081729748685], [2.399191729337408, 48.848078553753524], [2.399383964191944, 48.84806213174309], [2.399584026385983, 48.84804451749018], [2.3997762610017013, 48.84802809394966], [2.399976322922118, 48.848010479939504], [2.400168557288542, 48.84799405576816], [2.400368620318681, 48.84797644020905], [2.400560854425659, 48.847960016306196], [2.40076091582987, 48.84794240008373], [2.400953149687644, 48.84792597555], [2.4011532108284612, 48.84790835867103], [2.401345444447355, 48.84789193260725], [2.401545505314639, 48.847874315971055], [2.401737738684304, 48.84785788927646], [2.401937799298603, 48.84784027108448], [2.402130032408611, 48.84782384465837], [2.402330092759588, 48.84780622580988], [2.402522325620458, 48.84778979875292], [2.4027223857081053, 48.84777217924791], [2.40291461833003, 48.84775575066091], [2.403114678144032, 48.847738131398664], [2.403306910516593, 48.847721702180856], [2.40344833701718, 48.84770924630039], [2.403477098791983, 48.847698342946316], [2.403458196205753, 48.84765852424098], [2.403436820604272, 48.84752250190729], [2.403415413167015, 48.84738653245578], [2.403394036426036, 48.8472505100745], [2.4033726305747543, 48.84711454058894], [2.4033512540571103, 48.846978518166765], [2.403329848418771, 48.84684254953968], [2.403308472134651, 48.84670652617736], [2.40328706671975, 48.8465705575094], [2.403265690658755, 48.84643453410624], [2.403244285467185, 48.846298565397454], [2.403222909629514, 48.84616254195346], [2.403201504661172, 48.84602657320382], [2.403180129046722, 48.845890549718995], [2.403158724301806, 48.84575458092855], [2.403156950379549, 48.84575099084571], [2.403063049751298, 48.84564437323476], [2.402971843165743, 48.84554039599992], [2.402880636944121, 48.8454364186858], [2.402786737447922, 48.845329800827905], [2.402695531964154, 48.84522582335307], [2.402601631863601, 48.845119205322945], [2.40259040734901, 48.84511473883106], [2.402472110875893, 48.84511155340328], [2.4023812600466092, 48.84511160594196], [2.402333739833379, 48.84510412603814], [2.402311466895287, 48.84511453723039], [2.40217313990637, 48.845208634592666], [2.402034303796428, 48.84530323828025], [2.401895974443764, 48.84539733529936], [2.401757137338331, 48.845491937749976], [2.401618808346861, 48.845586034439485], [2.401479970225287, 48.845680637451764], [2.401341638870044, 48.84577473379806], [2.401202799752974, 48.84586933557339], [2.40106446875892, 48.84596343159009], [2.400925627263191, 48.8460580339202], [2.400787295267832, 48.84615212960051], [2.40064845412875, 48.846246731599784], [2.400510121142426, 48.84634082604435], [2.400371277634894, 48.846435427699085], [2.400232943637008, 48.846529522706575], [2.40009410048622, 48.84662412403047], [2.399955765497261, 48.8467182178022], [2.399816919977996, 48.84681281878158], [2.399678583977451, 48.8469069131162], [2.399539738814926, 48.84700151376469], [2.399401401812939, 48.8470956077629], [2.399262554292277, 48.84719020716759], [2.399124216289044, 48.84728430082935], [2.398985369114751, 48.847378900802454], [2.398981667075645, 48.84738643048668], [2.399010376011133, 48.84751901542417], [2.399030217817046, 48.847624207336125], [2.399036454241378, 48.84763702208292]]], "type": "Polygon"}, "circ_bv": "08", "num_bureau": 30, "roussel_fabien": 20.0, "nb_emargement": 1149.0, "nb_procuration": 50.0, "nb_vote_blanc": 15.0, "jadot_yannick": 94.0, "le_pen_marine": 63.0, "nb_exprime": 1129.0, "nb_vote_nul": 5.0, "arr_bv": "12", "arthaud_nathalie": 1, "nb_inscrit": 1426.0, "sec_bv": "12", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1149, "quartier_bv": "45", "geo_point_2d": [48.84686048352913, 2.4015211802381273], "melenchon_jean_luc": 286.0, "poutou_philippe": 8.0, "macron_emmanuel": 414.0}, "geometry": {"type": "Point", "coordinates": [2.4015211802381273, 48.84686048352913]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "34e06d67778ca0d3c11a9c09842aeb75b3de4fdb", "fields": {"lassalle_jean": 15.0, "pecresse_valerie": 52, "zemmour_eric": 65.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "11-10", "geo_shape": {"coordinates": [[[2.379401365660513, 48.854852777389134], [2.379412731383639, 48.854821368975436], [2.379445345820969, 48.85478217356569], [2.379545255577926, 48.85465915602319], [2.379643309643722, 48.854541318916084], [2.379743218460894, 48.85441830208088], [2.379841271636375, 48.85430046388672], [2.37986591774785, 48.85427011622924], [2.379870847369093, 48.85425372952965], [2.379845982290099, 48.85424705338981], [2.379673504866765, 48.854198394841816], [2.37949693917064, 48.854148820886294], [2.379324462398404, 48.854100161830864], [2.379147897367218, 48.85405058735594], [2.378975421246084, 48.8540019277931], [2.378798856879839, 48.853952352798736], [2.378626381409811, 48.853903692728494], [2.37844981771934, 48.85385411631546], [2.378442271758119, 48.85384290537967], [2.378510920021327, 48.85371174176052], [2.378581531205082, 48.85357628578647], [2.378650177414543, 48.8534451211496], [2.3787207892376783, 48.85330966506793], [2.378710314481094, 48.85329788853321], [2.378545924201072, 48.853278372401604], [2.378403103030043, 48.853265425439176], [2.378260283282035, 48.85325247921251], [2.37809589196178, 48.85323296155547], [2.378092596723921, 48.85323283830486], [2.377917218363384, 48.853238430748696], [2.377738439580233, 48.853246085451886], [2.377563061137103, 48.853251677376605], [2.377384282267225, 48.85325933065124], [2.377208902368087, 48.85326492294899], [2.377076716909154, 48.853267956376364], [2.377068870302674, 48.85326642170342], [2.377055457723167, 48.85328370756219], [2.377025171339645, 48.85328518670084], [2.37702478432666, 48.853303764389906], [2.377068610307353, 48.85337138906467], [2.377112795895127, 48.85343641646506], [2.377112879776227, 48.853443650385344], [2.3770376321338222, 48.85355908431182], [2.376962382864319, 48.853675196283085], [2.376887133191354, 48.85379063008378], [2.376811883262868, 48.853906741036916], [2.3767366342741623, 48.85402217562529], [2.376661383675831, 48.85413828645961], [2.376586134030201, 48.85425372003001], [2.376510881388553, 48.85436983163766], [2.376435631075127, 48.85448526508937], [2.376360379137287, 48.85460137568598], [2.376285128145296, 48.85471680991831], [2.376209874174869, 48.854832920388965], [2.376134622515064, 48.85494835450256], [2.3760593692376792, 48.85506446486149], [2.375984116920824, 48.85517989795708], [2.375908862973657, 48.85529600819714], [2.37583360861537, 48.85541144206623], [2.375758353998408, 48.85552755218746], [2.375683100335014, 48.85564298594491], [2.375607845048354, 48.85575909594728], [2.375614580987434, 48.855770772278035], [2.375789283863322, 48.85582491625523], [2.3759585352912422, 48.85587782281722], [2.376133238883467, 48.855931966287024], [2.376302490997592, 48.85598487325676], [2.376307202113669, 48.855987303571844], [2.376412170746818, 48.85607260802799], [2.376541487865791, 48.856176850036526], [2.376646457264358, 48.85626215427259], [2.376742186965512, 48.85633932153748], [2.376748717831545, 48.85637614522759], [2.376777797205433, 48.85637613929652], [2.376811385593879, 48.8564032146576], [2.376982412583425, 48.85646402795798], [2.377148533552867, 48.856523235316246], [2.377319561340607, 48.85658404722896], [2.377485683075804, 48.856643254112775], [2.377656711650983, 48.856704065536995], [2.377822834151933, 48.856763271946384], [2.377842608723947, 48.85677264884496], [2.377862359413858, 48.85675982789198], [2.377950899655601, 48.85665319374344], [2.37803796587949, 48.856547729107305], [2.3781265067534623, 48.85644109571489], [2.378213572267495, 48.856335630930786], [2.378302112432505, 48.856228996488774], [2.378389175873834, 48.856123531549684], [2.378477715308227, 48.856016897856684], [2.378564779402573, 48.85591143277677], [2.37856564775084, 48.85591016110967], [2.3786114059711663, 48.855826401308065], [2.378670224298121, 48.85571662186866], [2.378671654409403, 48.85571635769094], [2.378686213951514, 48.855689986119906], [2.378687117082051, 48.85568865437592], [2.37877231943932, 48.85558813846559], [2.378870377001287, 48.85547030209039], [2.378955578658708, 48.8553697851305], [2.379053635395323, 48.855251948581966], [2.379138834979353, 48.855151431464776], [2.379236890890629, 48.85503359474289], [2.379322091116221, 48.85493307838184], [2.37938753036236, 48.854854436881276], [2.379401365660513, 48.854852777389134]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 10, "roussel_fabien": 25.0, "nb_emargement": 1319.0, "nb_procuration": 92.0, "nb_vote_blanc": 13.0, "jadot_yannick": 119.0, "le_pen_marine": 65.0, "nb_exprime": 1303.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 8, "nb_inscrit": 1647.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1319, "quartier_bv": "43", "geo_point_2d": [48.85493671108042, 2.3776764416554537], "melenchon_jean_luc": 491.0, "poutou_philippe": 8.0, "macron_emmanuel": 417.0}, "geometry": {"type": "Point", "coordinates": [2.3776764416554537, 48.85493671108042]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "58ff84e8018ca703f91f97f90ba9f91294d89571", "fields": {"lassalle_jean": 24.0, "pecresse_valerie": 54, "zemmour_eric": 79.0, "hidalgo_anne": 19.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "13-15", "geo_shape": {"coordinates": [[[2.3653980031076483, 48.82445343010952], [2.365424789221592, 48.82443412954585], [2.365426045126632, 48.824433565106645], [2.365601377639541, 48.824363905164454], [2.365767810471765, 48.8242975506365], [2.365934242880364, 48.82423119587301], [2.366109574044691, 48.824161534273934], [2.366276005584158, 48.824095179026756], [2.366451335823434, 48.82402551781746], [2.366617766493774, 48.8239591620866], [2.366793095830062, 48.823889499468486], [2.366959525620353, 48.823823144153266], [2.367103124118052, 48.82376608873772], [2.3671299902678, 48.823758852441955], [2.367132448234432, 48.82375160568527], [2.367164179505003, 48.8237389979725], [2.367349843865933, 48.82366598688453], [2.367525171227314, 48.82359632407424], [2.367700498130992, 48.823526660103234], [2.367886162346783, 48.823453648176034], [2.368061488277463, 48.82338398456626], [2.368247150117698, 48.823310972062096], [2.368248402561965, 48.82329607511085], [2.368111717289841, 48.823227743192035], [2.367959273620159, 48.823152202060896], [2.367822589093219, 48.8230838707022], [2.367670146263183, 48.823008329192795], [2.367533462503228, 48.82293999659556], [2.367440235010933, 48.822893798043694], [2.3673976541430273, 48.82285252972603], [2.367372799271106, 48.82286108082204], [2.367313584847915, 48.82283173745205], [2.367171915732543, 48.822753291535506], [2.367019474811741, 48.82267774917444], [2.367001781636821, 48.82266497969596], [2.366975749171383, 48.82266911033428], [2.366939185661328, 48.82268735310357], [2.36690113947945, 48.822706778787], [2.36688094645037, 48.822709419473775], [2.3668708577744573, 48.822719404006634], [2.366749226241114, 48.82278150589763], [2.366599382285588, 48.82285897248311], [2.366439704951992, 48.82294049873082], [2.366289860079668, 48.82301796491748], [2.3661301804021653, 48.82309949163243], [2.365980334613036, 48.82317695742033], [2.365820653964732, 48.82325848371044], [2.365670807258793, 48.823335949099494], [2.365511125639482, 48.82341747496478], [2.36536127801683, 48.82349493995498], [2.365211429948812, 48.8235724047521], [2.365051748259995, 48.82365392909472], [2.365038879157528, 48.82365529436916], [2.364865973743734, 48.823614961872856], [2.364696292747197, 48.82357528840888], [2.364523387874693, 48.823534954515026], [2.364353707388148, 48.82349528146147], [2.364180803046084, 48.823454947069415], [2.364011123080588, 48.82341527352689], [2.363838219268869, 48.82337493863663], [2.363668541197398, 48.82333526371317], [2.363495637904947, 48.82329492922401], [2.363325958992646, 48.82325525380434], [2.363294279210145, 48.823247977355244], [2.363293312080577, 48.823248317566566], [2.36322826306049, 48.82334923564832], [2.363139076765874, 48.823485605388164], [2.363074027151216, 48.823586523364746], [2.362984840047305, 48.82372289296073], [2.362919789838066, 48.823823810832124], [2.362926546181295, 48.823835477564096], [2.36310034400527, 48.82388922102177], [2.363278621018884, 48.82394438750162], [2.363452419568805, 48.823998130442405], [2.36363069732733, 48.82405329639202], [2.36380449796521, 48.82410703882314], [2.363982775106729, 48.82416220423532], [2.363985554311414, 48.824177343826136], [2.363833422223979, 48.82425848126584], [2.363683559738342, 48.82433821047055], [2.363531426722539, 48.82441934661515], [2.363381564663758, 48.82449907633656], [2.363229430708611, 48.82458021208533], [2.363079566374596, 48.8246599405103], [2.362927431469112, 48.82474107676257], [2.362777567572932, 48.824820804804915], [2.362625430377048, 48.82490193975484], [2.362475565545675, 48.82498166830662], [2.362471908664479, 48.8249926661634], [2.362557560803664, 48.825106718392796], [2.362644781984532, 48.825219473016524], [2.362730436236531, 48.82533352510631], [2.362817658170698, 48.8254462795812], [2.362903311822421, 48.82556033061751], [2.362990535860956, 48.825673085850106], [2.363076190263465, 48.82578713673959], [2.363163413704248, 48.82589989091672], [2.363249068846565, 48.82601394255869], [2.363336294402737, 48.82612669659421], [2.363421950306842, 48.826240747189935], [2.3635091752433, 48.82635350196863], [2.363594833260291, 48.826467552424795], [2.363682058961071, 48.82658030615531], [2.363680654140008, 48.826589940872175], [2.363559392392694, 48.826692220884134], [2.363438330204804, 48.826791616636314], [2.363317067513024, 48.82689389638415], [2.363196004405828, 48.82699329097387], [2.363074740769575, 48.82709557045762], [2.362953675359002, 48.82719496567623], [2.362832410778262, 48.82729724489587], [2.362711345810466, 48.827396638959236], [2.362590080285237, 48.827498917914795], [2.362469014376133, 48.827598312614285], [2.362462423908621, 48.827607135411554], [2.362470844026359, 48.82762435743416], [2.362601265379608, 48.82765832494437], [2.362800240056881, 48.827709869798085], [2.362974747281207, 48.82775531934537], [2.363173722708801, 48.82780686267395], [2.363348231945487, 48.82785231167956], [2.36354720673941, 48.82790385527437], [2.363721716626344, 48.827949303731096], [2.36392069352191, 48.82800084670727], [2.36409520270794, 48.82804629370855], [2.364269713549272, 48.828091741359856], [2.36446869016812, 48.82814328341058], [2.364475621229991, 48.82814728467872], [2.364484826763571, 48.82816662604605], [2.364504216576129, 48.82817105866245], [2.364595057894081, 48.82827892376456], [2.364683632283362, 48.828378344223864], [2.36477447433371, 48.82848620916977], [2.36486304942827, 48.8285856285785], [2.364867575406083, 48.828588696990906], [2.364957642429898, 48.828625831003784], [2.365050695410089, 48.828666217641526], [2.365080923205606, 48.828679366859625], [2.365087425528196, 48.82867842735935], [2.365102309268619, 48.828663410407], [2.365211271420141, 48.82855624937714], [2.365324915494454, 48.82844098995292], [2.365325463457741, 48.82843178508372], [2.365221555216879, 48.828305716252615], [2.365115733134834, 48.82817957419832], [2.365011825903807, 48.828053505156674], [2.364906003468178, 48.827927363780546], [2.364802097257933, 48.827801293628994], [2.364696275841581, 48.827675152038935], [2.364697372206328, 48.82766533041077], [2.364784697398652, 48.827589949216666], [2.364863631826416, 48.82751922711625], [2.364950956544581, 48.827443844891626], [2.365029890525605, 48.82737312267227], [2.365038056730409, 48.82736976549897], [2.365225869584846, 48.82734513397987], [2.3654161283079302, 48.82732154222921], [2.365603942172121, 48.82729691012249], [2.365794200559075, 48.827273316870006], [2.365982014070909, 48.82724868416853], [2.366172272099841, 48.827225091212924], [2.366182693660392, 48.82721906847973], [2.366234126370515, 48.82711607318097], [2.366300672859175, 48.82700594676063], [2.366319468247965, 48.82699930464861], [2.366316145935219, 48.82698025449783], [2.366369444010483, 48.826867643907256], [2.366422773937733, 48.82675194500161], [2.3664188731038, 48.82674171554213], [2.366396600779534, 48.826737778801075], [2.366202277061046, 48.82670906186564], [2.36599257606446, 48.82667868199128], [2.365798251426602, 48.82664996439062], [2.365588552254284, 48.82661958471279], [2.365394228059348, 48.82659086645412], [2.365184528008931, 48.8265604851597], [2.3651318723817383, 48.82655270305814], [2.365105852221698, 48.82654301176906], [2.365099426853456, 48.8265450363245], [2.364957758762507, 48.82652409947084], [2.36478668736651, 48.82649859574173], [2.364592364064234, 48.826469876177], [2.364421293025003, 48.82644437192402], [2.364226970126115, 48.82641565176418], [2.364055899443555, 48.826390146987244], [2.363884828928267, 48.82636464196506], [2.363690506622077, 48.8263359209315], [2.363679864791774, 48.826326947009996], [2.363684009026578, 48.82620245874987], [2.363688211323498, 48.82608013108283], [2.363692355518653, 48.82595564279504], [2.363696557776095, 48.825833315100816], [2.363700700569646, 48.82570882677814], [2.363704904160644, 48.82558649816469], [2.363709046914755, 48.82546200981431], [2.3637132504552962, 48.825339682072965], [2.363717393169765, 48.825215193694966], [2.363721596670824, 48.82509286592645], [2.363725798801096, 48.8249705372379], [2.363729942818307, 48.82484604882575], [2.363734144898129, 48.82472372100932], [2.3637382875138693, 48.82459923256231], [2.363740210147935, 48.824594820560655], [2.363778354827715, 48.82455369268683], [2.363824944652566, 48.82450216347548], [2.363841070292796, 48.8244982686227], [2.364007874132446, 48.82453616067977], [2.364169748941721, 48.82457437615138], [2.364336553263731, 48.8246122677474], [2.364498428550106, 48.82465048277151], [2.364665233354571, 48.82468837390654], [2.364827109118144, 48.82472658848317], [2.364839854715706, 48.82472532060735], [2.364972622981034, 48.82465973363063], [2.365113403613436, 48.824588594026466], [2.365246172559457, 48.82452300584598], [2.365386952438483, 48.82445186681046], [2.3653980031076483, 48.82445343010952]]], "type": "Polygon"}, "circ_bv": "09", "num_bureau": 15, "roussel_fabien": 21.0, "nb_emargement": 1222.0, "nb_procuration": 38.0, "nb_vote_blanc": 16.0, "jadot_yannick": 56.0, "le_pen_marine": 82.0, "nb_exprime": 1198.0, "nb_vote_nul": 8.0, "arr_bv": "13", "arthaud_nathalie": 5, "nb_inscrit": 1718.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1222, "quartier_bv": "50", "geo_point_2d": [48.82536627452999, 2.3647548270220753], "melenchon_jean_luc": 453.0, "poutou_philippe": 3.0, "macron_emmanuel": 390.0}, "geometry": {"type": "Point", "coordinates": [2.3647548270220753, 48.82536627452999]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "185839aa464923356548cf2f26839fa406a8dc13", "fields": {"lassalle_jean": 18.0, "pecresse_valerie": 65, "zemmour_eric": 77.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "17-26", "geo_shape": {"coordinates": [[[2.322817622301627, 48.89361136193106], [2.322846392824119, 48.893612490496864], [2.322863239369851, 48.893613150533135], [2.322883460611163, 48.89358829604743], [2.322885835207187, 48.89358766375979], [2.323021896760275, 48.893560924508044], [2.323273754670732, 48.89351142744157], [2.32340981446165, 48.89348468773951], [2.3234128230200772, 48.89347683205684], [2.323408490546635, 48.89346670727209], [2.323280626407578, 48.893443084385545], [2.323198724509095, 48.8934279535496], [2.323192846191415, 48.893427736864446], [2.32305734541377, 48.89344232511854], [2.322920716140269, 48.893457683854805], [2.322785215208441, 48.893472271800604], [2.322648585787781, 48.89348762932672], [2.322645191825938, 48.893488302608624], [2.322462427897824, 48.89354247368357], [2.322278889997014, 48.89359687392303], [2.3220961253067802, 48.89365104443355], [2.32191258800425, 48.89370544411393], [2.321729822540082, 48.893759614959286], [2.32154628447221, 48.893814014072866], [2.321363518257439, 48.89386818345458], [2.321179978060292, 48.89392258199365], [2.321162330677133, 48.89391858518712], [2.321067896512587, 48.89380088682698], [2.320973774111311, 48.8936835786531], [2.320879340799152, 48.89356588011907], [2.320785219259271, 48.893448570872515], [2.3206907867878552, 48.89333087306382], [2.320596666097629, 48.89321356364395], [2.320502234478778, 48.893095865661316], [2.320408114638096, 48.892978556068115], [2.320313683871697, 48.89286085791156], [2.32021956488075, 48.89274354814502], [2.320125134966691, 48.892625849814586], [2.32003101682537, 48.8925085398747], [2.319936587763742, 48.89239084137036], [2.319842470472034, 48.892273531257146], [2.319748042262928, 48.89215583257887], [2.319653925820722, 48.89203852229234], [2.319559497100244, 48.89192082343242], [2.319465382871515, 48.891803512980324], [2.319370955003341, 48.89168581394656], [2.3192768402604163, 48.891568503313344], [2.319182414620271, 48.89145080321416], [2.319088300715057, 48.89133349330696], [2.319096386551567, 48.89131318753712], [2.319089648878269, 48.8913088288623], [2.319083364430266, 48.89131205048563], [2.318946766531265, 48.89138717407905], [2.31882768882184, 48.891452661975165], [2.318691090173298, 48.891527786166556], [2.318572011820725, 48.891593273800034], [2.318558221008657, 48.891595010160515], [2.3185509657825643, 48.89160487404784], [2.318516211603626, 48.891624084615245], [2.318366988715993, 48.89170656681391], [2.318233437065777, 48.891785952635445], [2.3180842119026073, 48.8918684344618], [2.317950660769848, 48.89194781996398], [2.317934038810202, 48.8919556726287], [2.31794950863958, 48.89197715479982], [2.318034314882852, 48.892094720103216], [2.318121129498348, 48.892215068489016], [2.318205936516641, 48.89233263364538], [2.318292750561818, 48.89245298187289], [2.318377558366913, 48.89257054598291], [2.318464374569166, 48.89269089406765], [2.318549183137527, 48.892808458929906], [2.318636000133176, 48.89292880686412], [2.318720808112776, 48.893046371571536], [2.31880762590193, 48.89316671935515], [2.318892436020401, 48.89328428392331], [2.31897925461463, 48.89340463065718], [2.319064065508171, 48.89352219507825], [2.319150883520337, 48.89364254255301], [2.319235695188954, 48.89376010682701], [2.319316027498246, 48.89387146181356], [2.319400839912555, 48.89398902594604], [2.319481174280339, 48.894100381705535], [2.319565987440556, 48.894217945696504], [2.319646321162673, 48.89432930041497], [2.319726655228319, 48.89444065506819], [2.319811469497139, 48.894558218848836], [2.319823518486563, 48.89457492027032], [2.319832354343187, 48.8945782367984], [2.319851790285439, 48.89457208160282], [2.320017066162582, 48.89452443784438], [2.320188336935007, 48.894475066115], [2.32035361356006, 48.89442742189565], [2.320524883705839, 48.8943780487813], [2.320542112365306, 48.89438174023169], [2.320638760466045, 48.89449041780209], [2.320736570389034, 48.89460039959491], [2.320833219289743, 48.894709077885935], [2.32093102867043, 48.894819059490246], [2.321027678394782, 48.894927736703416], [2.321125489949163, 48.89503771903394], [2.3211475532382, 48.89503906628627], [2.321289219265064, 48.89493149547134], [2.321424664975142, 48.8948286475524], [2.321566329856923, 48.894721076389004], [2.321701775836051, 48.89461822814464], [2.321837221291775, 48.89451537883817], [2.321978883093133, 48.894407808047525], [2.321980570655076, 48.894397619276745], [2.321901683142433, 48.8943018623205], [2.321821732502006, 48.894204815047765], [2.321742846937362, 48.89410905797778], [2.3216628968890642, 48.89401201058191], [2.321668612087986, 48.89399973211508], [2.32186960286481, 48.89393112611208], [2.322050071878283, 48.89386952443672], [2.322230540453104, 48.89380792338528], [2.322431531112763, 48.89373931643484], [2.322611998796536, 48.89367771390194], [2.322812987075473, 48.89360910719469], [2.322817622301627, 48.89361136193106]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 26, "roussel_fabien": 25.0, "nb_emargement": 1274.0, "nb_procuration": 92.0, "nb_vote_blanc": 13.0, "jadot_yannick": 108.0, "le_pen_marine": 66.0, "nb_exprime": 1255.0, "nb_vote_nul": 6.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1642.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1274, "quartier_bv": "68", "geo_point_2d": [48.89325517009073, 2.319960316526878], "melenchon_jean_luc": 382.0, "poutou_philippe": 6.0, "macron_emmanuel": 453.0}, "geometry": {"type": "Point", "coordinates": [2.319960316526878, 48.89325517009073]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "149e3a2e6cde19177308267b64184cc65bda60f4", "fields": {"lassalle_jean": 19.0, "pecresse_valerie": 149, "zemmour_eric": 124.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 15.0, "date_tour": "2022-04-10", "id_bvote": "7-15", "geo_shape": {"coordinates": [[[2.305474074261746, 48.854322070293854], [2.305409538037184, 48.85434342596183], [2.30539700497412, 48.85435170913879], [2.305439429484183, 48.85436851887275], [2.3055598727475948, 48.85444469291939], [2.305703439925445, 48.85453450666364], [2.305823882595782, 48.85461068042527], [2.305887927859311, 48.854650745991655], [2.305909223582355, 48.85466502360724], [2.305919198015695, 48.85466537105836], [2.305998720894487, 48.8547151188846], [2.306138013847087, 48.85480229645305], [2.306281583006744, 48.85489210947477], [2.3064208769177, 48.85497928580076], [2.306564448415391, 48.8550690984767], [2.306703743260669, 48.85515627535881], [2.306847314370773, 48.85524608767315], [2.30698661016255, 48.855333264212135], [2.307130182247887, 48.85542307617272], [2.307269480360751, 48.85551025147714], [2.307413053421329, 48.855600063084076], [2.307552351105921, 48.8556872389367], [2.307695925141744, 48.85577705018987], [2.307835223772753, 48.855864225699335], [2.307978800146666, 48.855954036606704], [2.30811809973594, 48.85604121087371], [2.308261675722274, 48.85613102141948], [2.3084009762461353, 48.856218196242544], [2.30854455457058, 48.85630800644247], [2.308683856040879, 48.85639518092235], [2.308827433977749, 48.85648499076072], [2.308966736406314, 48.85657216399811], [2.309110315306534, 48.856661974382], [2.309249620044503, 48.85674914728403], [2.3093931999319333, 48.856838956414954], [2.309532504241472, 48.85692612986521], [2.309676085104293, 48.857015938642355], [2.309815390372203, 48.85710311085012], [2.3098850195683758, 48.8571021741938], [2.309893660870698, 48.8570735525966], [2.309879832178739, 48.85694535433993], [2.309865972706551, 48.856818044451735], [2.309852144150529, 48.856689846162354], [2.309838283451101, 48.85656253623381], [2.309824455031015, 48.85643433791172], [2.309810594467212, 48.85630702795067], [2.309796766183063, 48.856178829595905], [2.309782905754778, 48.85605151960236], [2.309769077606666, 48.855923321214874], [2.309755218676834, 48.8557960111967], [2.309741390664549, 48.855667812776524], [2.309727530507598, 48.855540502718], [2.309713702631243, 48.85541230426515], [2.309699842597993, 48.85528499507342], [2.30968601486948, 48.85515679568857], [2.309672154971842, 48.855029486464375], [2.309658327379256, 48.85490128704685], [2.309644468980038, 48.85477397779802], [2.309630641523373, 48.85464577834781], [2.309616781896952, 48.854518469058625], [2.309602954576209, 48.85439026957575], [2.309589095085395, 48.8542629602541], [2.309575267900573, 48.854134760738546], [2.309561408545262, 48.854007451384405], [2.309561137163643, 48.85396406032071], [2.309517661772556, 48.85395181292067], [2.309322826535028, 48.85396340086218], [2.309135420708931, 48.85397340894215], [2.308940583942863, 48.85398499625319], [2.308753177965686, 48.853995003734276], [2.308558341033873, 48.854006590422685], [2.308370934905623, 48.85401659730497], [2.308176097808076, 48.85402818337075], [2.30798869152866, 48.854038189654155], [2.30779385426549, 48.85404977509733], [2.307606447835017, 48.854059780781874], [2.307411610406028, 48.85407136560244], [2.307224203824612, 48.854081370688135], [2.307036797183188, 48.854091374580904], [2.30684195949746, 48.854102959372874], [2.306654552705008, 48.85411296266681], [2.3064597148535793, 48.8541245468361], [2.306456306489918, 48.85412504511069], [2.306293625418993, 48.85415854567002], [2.306087013249175, 48.85420780431058], [2.305924330319654, 48.85424130435745], [2.305717717484563, 48.85429056145743], [2.305555034059246, 48.85432406099972], [2.305474074261746, 48.854322070293854]]], "type": "Polygon"}, "circ_bv": "02", "num_bureau": 15, "roussel_fabien": 15.0, "nb_emargement": 1188.0, "nb_procuration": 55.0, "nb_vote_blanc": 6.0, "jadot_yannick": 71.0, "le_pen_marine": 74.0, "nb_exprime": 1179.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 4, "nb_inscrit": 1444.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1188, "quartier_bv": "28", "geo_point_2d": [48.85511440897325, 2.3082472757845123], "melenchon_jean_luc": 130.0, "poutou_philippe": 1.0, "macron_emmanuel": 560.0}, "geometry": {"type": "Point", "coordinates": [2.3082472757845123, 48.85511440897325]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1debf2631e55e2a9b5e58175fcf47ff82d0a8f29", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 113, "zemmour_eric": 84.0, "hidalgo_anne": 21.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-5", "geo_shape": {"coordinates": [[[2.318375625677554, 48.88654042765498], [2.318380304295065, 48.88653138724408], [2.318504421141378, 48.88644808283494], [2.3186560541811723, 48.88634636550862], [2.318780168781722, 48.88626306079186], [2.318931802095991, 48.88616134400624], [2.319055915814324, 48.88607803898962], [2.319207546699337, 48.88597632093067], [2.319331660899288, 48.885893015621946], [2.319483290695167, 48.88579129809591], [2.319607402649289, 48.88570799247961], [2.319607824857234, 48.88570772058302], [2.31961205497688, 48.885705116777224], [2.319627116842173, 48.885701685984365], [2.319631670938173, 48.88569255128137], [2.31977942222568, 48.885601613189536], [2.319927228010485, 48.88551063924714], [2.320074978265716, 48.88541970077556], [2.320222783017853, 48.885328726453224], [2.320370532240812, 48.885237787601845], [2.32051833596039, 48.885146812899634], [2.320666084162716, 48.885055872769236], [2.3208138868379082, 48.88496489858639], [2.320961632644476, 48.884873958068525], [2.321109435650521, 48.88478298351353], [2.321257180424838, 48.88469204261592], [2.32140498240996, 48.88460106678178], [2.321409090208958, 48.88459245288568], [2.321395416948084, 48.884582597858284], [2.321268038341555, 48.88451383961103], [2.321140582875815, 48.884445040316336], [2.321013204942231, 48.88437628178934], [2.320885751513318, 48.88430748222253], [2.320758372900822, 48.884238722508854], [2.320630920145354, 48.884169922662124], [2.320626459146355, 48.88416546454289], [2.320573067897973, 48.884043804838505], [2.32051911677941, 48.883920864866646], [2.320465727396147, 48.883799205095045], [2.32041177542083, 48.88367626503974], [2.320401349635849, 48.88366994650888], [2.320186734931827, 48.88364165910934], [2.31997235461437, 48.883613401432925], [2.319757741739874, 48.88358511327071], [2.31954336188798, 48.88355685482477], [2.319328748116094, 48.88352856588438], [2.31911436871802, 48.88350030756809], [2.31909763344225, 48.88349472826379], [2.319083332568884, 48.88350268336634], [2.318983929266606, 48.883599402375886], [2.31886964844665, 48.88371059594928], [2.318770244350741, 48.88380731476313], [2.318655961254687, 48.883918508103804], [2.318556556364934, 48.88401522672191], [2.318442273720015, 48.884126419845366], [2.318296855762529, 48.88426790674203], [2.318182571996694, 48.884379100491266], [2.31810517166502, 48.88445440591505], [2.317990887080605, 48.88456559946248], [2.31791348755803, 48.88464090475736], [2.317799202155129, 48.88475209810298], [2.317688764540107, 48.88485954595921], [2.317574478177427, 48.88497073906821], [2.317464039635143, 48.88507818669582], [2.317349750949169, 48.88518937956044], [2.317239311479407, 48.88529682695935], [2.317125023197437, 48.88540801959513], [2.317014582800292, 48.88551546676537], [2.316900293558512, 48.88562665916452], [2.316789852234075, 48.88573410610617], [2.316675562032576, 48.885845298268684], [2.316565119768831, 48.885952745880886], [2.316564263116545, 48.88595349193225], [2.316484062838907, 48.886016303830665], [2.316390195661978, 48.88609040967828], [2.316390267716633, 48.88610351513503], [2.316401240857019, 48.88610948368933], [2.316550701783437, 48.88621069861474], [2.316702208042733, 48.886312079698165], [2.316851668760194, 48.88641329512067], [2.317003176194889, 48.886514675804605], [2.31715263809063, 48.8866158899335], [2.317304146688942, 48.88671727111713], [2.317453611114823, 48.88681848485946], [2.317605120900243, 48.88691986474432], [2.317615840296678, 48.886923574417175], [2.317635429354663, 48.88691563165878], [2.317815008984745, 48.8868233296912], [2.3179977029187953, 48.88672955499951], [2.31817727990138, 48.886637252465185], [2.318359972530104, 48.88654347720486], [2.318375625677554, 48.88654042765498]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 5, "roussel_fabien": 15.0, "nb_emargement": 1235.0, "nb_procuration": 88.0, "nb_vote_blanc": 11.0, "jadot_yannick": 120.0, "le_pen_marine": 46.0, "nb_exprime": 1223.0, "nb_vote_nul": 1.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1490.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1235, "quartier_bv": "67", "geo_point_2d": [48.88513535145493, 2.3188343645443754], "melenchon_jean_luc": 222.0, "poutou_philippe": 2.0, "macron_emmanuel": 580.0}, "geometry": {"type": "Point", "coordinates": [2.3188343645443754, 48.88513535145493]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "75373c0ccc393baced2d47826197ca987021e979", "fields": {"lassalle_jean": 12.0, "pecresse_valerie": 23, "zemmour_eric": 47.0, "hidalgo_anne": 26.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "20-11", "geo_shape": {"coordinates": [[[2.389384119579635, 48.872851357643576], [2.38934820772767, 48.87283610789322], [2.389199235135197, 48.87277570304842], [2.3890264467252003, 48.87270552119784], [2.388838072144647, 48.872629138640086], [2.388665284696911, 48.87255895715812], [2.388476911175917, 48.87248257402189], [2.388304124711646, 48.872412391110004], [2.388300500751486, 48.87241136353675], [2.388144897317264, 48.87238397222468], [2.387992974109771, 48.872356081508244], [2.387837371013082, 48.872328688895806], [2.387685448131398, 48.87230079778767], [2.3876828914283132, 48.87230013988572], [2.387485345724195, 48.87223343544914], [2.387298068875329, 48.8721704633234], [2.387296547619999, 48.87216986467327], [2.387150665446549, 48.872103585989976], [2.386978404486934, 48.87202572978571], [2.386832523111284, 48.871959451605335], [2.386660264477714, 48.8718815940408], [2.386514382547277, 48.87181531545703], [2.386342124855304, 48.871737458323814], [2.386196243744045, 48.871671178444394], [2.386023987004154, 48.87159332084316], [2.385878108054035, 48.8715270414737], [2.385795959553713, 48.87147690288164], [2.3857613026325932, 48.87147979897259], [2.385743731607351, 48.871479272626296], [2.385560808305137, 48.87157211023873], [2.38539044438838, 48.87166993592007], [2.38538875964072, 48.87167094891505], [2.3852883244325582, 48.87174240162647], [2.385117959447097, 48.8718402269049], [2.38501752218852, 48.871911678471896], [2.38501654226788, 48.871912460356064], [2.38490949179224, 48.872008338883255], [2.384802027999597, 48.872104318607725], [2.384694978097975, 48.8722001969334], [2.384587513524862, 48.872296175549344], [2.384480461460177, 48.87239205455874], [2.384372997459245, 48.87248803297244], [2.38426594461602, 48.872583910874084], [2.384158478450069, 48.87267988997078], [2.384157784581172, 48.87268046017677], [2.384034700143688, 48.872773500714466], [2.383906068639416, 48.8728710793932], [2.383782981938675, 48.872964119648984], [2.383654349492104, 48.87306169804039], [2.383531263254484, 48.87315473802828], [2.383402629876254, 48.87325231523305], [2.383279542738661, 48.87334535494609], [2.383150908407476, 48.873442932762806], [2.383143992590217, 48.87348007022246], [2.383173557130018, 48.873491707075004], [2.383179646364025, 48.87349259192114], [2.383255393861467, 48.87350329309049], [2.383458784160613, 48.87352988644444], [2.383650893128586, 48.873557025717005], [2.383854283828834, 48.87358361929698], [2.384046393201054, 48.87361075793348], [2.384249784323571, 48.87363734994089], [2.384441894100127, 48.87366448794138], [2.384443389444265, 48.873664742048604], [2.384587132268618, 48.873695003588075], [2.384835900605238, 48.87373861395142], [2.384979643861596, 48.87376887501754], [2.384983342028904, 48.87377008653539], [2.385104019169173, 48.87382419529508], [2.385235538419359, 48.87388521163835], [2.385270906808333, 48.87390107046743], [2.385275783236315, 48.873902142334735], [2.385316074972029, 48.87386600085463], [2.385426849807132, 48.87374730533675], [2.385538383590275, 48.873627796107165], [2.385649157412183, 48.87350910035795], [2.38576069017509, 48.87338959089544], [2.385871462983917, 48.87327089491487], [2.385982994726702, 48.87315138521944], [2.385992998315256, 48.87314716919002], [2.386181310142904, 48.87313243259848], [2.386389618957554, 48.87311613085404], [2.386577931934664, 48.87310139274582], [2.386786239137847, 48.8730850903037], [2.386974551879822, 48.87307035247045], [2.387182858834731, 48.87305404933765], [2.387371171352258, 48.87303931088006], [2.387579479432751, 48.87302300616433], [2.387767790362521, 48.87300826707539], [2.387976098184141, 48.87299196256827], [2.388164408889445, 48.87297722285498], [2.38837271646276, 48.87296091765722], [2.388561028306885, 48.87294617732653], [2.388769334279242, 48.8729298705319], [2.388957645898881, 48.87291512957684], [2.389165951612254, 48.87289882299086], [2.389354263007398, 48.87288408141145], [2.389384119579635, 48.872851357643576]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 11, "roussel_fabien": 30.0, "nb_emargement": 1212.0, "nb_procuration": 62.0, "nb_vote_blanc": 15.0, "jadot_yannick": 64.0, "le_pen_marine": 47.0, "nb_exprime": 1197.0, "nb_vote_nul": 9.0, "arr_bv": "20", "arthaud_nathalie": 4, "nb_inscrit": 1648.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1221, "quartier_bv": "77", "geo_point_2d": [48.872718782628965, 2.3858870090001436], "melenchon_jean_luc": 713.0, "poutou_philippe": 10.0, "macron_emmanuel": 212.0}, "geometry": {"type": "Point", "coordinates": [2.3858870090001436, 48.872718782628965]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "ddb0b998b11b218e43498954e9ac2caaff3d0ee4", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 144, "zemmour_eric": 116.0, "hidalgo_anne": 9.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "7-9", "geo_shape": {"coordinates": [[[2.316634938902151, 48.84680845285433], [2.316536229423541, 48.84680852933705], [2.31635428271782, 48.8467523525599], [2.316180178852063, 48.84669927276581], [2.315998232911587, 48.84664309544172], [2.315824128410982, 48.846590015116504], [2.315642183235755, 48.8465338372454], [2.315468080825293, 48.84648075640462], [2.315286136415318, 48.84642457798658], [2.315112033370017, 48.84637149661469], [2.314937932030042, 48.84631841589399], [2.314755988770138, 48.84626223576222], [2.314581888157913, 48.84620915451825], [2.314399945663271, 48.8461529738395], [2.314337428071056, 48.84613391329465], [2.314319325208662, 48.84613618296141], [2.314298799428715, 48.84617574342687], [2.314280735690244, 48.846304076150915], [2.314258296373434, 48.8464388259153], [2.314240233806633, 48.84656715861074], [2.314217794271823, 48.8467019083357], [2.314216948054218, 48.84670418606791], [2.3141474362648218, 48.846821204802], [2.314073548041261, 48.84694654717714], [2.314004035606604, 48.84706356580248], [2.313930148045297, 48.84718890896893], [2.313860634977215, 48.84730592658617], [2.313786745364871, 48.84743126962898], [2.313717231651515, 48.847548287137464], [2.313643342713153, 48.84767363007224], [2.313612958012023, 48.84772477785295], [2.313599160454583, 48.847761104869825], [2.313624081627048, 48.84777382991983], [2.313799703285913, 48.847815314017254], [2.313976422559198, 48.8478598763678], [2.314152043425981, 48.84790135993704], [2.314328764654964, 48.847945921771526], [2.314504386092084, 48.84798740482034], [2.314681106551502, 48.848031966123145], [2.314856729933513, 48.84807344776006], [2.31503345097427, 48.848118009438274], [2.315209074926708, 48.8481594905548], [2.315385796560426, 48.84820405170917], [2.315561421083287, 48.848245532305256], [2.315738143310064, 48.84829009293573], [2.315746517942232, 48.84830062378852], [2.315694533148756, 48.848441325637296], [2.315643394378924, 48.84857756156221], [2.315591409042575, 48.84871826243189], [2.31554026973139, 48.84885449827891], [2.315488283828536, 48.84899519996804], [2.315437143975988, 48.84913143573708], [2.315385156167582, 48.849272136439374], [2.315334017136328, 48.84940837213819], [2.315334299295027, 48.84941334541782], [2.315348155795431, 48.84944113760583], [2.315360190249999, 48.84945016050421], [2.315394765006788, 48.84944888249553], [2.315573486038216, 48.849497608881485], [2.315753003035415, 48.84954604006161], [2.315931724735013, 48.84959476590821], [2.316111242388135, 48.84964319744588], [2.316289964755799, 48.84969192275312], [2.316469484451024, 48.849740352857545], [2.316648207486852, 48.84978907762539], [2.316827726475227, 48.84983750807961], [2.317006450179215, 48.8498862323081], [2.317185969846995, 48.84993466132129], [2.317364694219242, 48.8499833850104], [2.317544215905437, 48.85003181438893], [2.317722939583152, 48.850080537530886], [2.317902461948736, 48.85012896546836], [2.317920391686897, 48.850123774052655], [2.317991879807293, 48.84999683852842], [2.318062294975646, 48.8498705362784], [2.318133782414657, 48.84974359974118], [2.3182041968969003, 48.849617297378906], [2.318275683631204, 48.84949036162735], [2.318346097427348, 48.84936405915283], [2.318417583480282, 48.84923712238832], [2.318487996590335, 48.84911081980155], [2.318559481950345, 48.84898388292336], [2.31862989436256, 48.84885758112366], [2.318701379029455, 48.84873064413186], [2.318771790767357, 48.84860434132061], [2.318843274741346, 48.848477404215146], [2.318913685793085, 48.84835110129172], [2.318985169062328, 48.84822416497187], [2.319055579428117, 48.84809786193617], [2.3191270620160243, 48.847970924603395], [2.31919747169577, 48.847844621455536], [2.319242000472739, 48.84781012350863], [2.319227096452244, 48.84779542318054], [2.319135860495041, 48.847760176054706], [2.318957134060911, 48.84769152771444], [2.318801850583001, 48.84763153673001], [2.318623125030128, 48.847562887882845], [2.3184678409574992, 48.84750289645021], [2.318289117660065, 48.84743424620467], [2.318133834355244, 48.84737425433162], [2.318133401747115, 48.847374094477686], [2.317955903520128, 48.84731113287239], [2.31776180137116, 48.84724233838577], [2.317584304030098, 48.84717937712105], [2.3173902014997863, 48.84711058201563], [2.317212705068201, 48.84704761929287], [2.3170186048817722, 48.846978823584244], [2.316841109347889, 48.846915860302765], [2.31664700878013, 48.84684706397533], [2.316634938902151, 48.84680845285433]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 9, "roussel_fabien": 11.0, "nb_emargement": 1029.0, "nb_procuration": 82.0, "nb_vote_blanc": 10.0, "jadot_yannick": 76.0, "le_pen_marine": 53.0, "nb_exprime": 1016.0, "nb_vote_nul": 3.0, "arr_bv": "07", "arthaud_nathalie": 1, "nb_inscrit": 1261.0, "sec_bv": "07", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1029, "quartier_bv": "27", "geo_point_2d": [48.84809879761869, 2.3165201414525898], "melenchon_jean_luc": 100.0, "poutou_philippe": 3.0, "macron_emmanuel": 489.0}, "geometry": {"type": "Point", "coordinates": [2.3165201414525898, 48.84809879761869]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "284c9512a9b6379ba16583d795f7984f78a7ea49", "fields": {"lassalle_jean": 7.0, "pecresse_valerie": 32, "zemmour_eric": 61.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 5.0, "date_tour": "2022-04-10", "id_bvote": "10-18", "geo_shape": {"coordinates": [[[2.364876063880095, 48.87652712603912], [2.364890906277205, 48.87654144843353], [2.364925250254527, 48.87658203770328], [2.365025071437666, 48.876700013908824], [2.3651192008784863, 48.87681125889614], [2.365219022940369, 48.87692923491546], [2.365313151846218, 48.877040479719845], [2.3654129747757953, 48.87715845645221], [2.365507105884641, 48.877269700188926], [2.365606929692783, 48.87738767673499], [2.365701060266765, 48.87749892028887], [2.365695480570041, 48.877537572831876], [2.365713915153224, 48.877542244514565], [2.365808047587536, 48.877653488875225], [2.365902487368756, 48.87776483190439], [2.365996619255673, 48.87787607518781], [2.366091059832794, 48.877987418944976], [2.366185192524784, 48.87809866205766], [2.366279633919507, 48.87821000474432], [2.36637376876907, 48.87832124859275], [2.366468210970562, 48.87843259110815], [2.366562345272728, 48.8785438338793], [2.36665678827016, 48.878655177122745], [2.366750924740771, 48.87876641973039], [2.366845367192478, 48.878877761896064], [2.366939504457375, 48.8789890052322], [2.367033949079222, 48.879100347233866], [2.367128085796723, 48.87921158949275], [2.367222531214445, 48.879322932222394], [2.367316670100536, 48.879434174317744], [2.367411116336001, 48.87954551597685], [2.367505254652849, 48.87965675879347], [2.367599701695236, 48.87976810028133], [2.367608780901776, 48.87977005662142], [2.367647976011116, 48.8797519532802], [2.36778955075215, 48.87967566341136], [2.367954465299632, 48.879582353548614], [2.368096039130669, 48.87950606330564], [2.368217443810167, 48.87943737102477], [2.368243378204167, 48.87942960546311], [2.368250905594311, 48.87941538269322], [2.368294415716318, 48.87939076377006], [2.368440881657331, 48.87930406218676], [2.368605793872085, 48.879210750496085], [2.368752258799386, 48.87912404761837], [2.368917171238702, 48.879030736389964], [2.3689733089805483, 48.878997503434015], [2.368988035602227, 48.8789855201241], [2.368961179944578, 48.87896649170788], [2.368838310497781, 48.87885829472822], [2.368716222109507, 48.87875083378377], [2.368593353680374, 48.87864263653154], [2.3684712649397293, 48.878535175309054], [2.368349178055428, 48.878427714858084], [2.368226311151095, 48.87831951719739], [2.368104223925118, 48.87821205556911], [2.367981359401853, 48.87810385764304], [2.367859273176007, 48.87799639664318], [2.36773640968128, 48.877888197545325], [2.367614324466264, 48.87778073627462], [2.367491460625738, 48.87767253689697], [2.36736937778516, 48.87756507536271], [2.367246514962247, 48.877456875712475], [2.367243993058194, 48.87745301683544], [2.367213223573691, 48.87733641486926], [2.367181478851645, 48.87721536502168], [2.367150708284095, 48.87709876300705], [2.3671189638521932, 48.87697771311682], [2.36712534794066, 48.87696848283608], [2.367280171057922, 48.87690602954676], [2.367458317237714, 48.876835035118056], [2.367613139558922, 48.87677258139055], [2.367791284828504, 48.87670158645777], [2.367834856030693, 48.87668401065427], [2.367851148840063, 48.876672591519885], [2.367836025874791, 48.876659185337175], [2.367693475181546, 48.87657598427829], [2.367550170397946, 48.87649249216957], [2.367407620617572, 48.87640929075772], [2.367264316750851, 48.8763257982942], [2.367121767894269, 48.876242595630146], [2.366978464944424, 48.87615910281179], [2.366835916989777, 48.876075900694026], [2.366692614956801, 48.875992407520876], [2.36655006791511, 48.87590920505018], [2.366406766798895, 48.875825711522225], [2.366264220670054, 48.87574250869855], [2.366120920470699, 48.87565901481582], [2.365978375265649, 48.87557581073991], [2.36583507598315, 48.875492316502395], [2.36583100971255, 48.87548306688884], [2.365881873364402, 48.87536762794616], [2.365941308315956, 48.87523283662028], [2.365992171478987, 48.87511739760458], [2.366051605859663, 48.87498260619334], [2.366102468533879, 48.87486716710458], [2.366161902343482, 48.87473237560801], [2.366212764528889, 48.87461693644625], [2.366272196404299, 48.87448214485715], [2.366323059464237, 48.87436670562951], [2.366382490768595, 48.87423191395507], [2.366433353339834, 48.87411647465441], [2.366455298301115, 48.874104043271494], [2.366435452106738, 48.87408549735475], [2.366428874904549, 48.874082265404816], [2.366243864394197, 48.87403982306294], [2.366063290698047, 48.87399849572245], [2.365878279419923, 48.873956052805134], [2.36569770630426, 48.87391472491002], [2.365517133475148, 48.87387339674098], [2.365332124460592, 48.87383095208271], [2.365151550848763, 48.87378962335181], [2.364966542418713, 48.87374717902458], [2.364956274239875, 48.87374778556277], [2.364939975407497, 48.873750775722485], [2.364934956297263, 48.87375730345574], [2.364769904165128, 48.87383557105548], [2.364612689774289, 48.873908908498635], [2.364609692227399, 48.873909982582816], [2.364450904332949, 48.873950893096634], [2.364300134478269, 48.873989550875336], [2.364149365763113, 48.874028208470015], [2.363990577146691, 48.874069118368915], [2.363975878025068, 48.87406703385046], [2.363948680987226, 48.8740474007322], [2.3638998994298, 48.87401454688763], [2.363882854394979, 48.87396531569389], [2.363867525081658, 48.873965156888524], [2.363796890066092, 48.873983194502074], [2.363697273827015, 48.87401192131722], [2.36369646272248, 48.87401213554431], [2.363515047672733, 48.87405845995104], [2.3633811667781712, 48.87409050901936], [2.363248784447805, 48.87412431241964], [2.363114903220145, 48.87415636118828], [2.363086560382039, 48.87416009821611], [2.363098419542275, 48.874209012340096], [2.363191346929466, 48.87433234071637], [2.363283744516802, 48.874454878368354], [2.363376672770468, 48.87457820747256], [2.36346907122996, 48.8747007449542], [2.363562000372098, 48.87482407298776], [2.36365439969277, 48.87494661119832], [2.363747331075643, 48.87506993906776], [2.363839731279485, 48.87519247620869], [2.363932662165633, 48.8753158047988], [2.364025063241666, 48.87543834176938], [2.364117995016309, 48.8755616692889], [2.364210396953565, 48.875684206988346], [2.364303329605732, 48.87580753433649], [2.36439573378955, 48.875930070973496], [2.364488137044785, 48.87605260751835], [2.364581071000956, 48.87617593550896], [2.364581414830047, 48.87617636271904], [2.364652425316546, 48.876259095241736], [2.364746551801198, 48.876370340559255], [2.364817562814375, 48.876453072969426], [2.364877347410719, 48.87652372887051], [2.364876063880095, 48.87652712603912]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 18, "roussel_fabien": 16.0, "nb_emargement": 1012.0, "nb_procuration": 53.0, "nb_vote_blanc": 14.0, "jadot_yannick": 77.0, "le_pen_marine": 45.0, "nb_exprime": 994.0, "nb_vote_nul": 4.0, "arr_bv": "10", "arthaud_nathalie": 2, "nb_inscrit": 1420.0, "sec_bv": "10", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1012, "quartier_bv": "40", "geo_point_2d": [48.87644433794961, 2.366004982081946], "melenchon_jean_luc": 427.0, "poutou_philippe": 5.0, "macron_emmanuel": 293.0}, "geometry": {"type": "Point", "coordinates": [2.366004982081946, 48.87644433794961]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "8af8c116b7b9e43c393903e433465ce378981b2d", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 91, "zemmour_eric": 113.0, "hidalgo_anne": 20.0, "dupont_aignan_nicolas": 19.0, "date_tour": "2022-04-10", "id_bvote": "15-82", "geo_shape": {"coordinates": [[[2.277588554388263, 48.842545396349735], [2.2775823559033173, 48.84254402964918], [2.277438448644538, 48.842604886075456], [2.277328305508678, 48.842652885652754], [2.277325626542582, 48.84265436961796], [2.277278679069288, 48.84268806239093], [2.277231429476333, 48.84272201863353], [2.277227880536933, 48.84272384359763], [2.277055845558702, 48.842785318360356], [2.27688411562727, 48.842846677800644], [2.276712079838115, 48.842908152062286], [2.276540349097238, 48.84296951100228], [2.276368312497158, 48.84303098476279], [2.276196580946837, 48.84309234320257], [2.276024543535835, 48.84315381646194], [2.27585281117607, 48.843215174401536], [2.275680772966645, 48.84327664626047], [2.275509039797441, 48.843338003699785], [2.275337000764598, 48.84339947595687], [2.275165266785951, 48.84346083289597], [2.274993226942188, 48.84352230465197], [2.274821492154101, 48.843583661090776], [2.274649451499418, 48.84364513234561], [2.274477715901891, 48.8437064882842], [2.274305674436289, 48.84376795903787], [2.274133938029323, 48.84382931447619], [2.273961895765331, 48.84389078382948], [2.273790158548927, 48.84395213876752], [2.273618115461596, 48.84401360851892], [2.2734463774356533, 48.844074962956725], [2.273274333537404, 48.84413643220699], [2.2731025947020242, 48.84419778614453], [2.2730408060175, 48.844221088379946], [2.273054908897453, 48.84423780970612], [2.273164296920362, 48.84434872979504], [2.2732732125791753, 48.844460235987206], [2.273382601533543, 48.84457115585441], [2.273491518124156, 48.84468266182554], [2.273600908022526, 48.844793580571725], [2.273709826895061, 48.844905087229456], [2.273819216362361, 48.845016005745606], [2.273928136166929, 48.84512751218235], [2.274037526565709, 48.84523843047675], [2.274146447302115, 48.84534993669252], [2.274255839994945, 48.845460854773435], [2.274364760300744, 48.8455723607599], [2.274474153925079, 48.845683278619106], [2.274583075175453, 48.84579478348528], [2.274692469718787, 48.84590570202202], [2.274801393263596, 48.846017206675405], [2.274905371459151, 48.846124451518456], [2.275014294554095, 48.84623595594788], [2.2751182736242033, 48.84634320058483], [2.275227198994445, 48.846454704806824], [2.275287709137714, 48.84651709171413], [2.275350443724893, 48.846581311479305], [2.275353226559568, 48.84659217200143], [2.275372922687704, 48.846605210704965], [2.27541911422581, 48.84665249587973], [2.275472441350473, 48.84670905714687], [2.275494527156276, 48.84671870439867], [2.275542426034967, 48.846686808819115], [2.275695487193674, 48.8466072611345], [2.275847742738539, 48.846528581660145], [2.276000804329092, 48.846449033581905], [2.276153058950748, 48.84637035370784], [2.276306118247976, 48.84629080521941], [2.276458371946532, 48.84621212494563], [2.276610625197745, 48.846133443573216], [2.276763684463234, 48.84605389449077], [2.276915936778864, 48.84597521361798], [2.277068995113622, 48.845895664133636], [2.277221246506056, 48.8458169828611], [2.277374302547619, 48.84573743296664], [2.277526553029229, 48.84565875039513], [2.277679609502632, 48.845579200107], [2.277831859048586, 48.84550051803508], [2.277984913228709, 48.84542096733687], [2.27813716185148, 48.84534228486525], [2.278290216463446, 48.845262733773424], [2.278442464163038, 48.84518405090213], [2.278595517856739, 48.84510449850907], [2.278747764633152, 48.845025815238074], [2.278900816021145, 48.844946263334315], [2.279053061874388, 48.844867579663635], [2.279206113694225, 48.84478802736616], [2.279358358624299, 48.84470934329583], [2.279511408150894, 48.8446297905883], [2.279529079391982, 48.84462510967646], [2.279531899266989, 48.844601706215975], [2.279415915230932, 48.84448737520243], [2.279305650384381, 48.84437877691292], [2.279189667353203, 48.84426444475789], [2.279079403449741, 48.84415584623813], [2.278969140005796, 48.84404724760617], [2.278853158450616, 48.84393291509088], [2.2787428959497458, 48.843824316228705], [2.278626915386984, 48.843709983471264], [2.278607204159886, 48.84370790038886], [2.278585728801697, 48.84371897612296], [2.278564146400567, 48.84373010606912], [2.278544370665095, 48.843727957832854], [2.278441004905864, 48.843624116548845], [2.278338408266309, 48.84352104786423], [2.278319780479841, 48.843518367792804], [2.278165088622501, 48.84358240941154], [2.278005146839375, 48.843649164018544], [2.277850454207205, 48.843713205222926], [2.277690510257178, 48.84377995939323], [2.2775358168501763, 48.84384400018326], [2.277375873470748, 48.843910753033995], [2.277355064147946, 48.843902071638745], [2.277379859715756, 48.84376683672168], [2.277404239847411, 48.8436334483773], [2.277429036522332, 48.843498213425725], [2.2774534164024702, 48.843364825039195], [2.277478211459584, 48.8432295900367], [2.277502591088213, 48.84309620160802], [2.277527385889835, 48.8429609665627], [2.277551765266958, 48.84282757809188], [2.277576561175682, 48.84269234301206], [2.2776009403014, 48.84255895449911], [2.277588554388263, 48.842545396349735]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 82, "roussel_fabien": 26.0, "nb_emargement": 1116.0, "nb_procuration": 52.0, "nb_vote_blanc": 16.0, "jadot_yannick": 44.0, "le_pen_marine": 72.0, "nb_exprime": 1093.0, "nb_vote_nul": 7.0, "arr_bv": "15", "arthaud_nathalie": 2, "nb_inscrit": 1426.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1116, "quartier_bv": "60", "geo_point_2d": [48.84463263999574, 2.276254805087677], "melenchon_jean_luc": 341.0, "poutou_philippe": 4.0, "macron_emmanuel": 345.0}, "geometry": {"type": "Point", "coordinates": [2.276254805087677, 48.84463263999574]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "607f718ec256f67a3d43c34d42da579a32153b14", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 130, "zemmour_eric": 164.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "16-36", "geo_shape": {"coordinates": [[[2.277057042221043, 48.848106680496954], [2.276990604715753, 48.848128444783455], [2.276808056137344, 48.84818577954142], [2.276616970302358, 48.84824532790342], [2.276434420915834, 48.84830266118598], [2.276243334225333, 48.84836220894503], [2.276060784018424, 48.848419541651516], [2.27586969783505, 48.84847908881582], [2.275687145432518, 48.84853642183719], [2.275496058406138, 48.84859596749921], [2.275490243949058, 48.848608784218136], [2.275568439038234, 48.84869337713877], [2.275643584392144, 48.848777590890855], [2.275721781346073, 48.84886218370671], [2.275796927203696, 48.84894639645036], [2.275789749691634, 48.84895943426704], [2.275619311725785, 48.84899941170803], [2.275446981706172, 48.8490390186016], [2.2752765445922503, 48.84907899466044], [2.275104214048854, 48.84911860105748], [2.274933776411713, 48.84915857662517], [2.27476144534474, 48.84919818252571], [2.2745910058092083, 48.8492381584933], [2.2744186742185573, 48.84927776389725], [2.274412300201589, 48.84929169237691], [2.274550756687294, 48.849412129497395], [2.274680180967127, 48.849523104331745], [2.274818638674262, 48.849643542016565], [2.274948064099399, 48.849754516538084], [2.274950891802194, 48.84976010163876], [2.274948042921877, 48.84992900657125], [2.274949638244487, 48.85010044223965], [2.274951604790826, 48.85010504091369], [2.275045541452265, 48.85020754944431], [2.275146181526701, 48.85031567545657], [2.275240118950589, 48.85041818381506], [2.275340759823042, 48.85052631054246], [2.275342722347849, 48.85053022206977], [2.275359813489925, 48.85064004524958], [2.2753752381824173, 48.85075465822612], [2.275392330816825, 48.85086448228668], [2.275407754284465, 48.85097909522764], [2.275396724850359, 48.85100724595603], [2.275415266246998, 48.85101857510285], [2.2754306898107908, 48.85113318802498], [2.275440925741214, 48.85123855284502], [2.27545306646668, 48.85124691849329], [2.27566354382696, 48.851261871296174], [2.275869188451019, 48.851276849340685], [2.276079666051591, 48.85129180141119], [2.276285310913368, 48.85130677874007], [2.276495790116834, 48.85132173008642], [2.276701433853703, 48.85133670669146], [2.2769119132974422, 48.85135165730541], [2.277117558634617, 48.85136663320315], [2.277126933665572, 48.851370148793436], [2.277227046178334, 48.85145753490763], [2.277320483837743, 48.851541000762786], [2.27742059700332, 48.85162838670161], [2.2775140352792, 48.851711852392825], [2.277561229403085, 48.85175599836736], [2.277595715913662, 48.85174338258108], [2.2776963027298303, 48.85168988869887], [2.277834630800043, 48.85161537059428], [2.277982536447889, 48.851536710999135], [2.278120863689706, 48.85146219345269], [2.278268768470615, 48.85138353349288], [2.278407094896508, 48.85130901560523], [2.278453320329711, 48.851301500501734], [2.2784729322758333, 48.85127424936399], [2.278619476541632, 48.85118501054823], [2.27875877676797, 48.85109953218674], [2.278905320052924, 48.85101029300689], [2.279044619343334, 48.850924814299155], [2.279191161647346, 48.850835574755195], [2.279330458639135, 48.85075009569308], [2.279477001325115, 48.85066085579323], [2.279616297380993, 48.85057537638493], [2.2797555929674562, 48.85048989770717], [2.27990213420601, 48.85040065636649], [2.279921402745421, 48.85036158887217], [2.27990452102755, 48.85031866228473], [2.279773762780749, 48.8502230004907], [2.279624245806947, 48.85010717608732], [2.279493487242532, 48.85001151396062], [2.279385587081565, 48.84993239105352], [2.279277687248153, 48.849853268043425], [2.279166567615131, 48.84977197155338], [2.279165751540855, 48.849771462992926], [2.279146113895608, 48.84975709605629], [2.279024602658537, 48.8496607003487], [2.2788969856185908, 48.84955886882415], [2.278775473941901, 48.84946247283816], [2.278647857874212, 48.849360641029755], [2.2785263471205672, 48.84926424477358], [2.278398732025126, 48.849162412681316], [2.278277223557172, 48.84906601616323], [2.278149609433969, 48.8489641837871], [2.278007805029239, 48.8488543269383], [2.277880191963349, 48.84875249335614], [2.277738390065241, 48.84864263617537], [2.27761077803173, 48.848540803185806], [2.277468977277579, 48.84843094566485], [2.277341366301367, 48.8483291114693], [2.277199565328532, 48.848219253599915], [2.277071955384674, 48.84811741999694], [2.277057042221043, 48.848106680496954]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 36, "roussel_fabien": 17.0, "nb_emargement": 1157.0, "nb_procuration": 50.0, "nb_vote_blanc": 5.0, "jadot_yannick": 49.0, "le_pen_marine": 109.0, "nb_exprime": 1150.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 1, "nb_inscrit": 1503.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1158, "quartier_bv": "61", "geo_point_2d": [48.84998261001542, 2.2770927100773157], "melenchon_jean_luc": 137.0, "poutou_philippe": 2.0, "macron_emmanuel": 506.0}, "geometry": {"type": "Point", "coordinates": [2.2770927100773157, 48.84998261001542]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "914fc7d4895bf32ca24ee96369b050da04aa6abb", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 58, "zemmour_eric": 81.0, "hidalgo_anne": 34.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "13-52", "geo_shape": {"coordinates": [[[2.346488859041595, 48.8280878850493], [2.346461824499017, 48.82807902147733], [2.346307709480564, 48.82804762293359], [2.346149877990746, 48.82801594754861], [2.345995764720016, 48.82798454770923], [2.3458379336105812, 48.827952871910774], [2.345828408741451, 48.82794552857834], [2.345799203520011, 48.82780940492053], [2.345769848311252, 48.827673847923435], [2.345740644757006, 48.82753772422581], [2.34571128985348, 48.8274021671815], [2.345682085242214, 48.827266043429184], [2.345652730643917, 48.827130486337666], [2.345623526337735, 48.82699436253808], [2.345594173406748, 48.826858805406836], [2.345564969405639, 48.82672268156004], [2.345535615417786, 48.82658712437411], [2.345506411721749, 48.82645100048003], [2.345477059401081, 48.82631544325438], [2.34544785601021, 48.82617931931305], [2.345418502632679, 48.82604376203276], [2.345389299546872, 48.82590763804419], [2.345359946474548, 48.82577208071671], [2.345358996698006, 48.82576983247215], [2.345279494280854, 48.825646441649845], [2.345195686909104, 48.82551174540378], [2.345194716685074, 48.82550754719634], [2.345213004020136, 48.82536431542619], [2.345232031816265, 48.825220141544996], [2.345250320298748, 48.825076910639275], [2.345269347886698, 48.824932736715276], [2.345287634803928, 48.8247895057597], [2.345306662183806, 48.82464533179287], [2.345313570350664, 48.82463299687585], [2.345303169769146, 48.82462331209896], [2.34519757522736, 48.824536500724435], [2.345095166944139, 48.824450667232966], [2.344992757636081, 48.82436483363981], [2.344887164134628, 48.82427802197116], [2.344784756870118, 48.82419218819413], [2.344679162691323, 48.82410537722036], [2.344672071942015, 48.824102322748146], [2.34463278366761, 48.82409671656683], [2.344582245802336, 48.8240877641873], [2.344554619618668, 48.82408682311573], [2.344546101753726, 48.824103244040806], [2.34456389020469, 48.82415127029525], [2.344581832423886, 48.82420136955443], [2.344568844817867, 48.8242124308715], [2.344481826000292, 48.82421356288309], [2.344389761111357, 48.824213899997346], [2.344376665772121, 48.82422518464814], [2.344423460862614, 48.82434245116197], [2.344477218138421, 48.824476592160515], [2.344524013680613, 48.82459385860873], [2.344577771474339, 48.82472799953209], [2.344624567468442, 48.824845265914696], [2.344678325779992, 48.82497940676279], [2.344725122237211, 48.825096672180464], [2.344778881055494, 48.82523081385264], [2.34482567796443, 48.82534807920476], [2.344879437300653, 48.82548222080168], [2.344926234661414, 48.82559948608816], [2.344979994515589, 48.825733627609885], [2.345026792328282, 48.825850892830736], [2.34502717036007, 48.82585224486552], [2.345046460586015, 48.825966763804935], [2.345066250867667, 48.8260899518589], [2.345065931322653, 48.82609305205815], [2.345022876832105, 48.826205390300935], [2.344980433761518, 48.826319137591945], [2.344980369647407, 48.82632337330289], [2.345025707749259, 48.82645256698447], [2.345072536493452, 48.826583911109985], [2.345117875061558, 48.82671310382737], [2.345164704271962, 48.82684444788625], [2.345210043283735, 48.82697364143801], [2.345256872960357, 48.827104985430346], [2.345302212438396, 48.82723417801786], [2.345349043943341, 48.82736552195102], [2.345394383865067, 48.82749471537292], [2.345441214474149, 48.82762605923201], [2.345486554862152, 48.827755251689666], [2.345533385937471, 48.827886595482205], [2.345530093985815, 48.82789024961494], [2.345547685082356, 48.827914022824764], [2.345572360857998, 48.82796503729245], [2.345601100432123, 48.828016674771476], [2.345601709169187, 48.828018749362606], [2.345615995348129, 48.82814673031769], [2.345629614711037, 48.82827368771669], [2.345643901028343, 48.82840166863936], [2.34565751916368, 48.8285286259989], [2.345671806981481, 48.82865660689657], [2.345685425262655, 48.82878356332474], [2.345699713218828, 48.82891154419], [2.3457133316232692, 48.82903850148543], [2.3457276183556752, 48.829166482310804], [2.345741238256815, 48.82929343958167], [2.345755525127593, 48.829421420374615], [2.345769143801142, 48.829548377605974], [2.345783432172448, 48.82967635837391], [2.345797050991842, 48.8298033146739], [2.345810669866281, 48.82993027185729], [2.3458249584442, 48.83005825257665], [2.3458385774532, 48.830185209728015], [2.345852866169504, 48.830313190414934], [2.345849284066544, 48.8303752392466], [2.345868437031815, 48.830377536674185], [2.345905166037229, 48.83042117276692], [2.345906535391015, 48.83045828028538], [2.345934324802576, 48.83046689446297], [2.34599965508091, 48.830448905418585], [2.346115343082835, 48.83041705083133], [2.34630113618827, 48.830367058545264], [2.346482153771055, 48.83031721435403], [2.346667944795584, 48.830267222385544], [2.346848963054438, 48.83021737674289], [2.347034753371409, 48.83016738420015], [2.347215770921613, 48.83011753889713], [2.347401560542282, 48.83006754488082], [2.3475825773951, 48.8300176990182], [2.347768366296945, 48.829967705326936], [2.3479493824523763, 48.82991785890475], [2.3481351706579, 48.829867863739956], [2.348316186115936, 48.82981801675813], [2.34850197360254, 48.82976802191838], [2.348607551472677, 48.82973894736535], [2.348621773577649, 48.82973117239882], [2.348600672305193, 48.82969195272446], [2.348512773575481, 48.82957037962895], [2.348429345514024, 48.829450485657105], [2.348422911477812, 48.82944146046722], [2.348393979575132, 48.82944121649925], [2.348190442889497, 48.82947697809592], [2.348003948203073, 48.82951245271877], [2.34800238006795, 48.829512796724245], [2.347830055251939, 48.829557941040775], [2.347665656720282, 48.829601468998675], [2.347501256540787, 48.829644997620775], [2.347328930853843, 48.82969014120994], [2.347164530113572, 48.82973366936573], [2.34699220384194, 48.82977881246613], [2.346974295978445, 48.82977337330897], [2.346911454037349, 48.82965252762605], [2.3468427966615533, 48.82951475180702], [2.346779955348291, 48.82939390512778], [2.34671129864934, 48.82925613010079], [2.346648457952535, 48.82913528332459], [2.346579801952959, 48.828997507291], [2.346539219164335, 48.82891946362555], [2.346540994144193, 48.828915006133215], [2.346522808781642, 48.82889760910791], [2.346500551501645, 48.82885480679561], [2.346485186797981, 48.82881615138155], [2.346484448304639, 48.82881323157532], [2.3464844266007763, 48.828693147919886], [2.346486491438476, 48.828573200666376], [2.346486468379153, 48.8284531160785], [2.346488533191477, 48.82833316969861], [2.346488511489575, 48.82821308509244], [2.346490576287692, 48.82809313868685], [2.346488859041595, 48.8280878850493]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 52, "roussel_fabien": 31.0, "nb_emargement": 1126.0, "nb_procuration": 49.0, "nb_vote_blanc": 12.0, "jadot_yannick": 88.0, "le_pen_marine": 51.0, "nb_exprime": 1111.0, "nb_vote_nul": 3.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1367.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1126, "quartier_bv": "51", "geo_point_2d": [48.82806943681253, 2.3460253211280038], "melenchon_jean_luc": 358.0, "poutou_philippe": 6.0, "macron_emmanuel": 375.0}, "geometry": {"type": "Point", "coordinates": [2.3460253211280038, 48.82806943681253]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "4314278d027bfa91565d01ce6c79035328368e14", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 34, "zemmour_eric": 44.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-11", "geo_shape": {"coordinates": [[[2.3430898891466843, 48.89492805268767], [2.343075245043698, 48.89494260790275], [2.343100374020293, 48.895073207504865], [2.34312473767486, 48.89519701841331], [2.343149866898396, 48.8953276179747], [2.343174230801059, 48.89545142794508], [2.343199360260196, 48.89558202836501], [2.343223724399612, 48.89570583829656], [2.343248855469587, 48.89583643868324], [2.343273218481869, 48.89596024856847], [2.343297582973819, 48.89608405844222], [2.343322713047839, 48.89621465876083], [2.343324237985563, 48.89621779315795], [2.34340801484023, 48.89632028212228], [2.343489821917204, 48.896423786341906], [2.343573599429206, 48.8965262751711], [2.3436554057838093, 48.896629780149944], [2.343656217960906, 48.8966310301584], [2.343725504744593, 48.89676482388205], [2.343797012875666, 48.89690139782309], [2.343866300380996, 48.89703519143231], [2.343937809252771, 48.897171765255536], [2.344007097479754, 48.89730555875022], [2.344078607080912, 48.89744213335496], [2.344089645694794, 48.89744810773169], [2.344160859542101, 48.89745455015364], [2.344224421543194, 48.89745805392866], [2.344255910956805, 48.89746573746129], [2.344270315549103, 48.89745972344905], [2.344396445909724, 48.897466676846264], [2.344602342554689, 48.89747887891828], [2.344792035083647, 48.89748933543933], [2.344997931910937, 48.89750153683101], [2.3451876246018, 48.89751199272528], [2.345393521622812, 48.89752419253734], [2.34558321447567, 48.89753464780481], [2.345789111667675, 48.89754684783577], [2.345978804682521, 48.89755730247645], [2.346184702056718, 48.89756950182705], [2.346374395233645, 48.89757995584094], [2.346580292790127, 48.897592154511194], [2.346769986128919, 48.897602607898285], [2.346776347396964, 48.89760405722304], [2.346911757205736, 48.897662808945874], [2.34709951439191, 48.897733265445936], [2.347119125206964, 48.89772246093028], [2.347057344802983, 48.89760688368948], [2.346993265567574, 48.89748527742901], [2.346931487088288, 48.89736970010568], [2.346867408438889, 48.89724809375156], [2.346805630509172, 48.89713251723747], [2.346741552456855, 48.89701090989041], [2.34667977508798, 48.89689533328638], [2.34661569762166, 48.8967737258456], [2.346553919449708, 48.89665814914422], [2.346489843933087, 48.89653654161721], [2.346428066321967, 48.89642096482584], [2.346363990027421, 48.896299357197705], [2.346302214341029, 48.89618378032383], [2.346267392789151, 48.89611769261018], [2.34627487246916, 48.89610924476351], [2.346264048678796, 48.896086816904216], [2.346234794531521, 48.896031297792945], [2.346148189494207, 48.89587122541585], [2.3460841145299662, 48.89574961757699], [2.346087772638705, 48.89573604523188], [2.346055735930129, 48.89571943882255], [2.345889171840512, 48.895664654503015], [2.345722786426191, 48.89561098338218], [2.345556223033897, 48.89555619859415], [2.345389838309408, 48.89550252700544], [2.345223275614439, 48.89544774174894], [2.345056891579683, 48.895394069692294], [2.344890329593356, 48.895339283068054], [2.34472394624854, 48.895285610543525], [2.344557384948229, 48.89523082435], [2.344391002293249, 48.895177151357636], [2.344224441690267, 48.89512236469565], [2.344058059725128, 48.89506869123536], [2.3440548393053, 48.89506794604547], [2.343821482645014, 48.89503485236004], [2.343595077763583, 48.89500125762896], [2.343361721694547, 48.89496816304564], [2.343135317399785, 48.89493456744332], [2.3430898891466843, 48.89492805268767]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 11, "roussel_fabien": 23.0, "nb_emargement": 1182.0, "nb_procuration": 75.0, "nb_vote_blanc": 4.0, "jadot_yannick": 124.0, "le_pen_marine": 58.0, "nb_exprime": 1177.0, "nb_vote_nul": 5.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1593.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1186, "quartier_bv": "70", "geo_point_2d": [48.89639126571372, 2.3449246155752084], "melenchon_jean_luc": 498.0, "poutou_philippe": 7.0, "macron_emmanuel": 337.0}, "geometry": {"type": "Point", "coordinates": [2.3449246155752084, 48.89639126571372]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6f4ad74e50ea14d5aa441af5915f0bd5dbb866ca", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 47, "zemmour_eric": 114.0, "hidalgo_anne": 36.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "19-26", "geo_shape": {"coordinates": [[[2.383351119961523, 48.88493431916505], [2.383351439122823, 48.884936041218054], [2.383315298273666, 48.88496709313848], [2.383315258324922, 48.884967127107075], [2.383188473096499, 48.88507806139039], [2.3830629902338, 48.88518480149423], [2.38293750686734, 48.88529154055697], [2.382810720044348, 48.88540247440752], [2.382685236999795, 48.885509213191746], [2.382558449109418, 48.88562014675321], [2.382432963649057, 48.88572688614416], [2.382306174691178, 48.8858378194165], [2.382287281979509, 48.88588622702066], [2.382321839712123, 48.88589573759374], [2.382436650609775, 48.88593734981787], [2.382589403676682, 48.88599714497564], [2.382768061777314, 48.88606189745461], [2.382920814226479, 48.88612169217578], [2.382922273422137, 48.886122149358336], [2.383108796407081, 48.88617185748481], [2.383290515647175, 48.886219358813584], [2.3834770393211793, 48.88626906726133], [2.383658759236412, 48.886316568027034], [2.38384528361013, 48.88636627589671], [2.384027004200496, 48.88641377609936], [2.384208726486033, 48.88646127603115], [2.384395250550048, 48.886510982131256], [2.384576973510712, 48.88655848149999], [2.384763498263794, 48.88660818792129], [2.384776572797342, 48.88661032804339], [2.3848093569822533, 48.88656976611792], [2.384859126068721, 48.88646698718736], [2.384908220855051, 48.88636343674087], [2.384957989559812, 48.88626065685065], [2.385007083955021, 48.886157106344164], [2.385056850893196, 48.88605432728582], [2.385105944897292, 48.885950776719355], [2.385116707947029, 48.88594459068265], [2.38530453583824, 48.885923847229925], [2.38548895936432, 48.88590371823552], [2.385676785606794, 48.88588297329184], [2.385861208833617, 48.88586284462258], [2.386049036143997, 48.88584209910116], [2.386233459092768, 48.88582196895855], [2.386421284733184, 48.885801223744686], [2.386605707393289, 48.885781093027965], [2.386610440536999, 48.885779954449646], [2.386738492181225, 48.88572983544057], [2.38686110553462, 48.88568165616623], [2.38687665495113, 48.88567569413169], [2.386875907084247, 48.885663233760454], [2.386933990297065, 48.88552808662841], [2.386987856571285, 48.88540326099473], [2.3870417239402952, 48.88527843622884], [2.387099806304164, 48.88514328806981], [2.387153671772295, 48.88501846321708], [2.387211753555666, 48.88488331497179], [2.387265618497229, 48.884758489139905], [2.38732369968953, 48.884623341707645], [2.387377565457344, 48.88449851580286], [2.387435646069163, 48.88436336828432], [2.387463317542564, 48.88429923956644], [2.38746144995788, 48.884296984396244], [2.387432318794248, 48.88429311484687], [2.387236456452311, 48.88427142361484], [2.387039032853676, 48.88425019891209], [2.386843169473481, 48.8842285070289], [2.386645746208336, 48.88420728077754], [2.386449883153387, 48.884185588250176], [2.386252460200761, 48.884164362248754], [2.386056597470961, 48.884142669077185], [2.385859174841352, 48.884121442426455], [2.385849002035496, 48.88411635492043], [2.385778055343736, 48.88401405869607], [2.3856857282887702, 48.88388298850512], [2.38561478224638, 48.88378069126302], [2.38552245736896, 48.88364962182461], [2.385451511965118, 48.883547324464075], [2.3853591879124583, 48.88341625487193], [2.385288241783694, 48.88331395738598], [2.385225961210087, 48.883300878858236], [2.385208451728113, 48.883318711625144], [2.385150017112758, 48.883369457317514], [2.385030312787169, 48.883472314515004], [2.384906154368895, 48.883580135466886], [2.384786449077274, 48.883682992400864], [2.384662289651801, 48.88379081307923], [2.384542583394238, 48.883893669749675], [2.38441842296166, 48.88400149015452], [2.38429871437456, 48.884104346554416], [2.384174554298248, 48.884212166692684], [2.384054844745285, 48.8843150228291], [2.383930683661751, 48.8844228426938], [2.383810973132071, 48.88452569946594], [2.383686811041302, 48.884633519057104], [2.383567099556277, 48.88473637466644], [2.383442935094762, 48.88484419397707], [2.38335936483787, 48.884915997406466], [2.383351119961523, 48.88493431916505]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 26, "roussel_fabien": 25.0, "nb_emargement": 1073.0, "nb_procuration": 63.0, "nb_vote_blanc": 16.0, "jadot_yannick": 94.0, "le_pen_marine": 47.0, "nb_exprime": 1052.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 4, "nb_inscrit": 1455.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1073, "quartier_bv": "75", "geo_point_2d": [48.885106106262704, 2.3849789452423553], "melenchon_jean_luc": 383.0, "poutou_philippe": 3.0, "macron_emmanuel": 276.0}, "geometry": {"type": "Point", "coordinates": [2.3849789452423553, 48.885106106262704]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "cffe1c5d7e9d756e4260043107f6223548b59b34", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 39, "zemmour_eric": 66.0, "hidalgo_anne": 39.0, "dupont_aignan_nicolas": 14.0, "date_tour": "2022-04-10", "id_bvote": "11-36", "geo_shape": {"coordinates": [[[2.381022581296865, 48.86386147003907], [2.38103715084383, 48.86385281906956], [2.381102589536829, 48.86373811717016], [2.381167755096373, 48.86362527005587], [2.38123319320532, 48.86351056896082], [2.381298359560282, 48.86339772175929], [2.381363797095867, 48.86328302056924], [2.381428962883405, 48.86317017327343], [2.381494399856311, 48.86305547108915], [2.381559563713296, 48.862942623691964], [2.381560268846508, 48.86294086642154], [2.381586949781707, 48.862822037351506], [2.38162095341102, 48.862680788592975], [2.381647634074613, 48.862561959481525], [2.381681636006735, 48.86242071066562], [2.381708316398729, 48.86230188151274], [2.381742319359605, 48.86216063265345], [2.381768999480001, 48.8620418034592], [2.381803000743607, 48.861900554542494], [2.381829680592413, 48.861781725306756], [2.381863682884668, 48.8616404763467], [2.381890362461885, 48.8615216470696], [2.381908024040154, 48.86150379996464], [2.381884487228541, 48.86148710527904], [2.3818297251050202, 48.861468612492416], [2.38168536716422, 48.861423440008636], [2.381508409383369, 48.86136368327599], [2.381364052011901, 48.861318510400345], [2.381187096318873, 48.86125875319402], [2.381042738153853, 48.86121357991948], [2.381037234526506, 48.86120047048413], [2.381072751122227, 48.86116527484901], [2.381111483039187, 48.86112641211398], [2.3810970876223, 48.861092703068394], [2.381069555432026, 48.8610875441333], [2.380895989321891, 48.861031921209836], [2.380700962457403, 48.86097091141577], [2.380527397129336, 48.8609152879519], [2.380332372496048, 48.86085427755783], [2.380158806587075, 48.86079865354647], [2.379963782811306, 48.86073764344461], [2.379790217684509, 48.860682018892824], [2.379621947572146, 48.86062874544258], [2.379448384535955, 48.860573120396644], [2.379280115124835, 48.86051984646051], [2.379106551453412, 48.86046422090634], [2.378938284095784, 48.86041094739071], [2.378764721152201, 48.86035532133524], [2.378665173614121, 48.860323803177515], [2.3786347070882172, 48.860306219267635], [2.378586405033224, 48.860325807127715], [2.378484301360698, 48.86043385040147], [2.378385011995598, 48.860541887513385], [2.378282907492701, 48.86064992969501], [2.378183617298193, 48.86075796661876], [2.37808151195419, 48.8608660086075], [2.377982220930265, 48.86097404534314], [2.377880114745147, 48.861082087138996], [2.37778082152881, 48.86119012367937], [2.377678714491925, 48.8612981661816], [2.377579421819776, 48.86140620164162], [2.377477313941754, 48.86151424395095], [2.377378020440165, 48.86162227922283], [2.377360033687836, 48.861641311108926], [2.377358855522124, 48.86164363248344], [2.377408321086392, 48.861670425899305], [2.377564210631991, 48.86174352162613], [2.377722137855274, 48.86181723299717], [2.377878029643437, 48.86189032831266], [2.378035956392829, 48.86196403925273], [2.378191849060559, 48.86203713414974], [2.378349778061869, 48.862110844673026], [2.378505670246159, 48.86218393914451], [2.378663600136587, 48.86225764924387], [2.37881949456346, 48.862330743303936], [2.378977423979789, 48.86240445297238], [2.379133319286236, 48.86247754661394], [2.379291250954707, 48.862551255865526], [2.379447145777708, 48.862624349081585], [2.379605078335103, 48.86269805790929], [2.379608898357588, 48.86271002189576], [2.379530512529469, 48.86279632844531], [2.379453896984069, 48.862881042386505], [2.379375510652569, 48.86296734792195], [2.379298893240589, 48.863052061743765], [2.379298608495775, 48.86305239302403], [2.379294095579778, 48.86306621141302], [2.379318921399094, 48.863074127584], [2.379487011054276, 48.86315188678967], [2.379657290996276, 48.863231537631236], [2.37982538302731, 48.86330929635769], [2.379995664001131, 48.863388946706465], [2.380163757045085, 48.863466704946624], [2.380334039050727, 48.86354635480268], [2.3805021330969103, 48.86362411345583], [2.38067241613438, 48.863703762819135], [2.380840509841233, 48.86378152007961], [2.381010793910427, 48.86386116895012], [2.381022581296865, 48.86386147003907]]], "type": "Polygon"}, "circ_bv": "06", "num_bureau": 36, "roussel_fabien": 18.0, "nb_emargement": 1404.0, "nb_procuration": 97.0, "nb_vote_blanc": 13.0, "jadot_yannick": 164.0, "le_pen_marine": 47.0, "nb_exprime": 1389.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 3, "nb_inscrit": 1745.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1405, "quartier_bv": "42", "geo_point_2d": [48.861932159421045, 2.379897183165236], "melenchon_jean_luc": 534.0, "poutou_philippe": 5.0, "macron_emmanuel": 452.0}, "geometry": {"type": "Point", "coordinates": [2.379897183165236, 48.861932159421045]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1b2ea7ec9d1936b2c1c9d4078d1e33c5ec311abe", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 54, "zemmour_eric": 43.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "3-12", "geo_shape": {"coordinates": [[[2.358131932621784, 48.863399752593686], [2.358118576271132, 48.86340577672014], [2.357972821755022, 48.863449692343806], [2.357802212112528, 48.86350311090107], [2.357611247785949, 48.863560646881574], [2.357440636046308, 48.863614064910735], [2.357262607498339, 48.86366934048196], [2.357091995045264, 48.863722758008876], [2.356913965755954, 48.86377803305605], [2.356743352589445, 48.86383145008071], [2.356742508591159, 48.86383168926684], [2.356598686098397, 48.86386875159574], [2.356435152003554, 48.86391447367021], [2.356301828616828, 48.863951472486605], [2.356138294001789, 48.86399719415208], [2.356004970192645, 48.864034192634975], [2.355841435057414, 48.86407991389138], [2.3556133328927, 48.86414399636497], [2.35544979706908, 48.864189717081736], [2.355270940342378, 48.86424108656409], [2.355107403913496, 48.86428680680894], [2.355107279431505, 48.86428684211198], [2.354945093560019, 48.864333444474454], [2.354766234479253, 48.8643848131886], [2.354604048008828, 48.864431414185525], [2.354394205385349, 48.86449357197032], [2.354394046692418, 48.86449361788018], [2.354231859539189, 48.864540219267475], [2.354054402055068, 48.86459100990455], [2.353892214294817, 48.86463761082743], [2.353714754784741, 48.864688400949085], [2.353552566428629, 48.86473500050832], [2.353478501383587, 48.86475619818702], [2.35345763431215, 48.864760156793125], [2.353453371684127, 48.8647633480225], [2.353349977890827, 48.864792939942845], [2.353280587405309, 48.86481245040406], [2.35326064475418, 48.86483154184317], [2.353252587174807, 48.86485712691795], [2.353252956988113, 48.86485720446133], [2.353333852061664, 48.864873309060364], [2.3535123769069, 48.864909319184825], [2.353708782656763, 48.86494893664004], [2.353887306657242, 48.86498494619541], [2.354083714340327, 48.86502456304], [2.354262238859225, 48.86506057203368], [2.354458645749464, 48.86510018825292], [2.354637172149756, 48.865136196692234], [2.354833579610225, 48.86517581229348], [2.355012106528723, 48.865211820171034], [2.355208514559517, 48.8652514351543], [2.355387040633226, 48.865287442462815], [2.355583450597327, 48.865327056835426], [2.355761977189331, 48.86536306358223], [2.35595838636055, 48.865402677329506], [2.356136914833934, 48.8654386835219], [2.356145017807639, 48.86543865606531], [2.356326226175526, 48.86540077192885], [2.356518836581648, 48.865360502607565], [2.356700045780038, 48.86532261701053], [2.356892655597137, 48.86528234798409], [2.357073864251817, 48.865244461818364], [2.357266473490999, 48.86520419218751], [2.357412842218833, 48.86517358925045], [2.357529049545795, 48.865149293207416], [2.357556070136642, 48.86514364378272], [2.357611446551242, 48.865132065191254], [2.357814147858841, 48.86508968412719], [2.358009162665883, 48.865048909986], [2.358211863326478, 48.865006528245196], [2.358406877522023, 48.86496575255357], [2.3586095775354, 48.86492337013603], [2.358804591097289, 48.86488259469263], [2.359007290463647, 48.86484021159829], [2.359202303402952, 48.8647994355038], [2.359397317411115, 48.86475865819809], [2.359600014449952, 48.86471627408787], [2.359657706245982, 48.864685705601175], [2.359657488232442, 48.86468525476276], [2.359586796115155, 48.86465106837376], [2.359548464930417, 48.86462199071912], [2.359547683684313, 48.864621339010746], [2.359468233906077, 48.86454843209152], [2.359364160935595, 48.8644574343086], [2.359232767795111, 48.86433878011665], [2.3591286942806162, 48.86424778300375], [2.359024622503817, 48.86415678490082], [2.358893230894924, 48.86403813030396], [2.358892846889832, 48.86403776581105], [2.358789237067939, 48.86392724428568], [2.358685801294387, 48.86382343719813], [2.358582190974935, 48.863712915464845], [2.35847875603937, 48.863609108178274], [2.358478208619735, 48.863608509877594], [2.358374600531167, 48.8634979879504], [2.358292603811606, 48.863399842572655], [2.358283739798079, 48.863374367860054], [2.358237561244731, 48.863375519622], [2.3581892944156913, 48.863385411694395], [2.3581440867755292, 48.86339903355029], [2.358131932621784, 48.863399752593686]]], "type": "Polygon"}, "circ_bv": "05", "num_bureau": 12, "roussel_fabien": 20.0, "nb_emargement": 1121.0, "nb_procuration": 72.0, "nb_vote_blanc": 9.0, "jadot_yannick": 117.0, "le_pen_marine": 34.0, "nb_exprime": 1111.0, "nb_vote_nul": 1.0, "arr_bv": "03", "arthaud_nathalie": 3, "nb_inscrit": 1474.0, "sec_bv": "01", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1121, "quartier_bv": "09", "geo_point_2d": [48.86453670912125, 2.3567889381421496], "melenchon_jean_luc": 332.0, "poutou_philippe": 6.0, "macron_emmanuel": 454.0}, "geometry": {"type": "Point", "coordinates": [2.3567889381421496, 48.86453670912125]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "32e20324f274223c21e0a2e9d9e75b8ac93ef2d4", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 120, "zemmour_eric": 150.0, "hidalgo_anne": 24.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-29", "geo_shape": {"coordinates": [[[2.3042812925753138, 48.84040461001733], [2.304255412025213, 48.84041049875659], [2.304239583298501, 48.840414100401034], [2.304217012622558, 48.84045731960006], [2.304133332822522, 48.84057607116615], [2.304050881076128, 48.84069537482535], [2.303967200527397, 48.8408141253506], [2.303884749386491, 48.840933428877754], [2.303801066702592, 48.84105218015291], [2.303718614804824, 48.8411714835401], [2.303634932734767, 48.84129023378228], [2.303552478717672, 48.841409537021654], [2.303468795886785, 48.84152828712233], [2.30338634247527, 48.84164759022965], [2.303302658871627, 48.84176634108809], [2.303220203340752, 48.8418856440475], [2.303212890780797, 48.841901421333766], [2.303272774230805, 48.84191727971983], [2.303414299873722, 48.84199742184864], [2.303551148243186, 48.84207511997058], [2.303692673380164, 48.84215526175078], [2.303829522579051, 48.8422329595433], [2.303830763675389, 48.842233586430076], [2.304002556764996, 48.842310429711496], [2.30417792829039, 48.8423853464221], [2.304349721029681, 48.84246218918659], [2.30452509356473, 48.8425371053781], [2.304696888678477, 48.84261394764153], [2.304872262223185, 48.84268886331388], [2.305044056986612, 48.84276570506045], [2.305219431540979, 48.842840620213664], [2.305391228678873, 48.84291746145908], [2.305566604242904, 48.84299237609322], [2.3057384010304762, 48.84306921682172], [2.30591377760417, 48.843144130936686], [2.305918106422697, 48.8431471068739], [2.305999901700527, 48.843226058338], [2.306108014509038, 48.843346851620716], [2.30618981037606, 48.84342580384014], [2.306297924039064, 48.84354659692958], [2.306375573170047, 48.84363637041412], [2.306425990321979, 48.84365165425851], [2.306426534832712, 48.843651489233935], [2.306496224045854, 48.8435471117004], [2.306594266288622, 48.84341371672728], [2.306663954847916, 48.84330933907383], [2.306761996214103, 48.8431759439348], [2.306831684119556, 48.84307156616138], [2.306825971661327, 48.843060129993724], [2.306682976908764, 48.84300623512085], [2.306543258054884, 48.84295111433898], [2.306400262531271, 48.84289721911506], [2.306260544268736, 48.842842097997604], [2.30625698110057, 48.84282869026049], [2.306392585631763, 48.84271908020344], [2.306526341059055, 48.84261097020249], [2.3066619444572, 48.84250135981873], [2.306795698767026, 48.84239324949555], [2.306931299669753, 48.84228363877719], [2.307065052862126, 48.842175528131705], [2.307200653994514, 48.84206591709459], [2.307334406069443, 48.841957806126864], [2.307470006068817, 48.841848194763045], [2.307603757026312, 48.841740083473105], [2.307605538162707, 48.84173821590304], [2.30769781983415, 48.84160843253915], [2.307781856087393, 48.841469637381635], [2.307802802644046, 48.84144017838499], [2.307798311226255, 48.841431289127065], [2.307766841206618, 48.84142201171809], [2.30758782059322, 48.841367894061754], [2.307394700815111, 48.84131080213498], [2.307215682320591, 48.841256684823506], [2.307022563362277, 48.84119959229029], [2.306843545636124, 48.84114547441656], [2.3066504274975053, 48.84108838127691], [2.306453866530136, 48.84103375551195], [2.306260749232314, 48.840976661737486], [2.306064189094675, 48.84092203532681], [2.305871072637654, 48.840864940917555], [2.305721183915058, 48.84082391697749], [2.305528068197316, 48.84076682200951], [2.305378180026864, 48.84072579763607], [2.305185065048304, 48.84066870210935], [2.305035177429998, 48.840627677302535], [2.304991850477375, 48.840601838543314], [2.304971535626001, 48.8406040624685], [2.304797013705846, 48.840556625627045], [2.304652589607342, 48.840515354179956], [2.304478069636828, 48.840467916877344], [2.304333646048683, 48.840426644142596], [2.3042812925753138, 48.84040461001733]]], "type": "Polygon"}, "circ_bv": "12", "num_bureau": 29, "roussel_fabien": 16.0, "nb_emargement": 1276.0, "nb_procuration": 79.0, "nb_vote_blanc": 17.0, "jadot_yannick": 86.0, "le_pen_marine": 56.0, "nb_exprime": 1250.0, "nb_vote_nul": 6.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1543.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1273, "quartier_bv": "58", "geo_point_2d": [48.84180920440235, 2.305449665767658], "melenchon_jean_luc": 216.0, "poutou_philippe": 5.0, "macron_emmanuel": 549.0}, "geometry": {"type": "Point", "coordinates": [2.305449665767658, 48.84180920440235]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e2bfd184aeeedd18492a0f01e737d25be59b6178", "fields": {"lassalle_jean": 16.0, "pecresse_valerie": 48, "zemmour_eric": 81.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 9.0, "date_tour": "2022-04-10", "id_bvote": "19-48", "geo_shape": {"coordinates": [[[2.380396456832899, 48.89403685826699], [2.380424071370753, 48.89402417776638], [2.3805449389250732, 48.893959108765], [2.380668338633374, 48.89389716167803], [2.380789205587458, 48.89383209242253], [2.380912604704095, 48.893770145076665], [2.380953771552471, 48.89374993527454], [2.380953252592013, 48.893745748063964], [2.380814983322133, 48.89363575344498], [2.380681512568271, 48.89352543543276], [2.380543244457543, 48.8934154404779], [2.380409773469583, 48.89330512303284], [2.38027150788182, 48.893195127749216], [2.380138038045086, 48.89308480907985], [2.380140116534299, 48.893072213186706], [2.380294853248234, 48.89298957793903], [2.3804480458592803, 48.892909209775965], [2.38060278160007, 48.8928265741181], [2.380755973245618, 48.89274620644843], [2.380910708013166, 48.892663570380414], [2.381063898703824, 48.89258320230488], [2.381218632498236, 48.89250056582668], [2.381371822234005, 48.89242019734532], [2.381526555055286, 48.89233756045697], [2.381679743836174, 48.892257191569755], [2.38183447568443, 48.89217455427125], [2.38198766351044, 48.892094184978134], [2.382142394385471, 48.89201154726946], [2.3822955812566082, 48.89193117757057], [2.382300615466142, 48.891925295009], [2.382318462592327, 48.89183437861735], [2.382337048436559, 48.891749591293205], [2.382343122232784, 48.89174333367902], [2.382430500210877, 48.89170524039877], [2.382547039025721, 48.89165536614465], [2.382559477454004, 48.89165454714865], [2.38266317606007, 48.89168157486021], [2.382776357882995, 48.891709613633715], [2.382789479792487, 48.891708318799346], [2.382946387325534, 48.89162858616486], [2.383101420360784, 48.8915490918769], [2.383258326925665, 48.89146935972138], [2.383413360384893, 48.8913898641258], [2.383570265992371, 48.891310131549936], [2.383725298501241, 48.89123063553894], [2.383882203151115, 48.89115090254282], [2.384037234698991, 48.891071407015716], [2.3841941384021093, 48.890991672700004], [2.3843491676358752, 48.89091217675048], [2.384401238860686, 48.89089368733311], [2.384385654612406, 48.89086575796277], [2.384382242102083, 48.890863354521954], [2.38422884221358, 48.89078895011387], [2.384084548242643, 48.89071576145605], [2.383931149203716, 48.890641357555836], [2.38378685606023, 48.89056816852951], [2.38363345788151, 48.89049376423794], [2.383489165565472, 48.890420574843006], [2.383335768257503, 48.890346169260816], [2.383191476769014, 48.89027297949734], [2.383047184322315, 48.89019978954806], [2.382893789649449, 48.89012538429102], [2.382861158111063, 48.890108336759646], [2.38283826360801, 48.890111585820165], [2.382808344641798, 48.89013768908919], [2.382689523701101, 48.89023967652794], [2.382595728537336, 48.89032150869577], [2.382472012412538, 48.890429443955036], [2.382353191511045, 48.89053143104002], [2.382234368780328, 48.89063341799055], [2.382110652529116, 48.89074135285282], [2.382108399179274, 48.89074287366767], [2.3819544598741063, 48.89082474387736], [2.381799444866396, 48.89090677290773], [2.38164550594397, 48.89098864361429], [2.381490488597812, 48.891070672225396], [2.381336548715614, 48.89115254162333], [2.381181530394771, 48.89123456982223], [2.381027589531632, 48.89131643971001], [2.380872570236097, 48.89139846749672], [2.38071862841329, 48.891480336075816], [2.38056360814306, 48.89156236345024], [2.380409665339192, 48.891644232519205], [2.380254644094259, 48.891726259481445], [2.380100700330623, 48.8918081272417], [2.379945679474776, 48.89189015379877], [2.379791733377083, 48.891972021142536], [2.379636711535818, 48.892054048186615], [2.379482764467744, 48.89213591512096], [2.379327741662482, 48.892217940853556], [2.379270832514407, 48.892248203852986], [2.379233849580896, 48.89225064714775], [2.379213859682343, 48.89227533776178], [2.379116820674203, 48.892326942139064], [2.379003081292954, 48.892384464588325], [2.379002821919001, 48.892384599040504], [2.378851000781116, 48.89246141210488], [2.378737259438015, 48.892518935186786], [2.378704038260656, 48.89253574377864], [2.378703797998635, 48.89253576231712], [2.378671485943958, 48.8925518174903], [2.378552885125818, 48.89261182158361], [2.37839833558602, 48.89269086280821], [2.378246512652682, 48.89276767598402], [2.378091962195906, 48.89284671590272], [2.377940138356124, 48.89292352867916], [2.377785586960886, 48.89300256909045], [2.377633760861581, 48.89307938056122], [2.377479209902443, 48.89315842057296], [2.377327382896686, 48.89323523164436], [2.377172829645997, 48.8933142712424], [2.377021003097613, 48.8933910819215], [2.376908115810518, 48.89344881272614], [2.376875946886758, 48.89347378309982], [2.37691831605017, 48.89350251736342], [2.377021636636855, 48.89351139339545], [2.377107776009706, 48.89351972221676], [2.37713618415453, 48.89353047294869], [2.377159688819543, 48.893518559618656], [2.377311905093438, 48.89344156373998], [2.3774694429076613, 48.89336296306543], [2.377621658268598, 48.8932859667821], [2.377779195144313, 48.89320736568895], [2.3779314082284753, 48.893130368993845], [2.37808894552971, 48.89305176748915], [2.3782411577009253, 48.89297477038943], [2.37839869269984, 48.892896168458975], [2.3785509053219283, 48.89281917096173], [2.378708439382548, 48.89274056861268], [2.378727078214115, 48.8927419288583], [2.378864757254336, 48.892849157544866], [2.378988234578611, 48.89294611233451], [2.379111712362751, 48.89304306698822], [2.379249392991408, 48.8931502952031], [2.37937287174609, 48.89324724956948], [2.379510553452522, 48.89335447746412], [2.379634033177756, 48.8934514315432], [2.379771715961872, 48.893558659117616], [2.379895196657666, 48.8936556129093], [2.380032880519679, 48.89376284016348], [2.380156362186043, 48.8938597936678], [2.380294047125859, 48.89396702060178], [2.380378160176392, 48.8940330629039], [2.380396456832899, 48.89403685826699]]], "type": "Polygon"}, "circ_bv": "16", "num_bureau": 48, "roussel_fabien": 20.0, "nb_emargement": 1419.0, "nb_procuration": 88.0, "nb_vote_blanc": 10.0, "jadot_yannick": 132.0, "le_pen_marine": 82.0, "nb_exprime": 1402.0, "nb_vote_nul": 7.0, "arr_bv": "19", "arthaud_nathalie": 5, "nb_inscrit": 1919.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1419, "quartier_bv": "74", "geo_point_2d": [48.89196049419279, 2.3811675379519417], "melenchon_jean_luc": 671.0, "poutou_philippe": 12.0, "macron_emmanuel": 297.0}, "geometry": {"type": "Point", "coordinates": [2.3811675379519417, 48.89196049419279]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1620a1192d143759f20115cc086e1cbd83e5d196", "fields": {"lassalle_jean": 9.0, "pecresse_valerie": 22, "zemmour_eric": 49.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 16.0, "date_tour": "2022-04-10", "id_bvote": "18-53", "geo_shape": {"coordinates": [[[2.35281600723839, 48.89414747357645], [2.352827201157295, 48.89416017941733], [2.35283614012182, 48.89424566676563], [2.352847767249885, 48.894381421753884], [2.352860229246399, 48.894500600468966], [2.352871855141526, 48.894636354516656], [2.352884317254097, 48.894755533201504], [2.352895944632822, 48.89489128722262], [2.352908406861658, 48.89501046587723], [2.352911624031342, 48.89504802536473], [2.3529221763994332, 48.895060788872286], [2.352969043390526, 48.89506073093837], [2.353166461862873, 48.89506023260794], [2.35336424661908, 48.895059234109524], [2.353561665081966, 48.89505873512761], [2.353759451188871, 48.89505773598383], [2.353956869653444, 48.89505723545115], [2.354154654371939, 48.895056236546594], [2.354352072827022, 48.89505573536243], [2.354549857543482, 48.89505473490589], [2.354747275977918, 48.89505423396949], [2.354945062044845, 48.895053232867625], [2.355142480480918, 48.89505273038048], [2.355340265159627, 48.895051729517824], [2.355537683586081, 48.89505122637919], [2.355735468262603, 48.89505022396455], [2.355932886668501, 48.89504972107371], [2.356130671331693, 48.89504871800637], [2.356328089727959, 48.89504821446405], [2.356525875741679, 48.89504721075133], [2.356723294139616, 48.89504670565823], [2.356921078776112, 48.89504570128549], [2.357118497153282, 48.89504519644017], [2.3573162817764173, 48.89504419141475], [2.357513700144128, 48.89504368591792], [2.35771148611766, 48.895042680247116], [2.357908904486891, 48.895042173199556], [2.358106689083271, 48.895041166868715], [2.358304107431826, 48.89504066006893], [2.358501892014715, 48.895039653085384], [2.35869931035368, 48.895039145634115], [2.358897094923269, 48.89503813799789], [2.359094513263703, 48.89503762899585], [2.359292299183646, 48.89503662071425], [2.359360496876791, 48.89504076180597], [2.359375099243673, 48.89501282343204], [2.359392191316188, 48.894891395253566], [2.35941192411721, 48.8947676195727], [2.359429016023345, 48.89464619136178], [2.35944874865485, 48.89452241474791], [2.359465840394606, 48.894400986504515], [2.359485571470823, 48.894277210748875], [2.359502663044204, 48.89415578247306], [2.3595223953147633, 48.89403200579165], [2.359539486721769, 48.89391057748342], [2.359559218811958, 48.89378680076826], [2.35957631004143, 48.89366537332688], [2.359596040587319, 48.893541596570685], [2.359613131661585, 48.893420168197615], [2.359628617281933, 48.893323030865126], [2.359632651744564, 48.89330794385438], [2.359631487840821, 48.8933048799405], [2.359635735310504, 48.89327824049705], [2.359657522002181, 48.89315105096999], [2.359677252149047, 48.89302727504158], [2.35969903863419, 48.892900085477834], [2.359718769962127, 48.89277630862229], [2.359728128386498, 48.89272167184924], [2.359717757023316, 48.89271427793569], [2.359662943593384, 48.892710226579766], [2.359526930145973, 48.892606972091265], [2.3593962805268482, 48.892509547651265], [2.359260268132486, 48.892406292840974], [2.359129620879674, 48.892308868099555], [2.3589936095383512, 48.89220561296746], [2.358862961924244, 48.892108187910004], [2.358726951635953, 48.89200493245618], [2.35859630638813, 48.891907507097216], [2.358460297152859, 48.89180425132164], [2.358329651543735, 48.89170682564666], [2.358193643372563, 48.89160356865007], [2.3580630001186123, 48.8915061435729], [2.357932357364645, 48.89140871744533], [2.357796349385181, 48.89130546086138], [2.357665707633677, 48.89120803442502], [2.357529702070976, 48.891104777526664], [2.357527161079374, 48.89110191753751], [2.357465299127343, 48.890977239870054], [2.357395655564804, 48.890849239665904], [2.357333795580519, 48.89072456280841], [2.357264152679214, 48.89059656249824], [2.357202291957348, 48.890471884637485], [2.35713264970617, 48.89034388512072], [2.357132416805806, 48.89034341802088], [2.357087504432883, 48.89025289742576], [2.357056079816573, 48.89018339986422], [2.357042540141442, 48.890162286594354], [2.356978816527098, 48.89017462577268], [2.35676772728256, 48.89018413552413], [2.356560688885195, 48.89019361181248], [2.356349599487227, 48.89020312082668], [2.356142560949502, 48.89021259549264], [2.35593552368895, 48.890222070707146], [2.355724432697706, 48.89023157861172], [2.3555173939219483, 48.8902410530958], [2.355306304141144, 48.890250560270495], [2.355099265213834, 48.89026003403143], [2.354888175279742, 48.890269540468886], [2.354681136200789, 48.89027901350671], [2.354470046113521, 48.89028851920691], [2.354461512332724, 48.89028701180056], [2.354333588422834, 48.89023034279621], [2.354199066856014, 48.89016882129084], [2.354071143522124, 48.890112152000036], [2.353936623934373, 48.890050630200555], [2.353921227388344, 48.89005056331617], [2.353789921088413, 48.89010894393836], [2.353629629612358, 48.89018225231274], [2.353498321300822, 48.89024063170158], [2.353388150141031, 48.89029101768512], [2.353354576214497, 48.89029098387023], [2.353337272335008, 48.89032039902915], [2.353287151152132, 48.890343320998966], [2.353125790463586, 48.89041695116942], [2.352965495740575, 48.89049025862687], [2.352804134130648, 48.89056388925328], [2.352643839866083, 48.8906371962777], [2.352482477357129, 48.89071082556155], [2.352322180823709, 48.89078413213821], [2.352160817404546, 48.89085776097873], [2.352000521329679, 48.890931067122374], [2.35183915700031, 48.891004695519605], [2.351678858656475, 48.891078001215455], [2.351620488600371, 48.89108243809732], [2.351615429020121, 48.891105746337416], [2.35162993792989, 48.89116310098651], [2.351657146803099, 48.89128289603953], [2.35168945868885, 48.89141062644663], [2.351716236475269, 48.891461772017735], [2.351720451042658, 48.89148026062957], [2.35173850981577, 48.89149164399639], [2.351779639112382, 48.89157020305552], [2.351841408001253, 48.89168521723928], [2.351909315752528, 48.89181492265989], [2.351971083854375, 48.89192993674373], [2.352038992259047, 48.892059641162625], [2.352100760937654, 48.89217465515388], [2.352168669984639, 48.89230435947029], [2.352230440603714, 48.89241937337639], [2.352298348929118, 48.89254907758296], [2.352360120124975, 48.89266409139646], [2.352421890218842, 48.89277910605793], [2.352489800854166, 48.89290881012075], [2.352551572899721, 48.89302382379779], [2.35261948281347, 48.89315352775073], [2.352616531370308, 48.89315988888242], [2.352633398601551, 48.89318456751251], [2.352633989937374, 48.89318615081677], [2.352659474599774, 48.89329669285843], [2.352682332797923, 48.89341302580327], [2.35270781767411, 48.893523567811755], [2.352730676068596, 48.893639901622564], [2.352756161169652, 48.89375044269862], [2.3527790184079223, 48.893866776468734], [2.352779141598404, 48.89386750918161], [2.352791603314726, 48.893986687959725], [2.352814462099847, 48.894103021705355], [2.352817985019203, 48.89413671220411], [2.35281600723839, 48.89414747357645]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 53, "roussel_fabien": 24.0, "nb_emargement": 1114.0, "nb_procuration": 61.0, "nb_vote_blanc": 9.0, "jadot_yannick": 104.0, "le_pen_marine": 52.0, "nb_exprime": 1103.0, "nb_vote_nul": 2.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1473.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1114, "quartier_bv": "71", "geo_point_2d": [48.892758771226504, 2.3556813423937464], "melenchon_jean_luc": 581.0, "poutou_philippe": 6.0, "macron_emmanuel": 211.0}, "geometry": {"type": "Point", "coordinates": [2.3556813423937464, 48.892758771226504]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "2b7fc853bb64b258c1f743f9b2155a56759ab7b5", "fields": {"lassalle_jean": 32.0, "pecresse_valerie": 55, "zemmour_eric": 116.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 24.0, "date_tour": "2022-04-10", "id_bvote": "13-46", "geo_shape": {"coordinates": [[[2.350618118111718, 48.821323442543864], [2.350641347024462, 48.821319299334334], [2.350691031913187, 48.82131852135855], [2.350894098356804, 48.821315644091115], [2.351093044930201, 48.8213125291701], [2.351296111328294, 48.821309651219984], [2.351495059216644, 48.82130653563749], [2.351698125569202, 48.82130365700466], [2.351897072048816, 48.821300540745945], [2.352100138355829, 48.82129766143042], [2.352299084788537, 48.82129454450283], [2.352337087428631, 48.821294005655616], [2.35235493395848, 48.82128917011856], [2.352354332825402, 48.82127320017702], [2.352326514632283, 48.8211777413479], [2.352298074469604, 48.82107885429662], [2.352270256483166, 48.82098339543792], [2.352241816544355, 48.8208845074568], [2.352242217168913, 48.82088010626302], [2.352250200595289, 48.820870178084824], [2.352245383034295, 48.82086131198244], [2.352309453004863, 48.82072818205645], [2.35237357080881, 48.820596109112884], [2.352437640126221, 48.82046297908683], [2.352501755917455, 48.82033090603601], [2.352565825943631, 48.82019777591728], [2.352629941084084, 48.820065702766556], [2.352620899644735, 48.820054345904715], [2.352426006907579, 48.82001558855454], [2.352224505625946, 48.81997566815911], [2.352217456394752, 48.81996171745144], [2.352337577331194, 48.8198541258739], [2.352454303252758, 48.81974975445276], [2.352574423212201, 48.819642162617015], [2.352691148174031, 48.81953779184435], [2.3528112671564863, 48.81943019975041], [2.352927991180923, 48.81932582782758], [2.352929400841974, 48.819316715731745], [2.35284415769425, 48.81919477139412], [2.352756038141564, 48.819072636930436], [2.35267079579838, 48.818950692442826], [2.352582677064227, 48.81882855782484], [2.35249743552537, 48.81870661318718], [2.352409317609737, 48.818584478415], [2.352409340481652, 48.818565748914146], [2.352386065796428, 48.818559542136725], [2.3523851790932913, 48.81855911012787], [2.352384651123372, 48.81855885364263], [2.352228888714957, 48.81848280269806], [2.352058937293157, 48.81840002462486], [2.351903175823152, 48.81832397414456], [2.351733224074211, 48.818241195589344], [2.351723329666939, 48.818236375219776], [2.351567569175136, 48.8181603242913], [2.351482392736349, 48.818118837026184], [2.351396967354908, 48.818077227830535], [2.351241207814474, 48.81800117646616], [2.351055208540457, 48.81791057874906], [2.350899450007446, 48.817834526028896], [2.350713450559892, 48.817743927759366], [2.350557693011917, 48.817667875482094], [2.350513984718142, 48.81764658532084], [2.350494480613668, 48.81763708442308], [2.350330012263675, 48.817557586652235], [2.35017372560829, 48.81748145993001], [2.350009258226934, 48.81740196260634], [2.349852973879287, 48.817325834562446], [2.349688507477766, 48.81724633678658], [2.349505139728076, 48.81715701541345], [2.349340674389288, 48.81707751714723], [2.349157307829048, 48.81698819522731], [2.348992843552989, 48.81690869647074], [2.348803710258663, 48.8168165634952], [2.348639247062884, 48.8167370642402], [2.348631713979043, 48.81673339508864], [2.348591857049814, 48.816713978809396], [2.348555763293183, 48.816696396177086], [2.348389435045117, 48.81661537274151], [2.34822497312669, 48.816535872003094], [2.348060511698586, 48.816456371932254], [2.34789418499686, 48.81637534689113], [2.3477297245792252, 48.81629584635394], [2.347563400265289, 48.81621482084857], [2.347398940858219, 48.81613531984505], [2.347232616208455, 48.81605429386056], [2.34706815781205, 48.81597479239075], [2.346901834188262, 48.8158937659346], [2.346789637684247, 48.815904666946686], [2.346759967310344, 48.8159075501614], [2.346553340097479, 48.81592758268769], [2.34633912140278, 48.815948396291525], [2.3461324952282, 48.81596842809722], [2.345918276209023, 48.81598924004697], [2.345711648349145, 48.81600927111725], [2.345497428982941, 48.81603008321159], [2.345290802161374, 48.81605011356128], [2.345057760207469, 48.81607275277741], [2.344851131686247, 48.8160927823591], [2.344755000893881, 48.81610212092344], [2.344548372139902, 48.81612214998141], [2.344418848140124, 48.8161347327641], [2.344403268723931, 48.816125382780825], [2.344412612635086, 48.8160027525733], [2.344428525005177, 48.815870355973885], [2.344437870184343, 48.81574772484477], [2.3444537824124883, 48.81561532821197], [2.34445307373843, 48.81561558514806], [2.344437939885124, 48.81562106936279], [2.344413098039887, 48.81563007090318], [2.344380523698902, 48.815641875691554], [2.344351265624786, 48.81565247729181], [2.344351024845452, 48.81565256411118], [2.344163997871613, 48.81571718716297], [2.3440053392478513, 48.81577468145208], [2.343967120859901, 48.8158023140121], [2.343963419101145, 48.815820408209], [2.343972385615866, 48.815945006896314], [2.343979574869282, 48.81607762102572], [2.343988541466934, 48.81620221968334], [2.343995732158707, 48.816334833788986], [2.344004697477381, 48.8164594324095], [2.344011888245706, 48.816592046483855], [2.344020855009024, 48.81671664508216], [2.344028044492087, 48.8168492591178], [2.344037011338238, 48.81697385768648], [2.34404420225968, 48.81710647169832], [2.344053167826734, 48.81723107022986], [2.344060358824836, 48.81736368421043], [2.344069325836557, 48.81748828271974], [2.344069550078703, 48.81748961953422], [2.344106408351553, 48.81761936800357], [2.344141275512461, 48.81774349966859], [2.344178134143131, 48.817873248086606], [2.34421300027148, 48.81799738059459], [2.344249859260073, 48.81812712896117], [2.344284727090681, 48.81825126142772], [2.344321586437307, 48.81838100974296], [2.344356453246563, 48.81850514215312], [2.344393312951123, 48.818634890416995], [2.344428181474068, 48.81875902188638], [2.344465041536569, 48.81888877009885], [2.344499909026851, 48.81901290241116], [2.344536769447298, 48.81914265057227], [2.344571638639985, 48.81926678284314], [2.344608499418383, 48.81939653095287], [2.344643367589711, 48.8195206631673], [2.3446417027934, 48.819526877764304], [2.344523455943655, 48.819659042204606], [2.34443329832559, 48.81976072218845], [2.344343140367316, 48.819862401195806], [2.344224891988627, 48.81999456620076], [2.344190290498037, 48.820033589459285], [2.344181723604957, 48.82004290683194], [2.344222997359474, 48.82006886449562], [2.344373908081074, 48.820162596322305], [2.344525691229612, 48.82025663582162], [2.344676604400696, 48.82035036725816], [2.344828388641737, 48.82044440635752], [2.344979301538487, 48.8205381373889], [2.34513108688333, 48.820632175189075], [2.345282002218192, 48.820725906729564], [2.345433788655548, 48.820819944129774], [2.345584703716187, 48.82091367526515], [2.345736491246061, 48.8210077122654], [2.345887408756237, 48.82110144301053], [2.346039197378638, 48.82119547961088], [2.346190114614496, 48.82128920995087], [2.346341904329428, 48.82138324615127], [2.346351531859828, 48.82138567853855], [2.346544396156473, 48.821382794257836], [2.346743343245647, 48.82137968657366], [2.34693620613651, 48.82137680165354], [2.347135153179359, 48.82137369331749], [2.347328017388314, 48.821370807772894], [2.3475269643962893, 48.821367697885634], [2.34771982719944, 48.82136481170164], [2.3479187755118582, 48.82136170206925], [2.348111638271139, 48.82135881525333], [2.348310585175366, 48.82135570496163], [2.348503449252609, 48.821352817521195], [2.348702396121809, 48.821349705678294], [2.348895258793321, 48.8213468175985], [2.349094206966956, 48.82134370601046], [2.349287069594569, 48.82134081729871], [2.349486016359984, 48.82133770505138], [2.349678880316849, 48.8213348148158], [2.349877827035868, 48.821331701916556], [2.350070689575757, 48.821328811940944], [2.350269636248478, 48.82132569838985], [2.350462500106281, 48.821322807789684], [2.350611761853609, 48.8213204706509], [2.350618118111718, 48.821323442543864]]], "type": "Polygon"}, "circ_bv": "10", "num_bureau": 46, "roussel_fabien": 25.0, "nb_emargement": 1306.0, "nb_procuration": 34.0, "nb_vote_blanc": 20.0, "jadot_yannick": 61.0, "le_pen_marine": 163.0, "nb_exprime": 1280.0, "nb_vote_nul": 6.0, "arr_bv": "13", "arthaud_nathalie": 3, "nb_inscrit": 1719.0, "sec_bv": "13", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1306, "quartier_bv": "51", "geo_point_2d": [48.81890040371211, 2.348020021248207], "melenchon_jean_luc": 396.0, "poutou_philippe": 10.0, "macron_emmanuel": 362.0}, "geometry": {"type": "Point", "coordinates": [2.348020021248207, 48.81890040371211]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "937fcf40a6459775bcbb4f50d0da1245a2495589", "fields": {"lassalle_jean": 10.0, "pecresse_valerie": 142, "zemmour_eric": 130.0, "hidalgo_anne": 13.0, "dupont_aignan_nicolas": 12.0, "date_tour": "2022-04-10", "id_bvote": "16-42", "geo_shape": {"coordinates": [[[2.259382106807334, 48.839624230916264], [2.259363299978398, 48.83962913657936], [2.259305441091928, 48.839698568862545], [2.259206418923181, 48.83982238947216], [2.259111125159007, 48.83993674288757], [2.259012102076158, 48.84006056330994], [2.258916807462996, 48.8401749156469], [2.258817783466033, 48.84029873588199], [2.258722487978301, 48.84041308893906], [2.258623463067212, 48.84053690898693], [2.258528166730479, 48.84065126096549], [2.258527823470534, 48.84065949080284], [2.25861421061723, 48.84077816252563], [2.258696618356086, 48.84089873866626], [2.258783006283641, 48.84101741024172], [2.258865414804049, 48.84113798534092], [2.258951803512574, 48.84125665676906], [2.259034211426414, 48.841377232617006], [2.259120602278268, 48.84149590390627], [2.259203010960986, 48.841616479612085], [2.259195594799882, 48.841628542838535], [2.25897547755714, 48.84168590404359], [2.258770228696541, 48.84173919557632], [2.258550109168781, 48.84179655508528], [2.258344859437514, 48.84184984588292], [2.258312143853237, 48.84185706377058], [2.258309197429171, 48.841874433969984], [2.258375944292592, 48.841962878362125], [2.258457764422617, 48.842071792325186], [2.25854655544769, 48.8421894463551], [2.2586283776523928, 48.84229836018783], [2.25871716944859, 48.84241601406719], [2.258798992365513, 48.84252492776114], [2.258887783570359, 48.84264258148152], [2.2589696072122942, 48.84275149413736], [2.259058400537874, 48.84286914861498], [2.259140224892146, 48.842978061132015], [2.259222049575512, 48.8430869744817], [2.259310842692896, 48.843204627828875], [2.259331761356018, 48.84321871468923], [2.259359436789199, 48.84320971874385], [2.259495599801685, 48.8431362421254], [2.259638049993847, 48.84306061519013], [2.259774212224005, 48.84298713824479], [2.259916661604359, 48.84291151096766], [2.260052823052193, 48.84283803369536], [2.260195271620743, 48.8427624060764], [2.26021486524314, 48.84276415690737], [2.2603123685391, 48.842853473839085], [2.260415085587486, 48.84294921294927], [2.260433891752854, 48.84295144093833], [2.260600368276034, 48.842876364308154], [2.260753926361285, 48.84280565680539], [2.260920401957803, 48.84273057972004], [2.261073957829621, 48.8426598708896], [2.26122751463442, 48.842589162765215], [2.261393988857229, 48.84251408500628], [2.261438025825298, 48.842493807150305], [2.261452328896747, 48.84249399168746], [2.261480538749221, 48.8424741521275], [2.261590057652662, 48.842423720500044], [2.261765575775644, 48.84234295285694], [2.261919130721273, 48.842272242925496], [2.262094647824186, 48.84219147478862], [2.262248201877082, 48.842120764425154], [2.262423717959929, 48.84203999579456], [2.262577271120096, 48.8419692849991], [2.262626426743275, 48.84194666481225], [2.262640083250054, 48.84193465783358], [2.262614214365958, 48.84190860545872], [2.262563860334403, 48.84178018490915], [2.262514737322774, 48.84165424068798], [2.2624643837694443, 48.841525820966574], [2.262415262600276, 48.84139987668425], [2.262364908175334, 48.8412714568833], [2.262315787486365, 48.84114551253144], [2.262266665672343, 48.841019568136836], [2.262216313343279, 48.840891148238], [2.262215606296575, 48.84088979301923], [2.262178920821137, 48.84083430029031], [2.26214354162122, 48.8407867327843], [2.262125679565091, 48.84076637412393], [2.262090769665205, 48.84077555183418], [2.261931340161854, 48.84082017816788], [2.261766793609255, 48.84086589512758], [2.261607363552068, 48.84091052102595], [2.261442816417344, 48.84095623843559], [2.261283387181612, 48.84100086300765], [2.261118838115062, 48.8410465799596], [2.260959408325609, 48.841091204096266], [2.260794858689675, 48.84113692059887], [2.260777037479807, 48.841132155319286], [2.26070005008346, 48.841012836415885], [2.2606266230993652, 48.840895647584816], [2.260549636396596, 48.84077632855934], [2.260476208721442, 48.840659139602664], [2.260399224087639, 48.84053981956425], [2.260325797071097, 48.84042263138976], [2.260319742548221, 48.84041817802837], [2.260119114473591, 48.84034576805923], [2.259918484292499, 48.84027373726807], [2.259912926354447, 48.84027001095325], [2.259830856076518, 48.84016660852449], [2.259747825811647, 48.84006011793323], [2.259665756191746, 48.8399567153718], [2.259582726598651, 48.8398502246459], [2.259500657636771, 48.839746821951785], [2.259417628715241, 48.83964033109132], [2.259382106807334, 48.839624230916264]]], "type": "Polygon"}, "circ_bv": "14", "num_bureau": 42, "roussel_fabien": 3.0, "nb_emargement": 903.0, "nb_procuration": 42.0, "nb_vote_blanc": 6.0, "jadot_yannick": 50.0, "le_pen_marine": 53.0, "nb_exprime": 897.0, "nb_vote_nul": 3.0, "arr_bv": "16", "arthaud_nathalie": 2, "nb_inscrit": 1151.0, "sec_bv": "16", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 906, "quartier_bv": "61", "geo_point_2d": [48.84160145490483, 2.2602624512678404], "melenchon_jean_luc": 78.0, "poutou_philippe": 0.0, "macron_emmanuel": 404.0}, "geometry": {"type": "Point", "coordinates": [2.2602624512678404, 48.84160145490483]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "078fb590c5bc9f29dc137de598a4ce14e4b91db9", "fields": {"lassalle_jean": 4.0, "pecresse_valerie": 26, "zemmour_eric": 69.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 6.0, "date_tour": "2022-04-10", "id_bvote": "19-69", "geo_shape": {"coordinates": [[[2.382154149656492, 48.885845916760154], [2.382123233607686, 48.88588623762185], [2.38199898042049, 48.885988868489456], [2.381868073764488, 48.8860957069856], [2.381743818211047, 48.8861983375618], [2.381612910504851, 48.88630517575859], [2.381488653948688, 48.88640780605046], [2.38135774519239, 48.88651464394788], [2.381233488997146, 48.88661727396244], [2.381102577827085, 48.88672411155351], [2.380978320629105, 48.8868267412837], [2.380847409772576, 48.886933578582415], [2.380723150208191, 48.887036208021186], [2.380624938783051, 48.887116358575426], [2.380609872656811, 48.88713731222383], [2.380637090852788, 48.88715454556623], [2.380767469999377, 48.88725970153581], [2.380902109981639, 48.88736577420835], [2.380907731299471, 48.88736841131147], [2.3810911700115662, 48.88741427904377], [2.381269933340226, 48.88746078962971], [2.38145337269679, 48.88750665680325], [2.381632135302419, 48.88755316683753], [2.381810899580385, 48.88759967750923], [2.381994339902723, 48.88764554384817], [2.382173103468328, 48.887692053068946], [2.382356544435123, 48.88773791884915], [2.382358020088327, 48.88773837162595], [2.382542544706642, 48.887804089866606], [2.382724557574399, 48.88787108989288], [2.382909083125718, 48.8879368075607], [2.383091096918341, 48.88800380792098], [2.383275623402462, 48.88806952501605], [2.383457636777675, 48.88813652390475], [2.383642165558386, 48.88820224043402], [2.383824179858374, 48.88826923965674], [2.384008708208395, 48.88833495560615], [2.3841907248182412, 48.88840195337136], [2.38424633185356, 48.888417658224], [2.384256532429638, 48.888412728434076], [2.384276093431479, 48.8883754262064], [2.384342630034523, 48.88824507340599], [2.384403362101407, 48.88812926153685], [2.384464093898146, 48.888013449624715], [2.384522130265853, 48.8878997480161], [2.384524027087484, 48.887896530096874], [2.384532525024848, 48.887879878750475], [2.38456438058631, 48.887757586200074], [2.384591245526282, 48.88763822495214], [2.384623100802004, 48.88751593235925], [2.384649965493333, 48.88739657017256], [2.384681819119749, 48.88727427753017], [2.3847086835410822, 48.887154916203315], [2.38474053824544, 48.88703262352537], [2.384767402407507, 48.886913262159126], [2.384799256826137, 48.886790969438636], [2.384826120739567, 48.886671607133685], [2.3848387219772222, 48.88664258864609], [2.384791224662036, 48.886617934264464], [2.384776572797342, 48.88661032804339], [2.384763498263794, 48.88660818792129], [2.384576973510712, 48.88655848149999], [2.384395250550048, 48.886510982131256], [2.384208726486033, 48.88646127603115], [2.384027004200496, 48.88641377609936], [2.38384528361013, 48.88636627589671], [2.383658759236412, 48.886316568027034], [2.3834770393211793, 48.88626906726133], [2.383290515647175, 48.886219358813584], [2.383108796407081, 48.88617185748481], [2.382922273422137, 48.886122149358336], [2.382920814226479, 48.88612169217578], [2.382768061777314, 48.88606189745461], [2.382589403676682, 48.88599714497564], [2.382436650609775, 48.88593734981787], [2.382321839712123, 48.88589573759374], [2.382287281979509, 48.88588622702066], [2.38227460101946, 48.885887719227775], [2.382210754686711, 48.88586457844572], [2.382162303379082, 48.88584589947945], [2.382154149656492, 48.885845916760154]]], "type": "Polygon"}, "circ_bv": "17", "num_bureau": 69, "roussel_fabien": 7.0, "nb_emargement": 1148.0, "nb_procuration": 38.0, "nb_vote_blanc": 13.0, "jadot_yannick": 101.0, "le_pen_marine": 53.0, "nb_exprime": 1130.0, "nb_vote_nul": 5.0, "arr_bv": "19", "arthaud_nathalie": 3, "nb_inscrit": 1674.0, "sec_bv": "19", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1148, "quartier_bv": "73", "geo_point_2d": [48.887082893747035, 2.3829525071925777], "melenchon_jean_luc": 630.0, "poutou_philippe": 11.0, "macron_emmanuel": 204.0}, "geometry": {"type": "Point", "coordinates": [2.3829525071925777, 48.887082893747035]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "e3a9c7c86c69e82e4c1120f88ee80b2ae41ec261", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 51, "zemmour_eric": 43.0, "hidalgo_anne": 30.0, "dupont_aignan_nicolas": 13.0, "date_tour": "2022-04-10", "id_bvote": "20-2", "geo_shape": {"coordinates": [[[2.403821863216004, 48.86006545539098], [2.4038174659876512, 48.860046647992704], [2.403665012655848, 48.85996413894231], [2.403499921742672, 48.85987724534987], [2.403347469399133, 48.8597947367816], [2.403182379562529, 48.8597078418385], [2.403029928217542, 48.85962533285311], [2.402864839437106, 48.85953843835802], [2.402712389090665, 48.85945592895551], [2.402547301386801, 48.85936903310978], [2.402394852038901, 48.8592865232902], [2.402229765391184, 48.859199627892416], [2.402150319300591, 48.85915662816281], [2.402128606701743, 48.85915343403579], [2.402089705256812, 48.85919134850325], [2.401990571896325, 48.85927496615192], [2.401862322081903, 48.859372932020676], [2.401763188011095, 48.859456549467275], [2.401634937322153, 48.85955451507627], [2.401634002632632, 48.85955531711457], [2.401534867848369, 48.85963893435829], [2.401404058050792, 48.859765122720326], [2.401289875623055, 48.8598808178296], [2.401159065998108, 48.86000700500387], [2.401044882496345, 48.86012269985416], [2.401043929693617, 48.86012377160003], [2.400970942150192, 48.860220568688], [2.40087175043889, 48.860356699540205], [2.4007987622492672, 48.860453496502835], [2.400699569634279, 48.86058962808304], [2.400626580798448, 48.860686424920345], [2.400625925690334, 48.86068744689083], [2.400557781142354, 48.86081525212061], [2.400489579004763, 48.86093452943681], [2.400421433799141, 48.86106233456047], [2.4003532310157, 48.861181612671665], [2.400352706568498, 48.86118288711105], [2.400312772105492, 48.8613189464729], [2.400270792211872, 48.861454943393525], [2.40023085732641, 48.861591002694645], [2.400188877010104, 48.86172699865387], [2.400188765696785, 48.861727432478496], [2.40016345644432, 48.86184392338646], [2.40014149792863, 48.861969136708105], [2.400116187090148, 48.86208562757382], [2.400094228358876, 48.86221084085949], [2.4000940820228243, 48.8622114750616], [2.400068770960487, 48.86232796589184], [2.4000368027389642, 48.862439702684654], [2.3999980274916632, 48.86255010848004], [2.399966058982104, 48.862661845231536], [2.399957127722, 48.86269595835799], [2.3999568188245872, 48.86269685974852], [2.399918043216389, 48.8628072654924], [2.39986476889095, 48.86293240707024], [2.399825992912366, 48.863042812760796], [2.399772718124847, 48.86316795427105], [2.399733941775974, 48.86327835990832], [2.399737598444242, 48.86328372933063], [2.3997810894927882, 48.86329224837962], [2.399898119804686, 48.86322503300777], [2.399981613912801, 48.863177077861664], [2.399983686651392, 48.86317558545382], [2.400085939862204, 48.86308285613098], [2.400207780409127, 48.86297236125931], [2.400310032822204, 48.86287963172804], [2.400431873781602, 48.8627691366148], [2.400534124034023, 48.8626764068682], [2.400655964042768, 48.86256591150654], [2.400758213497475, 48.86247318155149], [2.400880052555678, 48.862362685941434], [2.400969548169998, 48.86227814700589], [2.401092960816073, 48.862168468448694], [2.4011824571143, 48.86208392934591], [2.401182852395943, 48.86208357428489], [2.401299147760697, 48.861984435254705], [2.401422559017256, 48.86187475632858], [2.401538853459752, 48.861775617046796], [2.40166226371704, 48.86166593785282], [2.401701913387522, 48.86163213643531], [2.40172345451125, 48.86161889608223], [2.40172280735001, 48.86161578471873], [2.401799449786516, 48.861550446581724], [2.401930545473336, 48.86143860661721], [2.402046837975741, 48.861339466802754], [2.402177932600626, 48.861227626545976], [2.402294224161351, 48.86112848647228], [2.4024253163613283, 48.861016645916386], [2.402541606980386, 48.86091750558347], [2.402672699481437, 48.86080566474213], [2.402788989158833, 48.86070652414993], [2.402913817591008, 48.86060002534475], [2.4030395140649903, 48.86049278607535], [2.403164342825635, 48.860386287894414], [2.403290038268406, 48.86027904834123], [2.403294265036274, 48.8602766645721], [2.403420363989726, 48.86023103282565], [2.403550561952348, 48.86018391677348], [2.40367666045685, 48.86013828475316], [2.403806857945734, 48.860091169317506], [2.403821863216004, 48.86006545539098]]], "type": "Polygon"}, "circ_bv": "15", "num_bureau": 2, "roussel_fabien": 32.0, "nb_emargement": 957.0, "nb_procuration": 54.0, "nb_vote_blanc": 10.0, "jadot_yannick": 86.0, "le_pen_marine": 54.0, "nb_exprime": 945.0, "nb_vote_nul": 2.0, "arr_bv": "20", "arthaud_nathalie": 0, "nb_inscrit": 1159.0, "sec_bv": "20", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 957, "quartier_bv": "79", "geo_point_2d": [48.86086859233703, 2.4015791492275826], "melenchon_jean_luc": 331.0, "poutou_philippe": 7.0, "macron_emmanuel": 290.0}, "geometry": {"type": "Point", "coordinates": [2.4015791492275826, 48.86086859233703]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "bcbe2d479fef49bfba9bf0d1bf28a3dd7db1f83d", "fields": {"lassalle_jean": 11.0, "pecresse_valerie": 119, "zemmour_eric": 75.0, "hidalgo_anne": 29.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "17-7", "geo_shape": {"coordinates": [[[2.323313424692168, 48.88267735664509], [2.323281759906328, 48.88267223134034], [2.323155985342277, 48.88264704501764], [2.32296786677639, 48.88260913480475], [2.32277716803842, 48.882570947093456], [2.322589048647954, 48.88253303717434], [2.3223983504781263, 48.88249484795778], [2.322210231638316, 48.882456937440786], [2.32201953401324, 48.88241874851748], [2.321831417099332, 48.8823808365111], [2.321640720030712, 48.8823426469818], [2.321452602303947, 48.882304734369924], [2.321261905791791, 48.88226654423457], [2.321073788615708, 48.882228631024866], [2.320883094023551, 48.882190440291275], [2.320694977398154, 48.882152526483715], [2.320504281998945, 48.8821143351364], [2.320370095001681, 48.882087290453114], [2.320348225824229, 48.882082148925015], [2.32031351052879, 48.882137784265836], [2.320218273976757, 48.88224023971377], [2.320105574863065, 48.88236148011259], [2.320010337492866, 48.882463935374325], [2.319897638774528, 48.88258517556048], [2.319802400586153, 48.882687630635985], [2.319689699536085, 48.88280887059401], [2.319594460529525, 48.88291132548328], [2.319481759874696, 48.88303256522866], [2.319386520050045, 48.883135019931686], [2.319273817063555, 48.88325625944899], [2.319178576420598, 48.88335871396573], [2.319165541537588, 48.88336517169454], [2.319166145557331, 48.883374981451446], [2.3191316185299042, 48.88342971723503], [2.319096101330153, 48.88348602480421], [2.31909763344225, 48.88349472826379], [2.31911436871802, 48.88350030756809], [2.319328748116094, 48.88352856588438], [2.31954336188798, 48.88355685482477], [2.319757741739874, 48.88358511327071], [2.31997235461437, 48.883613401432925], [2.320186734931827, 48.88364165910934], [2.320401349635849, 48.88366994650888], [2.32041177542083, 48.88367626503974], [2.320465727396147, 48.883799205095045], [2.32051911677941, 48.883920864866646], [2.320573067897973, 48.884043804838505], [2.320626459146355, 48.88416546454289], [2.320630920145354, 48.884169922662124], [2.320758372900822, 48.884238722508854], [2.320885751513318, 48.88430748222253], [2.321013204942231, 48.88437628178934], [2.321140582875815, 48.884445040316336], [2.321268038341555, 48.88451383961103], [2.321395416948084, 48.884582597858284], [2.321409090208958, 48.88459245288568], [2.321425312291013, 48.88458879911191], [2.321571223616695, 48.88450305905109], [2.321716704340094, 48.884417571779245], [2.321862614717956, 48.88433183045069], [2.322008093109366, 48.884246343703005], [2.322154002527699, 48.88416060200604], [2.322299479974133, 48.8840751139917], [2.322445388421241, 48.883989372825546], [2.322590864910996, 48.88390388444384], [2.322736772398592, 48.883818142909234], [2.322882249295239, 48.88373265416793], [2.323028154459763, 48.883646912257156], [2.323173630399737, 48.88356142314852], [2.323187198527824, 48.8835596472259], [2.323361237309403, 48.88359973659135], [2.323535235569483, 48.88363981647861], [2.323709276250479, 48.88367990534296], [2.323883275046283, 48.88371998472149], [2.324057314899556, 48.88376007306928], [2.324231315594548, 48.88380015194681], [2.324405355983663, 48.883840239785805], [2.324579357214474, 48.88388031815456], [2.324753398139427, 48.88392040548472], [2.324927399905949, 48.883960483344794], [2.3251014413667352, 48.88400057016608], [2.325275443668966, 48.88404064751741], [2.325449485665581, 48.88408073382986], [2.325623488503517, 48.884120810672485], [2.32563672013042, 48.88411922503436], [2.325791379162618, 48.88403411637495], [2.325941087842795, 48.88395173069673], [2.326090796049183, 48.8838693448251], [2.326245453597265, 48.88378423555985], [2.326395162204193, 48.883701849302774], [2.326549818757409, 48.8836167396314], [2.326699525037844, 48.883534352973555], [2.326854180596101, 48.883449242896035], [2.326872377519068, 48.88340911269954], [2.326849925147949, 48.88340257962557], [2.326698781736582, 48.88337109759838], [2.326508077472718, 48.8833329158561], [2.326308602542392, 48.88329136502128], [2.326117898856585, 48.88325318265475], [2.325918424531347, 48.88321163206616], [2.3257277214236, 48.88317344907534], [2.325528246351535, 48.88313189782599], [2.325337545185406, 48.88309371421866], [2.325138070730075, 48.883052162316254], [2.324947370142016, 48.88301397808469], [2.324747896315089, 48.8829724246299], [2.32455719630511, 48.88293423977412], [2.324366495211245, 48.88289605460556], [2.32416702365138, 48.88285450108553], [2.323976323135603, 48.88281631529276], [2.323776852192494, 48.88277476111968], [2.323586152254813, 48.88273657470269], [2.323386681940152, 48.882695018977266], [2.323321757187508, 48.882682018216514], [2.323313424692168, 48.88267735664509]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 7, "roussel_fabien": 14.0, "nb_emargement": 1200.0, "nb_procuration": 87.0, "nb_vote_blanc": 9.0, "jadot_yannick": 105.0, "le_pen_marine": 44.0, "nb_exprime": 1191.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 1, "nb_inscrit": 1460.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1200, "quartier_bv": "67", "geo_point_2d": [48.883296981699274, 2.3224547782852176], "melenchon_jean_luc": 246.0, "poutou_philippe": 4.0, "macron_emmanuel": 532.0}, "geometry": {"type": "Point", "coordinates": [2.3224547782852176, 48.883296981699274]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "6248505903f6449be37acbba1ab4125f118911d0", "fields": {"lassalle_jean": 8.0, "pecresse_valerie": 65, "zemmour_eric": 68.0, "hidalgo_anne": 33.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "18-1", "geo_shape": {"coordinates": [[[2.345717884165436, 48.89341592750911], [2.345704078885045, 48.89338922316238], [2.345654116461447, 48.89330101177911], [2.345595839230373, 48.893191913142694], [2.345530450279708, 48.89307646505517], [2.345472174934109, 48.892967365444385], [2.34540678653975, 48.89285191726572], [2.345348510329483, 48.89274281846419], [2.345283122502634, 48.89262736929513], [2.3452248481666143, 48.892518270418535], [2.345222569041447, 48.89251567510207], [2.345086385640727, 48.892407414563934], [2.34495774479057, 48.89230502362731], [2.344955409722016, 48.89230232367766], [2.344890523522785, 48.89218310702265], [2.34482704680127, 48.892064949338106], [2.344762161191862, 48.89194573258771], [2.344698685051027, 48.891827574809575], [2.344633800031332, 48.891708357963864], [2.344570324482492, 48.891590199192805], [2.344505440052503, 48.891470982251704], [2.34444196507301, 48.891352824286336], [2.344377081232718, 48.89123360724994], [2.344313605470222, 48.8911154491835], [2.344300024773878, 48.89109332609746], [2.344277945138665, 48.89109228338457], [2.344066493500636, 48.89113720304379], [2.34383519515558, 48.89118459373766], [2.343827390454841, 48.89118238629779], [2.343793930555798, 48.891191112541854], [2.34379087211289, 48.8911914941819], [2.343584821715019, 48.89120137076169], [2.343373325780329, 48.891211435662214], [2.343167275224344, 48.891221311523346], [2.342955780491613, 48.89123137569376], [2.342749728413863, 48.89124125082877], [2.342538233519439, 48.89125131426154], [2.342332182647264, 48.89126118868537], [2.342120686227493, 48.89127125137297], [2.341914635197241, 48.89128112507815], [2.341703138615696, 48.89129118702814], [2.341692748264976, 48.891297707561826], [2.341701159590309, 48.89132592872089], [2.341757710771268, 48.891444853212434], [2.341815787616877, 48.89156620972605], [2.341872339331988, 48.89168513323811], [2.341930416712777, 48.89180648966956], [2.3419869689393122, 48.89192541400072], [2.342045046866755, 48.8920467694507], [2.342101599616085, 48.89216569370172], [2.342159678067257, 48.89228704996873], [2.342216231350754, 48.89240597324027], [2.342274310337127, 48.89252732942514], [2.342330864132074, 48.892646253515736], [2.34238894365376, 48.892767609618396], [2.342380713920557, 48.892778738507225], [2.342198452788606, 48.89282368114682], [2.342031308328528, 48.89286087526852], [2.3420232400980883, 48.892865692674604], [2.341951348248541, 48.892970603805374], [2.341890962682005, 48.893056783181244], [2.3418305755404862, 48.8931429634116], [2.341758682931147, 48.8932478735009], [2.341764570180714, 48.8932586068975], [2.34180842984153, 48.89326521877392], [2.34197833754201, 48.8932887893708], [2.342157350617664, 48.89331215433815], [2.342327259993088, 48.893335724446466], [2.342506272034225, 48.89335908798448], [2.342517841540205, 48.8933570686768], [2.342653729322514, 48.89327959614174], [2.342787980521176, 48.89320219270836], [2.342923868872383, 48.89312471896404], [2.343058119270103, 48.893047315216876], [2.343194005451422, 48.892969841147604], [2.343328256411914, 48.89289243709413], [2.343464141775725, 48.89281496360662], [2.343598391935383, 48.892737559239386], [2.34373427650427, 48.89266008453515], [2.343868525862993, 48.89258267985415], [2.343874938883765, 48.89258061687284], [2.344067161169074, 48.89255458864083], [2.344300055430199, 48.8925251936167], [2.344315402248057, 48.892530892120746], [2.344387058203675, 48.89265798731145], [2.344455406138965, 48.892776709628386], [2.344527064138449, 48.89290380471425], [2.344595412726885, 48.89302252602537], [2.344663760251982, 48.89314124817642], [2.344735419261772, 48.89326834309541], [2.344803768792627, 48.89338706514738], [2.344875427129991, 48.89351415904732], [2.344897024345798, 48.89355167369433], [2.344925011707842, 48.89356174361815], [2.3449567223384182, 48.8935436428639], [2.345138502179784, 48.89351420042786], [2.345311504930569, 48.89348596698315], [2.345493283006118, 48.8934565239996], [2.345666285384173, 48.89342828914155], [2.345717884165436, 48.89341592750911]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 1, "roussel_fabien": 33.0, "nb_emargement": 1247.0, "nb_procuration": 102.0, "nb_vote_blanc": 13.0, "jadot_yannick": 138.0, "le_pen_marine": 51.0, "nb_exprime": 1230.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 2, "nb_inscrit": 1543.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1246, "quartier_bv": "70", "geo_point_2d": [48.89223690357369, 2.343527715776901], "melenchon_jean_luc": 393.0, "poutou_philippe": 6.0, "macron_emmanuel": 423.0}, "geometry": {"type": "Point", "coordinates": [2.343527715776901, 48.89223690357369]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "1ab30f9ba333a854be96f59d5423a81aba0ec67b", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 130, "zemmour_eric": 127.0, "hidalgo_anne": 17.0, "dupont_aignan_nicolas": 7.0, "date_tour": "2022-04-10", "id_bvote": "17-14", "geo_shape": {"coordinates": [[[2.308211270074663, 48.88698784293448], [2.308270029001084, 48.88702194328344], [2.308447310890656, 48.887092546752854], [2.308626723130003, 48.88716142564635], [2.308804005978073, 48.887232028578694], [2.308983419181644, 48.88730090602978], [2.309160702988311, 48.88737150842502], [2.309340117132337, 48.8874403862321], [2.3095174018974, 48.88751098809025], [2.309696817005841, 48.88757986445488], [2.309874102729401, 48.88765046577595], [2.310053518778208, 48.887719342496645], [2.310230805460369, 48.8877899432806], [2.310410222473478, 48.88785881855877], [2.31058751147771, 48.887929418813506], [2.310766928067725, 48.88799829443984], [2.310769188790851, 48.88799956021916], [2.310795897724232, 48.888001333650855], [2.311005006953414, 48.887898272419676], [2.311196557016527, 48.88780820135042], [2.311202911601124, 48.88780659033396], [2.31145783671498, 48.88778720558704], [2.311709423902844, 48.88776807450679], [2.3117100601835983, 48.88776801611062], [2.311946586497913, 48.88774254401769], [2.312184020760942, 48.88771697415031], [2.31218519025303, 48.88771681359302], [2.31233281536326, 48.887692001846936], [2.312479974260694, 48.88766726818178], [2.31262713165466, 48.887642534327384], [2.312774756343826, 48.88761772203475], [2.312775459037862, 48.88761759116841], [2.312958936468429, 48.88757975977678], [2.313164030521773, 48.887537471818355], [2.313347508751397, 48.88749963983641], [2.31349919352276, 48.887463789078474], [2.313650879437067, 48.887427939034275], [2.313834356926935, 48.887390106302526], [2.313840718819363, 48.887382341973705], [2.3138396026281782, 48.88737017933637], [2.313657588980033, 48.887309996214114], [2.313481041481539, 48.8872515816559], [2.31329902866235, 48.88719139798207], [2.313122480604528, 48.88713298288106], [2.312940468626165, 48.88707279775644], [2.312763922736334, 48.887014382128264], [2.312581911575068, 48.88695419735137], [2.312405366489569, 48.88689578118823], [2.312223356157266, 48.88683559585975], [2.312046810512455, 48.88677717915386], [2.311864801021, 48.88671699237462], [2.311688257532288, 48.88665857604082], [2.311506248869806, 48.886598388710034], [2.311329704833679, 48.88653997093419], [2.311323238527771, 48.88653539931625], [2.311263092969847, 48.88644044196253], [2.311203178718721, 48.88634585012881], [2.311143033610558, 48.88625089179914], [2.311083119795612, 48.886156299889], [2.3110785052335823, 48.88615246826789], [2.310909696709727, 48.88607231164659], [2.310741281722088, 48.885992340507435], [2.310572472872784, 48.885912183391184], [2.310404058920907, 48.8858322117661], [2.310235252473399, 48.88575205417055], [2.310066838181851, 48.88567208295086], [2.310017856652759, 48.88564420830038], [2.310004920455958, 48.88565142463276], [2.309919734826839, 48.885717761219915], [2.309793992118033, 48.885812214480865], [2.309671097556524, 48.885907915210346], [2.309582975553121, 48.88597410871089], [2.309569795727632, 48.88598076420599], [2.30956419460014, 48.88598809563237], [2.309526572964288, 48.88601635510906], [2.309394860701714, 48.88611197861199], [2.3092691160889522, 48.88620643128785], [2.309137404248299, 48.88630205359966], [2.309011658709568, 48.88639650598878], [2.308879945903445, 48.886492128900066], [2.308754199438737, 48.886586581002504], [2.308622484327464, 48.88668220270687], [2.30849673693677, 48.88677665452258], [2.308365022235486, 48.88687227593511], [2.308239273906856, 48.88696672836335], [2.3082122527835702, 48.886986344032024], [2.308211270074663, 48.88698784293448]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 14, "roussel_fabien": 14.0, "nb_emargement": 1286.0, "nb_procuration": 96.0, "nb_vote_blanc": 7.0, "jadot_yannick": 91.0, "le_pen_marine": 52.0, "nb_exprime": 1282.0, "nb_vote_nul": 0.0, "arr_bv": "17", "arthaud_nathalie": 6, "nb_inscrit": 1612.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1289, "quartier_bv": "67", "geo_point_2d": [48.886971264450914, 2.3106954633831083], "melenchon_jean_luc": 217.0, "poutou_philippe": 5.0, "macron_emmanuel": 603.0}, "geometry": {"type": "Point", "coordinates": [2.3106954633831083, 48.886971264450914]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "20274476b25b0b46aab01c0f7680690c71f976f3", "fields": {"lassalle_jean": 17.0, "pecresse_valerie": 56, "zemmour_eric": 64.0, "hidalgo_anne": 48.0, "dupont_aignan_nicolas": 10.0, "date_tour": "2022-04-10", "id_bvote": "11-20", "geo_shape": {"coordinates": [[[2.367076939997184, 48.86170248649804], [2.367070276367091, 48.86171210393271], [2.367054940324798, 48.86177326826006], [2.367023870318775, 48.86190870635268], [2.366990317227822, 48.862042525056644], [2.366959246893329, 48.8621779630996], [2.366925693451948, 48.86231178265222], [2.366894621436787, 48.86244721973901], [2.366861067656098, 48.86258103924101], [2.366829996675268, 48.86271647628526], [2.366796442555169, 48.86285029573663], [2.366765371245853, 48.86298573273124], [2.366731816786238, 48.863119552131955], [2.366731017391011, 48.86312150937243], [2.366701378681357, 48.86317102783135], [2.366695542280765, 48.86317974127326], [2.366694558778695, 48.8631904517584], [2.366654298344733, 48.863257714719516], [2.366579140755415, 48.86337914304624], [2.366509242312646, 48.86349592436106], [2.366434084041582, 48.86361735257057], [2.366364183590998, 48.863734133768354], [2.3662890246381743, 48.86385556186067], [2.366219123553748, 48.86397234204935], [2.3661439652712772, 48.864093770930936], [2.366074063542067, 48.86421055100976], [2.365998903214757, 48.86433197976692], [2.365929000840751, 48.86444875973591], [2.365853839831655, 48.864570188375836], [2.365783936812843, 48.864686968234984], [2.365708776495979, 48.864808395865616], [2.365638872821407, 48.8649251765142], [2.365563710459664, 48.86504660402038], [2.36549380614037, 48.8651633845591], [2.365418643096814, 48.86528481194806], [2.36534873949558, 48.865401592384174], [2.365342787949257, 48.86540987165126], [2.365422272913448, 48.86544754479617], [2.365608396375767, 48.865489280724276], [2.365780347954675, 48.865527046208655], [2.365789050197383, 48.865527061745155], [2.365960781007141, 48.86548924234316], [2.366125004561436, 48.86545232544569], [2.366289227883083, 48.865415408321674], [2.366460957972598, 48.865377587298894], [2.366468791668757, 48.86537313475048], [2.366535378390811, 48.86528677437235], [2.366603668304094, 48.86519630937115], [2.366670255939636, 48.86510994891138], [2.366738545397841, 48.865019482919486], [2.366755954663598, 48.86501518174345], [2.366915465039989, 48.865058695840325], [2.36707147866638, 48.86510057061347], [2.367230988215705, 48.86514408337999], [2.36738700235143, 48.86518595773859], [2.367401712379298, 48.86518402995683], [2.367552282042725, 48.86508602391526], [2.367702863407536, 48.864988916183954], [2.367853431940391, 48.864890909746244], [2.368004012179882, 48.86479380161891], [2.368154579582276, 48.864695794785035], [2.368305158696455, 48.86459868626176], [2.368320162834531, 48.86459688133087], [2.368384602631255, 48.86461553115594], [2.368456145408998, 48.86463634897149], [2.368473237939325, 48.86463285258501], [2.368567549866869, 48.86453227572495], [2.368662370614425, 48.86443073827076], [2.368756681800039, 48.86433016214258], [2.368851501811106, 48.86422862452007], [2.368945810913533, 48.86412804731798], [2.36904063018812, 48.864026509527086], [2.369134939911705, 48.863925933064124], [2.369229758449819, 48.863824395104835], [2.369324067453184, 48.86372381757519], [2.369418883891882, 48.863622279440364], [2.369437432891151, 48.863619258247965], [2.369584864125755, 48.863676842894755], [2.369759830846588, 48.86374511267143], [2.369907262793706, 48.86380269691457], [2.370082231722651, 48.8638709662193], [2.370229663019332, 48.86392855005157], [2.37040463278257, 48.863996819776496], [2.370552064802631, 48.86405440230577], [2.3706052892484, 48.864075169267224], [2.370635650571101, 48.8640806602407], [2.370648714447805, 48.86406319623963], [2.370729131389359, 48.86394689420708], [2.370810132170733, 48.863827028382886], [2.370890548387388, 48.86371072621706], [2.37097154843018, 48.86359086025806], [2.371051963921945, 48.86347455795903], [2.371132963226162, 48.863354691865226], [2.371213377993048, 48.8632383894329], [2.3712943765587, 48.8631185232043], [2.37129255266552, 48.86310960561921], [2.371271909026768, 48.86310301379748], [2.371081858753972, 48.863052335442354], [2.370890742026586, 48.863001165529234], [2.370700692496212, 48.86295048656417], [2.3705095765168283, 48.86289931603768], [2.370319527728677, 48.8628486364627], [2.370128412497301, 48.862797465322785], [2.3699383644515812, 48.862746785137844], [2.369747249957337, 48.862695614283865], [2.36955720266473, 48.86264493258972], [2.3693660889185972, 48.862593761122376], [2.369176042357445, 48.86254307971756], [2.368984929370114, 48.86249190673754], [2.368794883551306, 48.862441224722794], [2.368603771312102, 48.86239005112944], [2.368413726235641, 48.86233936850478], [2.368222614744365, 48.86228819429802], [2.368032570410358, 48.862237511063434], [2.367841459656204, 48.86218633714262], [2.367651416075364, 48.862135652398834], [2.367460306069243, 48.862084477864656], [2.367452120073547, 48.86207421083995], [2.367501875000609, 48.861925106034455], [2.367552232563146, 48.86177270827305], [2.367541240792686, 48.86176193088418], [2.36734313803437, 48.86173929588895], [2.36715925225117, 48.86171777808666], [2.367076939997184, 48.86170248649804]]], "type": "Polygon"}, "circ_bv": "07", "num_bureau": 20, "roussel_fabien": 31.0, "nb_emargement": 1348.0, "nb_procuration": 82.0, "nb_vote_blanc": 11.0, "jadot_yannick": 153.0, "le_pen_marine": 45.0, "nb_exprime": 1334.0, "nb_vote_nul": 3.0, "arr_bv": "11", "arthaud_nathalie": 1, "nb_inscrit": 1678.0, "sec_bv": "11", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1348, "quartier_bv": "41", "geo_point_2d": [48.86364767628312, 2.368024490535103], "melenchon_jean_luc": 395.0, "poutou_philippe": 9.0, "macron_emmanuel": 505.0}, "geometry": {"type": "Point", "coordinates": [2.368024490535103, 48.86364767628312]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d8ca6affb56f9a5d35c66eb96191c02617645323", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 135, "zemmour_eric": 140.0, "hidalgo_anne": 16.0, "dupont_aignan_nicolas": 11.0, "date_tour": "2022-04-10", "id_bvote": "15-91", "geo_shape": {"coordinates": [[[2.28941997041149, 48.84496332291689], [2.289446203937765, 48.84495582332242], [2.28950424594411, 48.844926799224226], [2.289554861149484, 48.84490280072388], [2.289558653825405, 48.84489986792757], [2.289669010799033, 48.844763409365925], [2.289778968671554, 48.84462669739648], [2.289781794921043, 48.84462428588424], [2.289922701088948, 48.84453900702646], [2.290064188972427, 48.84445340318204], [2.290205092853616, 48.844368123970504], [2.290346579821697, 48.844282518879744], [2.290487484129098, 48.84419724022995], [2.290628970169331, 48.84411163479204], [2.290769872202481, 48.84402635488923], [2.290911358665258, 48.84394075001165], [2.291052259774348, 48.843855469763135], [2.291193743946871, 48.843769864530394], [2.291334644131908, 48.84368458393626], [2.2914761287514462, 48.84359897746522], [2.291617028000106, 48.84351369742471], [2.291758510329406, 48.843428090598536], [2.291762927304672, 48.843421614319574], [2.291766079539392, 48.843298943927564], [2.291769662824254, 48.84317944634596], [2.291773246105006, 48.84305994785211], [2.291776398281345, 48.842937278319404], [2.291779981529904, 48.842817779799425], [2.291783133675845, 48.84269511023993], [2.291775067298218, 48.84267304504949], [2.291761796731045, 48.84267157336234], [2.291602461577583, 48.842602975850056], [2.291443937235409, 48.84253500438497], [2.291284604280292, 48.84246640644903], [2.291126080768037, 48.84239843455445], [2.2909667472741653, 48.84232983707799], [2.290808224591827, 48.842261864753866], [2.290648893308423, 48.84219326595449], [2.290490371456, 48.842125293200866], [2.290466574860699, 48.842131858653794], [2.290308989317199, 48.84220939290831], [2.290146112728569, 48.84228860795442], [2.289988526234405, 48.84236614177589], [2.289825648668963, 48.84244535637456], [2.289824968612003, 48.84244566621704], [2.289664089887617, 48.84251445078904], [2.289501471153507, 48.84258390383191], [2.289485228957328, 48.842584026810236], [2.289474158482769, 48.84259458889701], [2.289473852887875, 48.84259471659101], [2.2893056638560623, 48.842662440071805], [2.289136073311181, 48.84273088797182], [2.288967883388763, 48.84279861186873], [2.288798290594694, 48.84286705927343], [2.288797689303708, 48.84286728773576], [2.288628139406584, 48.842927967307475], [2.2884594248154793, 48.842988415072384], [2.288289874130487, 48.843049094158104], [2.288121158754858, 48.84310954143939], [2.287951607269711, 48.843170220938426], [2.287782892472161, 48.84323066774421], [2.287777184119026, 48.843242566577565], [2.287818438257052, 48.843297485676096], [2.2878552341323513, 48.843348112514306], [2.287855353596375, 48.84335572367903], [2.28777792298829, 48.84346818108415], [2.287698266483247, 48.84358286370331], [2.287620835186562, 48.84369532188316], [2.287541176626077, 48.843810004366276], [2.287463744652968, 48.84392246242156], [2.2873840853997462, 48.84403714477669], [2.287306652750101, 48.844149602707375], [2.287226992804033, 48.84426428493458], [2.2872288942982513, 48.84427021590074], [2.287250549570582, 48.84427735009547], [2.287348294558965, 48.844356650443295], [2.287444740976036, 48.84443497525001], [2.287542487918056, 48.84451427543612], [2.287638934931062, 48.8445925991759], [2.287647817049649, 48.844595851114036], [2.287811112627848, 48.84460933174621], [2.287972119693694, 48.844622667226496], [2.288135414077258, 48.84463614740759], [2.288296421308927, 48.844649482451096], [2.2884574286352652, 48.84466281637846], [2.2886207232578712, 48.844676296795946], [2.288628703454033, 48.844675351347675], [2.288827476202013, 48.844607103807725], [2.289032587943323, 48.844534318528375], [2.289050849310616, 48.84453775381212], [2.289142240438648, 48.84464255871892], [2.289237272673306, 48.84475597143244], [2.289328664558889, 48.84486077617631], [2.289406169069467, 48.84495327056136], [2.28941997041149, 48.84496332291689]]], "type": "Polygon"}, "circ_bv": "13", "num_bureau": 91, "roussel_fabien": 18.0, "nb_emargement": 1299.0, "nb_procuration": 92.0, "nb_vote_blanc": 5.0, "jadot_yannick": 103.0, "le_pen_marine": 79.0, "nb_exprime": 1293.0, "nb_vote_nul": 2.0, "arr_bv": "15", "arthaud_nathalie": 3, "nb_inscrit": 1564.0, "sec_bv": "15", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1300, "quartier_bv": "60", "geo_point_2d": [48.843535895903244, 2.289608623462118], "melenchon_jean_luc": 196.0, "poutou_philippe": 7.0, "macron_emmanuel": 572.0}, "geometry": {"type": "Point", "coordinates": [2.289608623462118, 48.843535895903244]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "108c7ebfb36c1a684f6b1730802c632550f2c59e", "fields": {"lassalle_jean": 13.0, "pecresse_valerie": 53, "zemmour_eric": 61.0, "hidalgo_anne": 18.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-22", "geo_shape": {"coordinates": [[[2.341910006096793, 48.88243376212146], [2.34188734581025, 48.88248359990107], [2.341866612520605, 48.88260538575483], [2.341846092687791, 48.88272591909823], [2.341825360557381, 48.88284770582478], [2.341804840533607, 48.88296823913454], [2.341784106846702, 48.88309002581962], [2.341763586631963, 48.88321055909576], [2.341743066310867, 48.88333109325447], [2.341722332346396, 48.8834528789894], [2.341722773854201, 48.88345635552987], [2.341754135698659, 48.88352866773625], [2.341786002523485, 48.88360213924398], [2.3417856432522, 48.88360779945161], [2.341738066549255, 48.88369059551773], [2.341647240606338, 48.88384866059832], [2.341599663452027, 48.883931457490576], [2.341589781146702, 48.883937061729675], [2.341413242726423, 48.88396211827987], [2.341224555928217, 48.8839850833353], [2.341048017180796, 48.88401013844664], [2.340859330036155, 48.88403310382479], [2.340682790950124, 48.884058158396506], [2.340494103481822, 48.884081122298774], [2.340317562693813, 48.88410617632339], [2.340128874879077, 48.88412914054839], [2.339952335116154, 48.88415419404088], [2.339813752678797, 48.884171059534744], [2.33979751776866, 48.884176054824806], [2.339807689975788, 48.88420837527456], [2.339927888908503, 48.88431255266255], [2.34004324732011, 48.88441253394364], [2.340163448558985, 48.88451671108334], [2.340278807875109, 48.88461669211892], [2.340283204333762, 48.884619167916036], [2.340388576314067, 48.884656514864375], [2.340497209329523, 48.884695018231646], [2.34050419605027, 48.88470142756574], [2.340531560167937, 48.88480721801252], [2.340561038276074, 48.884921177900836], [2.340581088365617, 48.8849275323722], [2.340701279502485, 48.884883618119474], [2.340920434300903, 48.884803544229506], [2.341040624865435, 48.88475962963117], [2.341046792526069, 48.88475490522485], [2.341120076556539, 48.88462532486661], [2.341194497048461, 48.88449373350754], [2.341267780343756, 48.88436415302811], [2.341342200077932, 48.88423256244525], [2.341357566777543, 48.88422687508267], [2.341393232913885, 48.884231425836404], [2.341408929173438, 48.884233428649694], [2.341419583387408, 48.8842401162142], [2.341471090082479, 48.8843786795462], [2.341519843982391, 48.884513670849415], [2.341571351214807, 48.88465223410382], [2.341620105630729, 48.88478722533266], [2.341668860299417, 48.88492221652503], [2.3417203683324352, 48.88506077966388], [2.341769123517145, 48.88519577078182], [2.341820632087528, 48.88533433384303], [2.3418693877882673, 48.885469324886586], [2.341920896896124, 48.88560788787018], [2.34191282416967, 48.885624695117606], [2.341949891507431, 48.885633263501454], [2.342153846911976, 48.88564922499403], [2.342354438816618, 48.88566492214706], [2.342558394469051, 48.88568088295005], [2.342758986617584, 48.88569657942487], [2.342959578875694, 48.88571227646268], [2.34316353491041, 48.88572823533492], [2.343364127412404, 48.885743931694556], [2.3435680836837403, 48.885759890776505], [2.3437686764409422, 48.8857755855587], [2.343972632960235, 48.885791543951036], [2.344023331766989, 48.88578261440389], [2.344019444643474, 48.88576696458221], [2.344018766828175, 48.88576512893708], [2.343956573979823, 48.88565072817905], [2.343898383752027, 48.88553481865194], [2.343836192806817, 48.8854204178149], [2.34377800311556, 48.8853045073057], [2.343715812698631, 48.8851901072814], [2.343657623532676, 48.88507419668946], [2.343595433666586, 48.8849597956794], [2.3435372450145913, 48.88484388590391], [2.343475054324402, 48.88472948479992], [2.343416866197697, 48.88461357494165], [2.343354677410599, 48.88449917375864], [2.343296489809175, 48.8843832638176], [2.34330284165177, 48.88437256516052], [2.3434910223358463, 48.88430400525311], [2.343676805116541, 48.884236318642536], [2.343864986179519, 48.88416775814639], [2.344050767999403, 48.88410007004787], [2.344238948077588, 48.884031508955445], [2.344424728914002, 48.88396382116757], [2.344429548383138, 48.88396086987633], [2.344532543682486, 48.883856950563604], [2.344633935017344, 48.88375464926244], [2.344735324601488, 48.88365234695919], [2.34483831866915, 48.88354842825349], [2.344939708813855, 48.88344612576543], [2.345042700713566, 48.883342205957746], [2.345144090044061, 48.88323990417672], [2.345247081128082, 48.88313598417374], [2.345263086613731, 48.8830996029625], [2.345248009293993, 48.88309448246084], [2.345100096727473, 48.883066297854846], [2.34491643820374, 48.88303063920353], [2.34471512909213, 48.88299227920257], [2.34453147245659, 48.882956619965796], [2.344526543195473, 48.882953459711835], [2.344495909047055, 48.88294969826703], [2.344312252711691, 48.88291403869263], [2.344132702314256, 48.882875252770575], [2.34394904649014, 48.88283959263656], [2.343769496619788, 48.882800806167246], [2.343741285573832, 48.882795328396604], [2.343741171785771, 48.882795268417055], [2.343715280227841, 48.88278990138131], [2.343559834628761, 48.88275971841701], [2.343386562727548, 48.88272477085728], [2.3432029065816122, 48.88268910956638], [2.343029635166201, 48.88265416058857], [2.342845980877239, 48.882618498755406], [2.3426727085727572, 48.88258354925133], [2.34249943785313, 48.882548600402124], [2.342315784299409, 48.882512937752196], [2.342142512702073, 48.88247798747745], [2.341958859641796, 48.88244232427779], [2.341958688248107, 48.882442290959816], [2.341914432131729, 48.88243378105413], [2.341910006096793, 48.88243376212146]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 22, "roussel_fabien": 20.0, "nb_emargement": 1124.0, "nb_procuration": 63.0, "nb_vote_blanc": 11.0, "jadot_yannick": 112.0, "le_pen_marine": 39.0, "nb_exprime": 1111.0, "nb_vote_nul": 3.0, "arr_bv": "18", "arthaud_nathalie": 0, "nb_inscrit": 1437.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1125, "quartier_bv": "70", "geo_point_2d": [48.88406971749656, 2.342725259161003], "melenchon_jean_luc": 390.0, "poutou_philippe": 9.0, "macron_emmanuel": 388.0}, "geometry": {"type": "Point", "coordinates": [2.342725259161003, 48.88406971749656]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "d9088f00d8c1b52ede69704ab8095ac9d76298ba", "fields": {"lassalle_jean": 14.0, "pecresse_valerie": 53, "zemmour_eric": 51.0, "hidalgo_anne": 25.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "17-24", "geo_shape": {"coordinates": [[[2.325055227052096, 48.89426587755705], [2.325064220070752, 48.89427350503958], [2.325118284119062, 48.894390542760874], [2.325172381562082, 48.894507653477206], [2.325226444721163, 48.89462469201621], [2.325280542650763, 48.89474180265867], [2.325334607671738, 48.89485884023226], [2.325388706087825, 48.89497595080084], [2.325442771583439, 48.895092989199846], [2.325496870486122, 48.89521009969453], [2.325550936479685, 48.89532713712045], [2.325605035868969, 48.89544424754122], [2.325659102337189, 48.89556128579255], [2.325713202213083, 48.89567839613941], [2.325727515398737, 48.895684729713885], [2.3259352082249363, 48.89567196843297], [2.326140491656248, 48.8956593542134], [2.326348184291625, 48.895646591316755], [2.326553468886798, 48.89563397639665], [2.326761161308068, 48.895621213682766], [2.3269664457030093, 48.89560859805443], [2.327174137933422, 48.89559583372476], [2.32737942075272, 48.89558321827986], [2.327587114144617, 48.895570453241355], [2.327792396775382, 48.89555783618902], [2.327997680670528, 48.8955452187923], [2.32820537238366, 48.89553245357273], [2.328269088865289, 48.89552319903747], [2.328269407959411, 48.89552183026108], [2.328261973060504, 48.89549952404935], [2.328251669388171, 48.89546826248664], [2.328253248123047, 48.8954651470985], [2.328243268935832, 48.89544076806509], [2.328213674702345, 48.89535096395177], [2.328169880331464, 48.89522153787396], [2.328129982811193, 48.89510047304011], [2.328086188858962, 48.894971046902086], [2.328046291736857, 48.89484998111343], [2.328002498203473, 48.89472055491521], [2.327962601456318, 48.89459948997025], [2.32791880834157, 48.894470063711836], [2.327878911992573, 48.89434899781209], [2.327835119296559, 48.89421957149349], [2.327795223322599, 48.894098506437395], [2.327751431045312, 48.893969080058625], [2.327711536833234, 48.89384801405541], [2.327667744974665, 48.89371858761643], [2.327627849773671, 48.89359752244925], [2.327584058333919, 48.89346809595007], [2.327544163531067, 48.893347029828135], [2.327533648321551, 48.89331595041148], [2.3275287274215373, 48.893310245347855], [2.327475453218754, 48.89331798702014], [2.327296177234366, 48.89333825805542], [2.327115626722615, 48.8933586736468], [2.326936350457943, 48.89337894414267], [2.326755799664116, 48.89339935919076], [2.326576523119268, 48.89341962914721], [2.326395972043271, 48.893440043652035], [2.326216695218254, 48.89346031306904], [2.326036143871734, 48.89348072613137], [2.325856866754913, 48.89350099590817], [2.325676316489969, 48.893521408434914], [2.325497039093087, 48.893541677672296], [2.325316487182173, 48.89356208964806], [2.325305513603571, 48.893568901351856], [2.325264666189657, 48.8936838178935], [2.325224210705835, 48.8937976304508], [2.325183362932923, 48.893912546940726], [2.325142907093752, 48.89402635944684], [2.325102058961942, 48.89414127588504], [2.325061604119401, 48.894255089246904], [2.325055227052096, 48.89426587755705]]], "type": "Polygon"}, "circ_bv": "03", "num_bureau": 24, "roussel_fabien": 13.0, "nb_emargement": 927.0, "nb_procuration": 39.0, "nb_vote_blanc": 14.0, "jadot_yannick": 81.0, "le_pen_marine": 51.0, "nb_exprime": 907.0, "nb_vote_nul": 7.0, "arr_bv": "17", "arthaud_nathalie": 3, "nb_inscrit": 1170.0, "sec_bv": "17", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 928, "quartier_bv": "68", "geo_point_2d": [48.89454093165927, 2.326627069220572], "melenchon_jean_luc": 274.0, "poutou_philippe": 7.0, "macron_emmanuel": 327.0}, "geometry": {"type": "Point", "coordinates": [2.326627069220572, 48.89454093165927]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"},{"datasetid": "elections-presidentielles2022-1ertour", "recordid": "639ef1cc22b52d988033e59b15bf40db5ba0c3f1", "fields": {"lassalle_jean": 6.0, "pecresse_valerie": 36, "zemmour_eric": 45.0, "hidalgo_anne": 32.0, "dupont_aignan_nicolas": 8.0, "date_tour": "2022-04-10", "id_bvote": "18-16", "geo_shape": {"coordinates": [[[2.351720451042658, 48.89148026062957], [2.351661921327163, 48.89149923601956], [2.351456603125874, 48.89153598927845], [2.35125590352492, 48.89157168442317], [2.351050584751356, 48.89160843698343], [2.350849884592805, 48.89164413144534], [2.350649184147865, 48.89167982646893], [2.350443864530833, 48.891716577086086], [2.350243163528301, 48.89175227142684], [2.350037843339123, 48.89178902134539], [2.349837141779008, 48.891824715003274], [2.349631819653704, 48.891861464215836], [2.349604394674832, 48.89186118396104], [2.3495880109469143, 48.89187612085602], [2.349491881795567, 48.89198259919272], [2.349382997908581, 48.89210071732405], [2.349286867912183, 48.89220719637368], [2.349177983090426, 48.892325314294354], [2.349081852271342, 48.892431792258336], [2.348972966514806, 48.89254990996847], [2.348911232242242, 48.89261828883352], [2.3489234143958, 48.8926454444494], [2.3489441528212502, 48.892651932497365], [2.348978327270684, 48.892792000640796], [2.349010506336841, 48.8929296854971], [2.349044679794511, 48.89306975267943], [2.349076859196549, 48.89320743838229], [2.349111033015125, 48.89334750551019], [2.349143214128023, 48.89348519116774], [2.34917738830741, 48.89362525824126], [2.349209568403622, 48.893762943838674], [2.349243742943825, 48.89390301085773], [2.349275923387283, 48.89404069640241], [2.349294453494115, 48.894047680494644], [2.349497051409496, 48.893994431635605], [2.349687929077669, 48.893943347304536], [2.349890526195874, 48.893890096875516], [2.350081403095482, 48.89383901191242], [2.350284000757881, 48.893785761719315], [2.350474876888922, 48.89373467612421], [2.350648518131693, 48.89368820291658], [2.350851113263513, 48.893634951749355], [2.35086834774154, 48.89363033902586], [2.350875284747532, 48.89362627482538], [2.350928728495687, 48.89356134484435], [2.350979026166776, 48.89350391880854], [2.350986676495843, 48.89349985217209], [2.351185007116428, 48.89345797442203], [2.351380731544079, 48.893417477074564], [2.351579061533828, 48.89337559866872], [2.351774785345314, 48.89333510067421], [2.351973114693233, 48.89329322251183], [2.35216883789974, 48.89325272297098], [2.352367166616917, 48.89321084415287], [2.352562889196057, 48.89317034486418], [2.352616531370308, 48.89315988888242], [2.35261948281347, 48.89315352775073], [2.352551572899721, 48.89302382379779], [2.352489800854166, 48.89290881012075], [2.352421890218842, 48.89277910605793], [2.352360120124975, 48.89266409139646], [2.352298348929118, 48.89254907758296], [2.352230440603714, 48.89241937337639], [2.352168669984639, 48.89230435947029], [2.352100760937654, 48.89217465515388], [2.352038992259047, 48.892059641162625], [2.351971083854375, 48.89192993674373], [2.351909315752528, 48.89181492265989], [2.351841408001253, 48.89168521723928], [2.351779639112382, 48.89157020305552], [2.35173850981577, 48.89149164399639], [2.351720451042658, 48.89148026062957]]], "type": "Polygon"}, "circ_bv": "18", "num_bureau": 16, "roussel_fabien": 25.0, "nb_emargement": 1269.0, "nb_procuration": 60.0, "nb_vote_blanc": 15.0, "jadot_yannick": 111.0, "le_pen_marine": 61.0, "nb_exprime": 1247.0, "nb_vote_nul": 7.0, "arr_bv": "18", "arthaud_nathalie": 4, "nb_inscrit": 1664.0, "sec_bv": "18", "numero_tour": 1, "annee": "2022", "type_election": "Pr\u00e9sidentielle", "nb_votant": 1269, "quartier_bv": "70", "geo_point_2d": [48.892722267580616, 2.3506268208109358], "melenchon_jean_luc": 578.0, "poutou_philippe": 10.0, "macron_emmanuel": 331.0}, "geometry": {"type": "Point", "coordinates": [2.3506268208109358, 48.892722267580616]}, "record_timestamp": "2022-04-28T17:11:02.395+02:00"}] \ No newline at end of file diff --git a/france-circonscriptions-legislatives-2012.json b/france-circonscriptions-legislatives-2012.json new file mode 100644 index 0000000..1d66e12 --- /dev/null +++ b/france-circonscriptions-legislatives-2012.json @@ -0,0 +1,571 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "ID": "33004", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "4", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.454946, 44.953424 ], [ -0.40932, 44.947605 ], [ -0.364704, 44.911296 ], [ -0.331502, 44.870078 ], [ -0.360685, 44.852077 ], [ -0.424468, 44.872557 ], [ -0.459498, 44.86454 ], [ -0.452901, 44.825706 ], [ -0.526565, 44.806147 ], [ -0.546659, 44.836292 ], [ -0.54141, 44.869139 ], [ -0.547736, 44.916667 ], [ -0.542693, 44.984414 ], [ -0.595231, 45.024341 ], [ -0.554879, 45.033533 ], [ -0.474471, 44.994426 ], [ -0.454946, 44.953424 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38001", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.805288, 45.206202 ], [ 5.754684, 45.196794 ], [ 5.742797, 45.165725 ], [ 5.71463, 45.174402 ], [ 5.714042, 45.20175 ], [ 5.720136, 45.199633 ], [ 5.761206, 45.26654 ], [ 5.787891, 45.287583 ], [ 5.870423, 45.272456 ], [ 5.889757, 45.257461 ], [ 5.820517, 45.203142 ], [ 5.805288, 45.206202 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59010", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "10", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.058745, 50.780708 ], [ 3.080668, 50.772863 ], [ 3.147109, 50.789904 ], [ 3.188169, 50.740221 ], [ 3.156621, 50.717845 ], [ 3.084895, 50.728849 ], [ 3.065825, 50.719403 ], [ 3.058745, 50.780708 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33007", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "7", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.610649, 44.822474 ], [ -0.603047, 44.818477 ], [ -0.590137, 44.762703 ], [ -0.645128, 44.731697 ], [ -0.672079, 44.694818 ], [ -0.729967, 44.672575 ], [ -0.77144, 44.693034 ], [ -0.837084, 44.736773 ], [ -0.758553, 44.755294 ], [ -0.729251, 44.801549 ], [ -0.610649, 44.822474 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZA001", "code_dpt": "ZA", "nom_dpt": "GUADELOUPE", "nom_reg": "GUADELOUPE", "num_circ": "1", "code_reg": "01" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.493481, 16.353636 ], [ -61.45097, 16.356662 ], [ -61.406834, 16.330424 ], [ -61.441427, 16.291189 ], [ -61.445808, 16.262338 ], [ -61.509444, 16.236821 ], [ -61.527294, 16.219124 ], [ -61.54884, 16.253118 ], [ -61.549678, 16.288064 ], [ -61.533952, 16.332773 ], [ -61.493481, 16.353636 ] ] ], [ [ [ -61.224492, 15.964359 ], [ -61.200064, 15.943616 ], [ -61.203623, 15.902638 ], [ -61.248481, 15.87266 ], [ -61.280028, 15.867518 ], [ -61.330242, 15.898032 ], [ -61.337111, 15.939376 ], [ -61.292106, 16.001561 ], [ -61.235126, 15.985286 ], [ -61.224492, 15.964359 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZA002", "code_dpt": "ZA", "nom_dpt": "GUADELOUPE", "nom_reg": "GUADELOUPE", "num_circ": "2", "code_reg": "01" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.527294, 16.219124 ], [ -61.509444, 16.236821 ], [ -61.445808, 16.262338 ], [ -61.441427, 16.291189 ], [ -61.406834, 16.330424 ], [ -61.45097, 16.356662 ], [ -61.493481, 16.353636 ], [ -61.49608, 16.377188 ], [ -61.528135, 16.399629 ], [ -61.535703, 16.45294 ], [ -61.46959, 16.510713 ], [ -61.411674, 16.468783 ], [ -61.398201, 16.422636 ], [ -61.400311, 16.372849 ], [ -61.375819, 16.34161 ], [ -61.311377, 16.330034 ], [ -61.258016, 16.301406 ], [ -61.239246, 16.271005 ], [ -61.25177, 16.255457 ], [ -61.366325, 16.233598 ], [ -61.408861, 16.212386 ], [ -61.467362, 16.198564 ], [ -61.527294, 16.219124 ] ] ], [ [ [ -61.053742, 16.327986 ], [ -61.009821, 16.349984 ], [ -61.003398, 16.333705 ], [ -61.047828, 16.308224 ], [ -61.053742, 16.327986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZA003", "code_dpt": "ZA", "nom_dpt": "GUADELOUPE", "nom_reg": "GUADELOUPE", "num_circ": "3", "code_reg": "01" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.569185, 16.110811 ], [ -61.622303, 16.084462 ], [ -61.663489, 16.094566 ], [ -61.680743, 16.114919 ], [ -61.711437, 16.118044 ], [ -61.736425, 16.180694 ], [ -61.782306, 16.187695 ], [ -61.785476, 16.224545 ], [ -61.806057, 16.268002 ], [ -61.798587, 16.316116 ], [ -61.764955, 16.353865 ], [ -61.741649, 16.360524 ], [ -61.710431, 16.337297 ], [ -61.624249, 16.301505 ], [ -61.610205, 16.269202 ], [ -61.563709, 16.28487 ], [ -61.550223, 16.273689 ], [ -61.560025, 16.234469 ], [ -61.580273, 16.236521 ], [ -61.589548, 16.195244 ], [ -61.569185, 16.110811 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZA004", "code_dpt": "ZA", "nom_dpt": "GUADELOUPE", "nom_reg": "GUADELOUPE", "num_circ": "4", "code_reg": "01" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.782306, 16.187695 ], [ -61.736425, 16.180694 ], [ -61.711437, 16.118044 ], [ -61.680743, 16.114919 ], [ -61.663489, 16.094566 ], [ -61.622303, 16.084462 ], [ -61.569185, 16.110811 ], [ -61.557241, 16.052021 ], [ -61.571919, 16.023785 ], [ -61.613639, 15.989524 ], [ -61.622525, 15.971757 ], [ -61.707069, 15.950093 ], [ -61.710096, 15.970619 ], [ -61.746473, 16.010468 ], [ -61.769581, 16.059591 ], [ -61.770823, 16.131238 ], [ -61.782306, 16.187695 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "01001", "code_dpt": "01", "nom_dpt": "AIN", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.888208, 46.402982 ], [ 4.894444, 46.445374 ], [ 4.91453, 46.480113 ], [ 4.935599, 46.514229 ], [ 5.006369, 46.509703 ], [ 5.054751, 46.484281 ], [ 5.141042, 46.508585 ], [ 5.201221, 46.507821 ], [ 5.215064, 46.468359 ], [ 5.273677, 46.448588 ], [ 5.310561, 46.446775 ], [ 5.309146, 46.410257 ], [ 5.377881, 46.382324 ], [ 5.373462, 46.352236 ], [ 5.423534, 46.347732 ], [ 5.437146, 46.315127 ], [ 5.475305, 46.315385 ], [ 5.457672, 46.276848 ], [ 5.51137, 46.26436 ], [ 5.4641, 46.204347 ], [ 5.461671, 46.177417 ], [ 5.405268, 46.118273 ], [ 5.367077, 46.044365 ], [ 5.324754, 46.04179 ], [ 5.286965, 45.987002 ], [ 5.254463, 46.048534 ], [ 5.224504, 46.034586 ], [ 5.176519, 46.064011 ], [ 5.194267, 46.09137 ], [ 5.235487, 46.100474 ], [ 5.234442, 46.145429 ], [ 5.307536, 46.153346 ], [ 5.294456, 46.193934 ], [ 5.25824, 46.211516 ], [ 5.237167, 46.195299 ], [ 5.068122, 46.208969 ], [ 5.065924, 46.231556 ], [ 5.022599, 46.270653 ], [ 5.01135, 46.304235 ], [ 5.034967, 46.332568 ], [ 5.00495, 46.356205 ], [ 4.958722, 46.358602 ], [ 4.896281, 46.384617 ], [ 4.888208, 46.402982 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "01002", "code_dpt": "01", "nom_dpt": "AIN", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.435634, 45.829773 ], [ 5.354928, 45.882781 ], [ 5.302491, 45.848133 ], [ 5.266895, 45.789369 ], [ 5.224334, 45.768839 ], [ 5.191015, 45.77195 ], [ 5.157854, 45.803218 ], [ 5.101067, 45.813378 ], [ 4.970375, 45.807385 ], [ 4.923799, 45.803999 ], [ 4.900569, 45.8576 ], [ 4.880699, 45.897169 ], [ 4.849116, 45.912868 ], [ 4.761121, 45.934998 ], [ 4.730582, 45.950727 ], [ 4.754611, 45.973811 ], [ 4.748988, 46.003757 ], [ 4.83199, 46.003256 ], [ 4.836712, 45.973176 ], [ 4.92773, 45.98004 ], [ 5.001244, 45.927726 ], [ 5.03817, 45.931076 ], [ 5.072514, 45.966574 ], [ 5.139537, 45.970354 ], [ 5.209849, 45.945113 ], [ 5.248536, 45.954242 ], [ 5.366632, 45.936365 ], [ 5.390775, 45.905669 ], [ 5.468396, 45.875063 ], [ 5.478565, 45.838442 ], [ 5.435634, 45.829773 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "01003", "code_dpt": "01", "nom_dpt": "AIN", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.831226, 45.93846 ], [ 5.829401, 45.913987 ], [ 5.786934, 45.823224 ], [ 5.776366, 45.72792 ], [ 5.709199, 45.684927 ], [ 5.687901, 45.643964 ], [ 5.623748, 45.613268 ], [ 5.614911, 45.625412 ], [ 5.578845, 45.664644 ], [ 5.619665, 45.667548 ], [ 5.605298, 45.707948 ], [ 5.570824, 45.753383 ], [ 5.590647, 45.76002 ], [ 5.592636, 45.79913 ], [ 5.701643, 45.811602 ], [ 5.755937, 45.809497 ], [ 5.769397, 45.865906 ], [ 5.757199, 45.88145 ], [ 5.767285, 45.924057 ], [ 5.74457, 45.993414 ], [ 5.720833, 46.025514 ], [ 5.726312, 46.067928 ], [ 5.714846, 46.092874 ], [ 5.744521, 46.160872 ], [ 5.700804, 46.178652 ], [ 5.71051, 46.204172 ], [ 5.762908, 46.201018 ], [ 5.771744, 46.237187 ], [ 5.82577, 46.242625 ], [ 5.826262, 46.261715 ], [ 5.909198, 46.283945 ], [ 5.941531, 46.309264 ], [ 5.984117, 46.362656 ], [ 6.064008, 46.416227 ], [ 6.097526, 46.408284 ], [ 6.168451, 46.367459 ], [ 6.102366, 46.284846 ], [ 6.122535, 46.253339 ], [ 6.034514, 46.237238 ], [ 5.963676, 46.19697 ], [ 5.993235, 46.184823 ], [ 5.956063, 46.132089 ], [ 5.920403, 46.131039 ], [ 5.886227, 46.10962 ], [ 5.889993, 46.08715 ], [ 5.811419, 46.078429 ], [ 5.812288, 45.986652 ], [ 5.834026, 45.972027 ], [ 5.831226, 45.93846 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "01004", "code_dpt": "01", "nom_dpt": "AIN", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "4", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.888208, 46.402982 ], [ 4.896281, 46.384617 ], [ 4.958722, 46.358602 ], [ 5.00495, 46.356205 ], [ 5.034967, 46.332568 ], [ 5.01135, 46.304235 ], [ 5.022599, 46.270653 ], [ 5.065924, 46.231556 ], [ 5.068122, 46.208969 ], [ 5.237167, 46.195299 ], [ 5.25824, 46.211516 ], [ 5.294456, 46.193934 ], [ 5.307536, 46.153346 ], [ 5.234442, 46.145429 ], [ 5.235487, 46.100474 ], [ 5.194267, 46.09137 ], [ 5.176519, 46.064011 ], [ 5.224504, 46.034586 ], [ 5.254463, 46.048534 ], [ 5.286965, 45.987002 ], [ 5.248536, 45.954242 ], [ 5.209849, 45.945113 ], [ 5.139537, 45.970354 ], [ 5.072514, 45.966574 ], [ 5.03817, 45.931076 ], [ 5.001244, 45.927726 ], [ 4.92773, 45.98004 ], [ 4.836712, 45.973176 ], [ 4.83199, 46.003256 ], [ 4.748988, 46.003757 ], [ 4.739617, 46.047487 ], [ 4.761755, 46.067438 ], [ 4.748023, 46.091357 ], [ 4.795944, 46.139158 ], [ 4.780213, 46.176677 ], [ 4.810817, 46.254547 ], [ 4.851423, 46.326078 ], [ 4.85853, 46.368017 ], [ 4.888208, 46.402982 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "01005", "code_dpt": "01", "nom_dpt": "AIN", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "5", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.51137, 46.26436 ], [ 5.564674, 46.292767 ], [ 5.597891, 46.297898 ], [ 5.637458, 46.336442 ], [ 5.684582, 46.310934 ], [ 5.714553, 46.30807 ], [ 5.725181, 46.260693 ], [ 5.766045, 46.26833 ], [ 5.826262, 46.261715 ], [ 5.82577, 46.242625 ], [ 5.771744, 46.237187 ], [ 5.762908, 46.201018 ], [ 5.71051, 46.204172 ], [ 5.700804, 46.178652 ], [ 5.744521, 46.160872 ], [ 5.714846, 46.092874 ], [ 5.726312, 46.067928 ], [ 5.720833, 46.025514 ], [ 5.74457, 45.993414 ], [ 5.767285, 45.924057 ], [ 5.757199, 45.88145 ], [ 5.769397, 45.865906 ], [ 5.755937, 45.809497 ], [ 5.701643, 45.811602 ], [ 5.592636, 45.79913 ], [ 5.590647, 45.76002 ], [ 5.570824, 45.753383 ], [ 5.605298, 45.707948 ], [ 5.619665, 45.667548 ], [ 5.578845, 45.664644 ], [ 5.555279, 45.671605 ], [ 5.545542, 45.713593 ], [ 5.483998, 45.753284 ], [ 5.422513, 45.807127 ], [ 5.435634, 45.829773 ], [ 5.478565, 45.838442 ], [ 5.468396, 45.875063 ], [ 5.390775, 45.905669 ], [ 5.366632, 45.936365 ], [ 5.248536, 45.954242 ], [ 5.286965, 45.987002 ], [ 5.324754, 46.04179 ], [ 5.367077, 46.044365 ], [ 5.405268, 46.118273 ], [ 5.461671, 46.177417 ], [ 5.4641, 46.204347 ], [ 5.51137, 46.26436 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "02001", "code_dpt": "02", "nom_dpt": "AISNE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "1", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.320684, 49.69935 ], [ 3.428503, 49.71592 ], [ 3.488812, 49.737644 ], [ 3.556223, 49.715206 ], [ 3.647372, 49.759574 ], [ 3.707797, 49.714087 ], [ 3.689526, 49.682732 ], [ 3.706184, 49.641346 ], [ 3.732542, 49.613961 ], [ 3.817164, 49.661301 ], [ 3.847449, 49.704523 ], [ 3.923962, 49.67327 ], [ 3.971864, 49.725412 ], [ 3.986866, 49.761548 ], [ 4.030581, 49.784656 ], [ 4.088501, 49.763603 ], [ 4.115092, 49.774981 ], [ 4.209942, 49.782047 ], [ 4.242039, 49.765469 ], [ 4.225406, 49.727276 ], [ 4.185269, 49.698872 ], [ 4.127022, 49.677921 ], [ 4.11569, 49.633263 ], [ 4.050555, 49.634931 ], [ 4.026275, 49.619923 ], [ 4.07677, 49.570721 ], [ 4.051908, 49.545073 ], [ 4.074504, 49.518585 ], [ 4.040712, 49.508535 ], [ 4.037579, 49.438083 ], [ 4.047973, 49.405642 ], [ 4.035496, 49.359904 ], [ 3.961309, 49.377345 ], [ 3.92482, 49.407725 ], [ 3.859844, 49.381525 ], [ 3.856059, 49.368347 ], [ 3.741087, 49.347586 ], [ 3.621351, 49.424854 ], [ 3.596534, 49.424916 ], [ 3.537926, 49.501022 ], [ 3.49497, 49.497107 ], [ 3.465818, 49.473234 ], [ 3.417685, 49.458184 ], [ 3.376467, 49.4632 ], [ 3.395818, 49.519284 ], [ 3.3599, 49.535384 ], [ 3.415415, 49.56135 ], [ 3.390671, 49.583234 ], [ 3.333193, 49.592751 ], [ 3.320665, 49.625478 ], [ 3.351245, 49.638836 ], [ 3.347725, 49.668725 ], [ 3.320684, 49.69935 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "02002", "code_dpt": "02", "nom_dpt": "AISNE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "2", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.337102, 50.017401 ], [ 3.374724, 49.98881 ], [ 3.333073, 49.97693 ], [ 3.315654, 49.953118 ], [ 3.359298, 49.940916 ], [ 3.365666, 49.910849 ], [ 3.464152, 49.916839 ], [ 3.449173, 49.855789 ], [ 3.420926, 49.852746 ], [ 3.379918, 49.822254 ], [ 3.413846, 49.786745 ], [ 3.392507, 49.763608 ], [ 3.429696, 49.744057 ], [ 3.428503, 49.71592 ], [ 3.320684, 49.69935 ], [ 3.267894, 49.708059 ], [ 3.213389, 49.698687 ], [ 3.202235, 49.680465 ], [ 3.143842, 49.681878 ], [ 3.120398, 49.705733 ], [ 3.085933, 49.791747 ], [ 3.087836, 49.865693 ], [ 3.119134, 49.883023 ], [ 3.11762, 49.913962 ], [ 3.192717, 49.977536 ], [ 3.172707, 50.011995 ], [ 3.22935, 50.030189 ], [ 3.280355, 50.015209 ], [ 3.337102, 50.017401 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "02003", "code_dpt": "02", "nom_dpt": "AISNE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "3", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.209942, 49.782047 ], [ 4.115092, 49.774981 ], [ 4.088501, 49.763603 ], [ 4.030581, 49.784656 ], [ 3.986866, 49.761548 ], [ 3.971864, 49.725412 ], [ 3.923962, 49.67327 ], [ 3.847449, 49.704523 ], [ 3.817164, 49.661301 ], [ 3.732542, 49.613961 ], [ 3.706184, 49.641346 ], [ 3.689526, 49.682732 ], [ 3.707797, 49.714087 ], [ 3.647372, 49.759574 ], [ 3.556223, 49.715206 ], [ 3.488812, 49.737644 ], [ 3.428503, 49.71592 ], [ 3.429696, 49.744057 ], [ 3.392507, 49.763608 ], [ 3.413846, 49.786745 ], [ 3.379918, 49.822254 ], [ 3.420926, 49.852746 ], [ 3.449173, 49.855789 ], [ 3.464152, 49.916839 ], [ 3.365666, 49.910849 ], [ 3.359298, 49.940916 ], [ 3.315654, 49.953118 ], [ 3.333073, 49.97693 ], [ 3.374724, 49.98881 ], [ 3.337102, 50.017401 ], [ 3.353107, 50.035715 ], [ 3.490106, 50.01896 ], [ 3.541758, 50.051975 ], [ 3.594225, 50.043918 ], [ 3.614124, 50.025057 ], [ 3.663964, 50.05371 ], [ 3.710359, 50.066491 ], [ 3.745752, 50.053572 ], [ 3.837059, 50.047809 ], [ 3.882319, 50.032366 ], [ 3.949834, 50.026885 ], [ 3.982312, 50.044432 ], [ 3.980144, 50.003561 ], [ 4.084444, 49.970658 ], [ 4.140895, 49.97876 ], [ 4.233068, 49.957824 ], [ 4.217774, 49.916256 ], [ 4.255734, 49.903977 ], [ 4.209942, 49.782047 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "02004", "code_dpt": "02", "nom_dpt": "AISNE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "4", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.376467, 49.4632 ], [ 3.345238, 49.455689 ], [ 3.347654, 49.417366 ], [ 3.393606, 49.369316 ], [ 3.399302, 49.34767 ], [ 3.335754, 49.326919 ], [ 3.293888, 49.300195 ], [ 3.278288, 49.326085 ], [ 3.237297, 49.324285 ], [ 3.215519, 49.292773 ], [ 3.173249, 49.298972 ], [ 3.110019, 49.330841 ], [ 3.073703, 49.317502 ], [ 3.036335, 49.325744 ], [ 3.094371, 49.378531 ], [ 3.094432, 49.434268 ], [ 3.12673, 49.43182 ], [ 3.155214, 49.454185 ], [ 3.107085, 49.468231 ], [ 3.121281, 49.49368 ], [ 3.096325, 49.517896 ], [ 3.13148, 49.543378 ], [ 3.122533, 49.602034 ], [ 3.099382, 49.656556 ], [ 3.127083, 49.669533 ], [ 3.118652, 49.705834 ], [ 3.120398, 49.705733 ], [ 3.143842, 49.681878 ], [ 3.202235, 49.680465 ], [ 3.213389, 49.698687 ], [ 3.267894, 49.708059 ], [ 3.320684, 49.69935 ], [ 3.347725, 49.668725 ], [ 3.351245, 49.638836 ], [ 3.320665, 49.625478 ], [ 3.333193, 49.592751 ], [ 3.390671, 49.583234 ], [ 3.415415, 49.56135 ], [ 3.3599, 49.535384 ], [ 3.395818, 49.519284 ], [ 3.376467, 49.4632 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "02005", "code_dpt": "02", "nom_dpt": "AISNE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "5", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.376467, 49.4632 ], [ 3.417685, 49.458184 ], [ 3.465818, 49.473234 ], [ 3.49497, 49.497107 ], [ 3.537926, 49.501022 ], [ 3.596534, 49.424916 ], [ 3.621351, 49.424854 ], [ 3.741087, 49.347586 ], [ 3.669161, 49.32475 ], [ 3.643262, 49.295882 ], [ 3.677019, 49.237082 ], [ 3.67667, 49.207263 ], [ 3.748676, 49.15853 ], [ 3.619819, 49.147538 ], [ 3.613414, 49.115904 ], [ 3.63224, 49.08609 ], [ 3.587706, 49.05935 ], [ 3.585204, 49.038869 ], [ 3.650133, 49.041359 ], [ 3.677719, 49.016029 ], [ 3.639825, 49.003998 ], [ 3.621206, 48.966031 ], [ 3.574443, 48.939025 ], [ 3.566684, 48.913496 ], [ 3.528576, 48.912141 ], [ 3.485187, 48.851908 ], [ 3.382334, 48.873631 ], [ 3.361698, 48.91956 ], [ 3.313076, 48.921216 ], [ 3.26948, 48.937455 ], [ 3.249522, 48.974232 ], [ 3.163008, 49.019944 ], [ 3.190667, 49.049972 ], [ 3.155808, 49.085502 ], [ 3.16523, 49.09966 ], [ 3.071884, 49.117554 ], [ 3.110953, 49.170561 ], [ 3.10245, 49.197306 ], [ 3.0157, 49.216318 ], [ 2.971814, 49.187529 ], [ 2.964349, 49.231911 ], [ 3.039329, 49.230463 ], [ 3.034603, 49.285895 ], [ 2.99372, 49.288417 ], [ 2.96426, 49.321384 ], [ 3.001788, 49.34015 ], [ 3.036335, 49.325744 ], [ 3.073703, 49.317502 ], [ 3.110019, 49.330841 ], [ 3.173249, 49.298972 ], [ 3.215519, 49.292773 ], [ 3.237297, 49.324285 ], [ 3.278288, 49.326085 ], [ 3.293888, 49.300195 ], [ 3.335754, 49.326919 ], [ 3.399302, 49.34767 ], [ 3.393606, 49.369316 ], [ 3.347654, 49.417366 ], [ 3.345238, 49.455689 ], [ 3.376467, 49.4632 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "03001", "code_dpt": "03", "nom_dpt": "ALLIER", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845727, 46.726616 ], [ 2.880422, 46.77003 ], [ 2.959915, 46.803877 ], [ 3.032068, 46.794911 ], [ 3.049694, 46.757809 ], [ 3.129056, 46.727493 ], [ 3.167414, 46.690968 ], [ 3.204426, 46.678752 ], [ 3.268544, 46.715924 ], [ 3.298052, 46.715879 ], [ 3.318052, 46.688443 ], [ 3.366416, 46.690676 ], [ 3.380713, 46.71233 ], [ 3.434214, 46.712221 ], [ 3.455299, 46.652396 ], [ 3.486834, 46.660559 ], [ 3.5489, 46.705553 ], [ 3.629424, 46.749459 ], [ 3.622802, 46.740896 ], [ 3.670169, 46.672376 ], [ 3.695943, 46.661408 ], [ 3.713444, 46.610721 ], [ 3.734557, 46.60378 ], [ 3.755776, 46.536151 ], [ 3.863828, 46.512676 ], [ 3.865262, 46.489648 ], [ 3.916492, 46.496102 ], [ 3.965148, 46.477997 ], [ 3.925606, 46.429255 ], [ 3.887401, 46.458438 ], [ 3.855302, 46.411577 ], [ 3.672427, 46.441481 ], [ 3.60435, 46.42233 ], [ 3.566151, 46.445533 ], [ 3.535749, 46.424492 ], [ 3.539248, 46.388555 ], [ 3.470677, 46.383455 ], [ 3.476281, 46.365089 ], [ 3.525181, 46.334438 ], [ 3.556509, 46.276613 ], [ 3.516948, 46.250126 ], [ 3.5418, 46.212793 ], [ 3.484684, 46.190574 ], [ 3.381154, 46.21367 ], [ 3.367082, 46.25078 ], [ 3.336607, 46.261834 ], [ 3.272771, 46.230785 ], [ 3.231372, 46.173749 ], [ 3.141298, 46.173609 ], [ 3.093508, 46.204176 ], [ 3.087011, 46.237328 ], [ 3.003624, 46.282214 ], [ 3.029356, 46.313402 ], [ 3.029318, 46.338904 ], [ 2.982719, 46.386775 ], [ 2.978691, 46.439235 ], [ 2.904751, 46.459962 ], [ 2.837032, 46.495625 ], [ 2.891245, 46.522297 ], [ 2.88036, 46.554297 ], [ 2.932789, 46.589079 ], [ 2.879596, 46.640279 ], [ 2.845216, 46.653231 ], [ 2.845727, 46.726616 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "03002", "code_dpt": "03", "nom_dpt": "ALLIER", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845727, 46.726616 ], [ 2.845216, 46.653231 ], [ 2.879596, 46.640279 ], [ 2.932789, 46.589079 ], [ 2.88036, 46.554297 ], [ 2.891245, 46.522297 ], [ 2.837032, 46.495625 ], [ 2.904751, 46.459962 ], [ 2.978691, 46.439235 ], [ 2.982719, 46.386775 ], [ 3.029318, 46.338904 ], [ 3.029356, 46.313402 ], [ 3.003624, 46.282214 ], [ 3.087011, 46.237328 ], [ 3.093508, 46.204176 ], [ 3.141298, 46.173609 ], [ 3.116075, 46.161679 ], [ 3.113059, 46.081448 ], [ 3.090955, 46.111734 ], [ 3.016919, 46.102458 ], [ 2.971744, 46.12169 ], [ 2.943465, 46.168658 ], [ 2.915695, 46.174134 ], [ 2.915817, 46.212792 ], [ 2.936743, 46.243133 ], [ 2.85976, 46.25659 ], [ 2.819163, 46.241792 ], [ 2.817313, 46.205022 ], [ 2.786782, 46.198647 ], [ 2.732598, 46.223413 ], [ 2.723105, 46.181518 ], [ 2.676567, 46.172201 ], [ 2.654375, 46.125256 ], [ 2.637202, 46.119385 ], [ 2.565379, 46.143041 ], [ 2.559155, 46.174409 ], [ 2.528499, 46.184939 ], [ 2.515203, 46.238543 ], [ 2.48892, 46.250009 ], [ 2.470215, 46.286348 ], [ 2.38608, 46.331969 ], [ 2.357932, 46.323367 ], [ 2.314586, 46.334641 ], [ 2.312479, 46.37606 ], [ 2.286936, 46.383306 ], [ 2.281048, 46.420405 ], [ 2.305465, 46.475433 ], [ 2.3683, 46.518435 ], [ 2.446148, 46.521044 ], [ 2.482929, 46.532697 ], [ 2.536652, 46.519709 ], [ 2.611052, 46.551511 ], [ 2.598461, 46.59531 ], [ 2.57738, 46.606733 ], [ 2.5931, 46.646581 ], [ 2.677795, 46.704612 ], [ 2.704833, 46.739036 ], [ 2.77475, 46.718953 ], [ 2.793416, 46.733557 ], [ 2.845727, 46.726616 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "03003", "code_dpt": "03", "nom_dpt": "ALLIER", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.965148, 46.477997 ], [ 3.998722, 46.464903 ], [ 4.002691, 46.4405 ], [ 3.977569, 46.397871 ], [ 3.991544, 46.370419 ], [ 3.983719, 46.317985 ], [ 3.901973, 46.293158 ], [ 3.899534, 46.275914 ], [ 3.807687, 46.257215 ], [ 3.791627, 46.156585 ], [ 3.802831, 46.110138 ], [ 3.821294, 46.090239 ], [ 3.805606, 46.053061 ], [ 3.82322, 45.988158 ], [ 3.742071, 45.966692 ], [ 3.709612, 45.97414 ], [ 3.693892, 45.930958 ], [ 3.678016, 45.955954 ], [ 3.63916, 45.965428 ], [ 3.601154, 46.014958 ], [ 3.473174, 46.010738 ], [ 3.453593, 46.063795 ], [ 3.419742, 46.07438 ], [ 3.369134, 46.054484 ], [ 3.214511, 46.074945 ], [ 3.160066, 46.066435 ], [ 3.113059, 46.081448 ], [ 3.116075, 46.161679 ], [ 3.141298, 46.173609 ], [ 3.231372, 46.173749 ], [ 3.272771, 46.230785 ], [ 3.336607, 46.261834 ], [ 3.367082, 46.25078 ], [ 3.381154, 46.21367 ], [ 3.484684, 46.190574 ], [ 3.5418, 46.212793 ], [ 3.516948, 46.250126 ], [ 3.556509, 46.276613 ], [ 3.525181, 46.334438 ], [ 3.476281, 46.365089 ], [ 3.470677, 46.383455 ], [ 3.539248, 46.388555 ], [ 3.535749, 46.424492 ], [ 3.566151, 46.445533 ], [ 3.60435, 46.42233 ], [ 3.672427, 46.441481 ], [ 3.855302, 46.411577 ], [ 3.887401, 46.458438 ], [ 3.925606, 46.429255 ], [ 3.965148, 46.477997 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "04001", "code_dpt": "04", "nom_dpt": "ALPES-DE-HAUTE-PROVENCE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "1", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.636396, 43.788951 ], [ 6.586912, 43.80532 ], [ 6.554071, 43.783435 ], [ 6.520384, 43.806976 ], [ 6.487236, 43.792288 ], [ 6.415852, 43.790046 ], [ 6.412788, 43.762256 ], [ 6.383541, 43.734437 ], [ 6.35451, 43.736515 ], [ 6.267787, 43.778547 ], [ 6.24963, 43.801579 ], [ 6.210675, 43.797664 ], [ 6.169112, 43.751761 ], [ 6.110867, 43.74575 ], [ 6.070405, 43.704944 ], [ 6.034615, 43.692711 ], [ 6.021735, 43.668288 ], [ 5.951862, 43.721534 ], [ 5.938253, 43.748358 ], [ 5.905002, 43.75278 ], [ 5.888624, 43.726364 ], [ 5.855749, 43.723189 ], [ 5.83182, 43.745955 ], [ 5.781343, 43.755657 ], [ 5.807694, 43.774701 ], [ 5.886954, 43.890189 ], [ 5.850994, 43.9887 ], [ 5.887738, 43.997984 ], [ 5.885286, 44.040485 ], [ 5.935113, 44.073393 ], [ 5.891255, 44.093609 ], [ 5.923056, 44.148993 ], [ 5.98823, 44.177545 ], [ 6.024134, 44.167355 ], [ 6.057742, 44.180772 ], [ 6.08792, 44.171775 ], [ 6.101474, 44.21326 ], [ 6.14746, 44.23421 ], [ 6.279988, 44.231843 ], [ 6.302504, 44.248645 ], [ 6.338841, 44.23888 ], [ 6.394496, 44.250849 ], [ 6.467022, 44.301092 ], [ 6.495812, 44.284764 ], [ 6.532556, 44.288066 ], [ 6.545283, 44.323293 ], [ 6.602524, 44.288632 ], [ 6.677156, 44.294098 ], [ 6.728285, 44.252563 ], [ 6.717369, 44.208644 ], [ 6.687238, 44.168302 ], [ 6.707956, 44.124389 ], [ 6.756483, 44.079593 ], [ 6.745687, 44.042831 ], [ 6.795562, 44.008115 ], [ 6.838727, 43.989704 ], [ 6.848905, 43.955071 ], [ 6.912989, 43.927059 ], [ 6.942272, 43.897261 ], [ 6.892593, 43.889981 ], [ 6.832286, 43.918461 ], [ 6.801382, 43.910351 ], [ 6.781622, 43.883558 ], [ 6.748081, 43.871859 ], [ 6.695947, 43.8749 ], [ 6.667906, 43.830613 ], [ 6.70983, 43.810663 ], [ 6.636396, 43.788951 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "04002", "code_dpt": "04", "nom_dpt": "ALPES-DE-HAUTE-PROVENCE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "2", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.676037, 44.191433 ], [ 5.69239, 44.186269 ], [ 5.754537, 44.209827 ], [ 5.830739, 44.20043 ], [ 5.880201, 44.211941 ], [ 5.823013, 44.276466 ], [ 5.849039, 44.300663 ], [ 5.913496, 44.288254 ], [ 5.897084, 44.318251 ], [ 5.93746, 44.359903 ], [ 5.953543, 44.395018 ], [ 6.019295, 44.419151 ], [ 6.081921, 44.464208 ], [ 6.131767, 44.468145 ], [ 6.155616, 44.461969 ], [ 6.227244, 44.381738 ], [ 6.262495, 44.412259 ], [ 6.233525, 44.463747 ], [ 6.293492, 44.480927 ], [ 6.33766, 44.470814 ], [ 6.362, 44.522073 ], [ 6.398809, 44.494156 ], [ 6.481649, 44.454023 ], [ 6.557482, 44.445996 ], [ 6.6323, 44.446915 ], [ 6.64167, 44.485545 ], [ 6.668497, 44.5003 ], [ 6.683021, 44.531655 ], [ 6.738555, 44.554255 ], [ 6.769219, 44.5861 ], [ 6.845109, 44.61018 ], [ 6.915267, 44.659796 ], [ 6.948335, 44.654816 ], [ 6.954004, 44.61954 ], [ 6.930577, 44.574623 ], [ 6.855214, 44.530295 ], [ 6.861337, 44.502474 ], [ 6.941299, 44.429242 ], [ 6.895392, 44.41851 ], [ 6.887431, 44.361057 ], [ 6.840887, 44.345686 ], [ 6.796834, 44.316702 ], [ 6.790339, 44.272345 ], [ 6.728285, 44.252563 ], [ 6.677156, 44.294098 ], [ 6.602524, 44.288632 ], [ 6.545283, 44.323293 ], [ 6.532556, 44.288066 ], [ 6.495812, 44.284764 ], [ 6.467022, 44.301092 ], [ 6.394496, 44.250849 ], [ 6.338841, 44.23888 ], [ 6.302504, 44.248645 ], [ 6.279988, 44.231843 ], [ 6.14746, 44.23421 ], [ 6.101474, 44.21326 ], [ 6.08792, 44.171775 ], [ 6.057742, 44.180772 ], [ 6.024134, 44.167355 ], [ 5.98823, 44.177545 ], [ 5.923056, 44.148993 ], [ 5.891255, 44.093609 ], [ 5.935113, 44.073393 ], [ 5.885286, 44.040485 ], [ 5.887738, 43.997984 ], [ 5.850994, 43.9887 ], [ 5.886954, 43.890189 ], [ 5.807694, 43.774701 ], [ 5.781343, 43.755657 ], [ 5.757333, 43.729409 ], [ 5.716274, 43.756931 ], [ 5.654445, 43.825111 ], [ 5.571719, 43.829291 ], [ 5.572737, 43.863508 ], [ 5.60656, 43.916082 ], [ 5.567633, 43.94264 ], [ 5.512674, 43.945404 ], [ 5.519569, 43.994012 ], [ 5.542867, 44.024449 ], [ 5.544598, 44.069892 ], [ 5.502637, 44.063448 ], [ 5.498788, 44.115719 ], [ 5.542146, 44.133264 ], [ 5.575816, 44.186195 ], [ 5.609327, 44.190708 ], [ 5.678605, 44.146098 ], [ 5.676037, 44.191433 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "05001", "code_dpt": "05", "nom_dpt": "HAUTES-ALPES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "1", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80147, 44.706779 ], [ 5.829361, 44.742437 ], [ 5.951122, 44.759621 ], [ 5.951598, 44.734481 ], [ 5.991818, 44.702427 ], [ 5.989519, 44.66365 ], [ 6.033272, 44.662927 ], [ 6.056061, 44.626451 ], [ 6.156095, 44.614513 ], [ 6.191664, 44.590192 ], [ 6.254193, 44.598305 ], [ 6.260763, 44.542699 ], [ 6.219235, 44.508609 ], [ 6.131767, 44.468145 ], [ 6.081921, 44.464208 ], [ 6.019295, 44.419151 ], [ 5.953543, 44.395018 ], [ 5.93746, 44.359903 ], [ 5.897084, 44.318251 ], [ 5.913496, 44.288254 ], [ 5.849039, 44.300663 ], [ 5.823013, 44.276466 ], [ 5.880201, 44.211941 ], [ 5.830739, 44.20043 ], [ 5.754537, 44.209827 ], [ 5.69239, 44.186269 ], [ 5.676037, 44.191433 ], [ 5.686653, 44.266069 ], [ 5.646781, 44.267091 ], [ 5.615752, 44.332401 ], [ 5.492944, 44.337135 ], [ 5.442622, 44.381268 ], [ 5.438582, 44.433556 ], [ 5.472722, 44.420934 ], [ 5.457843, 44.498155 ], [ 5.51103, 44.491507 ], [ 5.603637, 44.4655 ], [ 5.633188, 44.502097 ], [ 5.607148, 44.568351 ], [ 5.649462, 44.61938 ], [ 5.641715, 44.651084 ], [ 5.725505, 44.640087 ], [ 5.753769, 44.660529 ], [ 5.79062, 44.653299 ], [ 5.829958, 44.691244 ], [ 5.80147, 44.706779 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "05002", "code_dpt": "05", "nom_dpt": "HAUTES-ALPES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "2", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.948335, 44.654816 ], [ 6.915267, 44.659796 ], [ 6.845109, 44.61018 ], [ 6.769219, 44.5861 ], [ 6.738555, 44.554255 ], [ 6.683021, 44.531655 ], [ 6.668497, 44.5003 ], [ 6.64167, 44.485545 ], [ 6.6323, 44.446915 ], [ 6.557482, 44.445996 ], [ 6.481649, 44.454023 ], [ 6.398809, 44.494156 ], [ 6.362, 44.522073 ], [ 6.33766, 44.470814 ], [ 6.293492, 44.480927 ], [ 6.233525, 44.463747 ], [ 6.262495, 44.412259 ], [ 6.227244, 44.381738 ], [ 6.155616, 44.461969 ], [ 6.131767, 44.468145 ], [ 6.219235, 44.508609 ], [ 6.260763, 44.542699 ], [ 6.254193, 44.598305 ], [ 6.191664, 44.590192 ], [ 6.156095, 44.614513 ], [ 6.056061, 44.626451 ], [ 6.033272, 44.662927 ], [ 5.989519, 44.66365 ], [ 5.991818, 44.702427 ], [ 5.951598, 44.734481 ], [ 5.951122, 44.759621 ], [ 6.003416, 44.820355 ], [ 6.030211, 44.838096 ], [ 6.056502, 44.815814 ], [ 6.130449, 44.862515 ], [ 6.248866, 44.85256 ], [ 6.304353, 44.872792 ], [ 6.355364, 44.854824 ], [ 6.358172, 44.941575 ], [ 6.330079, 44.947764 ], [ 6.298856, 45.003711 ], [ 6.256173, 44.996219 ], [ 6.203138, 45.012447 ], [ 6.229263, 45.106807 ], [ 6.260566, 45.126848 ], [ 6.293342, 45.108636 ], [ 6.334233, 45.122939 ], [ 6.396888, 45.061989 ], [ 6.487082, 45.056407 ], [ 6.481725, 45.090453 ], [ 6.535193, 45.098972 ], [ 6.576531, 45.123097 ], [ 6.629987, 45.109327 ], [ 6.660508, 45.070228 ], [ 6.675737, 45.020926 ], [ 6.725591, 45.020873 ], [ 6.764229, 44.96648 ], [ 6.751017, 44.905507 ], [ 6.864815, 44.850646 ], [ 6.911828, 44.845365 ], [ 6.930829, 44.861217 ], [ 7.003335, 44.840306 ], [ 7.019277, 44.813973 ], [ 6.999398, 44.789676 ], [ 7.02342, 44.768208 ], [ 7.042603, 44.719289 ], [ 7.028777, 44.691127 ], [ 6.986232, 44.688332 ], [ 6.948335, 44.654816 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06002", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "2", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.967093, 43.65648 ], [ 6.893565, 43.646303 ], [ 6.89447, 43.611025 ], [ 6.853158, 43.6064 ], [ 6.799868, 43.628348 ], [ 6.761134, 43.665891 ], [ 6.774704, 43.693851 ], [ 6.754162, 43.737857 ], [ 6.657423, 43.748718 ], [ 6.636396, 43.788951 ], [ 6.70983, 43.810663 ], [ 6.667906, 43.830613 ], [ 6.695947, 43.8749 ], [ 6.748081, 43.871859 ], [ 6.781622, 43.883558 ], [ 6.801382, 43.910351 ], [ 6.832286, 43.918461 ], [ 6.892593, 43.889981 ], [ 6.942272, 43.897261 ], [ 6.912989, 43.927059 ], [ 6.848905, 43.955071 ], [ 6.838727, 43.989704 ], [ 6.795562, 44.008115 ], [ 6.745687, 44.042831 ], [ 6.756483, 44.079593 ], [ 6.707956, 44.124389 ], [ 6.687238, 44.168302 ], [ 6.717369, 44.208644 ], [ 6.728285, 44.252563 ], [ 6.790339, 44.272345 ], [ 6.814259, 44.217943 ], [ 6.871044, 44.185206 ], [ 6.950499, 44.196052 ], [ 6.96243, 44.162403 ], [ 7.026914, 44.107259 ], [ 7.027638, 44.067507 ], [ 7.053985, 44.055575 ], [ 7.052671, 44.022208 ], [ 7.07977, 43.993948 ], [ 7.131015, 44.013751 ], [ 7.151457, 43.963895 ], [ 7.206136, 44.001801 ], [ 7.229681, 43.997882 ], [ 7.238447, 43.956463 ], [ 7.184844, 43.911711 ], [ 7.197318, 43.869633 ], [ 7.184262, 43.814739 ], [ 7.215508, 43.784851 ], [ 7.185162, 43.746687 ], [ 7.18438, 43.718674 ], [ 7.163975, 43.692993 ], [ 7.111225, 43.711877 ], [ 7.079575, 43.705266 ], [ 7.055547, 43.751252 ], [ 7.018209, 43.771802 ], [ 6.97814, 43.742585 ], [ 6.857764, 43.764586 ], [ 6.871943, 43.734216 ], [ 6.909508, 43.698097 ], [ 6.960166, 43.686344 ], [ 6.967093, 43.65648 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06004", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "4", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.308745, 43.692371 ], [ 7.320853, 43.72345 ], [ 7.369229, 43.739722 ], [ 7.296238, 43.758706 ], [ 7.272429, 43.815967 ], [ 7.272668, 43.87141 ], [ 7.304717, 43.886859 ], [ 7.334906, 43.948449 ], [ 7.369809, 43.939612 ], [ 7.380005, 43.96711 ], [ 7.411807, 43.99471 ], [ 7.430131, 44.085959 ], [ 7.426949, 44.112879 ], [ 7.501021, 44.142224 ], [ 7.567088, 44.152823 ], [ 7.616041, 44.149771 ], [ 7.640993, 44.177442 ], [ 7.679923, 44.175967 ], [ 7.667644, 44.130552 ], [ 7.716127, 44.080029 ], [ 7.701635, 44.043028 ], [ 7.663268, 44.028605 ], [ 7.668848, 43.997614 ], [ 7.652745, 43.976015 ], [ 7.571658, 43.947193 ], [ 7.561345, 43.899568 ], [ 7.4989, 43.87237 ], [ 7.529827, 43.784016 ], [ 7.458175, 43.75924 ], [ 7.404984, 43.718002 ], [ 7.357745, 43.721302 ], [ 7.308745, 43.692371 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06005", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "5", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.246931, 43.713236 ], [ 7.247779, 43.690688 ], [ 7.225992, 43.661179 ], [ 7.199251, 43.654836 ], [ 7.18438, 43.718674 ], [ 7.185162, 43.746687 ], [ 7.215508, 43.784851 ], [ 7.184262, 43.814739 ], [ 7.197318, 43.869633 ], [ 7.184844, 43.911711 ], [ 7.238447, 43.956463 ], [ 7.229681, 43.997882 ], [ 7.206136, 44.001801 ], [ 7.151457, 43.963895 ], [ 7.131015, 44.013751 ], [ 7.07977, 43.993948 ], [ 7.052671, 44.022208 ], [ 7.053985, 44.055575 ], [ 7.027638, 44.067507 ], [ 7.026914, 44.107259 ], [ 6.96243, 44.162403 ], [ 6.950499, 44.196052 ], [ 6.871044, 44.185206 ], [ 6.814259, 44.217943 ], [ 6.790339, 44.272345 ], [ 6.796834, 44.316702 ], [ 6.840887, 44.345686 ], [ 6.887431, 44.361057 ], [ 6.918807, 44.351913 ], [ 6.995891, 44.274989 ], [ 7.007013, 44.23783 ], [ 7.038886, 44.224882 ], [ 7.076443, 44.231758 ], [ 7.141896, 44.201771 ], [ 7.187029, 44.200264 ], [ 7.221238, 44.169144 ], [ 7.262782, 44.14803 ], [ 7.34094, 44.145115 ], [ 7.35898, 44.117058 ], [ 7.426949, 44.112879 ], [ 7.430131, 44.085959 ], [ 7.411807, 43.99471 ], [ 7.380005, 43.96711 ], [ 7.369809, 43.939612 ], [ 7.334906, 43.948449 ], [ 7.304717, 43.886859 ], [ 7.272668, 43.87141 ], [ 7.272429, 43.815967 ], [ 7.296238, 43.758706 ], [ 7.256418, 43.755593 ], [ 7.228696, 43.731352 ], [ 7.236378, 43.718759 ], [ 7.246931, 43.713236 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06006", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "6", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.18438, 43.718674 ], [ 7.199251, 43.654836 ], [ 7.160258, 43.654831 ], [ 7.130087, 43.617797 ], [ 7.098918, 43.645674 ], [ 7.079575, 43.705266 ], [ 7.111225, 43.711877 ], [ 7.163975, 43.692993 ], [ 7.18438, 43.718674 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06007", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "7", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.057797, 43.55033 ], [ 7.074072, 43.583714 ], [ 7.054373, 43.601099 ], [ 7.00293, 43.617522 ], [ 6.967093, 43.65648 ], [ 6.960166, 43.686344 ], [ 6.909508, 43.698097 ], [ 6.871943, 43.734216 ], [ 6.857764, 43.764586 ], [ 6.97814, 43.742585 ], [ 7.018209, 43.771802 ], [ 7.055547, 43.751252 ], [ 7.079575, 43.705266 ], [ 7.098918, 43.645674 ], [ 7.130087, 43.617797 ], [ 7.127077, 43.571862 ], [ 7.057797, 43.55033 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "07001", "code_dpt": "07", "nom_dpt": "ARDECHE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.464761, 44.341675 ], [ 4.453538, 44.387362 ], [ 4.501266, 44.416901 ], [ 4.471975, 44.434898 ], [ 4.504812, 44.469964 ], [ 4.516782, 44.512136 ], [ 4.549838, 44.504771 ], [ 4.583104, 44.570785 ], [ 4.600079, 44.657676 ], [ 4.585129, 44.677872 ], [ 4.529801, 44.67414 ], [ 4.492742, 44.718119 ], [ 4.439569, 44.710503 ], [ 4.44059, 44.753378 ], [ 4.378837, 44.781349 ], [ 4.355501, 44.825533 ], [ 4.332458, 44.835592 ], [ 4.289419, 44.813031 ], [ 4.246839, 44.816426 ], [ 4.206104, 44.848815 ], [ 4.179479, 44.886514 ], [ 4.216572, 44.933577 ], [ 4.223854, 44.962879 ], [ 4.256587, 44.959876 ], [ 4.307317, 44.985883 ], [ 4.314112, 45.000751 ], [ 4.431147, 44.978307 ], [ 4.443965, 44.959717 ], [ 4.499885, 44.927413 ], [ 4.549151, 44.928557 ], [ 4.650691, 44.953895 ], [ 4.718331, 44.936588 ], [ 4.764084, 44.881153 ], [ 4.830821, 44.884521 ], [ 4.849984, 44.864796 ], [ 4.821485, 44.817384 ], [ 4.76104, 44.771217 ], [ 4.76422, 44.715027 ], [ 4.779073, 44.654699 ], [ 4.740405, 44.602392 ], [ 4.710872, 44.581999 ], [ 4.692446, 44.546517 ], [ 4.706588, 44.534071 ], [ 4.689415, 44.492349 ], [ 4.695289, 44.445797 ], [ 4.667106, 44.429912 ], [ 4.649064, 44.373073 ], [ 4.650615, 44.329806 ], [ 4.649224, 44.27036 ], [ 4.632679, 44.284994 ], [ 4.557168, 44.304168 ], [ 4.506097, 44.340252 ], [ 4.464761, 44.341675 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "07002", "code_dpt": "07", "nom_dpt": "ARDECHE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.755997, 45.365681 ], [ 4.762214, 45.323549 ], [ 4.800494, 45.298361 ], [ 4.811837, 45.165258 ], [ 4.828713, 45.156129 ], [ 4.804038, 45.122468 ], [ 4.829597, 45.098005 ], [ 4.829155, 45.072848 ], [ 4.860746, 45.055429 ], [ 4.836708, 45.00751 ], [ 4.886589, 44.936652 ], [ 4.854324, 44.896523 ], [ 4.849984, 44.864796 ], [ 4.830821, 44.884521 ], [ 4.764084, 44.881153 ], [ 4.718331, 44.936588 ], [ 4.650691, 44.953895 ], [ 4.549151, 44.928557 ], [ 4.499885, 44.927413 ], [ 4.443965, 44.959717 ], [ 4.431147, 44.978307 ], [ 4.314112, 45.000751 ], [ 4.307317, 44.985883 ], [ 4.29111, 44.997328 ], [ 4.318086, 45.029934 ], [ 4.379068, 45.036175 ], [ 4.347737, 45.065249 ], [ 4.37257, 45.128073 ], [ 4.411159, 45.140829 ], [ 4.472579, 45.179895 ], [ 4.483135, 45.236446 ], [ 4.53626, 45.236818 ], [ 4.605315, 45.253401 ], [ 4.591348, 45.272883 ], [ 4.615799, 45.310259 ], [ 4.68013, 45.346265 ], [ 4.755997, 45.365681 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "07003", "code_dpt": "07", "nom_dpt": "ARDECHE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.464761, 44.341675 ], [ 4.448757, 44.29671 ], [ 4.40357, 44.288177 ], [ 4.402347, 44.335007 ], [ 4.325771, 44.338324 ], [ 4.288375, 44.315019 ], [ 4.273773, 44.271752 ], [ 4.245138, 44.268075 ], [ 4.186579, 44.299735 ], [ 4.142868, 44.313351 ], [ 4.126752, 44.337734 ], [ 4.073842, 44.329026 ], [ 4.042393, 44.394074 ], [ 4.045419, 44.433495 ], [ 3.998163, 44.459798 ], [ 3.98686, 44.502167 ], [ 3.948774, 44.572887 ], [ 3.923567, 44.571885 ], [ 3.89414, 44.615288 ], [ 3.894778, 44.649963 ], [ 3.871647, 44.679336 ], [ 3.862527, 44.743872 ], [ 3.924918, 44.769624 ], [ 3.945543, 44.824346 ], [ 3.998603, 44.823575 ], [ 4.020047, 44.845863 ], [ 4.03891, 44.872764 ], [ 4.156637, 44.873977 ], [ 4.179479, 44.886514 ], [ 4.206104, 44.848815 ], [ 4.246839, 44.816426 ], [ 4.289419, 44.813031 ], [ 4.332458, 44.835592 ], [ 4.355501, 44.825533 ], [ 4.378837, 44.781349 ], [ 4.44059, 44.753378 ], [ 4.439569, 44.710503 ], [ 4.492742, 44.718119 ], [ 4.529801, 44.67414 ], [ 4.585129, 44.677872 ], [ 4.600079, 44.657676 ], [ 4.583104, 44.570785 ], [ 4.549838, 44.504771 ], [ 4.516782, 44.512136 ], [ 4.504812, 44.469964 ], [ 4.471975, 44.434898 ], [ 4.501266, 44.416901 ], [ 4.453538, 44.387362 ], [ 4.464761, 44.341675 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "08001", "code_dpt": "08", "nom_dpt": "ARDENNES", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.209942, 49.782047 ], [ 4.255734, 49.903977 ], [ 4.217774, 49.916256 ], [ 4.233068, 49.957824 ], [ 4.310615, 49.968571 ], [ 4.349362, 49.952231 ], [ 4.399174, 49.948401 ], [ 4.381145, 49.935579 ], [ 4.407494, 49.870572 ], [ 4.441518, 49.839787 ], [ 4.436368, 49.815731 ], [ 4.50662, 49.818037 ], [ 4.532514, 49.76502 ], [ 4.556858, 49.761252 ], [ 4.607103, 49.72237 ], [ 4.675032, 49.714867 ], [ 4.720982, 49.75553 ], [ 4.732965, 49.804015 ], [ 4.76774, 49.811847 ], [ 4.819546, 49.802287 ], [ 4.842274, 49.782238 ], [ 4.838943, 49.731322 ], [ 4.851946, 49.705573 ], [ 4.833172, 49.653412 ], [ 4.850412, 49.614411 ], [ 4.822517, 49.563631 ], [ 4.668916, 49.559126 ], [ 4.623241, 49.593911 ], [ 4.593825, 49.586175 ], [ 4.556076, 49.525776 ], [ 4.528053, 49.521898 ], [ 4.510148, 49.47973 ], [ 4.469014, 49.443254 ], [ 4.455674, 49.399051 ], [ 4.42399, 49.364591 ], [ 4.448183, 49.331004 ], [ 4.375619, 49.323805 ], [ 4.308294, 49.326603 ], [ 4.247956, 49.380803 ], [ 4.188997, 49.398702 ], [ 4.047973, 49.405642 ], [ 4.037579, 49.438083 ], [ 4.040712, 49.508535 ], [ 4.074504, 49.518585 ], [ 4.051908, 49.545073 ], [ 4.07677, 49.570721 ], [ 4.026275, 49.619923 ], [ 4.050555, 49.634931 ], [ 4.11569, 49.633263 ], [ 4.127022, 49.677921 ], [ 4.185269, 49.698872 ], [ 4.225406, 49.727276 ], [ 4.242039, 49.765469 ], [ 4.209942, 49.782047 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "08002", "code_dpt": "08", "nom_dpt": "ARDENNES", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.861739, 49.789276 ], [ 4.842274, 49.782238 ], [ 4.819546, 49.802287 ], [ 4.76774, 49.811847 ], [ 4.732965, 49.804015 ], [ 4.720982, 49.75553 ], [ 4.675032, 49.714867 ], [ 4.607103, 49.72237 ], [ 4.556858, 49.761252 ], [ 4.532514, 49.76502 ], [ 4.50662, 49.818037 ], [ 4.436368, 49.815731 ], [ 4.441518, 49.839787 ], [ 4.407494, 49.870572 ], [ 4.381145, 49.935579 ], [ 4.399174, 49.948401 ], [ 4.445804, 49.937168 ], [ 4.511319, 49.946807 ], [ 4.540829, 49.968234 ], [ 4.686141, 50.004942 ], [ 4.702781, 50.095653 ], [ 4.751346, 50.111741 ], [ 4.765173, 50.137396 ], [ 4.802541, 50.151064 ], [ 4.874876, 50.153386 ], [ 4.872435, 50.092167 ], [ 4.840234, 50.092932 ], [ 4.840269, 50.039964 ], [ 4.790917, 49.958398 ], [ 4.845196, 49.94893 ], [ 4.878692, 49.921922 ], [ 4.882877, 49.89845 ], [ 4.851545, 49.862707 ], [ 4.873641, 49.818974 ], [ 4.861739, 49.789276 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "08003", "code_dpt": "08", "nom_dpt": "ARDENNES", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "3", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.842274, 49.782238 ], [ 4.861739, 49.789276 ], [ 4.931438, 49.786709 ], [ 4.991472, 49.800221 ], [ 5.014912, 49.779507 ], [ 5.089717, 49.764793 ], [ 5.166208, 49.692916 ], [ 5.246232, 49.686944 ], [ 5.268384, 49.695954 ], [ 5.332622, 49.653504 ], [ 5.346857, 49.630845 ], [ 5.393537, 49.617088 ], [ 5.377237, 49.592621 ], [ 5.339981, 49.59419 ], [ 5.308171, 49.562847 ], [ 5.26271, 49.54182 ], [ 5.234344, 49.569092 ], [ 5.159887, 49.566691 ], [ 5.119715, 49.592678 ], [ 5.097719, 49.533646 ], [ 5.059872, 49.504708 ], [ 5.10986, 49.45625 ], [ 5.115029, 49.420582 ], [ 5.088622, 49.369627 ], [ 5.027099, 49.335615 ], [ 5.051181, 49.274052 ], [ 5.011029, 49.269287 ], [ 4.950989, 49.236866 ], [ 4.913375, 49.264716 ], [ 4.861837, 49.238851 ], [ 4.744232, 49.241473 ], [ 4.690096, 49.257485 ], [ 4.622181, 49.236577 ], [ 4.577484, 49.295524 ], [ 4.454543, 49.276011 ], [ 4.390817, 49.298799 ], [ 4.375619, 49.323805 ], [ 4.448183, 49.331004 ], [ 4.42399, 49.364591 ], [ 4.455674, 49.399051 ], [ 4.469014, 49.443254 ], [ 4.510148, 49.47973 ], [ 4.528053, 49.521898 ], [ 4.556076, 49.525776 ], [ 4.593825, 49.586175 ], [ 4.623241, 49.593911 ], [ 4.668916, 49.559126 ], [ 4.822517, 49.563631 ], [ 4.850412, 49.614411 ], [ 4.833172, 49.653412 ], [ 4.851946, 49.705573 ], [ 4.838943, 49.731322 ], [ 4.842274, 49.782238 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "09001", "code_dpt": "09", "nom_dpt": "ARIEGE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.166054, 42.663918 ], [ 2.127885, 42.672039 ], [ 2.027052, 42.65262 ], [ 1.997956, 42.660903 ], [ 1.96906, 42.616742 ], [ 1.910766, 42.608063 ], [ 1.865329, 42.579889 ], [ 1.786125, 42.573623 ], [ 1.72825, 42.589575 ], [ 1.736569, 42.617834 ], [ 1.63517, 42.629266 ], [ 1.602654, 42.626418 ], [ 1.549214, 42.655695 ], [ 1.479741, 42.650854 ], [ 1.473983, 42.611153 ], [ 1.438948, 42.604335 ], [ 1.387917, 42.687306 ], [ 1.357378, 42.719423 ], [ 1.256345, 42.715226 ], [ 1.229293, 42.727724 ], [ 1.165018, 42.709527 ], [ 1.135497, 42.727328 ], [ 1.128703, 42.754623 ], [ 1.072945, 42.782839 ], [ 1.005585, 42.790799 ], [ 0.959768, 42.805641 ], [ 0.930493, 42.788962 ], [ 0.858306, 42.825719 ], [ 0.842883, 42.889585 ], [ 0.826682, 42.9155 ], [ 0.877979, 42.927825 ], [ 0.874911, 42.957776 ], [ 0.979101, 42.974431 ], [ 0.995098, 42.990834 ], [ 1.052314, 42.969728 ], [ 1.085357, 42.925451 ], [ 1.082333, 42.899184 ], [ 1.132342, 42.86861 ], [ 1.170717, 42.908138 ], [ 1.229012, 42.940643 ], [ 1.288142, 42.928793 ], [ 1.388415, 42.930595 ], [ 1.370419, 43.006063 ], [ 1.334913, 43.004287 ], [ 1.292117, 43.028255 ], [ 1.360558, 43.052186 ], [ 1.411197, 43.045371 ], [ 1.456553, 43.074358 ], [ 1.530222, 43.100649 ], [ 1.625597, 43.069029 ], [ 1.637617, 43.092156 ], [ 1.679303, 43.090948 ], [ 1.710693, 43.07359 ], [ 1.710026, 43.051211 ], [ 1.750742, 43.0355 ], [ 1.743547, 43.002037 ], [ 1.779772, 43.001447 ], [ 1.861451, 42.957047 ], [ 1.933731, 42.939144 ], [ 1.980574, 42.92958 ], [ 1.985041, 42.870859 ], [ 1.947126, 42.856689 ], [ 1.875897, 42.852325 ], [ 1.860178, 42.827428 ], [ 1.89557, 42.808931 ], [ 1.950255, 42.737658 ], [ 2.00378, 42.733529 ], [ 2.058119, 42.755485 ], [ 2.161494, 42.700523 ], [ 2.166054, 42.663918 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "09002", "code_dpt": "09", "nom_dpt": "ARIEGE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.578834, 43.275119 ], [ 1.637144, 43.254008 ], [ 1.68842, 43.273554 ], [ 1.724626, 43.212497 ], [ 1.71178, 43.18684 ], [ 1.826188, 43.145685 ], [ 1.87449, 43.142647 ], [ 1.945065, 43.122357 ], [ 1.961181, 43.0667 ], [ 1.985468, 43.023479 ], [ 1.979382, 42.960507 ], [ 1.933731, 42.939144 ], [ 1.861451, 42.957047 ], [ 1.779772, 43.001447 ], [ 1.743547, 43.002037 ], [ 1.750742, 43.0355 ], [ 1.710026, 43.051211 ], [ 1.710693, 43.07359 ], [ 1.679303, 43.090948 ], [ 1.637617, 43.092156 ], [ 1.625597, 43.069029 ], [ 1.530222, 43.100649 ], [ 1.456553, 43.074358 ], [ 1.411197, 43.045371 ], [ 1.360558, 43.052186 ], [ 1.292117, 43.028255 ], [ 1.334913, 43.004287 ], [ 1.370419, 43.006063 ], [ 1.388415, 42.930595 ], [ 1.288142, 42.928793 ], [ 1.229012, 42.940643 ], [ 1.170717, 42.908138 ], [ 1.132342, 42.86861 ], [ 1.082333, 42.899184 ], [ 1.085357, 42.925451 ], [ 1.052314, 42.969728 ], [ 0.995098, 42.990834 ], [ 0.99167, 43.091173 ], [ 1.03823, 43.100308 ], [ 1.062938, 43.138669 ], [ 1.087977, 43.133825 ], [ 1.124082, 43.156907 ], [ 1.174984, 43.140974 ], [ 1.210751, 43.115097 ], [ 1.223571, 43.085926 ], [ 1.261854, 43.091652 ], [ 1.290166, 43.123439 ], [ 1.273873, 43.148388 ], [ 1.223738, 43.152072 ], [ 1.230324, 43.187386 ], [ 1.370204, 43.210669 ], [ 1.374903, 43.23864 ], [ 1.294111, 43.264926 ], [ 1.301558, 43.287564 ], [ 1.345491, 43.31549 ], [ 1.426047, 43.25579 ], [ 1.417139, 43.226473 ], [ 1.468744, 43.209566 ], [ 1.504522, 43.249527 ], [ 1.488674, 43.268605 ], [ 1.578834, 43.275119 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "10001", "code_dpt": "10", "nom_dpt": "AUBE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.670183, 48.531887 ], [ 4.653469, 48.470557 ], [ 4.716525, 48.394345 ], [ 4.75458, 48.366548 ], [ 4.841471, 48.339464 ], [ 4.814218, 48.323011 ], [ 4.842941, 48.283517 ], [ 4.862336, 48.19818 ], [ 4.838845, 48.168856 ], [ 4.850094, 48.141579 ], [ 4.833349, 48.117511 ], [ 4.81498, 48.103565 ], [ 4.731874, 48.119451 ], [ 4.691158, 48.071951 ], [ 4.723155, 48.045763 ], [ 4.704239, 48.020241 ], [ 4.67296, 48.01502 ], [ 4.616807, 48.031376 ], [ 4.578579, 48.02834 ], [ 4.535774, 48.006566 ], [ 4.492725, 48.040557 ], [ 4.437619, 48.052944 ], [ 4.448779, 48.085487 ], [ 4.483783, 48.10603 ], [ 4.428231, 48.144318 ], [ 4.394414, 48.156161 ], [ 4.417642, 48.218268 ], [ 4.382878, 48.220543 ], [ 4.380615, 48.258078 ], [ 4.309356, 48.291274 ], [ 4.203917, 48.31821 ], [ 4.16338, 48.319596 ], [ 4.155455, 48.274449 ], [ 4.075212, 48.297183 ], [ 4.078044, 48.2986 ], [ 4.078504, 48.316423 ], [ 3.974078, 48.402247 ], [ 3.922862, 48.379615 ], [ 3.869615, 48.395601 ], [ 3.843389, 48.421585 ], [ 3.853016, 48.462542 ], [ 3.807284, 48.478677 ], [ 3.825896, 48.515174 ], [ 3.852176, 48.525019 ], [ 3.863834, 48.570051 ], [ 3.898482, 48.57565 ], [ 3.908424, 48.601753 ], [ 3.94924, 48.603432 ], [ 4.001696, 48.663884 ], [ 4.044291, 48.660955 ], [ 4.079788, 48.701127 ], [ 4.131091, 48.686151 ], [ 4.177519, 48.708074 ], [ 4.233041, 48.702313 ], [ 4.296804, 48.713169 ], [ 4.333542, 48.674083 ], [ 4.314918, 48.61622 ], [ 4.392438, 48.567422 ], [ 4.495281, 48.538724 ], [ 4.592934, 48.552337 ], [ 4.670183, 48.531887 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "10002", "code_dpt": "10", "nom_dpt": "AUBE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.623765, 48.259291 ], [ 3.680222, 48.262264 ], [ 3.789908, 48.296899 ], [ 3.815349, 48.280027 ], [ 3.879865, 48.301726 ], [ 3.899076, 48.280788 ], [ 3.941918, 48.27852 ], [ 3.962618, 48.256056 ], [ 4.030151, 48.273186 ], [ 4.068921, 48.294337 ], [ 4.075212, 48.297183 ], [ 4.155455, 48.274449 ], [ 4.16338, 48.319596 ], [ 4.203917, 48.31821 ], [ 4.309356, 48.291274 ], [ 4.380615, 48.258078 ], [ 4.382878, 48.220543 ], [ 4.417642, 48.218268 ], [ 4.394414, 48.156161 ], [ 4.428231, 48.144318 ], [ 4.483783, 48.10603 ], [ 4.448779, 48.085487 ], [ 4.437619, 48.052944 ], [ 4.492725, 48.040557 ], [ 4.535774, 48.006566 ], [ 4.559969, 47.971423 ], [ 4.446962, 47.956199 ], [ 4.41641, 47.9682 ], [ 4.352547, 47.95663 ], [ 4.312802, 47.962499 ], [ 4.293424, 47.925676 ], [ 4.24621, 47.930408 ], [ 4.2239, 47.948499 ], [ 4.167337, 47.96001 ], [ 4.113698, 47.928157 ], [ 4.089798, 47.943969 ], [ 4.054894, 47.930076 ], [ 3.902393, 47.938295 ], [ 3.914166, 47.97559 ], [ 3.850027, 47.983657 ], [ 3.870242, 48.016313 ], [ 3.82198, 48.04392 ], [ 3.80166, 48.10673 ], [ 3.739803, 48.138693 ], [ 3.66787, 48.139212 ], [ 3.64051, 48.184617 ], [ 3.575186, 48.188741 ], [ 3.621602, 48.225615 ], [ 3.623765, 48.259291 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "11001", "code_dpt": "11", "nom_dpt": "AUDE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.282011, 43.441226 ], [ 2.304118, 43.447929 ], [ 2.398735, 43.417051 ], [ 2.42759, 43.43449 ], [ 2.494383, 43.436937 ], [ 2.518988, 43.423716 ], [ 2.565787, 43.42296 ], [ 2.540081, 43.345233 ], [ 2.583539, 43.333912 ], [ 2.601175, 43.298256 ], [ 2.700303, 43.282815 ], [ 2.75252, 43.254594 ], [ 2.837395, 43.322429 ], [ 2.885119, 43.333249 ], [ 2.946079, 43.311959 ], [ 3.004423, 43.319708 ], [ 3.012103, 43.280936 ], [ 2.964104, 43.249924 ], [ 2.91733, 43.232061 ], [ 2.822691, 43.243874 ], [ 2.797157, 43.223185 ], [ 2.862929, 43.191222 ], [ 2.831523, 43.13505 ], [ 2.855452, 43.128393 ], [ 2.872714, 43.073964 ], [ 2.867981, 43.040636 ], [ 2.898117, 43.021062 ], [ 2.884576, 42.988681 ], [ 2.902623, 42.958706 ], [ 2.865274, 42.918341 ], [ 2.810132, 42.89842 ], [ 2.734693, 42.93764 ], [ 2.682744, 42.949361 ], [ 2.691265, 43.009066 ], [ 2.706849, 43.027025 ], [ 2.69588, 43.059246 ], [ 2.671121, 43.066926 ], [ 2.685862, 43.099232 ], [ 2.616056, 43.146191 ], [ 2.554101, 43.162926 ], [ 2.495016, 43.159473 ], [ 2.484801, 43.133798 ], [ 2.363815, 43.151708 ], [ 2.352741, 43.122544 ], [ 2.305867, 43.139235 ], [ 2.296366, 43.178167 ], [ 2.341203, 43.207857 ], [ 2.322094, 43.227763 ], [ 2.275936, 43.244049 ], [ 2.298952, 43.276999 ], [ 2.333575, 43.275842 ], [ 2.334433, 43.31139 ], [ 2.30379, 43.316883 ], [ 2.297704, 43.386637 ], [ 2.275866, 43.411459 ], [ 2.282011, 43.441226 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "11002", "code_dpt": "11", "nom_dpt": "AUDE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.141627, 43.259507 ], [ 3.201526, 43.247763 ], [ 3.240561, 43.212809 ], [ 3.148739, 43.139334 ], [ 3.084479, 43.056162 ], [ 3.042843, 42.960163 ], [ 3.05993, 42.917987 ], [ 3.043511, 42.83815 ], [ 2.976601, 42.870151 ], [ 2.917115, 42.88486 ], [ 2.865274, 42.918341 ], [ 2.902623, 42.958706 ], [ 2.884576, 42.988681 ], [ 2.898117, 43.021062 ], [ 2.867981, 43.040636 ], [ 2.872714, 43.073964 ], [ 2.855452, 43.128393 ], [ 2.831523, 43.13505 ], [ 2.862929, 43.191222 ], [ 2.797157, 43.223185 ], [ 2.822691, 43.243874 ], [ 2.91733, 43.232061 ], [ 2.964104, 43.249924 ], [ 3.012103, 43.280936 ], [ 3.054347, 43.280042 ], [ 3.11017, 43.253904 ], [ 3.141627, 43.259507 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "11003", "code_dpt": "11", "nom_dpt": "AUDE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "3", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.68842, 43.273554 ], [ 1.735952, 43.316018 ], [ 1.805041, 43.359278 ], [ 1.80453, 43.391609 ], [ 1.856453, 43.443455 ], [ 1.902115, 43.408702 ], [ 1.95817, 43.425613 ], [ 1.990859, 43.409386 ], [ 2.029133, 43.436898 ], [ 2.053071, 43.430308 ], [ 2.072801, 43.395696 ], [ 2.108785, 43.39446 ], [ 2.170411, 43.415813 ], [ 2.215024, 43.382615 ], [ 2.222499, 43.428282 ], [ 2.256687, 43.453642 ], [ 2.282011, 43.441226 ], [ 2.275866, 43.411459 ], [ 2.297704, 43.386637 ], [ 2.30379, 43.316883 ], [ 2.334433, 43.31139 ], [ 2.333575, 43.275842 ], [ 2.298952, 43.276999 ], [ 2.275936, 43.244049 ], [ 2.322094, 43.227763 ], [ 2.341203, 43.207857 ], [ 2.296366, 43.178167 ], [ 2.305867, 43.139235 ], [ 2.352741, 43.122544 ], [ 2.363815, 43.151708 ], [ 2.484801, 43.133798 ], [ 2.495016, 43.159473 ], [ 2.554101, 43.162926 ], [ 2.616056, 43.146191 ], [ 2.685862, 43.099232 ], [ 2.671121, 43.066926 ], [ 2.69588, 43.059246 ], [ 2.706849, 43.027025 ], [ 2.691265, 43.009066 ], [ 2.682744, 42.949361 ], [ 2.734693, 42.93764 ], [ 2.810132, 42.89842 ], [ 2.761908, 42.873325 ], [ 2.72743, 42.834405 ], [ 2.600079, 42.836595 ], [ 2.500452, 42.850431 ], [ 2.45682, 42.837476 ], [ 2.382167, 42.848466 ], [ 2.336096, 42.840709 ], [ 2.355346, 42.728048 ], [ 2.32249, 42.708109 ], [ 2.256682, 42.698268 ], [ 2.244451, 42.679831 ], [ 2.176088, 42.653009 ], [ 2.166054, 42.663918 ], [ 2.161494, 42.700523 ], [ 2.058119, 42.755485 ], [ 2.00378, 42.733529 ], [ 1.950255, 42.737658 ], [ 1.89557, 42.808931 ], [ 1.860178, 42.827428 ], [ 1.875897, 42.852325 ], [ 1.947126, 42.856689 ], [ 1.985041, 42.870859 ], [ 1.980574, 42.92958 ], [ 1.933731, 42.939144 ], [ 1.979382, 42.960507 ], [ 1.985468, 43.023479 ], [ 1.961181, 43.0667 ], [ 1.945065, 43.122357 ], [ 1.87449, 43.142647 ], [ 1.826188, 43.145685 ], [ 1.71178, 43.18684 ], [ 1.724626, 43.212497 ], [ 1.68842, 43.273554 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "12001", "code_dpt": "12", "nom_dpt": "AVEYRON", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.495877, 44.306666 ], [ 2.495931, 44.33016 ], [ 2.390863, 44.375754 ], [ 2.412642, 44.449275 ], [ 2.379967, 44.461924 ], [ 2.35008, 44.495412 ], [ 2.39417, 44.517233 ], [ 2.410891, 44.540244 ], [ 2.462489, 44.553219 ], [ 2.55701, 44.55245 ], [ 2.50652, 44.590425 ], [ 2.506626, 44.615705 ], [ 2.46804, 44.642895 ], [ 2.500496, 44.688808 ], [ 2.55623, 44.722231 ], [ 2.564486, 44.778092 ], [ 2.600123, 44.793667 ], [ 2.604162, 44.843092 ], [ 2.629077, 44.872259 ], [ 2.653049, 44.869771 ], [ 2.681868, 44.907348 ], [ 2.716766, 44.928835 ], [ 2.737688, 44.940366 ], [ 2.804778, 44.873787 ], [ 2.851404, 44.871951 ], [ 2.889642, 44.788328 ], [ 2.933774, 44.780647 ], [ 2.923264, 44.728648 ], [ 2.939346, 44.677576 ], [ 2.981677, 44.644677 ], [ 3.08347, 44.56032 ], [ 3.068932, 44.502706 ], [ 3.09956, 44.48043 ], [ 3.087397, 44.461716 ], [ 3.022301, 44.468536 ], [ 2.995928, 44.458221 ], [ 2.989222, 44.426741 ], [ 2.928311, 44.336008 ], [ 2.885381, 44.341895 ], [ 2.817577, 44.332793 ], [ 2.734103, 44.354317 ], [ 2.703229, 44.375545 ], [ 2.646878, 44.349112 ], [ 2.673289, 44.328877 ], [ 2.660083, 44.301886 ], [ 2.610649, 44.325396 ], [ 2.567733, 44.316216 ], [ 2.578044, 44.288604 ], [ 2.510471, 44.290376 ], [ 2.495877, 44.306666 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "12002", "code_dpt": "12", "nom_dpt": "AVEYRON", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.207475, 44.615532 ], [ 2.208414, 44.643844 ], [ 2.28624, 44.66644 ], [ 2.32413, 44.669154 ], [ 2.350984, 44.641234 ], [ 2.380878, 44.649671 ], [ 2.46804, 44.642895 ], [ 2.506626, 44.615705 ], [ 2.50652, 44.590425 ], [ 2.55701, 44.55245 ], [ 2.462489, 44.553219 ], [ 2.410891, 44.540244 ], [ 2.39417, 44.517233 ], [ 2.35008, 44.495412 ], [ 2.379967, 44.461924 ], [ 2.412642, 44.449275 ], [ 2.390863, 44.375754 ], [ 2.495931, 44.33016 ], [ 2.495877, 44.306666 ], [ 2.508825, 44.259017 ], [ 2.473446, 44.234324 ], [ 2.482287, 44.151638 ], [ 2.460276, 44.153926 ], [ 2.442258, 44.113386 ], [ 2.407958, 44.117635 ], [ 2.389215, 44.094571 ], [ 2.357739, 44.101555 ], [ 2.307295, 44.118539 ], [ 2.28488, 44.145335 ], [ 2.18079, 44.17828 ], [ 2.149213, 44.200543 ], [ 2.114064, 44.1958 ], [ 2.03025, 44.157573 ], [ 1.990171, 44.149453 ], [ 1.97398, 44.181393 ], [ 1.91299, 44.188412 ], [ 1.90835, 44.212454 ], [ 1.932163, 44.242647 ], [ 1.962021, 44.242339 ], [ 1.970633, 44.276348 ], [ 1.901391, 44.279116 ], [ 1.860483, 44.321938 ], [ 1.882083, 44.340074 ], [ 1.908239, 44.363419 ], [ 1.868875, 44.397213 ], [ 1.840758, 44.479487 ], [ 1.920824, 44.491922 ], [ 1.984239, 44.547262 ], [ 2.054845, 44.580192 ], [ 2.152562, 44.571586 ], [ 2.198403, 44.593175 ], [ 2.207475, 44.615532 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "12003", "code_dpt": "12", "nom_dpt": "AVEYRON", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "3", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.389215, 44.094571 ], [ 2.407958, 44.117635 ], [ 2.442258, 44.113386 ], [ 2.460276, 44.153926 ], [ 2.482287, 44.151638 ], [ 2.473446, 44.234324 ], [ 2.508825, 44.259017 ], [ 2.495877, 44.306666 ], [ 2.510471, 44.290376 ], [ 2.578044, 44.288604 ], [ 2.567733, 44.316216 ], [ 2.610649, 44.325396 ], [ 2.660083, 44.301886 ], [ 2.673289, 44.328877 ], [ 2.646878, 44.349112 ], [ 2.703229, 44.375545 ], [ 2.734103, 44.354317 ], [ 2.817577, 44.332793 ], [ 2.885381, 44.341895 ], [ 2.928311, 44.336008 ], [ 2.989222, 44.426741 ], [ 2.995928, 44.458221 ], [ 3.022301, 44.468536 ], [ 3.087397, 44.461716 ], [ 3.09956, 44.48043 ], [ 3.135486, 44.455519 ], [ 3.137053, 44.391621 ], [ 3.120221, 44.363313 ], [ 3.154266, 44.309225 ], [ 3.160532, 44.24628 ], [ 3.23054, 44.23034 ], [ 3.239261, 44.190663 ], [ 3.301043, 44.20647 ], [ 3.360412, 44.201493 ], [ 3.373648, 44.170765 ], [ 3.336682, 44.15813 ], [ 3.323849, 44.108918 ], [ 3.2633, 44.092555 ], [ 3.295949, 44.069449 ], [ 3.386654, 44.054963 ], [ 3.450981, 44.022541 ], [ 3.405615, 43.969682 ], [ 3.377509, 43.966903 ], [ 3.351584, 43.937614 ], [ 3.358359, 43.913833 ], [ 3.342568, 43.894193 ], [ 3.266439, 43.896097 ], [ 3.236857, 43.854075 ], [ 3.249037, 43.82958 ], [ 3.205308, 43.81296 ], [ 3.127711, 43.817407 ], [ 3.064907, 43.835568 ], [ 3.048568, 43.801498 ], [ 3.074305, 43.767612 ], [ 3.056275, 43.754953 ], [ 3.060678, 43.692807 ], [ 2.982088, 43.70803 ], [ 2.935463, 43.694668 ], [ 2.919139, 43.732468 ], [ 2.870453, 43.739161 ], [ 2.814518, 43.761585 ], [ 2.781499, 43.736958 ], [ 2.740543, 43.728958 ], [ 2.68173, 43.743515 ], [ 2.629213, 43.780252 ], [ 2.561802, 43.845974 ], [ 2.576271, 43.881759 ], [ 2.552007, 43.89157 ], [ 2.553842, 43.921087 ], [ 2.508499, 43.945273 ], [ 2.501798, 43.986633 ], [ 2.460871, 44.050323 ], [ 2.41021, 44.055858 ], [ 2.389215, 44.094571 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13008", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "8", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.021999, 43.556161 ], [ 5.05739, 43.571598 ], [ 5.038843, 43.592073 ], [ 4.955751, 43.639288 ], [ 4.968798, 43.658323 ], [ 5.000036, 43.648266 ], [ 5.072756, 43.683817 ], [ 5.138217, 43.693649 ], [ 5.176175, 43.670366 ], [ 5.1827, 43.641439 ], [ 5.214468, 43.644334 ], [ 5.254211, 43.592083 ], [ 5.327397, 43.553778 ], [ 5.334287, 43.519291 ], [ 5.291801, 43.512816 ], [ 5.271658, 43.485679 ], [ 5.223418, 43.479128 ], [ 5.202794, 43.491178 ], [ 5.14758, 43.457995 ], [ 5.104702, 43.525671 ], [ 5.047407, 43.523563 ], [ 5.021999, 43.556161 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13009", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "9", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.51305, 43.263444 ], [ 5.530285, 43.298673 ], [ 5.522811, 43.320764 ], [ 5.548464, 43.335823 ], [ 5.669164, 43.31941 ], [ 5.726601, 43.317364 ], [ 5.760929, 43.267347 ], [ 5.682416, 43.235456 ], [ 5.671875, 43.179269 ], [ 5.622601, 43.185563 ], [ 5.604779, 43.162371 ], [ 5.57042, 43.174571 ], [ 5.539122, 43.21113 ], [ 5.510186, 43.197903 ], [ 5.522211, 43.235511 ], [ 5.51305, 43.263444 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13010", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "10", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.467446125707078, 43.506815885866985 ], [ 5.536934, 43.504406 ], [ 5.532698, 43.48292 ], [ 5.496142, 43.463253 ], [ 5.52948, 43.440148 ], [ 5.58747, 43.442712 ], [ 5.610457, 43.411898 ], [ 5.682788, 43.399166 ], [ 5.703628, 43.354009 ], [ 5.669164, 43.31941 ], [ 5.548464, 43.335823 ], [ 5.522811, 43.320764 ], [ 5.466645, 43.323005 ], [ 5.463686, 43.361054 ], [ 5.424574, 43.383412 ], [ 5.398092, 43.40059 ], [ 5.387538, 43.461902 ], [ 5.441786, 43.471522 ], [ 5.467446125707078, 43.506815885866985 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13011", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "11", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.254211, 43.592083 ], [ 5.347935596551533, 43.600240518134214 ], [ 5.371337, 43.574744 ], [ 5.47061, 43.57434 ], [ 5.439013, 43.523414 ], [ 5.450568, 43.516273 ], [ 5.455395, 43.510692 ], [ 5.467446125707078, 43.506815885866985 ], [ 5.441786, 43.471522 ], [ 5.387538, 43.461902 ], [ 5.398092, 43.40059 ], [ 5.424574, 43.383412 ], [ 5.391636, 43.372076 ], [ 5.371478, 43.388603 ], [ 5.332279, 43.371445 ], [ 5.278797, 43.380469 ], [ 5.265085, 43.401079 ], [ 5.301003, 43.446115 ], [ 5.271658, 43.485679 ], [ 5.291801, 43.512816 ], [ 5.334287, 43.519291 ], [ 5.327397, 43.553778 ], [ 5.254211, 43.592083 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13012", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "12", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.223418, 43.479128 ], [ 5.271658, 43.485679 ], [ 5.301003, 43.446115 ], [ 5.265085, 43.401079 ], [ 5.278797, 43.380469 ], [ 5.282251, 43.353657 ], [ 5.224132, 43.328283 ], [ 5.088465, 43.332536 ], [ 5.10209, 43.345807 ], [ 5.096382, 43.401408 ], [ 5.137129, 43.400512 ], [ 5.226718, 43.453922 ], [ 5.223418, 43.479128 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13013", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "13", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.847295, 43.326855 ], [ 4.832236, 43.366867 ], [ 4.754321, 43.409389 ], [ 4.734852, 43.429725 ], [ 4.772659, 43.477392 ], [ 4.855717, 43.467462 ], [ 4.876394, 43.494527 ], [ 4.92867, 43.510655 ], [ 4.956122, 43.48563 ], [ 4.987823, 43.515173 ], [ 4.980488, 43.529747 ], [ 5.014453, 43.555546 ], [ 4.99885, 43.502995 ], [ 5.006008, 43.469671 ], [ 5.053182, 43.460535 ], [ 5.059949, 43.404915 ], [ 5.096382, 43.401408 ], [ 5.10209, 43.345807 ], [ 5.088465, 43.332536 ], [ 5.054588, 43.32667 ], [ 4.975616, 43.401528 ], [ 4.972215, 43.421865 ], [ 4.931712, 43.433439 ], [ 4.859112, 43.401278 ], [ 4.850613, 43.379134 ], [ 4.882476, 43.357141 ], [ 4.847295, 43.326855 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13014", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "14", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.347935596551533, 43.600240518134214 ], [ 5.393563, 43.649684 ], [ 5.412714, 43.692913 ], [ 5.445293, 43.680095 ], [ 5.530508, 43.659231 ], [ 5.606944, 43.658686 ], [ 5.673113, 43.693506 ], [ 5.712026, 43.690643 ], [ 5.753651, 43.724622 ], [ 5.813248, 43.689054 ], [ 5.799206, 43.659929 ], [ 5.7006, 43.642526 ], [ 5.680884, 43.610882 ], [ 5.687577, 43.584213 ], [ 5.725074, 43.551273 ], [ 5.714278, 43.50122 ], [ 5.727214, 43.467083 ], [ 5.778915, 43.410073 ], [ 5.682788, 43.399166 ], [ 5.610457, 43.411898 ], [ 5.58747, 43.442712 ], [ 5.52948, 43.440148 ], [ 5.496142, 43.463253 ], [ 5.532698, 43.48292 ], [ 5.536934, 43.504406 ], [ 5.467446125707078, 43.506815885866985 ], [ 5.455395, 43.510692 ], [ 5.450568, 43.516273 ], [ 5.439013, 43.523414 ], [ 5.47061, 43.57434 ], [ 5.371337, 43.574744 ], [ 5.347935596551533, 43.600240518134214 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13015", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "15", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.709325, 43.898019 ], [ 4.739061, 43.924068 ], [ 4.854805, 43.910795 ], [ 4.922008, 43.886759 ], [ 4.969653, 43.869742 ], [ 5.027721, 43.828583 ], [ 5.048139, 43.789727 ], [ 5.186262, 43.735507 ], [ 5.236378, 43.74747 ], [ 5.3153, 43.736566 ], [ 5.412714, 43.692913 ], [ 5.393563, 43.649684 ], [ 5.347935596551533, 43.600240518134214 ], [ 5.254211, 43.592083 ], [ 5.214468, 43.644334 ], [ 5.1827, 43.641439 ], [ 5.176175, 43.670366 ], [ 5.138217, 43.693649 ], [ 5.072756, 43.683817 ], [ 5.000036, 43.648266 ], [ 4.968798, 43.658323 ], [ 4.931795, 43.673136 ], [ 4.800629, 43.678788 ], [ 4.759537, 43.692682 ], [ 4.751833, 43.716163 ], [ 4.773472, 43.746136 ], [ 4.772856, 43.782374 ], [ 4.750164, 43.817467 ], [ 4.728801, 43.879323 ], [ 4.709325, 43.898019 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13016", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "16", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.230283, 43.460185 ], [ 4.244233, 43.501462 ], [ 4.293264, 43.514359 ], [ 4.37217, 43.549456 ], [ 4.425405, 43.584774 ], [ 4.426921, 43.625836 ], [ 4.486421, 43.698853 ], [ 4.537797, 43.70704 ], [ 4.59822, 43.686693 ], [ 4.626949, 43.691677 ], [ 4.612276, 43.724755 ], [ 4.651798, 43.784358 ], [ 4.64191, 43.867478 ], [ 4.709325, 43.898019 ], [ 4.728801, 43.879323 ], [ 4.750164, 43.817467 ], [ 4.772856, 43.782374 ], [ 4.773472, 43.746136 ], [ 4.751833, 43.716163 ], [ 4.759537, 43.692682 ], [ 4.800629, 43.678788 ], [ 4.931795, 43.673136 ], [ 4.968798, 43.658323 ], [ 4.955751, 43.639288 ], [ 5.038843, 43.592073 ], [ 5.05739, 43.571598 ], [ 5.021999, 43.556161 ], [ 5.014453, 43.555546 ], [ 4.980488, 43.529747 ], [ 4.987823, 43.515173 ], [ 4.956122, 43.48563 ], [ 4.92867, 43.510655 ], [ 4.876394, 43.494527 ], [ 4.855717, 43.467462 ], [ 4.772659, 43.477392 ], [ 4.734852, 43.429725 ], [ 4.754321, 43.409389 ], [ 4.832236, 43.366867 ], [ 4.847295, 43.326855 ], [ 4.771315, 43.349146 ], [ 4.663818, 43.346444 ], [ 4.592026, 43.35717 ], [ 4.561892, 43.387293 ], [ 4.597237, 43.405908 ], [ 4.587253, 43.426067 ], [ 4.52126, 43.453936 ], [ 4.377368, 43.452576 ], [ 4.230283, 43.460185 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "14001", "code_dpt": "14", "nom_dpt": "CALVADOS", "nom_reg": "NORMANDIE", "num_circ": "1", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.650414, 49.125919 ], [ -0.621615, 49.151234 ], [ -0.633424, 49.251631 ], [ -0.583278, 49.234647 ], [ -0.434443, 49.212597 ], [ -0.376135, 49.218889 ], [ -0.345545, 49.175736 ], [ -0.365478, 49.130739 ], [ -0.44851, 49.177208 ], [ -0.471262, 49.146424 ], [ -0.52289, 49.122514 ], [ -0.580731, 49.143152 ], [ -0.650414, 49.125919 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "14002", "code_dpt": "14", "nom_dpt": "CALVADOS", "nom_reg": "NORMANDIE", "num_circ": "2", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.365478, 49.130739 ], [ -0.345545, 49.175736 ], [ -0.376135, 49.218889 ], [ -0.368763, 49.226132 ], [ -0.321322, 49.223958 ], [ -0.315437, 49.185977 ], [ -0.246788, 49.19213 ], [ -0.216562, 49.214275 ], [ -0.179235, 49.209184 ], [ -0.139054, 49.182049 ], [ -0.115151, 49.178738 ], [ -0.078651, 49.142859 ], [ -0.116374, 49.121796 ], [ -0.204577, 49.119063 ], [ -0.312739, 49.156266 ], [ -0.327938, 49.126574 ], [ -0.365478, 49.130739 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "14003", "code_dpt": "14", "nom_dpt": "CALVADOS", "nom_reg": "NORMANDIE", "num_circ": "3", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.116374, 49.121796 ], [ -0.078651, 49.142859 ], [ -0.115151, 49.178738 ], [ -0.139054, 49.182049 ], [ -0.104534, 49.202621 ], [ -0.018942, 49.207379 ], [ 0.012179, 49.223188 ], [ 0.09101, 49.242605 ], [ 0.15173, 49.20764 ], [ 0.096208, 49.163302 ], [ 0.163983, 49.171224 ], [ 0.277562, 49.147174 ], [ 0.230576, 49.123376 ], [ 0.273732, 49.093856 ], [ 0.399783, 49.100814 ], [ 0.37925, 49.070923 ], [ 0.384959, 49.037014 ], [ 0.446052, 49.019014 ], [ 0.412815, 48.950626 ], [ 0.377447, 48.972558 ], [ 0.356623, 48.949625 ], [ 0.308722, 48.954227 ], [ 0.187316, 48.941074 ], [ 0.136288, 48.950402 ], [ 0.080723, 48.937984 ], [ 0.06374, 48.916773 ], [ 0.056447, 48.902555 ], [ -0.083341, 48.844335 ], [ -0.144833, 48.832464 ], [ -0.268018, 48.853183 ], [ -0.345416, 48.821833 ], [ -0.410852, 48.869961 ], [ -0.464764, 48.870986 ], [ -0.40143, 48.901185 ], [ -0.389728, 48.929447 ], [ -0.302827, 48.951685 ], [ -0.316247, 48.982743 ], [ -0.35477, 48.978548 ], [ -0.402655, 49.007377 ], [ -0.465366, 49.025752 ], [ -0.457802, 49.063816 ], [ -0.413658, 49.078372 ], [ -0.309494, 49.078911 ], [ -0.246826, 49.068499 ], [ -0.175298, 49.079761 ], [ -0.102783, 49.067474 ], [ -0.096983, 49.101295 ], [ -0.116374, 49.121796 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "14004", "code_dpt": "14", "nom_dpt": "CALVADOS", "nom_reg": "NORMANDIE", "num_circ": "4", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.399783, 49.100814 ], [ 0.273732, 49.093856 ], [ 0.230576, 49.123376 ], [ 0.277562, 49.147174 ], [ 0.163983, 49.171224 ], [ 0.096208, 49.163302 ], [ 0.15173, 49.20764 ], [ 0.09101, 49.242605 ], [ 0.012179, 49.223188 ], [ -0.018942, 49.207379 ], [ -0.104534, 49.202621 ], [ -0.139054, 49.182049 ], [ -0.179235, 49.209184 ], [ -0.216562, 49.214275 ], [ -0.246788, 49.19213 ], [ -0.315437, 49.185977 ], [ -0.321322, 49.223958 ], [ -0.368763, 49.226132 ], [ -0.333805, 49.265642 ], [ -0.287498, 49.294553 ], [ -0.225694, 49.281826 ], [ -0.092455, 49.298207 ], [ -0.013498, 49.321065 ], [ 0.075406, 49.365852 ], [ 0.132337, 49.403572 ], [ 0.222823, 49.427242 ], [ 0.297224, 49.429862 ], [ 0.301714, 49.371305 ], [ 0.323662, 49.340117 ], [ 0.322439, 49.296332 ], [ 0.365656, 49.295124 ], [ 0.382787, 49.264016 ], [ 0.321766, 49.248591 ], [ 0.393432, 49.206941 ], [ 0.387361, 49.153179 ], [ 0.432367, 49.142202 ], [ 0.399783, 49.100814 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "14005", "code_dpt": "14", "nom_dpt": "CALVADOS", "nom_reg": "NORMANDIE", "num_circ": "5", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.119623, 49.355568 ], [ -1.073854, 49.38946 ], [ -1.004484, 49.396323 ], [ -0.925348, 49.392511 ], [ -0.881651, 49.371595 ], [ -0.755133, 49.34766 ], [ -0.593496, 49.340853 ], [ -0.553247, 49.346102 ], [ -0.397515, 49.333074 ], [ -0.287498, 49.294553 ], [ -0.333805, 49.265642 ], [ -0.368763, 49.226132 ], [ -0.376135, 49.218889 ], [ -0.434443, 49.212597 ], [ -0.583278, 49.234647 ], [ -0.633424, 49.251631 ], [ -0.621615, 49.151234 ], [ -0.650414, 49.125919 ], [ -0.698763, 49.083756 ], [ -0.725136, 49.097577 ], [ -0.787248, 49.083177 ], [ -0.845603, 49.045522 ], [ -0.876058, 49.054841 ], [ -0.886706, 49.128359 ], [ -0.937614, 49.150063 ], [ -0.901576, 49.204823 ], [ -0.920925, 49.221585 ], [ -0.97222, 49.193448 ], [ -1.023564, 49.203365 ], [ -1.133356, 49.271501 ], [ -1.139452, 49.309604 ], [ -1.113308, 49.326691 ], [ -1.119623, 49.355568 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "14006", "code_dpt": "14", "nom_dpt": "CALVADOS", "nom_reg": "NORMANDIE", "num_circ": "6", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.650414, 49.125919 ], [ -0.580731, 49.143152 ], [ -0.52289, 49.122514 ], [ -0.471262, 49.146424 ], [ -0.44851, 49.177208 ], [ -0.365478, 49.130739 ], [ -0.327938, 49.126574 ], [ -0.312739, 49.156266 ], [ -0.204577, 49.119063 ], [ -0.116374, 49.121796 ], [ -0.096983, 49.101295 ], [ -0.102783, 49.067474 ], [ -0.175298, 49.079761 ], [ -0.246826, 49.068499 ], [ -0.309494, 49.078911 ], [ -0.413658, 49.078372 ], [ -0.457802, 49.063816 ], [ -0.465366, 49.025752 ], [ -0.402655, 49.007377 ], [ -0.35477, 48.978548 ], [ -0.316247, 48.982743 ], [ -0.302827, 48.951685 ], [ -0.389728, 48.929447 ], [ -0.40143, 48.901185 ], [ -0.464764, 48.870986 ], [ -0.509979, 48.845974 ], [ -0.54965, 48.846271 ], [ -0.624501, 48.826973 ], [ -0.682172, 48.821834 ], [ -0.743942, 48.791922 ], [ -0.780627, 48.786651 ], [ -0.840936, 48.752229 ], [ -0.922326, 48.771356 ], [ -1.058734, 48.773351 ], [ -1.084108, 48.779312 ], [ -1.102298, 48.81427 ], [ -1.156907, 48.834888 ], [ -1.101995, 48.866359 ], [ -1.059166, 48.877258 ], [ -1.021892, 48.905126 ], [ -1.02122, 48.926282 ], [ -1.065538, 48.931908 ], [ -1.056539, 48.958623 ], [ -0.990474, 48.950847 ], [ -0.944262, 48.96699 ], [ -0.905113, 49.011397 ], [ -0.862559, 49.026414 ], [ -0.876058, 49.054841 ], [ -0.845603, 49.045522 ], [ -0.787248, 49.083177 ], [ -0.725136, 49.097577 ], [ -0.698763, 49.083756 ], [ -0.650414, 49.125919 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "15001", "code_dpt": "15", "nom_dpt": "CANTAL", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.716766, 44.928835 ], [ 2.681868, 44.907348 ], [ 2.653049, 44.869771 ], [ 2.629077, 44.872259 ], [ 2.604162, 44.843092 ], [ 2.600123, 44.793667 ], [ 2.564486, 44.778092 ], [ 2.55623, 44.722231 ], [ 2.500496, 44.688808 ], [ 2.46804, 44.642895 ], [ 2.380878, 44.649671 ], [ 2.350984, 44.641234 ], [ 2.32413, 44.669154 ], [ 2.28624, 44.66644 ], [ 2.208414, 44.643844 ], [ 2.207475, 44.615532 ], [ 2.169419, 44.637985 ], [ 2.179152, 44.674449 ], [ 2.154666, 44.699366 ], [ 2.153492, 44.753108 ], [ 2.171633, 44.790258 ], [ 2.085556, 44.88496 ], [ 2.10811, 44.910598 ], [ 2.076351, 44.934785 ], [ 2.062914, 44.976506 ], [ 2.133293, 44.985748 ], [ 2.140896, 45.005409 ], [ 2.095159, 45.056039 ], [ 2.143403, 45.086315 ], [ 2.172776, 45.081278 ], [ 2.256384, 45.071341 ], [ 2.317341, 45.074415 ], [ 2.368383, 45.101855 ], [ 2.415873, 45.082034 ], [ 2.488526, 45.084219 ], [ 2.48589, 45.062597 ], [ 2.590881, 45.0664 ], [ 2.642099, 45.084035 ], [ 2.653798, 45.103547 ], [ 2.711009, 45.10896 ], [ 2.716721, 45.088337 ], [ 2.765837, 45.066337 ], [ 2.719566, 44.994929 ], [ 2.716766, 44.928835 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "15002", "code_dpt": "15", "nom_dpt": "CANTAL", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.103498, 45.354373 ], [ 3.112196, 45.284752 ], [ 3.161342, 45.289086 ], [ 3.226852, 45.271945 ], [ 3.238011, 45.218364 ], [ 3.272226, 45.209461 ], [ 3.261231, 45.17375 ], [ 3.288033, 45.120424 ], [ 3.351855, 45.104835 ], [ 3.312027, 45.080859 ], [ 3.298442, 45.035732 ], [ 3.337174, 45.025348 ], [ 3.361343, 44.971412 ], [ 3.285642, 44.926307 ], [ 3.244565, 44.931717 ], [ 3.234993, 44.888773 ], [ 3.190283, 44.862524 ], [ 3.142848, 44.902282 ], [ 3.103126, 44.884634 ], [ 3.094845, 44.85548 ], [ 3.048271, 44.804263 ], [ 3.048237, 44.764325 ], [ 3.031345, 44.749638 ], [ 2.981677, 44.644677 ], [ 2.939346, 44.677576 ], [ 2.923264, 44.728648 ], [ 2.933774, 44.780647 ], [ 2.889642, 44.788328 ], [ 2.851404, 44.871951 ], [ 2.804778, 44.873787 ], [ 2.737688, 44.940366 ], [ 2.716766, 44.928835 ], [ 2.719566, 44.994929 ], [ 2.765837, 45.066337 ], [ 2.716721, 45.088337 ], [ 2.711009, 45.10896 ], [ 2.653798, 45.103547 ], [ 2.642099, 45.084035 ], [ 2.590881, 45.0664 ], [ 2.48589, 45.062597 ], [ 2.488526, 45.084219 ], [ 2.415873, 45.082034 ], [ 2.368383, 45.101855 ], [ 2.317341, 45.074415 ], [ 2.256384, 45.071341 ], [ 2.172776, 45.081278 ], [ 2.210419, 45.147158 ], [ 2.191163, 45.223055 ], [ 2.239868, 45.248799 ], [ 2.269695, 45.289889 ], [ 2.31608, 45.322032 ], [ 2.353415, 45.32979 ], [ 2.380991, 45.413538 ], [ 2.441552, 45.384527 ], [ 2.523372, 45.381546 ], [ 2.487538, 45.418172 ], [ 2.508409, 45.478508 ], [ 2.543963, 45.478982 ], [ 2.582689, 45.452677 ], [ 2.660432, 45.434795 ], [ 2.714525, 45.381467 ], [ 2.741279, 45.392959 ], [ 2.785148, 45.384578 ], [ 2.815354, 45.400399 ], [ 2.892968, 45.37924 ], [ 2.920386, 45.362182 ], [ 2.948625, 45.309126 ], [ 3.018305, 45.287066 ], [ 3.059399, 45.306835 ], [ 3.063179, 45.33137 ], [ 3.103498, 45.354373 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "16001", "code_dpt": "16", "nom_dpt": "CHARENTE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.001485, 45.603776 ], [ 0.037241, 45.610354 ], [ 0.044355, 45.632726 ], [ 0.093016, 45.644582 ], [ 0.057807, 45.675431 ], [ 0.18405, 45.755132 ], [ 0.268214, 45.7016 ], [ 0.323133, 45.713577 ], [ 0.307367, 45.67972 ], [ 0.313694, 45.643137 ], [ 0.397374, 45.613732 ], [ 0.370053, 45.578886 ], [ 0.342256, 45.575827 ], [ 0.328812, 45.607737 ], [ 0.277085, 45.575222 ], [ 0.240364, 45.5763 ], [ 0.188313, 45.602564 ], [ 0.029014, 45.562909 ], [ 0.018877, 45.543627 ], [ -0.028991, 45.559054 ], [ -0.001485, 45.603776 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "16002", "code_dpt": "16", "nom_dpt": "CHARENTE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.004331, 45.191633 ], [ 0.003707, 45.228407 ], [ -0.049742, 45.24882 ], [ -0.115385, 45.248073 ], [ -0.108813, 45.289672 ], [ -0.228747, 45.321662 ], [ -0.283172, 45.308317 ], [ -0.271086, 45.357824 ], [ -0.31064, 45.376578 ], [ -0.251231, 45.418811 ], [ -0.268345, 45.455876 ], [ -0.254716, 45.519395 ], [ -0.319911, 45.534889 ], [ -0.296574, 45.564498 ], [ -0.37631, 45.60943 ], [ -0.42292, 45.685589 ], [ -0.415839, 45.741669 ], [ -0.449334, 45.766003 ], [ -0.312175, 45.786294 ], [ -0.29179, 45.805664 ], [ -0.24803, 45.805481 ], [ -0.221083, 45.775215 ], [ -0.190599, 45.754488 ], [ -0.132927, 45.758647 ], [ -0.125355, 45.736093 ], [ -0.037276, 45.702797 ], [ -0.071918, 45.667712 ], [ -0.048851, 45.646568 ], [ -0.01459, 45.652555 ], [ -0.001485, 45.603776 ], [ -0.028991, 45.559054 ], [ 0.018877, 45.543627 ], [ 0.029014, 45.562909 ], [ 0.188313, 45.602564 ], [ 0.240364, 45.5763 ], [ 0.277085, 45.575222 ], [ 0.328812, 45.607737 ], [ 0.342256, 45.575827 ], [ 0.413561, 45.533767 ], [ 0.449305, 45.523917 ], [ 0.432763, 45.501647 ], [ 0.356707, 45.466222 ], [ 0.310781, 45.45876 ], [ 0.27086, 45.418927 ], [ 0.249431, 45.363586 ], [ 0.270634, 45.314605 ], [ 0.252621, 45.289405 ], [ 0.220912, 45.290225 ], [ 0.204416, 45.263604 ], [ 0.145486, 45.214487 ], [ 0.055582, 45.227164 ], [ 0.004331, 45.191633 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "16003", "code_dpt": "16", "nom_dpt": "CHARENTE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.102937, 45.96966 ], [ -0.05886, 45.986053 ], [ -0.026207, 46.056347 ], [ 0.019144, 46.052844 ], [ 0.072972, 46.093896 ], [ 0.135816, 46.104051 ], [ 0.167523, 46.084555 ], [ 0.197353, 46.095559 ], [ 0.219852, 46.094247 ], [ 0.291331, 46.059548 ], [ 0.466101, 46.060967 ], [ 0.447431, 46.087045 ], [ 0.472303, 46.130136 ], [ 0.508685, 46.13194 ], [ 0.539973, 46.085558 ], [ 0.687453, 46.097255 ], [ 0.676447, 46.112534 ], [ 0.747883, 46.13872 ], [ 0.823433, 46.128591 ], [ 0.832307, 46.104339 ], [ 0.817909, 46.047887 ], [ 0.924509, 46.010226 ], [ 0.934675, 45.992207 ], [ 0.941493, 45.960587 ], [ 0.884575, 45.923811 ], [ 0.821937, 45.931559 ], [ 0.827373, 45.882748 ], [ 0.783779, 45.793475 ], [ 0.710515, 45.802201 ], [ 0.695379, 45.762119 ], [ 0.629742, 45.71457 ], [ 0.575447, 45.640928 ], [ 0.501441, 45.615353 ], [ 0.516324, 45.58806 ], [ 0.506549, 45.554339 ], [ 0.449305, 45.523917 ], [ 0.413561, 45.533767 ], [ 0.342256, 45.575827 ], [ 0.370053, 45.578886 ], [ 0.397374, 45.613732 ], [ 0.313694, 45.643137 ], [ 0.307367, 45.67972 ], [ 0.323133, 45.713577 ], [ 0.268214, 45.7016 ], [ 0.18405, 45.755132 ], [ 0.057807, 45.675431 ], [ 0.093016, 45.644582 ], [ 0.044355, 45.632726 ], [ 0.037241, 45.610354 ], [ -0.001485, 45.603776 ], [ -0.01459, 45.652555 ], [ -0.048851, 45.646568 ], [ -0.071918, 45.667712 ], [ -0.037276, 45.702797 ], [ -0.125355, 45.736093 ], [ -0.132927, 45.758647 ], [ -0.190599, 45.754488 ], [ -0.221083, 45.775215 ], [ -0.161584, 45.790768 ], [ -0.136099, 45.820642 ], [ -0.138514, 45.845647 ], [ -0.114736, 45.872376 ], [ -0.147454, 45.900849 ], [ -0.151135, 45.92662 ], [ -0.095793, 45.930888 ], [ -0.102937, 45.96966 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "17001", "code_dpt": "17", "nom_dpt": "CHARENTE-MARITIME", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.507011, 46.194707 ], [ -1.558483, 46.233251 ], [ -1.51189, 46.257885 ], [ -1.477636, 46.232884 ], [ -1.416731, 46.228827 ], [ -1.42478, 46.205245 ], [ -1.365155, 46.207164 ], [ -1.295734, 46.18822 ], [ -1.276545, 46.161638 ], [ -1.307983, 46.143026 ], [ -1.460065, 46.201638 ], [ -1.507011, 46.194707 ] ] ], [ [ [ -1.111345, 46.261157 ], [ -1.105074, 46.231808 ], [ -1.045336, 46.213752 ], [ -1.038033, 46.161201 ], [ -1.129757, 46.148893 ], [ -1.149211, 46.133035 ], [ -1.23066, 46.151941 ], [ -1.199724, 46.212551 ], [ -1.138927, 46.25388 ], [ -1.111345, 46.261157 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "17002", "code_dpt": "17", "nom_dpt": "CHARENTE-MARITIME", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.064557, 45.95312 ], [ -1.091414, 45.993206 ], [ -1.053077, 46.003836 ], [ -1.062749, 46.046473 ], [ -1.089027, 46.054698 ], [ -1.103187, 46.094979 ], [ -1.149211, 46.133035 ], [ -1.129757, 46.148893 ], [ -1.038033, 46.161201 ], [ -1.045336, 46.213752 ], [ -1.105074, 46.231808 ], [ -1.111345, 46.261157 ], [ -1.129404, 46.310277 ], [ -1.078098, 46.319349 ], [ -1.017639, 46.35301 ], [ -0.93423, 46.360113 ], [ -0.958678, 46.323347 ], [ -0.933909, 46.312628 ], [ -0.840742, 46.339691 ], [ -0.750476, 46.304259 ], [ -0.735993, 46.267819 ], [ -0.751462, 46.24507 ], [ -0.690945, 46.21933 ], [ -0.682412, 46.197692 ], [ -0.615854, 46.138451 ], [ -0.583081, 46.139563 ], [ -0.597043, 46.111619 ], [ -0.646223, 46.098258 ], [ -0.676161, 46.046467 ], [ -0.723329, 46.053419 ], [ -0.734396, 46.032996 ], [ -0.792923, 46.05863 ], [ -0.866767, 46.046154 ], [ -0.907687, 46.005819 ], [ -0.905251, 45.988827 ], [ -0.978272, 45.914523 ], [ -1.008752, 45.933075 ], [ -0.992275, 45.966198 ], [ -1.064557, 45.95312 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "17003", "code_dpt": "17", "nom_dpt": "CHARENTE-MARITIME", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.221083, 45.775215 ], [ -0.24803, 45.805481 ], [ -0.29179, 45.805664 ], [ -0.312175, 45.786294 ], [ -0.449334, 45.766003 ], [ -0.415839, 45.741669 ], [ -0.42292, 45.685589 ], [ -0.452223, 45.682838 ], [ -0.524988, 45.706939 ], [ -0.544856, 45.675281 ], [ -0.584408, 45.688965 ], [ -0.638291, 45.649935 ], [ -0.670468, 45.64614 ], [ -0.7093, 45.699135 ], [ -0.767365, 45.687688 ], [ -0.732397, 45.726841 ], [ -0.783794, 45.7445 ], [ -0.778231, 45.767838 ], [ -0.702996, 45.810351 ], [ -0.647473, 45.789055 ], [ -0.639265, 45.822277 ], [ -0.685436, 45.852006 ], [ -0.807269, 45.881844 ], [ -0.826214, 45.908367 ], [ -0.767666, 45.945466 ], [ -0.768152, 46.000893 ], [ -0.734396, 46.032996 ], [ -0.723329, 46.053419 ], [ -0.676161, 46.046467 ], [ -0.646223, 46.098258 ], [ -0.597043, 46.111619 ], [ -0.583081, 46.139563 ], [ -0.526793, 46.135557 ], [ -0.503631, 46.107268 ], [ -0.450341, 46.10206 ], [ -0.401451, 46.084248 ], [ -0.280023, 46.076901 ], [ -0.273028, 46.057321 ], [ -0.210661, 46.045432 ], [ -0.144795, 46.00467 ], [ -0.135611, 45.978538 ], [ -0.102937, 45.96966 ], [ -0.095793, 45.930888 ], [ -0.151135, 45.92662 ], [ -0.147454, 45.900849 ], [ -0.114736, 45.872376 ], [ -0.138514, 45.845647 ], [ -0.136099, 45.820642 ], [ -0.161584, 45.790768 ], [ -0.221083, 45.775215 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "17004", "code_dpt": "17", "nom_dpt": "CHARENTE-MARITIME", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "4", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.004331, 45.191633 ], [ -0.03675, 45.140747 ], [ -0.0402, 45.102384 ], [ -0.087573, 45.121582 ], [ -0.143537, 45.090344 ], [ -0.191442, 45.094749 ], [ -0.257078, 45.114622 ], [ -0.275359, 45.14141 ], [ -0.362699, 45.170362 ], [ -0.378419, 45.156855 ], [ -0.419173, 45.210392 ], [ -0.405948, 45.242079 ], [ -0.416123, 45.267392 ], [ -0.472986, 45.293633 ], [ -0.51343, 45.286385 ], [ -0.567662, 45.297421 ], [ -0.568967, 45.331523 ], [ -0.607635, 45.324009 ], [ -0.708225, 45.32748 ], [ -0.753174, 45.422492 ], [ -0.773004, 45.44833 ], [ -0.85598, 45.513555 ], [ -0.897474, 45.528485 ], [ -0.919776, 45.551474 ], [ -0.956519, 45.554756 ], [ -1.032208, 45.619225 ], [ -1.044421, 45.656632 ], [ -0.994144, 45.649998 ], [ -0.985125, 45.628472 ], [ -0.947603, 45.615892 ], [ -0.920009, 45.627542 ], [ -0.886282, 45.607643 ], [ -0.825749, 45.630959 ], [ -0.86058, 45.653345 ], [ -0.833882, 45.678437 ], [ -0.792035, 45.656713 ], [ -0.767365, 45.687688 ], [ -0.7093, 45.699135 ], [ -0.670468, 45.64614 ], [ -0.638291, 45.649935 ], [ -0.584408, 45.688965 ], [ -0.544856, 45.675281 ], [ -0.524988, 45.706939 ], [ -0.452223, 45.682838 ], [ -0.42292, 45.685589 ], [ -0.37631, 45.60943 ], [ -0.296574, 45.564498 ], [ -0.319911, 45.534889 ], [ -0.254716, 45.519395 ], [ -0.268345, 45.455876 ], [ -0.251231, 45.418811 ], [ -0.31064, 45.376578 ], [ -0.271086, 45.357824 ], [ -0.283172, 45.308317 ], [ -0.228747, 45.321662 ], [ -0.108813, 45.289672 ], [ -0.115385, 45.248073 ], [ -0.049742, 45.24882 ], [ 0.003707, 45.228407 ], [ 0.004331, 45.191633 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "17005", "code_dpt": "17", "nom_dpt": "CHARENTE-MARITIME", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "5", "code_reg": "75" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.233425, 45.927293 ], [ -1.188985, 45.886024 ], [ -1.207707, 45.85034 ], [ -1.197561, 45.830464 ], [ -1.245668, 45.81024 ], [ -1.260258, 45.867586 ], [ -1.291894, 45.898691 ], [ -1.342027, 45.919872 ], [ -1.386452, 45.953267 ], [ -1.387094, 45.997164 ], [ -1.410812, 46.046496 ], [ -1.296489, 45.989223 ], [ -1.246985, 45.989657 ], [ -1.233425, 45.927293 ] ] ], [ [ [ -1.064557, 45.95312 ], [ -0.992275, 45.966198 ], [ -1.008752, 45.933075 ], [ -0.978272, 45.914523 ], [ -0.905251, 45.988827 ], [ -0.907687, 46.005819 ], [ -0.866767, 46.046154 ], [ -0.792923, 46.05863 ], [ -0.734396, 46.032996 ], [ -0.768152, 46.000893 ], [ -0.767666, 45.945466 ], [ -0.826214, 45.908367 ], [ -0.807269, 45.881844 ], [ -0.685436, 45.852006 ], [ -0.639265, 45.822277 ], [ -0.647473, 45.789055 ], [ -0.702996, 45.810351 ], [ -0.778231, 45.767838 ], [ -0.783794, 45.7445 ], [ -0.732397, 45.726841 ], [ -0.767365, 45.687688 ], [ -0.792035, 45.656713 ], [ -0.833882, 45.678437 ], [ -0.86058, 45.653345 ], [ -0.825749, 45.630959 ], [ -0.886282, 45.607643 ], [ -0.920009, 45.627542 ], [ -0.947603, 45.615892 ], [ -0.985125, 45.628472 ], [ -0.994144, 45.649998 ], [ -1.044421, 45.656632 ], [ -1.032208, 45.619225 ], [ -1.113171, 45.646755 ], [ -1.209737, 45.695592 ], [ -1.235614, 45.69289 ], [ -1.241024, 45.785553 ], [ -1.188226, 45.790096 ], [ -1.132792, 45.8072 ], [ -1.154316, 45.86275 ], [ -1.106044, 45.867059 ], [ -1.074375, 45.912181 ], [ -1.064557, 45.95312 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "18001", "code_dpt": "18", "nom_dpt": "CHER", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "1", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.333995, 47.073395 ], [ 2.413086, 47.098758 ], [ 2.453959, 47.121597 ], [ 2.332442, 47.138246 ], [ 2.285901, 47.168418 ], [ 2.295743, 47.192129 ], [ 2.255729, 47.212748 ], [ 2.256744, 47.237801 ], [ 2.287819, 47.277942 ], [ 2.326363, 47.293045 ], [ 2.323151, 47.356837 ], [ 2.273541, 47.362371 ], [ 2.230388, 47.407529 ], [ 2.246699, 47.442403 ], [ 2.193775, 47.54857 ], [ 2.131382, 47.550696 ], [ 2.119575, 47.582952 ], [ 2.15629, 47.601046 ], [ 2.239214, 47.620978 ], [ 2.289632, 47.629055 ], [ 2.372689, 47.585442 ], [ 2.438079, 47.609773 ], [ 2.490301, 47.571774 ], [ 2.550066, 47.574703 ], [ 2.592984, 47.558136 ], [ 2.612018, 47.526389 ], [ 2.655871, 47.510396 ], [ 2.686362, 47.483189 ], [ 2.762558, 47.524957 ], [ 2.797521, 47.497343 ], [ 2.874625, 47.520423 ], [ 2.931561, 47.440671 ], [ 2.919771, 47.410471 ], [ 2.870247, 47.342343 ], [ 2.973547, 47.269943 ], [ 2.900831, 47.254672 ], [ 2.882164, 47.192644 ], [ 2.80638, 47.218443 ], [ 2.736456, 47.174605 ], [ 2.660599, 47.173507 ], [ 2.683346, 47.148976 ], [ 2.638528, 47.092188 ], [ 2.575989, 47.118976 ], [ 2.53014, 47.122301 ], [ 2.451771, 47.050118 ], [ 2.407028, 47.075772 ], [ 2.376096, 47.076621 ], [ 2.333995, 47.073395 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "18002", "code_dpt": "18", "nom_dpt": "CHER", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "2", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.839079, 47.219308 ], [ 1.875333, 47.207079 ], [ 1.915639, 47.234185 ], [ 1.941373, 47.290064 ], [ 1.996609, 47.265751 ], [ 2.073326, 47.284665 ], [ 2.132895, 47.281191 ], [ 2.157151, 47.300213 ], [ 2.102739, 47.391616 ], [ 2.188242, 47.435699 ], [ 2.230388, 47.407529 ], [ 2.273541, 47.362371 ], [ 2.323151, 47.356837 ], [ 2.326363, 47.293045 ], [ 2.287819, 47.277942 ], [ 2.256744, 47.237801 ], [ 2.255729, 47.212748 ], [ 2.295743, 47.192129 ], [ 2.285901, 47.168418 ], [ 2.332442, 47.138246 ], [ 2.453959, 47.121597 ], [ 2.413086, 47.098758 ], [ 2.333995, 47.073395 ], [ 2.339817, 47.030616 ], [ 2.323896, 46.993852 ], [ 2.280449, 46.967767 ], [ 2.308805, 46.942225 ], [ 2.261485, 46.912759 ], [ 2.243781, 46.873593 ], [ 2.195001, 46.887804 ], [ 2.18111, 46.85973 ], [ 2.140385, 46.845188 ], [ 2.126204, 46.879865 ], [ 2.110319, 46.913167 ], [ 2.070685, 46.934023 ], [ 2.090839, 46.966689 ], [ 2.096889, 47.012414 ], [ 2.02938, 47.045532 ], [ 2.055653, 47.076723 ], [ 1.99666, 47.126998 ], [ 1.883068, 47.100512 ], [ 1.828448, 47.121302 ], [ 1.774451, 47.130755 ], [ 1.842237, 47.17758 ], [ 1.839079, 47.219308 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "18003", "code_dpt": "18", "nom_dpt": "CHER", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "3", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.973547, 47.269943 ], [ 2.979026, 47.229064 ], [ 3.028283, 47.128437 ], [ 3.022241, 47.063652 ], [ 3.074778, 47.029994 ], [ 3.063971, 46.976944 ], [ 3.078275, 46.953427 ], [ 3.050227, 46.909154 ], [ 3.063605, 46.889951 ], [ 3.069402, 46.852258 ], [ 3.032068, 46.794911 ], [ 2.959915, 46.803877 ], [ 2.880422, 46.77003 ], [ 2.845727, 46.726616 ], [ 2.793416, 46.733557 ], [ 2.77475, 46.718953 ], [ 2.704833, 46.739036 ], [ 2.677795, 46.704612 ], [ 2.5931, 46.646581 ], [ 2.57738, 46.606733 ], [ 2.598461, 46.59531 ], [ 2.611052, 46.551511 ], [ 2.536652, 46.519709 ], [ 2.482929, 46.532697 ], [ 2.446148, 46.521044 ], [ 2.3683, 46.518435 ], [ 2.305465, 46.475433 ], [ 2.281048, 46.420405 ], [ 2.167786, 46.424076 ], [ 2.151402, 46.457697 ], [ 2.203788, 46.489493 ], [ 2.1587, 46.557346 ], [ 2.184614, 46.602567 ], [ 2.189447, 46.642141 ], [ 2.137272, 46.672314 ], [ 2.155448, 46.69216 ], [ 2.065751, 46.742495 ], [ 2.114007, 46.775375 ], [ 2.077817, 46.838005 ], [ 2.087963, 46.865882 ], [ 2.126204, 46.879865 ], [ 2.140385, 46.845188 ], [ 2.18111, 46.85973 ], [ 2.195001, 46.887804 ], [ 2.243781, 46.873593 ], [ 2.261485, 46.912759 ], [ 2.308805, 46.942225 ], [ 2.280449, 46.967767 ], [ 2.323896, 46.993852 ], [ 2.339817, 47.030616 ], [ 2.333995, 47.073395 ], [ 2.376096, 47.076621 ], [ 2.407028, 47.075772 ], [ 2.451771, 47.050118 ], [ 2.53014, 47.122301 ], [ 2.575989, 47.118976 ], [ 2.638528, 47.092188 ], [ 2.683346, 47.148976 ], [ 2.660599, 47.173507 ], [ 2.736456, 47.174605 ], [ 2.80638, 47.218443 ], [ 2.882164, 47.192644 ], [ 2.900831, 47.254672 ], [ 2.973547, 47.269943 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "19001", "code_dpt": "19", "nom_dpt": "CORREZE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.492475, 45.54939 ], [ 1.517394, 45.564276 ], [ 1.558783, 45.550945 ], [ 1.592897, 45.575027 ], [ 1.625187, 45.578687 ], [ 1.710733, 45.641337 ], [ 1.750205, 45.645709 ], [ 1.785834, 45.682663 ], [ 1.826437, 45.665046 ], [ 1.874816, 45.664666 ], [ 1.898731, 45.698278 ], [ 1.956387, 45.723997 ], [ 1.990889, 45.723023 ], [ 2.014102, 45.754478 ], [ 2.060476, 45.753901 ], [ 2.113221, 45.726574 ], [ 2.203401, 45.717134 ], [ 2.210924, 45.702562 ], [ 2.271074, 45.691648 ], [ 2.271641, 45.66424 ], [ 2.320098, 45.67054 ], [ 2.367805, 45.713124 ], [ 2.435856, 45.699275 ], [ 2.492126, 45.73767 ], [ 2.521507, 45.711342 ], [ 2.528684, 45.682196 ], [ 2.513977, 45.639441 ], [ 2.486287, 45.640822 ], [ 2.463472, 45.594682 ], [ 2.51588, 45.553884 ], [ 2.508409, 45.478508 ], [ 2.487538, 45.418172 ], [ 2.523372, 45.381546 ], [ 2.441552, 45.384527 ], [ 2.380991, 45.413538 ], [ 2.353415, 45.32979 ], [ 2.31608, 45.322032 ], [ 2.269695, 45.289889 ], [ 2.239868, 45.248799 ], [ 2.191163, 45.223055 ], [ 2.11218, 45.230767 ], [ 2.027821, 45.201213 ], [ 2.031779, 45.18819 ], [ 1.993942, 45.126227 ], [ 1.959616, 45.108848 ], [ 1.962455, 45.08123 ], [ 1.91335, 45.040348 ], [ 1.872391, 45.044669 ], [ 1.811265, 45.090931 ], [ 1.776743, 45.101714 ], [ 1.773209, 45.143414 ], [ 1.721487, 45.187194 ], [ 1.670111, 45.207153 ], [ 1.653161, 45.177358 ], [ 1.564652, 45.193321 ], [ 1.502604, 45.215957 ], [ 1.464766, 45.184742 ], [ 1.412068, 45.241608 ], [ 1.453816, 45.261466 ], [ 1.470729, 45.296219 ], [ 1.439404, 45.334423 ], [ 1.457897, 45.40762 ], [ 1.494952, 45.424083 ], [ 1.502606, 45.447124 ], [ 1.474745, 45.486998 ], [ 1.499862, 45.522236 ], [ 1.492475, 45.54939 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "19002", "code_dpt": "19", "nom_dpt": "CORREZE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.22706, 45.271844 ], [ 1.285155, 45.352052 ], [ 1.315958, 45.361175 ], [ 1.260222, 45.40025 ], [ 1.288271, 45.433529 ], [ 1.253152, 45.444219 ], [ 1.285317, 45.490281 ], [ 1.350078, 45.466897 ], [ 1.3896, 45.496157 ], [ 1.408944, 45.526335 ], [ 1.492475, 45.54939 ], [ 1.499862, 45.522236 ], [ 1.474745, 45.486998 ], [ 1.502606, 45.447124 ], [ 1.494952, 45.424083 ], [ 1.457897, 45.40762 ], [ 1.439404, 45.334423 ], [ 1.470729, 45.296219 ], [ 1.453816, 45.261466 ], [ 1.412068, 45.241608 ], [ 1.464766, 45.184742 ], [ 1.502604, 45.215957 ], [ 1.564652, 45.193321 ], [ 1.653161, 45.177358 ], [ 1.670111, 45.207153 ], [ 1.721487, 45.187194 ], [ 1.773209, 45.143414 ], [ 1.776743, 45.101714 ], [ 1.811265, 45.090931 ], [ 1.872391, 45.044669 ], [ 1.91335, 45.040348 ], [ 1.962455, 45.08123 ], [ 1.959616, 45.108848 ], [ 1.993942, 45.126227 ], [ 2.031779, 45.18819 ], [ 2.027821, 45.201213 ], [ 2.11218, 45.230767 ], [ 2.191163, 45.223055 ], [ 2.210419, 45.147158 ], [ 2.172776, 45.081278 ], [ 2.143403, 45.086315 ], [ 2.095159, 45.056039 ], [ 2.140896, 45.005409 ], [ 2.133293, 44.985748 ], [ 2.062914, 44.976506 ], [ 2.045121, 44.983667 ], [ 1.94015, 44.971839 ], [ 1.907779, 44.978243 ], [ 1.887091, 44.956337 ], [ 1.831572, 44.943422 ], [ 1.824451, 44.928102 ], [ 1.753982, 44.940851 ], [ 1.651891, 45.025288 ], [ 1.540315, 45.044666 ], [ 1.448262, 45.019313 ], [ 1.399564, 45.061185 ], [ 1.392448, 45.105877 ], [ 1.413094, 45.124914 ], [ 1.254436, 45.158506 ], [ 1.2914, 45.185646 ], [ 1.233608, 45.222195 ], [ 1.276285, 45.255699 ], [ 1.22706, 45.271844 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "21002", "code_dpt": "21", "nom_dpt": "COTE-D'OR", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "2", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.400588, 47.107562 ], [ 5.388433, 47.125324 ], [ 5.335083, 47.122675 ], [ 5.25461, 47.176177 ], [ 5.290742, 47.217285 ], [ 5.327791, 47.228787 ], [ 5.320545, 47.26739 ], [ 5.251402, 47.306317 ], [ 5.23522, 47.35111 ], [ 5.203288, 47.361212 ], [ 5.160295, 47.353059 ], [ 5.072928, 47.308771 ], [ 5.024562, 47.316111 ], [ 5.099034, 47.417093 ], [ 5.207067, 47.438237 ], [ 5.255649, 47.489671 ], [ 5.272652, 47.538068 ], [ 5.306403, 47.533146 ], [ 5.347238, 47.563408 ], [ 5.355723, 47.591694 ], [ 5.374079, 47.604542 ], [ 5.399805, 47.597162 ], [ 5.425595, 47.632074 ], [ 5.478564, 47.605386 ], [ 5.49664, 47.54713 ], [ 5.44746, 47.4962 ], [ 5.399216, 47.499014 ], [ 5.379534, 47.466142 ], [ 5.441022, 47.446559 ], [ 5.430425, 47.421357 ], [ 5.451393, 47.383973 ], [ 5.496919, 47.388551 ], [ 5.495005, 47.341434 ], [ 5.474295, 47.315298 ], [ 5.518539, 47.304187 ], [ 5.488452, 47.288146 ], [ 5.479136, 47.218514 ], [ 5.438985, 47.142986 ], [ 5.400588, 47.107562 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "21004", "code_dpt": "21", "nom_dpt": "COTE-D'OR", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "4", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.535774, 48.006566 ], [ 4.578579, 48.02834 ], [ 4.616807, 48.031376 ], [ 4.67296, 48.01502 ], [ 4.704239, 48.020241 ], [ 4.749531, 48.004311 ], [ 4.78942, 48.007869 ], [ 4.787781, 47.965254 ], [ 4.845033, 47.960427 ], [ 4.874586, 47.919522 ], [ 4.905961, 47.91647 ], [ 4.954094, 47.866768 ], [ 4.986103, 47.803598 ], [ 4.917958, 47.777094 ], [ 4.958989, 47.761875 ], [ 4.971371, 47.690234 ], [ 5.056238, 47.694814 ], [ 5.046804, 47.675568 ], [ 5.127565, 47.648473 ], [ 5.17341, 47.653536 ], [ 5.211391, 47.641657 ], [ 5.25623, 47.576551 ], [ 5.306357, 47.607277 ], [ 5.355723, 47.591694 ], [ 5.347238, 47.563408 ], [ 5.306403, 47.533146 ], [ 5.272652, 47.538068 ], [ 5.255649, 47.489671 ], [ 5.207067, 47.438237 ], [ 5.099034, 47.417093 ], [ 5.044803, 47.445407 ], [ 4.957944, 47.431755 ], [ 4.897543, 47.407552 ], [ 4.842063, 47.398755 ], [ 4.812543, 47.365434 ], [ 4.840054, 47.324796 ], [ 4.816979, 47.294129 ], [ 4.841547, 47.279136 ], [ 4.831628, 47.236969 ], [ 4.777501, 47.19466 ], [ 4.715313, 47.226466 ], [ 4.695881, 47.262492 ], [ 4.646629, 47.26403 ], [ 4.619289, 47.301828 ], [ 4.541835, 47.318703 ], [ 4.477644, 47.302826 ], [ 4.403314, 47.309682 ], [ 4.359772, 47.286602 ], [ 4.383305, 47.267821 ], [ 4.369777, 47.235306 ], [ 4.304916, 47.236153 ], [ 4.290795, 47.253157 ], [ 4.202753, 47.259182 ], [ 4.186745, 47.245139 ], [ 4.125356, 47.249506 ], [ 4.106086, 47.339256 ], [ 4.10567, 47.366017 ], [ 4.078053, 47.381753 ], [ 4.072978, 47.413652 ], [ 4.119427, 47.443553 ], [ 4.128832, 47.470462 ], [ 4.114631, 47.514756 ], [ 4.172575, 47.550818 ], [ 4.212578, 47.627847 ], [ 4.247805, 47.658776 ], [ 4.265892, 47.703951 ], [ 4.331033, 47.756087 ], [ 4.319977, 47.811427 ], [ 4.324863, 47.847197 ], [ 4.262689, 47.844012 ], [ 4.26444, 47.871501 ], [ 4.293424, 47.925676 ], [ 4.312802, 47.962499 ], [ 4.352547, 47.95663 ], [ 4.41641, 47.9682 ], [ 4.446962, 47.956199 ], [ 4.559969, 47.971423 ], [ 4.535774, 48.006566 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "21005", "code_dpt": "21", "nom_dpt": "COTE-D'OR", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "5", "code_reg": "27" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.209834, 47.155412 ], [ 4.230875, 47.197022 ], [ 4.186745, 47.245139 ], [ 4.202753, 47.259182 ], [ 4.290795, 47.253157 ], [ 4.304916, 47.236153 ], [ 4.369777, 47.235306 ], [ 4.383305, 47.267821 ], [ 4.359772, 47.286602 ], [ 4.403314, 47.309682 ], [ 4.477644, 47.302826 ], [ 4.541835, 47.318703 ], [ 4.619289, 47.301828 ], [ 4.646629, 47.26403 ], [ 4.695881, 47.262492 ], [ 4.715313, 47.226466 ], [ 4.777501, 47.19466 ], [ 4.831628, 47.236969 ], [ 4.841547, 47.279136 ], [ 4.875734, 47.269133 ], [ 4.938579, 47.278383 ], [ 4.999513, 47.263039 ], [ 5.048366, 47.268202 ], [ 5.108351, 47.221279 ], [ 5.116099, 47.194768 ], [ 5.095061, 47.14786 ], [ 5.137049, 47.12645 ], [ 5.173598, 47.142368 ], [ 5.194153, 47.168999 ], [ 5.25461, 47.176177 ], [ 5.335083, 47.122675 ], [ 5.388433, 47.125324 ], [ 5.400588, 47.107562 ], [ 5.385646, 47.08175 ], [ 5.323975, 47.073793 ], [ 5.275327, 47.026934 ], [ 5.317198, 47.015806 ], [ 5.255236, 46.979888 ], [ 5.212199, 46.980145 ], [ 5.164631, 46.964232 ], [ 5.074945, 46.961161 ], [ 5.049304, 46.981587 ], [ 4.997223, 46.961128 ], [ 4.914754, 46.96776 ], [ 4.893082, 46.951501 ], [ 4.744315, 46.924435 ], [ 4.68522, 46.900954 ], [ 4.678435, 46.93043 ], [ 4.595808, 46.952163 ], [ 4.554809, 47.020055 ], [ 4.512144, 47.012003 ], [ 4.489643, 47.032008 ], [ 4.406283, 47.05 ], [ 4.402867, 47.082278 ], [ 4.34425, 47.07243 ], [ 4.349385, 47.096953 ], [ 4.276623, 47.10799 ], [ 4.209834, 47.155412 ] ] ], [ [ [ 4.115967, 47.123338 ], [ 4.115067, 47.146162 ], [ 4.181902, 47.150514 ], [ 4.150014, 47.114045 ], [ 4.115967, 47.123338 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "22001", "code_dpt": "22", "nom_dpt": "COTES-D'ARMOR", "nom_reg": "BRETAGNE", "num_circ": "1", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.021918, 48.4477 ], [ -3.022226, 48.47246 ], [ -2.949059, 48.520676 ], [ -2.975855, 48.5527 ], [ -2.926114, 48.586468 ], [ -2.896738, 48.582067 ], [ -2.808791, 48.592082 ], [ -2.772318, 48.570337 ], [ -2.715854, 48.554452 ], [ -2.717961, 48.526616 ], [ -2.688137, 48.496067 ], [ -2.657786, 48.525523 ], [ -2.630161, 48.526323 ], [ -2.607569, 48.490326 ], [ -2.64462, 48.474679 ], [ -2.704834, 48.42345 ], [ -2.762056, 48.420409 ], [ -2.842087, 48.472301 ], [ -2.886661, 48.442896 ], [ -2.942414, 48.428862 ], [ -2.992924, 48.432524 ], [ -3.021918, 48.4477 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "22002", "code_dpt": "22", "nom_dpt": "COTES-D'ARMOR", "nom_reg": "BRETAGNE", "num_circ": "2", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.628061, 48.539887 ], [ -2.54872, 48.597115 ], [ -2.498812, 48.607432 ], [ -2.438258, 48.652324 ], [ -2.415941, 48.641297 ], [ -2.330809, 48.672665 ], [ -2.284696, 48.668654 ], [ -2.337472, 48.619726 ], [ -2.311424, 48.612156 ], [ -2.261225, 48.645084 ], [ -2.223928, 48.593287 ], [ -2.123708, 48.60441 ], [ -2.094322, 48.571753 ], [ -2.033971, 48.551106 ], [ -2.006895, 48.566113 ], [ -1.948037, 48.538808 ], [ -1.924802, 48.545173 ], [ -1.908996, 48.481554 ], [ -1.948635, 48.446456 ], [ -1.938069, 48.419846 ], [ -1.946466, 48.367122 ], [ -1.966897, 48.342819 ], [ -1.964572, 48.301439 ], [ -2.014101, 48.279532 ], [ -2.077616, 48.291759 ], [ -2.108602, 48.254799 ], [ -2.150047, 48.258752 ], [ -2.187172, 48.243998 ], [ -2.191935, 48.208224 ], [ -2.227979, 48.210916 ], [ -2.248431, 48.20521 ], [ -2.311792, 48.22243 ], [ -2.380103, 48.264798 ], [ -2.391826, 48.316344 ], [ -2.370811, 48.348737 ], [ -2.302407, 48.377775 ], [ -2.313802, 48.398228 ], [ -2.274521, 48.412112 ], [ -2.313069, 48.464183 ], [ -2.349299, 48.48295 ], [ -2.34896, 48.509925 ], [ -2.397437, 48.506287 ], [ -2.417504, 48.528302 ], [ -2.45276, 48.505488 ], [ -2.502039, 48.528535 ], [ -2.521512, 48.50707 ], [ -2.588798, 48.505912 ], [ -2.628061, 48.539887 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "22003", "code_dpt": "22", "nom_dpt": "COTES-D'ARMOR", "nom_reg": "BRETAGNE", "num_circ": "3", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.877949, 48.150917 ], [ -2.943871, 48.171702 ], [ -2.999753, 48.160711 ], [ -3.018382, 48.191093 ], [ -3.076967, 48.2099 ], [ -3.056905, 48.243735 ], [ -3.090504, 48.250958 ], [ -3.092009, 48.286255 ], [ -3.070246, 48.314313 ], [ -3.070964, 48.342673 ], [ -3.036081, 48.361974 ], [ -3.055999, 48.384164 ], [ -3.021918, 48.4477 ], [ -2.992924, 48.432524 ], [ -2.942414, 48.428862 ], [ -2.886661, 48.442896 ], [ -2.842087, 48.472301 ], [ -2.762056, 48.420409 ], [ -2.704834, 48.42345 ], [ -2.64462, 48.474679 ], [ -2.607569, 48.490326 ], [ -2.630161, 48.526323 ], [ -2.628061, 48.539887 ], [ -2.588798, 48.505912 ], [ -2.521512, 48.50707 ], [ -2.502039, 48.528535 ], [ -2.45276, 48.505488 ], [ -2.417504, 48.528302 ], [ -2.397437, 48.506287 ], [ -2.34896, 48.509925 ], [ -2.349299, 48.48295 ], [ -2.313069, 48.464183 ], [ -2.274521, 48.412112 ], [ -2.313802, 48.398228 ], [ -2.302407, 48.377775 ], [ -2.370811, 48.348737 ], [ -2.391826, 48.316344 ], [ -2.380103, 48.264798 ], [ -2.311792, 48.22243 ], [ -2.248431, 48.20521 ], [ -2.227979, 48.210916 ], [ -2.224738, 48.170606 ], [ -2.287278, 48.133746 ], [ -2.330118, 48.120361 ], [ -2.420909, 48.173246 ], [ -2.488396, 48.157919 ], [ -2.579224, 48.06974 ], [ -2.623324, 48.036902 ], [ -2.655761, 48.03254 ], [ -2.671327, 48.062907 ], [ -2.651993, 48.119971 ], [ -2.748166, 48.113871 ], [ -2.784964, 48.122615 ], [ -2.810401, 48.146554 ], [ -2.877949, 48.150917 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "22004", "code_dpt": "22", "nom_dpt": "COTES-D'ARMOR", "nom_reg": "BRETAGNE", "num_circ": "4", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.926114, 48.586468 ], [ -2.975855, 48.5527 ], [ -2.949059, 48.520676 ], [ -3.022226, 48.47246 ], [ -3.021918, 48.4477 ], [ -3.055999, 48.384164 ], [ -3.036081, 48.361974 ], [ -3.070964, 48.342673 ], [ -3.070246, 48.314313 ], [ -3.092009, 48.286255 ], [ -3.090504, 48.250958 ], [ -3.056905, 48.243735 ], [ -3.076967, 48.2099 ], [ -3.129925, 48.198675 ], [ -3.147882, 48.161096 ], [ -3.284694, 48.143765 ], [ -3.336929, 48.171567 ], [ -3.417596, 48.145641 ], [ -3.422077, 48.173347 ], [ -3.480454, 48.185859 ], [ -3.564839, 48.185747 ], [ -3.541258, 48.209188 ], [ -3.553805, 48.24086 ], [ -3.522957, 48.281717 ], [ -3.553028, 48.293016 ], [ -3.562814, 48.347021 ], [ -3.555155, 48.376914 ], [ -3.607682, 48.388327 ], [ -3.598768, 48.422644 ], [ -3.550496, 48.447831 ], [ -3.599593, 48.470797 ], [ -3.604168, 48.49405 ], [ -3.553824, 48.541284 ], [ -3.594583, 48.585749 ], [ -3.629298, 48.588365 ], [ -3.654181, 48.617296 ], [ -3.659144, 48.65921 ], [ -3.615078, 48.684569 ], [ -3.579907, 48.670724 ], [ -3.582178, 48.720809 ], [ -3.553658, 48.729187 ], [ -3.424188, 48.650185 ], [ -3.388957, 48.689164 ], [ -3.357783, 48.653916 ], [ -3.278139, 48.66357 ], [ -3.241694, 48.65393 ], [ -3.076292, 48.656585 ], [ -3.095944, 48.683429 ], [ -3.0581, 48.693553 ], [ -3.01601, 48.666153 ], [ -2.921198, 48.647998 ], [ -2.926114, 48.586468 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "22005", "code_dpt": "22", "nom_dpt": "COTES-D'ARMOR", "nom_reg": "BRETAGNE", "num_circ": "5", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.926114, 48.586468 ], [ -2.921198, 48.647998 ], [ -3.01601, 48.666153 ], [ -3.0581, 48.693553 ], [ -3.095944, 48.683429 ], [ -3.076292, 48.656585 ], [ -3.241694, 48.65393 ], [ -3.278139, 48.66357 ], [ -3.357783, 48.653916 ], [ -3.388957, 48.689164 ], [ -3.424188, 48.650185 ], [ -3.553658, 48.729187 ], [ -3.585326, 48.77143 ], [ -3.532147, 48.804968 ], [ -3.539439, 48.82407 ], [ -3.479231, 48.837525 ], [ -3.440556, 48.798308 ], [ -3.389007, 48.803526 ], [ -3.320151, 48.837158 ], [ -3.264317, 48.834291 ], [ -3.220284, 48.866156 ], [ -3.199135, 48.824568 ], [ -3.168292, 48.851704 ], [ -3.084843, 48.867224 ], [ -3.083938, 48.847922 ], [ -3.047087, 48.817088 ], [ -3.045663, 48.787538 ], [ -3.016376, 48.767516 ], [ -2.929793, 48.756295 ], [ -2.947904, 48.727215 ], [ -2.829383, 48.655789 ], [ -2.808791, 48.592082 ], [ -2.896738, 48.582067 ], [ -2.926114, 48.586468 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "23001", "code_dpt": "23", "nom_dpt": "CREUSE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.492126, 45.73767 ], [ 2.435856, 45.699275 ], [ 2.367805, 45.713124 ], [ 2.320098, 45.67054 ], [ 2.271641, 45.66424 ], [ 2.271074, 45.691648 ], [ 2.210924, 45.702562 ], [ 2.203401, 45.717134 ], [ 2.113221, 45.726574 ], [ 2.060476, 45.753901 ], [ 2.014102, 45.754478 ], [ 1.990889, 45.723023 ], [ 1.956387, 45.723997 ], [ 1.898731, 45.698278 ], [ 1.873469, 45.72772 ], [ 1.896354, 45.76007 ], [ 1.883805, 45.794709 ], [ 1.815599, 45.814403 ], [ 1.755837, 45.855665 ], [ 1.729669, 45.843495 ], [ 1.652828, 45.845631 ], [ 1.602398, 45.857465 ], [ 1.602085, 45.889677 ], [ 1.64157, 45.896219 ], [ 1.604934, 45.93306 ], [ 1.573383, 45.915824 ], [ 1.513822, 45.931071 ], [ 1.518656, 45.950498 ], [ 1.566241, 45.963684 ], [ 1.568388, 45.996837 ], [ 1.537903, 45.997339 ], [ 1.547723, 46.036058 ], [ 1.541189, 46.075675 ], [ 1.488492, 46.108156 ], [ 1.504852, 46.123197 ], [ 1.47009, 46.149601 ], [ 1.452574, 46.181148 ], [ 1.398496, 46.185884 ], [ 1.379039, 46.21941 ], [ 1.407696, 46.254436 ], [ 1.440266, 46.335352 ], [ 1.415191, 46.347218 ], [ 1.525351, 46.426654 ], [ 1.546187, 46.395931 ], [ 1.600772, 46.419615 ], [ 1.64109, 46.385591 ], [ 1.683603, 46.418178 ], [ 1.709385, 46.393427 ], [ 1.750549, 46.405593 ], [ 1.74759, 46.450021 ], [ 1.798244, 46.454906 ], [ 1.818455, 46.431423 ], [ 1.993082, 46.430917 ], [ 2.072452, 46.420108 ], [ 2.167786, 46.424076 ], [ 2.281048, 46.420405 ], [ 2.286936, 46.383306 ], [ 2.312479, 46.37606 ], [ 2.314586, 46.334641 ], [ 2.357932, 46.323367 ], [ 2.38608, 46.331969 ], [ 2.470215, 46.286348 ], [ 2.48892, 46.250009 ], [ 2.515203, 46.238543 ], [ 2.528499, 46.184939 ], [ 2.559155, 46.174409 ], [ 2.565379, 46.143041 ], [ 2.550607, 46.08645 ], [ 2.573342, 46.046925 ], [ 2.602696, 46.032875 ], [ 2.593143, 45.996065 ], [ 2.60683, 45.966424 ], [ 2.568712, 45.957874 ], [ 2.492225, 45.86403 ], [ 2.38802, 45.827376 ], [ 2.430863, 45.788617 ], [ 2.434119, 45.769857 ], [ 2.492126, 45.73767 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "24001", "code_dpt": "24", "nom_dpt": "DORDOGNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.811841, 45.205199 ], [ 0.720555, 45.173719 ], [ 0.710886, 45.142102 ], [ 0.67568, 45.114278 ], [ 0.612273, 45.08658 ], [ 0.620101, 45.071164 ], [ 0.582784, 45.045993 ], [ 0.495719, 45.053294 ], [ 0.473693, 45.035032 ], [ 0.437999, 45.041819 ], [ 0.409357, 45.003969 ], [ 0.372984, 45.019773 ], [ 0.265321, 44.958368 ], [ 0.17559, 44.97717 ], [ 0.143017, 44.971473 ], [ 0.069457, 44.996832 ], [ 0.040691, 45.022136 ], [ 0.072345, 45.0747 ], [ 0.129763, 45.120181 ], [ 0.182868, 45.10657 ], [ 0.193694, 45.163857 ], [ 0.22358, 45.143459 ], [ 0.275404, 45.132556 ], [ 0.308602, 45.161553 ], [ 0.366748, 45.166652 ], [ 0.408596, 45.193001 ], [ 0.50665, 45.206144 ], [ 0.546365, 45.248021 ], [ 0.62058, 45.246086 ], [ 0.649382, 45.277963 ], [ 0.708004, 45.289297 ], [ 0.749101, 45.241795 ], [ 0.813882, 45.229875 ], [ 0.811841, 45.205199 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "24002", "code_dpt": "24", "nom_dpt": "DORDOGNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.495626, 44.669808 ], [ 0.416954, 44.64521 ], [ 0.366564, 44.661307 ], [ 0.336662, 44.735573 ], [ 0.297325, 44.762294 ], [ 0.280226, 44.774397 ], [ 0.281958, 44.823851 ], [ 0.315056, 44.845377 ], [ 0.256446, 44.867519 ], [ 0.192844, 44.820803 ], [ 0.148828, 44.829094 ], [ 0.039303, 44.827639 ], [ -0.010036, 44.859792 ], [ 0.033907, 44.914962 ], [ 0.005127, 44.946238 ], [ 0.040106, 44.99355 ], [ 0.03914, 45.024311 ], [ 0.040691, 45.022136 ], [ 0.069457, 44.996832 ], [ 0.143017, 44.971473 ], [ 0.17559, 44.97717 ], [ 0.265321, 44.958368 ], [ 0.372984, 45.019773 ], [ 0.409357, 45.003969 ], [ 0.437999, 45.041819 ], [ 0.473693, 45.035032 ], [ 0.495719, 45.053294 ], [ 0.582784, 45.045993 ], [ 0.619016, 45.029443 ], [ 0.659971, 44.992352 ], [ 0.65113, 44.967674 ], [ 0.725823, 44.934963 ], [ 0.726983, 44.918539 ], [ 0.822253, 44.881925 ], [ 0.823118, 44.860596 ], [ 0.890581, 44.856792 ], [ 0.939075, 44.844112 ], [ 0.972645, 44.796493 ], [ 0.935066, 44.75483 ], [ 0.950427, 44.710662 ], [ 0.993532, 44.689721 ], [ 0.979952, 44.645976 ], [ 0.944179, 44.640355 ], [ 0.869996, 44.597316 ], [ 0.835146, 44.602205 ], [ 0.817004, 44.62701 ], [ 0.844563, 44.665836 ], [ 0.799457, 44.700784 ], [ 0.778603, 44.684291 ], [ 0.729134, 44.675992 ], [ 0.657434, 44.677856 ], [ 0.6481, 44.702175 ], [ 0.576468, 44.693063 ], [ 0.546558, 44.665149 ], [ 0.495626, 44.669808 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "24003", "code_dpt": "24", "nom_dpt": "DORDOGNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.072345, 45.0747 ], [ 0.045793, 45.113464 ], [ -0.002243, 45.119362 ], [ -0.0402, 45.102384 ], [ -0.03675, 45.140747 ], [ 0.004331, 45.191633 ], [ 0.055582, 45.227164 ], [ 0.145486, 45.214487 ], [ 0.204416, 45.263604 ], [ 0.220912, 45.290225 ], [ 0.252621, 45.289405 ], [ 0.270634, 45.314605 ], [ 0.249431, 45.363586 ], [ 0.27086, 45.418927 ], [ 0.310781, 45.45876 ], [ 0.356707, 45.466222 ], [ 0.432763, 45.501647 ], [ 0.449305, 45.523917 ], [ 0.506549, 45.554339 ], [ 0.516324, 45.58806 ], [ 0.501441, 45.615353 ], [ 0.575447, 45.640928 ], [ 0.629742, 45.71457 ], [ 0.662086, 45.687481 ], [ 0.744137, 45.688262 ], [ 0.775643, 45.667746 ], [ 0.750613, 45.616873 ], [ 0.777188, 45.592169 ], [ 0.839996, 45.581304 ], [ 0.869353, 45.623527 ], [ 0.89374, 45.601034 ], [ 0.946145, 45.612551 ], [ 1.023588, 45.607219 ], [ 1.047749, 45.557829 ], [ 1.086024, 45.534744 ], [ 1.119312, 45.545962 ], [ 1.165364, 45.526403 ], [ 1.118436, 45.487904 ], [ 1.212123, 45.46237 ], [ 1.253152, 45.444219 ], [ 1.288271, 45.433529 ], [ 1.260222, 45.40025 ], [ 1.315958, 45.361175 ], [ 1.285155, 45.352052 ], [ 1.22706, 45.271844 ], [ 1.162886, 45.305124 ], [ 1.094143, 45.292049 ], [ 1.04772, 45.30257 ], [ 0.996355, 45.265822 ], [ 1.015731, 45.22922 ], [ 0.913864, 45.188534 ], [ 0.864193, 45.183685 ], [ 0.811841, 45.205199 ], [ 0.813882, 45.229875 ], [ 0.749101, 45.241795 ], [ 0.708004, 45.289297 ], [ 0.649382, 45.277963 ], [ 0.62058, 45.246086 ], [ 0.546365, 45.248021 ], [ 0.50665, 45.206144 ], [ 0.408596, 45.193001 ], [ 0.366748, 45.166652 ], [ 0.308602, 45.161553 ], [ 0.275404, 45.132556 ], [ 0.22358, 45.143459 ], [ 0.193694, 45.163857 ], [ 0.182868, 45.10657 ], [ 0.129763, 45.120181 ], [ 0.072345, 45.0747 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "24004", "code_dpt": "24", "nom_dpt": "DORDOGNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "4", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.582784, 45.045993 ], [ 0.620101, 45.071164 ], [ 0.612273, 45.08658 ], [ 0.67568, 45.114278 ], [ 0.710886, 45.142102 ], [ 0.720555, 45.173719 ], [ 0.811841, 45.205199 ], [ 0.864193, 45.183685 ], [ 0.913864, 45.188534 ], [ 1.015731, 45.22922 ], [ 0.996355, 45.265822 ], [ 1.04772, 45.30257 ], [ 1.094143, 45.292049 ], [ 1.162886, 45.305124 ], [ 1.22706, 45.271844 ], [ 1.276285, 45.255699 ], [ 1.233608, 45.222195 ], [ 1.2914, 45.185646 ], [ 1.254436, 45.158506 ], [ 1.413094, 45.124914 ], [ 1.392448, 45.105877 ], [ 1.399564, 45.061185 ], [ 1.448262, 45.019313 ], [ 1.40913, 45.006729 ], [ 1.414261, 44.973914 ], [ 1.441562, 44.918782 ], [ 1.421836, 44.896414 ], [ 1.442178, 44.878348 ], [ 1.365459, 44.84497 ], [ 1.364103, 44.811568 ], [ 1.301166, 44.797744 ], [ 1.321535, 44.761097 ], [ 1.316051, 44.740375 ], [ 1.270041, 44.722088 ], [ 1.22455, 44.684266 ], [ 1.146733, 44.670797 ], [ 1.150893, 44.632856 ], [ 1.075141, 44.577325 ], [ 1.071131, 44.596229 ], [ 1.012502, 44.61583 ], [ 0.977296, 44.642992 ], [ 0.944179, 44.640355 ], [ 0.979952, 44.645976 ], [ 0.993532, 44.689721 ], [ 0.950427, 44.710662 ], [ 0.935066, 44.75483 ], [ 0.972645, 44.796493 ], [ 0.939075, 44.844112 ], [ 0.890581, 44.856792 ], [ 0.823118, 44.860596 ], [ 0.822253, 44.881925 ], [ 0.726983, 44.918539 ], [ 0.725823, 44.934963 ], [ 0.65113, 44.967674 ], [ 0.659971, 44.992352 ], [ 0.619016, 45.029443 ], [ 0.582784, 45.045993 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "25003", "code_dpt": "25", "nom_dpt": "DOUBS", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "3", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.320457, 47.243188 ], [ 6.284947, 47.315742 ], [ 6.292081, 47.371789 ], [ 6.276011, 47.417229 ], [ 6.250552, 47.424665 ], [ 6.280184, 47.443969 ], [ 6.334475, 47.505999 ], [ 6.411148, 47.521897 ], [ 6.500569, 47.510252 ], [ 6.517722, 47.49667 ], [ 6.573512, 47.495494 ], [ 6.581558, 47.540985 ], [ 6.627005, 47.529848 ], [ 6.670176, 47.557899 ], [ 6.740108, 47.556802 ], [ 6.781102, 47.536366 ], [ 6.807005, 47.562801 ], [ 6.81666, 47.547922 ], [ 6.821985, 47.491188 ], [ 6.725291, 47.480066 ], [ 6.682006, 47.454319 ], [ 6.672946, 47.414071 ], [ 6.635519, 47.370631 ], [ 6.632236, 47.302397 ], [ 6.673283, 47.302258 ], [ 6.705076, 47.330023 ], [ 6.797827, 47.365581 ], [ 6.879799, 47.352434 ], [ 6.999339, 47.364873 ], [ 7.048192, 47.36053 ], [ 7.043934, 47.326957 ], [ 7.00841, 47.302725 ], [ 6.940919, 47.286632 ], [ 6.955123, 47.243161 ], [ 6.844374, 47.172069 ], [ 6.826476, 47.14417 ], [ 6.788232, 47.168593 ], [ 6.750024, 47.231946 ], [ 6.666586, 47.221486 ], [ 6.660077, 47.240906 ], [ 6.604874, 47.239221 ], [ 6.595261, 47.268007 ], [ 6.524843, 47.265402 ], [ 6.494746, 47.285048 ], [ 6.447814, 47.271233 ], [ 6.360992, 47.266772 ], [ 6.320457, 47.243188 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "25004", "code_dpt": "25", "nom_dpt": "DOUBS", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "4", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.81666, 47.547922 ], [ 6.883474, 47.555331 ], [ 6.925322, 47.519528 ], [ 6.907611, 47.494555 ], [ 6.939179, 47.433699 ], [ 6.940003, 47.409705 ], [ 6.883794, 47.371336 ], [ 6.879799, 47.352434 ], [ 6.797827, 47.365581 ], [ 6.705076, 47.330023 ], [ 6.673283, 47.302258 ], [ 6.632236, 47.302397 ], [ 6.635519, 47.370631 ], [ 6.672946, 47.414071 ], [ 6.682006, 47.454319 ], [ 6.725291, 47.480066 ], [ 6.821985, 47.491188 ], [ 6.81666, 47.547922 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "25005", "code_dpt": "25", "nom_dpt": "DOUBS", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "5", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0371, 47.099663 ], [ 6.087202, 47.096029 ], [ 6.157504, 47.026281 ], [ 6.184587, 47.010724 ], [ 6.260069, 47.013049 ], [ 6.300248, 47.03302 ], [ 6.259223, 47.113373 ], [ 6.254203, 47.145214 ], [ 6.214326, 47.1648 ], [ 6.274378, 47.202448 ], [ 6.310915, 47.199336 ], [ 6.320457, 47.243188 ], [ 6.360992, 47.266772 ], [ 6.447814, 47.271233 ], [ 6.494746, 47.285048 ], [ 6.524843, 47.265402 ], [ 6.595261, 47.268007 ], [ 6.604874, 47.239221 ], [ 6.660077, 47.240906 ], [ 6.666586, 47.221486 ], [ 6.750024, 47.231946 ], [ 6.788232, 47.168593 ], [ 6.826476, 47.14417 ], [ 6.74055, 47.107035 ], [ 6.696344, 47.066511 ], [ 6.715974, 47.051027 ], [ 6.65419, 47.022374 ], [ 6.633911, 46.998571 ], [ 6.505959, 46.96613 ], [ 6.433014, 46.927817 ], [ 6.464539, 46.889913 ], [ 6.459761, 46.851592 ], [ 6.434491, 46.802385 ], [ 6.457247, 46.788571 ], [ 6.424077, 46.754515 ], [ 6.267799, 46.676755 ], [ 6.112953, 46.575118 ], [ 6.138109, 46.55766 ], [ 6.048567, 46.607723 ], [ 6.103265, 46.65249 ], [ 6.071211, 46.687569 ], [ 6.180198, 46.741442 ], [ 6.206575, 46.766337 ], [ 6.15224, 46.819529 ], [ 6.105555, 46.8453 ], [ 6.028808, 46.860321 ], [ 5.997222, 46.9335 ], [ 5.945111, 46.988848 ], [ 5.969134, 47.050273 ], [ 6.0371, 47.099663 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "26001", "code_dpt": "26", "nom_dpt": "DROME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971974, 44.959325 ], [ 4.933671, 44.913885 ], [ 4.937195, 44.899963 ], [ 4.882127, 44.887581 ], [ 4.854324, 44.896523 ], [ 4.886589, 44.936652 ], [ 4.836708, 45.00751 ], [ 4.860746, 45.055429 ], [ 4.829155, 45.072848 ], [ 4.829597, 45.098005 ], [ 4.804038, 45.122468 ], [ 4.828713, 45.156129 ], [ 4.866871, 45.136935 ], [ 4.907001, 45.144254 ], [ 4.913858, 45.096248 ], [ 4.936517, 45.091425 ], [ 4.943408, 45.02045 ], [ 4.886582, 45.005027 ], [ 4.888807, 44.977655 ], [ 4.963511, 44.992213 ], [ 4.971974, 44.959325 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "26002", "code_dpt": "26", "nom_dpt": "DROME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.721663, 44.326592 ], [ 4.650615, 44.329806 ], [ 4.649064, 44.373073 ], [ 4.667106, 44.429912 ], [ 4.695289, 44.445797 ], [ 4.689415, 44.492349 ], [ 4.706588, 44.534071 ], [ 4.692446, 44.546517 ], [ 4.710872, 44.581999 ], [ 4.740405, 44.602392 ], [ 4.779073, 44.654699 ], [ 4.76422, 44.715027 ], [ 4.76104, 44.771217 ], [ 4.821485, 44.817384 ], [ 4.849984, 44.864796 ], [ 4.854324, 44.896523 ], [ 4.882127, 44.887581 ], [ 4.937195, 44.899963 ], [ 4.977063, 44.877015 ], [ 4.947356, 44.82508 ], [ 4.890813, 44.802454 ], [ 4.877287, 44.758421 ], [ 4.848776, 44.731983 ], [ 4.874085, 44.715402 ], [ 4.878143, 44.679572 ], [ 4.973738, 44.648478 ], [ 4.948522, 44.623341 ], [ 4.972733, 44.582631 ], [ 4.889601, 44.559852 ], [ 4.925312, 44.539631 ], [ 4.939694, 44.504188 ], [ 4.839743, 44.472691 ], [ 4.757585, 44.45478 ], [ 4.769773, 44.415219 ], [ 4.791429, 44.406054 ], [ 4.778004, 44.372542 ], [ 4.728218, 44.36923 ], [ 4.721663, 44.326592 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "26003", "code_dpt": "26", "nom_dpt": "DROME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.989594, 44.285766 ], [ 4.971688, 44.279426 ], [ 4.93291, 44.262152 ], [ 4.88025, 44.261769 ], [ 4.825342, 44.228446 ], [ 4.803999, 44.269206 ], [ 4.804563, 44.303897 ], [ 4.762995, 44.3251 ], [ 4.721663, 44.326592 ], [ 4.728218, 44.36923 ], [ 4.778004, 44.372542 ], [ 4.791429, 44.406054 ], [ 4.769773, 44.415219 ], [ 4.757585, 44.45478 ], [ 4.839743, 44.472691 ], [ 4.939694, 44.504188 ], [ 4.925312, 44.539631 ], [ 4.889601, 44.559852 ], [ 4.972733, 44.582631 ], [ 4.948522, 44.623341 ], [ 4.973738, 44.648478 ], [ 4.878143, 44.679572 ], [ 4.874085, 44.715402 ], [ 4.848776, 44.731983 ], [ 4.877287, 44.758421 ], [ 4.890813, 44.802454 ], [ 4.947356, 44.82508 ], [ 4.977063, 44.877015 ], [ 4.937195, 44.899963 ], [ 4.933671, 44.913885 ], [ 4.971974, 44.959325 ], [ 5.000229, 44.966557 ], [ 5.053707, 44.953468 ], [ 5.068629, 44.926117 ], [ 5.148679, 44.909205 ], [ 5.18288, 44.91814 ], [ 5.222078, 45.00104 ], [ 5.236965, 45.04985 ], [ 5.227494, 45.077216 ], [ 5.246537, 45.060728 ], [ 5.304003, 45.06086 ], [ 5.384095, 45.035979 ], [ 5.435975, 45.056872 ], [ 5.46395, 45.08693 ], [ 5.494196, 45.071672 ], [ 5.465229, 45.043544 ], [ 5.49306, 44.995415 ], [ 5.477675, 44.966761 ], [ 5.483565, 44.923013 ], [ 5.460225, 44.799946 ], [ 5.482028, 44.786588 ], [ 5.626315, 44.753293 ], [ 5.647102, 44.724099 ], [ 5.73636, 44.712668 ], [ 5.755312, 44.696965 ], [ 5.80147, 44.706779 ], [ 5.829958, 44.691244 ], [ 5.79062, 44.653299 ], [ 5.753769, 44.660529 ], [ 5.725505, 44.640087 ], [ 5.641715, 44.651084 ], [ 5.649462, 44.61938 ], [ 5.607148, 44.568351 ], [ 5.633188, 44.502097 ], [ 5.603637, 44.4655 ], [ 5.51103, 44.491507 ], [ 5.457843, 44.498155 ], [ 5.472722, 44.420934 ], [ 5.438582, 44.433556 ], [ 5.442622, 44.381268 ], [ 5.492944, 44.337135 ], [ 5.615752, 44.332401 ], [ 5.646781, 44.267091 ], [ 5.686653, 44.266069 ], [ 5.676037, 44.191433 ], [ 5.678605, 44.146098 ], [ 5.609327, 44.190708 ], [ 5.575816, 44.186195 ], [ 5.542146, 44.133264 ], [ 5.498788, 44.115719 ], [ 5.454716, 44.119228 ], [ 5.415834, 44.154652 ], [ 5.383241, 44.155285 ], [ 5.384529, 44.201191 ], [ 5.35579, 44.213599 ], [ 5.303624, 44.208799 ], [ 5.256509, 44.230056 ], [ 5.23815, 44.213233 ], [ 5.175606, 44.220866 ], [ 5.14953, 44.300682 ], [ 5.109547, 44.280548 ], [ 5.076512, 44.284086 ], [ 5.060565, 44.30814 ], [ 4.989594, 44.285766 ] ], [ [ 4.889463, 44.304019 ], [ 4.921836, 44.308797 ], [ 4.979968, 44.297249 ], [ 4.987018, 44.292719 ], [ 5.025059, 44.360998 ], [ 5.018616, 44.392588 ], [ 4.970547, 44.429846 ], [ 4.918515, 44.407785 ], [ 4.907085, 44.374631 ], [ 4.869527, 44.345076 ], [ 4.889463, 44.304019 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "26004", "code_dpt": "26", "nom_dpt": "DROME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "4", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971974, 44.959325 ], [ 4.963511, 44.992213 ], [ 4.888807, 44.977655 ], [ 4.886582, 45.005027 ], [ 4.943408, 45.02045 ], [ 4.936517, 45.091425 ], [ 4.913858, 45.096248 ], [ 4.907001, 45.144254 ], [ 4.866871, 45.136935 ], [ 4.828713, 45.156129 ], [ 4.811837, 45.165258 ], [ 4.800494, 45.298361 ], [ 4.858799, 45.308954 ], [ 4.878779, 45.297713 ], [ 4.990147, 45.343985 ], [ 5.020647, 45.319289 ], [ 5.052797, 45.318993 ], [ 5.073566, 45.283228 ], [ 5.130631, 45.283678 ], [ 5.122195, 45.245439 ], [ 5.176541, 45.248402 ], [ 5.201713, 45.2174 ], [ 5.16558, 45.200271 ], [ 5.188451, 45.170739 ], [ 5.186889, 45.12013 ], [ 5.156072, 45.082791 ], [ 5.227494, 45.077216 ], [ 5.236965, 45.04985 ], [ 5.222078, 45.00104 ], [ 5.18288, 44.91814 ], [ 5.148679, 44.909205 ], [ 5.068629, 44.926117 ], [ 5.053707, 44.953468 ], [ 5.000229, 44.966557 ], [ 4.971974, 44.959325 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "27003", "code_dpt": "27", "nom_dpt": "EURE", "nom_reg": "NORMANDIE", "num_circ": "3", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.578041, 48.893656 ], [ 0.549868, 48.87471 ], [ 0.443109, 48.881285 ], [ 0.386114, 48.910548 ], [ 0.412815, 48.950626 ], [ 0.446052, 49.019014 ], [ 0.384959, 49.037014 ], [ 0.37925, 49.070923 ], [ 0.399783, 49.100814 ], [ 0.432367, 49.142202 ], [ 0.387361, 49.153179 ], [ 0.393432, 49.206941 ], [ 0.321766, 49.248591 ], [ 0.382787, 49.264016 ], [ 0.365656, 49.295124 ], [ 0.322439, 49.296332 ], [ 0.323662, 49.340117 ], [ 0.301714, 49.371305 ], [ 0.297224, 49.429862 ], [ 0.338983, 49.440931 ], [ 0.435335, 49.460412 ], [ 0.479893, 49.479907 ], [ 0.522109, 49.479627 ], [ 0.581253, 49.433965 ], [ 0.634686, 49.433861 ], [ 0.660916, 49.403078 ], [ 0.738288, 49.408065 ], [ 0.767649, 49.418987 ], [ 0.818879, 49.398188 ], [ 0.918119, 49.385461 ], [ 0.920093, 49.338611 ], [ 0.859373, 49.345392 ], [ 0.84848, 49.331674 ], [ 0.798729, 49.328367 ], [ 0.77215, 49.346144 ], [ 0.732491, 49.326881 ], [ 0.766781, 49.307718 ], [ 0.73883, 49.284265 ], [ 0.775426, 49.247534 ], [ 0.729446, 49.258818 ], [ 0.70539, 49.242327 ], [ 0.656497, 49.237897 ], [ 0.6109, 49.217278 ], [ 0.581443, 49.225621 ], [ 0.578545, 49.178126 ], [ 0.644879, 49.144678 ], [ 0.729204, 49.12956 ], [ 0.735881, 49.100966 ], [ 0.705531, 49.088436 ], [ 0.737229, 49.031495 ], [ 0.79147, 49.007723 ], [ 0.788612, 48.980755 ], [ 0.73252, 48.944173 ], [ 0.693624, 48.942325 ], [ 0.654746, 48.916488 ], [ 0.554535, 48.921438 ], [ 0.578041, 48.893656 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "27004", "code_dpt": "27", "nom_dpt": "EURE", "nom_reg": "NORMANDIE", "num_circ": "4", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.775426, 49.247534 ], [ 0.73883, 49.284265 ], [ 0.766781, 49.307718 ], [ 0.732491, 49.326881 ], [ 0.77215, 49.346144 ], [ 0.798729, 49.328367 ], [ 0.84848, 49.331674 ], [ 0.907953, 49.306775 ], [ 0.937322, 49.320014 ], [ 0.999109, 49.251974 ], [ 1.05125, 49.261623 ], [ 1.048149, 49.297883 ], [ 1.136896, 49.325838 ], [ 1.212223, 49.349724 ], [ 1.246099, 49.347524 ], [ 1.236926, 49.316343 ], [ 1.288377, 49.26701 ], [ 1.26617, 49.204053 ], [ 1.358399, 49.250952 ], [ 1.387447, 49.21936 ], [ 1.338555, 49.197844 ], [ 1.3444, 49.182403 ], [ 1.418295, 49.148335 ], [ 1.414448, 49.104733 ], [ 1.353102, 49.106804 ], [ 1.291253, 49.081596 ], [ 1.247751, 49.082948 ], [ 1.199327, 49.107666 ], [ 1.137414, 49.104511 ], [ 1.088336, 49.141604 ], [ 1.132684, 49.158245 ], [ 1.052875, 49.18423 ], [ 1.036955, 49.202803 ], [ 0.985197, 49.22123 ], [ 0.942895, 49.200559 ], [ 0.847476, 49.184583 ], [ 0.825268, 49.239611 ], [ 0.775426, 49.247534 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "27005", "code_dpt": "27", "nom_dpt": "EURE", "nom_reg": "NORMANDIE", "num_circ": "5", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.246099, 49.347524 ], [ 1.272155, 49.347377 ], [ 1.309632, 49.428733 ], [ 1.344091, 49.446272 ], [ 1.411997, 49.455632 ], [ 1.501866, 49.439544 ], [ 1.576197, 49.440054 ], [ 1.606957, 49.410854 ], [ 1.694284, 49.394865 ], [ 1.713938, 49.409225 ], [ 1.759341, 49.368239 ], [ 1.774004, 49.335692 ], [ 1.77239, 49.293664 ], [ 1.80266, 49.273434 ], [ 1.711646, 49.264522 ], [ 1.704364, 49.232202 ], [ 1.676291, 49.212188 ], [ 1.655991, 49.130389 ], [ 1.608796, 49.077894 ], [ 1.521347, 49.068352 ], [ 1.457762, 49.0263 ], [ 1.399868, 49.04683 ], [ 1.353179, 49.04315 ], [ 1.291253, 49.081596 ], [ 1.353102, 49.106804 ], [ 1.414448, 49.104733 ], [ 1.418295, 49.148335 ], [ 1.3444, 49.182403 ], [ 1.338555, 49.197844 ], [ 1.387447, 49.21936 ], [ 1.358399, 49.250952 ], [ 1.26617, 49.204053 ], [ 1.288377, 49.26701 ], [ 1.236926, 49.316343 ], [ 1.246099, 49.347524 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34006", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "6", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.229697, 43.431234 ], [ 3.262663, 43.397296 ], [ 3.331595, 43.378394 ], [ 3.331173, 43.341403 ], [ 3.372579, 43.309675 ], [ 3.364786, 43.277371 ], [ 3.271341, 43.233398 ], [ 3.240561, 43.212809 ], [ 3.201526, 43.247763 ], [ 3.141627, 43.259507 ], [ 3.152301, 43.302554 ], [ 3.130892, 43.361352 ], [ 3.084827, 43.369 ], [ 3.050859, 43.41609 ], [ 3.09777, 43.424065 ], [ 3.162191, 43.389756 ], [ 3.179794, 43.413596 ], [ 3.229697, 43.431234 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38002", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.699648, 45.160452 ], [ 5.742797, 45.165725 ], [ 5.754684, 45.196794 ], [ 5.805288, 45.206202 ], [ 5.801419, 45.160619 ], [ 5.866023, 45.119397 ], [ 5.880315, 45.094486 ], [ 5.841174, 45.053424 ], [ 5.823103, 45.01344 ], [ 5.794429, 45.018911 ], [ 5.744033, 44.996264 ], [ 5.709589, 44.996847 ], [ 5.697513, 45.023996 ], [ 5.702652, 45.061494 ], [ 5.725778, 45.089994 ], [ 5.70302, 45.103044 ], [ 5.714144, 45.134865 ], [ 5.699648, 45.160452 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "56005", "code_dpt": "56", "nom_dpt": "MORBIHAN", "nom_reg": "BRETAGNE", "num_circ": "5", "code_reg": "53" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.372095, 47.770523 ], [ -3.350126, 47.743501 ], [ -3.391638, 47.701514 ], [ -3.456736, 47.697786 ], [ -3.501593, 47.737859 ], [ -3.403897, 47.773995 ], [ -3.372095, 47.770523 ] ] ], [ [ [ -3.359902, 47.770266 ], [ -3.294363, 47.793515 ], [ -3.302069, 47.766546 ], [ -3.344669, 47.742868 ], [ -3.359902, 47.770266 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57006", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "6", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.01544, 49.191267 ], [ 6.984644, 49.160937 ], [ 6.988563, 49.12505 ], [ 6.971453, 49.083854 ], [ 6.937434, 49.083831 ], [ 6.856417, 49.046012 ], [ 6.812753, 49.079841 ], [ 6.788981, 49.106131 ], [ 6.801636, 49.133978 ], [ 6.773788, 49.167645 ], [ 6.834463, 49.151379 ], [ 6.860935, 49.178625 ], [ 6.837654, 49.21126 ], [ 6.894288, 49.210198 ], [ 6.934805, 49.222131 ], [ 7.01544, 49.191267 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59005", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "5", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.861987, 50.627507 ], [ 2.879738, 50.603133 ], [ 2.936404, 50.599899 ], [ 2.996389, 50.618098 ], [ 3.036657, 50.591635 ], [ 3.086716, 50.588612 ], [ 3.137941, 50.601203 ], [ 3.133063, 50.585888 ], [ 3.07667, 50.564225 ], [ 3.063115, 50.531051 ], [ 3.008344, 50.492766 ], [ 2.96471, 50.512778 ], [ 2.910143, 50.499834 ], [ 2.886965, 50.537657 ], [ 2.824771, 50.525611 ], [ 2.794472, 50.549206 ], [ 2.808435, 50.607719 ], [ 2.861987, 50.627507 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59006", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "6", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.334712, 50.507897 ], [ 3.352481, 50.460443 ], [ 3.320235, 50.444723 ], [ 3.214385, 50.426145 ], [ 3.146627, 50.436747 ], [ 3.081786, 50.443728 ], [ 3.008268, 50.455856 ], [ 3.008344, 50.492766 ], [ 3.063115, 50.531051 ], [ 3.07667, 50.564225 ], [ 3.133063, 50.585888 ], [ 3.137941, 50.601203 ], [ 3.172957, 50.601966 ], [ 3.206244, 50.634637 ], [ 3.245075, 50.651429 ], [ 3.27831, 50.5942 ], [ 3.286531, 50.527576 ], [ 3.334712, 50.507897 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59016", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "16", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.146627, 50.436747 ], [ 3.214385, 50.426145 ], [ 3.320235, 50.444723 ], [ 3.347546, 50.405527 ], [ 3.342263, 50.347349 ], [ 3.299159, 50.344561 ], [ 3.233927, 50.312847 ], [ 3.149184, 50.336655 ], [ 3.094221, 50.342688 ], [ 3.096584, 50.382808 ], [ 3.149413, 50.400046 ], [ 3.146627, 50.436747 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59017", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "17", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.00647, 50.361156 ], [ 2.993935, 50.381768 ], [ 2.990422, 50.394947 ], [ 3.068519, 50.425648 ], [ 3.081786, 50.443728 ], [ 3.146627, 50.436747 ], [ 3.149413, 50.400046 ], [ 3.096584, 50.382808 ], [ 3.094221, 50.342688 ], [ 3.149184, 50.336655 ], [ 3.233927, 50.312847 ], [ 3.2522, 50.279716 ], [ 3.231809, 50.263783 ], [ 3.149091, 50.262483 ], [ 3.046236, 50.276167 ], [ 3.084306, 50.311191 ], [ 3.00647, 50.361156 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59020", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "20", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.433832, 50.378807 ], [ 3.432626, 50.379044 ], [ 3.398637, 50.407564 ], [ 3.361723, 50.398215 ], [ 3.347546, 50.405527 ], [ 3.320235, 50.444723 ], [ 3.352481, 50.460443 ], [ 3.334712, 50.507897 ], [ 3.377262, 50.490989 ], [ 3.43563, 50.509127 ], [ 3.474889, 50.533181 ], [ 3.517193, 50.518022 ], [ 3.521455, 50.494603 ], [ 3.583316, 50.491015 ], [ 3.582636, 50.445552 ], [ 3.608883, 50.435084 ], [ 3.508949, 50.365457 ], [ 3.472533, 50.388711 ], [ 3.433832, 50.378807 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78004", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "4", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.198927, 48.935252 ], [ 2.200591, 48.908679 ], [ 2.169349, 48.895813 ], [ 2.150387, 48.870867 ], [ 2.110636, 48.841088 ], [ 2.077372, 48.873618 ], [ 2.118189, 48.89078 ], [ 2.182881, 48.936538 ], [ 2.198927, 48.935252 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78005", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "5", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.178155, 48.963511 ], [ 2.205858, 48.949741 ], [ 2.198927, 48.935252 ], [ 2.182881, 48.936538 ], [ 2.118189, 48.89078 ], [ 2.104128, 48.907403 ], [ 2.134469, 48.955847 ], [ 2.178155, 48.963511 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "83003", "code_dpt": "83", "nom_dpt": "VAR", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "3", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.97906, 43.10654 ], [ 5.984096, 43.12343 ], [ 6.025595, 43.154713 ], [ 6.084161, 43.16588 ], [ 6.093894, 43.198125 ], [ 6.113911, 43.227517 ], [ 6.163157, 43.202642 ], [ 6.240826, 43.215245 ], [ 6.292064, 43.180843 ], [ 6.271819, 43.120991 ], [ 6.201047, 43.115429 ], [ 6.125365, 43.077596 ], [ 6.08151, 43.087357 ], [ 6.051102, 43.079177 ], [ 5.97906, 43.10654 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91001", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "1", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.362191, 48.601486 ], [ 2.359384, 48.618077 ], [ 2.383529, 48.629979 ], [ 2.437761, 48.648471 ], [ 2.485776, 48.615316 ], [ 2.481253, 48.580206 ], [ 2.422234, 48.573223 ], [ 2.39857, 48.607127 ], [ 2.362191, 48.601486 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91006", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "6", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.209711, 48.701588 ], [ 2.212902, 48.728801 ], [ 2.274517, 48.740722 ], [ 2.320718, 48.748756 ], [ 2.353948, 48.73866 ], [ 2.351678, 48.702472 ], [ 2.32817, 48.687545 ], [ 2.293929, 48.712128 ], [ 2.209711, 48.701588 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92007", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "7", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.159868, 48.847721 ], [ 2.150387, 48.870867 ], [ 2.169349, 48.895813 ], [ 2.225677, 48.859407 ], [ 2.224225, 48.853516 ], [ 2.224048, 48.83515 ], [ 2.180795, 48.830625 ], [ 2.159868, 48.847721 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92012", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "12", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.303309, 48.785398 ], [ 2.228842, 48.774471 ], [ 2.226559, 48.776102 ], [ 2.226628, 48.781589 ], [ 2.253282, 48.809685 ], [ 2.278179, 48.814254 ], [ 2.303309, 48.785398 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93003", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "3", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.499718, 48.855678 ], [ 2.496392, 48.859908 ], [ 2.50913, 48.877921 ], [ 2.567967, 48.865944 ], [ 2.595795, 48.814266 ], [ 2.59228, 48.807437 ], [ 2.536654, 48.838514 ], [ 2.499718, 48.855678 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06001", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "1", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.247779, 43.690688 ], [ 7.246931, 43.713236 ], [ 7.320853, 43.72345 ], [ 7.308745, 43.692371 ], [ 7.247779, 43.690688 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31002", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.663573, 43.694058 ], [ 1.609377, 43.685135 ], [ 1.570346, 43.708658 ], [ 1.554832, 43.660683 ], [ 1.480876, 43.626071 ], [ 1.485688, 43.605691 ], [ 1.457131, 43.604972 ], [ 1.43707, 43.61619 ], [ 1.442838, 43.651298 ], [ 1.476073, 43.676735 ], [ 1.437841, 43.707782 ], [ 1.455067, 43.728728 ], [ 1.501943, 43.737321 ], [ 1.496919, 43.782082 ], [ 1.522209, 43.806729 ], [ 1.549328, 43.801279 ], [ 1.588589, 43.817176 ], [ 1.644788, 43.800257 ], [ 1.651526, 43.775861 ], [ 1.650087, 43.751597 ], [ 1.706446, 43.71622 ], [ 1.663573, 43.694058 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31003", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "3", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.663573, 43.694058 ], [ 1.720704, 43.688346 ], [ 1.728841, 43.657565 ], [ 1.687771, 43.630709 ], [ 1.662068, 43.606054 ], [ 1.631808, 43.603184 ], [ 1.610576, 43.574811 ], [ 1.560262, 43.567415 ], [ 1.53662, 43.578717 ], [ 1.494451, 43.553528 ], [ 1.461029, 43.587709 ], [ 1.428759, 43.584983 ], [ 1.485688, 43.605691 ], [ 1.480876, 43.626071 ], [ 1.554832, 43.660683 ], [ 1.570346, 43.708658 ], [ 1.609377, 43.685135 ], [ 1.663573, 43.694058 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33002", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.610649, 44.822474 ], [ -0.610794, 44.835177 ], [ -0.54141, 44.869139 ], [ -0.546659, 44.836292 ], [ -0.603047, 44.818477 ], [ -0.610649, 44.822474 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59008", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "8", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.161758, 50.69986 ], [ 3.188169, 50.740221 ], [ 3.253688, 50.691138 ], [ 3.211536354186276, 50.670657823599868 ], [ 3.161758, 50.69986 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59009", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "9", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.188169, 50.740221 ], [ 3.161758, 50.69986 ], [ 3.113821, 50.685898 ], [ 3.118703, 50.653669 ], [ 3.070672, 50.632308 ], [ 3.062516, 50.6379 ], [ 3.065825, 50.719403 ], [ 3.084895, 50.728849 ], [ 3.156621, 50.717845 ], [ 3.188169, 50.740221 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67003", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "3", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.688052, 48.598132 ], [ 7.708654, 48.603941 ], [ 7.730665, 48.652161 ], [ 7.764931, 48.655065 ], [ 7.835923, 48.633674 ], [ 7.798658, 48.590134 ], [ 7.788180742570278, 48.590923727211667 ], [ 7.688052, 48.598132 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69006", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "6", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.899012, 45.752455 ], [ 4.860398, 45.786462 ], [ 4.878663, 45.796176 ], [ 4.906185, 45.783599 ], [ 4.899012, 45.752455 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95005", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "5", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.205858, 48.949741 ], [ 2.225736, 48.971031 ], [ 2.288461, 48.958982 ], [ 2.290974, 48.950967 ], [ 2.247595, 48.936736 ], [ 2.220399, 48.920618 ], [ 2.200591, 48.908679 ], [ 2.198927, 48.935252 ], [ 2.205858, 48.949741 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZM001", "code_dpt": "ZM", "nom_dpt": "MAYOTTE", "nom_reg": "MAYOTTE", "num_circ": "1", "code_reg": "06" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.236929, -12.754059 ], [ 45.198503, -12.765331 ], [ 45.125982, -12.753909 ], [ 45.095121, -12.732427 ], [ 45.042865, -12.747434 ], [ 45.051617, -12.700807 ], [ 45.095771, -12.672743 ], [ 45.127522, -12.70183 ], [ 45.12583, -12.726202 ], [ 45.1585, -12.734757 ], [ 45.202722, -12.730078 ], [ 45.236929, -12.754059 ] ] ], [ [ [ 45.257825, -12.783935 ], [ 45.284354, -12.761418 ], [ 45.297523, -12.780791 ], [ 45.285691, -12.803972 ], [ 45.257825, -12.783935 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZM002", "code_dpt": "ZM", "nom_dpt": "MAYOTTE", "nom_reg": "MAYOTTE", "num_circ": "2", "code_reg": "06" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.042865, -12.747434 ], [ 45.095121, -12.732427 ], [ 45.125982, -12.753909 ], [ 45.198503, -12.765331 ], [ 45.236929, -12.754059 ], [ 45.231062, -12.776264 ], [ 45.193685, -12.827051 ], [ 45.215982, -12.886635 ], [ 45.198375, -12.896171 ], [ 45.168665, -12.949055 ], [ 45.148633, -12.99911 ], [ 45.124067, -12.98205 ], [ 45.071909, -12.899528 ], [ 45.099572, -12.90036 ], [ 45.105545, -12.922702 ], [ 45.136638, -12.936749 ], [ 45.154902, -12.922876 ], [ 45.102619, -12.845451 ], [ 45.095988, -12.785201 ], [ 45.042865, -12.747434 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13001", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "1", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.407778, 43.285395 ], [ 5.406355, 43.289327 ], [ 5.405948, 43.290514 ], [ 5.410529, 43.314983 ], [ 5.466645, 43.323005 ], [ 5.522811, 43.320764 ], [ 5.530285, 43.298673 ], [ 5.51305, 43.263444 ], [ 5.407778, 43.285395 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "30001", "code_dpt": "30", "nom_dpt": "GARD", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.535745, 43.855396 ], [ 4.621658, 43.837357 ], [ 4.64191, 43.867478 ], [ 4.651798, 43.784358 ], [ 4.612276, 43.724755 ], [ 4.626949, 43.691677 ], [ 4.59822, 43.686693 ], [ 4.537797, 43.70704 ], [ 4.486421, 43.698853 ], [ 4.453378, 43.714626 ], [ 4.417431, 43.774194 ], [ 4.394323, 43.741885 ], [ 4.309895, 43.766657 ], [ 4.275819, 43.798444 ], [ 4.284132, 43.816715 ], [ 4.276547, 43.852211 ], [ 4.239095, 43.857179 ], [ 4.248743, 43.894024 ], [ 4.283892, 43.905092 ], [ 4.359397, 43.833504 ], [ 4.328344, 43.813506 ], [ 4.355016, 43.783897 ], [ 4.397778, 43.813101 ], [ 4.373664, 43.84109 ], [ 4.418455, 43.858595 ], [ 4.454959, 43.830095 ], [ 4.471036, 43.776984 ], [ 4.527153, 43.78758 ], [ 4.522825, 43.827072 ], [ 4.535745, 43.855396 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "30006", "code_dpt": "30", "nom_dpt": "GARD", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "6", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.535745, 43.855396 ], [ 4.522825, 43.827072 ], [ 4.527153, 43.78758 ], [ 4.471036, 43.776984 ], [ 4.454959, 43.830095 ], [ 4.418455, 43.858595 ], [ 4.373664, 43.84109 ], [ 4.397778, 43.813101 ], [ 4.355016, 43.783897 ], [ 4.328344, 43.813506 ], [ 4.359397, 43.833504 ], [ 4.283892, 43.905092 ], [ 4.331824, 43.896193 ], [ 4.387289, 43.903396 ], [ 4.3804, 43.952637 ], [ 4.34109, 43.992866 ], [ 4.339085, 44.020056 ], [ 4.305874, 44.031259 ], [ 4.274848, 44.103277 ], [ 4.314848, 44.092452 ], [ 4.347008, 44.066551 ], [ 4.410057, 44.076766 ], [ 4.518803, 44.077166 ], [ 4.559256, 44.060097 ], [ 4.51478, 43.996386 ], [ 4.456704, 43.976103 ], [ 4.443869, 43.929521 ], [ 4.522513, 43.922711 ], [ 4.548482, 43.889338 ], [ 4.535745, 43.855396 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31004", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "4", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.367925, 43.549891 ], [ 1.359316, 43.5602 ], [ 1.374079, 43.587312 ], [ 1.351882, 43.604464 ], [ 1.383334, 43.596875 ], [ 1.436157, 43.604707 ], [ 1.457131, 43.604972 ], [ 1.485688, 43.605691 ], [ 1.428759, 43.584983 ], [ 1.38557, 43.538384 ], [ 1.367925, 43.549891 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59002", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "2", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.118703, 50.653669 ], [ 3.179389, 50.653748 ], [ 3.185796, 50.638061 ], [ 3.196917, 50.634741 ], [ 3.206244, 50.634637 ], [ 3.172957, 50.601966 ], [ 3.137941, 50.601203 ], [ 3.086716, 50.588612 ], [ 3.070672, 50.632308 ], [ 3.118703, 50.653669 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67002", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.730281, 48.551159 ], [ 7.730607, 48.558067 ], [ 7.735109, 48.570551 ], [ 7.788180742570278, 48.590923727211667 ], [ 7.798658, 48.590134 ], [ 7.805162, 48.513501 ], [ 7.771475, 48.492437 ], [ 7.70613, 48.507023 ], [ 7.695986, 48.533361 ], [ 7.730281, 48.551159 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69002", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.794592, 45.776034 ], [ 4.802672, 45.791704 ], [ 4.843051, 45.778613 ], [ 4.839949, 45.763558 ], [ 4.830314, 45.746556 ], [ 4.794592, 45.776034 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69004", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "4", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.843051, 45.778613 ], [ 4.860398, 45.786462 ], [ 4.899012, 45.752455 ], [ 4.88699, 45.72595 ], [ 4.839949, 45.763558 ], [ 4.843051, 45.778613 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92009", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "9", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.224048, 48.83515 ], [ 2.224225, 48.853516 ], [ 2.242034, 48.847794 ], [ 2.250631, 48.845529 ], [ 2.262798, 48.833929 ], [ 2.225814, 48.828272 ], [ 2.224048, 48.83515 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZD001", "code_dpt": "ZD", "nom_dpt": "LA REUNION", "nom_reg": "LA REUNION", "num_circ": "1", "code_reg": "04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.375865, -20.896092 ], [ 55.396718, -20.88123 ], [ 55.450516, -20.871726 ], [ 55.487512, -20.885879 ], [ 55.48986, -20.910131 ], [ 55.468891, -21.00993 ], [ 55.461142, -21.015117 ], [ 55.4387, -20.991733 ], [ 55.404165, -20.980384 ], [ 55.406061, -20.955687 ], [ 55.375865, -20.896092 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "28002", "code_dpt": "28", "nom_dpt": "EURE-ET-LOIR", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "2", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.501524, 48.941054 ], [ 1.538249, 48.921693 ], [ 1.582962, 48.857498 ], [ 1.590483, 48.817335 ], [ 1.582928, 48.767556 ], [ 1.507855, 48.725576 ], [ 1.526711, 48.704482 ], [ 1.434259, 48.690016 ], [ 1.379818, 48.651648 ], [ 1.410277, 48.635918 ], [ 1.420657, 48.606816 ], [ 1.472442, 48.604442 ], [ 1.474202, 48.564968 ], [ 1.368553, 48.573121 ], [ 1.355029, 48.544844 ], [ 1.327948, 48.546302 ], [ 1.29683, 48.519731 ], [ 1.210098, 48.520706 ], [ 1.196245, 48.502086 ], [ 1.128699, 48.504929 ], [ 1.06509, 48.523797 ], [ 1.04123, 48.517008 ], [ 0.967363, 48.554218 ], [ 0.925711, 48.559654 ], [ 0.867284, 48.573946 ], [ 0.822398, 48.608875 ], [ 0.814819, 48.670168 ], [ 0.862587, 48.688076 ], [ 0.876703, 48.715591 ], [ 0.921203, 48.709177 ], [ 0.963956, 48.726344 ], [ 1.015925, 48.729054 ], [ 1.063027, 48.758969 ], [ 1.113736, 48.746304 ], [ 1.118687, 48.782962 ], [ 1.162975, 48.769311 ], [ 1.296935, 48.768012 ], [ 1.327389, 48.760436 ], [ 1.376809, 48.791938 ], [ 1.359781, 48.831196 ], [ 1.404822, 48.860715 ], [ 1.457628, 48.871518 ], [ 1.470636, 48.898003 ], [ 1.447959, 48.924641 ], [ 1.501524, 48.941054 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "28003", "code_dpt": "28", "nom_dpt": "EURE-ET-LOIR", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "3", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.029601, 48.132835 ], [ 0.888905, 48.10227 ], [ 0.841217, 48.103062 ], [ 0.850372, 48.13308 ], [ 0.914338, 48.135848 ], [ 0.884466, 48.161844 ], [ 0.840574, 48.165531 ], [ 0.797655, 48.194461 ], [ 0.829446, 48.211369 ], [ 0.787321, 48.261445 ], [ 0.797486, 48.291445 ], [ 0.75684, 48.300466 ], [ 0.785432, 48.340436 ], [ 0.827867, 48.342311 ], [ 0.907347, 48.370104 ], [ 0.948381, 48.401645 ], [ 0.953055, 48.480156 ], [ 0.96774, 48.523881 ], [ 0.924195, 48.53804 ], [ 0.925711, 48.559654 ], [ 0.967363, 48.554218 ], [ 1.04123, 48.517008 ], [ 1.06509, 48.523797 ], [ 1.128699, 48.504929 ], [ 1.196245, 48.502086 ], [ 1.210098, 48.520706 ], [ 1.29683, 48.519731 ], [ 1.327948, 48.546302 ], [ 1.355029, 48.544844 ], [ 1.395649, 48.506458 ], [ 1.495042, 48.47372 ], [ 1.478044, 48.435947 ], [ 1.385303, 48.405755 ], [ 1.419829, 48.380251 ], [ 1.399256, 48.364731 ], [ 1.459691, 48.32214 ], [ 1.460358, 48.296115 ], [ 1.418157, 48.296179 ], [ 1.386577, 48.275279 ], [ 1.240693, 48.273649 ], [ 1.182729, 48.283636 ], [ 1.175868, 48.266034 ], [ 1.118307, 48.236251 ], [ 1.046558, 48.240829 ], [ 1.055815, 48.201352 ], [ 1.027344, 48.188612 ], [ 1.068631, 48.142157 ], [ 1.029601, 48.132835 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "28004", "code_dpt": "28", "nom_dpt": "EURE-ET-LOIR", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "4", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.922149, 48.4576 ], [ 1.939016, 48.42216 ], [ 1.977244, 48.399165 ], [ 1.987356, 48.363811 ], [ 1.959227, 48.30869 ], [ 1.994085, 48.286586 ], [ 1.965903, 48.254444 ], [ 1.971246, 48.178129 ], [ 1.920403, 48.146385 ], [ 1.889714, 48.105586 ], [ 1.828698, 48.080076 ], [ 1.748593, 48.066148 ], [ 1.621686, 48.063877 ], [ 1.591873, 48.030754 ], [ 1.545307, 48.044589 ], [ 1.514657, 48.028572 ], [ 1.520124, 47.982278 ], [ 1.441396, 48.01163 ], [ 1.437241, 47.976499 ], [ 1.370016, 47.953749 ], [ 1.308631, 47.953764 ], [ 1.248007, 47.978575 ], [ 1.205215, 47.96864 ], [ 1.163611, 48.028542 ], [ 1.124886, 48.035286 ], [ 1.112233, 48.080729 ], [ 1.009409, 48.084159 ], [ 1.04449, 48.118564 ], [ 1.029601, 48.132835 ], [ 1.068631, 48.142157 ], [ 1.027344, 48.188612 ], [ 1.055815, 48.201352 ], [ 1.046558, 48.240829 ], [ 1.118307, 48.236251 ], [ 1.175868, 48.266034 ], [ 1.182729, 48.283636 ], [ 1.240693, 48.273649 ], [ 1.386577, 48.275279 ], [ 1.418157, 48.296179 ], [ 1.460358, 48.296115 ], [ 1.490152, 48.318609 ], [ 1.556958, 48.327703 ], [ 1.547956, 48.347318 ], [ 1.670091, 48.344262 ], [ 1.688169, 48.370126 ], [ 1.620269, 48.394766 ], [ 1.645147, 48.423972 ], [ 1.605568, 48.448275 ], [ 1.634991, 48.509961 ], [ 1.700741, 48.496987 ], [ 1.756174, 48.505075 ], [ 1.78664, 48.491471 ], [ 1.802131, 48.468092 ], [ 1.847221, 48.446675 ], [ 1.904507, 48.440263 ], [ 1.922149, 48.4576 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "29001", "code_dpt": "29", "nom_dpt": "FINISTERE", "nom_reg": "BRETAGNE", "num_circ": "1", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.915542, 48.054957 ], [ -3.951551, 48.042723 ], [ -3.967156, 47.983221 ], [ -3.987603, 47.967992 ], [ -3.954575, 47.937901 ], [ -3.946011, 47.904512 ], [ -3.989938, 47.882744 ], [ -3.974576, 47.854712 ], [ -4.040646, 47.847086 ], [ -4.101153, 47.862062 ], [ -4.141459, 47.899786 ], [ -4.176131, 47.907137 ], [ -4.233931, 47.993728 ], [ -4.181582, 48.003704 ], [ -4.129164, 48.043025 ], [ -4.097582, 48.079823 ], [ -4.101996, 48.105605 ], [ -4.059981, 48.13719 ], [ -3.950587, 48.152393 ], [ -3.897732, 48.118721 ], [ -3.895661, 48.082557 ], [ -3.915542, 48.054957 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "29003", "code_dpt": "29", "nom_dpt": "FINISTERE", "nom_reg": "BRETAGNE", "num_circ": "3", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.507057, 48.55288 ], [ -4.481007, 48.550894 ], [ -4.422031, 48.584028 ], [ -4.375429, 48.577736 ], [ -4.370887, 48.54149 ], [ -4.347787, 48.501048 ], [ -4.344602, 48.463054 ], [ -4.43098, 48.458729 ], [ -4.478347, 48.467611 ], [ -4.544824, 48.43516 ], [ -4.599093, 48.428297 ], [ -4.568412, 48.392837 ], [ -4.495173, 48.378638 ], [ -4.626704, 48.337532 ], [ -4.678908, 48.355454 ], [ -4.712448, 48.331265 ], [ -4.764509, 48.328232 ], [ -4.761531, 48.371172 ], [ -4.793463, 48.415936 ], [ -4.772027, 48.478331 ], [ -4.771698, 48.514114 ], [ -4.748683, 48.543435 ], [ -4.701639, 48.570877 ], [ -4.600176, 48.571963 ], [ -4.579685, 48.555282 ], [ -4.53071, 48.548787 ], [ -4.507057, 48.55288 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "29004", "code_dpt": "29", "nom_dpt": "FINISTERE", "nom_reg": "BRETAGNE", "num_circ": "4", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.659144, 48.65921 ], [ -3.654181, 48.617296 ], [ -3.629298, 48.588365 ], [ -3.594583, 48.585749 ], [ -3.553824, 48.541284 ], [ -3.604168, 48.49405 ], [ -3.599593, 48.470797 ], [ -3.640858, 48.475019 ], [ -3.690241, 48.452802 ], [ -3.753703, 48.446851 ], [ -3.919502, 48.401829 ], [ -3.961348, 48.360573 ], [ -4.048181, 48.357811 ], [ -4.089755, 48.379912 ], [ -4.134776, 48.370247 ], [ -4.212354, 48.423764 ], [ -4.199334, 48.437575 ], [ -4.222292, 48.486035 ], [ -4.183884, 48.479364 ], [ -4.098834, 48.498609 ], [ -4.028377, 48.45495 ], [ -3.969785, 48.470741 ], [ -3.978703, 48.498935 ], [ -4.029155, 48.506484 ], [ -4.02361, 48.533627 ], [ -4.058774, 48.541465 ], [ -4.048398, 48.575083 ], [ -4.095862, 48.5667 ], [ -4.118903, 48.578705 ], [ -4.169087, 48.567166 ], [ -4.147281, 48.621673 ], [ -4.162413, 48.689765 ], [ -4.096948, 48.694258 ], [ -4.065746, 48.684963 ], [ -4.035343, 48.711526 ], [ -3.973629, 48.703889 ], [ -3.950709, 48.651387 ], [ -3.897537, 48.646674 ], [ -3.862863, 48.671984 ], [ -3.823784, 48.719843 ], [ -3.79235, 48.702791 ], [ -3.721872, 48.705592 ], [ -3.654837, 48.68153 ], [ -3.659144, 48.65921 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "29005", "code_dpt": "29", "nom_dpt": "FINISTERE", "nom_reg": "BRETAGNE", "num_circ": "5", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.302169, 48.35564 ], [ -4.282767, 48.383274 ], [ -4.31387, 48.41567 ], [ -4.406379, 48.390449 ], [ -4.433647, 48.396355 ], [ -4.457421, 48.413049 ], [ -4.43098, 48.458729 ], [ -4.344602, 48.463054 ], [ -4.347787, 48.501048 ], [ -4.370887, 48.54149 ], [ -4.375429, 48.577736 ], [ -4.422031, 48.584028 ], [ -4.481007, 48.550894 ], [ -4.507057, 48.55288 ], [ -4.584996, 48.562795 ], [ -4.605778, 48.604545 ], [ -4.564485, 48.624534 ], [ -4.462756, 48.627058 ], [ -4.429006, 48.647623 ], [ -4.349139, 48.676475 ], [ -4.219577, 48.648914 ], [ -4.187236, 48.684781 ], [ -4.162413, 48.689765 ], [ -4.147281, 48.621673 ], [ -4.169087, 48.567166 ], [ -4.118903, 48.578705 ], [ -4.095862, 48.5667 ], [ -4.048398, 48.575083 ], [ -4.058774, 48.541465 ], [ -4.02361, 48.533627 ], [ -4.029155, 48.506484 ], [ -3.978703, 48.498935 ], [ -3.969785, 48.470741 ], [ -4.028377, 48.45495 ], [ -4.098834, 48.498609 ], [ -4.183884, 48.479364 ], [ -4.222292, 48.486035 ], [ -4.199334, 48.437575 ], [ -4.212354, 48.423764 ], [ -4.268652, 48.357661 ], [ -4.302169, 48.35564 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "29006", "code_dpt": "29", "nom_dpt": "FINISTERE", "nom_reg": "BRETAGNE", "num_circ": "6", "code_reg": "53" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.564839, 48.185747 ], [ -3.671562, 48.151477 ], [ -3.696017, 48.152021 ], [ -3.732973, 48.096268 ], [ -3.809805, 48.066562 ], [ -3.849957, 48.038376 ], [ -3.915542, 48.054957 ], [ -3.895661, 48.082557 ], [ -3.897732, 48.118721 ], [ -3.950587, 48.152393 ], [ -4.059981, 48.13719 ], [ -4.101996, 48.105605 ], [ -4.179895, 48.098813 ], [ -4.25567, 48.071469 ], [ -4.296938, 48.092193 ], [ -4.275193, 48.155569 ], [ -4.304245, 48.195329 ], [ -4.461026, 48.236781 ], [ -4.492286, 48.234554 ], [ -4.522667, 48.190244 ], [ -4.551175, 48.198995 ], [ -4.563016, 48.230587 ], [ -4.612361, 48.261172 ], [ -4.55307, 48.294632 ], [ -4.502599, 48.280861 ], [ -4.459929, 48.292858 ], [ -4.410335, 48.276635 ], [ -4.367193, 48.27772 ], [ -4.258611, 48.30938 ], [ -4.30989, 48.31676 ], [ -4.317575, 48.334094 ], [ -4.268652, 48.357661 ], [ -4.212354, 48.423764 ], [ -4.134776, 48.370247 ], [ -4.089755, 48.379912 ], [ -4.048181, 48.357811 ], [ -3.961348, 48.360573 ], [ -3.919502, 48.401829 ], [ -3.753703, 48.446851 ], [ -3.690241, 48.452802 ], [ -3.640858, 48.475019 ], [ -3.599593, 48.470797 ], [ -3.550496, 48.447831 ], [ -3.598768, 48.422644 ], [ -3.607682, 48.388327 ], [ -3.555155, 48.376914 ], [ -3.562814, 48.347021 ], [ -3.553028, 48.293016 ], [ -3.522957, 48.281717 ], [ -3.553805, 48.24086 ], [ -3.541258, 48.209188 ], [ -3.564839, 48.185747 ] ] ], [ [ [ -4.31387, 48.41567 ], [ -4.282767, 48.383274 ], [ -4.302169, 48.35564 ], [ -4.373376, 48.325942 ], [ -4.45395, 48.326503 ], [ -4.43506, 48.361917 ], [ -4.403958, 48.382043 ], [ -4.31387, 48.41567 ] ] ], [ [ [ -5.115104, 48.437675 ], [ -5.104911, 48.471574 ], [ -5.065053, 48.481124 ], [ -5.059784, 48.450194 ], [ -5.115104, 48.437675 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "29007", "code_dpt": "29", "nom_dpt": "FINISTERE", "nom_reg": "BRETAGNE", "num_circ": "7", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.296938, 48.092193 ], [ -4.25567, 48.071469 ], [ -4.179895, 48.098813 ], [ -4.101996, 48.105605 ], [ -4.097582, 48.079823 ], [ -4.129164, 48.043025 ], [ -4.181582, 48.003704 ], [ -4.233931, 47.993728 ], [ -4.176131, 47.907137 ], [ -4.114225, 47.872519 ], [ -4.162434, 47.849597 ], [ -4.165451, 47.814014 ], [ -4.192018, 47.795618 ], [ -4.266065, 47.790377 ], [ -4.300649, 47.800659 ], [ -4.371396, 47.798079 ], [ -4.379963, 47.81983 ], [ -4.347687, 47.849008 ], [ -4.373812, 47.905223 ], [ -4.420745, 47.960571 ], [ -4.499637, 48.001545 ], [ -4.549338, 48.01208 ], [ -4.697094, 48.026765 ], [ -4.713183, 48.065113 ], [ -4.621508, 48.068422 ], [ -4.534789, 48.088318 ], [ -4.36285, 48.110459 ], [ -4.296938, 48.092193 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "29008", "code_dpt": "29", "nom_dpt": "FINISTERE", "nom_reg": "BRETAGNE", "num_circ": "8", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.523004, 47.849147 ], [ -3.542913, 47.822171 ], [ -3.522241, 47.80269 ], [ -3.537563, 47.763298 ], [ -3.676997, 47.775745 ], [ -3.732807, 47.80162 ], [ -3.760563, 47.789539 ], [ -3.836096, 47.796475 ], [ -3.898305, 47.834515 ], [ -3.946011, 47.904512 ], [ -3.954575, 47.937901 ], [ -3.987603, 47.967992 ], [ -3.967156, 47.983221 ], [ -3.951551, 48.042723 ], [ -3.915542, 48.054957 ], [ -3.849957, 48.038376 ], [ -3.809805, 48.066562 ], [ -3.732973, 48.096268 ], [ -3.674599, 48.05492 ], [ -3.641041, 47.985793 ], [ -3.554116, 47.991881 ], [ -3.497449, 47.976728 ], [ -3.479924, 47.950798 ], [ -3.41773, 47.972168 ], [ -3.388025, 47.927037 ], [ -3.411356, 47.904806 ], [ -3.403891, 47.868383 ], [ -3.449854, 47.861328 ], [ -3.485876, 47.825293 ], [ -3.523004, 47.849147 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "30002", "code_dpt": "30", "nom_dpt": "GARD", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.153883, 43.715009 ], [ 4.083862, 43.767709 ], [ 4.001341, 43.813055 ], [ 4.05006, 43.857758 ], [ 4.154135, 43.836492 ], [ 4.157643, 43.820021 ], [ 4.20843, 43.807581 ], [ 4.284132, 43.816715 ], [ 4.275819, 43.798444 ], [ 4.309895, 43.766657 ], [ 4.394323, 43.741885 ], [ 4.417431, 43.774194 ], [ 4.453378, 43.714626 ], [ 4.486421, 43.698853 ], [ 4.426921, 43.625836 ], [ 4.425405, 43.584774 ], [ 4.37217, 43.549456 ], [ 4.293264, 43.514359 ], [ 4.244233, 43.501462 ], [ 4.230283, 43.460185 ], [ 4.16383, 43.472472 ], [ 4.118067, 43.506111 ], [ 4.136921, 43.53183 ], [ 4.101042, 43.554371 ], [ 4.099889, 43.585274 ], [ 4.150216, 43.585562 ], [ 4.193818, 43.651746 ], [ 4.153883, 43.715009 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "30003", "code_dpt": "30", "nom_dpt": "GARD", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "3", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.535745, 43.855396 ], [ 4.548482, 43.889338 ], [ 4.522513, 43.922711 ], [ 4.443869, 43.929521 ], [ 4.456704, 43.976103 ], [ 4.51478, 43.996386 ], [ 4.559256, 44.060097 ], [ 4.518803, 44.077166 ], [ 4.526575, 44.103407 ], [ 4.48436, 44.118661 ], [ 4.524301, 44.164024 ], [ 4.499035, 44.183313 ], [ 4.509521, 44.207899 ], [ 4.547764, 44.219637 ], [ 4.603148, 44.207751 ], [ 4.673657, 44.214711 ], [ 4.699936, 44.216108 ], [ 4.718133, 44.140678 ], [ 4.705082, 44.108175 ], [ 4.723213, 44.079353 ], [ 4.757721, 44.087933 ], [ 4.795865, 44.04791 ], [ 4.845344, 43.995593 ], [ 4.814369, 43.964676 ], [ 4.739061, 43.924068 ], [ 4.709325, 43.898019 ], [ 4.64191, 43.867478 ], [ 4.621658, 43.837357 ], [ 4.535745, 43.855396 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "30004", "code_dpt": "30", "nom_dpt": "GARD", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "4", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.142868, 44.313351 ], [ 4.186579, 44.299735 ], [ 4.245138, 44.268075 ], [ 4.273773, 44.271752 ], [ 4.288375, 44.315019 ], [ 4.325771, 44.338324 ], [ 4.402347, 44.335007 ], [ 4.40357, 44.288177 ], [ 4.448757, 44.29671 ], [ 4.464761, 44.341675 ], [ 4.506097, 44.340252 ], [ 4.557168, 44.304168 ], [ 4.632679, 44.284994 ], [ 4.649224, 44.27036 ], [ 4.67736, 44.234975 ], [ 4.673657, 44.214711 ], [ 4.603148, 44.207751 ], [ 4.547764, 44.219637 ], [ 4.509521, 44.207899 ], [ 4.499035, 44.183313 ], [ 4.524301, 44.164024 ], [ 4.48436, 44.118661 ], [ 4.526575, 44.103407 ], [ 4.518803, 44.077166 ], [ 4.410057, 44.076766 ], [ 4.347008, 44.066551 ], [ 4.314848, 44.092452 ], [ 4.274848, 44.103277 ], [ 4.305874, 44.031259 ], [ 4.339085, 44.020056 ], [ 4.34109, 43.992866 ], [ 4.3804, 43.952637 ], [ 4.387289, 43.903396 ], [ 4.331824, 43.896193 ], [ 4.283892, 43.905092 ], [ 4.248743, 43.894024 ], [ 4.222162, 43.925575 ], [ 4.176504, 43.931404 ], [ 4.187671, 43.964091 ], [ 4.212357, 43.972281 ], [ 4.164189, 44.023056 ], [ 4.116073, 44.037581 ], [ 4.091509, 44.121182 ], [ 4.071713, 44.124429 ], [ 4.049738, 44.171293 ], [ 4.085606, 44.187624 ], [ 4.066113, 44.254852 ], [ 4.079099, 44.273809 ], [ 4.124752, 44.255942 ], [ 4.142868, 44.313351 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "30005", "code_dpt": "30", "nom_dpt": "GARD", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "5", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.248743, 43.894024 ], [ 4.239095, 43.857179 ], [ 4.276547, 43.852211 ], [ 4.284132, 43.816715 ], [ 4.20843, 43.807581 ], [ 4.157643, 43.820021 ], [ 4.154135, 43.836492 ], [ 4.05006, 43.857758 ], [ 4.001341, 43.813055 ], [ 3.974348, 43.801474 ], [ 3.958993, 43.853511 ], [ 3.923111, 43.858788 ], [ 3.919554, 43.881975 ], [ 3.830809, 43.866424 ], [ 3.799542, 43.890822 ], [ 3.828287, 43.92406 ], [ 3.795518, 43.942277 ], [ 3.787337, 43.96687 ], [ 3.731136, 43.970681 ], [ 3.684487, 43.95166 ], [ 3.671591, 43.910178 ], [ 3.623589, 43.916979 ], [ 3.582958, 43.877434 ], [ 3.578908, 43.843563 ], [ 3.521645, 43.864947 ], [ 3.511683, 43.895637 ], [ 3.435182, 43.862959 ], [ 3.423923, 43.911312 ], [ 3.358359, 43.913833 ], [ 3.351584, 43.937614 ], [ 3.377509, 43.966903 ], [ 3.405615, 43.969682 ], [ 3.450981, 44.022541 ], [ 3.386654, 44.054963 ], [ 3.295949, 44.069449 ], [ 3.2633, 44.092555 ], [ 3.323849, 44.108918 ], [ 3.336682, 44.15813 ], [ 3.373648, 44.170765 ], [ 3.428468, 44.148665 ], [ 3.438628, 44.130372 ], [ 3.632838, 44.121223 ], [ 3.647169, 44.14429 ], [ 3.637706, 44.175434 ], [ 3.671053, 44.184201 ], [ 3.759624, 44.151192 ], [ 3.796995, 44.127389 ], [ 3.832118, 44.137335 ], [ 3.872731, 44.128667 ], [ 3.927275, 44.161298 ], [ 3.950924, 44.216869 ], [ 3.946433, 44.241041 ], [ 3.974701, 44.259617 ], [ 3.922859, 44.305227 ], [ 3.943704, 44.317887 ], [ 3.911307, 44.370327 ], [ 3.998163, 44.459798 ], [ 4.045419, 44.433495 ], [ 4.042393, 44.394074 ], [ 4.073842, 44.329026 ], [ 4.126752, 44.337734 ], [ 4.142868, 44.313351 ], [ 4.124752, 44.255942 ], [ 4.079099, 44.273809 ], [ 4.066113, 44.254852 ], [ 4.085606, 44.187624 ], [ 4.049738, 44.171293 ], [ 4.071713, 44.124429 ], [ 4.091509, 44.121182 ], [ 4.116073, 44.037581 ], [ 4.164189, 44.023056 ], [ 4.212357, 43.972281 ], [ 4.187671, 43.964091 ], [ 4.176504, 43.931404 ], [ 4.222162, 43.925575 ], [ 4.248743, 43.894024 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31005", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "5", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.469869, 43.897482 ], [ 1.496655, 43.888583 ], [ 1.555617, 43.918317 ], [ 1.555086, 43.86849 ], [ 1.59317, 43.843138 ], [ 1.588589, 43.817176 ], [ 1.549328, 43.801279 ], [ 1.522209, 43.806729 ], [ 1.496919, 43.782082 ], [ 1.501943, 43.737321 ], [ 1.455067, 43.728728 ], [ 1.437841, 43.707782 ], [ 1.476073, 43.676735 ], [ 1.442838, 43.651298 ], [ 1.383063, 43.678875 ], [ 1.345771, 43.662231 ], [ 1.299539, 43.681966 ], [ 1.236545, 43.650308 ], [ 1.217933, 43.67886 ], [ 1.183798, 43.666163 ], [ 1.148664, 43.69214 ], [ 1.11283, 43.699616 ], [ 1.139083, 43.75492 ], [ 1.115749, 43.764744 ], [ 1.115083, 43.797776 ], [ 1.157369, 43.818329 ], [ 1.212776, 43.768242 ], [ 1.360031, 43.817209 ], [ 1.319412, 43.858068 ], [ 1.365184, 43.889574 ], [ 1.418123, 43.871875 ], [ 1.447742, 43.873506 ], [ 1.469869, 43.897482 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31006", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "6", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.953983, 43.787372 ], [ 1.083306, 43.816332 ], [ 1.115083, 43.797776 ], [ 1.115749, 43.764744 ], [ 1.139083, 43.75492 ], [ 1.11283, 43.699616 ], [ 1.148664, 43.69214 ], [ 1.183798, 43.666163 ], [ 1.217933, 43.67886 ], [ 1.236545, 43.650308 ], [ 1.271654, 43.65008 ], [ 1.351882, 43.604464 ], [ 1.374079, 43.587312 ], [ 1.359316, 43.5602 ], [ 1.316268, 43.554528 ], [ 1.284549, 43.51906 ], [ 1.202135, 43.493463 ], [ 1.189309, 43.444268 ], [ 1.136329, 43.44336 ], [ 1.127788, 43.463281 ], [ 1.03749, 43.48556 ], [ 1.059308, 43.504141 ], [ 1.050552, 43.541036 ], [ 1.097081, 43.533231 ], [ 1.200301, 43.595876 ], [ 1.158654, 43.605177 ], [ 1.146711, 43.635584 ], [ 1.090188, 43.644191 ], [ 1.049022, 43.676016 ], [ 1.065703, 43.700229 ], [ 1.027388, 43.710432 ], [ 0.959099, 43.771805 ], [ 0.953983, 43.787372 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31007", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "7", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.578834, 43.275119 ], [ 1.488674, 43.268605 ], [ 1.504522, 43.249527 ], [ 1.468744, 43.209566 ], [ 1.417139, 43.226473 ], [ 1.426047, 43.25579 ], [ 1.345491, 43.31549 ], [ 1.301558, 43.287564 ], [ 1.294111, 43.264926 ], [ 1.374903, 43.23864 ], [ 1.370204, 43.210669 ], [ 1.230324, 43.187386 ], [ 1.223738, 43.152072 ], [ 1.273873, 43.148388 ], [ 1.290166, 43.123439 ], [ 1.261854, 43.091652 ], [ 1.223571, 43.085926 ], [ 1.210751, 43.115097 ], [ 1.174984, 43.140974 ], [ 1.183046, 43.156936 ], [ 1.15879, 43.190004 ], [ 1.105174, 43.176236 ], [ 1.101956, 43.204198 ], [ 1.134047, 43.227008 ], [ 1.084884, 43.252799 ], [ 1.112198, 43.278447 ], [ 1.152541, 43.263524 ], [ 1.18823, 43.302469 ], [ 1.134569, 43.345666 ], [ 1.210101, 43.378175 ], [ 1.191758, 43.403283 ], [ 1.189309, 43.444268 ], [ 1.202135, 43.493463 ], [ 1.284549, 43.51906 ], [ 1.316268, 43.554528 ], [ 1.359316, 43.5602 ], [ 1.367925, 43.549891 ], [ 1.377007, 43.524055 ], [ 1.340192, 43.516677 ], [ 1.32958, 43.489535 ], [ 1.372283, 43.459436 ], [ 1.328792, 43.420557 ], [ 1.388098, 43.389269 ], [ 1.41491, 43.413402 ], [ 1.420683, 43.446384 ], [ 1.493715, 43.440558 ], [ 1.475758, 43.396801 ], [ 1.519235, 43.371653 ], [ 1.544539, 43.341593 ], [ 1.575507, 43.367504 ], [ 1.625551, 43.329391 ], [ 1.587943, 43.299404 ], [ 1.578834, 43.275119 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31008", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "8", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.858306, 42.825719 ], [ 0.779279, 42.836148 ], [ 0.708378, 42.861402 ], [ 0.662566, 42.841117 ], [ 0.669986, 42.80363 ], [ 0.659866, 42.752162 ], [ 0.680501, 42.707599 ], [ 0.67321, 42.691349 ], [ 0.529614, 42.702684 ], [ 0.47775, 42.69999 ], [ 0.455185, 42.77092 ], [ 0.456171, 42.817599 ], [ 0.477357, 42.878244 ], [ 0.562341, 42.860757 ], [ 0.600187, 42.928015 ], [ 0.645959, 42.961336 ], [ 0.620121, 42.972436 ], [ 0.627396, 42.999733 ], [ 0.591825, 43.022373 ], [ 0.53512, 43.037051 ], [ 0.563854, 43.074247 ], [ 0.50459, 43.095359 ], [ 0.48929, 43.115179 ], [ 0.441705, 43.130969 ], [ 0.520655, 43.193261 ], [ 0.551875, 43.209147 ], [ 0.550957, 43.236008 ], [ 0.635725, 43.299139 ], [ 0.606811, 43.310886 ], [ 0.674719, 43.329512 ], [ 0.715343, 43.378887 ], [ 0.731536, 43.37219 ], [ 0.770422, 43.41681 ], [ 0.917251, 43.406333 ], [ 0.966509, 43.371182 ], [ 0.993662, 43.366532 ], [ 1.022788, 43.411704 ], [ 1.04167, 43.460815 ], [ 1.03749, 43.48556 ], [ 1.127788, 43.463281 ], [ 1.136329, 43.44336 ], [ 1.189309, 43.444268 ], [ 1.191758, 43.403283 ], [ 1.210101, 43.378175 ], [ 1.134569, 43.345666 ], [ 1.18823, 43.302469 ], [ 1.152541, 43.263524 ], [ 1.112198, 43.278447 ], [ 1.084884, 43.252799 ], [ 1.134047, 43.227008 ], [ 1.101956, 43.204198 ], [ 1.105174, 43.176236 ], [ 1.15879, 43.190004 ], [ 1.183046, 43.156936 ], [ 1.174984, 43.140974 ], [ 1.124082, 43.156907 ], [ 1.087977, 43.133825 ], [ 1.062938, 43.138669 ], [ 1.03823, 43.100308 ], [ 0.99167, 43.091173 ], [ 0.995098, 42.990834 ], [ 0.979101, 42.974431 ], [ 0.874911, 42.957776 ], [ 0.877979, 42.927825 ], [ 0.826682, 42.9155 ], [ 0.842883, 42.889585 ], [ 0.858306, 42.825719 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31010", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "10", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.029133, 43.436898 ], [ 1.990859, 43.409386 ], [ 1.95817, 43.425613 ], [ 1.902115, 43.408702 ], [ 1.856453, 43.443455 ], [ 1.80453, 43.391609 ], [ 1.805041, 43.359278 ], [ 1.735952, 43.316018 ], [ 1.68842, 43.273554 ], [ 1.637144, 43.254008 ], [ 1.578834, 43.275119 ], [ 1.587943, 43.299404 ], [ 1.625551, 43.329391 ], [ 1.575507, 43.367504 ], [ 1.544539, 43.341593 ], [ 1.519235, 43.371653 ], [ 1.475758, 43.396801 ], [ 1.493715, 43.440558 ], [ 1.420683, 43.446384 ], [ 1.412793, 43.491082 ], [ 1.42888, 43.546057 ], [ 1.468787, 43.531329 ], [ 1.494451, 43.553528 ], [ 1.53662, 43.578717 ], [ 1.560262, 43.567415 ], [ 1.610576, 43.574811 ], [ 1.631808, 43.603184 ], [ 1.662068, 43.606054 ], [ 1.687771, 43.630709 ], [ 1.806153, 43.579369 ], [ 1.839145, 43.577873 ], [ 1.850711, 43.549192 ], [ 1.887719, 43.516941 ], [ 2.019332, 43.470064 ], [ 2.029133, 43.436898 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "32001", "code_dpt": "32", "nom_dpt": "GERS", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.050552, 43.541036 ], [ 1.059308, 43.504141 ], [ 1.03749, 43.48556 ], [ 1.04167, 43.460815 ], [ 1.022788, 43.411704 ], [ 0.993662, 43.366532 ], [ 0.966509, 43.371182 ], [ 0.917251, 43.406333 ], [ 0.770422, 43.41681 ], [ 0.731536, 43.37219 ], [ 0.715343, 43.378887 ], [ 0.674719, 43.329512 ], [ 0.606811, 43.310886 ], [ 0.547069, 43.329806 ], [ 0.49354, 43.325482 ], [ 0.395823, 43.334244 ], [ 0.378548, 43.355366 ], [ 0.33135, 43.342654 ], [ 0.325407, 43.374777 ], [ 0.298759, 43.38858 ], [ 0.244136, 43.372719 ], [ 0.182031, 43.371183 ], [ 0.134549, 43.422491 ], [ 0.166064, 43.442378 ], [ 0.130741, 43.474065 ], [ 0.112248, 43.517373 ], [ 0.053621, 43.518767 ], [ -0.001666, 43.565323 ], [ -0.015009, 43.605525 ], [ -0.074213, 43.60618 ], [ -0.096783, 43.582406 ], [ -0.162108, 43.581666 ], [ -0.176561, 43.596832 ], [ -0.242837, 43.584985 ], [ -0.274354, 43.616044 ], [ -0.23973, 43.671242 ], [ -0.247381, 43.709243 ], [ -0.194143, 43.737017 ], [ -0.218647, 43.796591 ], [ -0.194708, 43.809211 ], [ -0.185723, 43.866889 ], [ -0.087179, 43.808617 ], [ 0.027427, 43.854966 ], [ 0.069669, 43.83863 ], [ 0.11532, 43.800352 ], [ 0.143407, 43.738114 ], [ 0.202628, 43.711019 ], [ 0.232671, 43.683974 ], [ 0.246284, 43.630227 ], [ 0.297046, 43.635121 ], [ 0.329181, 43.60761 ], [ 0.395936, 43.613318 ], [ 0.398273, 43.675979 ], [ 0.438725, 43.650409 ], [ 0.475602, 43.644096 ], [ 0.522024, 43.659676 ], [ 0.513442, 43.706294 ], [ 0.616764, 43.75108 ], [ 0.617387, 43.774896 ], [ 0.685391, 43.764623 ], [ 0.744251, 43.769819 ], [ 0.798064, 43.738243 ], [ 0.753737, 43.697494 ], [ 0.70341, 43.666962 ], [ 0.711039, 43.616291 ], [ 0.781981, 43.588121 ], [ 0.863391, 43.568079 ], [ 0.878625, 43.588269 ], [ 1.001858, 43.526021 ], [ 1.050552, 43.541036 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "32002", "code_dpt": "32", "nom_dpt": "GERS", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.185723, 43.866889 ], [ -0.223554, 43.892429 ], [ -0.209669, 43.911734 ], [ -0.177077, 43.935682 ], [ -0.125395, 43.943505 ], [ -0.102561, 43.927278 ], [ -0.04419, 43.963667 ], [ 0.0056, 43.955586 ], [ -0.020386, 43.929293 ], [ 0.033178, 43.89998 ], [ 0.075082, 43.914682 ], [ 0.055425, 43.957139 ], [ 0.076046, 43.983143 ], [ 0.138625, 43.976595 ], [ 0.189807, 44.015008 ], [ 0.303004, 43.991238 ], [ 0.357013, 44.015412 ], [ 0.382337, 44.008241 ], [ 0.44245, 44.028762 ], [ 0.459759, 44.055378 ], [ 0.51158, 44.062737 ], [ 0.538427, 44.052952 ], [ 0.592675, 44.079263 ], [ 0.652208, 44.042909 ], [ 0.741885, 44.065199 ], [ 0.764048, 44.029639 ], [ 0.814551, 44.022817 ], [ 0.826872, 43.997493 ], [ 0.760114, 43.945304 ], [ 0.770004, 43.922143 ], [ 0.809298, 43.932302 ], [ 0.889231, 43.904248 ], [ 0.895239, 43.839897 ], [ 0.925163, 43.832027 ], [ 0.897291, 43.788535 ], [ 0.953983, 43.787372 ], [ 0.959099, 43.771805 ], [ 1.027388, 43.710432 ], [ 1.065703, 43.700229 ], [ 1.049022, 43.676016 ], [ 1.090188, 43.644191 ], [ 1.146711, 43.635584 ], [ 1.158654, 43.605177 ], [ 1.200301, 43.595876 ], [ 1.097081, 43.533231 ], [ 1.050552, 43.541036 ], [ 1.001858, 43.526021 ], [ 0.878625, 43.588269 ], [ 0.863391, 43.568079 ], [ 0.781981, 43.588121 ], [ 0.711039, 43.616291 ], [ 0.70341, 43.666962 ], [ 0.753737, 43.697494 ], [ 0.798064, 43.738243 ], [ 0.744251, 43.769819 ], [ 0.685391, 43.764623 ], [ 0.617387, 43.774896 ], [ 0.616764, 43.75108 ], [ 0.513442, 43.706294 ], [ 0.522024, 43.659676 ], [ 0.475602, 43.644096 ], [ 0.438725, 43.650409 ], [ 0.398273, 43.675979 ], [ 0.395936, 43.613318 ], [ 0.329181, 43.60761 ], [ 0.297046, 43.635121 ], [ 0.246284, 43.630227 ], [ 0.232671, 43.683974 ], [ 0.202628, 43.711019 ], [ 0.143407, 43.738114 ], [ 0.11532, 43.800352 ], [ 0.069669, 43.83863 ], [ 0.027427, 43.854966 ], [ -0.087179, 43.808617 ], [ -0.185723, 43.866889 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33005", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "5", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.884698, 44.849744 ], [ -0.957791, 44.830519 ], [ -1.050539, 44.823166 ], [ -1.143774, 44.824219 ], [ -1.232986, 44.808938 ], [ -1.214517, 44.920794 ], [ -1.16454, 45.285071 ], [ -1.154377, 45.48119 ], [ -1.090783, 45.563381 ], [ -1.043557, 45.545074 ], [ -1.068351, 45.515027 ], [ -0.979011, 45.458508 ], [ -0.932489, 45.439639 ], [ -0.803319, 45.343967 ], [ -0.73797, 45.229035 ], [ -0.700456, 45.166997 ], [ -0.683693, 45.089284 ], [ -0.612089, 45.020695 ], [ -0.595231, 45.024341 ], [ -0.542693, 44.984414 ], [ -0.547736, 44.916667 ], [ -0.603847, 44.908101 ], [ -0.638336, 44.860667 ], [ -0.642108, 44.894964 ], [ -0.670521, 44.929982 ], [ -0.697138, 44.927621 ], [ -0.754541, 44.966663 ], [ -0.831466, 44.924943 ], [ -0.844179, 44.894955 ], [ -0.883949, 44.885431 ], [ -0.884698, 44.849744 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33008", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "8", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.232986, 44.808938 ], [ -1.143774, 44.824219 ], [ -1.050539, 44.823166 ], [ -0.957791, 44.830519 ], [ -0.884698, 44.849744 ], [ -0.90415, 44.806397 ], [ -0.881356, 44.76 ], [ -0.837084, 44.736773 ], [ -0.77144, 44.693034 ], [ -0.824718, 44.649221 ], [ -0.807673, 44.624203 ], [ -0.875963, 44.593355 ], [ -0.907351, 44.56592 ], [ -1.011142, 44.510376 ], [ -1.085166, 44.532195 ], [ -1.106985, 44.502637 ], [ -1.25389, 44.467604 ], [ -1.259822, 44.544429 ], [ -1.232352, 44.568782 ], [ -1.20507, 44.614072 ], [ -1.193837, 44.65816 ], [ -1.084311, 44.641212 ], [ -1.006272, 44.654769 ], [ -1.036912, 44.694075 ], [ -1.161933, 44.774908 ], [ -1.177239, 44.744823 ], [ -1.219179, 44.709964 ], [ -1.26052, 44.656665 ], [ -1.232986, 44.808938 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33009", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "9", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.004788, 44.445014 ], [ -0.011804, 44.420329 ], [ 0.018552, 44.389329 ], [ -0.028821, 44.360191 ], [ -0.078819, 44.353695 ], [ -0.085752, 44.33761 ], [ -0.034811, 44.296726 ], [ -0.033608, 44.274014 ], [ -0.08848, 44.238471 ], [ -0.140689, 44.226414 ], [ -0.194666, 44.270394 ], [ -0.226004, 44.264784 ], [ -0.223447, 44.205898 ], [ -0.273621, 44.194017 ], [ -0.389617, 44.209485 ], [ -0.396314, 44.237468 ], [ -0.383388, 44.28632 ], [ -0.429625, 44.301545 ], [ -0.43184, 44.322577 ], [ -0.517635, 44.339111 ], [ -0.528103, 44.364654 ], [ -0.625806, 44.408245 ], [ -0.628064, 44.442855 ], [ -0.67195, 44.456378 ], [ -0.726968, 44.447537 ], [ -0.780281, 44.428111 ], [ -0.844747, 44.418632 ], [ -0.91917, 44.443344 ], [ -0.971419, 44.429178 ], [ -1.007738, 44.436515 ], [ -0.981033, 44.484787 ], [ -1.011142, 44.510376 ], [ -0.907351, 44.56592 ], [ -0.875963, 44.593355 ], [ -0.807673, 44.624203 ], [ -0.824718, 44.649221 ], [ -0.77144, 44.693034 ], [ -0.729967, 44.672575 ], [ -0.672079, 44.694818 ], [ -0.645128, 44.731697 ], [ -0.590137, 44.762703 ], [ -0.565816, 44.752007 ], [ -0.510894, 44.7691 ], [ -0.511579, 44.745836 ], [ -0.412711, 44.707394 ], [ -0.374589, 44.684855 ], [ -0.30243, 44.615759 ], [ -0.294502, 44.59083 ], [ -0.245025, 44.557119 ], [ -0.207217, 44.565928 ], [ -0.118216, 44.561847 ], [ -0.134387, 44.52854 ], [ -0.200606, 44.53737 ], [ -0.237541, 44.49937 ], [ -0.16011, 44.465633 ], [ -0.079766, 44.449367 ], [ -0.043777, 44.424215 ], [ 0.004788, 44.445014 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33010", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "10", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.360685, 44.852077 ], [ -0.331502, 44.870078 ], [ -0.364704, 44.911296 ], [ -0.40932, 44.947605 ], [ -0.454946, 44.953424 ], [ -0.412244, 44.970199 ], [ -0.392978, 44.999014 ], [ -0.361758, 44.996286 ], [ -0.350592, 45.045918 ], [ -0.319667, 45.049836 ], [ -0.24348, 44.970691 ], [ -0.175524, 44.962795 ], [ -0.128041, 44.994372 ], [ -0.043304, 45.005634 ], [ 0.019495, 45.004343 ], [ 0.03914, 45.024311 ], [ 0.040106, 44.99355 ], [ 0.005127, 44.946238 ], [ 0.033907, 44.914962 ], [ -0.010036, 44.859792 ], [ 0.039303, 44.827639 ], [ 0.148828, 44.829094 ], [ 0.192844, 44.820803 ], [ 0.256446, 44.867519 ], [ 0.315056, 44.845377 ], [ 0.281958, 44.823851 ], [ 0.280226, 44.774397 ], [ 0.297325, 44.762294 ], [ 0.253651, 44.750391 ], [ 0.235944, 44.764194 ], [ 0.180434, 44.745498 ], [ 0.153693, 44.750336 ], [ 0.104988, 44.784092 ], [ 0.023957, 44.776775 ], [ -0.092504, 44.805256 ], [ -0.117905, 44.762368 ], [ -0.166551, 44.778873 ], [ -0.222654, 44.785212 ], [ -0.273898, 44.776745 ], [ -0.311542, 44.788241 ], [ -0.360685, 44.852077 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33011", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "11", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.73797, 45.229035 ], [ -0.69012, 45.236369 ], [ -0.708225, 45.32748 ], [ -0.607635, 45.324009 ], [ -0.568967, 45.331523 ], [ -0.567662, 45.297421 ], [ -0.51343, 45.286385 ], [ -0.472986, 45.293633 ], [ -0.416123, 45.267392 ], [ -0.405948, 45.242079 ], [ -0.419173, 45.210392 ], [ -0.378419, 45.156855 ], [ -0.362699, 45.170362 ], [ -0.275359, 45.14141 ], [ -0.257078, 45.114622 ], [ -0.191442, 45.094749 ], [ -0.143537, 45.090344 ], [ -0.087573, 45.121582 ], [ -0.0402, 45.102384 ], [ -0.002243, 45.119362 ], [ 0.045793, 45.113464 ], [ 0.072345, 45.0747 ], [ 0.040691, 45.022136 ], [ 0.03914, 45.024311 ], [ 0.019495, 45.004343 ], [ -0.043304, 45.005634 ], [ -0.128041, 44.994372 ], [ -0.175524, 44.962795 ], [ -0.24348, 44.970691 ], [ -0.319667, 45.049836 ], [ -0.350592, 45.045918 ], [ -0.361758, 44.996286 ], [ -0.392978, 44.999014 ], [ -0.412244, 44.970199 ], [ -0.454946, 44.953424 ], [ -0.474471, 44.994426 ], [ -0.554879, 45.033533 ], [ -0.595231, 45.024341 ], [ -0.612089, 45.020695 ], [ -0.683693, 45.089284 ], [ -0.700456, 45.166997 ], [ -0.73797, 45.229035 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33012", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "12", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.510894, 44.7691 ], [ -0.526565, 44.806147 ], [ -0.452901, 44.825706 ], [ -0.459498, 44.86454 ], [ -0.424468, 44.872557 ], [ -0.360685, 44.852077 ], [ -0.311542, 44.788241 ], [ -0.273898, 44.776745 ], [ -0.222654, 44.785212 ], [ -0.166551, 44.778873 ], [ -0.117905, 44.762368 ], [ -0.092504, 44.805256 ], [ 0.023957, 44.776775 ], [ 0.104988, 44.784092 ], [ 0.153693, 44.750336 ], [ 0.180434, 44.745498 ], [ 0.136039, 44.711206 ], [ 0.100345, 44.700979 ], [ 0.182752, 44.661362 ], [ 0.154363, 44.614908 ], [ 0.082236, 44.583911 ], [ 0.068687, 44.548221 ], [ 0.037738, 44.554151 ], [ -0.015565, 44.504789 ], [ -0.011696, 44.459861 ], [ 0.004788, 44.445014 ], [ -0.043777, 44.424215 ], [ -0.079766, 44.449367 ], [ -0.16011, 44.465633 ], [ -0.237541, 44.49937 ], [ -0.200606, 44.53737 ], [ -0.134387, 44.52854 ], [ -0.118216, 44.561847 ], [ -0.207217, 44.565928 ], [ -0.245025, 44.557119 ], [ -0.294502, 44.59083 ], [ -0.30243, 44.615759 ], [ -0.374589, 44.684855 ], [ -0.412711, 44.707394 ], [ -0.511579, 44.745836 ], [ -0.510894, 44.7691 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34004", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "4", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.672383, 43.43002 ], [ 3.593958, 43.389463 ], [ 3.550054, 43.406284 ], [ 3.525641, 43.430085 ], [ 3.567639, 43.475227 ], [ 3.551208, 43.503625 ], [ 3.495829, 43.528932 ], [ 3.48236, 43.550794 ], [ 3.500007, 43.611196 ], [ 3.492317, 43.638567 ], [ 3.450761, 43.665256 ], [ 3.414949, 43.673425 ], [ 3.325996, 43.668347 ], [ 3.253193, 43.715529 ], [ 3.237723, 43.763265 ], [ 3.249037, 43.82958 ], [ 3.236857, 43.854075 ], [ 3.266439, 43.896097 ], [ 3.342568, 43.894193 ], [ 3.358359, 43.913833 ], [ 3.423923, 43.911312 ], [ 3.435182, 43.862959 ], [ 3.511683, 43.895637 ], [ 3.521645, 43.864947 ], [ 3.578908, 43.843563 ], [ 3.582958, 43.877434 ], [ 3.623589, 43.916979 ], [ 3.671591, 43.910178 ], [ 3.684487, 43.95166 ], [ 3.731136, 43.970681 ], [ 3.787337, 43.96687 ], [ 3.795518, 43.942277 ], [ 3.828287, 43.92406 ], [ 3.799542, 43.890822 ], [ 3.830809, 43.866424 ], [ 3.919554, 43.881975 ], [ 3.923111, 43.858788 ], [ 3.958993, 43.853511 ], [ 3.974348, 43.801474 ], [ 3.985214, 43.767196 ], [ 3.875059, 43.737495 ], [ 3.883273, 43.687467 ], [ 3.84282, 43.670429 ], [ 3.84151, 43.647925 ], [ 3.82797, 43.666242 ], [ 3.784197, 43.665091 ], [ 3.742179, 43.644266 ], [ 3.729992, 43.618479 ], [ 3.669961, 43.596281 ], [ 3.656849, 43.56916 ], [ 3.677916, 43.5413 ], [ 3.753493, 43.493528 ], [ 3.728121, 43.471029 ], [ 3.69845, 43.479402 ], [ 3.666254, 43.457274 ], [ 3.672383, 43.43002 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34005", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "5", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.249037, 43.82958 ], [ 3.237723, 43.763265 ], [ 3.253193, 43.715529 ], [ 3.325996, 43.668347 ], [ 3.414949, 43.673425 ], [ 3.450761, 43.665256 ], [ 3.492317, 43.638567 ], [ 3.500007, 43.611196 ], [ 3.48236, 43.550794 ], [ 3.495829, 43.528932 ], [ 3.551208, 43.503625 ], [ 3.567639, 43.475227 ], [ 3.525641, 43.430085 ], [ 3.493534, 43.453232 ], [ 3.468281, 43.447424 ], [ 3.36988, 43.530352 ], [ 3.330489, 43.516588 ], [ 3.333468, 43.484558 ], [ 3.25156, 43.479264 ], [ 3.207821, 43.451295 ], [ 3.229697, 43.431234 ], [ 3.179794, 43.413596 ], [ 3.162191, 43.389756 ], [ 3.09777, 43.424065 ], [ 3.050859, 43.41609 ], [ 3.084827, 43.369 ], [ 3.130892, 43.361352 ], [ 3.152301, 43.302554 ], [ 3.141627, 43.259507 ], [ 3.11017, 43.253904 ], [ 3.054347, 43.280042 ], [ 3.012103, 43.280936 ], [ 3.004423, 43.319708 ], [ 2.946079, 43.311959 ], [ 2.885119, 43.333249 ], [ 2.837395, 43.322429 ], [ 2.75252, 43.254594 ], [ 2.700303, 43.282815 ], [ 2.601175, 43.298256 ], [ 2.583539, 43.333912 ], [ 2.540081, 43.345233 ], [ 2.565787, 43.42296 ], [ 2.606371, 43.431994 ], [ 2.664626, 43.463886 ], [ 2.658852, 43.516923 ], [ 2.616643, 43.565377 ], [ 2.616909, 43.60145 ], [ 2.653637, 43.650018 ], [ 2.72267, 43.642639 ], [ 2.754524, 43.614139 ], [ 2.814753, 43.639308 ], [ 2.918087, 43.660994 ], [ 2.935463, 43.694668 ], [ 2.982088, 43.70803 ], [ 3.060678, 43.692807 ], [ 3.056275, 43.754953 ], [ 3.074305, 43.767612 ], [ 3.048568, 43.801498 ], [ 3.064907, 43.835568 ], [ 3.127711, 43.817407 ], [ 3.205308, 43.81296 ], [ 3.249037, 43.82958 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34007", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "7", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.364786, 43.277371 ], [ 3.372579, 43.309675 ], [ 3.331173, 43.341403 ], [ 3.331595, 43.378394 ], [ 3.262663, 43.397296 ], [ 3.229697, 43.431234 ], [ 3.207821, 43.451295 ], [ 3.25156, 43.479264 ], [ 3.333468, 43.484558 ], [ 3.330489, 43.516588 ], [ 3.36988, 43.530352 ], [ 3.468281, 43.447424 ], [ 3.493534, 43.453232 ], [ 3.525641, 43.430085 ], [ 3.550054, 43.406284 ], [ 3.593958, 43.389463 ], [ 3.672383, 43.43002 ], [ 3.724916, 43.415799 ], [ 3.725368, 43.401644 ], [ 3.665745, 43.39295 ], [ 3.61948, 43.367629 ], [ 3.507807, 43.272431 ], [ 3.428965, 43.290215 ], [ 3.364786, 43.277371 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "35002", "code_dpt": "35", "nom_dpt": "ILLE-ET-VILAINE", "nom_reg": "BRETAGNE", "num_circ": "2", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.651072, 48.373636 ], [ -1.649988, 48.358177 ], [ -1.700714, 48.298588 ], [ -1.687913, 48.282729 ], [ -1.74708, 48.240535 ], [ -1.697142, 48.181085 ], [ -1.656982, 48.209836 ], [ -1.598431, 48.198711 ], [ -1.591615, 48.246935 ], [ -1.560367, 48.24728 ], [ -1.527165, 48.272161 ], [ -1.453642, 48.227264 ], [ -1.330642, 48.252079 ], [ -1.318946, 48.220338 ], [ -1.351436, 48.200959 ], [ -1.354834, 48.16996 ], [ -1.499769, 48.119652 ], [ -1.533837, 48.130928 ], [ -1.568382, 48.09244 ], [ -1.661669, 48.106739 ], [ -1.690432, 48.133361 ], [ -1.697957, 48.139724 ], [ -1.702485, 48.143806 ], [ -1.724971, 48.144024 ], [ -1.778432, 48.196704 ], [ -1.764684, 48.21153 ], [ -1.793754, 48.245851 ], [ -1.831409, 48.243793 ], [ -1.84277, 48.269164 ], [ -1.77766, 48.336389 ], [ -1.830528, 48.335441 ], [ -1.848289, 48.359593 ], [ -1.828778, 48.381158 ], [ -1.759747, 48.363863 ], [ -1.69026, 48.383779 ], [ -1.651072, 48.373636 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "35003", "code_dpt": "35", "nom_dpt": "ILLE-ET-VILAINE", "nom_reg": "BRETAGNE", "num_circ": "3", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.702485, 48.143806 ], [ -1.697957, 48.139724 ], [ -1.790828, 48.120478 ], [ -1.821943, 48.138464 ], [ -1.825148, 48.173969 ], [ -1.880474, 48.170457 ], [ -1.891782, 48.133394 ], [ -1.917028, 48.113221 ], [ -1.875674, 48.071133 ], [ -1.953278, 48.052284 ], [ -2.156179, 48.085018 ], [ -2.16848, 48.076209 ], [ -2.24916, 48.084118 ], [ -2.25633, 48.110321 ], [ -2.287278, 48.133746 ], [ -2.224738, 48.170606 ], [ -2.227979, 48.210916 ], [ -2.191935, 48.208224 ], [ -2.187172, 48.243998 ], [ -2.150047, 48.258752 ], [ -2.108602, 48.254799 ], [ -2.077616, 48.291759 ], [ -2.014101, 48.279532 ], [ -1.964572, 48.301439 ], [ -1.966897, 48.342819 ], [ -1.946466, 48.367122 ], [ -1.938069, 48.419846 ], [ -1.948635, 48.446456 ], [ -1.908996, 48.481554 ], [ -1.851178, 48.476316 ], [ -1.806648, 48.494658 ], [ -1.786663, 48.477008 ], [ -1.735584, 48.492424 ], [ -1.694114, 48.463566 ], [ -1.616733, 48.466243 ], [ -1.649898, 48.418464 ], [ -1.651072, 48.373636 ], [ -1.69026, 48.383779 ], [ -1.759747, 48.363863 ], [ -1.828778, 48.381158 ], [ -1.848289, 48.359593 ], [ -1.830528, 48.335441 ], [ -1.77766, 48.336389 ], [ -1.84277, 48.269164 ], [ -1.831409, 48.243793 ], [ -1.793754, 48.245851 ], [ -1.764684, 48.21153 ], [ -1.778432, 48.196704 ], [ -1.724971, 48.144024 ], [ -1.702485, 48.143806 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "35004", "code_dpt": "35", "nom_dpt": "ILLE-ET-VILAINE", "nom_reg": "BRETAGNE", "num_circ": "4", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.481873, 47.831804 ], [ -1.468448, 47.805904 ], [ -1.530422, 47.78478 ], [ -1.594141, 47.77603 ], [ -1.627131, 47.759827 ], [ -1.638131, 47.722209 ], [ -1.729713, 47.699342 ], [ -1.862789, 47.707333 ], [ -1.935304, 47.686806 ], [ -1.973401, 47.694154 ], [ -2.012284, 47.666454 ], [ -2.047413, 47.663786 ], [ -2.097036, 47.63136 ], [ -2.122663, 47.68267 ], [ -2.109457, 47.735877 ], [ -2.05986, 47.738314 ], [ -2.110098, 47.778601 ], [ -2.072892, 47.791827 ], [ -2.036045, 47.833461 ], [ -2.05393, 47.850953 ], [ -2.095195, 47.843258 ], [ -2.114176, 47.87883 ], [ -2.078951, 47.919492 ], [ -2.146602, 47.983939 ], [ -2.176729, 47.980054 ], [ -2.238197, 47.999335 ], [ -2.287539, 47.991505 ], [ -2.273288, 48.031072 ], [ -2.242426, 48.0526 ], [ -2.19135, 48.052449 ], [ -2.16848, 48.076209 ], [ -2.156179, 48.085018 ], [ -1.953278, 48.052284 ], [ -1.875674, 48.071133 ], [ -1.824619, 48.066205 ], [ -1.821306, 48.047138 ], [ -1.77627, 48.031125 ], [ -1.783827, 48.003212 ], [ -1.726649, 48.011746 ], [ -1.690751, 47.992359 ], [ -1.691423, 47.962655 ], [ -1.619515, 47.975385 ], [ -1.556847, 47.929507 ], [ -1.542109, 47.908245 ], [ -1.487201, 47.90723 ], [ -1.463685, 47.883808 ], [ -1.497122, 47.862491 ], [ -1.481873, 47.831804 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "35005", "code_dpt": "35", "nom_dpt": "ILLE-ET-VILAINE", "nom_reg": "BRETAGNE", "num_circ": "5", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.238252, 47.809991 ], [ -1.245882, 47.776718 ], [ -1.364081, 47.8007 ], [ -1.391529, 47.828321 ], [ -1.481873, 47.831804 ], [ -1.497122, 47.862491 ], [ -1.463685, 47.883808 ], [ -1.487201, 47.90723 ], [ -1.542109, 47.908245 ], [ -1.556847, 47.929507 ], [ -1.619515, 47.975385 ], [ -1.601388, 47.981217 ], [ -1.600765, 48.024736 ], [ -1.568382, 48.09244 ], [ -1.533837, 48.130928 ], [ -1.499769, 48.119652 ], [ -1.354834, 48.16996 ], [ -1.351436, 48.200959 ], [ -1.318946, 48.220338 ], [ -1.330642, 48.252079 ], [ -1.298977, 48.259381 ], [ -1.199054, 48.250235 ], [ -1.123834, 48.250128 ], [ -1.099932, 48.268375 ], [ -1.074357, 48.200471 ], [ -1.049133, 48.089596 ], [ -1.021497, 48.068405 ], [ -1.030417, 47.992473 ], [ -1.107516, 47.988876 ], [ -1.156195, 47.964454 ], [ -1.189163, 47.867708 ], [ -1.238252, 47.809991 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "35006", "code_dpt": "35", "nom_dpt": "ILLE-ET-VILAINE", "nom_reg": "BRETAGNE", "num_circ": "6", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.070165, 48.508494 ], [ -1.064649, 48.466913 ], [ -1.079735, 48.417381 ], [ -1.052793, 48.380929 ], [ -1.04583, 48.329655 ], [ -1.099932, 48.268375 ], [ -1.123834, 48.250128 ], [ -1.199054, 48.250235 ], [ -1.298977, 48.259381 ], [ -1.330642, 48.252079 ], [ -1.453642, 48.227264 ], [ -1.527165, 48.272161 ], [ -1.560367, 48.24728 ], [ -1.591615, 48.246935 ], [ -1.598431, 48.198711 ], [ -1.656982, 48.209836 ], [ -1.697142, 48.181085 ], [ -1.74708, 48.240535 ], [ -1.687913, 48.282729 ], [ -1.700714, 48.298588 ], [ -1.649988, 48.358177 ], [ -1.651072, 48.373636 ], [ -1.649898, 48.418464 ], [ -1.616733, 48.466243 ], [ -1.694114, 48.463566 ], [ -1.660734, 48.549519 ], [ -1.696885, 48.588926 ], [ -1.667887, 48.610424 ], [ -1.571087, 48.626446 ], [ -1.521005, 48.567055 ], [ -1.53311, 48.549439 ], [ -1.489947, 48.489375 ], [ -1.454089, 48.487726 ], [ -1.427752, 48.462347 ], [ -1.382967, 48.456875 ], [ -1.341415, 48.489208 ], [ -1.279004, 48.509177 ], [ -1.249493, 48.543696 ], [ -1.117277, 48.521652 ], [ -1.070165, 48.508494 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "35007", "code_dpt": "35", "nom_dpt": "ILLE-ET-VILAINE", "nom_reg": "BRETAGNE", "num_circ": "7", "code_reg": "53" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.667887, 48.610424 ], [ -1.696885, 48.588926 ], [ -1.660734, 48.549519 ], [ -1.694114, 48.463566 ], [ -1.735584, 48.492424 ], [ -1.786663, 48.477008 ], [ -1.806648, 48.494658 ], [ -1.851178, 48.476316 ], [ -1.908996, 48.481554 ], [ -1.924802, 48.545173 ], [ -1.948037, 48.538808 ], [ -2.011695, 48.598224 ], [ -2.028895, 48.646945 ], [ -1.993161, 48.660725 ], [ -1.955886, 48.692735 ], [ -1.847318, 48.694246 ], [ -1.870603, 48.643696 ], [ -1.845281, 48.616405 ], [ -1.767714, 48.60239 ], [ -1.667887, 48.610424 ] ] ], [ [ [ -2.006895, 48.566113 ], [ -2.033971, 48.551106 ], [ -2.094322, 48.571753 ], [ -2.123708, 48.60441 ], [ -2.149213, 48.629044 ], [ -2.11315, 48.641416 ], [ -2.050179, 48.635939 ], [ -2.006895, 48.566113 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "36001", "code_dpt": "36", "nom_dpt": "INDRE", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "1", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.90283, 46.730405 ], [ 0.867469, 46.748219 ], [ 0.907237, 46.758138 ], [ 0.961024, 46.740001 ], [ 0.982563, 46.762548 ], [ 0.985332, 46.80165 ], [ 1.00893, 46.814446 ], [ 1.037435, 46.942063 ], [ 1.058044, 46.94968 ], [ 1.056376, 46.996439 ], [ 1.077615, 47.015842 ], [ 1.160983, 47.039364 ], [ 1.248989, 47.02083 ], [ 1.28685, 47.012473 ], [ 1.34714, 46.953907 ], [ 1.395303, 46.952544 ], [ 1.487222, 46.988564 ], [ 1.496984, 46.965017 ], [ 1.549656, 46.922251 ], [ 1.614977, 46.88074 ], [ 1.702978, 46.87158 ], [ 1.730743, 46.849431 ], [ 1.763513, 46.900224 ], [ 1.825322, 46.899169 ], [ 1.814827, 46.869094 ], [ 1.77036, 46.819191 ], [ 1.660254, 46.746729 ], [ 1.581299, 46.738046 ], [ 1.56518, 46.75121 ], [ 1.496069, 46.745435 ], [ 1.489278, 46.687727 ], [ 1.440686, 46.637094 ], [ 1.480486, 46.61932 ], [ 1.446037, 46.590759 ], [ 1.499796, 46.552786 ], [ 1.484341, 46.525519 ], [ 1.506432, 46.502619 ], [ 1.507074, 46.460127 ], [ 1.525351, 46.426654 ], [ 1.415191, 46.347218 ], [ 1.407003, 46.362641 ], [ 1.344678, 46.401598 ], [ 1.310512, 46.374375 ], [ 1.21797, 46.368256 ], [ 1.17728, 46.383952 ], [ 1.213066, 46.433083 ], [ 1.150917, 46.450297 ], [ 1.135514, 46.470889 ], [ 1.149143, 46.502212 ], [ 1.090094, 46.537584 ], [ 1.020409, 46.537147 ], [ 0.990254, 46.565904 ], [ 0.915865, 46.596631 ], [ 0.894059, 46.628624 ], [ 0.915638, 46.650672 ], [ 0.902262, 46.677666 ], [ 0.924812, 46.700216 ], [ 0.90283, 46.730405 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "36002", "code_dpt": "36", "nom_dpt": "INDRE", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "2", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.525351, 46.426654 ], [ 1.507074, 46.460127 ], [ 1.506432, 46.502619 ], [ 1.484341, 46.525519 ], [ 1.499796, 46.552786 ], [ 1.446037, 46.590759 ], [ 1.480486, 46.61932 ], [ 1.440686, 46.637094 ], [ 1.489278, 46.687727 ], [ 1.496069, 46.745435 ], [ 1.56518, 46.75121 ], [ 1.581299, 46.738046 ], [ 1.660254, 46.746729 ], [ 1.77036, 46.819191 ], [ 1.814827, 46.869094 ], [ 1.825322, 46.899169 ], [ 1.763513, 46.900224 ], [ 1.730743, 46.849431 ], [ 1.702978, 46.87158 ], [ 1.614977, 46.88074 ], [ 1.549656, 46.922251 ], [ 1.496984, 46.965017 ], [ 1.487222, 46.988564 ], [ 1.395303, 46.952544 ], [ 1.34714, 46.953907 ], [ 1.28685, 47.012473 ], [ 1.248989, 47.02083 ], [ 1.276097, 47.040806 ], [ 1.3175, 47.10295 ], [ 1.355669, 47.108478 ], [ 1.363751, 47.135086 ], [ 1.326666, 47.186225 ], [ 1.392843, 47.208693 ], [ 1.421208, 47.229163 ], [ 1.482936, 47.238676 ], [ 1.593136, 47.274416 ], [ 1.665701, 47.258887 ], [ 1.71582, 47.276821 ], [ 1.776111, 47.231383 ], [ 1.839079, 47.219308 ], [ 1.842237, 47.17758 ], [ 1.774451, 47.130755 ], [ 1.828448, 47.121302 ], [ 1.883068, 47.100512 ], [ 1.99666, 47.126998 ], [ 2.055653, 47.076723 ], [ 2.02938, 47.045532 ], [ 2.096889, 47.012414 ], [ 2.090839, 46.966689 ], [ 2.070685, 46.934023 ], [ 2.110319, 46.913167 ], [ 2.126204, 46.879865 ], [ 2.087963, 46.865882 ], [ 2.077817, 46.838005 ], [ 2.114007, 46.775375 ], [ 2.065751, 46.742495 ], [ 2.155448, 46.69216 ], [ 2.137272, 46.672314 ], [ 2.189447, 46.642141 ], [ 2.184614, 46.602567 ], [ 2.1587, 46.557346 ], [ 2.203788, 46.489493 ], [ 2.151402, 46.457697 ], [ 2.167786, 46.424076 ], [ 2.072452, 46.420108 ], [ 1.993082, 46.430917 ], [ 1.818455, 46.431423 ], [ 1.798244, 46.454906 ], [ 1.74759, 46.450021 ], [ 1.750549, 46.405593 ], [ 1.709385, 46.393427 ], [ 1.683603, 46.418178 ], [ 1.64109, 46.385591 ], [ 1.600772, 46.419615 ], [ 1.546187, 46.395931 ], [ 1.525351, 46.426654 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "37002", "code_dpt": "37", "nom_dpt": "INDRE-ET-LOIRE", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "2", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.112883, 47.465917 ], [ 1.133366, 47.44895 ], [ 1.110523, 47.408628 ], [ 1.122414, 47.355072 ], [ 1.094853, 47.328537 ], [ 1.108127, 47.298407 ], [ 1.162064, 47.272205 ], [ 1.223335, 47.294177 ], [ 1.243638, 47.283662 ], [ 1.242151, 47.275734 ], [ 1.201957, 47.222673 ], [ 1.143728, 47.219702 ], [ 1.107097, 47.244999 ], [ 1.073071, 47.226185 ], [ 1.020624, 47.253263 ], [ 0.949202, 47.238666 ], [ 0.910234, 47.25056 ], [ 0.887669, 47.210534 ], [ 0.849588, 47.230133 ], [ 0.889108, 47.291415 ], [ 0.84794, 47.300385 ], [ 0.800345, 47.327248 ], [ 0.766361, 47.330652 ], [ 0.756439, 47.396248 ], [ 0.729528, 47.400328 ], [ 0.710405, 47.438749 ], [ 0.663357, 47.482392 ], [ 0.708298, 47.496046 ], [ 0.685627, 47.525892 ], [ 0.709151, 47.553408 ], [ 0.738471, 47.61652 ], [ 0.738211, 47.643718 ], [ 0.712153, 47.681813 ], [ 0.735651, 47.695543 ], [ 0.85935, 47.666719 ], [ 0.844708, 47.64511 ], [ 0.864282, 47.599827 ], [ 0.899155, 47.603719 ], [ 0.919605, 47.632755 ], [ 1.033353, 47.607012 ], [ 1.076557, 47.561902 ], [ 1.045035, 47.531574 ], [ 1.093746, 47.470486 ], [ 1.112883, 47.465917 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "37003", "code_dpt": "37", "nom_dpt": "INDRE-ET-LOIRE", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "3", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.590556, 47.006729 ], [ 0.604291, 47.074372 ], [ 0.713936, 47.13086 ], [ 0.708659, 47.161514 ], [ 0.668438, 47.181903 ], [ 0.612071, 47.184808 ], [ 0.648593, 47.225797 ], [ 0.540928, 47.268624 ], [ 0.579252, 47.306142 ], [ 0.664306, 47.300535 ], [ 0.67569, 47.336996 ], [ 0.699222, 47.353928 ], [ 0.731739, 47.381766 ], [ 0.71413, 47.378011 ], [ 0.729528, 47.400328 ], [ 0.756439, 47.396248 ], [ 0.766361, 47.330652 ], [ 0.800345, 47.327248 ], [ 0.84794, 47.300385 ], [ 0.889108, 47.291415 ], [ 0.849588, 47.230133 ], [ 0.887669, 47.210534 ], [ 0.910234, 47.25056 ], [ 0.949202, 47.238666 ], [ 1.020624, 47.253263 ], [ 1.073071, 47.226185 ], [ 1.107097, 47.244999 ], [ 1.143728, 47.219702 ], [ 1.201957, 47.222673 ], [ 1.242151, 47.275734 ], [ 1.294762, 47.235989 ], [ 1.326666, 47.186225 ], [ 1.363751, 47.135086 ], [ 1.355669, 47.108478 ], [ 1.3175, 47.10295 ], [ 1.276097, 47.040806 ], [ 1.248989, 47.02083 ], [ 1.160983, 47.039364 ], [ 1.077615, 47.015842 ], [ 1.056376, 46.996439 ], [ 1.058044, 46.94968 ], [ 1.037435, 46.942063 ], [ 1.00893, 46.814446 ], [ 0.985332, 46.80165 ], [ 0.982563, 46.762548 ], [ 0.961024, 46.740001 ], [ 0.907237, 46.758138 ], [ 0.867469, 46.748219 ], [ 0.813354, 46.79168 ], [ 0.807997, 46.829139 ], [ 0.753423, 46.860585 ], [ 0.70467, 46.902886 ], [ 0.690172, 46.97498 ], [ 0.590556, 47.006729 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "37004", "code_dpt": "37", "nom_dpt": "INDRE-ET-LOIRE", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "4", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.664503, 47.394951 ], [ 0.656673, 47.366532 ], [ 0.699222, 47.353928 ], [ 0.67569, 47.336996 ], [ 0.664306, 47.300535 ], [ 0.579252, 47.306142 ], [ 0.540928, 47.268624 ], [ 0.648593, 47.225797 ], [ 0.612071, 47.184808 ], [ 0.668438, 47.181903 ], [ 0.708659, 47.161514 ], [ 0.713936, 47.13086 ], [ 0.604291, 47.074372 ], [ 0.590556, 47.006729 ], [ 0.573683, 46.983388 ], [ 0.598205, 46.956428 ], [ 0.50519, 46.959911 ], [ 0.43871, 46.929582 ], [ 0.36463, 46.948568 ], [ 0.325352, 46.930943 ], [ 0.298206, 46.971264 ], [ 0.309935, 47.028031 ], [ 0.264221, 47.046434 ], [ 0.243872, 47.070949 ], [ 0.208199, 47.053237 ], [ 0.132102, 47.121391 ], [ 0.078071, 47.123741 ], [ 0.05374, 47.164611 ], [ 0.072876, 47.214493 ], [ 0.133386, 47.235185 ], [ 0.191208, 47.232205 ], [ 0.256481, 47.248668 ], [ 0.350965, 47.297966 ], [ 0.442287, 47.324316 ], [ 0.494369, 47.358714 ], [ 0.664503, 47.394951 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "37005", "code_dpt": "37", "nom_dpt": "INDRE-ET-LOIRE", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "5", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.230002, 47.608398 ], [ 0.322104, 47.595237 ], [ 0.378484, 47.568526 ], [ 0.402577, 47.578512 ], [ 0.364557, 47.622069 ], [ 0.382788, 47.643103 ], [ 0.422198, 47.619565 ], [ 0.461177, 47.643806 ], [ 0.498418, 47.644763 ], [ 0.593341, 47.671845 ], [ 0.614431, 47.694214 ], [ 0.628781, 47.708031 ], [ 0.712153, 47.681813 ], [ 0.738211, 47.643718 ], [ 0.738471, 47.61652 ], [ 0.709151, 47.553408 ], [ 0.685627, 47.525892 ], [ 0.708298, 47.496046 ], [ 0.663357, 47.482392 ], [ 0.710405, 47.438749 ], [ 0.704457, 47.430192 ], [ 0.682085, 47.409564 ], [ 0.664503, 47.394951 ], [ 0.494369, 47.358714 ], [ 0.442287, 47.324316 ], [ 0.350965, 47.297966 ], [ 0.256481, 47.248668 ], [ 0.191208, 47.232205 ], [ 0.133386, 47.235185 ], [ 0.072876, 47.214493 ], [ 0.072451, 47.219878 ], [ 0.082382, 47.286874 ], [ 0.117462, 47.332343 ], [ 0.147298, 47.345376 ], [ 0.182143, 47.381943 ], [ 0.180874, 47.453226 ], [ 0.220109, 47.501953 ], [ 0.200087, 47.543168 ], [ 0.234568, 47.578613 ], [ 0.230002, 47.608398 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38004", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "4", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.125696, 45.24427 ], [ 6.13968, 45.213059 ], [ 6.180992, 45.164859 ], [ 6.260566, 45.126848 ], [ 6.229263, 45.106807 ], [ 6.203138, 45.012447 ], [ 6.256173, 44.996219 ], [ 6.298856, 45.003711 ], [ 6.330079, 44.947764 ], [ 6.358172, 44.941575 ], [ 6.355364, 44.854824 ], [ 6.304353, 44.872792 ], [ 6.248866, 44.85256 ], [ 6.130449, 44.862515 ], [ 6.056502, 44.815814 ], [ 6.030211, 44.838096 ], [ 6.003416, 44.820355 ], [ 5.951122, 44.759621 ], [ 5.829361, 44.742437 ], [ 5.80147, 44.706779 ], [ 5.755312, 44.696965 ], [ 5.73636, 44.712668 ], [ 5.647102, 44.724099 ], [ 5.626315, 44.753293 ], [ 5.482028, 44.786588 ], [ 5.460225, 44.799946 ], [ 5.483565, 44.923013 ], [ 5.477675, 44.966761 ], [ 5.49306, 44.995415 ], [ 5.465229, 45.043544 ], [ 5.494196, 45.071672 ], [ 5.494293, 45.140855 ], [ 5.544941, 45.235277 ], [ 5.577221, 45.242897 ], [ 5.637478, 45.195733 ], [ 5.701361, 45.187962 ], [ 5.699648, 45.160452 ], [ 5.714144, 45.134865 ], [ 5.70302, 45.103044 ], [ 5.725778, 45.089994 ], [ 5.702652, 45.061494 ], [ 5.697513, 45.023996 ], [ 5.709589, 44.996847 ], [ 5.744033, 44.996264 ], [ 5.794429, 45.018911 ], [ 5.823103, 45.01344 ], [ 5.841174, 45.053424 ], [ 5.880315, 45.094486 ], [ 5.95923, 45.156896 ], [ 5.991133, 45.170471 ], [ 6.001986, 45.207205 ], [ 6.040428, 45.238721 ], [ 6.095907, 45.221671 ], [ 6.125696, 45.24427 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38005", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "5", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.125696, 45.24427 ], [ 6.095907, 45.221671 ], [ 6.040428, 45.238721 ], [ 6.001986, 45.207205 ], [ 5.991133, 45.170471 ], [ 5.95923, 45.156896 ], [ 5.880315, 45.094486 ], [ 5.866023, 45.119397 ], [ 5.801419, 45.160619 ], [ 5.805288, 45.206202 ], [ 5.820517, 45.203142 ], [ 5.889757, 45.257461 ], [ 5.870423, 45.272456 ], [ 5.787891, 45.287583 ], [ 5.761206, 45.26654 ], [ 5.720136, 45.199633 ], [ 5.714042, 45.20175 ], [ 5.681064, 45.213398 ], [ 5.639765, 45.2546 ], [ 5.707867, 45.312082 ], [ 5.71499, 45.335885 ], [ 5.664176, 45.355963 ], [ 5.681931, 45.399542 ], [ 5.676319, 45.428562 ], [ 5.618746, 45.415128 ], [ 5.57345, 45.441683 ], [ 5.523156, 45.455808 ], [ 5.57122, 45.532594 ], [ 5.60588, 45.531723 ], [ 5.628728, 45.506648 ], [ 5.69839, 45.484407 ], [ 5.713964, 45.497484 ], [ 5.736531, 45.471861 ], [ 5.739988, 45.437583 ], [ 5.782462, 45.441105 ], [ 5.91089, 45.394152 ], [ 5.904455, 45.432308 ], [ 5.91537, 45.476447 ], [ 5.971015, 45.491397 ], [ 6.007789, 45.454111 ], [ 6.049236, 45.437807 ], [ 6.090016, 45.444008 ], [ 6.130143, 45.435028 ], [ 6.175458, 45.394101 ], [ 6.194759, 45.352251 ], [ 6.184451, 45.317958 ], [ 6.130815, 45.284534 ], [ 6.125696, 45.24427 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38006", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "6", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.435634, 45.829773 ], [ 5.422513, 45.807127 ], [ 5.483998, 45.753284 ], [ 5.545542, 45.713593 ], [ 5.555279, 45.671605 ], [ 5.578845, 45.664644 ], [ 5.614911, 45.625412 ], [ 5.59216, 45.609559 ], [ 5.520136, 45.61753 ], [ 5.439275, 45.618267 ], [ 5.446686, 45.640431 ], [ 5.406206, 45.648754 ], [ 5.411007, 45.611804 ], [ 5.392112, 45.580893 ], [ 5.352715, 45.585463 ], [ 5.316383, 45.569885 ], [ 5.246886, 45.610284 ], [ 5.254516, 45.627779 ], [ 5.187041, 45.634155 ], [ 5.144222, 45.6565 ], [ 5.153997, 45.699724 ], [ 5.12668, 45.737554 ], [ 5.094527, 45.739453 ], [ 5.090735, 45.787158 ], [ 5.101067, 45.813378 ], [ 5.157854, 45.803218 ], [ 5.191015, 45.77195 ], [ 5.224334, 45.768839 ], [ 5.266895, 45.789369 ], [ 5.302491, 45.848133 ], [ 5.354928, 45.882781 ], [ 5.435634, 45.829773 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38007", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "7", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.800494, 45.298361 ], [ 4.762214, 45.323549 ], [ 4.755997, 45.365681 ], [ 4.757023, 45.371456 ], [ 4.785228, 45.373136 ], [ 4.811627, 45.407614 ], [ 4.847476, 45.396698 ], [ 4.92822, 45.414649 ], [ 4.918606, 45.452176 ], [ 4.940074, 45.461886 ], [ 5.037178, 45.452562 ], [ 5.052423, 45.492116 ], [ 5.045442, 45.525815 ], [ 5.137133, 45.55106 ], [ 5.198054, 45.547362 ], [ 5.214545, 45.535877 ], [ 5.268311, 45.552965 ], [ 5.28448, 45.507848 ], [ 5.332741, 45.492243 ], [ 5.371402, 45.517847 ], [ 5.468437, 45.516413 ], [ 5.514226, 45.537668 ], [ 5.57122, 45.532594 ], [ 5.523156, 45.455808 ], [ 5.57345, 45.441683 ], [ 5.525618, 45.421274 ], [ 5.534989, 45.398134 ], [ 5.415236, 45.36697 ], [ 5.403074, 45.326531 ], [ 5.43206, 45.286095 ], [ 5.377541, 45.288745 ], [ 5.332601, 45.277944 ], [ 5.306407, 45.231709 ], [ 5.245654, 45.210652 ], [ 5.201713, 45.2174 ], [ 5.176541, 45.248402 ], [ 5.122195, 45.245439 ], [ 5.130631, 45.283678 ], [ 5.073566, 45.283228 ], [ 5.052797, 45.318993 ], [ 5.020647, 45.319289 ], [ 4.990147, 45.343985 ], [ 4.878779, 45.297713 ], [ 4.858799, 45.308954 ], [ 4.800494, 45.298361 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38008", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "8", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.757023, 45.371456 ], [ 4.743146, 45.420418 ], [ 4.756936, 45.455707 ], [ 4.841456, 45.500603 ], [ 4.871814, 45.527636 ], [ 4.808442, 45.57235 ], [ 4.908274, 45.606702 ], [ 5.002822, 45.62247 ], [ 5.034142, 45.61399 ], [ 5.054025, 45.660055 ], [ 5.089164, 45.677199 ], [ 5.078374, 45.615397 ], [ 5.119191, 45.588855 ], [ 5.137133, 45.55106 ], [ 5.045442, 45.525815 ], [ 5.052423, 45.492116 ], [ 5.037178, 45.452562 ], [ 4.940074, 45.461886 ], [ 4.918606, 45.452176 ], [ 4.92822, 45.414649 ], [ 4.847476, 45.396698 ], [ 4.811627, 45.407614 ], [ 4.785228, 45.373136 ], [ 4.757023, 45.371456 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38009", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "9", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.227494, 45.077216 ], [ 5.156072, 45.082791 ], [ 5.186889, 45.12013 ], [ 5.188451, 45.170739 ], [ 5.16558, 45.200271 ], [ 5.201713, 45.2174 ], [ 5.245654, 45.210652 ], [ 5.306407, 45.231709 ], [ 5.332601, 45.277944 ], [ 5.377541, 45.288745 ], [ 5.43206, 45.286095 ], [ 5.403074, 45.326531 ], [ 5.415236, 45.36697 ], [ 5.534989, 45.398134 ], [ 5.525618, 45.421274 ], [ 5.57345, 45.441683 ], [ 5.618746, 45.415128 ], [ 5.676319, 45.428562 ], [ 5.681931, 45.399542 ], [ 5.664176, 45.355963 ], [ 5.71499, 45.335885 ], [ 5.707867, 45.312082 ], [ 5.639765, 45.2546 ], [ 5.615665, 45.294176 ], [ 5.573045, 45.26184 ], [ 5.577221, 45.242897 ], [ 5.544941, 45.235277 ], [ 5.494293, 45.140855 ], [ 5.494196, 45.071672 ], [ 5.46395, 45.08693 ], [ 5.435975, 45.056872 ], [ 5.384095, 45.035979 ], [ 5.304003, 45.06086 ], [ 5.246537, 45.060728 ], [ 5.227494, 45.077216 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38010", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "10", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.137133, 45.55106 ], [ 5.119191, 45.588855 ], [ 5.078374, 45.615397 ], [ 5.089164, 45.677199 ], [ 5.104281, 45.698294 ], [ 5.153997, 45.699724 ], [ 5.144222, 45.6565 ], [ 5.187041, 45.634155 ], [ 5.254516, 45.627779 ], [ 5.246886, 45.610284 ], [ 5.316383, 45.569885 ], [ 5.352715, 45.585463 ], [ 5.392112, 45.580893 ], [ 5.411007, 45.611804 ], [ 5.406206, 45.648754 ], [ 5.446686, 45.640431 ], [ 5.439275, 45.618267 ], [ 5.520136, 45.61753 ], [ 5.59216, 45.609559 ], [ 5.614911, 45.625412 ], [ 5.623748, 45.613268 ], [ 5.671145, 45.561328 ], [ 5.671341, 45.536645 ], [ 5.713964, 45.497484 ], [ 5.69839, 45.484407 ], [ 5.628728, 45.506648 ], [ 5.60588, 45.531723 ], [ 5.57122, 45.532594 ], [ 5.514226, 45.537668 ], [ 5.468437, 45.516413 ], [ 5.371402, 45.517847 ], [ 5.332741, 45.492243 ], [ 5.28448, 45.507848 ], [ 5.268311, 45.552965 ], [ 5.214545, 45.535877 ], [ 5.198054, 45.547362 ], [ 5.137133, 45.55106 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "39001", "code_dpt": "39", "nom_dpt": "JURA", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "1", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.310561, 46.446775 ], [ 5.323351, 46.462506 ], [ 5.37379, 46.460451 ], [ 5.420044, 46.480183 ], [ 5.421061, 46.50044 ], [ 5.359178, 46.520147 ], [ 5.36788, 46.566946 ], [ 5.405691, 46.581671 ], [ 5.41379, 46.614643 ], [ 5.440601, 46.637911 ], [ 5.390789, 46.72636 ], [ 5.361726, 46.733114 ], [ 5.390248, 46.770592 ], [ 5.332496, 46.797713 ], [ 5.375268, 46.826986 ], [ 5.45949, 46.83081 ], [ 5.459286, 46.855245 ], [ 5.415235, 46.861808 ], [ 5.403844, 46.88952 ], [ 5.461368, 46.911726 ], [ 5.524377, 46.909552 ], [ 5.55711, 46.940458 ], [ 5.596107, 46.938802 ], [ 5.659958, 46.90714 ], [ 5.732243, 46.884493 ], [ 5.743044, 46.865308 ], [ 5.797359, 46.835044 ], [ 5.84522, 46.835428 ], [ 5.812448, 46.81362 ], [ 5.811189, 46.776721 ], [ 5.755905, 46.723408 ], [ 5.768457, 46.686698 ], [ 5.742493, 46.676537 ], [ 5.705688, 46.615624 ], [ 5.661219, 46.6009 ], [ 5.646643, 46.548469 ], [ 5.681646, 46.530554 ], [ 5.675533, 46.46644 ], [ 5.698098, 46.439952 ], [ 5.648175, 46.383125 ], [ 5.637458, 46.336442 ], [ 5.597891, 46.297898 ], [ 5.564674, 46.292767 ], [ 5.51137, 46.26436 ], [ 5.457672, 46.276848 ], [ 5.475305, 46.315385 ], [ 5.437146, 46.315127 ], [ 5.423534, 46.347732 ], [ 5.373462, 46.352236 ], [ 5.377881, 46.382324 ], [ 5.309146, 46.410257 ], [ 5.310561, 46.446775 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "39002", "code_dpt": "39", "nom_dpt": "JURA", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "2", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.826262, 46.261715 ], [ 5.766045, 46.26833 ], [ 5.725181, 46.260693 ], [ 5.714553, 46.30807 ], [ 5.684582, 46.310934 ], [ 5.637458, 46.336442 ], [ 5.648175, 46.383125 ], [ 5.698098, 46.439952 ], [ 5.675533, 46.46644 ], [ 5.681646, 46.530554 ], [ 5.646643, 46.548469 ], [ 5.661219, 46.6009 ], [ 5.705688, 46.615624 ], [ 5.742493, 46.676537 ], [ 5.768457, 46.686698 ], [ 5.755905, 46.723408 ], [ 5.811189, 46.776721 ], [ 5.812448, 46.81362 ], [ 5.84522, 46.835428 ], [ 5.903931, 46.857675 ], [ 5.926396, 46.88109 ], [ 5.963589, 46.86584 ], [ 6.028808, 46.860321 ], [ 6.105555, 46.8453 ], [ 6.15224, 46.819529 ], [ 6.206575, 46.766337 ], [ 6.180198, 46.741442 ], [ 6.071211, 46.687569 ], [ 6.103265, 46.65249 ], [ 6.048567, 46.607723 ], [ 6.138109, 46.55766 ], [ 6.155487, 46.545557 ], [ 6.073784, 46.464409 ], [ 6.086247, 46.443149 ], [ 6.064008, 46.416227 ], [ 5.984117, 46.362656 ], [ 5.941531, 46.309264 ], [ 5.909198, 46.283945 ], [ 5.826262, 46.261715 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "39003", "code_dpt": "39", "nom_dpt": "JURA", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "3", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.403844, 46.88952 ], [ 5.328718, 46.889317 ], [ 5.307367, 46.936459 ], [ 5.263134, 46.953522 ], [ 5.255236, 46.979888 ], [ 5.317198, 47.015806 ], [ 5.275327, 47.026934 ], [ 5.323975, 47.073793 ], [ 5.385646, 47.08175 ], [ 5.400588, 47.107562 ], [ 5.438985, 47.142986 ], [ 5.479136, 47.218514 ], [ 5.488452, 47.288146 ], [ 5.518539, 47.304187 ], [ 5.533238, 47.286528 ], [ 5.601314, 47.260206 ], [ 5.698726, 47.265006 ], [ 5.720454, 47.220044 ], [ 5.811467, 47.169054 ], [ 5.816597, 47.134795 ], [ 5.768989, 47.090037 ], [ 5.784717, 47.054912 ], [ 5.750931, 47.040668 ], [ 5.840657, 47.008513 ], [ 5.945111, 46.988848 ], [ 5.997222, 46.9335 ], [ 6.028808, 46.860321 ], [ 5.963589, 46.86584 ], [ 5.926396, 46.88109 ], [ 5.903931, 46.857675 ], [ 5.84522, 46.835428 ], [ 5.797359, 46.835044 ], [ 5.743044, 46.865308 ], [ 5.732243, 46.884493 ], [ 5.659958, 46.90714 ], [ 5.596107, 46.938802 ], [ 5.55711, 46.940458 ], [ 5.524377, 46.909552 ], [ 5.461368, 46.911726 ], [ 5.403844, 46.88952 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "40001", "code_dpt": "40", "nom_dpt": "LANDES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.383673, 43.884382 ], [ -1.316381, 44.128841 ], [ -1.274754, 44.33589 ], [ -1.25389, 44.467604 ], [ -1.106985, 44.502637 ], [ -1.085166, 44.532195 ], [ -1.011142, 44.510376 ], [ -0.981033, 44.484787 ], [ -1.007738, 44.436515 ], [ -0.971419, 44.429178 ], [ -0.91917, 44.443344 ], [ -0.844747, 44.418632 ], [ -0.780281, 44.428111 ], [ -0.726968, 44.447537 ], [ -0.67195, 44.456378 ], [ -0.628064, 44.442855 ], [ -0.625806, 44.408245 ], [ -0.528103, 44.364654 ], [ -0.517635, 44.339111 ], [ -0.43184, 44.322577 ], [ -0.429625, 44.301545 ], [ -0.383388, 44.28632 ], [ -0.396314, 44.237468 ], [ -0.389617, 44.209485 ], [ -0.273621, 44.194017 ], [ -0.223447, 44.205898 ], [ -0.226004, 44.264784 ], [ -0.194666, 44.270394 ], [ -0.140689, 44.226414 ], [ -0.129155, 44.15241 ], [ -0.003539, 44.149898 ], [ 0.034594, 44.130652 ], [ 0.135797, 44.124194 ], [ 0.100821, 44.08677 ], [ 0.076223, 44.030736 ], [ 0.076046, 43.983143 ], [ 0.055425, 43.957139 ], [ 0.075082, 43.914682 ], [ 0.033178, 43.89998 ], [ -0.020386, 43.929293 ], [ 0.0056, 43.955586 ], [ -0.04419, 43.963667 ], [ -0.102561, 43.927278 ], [ -0.125395, 43.943505 ], [ -0.177077, 43.935682 ], [ -0.209669, 43.911734 ], [ -0.208188, 43.928387 ], [ -0.262804, 43.96877 ], [ -0.296209, 43.982666 ], [ -0.373896, 43.904989 ], [ -0.363163, 43.87402 ], [ -0.410097, 43.849476 ], [ -0.443362, 43.858267 ], [ -0.456172, 43.81549 ], [ -0.50779, 43.784584 ], [ -0.543027, 43.815295 ], [ -0.588392, 43.82908 ], [ -0.630382, 43.825842 ], [ -0.657592, 43.854355 ], [ -0.685424, 43.858139 ], [ -0.661258, 43.907844 ], [ -0.715557, 43.926857 ], [ -0.688457, 43.94884 ], [ -0.67741, 44.002792 ], [ -0.706617, 44.043243 ], [ -0.785757, 44.08654 ], [ -0.849534, 44.077053 ], [ -0.922106, 44.083181 ], [ -0.940894, 44.04328 ], [ -0.962375, 44.046766 ], [ -0.93001, 44.099677 ], [ -0.945503, 44.113007 ], [ -1.076673, 44.135204 ], [ -1.09276, 44.094291 ], [ -1.077496, 44.029666 ], [ -1.171723, 43.959167 ], [ -1.110207, 43.9241 ], [ -1.019653, 43.91118 ], [ -1.046456, 43.836921 ], [ -1.173702, 43.833384 ], [ -1.250295, 43.807866 ], [ -1.32109, 43.827774 ], [ -1.356693, 43.889275 ], [ -1.383673, 43.884382 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "40002", "code_dpt": "40", "nom_dpt": "LANDES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.046456, 43.836921 ], [ -1.003585, 43.822555 ], [ -0.985655, 43.770881 ], [ -0.933938, 43.741345 ], [ -0.972584, 43.716272 ], [ -0.95334, 43.672899 ], [ -1.023441, 43.649496 ], [ -1.053686, 43.624 ], [ -1.103492, 43.640934 ], [ -1.195142, 43.653643 ], [ -1.234252, 43.60536 ], [ -1.199227, 43.582059 ], [ -1.195616, 43.546095 ], [ -1.291381, 43.498386 ], [ -1.322411, 43.504947 ], [ -1.417658, 43.496907 ], [ -1.479605, 43.539178 ], [ -1.524867, 43.529701 ], [ -1.448702, 43.641338 ], [ -1.427606, 43.741363 ], [ -1.383673, 43.884382 ], [ -1.356693, 43.889275 ], [ -1.32109, 43.827774 ], [ -1.250295, 43.807866 ], [ -1.173702, 43.833384 ], [ -1.046456, 43.836921 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "40003", "code_dpt": "40", "nom_dpt": "LANDES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.242837, 43.584985 ], [ -0.283325, 43.584165 ], [ -0.305985, 43.559478 ], [ -0.406042, 43.568226 ], [ -0.449713, 43.54987 ], [ -0.449232, 43.596267 ], [ -0.552764, 43.543158 ], [ -0.600039, 43.538654 ], [ -0.657889, 43.559749 ], [ -0.707609, 43.557882 ], [ -0.770305, 43.579168 ], [ -0.803351, 43.556189 ], [ -0.855713, 43.5419 ], [ -0.893691, 43.550273 ], [ -0.923683, 43.534616 ], [ -0.9882, 43.540199 ], [ -0.992383, 43.504029 ], [ -1.068997, 43.50845 ], [ -1.134034, 43.520179 ], [ -1.195616, 43.546095 ], [ -1.199227, 43.582059 ], [ -1.234252, 43.60536 ], [ -1.195142, 43.653643 ], [ -1.103492, 43.640934 ], [ -1.053686, 43.624 ], [ -1.023441, 43.649496 ], [ -0.95334, 43.672899 ], [ -0.972584, 43.716272 ], [ -0.933938, 43.741345 ], [ -0.985655, 43.770881 ], [ -1.003585, 43.822555 ], [ -1.046456, 43.836921 ], [ -1.019653, 43.91118 ], [ -1.110207, 43.9241 ], [ -1.171723, 43.959167 ], [ -1.077496, 44.029666 ], [ -1.09276, 44.094291 ], [ -1.076673, 44.135204 ], [ -0.945503, 44.113007 ], [ -0.93001, 44.099677 ], [ -0.962375, 44.046766 ], [ -0.940894, 44.04328 ], [ -0.922106, 44.083181 ], [ -0.849534, 44.077053 ], [ -0.785757, 44.08654 ], [ -0.706617, 44.043243 ], [ -0.67741, 44.002792 ], [ -0.688457, 43.94884 ], [ -0.715557, 43.926857 ], [ -0.661258, 43.907844 ], [ -0.685424, 43.858139 ], [ -0.657592, 43.854355 ], [ -0.630382, 43.825842 ], [ -0.588392, 43.82908 ], [ -0.543027, 43.815295 ], [ -0.50779, 43.784584 ], [ -0.456172, 43.81549 ], [ -0.443362, 43.858267 ], [ -0.410097, 43.849476 ], [ -0.363163, 43.87402 ], [ -0.373896, 43.904989 ], [ -0.296209, 43.982666 ], [ -0.262804, 43.96877 ], [ -0.208188, 43.928387 ], [ -0.209669, 43.911734 ], [ -0.223554, 43.892429 ], [ -0.185723, 43.866889 ], [ -0.194708, 43.809211 ], [ -0.218647, 43.796591 ], [ -0.194143, 43.737017 ], [ -0.247381, 43.709243 ], [ -0.23973, 43.671242 ], [ -0.274354, 43.616044 ], [ -0.242837, 43.584985 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "41001", "code_dpt": "41", "nom_dpt": "LOIR-ET-CHER", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "1", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.460827, 47.653069 ], [ 1.469045, 47.626682 ], [ 1.410743, 47.598021 ], [ 1.420509, 47.532449 ], [ 1.526887, 47.513585 ], [ 1.500283, 47.462368 ], [ 1.51561, 47.445863 ], [ 1.482262, 47.39088 ], [ 1.444085, 47.373232 ], [ 1.395953, 47.384499 ], [ 1.318638, 47.375978 ], [ 1.33609, 47.349226 ], [ 1.258737, 47.325311 ], [ 1.243638, 47.283662 ], [ 1.223335, 47.294177 ], [ 1.162064, 47.272205 ], [ 1.108127, 47.298407 ], [ 1.094853, 47.328537 ], [ 1.122414, 47.355072 ], [ 1.110523, 47.408628 ], [ 1.133366, 47.44895 ], [ 1.112883, 47.465917 ], [ 1.246059, 47.500521 ], [ 1.278667, 47.535114 ], [ 1.250085, 47.588673 ], [ 1.177129, 47.607319 ], [ 1.178229, 47.633239 ], [ 1.21724, 47.651641 ], [ 1.27138, 47.653193 ], [ 1.354725, 47.689012 ], [ 1.395984, 47.668393 ], [ 1.410979, 47.633478 ], [ 1.460827, 47.653069 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "41002", "code_dpt": "41", "nom_dpt": "LOIR-ET-CHER", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "2", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.460827, 47.653069 ], [ 1.497641, 47.661074 ], [ 1.580507, 47.703853 ], [ 1.582867, 47.726441 ], [ 1.629262, 47.759409 ], [ 1.712265, 47.732617 ], [ 1.728065, 47.699565 ], [ 1.746726, 47.656755 ], [ 1.811415, 47.652507 ], [ 1.865859, 47.675948 ], [ 1.937186, 47.677582 ], [ 1.99523, 47.66426 ], [ 2.008923, 47.677456 ], [ 2.07455, 47.682152 ], [ 2.149203, 47.670747 ], [ 2.203685, 47.678548 ], [ 2.240709, 47.641259 ], [ 2.239214, 47.620978 ], [ 2.15629, 47.601046 ], [ 2.119575, 47.582952 ], [ 2.131382, 47.550696 ], [ 2.193775, 47.54857 ], [ 2.246699, 47.442403 ], [ 2.230388, 47.407529 ], [ 2.188242, 47.435699 ], [ 2.102739, 47.391616 ], [ 2.157151, 47.300213 ], [ 2.132895, 47.281191 ], [ 2.073326, 47.284665 ], [ 1.996609, 47.265751 ], [ 1.941373, 47.290064 ], [ 1.915639, 47.234185 ], [ 1.875333, 47.207079 ], [ 1.839079, 47.219308 ], [ 1.776111, 47.231383 ], [ 1.71582, 47.276821 ], [ 1.665701, 47.258887 ], [ 1.593136, 47.274416 ], [ 1.482936, 47.238676 ], [ 1.421208, 47.229163 ], [ 1.392843, 47.208693 ], [ 1.326666, 47.186225 ], [ 1.294762, 47.235989 ], [ 1.242151, 47.275734 ], [ 1.243638, 47.283662 ], [ 1.258737, 47.325311 ], [ 1.33609, 47.349226 ], [ 1.318638, 47.375978 ], [ 1.395953, 47.384499 ], [ 1.444085, 47.373232 ], [ 1.482262, 47.39088 ], [ 1.51561, 47.445863 ], [ 1.500283, 47.462368 ], [ 1.526887, 47.513585 ], [ 1.420509, 47.532449 ], [ 1.410743, 47.598021 ], [ 1.469045, 47.626682 ], [ 1.460827, 47.653069 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "41003", "code_dpt": "41", "nom_dpt": "LOIR-ET-CHER", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "3", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.520124, 47.982278 ], [ 1.564819, 47.989772 ], [ 1.555956, 47.955317 ], [ 1.525424, 47.929114 ], [ 1.579184, 47.903529 ], [ 1.583626, 47.868487 ], [ 1.535838, 47.83852 ], [ 1.570241, 47.796718 ], [ 1.547817, 47.769536 ], [ 1.596397, 47.743087 ], [ 1.582867, 47.726441 ], [ 1.580507, 47.703853 ], [ 1.497641, 47.661074 ], [ 1.460827, 47.653069 ], [ 1.410979, 47.633478 ], [ 1.395984, 47.668393 ], [ 1.354725, 47.689012 ], [ 1.27138, 47.653193 ], [ 1.21724, 47.651641 ], [ 1.178229, 47.633239 ], [ 1.177129, 47.607319 ], [ 1.250085, 47.588673 ], [ 1.278667, 47.535114 ], [ 1.246059, 47.500521 ], [ 1.112883, 47.465917 ], [ 1.093746, 47.470486 ], [ 1.045035, 47.531574 ], [ 1.076557, 47.561902 ], [ 1.033353, 47.607012 ], [ 0.919605, 47.632755 ], [ 0.899155, 47.603719 ], [ 0.864282, 47.599827 ], [ 0.844708, 47.64511 ], [ 0.85935, 47.666719 ], [ 0.735651, 47.695543 ], [ 0.712153, 47.681813 ], [ 0.628781, 47.708031 ], [ 0.614431, 47.694214 ], [ 0.608728, 47.725299 ], [ 0.712824, 47.79049 ], [ 0.768413, 47.831107 ], [ 0.759813, 47.898091 ], [ 0.816349, 47.934277 ], [ 0.845193, 47.941192 ], [ 0.824356, 47.981744 ], [ 0.840563, 48.019034 ], [ 0.794879, 48.046931 ], [ 0.803562, 48.071598 ], [ 0.843023, 48.072642 ], [ 0.841217, 48.103062 ], [ 0.888905, 48.10227 ], [ 1.029601, 48.132835 ], [ 1.04449, 48.118564 ], [ 1.009409, 48.084159 ], [ 1.112233, 48.080729 ], [ 1.124886, 48.035286 ], [ 1.163611, 48.028542 ], [ 1.205215, 47.96864 ], [ 1.248007, 47.978575 ], [ 1.308631, 47.953764 ], [ 1.370016, 47.953749 ], [ 1.437241, 47.976499 ], [ 1.441396, 48.01163 ], [ 1.520124, 47.982278 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "42003", "code_dpt": "42", "nom_dpt": "LOIRE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.681929, 45.479806 ], [ 4.671916, 45.454683 ], [ 4.638987, 45.450278 ], [ 4.612385, 45.392509 ], [ 4.548657, 45.372054 ], [ 4.483243, 45.389124 ], [ 4.469987, 45.4239 ], [ 4.465946, 45.471442 ], [ 4.42996, 45.466791 ], [ 4.367251, 45.483189 ], [ 4.304552, 45.478676 ], [ 4.280422, 45.519777 ], [ 4.344908, 45.515349 ], [ 4.359924, 45.562513 ], [ 4.405466, 45.549425 ], [ 4.443802, 45.554208 ], [ 4.467814, 45.585752 ], [ 4.547261, 45.580157 ], [ 4.614858, 45.575477 ], [ 4.650786, 45.529985 ], [ 4.654164, 45.487694 ], [ 4.681929, 45.479806 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "42004", "code_dpt": "42", "nom_dpt": "LOIRE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "4", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.483135, 45.236446 ], [ 4.419655, 45.275401 ], [ 4.371186, 45.259886 ], [ 4.350182, 45.277703 ], [ 4.366258, 45.301282 ], [ 4.331653, 45.318477 ], [ 4.36338, 45.337485 ], [ 4.348396, 45.36046 ], [ 4.308199, 45.370987 ], [ 4.271631, 45.359764 ], [ 4.244341, 45.385277 ], [ 4.144443, 45.384108 ], [ 4.080171, 45.355524 ], [ 4.023432, 45.344972 ], [ 3.978268, 45.375696 ], [ 3.938752, 45.371396 ], [ 3.91933, 45.341804 ], [ 3.897408, 45.357084 ], [ 3.898541, 45.409818 ], [ 3.975106, 45.44827 ], [ 3.954474, 45.555827 ], [ 4.06549, 45.538151 ], [ 4.109756, 45.58511 ], [ 4.205318, 45.560783 ], [ 4.218457, 45.591027 ], [ 4.198398, 45.635677 ], [ 4.224986, 45.642722 ], [ 4.2295, 45.595608 ], [ 4.275134, 45.558932 ], [ 4.244617, 45.54726 ], [ 4.280422, 45.519777 ], [ 4.304552, 45.478676 ], [ 4.254921, 45.463923 ], [ 4.251408, 45.421599 ], [ 4.300262, 45.413505 ], [ 4.358841, 45.420475 ], [ 4.406494, 45.396841 ], [ 4.43565, 45.406179 ], [ 4.483243, 45.389124 ], [ 4.548657, 45.372054 ], [ 4.612385, 45.392509 ], [ 4.638987, 45.450278 ], [ 4.671916, 45.454683 ], [ 4.681929, 45.479806 ], [ 4.721828, 45.494395 ], [ 4.756936, 45.455707 ], [ 4.743146, 45.420418 ], [ 4.757023, 45.371456 ], [ 4.755997, 45.365681 ], [ 4.68013, 45.346265 ], [ 4.615799, 45.310259 ], [ 4.591348, 45.272883 ], [ 4.605315, 45.253401 ], [ 4.53626, 45.236818 ], [ 4.483135, 45.236446 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "42005", "code_dpt": "42", "nom_dpt": "LOIRE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "5", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.323221, 45.903887 ], [ 4.24676, 45.86965 ], [ 4.2072, 45.890532 ], [ 4.169653, 45.867836 ], [ 4.125578, 45.903244 ], [ 4.105989, 45.891315 ], [ 4.006216, 45.94412 ], [ 3.946039, 45.934615 ], [ 3.977703, 45.897757 ], [ 3.930637, 45.861753 ], [ 3.86906, 45.834552 ], [ 3.754371, 45.886031 ], [ 3.72135, 45.922745 ], [ 3.693892, 45.930958 ], [ 3.709612, 45.97414 ], [ 3.742071, 45.966692 ], [ 3.82322, 45.988158 ], [ 3.805606, 46.053061 ], [ 3.821294, 46.090239 ], [ 3.802831, 46.110138 ], [ 3.791627, 46.156585 ], [ 3.807687, 46.257215 ], [ 3.899534, 46.275914 ], [ 3.90876, 46.260622 ], [ 3.890132, 46.214491 ], [ 3.965168, 46.202865 ], [ 3.988528, 46.169857 ], [ 4.027488, 46.169593 ], [ 4.103832, 46.198442 ], [ 4.133393, 46.177321 ], [ 4.178133, 46.173687 ], [ 4.206215, 46.194494 ], [ 4.245367, 46.188227 ], [ 4.282432, 46.156816 ], [ 4.363353, 46.198563 ], [ 4.38808, 46.219789 ], [ 4.422965, 46.203137 ], [ 4.438591, 46.167879 ], [ 4.417362, 46.135921 ], [ 4.381809, 46.149661 ], [ 4.322116, 46.129982 ], [ 4.310407, 46.081719 ], [ 4.261272, 46.036858 ], [ 4.312008, 46.00513 ], [ 4.288823, 45.973172 ], [ 4.311989, 45.942006 ], [ 4.34602, 45.929943 ], [ 4.323221, 45.903887 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "42006", "code_dpt": "42", "nom_dpt": "LOIRE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "6", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.467814, 45.585752 ], [ 4.443802, 45.554208 ], [ 4.405466, 45.549425 ], [ 4.359924, 45.562513 ], [ 4.344908, 45.515349 ], [ 4.280422, 45.519777 ], [ 4.244617, 45.54726 ], [ 4.275134, 45.558932 ], [ 4.2295, 45.595608 ], [ 4.224986, 45.642722 ], [ 4.198398, 45.635677 ], [ 4.218457, 45.591027 ], [ 4.205318, 45.560783 ], [ 4.109756, 45.58511 ], [ 4.06549, 45.538151 ], [ 3.954474, 45.555827 ], [ 3.908086, 45.59669 ], [ 3.823924, 45.632143 ], [ 3.777585, 45.690566 ], [ 3.78238, 45.71165 ], [ 3.755838, 45.74661 ], [ 3.700393, 45.783556 ], [ 3.726892, 45.83027 ], [ 3.719124, 45.850068 ], [ 3.754371, 45.886031 ], [ 3.86906, 45.834552 ], [ 3.930637, 45.861753 ], [ 3.977703, 45.897757 ], [ 3.946039, 45.934615 ], [ 4.006216, 45.94412 ], [ 4.105989, 45.891315 ], [ 4.125578, 45.903244 ], [ 4.169653, 45.867836 ], [ 4.2072, 45.890532 ], [ 4.24676, 45.86965 ], [ 4.323221, 45.903887 ], [ 4.390601, 45.837476 ], [ 4.37645, 45.784107 ], [ 4.390677, 45.755077 ], [ 4.365516, 45.698519 ], [ 4.410284, 45.632051 ], [ 4.441489, 45.623054 ], [ 4.467814, 45.585752 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "43001", "code_dpt": "43", "nom_dpt": "HAUTE-LOIRE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.483135, 45.236446 ], [ 4.472579, 45.179895 ], [ 4.411159, 45.140829 ], [ 4.37257, 45.128073 ], [ 4.347737, 45.065249 ], [ 4.379068, 45.036175 ], [ 4.318086, 45.029934 ], [ 4.29111, 44.997328 ], [ 4.307317, 44.985883 ], [ 4.256587, 44.959876 ], [ 4.223854, 44.962879 ], [ 4.216572, 44.933577 ], [ 4.179479, 44.886514 ], [ 4.156637, 44.873977 ], [ 4.03891, 44.872764 ], [ 4.020047, 44.845863 ], [ 3.922691, 44.868109 ], [ 3.908767, 44.908246 ], [ 3.925849, 44.958268 ], [ 3.879165, 45.008593 ], [ 3.895251, 45.050606 ], [ 3.902219, 45.05733 ], [ 3.975454, 45.072318 ], [ 3.982223, 45.114058 ], [ 3.943156, 45.108821 ], [ 3.920708, 45.127837 ], [ 3.933589, 45.168702 ], [ 3.860213, 45.167707 ], [ 3.870949, 45.217861 ], [ 3.854573, 45.269125 ], [ 3.940786, 45.293674 ], [ 3.91933, 45.341804 ], [ 3.938752, 45.371396 ], [ 3.978268, 45.375696 ], [ 4.023432, 45.344972 ], [ 4.080171, 45.355524 ], [ 4.144443, 45.384108 ], [ 4.244341, 45.385277 ], [ 4.271631, 45.359764 ], [ 4.308199, 45.370987 ], [ 4.348396, 45.36046 ], [ 4.36338, 45.337485 ], [ 4.331653, 45.318477 ], [ 4.366258, 45.301282 ], [ 4.350182, 45.277703 ], [ 4.371186, 45.259886 ], [ 4.419655, 45.275401 ], [ 4.483135, 45.236446 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "43002", "code_dpt": "43", "nom_dpt": "HAUTE-LOIRE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.020047, 44.845863 ], [ 3.998603, 44.823575 ], [ 3.945543, 44.824346 ], [ 3.924918, 44.769624 ], [ 3.862527, 44.743872 ], [ 3.80699, 44.767583 ], [ 3.743866, 44.837802 ], [ 3.666365, 44.828778 ], [ 3.67364, 44.854124 ], [ 3.644297, 44.877132 ], [ 3.59783, 44.858709 ], [ 3.56877, 44.834183 ], [ 3.507375, 44.824235 ], [ 3.45617, 44.831228 ], [ 3.41038, 44.917787 ], [ 3.403222, 44.956862 ], [ 3.361343, 44.971412 ], [ 3.337174, 45.025348 ], [ 3.298442, 45.035732 ], [ 3.312027, 45.080859 ], [ 3.351855, 45.104835 ], [ 3.288033, 45.120424 ], [ 3.261231, 45.17375 ], [ 3.272226, 45.209461 ], [ 3.238011, 45.218364 ], [ 3.226852, 45.271945 ], [ 3.161342, 45.289086 ], [ 3.112196, 45.284752 ], [ 3.103498, 45.354373 ], [ 3.181128, 45.352311 ], [ 3.215856, 45.370007 ], [ 3.236171, 45.394629 ], [ 3.38001, 45.401158 ], [ 3.455852, 45.400335 ], [ 3.501257, 45.427633 ], [ 3.506886, 45.41103 ], [ 3.55582, 45.393878 ], [ 3.617814, 45.338165 ], [ 3.66318, 45.362975 ], [ 3.789194, 45.358529 ], [ 3.791406, 45.384772 ], [ 3.836299, 45.383095 ], [ 3.852786, 45.361566 ], [ 3.897408, 45.357084 ], [ 3.91933, 45.341804 ], [ 3.940786, 45.293674 ], [ 3.854573, 45.269125 ], [ 3.870949, 45.217861 ], [ 3.860213, 45.167707 ], [ 3.933589, 45.168702 ], [ 3.920708, 45.127837 ], [ 3.943156, 45.108821 ], [ 3.982223, 45.114058 ], [ 3.975454, 45.072318 ], [ 3.902219, 45.05733 ], [ 3.895251, 45.050606 ], [ 3.879165, 45.008593 ], [ 3.925849, 44.958268 ], [ 3.908767, 44.908246 ], [ 3.922691, 44.868109 ], [ 4.020047, 44.845863 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44006", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "6", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.306548, 47.334482 ], [ -1.328, 47.355601 ], [ -1.287754, 47.371276 ], [ -1.22597, 47.370494 ], [ -1.231734, 47.392064 ], [ -1.299499, 47.417596 ], [ -1.343146, 47.466234 ], [ -1.367181, 47.454317 ], [ -1.400212, 47.477424 ], [ -1.507628, 47.502687 ], [ -1.583303, 47.451067 ], [ -1.659426, 47.452469 ], [ -1.693232, 47.42623 ], [ -1.667139, 47.370811 ], [ -1.684053, 47.356414 ], [ -1.723856, 47.346657 ], [ -1.775323, 47.349736 ], [ -1.800836, 47.336039 ], [ -1.841574, 47.38093 ], [ -1.916434, 47.380706 ], [ -1.907216, 47.463154 ], [ -1.850217, 47.485765 ], [ -1.88313, 47.511806 ], [ -1.942687, 47.508201 ], [ -1.965134, 47.542051 ], [ -1.99528, 47.543927 ], [ -2.034952, 47.569377 ], [ -2.096731, 47.572635 ], [ -2.097036, 47.63136 ], [ -2.047413, 47.663786 ], [ -2.012284, 47.666454 ], [ -1.973401, 47.694154 ], [ -1.935304, 47.686806 ], [ -1.862789, 47.707333 ], [ -1.729713, 47.699342 ], [ -1.638131, 47.722209 ], [ -1.627131, 47.759827 ], [ -1.594141, 47.77603 ], [ -1.530422, 47.78478 ], [ -1.468448, 47.805904 ], [ -1.481873, 47.831804 ], [ -1.391529, 47.828321 ], [ -1.364081, 47.8007 ], [ -1.245882, 47.776718 ], [ -1.25446, 47.732682 ], [ -1.19545, 47.712028 ], [ -1.181369, 47.66861 ], [ -1.137894, 47.618927 ], [ -1.103129, 47.620515 ], [ -1.008165, 47.587756 ], [ -1.042161, 47.563266 ], [ -1.172934, 47.572818 ], [ -1.178346, 47.548025 ], [ -1.154234, 47.509325 ], [ -1.106345, 47.500901 ], [ -1.044458, 47.505501 ], [ -0.967867, 47.468055 ], [ -0.943182, 47.418611 ], [ -0.923456, 47.398773 ], [ -0.976234, 47.371029 ], [ -1.169933, 47.364713 ], [ -1.18296, 47.35431 ], [ -1.306548, 47.334482 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44007", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "7", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.458489, 47.448122 ], [ -2.410409, 47.458833 ], [ -2.316133, 47.462515 ], [ -2.298099, 47.515476 ], [ -2.15519, 47.497817 ], [ -2.153398, 47.522027 ], [ -2.098852, 47.533449 ], [ -2.096731, 47.572635 ], [ -2.034952, 47.569377 ], [ -1.99528, 47.543927 ], [ -1.965134, 47.542051 ], [ -1.942687, 47.508201 ], [ -1.88313, 47.511806 ], [ -1.850217, 47.485765 ], [ -1.907216, 47.463154 ], [ -1.950967, 47.487663 ], [ -1.98131, 47.471856 ], [ -1.97614, 47.446605 ], [ -2.028515, 47.415631 ], [ -2.04168, 47.365214 ], [ -2.130853, 47.382839 ], [ -2.197489, 47.360226 ], [ -2.201368, 47.335639 ], [ -2.238282, 47.316276 ], [ -2.296983, 47.303314 ], [ -2.289537, 47.278517 ], [ -2.302972, 47.237246 ], [ -2.35757, 47.272846 ], [ -2.390716, 47.281568 ], [ -2.421239, 47.25911 ], [ -2.54653, 47.291937 ], [ -2.501272, 47.317928 ], [ -2.532885, 47.383781 ], [ -2.470758, 47.416955 ], [ -2.458489, 47.448122 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44008", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "8", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.302972, 47.237246 ], [ -2.289537, 47.278517 ], [ -2.296983, 47.303314 ], [ -2.238282, 47.316276 ], [ -2.201368, 47.335639 ], [ -2.197489, 47.360226 ], [ -2.130853, 47.382839 ], [ -2.04168, 47.365214 ], [ -2.028515, 47.415631 ], [ -1.97614, 47.446605 ], [ -1.98131, 47.471856 ], [ -1.950967, 47.487663 ], [ -1.907216, 47.463154 ], [ -1.916434, 47.380706 ], [ -1.841574, 47.38093 ], [ -1.800836, 47.336039 ], [ -1.869804, 47.306873 ], [ -1.896233, 47.27898 ], [ -2.010328, 47.297574 ], [ -2.035172, 47.315594 ], [ -2.141426, 47.30025 ], [ -2.270119, 47.239567 ], [ -2.302972, 47.237246 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44009", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "9", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.010328, 47.297574 ], [ -1.896233, 47.27898 ], [ -1.83291, 47.228685 ], [ -1.787586, 47.209805 ], [ -1.709015, 47.20778 ], [ -1.668806, 47.188549 ], [ -1.679644, 47.17277 ], [ -1.763409, 47.183421 ], [ -1.725841, 47.126248 ], [ -1.67485, 47.133751 ], [ -1.554289, 47.097406 ], [ -1.531383, 47.0576 ], [ -1.499845, 47.040689 ], [ -1.543657, 47.003774 ], [ -1.554272, 46.978654 ], [ -1.521631, 46.941034 ], [ -1.52982, 46.908201 ], [ -1.500791, 46.883394 ], [ -1.548511, 46.86008 ], [ -1.736009, 46.896058 ], [ -1.750433, 46.93037 ], [ -1.832106, 46.932086 ], [ -1.938925, 46.993515 ], [ -1.980414, 47.028906 ], [ -2.003548, 47.060238 ], [ -2.053683, 47.094248 ], [ -2.241587, 47.132257 ], [ -2.222001, 47.153724 ], [ -2.166599, 47.167392 ], [ -2.15973, 47.211068 ], [ -2.168157, 47.268117 ], [ -2.056925, 47.282957 ], [ -2.010328, 47.297574 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44010", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "10", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.554289, 47.097406 ], [ -1.531388, 47.108362 ], [ -1.549749, 47.145741 ], [ -1.512933, 47.189179 ], [ -1.474191, 47.186824 ], [ -1.48095, 47.226347 ], [ -1.478817, 47.228079 ], [ -1.402359, 47.281693 ], [ -1.354204, 47.304159 ], [ -1.295174, 47.304566 ], [ -1.276402, 47.269603 ], [ -1.231267, 47.239579 ], [ -1.204918, 47.253043 ], [ -1.169555, 47.170515 ], [ -1.230987, 47.131301 ], [ -1.228114, 47.099769 ], [ -1.170549, 47.092954 ], [ -1.11789, 47.040282 ], [ -1.148571, 47.029554 ], [ -1.196769, 47.039766 ], [ -1.267884, 47.084269 ], [ -1.317961, 47.034303 ], [ -1.375944, 47.029657 ], [ -1.359059, 46.981135 ], [ -1.373372, 46.95208 ], [ -1.458268, 46.925838 ], [ -1.47313, 47.031123 ], [ -1.499845, 47.040689 ], [ -1.531383, 47.0576 ], [ -1.554289, 47.097406 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "45003", "code_dpt": "45", "nom_dpt": "LOIRET", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "3", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856477, 47.761736 ], [ 2.848969, 47.71685 ], [ 2.92416, 47.682496 ], [ 2.954234, 47.645689 ], [ 2.932321, 47.627046 ], [ 2.940355, 47.598211 ], [ 2.976538, 47.569429 ], [ 2.958658, 47.55738 ], [ 2.914297, 47.56597 ], [ 2.85663, 47.551412 ], [ 2.874625, 47.520423 ], [ 2.797521, 47.497343 ], [ 2.762558, 47.524957 ], [ 2.686362, 47.483189 ], [ 2.655871, 47.510396 ], [ 2.612018, 47.526389 ], [ 2.592984, 47.558136 ], [ 2.550066, 47.574703 ], [ 2.490301, 47.571774 ], [ 2.438079, 47.609773 ], [ 2.372689, 47.585442 ], [ 2.289632, 47.629055 ], [ 2.239214, 47.620978 ], [ 2.240709, 47.641259 ], [ 2.203685, 47.678548 ], [ 2.149203, 47.670747 ], [ 2.07455, 47.682152 ], [ 2.008923, 47.677456 ], [ 1.99523, 47.66426 ], [ 1.937186, 47.677582 ], [ 1.865859, 47.675948 ], [ 1.811415, 47.652507 ], [ 1.746726, 47.656755 ], [ 1.728065, 47.699565 ], [ 1.799856, 47.723323 ], [ 1.834739, 47.703899 ], [ 1.865427, 47.713814 ], [ 1.8418, 47.759454 ], [ 1.860741, 47.832531 ], [ 1.906375, 47.833992 ], [ 1.92561, 47.764601 ], [ 1.959383, 47.761341 ], [ 1.995316, 47.794077 ], [ 2.006212, 47.886544 ], [ 2.062107, 47.867419 ], [ 2.12453, 47.869197 ], [ 2.186378, 47.847636 ], [ 2.22391, 47.858547 ], [ 2.2529, 47.825515 ], [ 2.314291, 47.838625 ], [ 2.339442, 47.829598 ], [ 2.381311, 47.848511 ], [ 2.442067, 47.844649 ], [ 2.544034, 47.796731 ], [ 2.574626, 47.792922 ], [ 2.586944, 47.825214 ], [ 2.645387, 47.847348 ], [ 2.677967, 47.830126 ], [ 2.712365, 47.801415 ], [ 2.739728, 47.811352 ], [ 2.769205, 47.780174 ], [ 2.805624, 47.789744 ], [ 2.856477, 47.761736 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "45004", "code_dpt": "45", "nom_dpt": "LOIRET", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "4", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856477, 47.761736 ], [ 2.805624, 47.789744 ], [ 2.769205, 47.780174 ], [ 2.739728, 47.811352 ], [ 2.712365, 47.801415 ], [ 2.677967, 47.830126 ], [ 2.732598, 47.866371 ], [ 2.710218, 47.923502 ], [ 2.6164, 47.930721 ], [ 2.576081, 47.967345 ], [ 2.594062, 48.002776 ], [ 2.626956, 48.01399 ], [ 2.588474, 48.052342 ], [ 2.559317, 48.039944 ], [ 2.493352, 48.087399 ], [ 2.565016, 48.095965 ], [ 2.52221, 48.125215 ], [ 2.639666, 48.13895 ], [ 2.664748, 48.120542 ], [ 2.706547, 48.124819 ], [ 2.780977, 48.167363 ], [ 2.82088, 48.129664 ], [ 2.866823, 48.156036 ], [ 2.936314, 48.163392 ], [ 3.01323, 48.143477 ], [ 3.050471, 48.072334 ], [ 3.095365, 48.053976 ], [ 3.126676, 47.991268 ], [ 3.105272, 47.946941 ], [ 3.011818, 47.904825 ], [ 3.011491, 47.875099 ], [ 3.033824, 47.843874 ], [ 3.013874, 47.831836 ], [ 3.023798, 47.786375 ], [ 2.988902, 47.786125 ], [ 2.935592, 47.763247 ], [ 2.856477, 47.761736 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "45005", "code_dpt": "45", "nom_dpt": "LOIRET", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "5", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.52221, 48.125215 ], [ 2.565016, 48.095965 ], [ 2.493352, 48.087399 ], [ 2.559317, 48.039944 ], [ 2.588474, 48.052342 ], [ 2.626956, 48.01399 ], [ 2.594062, 48.002776 ], [ 2.576081, 47.967345 ], [ 2.541364, 47.974739 ], [ 2.48503, 47.933746 ], [ 2.433282, 47.922556 ], [ 2.412658, 47.972555 ], [ 2.379602, 47.970838 ], [ 2.260072, 48.01122 ], [ 2.259397, 47.98662 ], [ 2.229378, 47.950015 ], [ 2.149255, 47.9574 ], [ 2.068394, 47.926142 ], [ 2.025025, 47.942719 ], [ 1.947959, 47.945582 ], [ 1.913993, 47.919757 ], [ 1.906535, 47.920805 ], [ 1.898642, 47.922045 ], [ 1.93566, 47.989761 ], [ 1.957721, 48.013304 ], [ 1.931691, 48.042311 ], [ 1.994858, 48.094074 ], [ 1.920403, 48.146385 ], [ 1.971246, 48.178129 ], [ 1.965903, 48.254444 ], [ 1.994085, 48.286586 ], [ 2.052708, 48.295474 ], [ 2.161589, 48.298437 ], [ 2.20709, 48.344944 ], [ 2.269118, 48.315049 ], [ 2.312424, 48.330118 ], [ 2.369945, 48.308673 ], [ 2.402664, 48.320719 ], [ 2.420109, 48.266704 ], [ 2.506192, 48.238536 ], [ 2.523011, 48.198762 ], [ 2.461097, 48.138207 ], [ 2.52221, 48.125215 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "46001", "code_dpt": "46", "nom_dpt": "LOT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.284393, 44.252516 ], [ 1.184412, 44.286797 ], [ 1.169065, 44.304019 ], [ 1.109472, 44.324692 ], [ 1.103416, 44.36697 ], [ 1.064084, 44.378513 ], [ 1.057488, 44.427679 ], [ 1.021679, 44.4466 ], [ 1.013166, 44.536136 ], [ 1.075141, 44.577325 ], [ 1.150893, 44.632856 ], [ 1.146733, 44.670797 ], [ 1.22455, 44.684266 ], [ 1.270041, 44.722088 ], [ 1.316051, 44.740375 ], [ 1.321535, 44.761097 ], [ 1.301166, 44.797744 ], [ 1.364103, 44.811568 ], [ 1.365459, 44.84497 ], [ 1.442178, 44.878348 ], [ 1.459121, 44.84523 ], [ 1.534526, 44.831573 ], [ 1.563879, 44.796118 ], [ 1.603941, 44.781934 ], [ 1.569724, 44.757762 ], [ 1.593226, 44.714995 ], [ 1.665225, 44.672108 ], [ 1.712391, 44.697041 ], [ 1.719335, 44.664257 ], [ 1.696568, 44.642733 ], [ 1.691016, 44.591768 ], [ 1.76228, 44.598253 ], [ 1.745681, 44.52809 ], [ 1.726801, 44.494058 ], [ 1.6991, 44.483822 ], [ 1.715536, 44.439034 ], [ 1.664014, 44.401248 ], [ 1.649755, 44.425184 ], [ 1.608653, 44.40962 ], [ 1.646971, 44.369295 ], [ 1.688643, 44.379487 ], [ 1.702321, 44.314505 ], [ 1.650052, 44.283204 ], [ 1.573824, 44.300958 ], [ 1.585916, 44.250942 ], [ 1.537463, 44.230259 ], [ 1.509263, 44.273786 ], [ 1.473534, 44.284216 ], [ 1.452112, 44.255881 ], [ 1.377171, 44.22283 ], [ 1.281318, 44.235344 ], [ 1.284393, 44.252516 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "46002", "code_dpt": "46", "nom_dpt": "LOT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.062914, 44.976506 ], [ 2.076351, 44.934785 ], [ 2.10811, 44.910598 ], [ 2.085556, 44.88496 ], [ 2.171633, 44.790258 ], [ 2.153492, 44.753108 ], [ 2.154666, 44.699366 ], [ 2.179152, 44.674449 ], [ 2.169419, 44.637985 ], [ 2.207475, 44.615532 ], [ 2.198403, 44.593175 ], [ 2.152562, 44.571586 ], [ 2.054845, 44.580192 ], [ 1.984239, 44.547262 ], [ 1.920824, 44.491922 ], [ 1.840758, 44.479487 ], [ 1.868875, 44.397213 ], [ 1.908239, 44.363419 ], [ 1.882083, 44.340074 ], [ 1.782668, 44.316252 ], [ 1.740954, 44.326297 ], [ 1.702321, 44.314505 ], [ 1.688643, 44.379487 ], [ 1.646971, 44.369295 ], [ 1.608653, 44.40962 ], [ 1.649755, 44.425184 ], [ 1.664014, 44.401248 ], [ 1.715536, 44.439034 ], [ 1.6991, 44.483822 ], [ 1.726801, 44.494058 ], [ 1.745681, 44.52809 ], [ 1.76228, 44.598253 ], [ 1.691016, 44.591768 ], [ 1.696568, 44.642733 ], [ 1.719335, 44.664257 ], [ 1.712391, 44.697041 ], [ 1.665225, 44.672108 ], [ 1.593226, 44.714995 ], [ 1.569724, 44.757762 ], [ 1.603941, 44.781934 ], [ 1.563879, 44.796118 ], [ 1.534526, 44.831573 ], [ 1.459121, 44.84523 ], [ 1.442178, 44.878348 ], [ 1.421836, 44.896414 ], [ 1.441562, 44.918782 ], [ 1.414261, 44.973914 ], [ 1.40913, 45.006729 ], [ 1.448262, 45.019313 ], [ 1.540315, 45.044666 ], [ 1.651891, 45.025288 ], [ 1.753982, 44.940851 ], [ 1.824451, 44.928102 ], [ 1.831572, 44.943422 ], [ 1.887091, 44.956337 ], [ 1.907779, 44.978243 ], [ 1.94015, 44.971839 ], [ 2.045121, 44.983667 ], [ 2.062914, 44.976506 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "47001", "code_dpt": "47", "nom_dpt": "LOT-ET-GARONNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.859687, 44.192737 ], [ 0.888351, 44.148813 ], [ 0.869092, 44.126516 ], [ 0.796568, 44.145152 ], [ 0.793165, 44.118458 ], [ 0.754383, 44.104804 ], [ 0.741885, 44.065199 ], [ 0.652208, 44.042909 ], [ 0.592675, 44.079263 ], [ 0.538427, 44.052952 ], [ 0.51158, 44.062737 ], [ 0.459759, 44.055378 ], [ 0.44245, 44.028762 ], [ 0.382337, 44.008241 ], [ 0.357013, 44.015412 ], [ 0.303004, 43.991238 ], [ 0.189807, 44.015008 ], [ 0.138625, 43.976595 ], [ 0.076046, 43.983143 ], [ 0.076223, 44.030736 ], [ 0.100821, 44.08677 ], [ 0.135797, 44.124194 ], [ 0.187386, 44.127223 ], [ 0.206428, 44.148353 ], [ 0.167051, 44.199067 ], [ 0.214607, 44.223422 ], [ 0.298039, 44.220923 ], [ 0.325683, 44.239154 ], [ 0.404809, 44.247311 ], [ 0.423063, 44.235196 ], [ 0.489122, 44.238933 ], [ 0.490959, 44.258589 ], [ 0.511586, 44.246559 ], [ 0.563746, 44.269206 ], [ 0.616117, 44.261251 ], [ 0.64504, 44.281416 ], [ 0.716019, 44.279438 ], [ 0.71697, 44.243051 ], [ 0.767317, 44.234668 ], [ 0.803152, 44.192547 ], [ 0.859687, 44.192737 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "47002", "code_dpt": "47", "nom_dpt": "LOT-ET-GARONNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.004788, 44.445014 ], [ -0.011696, 44.459861 ], [ -0.015565, 44.504789 ], [ 0.037738, 44.554151 ], [ 0.068687, 44.548221 ], [ 0.082236, 44.583911 ], [ 0.154363, 44.614908 ], [ 0.182752, 44.661362 ], [ 0.100345, 44.700979 ], [ 0.136039, 44.711206 ], [ 0.180434, 44.745498 ], [ 0.235944, 44.764194 ], [ 0.253651, 44.750391 ], [ 0.297325, 44.762294 ], [ 0.336662, 44.735573 ], [ 0.366564, 44.661307 ], [ 0.416954, 44.64521 ], [ 0.495626, 44.669808 ], [ 0.515514, 44.638434 ], [ 0.503316, 44.606238 ], [ 0.567154, 44.596521 ], [ 0.524618, 44.570473 ], [ 0.48947, 44.564942 ], [ 0.400719, 44.523942 ], [ 0.396543, 44.505027 ], [ 0.485324, 44.487497 ], [ 0.501868, 44.460187 ], [ 0.484953, 44.43589 ], [ 0.514232, 44.417813 ], [ 0.475304, 44.376092 ], [ 0.45124, 44.317628 ], [ 0.490959, 44.258589 ], [ 0.489122, 44.238933 ], [ 0.423063, 44.235196 ], [ 0.404809, 44.247311 ], [ 0.325683, 44.239154 ], [ 0.298039, 44.220923 ], [ 0.214607, 44.223422 ], [ 0.167051, 44.199067 ], [ 0.206428, 44.148353 ], [ 0.187386, 44.127223 ], [ 0.135797, 44.124194 ], [ 0.034594, 44.130652 ], [ -0.003539, 44.149898 ], [ -0.129155, 44.15241 ], [ -0.140689, 44.226414 ], [ -0.08848, 44.238471 ], [ -0.033608, 44.274014 ], [ -0.034811, 44.296726 ], [ -0.085752, 44.33761 ], [ -0.078819, 44.353695 ], [ -0.028821, 44.360191 ], [ 0.018552, 44.389329 ], [ -0.011804, 44.420329 ], [ 0.004788, 44.445014 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "47003", "code_dpt": "47", "nom_dpt": "LOT-ET-GARONNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.859687, 44.192737 ], [ 0.803152, 44.192547 ], [ 0.767317, 44.234668 ], [ 0.71697, 44.243051 ], [ 0.716019, 44.279438 ], [ 0.64504, 44.281416 ], [ 0.616117, 44.261251 ], [ 0.563746, 44.269206 ], [ 0.511586, 44.246559 ], [ 0.490959, 44.258589 ], [ 0.45124, 44.317628 ], [ 0.475304, 44.376092 ], [ 0.514232, 44.417813 ], [ 0.484953, 44.43589 ], [ 0.501868, 44.460187 ], [ 0.485324, 44.487497 ], [ 0.396543, 44.505027 ], [ 0.400719, 44.523942 ], [ 0.48947, 44.564942 ], [ 0.524618, 44.570473 ], [ 0.567154, 44.596521 ], [ 0.503316, 44.606238 ], [ 0.515514, 44.638434 ], [ 0.495626, 44.669808 ], [ 0.546558, 44.665149 ], [ 0.576468, 44.693063 ], [ 0.6481, 44.702175 ], [ 0.657434, 44.677856 ], [ 0.729134, 44.675992 ], [ 0.778603, 44.684291 ], [ 0.799457, 44.700784 ], [ 0.844563, 44.665836 ], [ 0.817004, 44.62701 ], [ 0.835146, 44.602205 ], [ 0.869996, 44.597316 ], [ 0.944179, 44.640355 ], [ 0.977296, 44.642992 ], [ 1.012502, 44.61583 ], [ 1.071131, 44.596229 ], [ 1.075141, 44.577325 ], [ 1.013166, 44.536136 ], [ 1.021679, 44.4466 ], [ 1.057488, 44.427679 ], [ 1.064084, 44.378513 ], [ 1.060229, 44.366064 ], [ 0.950216, 44.359577 ], [ 0.919845, 44.384419 ], [ 0.88732, 44.364646 ], [ 0.896113, 44.346228 ], [ 0.869445, 44.309255 ], [ 0.950788, 44.275072 ], [ 0.903111, 44.190055 ], [ 0.859687, 44.192737 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "48001", "code_dpt": "48", "nom_dpt": "LOZERE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.373648, 44.170765 ], [ 3.360412, 44.201493 ], [ 3.301043, 44.20647 ], [ 3.239261, 44.190663 ], [ 3.23054, 44.23034 ], [ 3.160532, 44.24628 ], [ 3.154266, 44.309225 ], [ 3.120221, 44.363313 ], [ 3.137053, 44.391621 ], [ 3.135486, 44.455519 ], [ 3.09956, 44.48043 ], [ 3.068932, 44.502706 ], [ 3.08347, 44.56032 ], [ 2.981677, 44.644677 ], [ 3.031345, 44.749638 ], [ 3.048237, 44.764325 ], [ 3.048271, 44.804263 ], [ 3.094845, 44.85548 ], [ 3.103126, 44.884634 ], [ 3.142848, 44.902282 ], [ 3.190283, 44.862524 ], [ 3.234993, 44.888773 ], [ 3.244565, 44.931717 ], [ 3.285642, 44.926307 ], [ 3.361343, 44.971412 ], [ 3.403222, 44.956862 ], [ 3.41038, 44.917787 ], [ 3.45617, 44.831228 ], [ 3.507375, 44.824235 ], [ 3.56877, 44.834183 ], [ 3.59783, 44.858709 ], [ 3.644297, 44.877132 ], [ 3.67364, 44.854124 ], [ 3.666365, 44.828778 ], [ 3.743866, 44.837802 ], [ 3.80699, 44.767583 ], [ 3.862527, 44.743872 ], [ 3.871647, 44.679336 ], [ 3.894778, 44.649963 ], [ 3.89414, 44.615288 ], [ 3.923567, 44.571885 ], [ 3.948774, 44.572887 ], [ 3.98686, 44.502167 ], [ 3.998163, 44.459798 ], [ 3.911307, 44.370327 ], [ 3.943704, 44.317887 ], [ 3.922859, 44.305227 ], [ 3.974701, 44.259617 ], [ 3.946433, 44.241041 ], [ 3.950924, 44.216869 ], [ 3.927275, 44.161298 ], [ 3.872731, 44.128667 ], [ 3.832118, 44.137335 ], [ 3.796995, 44.127389 ], [ 3.759624, 44.151192 ], [ 3.671053, 44.184201 ], [ 3.637706, 44.175434 ], [ 3.647169, 44.14429 ], [ 3.632838, 44.121223 ], [ 3.438628, 44.130372 ], [ 3.428468, 44.148665 ], [ 3.373648, 44.170765 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "49005", "code_dpt": "49", "nom_dpt": "MAINE-ET-LOIRE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "5", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.891961, 46.975827 ], [ -0.934878, 47.007562 ], [ -0.959132, 46.998123 ], [ -1.110119, 47.01601 ], [ -1.148571, 47.029554 ], [ -1.11789, 47.040282 ], [ -1.170549, 47.092954 ], [ -1.228114, 47.099769 ], [ -1.230987, 47.131301 ], [ -1.169555, 47.170515 ], [ -1.110625, 47.146363 ], [ -1.004739, 47.151962 ], [ -0.956902, 47.144739 ], [ -0.91832, 47.117838 ], [ -0.864253, 47.101757 ], [ -0.825071, 47.156944 ], [ -0.802498, 47.156886 ], [ -0.755475, 47.126651 ], [ -0.688906, 47.129767 ], [ -0.675, 47.10364 ], [ -0.637727, 47.09176 ], [ -0.666495, 47.053925 ], [ -0.652014, 47.023912 ], [ -0.587252, 47.006133 ], [ -0.620177, 46.993361 ], [ -0.671041, 47.000982 ], [ -0.71454, 46.985979 ], [ -0.787577, 47.005137 ], [ -0.891961, 46.975827 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "49007", "code_dpt": "49", "nom_dpt": "MAINE-ET-LOIRE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "7", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.245882, 47.776718 ], [ -1.238252, 47.809991 ], [ -1.193039, 47.786212 ], [ -1.075037, 47.774193 ], [ -1.020898, 47.774795 ], [ -0.978457, 47.761997 ], [ -0.959761, 47.796326 ], [ -0.839295, 47.752282 ], [ -0.816068, 47.771226 ], [ -0.749702, 47.741609 ], [ -0.653787, 47.733381 ], [ -0.674049, 47.694317 ], [ -0.694552, 47.618152 ], [ -0.627482, 47.60665 ], [ -0.638666, 47.573511 ], [ -0.593811, 47.547474 ], [ -0.568155, 47.565851 ], [ -0.526797, 47.523995 ], [ -0.564187, 47.471097 ], [ -0.567156, 47.474066 ], [ -0.627713, 47.498539 ], [ -0.693647, 47.470333 ], [ -0.735023, 47.483503 ], [ -0.760483, 47.468021 ], [ -0.746435, 47.442024 ], [ -0.796369, 47.431717 ], [ -0.830108, 47.448104 ], [ -0.923359, 47.462156 ], [ -0.943182, 47.418611 ], [ -0.967867, 47.468055 ], [ -1.044458, 47.505501 ], [ -1.106345, 47.500901 ], [ -1.154234, 47.509325 ], [ -1.178346, 47.548025 ], [ -1.172934, 47.572818 ], [ -1.042161, 47.563266 ], [ -1.008165, 47.587756 ], [ -1.103129, 47.620515 ], [ -1.137894, 47.618927 ], [ -1.181369, 47.66861 ], [ -1.19545, 47.712028 ], [ -1.25446, 47.732682 ], [ -1.245882, 47.776718 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "50001", "code_dpt": "50", "nom_dpt": "MANCHE", "nom_reg": "NORMANDIE", "num_circ": "1", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.392299, 49.550191 ], [ -1.381329, 49.536097 ], [ -1.302622, 49.535091 ], [ -1.254042, 49.481867 ], [ -1.170925, 49.412098 ], [ -1.179204, 49.37525 ], [ -1.119623, 49.355568 ], [ -1.113308, 49.326691 ], [ -1.139452, 49.309604 ], [ -1.133356, 49.271501 ], [ -1.023564, 49.203365 ], [ -0.97222, 49.193448 ], [ -0.920925, 49.221585 ], [ -0.901576, 49.204823 ], [ -0.937614, 49.150063 ], [ -0.886706, 49.128359 ], [ -0.876058, 49.054841 ], [ -0.862559, 49.026414 ], [ -0.905113, 49.011397 ], [ -0.944262, 48.96699 ], [ -0.990474, 48.950847 ], [ -1.056539, 48.958623 ], [ -1.065538, 48.931908 ], [ -1.02122, 48.926282 ], [ -1.021892, 48.905126 ], [ -1.059166, 48.877258 ], [ -1.101995, 48.866359 ], [ -1.156907, 48.834888 ], [ -1.222719, 48.784594 ], [ -1.273093, 48.771939 ], [ -1.31653, 48.790138 ], [ -1.351664, 48.837709 ], [ -1.288132, 48.854065 ], [ -1.246903, 48.886869 ], [ -1.258284, 48.91296 ], [ -1.211831, 48.940314 ], [ -1.216055, 49.015627 ], [ -1.272557, 49.070349 ], [ -1.261649, 49.10453 ], [ -1.297283, 49.157313 ], [ -1.278995, 49.174722 ], [ -1.304449, 49.20186 ], [ -1.353847, 49.195024 ], [ -1.357652, 49.304702 ], [ -1.318134, 49.321922 ], [ -1.341215, 49.35642 ], [ -1.375627, 49.340828 ], [ -1.426462, 49.37252 ], [ -1.424665, 49.427834 ], [ -1.470318, 49.466071 ], [ -1.421501, 49.505519 ], [ -1.430198, 49.526543 ], [ -1.392299, 49.550191 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "50002", "code_dpt": "50", "nom_dpt": "MANCHE", "nom_reg": "NORMANDIE", "num_circ": "2", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.577962, 48.862043 ], [ -1.539708, 48.839991 ], [ -1.463883, 48.855863 ], [ -1.415621, 48.832912 ], [ -1.393246, 48.853148 ], [ -1.351664, 48.837709 ], [ -1.31653, 48.790138 ], [ -1.273093, 48.771939 ], [ -1.222719, 48.784594 ], [ -1.156907, 48.834888 ], [ -1.102298, 48.81427 ], [ -1.084108, 48.779312 ], [ -1.058734, 48.773351 ], [ -0.922326, 48.771356 ], [ -0.840936, 48.752229 ], [ -0.796916, 48.709074 ], [ -0.736267, 48.679501 ], [ -0.773294, 48.656705 ], [ -0.753004, 48.619641 ], [ -0.775712, 48.561837 ], [ -0.847515, 48.520852 ], [ -0.860363, 48.501458 ], [ -0.896033, 48.494871 ], [ -0.953884, 48.516791 ], [ -1.002975, 48.48907 ], [ -1.070165, 48.508494 ], [ -1.117277, 48.521652 ], [ -1.249493, 48.543696 ], [ -1.279004, 48.509177 ], [ -1.341415, 48.489208 ], [ -1.382967, 48.456875 ], [ -1.427752, 48.462347 ], [ -1.454089, 48.487726 ], [ -1.489947, 48.489375 ], [ -1.53311, 48.549439 ], [ -1.521005, 48.567055 ], [ -1.571087, 48.626446 ], [ -1.515647, 48.618256 ], [ -1.448692, 48.623481 ], [ -1.413194, 48.641974 ], [ -1.424487, 48.667149 ], [ -1.506943, 48.690544 ], [ -1.53324, 48.731376 ], [ -1.574648, 48.753669 ], [ -1.575568, 48.82239 ], [ -1.602514, 48.835678 ], [ -1.577962, 48.862043 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "50003", "code_dpt": "50", "nom_dpt": "MANCHE", "nom_reg": "NORMANDIE", "num_circ": "3", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.841839, 49.582821 ], [ -1.78362, 49.589453 ], [ -1.761701, 49.567862 ], [ -1.693439, 49.546026 ], [ -1.632824, 49.549385 ], [ -1.5753, 49.582824 ], [ -1.546309, 49.575794 ], [ -1.504515, 49.593249 ], [ -1.417199, 49.579421 ], [ -1.392299, 49.550191 ], [ -1.430198, 49.526543 ], [ -1.421501, 49.505519 ], [ -1.470318, 49.466071 ], [ -1.424665, 49.427834 ], [ -1.426462, 49.37252 ], [ -1.375627, 49.340828 ], [ -1.341215, 49.35642 ], [ -1.318134, 49.321922 ], [ -1.357652, 49.304702 ], [ -1.353847, 49.195024 ], [ -1.304449, 49.20186 ], [ -1.278995, 49.174722 ], [ -1.297283, 49.157313 ], [ -1.261649, 49.10453 ], [ -1.272557, 49.070349 ], [ -1.216055, 49.015627 ], [ -1.211831, 48.940314 ], [ -1.258284, 48.91296 ], [ -1.246903, 48.886869 ], [ -1.288132, 48.854065 ], [ -1.351664, 48.837709 ], [ -1.393246, 48.853148 ], [ -1.415621, 48.832912 ], [ -1.463883, 48.855863 ], [ -1.539708, 48.839991 ], [ -1.577962, 48.862043 ], [ -1.563575, 48.925442 ], [ -1.556967, 49.011281 ], [ -1.59376, 49.021199 ], [ -1.610514, 49.103842 ], [ -1.596134, 49.144128 ], [ -1.600764, 49.217348 ], [ -1.642227, 49.222411 ], [ -1.675328, 49.287655 ], [ -1.77564, 49.370095 ], [ -1.808828, 49.37211 ], [ -1.823429, 49.438625 ], [ -1.851642, 49.509633 ], [ -1.886566, 49.537331 ], [ -1.857916, 49.551395 ], [ -1.841839, 49.582821 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "50004", "code_dpt": "50", "nom_dpt": "MANCHE", "nom_reg": "NORMANDIE", "num_circ": "4", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.302622, 49.535091 ], [ -1.381329, 49.536097 ], [ -1.392299, 49.550191 ], [ -1.417199, 49.579421 ], [ -1.504515, 49.593249 ], [ -1.546309, 49.575794 ], [ -1.5753, 49.582824 ], [ -1.632824, 49.549385 ], [ -1.693439, 49.546026 ], [ -1.761701, 49.567862 ], [ -1.78362, 49.589453 ], [ -1.841839, 49.582821 ], [ -1.853926, 49.640734 ], [ -1.873562, 49.657683 ], [ -1.943091, 49.674411 ], [ -1.943888, 49.722437 ], [ -1.890333, 49.707236 ], [ -1.856795, 49.716295 ], [ -1.827099, 49.692775 ], [ -1.762675, 49.67868 ], [ -1.719858, 49.679658 ], [ -1.623779, 49.643871 ], [ -1.502227, 49.664638 ], [ -1.437166, 49.700609 ], [ -1.332558, 49.702662 ], [ -1.270748, 49.681568 ], [ -1.240661, 49.654033 ], [ -1.228886, 49.605264 ], [ -1.300378, 49.578632 ], [ -1.302622, 49.535091 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "51001", "code_dpt": "51", "nom_dpt": "MARNE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.047973, 49.405642 ], [ 4.188997, 49.398702 ], [ 4.247956, 49.380803 ], [ 4.308294, 49.326603 ], [ 4.240317, 49.319687 ], [ 4.203488, 49.284305 ], [ 4.175696, 49.292032 ], [ 4.120086, 49.271236 ], [ 4.091717, 49.248633 ], [ 4.090849, 49.230273 ], [ 4.049791, 49.244363 ], [ 4.040683, 49.251783 ], [ 4.032266, 49.251846 ], [ 4.008634, 49.256192 ], [ 4.009892, 49.262146 ], [ 3.993097, 49.282228 ], [ 3.940616, 49.279978 ], [ 3.931269, 49.313359 ], [ 3.947654, 49.347527 ], [ 3.888128, 49.351368 ], [ 3.856059, 49.368347 ], [ 3.859844, 49.381525 ], [ 3.92482, 49.407725 ], [ 3.961309, 49.377345 ], [ 4.035496, 49.359904 ], [ 4.047973, 49.405642 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "51002", "code_dpt": "51", "nom_dpt": "MARNE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.741087, 49.347586 ], [ 3.856059, 49.368347 ], [ 3.888128, 49.351368 ], [ 3.947654, 49.347527 ], [ 3.931269, 49.313359 ], [ 3.940616, 49.279978 ], [ 3.993097, 49.282228 ], [ 4.009892, 49.262146 ], [ 4.008634, 49.256192 ], [ 4.032266, 49.251846 ], [ 4.040683, 49.251783 ], [ 4.049791, 49.244363 ], [ 4.035179241916964, 49.230766741429207 ], [ 3.971509, 49.182868 ], [ 3.91976, 49.17137 ], [ 3.818042, 49.073396 ], [ 3.770912, 49.081171 ], [ 3.661106, 49.117845 ], [ 3.619819, 49.147538 ], [ 3.748676, 49.15853 ], [ 3.67667, 49.207263 ], [ 3.677019, 49.237082 ], [ 3.643262, 49.295882 ], [ 3.669161, 49.32475 ], [ 3.741087, 49.347586 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "51003", "code_dpt": "51", "nom_dpt": "MARNE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "3", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.160769, 49.029668 ], [ 4.102029, 49.024349 ], [ 4.033203, 49.033792 ], [ 4.024502, 48.998318 ], [ 3.979989, 49.015003 ], [ 3.86478, 49.003487 ], [ 3.822351, 48.963588 ], [ 3.861791, 48.957592 ], [ 3.851748, 48.913894 ], [ 3.886492, 48.886932 ], [ 3.857201, 48.851494 ], [ 3.899435, 48.826217 ], [ 3.817798, 48.813034 ], [ 3.753182, 48.817865 ], [ 3.736987, 48.785003 ], [ 3.662783, 48.776587 ], [ 3.680579, 48.751231 ], [ 3.634733, 48.743857 ], [ 3.681306, 48.711031 ], [ 3.635639, 48.664114 ], [ 3.626583, 48.637005 ], [ 3.665771, 48.617183 ], [ 3.677368, 48.589645 ], [ 3.631399, 48.571565 ], [ 3.604245, 48.572453 ], [ 3.555614, 48.620285 ], [ 3.442698, 48.672506 ], [ 3.470862, 48.687267 ], [ 3.467396, 48.73863 ], [ 3.39713, 48.761397 ], [ 3.442154, 48.784857 ], [ 3.44448, 48.811803 ], [ 3.485241, 48.825503 ], [ 3.485187, 48.851908 ], [ 3.528576, 48.912141 ], [ 3.566684, 48.913496 ], [ 3.574443, 48.939025 ], [ 3.621206, 48.966031 ], [ 3.639825, 49.003998 ], [ 3.677719, 49.016029 ], [ 3.650133, 49.041359 ], [ 3.585204, 49.038869 ], [ 3.587706, 49.05935 ], [ 3.63224, 49.08609 ], [ 3.613414, 49.115904 ], [ 3.619819, 49.147538 ], [ 3.661106, 49.117845 ], [ 3.770912, 49.081171 ], [ 3.818042, 49.073396 ], [ 3.91976, 49.17137 ], [ 3.971509, 49.182868 ], [ 4.035179241916964, 49.230766741429207 ], [ 4.027054, 49.204103 ], [ 4.088063, 49.186637 ], [ 4.134404, 49.216231 ], [ 4.175794, 49.191298 ], [ 4.260491, 49.22388 ], [ 4.262447, 49.183119 ], [ 4.315088, 49.168934 ], [ 4.356384, 49.192187 ], [ 4.375473, 49.155769 ], [ 4.327974, 49.13777 ], [ 4.299566, 49.152593 ], [ 4.250027, 49.118076 ], [ 4.20916, 49.11389 ], [ 4.160769, 49.029668 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "51004", "code_dpt": "51", "nom_dpt": "MARNE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "4", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.035179241916964, 49.230766741429207 ], [ 4.049791, 49.244363 ], [ 4.090849, 49.230273 ], [ 4.091717, 49.248633 ], [ 4.120086, 49.271236 ], [ 4.175696, 49.292032 ], [ 4.203488, 49.284305 ], [ 4.240317, 49.319687 ], [ 4.308294, 49.326603 ], [ 4.375619, 49.323805 ], [ 4.390817, 49.298799 ], [ 4.454543, 49.276011 ], [ 4.577484, 49.295524 ], [ 4.622181, 49.236577 ], [ 4.690096, 49.257485 ], [ 4.744232, 49.241473 ], [ 4.861837, 49.238851 ], [ 4.913375, 49.264716 ], [ 4.950989, 49.236866 ], [ 4.991859, 49.210838 ], [ 4.942378, 49.186771 ], [ 4.996343, 49.106502 ], [ 5.005744, 49.059872 ], [ 5.035267, 49.02256 ], [ 5.030943, 48.954325 ], [ 4.936209, 48.922142 ], [ 4.855261, 48.909013 ], [ 4.775401, 48.910943 ], [ 4.71352, 48.92065 ], [ 4.668395, 49.006113 ], [ 4.618662, 49.004887 ], [ 4.591078, 49.027722 ], [ 4.488671, 49.027804 ], [ 4.411267, 49.00978 ], [ 4.408852, 48.982756 ], [ 4.452719, 48.948219 ], [ 4.364826, 48.924986 ], [ 4.329479, 48.899472 ], [ 4.285898, 48.908501 ], [ 4.273645, 48.935802 ], [ 4.300732, 48.963733 ], [ 4.284398, 48.987031 ], [ 4.187461, 49.026538 ], [ 4.160769, 49.029668 ], [ 4.20916, 49.11389 ], [ 4.250027, 49.118076 ], [ 4.299566, 49.152593 ], [ 4.327974, 49.13777 ], [ 4.375473, 49.155769 ], [ 4.356384, 49.192187 ], [ 4.315088, 49.168934 ], [ 4.262447, 49.183119 ], [ 4.260491, 49.22388 ], [ 4.175794, 49.191298 ], [ 4.134404, 49.216231 ], [ 4.088063, 49.186637 ], [ 4.027054, 49.204103 ], [ 4.035179241916964, 49.230766741429207 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "51005", "code_dpt": "51", "nom_dpt": "MARNE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "5", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.825896, 48.515174 ], [ 3.731761, 48.537543 ], [ 3.643639, 48.536263 ], [ 3.631399, 48.571565 ], [ 3.677368, 48.589645 ], [ 3.665771, 48.617183 ], [ 3.626583, 48.637005 ], [ 3.635639, 48.664114 ], [ 3.681306, 48.711031 ], [ 3.634733, 48.743857 ], [ 3.680579, 48.751231 ], [ 3.662783, 48.776587 ], [ 3.736987, 48.785003 ], [ 3.753182, 48.817865 ], [ 3.817798, 48.813034 ], [ 3.899435, 48.826217 ], [ 3.857201, 48.851494 ], [ 3.886492, 48.886932 ], [ 3.851748, 48.913894 ], [ 3.861791, 48.957592 ], [ 3.822351, 48.963588 ], [ 3.86478, 49.003487 ], [ 3.979989, 49.015003 ], [ 4.024502, 48.998318 ], [ 4.033203, 49.033792 ], [ 4.102029, 49.024349 ], [ 4.160769, 49.029668 ], [ 4.187461, 49.026538 ], [ 4.284398, 48.987031 ], [ 4.300732, 48.963733 ], [ 4.273645, 48.935802 ], [ 4.285898, 48.908501 ], [ 4.329479, 48.899472 ], [ 4.364826, 48.924986 ], [ 4.452719, 48.948219 ], [ 4.408852, 48.982756 ], [ 4.411267, 49.00978 ], [ 4.488671, 49.027804 ], [ 4.591078, 49.027722 ], [ 4.618662, 49.004887 ], [ 4.668395, 49.006113 ], [ 4.71352, 48.92065 ], [ 4.775401, 48.910943 ], [ 4.855261, 48.909013 ], [ 4.936209, 48.922142 ], [ 4.912256, 48.869463 ], [ 4.935493, 48.8405 ], [ 4.888761, 48.81721 ], [ 4.934376, 48.790589 ], [ 4.989575, 48.742044 ], [ 4.988428, 48.684428 ], [ 4.911002, 48.688852 ], [ 4.867776, 48.667206 ], [ 4.798326, 48.677496 ], [ 4.772621, 48.651816 ], [ 4.841961, 48.649667 ], [ 4.854379, 48.612711 ], [ 4.768136, 48.593437 ], [ 4.79918, 48.529789 ], [ 4.724836, 48.541409 ], [ 4.670183, 48.531887 ], [ 4.592934, 48.552337 ], [ 4.495281, 48.538724 ], [ 4.392438, 48.567422 ], [ 4.314918, 48.61622 ], [ 4.333542, 48.674083 ], [ 4.296804, 48.713169 ], [ 4.233041, 48.702313 ], [ 4.177519, 48.708074 ], [ 4.131091, 48.686151 ], [ 4.079788, 48.701127 ], [ 4.044291, 48.660955 ], [ 4.001696, 48.663884 ], [ 3.94924, 48.603432 ], [ 3.908424, 48.601753 ], [ 3.898482, 48.57565 ], [ 3.863834, 48.570051 ], [ 3.852176, 48.525019 ], [ 3.825896, 48.515174 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "52001", "code_dpt": "52", "nom_dpt": "HAUTE-MARNE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.704239, 48.020241 ], [ 4.723155, 48.045763 ], [ 4.691158, 48.071951 ], [ 4.731874, 48.119451 ], [ 4.81498, 48.103565 ], [ 4.833349, 48.117511 ], [ 4.940543, 48.126471 ], [ 4.965091, 48.093129 ], [ 5.022434, 48.105337 ], [ 5.037794, 48.142626 ], [ 5.025536, 48.177546 ], [ 5.119769, 48.165107 ], [ 5.146453, 48.183375 ], [ 5.264589, 48.130532 ], [ 5.345074, 48.14636 ], [ 5.426751, 48.153341 ], [ 5.411764, 48.183401 ], [ 5.454417, 48.214822 ], [ 5.515919, 48.206623 ], [ 5.588425, 48.273763 ], [ 5.611652, 48.291815 ], [ 5.653809, 48.268524 ], [ 5.640901, 48.242354 ], [ 5.710844, 48.219937 ], [ 5.730983, 48.1897 ], [ 5.680173, 48.178674 ], [ 5.685356, 48.150619 ], [ 5.633143, 48.084297 ], [ 5.692104, 48.075527 ], [ 5.776419, 48.022407 ], [ 5.794785, 47.996795 ], [ 5.788412, 47.952696 ], [ 5.833769, 47.959617 ], [ 5.884726, 47.926047 ], [ 5.851327, 47.905925 ], [ 5.82186, 47.869111 ], [ 5.761192, 47.859343 ], [ 5.731428, 47.817634 ], [ 5.698266, 47.823355 ], [ 5.676612, 47.779158 ], [ 5.707293, 47.767718 ], [ 5.689648, 47.733903 ], [ 5.688783, 47.684778 ], [ 5.596814, 47.671647 ], [ 5.567389, 47.707121 ], [ 5.530594, 47.674009 ], [ 5.406486, 47.673623 ], [ 5.374079, 47.604542 ], [ 5.355723, 47.591694 ], [ 5.306357, 47.607277 ], [ 5.25623, 47.576551 ], [ 5.211391, 47.641657 ], [ 5.17341, 47.653536 ], [ 5.127565, 47.648473 ], [ 5.046804, 47.675568 ], [ 5.056238, 47.694814 ], [ 4.971371, 47.690234 ], [ 4.958989, 47.761875 ], [ 4.917958, 47.777094 ], [ 4.986103, 47.803598 ], [ 4.954094, 47.866768 ], [ 4.905961, 47.91647 ], [ 4.874586, 47.919522 ], [ 4.845033, 47.960427 ], [ 4.787781, 47.965254 ], [ 4.78942, 48.007869 ], [ 4.749531, 48.004311 ], [ 4.704239, 48.020241 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "52002", "code_dpt": "52", "nom_dpt": "HAUTE-MARNE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.833349, 48.117511 ], [ 4.850094, 48.141579 ], [ 4.838845, 48.168856 ], [ 4.862336, 48.19818 ], [ 4.842941, 48.283517 ], [ 4.814218, 48.323011 ], [ 4.841471, 48.339464 ], [ 4.75458, 48.366548 ], [ 4.716525, 48.394345 ], [ 4.653469, 48.470557 ], [ 4.670183, 48.531887 ], [ 4.724836, 48.541409 ], [ 4.79918, 48.529789 ], [ 4.768136, 48.593437 ], [ 4.854379, 48.612711 ], [ 4.841961, 48.649667 ], [ 4.772621, 48.651816 ], [ 4.798326, 48.677496 ], [ 4.867776, 48.667206 ], [ 4.911002, 48.688852 ], [ 4.988428, 48.684428 ], [ 5.006401, 48.611389 ], [ 5.117875, 48.58689 ], [ 5.229125, 48.530773 ], [ 5.272637, 48.514317 ], [ 5.327371, 48.509324 ], [ 5.34947, 48.481989 ], [ 5.398074, 48.473187 ], [ 5.409502, 48.44554 ], [ 5.470062, 48.420929 ], [ 5.409779, 48.39262 ], [ 5.426048, 48.331062 ], [ 5.474496, 48.35457 ], [ 5.526527, 48.346856 ], [ 5.533514, 48.325102 ], [ 5.588425, 48.273763 ], [ 5.515919, 48.206623 ], [ 5.454417, 48.214822 ], [ 5.411764, 48.183401 ], [ 5.426751, 48.153341 ], [ 5.345074, 48.14636 ], [ 5.264589, 48.130532 ], [ 5.146453, 48.183375 ], [ 5.119769, 48.165107 ], [ 5.025536, 48.177546 ], [ 5.037794, 48.142626 ], [ 5.022434, 48.105337 ], [ 4.965091, 48.093129 ], [ 4.940543, 48.126471 ], [ 4.833349, 48.117511 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "53001", "code_dpt": "53", "nom_dpt": "MAYENNE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "1", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.859728, 48.110749 ], [ -0.842939, 48.1531 ], [ -0.777385, 48.149858 ], [ -0.740626, 48.184135 ], [ -0.574072, 48.161059 ], [ -0.588273, 48.220436 ], [ -0.532605, 48.247748 ], [ -0.529989, 48.276746 ], [ -0.483704, 48.266042 ], [ -0.420081, 48.294161 ], [ -0.378652, 48.324494 ], [ -0.371155, 48.353767 ], [ -0.30974, 48.364135 ], [ -0.297152, 48.44613 ], [ -0.209718, 48.499182 ], [ -0.172087, 48.502137 ], [ -0.148946, 48.458791 ], [ -0.108255, 48.448024 ], [ -0.050699, 48.45059 ], [ -0.054531, 48.382003 ], [ -0.112164, 48.374246 ], [ -0.157998, 48.334522 ], [ -0.138609, 48.294951 ], [ -0.16458, 48.259159 ], [ -0.146837, 48.205009 ], [ -0.231431, 48.168593 ], [ -0.253808, 48.136529 ], [ -0.34373, 48.132527 ], [ -0.404449, 48.102247 ], [ -0.492841, 48.096597 ], [ -0.520836, 48.071173 ], [ -0.59427, 48.039479 ], [ -0.626367, 48.043503 ], [ -0.65294, 48.013151 ], [ -0.623249, 47.994818 ], [ -0.683925, 47.974716 ], [ -0.740634, 47.988529 ], [ -0.766032, 48.039764 ], [ -0.800508, 48.035899 ], [ -0.804067, 48.069101 ], [ -0.859728, 48.110749 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "53002", "code_dpt": "53", "nom_dpt": "MAYENNE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "2", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.653787, 47.733381 ], [ -0.749702, 47.741609 ], [ -0.816068, 47.771226 ], [ -0.839295, 47.752282 ], [ -0.959761, 47.796326 ], [ -0.978457, 47.761997 ], [ -1.020898, 47.774795 ], [ -1.075037, 47.774193 ], [ -1.193039, 47.786212 ], [ -1.238252, 47.809991 ], [ -1.189163, 47.867708 ], [ -1.156195, 47.964454 ], [ -1.107516, 47.988876 ], [ -1.030417, 47.992473 ], [ -1.002506, 47.967746 ], [ -0.928807, 47.97719 ], [ -0.903904, 48.014385 ], [ -0.913334, 48.033317 ], [ -0.882213, 48.058818 ], [ -0.895876, 48.0779 ], [ -0.859728, 48.110749 ], [ -0.804067, 48.069101 ], [ -0.800508, 48.035899 ], [ -0.766032, 48.039764 ], [ -0.740634, 47.988529 ], [ -0.683925, 47.974716 ], [ -0.623249, 47.994818 ], [ -0.65294, 48.013151 ], [ -0.626367, 48.043503 ], [ -0.59427, 48.039479 ], [ -0.520836, 48.071173 ], [ -0.492841, 48.096597 ], [ -0.404449, 48.102247 ], [ -0.34373, 48.132527 ], [ -0.253808, 48.136529 ], [ -0.222963, 48.122724 ], [ -0.225994, 48.071685 ], [ -0.274233, 48.064463 ], [ -0.334475, 48.032374 ], [ -0.308993, 48.005604 ], [ -0.297832, 47.943418 ], [ -0.38484, 47.930845 ], [ -0.4065, 47.910392 ], [ -0.376839, 47.88727 ], [ -0.374966, 47.857615 ], [ -0.41203, 47.857633 ], [ -0.447914, 47.832035 ], [ -0.43408, 47.809054 ], [ -0.388201, 47.805319 ], [ -0.381704, 47.760572 ], [ -0.410032, 47.765218 ], [ -0.453929, 47.757237 ], [ -0.507134, 47.78507 ], [ -0.532922, 47.75069 ], [ -0.584648, 47.758405 ], [ -0.610818, 47.735689 ], [ -0.653787, 47.733381 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "53003", "code_dpt": "53", "nom_dpt": "MAYENNE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "3", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.172087, 48.502137 ], [ -0.209718, 48.499182 ], [ -0.297152, 48.44613 ], [ -0.30974, 48.364135 ], [ -0.371155, 48.353767 ], [ -0.378652, 48.324494 ], [ -0.420081, 48.294161 ], [ -0.483704, 48.266042 ], [ -0.529989, 48.276746 ], [ -0.532605, 48.247748 ], [ -0.588273, 48.220436 ], [ -0.574072, 48.161059 ], [ -0.740626, 48.184135 ], [ -0.777385, 48.149858 ], [ -0.842939, 48.1531 ], [ -0.859728, 48.110749 ], [ -0.895876, 48.0779 ], [ -0.882213, 48.058818 ], [ -0.913334, 48.033317 ], [ -0.903904, 48.014385 ], [ -0.928807, 47.97719 ], [ -1.002506, 47.967746 ], [ -1.030417, 47.992473 ], [ -1.021497, 48.068405 ], [ -1.049133, 48.089596 ], [ -1.074357, 48.200471 ], [ -1.099932, 48.268375 ], [ -1.04583, 48.329655 ], [ -1.052793, 48.380929 ], [ -1.079735, 48.417381 ], [ -1.064649, 48.466913 ], [ -1.070165, 48.508494 ], [ -1.002975, 48.48907 ], [ -0.953884, 48.516791 ], [ -0.896033, 48.494871 ], [ -0.860363, 48.501458 ], [ -0.816025, 48.471189 ], [ -0.777874, 48.465412 ], [ -0.756483, 48.436937 ], [ -0.715918, 48.450896 ], [ -0.725251, 48.47347 ], [ -0.658168, 48.474845 ], [ -0.654215, 48.444545 ], [ -0.593207, 48.470841 ], [ -0.553157, 48.472966 ], [ -0.509294, 48.508841 ], [ -0.446883, 48.514937 ], [ -0.368081, 48.493111 ], [ -0.320239, 48.522929 ], [ -0.26839, 48.520666 ], [ -0.242639, 48.567999 ], [ -0.207346, 48.56252 ], [ -0.144604, 48.527753 ], [ -0.172087, 48.502137 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "54003", "code_dpt": "54", "nom_dpt": "MEURTHE-ET-MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "3", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.463647, 49.482202 ], [ 5.470911, 49.497214 ], [ 5.553983, 49.527872 ], [ 5.593826, 49.521361 ], [ 5.660806, 49.552354 ], [ 5.701263, 49.539518 ], [ 5.757155, 49.542568 ], [ 5.772744, 49.562553 ], [ 5.836173, 49.54178 ], [ 5.836046, 49.519957 ], [ 5.893402, 49.496919 ], [ 5.929609, 49.485346 ], [ 5.941791, 49.452637 ], [ 5.91184, 49.407535 ], [ 5.962819, 49.344862 ], [ 5.951098, 49.327446 ], [ 5.985221, 49.305171 ], [ 6.030761, 49.233082 ], [ 6.009565, 49.221792 ], [ 5.927219, 49.238655 ], [ 5.90125, 49.218547 ], [ 5.854372, 49.211966 ], [ 5.837678, 49.283597 ], [ 5.798411, 49.29762 ], [ 5.760905, 49.279612 ], [ 5.7629, 49.314332 ], [ 5.720819, 49.330084 ], [ 5.737564, 49.355681 ], [ 5.693566, 49.397205 ], [ 5.6918, 49.415087 ], [ 5.633554, 49.437872 ], [ 5.584345, 49.418806 ], [ 5.493942, 49.40707 ], [ 5.463647, 49.482202 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "54004", "code_dpt": "54", "nom_dpt": "MEURTHE-ET-MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "4", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.07936, 48.536418 ], [ 7.123165, 48.513592 ], [ 7.092687, 48.511854 ], [ 6.965266, 48.471546 ], [ 6.892111, 48.419214 ], [ 6.849189, 48.423831 ], [ 6.815027, 48.395068 ], [ 6.765889, 48.401639 ], [ 6.647632, 48.43513 ], [ 6.620753, 48.472409 ], [ 6.56859, 48.438228 ], [ 6.501792, 48.414563 ], [ 6.456866, 48.417017 ], [ 6.384241, 48.39461 ], [ 6.308258, 48.411892 ], [ 6.302857, 48.428386 ], [ 6.308914, 48.465899 ], [ 6.273509, 48.526684 ], [ 6.216978, 48.550844 ], [ 6.176199, 48.549446 ], [ 6.153663, 48.568844 ], [ 6.173872, 48.608413 ], [ 6.215041, 48.648116 ], [ 6.212636, 48.673099 ], [ 6.273834, 48.679238 ], [ 6.295915, 48.7084 ], [ 6.362297, 48.717737 ], [ 6.390791, 48.742119 ], [ 6.428048, 48.734483 ], [ 6.453603, 48.765894 ], [ 6.53421, 48.749598 ], [ 6.562184, 48.756113 ], [ 6.598966, 48.715691 ], [ 6.661575, 48.706077 ], [ 6.694581, 48.673021 ], [ 6.75513, 48.669877 ], [ 6.782626, 48.642721 ], [ 6.834289, 48.643626 ], [ 6.847891, 48.623843 ], [ 6.930007, 48.635551 ], [ 6.960798, 48.608286 ], [ 7.034245, 48.580418 ], [ 7.07936, 48.536418 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "54005", "code_dpt": "54", "nom_dpt": "MEURTHE-ET-MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "5", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.765155, 48.496493 ], [ 5.776375, 48.540625 ], [ 5.715484, 48.562302 ], [ 5.717988, 48.591209 ], [ 5.754818, 48.606302 ], [ 5.74451, 48.656898 ], [ 5.764601, 48.701083 ], [ 5.719037, 48.732909 ], [ 5.740039, 48.772242 ], [ 5.766159, 48.789054 ], [ 5.786585, 48.8782 ], [ 5.751909, 48.921124 ], [ 5.849168, 48.961232 ], [ 5.817812, 48.980239 ], [ 5.853198, 49.015232 ], [ 5.904037, 48.997978 ], [ 5.930043, 48.95669 ], [ 5.984694, 48.937983 ], [ 5.966253, 48.862092 ], [ 6.016789, 48.852665 ], [ 6.027305, 48.811386 ], [ 6.018802, 48.779858 ], [ 6.067636, 48.775634 ], [ 6.104816, 48.758966 ], [ 6.074203, 48.692494 ], [ 6.108035, 48.647301 ], [ 6.142996, 48.646519 ], [ 6.173872, 48.608413 ], [ 6.153663, 48.568844 ], [ 6.176199, 48.549446 ], [ 6.216978, 48.550844 ], [ 6.273509, 48.526684 ], [ 6.308914, 48.465899 ], [ 6.302857, 48.428386 ], [ 6.260443, 48.406401 ], [ 6.17842, 48.397608 ], [ 6.11705, 48.353841 ], [ 6.079825, 48.363638 ], [ 6.005127, 48.360416 ], [ 5.96481, 48.350061 ], [ 5.949585, 48.396501 ], [ 5.85934, 48.416502 ], [ 5.897487, 48.448552 ], [ 5.9043, 48.482927 ], [ 5.857235, 48.506852 ], [ 5.765155, 48.496493 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "54006", "code_dpt": "54", "nom_dpt": "MEURTHE-ET-MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "6", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.327517, 48.904873 ], [ 6.310247, 48.863489 ], [ 6.339647, 48.83349 ], [ 6.355453, 48.792044 ], [ 6.300499, 48.794926 ], [ 6.172204, 48.768788 ], [ 6.173648, 48.716425 ], [ 6.136896, 48.700636 ], [ 6.074203, 48.692494 ], [ 6.104816, 48.758966 ], [ 6.067636, 48.775634 ], [ 6.018802, 48.779858 ], [ 6.027305, 48.811386 ], [ 6.016789, 48.852665 ], [ 5.966253, 48.862092 ], [ 5.984694, 48.937983 ], [ 5.930043, 48.95669 ], [ 5.904037, 48.997978 ], [ 5.853198, 49.015232 ], [ 5.817812, 48.980239 ], [ 5.821201, 49.019983 ], [ 5.853476, 49.040455 ], [ 5.808172, 49.075775 ], [ 5.817853, 49.111042 ], [ 5.760141, 49.109168 ], [ 5.719916, 49.217164 ], [ 5.724722, 49.269785 ], [ 5.760905, 49.279612 ], [ 5.798411, 49.29762 ], [ 5.837678, 49.283597 ], [ 5.854372, 49.211966 ], [ 5.90125, 49.218547 ], [ 5.927219, 49.238655 ], [ 6.009565, 49.221792 ], [ 5.978771, 49.194857 ], [ 6.017339, 49.17189 ], [ 6.010886, 49.153679 ], [ 5.982731, 49.144736 ], [ 5.998959, 49.108334 ], [ 5.931603, 49.109104 ], [ 5.957571, 49.047824 ], [ 6.044678, 49.012443 ], [ 6.043435, 48.977478 ], [ 6.175165, 48.936236 ], [ 6.262562, 48.933509 ], [ 6.327517, 48.904873 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "55001", "code_dpt": "55", "nom_dpt": "MEUSE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.988428, 48.684428 ], [ 4.989575, 48.742044 ], [ 4.934376, 48.790589 ], [ 4.888761, 48.81721 ], [ 4.935493, 48.8405 ], [ 4.912256, 48.869463 ], [ 4.936209, 48.922142 ], [ 5.030943, 48.954325 ], [ 5.035267, 49.02256 ], [ 5.005744, 49.059872 ], [ 5.022838, 49.072124 ], [ 5.087697, 49.049571 ], [ 5.160072, 49.059706 ], [ 5.232206, 48.994187 ], [ 5.304954, 48.986955 ], [ 5.341424, 48.960303 ], [ 5.409727, 48.976331 ], [ 5.455287, 48.999652 ], [ 5.483604, 49.041397 ], [ 5.555893, 49.040744 ], [ 5.614669, 49.002996 ], [ 5.663393, 49.015537 ], [ 5.756869, 49.026031 ], [ 5.744998, 49.059763 ], [ 5.776815, 49.083792 ], [ 5.808172, 49.075775 ], [ 5.853476, 49.040455 ], [ 5.821201, 49.019983 ], [ 5.817812, 48.980239 ], [ 5.849168, 48.961232 ], [ 5.751909, 48.921124 ], [ 5.786585, 48.8782 ], [ 5.766159, 48.789054 ], [ 5.740039, 48.772242 ], [ 5.719037, 48.732909 ], [ 5.764601, 48.701083 ], [ 5.74451, 48.656898 ], [ 5.754818, 48.606302 ], [ 5.717988, 48.591209 ], [ 5.715484, 48.562302 ], [ 5.776375, 48.540625 ], [ 5.765155, 48.496493 ], [ 5.740233, 48.465871 ], [ 5.676378, 48.471532 ], [ 5.615055, 48.440512 ], [ 5.560827, 48.44147 ], [ 5.470062, 48.420929 ], [ 5.409502, 48.44554 ], [ 5.398074, 48.473187 ], [ 5.34947, 48.481989 ], [ 5.327371, 48.509324 ], [ 5.272637, 48.514317 ], [ 5.229125, 48.530773 ], [ 5.117875, 48.58689 ], [ 5.006401, 48.611389 ], [ 4.988428, 48.684428 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "55002", "code_dpt": "55", "nom_dpt": "MEUSE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.950989, 49.236866 ], [ 5.011029, 49.269287 ], [ 5.051181, 49.274052 ], [ 5.027099, 49.335615 ], [ 5.088622, 49.369627 ], [ 5.115029, 49.420582 ], [ 5.10986, 49.45625 ], [ 5.059872, 49.504708 ], [ 5.097719, 49.533646 ], [ 5.119715, 49.592678 ], [ 5.159887, 49.566691 ], [ 5.234344, 49.569092 ], [ 5.26271, 49.54182 ], [ 5.308171, 49.562847 ], [ 5.339981, 49.59419 ], [ 5.377237, 49.592621 ], [ 5.393537, 49.617088 ], [ 5.430972, 49.592384 ], [ 5.447197, 49.517881 ], [ 5.470911, 49.497214 ], [ 5.463647, 49.482202 ], [ 5.493942, 49.40707 ], [ 5.584345, 49.418806 ], [ 5.633554, 49.437872 ], [ 5.6918, 49.415087 ], [ 5.693566, 49.397205 ], [ 5.737564, 49.355681 ], [ 5.720819, 49.330084 ], [ 5.7629, 49.314332 ], [ 5.760905, 49.279612 ], [ 5.724722, 49.269785 ], [ 5.719916, 49.217164 ], [ 5.760141, 49.109168 ], [ 5.817853, 49.111042 ], [ 5.808172, 49.075775 ], [ 5.776815, 49.083792 ], [ 5.744998, 49.059763 ], [ 5.756869, 49.026031 ], [ 5.663393, 49.015537 ], [ 5.614669, 49.002996 ], [ 5.555893, 49.040744 ], [ 5.483604, 49.041397 ], [ 5.455287, 48.999652 ], [ 5.409727, 48.976331 ], [ 5.341424, 48.960303 ], [ 5.304954, 48.986955 ], [ 5.232206, 48.994187 ], [ 5.160072, 49.059706 ], [ 5.087697, 49.049571 ], [ 5.022838, 49.072124 ], [ 5.005744, 49.059872 ], [ 4.996343, 49.106502 ], [ 4.942378, 49.186771 ], [ 4.991859, 49.210838 ], [ 4.950989, 49.236866 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "56001", "code_dpt": "56", "nom_dpt": "MORBIHAN", "nom_reg": "BRETAGNE", "num_circ": "1", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.9357, 47.625291 ], [ -2.883467, 47.642569 ], [ -2.855444, 47.684703 ], [ -2.798105, 47.674263 ], [ -2.75391, 47.727493 ], [ -2.697124, 47.704188 ], [ -2.689254, 47.67397 ], [ -2.630951, 47.669209 ], [ -2.582069, 47.615927 ], [ -2.528278, 47.618012 ], [ -2.453714, 47.6366 ], [ -2.438114, 47.618075 ], [ -2.387992, 47.612633 ], [ -2.386159, 47.546558 ], [ -2.358458, 47.507687 ], [ -2.420456, 47.495206 ], [ -2.535333, 47.525828 ], [ -2.623327, 47.505049 ], [ -2.663121, 47.519228 ], [ -2.679118, 47.494524 ], [ -2.727034, 47.505974 ], [ -2.795323, 47.485451 ], [ -2.847098, 47.498249 ], [ -2.869388, 47.530434 ], [ -2.807976, 47.555294 ], [ -2.78068, 47.539143 ], [ -2.728336, 47.544691 ], [ -2.717129, 47.597108 ], [ -2.777604, 47.620064 ], [ -2.859252, 47.62228 ], [ -2.935912, 47.585842 ], [ -2.9357, 47.625291 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "56002", "code_dpt": "56", "nom_dpt": "MORBIHAN", "nom_reg": "BRETAGNE", "num_circ": "2", "code_reg": "53" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.28249, 47.779346 ], [ -3.237575, 47.803736 ], [ -3.202126, 47.779728 ], [ -3.148719, 47.768917 ], [ -3.112878, 47.807953 ], [ -3.05961, 47.831405 ], [ -3.009972, 47.864671 ], [ -2.964931, 47.857154 ], [ -2.952429, 47.826534 ], [ -2.951904, 47.760537 ], [ -2.882284, 47.759088 ], [ -2.874972, 47.724058 ], [ -2.885949, 47.690291 ], [ -2.855444, 47.684703 ], [ -2.883467, 47.642569 ], [ -2.9357, 47.625291 ], [ -2.973721, 47.572238 ], [ -3.041706, 47.57876 ], [ -3.097579, 47.564843 ], [ -3.128468, 47.59882 ], [ -3.196712, 47.624021 ], [ -3.213732, 47.645597 ], [ -3.342698, 47.715922 ], [ -3.28249, 47.779346 ] ] ], [ [ [ -3.173567, 47.300727 ], [ -3.221298, 47.295997 ], [ -3.260564, 47.353402 ], [ -3.24861, 47.385798 ], [ -3.159741, 47.36328 ], [ -3.145368, 47.33439 ], [ -3.099541, 47.315808 ], [ -3.077575, 47.287067 ], [ -3.173567, 47.300727 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "56003", "code_dpt": "56", "nom_dpt": "MORBIHAN", "nom_reg": "BRETAGNE", "num_circ": "3", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.05961, 47.831405 ], [ -3.077643, 47.874854 ], [ -3.073835, 47.927458 ], [ -3.144789, 47.96764 ], [ -3.131737, 48.007073 ], [ -3.168412, 48.049228 ], [ -3.122747, 48.072665 ], [ -3.0951, 48.052837 ], [ -3.028797, 48.036987 ], [ -3.004927, 48.072901 ], [ -2.945324, 48.089005 ], [ -2.877949, 48.150917 ], [ -2.810401, 48.146554 ], [ -2.784964, 48.122615 ], [ -2.748166, 48.113871 ], [ -2.651993, 48.119971 ], [ -2.671327, 48.062907 ], [ -2.655761, 48.03254 ], [ -2.654889, 47.992821 ], [ -2.633458, 47.981906 ], [ -2.656012, 47.921715 ], [ -2.594246, 47.905623 ], [ -2.627507, 47.883848 ], [ -2.586646, 47.863562 ], [ -2.559202, 47.797931 ], [ -2.532833, 47.768721 ], [ -2.538885, 47.718801 ], [ -2.484039, 47.685452 ], [ -2.51355, 47.658961 ], [ -2.561005, 47.649391 ], [ -2.582069, 47.615927 ], [ -2.630951, 47.669209 ], [ -2.689254, 47.67397 ], [ -2.697124, 47.704188 ], [ -2.75391, 47.727493 ], [ -2.798105, 47.674263 ], [ -2.855444, 47.684703 ], [ -2.885949, 47.690291 ], [ -2.874972, 47.724058 ], [ -2.882284, 47.759088 ], [ -2.951904, 47.760537 ], [ -2.952429, 47.826534 ], [ -2.964931, 47.857154 ], [ -3.009972, 47.864671 ], [ -3.05961, 47.831405 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "56004", "code_dpt": "56", "nom_dpt": "MORBIHAN", "nom_reg": "BRETAGNE", "num_circ": "4", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.097036, 47.63136 ], [ -2.096731, 47.572635 ], [ -2.098852, 47.533449 ], [ -2.153398, 47.522027 ], [ -2.15519, 47.497817 ], [ -2.298099, 47.515476 ], [ -2.316133, 47.462515 ], [ -2.410409, 47.458833 ], [ -2.458489, 47.448122 ], [ -2.497395, 47.459607 ], [ -2.464253, 47.485135 ], [ -2.420456, 47.495206 ], [ -2.358458, 47.507687 ], [ -2.386159, 47.546558 ], [ -2.387992, 47.612633 ], [ -2.438114, 47.618075 ], [ -2.453714, 47.6366 ], [ -2.528278, 47.618012 ], [ -2.582069, 47.615927 ], [ -2.561005, 47.649391 ], [ -2.51355, 47.658961 ], [ -2.484039, 47.685452 ], [ -2.538885, 47.718801 ], [ -2.532833, 47.768721 ], [ -2.559202, 47.797931 ], [ -2.586646, 47.863562 ], [ -2.627507, 47.883848 ], [ -2.594246, 47.905623 ], [ -2.656012, 47.921715 ], [ -2.633458, 47.981906 ], [ -2.654889, 47.992821 ], [ -2.655761, 48.03254 ], [ -2.623324, 48.036902 ], [ -2.579224, 48.06974 ], [ -2.488396, 48.157919 ], [ -2.420909, 48.173246 ], [ -2.330118, 48.120361 ], [ -2.287278, 48.133746 ], [ -2.25633, 48.110321 ], [ -2.24916, 48.084118 ], [ -2.16848, 48.076209 ], [ -2.19135, 48.052449 ], [ -2.242426, 48.0526 ], [ -2.273288, 48.031072 ], [ -2.287539, 47.991505 ], [ -2.238197, 47.999335 ], [ -2.176729, 47.980054 ], [ -2.146602, 47.983939 ], [ -2.078951, 47.919492 ], [ -2.114176, 47.87883 ], [ -2.095195, 47.843258 ], [ -2.05393, 47.850953 ], [ -2.036045, 47.833461 ], [ -2.072892, 47.791827 ], [ -2.110098, 47.778601 ], [ -2.05986, 47.738314 ], [ -2.109457, 47.735877 ], [ -2.122663, 47.68267 ], [ -2.097036, 47.63136 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "56006", "code_dpt": "56", "nom_dpt": "MORBIHAN", "nom_reg": "BRETAGNE", "num_circ": "6", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.05961, 47.831405 ], [ -3.112878, 47.807953 ], [ -3.148719, 47.768917 ], [ -3.202126, 47.779728 ], [ -3.237575, 47.803736 ], [ -3.28249, 47.779346 ], [ -3.294363, 47.793515 ], [ -3.359902, 47.770266 ], [ -3.372095, 47.770523 ], [ -3.403897, 47.773995 ], [ -3.501593, 47.737859 ], [ -3.526263, 47.764535 ], [ -3.515227601622696, 47.804291043904726 ], [ -3.533844012083542, 47.823601676518436 ], [ -3.523004, 47.849147 ], [ -3.485876, 47.825293 ], [ -3.449854, 47.861328 ], [ -3.403891, 47.868383 ], [ -3.411356, 47.904806 ], [ -3.388025, 47.927037 ], [ -3.41773, 47.972168 ], [ -3.479924, 47.950798 ], [ -3.497449, 47.976728 ], [ -3.554116, 47.991881 ], [ -3.641041, 47.985793 ], [ -3.674599, 48.05492 ], [ -3.732973, 48.096268 ], [ -3.696017, 48.152021 ], [ -3.671562, 48.151477 ], [ -3.564839, 48.185747 ], [ -3.480454, 48.185859 ], [ -3.422077, 48.173347 ], [ -3.417596, 48.145641 ], [ -3.336929, 48.171567 ], [ -3.284694, 48.143765 ], [ -3.147882, 48.161096 ], [ -3.129925, 48.198675 ], [ -3.076967, 48.2099 ], [ -3.018382, 48.191093 ], [ -2.999753, 48.160711 ], [ -2.943871, 48.171702 ], [ -2.877949, 48.150917 ], [ -2.945324, 48.089005 ], [ -3.004927, 48.072901 ], [ -3.028797, 48.036987 ], [ -3.0951, 48.052837 ], [ -3.122747, 48.072665 ], [ -3.168412, 48.049228 ], [ -3.131737, 48.007073 ], [ -3.144789, 47.96764 ], [ -3.073835, 47.927458 ], [ -3.077643, 47.874854 ], [ -3.05961, 47.831405 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57003", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "3", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.185822, 49.256587 ], [ 6.194824, 49.260785 ], [ 6.243892, 49.256047 ], [ 6.279819, 49.270046 ], [ 6.290141, 49.229636 ], [ 6.323484, 49.224681 ], [ 6.379857, 49.258169 ], [ 6.419605, 49.233932 ], [ 6.432795, 49.19812 ], [ 6.402624, 49.138819 ], [ 6.448729, 49.099969 ], [ 6.49935, 49.101862 ], [ 6.483837, 49.056854 ], [ 6.4488, 49.053068 ], [ 6.399841, 49.023315 ], [ 6.439541, 48.985921 ], [ 6.382374, 48.924335 ], [ 6.354808, 48.943364 ], [ 6.287506, 48.997673 ], [ 6.329978, 49.013709 ], [ 6.289651, 49.045564 ], [ 6.298111, 49.067948 ], [ 6.239179, 49.086839 ], [ 6.251217, 49.116245 ], [ 6.203007, 49.122604 ], [ 6.171959, 49.093923 ], [ 6.164157, 49.09776 ], [ 6.18468, 49.112538 ], [ 6.209461, 49.170016 ], [ 6.179697, 49.185211 ], [ 6.203872, 49.220705 ], [ 6.185822, 49.256587 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57004", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "4", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.304356, 48.66021 ], [ 7.256282, 48.588676 ], [ 7.216571, 48.552364 ], [ 7.168499, 48.528693 ], [ 7.07936, 48.536418 ], [ 7.034245, 48.580418 ], [ 6.960798, 48.608286 ], [ 6.930007, 48.635551 ], [ 6.847891, 48.623843 ], [ 6.834289, 48.643626 ], [ 6.782626, 48.642721 ], [ 6.75513, 48.669877 ], [ 6.694581, 48.673021 ], [ 6.661575, 48.706077 ], [ 6.598966, 48.715691 ], [ 6.562184, 48.756113 ], [ 6.53421, 48.749598 ], [ 6.453603, 48.765894 ], [ 6.43311, 48.789099 ], [ 6.394874, 48.774762 ], [ 6.355453, 48.792044 ], [ 6.339647, 48.83349 ], [ 6.310247, 48.863489 ], [ 6.327517, 48.904873 ], [ 6.354808, 48.943364 ], [ 6.382374, 48.924335 ], [ 6.439541, 48.985921 ], [ 6.475167, 48.96609 ], [ 6.51927, 48.969934 ], [ 6.587057, 48.997062 ], [ 6.611095, 48.994144 ], [ 6.646949, 49.030182 ], [ 6.69666, 49.037752 ], [ 6.720639, 49.059578 ], [ 6.812753, 49.079841 ], [ 6.856417, 49.046012 ], [ 6.849455, 49.022136 ], [ 6.89165, 48.987365 ], [ 6.907703, 48.957267 ], [ 6.986812, 48.949618 ], [ 6.955067, 48.919959 ], [ 6.987974, 48.891368 ], [ 7.05501, 48.864918 ], [ 7.047117, 48.820637 ], [ 7.1268, 48.801151 ], [ 7.148854, 48.844597 ], [ 7.290899, 48.793908 ], [ 7.308583, 48.76788 ], [ 7.260134, 48.694715 ], [ 7.266276, 48.662301 ], [ 7.304356, 48.66021 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57005", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "5", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.513191, 48.94325 ], [ 7.451631, 48.967972 ], [ 7.326853, 48.943382 ], [ 7.293927, 48.97262 ], [ 7.237988, 48.98765 ], [ 7.209311, 48.980088 ], [ 7.17424, 49.006366 ], [ 7.129951, 49.00536 ], [ 7.106358, 49.045346 ], [ 7.054913, 49.030628 ], [ 7.031687, 48.986365 ], [ 7.032219, 48.956049 ], [ 6.986812, 48.949618 ], [ 6.907703, 48.957267 ], [ 6.89165, 48.987365 ], [ 6.849455, 49.022136 ], [ 6.856417, 49.046012 ], [ 6.937434, 49.083831 ], [ 6.971453, 49.083854 ], [ 6.988563, 49.12505 ], [ 6.984644, 49.160937 ], [ 7.01544, 49.191267 ], [ 7.058024, 49.112588 ], [ 7.104239, 49.138685 ], [ 7.158799, 49.120775 ], [ 7.245446, 49.129712 ], [ 7.2934, 49.11516 ], [ 7.325955, 49.143446 ], [ 7.362775, 49.145177 ], [ 7.366178, 49.172012 ], [ 7.445586, 49.184025 ], [ 7.491343, 49.168512 ], [ 7.489583, 49.136528 ], [ 7.531179, 49.097134 ], [ 7.568486, 49.079906 ], [ 7.627396, 49.073398 ], [ 7.635286, 49.05417 ], [ 7.588737, 48.991046 ], [ 7.579926, 48.961613 ], [ 7.536514, 48.93364 ], [ 7.513191, 48.94325 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57007", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "7", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.379857, 49.258169 ], [ 6.378293, 49.306135 ], [ 6.41743, 49.334023 ], [ 6.475378, 49.358517 ], [ 6.513989, 49.347799 ], [ 6.552053, 49.394527 ], [ 6.599329, 49.366621 ], [ 6.56538, 49.349289 ], [ 6.615992, 49.302684 ], [ 6.667846, 49.280439 ], [ 6.692921, 49.217549 ], [ 6.737988, 49.164569 ], [ 6.773788, 49.167645 ], [ 6.801636, 49.133978 ], [ 6.788981, 49.106131 ], [ 6.812753, 49.079841 ], [ 6.720639, 49.059578 ], [ 6.69666, 49.037752 ], [ 6.646949, 49.030182 ], [ 6.611095, 48.994144 ], [ 6.587057, 48.997062 ], [ 6.51927, 48.969934 ], [ 6.475167, 48.96609 ], [ 6.439541, 48.985921 ], [ 6.399841, 49.023315 ], [ 6.4488, 49.053068 ], [ 6.483837, 49.056854 ], [ 6.49935, 49.101862 ], [ 6.448729, 49.099969 ], [ 6.402624, 49.138819 ], [ 6.432795, 49.19812 ], [ 6.419605, 49.233932 ], [ 6.379857, 49.258169 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57008", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "8", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.194824, 49.260785 ], [ 6.185822, 49.256587 ], [ 6.128225, 49.261964 ], [ 6.06086, 49.250216 ], [ 6.030761, 49.233082 ], [ 5.985221, 49.305171 ], [ 5.951098, 49.327446 ], [ 5.962819, 49.344862 ], [ 5.91184, 49.407535 ], [ 5.941791, 49.452637 ], [ 5.929609, 49.485346 ], [ 5.893402, 49.496919 ], [ 5.945434, 49.49964 ], [ 5.974236, 49.466415 ], [ 6.042151, 49.447809 ], [ 6.033883, 49.42222 ], [ 6.060731, 49.381191 ], [ 6.058624, 49.358918 ], [ 6.149643, 49.346504 ], [ 6.161386, 49.308287 ], [ 6.194824, 49.260785 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57009", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "9", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.552053, 49.394527 ], [ 6.513989, 49.347799 ], [ 6.475378, 49.358517 ], [ 6.41743, 49.334023 ], [ 6.378293, 49.306135 ], [ 6.379857, 49.258169 ], [ 6.323484, 49.224681 ], [ 6.290141, 49.229636 ], [ 6.279819, 49.270046 ], [ 6.243892, 49.256047 ], [ 6.194824, 49.260785 ], [ 6.161386, 49.308287 ], [ 6.149643, 49.346504 ], [ 6.058624, 49.358918 ], [ 6.060731, 49.381191 ], [ 6.033883, 49.42222 ], [ 6.042151, 49.447809 ], [ 6.100008, 49.466777 ], [ 6.156764, 49.502837 ], [ 6.276154, 49.503536 ], [ 6.333778, 49.46689 ], [ 6.468186, 49.464734 ], [ 6.535419, 49.434161 ], [ 6.552053, 49.394527 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "58001", "code_dpt": "58", "nom_dpt": "NIEVRE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "1", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.063605, 46.889951 ], [ 3.050227, 46.909154 ], [ 3.078275, 46.953427 ], [ 3.063971, 46.976944 ], [ 3.074778, 47.029994 ], [ 3.022241, 47.063652 ], [ 3.028283, 47.128437 ], [ 2.979026, 47.229064 ], [ 2.973547, 47.269943 ], [ 2.870247, 47.342343 ], [ 2.919771, 47.410471 ], [ 2.931561, 47.440671 ], [ 2.874625, 47.520423 ], [ 2.85663, 47.551412 ], [ 2.914297, 47.56597 ], [ 2.958658, 47.55738 ], [ 2.968679, 47.499198 ], [ 3.012363, 47.482458 ], [ 3.026295, 47.460708 ], [ 3.094516, 47.473194 ], [ 3.124018, 47.456657 ], [ 3.112204, 47.430698 ], [ 3.041049, 47.418161 ], [ 3.058686, 47.37948 ], [ 3.087215, 47.368228 ], [ 3.115836, 47.331366 ], [ 3.100391, 47.300169 ], [ 3.143727, 47.293345 ], [ 3.15392, 47.267242 ], [ 3.207119, 47.261515 ], [ 3.200205, 47.240857 ], [ 3.255669, 47.201298 ], [ 3.282008, 47.168287 ], [ 3.207976, 47.137851 ], [ 3.172322, 47.070801 ], [ 3.141235, 47.080233 ], [ 3.108774, 47.061082 ], [ 3.123879, 47.040882 ], [ 3.112669, 46.995796 ], [ 3.251281, 47.039307 ], [ 3.326843, 47.042665 ], [ 3.332522, 47.085675 ], [ 3.391817, 47.093835 ], [ 3.39627, 47.055691 ], [ 3.431139, 47.035615 ], [ 3.487018, 47.032908 ], [ 3.560737, 46.982307 ], [ 3.642888, 46.970425 ], [ 3.627689, 46.923437 ], [ 3.602136, 46.883965 ], [ 3.536553, 46.885388 ], [ 3.530946, 46.91356 ], [ 3.471197, 46.92059 ], [ 3.424434, 46.894661 ], [ 3.398758, 46.918145 ], [ 3.360105, 46.909187 ], [ 3.310451, 46.922171 ], [ 3.211632, 46.88954 ], [ 3.16234, 46.862816 ], [ 3.108403, 46.870101 ], [ 3.063605, 46.889951 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "58002", "code_dpt": "58", "nom_dpt": "NIEVRE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "2", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.826552, 46.703826 ], [ 3.794654, 46.702034 ], [ 3.783666, 46.736048 ], [ 3.738633, 46.75196 ], [ 3.661101, 46.737738 ], [ 3.629424, 46.749459 ], [ 3.5489, 46.705553 ], [ 3.486834, 46.660559 ], [ 3.455299, 46.652396 ], [ 3.434214, 46.712221 ], [ 3.380713, 46.71233 ], [ 3.366416, 46.690676 ], [ 3.318052, 46.688443 ], [ 3.298052, 46.715879 ], [ 3.268544, 46.715924 ], [ 3.204426, 46.678752 ], [ 3.167414, 46.690968 ], [ 3.129056, 46.727493 ], [ 3.049694, 46.757809 ], [ 3.032068, 46.794911 ], [ 3.069402, 46.852258 ], [ 3.063605, 46.889951 ], [ 3.108403, 46.870101 ], [ 3.16234, 46.862816 ], [ 3.211632, 46.88954 ], [ 3.310451, 46.922171 ], [ 3.360105, 46.909187 ], [ 3.398758, 46.918145 ], [ 3.424434, 46.894661 ], [ 3.471197, 46.92059 ], [ 3.530946, 46.91356 ], [ 3.536553, 46.885388 ], [ 3.602136, 46.883965 ], [ 3.627689, 46.923437 ], [ 3.642888, 46.970425 ], [ 3.560737, 46.982307 ], [ 3.487018, 47.032908 ], [ 3.431139, 47.035615 ], [ 3.39627, 47.055691 ], [ 3.391817, 47.093835 ], [ 3.332522, 47.085675 ], [ 3.326843, 47.042665 ], [ 3.251281, 47.039307 ], [ 3.112669, 46.995796 ], [ 3.123879, 47.040882 ], [ 3.108774, 47.061082 ], [ 3.141235, 47.080233 ], [ 3.172322, 47.070801 ], [ 3.207976, 47.137851 ], [ 3.282008, 47.168287 ], [ 3.255669, 47.201298 ], [ 3.200205, 47.240857 ], [ 3.207119, 47.261515 ], [ 3.15392, 47.267242 ], [ 3.143727, 47.293345 ], [ 3.100391, 47.300169 ], [ 3.115836, 47.331366 ], [ 3.087215, 47.368228 ], [ 3.058686, 47.37948 ], [ 3.041049, 47.418161 ], [ 3.112204, 47.430698 ], [ 3.124018, 47.456657 ], [ 3.094516, 47.473194 ], [ 3.026295, 47.460708 ], [ 3.012363, 47.482458 ], [ 2.968679, 47.499198 ], [ 2.958658, 47.55738 ], [ 2.976538, 47.569429 ], [ 3.017047, 47.557827 ], [ 3.088025, 47.586986 ], [ 3.111581, 47.583897 ], [ 3.123027, 47.539428 ], [ 3.165191, 47.517502 ], [ 3.204517, 47.523192 ], [ 3.235027, 47.489639 ], [ 3.285252, 47.503939 ], [ 3.339521, 47.479263 ], [ 3.391332, 47.506556 ], [ 3.488277, 47.493831 ], [ 3.498358, 47.560878 ], [ 3.514192, 47.527224 ], [ 3.579954, 47.497975 ], [ 3.583276, 47.4615 ], [ 3.679358, 47.447242 ], [ 3.714782, 47.406835 ], [ 3.783303, 47.405169 ], [ 3.813743, 47.380374 ], [ 3.864383, 47.43433 ], [ 3.893397, 47.41029 ], [ 3.861455, 47.393372 ], [ 3.963999, 47.365856 ], [ 3.972954, 47.335001 ], [ 4.025466, 47.313608 ], [ 4.048066, 47.339533 ], [ 4.106086, 47.339256 ], [ 4.125356, 47.249506 ], [ 4.186745, 47.245139 ], [ 4.230875, 47.197022 ], [ 4.209834, 47.155412 ], [ 4.181902, 47.150514 ], [ 4.115067, 47.146162 ], [ 4.115967, 47.123338 ], [ 4.060379, 47.120736 ], [ 4.038853, 47.079739 ], [ 4.071133, 47.057844 ], [ 4.037144, 46.984689 ], [ 4.044687, 46.901169 ], [ 4.095236, 46.872407 ], [ 4.048389, 46.83795 ], [ 4.062137, 46.785561 ], [ 3.963222, 46.766028 ], [ 3.928244, 46.741382 ], [ 3.844924, 46.72199 ], [ 3.826552, 46.703826 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59015", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "15", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.870173, 50.702914 ], [ 2.809188, 50.669373 ], [ 2.769691, 50.663626 ], [ 2.751518, 50.606891 ], [ 2.726066, 50.613847 ], [ 2.718602, 50.629365 ], [ 2.630516, 50.617952 ], [ 2.61314, 50.634035 ], [ 2.546332, 50.627015 ], [ 2.534782, 50.641663 ], [ 2.473183, 50.638599 ], [ 2.430188, 50.656798 ], [ 2.342195, 50.740698 ], [ 2.411478, 50.766734 ], [ 2.31261, 50.787206 ], [ 2.331741, 50.839519 ], [ 2.423621, 50.863438 ], [ 2.475645, 50.832473 ], [ 2.570401, 50.897572 ], [ 2.604717, 50.906352 ], [ 2.61142, 50.863599 ], [ 2.634983, 50.812756 ], [ 2.670175, 50.821037 ], [ 2.725014, 50.795725 ], [ 2.813275, 50.716948 ], [ 2.870173, 50.702914 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59021", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "21", "code_reg": "32" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.583316, 50.491015 ], [ 3.607937, 50.496534 ], [ 3.668833, 50.436452 ], [ 3.672952, 50.389065 ], [ 3.657797, 50.370536 ], [ 3.673676, 50.334932 ], [ 3.624821, 50.326103 ], [ 3.556183, 50.299388 ], [ 3.558659, 50.330649 ], [ 3.498097, 50.338109 ], [ 3.433832, 50.378807 ], [ 3.472533, 50.388711 ], [ 3.508949, 50.365457 ], [ 3.608883, 50.435084 ], [ 3.582636, 50.445552 ], [ 3.583316, 50.491015 ] ] ], [ [ [ 3.361723, 50.398215 ], [ 3.398637, 50.407564 ], [ 3.432626, 50.379044 ], [ 3.381691, 50.353069 ], [ 3.361723, 50.398215 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "60001", "code_dpt": "60", "nom_dpt": "OISE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "1", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.649629, 49.571764 ], [ 2.636645, 49.504457 ], [ 2.661302, 49.486437 ], [ 2.65421, 49.455706 ], [ 2.603273, 49.436818 ], [ 2.506505, 49.428238 ], [ 2.42034, 49.459729 ], [ 2.376231, 49.443636 ], [ 2.320648, 49.481501 ], [ 2.261327, 49.458639 ], [ 2.279443, 49.430228 ], [ 2.276881, 49.387966 ], [ 2.236827, 49.369139 ], [ 2.158703, 49.402546 ], [ 2.139791, 49.42155 ], [ 2.055058, 49.427821 ], [ 2.039721, 49.435871 ], [ 2.00602, 49.463761 ], [ 1.955157, 49.447603 ], [ 1.929502, 49.472735 ], [ 1.941277, 49.494402 ], [ 1.937941, 49.557729 ], [ 1.88365, 49.574579 ], [ 1.90904, 49.597269 ], [ 2.036024, 49.644365 ], [ 2.044303, 49.658323 ], [ 2.120542, 49.674067 ], [ 2.124042, 49.688039 ], [ 2.155584, 49.702091 ], [ 2.229621, 49.702196 ], [ 2.332295, 49.680994 ], [ 2.37391, 49.656037 ], [ 2.445587, 49.652979 ], [ 2.478123, 49.62079 ], [ 2.505776, 49.636281 ], [ 2.571632, 49.597081 ], [ 2.61546, 49.611615 ], [ 2.649629, 49.571764 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "60002", "code_dpt": "60", "nom_dpt": "OISE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "2", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.974086, 49.183316 ], [ 1.882568, 49.162496 ], [ 1.776924, 49.185225 ], [ 1.742695, 49.179801 ], [ 1.704364, 49.232202 ], [ 1.711646, 49.264522 ], [ 1.80266, 49.273434 ], [ 1.77239, 49.293664 ], [ 1.774004, 49.335692 ], [ 1.759341, 49.368239 ], [ 1.713938, 49.409225 ], [ 1.726078, 49.438065 ], [ 1.775771, 49.473437 ], [ 1.749279, 49.493598 ], [ 1.729834, 49.561293 ], [ 1.697693, 49.572223 ], [ 1.693725, 49.601067 ], [ 1.721685, 49.623321 ], [ 1.708078, 49.646149 ], [ 1.724131, 49.671805 ], [ 1.712557, 49.73015 ], [ 1.784845, 49.757904 ], [ 1.838351, 49.730723 ], [ 1.848986, 49.701636 ], [ 1.894761, 49.699796 ], [ 1.933066, 49.71988 ], [ 2.034015, 49.710623 ], [ 2.058855, 49.695101 ], [ 2.124042, 49.688039 ], [ 2.120542, 49.674067 ], [ 2.044303, 49.658323 ], [ 2.036024, 49.644365 ], [ 1.90904, 49.597269 ], [ 1.88365, 49.574579 ], [ 1.937941, 49.557729 ], [ 1.941277, 49.494402 ], [ 1.929502, 49.472735 ], [ 1.955157, 49.447603 ], [ 2.00602, 49.463761 ], [ 2.039721, 49.435871 ], [ 2.055058, 49.427821 ], [ 2.139791, 49.42155 ], [ 2.158703, 49.402546 ], [ 2.236827, 49.369139 ], [ 2.276881, 49.387966 ], [ 2.269694, 49.345152 ], [ 2.281373, 49.305732 ], [ 2.220571, 49.255325 ], [ 2.174089, 49.270156 ], [ 2.021415, 49.301091 ], [ 1.985834, 49.285829 ], [ 2.022285, 49.262359 ], [ 1.994439, 49.23773 ], [ 1.974086, 49.183316 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "60003", "code_dpt": "60", "nom_dpt": "OISE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "3", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.974086, 49.183316 ], [ 1.994439, 49.23773 ], [ 2.022285, 49.262359 ], [ 1.985834, 49.285829 ], [ 2.021415, 49.301091 ], [ 2.174089, 49.270156 ], [ 2.220571, 49.255325 ], [ 2.281373, 49.305732 ], [ 2.331712, 49.309392 ], [ 2.364845, 49.283797 ], [ 2.408638, 49.296057 ], [ 2.470572, 49.259827 ], [ 2.495406, 49.274112 ], [ 2.511585, 49.242749 ], [ 2.456891, 49.246957 ], [ 2.415983, 49.20568 ], [ 2.391631, 49.204247 ], [ 2.373158, 49.159334 ], [ 2.359296, 49.147348 ], [ 2.321777, 49.184436 ], [ 2.286413, 49.159921 ], [ 2.241583, 49.151573 ], [ 2.220277, 49.179201 ], [ 2.168271, 49.164755 ], [ 2.153026, 49.183925 ], [ 2.095875, 49.190064 ], [ 2.080769, 49.207203 ], [ 1.999445, 49.175573 ], [ 1.974086, 49.183316 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "60004", "code_dpt": "60", "nom_dpt": "OISE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "4", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.703081, 49.064736 ], [ 2.633273, 49.108376 ], [ 2.590524, 49.079655 ], [ 2.499227, 49.12227 ], [ 2.438907, 49.141496 ], [ 2.373158, 49.159334 ], [ 2.391631, 49.204247 ], [ 2.415983, 49.20568 ], [ 2.456891, 49.246957 ], [ 2.511585, 49.242749 ], [ 2.495406, 49.274112 ], [ 2.526075, 49.299209 ], [ 2.60361, 49.31068 ], [ 2.624793, 49.331999 ], [ 2.724277, 49.31187 ], [ 2.753219, 49.288758 ], [ 2.738292, 49.262153 ], [ 2.790658, 49.226835 ], [ 2.791454, 49.19636 ], [ 2.823074, 49.180462 ], [ 2.879705, 49.1899 ], [ 2.935588, 49.233149 ], [ 2.964349, 49.231911 ], [ 2.971814, 49.187529 ], [ 3.0157, 49.216318 ], [ 3.10245, 49.197306 ], [ 3.110953, 49.170561 ], [ 3.071884, 49.117554 ], [ 3.056321, 49.101918 ], [ 2.974612, 49.074838 ], [ 2.901508, 49.085374 ], [ 2.856089, 49.070034 ], [ 2.809254, 49.097536 ], [ 2.760833, 49.063004 ], [ 2.703081, 49.064736 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "60005", "code_dpt": "60", "nom_dpt": "OISE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "5", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.036335, 49.325744 ], [ 3.001788, 49.34015 ], [ 2.96426, 49.321384 ], [ 2.99372, 49.288417 ], [ 3.034603, 49.285895 ], [ 3.039329, 49.230463 ], [ 2.964349, 49.231911 ], [ 2.935588, 49.233149 ], [ 2.879705, 49.1899 ], [ 2.823074, 49.180462 ], [ 2.791454, 49.19636 ], [ 2.790658, 49.226835 ], [ 2.738292, 49.262153 ], [ 2.753219, 49.288758 ], [ 2.724277, 49.31187 ], [ 2.624793, 49.331999 ], [ 2.648653, 49.395289 ], [ 2.615379, 49.4029 ], [ 2.603273, 49.436818 ], [ 2.65421, 49.455706 ], [ 2.661302, 49.486437 ], [ 2.717357, 49.470798 ], [ 2.731167, 49.453986 ], [ 2.792309, 49.431007 ], [ 2.822058, 49.408331 ], [ 2.886415, 49.388717 ], [ 2.923696, 49.411927 ], [ 2.941593, 49.458792 ], [ 3.096325, 49.517896 ], [ 3.121281, 49.49368 ], [ 3.107085, 49.468231 ], [ 3.155214, 49.454185 ], [ 3.12673, 49.43182 ], [ 3.094432, 49.434268 ], [ 3.094371, 49.378531 ], [ 3.036335, 49.325744 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "60006", "code_dpt": "60", "nom_dpt": "OISE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "6", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.661302, 49.486437 ], [ 2.636645, 49.504457 ], [ 2.649629, 49.571764 ], [ 2.688934, 49.625655 ], [ 2.72521, 49.624727 ], [ 2.786193, 49.612898 ], [ 2.800429, 49.661366 ], [ 2.839634, 49.660768 ], [ 2.860636, 49.684885 ], [ 2.913415, 49.709509 ], [ 2.950274, 49.69279 ], [ 2.992366, 49.707652 ], [ 3.028305, 49.680064 ], [ 3.052435, 49.713769 ], [ 3.118652, 49.705834 ], [ 3.127083, 49.669533 ], [ 3.099382, 49.656556 ], [ 3.122533, 49.602034 ], [ 3.13148, 49.543378 ], [ 3.096325, 49.517896 ], [ 2.941593, 49.458792 ], [ 2.923696, 49.411927 ], [ 2.886415, 49.388717 ], [ 2.822058, 49.408331 ], [ 2.792309, 49.431007 ], [ 2.731167, 49.453986 ], [ 2.717357, 49.470798 ], [ 2.661302, 49.486437 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "60007", "code_dpt": "60", "nom_dpt": "OISE", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "7", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.603273, 49.436818 ], [ 2.615379, 49.4029 ], [ 2.648653, 49.395289 ], [ 2.624793, 49.331999 ], [ 2.60361, 49.31068 ], [ 2.526075, 49.299209 ], [ 2.495406, 49.274112 ], [ 2.470572, 49.259827 ], [ 2.408638, 49.296057 ], [ 2.364845, 49.283797 ], [ 2.331712, 49.309392 ], [ 2.281373, 49.305732 ], [ 2.269694, 49.345152 ], [ 2.276881, 49.387966 ], [ 2.279443, 49.430228 ], [ 2.261327, 49.458639 ], [ 2.320648, 49.481501 ], [ 2.376231, 49.443636 ], [ 2.42034, 49.459729 ], [ 2.506505, 49.428238 ], [ 2.603273, 49.436818 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "61001", "code_dpt": "61", "nom_dpt": "ORNE", "nom_reg": "NORMANDIE", "num_circ": "1", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.054531, 48.382003 ], [ -0.050699, 48.45059 ], [ -0.108255, 48.448024 ], [ -0.148946, 48.458791 ], [ -0.172087, 48.502137 ], [ -0.144604, 48.527753 ], [ -0.207346, 48.56252 ], [ -0.242639, 48.567999 ], [ -0.26839, 48.520666 ], [ -0.320239, 48.522929 ], [ -0.368081, 48.493111 ], [ -0.446883, 48.514937 ], [ -0.509294, 48.508841 ], [ -0.553157, 48.472966 ], [ -0.593207, 48.470841 ], [ -0.654215, 48.444545 ], [ -0.658168, 48.474845 ], [ -0.725251, 48.47347 ], [ -0.715918, 48.450896 ], [ -0.756483, 48.436937 ], [ -0.777874, 48.465412 ], [ -0.816025, 48.471189 ], [ -0.860363, 48.501458 ], [ -0.847515, 48.520852 ], [ -0.775712, 48.561837 ], [ -0.753004, 48.619641 ], [ -0.773294, 48.656705 ], [ -0.736267, 48.679501 ], [ -0.699539, 48.692362 ], [ -0.661456, 48.682841 ], [ -0.63218, 48.703978 ], [ -0.586544, 48.689558 ], [ -0.607443, 48.668236 ], [ -0.585966, 48.639135 ], [ -0.548996, 48.620884 ], [ -0.515749, 48.63987 ], [ -0.480759, 48.615471 ], [ -0.431021, 48.640567 ], [ -0.365089, 48.646635 ], [ -0.32269, 48.624031 ], [ -0.286374, 48.641721 ], [ -0.241406, 48.610986 ], [ -0.130342, 48.628704 ], [ -0.083378, 48.602132 ], [ 0.023123, 48.614124 ], [ 0.084134, 48.608937 ], [ 0.121251, 48.643595 ], [ 0.123359, 48.663807 ], [ 0.188394, 48.665468 ], [ 0.229092, 48.680785 ], [ 0.258813, 48.687322 ], [ 0.287252, 48.663178 ], [ 0.355741, 48.681709 ], [ 0.452288, 48.623173 ], [ 0.421191, 48.601597 ], [ 0.433052, 48.547609 ], [ 0.408315, 48.522897 ], [ 0.34395, 48.505851 ], [ 0.314738, 48.473194 ], [ 0.297909, 48.479816 ], [ 0.172327, 48.463829 ], [ 0.153319, 48.437944 ], [ 0.111593, 48.432317 ], [ 0.023083, 48.380207 ], [ 0.00337, 48.395996 ], [ -0.054531, 48.382003 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "61002", "code_dpt": "61", "nom_dpt": "ORNE", "nom_reg": "NORMANDIE", "num_circ": "2", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.229092, 48.680785 ], [ 0.169603, 48.69206 ], [ 0.19285, 48.726468 ], [ 0.239603, 48.748897 ], [ 0.25367, 48.781304 ], [ 0.209778, 48.799176 ], [ 0.218236, 48.845422 ], [ 0.116207, 48.875978 ], [ 0.087178, 48.915896 ], [ 0.06374, 48.916773 ], [ 0.080723, 48.937984 ], [ 0.136288, 48.950402 ], [ 0.187316, 48.941074 ], [ 0.308722, 48.954227 ], [ 0.356623, 48.949625 ], [ 0.377447, 48.972558 ], [ 0.412815, 48.950626 ], [ 0.386114, 48.910548 ], [ 0.443109, 48.881285 ], [ 0.549868, 48.87471 ], [ 0.578041, 48.893656 ], [ 0.619441, 48.852749 ], [ 0.607869, 48.832489 ], [ 0.690171, 48.79406 ], [ 0.730523, 48.785593 ], [ 0.775034, 48.737358 ], [ 0.75117, 48.703978 ], [ 0.768455, 48.670722 ], [ 0.814819, 48.670168 ], [ 0.822398, 48.608875 ], [ 0.867284, 48.573946 ], [ 0.925711, 48.559654 ], [ 0.924195, 48.53804 ], [ 0.96774, 48.523881 ], [ 0.953055, 48.480156 ], [ 0.948381, 48.401645 ], [ 0.907347, 48.370104 ], [ 0.827867, 48.342311 ], [ 0.785432, 48.340436 ], [ 0.75684, 48.300466 ], [ 0.797486, 48.291445 ], [ 0.787321, 48.261445 ], [ 0.829446, 48.211369 ], [ 0.797655, 48.194461 ], [ 0.759209, 48.180091 ], [ 0.723637, 48.198143 ], [ 0.687394, 48.240782 ], [ 0.652469, 48.263389 ], [ 0.613135, 48.242735 ], [ 0.546795, 48.250162 ], [ 0.494423, 48.283488 ], [ 0.395362, 48.32129 ], [ 0.363205, 48.451562 ], [ 0.314738, 48.473194 ], [ 0.34395, 48.505851 ], [ 0.408315, 48.522897 ], [ 0.433052, 48.547609 ], [ 0.421191, 48.601597 ], [ 0.452288, 48.623173 ], [ 0.355741, 48.681709 ], [ 0.287252, 48.663178 ], [ 0.258813, 48.687322 ], [ 0.229092, 48.680785 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "61003", "code_dpt": "61", "nom_dpt": "ORNE", "nom_reg": "NORMANDIE", "num_circ": "3", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.464764, 48.870986 ], [ -0.410852, 48.869961 ], [ -0.345416, 48.821833 ], [ -0.268018, 48.853183 ], [ -0.144833, 48.832464 ], [ -0.083341, 48.844335 ], [ 0.056447, 48.902555 ], [ 0.06374, 48.916773 ], [ 0.087178, 48.915896 ], [ 0.116207, 48.875978 ], [ 0.218236, 48.845422 ], [ 0.209778, 48.799176 ], [ 0.25367, 48.781304 ], [ 0.239603, 48.748897 ], [ 0.19285, 48.726468 ], [ 0.169603, 48.69206 ], [ 0.229092, 48.680785 ], [ 0.188394, 48.665468 ], [ 0.123359, 48.663807 ], [ 0.121251, 48.643595 ], [ 0.084134, 48.608937 ], [ 0.023123, 48.614124 ], [ -0.083378, 48.602132 ], [ -0.130342, 48.628704 ], [ -0.241406, 48.610986 ], [ -0.286374, 48.641721 ], [ -0.32269, 48.624031 ], [ -0.365089, 48.646635 ], [ -0.431021, 48.640567 ], [ -0.480759, 48.615471 ], [ -0.515749, 48.63987 ], [ -0.548996, 48.620884 ], [ -0.585966, 48.639135 ], [ -0.607443, 48.668236 ], [ -0.586544, 48.689558 ], [ -0.63218, 48.703978 ], [ -0.661456, 48.682841 ], [ -0.699539, 48.692362 ], [ -0.736267, 48.679501 ], [ -0.796916, 48.709074 ], [ -0.840936, 48.752229 ], [ -0.780627, 48.786651 ], [ -0.743942, 48.791922 ], [ -0.682172, 48.821834 ], [ -0.624501, 48.826973 ], [ -0.54965, 48.846271 ], [ -0.509979, 48.845974 ], [ -0.464764, 48.870986 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62001", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "1", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.643824, 50.386336 ], [ 2.66656, 50.290226 ], [ 2.687462, 50.253027 ], [ 2.721245, 50.231845 ], [ 2.798483, 50.247754 ], [ 2.869437, 50.279815 ], [ 2.912929, 50.321146 ], [ 2.907936, 50.337222 ], [ 3.00647, 50.361156 ], [ 3.084306, 50.311191 ], [ 3.046236, 50.276167 ], [ 3.149091, 50.262483 ], [ 3.115648, 50.166644 ], [ 3.100959, 50.161969 ], [ 3.135333, 50.140743 ], [ 3.095967, 50.124516 ], [ 3.114055, 50.092385 ], [ 3.090254, 50.053741 ], [ 3.01197, 50.058039 ], [ 2.971536, 50.041367 ], [ 2.916974, 50.035531 ], [ 2.876193, 50.044254 ], [ 2.855414, 50.077992 ], [ 2.752195, 50.04032 ], [ 2.780898, 50.111156 ], [ 2.72993, 50.125864 ], [ 2.691649, 50.092069 ], [ 2.630728, 50.107276 ], [ 2.532332, 50.115077 ], [ 2.514949, 50.140821 ], [ 2.455049, 50.131176 ], [ 2.429658, 50.088185 ], [ 2.37546, 50.10926 ], [ 2.389777, 50.155485 ], [ 2.414846, 50.17311 ], [ 2.49569, 50.194562 ], [ 2.452066, 50.230214 ], [ 2.331301, 50.221724 ], [ 2.269351, 50.227649 ], [ 2.173297, 50.207886 ], [ 2.085714, 50.201017 ], [ 2.048668, 50.256771 ], [ 1.994128, 50.275716 ], [ 2.039794, 50.27714 ], [ 2.108332, 50.320584 ], [ 2.137099, 50.306422 ], [ 2.205964, 50.328775 ], [ 2.184718, 50.343362 ], [ 2.182908, 50.38412 ], [ 2.198619, 50.41876 ], [ 2.250299, 50.413994 ], [ 2.301879, 50.432008 ], [ 2.367638, 50.418807 ], [ 2.42012, 50.419836 ], [ 2.439437, 50.459334 ], [ 2.515588, 50.428129 ], [ 2.555146, 50.386901 ], [ 2.643824, 50.386336 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62002", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "2", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.643824, 50.386336 ], [ 2.670846, 50.400398 ], [ 2.733753, 50.406214 ], [ 2.78952, 50.406151 ], [ 2.85122, 50.380548 ], [ 2.897976, 50.385569 ], [ 2.993935, 50.381768 ], [ 3.00647, 50.361156 ], [ 2.907936, 50.337222 ], [ 2.912929, 50.321146 ], [ 2.869437, 50.279815 ], [ 2.798483, 50.247754 ], [ 2.721245, 50.231845 ], [ 2.687462, 50.253027 ], [ 2.66656, 50.290226 ], [ 2.643824, 50.386336 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62004", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "4", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.641544, 50.352153 ], [ 1.628169, 50.370269 ], [ 1.555965, 50.398753 ], [ 1.585536, 50.536007 ], [ 1.578796, 50.580643 ], [ 1.630304, 50.581869 ], [ 1.679508, 50.595786 ], [ 1.768155, 50.591618 ], [ 1.790263, 50.613952 ], [ 1.825078, 50.608497 ], [ 1.882744, 50.634923 ], [ 2.003061, 50.637258 ], [ 2.042172, 50.577046 ], [ 2.077529, 50.551419 ], [ 2.150562, 50.565719 ], [ 2.191561, 50.562797 ], [ 2.213856, 50.533769 ], [ 2.192757, 50.500556 ], [ 2.228338, 50.467336 ], [ 2.15951, 50.455244 ], [ 2.198619, 50.41876 ], [ 2.182908, 50.38412 ], [ 2.184718, 50.343362 ], [ 2.205964, 50.328775 ], [ 2.137099, 50.306422 ], [ 2.108332, 50.320584 ], [ 2.039794, 50.27714 ], [ 1.994128, 50.275716 ], [ 1.945648, 50.287747 ], [ 1.919496, 50.312663 ], [ 1.804679, 50.359606 ], [ 1.761849, 50.361608 ], [ 1.677249, 50.333819 ], [ 1.641544, 50.352153 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62005", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "5", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.609219, 50.804337 ], [ 1.653732, 50.805687 ], [ 1.691667, 50.770036 ], [ 1.743643, 50.738481 ], [ 1.739063, 50.685001 ], [ 1.795994, 50.637326 ], [ 1.882744, 50.634923 ], [ 1.825078, 50.608497 ], [ 1.790263, 50.613952 ], [ 1.768155, 50.591618 ], [ 1.679508, 50.595786 ], [ 1.630304, 50.581869 ], [ 1.578796, 50.580643 ], [ 1.578647, 50.639246 ], [ 1.561442, 50.699353 ], [ 1.593564, 50.733537 ], [ 1.609219, 50.804337 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62006", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "6", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.202647, 50.842941 ], [ 2.211363, 50.819535 ], [ 2.146915, 50.796437 ], [ 2.098276, 50.764716 ], [ 2.114507, 50.747757 ], [ 2.16338, 50.766804 ], [ 2.234605, 50.677949 ], [ 2.20638, 50.657795 ], [ 2.241699, 50.634709 ], [ 2.29365, 50.621185 ], [ 2.316628, 50.551917 ], [ 2.373029, 50.539021 ], [ 2.399384, 50.510429 ], [ 2.4489, 50.494161 ], [ 2.439437, 50.459334 ], [ 2.42012, 50.419836 ], [ 2.367638, 50.418807 ], [ 2.301879, 50.432008 ], [ 2.250299, 50.413994 ], [ 2.198619, 50.41876 ], [ 2.15951, 50.455244 ], [ 2.228338, 50.467336 ], [ 2.192757, 50.500556 ], [ 2.213856, 50.533769 ], [ 2.191561, 50.562797 ], [ 2.150562, 50.565719 ], [ 2.077529, 50.551419 ], [ 2.042172, 50.577046 ], [ 2.003061, 50.637258 ], [ 1.882744, 50.634923 ], [ 1.795994, 50.637326 ], [ 1.739063, 50.685001 ], [ 1.743643, 50.738481 ], [ 1.691667, 50.770036 ], [ 1.653732, 50.805687 ], [ 1.609219, 50.804337 ], [ 1.578546, 50.855164 ], [ 1.636224, 50.877037 ], [ 1.692683, 50.915377 ], [ 1.763361, 50.878666 ], [ 1.815556, 50.872964 ], [ 1.864085, 50.913841 ], [ 1.881734, 50.893788 ], [ 1.956855, 50.878424 ], [ 1.995595, 50.900381 ], [ 2.039976, 50.830822 ], [ 2.109188, 50.849576 ], [ 2.202647, 50.842941 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62007", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "7", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.692683, 50.915377 ], [ 1.769464, 50.951557 ], [ 1.889653, 50.972732 ], [ 1.912384, 50.982602 ], [ 2.038984, 50.997408 ], [ 2.067712, 51.006505 ], [ 2.121341, 50.978952 ], [ 2.18877, 50.874647 ], [ 2.202647, 50.842941 ], [ 2.109188, 50.849576 ], [ 2.039976, 50.830822 ], [ 1.995595, 50.900381 ], [ 1.956855, 50.878424 ], [ 1.881734, 50.893788 ], [ 1.864085, 50.913841 ], [ 1.815556, 50.872964 ], [ 1.763361, 50.878666 ], [ 1.692683, 50.915377 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62008", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "8", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.473183, 50.638599 ], [ 2.491166, 50.624279 ], [ 2.445568, 50.584594 ], [ 2.461381, 50.545558 ], [ 2.508014, 50.514463 ], [ 2.4489, 50.494161 ], [ 2.399384, 50.510429 ], [ 2.373029, 50.539021 ], [ 2.316628, 50.551917 ], [ 2.29365, 50.621185 ], [ 2.241699, 50.634709 ], [ 2.20638, 50.657795 ], [ 2.234605, 50.677949 ], [ 2.16338, 50.766804 ], [ 2.114507, 50.747757 ], [ 2.098276, 50.764716 ], [ 2.146915, 50.796437 ], [ 2.211363, 50.819535 ], [ 2.254833, 50.788031 ], [ 2.31261, 50.787206 ], [ 2.411478, 50.766734 ], [ 2.342195, 50.740698 ], [ 2.430188, 50.656798 ], [ 2.473183, 50.638599 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62009", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "9", "code_reg": "32" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.508014, 50.514463 ], [ 2.461381, 50.545558 ], [ 2.445568, 50.584594 ], [ 2.491166, 50.624279 ], [ 2.473183, 50.638599 ], [ 2.534782, 50.641663 ], [ 2.546332, 50.627015 ], [ 2.61314, 50.634035 ], [ 2.630516, 50.617952 ], [ 2.718602, 50.629365 ], [ 2.726066, 50.613847 ], [ 2.737878, 50.572139 ], [ 2.710483, 50.552153 ], [ 2.66028, 50.532486 ], [ 2.672496, 50.509882 ], [ 2.650796, 50.48679 ], [ 2.598945, 50.513884 ], [ 2.508014, 50.514463 ] ] ], [ [ [ 2.861987, 50.627507 ], [ 2.808435, 50.607719 ], [ 2.794472, 50.549206 ], [ 2.751518, 50.606891 ], [ 2.769691, 50.663626 ], [ 2.809188, 50.669373 ], [ 2.861987, 50.627507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62010", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "10", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.439437, 50.459334 ], [ 2.4489, 50.494161 ], [ 2.508014, 50.514463 ], [ 2.598945, 50.513884 ], [ 2.650796, 50.48679 ], [ 2.672496, 50.509882 ], [ 2.66028, 50.532486 ], [ 2.710483, 50.552153 ], [ 2.725408, 50.522666 ], [ 2.686007, 50.467315 ], [ 2.733753, 50.406214 ], [ 2.670846, 50.400398 ], [ 2.643824, 50.386336 ], [ 2.555146, 50.386901 ], [ 2.515588, 50.428129 ], [ 2.439437, 50.459334 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62012", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "12", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.710483, 50.552153 ], [ 2.737878, 50.572139 ], [ 2.726066, 50.613847 ], [ 2.751518, 50.606891 ], [ 2.794472, 50.549206 ], [ 2.824771, 50.525611 ], [ 2.886965, 50.537657 ], [ 2.910143, 50.499834 ], [ 2.911246, 50.489351 ], [ 2.841025, 50.448052 ], [ 2.779931, 50.479187 ], [ 2.756111, 50.453829 ], [ 2.804038, 50.42246 ], [ 2.78952, 50.406151 ], [ 2.733753, 50.406214 ], [ 2.686007, 50.467315 ], [ 2.725408, 50.522666 ], [ 2.710483, 50.552153 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "63002", "code_dpt": "63", "nom_dpt": "PUY-DE-DOME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.473174, 46.010738 ], [ 3.426119, 45.982361 ], [ 3.392668, 45.984751 ], [ 3.33342, 45.955863 ], [ 3.184855, 45.951881 ], [ 3.167134, 45.910729 ], [ 3.184132, 45.878402 ], [ 3.155236, 45.849693 ], [ 3.009971, 45.836309 ], [ 2.929567, 45.798611 ], [ 2.875037, 45.813458 ], [ 2.832241, 45.768495 ], [ 2.805851, 45.801222 ], [ 2.745155, 45.794095 ], [ 2.713368, 45.740052 ], [ 2.691374, 45.722246 ], [ 2.720086, 45.685887 ], [ 2.72272, 45.64484 ], [ 2.685714, 45.652613 ], [ 2.534292, 45.579031 ], [ 2.51588, 45.553884 ], [ 2.463472, 45.594682 ], [ 2.486287, 45.640822 ], [ 2.513977, 45.639441 ], [ 2.528684, 45.682196 ], [ 2.521507, 45.711342 ], [ 2.492126, 45.73767 ], [ 2.434119, 45.769857 ], [ 2.430863, 45.788617 ], [ 2.38802, 45.827376 ], [ 2.492225, 45.86403 ], [ 2.568712, 45.957874 ], [ 2.60683, 45.966424 ], [ 2.593143, 45.996065 ], [ 2.602696, 46.032875 ], [ 2.573342, 46.046925 ], [ 2.550607, 46.08645 ], [ 2.565379, 46.143041 ], [ 2.637202, 46.119385 ], [ 2.654375, 46.125256 ], [ 2.676567, 46.172201 ], [ 2.723105, 46.181518 ], [ 2.732598, 46.223413 ], [ 2.786782, 46.198647 ], [ 2.817313, 46.205022 ], [ 2.819163, 46.241792 ], [ 2.85976, 46.25659 ], [ 2.936743, 46.243133 ], [ 2.915817, 46.212792 ], [ 2.915695, 46.174134 ], [ 2.943465, 46.168658 ], [ 2.971744, 46.12169 ], [ 3.016919, 46.102458 ], [ 3.090955, 46.111734 ], [ 3.113059, 46.081448 ], [ 3.160066, 46.066435 ], [ 3.214511, 46.074945 ], [ 3.369134, 46.054484 ], [ 3.419742, 46.07438 ], [ 3.453593, 46.063795 ], [ 3.473174, 46.010738 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "63003", "code_dpt": "63", "nom_dpt": "PUY-DE-DOME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.508409, 45.478508 ], [ 2.51588, 45.553884 ], [ 2.534292, 45.579031 ], [ 2.685714, 45.652613 ], [ 2.72272, 45.64484 ], [ 2.720086, 45.685887 ], [ 2.691374, 45.722246 ], [ 2.713368, 45.740052 ], [ 2.745155, 45.794095 ], [ 2.805851, 45.801222 ], [ 2.832241, 45.768495 ], [ 2.875037, 45.813458 ], [ 2.929567, 45.798611 ], [ 3.009971, 45.836309 ], [ 3.066972, 45.820883 ], [ 3.091033, 45.787427 ], [ 3.089228, 45.767817 ], [ 3.089178, 45.742714 ], [ 3.063319, 45.702047 ], [ 3.112066, 45.683504 ], [ 3.147144, 45.598323 ], [ 3.180699, 45.613556 ], [ 3.198128, 45.571942 ], [ 3.166679, 45.572317 ], [ 3.158365, 45.530187 ], [ 3.130084, 45.489279 ], [ 3.201151, 45.429725 ], [ 3.18721, 45.391147 ], [ 3.215856, 45.370007 ], [ 3.181128, 45.352311 ], [ 3.103498, 45.354373 ], [ 3.063179, 45.33137 ], [ 3.059399, 45.306835 ], [ 3.018305, 45.287066 ], [ 2.948625, 45.309126 ], [ 2.920386, 45.362182 ], [ 2.892968, 45.37924 ], [ 2.815354, 45.400399 ], [ 2.785148, 45.384578 ], [ 2.741279, 45.392959 ], [ 2.714525, 45.381467 ], [ 2.660432, 45.434795 ], [ 2.582689, 45.452677 ], [ 2.543963, 45.478982 ], [ 2.508409, 45.478508 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "63004", "code_dpt": "63", "nom_dpt": "PUY-DE-DOME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "4", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.226542, 45.757379 ], [ 3.254976, 45.766594 ], [ 3.274311, 45.815202 ], [ 3.317785, 45.792387 ], [ 3.411973, 45.804392 ], [ 3.409927, 45.773305 ], [ 3.378392, 45.770246 ], [ 3.351801, 45.732835 ], [ 3.32171, 45.745856 ], [ 3.282982, 45.728058 ], [ 3.293028, 45.670635 ], [ 3.402279, 45.664877 ], [ 3.409339, 45.62622 ], [ 3.44847, 45.584946 ], [ 3.445855, 45.545244 ], [ 3.504942, 45.520807 ], [ 3.51841, 45.467761 ], [ 3.47961, 45.463594 ], [ 3.501257, 45.427633 ], [ 3.455852, 45.400335 ], [ 3.38001, 45.401158 ], [ 3.236171, 45.394629 ], [ 3.215856, 45.370007 ], [ 3.18721, 45.391147 ], [ 3.201151, 45.429725 ], [ 3.130084, 45.489279 ], [ 3.158365, 45.530187 ], [ 3.166679, 45.572317 ], [ 3.198128, 45.571942 ], [ 3.180699, 45.613556 ], [ 3.147144, 45.598323 ], [ 3.112066, 45.683504 ], [ 3.063319, 45.702047 ], [ 3.089178, 45.742714 ], [ 3.089228, 45.767817 ], [ 3.151912, 45.75601 ], [ 3.1706, 45.721638 ], [ 3.201776, 45.72174 ], [ 3.226542, 45.757379 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "63005", "code_dpt": "63", "nom_dpt": "PUY-DE-DOME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "5", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.954474, 45.555827 ], [ 3.975106, 45.44827 ], [ 3.898541, 45.409818 ], [ 3.897408, 45.357084 ], [ 3.852786, 45.361566 ], [ 3.836299, 45.383095 ], [ 3.791406, 45.384772 ], [ 3.789194, 45.358529 ], [ 3.66318, 45.362975 ], [ 3.617814, 45.338165 ], [ 3.55582, 45.393878 ], [ 3.506886, 45.41103 ], [ 3.501257, 45.427633 ], [ 3.47961, 45.463594 ], [ 3.51841, 45.467761 ], [ 3.504942, 45.520807 ], [ 3.445855, 45.545244 ], [ 3.44847, 45.584946 ], [ 3.409339, 45.62622 ], [ 3.402279, 45.664877 ], [ 3.293028, 45.670635 ], [ 3.282982, 45.728058 ], [ 3.32171, 45.745856 ], [ 3.351801, 45.732835 ], [ 3.378392, 45.770246 ], [ 3.409927, 45.773305 ], [ 3.411973, 45.804392 ], [ 3.317785, 45.792387 ], [ 3.274311, 45.815202 ], [ 3.254976, 45.766594 ], [ 3.226542, 45.757379 ], [ 3.187375, 45.75511 ], [ 3.162589, 45.778111 ], [ 3.211405, 45.815932 ], [ 3.155236, 45.849693 ], [ 3.184132, 45.878402 ], [ 3.167134, 45.910729 ], [ 3.184855, 45.951881 ], [ 3.33342, 45.955863 ], [ 3.392668, 45.984751 ], [ 3.426119, 45.982361 ], [ 3.473174, 46.010738 ], [ 3.601154, 46.014958 ], [ 3.63916, 45.965428 ], [ 3.678016, 45.955954 ], [ 3.693892, 45.930958 ], [ 3.72135, 45.922745 ], [ 3.754371, 45.886031 ], [ 3.719124, 45.850068 ], [ 3.726892, 45.83027 ], [ 3.700393, 45.783556 ], [ 3.755838, 45.74661 ], [ 3.78238, 45.71165 ], [ 3.777585, 45.690566 ], [ 3.823924, 45.632143 ], [ 3.908086, 45.59669 ], [ 3.954474, 45.555827 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "64002", "code_dpt": "64", "nom_dpt": "PYRENEES-ATLANTIQUES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.109901, 43.312804 ], [ -0.09645, 43.313028 ], [ -0.064483, 43.353614 ], [ -0.093096, 43.373885 ], [ -0.067273, 43.410416 ], [ -0.042983, 43.41021 ], [ -0.016534, 43.443947 ], [ 0.009655, 43.422202 ], [ -0.004653, 43.375711 ], [ 0.028665, 43.346617 ], [ 0.012768, 43.327535 ], [ -0.025371, 43.329616 ], [ -0.044396, 43.302939 ], [ -0.018516, 43.269385 ], [ -0.044946, 43.233796 ], [ -0.073972, 43.222378 ], [ -0.067874, 43.17712 ], [ -0.116243, 43.179289 ], [ -0.146314, 43.128186 ], [ -0.197563, 43.099969 ], [ -0.190723, 43.051249 ], [ -0.223952, 43.033688 ], [ -0.260505, 43.038275 ], [ -0.30271, 43.058321 ], [ -0.291593, 43.077197 ], [ -0.326855, 43.145844 ], [ -0.354624, 43.168643 ], [ -0.32551, 43.223949 ], [ -0.307695, 43.24199 ], [ -0.338663, 43.280427 ], [ -0.36034, 43.286984 ], [ -0.350696, 43.354318 ], [ -0.396827, 43.359641 ], [ -0.38464, 43.394384 ], [ -0.354363, 43.400964 ], [ -0.308691, 43.430949 ], [ -0.286192, 43.418191 ], [ -0.231141, 43.433642 ], [ -0.198796, 43.392789 ], [ -0.10728, 43.370741 ], [ -0.087271, 43.333844 ], [ -0.114802, 43.322035 ], [ -0.109901, 43.312804 ] ], [ [ -0.117817, 43.307346 ], [ -0.140603, 43.271674 ], [ -0.11839, 43.241377 ], [ -0.079629, 43.271647 ], [ -0.10914, 43.308982 ], [ -0.117817, 43.307346 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "64003", "code_dpt": "64", "nom_dpt": "PYRENEES-ATLANTIQUES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.242837, 43.584985 ], [ -0.176561, 43.596832 ], [ -0.162108, 43.581666 ], [ -0.096783, 43.582406 ], [ -0.087123, 43.542378 ], [ -0.0437, 43.522986 ], [ -0.065754, 43.463489 ], [ -0.067273, 43.410416 ], [ -0.093096, 43.373885 ], [ -0.10728, 43.370741 ], [ -0.198796, 43.392789 ], [ -0.231141, 43.433642 ], [ -0.286192, 43.418191 ], [ -0.308691, 43.430949 ], [ -0.354363, 43.400964 ], [ -0.360772, 43.416811 ], [ -0.411148, 43.432651 ], [ -0.442712, 43.469699 ], [ -0.462409, 43.443208 ], [ -0.459716, 43.411407 ], [ -0.504025, 43.399851 ], [ -0.531883, 43.331785 ], [ -0.505959, 43.296412 ], [ -0.471874, 43.290291 ], [ -0.450058, 43.315239 ], [ -0.378941, 43.285756 ], [ -0.3822, 43.238169 ], [ -0.32551, 43.223949 ], [ -0.354624, 43.168643 ], [ -0.392244, 43.17881 ], [ -0.428813, 43.159872 ], [ -0.506637, 43.183956 ], [ -0.556655, 43.227527 ], [ -0.594412, 43.284311 ], [ -0.628309, 43.23809 ], [ -0.650968, 43.267817 ], [ -0.687719, 43.276546 ], [ -0.67177, 43.310409 ], [ -0.700172, 43.32982 ], [ -0.750116, 43.398122 ], [ -0.82468, 43.418129 ], [ -0.856056, 43.44692 ], [ -0.901075, 43.429878 ], [ -0.988785, 43.447058 ], [ -1.030567, 43.419431 ], [ -1.059787, 43.458544 ], [ -1.068997, 43.50845 ], [ -0.992383, 43.504029 ], [ -0.9882, 43.540199 ], [ -0.923683, 43.534616 ], [ -0.893691, 43.550273 ], [ -0.855713, 43.5419 ], [ -0.803351, 43.556189 ], [ -0.770305, 43.579168 ], [ -0.707609, 43.557882 ], [ -0.657889, 43.559749 ], [ -0.600039, 43.538654 ], [ -0.552764, 43.543158 ], [ -0.449232, 43.596267 ], [ -0.449713, 43.54987 ], [ -0.406042, 43.568226 ], [ -0.305985, 43.559478 ], [ -0.283325, 43.584165 ], [ -0.242837, 43.584985 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "64004", "code_dpt": "64", "nom_dpt": "PYRENEES-ATLANTIQUES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "4", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.413206, 43.273416 ], [ -1.328641, 43.316345 ], [ -1.362543, 43.373788 ], [ -1.389219, 43.399495 ], [ -1.388445, 43.426107 ], [ -1.25991, 43.439703 ], [ -1.287166, 43.39583 ], [ -1.240398, 43.347177 ], [ -1.170293, 43.372868 ], [ -1.214067, 43.436551 ], [ -1.200227, 43.445611 ], [ -1.133267, 43.435251 ], [ -1.08771, 43.443918 ], [ -1.083984, 43.415825 ], [ -1.030567, 43.419431 ], [ -0.988785, 43.447058 ], [ -0.901075, 43.429878 ], [ -0.856056, 43.44692 ], [ -0.82468, 43.418129 ], [ -0.750116, 43.398122 ], [ -0.700172, 43.32982 ], [ -0.67177, 43.310409 ], [ -0.687719, 43.276546 ], [ -0.650968, 43.267817 ], [ -0.628309, 43.23809 ], [ -0.594412, 43.284311 ], [ -0.556655, 43.227527 ], [ -0.506637, 43.183956 ], [ -0.428813, 43.159872 ], [ -0.392244, 43.17881 ], [ -0.354624, 43.168643 ], [ -0.326855, 43.145844 ], [ -0.291593, 43.077197 ], [ -0.30271, 43.058321 ], [ -0.260505, 43.038275 ], [ -0.287669, 43.005556 ], [ -0.27927, 42.942346 ], [ -0.324323, 42.903329 ], [ -0.313443, 42.849375 ], [ -0.349198, 42.835187 ], [ -0.388866, 42.800541 ], [ -0.441449, 42.796876 ], [ -0.509922, 42.825113 ], [ -0.526911, 42.794565 ], [ -0.600281, 42.806428 ], [ -0.602347, 42.830086 ], [ -0.656061, 42.859225 ], [ -0.679442, 42.882929 ], [ -0.728685, 42.895057 ], [ -0.733272, 42.94616 ], [ -0.752805, 42.966961 ], [ -0.811885, 42.951295 ], [ -0.94763, 42.955179 ], [ -1.014744, 42.992818 ], [ -1.07233, 42.99845 ], [ -1.112416, 43.021635 ], [ -1.183728, 43.034176 ], [ -1.230798, 43.054816 ], [ -1.247508, 43.042358 ], [ -1.345197, 43.093069 ], [ -1.356565, 43.028952 ], [ -1.439726, 43.045953 ], [ -1.471369, 43.081117 ], [ -1.41602, 43.127823 ], [ -1.400027, 43.179935 ], [ -1.384954, 43.188125 ], [ -1.382872, 43.252147 ], [ -1.413206, 43.273416 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "64005", "code_dpt": "64", "nom_dpt": "PYRENEES-ATLANTIQUES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "5", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.195616, 43.546095 ], [ -1.134034, 43.520179 ], [ -1.068997, 43.50845 ], [ -1.059787, 43.458544 ], [ -1.030567, 43.419431 ], [ -1.083984, 43.415825 ], [ -1.08771, 43.443918 ], [ -1.133267, 43.435251 ], [ -1.200227, 43.445611 ], [ -1.214067, 43.436551 ], [ -1.170293, 43.372868 ], [ -1.240398, 43.347177 ], [ -1.287166, 43.39583 ], [ -1.25991, 43.439703 ], [ -1.388445, 43.426107 ], [ -1.455076, 43.424124 ], [ -1.474372, 43.449667 ], [ -1.535586, 43.460809 ], [ -1.54982, 43.49433 ], [ -1.524867, 43.529701 ], [ -1.479605, 43.539178 ], [ -1.417658, 43.496907 ], [ -1.322411, 43.504947 ], [ -1.291381, 43.498386 ], [ -1.195616, 43.546095 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "64006", "code_dpt": "64", "nom_dpt": "PYRENEES-ATLANTIQUES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "6", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.54982, 43.49433 ], [ -1.535586, 43.460809 ], [ -1.474372, 43.449667 ], [ -1.455076, 43.424124 ], [ -1.388445, 43.426107 ], [ -1.389219, 43.399495 ], [ -1.362543, 43.373788 ], [ -1.328641, 43.316345 ], [ -1.413206, 43.273416 ], [ -1.468961, 43.273699 ], [ -1.505856, 43.293276 ], [ -1.561732, 43.288398 ], [ -1.57347, 43.252598 ], [ -1.607092, 43.253276 ], [ -1.62948, 43.283226 ], [ -1.623152, 43.303664 ], [ -1.669399, 43.314191 ], [ -1.731045, 43.299018 ], [ -1.73882, 43.329038 ], [ -1.786007, 43.350463 ], [ -1.779209, 43.371078 ], [ -1.644317, 43.406723 ], [ -1.609472, 43.427525 ], [ -1.54982, 43.49433 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "65001", "code_dpt": "65", "nom_dpt": "HAUTES-PYRENEES", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.244136, 43.372719 ], [ 0.298759, 43.38858 ], [ 0.325407, 43.374777 ], [ 0.33135, 43.342654 ], [ 0.378548, 43.355366 ], [ 0.395823, 43.334244 ], [ 0.49354, 43.325482 ], [ 0.547069, 43.329806 ], [ 0.606811, 43.310886 ], [ 0.635725, 43.299139 ], [ 0.550957, 43.236008 ], [ 0.551875, 43.209147 ], [ 0.520655, 43.193261 ], [ 0.441705, 43.130969 ], [ 0.48929, 43.115179 ], [ 0.50459, 43.095359 ], [ 0.563854, 43.074247 ], [ 0.53512, 43.037051 ], [ 0.591825, 43.022373 ], [ 0.627396, 42.999733 ], [ 0.620121, 42.972436 ], [ 0.645959, 42.961336 ], [ 0.600187, 42.928015 ], [ 0.562341, 42.860757 ], [ 0.477357, 42.878244 ], [ 0.456171, 42.817599 ], [ 0.455185, 42.77092 ], [ 0.47775, 42.69999 ], [ 0.425725, 42.690808 ], [ 0.3601, 42.724303 ], [ 0.295536, 42.675038 ], [ 0.259883, 42.71582 ], [ 0.175303, 42.73579 ], [ 0.136567, 42.722327 ], [ 0.137565, 42.749174 ], [ 0.100035, 42.800648 ], [ 0.115309, 42.845682 ], [ 0.15428, 42.859689 ], [ 0.156405, 42.886731 ], [ 0.136341, 42.935988 ], [ 0.113682, 42.933554 ], [ 0.049944, 42.953367 ], [ 0.081044, 43.012866 ], [ 0.076784, 43.064221 ], [ 0.051843, 43.100577 ], [ 0.11251, 43.135936 ], [ 0.091375, 43.184476 ], [ 0.114252, 43.211571 ], [ 0.089646, 43.232693 ], [ 0.078058, 43.282122 ], [ 0.123925, 43.310367 ], [ 0.126321, 43.328821 ], [ 0.245284, 43.307731 ], [ 0.272329, 43.345952 ], [ 0.244136, 43.372719 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "65002", "code_dpt": "65", "nom_dpt": "HAUTES-PYRENEES", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.136567, 42.722327 ], [ 0.088498, 42.716784 ], [ 0.051788, 42.697172 ], [ -0.006541, 42.684887 ], [ -0.057687, 42.693659 ], [ -0.068821, 42.71606 ], [ -0.106114, 42.722056 ], [ -0.15861, 42.795695 ], [ -0.182863, 42.786725 ], [ -0.236449, 42.807745 ], [ -0.313443, 42.849375 ], [ -0.324323, 42.903329 ], [ -0.27927, 42.942346 ], [ -0.287669, 43.005556 ], [ -0.260505, 43.038275 ], [ -0.223952, 43.033688 ], [ -0.190723, 43.051249 ], [ -0.197563, 43.099969 ], [ -0.146314, 43.128186 ], [ -0.116243, 43.179289 ], [ -0.067874, 43.17712 ], [ -0.073972, 43.222378 ], [ -0.044946, 43.233796 ], [ -0.018516, 43.269385 ], [ -0.044396, 43.302939 ], [ -0.025371, 43.329616 ], [ 0.012768, 43.327535 ], [ 0.028665, 43.346617 ], [ -0.004653, 43.375711 ], [ 0.009655, 43.422202 ], [ -0.016534, 43.443947 ], [ -0.042983, 43.41021 ], [ -0.067273, 43.410416 ], [ -0.065754, 43.463489 ], [ -0.0437, 43.522986 ], [ -0.087123, 43.542378 ], [ -0.096783, 43.582406 ], [ -0.074213, 43.60618 ], [ -0.015009, 43.605525 ], [ -0.001666, 43.565323 ], [ 0.053621, 43.518767 ], [ 0.112248, 43.517373 ], [ 0.130741, 43.474065 ], [ 0.166064, 43.442378 ], [ 0.134549, 43.422491 ], [ 0.182031, 43.371183 ], [ 0.244136, 43.372719 ], [ 0.272329, 43.345952 ], [ 0.245284, 43.307731 ], [ 0.126321, 43.328821 ], [ 0.123925, 43.310367 ], [ 0.078058, 43.282122 ], [ 0.089646, 43.232693 ], [ 0.114252, 43.211571 ], [ 0.091375, 43.184476 ], [ 0.11251, 43.135936 ], [ 0.051843, 43.100577 ], [ 0.076784, 43.064221 ], [ 0.081044, 43.012866 ], [ 0.049944, 42.953367 ], [ 0.113682, 42.933554 ], [ 0.136341, 42.935988 ], [ 0.156405, 42.886731 ], [ 0.15428, 42.859689 ], [ 0.115309, 42.845682 ], [ 0.100035, 42.800648 ], [ 0.137565, 42.749174 ], [ 0.136567, 42.722327 ] ] ], [ [ [ -0.117817, 43.307346 ], [ -0.10914, 43.308982 ], [ -0.079629, 43.271647 ], [ -0.11839, 43.241377 ], [ -0.140603, 43.271674 ], [ -0.117817, 43.307346 ] ] ], [ [ [ -0.10728, 43.370741 ], [ -0.093096, 43.373885 ], [ -0.064483, 43.353614 ], [ -0.09645, 43.313028 ], [ -0.109901, 43.312804 ], [ -0.114802, 43.322035 ], [ -0.087271, 43.333844 ], [ -0.10728, 43.370741 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "66002", "code_dpt": "66", "nom_dpt": "PYRENEES-ORIENTALES", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.32249, 42.708109 ], [ 2.355346, 42.728048 ], [ 2.336096, 42.840709 ], [ 2.382167, 42.848466 ], [ 2.45682, 42.837476 ], [ 2.500452, 42.850431 ], [ 2.600079, 42.836595 ], [ 2.72743, 42.834405 ], [ 2.761908, 42.873325 ], [ 2.810132, 42.89842 ], [ 2.865274, 42.918341 ], [ 2.917115, 42.88486 ], [ 2.976601, 42.870151 ], [ 3.043511, 42.83815 ], [ 3.035728, 42.640766 ], [ 3.043114, 42.600082 ], [ 3.002519, 42.594526 ], [ 2.980849, 42.629865 ], [ 2.93016, 42.653534 ], [ 2.926174, 42.655572 ], [ 2.983769, 42.678298 ], [ 2.953208, 42.739977 ], [ 2.913407, 42.715239 ], [ 2.874276, 42.705405 ], [ 2.82912, 42.738772 ], [ 2.828698, 42.766069 ], [ 2.735817, 42.776859 ], [ 2.73676, 42.748997 ], [ 2.700506, 42.726827 ], [ 2.671208, 42.725429 ], [ 2.615913, 42.701715 ], [ 2.551405, 42.706184 ], [ 2.525261, 42.688979 ], [ 2.530539, 42.654082 ], [ 2.474008, 42.654259 ], [ 2.442511, 42.683356 ], [ 2.376426, 42.687712 ], [ 2.32249, 42.708109 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "66003", "code_dpt": "66", "nom_dpt": "PYRENEES-ORIENTALES", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "3", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.318743, 42.425012 ], [ 2.257083, 42.438488 ], [ 2.20135, 42.416664 ], [ 2.133169, 42.414342 ], [ 2.085933, 42.363745 ], [ 2.012785, 42.349402 ], [ 1.969772, 42.376653 ], [ 1.933845, 42.454165 ], [ 1.887127, 42.449939 ], [ 1.831512, 42.483092 ], [ 1.729641, 42.496096 ], [ 1.738051, 42.553286 ], [ 1.786125, 42.573623 ], [ 1.865329, 42.579889 ], [ 1.910766, 42.608063 ], [ 1.96906, 42.616742 ], [ 1.997956, 42.660903 ], [ 2.027052, 42.65262 ], [ 2.127885, 42.672039 ], [ 2.166054, 42.663918 ], [ 2.176088, 42.653009 ], [ 2.244451, 42.679831 ], [ 2.256682, 42.698268 ], [ 2.32249, 42.708109 ], [ 2.376426, 42.687712 ], [ 2.442511, 42.683356 ], [ 2.474008, 42.654259 ], [ 2.530539, 42.654082 ], [ 2.525261, 42.688979 ], [ 2.551405, 42.706184 ], [ 2.615913, 42.701715 ], [ 2.671208, 42.725429 ], [ 2.700506, 42.726827 ], [ 2.73676, 42.748997 ], [ 2.735817, 42.776859 ], [ 2.828698, 42.766069 ], [ 2.82912, 42.738772 ], [ 2.874276, 42.705405 ], [ 2.879856, 42.693815 ], [ 2.863208, 42.687201 ], [ 2.813588, 42.679216 ], [ 2.795727, 42.661049 ], [ 2.741633, 42.6572 ], [ 2.704556, 42.66899 ], [ 2.659284, 42.629117 ], [ 2.62521, 42.630468 ], [ 2.632532, 42.58716 ], [ 2.665121, 42.573063 ], [ 2.636076, 42.545612 ], [ 2.595539, 42.546221 ], [ 2.561547, 42.565371 ], [ 2.553014, 42.513959 ], [ 2.518021, 42.498992 ], [ 2.46845, 42.499817 ], [ 2.373248, 42.440529 ], [ 2.318743, 42.425012 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "66004", "code_dpt": "66", "nom_dpt": "PYRENEES-ORIENTALES", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "4", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.318743, 42.425012 ], [ 2.373248, 42.440529 ], [ 2.46845, 42.499817 ], [ 2.518021, 42.498992 ], [ 2.553014, 42.513959 ], [ 2.561547, 42.565371 ], [ 2.595539, 42.546221 ], [ 2.636076, 42.545612 ], [ 2.665121, 42.573063 ], [ 2.632532, 42.58716 ], [ 2.62521, 42.630468 ], [ 2.659284, 42.629117 ], [ 2.704556, 42.66899 ], [ 2.741633, 42.6572 ], [ 2.795727, 42.661049 ], [ 2.812638, 42.645067 ], [ 2.89269, 42.629561 ], [ 2.906655, 42.651898 ], [ 2.93016, 42.653534 ], [ 2.980849, 42.629865 ], [ 3.002519, 42.594526 ], [ 3.043114, 42.600082 ], [ 3.051256, 42.545357 ], [ 3.090214, 42.525284 ], [ 3.136557, 42.516246 ], [ 3.17407, 42.435191 ], [ 3.085196, 42.42631 ], [ 3.040447, 42.473689 ], [ 2.920537, 42.45746 ], [ 2.870758, 42.46694 ], [ 2.798364, 42.419906 ], [ 2.772117, 42.412294 ], [ 2.723961, 42.422724 ], [ 2.653827, 42.38768 ], [ 2.675295, 42.355741 ], [ 2.66331, 42.340999 ], [ 2.56187, 42.357114 ], [ 2.533265, 42.333489 ], [ 2.484885, 42.340078 ], [ 2.410338, 42.392156 ], [ 2.356268, 42.404283 ], [ 2.318743, 42.425012 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67004", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "4", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.482949, 48.65262 ], [ 7.518394, 48.692516 ], [ 7.580386, 48.716457 ], [ 7.636791, 48.699094 ], [ 7.68878, 48.665676 ], [ 7.730665, 48.652161 ], [ 7.708654, 48.603941 ], [ 7.688052, 48.598132 ], [ 7.70401, 48.557591 ], [ 7.730607, 48.558067 ], [ 7.730281, 48.551159 ], [ 7.695986, 48.533361 ], [ 7.70613, 48.507023 ], [ 7.771475, 48.492437 ], [ 7.753419, 48.434607 ], [ 7.695259, 48.450769 ], [ 7.697871, 48.482063 ], [ 7.608137, 48.475283 ], [ 7.583492, 48.526537 ], [ 7.583838, 48.580885 ], [ 7.544364, 48.584825 ], [ 7.546771, 48.622836 ], [ 7.482949, 48.65262 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67005", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "5", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.608137, 48.475283 ], [ 7.697871, 48.482063 ], [ 7.695259, 48.450769 ], [ 7.753419, 48.434607 ], [ 7.730966, 48.382205 ], [ 7.745232, 48.329826 ], [ 7.693937, 48.302121 ], [ 7.666151, 48.221101 ], [ 7.64185, 48.203996 ], [ 7.577859, 48.121393 ], [ 7.518595, 48.127764 ], [ 7.520334, 48.1495 ], [ 7.47014, 48.160174 ], [ 7.476943, 48.203537 ], [ 7.351512, 48.247455 ], [ 7.313147, 48.252143 ], [ 7.274333, 48.305076 ], [ 7.198282, 48.310477 ], [ 7.169537, 48.342307 ], [ 7.205947, 48.366327 ], [ 7.268631, 48.389122 ], [ 7.301924, 48.426479 ], [ 7.393046, 48.423398 ], [ 7.417001, 48.434591 ], [ 7.481226, 48.419997 ], [ 7.482805, 48.386326 ], [ 7.541149, 48.396269 ], [ 7.591959, 48.444532 ], [ 7.608137, 48.475283 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67006", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "6", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.608137, 48.475283 ], [ 7.591959, 48.444532 ], [ 7.541149, 48.396269 ], [ 7.482805, 48.386326 ], [ 7.481226, 48.419997 ], [ 7.417001, 48.434591 ], [ 7.393046, 48.423398 ], [ 7.301924, 48.426479 ], [ 7.268631, 48.389122 ], [ 7.205947, 48.366327 ], [ 7.169537, 48.342307 ], [ 7.141319, 48.332018 ], [ 7.075964, 48.352585 ], [ 7.100822, 48.373744 ], [ 7.095687, 48.426533 ], [ 7.123165, 48.513592 ], [ 7.07936, 48.536418 ], [ 7.168499, 48.528693 ], [ 7.216571, 48.552364 ], [ 7.256282, 48.588676 ], [ 7.304356, 48.66021 ], [ 7.366848, 48.640782 ], [ 7.39893, 48.659862 ], [ 7.482949, 48.65262 ], [ 7.546771, 48.622836 ], [ 7.544364, 48.584825 ], [ 7.583838, 48.580885 ], [ 7.583492, 48.526537 ], [ 7.608137, 48.475283 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67007", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "7", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.65632, 48.846782 ], [ 7.619815, 48.834875 ], [ 7.614368, 48.803447 ], [ 7.653608, 48.728955 ], [ 7.636791, 48.699094 ], [ 7.580386, 48.716457 ], [ 7.518394, 48.692516 ], [ 7.482949, 48.65262 ], [ 7.39893, 48.659862 ], [ 7.366848, 48.640782 ], [ 7.304356, 48.66021 ], [ 7.266276, 48.662301 ], [ 7.260134, 48.694715 ], [ 7.308583, 48.76788 ], [ 7.290899, 48.793908 ], [ 7.148854, 48.844597 ], [ 7.1268, 48.801151 ], [ 7.047117, 48.820637 ], [ 7.05501, 48.864918 ], [ 6.987974, 48.891368 ], [ 6.955067, 48.919959 ], [ 6.986812, 48.949618 ], [ 7.032219, 48.956049 ], [ 7.031687, 48.986365 ], [ 7.054913, 49.030628 ], [ 7.106358, 49.045346 ], [ 7.129951, 49.00536 ], [ 7.17424, 49.006366 ], [ 7.209311, 48.980088 ], [ 7.237988, 48.98765 ], [ 7.293927, 48.97262 ], [ 7.326853, 48.943382 ], [ 7.451631, 48.967972 ], [ 7.513191, 48.94325 ], [ 7.48663, 48.903436 ], [ 7.578636, 48.852324 ], [ 7.65632, 48.846782 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67008", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "8", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.924601, 48.690536 ], [ 7.868085, 48.714622 ], [ 7.925726, 48.779939 ], [ 7.966374, 48.837604 ], [ 7.949029, 48.867816 ], [ 7.901024, 48.89004 ], [ 7.832046, 48.903073 ], [ 7.747835, 48.868201 ], [ 7.65632, 48.846782 ], [ 7.578636, 48.852324 ], [ 7.48663, 48.903436 ], [ 7.513191, 48.94325 ], [ 7.536514, 48.93364 ], [ 7.579926, 48.961613 ], [ 7.588737, 48.991046 ], [ 7.635286, 49.05417 ], [ 7.671084, 49.045973 ], [ 7.730602, 49.054459 ], [ 7.766454, 49.046681 ], [ 7.799934, 49.064164 ], [ 7.867408, 49.033492 ], [ 7.93704, 49.056232 ], [ 7.976319, 49.028302 ], [ 8.051136, 49.012758 ], [ 8.091376, 48.989258 ], [ 8.193517, 48.976475 ], [ 8.197396, 48.957103 ], [ 8.141568, 48.896071 ], [ 8.101069, 48.815814 ], [ 8.017477, 48.762752 ], [ 7.970249, 48.756231 ], [ 7.961742, 48.720258 ], [ 7.924601, 48.690536 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67009", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "9", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.924601, 48.690536 ], [ 7.835923, 48.633674 ], [ 7.764931, 48.655065 ], [ 7.730665, 48.652161 ], [ 7.68878, 48.665676 ], [ 7.636791, 48.699094 ], [ 7.653608, 48.728955 ], [ 7.614368, 48.803447 ], [ 7.619815, 48.834875 ], [ 7.65632, 48.846782 ], [ 7.747835, 48.868201 ], [ 7.832046, 48.903073 ], [ 7.901024, 48.89004 ], [ 7.949029, 48.867816 ], [ 7.966374, 48.837604 ], [ 7.925726, 48.779939 ], [ 7.868085, 48.714622 ], [ 7.924601, 48.690536 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "68002", "code_dpt": "68", "nom_dpt": "HAUT-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.981539, 48.009421 ], [ 7.018614, 48.055059 ], [ 7.05165, 48.082607 ], [ 7.084163, 48.129222 ], [ 7.059047, 48.139181 ], [ 7.10629, 48.194309 ], [ 7.148723, 48.264339 ], [ 7.198282, 48.310477 ], [ 7.274333, 48.305076 ], [ 7.313147, 48.252143 ], [ 7.351512, 48.247455 ], [ 7.476943, 48.203537 ], [ 7.47014, 48.160174 ], [ 7.445367, 48.176811 ], [ 7.392709, 48.176323 ], [ 7.367676, 48.130283 ], [ 7.331807, 48.121009 ], [ 7.316066, 48.070524 ], [ 7.350848, 48.052985 ], [ 7.346417, 48.017387 ], [ 7.32841, 47.937153 ], [ 7.192393, 47.892503 ], [ 7.069805, 47.904976 ], [ 6.983187, 47.982423 ], [ 6.981539, 48.009421 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "68003", "code_dpt": "68", "nom_dpt": "HAUT-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "3", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.524674, 47.660194 ], [ 7.593036, 47.600821 ], [ 7.584266, 47.575713 ], [ 7.517363, 47.545768 ], [ 7.507921, 47.496229 ], [ 7.453485, 47.473576 ], [ 7.386298, 47.431969 ], [ 7.303976, 47.438255 ], [ 7.247142, 47.421135 ], [ 7.235902, 47.436879 ], [ 7.174731, 47.44267 ], [ 7.168905, 47.489501 ], [ 7.130346, 47.503027 ], [ 7.142173, 47.525024 ], [ 7.106216, 47.551337 ], [ 7.085388, 47.593053 ], [ 7.009213, 47.599391 ], [ 7.019805, 47.650679 ], [ 7.045282, 47.670375 ], [ 7.027565, 47.70537 ], [ 7.037418, 47.721558 ], [ 7.125778, 47.704612 ], [ 7.21277, 47.694964 ], [ 7.251127, 47.72223 ], [ 7.284869, 47.718411 ], [ 7.286547, 47.680022 ], [ 7.320192, 47.667785 ], [ 7.337946, 47.616871 ], [ 7.409367, 47.590068 ], [ 7.508961, 47.630473 ], [ 7.524674, 47.660194 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "68004", "code_dpt": "68", "nom_dpt": "HAUT-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "4", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.037418, 47.721558 ], [ 7.011685, 47.741631 ], [ 6.93845, 47.771155 ], [ 6.864959, 47.784607 ], [ 6.84618, 47.822945 ], [ 6.920048, 47.850287 ], [ 6.898328, 47.888695 ], [ 6.927513, 47.912132 ], [ 6.92038, 47.945998 ], [ 6.943508, 47.998737 ], [ 6.981539, 48.009421 ], [ 6.983187, 47.982423 ], [ 7.069805, 47.904976 ], [ 7.192393, 47.892503 ], [ 7.32841, 47.937153 ], [ 7.346417, 48.017387 ], [ 7.365188, 47.997738 ], [ 7.444885, 47.981393 ], [ 7.483966, 47.921299 ], [ 7.580987, 47.92077 ], [ 7.557729, 47.880947 ], [ 7.563369, 47.851168 ], [ 7.441331, 47.824541 ], [ 7.395795, 47.836192 ], [ 7.311172, 47.836362 ], [ 7.252855, 47.786658 ], [ 7.181761, 47.762019 ], [ 7.206193, 47.734419 ], [ 7.21277, 47.694964 ], [ 7.125778, 47.704612 ], [ 7.037418, 47.721558 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69008", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "8", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.438591, 46.167879 ], [ 4.468335, 46.183161 ], [ 4.510079, 46.172995 ], [ 4.499048, 46.144104 ], [ 4.530095, 46.120912 ], [ 4.550862, 46.085315 ], [ 4.540444, 46.017971 ], [ 4.565291, 45.988908 ], [ 4.638493, 45.980775 ], [ 4.663196, 45.948314 ], [ 4.644541, 45.889592 ], [ 4.675412, 45.843113 ], [ 4.699869, 45.841343 ], [ 4.734445, 45.85159 ], [ 4.802672, 45.791704 ], [ 4.794592, 45.776034 ], [ 4.792456, 45.773294 ], [ 4.761212, 45.770688 ], [ 4.719769, 45.796763 ], [ 4.657254, 45.791195 ], [ 4.617526, 45.75615 ], [ 4.56853, 45.767515 ], [ 4.524796, 45.758937 ], [ 4.495274, 45.803464 ], [ 4.449513, 45.836033 ], [ 4.390601, 45.837476 ], [ 4.323221, 45.903887 ], [ 4.34602, 45.929943 ], [ 4.311989, 45.942006 ], [ 4.288823, 45.973172 ], [ 4.312008, 46.00513 ], [ 4.261272, 46.036858 ], [ 4.310407, 46.081719 ], [ 4.322116, 46.129982 ], [ 4.381809, 46.149661 ], [ 4.417362, 46.135921 ], [ 4.438591, 46.167879 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69009", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "9", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.438591, 46.167879 ], [ 4.422965, 46.203137 ], [ 4.38808, 46.219789 ], [ 4.398757, 46.284322 ], [ 4.427039, 46.30283 ], [ 4.488465, 46.287994 ], [ 4.504001, 46.267139 ], [ 4.586511, 46.268694 ], [ 4.638725, 46.301423 ], [ 4.67978, 46.304518 ], [ 4.70748, 46.284705 ], [ 4.705231, 46.250873 ], [ 4.736181, 46.233202 ], [ 4.729059, 46.17943 ], [ 4.780213, 46.176677 ], [ 4.795944, 46.139158 ], [ 4.748023, 46.091357 ], [ 4.761755, 46.067438 ], [ 4.739617, 46.047487 ], [ 4.748988, 46.003757 ], [ 4.754611, 45.973811 ], [ 4.730582, 45.950727 ], [ 4.761121, 45.934998 ], [ 4.726965, 45.907467 ], [ 4.727956, 45.876936 ], [ 4.699869, 45.841343 ], [ 4.675412, 45.843113 ], [ 4.644541, 45.889592 ], [ 4.663196, 45.948314 ], [ 4.638493, 45.980775 ], [ 4.565291, 45.988908 ], [ 4.540444, 46.017971 ], [ 4.550862, 46.085315 ], [ 4.530095, 46.120912 ], [ 4.499048, 46.144104 ], [ 4.510079, 46.172995 ], [ 4.468335, 46.183161 ], [ 4.438591, 46.167879 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69010", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "10", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.547261, 45.580157 ], [ 4.467814, 45.585752 ], [ 4.441489, 45.623054 ], [ 4.410284, 45.632051 ], [ 4.365516, 45.698519 ], [ 4.390677, 45.755077 ], [ 4.37645, 45.784107 ], [ 4.390601, 45.837476 ], [ 4.449513, 45.836033 ], [ 4.495274, 45.803464 ], [ 4.524796, 45.758937 ], [ 4.56853, 45.767515 ], [ 4.617526, 45.75615 ], [ 4.657254, 45.791195 ], [ 4.719769, 45.796763 ], [ 4.761212, 45.770688 ], [ 4.735694, 45.725372 ], [ 4.771773, 45.728783 ], [ 4.820581, 45.695579 ], [ 4.768809, 45.65018 ], [ 4.72881, 45.691098 ], [ 4.698715, 45.698365 ], [ 4.663177, 45.673622 ], [ 4.599493, 45.671005 ], [ 4.547261, 45.580157 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69011", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "11", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.756936, 45.455707 ], [ 4.721828, 45.494395 ], [ 4.681929, 45.479806 ], [ 4.654164, 45.487694 ], [ 4.650786, 45.529985 ], [ 4.614858, 45.575477 ], [ 4.547261, 45.580157 ], [ 4.599493, 45.671005 ], [ 4.663177, 45.673622 ], [ 4.698715, 45.698365 ], [ 4.72881, 45.691098 ], [ 4.768809, 45.65018 ], [ 4.808657, 45.635937 ], [ 4.854779, 45.640996 ], [ 4.887967, 45.664557 ], [ 4.917269, 45.648208 ], [ 4.93408, 45.683509 ], [ 4.959680599496522, 45.680106661302332 ], [ 5.054025, 45.660055 ], [ 5.034142, 45.61399 ], [ 5.002822, 45.62247 ], [ 4.908274, 45.606702 ], [ 4.808442, 45.57235 ], [ 4.871814, 45.527636 ], [ 4.841456, 45.500603 ], [ 4.756936, 45.455707 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69012", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "12", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.761212, 45.770688 ], [ 4.792456, 45.773294 ], [ 4.786562, 45.764164 ], [ 4.823046, 45.714608 ], [ 4.840546, 45.708054 ], [ 4.828591, 45.654043 ], [ 4.808657, 45.635937 ], [ 4.768809, 45.65018 ], [ 4.820581, 45.695579 ], [ 4.771773, 45.728783 ], [ 4.735694, 45.725372 ], [ 4.761212, 45.770688 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69013", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "13", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.101067, 45.813378 ], [ 5.090735, 45.787158 ], [ 5.094527, 45.739453 ], [ 5.12668, 45.737554 ], [ 5.153997, 45.699724 ], [ 5.104281, 45.698294 ], [ 5.089164, 45.677199 ], [ 5.054025, 45.660055 ], [ 4.959680599496522, 45.680106661302332 ], [ 4.928922501321443, 45.723915692898437 ], [ 4.937738, 45.771802 ], [ 4.970375, 45.807385 ], [ 5.101067, 45.813378 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "70001", "code_dpt": "70", "nom_dpt": "HAUTE-SAONE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "1", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.172705, 47.397778 ], [ 6.119817, 47.395498 ], [ 6.079538, 47.354654 ], [ 6.023555, 47.33235 ], [ 5.926704, 47.344759 ], [ 5.926441, 47.327073 ], [ 5.904306, 47.333025 ], [ 5.845068, 47.300892 ], [ 5.795302, 47.289697 ], [ 5.735196, 47.26344 ], [ 5.698726, 47.265006 ], [ 5.601314, 47.260206 ], [ 5.533238, 47.286528 ], [ 5.518539, 47.304187 ], [ 5.474295, 47.315298 ], [ 5.495005, 47.341434 ], [ 5.496919, 47.388551 ], [ 5.451393, 47.383973 ], [ 5.430425, 47.421357 ], [ 5.441022, 47.446559 ], [ 5.379534, 47.466142 ], [ 5.399216, 47.499014 ], [ 5.44746, 47.4962 ], [ 5.49664, 47.54713 ], [ 5.478564, 47.605386 ], [ 5.425595, 47.632074 ], [ 5.399805, 47.597162 ], [ 5.374079, 47.604542 ], [ 5.406486, 47.673623 ], [ 5.530594, 47.674009 ], [ 5.567389, 47.707121 ], [ 5.596814, 47.671647 ], [ 5.688783, 47.684778 ], [ 5.689648, 47.733903 ], [ 5.707293, 47.767718 ], [ 5.676612, 47.779158 ], [ 5.698266, 47.823355 ], [ 5.731428, 47.817634 ], [ 5.761192, 47.859343 ], [ 5.82186, 47.869111 ], [ 5.851327, 47.905925 ], [ 5.884726, 47.926047 ], [ 5.947534, 47.97971 ], [ 6.002262, 47.95609 ], [ 6.036864, 48.001455 ], [ 6.109235, 48.012469 ], [ 6.063243, 47.973104 ], [ 6.087329, 47.899874 ], [ 6.147646, 47.858857 ], [ 6.124963, 47.799297 ], [ 6.165476, 47.805243 ], [ 6.18316, 47.784831 ], [ 6.19415, 47.729043 ], [ 6.237145, 47.741166 ], [ 6.267979, 47.706997 ], [ 6.247324, 47.682763 ], [ 6.262502, 47.661143 ], [ 6.177451, 47.595295 ], [ 6.121424, 47.575025 ], [ 6.082712, 47.533734 ], [ 6.115759, 47.504614 ], [ 6.139786, 47.419294 ], [ 6.172705, 47.397778 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "70002", "code_dpt": "70", "nom_dpt": "HAUTE-SAONE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "2", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.807005, 47.562801 ], [ 6.781102, 47.536366 ], [ 6.740108, 47.556802 ], [ 6.670176, 47.557899 ], [ 6.627005, 47.529848 ], [ 6.581558, 47.540985 ], [ 6.573512, 47.495494 ], [ 6.517722, 47.49667 ], [ 6.500569, 47.510252 ], [ 6.411148, 47.521897 ], [ 6.334475, 47.505999 ], [ 6.280184, 47.443969 ], [ 6.250552, 47.424665 ], [ 6.177622, 47.416041 ], [ 6.172705, 47.397778 ], [ 6.139786, 47.419294 ], [ 6.115759, 47.504614 ], [ 6.082712, 47.533734 ], [ 6.121424, 47.575025 ], [ 6.177451, 47.595295 ], [ 6.262502, 47.661143 ], [ 6.247324, 47.682763 ], [ 6.267979, 47.706997 ], [ 6.237145, 47.741166 ], [ 6.19415, 47.729043 ], [ 6.18316, 47.784831 ], [ 6.165476, 47.805243 ], [ 6.124963, 47.799297 ], [ 6.147646, 47.858857 ], [ 6.087329, 47.899874 ], [ 6.063243, 47.973104 ], [ 6.109235, 48.012469 ], [ 6.156058, 48.006944 ], [ 6.161247, 47.958296 ], [ 6.237987, 47.932842 ], [ 6.277334, 47.953809 ], [ 6.322461, 47.950083 ], [ 6.364993, 47.962572 ], [ 6.431921, 47.94381 ], [ 6.478262, 47.885442 ], [ 6.542014, 47.902534 ], [ 6.568708, 47.934499 ], [ 6.601244, 47.944379 ], [ 6.645203, 47.904085 ], [ 6.738164, 47.862049 ], [ 6.784952, 47.849573 ], [ 6.823539, 47.813054 ], [ 6.757638, 47.747878 ], [ 6.798335, 47.643999 ], [ 6.785643, 47.611358 ], [ 6.807005, 47.562801 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "71001", "code_dpt": "71", "nom_dpt": "SAONE-ET-LOIRE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "1", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.427039, 46.30283 ], [ 4.401414, 46.314028 ], [ 4.377524, 46.350118 ], [ 4.410836, 46.374946 ], [ 4.448596, 46.3764 ], [ 4.541384, 46.455197 ], [ 4.540465, 46.48402 ], [ 4.484288, 46.493283 ], [ 4.532289, 46.520173 ], [ 4.570221, 46.605478 ], [ 4.617175, 46.608652 ], [ 4.643013, 46.630341 ], [ 4.681088, 46.626249 ], [ 4.674319, 46.599167 ], [ 4.702296, 46.585444 ], [ 4.771569, 46.560129 ], [ 4.783225, 46.516941 ], [ 4.860336, 46.519675 ], [ 4.881406, 46.485987 ], [ 4.91453, 46.480113 ], [ 4.894444, 46.445374 ], [ 4.888208, 46.402982 ], [ 4.85853, 46.368017 ], [ 4.851423, 46.326078 ], [ 4.810817, 46.254547 ], [ 4.780213, 46.176677 ], [ 4.729059, 46.17943 ], [ 4.736181, 46.233202 ], [ 4.705231, 46.250873 ], [ 4.70748, 46.284705 ], [ 4.67978, 46.304518 ], [ 4.638725, 46.301423 ], [ 4.586511, 46.268694 ], [ 4.504001, 46.267139 ], [ 4.488465, 46.287994 ], [ 4.427039, 46.30283 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "38003", "code_dpt": "38", "nom_dpt": "ISERE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.577221, 45.242897 ], [ 5.573045, 45.26184 ], [ 5.615665, 45.294176 ], [ 5.639765, 45.2546 ], [ 5.681064, 45.213398 ], [ 5.714042, 45.20175 ], [ 5.71463, 45.174402 ], [ 5.742797, 45.165725 ], [ 5.699648, 45.160452 ], [ 5.701361, 45.187962 ], [ 5.637478, 45.195733 ], [ 5.577221, 45.242897 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57001", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.164157, 49.09776 ], [ 6.159795, 49.099822 ], [ 6.118933, 49.077098 ], [ 6.095554, 49.101917 ], [ 6.108275, 49.133954 ], [ 6.077713, 49.147391 ], [ 6.010886, 49.153679 ], [ 6.017339, 49.17189 ], [ 5.978771, 49.194857 ], [ 6.009565, 49.221792 ], [ 6.030761, 49.233082 ], [ 6.06086, 49.250216 ], [ 6.128225, 49.261964 ], [ 6.185822, 49.256587 ], [ 6.203872, 49.220705 ], [ 6.179697, 49.185211 ], [ 6.209461, 49.170016 ], [ 6.18468, 49.112538 ], [ 6.164157, 49.09776 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59004", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "4", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.062516, 50.6379 ], [ 3.041009, 50.636206 ], [ 2.952254, 50.674195 ], [ 2.981874, 50.693774 ], [ 2.937172, 50.730056 ], [ 2.937651, 50.742573 ], [ 3.058745, 50.780708 ], [ 3.065825, 50.719403 ], [ 3.062516, 50.6379 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59013", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "13", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.240201, 51.038579 ], [ 2.35041, 51.06024 ], [ 2.395873, 51.051003 ], [ 2.449612, 50.986451 ], [ 2.391248, 50.998039 ], [ 2.320638, 50.999675 ], [ 2.283751, 50.975969 ], [ 2.240569, 51.020966 ], [ 2.240201, 51.038579 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59014", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "14", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.395873, 51.051003 ], [ 2.546031, 51.089397 ], [ 2.578288, 51.00002 ], [ 2.606478, 50.988909 ], [ 2.63009, 50.945809 ], [ 2.604717, 50.906352 ], [ 2.570401, 50.897572 ], [ 2.475645, 50.832473 ], [ 2.423621, 50.863438 ], [ 2.331741, 50.839519 ], [ 2.31261, 50.787206 ], [ 2.254833, 50.788031 ], [ 2.211363, 50.819535 ], [ 2.202647, 50.842941 ], [ 2.18877, 50.874647 ], [ 2.121341, 50.978952 ], [ 2.067712, 51.006505 ], [ 2.110828, 51.004388 ], [ 2.240201, 51.038579 ], [ 2.240569, 51.020966 ], [ 2.283751, 50.975969 ], [ 2.320638, 50.999675 ], [ 2.391248, 50.998039 ], [ 2.449612, 50.986451 ], [ 2.395873, 51.051003 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "63001", "code_dpt": "63", "nom_dpt": "PUY-DE-DOME", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.089228, 45.767817 ], [ 3.091033, 45.787427 ], [ 3.066972, 45.820883 ], [ 3.009971, 45.836309 ], [ 3.155236, 45.849693 ], [ 3.211405, 45.815932 ], [ 3.162589, 45.778111 ], [ 3.187375, 45.75511 ], [ 3.226542, 45.757379 ], [ 3.201776, 45.72174 ], [ 3.1706, 45.721638 ], [ 3.151912, 45.75601 ], [ 3.089228, 45.767817 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "66001", "code_dpt": "66", "nom_dpt": "PYRENEES-ORIENTALES", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.926174, 42.655572 ], [ 2.93016, 42.653534 ], [ 2.906655, 42.651898 ], [ 2.89269, 42.629561 ], [ 2.812638, 42.645067 ], [ 2.795727, 42.661049 ], [ 2.813588, 42.679216 ], [ 2.863208, 42.687201 ], [ 2.879856, 42.693815 ], [ 2.874276, 42.705405 ], [ 2.913407, 42.715239 ], [ 2.953208, 42.739977 ], [ 2.983769, 42.678298 ], [ 2.926174, 42.655572 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "67001", "code_dpt": "67", "nom_dpt": "BAS-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.688052, 48.598132 ], [ 7.788180742570278, 48.590923727211667 ], [ 7.735109, 48.570551 ], [ 7.730607, 48.558067 ], [ 7.70401, 48.557591 ], [ 7.688052, 48.598132 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "68005", "code_dpt": "68", "nom_dpt": "HAUT-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "5", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.320192, 47.667785 ], [ 7.286547, 47.680022 ], [ 7.284869, 47.718411 ], [ 7.251127, 47.72223 ], [ 7.21277, 47.694964 ], [ 7.206193, 47.734419 ], [ 7.29635, 47.755235 ], [ 7.380255, 47.758478 ], [ 7.39407, 47.7736 ], [ 7.444726, 47.763059 ], [ 7.469097, 47.713225 ], [ 7.42184, 47.711471 ], [ 7.352992, 47.688995 ], [ 7.320192, 47.667785 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69014", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "14", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.856179, 45.729488 ], [ 4.88699, 45.72595 ], [ 4.928922501321443, 45.723915692898437 ], [ 4.959680599496522, 45.680106661302332 ], [ 4.93408, 45.683509 ], [ 4.917269, 45.648208 ], [ 4.887967, 45.664557 ], [ 4.854779, 45.640996 ], [ 4.808657, 45.635937 ], [ 4.828591, 45.654043 ], [ 4.840546, 45.708054 ], [ 4.839564, 45.717969 ], [ 4.854364, 45.719871 ], [ 4.856179, 45.729488 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75003", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "3", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.327115, 48.883484 ], [ 2.3159893508653, 48.881454495077314 ], [ 2.300454, 48.892691 ], [ 2.303777, 48.894152 ], [ 2.319884, 48.900459 ], [ 2.334965, 48.901384 ], [ 2.327115, 48.883484 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06003", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "3", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.296238, 43.758706 ], [ 7.369229, 43.739722 ], [ 7.320853, 43.72345 ], [ 7.246931, 43.713236 ], [ 7.236378, 43.718759 ], [ 7.228696, 43.731352 ], [ 7.256418, 43.755593 ], [ 7.296238, 43.758706 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31001", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.442838, 43.651298 ], [ 1.43707, 43.61619 ], [ 1.457131, 43.604972 ], [ 1.436157, 43.604707 ], [ 1.383334, 43.596875 ], [ 1.351882, 43.604464 ], [ 1.271654, 43.65008 ], [ 1.236545, 43.650308 ], [ 1.299539, 43.681966 ], [ 1.345771, 43.662231 ], [ 1.383063, 43.678875 ], [ 1.442838, 43.651298 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33001", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.638336, 44.860667 ], [ -0.603847, 44.908101 ], [ -0.547736, 44.916667 ], [ -0.54141, 44.869139 ], [ -0.610794, 44.835177 ], [ -0.638336, 44.860667 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "54001", "code_dpt": "54", "nom_dpt": "MEURTHE-ET-MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.212636, 48.673099 ], [ 6.168955, 48.699273 ], [ 6.136896, 48.700636 ], [ 6.173648, 48.716425 ], [ 6.172204, 48.768788 ], [ 6.300499, 48.794926 ], [ 6.355453, 48.792044 ], [ 6.394874, 48.774762 ], [ 6.43311, 48.789099 ], [ 6.453603, 48.765894 ], [ 6.428048, 48.734483 ], [ 6.390791, 48.742119 ], [ 6.362297, 48.717737 ], [ 6.295915, 48.7084 ], [ 6.273834, 48.679238 ], [ 6.212636, 48.673099 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59001", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "1", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.996389, 50.618098 ], [ 3.041009, 50.636206 ], [ 3.062516, 50.6379 ], [ 3.070672, 50.632308 ], [ 3.086716, 50.588612 ], [ 3.036657, 50.591635 ], [ 2.996389, 50.618098 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59019", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "19", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.231809, 50.263783 ], [ 3.2522, 50.279716 ], [ 3.233927, 50.312847 ], [ 3.299159, 50.344561 ], [ 3.342263, 50.347349 ], [ 3.347546, 50.405527 ], [ 3.361723, 50.398215 ], [ 3.381691, 50.353069 ], [ 3.432626, 50.379044 ], [ 3.433832, 50.378807 ], [ 3.498097, 50.338109 ], [ 3.558659, 50.330649 ], [ 3.556183, 50.299388 ], [ 3.547213, 50.281435 ], [ 3.493857, 50.278931 ], [ 3.475946, 50.245742 ], [ 3.436136, 50.258757 ], [ 3.369372, 50.224656 ], [ 3.346968, 50.249846 ], [ 3.278009, 50.251574 ], [ 3.231809, 50.263783 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62003", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "3", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.911246, 50.489351 ], [ 2.92414, 50.410239 ], [ 2.866434, 50.401832 ], [ 2.85122, 50.380548 ], [ 2.78952, 50.406151 ], [ 2.804038, 50.42246 ], [ 2.756111, 50.453829 ], [ 2.779931, 50.479187 ], [ 2.841025, 50.448052 ], [ 2.911246, 50.489351 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "62011", "code_dpt": "62", "nom_dpt": "PAS-DE-CALAIS", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "11", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.911246, 50.489351 ], [ 2.910143, 50.499834 ], [ 2.96471, 50.512778 ], [ 3.008344, 50.492766 ], [ 3.008268, 50.455856 ], [ 3.081786, 50.443728 ], [ 3.068519, 50.425648 ], [ 2.990422, 50.394947 ], [ 2.993935, 50.381768 ], [ 2.897976, 50.385569 ], [ 2.85122, 50.380548 ], [ 2.866434, 50.401832 ], [ 2.92414, 50.410239 ], [ 2.911246, 50.489351 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69001", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.786562, 45.764164 ], [ 4.792456, 45.773294 ], [ 4.794592, 45.776034 ], [ 4.830314, 45.746556 ], [ 4.856179, 45.729488 ], [ 4.854364, 45.719871 ], [ 4.839564, 45.717969 ], [ 4.840546, 45.708054 ], [ 4.823046, 45.714608 ], [ 4.786562, 45.764164 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69003", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.830314, 45.746556 ], [ 4.839949, 45.763558 ], [ 4.88699, 45.72595 ], [ 4.856179, 45.729488 ], [ 4.830314, 45.746556 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "71002", "code_dpt": "71", "nom_dpt": "SAONE-ET-LOIRE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "2", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.629424, 46.749459 ], [ 3.661101, 46.737738 ], [ 3.738633, 46.75196 ], [ 3.783666, 46.736048 ], [ 3.794654, 46.702034 ], [ 3.826552, 46.703826 ], [ 3.86523, 46.667585 ], [ 3.85519, 46.640502 ], [ 3.90654, 46.64416 ], [ 4.040859, 46.678238 ], [ 4.082598, 46.669801 ], [ 4.112673, 46.68457 ], [ 4.139974, 46.729102 ], [ 4.199057, 46.687274 ], [ 4.228437, 46.699544 ], [ 4.311115, 46.687336 ], [ 4.331761, 46.671681 ], [ 4.325874, 46.626118 ], [ 4.37767, 46.621725 ], [ 4.440317, 46.69572 ], [ 4.517453, 46.711306 ], [ 4.561855, 46.690969 ], [ 4.617175, 46.608652 ], [ 4.570221, 46.605478 ], [ 4.532289, 46.520173 ], [ 4.484288, 46.493283 ], [ 4.540465, 46.48402 ], [ 4.541384, 46.455197 ], [ 4.448596, 46.3764 ], [ 4.410836, 46.374946 ], [ 4.377524, 46.350118 ], [ 4.401414, 46.314028 ], [ 4.427039, 46.30283 ], [ 4.398757, 46.284322 ], [ 4.38808, 46.219789 ], [ 4.363353, 46.198563 ], [ 4.282432, 46.156816 ], [ 4.245367, 46.188227 ], [ 4.206215, 46.194494 ], [ 4.178133, 46.173687 ], [ 4.133393, 46.177321 ], [ 4.103832, 46.198442 ], [ 4.027488, 46.169593 ], [ 3.988528, 46.169857 ], [ 3.965168, 46.202865 ], [ 3.890132, 46.214491 ], [ 3.90876, 46.260622 ], [ 3.899534, 46.275914 ], [ 3.901973, 46.293158 ], [ 3.983719, 46.317985 ], [ 3.991544, 46.370419 ], [ 3.977569, 46.397871 ], [ 4.002691, 46.4405 ], [ 3.998722, 46.464903 ], [ 3.965148, 46.477997 ], [ 3.916492, 46.496102 ], [ 3.865262, 46.489648 ], [ 3.863828, 46.512676 ], [ 3.755776, 46.536151 ], [ 3.734557, 46.60378 ], [ 3.713444, 46.610721 ], [ 3.695943, 46.661408 ], [ 3.670169, 46.672376 ], [ 3.622802, 46.740896 ], [ 3.629424, 46.749459 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "71003", "code_dpt": "71", "nom_dpt": "SAONE-ET-LOIRE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "3", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.228437, 46.699544 ], [ 4.199057, 46.687274 ], [ 4.139974, 46.729102 ], [ 4.112673, 46.68457 ], [ 4.082598, 46.669801 ], [ 4.040859, 46.678238 ], [ 3.90654, 46.64416 ], [ 3.85519, 46.640502 ], [ 3.86523, 46.667585 ], [ 3.826552, 46.703826 ], [ 3.844924, 46.72199 ], [ 3.928244, 46.741382 ], [ 3.963222, 46.766028 ], [ 4.062137, 46.785561 ], [ 4.048389, 46.83795 ], [ 4.095236, 46.872407 ], [ 4.044687, 46.901169 ], [ 4.037144, 46.984689 ], [ 4.071133, 47.057844 ], [ 4.038853, 47.079739 ], [ 4.060379, 47.120736 ], [ 4.115967, 47.123338 ], [ 4.150014, 47.114045 ], [ 4.181902, 47.150514 ], [ 4.209834, 47.155412 ], [ 4.276623, 47.10799 ], [ 4.349385, 47.096953 ], [ 4.34425, 47.07243 ], [ 4.402867, 47.082278 ], [ 4.406283, 47.05 ], [ 4.489643, 47.032008 ], [ 4.512144, 47.012003 ], [ 4.554809, 47.020055 ], [ 4.595808, 46.952163 ], [ 4.678435, 46.93043 ], [ 4.68522, 46.900954 ], [ 4.744315, 46.924435 ], [ 4.893082, 46.951501 ], [ 4.914754, 46.96776 ], [ 4.997223, 46.961128 ], [ 5.049304, 46.981587 ], [ 5.074945, 46.961161 ], [ 5.164631, 46.964232 ], [ 5.212199, 46.980145 ], [ 5.233395, 46.93163 ], [ 5.157841, 46.925323 ], [ 5.141302, 46.856593 ], [ 5.032827, 46.867909 ], [ 4.985224, 46.85577 ], [ 4.904406, 46.853687 ], [ 4.875239, 46.876934 ], [ 4.795033, 46.842152 ], [ 4.797255, 46.81499 ], [ 4.764934, 46.721628 ], [ 4.693056, 46.740678 ], [ 4.693405, 46.76362 ], [ 4.613714, 46.785841 ], [ 4.555132, 46.785288 ], [ 4.480444, 46.769065 ], [ 4.390998, 46.807113 ], [ 4.411478, 46.852197 ], [ 4.36264, 46.889427 ], [ 4.34105, 46.867861 ], [ 4.28846, 46.863806 ], [ 4.266741, 46.788441 ], [ 4.272903, 46.764987 ], [ 4.228437, 46.699544 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "71004", "code_dpt": "71", "nom_dpt": "SAONE-ET-LOIRE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "4", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.310561, 46.446775 ], [ 5.273677, 46.448588 ], [ 5.215064, 46.468359 ], [ 5.201221, 46.507821 ], [ 5.141042, 46.508585 ], [ 5.054751, 46.484281 ], [ 5.006369, 46.509703 ], [ 4.935599, 46.514229 ], [ 4.91453, 46.480113 ], [ 4.881406, 46.485987 ], [ 4.860336, 46.519675 ], [ 4.783225, 46.516941 ], [ 4.771569, 46.560129 ], [ 4.702296, 46.585444 ], [ 4.708701, 46.609711 ], [ 4.769739, 46.640415 ], [ 4.768044, 46.668721 ], [ 4.815796, 46.700768 ], [ 4.90245, 46.697464 ], [ 4.933695, 46.685998 ], [ 4.924809, 46.749168 ], [ 4.966852, 46.777593 ], [ 4.925646, 46.801185 ], [ 4.797255, 46.81499 ], [ 4.795033, 46.842152 ], [ 4.875239, 46.876934 ], [ 4.904406, 46.853687 ], [ 4.985224, 46.85577 ], [ 5.032827, 46.867909 ], [ 5.141302, 46.856593 ], [ 5.157841, 46.925323 ], [ 5.233395, 46.93163 ], [ 5.212199, 46.980145 ], [ 5.255236, 46.979888 ], [ 5.263134, 46.953522 ], [ 5.307367, 46.936459 ], [ 5.328718, 46.889317 ], [ 5.403844, 46.88952 ], [ 5.415235, 46.861808 ], [ 5.459286, 46.855245 ], [ 5.45949, 46.83081 ], [ 5.375268, 46.826986 ], [ 5.332496, 46.797713 ], [ 5.390248, 46.770592 ], [ 5.361726, 46.733114 ], [ 5.390789, 46.72636 ], [ 5.440601, 46.637911 ], [ 5.41379, 46.614643 ], [ 5.405691, 46.581671 ], [ 5.36788, 46.566946 ], [ 5.359178, 46.520147 ], [ 5.421061, 46.50044 ], [ 5.420044, 46.480183 ], [ 5.37379, 46.460451 ], [ 5.323351, 46.462506 ], [ 5.310561, 46.446775 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "71005", "code_dpt": "71", "nom_dpt": "SAONE-ET-LOIRE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "5", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.797255, 46.81499 ], [ 4.925646, 46.801185 ], [ 4.966852, 46.777593 ], [ 4.924809, 46.749168 ], [ 4.933695, 46.685998 ], [ 4.90245, 46.697464 ], [ 4.815796, 46.700768 ], [ 4.768044, 46.668721 ], [ 4.769739, 46.640415 ], [ 4.708701, 46.609711 ], [ 4.702296, 46.585444 ], [ 4.674319, 46.599167 ], [ 4.681088, 46.626249 ], [ 4.643013, 46.630341 ], [ 4.617175, 46.608652 ], [ 4.561855, 46.690969 ], [ 4.517453, 46.711306 ], [ 4.440317, 46.69572 ], [ 4.37767, 46.621725 ], [ 4.325874, 46.626118 ], [ 4.331761, 46.671681 ], [ 4.311115, 46.687336 ], [ 4.228437, 46.699544 ], [ 4.272903, 46.764987 ], [ 4.266741, 46.788441 ], [ 4.28846, 46.863806 ], [ 4.34105, 46.867861 ], [ 4.36264, 46.889427 ], [ 4.411478, 46.852197 ], [ 4.390998, 46.807113 ], [ 4.480444, 46.769065 ], [ 4.555132, 46.785288 ], [ 4.613714, 46.785841 ], [ 4.693405, 46.76362 ], [ 4.693056, 46.740678 ], [ 4.764934, 46.721628 ], [ 4.797255, 46.81499 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "72001", "code_dpt": "72", "nom_dpt": "SARTHE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "1", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.224122, 47.994511 ], [ 0.214339, 47.992175 ], [ 0.187189, 47.996879 ], [ 0.145316, 48.015392 ], [ 0.101896, 48.011016 ], [ 0.084273, 48.031518 ], [ 0.040672, 48.03142 ], [ 0.020958, 48.064188 ], [ -0.031517, 48.060903 ], [ -0.077633, 48.043308 ], [ -0.179692, 48.053662 ], [ -0.225994, 48.071685 ], [ -0.222963, 48.122724 ], [ -0.253808, 48.136529 ], [ -0.231431, 48.168593 ], [ -0.146837, 48.205009 ], [ -0.16458, 48.259159 ], [ -0.138609, 48.294951 ], [ -0.157998, 48.334522 ], [ -0.112164, 48.374246 ], [ -0.054531, 48.382003 ], [ 0.00337, 48.395996 ], [ 0.023083, 48.380207 ], [ 0.111593, 48.432317 ], [ 0.153319, 48.437944 ], [ 0.153698, 48.376277 ], [ 0.201374, 48.395274 ], [ 0.225707, 48.36991 ], [ 0.207085, 48.325954 ], [ 0.183138, 48.194731 ], [ 0.145749, 48.189872 ], [ 0.116003, 48.147243 ], [ 0.15789, 48.113189 ], [ 0.182257, 48.109857 ], [ 0.176806, 48.04476 ], [ 0.224122, 47.994511 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "72002", "code_dpt": "72", "nom_dpt": "SARTHE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "2", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.169043, 47.910714 ], [ 0.183179, 47.927786 ], [ 0.165963, 47.981346 ], [ 0.187189, 47.996879 ], [ 0.214339, 47.992175 ], [ 0.224122, 47.994511 ], [ 0.236419, 47.997343 ], [ 0.218329, 48.021202 ], [ 0.22453, 48.054737 ], [ 0.260682, 48.072179 ], [ 0.255195, 48.102854 ], [ 0.2976, 48.101664 ], [ 0.34485, 48.118485 ], [ 0.370616, 48.144101 ], [ 0.461879, 48.147405 ], [ 0.43386, 48.09332 ], [ 0.578693, 48.032528 ], [ 0.59832, 48.010863 ], [ 0.676423, 48.004113 ], [ 0.608062, 47.946949 ], [ 0.607778, 47.900664 ], [ 0.558432, 47.873113 ], [ 0.469288, 47.910456 ], [ 0.40297, 47.861652 ], [ 0.359109, 47.91707 ], [ 0.319829, 47.930966 ], [ 0.219558, 47.922385 ], [ 0.169043, 47.910714 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "72003", "code_dpt": "72", "nom_dpt": "SARTHE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "3", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.614431, 47.694214 ], [ 0.593341, 47.671845 ], [ 0.498418, 47.644763 ], [ 0.461177, 47.643806 ], [ 0.422198, 47.619565 ], [ 0.382788, 47.643103 ], [ 0.364557, 47.622069 ], [ 0.402577, 47.578512 ], [ 0.378484, 47.568526 ], [ 0.322104, 47.595237 ], [ 0.230002, 47.608398 ], [ 0.148488, 47.581297 ], [ 0.115651, 47.605628 ], [ 0.052261, 47.606224 ], [ -0.004508, 47.647688 ], [ -0.105482, 47.657082 ], [ -0.1141, 47.635476 ], [ -0.196697, 47.650036 ], [ -0.236766, 47.704631 ], [ -0.287627, 47.71913 ], [ -0.249395, 47.769022 ], [ -0.176308, 47.743059 ], [ -0.135851, 47.762895 ], [ -0.117206, 47.729228 ], [ -0.039757, 47.753964 ], [ -0.003147, 47.751594 ], [ 0.040773, 47.816804 ], [ 0.014639, 47.830939 ], [ 0.062608, 47.863519 ], [ 0.140161, 47.839697 ], [ 0.169043, 47.910714 ], [ 0.219558, 47.922385 ], [ 0.319829, 47.930966 ], [ 0.359109, 47.91707 ], [ 0.40297, 47.861652 ], [ 0.469288, 47.910456 ], [ 0.558432, 47.873113 ], [ 0.607778, 47.900664 ], [ 0.608062, 47.946949 ], [ 0.676423, 48.004113 ], [ 0.794821, 47.969364 ], [ 0.824356, 47.981744 ], [ 0.845193, 47.941192 ], [ 0.816349, 47.934277 ], [ 0.759813, 47.898091 ], [ 0.768413, 47.831107 ], [ 0.712824, 47.79049 ], [ 0.608728, 47.725299 ], [ 0.614431, 47.694214 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "72004", "code_dpt": "72", "nom_dpt": "SARTHE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "4", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.225994, 48.071685 ], [ -0.179692, 48.053662 ], [ -0.077633, 48.043308 ], [ -0.031517, 48.060903 ], [ 0.020958, 48.064188 ], [ 0.040672, 48.03142 ], [ 0.084273, 48.031518 ], [ 0.101896, 48.011016 ], [ 0.145316, 48.015392 ], [ 0.187189, 47.996879 ], [ 0.165963, 47.981346 ], [ 0.183179, 47.927786 ], [ 0.169043, 47.910714 ], [ 0.140161, 47.839697 ], [ 0.062608, 47.863519 ], [ 0.014639, 47.830939 ], [ 0.040773, 47.816804 ], [ -0.003147, 47.751594 ], [ -0.039757, 47.753964 ], [ -0.117206, 47.729228 ], [ -0.135851, 47.762895 ], [ -0.176308, 47.743059 ], [ -0.249395, 47.769022 ], [ -0.287627, 47.71913 ], [ -0.333663, 47.720943 ], [ -0.373778, 47.739873 ], [ -0.381704, 47.760572 ], [ -0.388201, 47.805319 ], [ -0.43408, 47.809054 ], [ -0.447914, 47.832035 ], [ -0.41203, 47.857633 ], [ -0.374966, 47.857615 ], [ -0.376839, 47.88727 ], [ -0.4065, 47.910392 ], [ -0.38484, 47.930845 ], [ -0.297832, 47.943418 ], [ -0.308993, 48.005604 ], [ -0.334475, 48.032374 ], [ -0.274233, 48.064463 ], [ -0.225994, 48.071685 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "72005", "code_dpt": "72", "nom_dpt": "SARTHE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "5", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.236419, 47.997343 ], [ 0.224122, 47.994511 ], [ 0.176806, 48.04476 ], [ 0.182257, 48.109857 ], [ 0.15789, 48.113189 ], [ 0.116003, 48.147243 ], [ 0.145749, 48.189872 ], [ 0.183138, 48.194731 ], [ 0.207085, 48.325954 ], [ 0.225707, 48.36991 ], [ 0.201374, 48.395274 ], [ 0.153698, 48.376277 ], [ 0.153319, 48.437944 ], [ 0.172327, 48.463829 ], [ 0.297909, 48.479816 ], [ 0.314738, 48.473194 ], [ 0.363205, 48.451562 ], [ 0.395362, 48.32129 ], [ 0.494423, 48.283488 ], [ 0.546795, 48.250162 ], [ 0.613135, 48.242735 ], [ 0.652469, 48.263389 ], [ 0.687394, 48.240782 ], [ 0.723637, 48.198143 ], [ 0.759209, 48.180091 ], [ 0.797655, 48.194461 ], [ 0.840574, 48.165531 ], [ 0.884466, 48.161844 ], [ 0.914338, 48.135848 ], [ 0.850372, 48.13308 ], [ 0.841217, 48.103062 ], [ 0.843023, 48.072642 ], [ 0.803562, 48.071598 ], [ 0.794879, 48.046931 ], [ 0.840563, 48.019034 ], [ 0.824356, 47.981744 ], [ 0.794821, 47.969364 ], [ 0.676423, 48.004113 ], [ 0.59832, 48.010863 ], [ 0.578693, 48.032528 ], [ 0.43386, 48.09332 ], [ 0.461879, 48.147405 ], [ 0.370616, 48.144101 ], [ 0.34485, 48.118485 ], [ 0.2976, 48.101664 ], [ 0.255195, 48.102854 ], [ 0.260682, 48.072179 ], [ 0.22453, 48.054737 ], [ 0.218329, 48.021202 ], [ 0.236419, 47.997343 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "73001", "code_dpt": "73", "nom_dpt": "SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.962785, 45.812735 ], [ 5.974033, 45.76869 ], [ 6.042253, 45.739259 ], [ 6.016643, 45.683626 ], [ 5.979577, 45.682414 ], [ 5.93869, 45.613346 ], [ 5.912442, 45.642828 ], [ 5.871533, 45.57064 ], [ 5.844524, 45.577337 ], [ 5.818727, 45.522185 ], [ 5.86528, 45.494588 ], [ 5.893883, 45.496674 ], [ 5.91537, 45.476447 ], [ 5.904455, 45.432308 ], [ 5.91089, 45.394152 ], [ 5.782462, 45.441105 ], [ 5.739988, 45.437583 ], [ 5.736531, 45.471861 ], [ 5.713964, 45.497484 ], [ 5.671341, 45.536645 ], [ 5.671145, 45.561328 ], [ 5.623748, 45.613268 ], [ 5.687901, 45.643964 ], [ 5.709199, 45.684927 ], [ 5.776366, 45.72792 ], [ 5.786934, 45.823224 ], [ 5.829401, 45.913987 ], [ 5.831226, 45.93846 ], [ 5.862101, 45.932402 ], [ 5.873542, 45.835606 ], [ 5.913953, 45.804059 ], [ 5.962785, 45.812735 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "73002", "code_dpt": "73", "nom_dpt": "SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.307949, 45.692964 ], [ 6.327378, 45.692915 ], [ 6.370442, 45.752932 ], [ 6.363309, 45.767953 ], [ 6.424559, 45.803858 ], [ 6.471838, 45.884292 ], [ 6.511064, 45.909058 ], [ 6.556582, 45.893258 ], [ 6.535327, 45.861979 ], [ 6.552719, 45.826342 ], [ 6.601684, 45.79507 ], [ 6.659355, 45.800155 ], [ 6.688257, 45.771331 ], [ 6.711951, 45.722919 ], [ 6.757665, 45.767164 ], [ 6.802517, 45.778372 ], [ 6.809395, 45.725878 ], [ 6.846121, 45.690569 ], [ 6.901363, 45.67912 ], [ 6.914833, 45.65174 ], [ 6.966743, 45.653862 ], [ 6.999126, 45.638172 ], [ 6.978895, 45.588642 ], [ 6.99381, 45.574832 ], [ 6.999974, 45.504791 ], [ 7.051051, 45.49625 ], [ 7.049574, 45.47268 ], [ 7.10181, 45.468518 ], [ 7.113516, 45.434195 ], [ 7.042807, 45.432386 ], [ 7.009475, 45.399575 ], [ 6.998184, 45.366619 ], [ 6.918686, 45.386668 ], [ 6.902773, 45.425351 ], [ 6.8271, 45.404783 ], [ 6.749526, 45.346242 ], [ 6.731359, 45.297811 ], [ 6.609864, 45.264987 ], [ 6.533716, 45.252126 ], [ 6.503634, 45.286134 ], [ 6.449993, 45.297229 ], [ 6.446802, 45.313146 ], [ 6.395896, 45.350375 ], [ 6.388303, 45.391298 ], [ 6.411538, 45.42705 ], [ 6.354662, 45.444522 ], [ 6.382565, 45.50936 ], [ 6.404461, 45.537792 ], [ 6.364497, 45.566315 ], [ 6.390233, 45.603171 ], [ 6.351929, 45.624995 ], [ 6.311124, 45.671889 ], [ 6.307949, 45.692964 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "73003", "code_dpt": "73", "nom_dpt": "SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.364497, 45.566315 ], [ 6.404461, 45.537792 ], [ 6.382565, 45.50936 ], [ 6.354662, 45.444522 ], [ 6.411538, 45.42705 ], [ 6.388303, 45.391298 ], [ 6.395896, 45.350375 ], [ 6.446802, 45.313146 ], [ 6.449993, 45.297229 ], [ 6.503634, 45.286134 ], [ 6.533716, 45.252126 ], [ 6.609864, 45.264987 ], [ 6.731359, 45.297811 ], [ 6.749526, 45.346242 ], [ 6.8271, 45.404783 ], [ 6.902773, 45.425351 ], [ 6.918686, 45.386668 ], [ 6.998184, 45.366619 ], [ 7.009475, 45.399575 ], [ 7.042807, 45.432386 ], [ 7.113516, 45.434195 ], [ 7.182508, 45.406798 ], [ 7.159861, 45.359581 ], [ 7.110695, 45.326512 ], [ 7.135251, 45.281804 ], [ 7.135106, 45.254561 ], [ 7.066401, 45.211344 ], [ 7.05118, 45.22534 ], [ 6.966272, 45.206472 ], [ 6.941437, 45.170677 ], [ 6.892974, 45.165654 ], [ 6.895383, 45.140093 ], [ 6.854264, 45.128622 ], [ 6.769526, 45.159338 ], [ 6.738745, 45.137479 ], [ 6.711286, 45.14476 ], [ 6.629987, 45.109327 ], [ 6.576531, 45.123097 ], [ 6.535193, 45.098972 ], [ 6.481725, 45.090453 ], [ 6.487082, 45.056407 ], [ 6.396888, 45.061989 ], [ 6.334233, 45.122939 ], [ 6.293342, 45.108636 ], [ 6.260566, 45.126848 ], [ 6.180992, 45.164859 ], [ 6.13968, 45.213059 ], [ 6.125696, 45.24427 ], [ 6.130815, 45.284534 ], [ 6.184451, 45.317958 ], [ 6.194759, 45.352251 ], [ 6.175458, 45.394101 ], [ 6.130143, 45.435028 ], [ 6.090016, 45.444008 ], [ 6.049236, 45.437807 ], [ 6.007789, 45.454111 ], [ 5.971015, 45.491397 ], [ 5.91537, 45.476447 ], [ 5.893883, 45.496674 ], [ 5.926336, 45.515134 ], [ 5.940251, 45.568494 ], [ 5.971207, 45.574221 ], [ 6.026173, 45.535159 ], [ 6.085829, 45.509673 ], [ 6.117625, 45.534271 ], [ 6.17296, 45.554971 ], [ 6.226483, 45.585477 ], [ 6.277616, 45.597786 ], [ 6.319196, 45.573728 ], [ 6.364497, 45.566315 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "73004", "code_dpt": "73", "nom_dpt": "SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "4", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042253, 45.739259 ], [ 6.096133, 45.74282 ], [ 6.103134, 45.763445 ], [ 6.166234, 45.755725 ], [ 6.195548, 45.732331 ], [ 6.189934, 45.700839 ], [ 6.22975, 45.682707 ], [ 6.307949, 45.692964 ], [ 6.311124, 45.671889 ], [ 6.351929, 45.624995 ], [ 6.390233, 45.603171 ], [ 6.364497, 45.566315 ], [ 6.319196, 45.573728 ], [ 6.277616, 45.597786 ], [ 6.226483, 45.585477 ], [ 6.17296, 45.554971 ], [ 6.117625, 45.534271 ], [ 6.085829, 45.509673 ], [ 6.026173, 45.535159 ], [ 5.971207, 45.574221 ], [ 5.940251, 45.568494 ], [ 5.926336, 45.515134 ], [ 5.893883, 45.496674 ], [ 5.86528, 45.494588 ], [ 5.818727, 45.522185 ], [ 5.844524, 45.577337 ], [ 5.871533, 45.57064 ], [ 5.912442, 45.642828 ], [ 5.93869, 45.613346 ], [ 5.979577, 45.682414 ], [ 6.016643, 45.683626 ], [ 6.042253, 45.739259 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "74001", "code_dpt": "74", "nom_dpt": "HAUTE-SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.862101, 45.932402 ], [ 5.893898, 45.963177 ], [ 5.933323, 45.948924 ], [ 5.991609, 45.974099 ], [ 5.97752, 46.008948 ], [ 6.027084, 46.007886 ], [ 6.12876, 46.009918 ], [ 6.15103, 46.031776 ], [ 6.193845, 46.045583 ], [ 6.218147, 46.070266 ], [ 6.252367, 46.033708 ], [ 6.298165, 46.029653 ], [ 6.346094, 46.005643 ], [ 6.328393, 45.972402 ], [ 6.336859, 45.941283 ], [ 6.241422, 45.895724 ], [ 6.25865, 45.869038 ], [ 6.258746, 45.827226 ], [ 6.222928, 45.801082 ], [ 6.206446, 45.836105 ], [ 6.163953, 45.863349 ], [ 6.129438, 45.924321 ], [ 6.084551, 45.902187 ], [ 6.021658, 45.895477 ], [ 6.015428, 45.855443 ], [ 5.962785, 45.812735 ], [ 5.913953, 45.804059 ], [ 5.873542, 45.835606 ], [ 5.862101, 45.932402 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "74002", "code_dpt": "74", "nom_dpt": "HAUTE-SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.336859, 45.941283 ], [ 6.350372, 45.927472 ], [ 6.404833, 45.947658 ], [ 6.460264, 45.999039 ], [ 6.525222, 45.981775 ], [ 6.555762, 45.955778 ], [ 6.511064, 45.909058 ], [ 6.471838, 45.884292 ], [ 6.424559, 45.803858 ], [ 6.363309, 45.767953 ], [ 6.370442, 45.752932 ], [ 6.327378, 45.692915 ], [ 6.307949, 45.692964 ], [ 6.22975, 45.682707 ], [ 6.189934, 45.700839 ], [ 6.195548, 45.732331 ], [ 6.166234, 45.755725 ], [ 6.103134, 45.763445 ], [ 6.096133, 45.74282 ], [ 6.042253, 45.739259 ], [ 5.974033, 45.76869 ], [ 5.962785, 45.812735 ], [ 6.015428, 45.855443 ], [ 6.021658, 45.895477 ], [ 6.084551, 45.902187 ], [ 6.129438, 45.924321 ], [ 6.163953, 45.863349 ], [ 6.206446, 45.836105 ], [ 6.222928, 45.801082 ], [ 6.258746, 45.827226 ], [ 6.25865, 45.869038 ], [ 6.241422, 45.895724 ], [ 6.336859, 45.941283 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "74003", "code_dpt": "74", "nom_dpt": "HAUTE-SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "3", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.354717, 46.229694 ], [ 6.389888, 46.249661 ], [ 6.425392, 46.251265 ], [ 6.482397, 46.275052 ], [ 6.496382, 46.244508 ], [ 6.557909, 46.199099 ], [ 6.546112, 46.177879 ], [ 6.477678, 46.152125 ], [ 6.499277, 46.125366 ], [ 6.5585, 46.091462 ], [ 6.515369, 46.072616 ], [ 6.509889, 46.021723 ], [ 6.460264, 45.999039 ], [ 6.404833, 45.947658 ], [ 6.350372, 45.927472 ], [ 6.336859, 45.941283 ], [ 6.328393, 45.972402 ], [ 6.346094, 46.005643 ], [ 6.298165, 46.029653 ], [ 6.252367, 46.033708 ], [ 6.218147, 46.070266 ], [ 6.193845, 46.045583 ], [ 6.15103, 46.031776 ], [ 6.12876, 46.009918 ], [ 6.027084, 46.007886 ], [ 6.01711, 46.074774 ], [ 6.070262, 46.087271 ], [ 6.104823, 46.067459 ], [ 6.171346, 46.119493 ], [ 6.203606, 46.164847 ], [ 6.262126, 46.149951 ], [ 6.34304, 46.167317 ], [ 6.354717, 46.229694 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "74004", "code_dpt": "74", "nom_dpt": "HAUTE-SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "4", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.294883, 46.264592 ], [ 6.326306, 46.266328 ], [ 6.354717, 46.229694 ], [ 6.34304, 46.167317 ], [ 6.262126, 46.149951 ], [ 6.203606, 46.164847 ], [ 6.171346, 46.119493 ], [ 6.104823, 46.067459 ], [ 6.070262, 46.087271 ], [ 6.01711, 46.074774 ], [ 6.027084, 46.007886 ], [ 5.97752, 46.008948 ], [ 5.991609, 45.974099 ], [ 5.933323, 45.948924 ], [ 5.893898, 45.963177 ], [ 5.862101, 45.932402 ], [ 5.831226, 45.93846 ], [ 5.834026, 45.972027 ], [ 5.812288, 45.986652 ], [ 5.811419, 46.078429 ], [ 5.889993, 46.08715 ], [ 5.886227, 46.10962 ], [ 5.920403, 46.131039 ], [ 5.956063, 46.132089 ], [ 5.993515, 46.14385 ], [ 6.035353, 46.136161 ], [ 6.057044, 46.151115 ], [ 6.135412, 46.141327 ], [ 6.233843, 46.206006 ], [ 6.294471, 46.224931 ], [ 6.294883, 46.264592 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "74005", "code_dpt": "74", "nom_dpt": "HAUTE-SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "5", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.790422, 46.154311 ], [ 6.731154, 46.137938 ], [ 6.694505, 46.160439 ], [ 6.675501, 46.193742 ], [ 6.602859, 46.188173 ], [ 6.557909, 46.199099 ], [ 6.496382, 46.244508 ], [ 6.482397, 46.275052 ], [ 6.425392, 46.251265 ], [ 6.389888, 46.249661 ], [ 6.354717, 46.229694 ], [ 6.326306, 46.266328 ], [ 6.294883, 46.264592 ], [ 6.261336, 46.252464 ], [ 6.238823, 46.275322 ], [ 6.258155, 46.324753 ], [ 6.302469, 46.366197 ], [ 6.349113, 46.367405 ], [ 6.385721, 46.340663 ], [ 6.413939, 46.359281 ], [ 6.474921, 46.375519 ], [ 6.513072, 46.404788 ], [ 6.544126, 46.394823 ], [ 6.638672, 46.405412 ], [ 6.717141, 46.407831 ], [ 6.801821, 46.388317 ], [ 6.774674, 46.347281 ], [ 6.863737, 46.27978 ], [ 6.803564, 46.203131 ], [ 6.811962, 46.183314 ], [ 6.790422, 46.154311 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "74006", "code_dpt": "74", "nom_dpt": "HAUTE-SAVOIE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "6", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.802517, 45.778372 ], [ 6.757665, 45.767164 ], [ 6.711951, 45.722919 ], [ 6.688257, 45.771331 ], [ 6.659355, 45.800155 ], [ 6.601684, 45.79507 ], [ 6.552719, 45.826342 ], [ 6.535327, 45.861979 ], [ 6.556582, 45.893258 ], [ 6.511064, 45.909058 ], [ 6.555762, 45.955778 ], [ 6.525222, 45.981775 ], [ 6.460264, 45.999039 ], [ 6.509889, 46.021723 ], [ 6.515369, 46.072616 ], [ 6.5585, 46.091462 ], [ 6.499277, 46.125366 ], [ 6.477678, 46.152125 ], [ 6.546112, 46.177879 ], [ 6.557909, 46.199099 ], [ 6.602859, 46.188173 ], [ 6.675501, 46.193742 ], [ 6.694505, 46.160439 ], [ 6.731154, 46.137938 ], [ 6.790422, 46.154311 ], [ 6.815212, 46.12932 ], [ 6.897142, 46.123001 ], [ 6.885097, 46.096818 ], [ 6.887971, 46.043905 ], [ 6.922089, 46.062798 ], [ 6.951127, 46.049645 ], [ 6.986806, 46.005107 ], [ 7.02013, 45.981306 ], [ 7.042049, 45.924766 ], [ 7.008919, 45.90344 ], [ 6.992852, 45.870648 ], [ 6.869982, 45.828395 ], [ 6.821585, 45.836995 ], [ 6.802517, 45.778372 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76002", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "2", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.697693, 49.572223 ], [ 1.729834, 49.561293 ], [ 1.749279, 49.493598 ], [ 1.775771, 49.473437 ], [ 1.726078, 49.438065 ], [ 1.713938, 49.409225 ], [ 1.694284, 49.394865 ], [ 1.606957, 49.410854 ], [ 1.576197, 49.440054 ], [ 1.501866, 49.439544 ], [ 1.411997, 49.455632 ], [ 1.344091, 49.446272 ], [ 1.309632, 49.428733 ], [ 1.272155, 49.347377 ], [ 1.246099, 49.347524 ], [ 1.212223, 49.349724 ], [ 1.136896, 49.325838 ], [ 1.126451, 49.356625 ], [ 1.109864, 49.425346 ], [ 1.09888, 49.483549 ], [ 1.131297, 49.49334 ], [ 1.125718, 49.520305 ], [ 1.180381, 49.496254 ], [ 1.222245, 49.516149 ], [ 1.265755, 49.556529 ], [ 1.28201, 49.590666 ], [ 1.433901, 49.618129 ], [ 1.450275, 49.585343 ], [ 1.499319, 49.568531 ], [ 1.563981, 49.573574 ], [ 1.614722, 49.550911 ], [ 1.647988, 49.580839 ], [ 1.697693, 49.572223 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76004", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "4", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.84848, 49.331674 ], [ 0.859373, 49.345392 ], [ 0.920093, 49.338611 ], [ 0.918119, 49.385461 ], [ 0.93074, 49.412804 ], [ 0.974721, 49.388436 ], [ 0.991718, 49.444986 ], [ 1.017446, 49.445769 ], [ 1.047948, 49.480654 ], [ 1.038464, 49.427213 ], [ 1.061232, 49.411181 ], [ 1.05802, 49.366991 ], [ 1.027726, 49.351278 ], [ 1.060826, 49.328264 ], [ 1.11615, 49.340937 ], [ 1.126451, 49.356625 ], [ 1.136896, 49.325838 ], [ 1.048149, 49.297883 ], [ 1.05125, 49.261623 ], [ 0.999109, 49.251974 ], [ 0.937322, 49.320014 ], [ 0.907953, 49.306775 ], [ 0.84848, 49.331674 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76005", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "5", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.479893, 49.479907 ], [ 0.417935, 49.553398 ], [ 0.5097, 49.528144 ], [ 0.570978, 49.5471 ], [ 0.628469, 49.582879 ], [ 0.660485, 49.573359 ], [ 0.728397, 49.587945 ], [ 0.763916, 49.563342 ], [ 0.797114, 49.59109 ], [ 0.799142, 49.627338 ], [ 0.856511, 49.605629 ], [ 0.998004, 49.641788 ], [ 1.039928, 49.645842 ], [ 1.049478, 49.614589 ], [ 0.997982, 49.589183 ], [ 1.026062, 49.573813 ], [ 1.031448, 49.538616 ], [ 1.125718, 49.520305 ], [ 1.131297, 49.49334 ], [ 1.09888, 49.483549 ], [ 1.047948, 49.480654 ], [ 1.017446, 49.445769 ], [ 0.991718, 49.444986 ], [ 0.974721, 49.388436 ], [ 0.93074, 49.412804 ], [ 0.918119, 49.385461 ], [ 0.818879, 49.398188 ], [ 0.767649, 49.418987 ], [ 0.738288, 49.408065 ], [ 0.660916, 49.403078 ], [ 0.634686, 49.433861 ], [ 0.581253, 49.433965 ], [ 0.522109, 49.479627 ], [ 0.479893, 49.479907 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76006", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "6", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.784845, 49.757904 ], [ 1.712557, 49.73015 ], [ 1.724131, 49.671805 ], [ 1.708078, 49.646149 ], [ 1.721685, 49.623321 ], [ 1.693725, 49.601067 ], [ 1.697693, 49.572223 ], [ 1.647988, 49.580839 ], [ 1.614722, 49.550911 ], [ 1.563981, 49.573574 ], [ 1.499319, 49.568531 ], [ 1.450275, 49.585343 ], [ 1.433901, 49.618129 ], [ 1.490648, 49.634072 ], [ 1.440266, 49.691325 ], [ 1.375309, 49.668554 ], [ 1.305648, 49.724027 ], [ 1.326205, 49.743571 ], [ 1.315798, 49.772814 ], [ 1.283201, 49.771218 ], [ 1.198615, 49.801892 ], [ 1.170253, 49.852198 ], [ 1.112985, 49.836598 ], [ 1.083258, 49.853433 ], [ 1.021846, 49.839244 ], [ 1.011323, 49.852921 ], [ 0.915895, 49.850763 ], [ 0.860901, 49.861594 ], [ 0.89844, 49.900331 ], [ 0.956273, 49.918763 ], [ 1.025735, 49.916552 ], [ 1.101304, 49.935873 ], [ 1.194522, 49.96804 ], [ 1.338735, 50.049967 ], [ 1.379705, 50.065015 ], [ 1.459146, 50.062499 ], [ 1.452256, 50.042667 ], [ 1.57439, 49.973655 ], [ 1.596048, 49.947987 ], [ 1.678451, 49.918134 ], [ 1.726224, 49.839945 ], [ 1.733854, 49.8135 ], [ 1.784845, 49.757904 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76009", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "9", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.479893, 49.479907 ], [ 0.435335, 49.460412 ], [ 0.338983, 49.440931 ], [ 0.295471, 49.437782 ], [ 0.237788, 49.452092 ], [ 0.253145, 49.494933 ], [ 0.248131, 49.527212 ], [ 0.275379, 49.560721 ], [ 0.262317, 49.589993 ], [ 0.164288, 49.614287 ], [ 0.128783, 49.609964 ], [ 0.164537, 49.686622 ], [ 0.205158, 49.71298 ], [ 0.320424, 49.741464 ], [ 0.367073, 49.767419 ], [ 0.524244, 49.825409 ], [ 0.565596, 49.819221 ], [ 0.584305, 49.746147 ], [ 0.567639, 49.73519 ], [ 0.61717, 49.676434 ], [ 0.665003, 49.686486 ], [ 0.713454, 49.677824 ], [ 0.700166, 49.635628 ], [ 0.67059, 49.645583 ], [ 0.628469, 49.582879 ], [ 0.570978, 49.5471 ], [ 0.5097, 49.528144 ], [ 0.417935, 49.553398 ], [ 0.479893, 49.479907 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76010", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "10", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.433901, 49.618129 ], [ 1.28201, 49.590666 ], [ 1.265755, 49.556529 ], [ 1.222245, 49.516149 ], [ 1.180381, 49.496254 ], [ 1.125718, 49.520305 ], [ 1.031448, 49.538616 ], [ 1.026062, 49.573813 ], [ 0.997982, 49.589183 ], [ 1.049478, 49.614589 ], [ 1.039928, 49.645842 ], [ 0.998004, 49.641788 ], [ 0.856511, 49.605629 ], [ 0.799142, 49.627338 ], [ 0.797114, 49.59109 ], [ 0.763916, 49.563342 ], [ 0.728397, 49.587945 ], [ 0.660485, 49.573359 ], [ 0.628469, 49.582879 ], [ 0.67059, 49.645583 ], [ 0.700166, 49.635628 ], [ 0.713454, 49.677824 ], [ 0.665003, 49.686486 ], [ 0.61717, 49.676434 ], [ 0.567639, 49.73519 ], [ 0.584305, 49.746147 ], [ 0.565596, 49.819221 ], [ 0.524244, 49.825409 ], [ 0.581406, 49.852046 ], [ 0.709745, 49.872936 ], [ 0.76389, 49.871746 ], [ 0.89844, 49.900331 ], [ 0.860901, 49.861594 ], [ 0.915895, 49.850763 ], [ 1.011323, 49.852921 ], [ 1.021846, 49.839244 ], [ 1.083258, 49.853433 ], [ 1.112985, 49.836598 ], [ 1.170253, 49.852198 ], [ 1.198615, 49.801892 ], [ 1.283201, 49.771218 ], [ 1.315798, 49.772814 ], [ 1.326205, 49.743571 ], [ 1.305648, 49.724027 ], [ 1.375309, 49.668554 ], [ 1.440266, 49.691325 ], [ 1.490648, 49.634072 ], [ 1.433901, 49.618129 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77001", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "1", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.67466, 48.488388 ], [ 2.597829, 48.43745 ], [ 2.574933, 48.384785 ], [ 2.54706, 48.401424 ], [ 2.505029, 48.429866 ], [ 2.49761, 48.517243 ], [ 2.531595, 48.573659 ], [ 2.534789, 48.540711 ], [ 2.610729, 48.517523 ], [ 2.644707, 48.534874 ], [ 2.663512, 48.614584 ], [ 2.715292, 48.60979 ], [ 2.728289, 48.546717 ], [ 2.709168, 48.508296 ], [ 2.67466, 48.488388 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77002", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "2", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.402664, 48.320719 ], [ 2.44984, 48.373708 ], [ 2.521784, 48.404042 ], [ 2.54706, 48.401424 ], [ 2.574933, 48.384785 ], [ 2.597829, 48.43745 ], [ 2.67466, 48.488388 ], [ 2.744662, 48.486895 ], [ 2.771012, 48.461715 ], [ 2.816263, 48.448713 ], [ 2.820628, 48.425626 ], [ 2.776338, 48.405326 ], [ 2.79405, 48.347194 ], [ 2.764616, 48.337503 ], [ 2.782052, 48.304544 ], [ 2.855737, 48.28112 ], [ 2.889898, 48.28606 ], [ 2.922079, 48.331135 ], [ 3.015685, 48.307317 ], [ 3.043708, 48.271842 ], [ 3.00599, 48.209425 ], [ 2.971666, 48.203411 ], [ 2.936314, 48.163392 ], [ 2.866823, 48.156036 ], [ 2.82088, 48.129664 ], [ 2.780977, 48.167363 ], [ 2.706547, 48.124819 ], [ 2.664748, 48.120542 ], [ 2.639666, 48.13895 ], [ 2.52221, 48.125215 ], [ 2.461097, 48.138207 ], [ 2.523011, 48.198762 ], [ 2.506192, 48.238536 ], [ 2.420109, 48.266704 ], [ 2.402664, 48.320719 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77003", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "3", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.67466, 48.488388 ], [ 2.709168, 48.508296 ], [ 2.728289, 48.546717 ], [ 2.715292, 48.60979 ], [ 2.720364, 48.627693 ], [ 2.785869, 48.659392 ], [ 2.816552, 48.648523 ], [ 2.882205, 48.657943 ], [ 2.898954, 48.674517 ], [ 2.946546, 48.632624 ], [ 3.036121, 48.607912 ], [ 3.034709, 48.584533 ], [ 2.9836, 48.568346 ], [ 2.963715, 48.531109 ], [ 2.927303, 48.505373 ], [ 2.974072, 48.485835 ], [ 3.022174, 48.440342 ], [ 3.061499, 48.433968 ], [ 3.083349, 48.4019 ], [ 3.075259, 48.375743 ], [ 3.122467, 48.368632 ], [ 3.049451, 48.36003 ], [ 3.015685, 48.307317 ], [ 2.922079, 48.331135 ], [ 2.889898, 48.28606 ], [ 2.855737, 48.28112 ], [ 2.782052, 48.304544 ], [ 2.764616, 48.337503 ], [ 2.79405, 48.347194 ], [ 2.776338, 48.405326 ], [ 2.820628, 48.425626 ], [ 2.816263, 48.448713 ], [ 2.771012, 48.461715 ], [ 2.744662, 48.486895 ], [ 2.67466, 48.488388 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77004", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "4", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.122467, 48.368632 ], [ 3.075259, 48.375743 ], [ 3.083349, 48.4019 ], [ 3.061499, 48.433968 ], [ 3.022174, 48.440342 ], [ 2.974072, 48.485835 ], [ 2.927303, 48.505373 ], [ 2.963715, 48.531109 ], [ 2.9836, 48.568346 ], [ 3.034709, 48.584533 ], [ 3.036121, 48.607912 ], [ 2.946546, 48.632624 ], [ 2.898954, 48.674517 ], [ 2.815411, 48.683322 ], [ 2.84887, 48.729645 ], [ 2.795821, 48.757044 ], [ 2.813011, 48.773243 ], [ 2.776908, 48.809084 ], [ 2.784713, 48.82812 ], [ 2.892711, 48.837879 ], [ 2.93294, 48.818609 ], [ 2.93635, 48.781422 ], [ 2.965364, 48.782423 ], [ 3.062008, 48.728259 ], [ 3.107889, 48.732903 ], [ 3.119417, 48.761871 ], [ 3.150111, 48.76288 ], [ 3.168026, 48.82994 ], [ 3.124429, 48.838285 ], [ 3.109698, 48.862887 ], [ 3.141484, 48.907819 ], [ 3.189221, 48.942276 ], [ 3.209914, 48.914706 ], [ 3.293814, 48.900492 ], [ 3.313076, 48.921216 ], [ 3.361698, 48.91956 ], [ 3.382334, 48.873631 ], [ 3.485187, 48.851908 ], [ 3.485241, 48.825503 ], [ 3.44448, 48.811803 ], [ 3.442154, 48.784857 ], [ 3.39713, 48.761397 ], [ 3.467396, 48.73863 ], [ 3.470862, 48.687267 ], [ 3.442698, 48.672506 ], [ 3.555614, 48.620285 ], [ 3.508513, 48.605509 ], [ 3.465516, 48.570486 ], [ 3.482364, 48.54981 ], [ 3.450707, 48.528668 ], [ 3.434909, 48.496854 ], [ 3.384094, 48.478029 ], [ 3.405714, 48.45329 ], [ 3.392913, 48.425219 ], [ 3.414792, 48.390273 ], [ 3.363938, 48.375325 ], [ 3.283175, 48.381385 ], [ 3.251021, 48.365101 ], [ 3.18098, 48.374558 ], [ 3.122467, 48.368632 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77005", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "5", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.784713, 48.82812 ], [ 2.806568, 48.914761 ], [ 2.836505, 48.900974 ], [ 2.896437, 48.910196 ], [ 2.998525, 48.959277 ], [ 3.059999, 48.978964 ], [ 3.132447, 48.991432 ], [ 3.163008, 49.019944 ], [ 3.249522, 48.974232 ], [ 3.26948, 48.937455 ], [ 3.313076, 48.921216 ], [ 3.293814, 48.900492 ], [ 3.209914, 48.914706 ], [ 3.189221, 48.942276 ], [ 3.141484, 48.907819 ], [ 3.109698, 48.862887 ], [ 3.124429, 48.838285 ], [ 3.168026, 48.82994 ], [ 3.150111, 48.76288 ], [ 3.119417, 48.761871 ], [ 3.107889, 48.732903 ], [ 3.062008, 48.728259 ], [ 2.965364, 48.782423 ], [ 2.93635, 48.781422 ], [ 2.93294, 48.818609 ], [ 2.892711, 48.837879 ], [ 2.784713, 48.82812 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77006", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "6", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.703081, 49.064736 ], [ 2.760833, 49.063004 ], [ 2.809254, 49.097536 ], [ 2.856089, 49.070034 ], [ 2.901508, 49.085374 ], [ 2.974612, 49.074838 ], [ 3.056321, 49.101918 ], [ 3.071884, 49.117554 ], [ 3.16523, 49.09966 ], [ 3.155808, 49.085502 ], [ 3.190667, 49.049972 ], [ 3.163008, 49.019944 ], [ 3.132447, 48.991432 ], [ 3.059999, 48.978964 ], [ 2.998525, 48.959277 ], [ 2.896437, 48.910196 ], [ 2.836505, 48.900974 ], [ 2.806568, 48.914761 ], [ 2.786495, 48.928467 ], [ 2.796149, 48.989992 ], [ 2.753433, 48.990658 ], [ 2.683084, 49.011831 ], [ 2.674881, 49.033813 ], [ 2.703081, 49.064736 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77007", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "7", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.660854, 48.87404 ], [ 2.592368, 48.907703 ], [ 2.595935, 48.938615 ], [ 2.553061, 49.009817 ], [ 2.590524, 49.079655 ], [ 2.633273, 49.108376 ], [ 2.703081, 49.064736 ], [ 2.674881, 49.033813 ], [ 2.683084, 49.011831 ], [ 2.753433, 48.990658 ], [ 2.796149, 48.989992 ], [ 2.786495, 48.928467 ], [ 2.733167, 48.921859 ], [ 2.727542, 48.859759 ], [ 2.662331, 48.850158 ], [ 2.660854, 48.87404 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77008", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "8", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.626774, 48.803079 ], [ 2.639171, 48.859093 ], [ 2.660854, 48.87404 ], [ 2.662331, 48.850158 ], [ 2.727542, 48.859759 ], [ 2.733167, 48.921859 ], [ 2.786495, 48.928467 ], [ 2.806568, 48.914761 ], [ 2.784713, 48.82812 ], [ 2.776908, 48.809084 ], [ 2.728018, 48.7973 ], [ 2.703954, 48.748541 ], [ 2.650713, 48.74971 ], [ 2.626774, 48.803079 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77009", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "9", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.57166, 48.692023 ], [ 2.597544, 48.760569 ], [ 2.59228, 48.807437 ], [ 2.595795, 48.814266 ], [ 2.626774, 48.803079 ], [ 2.650713, 48.74971 ], [ 2.703954, 48.748541 ], [ 2.728018, 48.7973 ], [ 2.776908, 48.809084 ], [ 2.813011, 48.773243 ], [ 2.795821, 48.757044 ], [ 2.84887, 48.729645 ], [ 2.815411, 48.683322 ], [ 2.898954, 48.674517 ], [ 2.882205, 48.657943 ], [ 2.816552, 48.648523 ], [ 2.785869, 48.659392 ], [ 2.720364, 48.627693 ], [ 2.715292, 48.60979 ], [ 2.663512, 48.614584 ], [ 2.628085, 48.638369 ], [ 2.547965, 48.64966 ], [ 2.57166, 48.692023 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78002", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "2", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.932429, 48.741715 ], [ 1.98868, 48.729 ], [ 2.011238, 48.761966 ], [ 2.049931, 48.769467 ], [ 2.101494, 48.756491 ], [ 2.11004, 48.794388 ], [ 2.161275, 48.812781 ], [ 2.226628, 48.781589 ], [ 2.226559, 48.776102 ], [ 2.100446, 48.736003 ], [ 2.097853, 48.694031 ], [ 2.045836, 48.686781 ], [ 2.011658, 48.653579 ], [ 1.924811, 48.669802 ], [ 1.943273, 48.695082 ], [ 1.932429, 48.741715 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78006", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "6", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.969467, 48.946116 ], [ 2.008323, 48.941929 ], [ 2.074401, 48.984805 ], [ 2.127453, 48.989052 ], [ 2.178155, 48.963511 ], [ 2.134469, 48.955847 ], [ 2.104128, 48.907403 ], [ 2.118189, 48.89078 ], [ 2.077372, 48.873618 ], [ 1.998374, 48.891402 ], [ 2.022166, 48.913606 ], [ 1.969467, 48.946116 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78007", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "7", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.121257, 49.018493 ], [ 2.127453, 48.989052 ], [ 2.074401, 48.984805 ], [ 2.008323, 48.941929 ], [ 1.969467, 48.946116 ], [ 1.955735, 48.956825 ], [ 1.937102, 49.006572 ], [ 1.864813, 48.989894 ], [ 1.859255, 49.013969 ], [ 1.908523, 49.048024 ], [ 1.954948, 49.024535 ], [ 2.026445, 49.000703 ], [ 2.064429, 49.008208 ], [ 2.121257, 49.018493 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78008", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "8", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.859255, 49.013969 ], [ 1.864813, 48.989894 ], [ 1.806854, 48.971021 ], [ 1.674926, 48.961695 ], [ 1.631077, 48.987293 ], [ 1.567149, 48.983417 ], [ 1.584357, 49.016348 ], [ 1.693668, 49.05668 ], [ 1.723457, 49.044977 ], [ 1.823601, 49.076673 ], [ 1.865469, 49.057472 ], [ 1.859255, 49.013969 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78009", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "9", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.864813, 48.989894 ], [ 1.937102, 49.006572 ], [ 1.955735, 48.956825 ], [ 1.917692, 48.924498 ], [ 1.891348, 48.878533 ], [ 1.838398, 48.871259 ], [ 1.770432, 48.896069 ], [ 1.73144, 48.873968 ], [ 1.71892, 48.848588 ], [ 1.705637, 48.779779 ], [ 1.675093, 48.7434 ], [ 1.714702, 48.713474 ], [ 1.64903, 48.70933 ], [ 1.611295, 48.688458 ], [ 1.582495, 48.704303 ], [ 1.62496, 48.749031 ], [ 1.582928, 48.767556 ], [ 1.590483, 48.817335 ], [ 1.582962, 48.857498 ], [ 1.538249, 48.921693 ], [ 1.501524, 48.941054 ], [ 1.470889, 48.974817 ], [ 1.477096, 49.014801 ], [ 1.457762, 49.0263 ], [ 1.521347, 49.068352 ], [ 1.608796, 49.077894 ], [ 1.670822, 49.078911 ], [ 1.693668, 49.05668 ], [ 1.584357, 49.016348 ], [ 1.567149, 48.983417 ], [ 1.631077, 48.987293 ], [ 1.674926, 48.961695 ], [ 1.806854, 48.971021 ], [ 1.864813, 48.989894 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78010", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "10", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.941238, 48.791543 ], [ 1.951944, 48.759374 ], [ 1.932429, 48.741715 ], [ 1.943273, 48.695082 ], [ 1.924811, 48.669802 ], [ 2.011658, 48.653579 ], [ 2.054815, 48.607962 ], [ 2.035013, 48.604852 ], [ 2.017574, 48.557597 ], [ 1.937965, 48.56178 ], [ 1.962065, 48.534995 ], [ 1.916826, 48.473692 ], [ 1.922149, 48.4576 ], [ 1.904507, 48.440263 ], [ 1.847221, 48.446675 ], [ 1.802131, 48.468092 ], [ 1.78664, 48.491471 ], [ 1.776301, 48.526813 ], [ 1.787245, 48.553745 ], [ 1.761452, 48.571688 ], [ 1.709253, 48.578024 ], [ 1.715143, 48.613147 ], [ 1.666354, 48.613708 ], [ 1.640838, 48.644889 ], [ 1.602707, 48.663097 ], [ 1.611295, 48.688458 ], [ 1.64903, 48.70933 ], [ 1.714702, 48.713474 ], [ 1.675093, 48.7434 ], [ 1.705637, 48.779779 ], [ 1.71892, 48.848588 ], [ 1.761116, 48.841036 ], [ 1.841755, 48.800623 ], [ 1.898492, 48.809623 ], [ 1.941238, 48.791543 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78012", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "12", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.71892, 48.848588 ], [ 1.73144, 48.873968 ], [ 1.770432, 48.896069 ], [ 1.838398, 48.871259 ], [ 1.891348, 48.878533 ], [ 1.917692, 48.924498 ], [ 1.955735, 48.956825 ], [ 1.969467, 48.946116 ], [ 2.022166, 48.913606 ], [ 1.998374, 48.891402 ], [ 1.969702, 48.863962 ], [ 1.966898, 48.821791 ], [ 1.986479, 48.799689 ], [ 1.941238, 48.791543 ], [ 1.898492, 48.809623 ], [ 1.841755, 48.800623 ], [ 1.761116, 48.841036 ], [ 1.71892, 48.848588 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "79001", "code_dpt": "79", "nom_dpt": "DEUX-SEVRES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.643541, 46.31945 ], [ -0.602836, 46.359586 ], [ -0.559595, 46.360936 ], [ -0.5378, 46.386465 ], [ -0.611005, 46.413052 ], [ -0.625533, 46.496764 ], [ -0.602129, 46.533281 ], [ -0.613965, 46.620125 ], [ -0.563162, 46.629405 ], [ -0.527247, 46.652996 ], [ -0.472167, 46.653596 ], [ -0.474374, 46.704903 ], [ -0.436636, 46.712664 ], [ -0.405365, 46.687271 ], [ -0.354516, 46.669537 ], [ -0.295464, 46.692284 ], [ -0.272405, 46.649336 ], [ -0.31918, 46.633742 ], [ -0.307876, 46.60751 ], [ -0.202812, 46.601602 ], [ -0.167603, 46.592182 ], [ -0.175896, 46.552851 ], [ -0.206987, 46.528706 ], [ -0.173277, 46.514858 ], [ -0.190059, 46.471296 ], [ -0.255822, 46.452038 ], [ -0.280356, 46.485546 ], [ -0.338395, 46.43426 ], [ -0.39059, 46.443483 ], [ -0.396894, 46.422448 ], [ -0.358108, 46.399154 ], [ -0.353813, 46.347898 ], [ -0.306328, 46.254851 ], [ -0.268134, 46.225312 ], [ -0.28569, 46.200643 ], [ -0.333855, 46.170291 ], [ -0.363927, 46.19547 ], [ -0.435443, 46.225914 ], [ -0.458492, 46.293961 ], [ -0.525695, 46.306105 ], [ -0.565886, 46.289953 ], [ -0.586755, 46.306803 ], [ -0.643541, 46.31945 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "79002", "code_dpt": "79", "nom_dpt": "DEUX-SEVRES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.583081, 46.139563 ], [ -0.615854, 46.138451 ], [ -0.682412, 46.197692 ], [ -0.690945, 46.21933 ], [ -0.751462, 46.24507 ], [ -0.735993, 46.267819 ], [ -0.750476, 46.304259 ], [ -0.697338, 46.325189 ], [ -0.643541, 46.31945 ], [ -0.586755, 46.306803 ], [ -0.565886, 46.289953 ], [ -0.525695, 46.306105 ], [ -0.458492, 46.293961 ], [ -0.435443, 46.225914 ], [ -0.363927, 46.19547 ], [ -0.333855, 46.170291 ], [ -0.28569, 46.200643 ], [ -0.268134, 46.225312 ], [ -0.306328, 46.254851 ], [ -0.353813, 46.347898 ], [ -0.358108, 46.399154 ], [ -0.396894, 46.422448 ], [ -0.39059, 46.443483 ], [ -0.338395, 46.43426 ], [ -0.280356, 46.485546 ], [ -0.255822, 46.452038 ], [ -0.190059, 46.471296 ], [ -0.173277, 46.514858 ], [ -0.206987, 46.528706 ], [ -0.175896, 46.552851 ], [ -0.167603, 46.592182 ], [ -0.202812, 46.601602 ], [ -0.307876, 46.60751 ], [ -0.31918, 46.633742 ], [ -0.272405, 46.649336 ], [ -0.295464, 46.692284 ], [ -0.354516, 46.669537 ], [ -0.405365, 46.687271 ], [ -0.377303, 46.698699 ], [ -0.36695, 46.740037 ], [ -0.31357, 46.785307 ], [ -0.266312, 46.768745 ], [ -0.258947, 46.744839 ], [ -0.218823, 46.733409 ], [ -0.231672, 46.705751 ], [ -0.207034, 46.680525 ], [ -0.149414, 46.69099 ], [ -0.137021, 46.741693 ], [ -0.088211, 46.772599 ], [ -0.058666, 46.74615 ], [ -0.021874, 46.776346 ], [ 0.033065, 46.738492 ], [ -0.000478, 46.715824 ], [ -0.031657, 46.669347 ], [ -0.058854, 46.638365 ], [ -0.010082, 46.616598 ], [ 0.022855, 46.614531 ], [ 0.020517, 46.584644 ], [ -0.003315, 46.571731 ], [ -0.006269, 46.523976 ], [ -0.031351, 46.524981 ], [ -0.040101, 46.47006 ], [ -0.010466, 46.468331 ], [ -0.020218, 46.405878 ], [ 0.03422, 46.373497 ], [ 0.013848, 46.357015 ], [ 0.029354, 46.328675 ], [ 0.078218, 46.304943 ], [ 0.123317, 46.346792 ], [ 0.177369, 46.328113 ], [ 0.152946, 46.304051 ], [ 0.17232, 46.278601 ], [ 0.128837, 46.267232 ], [ 0.142697, 46.230447 ], [ 0.113432, 46.212209 ], [ 0.107702, 46.185995 ], [ 0.155111, 46.157168 ], [ 0.21631, 46.142132 ], [ 0.188854, 46.111307 ], [ 0.197353, 46.095559 ], [ 0.167523, 46.084555 ], [ 0.135816, 46.104051 ], [ 0.072972, 46.093896 ], [ 0.019144, 46.052844 ], [ -0.026207, 46.056347 ], [ -0.05886, 45.986053 ], [ -0.102937, 45.96966 ], [ -0.135611, 45.978538 ], [ -0.144795, 46.00467 ], [ -0.210661, 46.045432 ], [ -0.273028, 46.057321 ], [ -0.280023, 46.076901 ], [ -0.401451, 46.084248 ], [ -0.450341, 46.10206 ], [ -0.503631, 46.107268 ], [ -0.526793, 46.135557 ], [ -0.583081, 46.139563 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "79003", "code_dpt": "79", "nom_dpt": "DEUX-SEVRES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.021874, 46.776346 ], [ -0.058666, 46.74615 ], [ -0.088211, 46.772599 ], [ -0.137021, 46.741693 ], [ -0.149414, 46.69099 ], [ -0.207034, 46.680525 ], [ -0.231672, 46.705751 ], [ -0.218823, 46.733409 ], [ -0.258947, 46.744839 ], [ -0.266312, 46.768745 ], [ -0.31357, 46.785307 ], [ -0.36695, 46.740037 ], [ -0.377303, 46.698699 ], [ -0.405365, 46.687271 ], [ -0.436636, 46.712664 ], [ -0.474374, 46.704903 ], [ -0.472167, 46.653596 ], [ -0.527247, 46.652996 ], [ -0.563162, 46.629405 ], [ -0.613965, 46.620125 ], [ -0.648477, 46.647037 ], [ -0.636989, 46.663329 ], [ -0.655832, 46.700335 ], [ -0.719752, 46.755727 ], [ -0.71004, 46.821572 ], [ -0.781428, 46.843079 ], [ -0.815466, 46.878859 ], [ -0.830606, 46.931144 ], [ -0.881, 46.946467 ], [ -0.891961, 46.975827 ], [ -0.787577, 47.005137 ], [ -0.71454, 46.985979 ], [ -0.671041, 47.000982 ], [ -0.620177, 46.993361 ], [ -0.587252, 47.006133 ], [ -0.561548, 47.029506 ], [ -0.559717, 47.061701 ], [ -0.491782, 47.082853 ], [ -0.483752, 47.066595 ], [ -0.40078, 47.070771 ], [ -0.396031, 47.09024 ], [ -0.340141, 47.087274 ], [ -0.240408, 47.105144 ], [ -0.166736, 47.080992 ], [ -0.128896, 47.054236 ], [ -0.102121, 47.064806 ], [ -0.081341, 47.013131 ], [ -0.033124, 46.980251 ], [ -0.04483, 46.959517 ], [ -0.009123, 46.907925 ], [ -0.028286, 46.879176 ], [ -0.010672, 46.847417 ], [ -0.045392, 46.824003 ], [ 0.00681, 46.810543 ], [ -0.021874, 46.776346 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "80001", "code_dpt": "80", "nom_dpt": "SOMME", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "1", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.079765, 50.133338 ], [ 2.136088, 50.112812 ], [ 2.27893, 50.091676 ], [ 2.284335, 50.071706 ], [ 2.344126, 50.06781 ], [ 2.272258, 50.021426 ], [ 2.235976, 50.025543 ], [ 2.192111, 49.959869 ], [ 2.303418, 49.962277 ], [ 2.393841, 49.932351 ], [ 2.382155, 49.884924 ], [ 2.342741, 49.863246 ], [ 2.334807, 49.871336 ], [ 2.289456, 49.89972 ], [ 2.277004, 49.912775 ], [ 2.216943, 49.926945 ], [ 2.187217, 49.87647 ], [ 2.129919, 49.919359 ], [ 2.102148, 49.901909 ], [ 2.053067, 49.915967 ], [ 2.019768, 49.951711 ], [ 1.999697, 50.001772 ], [ 2.006465, 50.023422 ], [ 1.881383, 50.057214 ], [ 1.836561, 50.042353 ], [ 1.810382, 50.068537 ], [ 1.74951, 50.088313 ], [ 1.74207, 50.125512 ], [ 1.85261, 50.161244 ], [ 1.920766, 50.13032 ], [ 1.947863, 50.161037 ], [ 1.999911, 50.163878 ], [ 2.047525, 50.181284 ], [ 2.079765, 50.133338 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "80003", "code_dpt": "80", "nom_dpt": "SOMME", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "3", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.641544, 50.352153 ], [ 1.677249, 50.333819 ], [ 1.761849, 50.361608 ], [ 1.804679, 50.359606 ], [ 1.919496, 50.312663 ], [ 1.945648, 50.287747 ], [ 1.994128, 50.275716 ], [ 2.048668, 50.256771 ], [ 2.085714, 50.201017 ], [ 2.10581, 50.143643 ], [ 2.079765, 50.133338 ], [ 2.047525, 50.181284 ], [ 1.999911, 50.163878 ], [ 1.947863, 50.161037 ], [ 1.920766, 50.13032 ], [ 1.85261, 50.161244 ], [ 1.74207, 50.125512 ], [ 1.74951, 50.088313 ], [ 1.810382, 50.068537 ], [ 1.836561, 50.042353 ], [ 1.881383, 50.057214 ], [ 2.006465, 50.023422 ], [ 1.999697, 50.001772 ], [ 2.019768, 49.951711 ], [ 2.053067, 49.915967 ], [ 2.102148, 49.901909 ], [ 2.129919, 49.919359 ], [ 2.187217, 49.87647 ], [ 2.184155, 49.837575 ], [ 2.11425, 49.825785 ], [ 2.075508, 49.804716 ], [ 2.032384, 49.824777 ], [ 1.972556, 49.8364 ], [ 1.974074, 49.874246 ], [ 1.890119, 49.895443 ], [ 1.848344, 49.876171 ], [ 1.802722, 49.883603 ], [ 1.762218, 49.846919 ], [ 1.726224, 49.839945 ], [ 1.678451, 49.918134 ], [ 1.596048, 49.947987 ], [ 1.57439, 49.973655 ], [ 1.452256, 50.042667 ], [ 1.459146, 50.062499 ], [ 1.379705, 50.065015 ], [ 1.453752, 50.109977 ], [ 1.483097, 50.17267 ], [ 1.545748, 50.214139 ], [ 1.596264, 50.186175 ], [ 1.67499, 50.175427 ], [ 1.66146, 50.213818 ], [ 1.617027, 50.219353 ], [ 1.592228, 50.256458 ], [ 1.538369, 50.280213 ], [ 1.556618, 50.363141 ], [ 1.641544, 50.352153 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "80004", "code_dpt": "80", "nom_dpt": "SOMME", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "4", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.382155, 49.884924 ], [ 2.393841, 49.932351 ], [ 2.303418, 49.962277 ], [ 2.192111, 49.959869 ], [ 2.235976, 50.025543 ], [ 2.272258, 50.021426 ], [ 2.344126, 50.06781 ], [ 2.284335, 50.071706 ], [ 2.27893, 50.091676 ], [ 2.136088, 50.112812 ], [ 2.079765, 50.133338 ], [ 2.10581, 50.143643 ], [ 2.085714, 50.201017 ], [ 2.173297, 50.207886 ], [ 2.269351, 50.227649 ], [ 2.331301, 50.221724 ], [ 2.452066, 50.230214 ], [ 2.49569, 50.194562 ], [ 2.414846, 50.17311 ], [ 2.389777, 50.155485 ], [ 2.37546, 50.10926 ], [ 2.429658, 50.088185 ], [ 2.376178, 50.068992 ], [ 2.418181, 50.011544 ], [ 2.501081, 50.024861 ], [ 2.547391, 50.041146 ], [ 2.577086, 50.002198 ], [ 2.57839, 49.960812 ], [ 2.551033, 49.950815 ], [ 2.6114, 49.877468 ], [ 2.622359, 49.803564 ], [ 2.64695, 49.792488 ], [ 2.659305, 49.735758 ], [ 2.731797, 49.722138 ], [ 2.692859, 49.69093 ], [ 2.733357, 49.64075 ], [ 2.72521, 49.624727 ], [ 2.688934, 49.625655 ], [ 2.649629, 49.571764 ], [ 2.61546, 49.611615 ], [ 2.571632, 49.597081 ], [ 2.505776, 49.636281 ], [ 2.478123, 49.62079 ], [ 2.445587, 49.652979 ], [ 2.37391, 49.656037 ], [ 2.332295, 49.680994 ], [ 2.229621, 49.702196 ], [ 2.155584, 49.702091 ], [ 2.124042, 49.688039 ], [ 2.058855, 49.695101 ], [ 2.034015, 49.710623 ], [ 1.933066, 49.71988 ], [ 1.894761, 49.699796 ], [ 1.848986, 49.701636 ], [ 1.838351, 49.730723 ], [ 1.784845, 49.757904 ], [ 1.733854, 49.8135 ], [ 1.726224, 49.839945 ], [ 1.762218, 49.846919 ], [ 1.802722, 49.883603 ], [ 1.848344, 49.876171 ], [ 1.890119, 49.895443 ], [ 1.974074, 49.874246 ], [ 1.972556, 49.8364 ], [ 2.032384, 49.824777 ], [ 2.075508, 49.804716 ], [ 2.11425, 49.825785 ], [ 2.184155, 49.837575 ], [ 2.229126, 49.832647 ], [ 2.300845, 49.77131 ], [ 2.393573, 49.766496 ], [ 2.449038, 49.799365 ], [ 2.457587, 49.830866 ], [ 2.497914, 49.85137 ], [ 2.452229, 49.886309 ], [ 2.382155, 49.884924 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "80005", "code_dpt": "80", "nom_dpt": "SOMME", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "5", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.090254, 50.053741 ], [ 3.123578, 50.024485 ], [ 3.172707, 50.011995 ], [ 3.192717, 49.977536 ], [ 3.11762, 49.913962 ], [ 3.119134, 49.883023 ], [ 3.087836, 49.865693 ], [ 3.085933, 49.791747 ], [ 3.120398, 49.705733 ], [ 3.118652, 49.705834 ], [ 3.052435, 49.713769 ], [ 3.028305, 49.680064 ], [ 2.992366, 49.707652 ], [ 2.950274, 49.69279 ], [ 2.913415, 49.709509 ], [ 2.860636, 49.684885 ], [ 2.839634, 49.660768 ], [ 2.800429, 49.661366 ], [ 2.786193, 49.612898 ], [ 2.72521, 49.624727 ], [ 2.733357, 49.64075 ], [ 2.692859, 49.69093 ], [ 2.731797, 49.722138 ], [ 2.659305, 49.735758 ], [ 2.64695, 49.792488 ], [ 2.622359, 49.803564 ], [ 2.6114, 49.877468 ], [ 2.551033, 49.950815 ], [ 2.57839, 49.960812 ], [ 2.577086, 50.002198 ], [ 2.547391, 50.041146 ], [ 2.501081, 50.024861 ], [ 2.418181, 50.011544 ], [ 2.376178, 50.068992 ], [ 2.429658, 50.088185 ], [ 2.455049, 50.131176 ], [ 2.514949, 50.140821 ], [ 2.532332, 50.115077 ], [ 2.630728, 50.107276 ], [ 2.691649, 50.092069 ], [ 2.72993, 50.125864 ], [ 2.780898, 50.111156 ], [ 2.752195, 50.04032 ], [ 2.855414, 50.077992 ], [ 2.876193, 50.044254 ], [ 2.916974, 50.035531 ], [ 2.971536, 50.041367 ], [ 3.01197, 50.058039 ], [ 3.090254, 50.053741 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "81001", "code_dpt": "81", "nom_dpt": "TARN", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.935463, 43.694668 ], [ 2.918087, 43.660994 ], [ 2.814753, 43.639308 ], [ 2.754524, 43.614139 ], [ 2.72267, 43.642639 ], [ 2.653637, 43.650018 ], [ 2.616909, 43.60145 ], [ 2.616643, 43.565377 ], [ 2.658852, 43.516923 ], [ 2.608277, 43.503914 ], [ 2.546949, 43.522056 ], [ 2.464709, 43.57699 ], [ 2.421636, 43.566286 ], [ 2.411177, 43.628127 ], [ 2.344104, 43.619023 ], [ 2.32777, 43.584956 ], [ 2.253897, 43.5573 ], [ 2.229888, 43.587797 ], [ 2.272946, 43.653475 ], [ 2.234513, 43.670317 ], [ 2.208154, 43.707329 ], [ 2.229219, 43.721995 ], [ 2.219632, 43.7663 ], [ 2.195145, 43.760921 ], [ 2.150567, 43.7812 ], [ 2.109046, 43.777052 ], [ 2.08053, 43.793257 ], [ 2.052059, 43.836526 ], [ 2.06291, 43.91176 ], [ 2.134874, 43.920591 ], [ 2.195283, 43.951605 ], [ 2.270994, 43.934686 ], [ 2.330654, 43.933195 ], [ 2.360558, 43.968519 ], [ 2.327153, 43.99135 ], [ 2.323353, 44.035266 ], [ 2.357739, 44.101555 ], [ 2.389215, 44.094571 ], [ 2.41021, 44.055858 ], [ 2.460871, 44.050323 ], [ 2.501798, 43.986633 ], [ 2.508499, 43.945273 ], [ 2.553842, 43.921087 ], [ 2.552007, 43.89157 ], [ 2.576271, 43.881759 ], [ 2.561802, 43.845974 ], [ 2.629213, 43.780252 ], [ 2.68173, 43.743515 ], [ 2.740543, 43.728958 ], [ 2.781499, 43.736958 ], [ 2.814518, 43.761585 ], [ 2.870453, 43.739161 ], [ 2.919139, 43.732468 ], [ 2.935463, 43.694668 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "81002", "code_dpt": "81", "nom_dpt": "TARN", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.08053, 43.793257 ], [ 2.05696, 43.783633 ], [ 2.038566, 43.688865 ], [ 1.970825, 43.71059 ], [ 1.96067, 43.73219 ], [ 1.910738, 43.718689 ], [ 1.872665, 43.728435 ], [ 1.843178, 43.756096 ], [ 1.84387, 43.777774 ], [ 1.784961, 43.80686 ], [ 1.735181, 43.771293 ], [ 1.651526, 43.775861 ], [ 1.644788, 43.800257 ], [ 1.588589, 43.817176 ], [ 1.59317, 43.843138 ], [ 1.555086, 43.86849 ], [ 1.555617, 43.918317 ], [ 1.57752, 43.938812 ], [ 1.552291, 43.963036 ], [ 1.618637, 43.972832 ], [ 1.651181, 44.011278 ], [ 1.689731, 44.023259 ], [ 1.704208, 44.044359 ], [ 1.666838, 44.064929 ], [ 1.671048, 44.116127 ], [ 1.746525, 44.114685 ], [ 1.777958, 44.096767 ], [ 1.806014, 44.126448 ], [ 1.919064, 44.163078 ], [ 1.941394, 44.147858 ], [ 1.990171, 44.149453 ], [ 2.03025, 44.157573 ], [ 2.114064, 44.1958 ], [ 2.149213, 44.200543 ], [ 2.18079, 44.17828 ], [ 2.28488, 44.145335 ], [ 2.307295, 44.118539 ], [ 2.357739, 44.101555 ], [ 2.323353, 44.035266 ], [ 2.327153, 43.99135 ], [ 2.360558, 43.968519 ], [ 2.330654, 43.933195 ], [ 2.270994, 43.934686 ], [ 2.195283, 43.951605 ], [ 2.134874, 43.920591 ], [ 2.06291, 43.91176 ], [ 2.052059, 43.836526 ], [ 2.08053, 43.793257 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "81003", "code_dpt": "81", "nom_dpt": "TARN", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "3", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.687771, 43.630709 ], [ 1.728841, 43.657565 ], [ 1.720704, 43.688346 ], [ 1.663573, 43.694058 ], [ 1.706446, 43.71622 ], [ 1.650087, 43.751597 ], [ 1.651526, 43.775861 ], [ 1.735181, 43.771293 ], [ 1.784961, 43.80686 ], [ 1.84387, 43.777774 ], [ 1.843178, 43.756096 ], [ 1.872665, 43.728435 ], [ 1.910738, 43.718689 ], [ 1.96067, 43.73219 ], [ 1.970825, 43.71059 ], [ 2.038566, 43.688865 ], [ 2.05696, 43.783633 ], [ 2.08053, 43.793257 ], [ 2.109046, 43.777052 ], [ 2.150567, 43.7812 ], [ 2.195145, 43.760921 ], [ 2.219632, 43.7663 ], [ 2.229219, 43.721995 ], [ 2.208154, 43.707329 ], [ 2.234513, 43.670317 ], [ 2.272946, 43.653475 ], [ 2.229888, 43.587797 ], [ 2.253897, 43.5573 ], [ 2.32777, 43.584956 ], [ 2.344104, 43.619023 ], [ 2.411177, 43.628127 ], [ 2.421636, 43.566286 ], [ 2.464709, 43.57699 ], [ 2.546949, 43.522056 ], [ 2.608277, 43.503914 ], [ 2.658852, 43.516923 ], [ 2.664626, 43.463886 ], [ 2.606371, 43.431994 ], [ 2.565787, 43.42296 ], [ 2.518988, 43.423716 ], [ 2.494383, 43.436937 ], [ 2.42759, 43.43449 ], [ 2.398735, 43.417051 ], [ 2.304118, 43.447929 ], [ 2.282011, 43.441226 ], [ 2.256687, 43.453642 ], [ 2.222499, 43.428282 ], [ 2.215024, 43.382615 ], [ 2.170411, 43.415813 ], [ 2.108785, 43.39446 ], [ 2.072801, 43.395696 ], [ 2.053071, 43.430308 ], [ 2.029133, 43.436898 ], [ 2.019332, 43.470064 ], [ 1.887719, 43.516941 ], [ 1.850711, 43.549192 ], [ 1.839145, 43.577873 ], [ 1.806153, 43.579369 ], [ 1.687771, 43.630709 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "82001", "code_dpt": "82", "nom_dpt": "TARN-ET-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.702321, 44.314505 ], [ 1.740954, 44.326297 ], [ 1.782668, 44.316252 ], [ 1.882083, 44.340074 ], [ 1.860483, 44.321938 ], [ 1.901391, 44.279116 ], [ 1.970633, 44.276348 ], [ 1.962021, 44.242339 ], [ 1.932163, 44.242647 ], [ 1.90835, 44.212454 ], [ 1.91299, 44.188412 ], [ 1.97398, 44.181393 ], [ 1.990171, 44.149453 ], [ 1.941394, 44.147858 ], [ 1.919064, 44.163078 ], [ 1.806014, 44.126448 ], [ 1.777958, 44.096767 ], [ 1.746525, 44.114685 ], [ 1.671048, 44.116127 ], [ 1.666838, 44.064929 ], [ 1.704208, 44.044359 ], [ 1.689731, 44.023259 ], [ 1.651181, 44.011278 ], [ 1.618637, 43.972832 ], [ 1.552291, 43.963036 ], [ 1.57752, 43.938812 ], [ 1.555617, 43.918317 ], [ 1.496655, 43.888583 ], [ 1.469869, 43.897482 ], [ 1.383234, 43.91673 ], [ 1.341982, 43.968086 ], [ 1.311239, 43.991489 ], [ 1.272914, 44.082299 ], [ 1.245322, 44.114423 ], [ 1.213631, 44.113632 ], [ 1.17831, 44.141581 ], [ 1.232413, 44.189237 ], [ 1.284393, 44.252516 ], [ 1.281318, 44.235344 ], [ 1.377171, 44.22283 ], [ 1.452112, 44.255881 ], [ 1.473534, 44.284216 ], [ 1.509263, 44.273786 ], [ 1.537463, 44.230259 ], [ 1.585916, 44.250942 ], [ 1.573824, 44.300958 ], [ 1.650052, 44.283204 ], [ 1.702321, 44.314505 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "82002", "code_dpt": "82", "nom_dpt": "TARN-ET-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.741885, 44.065199 ], [ 0.754383, 44.104804 ], [ 0.793165, 44.118458 ], [ 0.796568, 44.145152 ], [ 0.869092, 44.126516 ], [ 0.888351, 44.148813 ], [ 0.859687, 44.192737 ], [ 0.903111, 44.190055 ], [ 0.950788, 44.275072 ], [ 0.869445, 44.309255 ], [ 0.896113, 44.346228 ], [ 0.88732, 44.364646 ], [ 0.919845, 44.384419 ], [ 0.950216, 44.359577 ], [ 1.060229, 44.366064 ], [ 1.064084, 44.378513 ], [ 1.103416, 44.36697 ], [ 1.109472, 44.324692 ], [ 1.169065, 44.304019 ], [ 1.184412, 44.286797 ], [ 1.284393, 44.252516 ], [ 1.232413, 44.189237 ], [ 1.17831, 44.141581 ], [ 1.213631, 44.113632 ], [ 1.245322, 44.114423 ], [ 1.272914, 44.082299 ], [ 1.311239, 43.991489 ], [ 1.341982, 43.968086 ], [ 1.383234, 43.91673 ], [ 1.469869, 43.897482 ], [ 1.447742, 43.873506 ], [ 1.418123, 43.871875 ], [ 1.365184, 43.889574 ], [ 1.319412, 43.858068 ], [ 1.360031, 43.817209 ], [ 1.212776, 43.768242 ], [ 1.157369, 43.818329 ], [ 1.115083, 43.797776 ], [ 1.083306, 43.816332 ], [ 0.953983, 43.787372 ], [ 0.897291, 43.788535 ], [ 0.925163, 43.832027 ], [ 0.895239, 43.839897 ], [ 0.889231, 43.904248 ], [ 0.809298, 43.932302 ], [ 0.770004, 43.922143 ], [ 0.760114, 43.945304 ], [ 0.826872, 43.997493 ], [ 0.814551, 44.022817 ], [ 0.764048, 44.029639 ], [ 0.741885, 44.065199 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "83004", "code_dpt": "83", "nom_dpt": "VAR", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "4", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.191315, 43.442459 ], [ 6.234989, 43.459883 ], [ 6.236387, 43.481199 ], [ 6.287056, 43.478927 ], [ 6.326152, 43.517302 ], [ 6.52195, 43.480031 ], [ 6.542974, 43.397187 ], [ 6.622982, 43.40529 ], [ 6.682171, 43.340981 ], [ 6.668219, 43.314303 ], [ 6.585357, 43.279236 ], [ 6.594155, 43.262195 ], [ 6.644064, 43.273624 ], [ 6.665308, 43.242369 ], [ 6.665254, 43.211466 ], [ 6.620863, 43.161461 ], [ 6.594375, 43.184677 ], [ 6.561642, 43.188825 ], [ 6.494056, 43.150898 ], [ 6.465464, 43.156818 ], [ 6.368112, 43.135641 ], [ 6.363991, 43.08956 ], [ 6.326106, 43.092466 ], [ 6.271819, 43.120991 ], [ 6.292064, 43.180843 ], [ 6.240826, 43.215245 ], [ 6.241942, 43.277413 ], [ 6.211386, 43.319488 ], [ 6.164928, 43.317104 ], [ 6.134988, 43.332012 ], [ 6.191315, 43.442459 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "83005", "code_dpt": "83", "nom_dpt": "VAR", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "5", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.879135, 43.532454 ], [ 6.88423, 43.502536 ], [ 6.933726, 43.480068 ], [ 6.92131, 43.451306 ], [ 6.890097, 43.428012 ], [ 6.860241, 43.431188 ], [ 6.787761, 43.408952 ], [ 6.735328, 43.407767 ], [ 6.713815, 43.345878 ], [ 6.682171, 43.340981 ], [ 6.622982, 43.40529 ], [ 6.542974, 43.397187 ], [ 6.52195, 43.480031 ], [ 6.590659, 43.491231 ], [ 6.577174, 43.522992 ], [ 6.671468, 43.553625 ], [ 6.78687, 43.546686 ], [ 6.879135, 43.532454 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "83006", "code_dpt": "83", "nom_dpt": "VAR", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "6", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.725912, 43.136526 ], [ 5.695909, 43.145092 ], [ 5.671875, 43.179269 ], [ 5.682416, 43.235456 ], [ 5.760929, 43.267347 ], [ 5.726601, 43.317364 ], [ 5.669164, 43.31941 ], [ 5.703628, 43.354009 ], [ 5.682788, 43.399166 ], [ 5.778915, 43.410073 ], [ 5.727214, 43.467083 ], [ 5.714278, 43.50122 ], [ 5.725074, 43.551273 ], [ 5.783491, 43.538114 ], [ 5.827676, 43.548252 ], [ 5.865406, 43.48804 ], [ 5.925416, 43.490498 ], [ 5.914326, 43.450805 ], [ 5.988015, 43.431323 ], [ 5.997567, 43.469304 ], [ 6.04024, 43.457626 ], [ 6.06769, 43.467792 ], [ 6.126181, 43.446096 ], [ 6.191315, 43.442459 ], [ 6.134988, 43.332012 ], [ 6.164928, 43.317104 ], [ 6.211386, 43.319488 ], [ 6.241942, 43.277413 ], [ 6.240826, 43.215245 ], [ 6.163157, 43.202642 ], [ 6.113911, 43.227517 ], [ 6.093894, 43.198125 ], [ 6.018136, 43.231047 ], [ 5.994739, 43.261531 ], [ 5.854953, 43.199024 ], [ 5.800896, 43.158976 ], [ 5.744756, 43.164568 ], [ 5.725912, 43.136526 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "83008", "code_dpt": "83", "nom_dpt": "VAR", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "8", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.636396, 43.788951 ], [ 6.657423, 43.748718 ], [ 6.754162, 43.737857 ], [ 6.774704, 43.693851 ], [ 6.761134, 43.665891 ], [ 6.799868, 43.628348 ], [ 6.853158, 43.6064 ], [ 6.89447, 43.611025 ], [ 6.911991, 43.598332 ], [ 6.906637, 43.564149 ], [ 6.879135, 43.532454 ], [ 6.78687, 43.546686 ], [ 6.671468, 43.553625 ], [ 6.577174, 43.522992 ], [ 6.590659, 43.491231 ], [ 6.52195, 43.480031 ], [ 6.326152, 43.517302 ], [ 6.287056, 43.478927 ], [ 6.236387, 43.481199 ], [ 6.234989, 43.459883 ], [ 6.191315, 43.442459 ], [ 6.126181, 43.446096 ], [ 6.06769, 43.467792 ], [ 6.04024, 43.457626 ], [ 5.997567, 43.469304 ], [ 5.988015, 43.431323 ], [ 5.914326, 43.450805 ], [ 5.925416, 43.490498 ], [ 5.865406, 43.48804 ], [ 5.827676, 43.548252 ], [ 5.783491, 43.538114 ], [ 5.725074, 43.551273 ], [ 5.687577, 43.584213 ], [ 5.680884, 43.610882 ], [ 5.7006, 43.642526 ], [ 5.799206, 43.659929 ], [ 5.813248, 43.689054 ], [ 5.753651, 43.724622 ], [ 5.757333, 43.729409 ], [ 5.781343, 43.755657 ], [ 5.83182, 43.745955 ], [ 5.855749, 43.723189 ], [ 5.888624, 43.726364 ], [ 5.905002, 43.75278 ], [ 5.938253, 43.748358 ], [ 5.951862, 43.721534 ], [ 6.021735, 43.668288 ], [ 6.034615, 43.692711 ], [ 6.070405, 43.704944 ], [ 6.110867, 43.74575 ], [ 6.169112, 43.751761 ], [ 6.210675, 43.797664 ], [ 6.24963, 43.801579 ], [ 6.267787, 43.778547 ], [ 6.35451, 43.736515 ], [ 6.383541, 43.734437 ], [ 6.412788, 43.762256 ], [ 6.415852, 43.790046 ], [ 6.487236, 43.792288 ], [ 6.520384, 43.806976 ], [ 6.554071, 43.783435 ], [ 6.586912, 43.80532 ], [ 6.636396, 43.788951 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "84002", "code_dpt": "84", "nom_dpt": "VAUCLUSE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "2", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.445293, 43.680095 ], [ 5.412714, 43.692913 ], [ 5.3153, 43.736566 ], [ 5.236378, 43.74747 ], [ 5.186262, 43.735507 ], [ 5.048139, 43.789727 ], [ 5.027721, 43.828583 ], [ 4.969653, 43.869742 ], [ 4.922008, 43.886759 ], [ 4.918015, 43.953895 ], [ 4.95095, 43.97463 ], [ 5.044033, 43.944993 ], [ 5.068774, 43.964433 ], [ 5.159728, 43.94997 ], [ 5.166558, 43.864371 ], [ 5.267566, 43.853892 ], [ 5.343366, 43.863166 ], [ 5.359232, 43.845106 ], [ 5.404176, 43.845691 ], [ 5.473773, 43.798163 ], [ 5.472831, 43.752521 ], [ 5.45333, 43.729312 ], [ 5.445293, 43.680095 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "84004", "code_dpt": "84", "nom_dpt": "VAUCLUSE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "4", "code_reg": "93" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.91514, 44.103543 ], [ 4.870713, 44.117671 ], [ 4.839546, 44.079829 ], [ 4.864831, 44.057974 ], [ 4.833953, 44.033766 ], [ 4.795865, 44.04791 ], [ 4.757721, 44.087933 ], [ 4.723213, 44.079353 ], [ 4.705082, 44.108175 ], [ 4.718133, 44.140678 ], [ 4.699936, 44.216108 ], [ 4.673657, 44.214711 ], [ 4.67736, 44.234975 ], [ 4.649224, 44.27036 ], [ 4.650615, 44.329806 ], [ 4.721663, 44.326592 ], [ 4.762995, 44.3251 ], [ 4.804563, 44.303897 ], [ 4.803999, 44.269206 ], [ 4.825342, 44.228446 ], [ 4.88025, 44.261769 ], [ 4.93291, 44.262152 ], [ 4.971688, 44.279426 ], [ 4.989594, 44.285766 ], [ 5.060565, 44.30814 ], [ 5.076512, 44.284086 ], [ 5.109547, 44.280548 ], [ 5.14953, 44.300682 ], [ 5.175606, 44.220866 ], [ 5.23815, 44.213233 ], [ 5.256509, 44.230056 ], [ 5.303624, 44.208799 ], [ 5.35579, 44.213599 ], [ 5.384529, 44.201191 ], [ 5.383241, 44.155285 ], [ 5.326595, 44.159581 ], [ 5.28286, 44.174061 ], [ 5.172663, 44.162595 ], [ 5.132529, 44.140395 ], [ 5.071004, 44.132247 ], [ 5.041893, 44.109726 ], [ 4.996358, 44.106892 ], [ 4.95005, 44.129091 ], [ 4.91514, 44.103543 ] ] ], [ [ [ 4.987018, 44.292719 ], [ 4.979968, 44.297249 ], [ 4.921836, 44.308797 ], [ 4.889463, 44.304019 ], [ 4.869527, 44.345076 ], [ 4.907085, 44.374631 ], [ 4.918515, 44.407785 ], [ 4.970547, 44.429846 ], [ 5.018616, 44.392588 ], [ 5.025059, 44.360998 ], [ 4.987018, 44.292719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "84005", "code_dpt": "84", "nom_dpt": "VAUCLUSE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "5", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.159728, 43.94997 ], [ 5.195954, 43.950283 ], [ 5.21363, 43.989901 ], [ 5.161606, 44.004114 ], [ 5.13929, 44.030995 ], [ 5.186125, 44.036534 ], [ 5.159374, 44.063383 ], [ 5.159151, 44.087454 ], [ 5.101851, 44.079313 ], [ 5.086636, 44.06085 ], [ 5.043448, 44.054779 ], [ 4.991485, 44.068708 ], [ 4.942397, 44.053979 ], [ 4.91514, 44.103543 ], [ 4.95005, 44.129091 ], [ 4.996358, 44.106892 ], [ 5.041893, 44.109726 ], [ 5.071004, 44.132247 ], [ 5.132529, 44.140395 ], [ 5.172663, 44.162595 ], [ 5.28286, 44.174061 ], [ 5.326595, 44.159581 ], [ 5.383241, 44.155285 ], [ 5.415834, 44.154652 ], [ 5.454716, 44.119228 ], [ 5.498788, 44.115719 ], [ 5.502637, 44.063448 ], [ 5.544598, 44.069892 ], [ 5.542867, 44.024449 ], [ 5.519569, 43.994012 ], [ 5.512674, 43.945404 ], [ 5.567633, 43.94264 ], [ 5.60656, 43.916082 ], [ 5.572737, 43.863508 ], [ 5.571719, 43.829291 ], [ 5.654445, 43.825111 ], [ 5.716274, 43.756931 ], [ 5.757333, 43.729409 ], [ 5.753651, 43.724622 ], [ 5.712026, 43.690643 ], [ 5.673113, 43.693506 ], [ 5.606944, 43.658686 ], [ 5.530508, 43.659231 ], [ 5.445293, 43.680095 ], [ 5.45333, 43.729312 ], [ 5.472831, 43.752521 ], [ 5.473773, 43.798163 ], [ 5.404176, 43.845691 ], [ 5.359232, 43.845106 ], [ 5.343366, 43.863166 ], [ 5.267566, 43.853892 ], [ 5.166558, 43.864371 ], [ 5.159728, 43.94997 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "85001", "code_dpt": "85", "nom_dpt": "VENDEE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "1", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.938925, 46.993515 ], [ -1.832106, 46.932086 ], [ -1.750433, 46.93037 ], [ -1.736009, 46.896058 ], [ -1.548511, 46.86008 ], [ -1.500791, 46.883394 ], [ -1.52982, 46.908201 ], [ -1.521631, 46.941034 ], [ -1.554272, 46.978654 ], [ -1.543657, 47.003774 ], [ -1.499845, 47.040689 ], [ -1.47313, 47.031123 ], [ -1.458268, 46.925838 ], [ -1.373372, 46.95208 ], [ -1.339645, 46.935826 ], [ -1.354167, 46.903167 ], [ -1.392405, 46.869052 ], [ -1.331401, 46.829363 ], [ -1.333652, 46.810386 ], [ -1.280656, 46.800723 ], [ -1.267197, 46.81557 ], [ -1.215902, 46.817183 ], [ -1.174219, 46.803458 ], [ -1.144489, 46.817329 ], [ -1.102969, 46.798731 ], [ -1.100392, 46.745943 ], [ -1.070159, 46.719024 ], [ -1.115905, 46.689559 ], [ -1.166434, 46.711799 ], [ -1.200475, 46.688899 ], [ -1.247655, 46.714446 ], [ -1.335219, 46.689825 ], [ -1.36711, 46.693114 ], [ -1.521055, 46.642114 ], [ -1.567204, 46.677641 ], [ -1.597071, 46.676284 ], [ -1.594654, 46.716003 ], [ -1.635059, 46.710192 ], [ -1.669454, 46.68962 ], [ -1.693767, 46.707632 ], [ -1.781583, 46.734385 ], [ -1.772527, 46.770276 ], [ -1.818716, 46.79318 ], [ -1.875452, 46.806536 ], [ -1.927096, 46.839426 ], [ -2.0295, 46.847476 ], [ -2.023382, 46.867835 ], [ -1.936507, 46.897327 ], [ -1.953385, 46.921663 ], [ -1.943596, 46.946495 ], [ -1.957066, 46.976715 ], [ -1.938925, 46.993515 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "85003", "code_dpt": "85", "nom_dpt": "VENDEE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "3", "code_reg": "52" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.980414, 47.028906 ], [ -1.938925, 46.993515 ], [ -1.957066, 46.976715 ], [ -1.943596, 46.946495 ], [ -1.953385, 46.921663 ], [ -1.936507, 46.897327 ], [ -2.023382, 46.867835 ], [ -2.0295, 46.847476 ], [ -1.927096, 46.839426 ], [ -1.875452, 46.806536 ], [ -1.818716, 46.79318 ], [ -1.772527, 46.770276 ], [ -1.781583, 46.734385 ], [ -1.693767, 46.707632 ], [ -1.720955, 46.70031 ], [ -1.754783, 46.659023 ], [ -1.752986, 46.631008 ], [ -1.693372, 46.606659 ], [ -1.734787, 46.585505 ], [ -1.734982, 46.549432 ], [ -1.668818, 46.551179 ], [ -1.654757, 46.516268 ], [ -1.714284, 46.459027 ], [ -1.78275, 46.494301 ], [ -1.812566, 46.494383 ], [ -1.856094, 46.608403 ], [ -1.898379, 46.641262 ], [ -1.945413, 46.694012 ], [ -2.058248, 46.774919 ], [ -2.141989, 46.818975 ], [ -2.154597, 46.888158 ], [ -2.12029, 46.892216 ], [ -2.107738, 46.917478 ], [ -2.057905, 46.951572 ], [ -2.028141, 47.009568 ], [ -1.980414, 47.028906 ] ] ], [ [ [ -2.343308, 46.692735 ], [ -2.392802, 46.709956 ], [ -2.380787, 46.732469 ], [ -2.318904, 46.719266 ], [ -2.343308, 46.692735 ] ] ], [ [ [ -2.187332, 46.961153 ], [ -2.267264, 46.963959 ], [ -2.301813, 46.989743 ], [ -2.30153, 47.024975 ], [ -2.255562, 47.027071 ], [ -2.221528, 47.01206 ], [ -2.236889, 46.980873 ], [ -2.187332, 46.961153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "85004", "code_dpt": "85", "nom_dpt": "VENDEE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "4", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.373372, 46.95208 ], [ -1.359059, 46.981135 ], [ -1.375944, 47.029657 ], [ -1.317961, 47.034303 ], [ -1.267884, 47.084269 ], [ -1.196769, 47.039766 ], [ -1.148571, 47.029554 ], [ -1.110119, 47.01601 ], [ -0.959132, 46.998123 ], [ -0.934878, 47.007562 ], [ -0.891961, 46.975827 ], [ -0.881, 46.946467 ], [ -0.830606, 46.931144 ], [ -0.815466, 46.878859 ], [ -0.781428, 46.843079 ], [ -0.71004, 46.821572 ], [ -0.719752, 46.755727 ], [ -0.759038, 46.740457 ], [ -0.757756, 46.706623 ], [ -0.805529, 46.687488 ], [ -0.892936, 46.678756 ], [ -0.956438, 46.695839 ], [ -0.962448, 46.732045 ], [ -0.941588, 46.758403 ], [ -0.987139, 46.771489 ], [ -1.00187, 46.750088 ], [ -1.073525, 46.760189 ], [ -1.100392, 46.745943 ], [ -1.102969, 46.798731 ], [ -1.144489, 46.817329 ], [ -1.174219, 46.803458 ], [ -1.215902, 46.817183 ], [ -1.267197, 46.81557 ], [ -1.280656, 46.800723 ], [ -1.333652, 46.810386 ], [ -1.331401, 46.829363 ], [ -1.392405, 46.869052 ], [ -1.354167, 46.903167 ], [ -1.339645, 46.935826 ], [ -1.373372, 46.95208 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "85005", "code_dpt": "85", "nom_dpt": "VENDEE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "5", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.129404, 46.310277 ], [ -1.163774, 46.324345 ], [ -1.202044, 46.316086 ], [ -1.207608, 46.282868 ], [ -1.232174, 46.27577 ], [ -1.303407, 46.320624 ], [ -1.365953, 46.356165 ], [ -1.376189, 46.389961 ], [ -1.333763, 46.423894 ], [ -1.295942, 46.431647 ], [ -1.288711, 46.467413 ], [ -1.243278, 46.468714 ], [ -1.229644, 46.489275 ], [ -1.1512, 46.489177 ], [ -1.097386, 46.547663 ], [ -1.113155, 46.564021 ], [ -1.058409, 46.642389 ], [ -0.986543, 46.630812 ], [ -0.956438, 46.695839 ], [ -0.892936, 46.678756 ], [ -0.805529, 46.687488 ], [ -0.757756, 46.706623 ], [ -0.759038, 46.740457 ], [ -0.719752, 46.755727 ], [ -0.655832, 46.700335 ], [ -0.636989, 46.663329 ], [ -0.648477, 46.647037 ], [ -0.613965, 46.620125 ], [ -0.602129, 46.533281 ], [ -0.625533, 46.496764 ], [ -0.611005, 46.413052 ], [ -0.5378, 46.386465 ], [ -0.559595, 46.360936 ], [ -0.602836, 46.359586 ], [ -0.643541, 46.31945 ], [ -0.697338, 46.325189 ], [ -0.750476, 46.304259 ], [ -0.840742, 46.339691 ], [ -0.933909, 46.312628 ], [ -0.958678, 46.323347 ], [ -0.93423, 46.360113 ], [ -1.017639, 46.35301 ], [ -1.078098, 46.319349 ], [ -1.129404, 46.310277 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "86003", "code_dpt": "86", "nom_dpt": "VIENNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.197353, 46.095559 ], [ 0.188854, 46.111307 ], [ 0.21631, 46.142132 ], [ 0.155111, 46.157168 ], [ 0.107702, 46.185995 ], [ 0.113432, 46.212209 ], [ 0.142697, 46.230447 ], [ 0.128837, 46.267232 ], [ 0.17232, 46.278601 ], [ 0.152946, 46.304051 ], [ 0.177369, 46.328113 ], [ 0.123317, 46.346792 ], [ 0.078218, 46.304943 ], [ 0.029354, 46.328675 ], [ 0.013848, 46.357015 ], [ 0.03422, 46.373497 ], [ -0.020218, 46.405878 ], [ -0.010466, 46.468331 ], [ -0.040101, 46.47006 ], [ -0.031351, 46.524981 ], [ -0.006269, 46.523976 ], [ 0.050096, 46.514415 ], [ 0.072122, 46.490481 ], [ 0.124342, 46.486581 ], [ 0.139908, 46.510633 ], [ 0.206653, 46.517419 ], [ 0.189991, 46.484412 ], [ 0.195626, 46.41619 ], [ 0.211061, 46.385401 ], [ 0.331886, 46.365155 ], [ 0.386693, 46.372722 ], [ 0.403962, 46.410046 ], [ 0.516185, 46.397724 ], [ 0.572173, 46.440568 ], [ 0.538235, 46.466652 ], [ 0.566496, 46.486942 ], [ 0.600368, 46.506477 ], [ 0.610863, 46.580477 ], [ 0.648185, 46.61867 ], [ 0.640027, 46.637348 ], [ 0.586582, 46.638658 ], [ 0.566587, 46.665189 ], [ 0.506291, 46.655173 ], [ 0.509781, 46.697211 ], [ 0.479047, 46.737079 ], [ 0.43555, 46.717819 ], [ 0.401038, 46.724303 ], [ 0.409251, 46.754237 ], [ 0.505916, 46.752863 ], [ 0.545366, 46.78245 ], [ 0.581325, 46.773591 ], [ 0.650195, 46.704992 ], [ 0.723403, 46.710359 ], [ 0.78194, 46.729584 ], [ 0.817421, 46.713456 ], [ 0.892965, 46.707481 ], [ 0.90283, 46.730405 ], [ 0.924812, 46.700216 ], [ 0.902262, 46.677666 ], [ 0.915638, 46.650672 ], [ 0.894059, 46.628624 ], [ 0.915865, 46.596631 ], [ 0.990254, 46.565904 ], [ 1.020409, 46.537147 ], [ 1.090094, 46.537584 ], [ 1.149143, 46.502212 ], [ 1.135514, 46.470889 ], [ 1.150917, 46.450297 ], [ 1.213066, 46.433083 ], [ 1.17728, 46.383952 ], [ 1.128579, 46.362221 ], [ 1.048637, 46.356549 ], [ 1.027163, 46.343443 ], [ 1.005887, 46.280974 ], [ 0.901248, 46.287507 ], [ 0.843549, 46.238884 ], [ 0.808399, 46.228006 ], [ 0.813373, 46.197689 ], [ 0.845853, 46.138369 ], [ 0.823433, 46.128591 ], [ 0.747883, 46.13872 ], [ 0.676447, 46.112534 ], [ 0.687453, 46.097255 ], [ 0.539973, 46.085558 ], [ 0.508685, 46.13194 ], [ 0.472303, 46.130136 ], [ 0.447431, 46.087045 ], [ 0.466101, 46.060967 ], [ 0.291331, 46.059548 ], [ 0.219852, 46.094247 ], [ 0.197353, 46.095559 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "86004", "code_dpt": "86", "nom_dpt": "VIENNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "4", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.409251, 46.754237 ], [ 0.355145, 46.757138 ], [ 0.312311, 46.78719 ], [ 0.220089, 46.812258 ], [ 0.098743, 46.770526 ], [ 0.034387, 46.760115 ], [ 0.033065, 46.738492 ], [ -0.021874, 46.776346 ], [ 0.00681, 46.810543 ], [ -0.045392, 46.824003 ], [ -0.010672, 46.847417 ], [ -0.028286, 46.879176 ], [ -0.009123, 46.907925 ], [ -0.04483, 46.959517 ], [ -0.033124, 46.980251 ], [ -0.081341, 47.013131 ], [ -0.102121, 47.064806 ], [ -0.085541, 47.100434 ], [ -0.044239, 47.093151 ], [ -0.033736, 47.127565 ], [ 0.019015, 47.175758 ], [ 0.05374, 47.164611 ], [ 0.078071, 47.123741 ], [ 0.132102, 47.121391 ], [ 0.208199, 47.053237 ], [ 0.243872, 47.070949 ], [ 0.264221, 47.046434 ], [ 0.309935, 47.028031 ], [ 0.298206, 46.971264 ], [ 0.325352, 46.930943 ], [ 0.36463, 46.948568 ], [ 0.43871, 46.929582 ], [ 0.50519, 46.959911 ], [ 0.598205, 46.956428 ], [ 0.573683, 46.983388 ], [ 0.590556, 47.006729 ], [ 0.690172, 46.97498 ], [ 0.70467, 46.902886 ], [ 0.753423, 46.860585 ], [ 0.807997, 46.829139 ], [ 0.813354, 46.79168 ], [ 0.867469, 46.748219 ], [ 0.90283, 46.730405 ], [ 0.892965, 46.707481 ], [ 0.817421, 46.713456 ], [ 0.78194, 46.729584 ], [ 0.723403, 46.710359 ], [ 0.650195, 46.704992 ], [ 0.581325, 46.773591 ], [ 0.545366, 46.78245 ], [ 0.505916, 46.752863 ], [ 0.409251, 46.754237 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "87002", "code_dpt": "87", "nom_dpt": "HAUTE-VIENNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.246619, 45.834156 ], [ 1.259613, 45.82749 ], [ 1.277623, 45.815512 ], [ 1.293917, 45.802257 ], [ 1.341235, 45.786201 ], [ 1.403103, 45.802792 ], [ 1.446691, 45.771292 ], [ 1.532694, 45.755088 ], [ 1.513778, 45.733179 ], [ 1.490036, 45.670566 ], [ 1.514387, 45.641565 ], [ 1.541401, 45.646962 ], [ 1.592897, 45.575027 ], [ 1.558783, 45.550945 ], [ 1.517394, 45.564276 ], [ 1.492475, 45.54939 ], [ 1.408944, 45.526335 ], [ 1.3896, 45.496157 ], [ 1.350078, 45.466897 ], [ 1.285317, 45.490281 ], [ 1.253152, 45.444219 ], [ 1.212123, 45.46237 ], [ 1.118436, 45.487904 ], [ 1.165364, 45.526403 ], [ 1.119312, 45.545962 ], [ 1.086024, 45.534744 ], [ 1.047749, 45.557829 ], [ 1.023588, 45.607219 ], [ 0.946145, 45.612551 ], [ 0.89374, 45.601034 ], [ 0.869353, 45.623527 ], [ 0.839996, 45.581304 ], [ 0.777188, 45.592169 ], [ 0.750613, 45.616873 ], [ 0.775643, 45.667746 ], [ 0.744137, 45.688262 ], [ 0.662086, 45.687481 ], [ 0.629742, 45.71457 ], [ 0.695379, 45.762119 ], [ 0.710515, 45.802201 ], [ 0.783779, 45.793475 ], [ 0.827373, 45.882748 ], [ 0.821937, 45.931559 ], [ 0.884575, 45.923811 ], [ 0.941493, 45.960587 ], [ 0.934675, 45.992207 ], [ 1.069279, 45.944139 ], [ 1.072677, 45.915643 ], [ 1.042524, 45.888228 ], [ 1.140547, 45.873129 ], [ 1.182776, 45.83875 ], [ 1.161393, 45.816417 ], [ 1.164695, 45.788782 ], [ 1.203476, 45.782029 ], [ 1.239686, 45.807136 ], [ 1.246619, 45.834156 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "88001", "code_dpt": "88", "nom_dpt": "VOSGES", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.585679, 48.125596 ], [ 6.542464, 48.11576 ], [ 6.526571, 48.086026 ], [ 6.466634, 48.043282 ], [ 6.406815, 48.011071 ], [ 6.400627, 47.983273 ], [ 6.364993, 47.962572 ], [ 6.322461, 47.950083 ], [ 6.277334, 47.953809 ], [ 6.326421, 48.041186 ], [ 6.277091, 48.049217 ], [ 6.22071, 48.072298 ], [ 6.213742, 48.095859 ], [ 6.289821, 48.129748 ], [ 6.263046, 48.179124 ], [ 6.309147, 48.18871 ], [ 6.329945, 48.207956 ], [ 6.305308, 48.239223 ], [ 6.345253, 48.256443 ], [ 6.325769, 48.29088 ], [ 6.359969, 48.326277 ], [ 6.384241, 48.39461 ], [ 6.456866, 48.417017 ], [ 6.501792, 48.414563 ], [ 6.56859, 48.438228 ], [ 6.620753, 48.472409 ], [ 6.647632, 48.43513 ], [ 6.765889, 48.401639 ], [ 6.815027, 48.395068 ], [ 6.787664, 48.356008 ], [ 6.774481, 48.304889 ], [ 6.784953, 48.286233 ], [ 6.72186, 48.268518 ], [ 6.675049, 48.309966 ], [ 6.637443, 48.309921 ], [ 6.623463, 48.285321 ], [ 6.55006, 48.3129 ], [ 6.548452, 48.216533 ], [ 6.583351, 48.180135 ], [ 6.585679, 48.125596 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "88002", "code_dpt": "88", "nom_dpt": "VOSGES", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.815027, 48.395068 ], [ 6.849189, 48.423831 ], [ 6.892111, 48.419214 ], [ 6.965266, 48.471546 ], [ 7.092687, 48.511854 ], [ 7.123165, 48.513592 ], [ 7.095687, 48.426533 ], [ 7.100822, 48.373744 ], [ 7.075964, 48.352585 ], [ 7.141319, 48.332018 ], [ 7.169537, 48.342307 ], [ 7.198282, 48.310477 ], [ 7.148723, 48.264339 ], [ 7.10629, 48.194309 ], [ 7.059047, 48.139181 ], [ 7.084163, 48.129222 ], [ 7.05165, 48.082607 ], [ 7.018614, 48.055059 ], [ 6.983268, 48.083616 ], [ 6.812038, 48.113527 ], [ 6.769325, 48.105784 ], [ 6.698099, 48.127031 ], [ 6.627823, 48.108029 ], [ 6.585679, 48.125596 ], [ 6.583351, 48.180135 ], [ 6.548452, 48.216533 ], [ 6.55006, 48.3129 ], [ 6.623463, 48.285321 ], [ 6.637443, 48.309921 ], [ 6.675049, 48.309966 ], [ 6.72186, 48.268518 ], [ 6.784953, 48.286233 ], [ 6.774481, 48.304889 ], [ 6.787664, 48.356008 ], [ 6.815027, 48.395068 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "88003", "code_dpt": "88", "nom_dpt": "VOSGES", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "3", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.018614, 48.055059 ], [ 6.981539, 48.009421 ], [ 6.943508, 47.998737 ], [ 6.92038, 47.945998 ], [ 6.927513, 47.912132 ], [ 6.898328, 47.888695 ], [ 6.920048, 47.850287 ], [ 6.84618, 47.822945 ], [ 6.823539, 47.813054 ], [ 6.784952, 47.849573 ], [ 6.738164, 47.862049 ], [ 6.645203, 47.904085 ], [ 6.601244, 47.944379 ], [ 6.568708, 47.934499 ], [ 6.542014, 47.902534 ], [ 6.478262, 47.885442 ], [ 6.431921, 47.94381 ], [ 6.364993, 47.962572 ], [ 6.400627, 47.983273 ], [ 6.406815, 48.011071 ], [ 6.466634, 48.043282 ], [ 6.526571, 48.086026 ], [ 6.542464, 48.11576 ], [ 6.585679, 48.125596 ], [ 6.627823, 48.108029 ], [ 6.698099, 48.127031 ], [ 6.769325, 48.105784 ], [ 6.812038, 48.113527 ], [ 6.983268, 48.083616 ], [ 7.018614, 48.055059 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "88004", "code_dpt": "88", "nom_dpt": "VOSGES", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "4", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.277334, 47.953809 ], [ 6.237987, 47.932842 ], [ 6.161247, 47.958296 ], [ 6.156058, 48.006944 ], [ 6.109235, 48.012469 ], [ 6.036864, 48.001455 ], [ 6.002262, 47.95609 ], [ 5.947534, 47.97971 ], [ 5.884726, 47.926047 ], [ 5.833769, 47.959617 ], [ 5.788412, 47.952696 ], [ 5.794785, 47.996795 ], [ 5.776419, 48.022407 ], [ 5.692104, 48.075527 ], [ 5.633143, 48.084297 ], [ 5.685356, 48.150619 ], [ 5.680173, 48.178674 ], [ 5.730983, 48.1897 ], [ 5.710844, 48.219937 ], [ 5.640901, 48.242354 ], [ 5.653809, 48.268524 ], [ 5.611652, 48.291815 ], [ 5.588425, 48.273763 ], [ 5.533514, 48.325102 ], [ 5.526527, 48.346856 ], [ 5.474496, 48.35457 ], [ 5.426048, 48.331062 ], [ 5.409779, 48.39262 ], [ 5.470062, 48.420929 ], [ 5.560827, 48.44147 ], [ 5.615055, 48.440512 ], [ 5.676378, 48.471532 ], [ 5.740233, 48.465871 ], [ 5.765155, 48.496493 ], [ 5.857235, 48.506852 ], [ 5.9043, 48.482927 ], [ 5.897487, 48.448552 ], [ 5.85934, 48.416502 ], [ 5.949585, 48.396501 ], [ 5.96481, 48.350061 ], [ 6.005127, 48.360416 ], [ 6.079825, 48.363638 ], [ 6.11705, 48.353841 ], [ 6.17842, 48.397608 ], [ 6.260443, 48.406401 ], [ 6.302857, 48.428386 ], [ 6.308258, 48.411892 ], [ 6.384241, 48.39461 ], [ 6.359969, 48.326277 ], [ 6.325769, 48.29088 ], [ 6.345253, 48.256443 ], [ 6.305308, 48.239223 ], [ 6.329945, 48.207956 ], [ 6.309147, 48.18871 ], [ 6.263046, 48.179124 ], [ 6.289821, 48.129748 ], [ 6.213742, 48.095859 ], [ 6.22071, 48.072298 ], [ 6.277091, 48.049217 ], [ 6.326421, 48.041186 ], [ 6.277334, 47.953809 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "89001", "code_dpt": "89", "nom_dpt": "YONNE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "1", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.498358, 47.560878 ], [ 3.488277, 47.493831 ], [ 3.391332, 47.506556 ], [ 3.339521, 47.479263 ], [ 3.285252, 47.503939 ], [ 3.235027, 47.489639 ], [ 3.204517, 47.523192 ], [ 3.165191, 47.517502 ], [ 3.123027, 47.539428 ], [ 3.111581, 47.583897 ], [ 3.088025, 47.586986 ], [ 3.017047, 47.557827 ], [ 2.976538, 47.569429 ], [ 2.940355, 47.598211 ], [ 2.932321, 47.627046 ], [ 2.954234, 47.645689 ], [ 2.92416, 47.682496 ], [ 2.848969, 47.71685 ], [ 2.856477, 47.761736 ], [ 2.935592, 47.763247 ], [ 2.988902, 47.786125 ], [ 3.023798, 47.786375 ], [ 3.013874, 47.831836 ], [ 3.033824, 47.843874 ], [ 3.011491, 47.875099 ], [ 3.011818, 47.904825 ], [ 3.105272, 47.946941 ], [ 3.126676, 47.991268 ], [ 3.136739, 47.968309 ], [ 3.189665, 47.959218 ], [ 3.191196, 47.934296 ], [ 3.257916, 47.907035 ], [ 3.337829, 47.94545 ], [ 3.414064, 47.923823 ], [ 3.459105, 47.926724 ], [ 3.489099, 47.897705 ], [ 3.522686, 47.894572 ], [ 3.559164, 47.852428 ], [ 3.61497, 47.872597 ], [ 3.647857, 47.838093 ], [ 3.689715, 47.822788 ], [ 3.707319, 47.791857 ], [ 3.664747, 47.767957 ], [ 3.73372, 47.706312 ], [ 3.682835, 47.707475 ], [ 3.656323, 47.677069 ], [ 3.612198, 47.661061 ], [ 3.578109, 47.629677 ], [ 3.590087, 47.607392 ], [ 3.561884, 47.584812 ], [ 3.498358, 47.560878 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "89002", "code_dpt": "89", "nom_dpt": "YONNE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "2", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.106086, 47.339256 ], [ 4.048066, 47.339533 ], [ 4.025466, 47.313608 ], [ 3.972954, 47.335001 ], [ 3.963999, 47.365856 ], [ 3.861455, 47.393372 ], [ 3.893397, 47.41029 ], [ 3.864383, 47.43433 ], [ 3.813743, 47.380374 ], [ 3.783303, 47.405169 ], [ 3.714782, 47.406835 ], [ 3.679358, 47.447242 ], [ 3.583276, 47.4615 ], [ 3.579954, 47.497975 ], [ 3.514192, 47.527224 ], [ 3.498358, 47.560878 ], [ 3.561884, 47.584812 ], [ 3.590087, 47.607392 ], [ 3.578109, 47.629677 ], [ 3.612198, 47.661061 ], [ 3.656323, 47.677069 ], [ 3.682835, 47.707475 ], [ 3.73372, 47.706312 ], [ 3.664747, 47.767957 ], [ 3.707319, 47.791857 ], [ 3.689715, 47.822788 ], [ 3.647857, 47.838093 ], [ 3.61497, 47.872597 ], [ 3.559164, 47.852428 ], [ 3.522686, 47.894572 ], [ 3.489099, 47.897705 ], [ 3.459105, 47.926724 ], [ 3.460993, 47.986825 ], [ 3.4428, 48.012263 ], [ 3.454366, 48.075419 ], [ 3.523607, 48.087019 ], [ 3.563294, 48.066688 ], [ 3.603701, 48.080409 ], [ 3.620771, 48.110323 ], [ 3.65829, 48.121376 ], [ 3.710506, 48.112552 ], [ 3.739803, 48.138693 ], [ 3.80166, 48.10673 ], [ 3.82198, 48.04392 ], [ 3.870242, 48.016313 ], [ 3.850027, 47.983657 ], [ 3.914166, 47.97559 ], [ 3.902393, 47.938295 ], [ 4.054894, 47.930076 ], [ 4.089798, 47.943969 ], [ 4.113698, 47.928157 ], [ 4.167337, 47.96001 ], [ 4.2239, 47.948499 ], [ 4.24621, 47.930408 ], [ 4.293424, 47.925676 ], [ 4.26444, 47.871501 ], [ 4.262689, 47.844012 ], [ 4.324863, 47.847197 ], [ 4.319977, 47.811427 ], [ 4.331033, 47.756087 ], [ 4.265892, 47.703951 ], [ 4.247805, 47.658776 ], [ 4.212578, 47.627847 ], [ 4.172575, 47.550818 ], [ 4.114631, 47.514756 ], [ 4.128832, 47.470462 ], [ 4.119427, 47.443553 ], [ 4.072978, 47.413652 ], [ 4.078053, 47.381753 ], [ 4.10567, 47.366017 ], [ 4.106086, 47.339256 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "89003", "code_dpt": "89", "nom_dpt": "YONNE", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "3", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.459105, 47.926724 ], [ 3.414064, 47.923823 ], [ 3.337829, 47.94545 ], [ 3.257916, 47.907035 ], [ 3.191196, 47.934296 ], [ 3.189665, 47.959218 ], [ 3.136739, 47.968309 ], [ 3.126676, 47.991268 ], [ 3.095365, 48.053976 ], [ 3.050471, 48.072334 ], [ 3.01323, 48.143477 ], [ 2.936314, 48.163392 ], [ 2.971666, 48.203411 ], [ 3.00599, 48.209425 ], [ 3.043708, 48.271842 ], [ 3.015685, 48.307317 ], [ 3.049451, 48.36003 ], [ 3.122467, 48.368632 ], [ 3.18098, 48.374558 ], [ 3.251021, 48.365101 ], [ 3.283175, 48.381385 ], [ 3.363938, 48.375325 ], [ 3.414792, 48.390273 ], [ 3.450115, 48.372852 ], [ 3.50441, 48.36549 ], [ 3.587536, 48.298482 ], [ 3.623765, 48.259291 ], [ 3.621602, 48.225615 ], [ 3.575186, 48.188741 ], [ 3.64051, 48.184617 ], [ 3.66787, 48.139212 ], [ 3.739803, 48.138693 ], [ 3.710506, 48.112552 ], [ 3.65829, 48.121376 ], [ 3.620771, 48.110323 ], [ 3.603701, 48.080409 ], [ 3.563294, 48.066688 ], [ 3.523607, 48.087019 ], [ 3.454366, 48.075419 ], [ 3.4428, 48.012263 ], [ 3.460993, 47.986825 ], [ 3.459105, 47.926724 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "90001", "code_dpt": "90", "nom_dpt": "TERRITOIRE DE BELFORT", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "1", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.939179, 47.433699 ], [ 6.907611, 47.494555 ], [ 6.925322, 47.519528 ], [ 6.883474, 47.555331 ], [ 6.884483, 47.580919 ], [ 6.839867, 47.608198 ], [ 6.853888, 47.632532 ], [ 6.846189, 47.64808 ], [ 6.927591, 47.66373 ], [ 6.926587, 47.690665 ], [ 6.967519, 47.690255 ], [ 7.027565, 47.70537 ], [ 7.045282, 47.670375 ], [ 7.019805, 47.650679 ], [ 7.009213, 47.599391 ], [ 7.085388, 47.593053 ], [ 7.106216, 47.551337 ], [ 7.142173, 47.525024 ], [ 7.130346, 47.503027 ], [ 7.0788, 47.489061 ], [ 7.024394, 47.504213 ], [ 6.982897, 47.494257 ], [ 6.998209, 47.45164 ], [ 6.939179, 47.433699 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "90002", "code_dpt": "90", "nom_dpt": "TERRITOIRE DE BELFORT", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "2", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.823539, 47.813054 ], [ 6.84618, 47.822945 ], [ 6.864959, 47.784607 ], [ 6.93845, 47.771155 ], [ 7.011685, 47.741631 ], [ 7.037418, 47.721558 ], [ 7.027565, 47.70537 ], [ 6.967519, 47.690255 ], [ 6.926587, 47.690665 ], [ 6.927591, 47.66373 ], [ 6.846189, 47.64808 ], [ 6.853888, 47.632532 ], [ 6.839867, 47.608198 ], [ 6.884483, 47.580919 ], [ 6.883474, 47.555331 ], [ 6.81666, 47.547922 ], [ 6.807005, 47.562801 ], [ 6.785643, 47.611358 ], [ 6.798335, 47.643999 ], [ 6.757638, 47.747878 ], [ 6.823539, 47.813054 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91002", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "2", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.362191, 48.601486 ], [ 2.39857, 48.607127 ], [ 2.422234, 48.573223 ], [ 2.481253, 48.580206 ], [ 2.521772, 48.573224 ], [ 2.531595, 48.573659 ], [ 2.49761, 48.517243 ], [ 2.505029, 48.429866 ], [ 2.54706, 48.401424 ], [ 2.521784, 48.404042 ], [ 2.44984, 48.373708 ], [ 2.402664, 48.320719 ], [ 2.369945, 48.308673 ], [ 2.312424, 48.330118 ], [ 2.269118, 48.315049 ], [ 2.20709, 48.344944 ], [ 2.161589, 48.298437 ], [ 2.052708, 48.295474 ], [ 1.994085, 48.286586 ], [ 1.959227, 48.30869 ], [ 1.987356, 48.363811 ], [ 1.977244, 48.399165 ], [ 2.005404, 48.401177 ], [ 2.034183, 48.464521 ], [ 2.070365, 48.464072 ], [ 2.074034, 48.509947 ], [ 2.122762, 48.480053 ], [ 2.209515, 48.471953 ], [ 2.239483, 48.443935 ], [ 2.275054, 48.462997 ], [ 2.272229, 48.503805 ], [ 2.307086, 48.499902 ], [ 2.338448, 48.521645 ], [ 2.339737, 48.593529 ], [ 2.362191, 48.601486 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91003", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "3", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.292714, 48.626155 ], [ 2.359384, 48.618077 ], [ 2.362191, 48.601486 ], [ 2.339737, 48.593529 ], [ 2.338448, 48.521645 ], [ 2.307086, 48.499902 ], [ 2.272229, 48.503805 ], [ 2.275054, 48.462997 ], [ 2.239483, 48.443935 ], [ 2.209515, 48.471953 ], [ 2.122762, 48.480053 ], [ 2.074034, 48.509947 ], [ 2.070365, 48.464072 ], [ 2.034183, 48.464521 ], [ 2.005404, 48.401177 ], [ 1.977244, 48.399165 ], [ 1.939016, 48.42216 ], [ 1.922149, 48.4576 ], [ 1.916826, 48.473692 ], [ 1.962065, 48.534995 ], [ 1.937965, 48.56178 ], [ 2.017574, 48.557597 ], [ 2.035013, 48.604852 ], [ 2.054815, 48.607962 ], [ 2.168016, 48.580578 ], [ 2.234896, 48.58897 ], [ 2.26311, 48.622036 ], [ 2.292714, 48.626155 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91004", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "4", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.054815, 48.607962 ], [ 2.011658, 48.653579 ], [ 2.045836, 48.686781 ], [ 2.097853, 48.694031 ], [ 2.19127, 48.668264 ], [ 2.209711, 48.701588 ], [ 2.293929, 48.712128 ], [ 2.32817, 48.687545 ], [ 2.341952, 48.667581 ], [ 2.298934, 48.650128 ], [ 2.292714, 48.626155 ], [ 2.26311, 48.622036 ], [ 2.234896, 48.58897 ], [ 2.168016, 48.580578 ], [ 2.054815, 48.607962 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91005", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "5", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.226559, 48.776102 ], [ 2.228842, 48.774471 ], [ 2.269289, 48.76064 ], [ 2.274517, 48.740722 ], [ 2.212902, 48.728801 ], [ 2.209711, 48.701588 ], [ 2.19127, 48.668264 ], [ 2.097853, 48.694031 ], [ 2.100446, 48.736003 ], [ 2.226559, 48.776102 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91009", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "9", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.383529, 48.629979 ], [ 2.39634, 48.673536 ], [ 2.400579, 48.701774 ], [ 2.467901, 48.670773 ], [ 2.526874, 48.704734 ], [ 2.57166, 48.692023 ], [ 2.547965, 48.64966 ], [ 2.517496, 48.629814 ], [ 2.54145, 48.596887 ], [ 2.521772, 48.573224 ], [ 2.481253, 48.580206 ], [ 2.485776, 48.615316 ], [ 2.437761, 48.648471 ], [ 2.383529, 48.629979 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92013", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "13", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.274517, 48.740722 ], [ 2.269289, 48.76064 ], [ 2.228842, 48.774471 ], [ 2.303309, 48.785398 ], [ 2.318683, 48.787987 ], [ 2.325812, 48.781911 ], [ 2.320718, 48.748756 ], [ 2.274517, 48.740722 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93004", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "4", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.410057, 48.916693 ], [ 2.374742, 48.923681 ], [ 2.375936, 48.972023 ], [ 2.382447, 48.971293 ], [ 2.407384, 48.956131 ], [ 2.456014, 48.955777 ], [ 2.45949, 48.955055 ], [ 2.479397, 48.919775 ], [ 2.474266, 48.918431 ], [ 2.452111, 48.938736 ], [ 2.410057, 48.916693 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93008", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "8", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.496392, 48.859908 ], [ 2.481534, 48.86141 ], [ 2.464761, 48.878073 ], [ 2.47664, 48.888665 ], [ 2.50764, 48.898518 ], [ 2.559406, 48.885338 ], [ 2.567967, 48.865944 ], [ 2.50913, 48.877921 ], [ 2.496392, 48.859908 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94003", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "3", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.499965, 48.763097 ], [ 2.570033, 48.751102 ], [ 2.597544, 48.760569 ], [ 2.57166, 48.692023 ], [ 2.526874, 48.704734 ], [ 2.510055, 48.734663 ], [ 2.41426, 48.717816 ], [ 2.370437, 48.727865 ], [ 2.473297, 48.762092 ], [ 2.499965, 48.763097 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94004", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "4", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.522283, 48.804066 ], [ 2.558720694900608, 48.808851539489396 ], [ 2.52616260240407, 48.823937583123389 ], [ 2.536654, 48.838514 ], [ 2.59228, 48.807437 ], [ 2.597544, 48.760569 ], [ 2.570033, 48.751102 ], [ 2.499965, 48.763097 ], [ 2.522283, 48.804066 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95001", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "1", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.08545, 49.037838 ], [ 2.075841, 49.0446 ], [ 2.072222, 49.04717 ], [ 2.094815, 49.070263 ], [ 2.026892, 49.096519 ], [ 1.983645, 49.034565 ], [ 1.954948, 49.024535 ], [ 1.908523, 49.048024 ], [ 1.859255, 49.013969 ], [ 1.865469, 49.057472 ], [ 1.823601, 49.076673 ], [ 1.723457, 49.044977 ], [ 1.693668, 49.05668 ], [ 1.670822, 49.078911 ], [ 1.608796, 49.077894 ], [ 1.655991, 49.130389 ], [ 1.676291, 49.212188 ], [ 1.704364, 49.232202 ], [ 1.742695, 49.179801 ], [ 1.776924, 49.185225 ], [ 1.882568, 49.162496 ], [ 1.974086, 49.183316 ], [ 1.999445, 49.175573 ], [ 2.080769, 49.207203 ], [ 2.095875, 49.190064 ], [ 2.153026, 49.183925 ], [ 2.168271, 49.164755 ], [ 2.220277, 49.179201 ], [ 2.241583, 49.151573 ], [ 2.286413, 49.159921 ], [ 2.321777, 49.184436 ], [ 2.359296, 49.147348 ], [ 2.31499, 49.141745 ], [ 2.303789, 49.120686 ], [ 2.235042, 49.130348 ], [ 2.18109, 49.108404 ], [ 2.206045, 49.086839 ], [ 2.166061, 49.064439 ], [ 2.135294, 49.067207 ], [ 2.08545, 49.037838 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95006", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "6", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.288461, 48.958982 ], [ 2.225736, 48.971031 ], [ 2.228754, 48.972876 ], [ 2.291858, 48.976241 ], [ 2.301383, 49.023777 ], [ 2.321031, 48.980933 ], [ 2.366156, 48.974229 ], [ 2.333313, 48.955382 ], [ 2.288461, 48.958982 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95007", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "7", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.367251, 49.068293 ], [ 2.394343, 49.068675 ], [ 2.434923, 49.034344 ], [ 2.410274, 49.023993 ], [ 2.363647, 49.009574 ], [ 2.382447, 48.971293 ], [ 2.375936, 48.972023 ], [ 2.366156, 48.974229 ], [ 2.321031, 48.980933 ], [ 2.301383, 49.023777 ], [ 2.274776, 49.036442 ], [ 2.285009, 49.049128 ], [ 2.335294, 49.051476 ], [ 2.367251, 49.068293 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95009", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "9", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.410274, 49.023993 ], [ 2.434923, 49.034344 ], [ 2.394343, 49.068675 ], [ 2.367251, 49.068293 ], [ 2.389055, 49.107527 ], [ 2.438907, 49.141496 ], [ 2.499227, 49.12227 ], [ 2.590524, 49.079655 ], [ 2.553061, 49.009817 ], [ 2.496009, 48.972723 ], [ 2.45949, 48.955055 ], [ 2.456014, 48.955777 ], [ 2.416535, 48.998503 ], [ 2.410274, 49.023993 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZB001", "code_dpt": "ZB", "nom_dpt": "MARTINIQUE", "nom_reg": "MARTINIQUE", "num_circ": "1", "code_reg": "02" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.00063, 14.559908 ], [ -61.036557, 14.605741 ], [ -61.039206, 14.641847 ], [ -60.997043, 14.657844 ], [ -60.994554, 14.67323 ], [ -61.063909, 14.705674 ], [ -61.084773, 14.724617 ], [ -61.052789, 14.74406 ], [ -61.01484, 14.735613 ], [ -60.972997, 14.763047 ], [ -60.945904, 14.754611 ], [ -60.88653, 14.765226 ], [ -60.897592, 14.736014 ], [ -60.935674, 14.7503 ], [ -60.944721, 14.72535 ], [ -60.910605, 14.691584 ], [ -60.937666, 14.678732 ], [ -60.928947, 14.653335 ], [ -60.894691, 14.660907 ], [ -60.896198, 14.622544 ], [ -60.875368, 14.618361 ], [ -60.850058, 14.585355 ], [ -60.896774, 14.562892 ], [ -60.929242, 14.580225 ], [ -60.937711, 14.600424 ], [ -60.971466, 14.604885 ], [ -61.00063, 14.559908 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZB002", "code_dpt": "ZB", "nom_dpt": "MARTINIQUE", "nom_reg": "MARTINIQUE", "num_circ": "2", "code_reg": "02" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.972997, 14.763047 ], [ -61.01484, 14.735613 ], [ -61.052789, 14.74406 ], [ -61.084773, 14.724617 ], [ -61.063909, 14.705674 ], [ -60.994554, 14.67323 ], [ -60.997043, 14.657844 ], [ -61.039206, 14.641847 ], [ -61.102576, 14.688805 ], [ -61.082686, 14.637004 ], [ -61.090783, 14.600181 ], [ -61.105749, 14.620004 ], [ -61.151444, 14.649426 ], [ -61.184044, 14.705725 ], [ -61.179348, 14.749067 ], [ -61.214084, 14.781621 ], [ -61.228956, 14.820398 ], [ -61.210065, 14.8582 ], [ -61.148911, 14.878601 ], [ -61.098797, 14.862837 ], [ -61.056666, 14.834316 ], [ -61.030086, 14.828334 ], [ -60.972997, 14.763047 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZB004", "code_dpt": "ZB", "nom_dpt": "MARTINIQUE", "nom_reg": "MARTINIQUE", "num_circ": "4", "code_reg": "02" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.00063, 14.559908 ], [ -60.971466, 14.604885 ], [ -60.937711, 14.600424 ], [ -60.929242, 14.580225 ], [ -60.896774, 14.562892 ], [ -60.850058, 14.585355 ], [ -60.825882, 14.532941 ], [ -60.814665, 14.461263 ], [ -60.855877, 14.399962 ], [ -60.892621, 14.420317 ], [ -60.899482, 14.449963 ], [ -60.933671, 14.463034 ], [ -61.021746, 14.479606 ], [ -61.05648, 14.454086 ], [ -61.081017, 14.471557 ], [ -61.095728, 14.520224 ], [ -61.052619, 14.556335 ], [ -61.029805, 14.538377 ], [ -61.00063, 14.559908 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZC001", "code_dpt": "ZC", "nom_dpt": "GUYANE", "nom_reg": "GUYANE", "num_circ": "1", "code_reg": "03" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.346293, 4.924697 ], [ -52.305107, 4.950691 ], [ -52.259872, 4.911806 ], [ -52.229977, 4.861176 ], [ -52.206217, 4.855675 ], [ -52.146579, 4.791777 ], [ -52.13416, 4.795117 ], [ -52.03665, 4.731114 ], [ -52.002409, 4.700664 ], [ -51.921626, 4.670925 ], [ -51.862721, 4.671986 ], [ -51.799656, 4.614475 ], [ -51.784918, 4.574608 ], [ -51.767425, 4.467116 ], [ -51.747594, 4.447127 ], [ -51.753582, 4.424144 ], [ -51.710035, 4.389061 ], [ -51.718348, 4.354506 ], [ -51.705909, 4.302946 ], [ -51.627079, 4.193926 ], [ -51.656158, 4.054373 ], [ -51.674422, 4.037324 ], [ -51.747427, 3.999981 ], [ -51.780888, 3.968207 ], [ -51.782457, 3.921871 ], [ -51.799698, 3.886395 ], [ -51.855349, 3.832562 ], [ -51.872432, 3.805416 ], [ -51.92449, 3.769441 ], [ -51.922543, 3.724821 ], [ -51.953739, 3.720409 ], [ -51.986307, 3.671075 ], [ -51.990003, 3.62606 ], [ -52.018571, 3.594007 ], [ -52.059011, 3.522176 ], [ -52.089116, 3.4852 ], [ -52.154943, 3.363925 ], [ -52.187387, 3.317467 ], [ -52.192574, 3.296928 ], [ -52.230507, 3.245018 ], [ -52.261129, 3.251574 ], [ -52.290902, 3.226844 ], [ -52.299845, 3.175866 ], [ -52.329101, 3.171216 ], [ -52.348893, 3.132868 ], [ -52.343997, 3.096769 ], [ -52.327649, 3.074748 ], [ -52.36248, 3.012776 ], [ -52.37142, 2.974769 ], [ -52.391022, 2.945667 ], [ -52.378569, 2.914352 ], [ -52.422006, 2.89024 ], [ -52.472088, 2.795186 ], [ -52.482156, 2.747059 ], [ -52.518001, 2.685777 ], [ -52.5289, 2.655493 ], [ -52.553814, 2.636651 ], [ -52.528014, 2.585422 ], [ -52.560405, 2.548376 ], [ -52.551291, 2.529151 ], [ -52.616725, 2.447199 ], [ -52.643862, 2.433049 ], [ -52.661317, 2.376642 ], [ -52.707516, 2.359377 ], [ -52.719543, 2.342913 ], [ -52.805549, 2.299743 ], [ -52.839597, 2.289472 ], [ -52.870783, 2.257159 ], [ -52.906085, 2.189568 ], [ -52.983893, 2.167269 ], [ -53.052563, 2.191001 ], [ -53.080404, 2.221947 ], [ -53.132786, 2.224801 ], [ -53.206962, 2.210714 ], [ -53.275099, 2.217454 ], [ -53.247409, 2.245124 ], [ -53.254674, 2.270741 ], [ -53.298658, 2.30712 ], [ -53.317198, 2.340121 ], [ -53.294108, 2.355184 ], [ -53.289327, 2.38251 ], [ -53.264969, 2.403334 ], [ -53.241537, 2.446142 ], [ -53.269123, 2.452685 ], [ -53.293164, 2.483344 ], [ -53.318485, 2.495141 ], [ -53.332227, 2.529992 ], [ -53.310316, 2.551537 ], [ -53.309151, 2.583476 ], [ -53.338818, 2.610477 ], [ -53.306473, 2.628318 ], [ -53.312765, 2.666933 ], [ -53.301089, 2.724702 ], [ -53.276736, 2.729169 ], [ -53.284248, 2.76064 ], [ -53.244733, 2.811178 ], [ -53.214533, 2.829923 ], [ -53.22058, 2.87466 ], [ -53.183491, 2.921652 ], [ -53.174124, 2.955799 ], [ -53.126142, 2.979489 ], [ -53.11605, 3.002011 ], [ -53.086544, 3.011263 ], [ -53.08541, 3.099424 ], [ -53.056501, 3.149009 ], [ -53.058688, 3.194717 ], [ -53.101061, 3.212034 ], [ -53.111618, 3.262931 ], [ -53.14463, 3.275409 ], [ -53.169595, 3.314681 ], [ -53.153876, 3.350029 ], [ -53.1553, 3.408373 ], [ -53.125412, 3.427923 ], [ -53.126308, 3.458307 ], [ -53.141311, 3.481019 ], [ -53.126412, 3.51699 ], [ -53.099537, 3.545042 ], [ -53.105409, 3.614327 ], [ -53.127654, 3.637636 ], [ -53.137532, 3.69757 ], [ -53.180606, 3.757972 ], [ -53.205485, 3.770457 ], [ -53.228039, 3.802646 ], [ -53.199235, 3.814789 ], [ -53.132493, 3.888295 ], [ -53.151201, 3.914592 ], [ -53.078066, 3.955416 ], [ -53.06041, 3.97281 ], [ -52.992661, 4.000851 ], [ -52.976628, 4.035158 ], [ -52.947628, 4.043085 ], [ -52.941133, 4.083047 ], [ -52.916165, 4.094952 ], [ -52.910265, 4.127968 ], [ -52.86166, 4.16852 ], [ -52.822855, 4.188559 ], [ -52.823315, 4.254367 ], [ -52.835829, 4.278498 ], [ -52.824684, 4.307424 ], [ -52.85365, 4.351099 ], [ -52.864261, 4.39848 ], [ -52.853589, 4.425181 ], [ -52.814271, 4.449412 ], [ -52.764712, 4.540211 ], [ -52.740171, 4.567833 ], [ -52.728148, 4.600876 ], [ -52.623269, 4.718783 ], [ -52.554741, 4.70363 ], [ -52.521855, 4.676843 ], [ -52.465212, 4.662946 ], [ -52.448084, 4.709684 ], [ -52.417452, 4.766633 ], [ -52.385038, 4.755232 ], [ -52.379766, 4.832225 ], [ -52.391261, 4.880488 ], [ -52.346293, 4.924697 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZC002", "code_dpt": "ZC", "nom_dpt": "GUYANE", "nom_reg": "GUYANE", "num_circ": "2", "code_reg": "03" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.346293, 4.924697 ], [ -52.391261, 4.880488 ], [ -52.379766, 4.832225 ], [ -52.385038, 4.755232 ], [ -52.417452, 4.766633 ], [ -52.448084, 4.709684 ], [ -52.465212, 4.662946 ], [ -52.521855, 4.676843 ], [ -52.554741, 4.70363 ], [ -52.623269, 4.718783 ], [ -52.728148, 4.600876 ], [ -52.740171, 4.567833 ], [ -52.764712, 4.540211 ], [ -52.814271, 4.449412 ], [ -52.853589, 4.425181 ], [ -52.864261, 4.39848 ], [ -52.85365, 4.351099 ], [ -52.824684, 4.307424 ], [ -52.835829, 4.278498 ], [ -52.823315, 4.254367 ], [ -52.822855, 4.188559 ], [ -52.86166, 4.16852 ], [ -52.910265, 4.127968 ], [ -52.916165, 4.094952 ], [ -52.941133, 4.083047 ], [ -52.947628, 4.043085 ], [ -52.976628, 4.035158 ], [ -52.992661, 4.000851 ], [ -53.06041, 3.97281 ], [ -53.078066, 3.955416 ], [ -53.151201, 3.914592 ], [ -53.132493, 3.888295 ], [ -53.199235, 3.814789 ], [ -53.228039, 3.802646 ], [ -53.205485, 3.770457 ], [ -53.180606, 3.757972 ], [ -53.137532, 3.69757 ], [ -53.127654, 3.637636 ], [ -53.105409, 3.614327 ], [ -53.099537, 3.545042 ], [ -53.126412, 3.51699 ], [ -53.141311, 3.481019 ], [ -53.126308, 3.458307 ], [ -53.125412, 3.427923 ], [ -53.1553, 3.408373 ], [ -53.153876, 3.350029 ], [ -53.169595, 3.314681 ], [ -53.14463, 3.275409 ], [ -53.111618, 3.262931 ], [ -53.101061, 3.212034 ], [ -53.058688, 3.194717 ], [ -53.056501, 3.149009 ], [ -53.08541, 3.099424 ], [ -53.086544, 3.011263 ], [ -53.11605, 3.002011 ], [ -53.126142, 2.979489 ], [ -53.174124, 2.955799 ], [ -53.183491, 2.921652 ], [ -53.22058, 2.87466 ], [ -53.214533, 2.829923 ], [ -53.244733, 2.811178 ], [ -53.284248, 2.76064 ], [ -53.276736, 2.729169 ], [ -53.301089, 2.724702 ], [ -53.312765, 2.666933 ], [ -53.306473, 2.628318 ], [ -53.338818, 2.610477 ], [ -53.309151, 2.583476 ], [ -53.310316, 2.551537 ], [ -53.332227, 2.529992 ], [ -53.318485, 2.495141 ], [ -53.293164, 2.483344 ], [ -53.269123, 2.452685 ], [ -53.241537, 2.446142 ], [ -53.264969, 2.403334 ], [ -53.289327, 2.38251 ], [ -53.294108, 2.355184 ], [ -53.317198, 2.340121 ], [ -53.359483, 2.342066 ], [ -53.371802, 2.314366 ], [ -53.429185, 2.286356 ], [ -53.462009, 2.254221 ], [ -53.485283, 2.260445 ], [ -53.546996, 2.252673 ], [ -53.604041, 2.279197 ], [ -53.652377, 2.279244 ], [ -53.667709, 2.30123 ], [ -53.727524, 2.310678 ], [ -53.724201, 2.348458 ], [ -53.764923, 2.374701 ], [ -53.807469, 2.352061 ], [ -53.814667, 2.312576 ], [ -53.840843, 2.302927 ], [ -53.881668, 2.306866 ], [ -53.888002, 2.276005 ], [ -53.907726, 2.262222 ], [ -53.932747, 2.278787 ], [ -53.942849, 2.218908 ], [ -53.990412, 2.209136 ], [ -54.018012, 2.183078 ], [ -54.064599, 2.194231 ], [ -54.08729, 2.13998 ], [ -54.106525, 2.113156 ], [ -54.168596, 2.129479 ], [ -54.185781, 2.176651 ], [ -54.227426, 2.151026 ], [ -54.27061, 2.145676 ], [ -54.335889, 2.153826 ], [ -54.36273, 2.181249 ], [ -54.365037, 2.209124 ], [ -54.416953, 2.196768 ], [ -54.473044, 2.21366 ], [ -54.517464, 2.278653 ], [ -54.534353, 2.316627 ], [ -54.558359, 2.328251 ], [ -54.585732, 2.322691 ], [ -54.59124, 2.349566 ], [ -54.557734, 2.351188 ], [ -54.507644, 2.337481 ], [ -54.503644, 2.392711 ], [ -54.474873, 2.432808 ], [ -54.41726, 2.440659 ], [ -54.370399, 2.508279 ], [ -54.350836, 2.524081 ], [ -54.330254, 2.572798 ], [ -54.315432, 2.629946 ], [ -54.279151, 2.668556 ], [ -54.263347, 2.723903 ], [ -54.226504, 2.751535 ], [ -54.200529, 2.80312 ], [ -54.181281, 2.860073 ], [ -54.193531, 2.884653 ], [ -54.1765, 2.933851 ], [ -54.183062, 2.997741 ], [ -54.171304, 3.020467 ], [ -54.192674, 3.061224 ], [ -54.175481, 3.075476 ], [ -54.187633, 3.133359 ], [ -54.213033, 3.152837 ], [ -54.187585, 3.205678 ], [ -54.174261, 3.209649 ], [ -54.136487, 3.264662 ], [ -54.100195, 3.297152 ], [ -54.070875, 3.297388 ], [ -54.058913, 3.382084 ], [ -54.020892, 3.412677 ], [ -54.00824, 3.469011 ], [ -54.008447, 3.536832 ], [ -53.98179, 3.604354 ], [ -54.003558, 3.644739 ], [ -54.047091, 3.634302 ], [ -54.053433, 3.656577 ], [ -54.080862, 3.673087 ], [ -54.079286, 3.706346 ], [ -54.121021, 3.790464 ], [ -54.200575, 3.811354 ], [ -54.200952, 3.85238 ], [ -54.23787, 3.862573 ], [ -54.251115, 3.908976 ], [ -54.290526, 3.937561 ], [ -54.318766, 4.014481 ], [ -54.354979, 4.046403 ], [ -54.344556, 4.111933 ], [ -54.327992, 4.151516 ], [ -54.387075, 4.1802 ], [ -54.39574, 4.203724 ], [ -54.38292, 4.263358 ], [ -54.393749, 4.307716 ], [ -54.387013, 4.346607 ], [ -54.398676, 4.367352 ], [ -54.439915, 4.372664 ], [ -54.432735, 4.466371 ], [ -54.449091, 4.525191 ], [ -54.427095, 4.553002 ], [ -54.415264, 4.604814 ], [ -54.433901, 4.630642 ], [ -54.424822, 4.664524 ], [ -54.427866, 4.714854 ], [ -54.458273, 4.726028 ], [ -54.467202, 4.812077 ], [ -54.467186, 4.872463 ], [ -54.474453, 4.907832 ], [ -54.443356, 4.941027 ], [ -54.437528, 5.016823 ], [ -54.408205, 5.09046 ], [ -54.376769, 5.106927 ], [ -54.350673, 5.144444 ], [ -54.307644, 5.2258 ], [ -54.262915, 5.276416 ], [ -54.21016, 5.302903 ], [ -54.145257, 5.365944 ], [ -54.118429, 5.416099 ], [ -54.092812, 5.44072 ], [ -54.037767, 5.509739 ], [ -54.017473, 5.52399 ], [ -54.003886, 5.572139 ], [ -54.011385, 5.664528 ], [ -53.968395, 5.745193 ], [ -53.936887, 5.746765 ], [ -53.89603, 5.73344 ], [ -53.838635, 5.732228 ], [ -53.786744, 5.718522 ], [ -53.722931, 5.686388 ], [ -53.597043, 5.610559 ], [ -53.579569, 5.608241 ], [ -53.469387, 5.565261 ], [ -53.402426, 5.563387 ], [ -53.313224, 5.538615 ], [ -53.277617, 5.562273 ], [ -53.262068, 5.549289 ], [ -53.133155, 5.508039 ], [ -53.073167, 5.469069 ], [ -53.017019, 5.456621 ], [ -52.950712, 5.452834 ], [ -52.855276, 5.37676 ], [ -52.831675, 5.334027 ], [ -52.787389, 5.305484 ], [ -52.771715, 5.281848 ], [ -52.724391, 5.238351 ], [ -52.668013, 5.200371 ], [ -52.629715, 5.147705 ], [ -52.575517, 5.107229 ], [ -52.558685, 5.106248 ], [ -52.457066, 5.009701 ], [ -52.416826, 4.979981 ], [ -52.388759, 4.943566 ], [ -52.346293, 4.924697 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "2A001", "code_dpt": "2A", "nom_dpt": "CORSE-DU-SUD", "nom_reg": "CORSE", "num_circ": "1", "code_reg": "94" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.133566, 42.059397 ], [ 9.069864, 42.036623 ], [ 9.021146, 42.034814 ], [ 8.939142, 41.977112 ], [ 8.872033, 41.953873 ], [ 8.863693, 41.926257 ], [ 8.769105, 41.942489 ], [ 8.74089, 41.928657 ], [ 8.715134, 41.908239 ], [ 8.645784, 41.90954 ], [ 8.593911, 41.963567 ], [ 8.648732, 41.968936 ], [ 8.658291, 42.010588 ], [ 8.747518, 42.047807 ], [ 8.720526, 42.064162 ], [ 8.701201, 42.111186 ], [ 8.650968, 42.116987 ], [ 8.5923, 42.142668 ], [ 8.5879, 42.171701 ], [ 8.558578, 42.235548 ], [ 8.606866, 42.250242 ], [ 8.688917, 42.263453 ], [ 8.672397, 42.29427 ], [ 8.600581, 42.318688 ], [ 8.573411, 42.381406 ], [ 8.637098, 42.37284 ], [ 8.68348, 42.348031 ], [ 8.756264, 42.338445 ], [ 8.860727, 42.299126 ], [ 8.904768, 42.253868 ], [ 8.972326, 42.232332 ], [ 9.023252, 42.203576 ], [ 9.065062, 42.165879 ], [ 9.092107, 42.116722 ], [ 9.123633, 42.105404 ], [ 9.133566, 42.059397 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "2A002", "code_dpt": "2A", "nom_dpt": "CORSE-DU-SUD", "nom_reg": "CORSE", "num_circ": "2", "code_reg": "94" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.133566, 42.059397 ], [ 9.160212, 42.026801 ], [ 9.221085, 42.027606 ], [ 9.226045, 41.972212 ], [ 9.21328, 41.91746 ], [ 9.246355, 41.909307 ], [ 9.227497, 41.855589 ], [ 9.309095, 41.832145 ], [ 9.377329, 41.866077 ], [ 9.402269, 41.858707 ], [ 9.395405, 41.797264 ], [ 9.407124, 41.764362 ], [ 9.399548, 41.694536 ], [ 9.373409, 41.677013 ], [ 9.383432, 41.649762 ], [ 9.350589, 41.618579 ], [ 9.347986, 41.563808 ], [ 9.274604, 41.526038 ], [ 9.287259, 41.483791 ], [ 9.225862, 41.442532 ], [ 9.219627, 41.368038 ], [ 9.091646, 41.400096 ], [ 9.117095, 41.441053 ], [ 9.080831, 41.441949 ], [ 8.962775, 41.490453 ], [ 8.921134, 41.48959 ], [ 8.913462, 41.508113 ], [ 8.821237, 41.546461 ], [ 8.779149, 41.590467 ], [ 8.792686, 41.629142 ], [ 8.8761, 41.650742 ], [ 8.912302, 41.690968 ], [ 8.84219, 41.697616 ], [ 8.812779, 41.713537 ], [ 8.786209, 41.703394 ], [ 8.768761, 41.740681 ], [ 8.709893, 41.722288 ], [ 8.702504, 41.739627 ], [ 8.749686, 41.810394 ], [ 8.771294, 41.81124 ], [ 8.802583, 41.892612 ], [ 8.778796, 41.925273 ], [ 8.74089, 41.928657 ], [ 8.769105, 41.942489 ], [ 8.863693, 41.926257 ], [ 8.872033, 41.953873 ], [ 8.939142, 41.977112 ], [ 9.021146, 42.034814 ], [ 9.069864, 42.036623 ], [ 9.133566, 42.059397 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "2B001", "code_dpt": "2B", "nom_dpt": "HAUTE-CORSE", "nom_reg": "CORSE", "num_circ": "1", "code_reg": "94" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.53435, 42.523304 ], [ 9.472593, 42.534236 ], [ 9.438925, 42.516623 ], [ 9.37547, 42.53313 ], [ 9.366742, 42.555379 ], [ 9.321311, 42.544447 ], [ 9.242353, 42.556613 ], [ 9.221634, 42.518391 ], [ 9.175544, 42.509973 ], [ 9.131688, 42.549538 ], [ 9.134835, 42.607581 ], [ 9.101294, 42.636151 ], [ 9.083491, 42.677998 ], [ 9.062212, 42.693924 ], [ 9.107836, 42.724304 ], [ 9.163616, 42.736217 ], [ 9.22176, 42.734193 ], [ 9.255888, 42.715939 ], [ 9.28695, 42.675864 ], [ 9.321143, 42.696025 ], [ 9.342998, 42.732921 ], [ 9.342509, 42.794218 ], [ 9.310034, 42.832483 ], [ 9.335889, 42.864506 ], [ 9.326389, 42.90118 ], [ 9.359476, 42.922887 ], [ 9.343577, 42.997739 ], [ 9.421454, 43.010731 ], [ 9.460567, 42.985852 ], [ 9.451916, 42.963065 ], [ 9.469239, 42.936468 ], [ 9.474468, 42.875617 ], [ 9.491458, 42.797526 ], [ 9.469851, 42.766473 ], [ 9.446972, 42.685834 ], [ 9.462848, 42.639246 ], [ 9.527541, 42.564963 ], [ 9.53435, 42.523304 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "2B002", "code_dpt": "2B", "nom_dpt": "HAUTE-CORSE", "nom_reg": "CORSE", "num_circ": "2", "code_reg": "94" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.062212, 42.693924 ], [ 9.083491, 42.677998 ], [ 9.101294, 42.636151 ], [ 9.134835, 42.607581 ], [ 9.131688, 42.549538 ], [ 9.175544, 42.509973 ], [ 9.221634, 42.518391 ], [ 9.242353, 42.556613 ], [ 9.321311, 42.544447 ], [ 9.366742, 42.555379 ], [ 9.37547, 42.53313 ], [ 9.438925, 42.516623 ], [ 9.472593, 42.534236 ], [ 9.53435, 42.523304 ], [ 9.529585, 42.49558 ], [ 9.543386, 42.427949 ], [ 9.532625, 42.379023 ], [ 9.559823, 42.282713 ], [ 9.558745, 42.195757 ], [ 9.549284, 42.103865 ], [ 9.413558, 41.955192 ], [ 9.416116, 41.928609 ], [ 9.397158, 41.874474 ], [ 9.402269, 41.858707 ], [ 9.377329, 41.866077 ], [ 9.309095, 41.832145 ], [ 9.227497, 41.855589 ], [ 9.246355, 41.909307 ], [ 9.21328, 41.91746 ], [ 9.226045, 41.972212 ], [ 9.221085, 42.027606 ], [ 9.160212, 42.026801 ], [ 9.133566, 42.059397 ], [ 9.123633, 42.105404 ], [ 9.092107, 42.116722 ], [ 9.065062, 42.165879 ], [ 9.023252, 42.203576 ], [ 8.972326, 42.232332 ], [ 8.904768, 42.253868 ], [ 8.860727, 42.299126 ], [ 8.756264, 42.338445 ], [ 8.68348, 42.348031 ], [ 8.637098, 42.37284 ], [ 8.573411, 42.381406 ], [ 8.609801, 42.387368 ], [ 8.606947, 42.416786 ], [ 8.647034, 42.412665 ], [ 8.647504, 42.474758 ], [ 8.711093, 42.537485 ], [ 8.726399, 42.562776 ], [ 8.767002, 42.555747 ], [ 8.803186, 42.569919 ], [ 8.805765, 42.601915 ], [ 8.867395, 42.608406 ], [ 8.882579, 42.627385 ], [ 9.017582, 42.642562 ], [ 9.05885, 42.662139 ], [ 9.062212, 42.693924 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "29002", "code_dpt": "29", "nom_dpt": "FINISTERE", "nom_reg": "BRETAGNE", "num_circ": "2", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.43098, 48.458729 ], [ -4.457421, 48.413049 ], [ -4.433647, 48.396355 ], [ -4.495173, 48.378638 ], [ -4.568412, 48.392837 ], [ -4.599093, 48.428297 ], [ -4.544824, 48.43516 ], [ -4.478347, 48.467611 ], [ -4.43098, 48.458729 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "35008", "code_dpt": "35", "nom_dpt": "ILLE-ET-VILAINE", "nom_reg": "BRETAGNE", "num_circ": "8", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.875674, 48.071133 ], [ -1.917028, 48.113221 ], [ -1.891782, 48.133394 ], [ -1.880474, 48.170457 ], [ -1.825148, 48.173969 ], [ -1.821943, 48.138464 ], [ -1.790828, 48.120478 ], [ -1.697957, 48.139724 ], [ -1.690432, 48.133361 ], [ -1.661669, 48.106739 ], [ -1.686553, 48.099839 ], [ -1.7123, 48.065456 ], [ -1.752305, 48.067624 ], [ -1.77627, 48.031125 ], [ -1.821306, 48.047138 ], [ -1.824619, 48.066205 ], [ -1.875674, 48.071133 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59011", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "11", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.870173, 50.702914 ], [ 2.909936, 50.694362 ], [ 2.937172, 50.730056 ], [ 2.981874, 50.693774 ], [ 2.952254, 50.674195 ], [ 3.041009, 50.636206 ], [ 2.996389, 50.618098 ], [ 2.936404, 50.599899 ], [ 2.879738, 50.603133 ], [ 2.861987, 50.627507 ], [ 2.809188, 50.669373 ], [ 2.870173, 50.702914 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59018", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "18", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.710359, 50.066491 ], [ 3.663964, 50.05371 ], [ 3.614124, 50.025057 ], [ 3.594225, 50.043918 ], [ 3.541758, 50.051975 ], [ 3.490106, 50.01896 ], [ 3.353107, 50.035715 ], [ 3.337102, 50.017401 ], [ 3.280355, 50.015209 ], [ 3.22935, 50.030189 ], [ 3.172707, 50.011995 ], [ 3.123578, 50.024485 ], [ 3.090254, 50.053741 ], [ 3.114055, 50.092385 ], [ 3.095967, 50.124516 ], [ 3.135333, 50.140743 ], [ 3.100959, 50.161969 ], [ 3.115648, 50.166644 ], [ 3.149091, 50.262483 ], [ 3.231809, 50.263783 ], [ 3.278009, 50.251574 ], [ 3.346968, 50.249846 ], [ 3.369372, 50.224656 ], [ 3.343325, 50.185589 ], [ 3.288363, 50.139338 ], [ 3.296417, 50.118682 ], [ 3.385179, 50.116702 ], [ 3.408528, 50.138791 ], [ 3.48122, 50.133292 ], [ 3.513534, 50.153754 ], [ 3.568197, 50.126014 ], [ 3.612021, 50.130734 ], [ 3.667458, 50.109448 ], [ 3.710359, 50.066491 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06009", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "9", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.89447, 43.611025 ], [ 6.893565, 43.646303 ], [ 6.967093, 43.65648 ], [ 7.00293, 43.617522 ], [ 7.054373, 43.601099 ], [ 7.017278, 43.564973 ], [ 6.963183, 43.57371 ], [ 6.906637, 43.564149 ], [ 6.911991, 43.598332 ], [ 6.89447, 43.611025 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13002", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "2", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.371008, 43.293591 ], [ 5.388737, 43.283148 ], [ 5.399838, 43.274623 ], [ 5.381535, 43.209584 ], [ 5.340529, 43.214414 ], [ 5.374115599301611, 43.258308533982884 ], [ 5.348542263275354, 43.282882808224969 ], [ 5.357035607545126, 43.293649068717691 ], [ 5.371008, 43.293591 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "25001", "code_dpt": "25", "nom_dpt": "DOUBS", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "1", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0371, 47.099663 ], [ 5.969134, 47.050273 ], [ 5.945111, 46.988848 ], [ 5.840657, 47.008513 ], [ 5.750931, 47.040668 ], [ 5.784717, 47.054912 ], [ 5.768989, 47.090037 ], [ 5.816597, 47.134795 ], [ 5.811467, 47.169054 ], [ 5.720454, 47.220044 ], [ 5.698726, 47.265006 ], [ 5.735196, 47.26344 ], [ 5.795302, 47.289697 ], [ 5.845068, 47.300892 ], [ 5.904306, 47.333025 ], [ 5.926441, 47.327073 ], [ 5.985304, 47.307674 ], [ 6.02542, 47.2415 ], [ 5.989135, 47.200927 ], [ 6.07246, 47.137606 ], [ 6.0371, 47.099663 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "25002", "code_dpt": "25", "nom_dpt": "DOUBS", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "2", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.926441, 47.327073 ], [ 5.926704, 47.344759 ], [ 6.023555, 47.33235 ], [ 6.079538, 47.354654 ], [ 6.119817, 47.395498 ], [ 6.172705, 47.397778 ], [ 6.177622, 47.416041 ], [ 6.250552, 47.424665 ], [ 6.276011, 47.417229 ], [ 6.292081, 47.371789 ], [ 6.284947, 47.315742 ], [ 6.320457, 47.243188 ], [ 6.310915, 47.199336 ], [ 6.274378, 47.202448 ], [ 6.214326, 47.1648 ], [ 6.254203, 47.145214 ], [ 6.259223, 47.113373 ], [ 6.300248, 47.03302 ], [ 6.260069, 47.013049 ], [ 6.184587, 47.010724 ], [ 6.157504, 47.026281 ], [ 6.087202, 47.096029 ], [ 6.0371, 47.099663 ], [ 6.07246, 47.137606 ], [ 5.989135, 47.200927 ], [ 6.02542, 47.2415 ], [ 5.985304, 47.307674 ], [ 5.926441, 47.327073 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "28001", "code_dpt": "28", "nom_dpt": "EURE-ET-LOIR", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "1", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.582928, 48.767556 ], [ 1.62496, 48.749031 ], [ 1.582495, 48.704303 ], [ 1.611295, 48.688458 ], [ 1.602707, 48.663097 ], [ 1.640838, 48.644889 ], [ 1.666354, 48.613708 ], [ 1.715143, 48.613147 ], [ 1.709253, 48.578024 ], [ 1.761452, 48.571688 ], [ 1.787245, 48.553745 ], [ 1.776301, 48.526813 ], [ 1.78664, 48.491471 ], [ 1.756174, 48.505075 ], [ 1.700741, 48.496987 ], [ 1.634991, 48.509961 ], [ 1.605568, 48.448275 ], [ 1.645147, 48.423972 ], [ 1.620269, 48.394766 ], [ 1.688169, 48.370126 ], [ 1.670091, 48.344262 ], [ 1.547956, 48.347318 ], [ 1.556958, 48.327703 ], [ 1.490152, 48.318609 ], [ 1.460358, 48.296115 ], [ 1.459691, 48.32214 ], [ 1.399256, 48.364731 ], [ 1.419829, 48.380251 ], [ 1.385303, 48.405755 ], [ 1.478044, 48.435947 ], [ 1.495042, 48.47372 ], [ 1.395649, 48.506458 ], [ 1.355029, 48.544844 ], [ 1.368553, 48.573121 ], [ 1.474202, 48.564968 ], [ 1.472442, 48.604442 ], [ 1.420657, 48.606816 ], [ 1.410277, 48.635918 ], [ 1.379818, 48.651648 ], [ 1.434259, 48.690016 ], [ 1.526711, 48.704482 ], [ 1.507855, 48.725576 ], [ 1.582928, 48.767556 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "31009", "code_dpt": "31", "nom_dpt": "HAUTE-GARONNE", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "9", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.420683, 43.446384 ], [ 1.41491, 43.413402 ], [ 1.388098, 43.389269 ], [ 1.328792, 43.420557 ], [ 1.372283, 43.459436 ], [ 1.32958, 43.489535 ], [ 1.340192, 43.516677 ], [ 1.377007, 43.524055 ], [ 1.367925, 43.549891 ], [ 1.38557, 43.538384 ], [ 1.428759, 43.584983 ], [ 1.461029, 43.587709 ], [ 1.494451, 43.553528 ], [ 1.468787, 43.531329 ], [ 1.42888, 43.546057 ], [ 1.412793, 43.491082 ], [ 1.420683, 43.446384 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34001", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "1", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.856214, 43.616154 ], [ 3.878484, 43.603512 ], [ 3.93241, 43.587956 ], [ 3.966998, 43.56667 ], [ 3.969386, 43.540231 ], [ 3.907956, 43.517197 ], [ 3.826219, 43.466493 ], [ 3.85795, 43.494399 ], [ 3.810205, 43.531926 ], [ 3.822391, 43.551261 ], [ 3.785145, 43.577765 ], [ 3.816664, 43.614591 ], [ 3.856214, 43.616154 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34002", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "2", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.856214, 43.616154 ], [ 3.866398, 43.617694 ], [ 3.896247, 43.627324 ], [ 3.878484, 43.603512 ], [ 3.856214, 43.616154 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34003", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "3", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.974348, 43.801474 ], [ 4.001341, 43.813055 ], [ 4.083862, 43.767709 ], [ 4.153883, 43.715009 ], [ 4.125727, 43.700311 ], [ 4.070068, 43.702771 ], [ 4.047065, 43.651593 ], [ 3.949827, 43.644009 ], [ 3.920182, 43.618988 ], [ 3.896247, 43.627324 ], [ 3.866398, 43.617694 ], [ 3.84151, 43.647925 ], [ 3.84282, 43.670429 ], [ 3.883273, 43.687467 ], [ 3.875059, 43.737495 ], [ 3.985214, 43.767196 ], [ 3.974348, 43.801474 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34008", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "8", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.84151, 43.647925 ], [ 3.866398, 43.617694 ], [ 3.856214, 43.616154 ], [ 3.816664, 43.614591 ], [ 3.785145, 43.577765 ], [ 3.822391, 43.551261 ], [ 3.810205, 43.531926 ], [ 3.85795, 43.494399 ], [ 3.826219, 43.466493 ], [ 3.794526, 43.440035 ], [ 3.724916, 43.415799 ], [ 3.672383, 43.43002 ], [ 3.666254, 43.457274 ], [ 3.69845, 43.479402 ], [ 3.728121, 43.471029 ], [ 3.753493, 43.493528 ], [ 3.677916, 43.5413 ], [ 3.656849, 43.56916 ], [ 3.669961, 43.596281 ], [ 3.729992, 43.618479 ], [ 3.742179, 43.644266 ], [ 3.784197, 43.665091 ], [ 3.82797, 43.666242 ], [ 3.84151, 43.647925 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "34009", "code_dpt": "34", "nom_dpt": "HERAULT", "nom_reg": "LANGUEDOC-ROUSSILLON-MIDI-PYRENEES", "num_circ": "9", "code_reg": "76" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.153883, 43.715009 ], [ 4.193818, 43.651746 ], [ 4.150216, 43.585562 ], [ 4.099889, 43.585274 ], [ 4.101042, 43.554371 ], [ 4.037657, 43.556336 ], [ 3.969386, 43.540231 ], [ 3.966998, 43.56667 ], [ 3.93241, 43.587956 ], [ 3.878484, 43.603512 ], [ 3.896247, 43.627324 ], [ 3.920182, 43.618988 ], [ 3.949827, 43.644009 ], [ 4.047065, 43.651593 ], [ 4.070068, 43.702771 ], [ 4.125727, 43.700311 ], [ 4.153883, 43.715009 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "35001", "code_dpt": "35", "nom_dpt": "ILLE-ET-VILAINE", "nom_reg": "BRETAGNE", "num_circ": "1", "code_reg": "53" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.661669, 48.106739 ], [ -1.568382, 48.09244 ], [ -1.600765, 48.024736 ], [ -1.601388, 47.981217 ], [ -1.619515, 47.975385 ], [ -1.691423, 47.962655 ], [ -1.690751, 47.992359 ], [ -1.726649, 48.011746 ], [ -1.783827, 48.003212 ], [ -1.77627, 48.031125 ], [ -1.752305, 48.067624 ], [ -1.7123, 48.065456 ], [ -1.686553, 48.099839 ], [ -1.661669, 48.106739 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44005", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "5", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.548568, 47.235356 ], [ -1.539335, 47.256382 ], [ -1.593458, 47.27361 ], [ -1.615373, 47.297033 ], [ -1.655265, 47.307333 ], [ -1.684053, 47.356414 ], [ -1.667139, 47.370811 ], [ -1.693232, 47.42623 ], [ -1.659426, 47.452469 ], [ -1.583303, 47.451067 ], [ -1.507628, 47.502687 ], [ -1.400212, 47.477424 ], [ -1.367181, 47.454317 ], [ -1.343146, 47.466234 ], [ -1.299499, 47.417596 ], [ -1.231734, 47.392064 ], [ -1.22597, 47.370494 ], [ -1.287754, 47.371276 ], [ -1.328, 47.355601 ], [ -1.306548, 47.334482 ], [ -1.354204, 47.304159 ], [ -1.402359, 47.281693 ], [ -1.478817, 47.228079 ], [ -1.495997, 47.252418 ], [ -1.548568, 47.235356 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "49001", "code_dpt": "49", "nom_dpt": "MAINE-ET-LOIRE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "1", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.653787, 47.733381 ], [ -0.610818, 47.735689 ], [ -0.584648, 47.758405 ], [ -0.532922, 47.75069 ], [ -0.507134, 47.78507 ], [ -0.453929, 47.757237 ], [ -0.410032, 47.765218 ], [ -0.44293, 47.731994 ], [ -0.439302, 47.68555 ], [ -0.481165, 47.664426 ], [ -0.478147, 47.635343 ], [ -0.441854, 47.634788 ], [ -0.42261, 47.662048 ], [ -0.381799, 47.658426 ], [ -0.398581, 47.606234 ], [ -0.359617, 47.590182 ], [ -0.401535, 47.558109 ], [ -0.411257, 47.515893 ], [ -0.418558, 47.487586 ], [ -0.483379, 47.457669 ], [ -0.544642, 47.451635 ], [ -0.57119, 47.465467 ], [ -0.564187, 47.471097 ], [ -0.526797, 47.523995 ], [ -0.568155, 47.565851 ], [ -0.593811, 47.547474 ], [ -0.638666, 47.573511 ], [ -0.627482, 47.60665 ], [ -0.694552, 47.618152 ], [ -0.674049, 47.694317 ], [ -0.653787, 47.733381 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "49002", "code_dpt": "49", "nom_dpt": "MAINE-ET-LOIRE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "2", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.57119, 47.465467 ], [ -0.544642, 47.451635 ], [ -0.483379, 47.457669 ], [ -0.418558, 47.487586 ], [ -0.411257, 47.515893 ], [ -0.365861, 47.501023 ], [ -0.366469, 47.461471 ], [ -0.269789, 47.417711 ], [ -0.291311, 47.400499 ], [ -0.294186, 47.367405 ], [ -0.36884, 47.375869 ], [ -0.438914, 47.359065 ], [ -0.491634, 47.366106 ], [ -0.506497, 47.338445 ], [ -0.568379, 47.322718 ], [ -0.630845, 47.333343 ], [ -0.710244, 47.266177 ], [ -0.669252, 47.251043 ], [ -0.677459, 47.204252 ], [ -0.64568, 47.190206 ], [ -0.688906, 47.129767 ], [ -0.755475, 47.126651 ], [ -0.802498, 47.156886 ], [ -0.825071, 47.156944 ], [ -0.812706, 47.161832 ], [ -0.802312, 47.239723 ], [ -0.859599, 47.257902 ], [ -0.851481, 47.307717 ], [ -0.799412, 47.281251 ], [ -0.777139, 47.318787 ], [ -0.824089, 47.338375 ], [ -0.809442, 47.381 ], [ -0.724718, 47.36091 ], [ -0.642962, 47.377084 ], [ -0.57119, 47.465467 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "49003", "code_dpt": "49", "nom_dpt": "MAINE-ET-LOIRE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "3", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.230002, 47.608398 ], [ 0.234568, 47.578613 ], [ 0.200087, 47.543168 ], [ 0.220109, 47.501953 ], [ 0.180874, 47.453226 ], [ 0.182143, 47.381943 ], [ 0.147298, 47.345376 ], [ 0.117462, 47.332343 ], [ 0.082382, 47.286874 ], [ 0.072451, 47.219878 ], [ -0.007865, 47.245821 ], [ -0.060692, 47.252826 ], [ -0.150674, 47.311942 ], [ -0.243475, 47.354281 ], [ -0.291311, 47.400499 ], [ -0.269789, 47.417711 ], [ -0.366469, 47.461471 ], [ -0.365861, 47.501023 ], [ -0.411257, 47.515893 ], [ -0.401535, 47.558109 ], [ -0.359617, 47.590182 ], [ -0.398581, 47.606234 ], [ -0.381799, 47.658426 ], [ -0.42261, 47.662048 ], [ -0.441854, 47.634788 ], [ -0.478147, 47.635343 ], [ -0.481165, 47.664426 ], [ -0.439302, 47.68555 ], [ -0.44293, 47.731994 ], [ -0.410032, 47.765218 ], [ -0.381704, 47.760572 ], [ -0.373778, 47.739873 ], [ -0.333663, 47.720943 ], [ -0.287627, 47.71913 ], [ -0.236766, 47.704631 ], [ -0.196697, 47.650036 ], [ -0.1141, 47.635476 ], [ -0.105482, 47.657082 ], [ -0.004508, 47.647688 ], [ 0.052261, 47.606224 ], [ 0.115651, 47.605628 ], [ 0.148488, 47.581297 ], [ 0.230002, 47.608398 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "49006", "code_dpt": "49", "nom_dpt": "MAINE-ET-LOIRE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "6", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.169555, 47.170515 ], [ -1.204918, 47.253043 ], [ -1.231267, 47.239579 ], [ -1.276402, 47.269603 ], [ -1.295174, 47.304566 ], [ -1.354204, 47.304159 ], [ -1.306548, 47.334482 ], [ -1.18296, 47.35431 ], [ -1.169933, 47.364713 ], [ -0.976234, 47.371029 ], [ -0.923456, 47.398773 ], [ -0.943182, 47.418611 ], [ -0.923359, 47.462156 ], [ -0.830108, 47.448104 ], [ -0.796369, 47.431717 ], [ -0.746435, 47.442024 ], [ -0.760483, 47.468021 ], [ -0.735023, 47.483503 ], [ -0.693647, 47.470333 ], [ -0.627713, 47.498539 ], [ -0.567156, 47.474066 ], [ -0.564187, 47.471097 ], [ -0.57119, 47.465467 ], [ -0.642962, 47.377084 ], [ -0.724718, 47.36091 ], [ -0.809442, 47.381 ], [ -0.824089, 47.338375 ], [ -0.777139, 47.318787 ], [ -0.799412, 47.281251 ], [ -0.851481, 47.307717 ], [ -0.859599, 47.257902 ], [ -0.802312, 47.239723 ], [ -0.812706, 47.161832 ], [ -0.825071, 47.156944 ], [ -0.864253, 47.101757 ], [ -0.91832, 47.117838 ], [ -0.956902, 47.144739 ], [ -1.004739, 47.151962 ], [ -1.110625, 47.146363 ], [ -1.169555, 47.170515 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59012", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "12", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.982312, 50.044432 ], [ 3.949834, 50.026885 ], [ 3.882319, 50.032366 ], [ 3.837059, 50.047809 ], [ 3.745752, 50.053572 ], [ 3.710359, 50.066491 ], [ 3.667458, 50.109448 ], [ 3.612021, 50.130734 ], [ 3.568197, 50.126014 ], [ 3.513534, 50.153754 ], [ 3.48122, 50.133292 ], [ 3.408528, 50.138791 ], [ 3.385179, 50.116702 ], [ 3.296417, 50.118682 ], [ 3.288363, 50.139338 ], [ 3.343325, 50.185589 ], [ 3.369372, 50.224656 ], [ 3.436136, 50.258757 ], [ 3.475946, 50.245742 ], [ 3.493857, 50.278931 ], [ 3.547213, 50.281435 ], [ 3.556183, 50.299388 ], [ 3.624821, 50.326103 ], [ 3.673676, 50.334932 ], [ 3.710431, 50.303175 ], [ 3.728718, 50.276347 ], [ 3.77633, 50.256328 ], [ 3.824969, 50.268098 ], [ 3.912741, 50.269024 ], [ 3.972493, 50.239131 ], [ 3.977066, 50.198181 ], [ 3.913579, 50.193613 ], [ 3.871167, 50.157927 ], [ 3.829733, 50.169053 ], [ 3.78338, 50.144436 ], [ 3.813927, 50.127685 ], [ 3.85797, 50.130583 ], [ 3.874877, 50.102307 ], [ 3.91591, 50.123653 ], [ 3.923225, 50.131053 ], [ 3.926682, 50.126532 ], [ 3.938338, 50.124273 ], [ 3.940057, 50.128877 ], [ 3.945563, 50.127128 ], [ 3.983045, 50.115491 ], [ 3.955506, 50.083868 ], [ 3.977471, 50.07263 ], [ 4.016487, 50.099626 ], [ 4.048112, 50.083301 ], [ 3.982312, 50.044432 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "68006", "code_dpt": "68", "nom_dpt": "HAUT-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "6", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.320192, 47.667785 ], [ 7.352992, 47.688995 ], [ 7.42184, 47.711471 ], [ 7.469097, 47.713225 ], [ 7.444726, 47.763059 ], [ 7.39407, 47.7736 ], [ 7.380255, 47.758478 ], [ 7.29635, 47.755235 ], [ 7.206193, 47.734419 ], [ 7.181761, 47.762019 ], [ 7.252855, 47.786658 ], [ 7.311172, 47.836362 ], [ 7.395795, 47.836192 ], [ 7.441331, 47.824541 ], [ 7.563369, 47.851168 ], [ 7.530228, 47.783444 ], [ 7.54859, 47.735411 ], [ 7.513752, 47.702818 ], [ 7.524674, 47.660194 ], [ 7.508961, 47.630473 ], [ 7.409367, 47.590068 ], [ 7.337946, 47.616871 ], [ 7.320192, 47.667785 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75004", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "4", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.255286, 48.874354 ], [ 2.284458, 48.885638 ], [ 2.293945, 48.889856 ], [ 2.300454, 48.892691 ], [ 2.3159893508653, 48.881454495077314 ], [ 2.301556, 48.863481 ], [ 2.295627, 48.862355 ], [ 2.29208, 48.859831 ], [ 2.255286, 48.874354 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75006", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "6", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.367655, 48.868705 ], [ 2.377013, 48.871919 ], [ 2.382999276823681, 48.873297556845877 ], [ 2.394394, 48.869845 ], [ 2.399884, 48.863067 ], [ 2.398295, 48.851286 ], [ 2.398758, 48.849807 ], [ 2.399074, 48.848092 ], [ 2.384596, 48.850486 ], [ 2.367655, 48.868705 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75009", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "9", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.342045, 48.838303 ], [ 2.365946043912868, 48.844894277236648 ], [ 2.372107506022245, 48.839990927254597 ], [ 2.390069, 48.825697 ], [ 2.3668, 48.817349 ], [ 2.340917, 48.831947 ], [ 2.342045, 48.838303 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75012", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "12", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.310805, 48.832969 ], [ 2.280585246787636, 48.84987585721268 ], [ 2.289784, 48.858123 ], [ 2.320629, 48.848478 ], [ 2.310805, 48.832969 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75017", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "17", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.3724, 48.876192 ], [ 2.368736, 48.884061 ], [ 2.35844, 48.884439 ], [ 2.349502, 48.883739 ], [ 2.351873, 48.901527 ], [ 2.365854, 48.90161 ], [ 2.370286, 48.901652 ], [ 2.382088, 48.885898 ], [ 2.373374, 48.881345 ], [ 2.3724, 48.876192 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76007", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "7", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.128783, 49.609964 ], [ 0.164288, 49.614287 ], [ 0.262317, 49.589993 ], [ 0.275379, 49.560721 ], [ 0.248131, 49.527212 ], [ 0.19761, 49.519337 ], [ 0.166473, 49.535664 ], [ 0.127442, 49.526921 ], [ 0.113329, 49.520046 ], [ 0.091585, 49.487724 ], [ 0.069789, 49.506323 ], [ 0.078026, 49.539986 ], [ 0.128783, 49.609964 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76008", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "8", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.248131, 49.527212 ], [ 0.253145, 49.494933 ], [ 0.237788, 49.452092 ], [ 0.114072, 49.470539 ], [ 0.091585, 49.487724 ], [ 0.113329, 49.520046 ], [ 0.127442, 49.526921 ], [ 0.166473, 49.535664 ], [ 0.19761, 49.519337 ], [ 0.248131, 49.527212 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "83002", "code_dpt": "83", "nom_dpt": "VAR", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "2", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.800896, 43.158976 ], [ 5.854953, 43.199024 ], [ 5.994739, 43.261531 ], [ 6.018136, 43.231047 ], [ 6.093894, 43.198125 ], [ 6.084161, 43.16588 ], [ 6.025595, 43.154713 ], [ 5.984096, 43.12343 ], [ 5.967166, 43.152324 ], [ 5.92048, 43.150942 ], [ 5.887337, 43.116148 ], [ 5.885618, 43.117148 ], [ 5.823022, 43.120399 ], [ 5.800896, 43.158976 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "86001", "code_dpt": "86", "nom_dpt": "VIENNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.409251, 46.754237 ], [ 0.401038, 46.724303 ], [ 0.43555, 46.717819 ], [ 0.479047, 46.737079 ], [ 0.509781, 46.697211 ], [ 0.506291, 46.655173 ], [ 0.566587, 46.665189 ], [ 0.586582, 46.638658 ], [ 0.640027, 46.637348 ], [ 0.648185, 46.61867 ], [ 0.610863, 46.580477 ], [ 0.600368, 46.506477 ], [ 0.566496, 46.486942 ], [ 0.449866, 46.522904 ], [ 0.398346, 46.553321 ], [ 0.369949, 46.570986 ], [ 0.312911, 46.598034 ], [ 0.307397, 46.603797 ], [ 0.240591, 46.625326 ], [ 0.212471, 46.65117 ], [ 0.155787, 46.655985 ], [ 0.131961, 46.708002 ], [ 0.080478, 46.69399 ], [ 0.053712, 46.672753 ], [ -0.001469, 46.678764 ], [ -0.031657, 46.669347 ], [ -0.000478, 46.715824 ], [ 0.033065, 46.738492 ], [ 0.034387, 46.760115 ], [ 0.098743, 46.770526 ], [ 0.220089, 46.812258 ], [ 0.312311, 46.78719 ], [ 0.355145, 46.757138 ], [ 0.409251, 46.754237 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "86002", "code_dpt": "86", "nom_dpt": "VIENNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "2", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.006269, 46.523976 ], [ -0.003315, 46.571731 ], [ 0.020517, 46.584644 ], [ 0.022855, 46.614531 ], [ -0.010082, 46.616598 ], [ -0.058854, 46.638365 ], [ -0.031657, 46.669347 ], [ -0.001469, 46.678764 ], [ 0.053712, 46.672753 ], [ 0.080478, 46.69399 ], [ 0.131961, 46.708002 ], [ 0.155787, 46.655985 ], [ 0.212471, 46.65117 ], [ 0.240591, 46.625326 ], [ 0.307397, 46.603797 ], [ 0.312911, 46.598034 ], [ 0.369949, 46.570986 ], [ 0.398346, 46.553321 ], [ 0.449866, 46.522904 ], [ 0.566496, 46.486942 ], [ 0.538235, 46.466652 ], [ 0.572173, 46.440568 ], [ 0.516185, 46.397724 ], [ 0.403962, 46.410046 ], [ 0.386693, 46.372722 ], [ 0.331886, 46.365155 ], [ 0.211061, 46.385401 ], [ 0.195626, 46.41619 ], [ 0.189991, 46.484412 ], [ 0.206653, 46.517419 ], [ 0.139908, 46.510633 ], [ 0.124342, 46.486581 ], [ 0.072122, 46.490481 ], [ 0.050096, 46.514415 ], [ -0.006269, 46.523976 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92001", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "1", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.237655750031484, 48.908307365663049 ], [ 2.229103, 48.906033 ], [ 2.220399, 48.920618 ], [ 2.247595, 48.936736 ], [ 2.290974, 48.950967 ], [ 2.33491, 48.941542 ], [ 2.322021, 48.918673 ], [ 2.282788, 48.931646 ], [ 2.237655750031484, 48.908307365663049 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92003", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "3", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.233785, 48.895676 ], [ 2.229103, 48.906033 ], [ 2.237655750031484, 48.908307365663049 ], [ 2.28427, 48.902284 ], [ 2.271065, 48.8984 ], [ 2.233785, 48.895676 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92011", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "11", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.278179, 48.814254 ], [ 2.301321, 48.82513 ], [ 2.331909, 48.817013 ], [ 2.318683, 48.787987 ], [ 2.303309, 48.785398 ], [ 2.278179, 48.814254 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93001", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "1", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.288461, 48.958982 ], [ 2.333313, 48.955382 ], [ 2.339886, 48.941735 ], [ 2.352154, 48.928677 ], [ 2.366574, 48.920895 ], [ 2.365854, 48.90161 ], [ 2.351873, 48.901527 ], [ 2.334965, 48.901384 ], [ 2.319884, 48.900459 ], [ 2.313758, 48.914022 ], [ 2.322021, 48.918673 ], [ 2.33491, 48.941542 ], [ 2.290974, 48.950967 ], [ 2.288461, 48.958982 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93006", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "6", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.365854, 48.90161 ], [ 2.366574, 48.920895 ], [ 2.374742, 48.923681 ], [ 2.410057, 48.916693 ], [ 2.427724, 48.895888 ], [ 2.398651, 48.889414 ], [ 2.370286, 48.901652 ], [ 2.365854, 48.90161 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93010", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "10", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.479397, 48.919775 ], [ 2.45949, 48.955055 ], [ 2.496009, 48.972723 ], [ 2.524146, 48.950572 ], [ 2.517564, 48.925663 ], [ 2.50764, 48.898518 ], [ 2.47664, 48.888665 ], [ 2.479397, 48.919775 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94001", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "1", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.456675, 48.805481 ], [ 2.482361, 48.81936 ], [ 2.490948893812552, 48.816070003307225 ], [ 2.522283, 48.804066 ], [ 2.499965, 48.763097 ], [ 2.473297, 48.762092 ], [ 2.456675, 48.805481 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94006", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "6", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.41634, 48.849238 ], [ 2.481534, 48.86141 ], [ 2.496392, 48.859908 ], [ 2.499718, 48.855678 ], [ 2.46726, 48.839088 ], [ 2.437084, 48.840736 ], [ 2.424298, 48.841774 ], [ 2.41634, 48.849238 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94008", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "8", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.390069, 48.825697 ], [ 2.46358143436089, 48.824951075427336 ], [ 2.482361, 48.81936 ], [ 2.456675, 48.805481 ], [ 2.432746, 48.78673 ], [ 2.408762, 48.816923 ], [ 2.390069, 48.825697 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94009", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "9", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.401551, 48.773536 ], [ 2.367271, 48.779377 ], [ 2.372965521841288, 48.797535310769888 ], [ 2.408762, 48.816923 ], [ 2.432746, 48.78673 ], [ 2.401551, 48.773536 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94010", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "10", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.348738, 48.816741 ], [ 2.364139, 48.816388 ], [ 2.3668, 48.817349 ], [ 2.390069, 48.825697 ], [ 2.408762, 48.816923 ], [ 2.372965521841288, 48.797535310769888 ], [ 2.348738, 48.816741 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94011", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "11", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.318683, 48.787987 ], [ 2.331909, 48.817013 ], [ 2.33714592394883, 48.816735219290976 ], [ 2.346548, 48.816282 ], [ 2.348738, 48.816741 ], [ 2.372965521841288, 48.797535310769888 ], [ 2.367271, 48.779377 ], [ 2.325812, 48.781911 ], [ 2.318683, 48.787987 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZD002", "code_dpt": "ZD", "nom_dpt": "LA REUNION", "nom_reg": "LA REUNION", "num_circ": "2", "code_reg": "04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.375865, -20.896092 ], [ 55.406061, -20.955687 ], [ 55.404165, -20.980384 ], [ 55.4387, -20.991733 ], [ 55.461142, -21.015117 ], [ 55.446424, -21.068757 ], [ 55.464362, -21.085749 ], [ 55.422727, -21.116486 ], [ 55.387874, -21.079803 ], [ 55.341351, -21.075911 ], [ 55.313198, -21.063092 ], [ 55.265279, -21.040465 ], [ 55.24993, -21.018071 ], [ 55.277455, -20.999365 ], [ 55.277509, -20.957734 ], [ 55.293711, -20.925614 ], [ 55.322121, -20.932489 ], [ 55.375865, -20.896092 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZD005", "code_dpt": "ZD", "nom_dpt": "LA REUNION", "nom_reg": "LA REUNION", "num_circ": "5", "code_reg": "04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.683078, -20.944194 ], [ 55.700687, -20.978613 ], [ 55.70674, -21.026286 ], [ 55.782364, -21.123743 ], [ 55.824745, -21.143673 ], [ 55.83431, -21.183905 ], [ 55.814484, -21.214438 ], [ 55.802234, -21.262692 ], [ 55.808493, -21.332713 ], [ 55.78091, -21.36154 ], [ 55.700504, -21.376556 ], [ 55.704915, -21.364034 ], [ 55.687583, -21.306943 ], [ 55.692334, -21.275443 ], [ 55.67877, -21.240215 ], [ 55.654116, -21.212188 ], [ 55.63706, -21.194851 ], [ 55.619965, -21.182146 ], [ 55.592364, -21.172614 ], [ 55.581321, -21.139957 ], [ 55.55532, -21.138255 ], [ 55.506749, -21.139749 ], [ 55.504119, -21.122599 ], [ 55.464362, -21.085749 ], [ 55.446424, -21.068757 ], [ 55.461142, -21.015117 ], [ 55.468891, -21.00993 ], [ 55.507612, -21.00021 ], [ 55.555353, -21.005365 ], [ 55.596418, -20.969628 ], [ 55.633069, -20.953015 ], [ 55.645012, -20.939316 ], [ 55.683078, -20.944194 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZD006", "code_dpt": "ZD", "nom_dpt": "LA REUNION", "nom_reg": "LA REUNION", "num_circ": "6", "code_reg": "04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.468891, -21.00993 ], [ 55.48986, -20.910131 ], [ 55.487512, -20.885879 ], [ 55.592699, -20.896226 ], [ 55.646623, -20.915226 ], [ 55.683078, -20.944194 ], [ 55.645012, -20.939316 ], [ 55.633069, -20.953015 ], [ 55.596418, -20.969628 ], [ 55.555353, -21.005365 ], [ 55.507612, -21.00021 ], [ 55.468891, -21.00993 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZD007", "code_dpt": "ZD", "nom_dpt": "LA REUNION", "nom_reg": "LA REUNION", "num_circ": "7", "code_reg": "04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.24993, -21.018071 ], [ 55.265279, -21.040465 ], [ 55.313198, -21.063092 ], [ 55.341351, -21.075911 ], [ 55.387874, -21.079803 ], [ 55.422727, -21.116486 ], [ 55.40429, -21.138245 ], [ 55.436569, -21.201248 ], [ 55.412169, -21.236078 ], [ 55.424652, -21.25166 ], [ 55.420434, -21.291038 ], [ 55.403919, -21.303506 ], [ 55.340345, -21.28096 ], [ 55.330823, -21.259603 ], [ 55.293783, -21.22957 ], [ 55.281775, -21.203308 ], [ 55.286606, -21.161085 ], [ 55.254151, -21.109739 ], [ 55.220298, -21.076741 ], [ 55.219448, -21.034807 ], [ 55.24993, -21.018071 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "45006", "code_dpt": "45", "nom_dpt": "LOIRET", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "6", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.006212, 47.886544 ], [ 1.972889, 47.901332 ], [ 1.904504, 47.895858 ], [ 1.906535, 47.920805 ], [ 1.913993, 47.919757 ], [ 1.947959, 47.945582 ], [ 2.025025, 47.942719 ], [ 2.068394, 47.926142 ], [ 2.149255, 47.9574 ], [ 2.229378, 47.950015 ], [ 2.259397, 47.98662 ], [ 2.260072, 48.01122 ], [ 2.379602, 47.970838 ], [ 2.412658, 47.972555 ], [ 2.433282, 47.922556 ], [ 2.48503, 47.933746 ], [ 2.541364, 47.974739 ], [ 2.576081, 47.967345 ], [ 2.6164, 47.930721 ], [ 2.710218, 47.923502 ], [ 2.732598, 47.866371 ], [ 2.677967, 47.830126 ], [ 2.645387, 47.847348 ], [ 2.586944, 47.825214 ], [ 2.574626, 47.792922 ], [ 2.544034, 47.796731 ], [ 2.442067, 47.844649 ], [ 2.381311, 47.848511 ], [ 2.339442, 47.829598 ], [ 2.314291, 47.838625 ], [ 2.2529, 47.825515 ], [ 2.22391, 47.858547 ], [ 2.186378, 47.847636 ], [ 2.12453, 47.869197 ], [ 2.062107, 47.867419 ], [ 2.006212, 47.886544 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "06008", "code_dpt": "06", "nom_dpt": "ALPES-MARITIMES", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "8", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.054373, 43.601099 ], [ 7.074072, 43.583714 ], [ 7.057797, 43.55033 ], [ 6.98418, 43.54777 ], [ 6.938369, 43.516392 ], [ 6.933726, 43.480068 ], [ 6.88423, 43.502536 ], [ 6.879135, 43.532454 ], [ 6.906637, 43.564149 ], [ 6.963183, 43.57371 ], [ 7.017278, 43.564973 ], [ 7.054373, 43.601099 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "10003", "code_dpt": "10", "nom_dpt": "AUBE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "3", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.414792, 48.390273 ], [ 3.392913, 48.425219 ], [ 3.405714, 48.45329 ], [ 3.384094, 48.478029 ], [ 3.434909, 48.496854 ], [ 3.450707, 48.528668 ], [ 3.482364, 48.54981 ], [ 3.465516, 48.570486 ], [ 3.508513, 48.605509 ], [ 3.555614, 48.620285 ], [ 3.604245, 48.572453 ], [ 3.631399, 48.571565 ], [ 3.643639, 48.536263 ], [ 3.731761, 48.537543 ], [ 3.825896, 48.515174 ], [ 3.807284, 48.478677 ], [ 3.853016, 48.462542 ], [ 3.843389, 48.421585 ], [ 3.869615, 48.395601 ], [ 3.922862, 48.379615 ], [ 3.974078, 48.402247 ], [ 4.078504, 48.316423 ], [ 4.078044, 48.2986 ], [ 4.075212, 48.297183 ], [ 4.068921, 48.294337 ], [ 4.030151, 48.273186 ], [ 3.962618, 48.256056 ], [ 3.941918, 48.27852 ], [ 3.899076, 48.280788 ], [ 3.879865, 48.301726 ], [ 3.815349, 48.280027 ], [ 3.789908, 48.296899 ], [ 3.680222, 48.262264 ], [ 3.623765, 48.259291 ], [ 3.587536, 48.298482 ], [ 3.50441, 48.36549 ], [ 3.450115, 48.372852 ], [ 3.414792, 48.390273 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13003", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "3", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.391636, 43.372076 ], [ 5.424574, 43.383412 ], [ 5.463686, 43.361054 ], [ 5.466645, 43.323005 ], [ 5.410529, 43.314983 ], [ 5.393184, 43.316412 ], [ 5.382621371171673, 43.318206825515126 ], [ 5.391636, 43.372076 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13004", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "4", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.373616, 43.294992 ], [ 5.361543146490546, 43.295196628021301 ], [ 5.361740513250481, 43.315106085912944 ], [ 5.345516, 43.336266 ], [ 5.382621371171673, 43.318206825515126 ], [ 5.393184, 43.316412 ], [ 5.3911, 43.290955 ], [ 5.381646, 43.29351 ], [ 5.373616, 43.294992 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13005", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "5", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.393184, 43.316412 ], [ 5.410529, 43.314983 ], [ 5.405948, 43.290514 ], [ 5.406355, 43.289327 ], [ 5.388737, 43.283148 ], [ 5.371008, 43.293591 ], [ 5.373616, 43.294992 ], [ 5.381646, 43.29351 ], [ 5.3911, 43.290955 ], [ 5.393184, 43.316412 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13006", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "6", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.381535, 43.209584 ], [ 5.399838, 43.274623 ], [ 5.388737, 43.283148 ], [ 5.406355, 43.289327 ], [ 5.407778, 43.285395 ], [ 5.51305, 43.263444 ], [ 5.522211, 43.235511 ], [ 5.510186, 43.197903 ], [ 5.458578, 43.210187 ], [ 5.381535, 43.209584 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "13007", "code_dpt": "13", "nom_dpt": "BOUCHES-DU-RHONE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "7", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.282251, 43.353657 ], [ 5.278797, 43.380469 ], [ 5.332279, 43.371445 ], [ 5.371478, 43.388603 ], [ 5.391636, 43.372076 ], [ 5.382621371171673, 43.318206825515126 ], [ 5.345516, 43.336266 ], [ 5.313493, 43.359555 ], [ 5.282251, 43.353657 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "21001", "code_dpt": "21", "nom_dpt": "COTE-D'OR", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "1", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.938579, 47.278383 ], [ 4.875734, 47.269133 ], [ 4.841547, 47.279136 ], [ 4.816979, 47.294129 ], [ 4.840054, 47.324796 ], [ 4.812543, 47.365434 ], [ 4.842063, 47.398755 ], [ 4.897543, 47.407552 ], [ 4.957944, 47.431755 ], [ 5.044803, 47.445407 ], [ 5.099034, 47.417093 ], [ 5.024562, 47.316111 ], [ 5.005437, 47.311915 ], [ 4.970491, 47.29736 ], [ 4.938579, 47.278383 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "21003", "code_dpt": "21", "nom_dpt": "COTE-D'OR", "nom_reg": "BOURGOGNE-FRANCHE-COMTE", "num_circ": "3", "code_reg": "27" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.25461, 47.176177 ], [ 5.194153, 47.168999 ], [ 5.173598, 47.142368 ], [ 5.137049, 47.12645 ], [ 5.095061, 47.14786 ], [ 5.116099, 47.194768 ], [ 5.108351, 47.221279 ], [ 5.048366, 47.268202 ], [ 4.999513, 47.263039 ], [ 4.938579, 47.278383 ], [ 4.970491, 47.29736 ], [ 5.005437, 47.311915 ], [ 5.024562, 47.316111 ], [ 5.072928, 47.308771 ], [ 5.160295, 47.353059 ], [ 5.203288, 47.361212 ], [ 5.23522, 47.35111 ], [ 5.251402, 47.306317 ], [ 5.320545, 47.26739 ], [ 5.327791, 47.228787 ], [ 5.290742, 47.217285 ], [ 5.25461, 47.176177 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "27001", "code_dpt": "27", "nom_dpt": "EURE", "nom_reg": "NORMANDIE", "num_circ": "1", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.247751, 49.082948 ], [ 1.291253, 49.081596 ], [ 1.353179, 49.04315 ], [ 1.399868, 49.04683 ], [ 1.457762, 49.0263 ], [ 1.477096, 49.014801 ], [ 1.470889, 48.974817 ], [ 1.501524, 48.941054 ], [ 1.447959, 48.924641 ], [ 1.470636, 48.898003 ], [ 1.457628, 48.871518 ], [ 1.404822, 48.860715 ], [ 1.359781, 48.831196 ], [ 1.376809, 48.791938 ], [ 1.327389, 48.760436 ], [ 1.296935, 48.768012 ], [ 1.162975, 48.769311 ], [ 1.118687, 48.782962 ], [ 1.113736, 48.746304 ], [ 1.063027, 48.758969 ], [ 1.015925, 48.729054 ], [ 0.963956, 48.726344 ], [ 0.921203, 48.709177 ], [ 0.876703, 48.715591 ], [ 0.862587, 48.688076 ], [ 0.814819, 48.670168 ], [ 0.768455, 48.670722 ], [ 0.75117, 48.703978 ], [ 0.775034, 48.737358 ], [ 0.801958, 48.801261 ], [ 0.765648, 48.854012 ], [ 0.791511, 48.905143 ], [ 0.851617, 48.939072 ], [ 0.885862, 48.916301 ], [ 0.989762, 48.903157 ], [ 1.029748, 48.915641 ], [ 1.070243, 48.978187 ], [ 1.144226, 48.995347 ], [ 1.157205, 49.037901 ], [ 1.249089, 49.062372 ], [ 1.247751, 49.082948 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "27002", "code_dpt": "27", "nom_dpt": "EURE", "nom_reg": "NORMANDIE", "num_circ": "2", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.775426, 49.247534 ], [ 0.825268, 49.239611 ], [ 0.847476, 49.184583 ], [ 0.942895, 49.200559 ], [ 0.985197, 49.22123 ], [ 1.036955, 49.202803 ], [ 1.052875, 49.18423 ], [ 1.132684, 49.158245 ], [ 1.088336, 49.141604 ], [ 1.137414, 49.104511 ], [ 1.199327, 49.107666 ], [ 1.247751, 49.082948 ], [ 1.249089, 49.062372 ], [ 1.157205, 49.037901 ], [ 1.144226, 48.995347 ], [ 1.070243, 48.978187 ], [ 1.029748, 48.915641 ], [ 0.989762, 48.903157 ], [ 0.885862, 48.916301 ], [ 0.851617, 48.939072 ], [ 0.791511, 48.905143 ], [ 0.765648, 48.854012 ], [ 0.801958, 48.801261 ], [ 0.775034, 48.737358 ], [ 0.730523, 48.785593 ], [ 0.690171, 48.79406 ], [ 0.607869, 48.832489 ], [ 0.619441, 48.852749 ], [ 0.578041, 48.893656 ], [ 0.554535, 48.921438 ], [ 0.654746, 48.916488 ], [ 0.693624, 48.942325 ], [ 0.73252, 48.944173 ], [ 0.788612, 48.980755 ], [ 0.79147, 49.007723 ], [ 0.737229, 49.031495 ], [ 0.705531, 49.088436 ], [ 0.735881, 49.100966 ], [ 0.729204, 49.12956 ], [ 0.644879, 49.144678 ], [ 0.578545, 49.178126 ], [ 0.581443, 49.225621 ], [ 0.6109, 49.217278 ], [ 0.656497, 49.237897 ], [ 0.70539, 49.242327 ], [ 0.729446, 49.258818 ], [ 0.775426, 49.247534 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33003", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.603047, 44.818477 ], [ -0.546659, 44.836292 ], [ -0.526565, 44.806147 ], [ -0.510894, 44.7691 ], [ -0.565816, 44.752007 ], [ -0.590137, 44.762703 ], [ -0.603047, 44.818477 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "33006", "code_dpt": "33", "nom_dpt": "GIRONDE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "6", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.837084, 44.736773 ], [ -0.881356, 44.76 ], [ -0.90415, 44.806397 ], [ -0.884698, 44.849744 ], [ -0.883949, 44.885431 ], [ -0.844179, 44.894955 ], [ -0.831466, 44.924943 ], [ -0.754541, 44.966663 ], [ -0.697138, 44.927621 ], [ -0.670521, 44.929982 ], [ -0.642108, 44.894964 ], [ -0.638336, 44.860667 ], [ -0.610794, 44.835177 ], [ -0.610649, 44.822474 ], [ -0.729251, 44.801549 ], [ -0.758553, 44.755294 ], [ -0.837084, 44.736773 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "37001", "code_dpt": "37", "nom_dpt": "INDRE-ET-LOIRE", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "1", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.664503, 47.394951 ], [ 0.682085, 47.409564 ], [ 0.704457, 47.430192 ], [ 0.710405, 47.438749 ], [ 0.729528, 47.400328 ], [ 0.71413, 47.378011 ], [ 0.731739, 47.381766 ], [ 0.699222, 47.353928 ], [ 0.656673, 47.366532 ], [ 0.664503, 47.394951 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "42001", "code_dpt": "42", "nom_dpt": "LOIRE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "1", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.358841, 45.420475 ], [ 4.300262, 45.413505 ], [ 4.251408, 45.421599 ], [ 4.254921, 45.463923 ], [ 4.304552, 45.478676 ], [ 4.367251, 45.483189 ], [ 4.42996, 45.466791 ], [ 4.465946, 45.471442 ], [ 4.469987, 45.4239 ], [ 4.425317, 45.438858 ], [ 4.379413, 45.43792 ], [ 4.358841, 45.420475 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "42002", "code_dpt": "42", "nom_dpt": "LOIRE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "2", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.358841, 45.420475 ], [ 4.379413, 45.43792 ], [ 4.425317, 45.438858 ], [ 4.469987, 45.4239 ], [ 4.483243, 45.389124 ], [ 4.43565, 45.406179 ], [ 4.406494, 45.396841 ], [ 4.358841, 45.420475 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44001", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "1", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.655265, 47.307333 ], [ -1.615373, 47.297033 ], [ -1.593458, 47.27361 ], [ -1.539335, 47.256382 ], [ -1.548568, 47.235356 ], [ -1.583566, 47.226349 ], [ -1.64824, 47.258394 ], [ -1.688865, 47.256243 ], [ -1.719135, 47.273899 ], [ -1.655265, 47.307333 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44002", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "2", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.579222, 47.197125 ], [ -1.583566, 47.226349 ], [ -1.548568, 47.235356 ], [ -1.495997, 47.252418 ], [ -1.478817, 47.228079 ], [ -1.48095, 47.226347 ], [ -1.527433, 47.204447 ], [ -1.579222, 47.197125 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44003", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "3", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.896233, 47.27898 ], [ -1.869804, 47.306873 ], [ -1.800836, 47.336039 ], [ -1.775323, 47.349736 ], [ -1.723856, 47.346657 ], [ -1.684053, 47.356414 ], [ -1.655265, 47.307333 ], [ -1.719135, 47.273899 ], [ -1.688865, 47.256243 ], [ -1.64824, 47.258394 ], [ -1.583566, 47.226349 ], [ -1.579222, 47.197125 ], [ -1.608097, 47.184526 ], [ -1.668806, 47.188549 ], [ -1.709015, 47.20778 ], [ -1.787586, 47.209805 ], [ -1.83291, 47.228685 ], [ -1.896233, 47.27898 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "44004", "code_dpt": "44", "nom_dpt": "LOIRE-ATLANTIQUE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "4", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.668806, 47.188549 ], [ -1.608097, 47.184526 ], [ -1.579222, 47.197125 ], [ -1.527433, 47.204447 ], [ -1.48095, 47.226347 ], [ -1.474191, 47.186824 ], [ -1.512933, 47.189179 ], [ -1.549749, 47.145741 ], [ -1.531388, 47.108362 ], [ -1.554289, 47.097406 ], [ -1.67485, 47.133751 ], [ -1.725841, 47.126248 ], [ -1.763409, 47.183421 ], [ -1.679644, 47.17277 ], [ -1.668806, 47.188549 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "45001", "code_dpt": "45", "nom_dpt": "LOIRET", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "1", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.904504, 47.895858 ], [ 1.972889, 47.901332 ], [ 2.006212, 47.886544 ], [ 1.995316, 47.794077 ], [ 1.959383, 47.761341 ], [ 1.92561, 47.764601 ], [ 1.906375, 47.833992 ], [ 1.860741, 47.832531 ], [ 1.8418, 47.759454 ], [ 1.865427, 47.713814 ], [ 1.834739, 47.703899 ], [ 1.799856, 47.723323 ], [ 1.728065, 47.699565 ], [ 1.712265, 47.732617 ], [ 1.629262, 47.759409 ], [ 1.582867, 47.726441 ], [ 1.596397, 47.743087 ], [ 1.547817, 47.769536 ], [ 1.570241, 47.796718 ], [ 1.535838, 47.83852 ], [ 1.583626, 47.868487 ], [ 1.657996, 47.829117 ], [ 1.707095, 47.811486 ], [ 1.720725, 47.837577 ], [ 1.862287, 47.893328 ], [ 1.904504, 47.895858 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "45002", "code_dpt": "45", "nom_dpt": "LOIRET", "nom_reg": "CENTRE-VAL DE LOIRE", "num_circ": "2", "code_reg": "24" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.920403, 48.146385 ], [ 1.994858, 48.094074 ], [ 1.931691, 48.042311 ], [ 1.957721, 48.013304 ], [ 1.93566, 47.989761 ], [ 1.898642, 47.922045 ], [ 1.906535, 47.920805 ], [ 1.904504, 47.895858 ], [ 1.862287, 47.893328 ], [ 1.720725, 47.837577 ], [ 1.707095, 47.811486 ], [ 1.657996, 47.829117 ], [ 1.583626, 47.868487 ], [ 1.579184, 47.903529 ], [ 1.525424, 47.929114 ], [ 1.555956, 47.955317 ], [ 1.564819, 47.989772 ], [ 1.520124, 47.982278 ], [ 1.514657, 48.028572 ], [ 1.545307, 48.044589 ], [ 1.591873, 48.030754 ], [ 1.621686, 48.063877 ], [ 1.748593, 48.066148 ], [ 1.828698, 48.080076 ], [ 1.889714, 48.105586 ], [ 1.920403, 48.146385 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "49004", "code_dpt": "49", "nom_dpt": "MAINE-ET-LOIRE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "4", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.291311, 47.400499 ], [ -0.243475, 47.354281 ], [ -0.150674, 47.311942 ], [ -0.060692, 47.252826 ], [ -0.007865, 47.245821 ], [ 0.072451, 47.219878 ], [ 0.072876, 47.214493 ], [ 0.05374, 47.164611 ], [ 0.019015, 47.175758 ], [ -0.033736, 47.127565 ], [ -0.044239, 47.093151 ], [ -0.085541, 47.100434 ], [ -0.102121, 47.064806 ], [ -0.128896, 47.054236 ], [ -0.166736, 47.080992 ], [ -0.240408, 47.105144 ], [ -0.340141, 47.087274 ], [ -0.396031, 47.09024 ], [ -0.40078, 47.070771 ], [ -0.483752, 47.066595 ], [ -0.491782, 47.082853 ], [ -0.559717, 47.061701 ], [ -0.561548, 47.029506 ], [ -0.587252, 47.006133 ], [ -0.652014, 47.023912 ], [ -0.666495, 47.053925 ], [ -0.637727, 47.09176 ], [ -0.675, 47.10364 ], [ -0.688906, 47.129767 ], [ -0.64568, 47.190206 ], [ -0.677459, 47.204252 ], [ -0.669252, 47.251043 ], [ -0.710244, 47.266177 ], [ -0.630845, 47.333343 ], [ -0.568379, 47.322718 ], [ -0.506497, 47.338445 ], [ -0.491634, 47.366106 ], [ -0.438914, 47.359065 ], [ -0.36884, 47.375869 ], [ -0.294186, 47.367405 ], [ -0.291311, 47.400499 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "54002", "code_dpt": "54", "nom_dpt": "MEURTHE-ET-MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.074203, 48.692494 ], [ 6.136896, 48.700636 ], [ 6.168955, 48.699273 ], [ 6.212636, 48.673099 ], [ 6.215041, 48.648116 ], [ 6.173872, 48.608413 ], [ 6.142996, 48.646519 ], [ 6.108035, 48.647301 ], [ 6.074203, 48.692494 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "57002", "code_dpt": "57", "nom_dpt": "MOSELLE", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "2", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.010886, 49.153679 ], [ 6.077713, 49.147391 ], [ 6.108275, 49.133954 ], [ 6.095554, 49.101917 ], [ 6.118933, 49.077098 ], [ 6.159795, 49.099822 ], [ 6.164157, 49.09776 ], [ 6.171959, 49.093923 ], [ 6.203007, 49.122604 ], [ 6.251217, 49.116245 ], [ 6.239179, 49.086839 ], [ 6.298111, 49.067948 ], [ 6.289651, 49.045564 ], [ 6.329978, 49.013709 ], [ 6.287506, 48.997673 ], [ 6.354808, 48.943364 ], [ 6.327517, 48.904873 ], [ 6.262562, 48.933509 ], [ 6.175165, 48.936236 ], [ 6.043435, 48.977478 ], [ 6.044678, 49.012443 ], [ 5.957571, 49.047824 ], [ 5.931603, 49.109104 ], [ 5.998959, 49.108334 ], [ 5.982731, 49.144736 ], [ 6.010886, 49.153679 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59003", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "3", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.710431, 50.303175 ], [ 3.742773, 50.348075 ], [ 3.84015, 50.353861 ], [ 3.88606, 50.327062 ], [ 4.02522, 50.357894 ], [ 4.118359, 50.302268 ], [ 4.124012, 50.272764 ], [ 4.179576, 50.27677 ], [ 4.220834, 50.254305 ], [ 4.16644, 50.215094 ], [ 4.153214, 50.160373 ], [ 4.126925, 50.134921 ], [ 4.195247, 50.134599 ], [ 4.224309, 50.064387 ], [ 4.160782, 50.047525 ], [ 4.13737, 50.021767 ], [ 4.140895, 49.97876 ], [ 4.084444, 49.970658 ], [ 3.980144, 50.003561 ], [ 3.982312, 50.044432 ], [ 4.048112, 50.083301 ], [ 4.016487, 50.099626 ], [ 3.977471, 50.07263 ], [ 3.955506, 50.083868 ], [ 3.983045, 50.115491 ], [ 3.945563, 50.127128 ], [ 3.940057, 50.128877 ], [ 3.938338, 50.124273 ], [ 3.926682, 50.126532 ], [ 3.923225, 50.131053 ], [ 3.91591, 50.123653 ], [ 3.874877, 50.102307 ], [ 3.85797, 50.130583 ], [ 3.813927, 50.127685 ], [ 3.78338, 50.144436 ], [ 3.829733, 50.169053 ], [ 3.871167, 50.157927 ], [ 3.913579, 50.193613 ], [ 3.977066, 50.198181 ], [ 3.972493, 50.239131 ], [ 3.912741, 50.269024 ], [ 3.824969, 50.268098 ], [ 3.77633, 50.256328 ], [ 3.728718, 50.276347 ], [ 3.710431, 50.303175 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "64001", "code_dpt": "64", "nom_dpt": "PYRENEES-ATLANTIQUES", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.354363, 43.400964 ], [ -0.38464, 43.394384 ], [ -0.396827, 43.359641 ], [ -0.350696, 43.354318 ], [ -0.36034, 43.286984 ], [ -0.338663, 43.280427 ], [ -0.307695, 43.24199 ], [ -0.32551, 43.223949 ], [ -0.3822, 43.238169 ], [ -0.378941, 43.285756 ], [ -0.450058, 43.315239 ], [ -0.471874, 43.290291 ], [ -0.505959, 43.296412 ], [ -0.531883, 43.331785 ], [ -0.504025, 43.399851 ], [ -0.459716, 43.411407 ], [ -0.462409, 43.443208 ], [ -0.442712, 43.469699 ], [ -0.411148, 43.432651 ], [ -0.360772, 43.416811 ], [ -0.354363, 43.400964 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69005", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "5", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.761121, 45.934998 ], [ 4.849116, 45.912868 ], [ 4.880699, 45.897169 ], [ 4.900569, 45.8576 ], [ 4.866833, 45.838202 ], [ 4.878663, 45.796176 ], [ 4.860398, 45.786462 ], [ 4.843051, 45.778613 ], [ 4.802672, 45.791704 ], [ 4.734445, 45.85159 ], [ 4.699869, 45.841343 ], [ 4.727956, 45.876936 ], [ 4.726965, 45.907467 ], [ 4.761121, 45.934998 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "69007", "code_dpt": "69", "nom_dpt": "RHONE", "nom_reg": "AUVERGNE-RHONE-ALPES", "num_circ": "7", "code_reg": "84" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.88699, 45.72595 ], [ 4.899012, 45.752455 ], [ 4.906185, 45.783599 ], [ 4.878663, 45.796176 ], [ 4.866833, 45.838202 ], [ 4.900569, 45.8576 ], [ 4.923799, 45.803999 ], [ 4.970375, 45.807385 ], [ 4.937738, 45.771802 ], [ 4.928922501321443, 45.723915692898437 ], [ 4.88699, 45.72595 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75001", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "1", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.301556, 48.863481 ], [ 2.3159893508653, 48.881454495077314 ], [ 2.327115, 48.883484 ], [ 2.348950634648388, 48.879430878794516 ], [ 2.350088, 48.861955 ], [ 2.344559, 48.853993 ], [ 2.301556, 48.863481 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75002", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "2", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.320629, 48.848478 ], [ 2.289784, 48.858123 ], [ 2.29208, 48.859831 ], [ 2.295627, 48.862355 ], [ 2.301556, 48.863481 ], [ 2.344559, 48.853993 ], [ 2.365946043912868, 48.844894277236648 ], [ 2.342045, 48.838303 ], [ 2.320629, 48.848478 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75005", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "5", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.350088, 48.861955 ], [ 2.348950634648388, 48.879430878794516 ], [ 2.349502, 48.883739 ], [ 2.35844, 48.884439 ], [ 2.368736, 48.884061 ], [ 2.3724, 48.876192 ], [ 2.377013, 48.871919 ], [ 2.367655, 48.868705 ], [ 2.363857, 48.867434 ], [ 2.350088, 48.861955 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75007", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "7", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.344559, 48.853993 ], [ 2.350088, 48.861955 ], [ 2.363857, 48.867434 ], [ 2.367655, 48.868705 ], [ 2.384596, 48.850486 ], [ 2.372107506022245, 48.839990927254597 ], [ 2.365946043912868, 48.844894277236648 ], [ 2.344559, 48.853993 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75008", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "8", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.390069, 48.825697 ], [ 2.372107506022245, 48.839990927254597 ], [ 2.384596, 48.850486 ], [ 2.399074, 48.848092 ], [ 2.398758, 48.849807 ], [ 2.415443075057065, 48.854455416258595 ], [ 2.41634, 48.849238 ], [ 2.424298, 48.841774 ], [ 2.437084, 48.840736 ], [ 2.46726, 48.839088 ], [ 2.46358143436089, 48.824951075427336 ], [ 2.390069, 48.825697 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75010", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "10", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.301321, 48.82513 ], [ 2.310805, 48.832969 ], [ 2.321741, 48.825311 ], [ 2.331126, 48.823611 ], [ 2.340917, 48.831947 ], [ 2.3668, 48.817349 ], [ 2.364139, 48.816388 ], [ 2.348738, 48.816741 ], [ 2.346548, 48.816282 ], [ 2.33714592394883, 48.816735219290976 ], [ 2.331909, 48.817013 ], [ 2.301321, 48.82513 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75011", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "11", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.320629, 48.848478 ], [ 2.342045, 48.838303 ], [ 2.340917, 48.831947 ], [ 2.331126, 48.823611 ], [ 2.321741, 48.825311 ], [ 2.310805, 48.832969 ], [ 2.320629, 48.848478 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75013", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "13", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.262798, 48.833929 ], [ 2.280585246787636, 48.84987585721268 ], [ 2.310805, 48.832969 ], [ 2.301321, 48.82513 ], [ 2.262798, 48.833929 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75014", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "14", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.224225, 48.853516 ], [ 2.225677, 48.859407 ], [ 2.231736, 48.869069 ], [ 2.255286, 48.874354 ], [ 2.29208, 48.859831 ], [ 2.289784, 48.858123 ], [ 2.280585246787636, 48.84987585721268 ], [ 2.262798, 48.833929 ], [ 2.250631, 48.845529 ], [ 2.242034, 48.847794 ], [ 2.224225, 48.853516 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75015", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "15", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.382999276823681, 48.873297556845877 ], [ 2.410694, 48.878475 ], [ 2.413277, 48.873119 ], [ 2.415443075057065, 48.854455416258595 ], [ 2.398758, 48.849807 ], [ 2.398295, 48.851286 ], [ 2.399884, 48.863067 ], [ 2.394394, 48.869845 ], [ 2.382999276823681, 48.873297556845877 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75016", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "16", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.370286, 48.901652 ], [ 2.398651, 48.889414 ], [ 2.410694, 48.878475 ], [ 2.382999276823681, 48.873297556845877 ], [ 2.377013, 48.871919 ], [ 2.3724, 48.876192 ], [ 2.373374, 48.881345 ], [ 2.382088, 48.885898 ], [ 2.370286, 48.901652 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "75018", "code_dpt": "75", "nom_dpt": "PARIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "18", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.334965, 48.901384 ], [ 2.351873, 48.901527 ], [ 2.349502, 48.883739 ], [ 2.348950634648388, 48.879430878794516 ], [ 2.327115, 48.883484 ], [ 2.334965, 48.901384 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76001", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "1", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.047948, 49.480654 ], [ 1.09888, 49.483549 ], [ 1.109864, 49.425346 ], [ 1.038464, 49.427213 ], [ 1.047948, 49.480654 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "76003", "code_dpt": "76", "nom_dpt": "SEINE-MARITIME", "nom_reg": "NORMANDIE", "num_circ": "3", "code_reg": "28" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.038464, 49.427213 ], [ 1.109864, 49.425346 ], [ 1.126451, 49.356625 ], [ 1.11615, 49.340937 ], [ 1.060826, 49.328264 ], [ 1.027726, 49.351278 ], [ 1.05802, 49.366991 ], [ 1.061232, 49.411181 ], [ 1.038464, 49.427213 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77010", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "10", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.567967, 48.865944 ], [ 2.559406, 48.885338 ], [ 2.592368, 48.907703 ], [ 2.660854, 48.87404 ], [ 2.639171, 48.859093 ], [ 2.626774, 48.803079 ], [ 2.595795, 48.814266 ], [ 2.567967, 48.865944 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "77011", "code_dpt": "77", "nom_dpt": "SEINE-ET-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "11", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.531595, 48.573659 ], [ 2.521772, 48.573224 ], [ 2.54145, 48.596887 ], [ 2.517496, 48.629814 ], [ 2.547965, 48.64966 ], [ 2.628085, 48.638369 ], [ 2.663512, 48.614584 ], [ 2.644707, 48.534874 ], [ 2.610729, 48.517523 ], [ 2.534789, 48.540711 ], [ 2.531595, 48.573659 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78001", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "1", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.011238, 48.761966 ], [ 1.994401, 48.799117 ], [ 2.050125, 48.798413 ], [ 2.080428, 48.819631 ], [ 2.136073, 48.81494 ], [ 2.148476, 48.828493 ], [ 2.161275, 48.812781 ], [ 2.11004, 48.794388 ], [ 2.101494, 48.756491 ], [ 2.049931, 48.769467 ], [ 2.011238, 48.761966 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78003", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "3", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.150387, 48.870867 ], [ 2.159868, 48.847721 ], [ 2.148476, 48.828493 ], [ 2.136073, 48.81494 ], [ 2.080428, 48.819631 ], [ 2.059396, 48.829399 ], [ 1.994401, 48.799117 ], [ 1.986479, 48.799689 ], [ 1.966898, 48.821791 ], [ 1.969702, 48.863962 ], [ 1.998374, 48.891402 ], [ 2.077372, 48.873618 ], [ 2.110636, 48.841088 ], [ 2.150387, 48.870867 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "78011", "code_dpt": "78", "nom_dpt": "YVELINES", "nom_reg": "ILE-DE-FRANCE", "num_circ": "11", "code_reg": "11" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.932429, 48.741715 ], [ 1.951944, 48.759374 ], [ 1.941238, 48.791543 ], [ 1.986479, 48.799689 ], [ 1.994401, 48.799117 ], [ 2.011238, 48.761966 ], [ 1.98868, 48.729 ], [ 1.932429, 48.741715 ] ] ], [ [ [ 1.994401, 48.799117 ], [ 2.059396, 48.829399 ], [ 2.080428, 48.819631 ], [ 2.050125, 48.798413 ], [ 1.994401, 48.799117 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "80002", "code_dpt": "80", "nom_dpt": "SOMME", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "2", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.382155, 49.884924 ], [ 2.452229, 49.886309 ], [ 2.497914, 49.85137 ], [ 2.457587, 49.830866 ], [ 2.449038, 49.799365 ], [ 2.393573, 49.766496 ], [ 2.300845, 49.77131 ], [ 2.229126, 49.832647 ], [ 2.184155, 49.837575 ], [ 2.187217, 49.87647 ], [ 2.216943, 49.926945 ], [ 2.277004, 49.912775 ], [ 2.289456, 49.89972 ], [ 2.334807, 49.871336 ], [ 2.342741, 49.863246 ], [ 2.382155, 49.884924 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "83001", "code_dpt": "83", "nom_dpt": "VAR", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "1", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.887337, 43.116148 ], [ 5.92048, 43.150942 ], [ 5.967166, 43.152324 ], [ 5.984096, 43.12343 ], [ 5.97906, 43.10654 ], [ 5.928743, 43.104563 ], [ 5.887337, 43.116148 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "83007", "code_dpt": "83", "nom_dpt": "VAR", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "7", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.725912, 43.136526 ], [ 5.744756, 43.164568 ], [ 5.800896, 43.158976 ], [ 5.823022, 43.120399 ], [ 5.885618, 43.117148 ], [ 5.907215, 43.100007 ], [ 5.860583, 43.04893 ], [ 5.797761, 43.069111 ], [ 5.807265, 43.115717 ], [ 5.770334, 43.139011 ], [ 5.725912, 43.136526 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "84001", "code_dpt": "84", "nom_dpt": "VAUCLUSE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "1", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.739061, 43.924068 ], [ 4.814369, 43.964676 ], [ 4.845344, 43.995593 ], [ 4.884374, 43.981946 ], [ 4.883971, 43.952768 ], [ 4.918015, 43.953895 ], [ 4.922008, 43.886759 ], [ 4.854805, 43.910795 ], [ 4.739061, 43.924068 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "84003", "code_dpt": "84", "nom_dpt": "VAUCLUSE", "nom_reg": "PROVENCE-ALPES-COTE D'AZUR", "num_circ": "3", "code_reg": "93" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.91514, 44.103543 ], [ 4.942397, 44.053979 ], [ 4.991485, 44.068708 ], [ 5.043448, 44.054779 ], [ 5.086636, 44.06085 ], [ 5.101851, 44.079313 ], [ 5.159151, 44.087454 ], [ 5.159374, 44.063383 ], [ 5.186125, 44.036534 ], [ 5.13929, 44.030995 ], [ 5.161606, 44.004114 ], [ 5.21363, 43.989901 ], [ 5.195954, 43.950283 ], [ 5.159728, 43.94997 ], [ 5.068774, 43.964433 ], [ 5.044033, 43.944993 ], [ 4.95095, 43.97463 ], [ 4.918015, 43.953895 ], [ 4.883971, 43.952768 ], [ 4.884374, 43.981946 ], [ 4.845344, 43.995593 ], [ 4.795865, 44.04791 ], [ 4.833953, 44.033766 ], [ 4.864831, 44.057974 ], [ 4.839546, 44.079829 ], [ 4.870713, 44.117671 ], [ 4.91514, 44.103543 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "85002", "code_dpt": "85", "nom_dpt": "VENDEE", "nom_reg": "PAYS DE LA LOIRE", "num_circ": "2", "code_reg": "52" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.303407, 46.320624 ], [ -1.355165, 46.345837 ], [ -1.465388, 46.34276 ], [ -1.505168, 46.399386 ], [ -1.624156, 46.414105 ], [ -1.714284, 46.459027 ], [ -1.654757, 46.516268 ], [ -1.668818, 46.551179 ], [ -1.734982, 46.549432 ], [ -1.734787, 46.585505 ], [ -1.693372, 46.606659 ], [ -1.752986, 46.631008 ], [ -1.754783, 46.659023 ], [ -1.720955, 46.70031 ], [ -1.693767, 46.707632 ], [ -1.669454, 46.68962 ], [ -1.635059, 46.710192 ], [ -1.594654, 46.716003 ], [ -1.597071, 46.676284 ], [ -1.567204, 46.677641 ], [ -1.521055, 46.642114 ], [ -1.36711, 46.693114 ], [ -1.335219, 46.689825 ], [ -1.247655, 46.714446 ], [ -1.200475, 46.688899 ], [ -1.166434, 46.711799 ], [ -1.115905, 46.689559 ], [ -1.070159, 46.719024 ], [ -1.100392, 46.745943 ], [ -1.073525, 46.760189 ], [ -1.00187, 46.750088 ], [ -0.987139, 46.771489 ], [ -0.941588, 46.758403 ], [ -0.962448, 46.732045 ], [ -0.956438, 46.695839 ], [ -0.986543, 46.630812 ], [ -1.058409, 46.642389 ], [ -1.113155, 46.564021 ], [ -1.097386, 46.547663 ], [ -1.1512, 46.489177 ], [ -1.229644, 46.489275 ], [ -1.243278, 46.468714 ], [ -1.288711, 46.467413 ], [ -1.295942, 46.431647 ], [ -1.333763, 46.423894 ], [ -1.376189, 46.389961 ], [ -1.365953, 46.356165 ], [ -1.303407, 46.320624 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "87001", "code_dpt": "87", "nom_dpt": "HAUTE-VIENNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "1", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.537903, 45.997339 ], [ 1.568388, 45.996837 ], [ 1.566241, 45.963684 ], [ 1.518656, 45.950498 ], [ 1.513822, 45.931071 ], [ 1.573383, 45.915824 ], [ 1.604934, 45.93306 ], [ 1.64157, 45.896219 ], [ 1.602085, 45.889677 ], [ 1.602398, 45.857465 ], [ 1.652828, 45.845631 ], [ 1.729669, 45.843495 ], [ 1.755837, 45.855665 ], [ 1.815599, 45.814403 ], [ 1.883805, 45.794709 ], [ 1.896354, 45.76007 ], [ 1.873469, 45.72772 ], [ 1.898731, 45.698278 ], [ 1.874816, 45.664666 ], [ 1.826437, 45.665046 ], [ 1.785834, 45.682663 ], [ 1.750205, 45.645709 ], [ 1.710733, 45.641337 ], [ 1.625187, 45.578687 ], [ 1.592897, 45.575027 ], [ 1.541401, 45.646962 ], [ 1.514387, 45.641565 ], [ 1.490036, 45.670566 ], [ 1.513778, 45.733179 ], [ 1.532694, 45.755088 ], [ 1.446691, 45.771292 ], [ 1.403103, 45.802792 ], [ 1.341235, 45.786201 ], [ 1.293917, 45.802257 ], [ 1.277623, 45.815512 ], [ 1.259613, 45.82749 ], [ 1.246619, 45.834156 ], [ 1.254014, 45.843262 ], [ 1.273629, 45.901252 ], [ 1.267335, 45.942661 ], [ 1.318176, 45.964684 ], [ 1.340801, 46.013223 ], [ 1.380898, 46.028232 ], [ 1.400306, 46.00826 ], [ 1.445951, 46.003978 ], [ 1.494358, 45.982989 ], [ 1.537903, 45.997339 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "87003", "code_dpt": "87", "nom_dpt": "HAUTE-VIENNE", "nom_reg": "AQUITAINE-LIMOUSIN-POITOU-CHARENTES", "num_circ": "3", "code_reg": "75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.537903, 45.997339 ], [ 1.494358, 45.982989 ], [ 1.445951, 46.003978 ], [ 1.400306, 46.00826 ], [ 1.380898, 46.028232 ], [ 1.340801, 46.013223 ], [ 1.318176, 45.964684 ], [ 1.267335, 45.942661 ], [ 1.273629, 45.901252 ], [ 1.254014, 45.843262 ], [ 1.246619, 45.834156 ], [ 1.239686, 45.807136 ], [ 1.203476, 45.782029 ], [ 1.164695, 45.788782 ], [ 1.161393, 45.816417 ], [ 1.182776, 45.83875 ], [ 1.140547, 45.873129 ], [ 1.042524, 45.888228 ], [ 1.072677, 45.915643 ], [ 1.069279, 45.944139 ], [ 0.934675, 45.992207 ], [ 0.924509, 46.010226 ], [ 0.817909, 46.047887 ], [ 0.832307, 46.104339 ], [ 0.823433, 46.128591 ], [ 0.845853, 46.138369 ], [ 0.813373, 46.197689 ], [ 0.808399, 46.228006 ], [ 0.843549, 46.238884 ], [ 0.901248, 46.287507 ], [ 1.005887, 46.280974 ], [ 1.027163, 46.343443 ], [ 1.048637, 46.356549 ], [ 1.128579, 46.362221 ], [ 1.17728, 46.383952 ], [ 1.21797, 46.368256 ], [ 1.310512, 46.374375 ], [ 1.344678, 46.401598 ], [ 1.407003, 46.362641 ], [ 1.415191, 46.347218 ], [ 1.440266, 46.335352 ], [ 1.407696, 46.254436 ], [ 1.379039, 46.21941 ], [ 1.398496, 46.185884 ], [ 1.452574, 46.181148 ], [ 1.47009, 46.149601 ], [ 1.504852, 46.123197 ], [ 1.488492, 46.108156 ], [ 1.541189, 46.075675 ], [ 1.547723, 46.036058 ], [ 1.537903, 45.997339 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91007", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "7", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.41426, 48.717816 ], [ 2.400579, 48.701774 ], [ 2.39634, 48.673536 ], [ 2.341952, 48.667581 ], [ 2.32817, 48.687545 ], [ 2.351678, 48.702472 ], [ 2.353948, 48.73866 ], [ 2.369837, 48.746057 ], [ 2.370437, 48.727865 ], [ 2.41426, 48.717816 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91008", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "8", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.400579, 48.701774 ], [ 2.41426, 48.717816 ], [ 2.510055, 48.734663 ], [ 2.526874, 48.704734 ], [ 2.467901, 48.670773 ], [ 2.400579, 48.701774 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "91010", "code_dpt": "91", "nom_dpt": "ESSONNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "10", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.292714, 48.626155 ], [ 2.298934, 48.650128 ], [ 2.341952, 48.667581 ], [ 2.39634, 48.673536 ], [ 2.383529, 48.629979 ], [ 2.359384, 48.618077 ], [ 2.292714, 48.626155 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92002", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "2", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.237655750031484, 48.908307365663049 ], [ 2.282788, 48.931646 ], [ 2.322021, 48.918673 ], [ 2.313758, 48.914022 ], [ 2.28427, 48.902284 ], [ 2.237655750031484, 48.908307365663049 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92004", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "4", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.169349, 48.895813 ], [ 2.200591, 48.908679 ], [ 2.220399, 48.920618 ], [ 2.229103, 48.906033 ], [ 2.233785, 48.895676 ], [ 2.231736, 48.869069 ], [ 2.225677, 48.859407 ], [ 2.169349, 48.895813 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92005", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "5", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28427, 48.902284 ], [ 2.313758, 48.914022 ], [ 2.319884, 48.900459 ], [ 2.303777, 48.894152 ], [ 2.300454, 48.892691 ], [ 2.293945, 48.889856 ], [ 2.284458, 48.885638 ], [ 2.271065, 48.8984 ], [ 2.28427, 48.902284 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92006", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "6", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.231736, 48.869069 ], [ 2.233785, 48.895676 ], [ 2.271065, 48.8984 ], [ 2.284458, 48.885638 ], [ 2.255286, 48.874354 ], [ 2.231736, 48.869069 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92008", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "8", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.161275, 48.812781 ], [ 2.148476, 48.828493 ], [ 2.159868, 48.847721 ], [ 2.180795, 48.830625 ], [ 2.224048, 48.83515 ], [ 2.225814, 48.828272 ], [ 2.253282, 48.809685 ], [ 2.226628, 48.781589 ], [ 2.161275, 48.812781 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "92010", "code_dpt": "92", "nom_dpt": "HAUTS-DE-SEINE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "10", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.253282, 48.809685 ], [ 2.225814, 48.828272 ], [ 2.262798, 48.833929 ], [ 2.301321, 48.82513 ], [ 2.278179, 48.814254 ], [ 2.253282, 48.809685 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93002", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "2", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.333313, 48.955382 ], [ 2.366156, 48.974229 ], [ 2.375936, 48.972023 ], [ 2.374742, 48.923681 ], [ 2.366574, 48.920895 ], [ 2.352154, 48.928677 ], [ 2.339886, 48.941735 ], [ 2.333313, 48.955382 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93005", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "5", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.410057, 48.916693 ], [ 2.452111, 48.938736 ], [ 2.474266, 48.918431 ], [ 2.427724, 48.895888 ], [ 2.410057, 48.916693 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93007", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "7", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.413277, 48.873119 ], [ 2.464761, 48.878073 ], [ 2.481534, 48.86141 ], [ 2.41634, 48.849238 ], [ 2.415443075057065, 48.854455416258595 ], [ 2.413277, 48.873119 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93009", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "9", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.413277, 48.873119 ], [ 2.410694, 48.878475 ], [ 2.398651, 48.889414 ], [ 2.427724, 48.895888 ], [ 2.474266, 48.918431 ], [ 2.479397, 48.919775 ], [ 2.47664, 48.888665 ], [ 2.464761, 48.878073 ], [ 2.413277, 48.873119 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93011", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "11", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.496009, 48.972723 ], [ 2.553061, 49.009817 ], [ 2.595935, 48.938615 ], [ 2.517564, 48.925663 ], [ 2.524146, 48.950572 ], [ 2.496009, 48.972723 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "93012", "code_dpt": "93", "nom_dpt": "SEINE-SAINT-DENIS", "nom_reg": "ILE-DE-FRANCE", "num_circ": "12", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.517564, 48.925663 ], [ 2.595935, 48.938615 ], [ 2.592368, 48.907703 ], [ 2.559406, 48.885338 ], [ 2.50764, 48.898518 ], [ 2.517564, 48.925663 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94002", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "2", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.401551, 48.773536 ], [ 2.432746, 48.78673 ], [ 2.456675, 48.805481 ], [ 2.473297, 48.762092 ], [ 2.370437, 48.727865 ], [ 2.369837, 48.746057 ], [ 2.401551, 48.773536 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94007", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "7", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.325812, 48.781911 ], [ 2.367271, 48.779377 ], [ 2.401551, 48.773536 ], [ 2.369837, 48.746057 ], [ 2.353948, 48.73866 ], [ 2.320718, 48.748756 ], [ 2.325812, 48.781911 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95002", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "2", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.359296, 49.147348 ], [ 2.373158, 49.159334 ], [ 2.438907, 49.141496 ], [ 2.389055, 49.107527 ], [ 2.367251, 49.068293 ], [ 2.335294, 49.051476 ], [ 2.285009, 49.049128 ], [ 2.204059, 49.061064 ], [ 2.121257, 49.018493 ], [ 2.064429, 49.008208 ], [ 2.075841, 49.0446 ], [ 2.08545, 49.037838 ], [ 2.135294, 49.067207 ], [ 2.166061, 49.064439 ], [ 2.206045, 49.086839 ], [ 2.18109, 49.108404 ], [ 2.235042, 49.130348 ], [ 2.303789, 49.120686 ], [ 2.31499, 49.141745 ], [ 2.359296, 49.147348 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95003", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "3", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.178155, 48.963511 ], [ 2.127453, 48.989052 ], [ 2.121257, 49.018493 ], [ 2.204059, 49.061064 ], [ 2.285009, 49.049128 ], [ 2.274776, 49.036442 ], [ 2.25315, 49.041417 ], [ 2.205149, 48.983621 ], [ 2.228754, 48.972876 ], [ 2.225736, 48.971031 ], [ 2.205858, 48.949741 ], [ 2.178155, 48.963511 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95004", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "4", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.228754, 48.972876 ], [ 2.205149, 48.983621 ], [ 2.25315, 49.041417 ], [ 2.274776, 49.036442 ], [ 2.301383, 49.023777 ], [ 2.291858, 48.976241 ], [ 2.228754, 48.972876 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95008", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "8", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.382447, 48.971293 ], [ 2.363647, 49.009574 ], [ 2.410274, 49.023993 ], [ 2.416535, 48.998503 ], [ 2.456014, 48.955777 ], [ 2.407384, 48.956131 ], [ 2.382447, 48.971293 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "95010", "code_dpt": "95", "nom_dpt": "VAL-D'OISE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "10", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.072222, 49.04717 ], [ 2.075841, 49.0446 ], [ 2.064429, 49.008208 ], [ 2.026445, 49.000703 ], [ 1.954948, 49.024535 ], [ 1.983645, 49.034565 ], [ 2.026892, 49.096519 ], [ 2.094815, 49.070263 ], [ 2.072222, 49.04717 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZB003", "code_dpt": "ZB", "nom_dpt": "MARTINIQUE", "nom_reg": "MARTINIQUE", "num_circ": "3", "code_reg": "02" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.090783, 14.600181 ], [ -61.082686, 14.637004 ], [ -61.102576, 14.688805 ], [ -61.039206, 14.641847 ], [ -61.036557, 14.605741 ], [ -61.090783, 14.600181 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZD004", "code_dpt": "ZD", "nom_dpt": "LA REUNION", "nom_reg": "LA REUNION", "num_circ": "4", "code_reg": "04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.404439984756102, -21.303837535753878 ], [ 55.455563362250558, -21.286021 ], [ 55.479702, -21.25459 ], [ 55.502837, -21.282302 ], [ 55.514681, -21.291061 ], [ 55.533638, -21.313593 ], [ 55.601882, -21.272522 ], [ 55.605056, -21.231292 ], [ 55.63706, -21.194851 ], [ 55.654116, -21.212188 ], [ 55.67877, -21.240215 ], [ 55.692334, -21.275443 ], [ 55.687583, -21.306943 ], [ 55.704915, -21.364034 ], [ 55.700504, -21.376556 ], [ 55.647952, -21.388065 ], [ 55.608173, -21.38624 ], [ 55.58686, -21.371979 ], [ 55.536145, -21.363053 ], [ 55.459355, -21.340236 ], [ 55.404439984756102, -21.303837535753878 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "68001", "code_dpt": "68", "nom_dpt": "HAUT-RHIN", "nom_reg": "ALSACE-CHAMPAGNE-ARDENNE-LORRAINE", "num_circ": "1", "code_reg": "44" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.577859, 48.121393 ], [ 7.56859, 48.036339 ], [ 7.622157, 47.973659 ], [ 7.580987, 47.92077 ], [ 7.483966, 47.921299 ], [ 7.444885, 47.981393 ], [ 7.365188, 47.997738 ], [ 7.346417, 48.017387 ], [ 7.350848, 48.052985 ], [ 7.316066, 48.070524 ], [ 7.331807, 48.121009 ], [ 7.367676, 48.130283 ], [ 7.392709, 48.176323 ], [ 7.445367, 48.176811 ], [ 7.47014, 48.160174 ], [ 7.520334, 48.1495 ], [ 7.518595, 48.127764 ], [ 7.577859, 48.121393 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "94005", "code_dpt": "94", "nom_dpt": "VAL-DE-MARNE", "nom_reg": "ILE-DE-FRANCE", "num_circ": "5", "code_reg": "11" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.499718, 48.855678 ], [ 2.536654, 48.838514 ], [ 2.52616260240407, 48.823937583123389 ], [ 2.558720694900608, 48.808851539489396 ], [ 2.522283, 48.804066 ], [ 2.490948893812552, 48.816070003307225 ], [ 2.482361, 48.81936 ], [ 2.46358143436089, 48.824951075427336 ], [ 2.46726, 48.839088 ], [ 2.499718, 48.855678 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZD003", "code_dpt": "ZD", "nom_dpt": "LA REUNION", "nom_reg": "LA REUNION", "num_circ": "3", "code_reg": "04" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.464362, -21.085749 ], [ 55.504119, -21.122599 ], [ 55.506749, -21.139749 ], [ 55.55532, -21.138255 ], [ 55.581321, -21.139957 ], [ 55.592364, -21.172614 ], [ 55.619965, -21.182146 ], [ 55.63706, -21.194851 ], [ 55.605056, -21.231292 ], [ 55.601882, -21.272522 ], [ 55.533638, -21.313593 ], [ 55.514681, -21.291061 ], [ 55.502837, -21.282302 ], [ 55.479702, -21.25459 ], [ 55.455563362250558, -21.286021 ], [ 55.404439984756102, -21.303837535753878 ], [ 55.403919, -21.303506 ], [ 55.420434, -21.291038 ], [ 55.424652, -21.25166 ], [ 55.412169, -21.236078 ], [ 55.436569, -21.201248 ], [ 55.40429, -21.138245 ], [ 55.422727, -21.116486 ], [ 55.464362, -21.085749 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "59007", "code_dpt": "59", "nom_dpt": "NORD", "nom_reg": "NORD-PAS-DE-CALAIS-PICARDIE", "num_circ": "7", "code_reg": "32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.118703, 50.653669 ], [ 3.113821, 50.685898 ], [ 3.161758, 50.69986 ], [ 3.211536354186276, 50.670657823599868 ], [ 3.253688, 50.691138 ], [ 3.245075, 50.651429 ], [ 3.206244, 50.634637 ], [ 3.196917, 50.634741 ], [ 3.185796, 50.638061 ], [ 3.179389, 50.653748 ], [ 3.118703, 50.653669 ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZN001", "code_dpt": "ZN", "nom_dpt": "NOUVELLE-CALEDONIE", "nom_reg": "-", "num_circ": "1", "code_reg": "-" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 166.4570625, -22.2228779 ], [ 166.4948262, -22.2262117 ], [ 166.4964669, -22.2536752 ], [ 166.4799009, -22.2568489 ], [ 166.460756800000013, -22.2793455 ], [ 166.4584619, -22.3106898 ], [ 166.4370757, -22.303758 ], [ 166.441406199999989, -22.2645445 ], [ 166.4269477, -22.2465556 ], [ 166.3989767, -22.2349237 ], [ 166.431085200000012, -22.2224769 ], [ 166.4570625, -22.2228779 ] ] ], [ [ [ 166.4710939, -20.6997581 ], [ 166.5156878, -20.6713433 ], [ 166.54620030000001, -20.6349014 ], [ 166.5601437, -20.5954324 ], [ 166.5605343, -20.5602855 ], [ 166.57227850000001, -20.5191934 ], [ 166.593341, -20.481324 ], [ 166.5921511, -20.4421922 ], [ 166.5508184, -20.4042541 ], [ 166.5888474, -20.391861 ], [ 166.6073897, -20.3936595 ], [ 166.6252733, -20.4283412 ], [ 166.6582922, -20.4512005 ], [ 166.6671347, -20.4661874 ], [ 166.6090611, -20.4713577 ], [ 166.604426, -20.4854323 ], [ 166.5810486, -20.5103623 ], [ 166.58199110000001, -20.537108 ], [ 166.5715706, -20.5465683 ], [ 166.5760508, -20.5693654 ], [ 166.5693695, -20.5878889 ], [ 166.5839258, -20.6039205 ], [ 166.61284280000001, -20.5976035 ], [ 166.6093463, -20.6161726 ], [ 166.5678374, -20.6882544 ], [ 166.5053615, -20.7060615 ], [ 166.4710939, -20.6997581 ] ] ], [ [ [ 167.7937511, -21.0915304 ], [ 167.8154667, -21.0858568 ], [ 167.8395636, -21.1161721 ], [ 167.8234464, -21.1287658 ], [ 167.7937511, -21.0915304 ] ] ], [ [ [ 167.800344200000012, -21.3813244 ], [ 167.83895290000001, -21.375015 ], [ 167.874326599999989, -21.400139 ], [ 167.89654010000001, -21.3982129 ], [ 167.8988338, -21.3822229 ], [ 167.9459147, -21.3672534 ], [ 167.98254270000001, -21.4399213 ], [ 167.999671, -21.4578791 ], [ 168.0296649, -21.4666688 ], [ 168.0545688, -21.4545801 ], [ 168.083463200000011, -21.4545907 ], [ 168.1149896, -21.4339793 ], [ 168.1362245, -21.4484887 ], [ 168.1193284, -21.475408 ], [ 168.1245554, -21.5027045 ], [ 168.113346400000012, -21.5138938 ], [ 168.114390500000013, -21.5445257 ], [ 168.1081366, -21.5894374 ], [ 168.1153606, -21.6273797 ], [ 168.048076900000012, -21.6416324 ], [ 168.0397538, -21.6584625 ], [ 167.9836927, -21.657399 ], [ 167.960986600000012, -21.6504746 ], [ 167.9355979, -21.6049476 ], [ 167.909449200000012, -21.5975158 ], [ 167.8639259, -21.5985386 ], [ 167.8645626, -21.5749886 ], [ 167.878796099999988, -21.5505103 ], [ 167.8537732, -21.5270702 ], [ 167.832480800000013, -21.4808628 ], [ 167.8393362, -21.4516752 ], [ 167.8296212, -21.4253409 ], [ 167.8076906, -21.4064145 ], [ 167.800344200000012, -21.3813244 ] ] ], [ [ [ 167.0099999, -20.9188888 ], [ 167.0410875, -20.9114831 ], [ 167.061843900000014, -20.9269346 ], [ 167.1240654, -20.9065166 ], [ 167.1410648, -20.8724233 ], [ 167.1638575, -20.857723 ], [ 167.180218599999989, -20.8147775 ], [ 167.1705317, -20.7928618 ], [ 167.1483354, -20.7835567 ], [ 167.1240522, -20.7863878 ], [ 167.1017713, -20.7652297 ], [ 167.0357496, -20.7795015 ], [ 167.0397661, -20.732092 ], [ 167.064709, -20.7151918 ], [ 167.0999285, -20.7100042 ], [ 167.135689, -20.7241062 ], [ 167.163008499999989, -20.7117968 ], [ 167.1616803, -20.6897916 ], [ 167.179613, -20.6807807 ], [ 167.211595499999987, -20.6798096 ], [ 167.2482225, -20.6955513 ], [ 167.2763582, -20.7271479 ], [ 167.298144, -20.7268049 ], [ 167.3007665, -20.7464436 ], [ 167.276128699999987, -20.7640098 ], [ 167.2738957, -20.8285801 ], [ 167.290513299999986, -20.873331 ], [ 167.257395300000013, -20.9072379 ], [ 167.2741748, -20.9197909 ], [ 167.3016892, -20.9184638 ], [ 167.319778899999989, -20.9370063 ], [ 167.349934, -20.9383951 ], [ 167.3764826, -20.9542404 ], [ 167.3852483, -20.9801101 ], [ 167.381558, -21.0151614 ], [ 167.412088899999986, -21.0350885 ], [ 167.4334311, -21.0365585 ], [ 167.4584561, -21.066564 ], [ 167.4262454, -21.0836256 ], [ 167.4086734, -21.0991885 ], [ 167.414495499999987, -21.1639099 ], [ 167.382314, -21.1835545 ], [ 167.338219400000014, -21.1826454 ], [ 167.3138976, -21.1516836 ], [ 167.3132869, -21.1375764 ], [ 167.2672508, -21.1227576 ], [ 167.2705025, -21.1021249 ], [ 167.2607265, -21.0904169 ], [ 167.2160405, -21.0913924 ], [ 167.1786247, -21.0832558 ], [ 167.1567292, -21.0862376 ], [ 167.12716, -21.0703961 ], [ 167.111507, -21.0493576 ], [ 167.096062, -21.0428571 ], [ 167.0891565, -21.0195198 ], [ 167.0545888, -20.9875097 ], [ 167.0633525, -20.9670697 ], [ 167.0519893, -20.947645 ], [ 167.0264111, -20.9404863 ], [ 167.0099999, -20.9188888 ] ] ], [ [ [ 167.505174399999987, -22.6887225 ], [ 167.517953, -22.6768272 ], [ 167.5276001, -22.6434852 ], [ 167.5574186, -22.6670682 ], [ 167.546287, -22.6947751 ], [ 167.505174399999987, -22.6887225 ] ] ], [ [ [ 167.4132246, -22.6045802 ], [ 167.4245529, -22.5877387 ], [ 167.4160989, -22.5546341 ], [ 167.4658335, -22.5421976 ], [ 167.4953519, -22.5594815 ], [ 167.5098674, -22.5568051 ], [ 167.547294599999987, -22.5961512 ], [ 167.5577312, -22.6166358 ], [ 167.543993699999987, -22.6294874 ], [ 167.5179143, -22.6139213 ], [ 167.514543300000014, -22.6342999 ], [ 167.5234056, -22.6490834 ], [ 167.4929067, -22.6750227 ], [ 167.4512957, -22.6661177 ], [ 167.429169, -22.6483928 ], [ 167.4250525, -22.6184531 ], [ 167.4132246, -22.6045802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZN002", "code_dpt": "ZN", "nom_dpt": "NOUVELLE-CALEDONIE", "nom_reg": "-", "num_circ": "2", "code_reg": "-" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.1559595, -20.0846892 ], [ 164.1822953, -20.0783751 ], [ 164.216349900000012, -20.1091748 ], [ 164.231996900000013, -20.1429792 ], [ 164.207226, -20.1434991 ], [ 164.1811049, -20.1239509 ], [ 164.16358790000001, -20.0853688 ], [ 164.1559595, -20.0846892 ] ] ], [ [ [ 166.7721799, -22.4411543 ], [ 166.785250600000012, -22.4334774 ], [ 166.776693200000011, -22.4074709 ], [ 166.785614399999986, -22.3982807 ], [ 166.8393, -22.3974213 ], [ 166.8476316, -22.4154598 ], [ 166.8330779, -22.4509022 ], [ 166.8175536, -22.4665719 ], [ 166.7827897, -22.4614331 ], [ 166.7721799, -22.4411543 ] ] ], [ [ [ 164.2713731, -20.2124506 ], [ 164.2880673, -20.2228583 ], [ 164.300102900000013, -20.2601077 ], [ 164.2906864, -20.2613434 ], [ 164.2713731, -20.2124506 ] ] ], [ [ [ 163.570347, -19.5548696 ], [ 163.5871895, -19.5547448 ], [ 163.610425, -19.5889559 ], [ 163.5854783, -19.5951582 ], [ 163.570347, -19.5548696 ] ] ], [ [ [ 166.4948262, -22.2262117 ], [ 166.4570625, -22.2228779 ], [ 166.437535700000012, -22.1900944 ], [ 166.4213866, -22.1735024 ], [ 166.3849008, -22.1689048 ], [ 166.37207, -22.2071866 ], [ 166.3453891, -22.1932437 ], [ 166.333509099999986, -22.1973746 ], [ 166.3211296, -22.1694752 ], [ 166.3234909, -22.152711 ], [ 166.2690675, -22.1700276 ], [ 166.2221135, -22.1394298 ], [ 166.218707, -22.1254282 ], [ 166.182529, -22.1053896 ], [ 166.1618775, -22.0843172 ], [ 166.137722200000013, -22.0982048 ], [ 166.1226805, -22.0908285 ], [ 166.130698200000012, -22.0638862 ], [ 166.145812400000011, -22.074395 ], [ 166.162593, -22.0701808 ], [ 166.1684367, -22.0298981 ], [ 166.1368004, -21.9809553 ], [ 166.1478505, -21.9620313 ], [ 166.1232522, -21.9472984 ], [ 166.0928677, -21.9471691 ], [ 166.082016900000013, -21.9363814 ], [ 166.0782783, -21.9133694 ], [ 166.062046400000014, -21.8977964 ], [ 166.0441774, -21.9004932 ], [ 166.0189789, -21.9303557 ], [ 166.0140481, -21.9479874 ], [ 165.9904372, -21.9590534 ], [ 165.9780055, -21.9290168 ], [ 165.9496385, -21.9253941 ], [ 165.9424074, -21.9075575 ], [ 165.9067972, -21.8704328 ], [ 165.8523898, -21.8586385 ], [ 165.842804300000012, -21.8683343 ], [ 165.819004299999989, -21.8635337 ], [ 165.8332911, -21.8457307 ], [ 165.817228, -21.8188046 ], [ 165.801713299999989, -21.810503 ], [ 165.801762599999989, -21.7900466 ], [ 165.760931699999986, -21.7891877 ], [ 165.7692949, -21.7669992 ], [ 165.7274779, -21.7445789 ], [ 165.703298, -21.7504941 ], [ 165.6816901, -21.7245057 ], [ 165.6616679, -21.7139762 ], [ 165.627704, -21.7349228 ], [ 165.6242516, -21.710669 ], [ 165.60982, -21.7136876 ], [ 165.563938799999988, -21.7081164 ], [ 165.5311149, -21.6985685 ], [ 165.50709470000001, -21.6843536 ], [ 165.4718594, -21.6542148 ], [ 165.45829040000001, -21.6076147 ], [ 165.4368744, -21.6060631 ], [ 165.428659, -21.62 ], [ 165.3928467, -21.6124117 ], [ 165.329265099999986, -21.5866462 ], [ 165.2870484, -21.5734803 ], [ 165.266922099999988, -21.5567205 ], [ 165.260665, -21.5077702 ], [ 165.234508299999987, -21.5151351 ], [ 165.197273700000011, -21.4846182 ], [ 165.1677049, -21.4793849 ], [ 165.147871900000013, -21.4606831 ], [ 165.137290299999989, -21.4323863 ], [ 165.111481, -21.4049999 ], [ 165.1281897, -21.3875042 ], [ 165.1094697, -21.3675914 ], [ 165.094413300000014, -21.3716231 ], [ 165.072213, -21.3912179 ], [ 165.0458485, -21.3449325 ], [ 164.9885032, -21.3132894 ], [ 164.9720015, -21.3509321 ], [ 164.947123800000014, -21.3567193 ], [ 164.9489399, -21.293265 ], [ 164.910481800000014, -21.2783032 ], [ 164.8942975, -21.2442662 ], [ 164.8672483, -21.2277938 ], [ 164.8584826, -21.2035809 ], [ 164.8326597, -21.183746 ], [ 164.8317284, -21.1530188 ], [ 164.8611623, -21.1382427 ], [ 164.8552637, -21.1038603 ], [ 164.838397, -21.1082718 ], [ 164.8284349, -21.0662996 ], [ 164.7904768, -21.054839 ], [ 164.7755831, -21.0633081 ], [ 164.7688106, -21.0849098 ], [ 164.7529318, -21.0788458 ], [ 164.757637100000011, -21.0597639 ], [ 164.7450355, -21.0496065 ], [ 164.7231668, -21.0637544 ], [ 164.6932373, -21.0395856 ], [ 164.6897497, -21.0017249 ], [ 164.7094894, -21.0040772 ], [ 164.7067892, -20.9825698 ], [ 164.6556483, -20.9841485 ], [ 164.6723464, -20.9342235 ], [ 164.6216822, -20.9163504 ], [ 164.5890382, -20.9273479 ], [ 164.569130300000012, -20.892148 ], [ 164.552801, -20.8970918 ], [ 164.5250124, -20.8921604 ], [ 164.5089198, -20.8691964 ], [ 164.48077090000001, -20.8485122 ], [ 164.4612292, -20.8478483 ], [ 164.457550700000013, -20.8304143 ], [ 164.431530900000013, -20.8131703 ], [ 164.415827799999988, -20.7823801 ], [ 164.3967001, -20.7723993 ], [ 164.4146743, -20.7516622 ], [ 164.4144246, -20.7186444 ], [ 164.3654563, -20.6951757 ], [ 164.3670383, -20.6740024 ], [ 164.350853199999989, -20.6725751 ], [ 164.3186751, -20.6313504 ], [ 164.316912300000013, -20.6091326 ], [ 164.3026815, -20.5838749 ], [ 164.2868978, -20.573296 ], [ 164.258135900000013, -20.5670717 ], [ 164.2370309, -20.5521269 ], [ 164.2364883, -20.54037 ], [ 164.213324699999987, -20.5244707 ], [ 164.2073595, -20.5111655 ], [ 164.1808225, -20.487898 ], [ 164.1705302, -20.4463535 ], [ 164.1563295, -20.4202766 ], [ 164.1257023, -20.4018423 ], [ 164.126215, -20.3836898 ], [ 164.1652777, -20.3964022 ], [ 164.184540199999986, -20.371021 ], [ 164.1721126, -20.3291925 ], [ 164.144252200000011, -20.2998123 ], [ 164.0730293, -20.2786775 ], [ 164.040154199999989, -20.3010513 ], [ 164.037128599999988, -20.2826233 ], [ 164.000372, -20.2479113 ], [ 164.0311723, -20.2282906 ], [ 164.063750199999987, -20.2339348 ], [ 164.0562004, -20.1925412 ], [ 164.0700522, -20.1846888 ], [ 164.057666500000011, -20.144823 ], [ 164.025324399999988, -20.129319 ], [ 164.028674099999989, -20.1153797 ], [ 164.0023314, -20.0845794 ], [ 164.0320476, -20.0789665 ], [ 164.049701199999987, -20.1025979 ], [ 164.063233, -20.1030358 ], [ 164.095028899999988, -20.1575225 ], [ 164.131015600000012, -20.1754754 ], [ 164.1487497, -20.2080064 ], [ 164.1804818, -20.2431799 ], [ 164.1916698, -20.2429742 ], [ 164.25087, -20.2695255 ], [ 164.251231, -20.283412 ], [ 164.3117672, -20.2784101 ], [ 164.3047134, -20.2553048 ], [ 164.310665, -20.2311869 ], [ 164.341089899999986, -20.239041 ], [ 164.3585182, -20.2363913 ], [ 164.3777026, -20.2571242 ], [ 164.4142171, -20.2614199 ], [ 164.4264464, -20.2738557 ], [ 164.4534861, -20.2797819 ], [ 164.4679377, -20.2917895 ], [ 164.497107199999988, -20.2988962 ], [ 164.5511526, -20.3354096 ], [ 164.5780385, -20.3630219 ], [ 164.5896354, -20.3983428 ], [ 164.6216206, -20.4180495 ], [ 164.648268300000012, -20.424928 ], [ 164.673311500000011, -20.452493 ], [ 164.699337899999989, -20.4679054 ], [ 164.7302652, -20.4752925 ], [ 164.760469, -20.4988843 ], [ 164.7754683, -20.5228282 ], [ 164.7943113, -20.5372731 ], [ 164.8016601, -20.5546776 ], [ 164.8172497, -20.5597038 ], [ 164.846866299999988, -20.6099504 ], [ 164.913438500000012, -20.6456126 ], [ 164.9393916, -20.6707201 ], [ 164.9789322, -20.6829271 ], [ 165.071405700000014, -20.7402132 ], [ 165.1201206, -20.7554108 ], [ 165.138711, -20.7530146 ], [ 165.2185845, -20.7654066 ], [ 165.243102, -20.7739308 ], [ 165.2633491, -20.8063676 ], [ 165.256842299999988, -20.8520489 ], [ 165.263199500000013, -20.8666957 ], [ 165.318514, -20.9267952 ], [ 165.336206, -20.9372319 ], [ 165.3739286, -20.9346014 ], [ 165.4144796, -20.9467328 ], [ 165.4002152, -20.9883047 ], [ 165.4080054, -21.0606532 ], [ 165.4482855, -21.1007745 ], [ 165.480973400000011, -21.1112429 ], [ 165.4966915, -21.1341154 ], [ 165.538398300000011, -21.1308979 ], [ 165.58438670000001, -21.1701432 ], [ 165.6108006, -21.1829011 ], [ 165.618982, -21.2043706 ], [ 165.599361, -21.2072991 ], [ 165.6012426, -21.2246554 ], [ 165.6176906, -21.2545568 ], [ 165.635116399999987, -21.269473 ], [ 165.6738412, -21.2866116 ], [ 165.6922245, -21.2846957 ], [ 165.714745, -21.3037548 ], [ 165.7386833, -21.2959742 ], [ 165.7594709, -21.2991074 ], [ 165.800537600000013, -21.3526414 ], [ 165.8265101, -21.3549125 ], [ 165.8205643, -21.3841647 ], [ 165.843593, -21.3729787 ], [ 165.882383800000014, -21.3781866 ], [ 165.8960925, -21.3721919 ], [ 165.9156729, -21.4045285 ], [ 165.9448879, -21.4368086 ], [ 165.9487681, -21.4627918 ], [ 165.942394299999989, -21.4767314 ], [ 165.9744895, -21.4955495 ], [ 165.9945328, -21.4985721 ], [ 165.9868898, -21.4666907 ], [ 165.9679088, -21.4456888 ], [ 165.9542559, -21.4184746 ], [ 165.9763479, -21.4119104 ], [ 166.0101659, -21.4516182 ], [ 166.0540547, -21.4737475 ], [ 166.0631108, -21.508706 ], [ 166.1201537, -21.5150268 ], [ 166.131238200000013, -21.5303691 ], [ 166.1724601, -21.5657266 ], [ 166.197636, -21.5761643 ], [ 166.239127200000013, -21.6141175 ], [ 166.2552547, -21.6167898 ], [ 166.2834368, -21.6341864 ], [ 166.3237818, -21.6487405 ], [ 166.337548199999986, -21.6436948 ], [ 166.3566363, -21.6530654 ], [ 166.342011899999989, -21.6797008 ], [ 166.373842200000013, -21.7002827 ], [ 166.4126547, -21.7055667 ], [ 166.4696166, -21.7517904 ], [ 166.4710179, -21.7771215 ], [ 166.5079098, -21.8134674 ], [ 166.5521269, -21.8477036 ], [ 166.5668703, -21.8765245 ], [ 166.614352599999989, -21.9035347 ], [ 166.6169094, -21.9151026 ], [ 166.656589700000012, -21.9368962 ], [ 166.6709227, -21.922156 ], [ 166.719904500000013, -21.9578165 ], [ 166.699598, -21.9672943 ], [ 166.700039299999986, -21.9811897 ], [ 166.7267999, -21.9803953 ], [ 166.7545269, -21.9909119 ], [ 166.7769518, -22.0144997 ], [ 166.820931800000011, -22.0255789 ], [ 166.870447899999988, -22.0333864 ], [ 166.9180634, -22.0765448 ], [ 166.9389611, -22.0851001 ], [ 166.951059500000014, -22.1171774 ], [ 166.9373224, -22.1568916 ], [ 166.9506256, -22.1557372 ], [ 167.0046911, -22.2264511 ], [ 167.0222407, -22.2796877 ], [ 167.003763600000013, -22.3350078 ], [ 166.9788179, -22.3381411 ], [ 166.9714217, -22.3499672 ], [ 166.9253012, -22.3951537 ], [ 166.916312299999987, -22.3775531 ], [ 166.887621599999989, -22.3701345 ], [ 166.8912914, -22.3530692 ], [ 166.8739209, -22.320439 ], [ 166.8507793, -22.3336387 ], [ 166.8277271, -22.3353628 ], [ 166.8081272, -22.3727499 ], [ 166.7821971, -22.3907191 ], [ 166.74138210000001, -22.3825907 ], [ 166.73044920000001, -22.3635203 ], [ 166.7462286, -22.3487986 ], [ 166.7004025, -22.3341523 ], [ 166.6843088, -22.3103236 ], [ 166.650377099999986, -22.2945673 ], [ 166.6295754, -22.2741266 ], [ 166.6095981, -22.2906604 ], [ 166.5905768, -22.2924874 ], [ 166.5572577, -22.26074 ], [ 166.568576299999989, -22.2442831 ], [ 166.548844300000013, -22.2373424 ], [ 166.508354, -22.2333561 ], [ 166.4948262, -22.2262117 ] ] ], [ [ [ 166.018878199999989, -21.9823795 ], [ 166.069872800000013, -21.9952624 ], [ 166.04525670000001, -22.0222013 ], [ 166.0313265, -22.0268053 ], [ 166.018878199999989, -21.9823795 ] ] ], [ [ [ 165.9709598, -21.9650781 ], [ 166.0080466, -21.9736499 ], [ 165.9964577, -21.986527 ], [ 165.9709598, -21.9650781 ] ] ], [ [ [ 163.9453417, -20.0320548 ], [ 163.9613918, -20.0360124 ], [ 163.968887, -20.014811 ], [ 163.9931971, -20.0477844 ], [ 163.9903981, -20.0593565 ], [ 163.9665833, -20.0754421 ], [ 163.9519055, -20.069433 ], [ 163.9453417, -20.0320548 ] ] ], [ [ [ 163.7892176, -20.049853 ], [ 163.7943749, -20.0346956 ], [ 163.811586, -20.028632 ], [ 163.8278637, -20.0380107 ], [ 163.815320899999989, -20.0755226 ], [ 163.7892176, -20.049853 ] ] ], [ [ [ 163.6208738, -19.61835 ], [ 163.6333099, -19.6259124 ], [ 163.6742126, -19.6916236 ], [ 163.6731316, -19.7238031 ], [ 163.699254599999989, -19.7384147 ], [ 163.7039, -19.7693485 ], [ 163.673275499999988, -19.7722142 ], [ 163.653972399999986, -19.754946 ], [ 163.652624300000014, -19.7372975 ], [ 163.635045100000013, -19.7098698 ], [ 163.6306116, -19.6876914 ], [ 163.6450346, -19.6697758 ], [ 163.6393692, -19.6486182 ], [ 163.6208738, -19.61835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZS001", "code_dpt": "ZS", "nom_dpt": "SAINT-PIERRE-ET-MIQUELON", "nom_reg": "-", "num_circ": "1", "code_reg": "-" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.4058765, 46.8349457 ], [ -56.3808652, 46.857487 ], [ -56.3571157, 46.8630272 ], [ -56.3304342, 46.8973246 ], [ -56.3288591, 46.9346203 ], [ -56.3379478, 46.9656011 ], [ -56.3593369, 47.0051556 ], [ -56.3832617, 47.0208866 ], [ -56.3891582, 47.053533 ], [ -56.3778809, 47.1025157 ], [ -56.3310217, 47.0908347 ], [ -56.2983619, 47.072501 ], [ -56.253538, 47.0585644 ], [ -56.2502163, 47.0397506 ], [ -56.2701633, 46.9992289 ], [ -56.3039037, 46.9782726 ], [ -56.3177422, 46.95905 ], [ -56.3256283, 46.9267146 ], [ -56.3192852, 46.9074816 ], [ -56.2893388, 46.890601 ], [ -56.2699583, 46.8951525 ], [ -56.2385222, 46.8705442 ], [ -56.2433758, 46.8436715 ], [ -56.3187564, 46.8025894 ], [ -56.344085, 46.7848021 ], [ -56.3697075, 46.7962725 ], [ -56.3700679, 46.8231892 ], [ -56.4058765, 46.8349457 ] ] ], [ [ [ -56.2420052, 46.7655703 ], [ -56.1922677, 46.8105517 ], [ -56.1661543, 46.815836 ], [ -56.1543214, 46.7973732 ], [ -56.1915851, 46.7577147 ], [ -56.2420052, 46.7655703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZX001", "code_dpt": "ZX", "nom_dpt": "SAINT-MARTIN\/SAINT-BARTHELEMY", "nom_reg": "-", "num_circ": "1", "code_reg": "-" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -63.0962231, 18.0626091 ], [ -63.0810858, 18.0775442 ], [ -63.0733853, 18.0992942 ], [ -63.0594206, 18.1002068 ], [ -63.0261544, 18.1244364 ], [ -63.0186821, 18.0864266 ], [ -63.0400725, 18.0558043 ], [ -63.0630925, 18.0637612 ], [ -63.0779648, 18.0494371 ], [ -63.0962231, 18.0626091 ] ] ], [ [ [ -62.8741868, 17.921114 ], [ -62.8487618, 17.9173852 ], [ -62.8400082, 17.9045077 ], [ -62.8089408, 17.916332 ], [ -62.7955482, 17.8976021 ], [ -62.836895, 17.8782328 ], [ -62.8568851, 17.9084379 ], [ -62.8741868, 17.921114 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZW001", "code_dpt": "ZW", "nom_dpt": "WALLIS-ET-FUTUNA", "nom_reg": "-", "num_circ": "1", "code_reg": "-" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.250845700000013, -13.2905881 ], [ -176.2246769, -13.2779465 ], [ -176.225896, -13.2524594 ], [ -176.217776500000014, -13.2304078 ], [ -176.1985703, -13.2188482 ], [ -176.1623126, -13.2652837 ], [ -176.183170499999989, -13.2977833 ], [ -176.1993955, -13.3437724 ], [ -176.2188721, -13.3480159 ], [ -176.220019400000012, -13.3293755 ], [ -176.2464393, -13.3138842 ], [ -176.250845700000013, -13.2905881 ] ] ], [ [ [ -178.0732659, -14.3461554 ], [ -178.0674405, -14.3328053 ], [ -178.0304501, -14.3235867 ], [ -178.020343700000012, -14.3452517 ], [ -178.041211, -14.3608773 ], [ -178.0732659, -14.3461554 ] ] ], [ [ [ -178.1817531, -14.2541568 ], [ -178.178612, -14.2419722 ], [ -178.131804499999987, -14.2592065 ], [ -178.0879071, -14.2973257 ], [ -178.0970111, -14.3085861 ], [ -178.138506799999988, -14.3110959 ], [ -178.168384, -14.2877385 ], [ -178.1817531, -14.2541568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZP001", "code_dpt": "ZP", "nom_dpt": "POLYNESIE-FRANCAISE", "nom_reg": "-", "num_circ": "1", "code_reg": "-" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -150.6519841, -17.664573 ], [ -150.6280461, -17.6339506 ], [ -150.609507400000012, -17.6579606 ], [ -150.61044480000001, -17.671378 ], [ -150.6290152, -17.6802192 ], [ -150.6519841, -17.664573 ] ] ], [ [ [ -140.7236136, -8.0183416 ], [ -140.71225720000001, -7.984662 ], [ -140.6478894, -7.9546087 ], [ -140.6394687, -7.973936 ], [ -140.6837973, -8.0014269 ], [ -140.6946399, -8.0276016 ], [ -140.693979500000012, -8.046678 ], [ -140.718686600000012, -8.0419891 ], [ -140.7236136, -8.0183416 ] ] ], [ [ [ -140.5991139, -7.9301536 ], [ -140.58308310000001, -7.9225675 ], [ -140.5582193, -7.8983243 ], [ -140.5514852, -7.9092729 ], [ -140.581088, -7.9310629 ], [ -140.5991139, -7.9301536 ] ] ], [ [ [ -139.132470399999988, -9.9782264 ], [ -139.1216646, -9.9556726 ], [ -139.118212699999987, -9.9299696 ], [ -139.09761, -9.8937184 ], [ -139.0657965, -9.8925865 ], [ -139.0354839, -9.9290056 ], [ -139.039257600000013, -9.9476863 ], [ -139.0778161, -9.9564439 ], [ -139.1016903, -9.9824592 ], [ -139.1090299, -10.0062867 ], [ -139.1243585, -10.0123891 ], [ -139.132470399999988, -9.9782264 ] ] ], [ [ [ -139.163654, -9.7761829 ], [ -139.149958, -9.7584125 ], [ -139.1326685, -9.7501672 ], [ -139.0921167, -9.7440426 ], [ -139.0514784, -9.7204604 ], [ -139.0057894, -9.6986602 ], [ -138.9846197, -9.6978483 ], [ -138.9686026, -9.7089725 ], [ -138.9615633, -9.7386328 ], [ -138.895173, -9.7374691 ], [ -138.877850599999988, -9.7652924 ], [ -138.8616372, -9.7588146 ], [ -138.8466152, -9.7712134 ], [ -138.8821929, -9.7993121 ], [ -138.9120294, -9.8082275 ], [ -138.9600164, -9.8075675 ], [ -138.9738806, -9.8020459 ], [ -138.9919047, -9.8125329 ], [ -139.0407289, -9.8065608 ], [ -139.0723288, -9.8504307 ], [ -139.10159250000001, -9.8471271 ], [ -139.133196, -9.8288693 ], [ -139.163654, -9.7761829 ] ] ], [ [ [ -140.1357659, -9.3804539 ], [ -140.128599, -9.3828039 ], [ -140.0995019, -9.3477965 ], [ -140.074235499999986, -9.3374747 ], [ -140.0237749, -9.3666652 ], [ -140.036835200000013, -9.4482146 ], [ -140.053206499999987, -9.4661609 ], [ -140.076097299999986, -9.4614452 ], [ -140.095427300000011, -9.4347038 ], [ -140.1305946, -9.3994648 ], [ -140.1357659, -9.3804539 ] ] ], [ [ [ -138.8421208, -9.9761737 ], [ -138.825354800000014, -9.9739804 ], [ -138.812691199999989, -9.9965577 ], [ -138.8271196, -10.0061471 ], [ -138.8421208, -9.9761737 ] ] ], [ [ [ -138.6922348, -10.520104 ], [ -138.676520399999987, -10.4951894 ], [ -138.6729919, -10.4521527 ], [ -138.6891464, -10.425858 ], [ -138.656529, -10.42167 ], [ -138.6132548, -10.4599586 ], [ -138.6129132, -10.5035526 ], [ -138.6363565, -10.5412218 ], [ -138.66452670000001, -10.5408913 ], [ -138.6922348, -10.520104 ] ] ], [ [ [ -139.614458, -8.9220143 ], [ -139.6034282, -8.8940112 ], [ -139.5505729, -8.8653155 ], [ -139.5085587, -8.8817651 ], [ -139.486114, -8.9214481 ], [ -139.5431484, -8.9313261 ], [ -139.5912108, -8.9505286 ], [ -139.614458, -8.9220143 ] ] ], [ [ [ -140.2519428, -8.8247989 ], [ -140.247368200000011, -8.7999327 ], [ -140.2006218, -8.7821794 ], [ -140.1568292, -8.7927946 ], [ -140.125704, -8.8162535 ], [ -140.106980600000014, -8.8096688 ], [ -140.092098099999987, -8.8169331 ], [ -140.0729318, -8.8032571 ], [ -140.066427, -8.8254414 ], [ -140.0538114, -8.8272718 ], [ -140.036185499999988, -8.7997735 ], [ -140.014711299999988, -8.8065925 ], [ -140.046659299999988, -8.827925 ], [ -140.0336077, -8.8460475 ], [ -140.012434500000012, -8.8472179 ], [ -140.0159272, -8.874392 ], [ -140.00946110000001, -8.9033851 ], [ -140.0288899, -8.9007037 ], [ -140.0368492, -8.8849592 ], [ -140.0532033, -8.8957564 ], [ -140.0426843, -8.9129162 ], [ -140.0823157, -8.925017 ], [ -140.1047249, -8.9121983 ], [ -140.108773, -8.9342903 ], [ -140.132307200000014, -8.9431044 ], [ -140.1699045, -8.9428567 ], [ -140.1894847, -8.9601218 ], [ -140.197847599999989, -8.9465403 ], [ -140.225009300000011, -8.929522 ], [ -140.2293546, -8.8821535 ], [ -140.2485179, -8.8466101 ], [ -140.2519428, -8.8247989 ] ] ], [ [ [ -145.213262899999989, -19.8669427 ], [ -145.2080728, -19.8234612 ], [ -145.195310400000011, -19.7865424 ], [ -145.1710969, -19.7467797 ], [ -145.1542288, -19.727656 ], [ -145.099858500000011, -19.6772658 ], [ -145.0698708, -19.6584942 ], [ -145.008476300000012, -19.6375906 ], [ -144.9642409, -19.6339962 ], [ -144.914219300000013, -19.6392031 ], [ -144.8800244, -19.6485867 ], [ -144.834409599999987, -19.670203 ], [ -144.792044800000014, -19.7030909 ], [ -144.7665552, -19.7337536 ], [ -144.7518014, -19.7595989 ], [ -144.736414200000013, -19.8047629 ], [ -144.7247796, -19.8648243 ], [ -144.7241043, -19.9242767 ], [ -144.735847799999988, -19.9721149 ], [ -144.7661309, -20.0272983 ], [ -144.801053200000013, -20.0638523 ], [ -144.839307600000012, -20.088857 ], [ -144.896069399999988, -20.1090098 ], [ -144.960635200000013, -20.115006 ], [ -144.995826, -20.110383 ], [ -145.0504496, -20.0903603 ], [ -145.083900699999987, -20.0687103 ], [ -145.1632406, -20.0000654 ], [ -145.197530300000011, -19.9457417 ], [ -145.209113699999989, -19.9081121 ], [ -145.213262899999989, -19.8669427 ] ] ], [ [ [ -140.6450017, -19.6337924 ], [ -140.6313978, -19.564006 ], [ -140.5994263, -19.5041892 ], [ -140.573676799999987, -19.4736822 ], [ -140.5290561, -19.4386727 ], [ -140.492537199999987, -19.4211851 ], [ -140.4581995, -19.4118247 ], [ -140.4176037, -19.4082911 ], [ -140.371544300000011, -19.412438 ], [ -140.337598899999989, -19.4213718 ], [ -140.2891512, -19.4454322 ], [ -140.2629124, -19.4650418 ], [ -140.225440600000013, -19.5018659 ], [ -140.201758399999989, -19.5345418 ], [ -140.180867, -19.5812375 ], [ -140.173641800000013, -19.6144407 ], [ -140.1720606, -19.6528408 ], [ -140.1781259, -19.6908221 ], [ -140.1896194, -19.7237745 ], [ -140.2226283, -19.7776901 ], [ -140.2534612, -19.8089307 ], [ -140.2943579, -19.8362109 ], [ -140.3489289, -19.8560848 ], [ -140.4054166, -19.8627546 ], [ -140.4545339, -19.8579292 ], [ -140.5083581, -19.840105 ], [ -140.560386200000011, -19.8082444 ], [ -140.5913258, -19.7785829 ], [ -140.625703499999986, -19.7242644 ], [ -140.641669, -19.672803 ], [ -140.6450017, -19.6337924 ] ] ], [ [ [ -139.4674603, -19.3556719 ], [ -139.4595698, -19.2987462 ], [ -139.441899299999989, -19.2568735 ], [ -139.4155948, -19.220442 ], [ -139.3936904, -19.1996773 ], [ -139.349148500000013, -19.1696277 ], [ -139.3095997, -19.149493 ], [ -139.2467088, -19.1299403 ], [ -139.1983204, -19.1276103 ], [ -139.154050399999988, -19.1349902 ], [ -139.12376660000001, -19.1451732 ], [ -139.0853837, -19.1652515 ], [ -139.0585711, -19.1860789 ], [ -139.028742200000011, -19.2184991 ], [ -139.0053546, -19.2153878 ], [ -138.988138, -19.1785284 ], [ -138.9700844, -19.1528215 ], [ -138.9421462, -19.1249654 ], [ -138.8990618, -19.0972983 ], [ -138.8371464, -19.0778246 ], [ -138.7748943, -19.0727489 ], [ -138.729627599999986, -19.0758655 ], [ -138.6920753, -19.0858321 ], [ -138.6597835, -19.1004958 ], [ -138.6166987, -19.1319742 ], [ -138.5962998, -19.1543683 ], [ -138.574895700000013, -19.1883097 ], [ -138.5634061, -19.2168681 ], [ -138.51175090000001, -19.2597195 ], [ -138.480887599999988, -19.3060692 ], [ -138.4716378, -19.3281183 ], [ -138.459675299999986, -19.3858905 ], [ -138.4605732, -19.4248394 ], [ -138.4663878, -19.4535343 ], [ -138.4839825, -19.49634 ], [ -138.4974463, -19.5175194 ], [ -138.53198470000001, -19.5542373 ], [ -138.5641116, -19.5764083 ], [ -138.596612, -19.5914532 ], [ -138.6403989, -19.602606 ], [ -138.7039921, -19.603218 ], [ -138.7529946, -19.5912127 ], [ -138.7892008, -19.5736457 ], [ -138.8303417, -19.5419211 ], [ -138.859377099999989, -19.5060978 ], [ -138.8764801, -19.4735564 ], [ -138.935413, -19.4423909 ], [ -138.9717044, -19.4079488 ], [ -138.991005699999988, -19.3798657 ], [ -139.0019202, -19.4167669 ], [ -139.0201195, -19.4566734 ], [ -139.0537281, -19.5015216 ], [ -139.0927393, -19.5329008 ], [ -139.1350309, -19.5545541 ], [ -139.1801557, -19.5668572 ], [ -139.221338300000014, -19.5695233 ], [ -139.295517499999988, -19.5574587 ], [ -139.330707499999988, -19.5452447 ], [ -139.3805237, -19.5178878 ], [ -139.40591, -19.496687 ], [ -139.4344491, -19.4626008 ], [ -139.4509022, -19.4324037 ], [ -139.4632, -19.3938136 ], [ -139.4674603, -19.3556719 ] ] ], [ [ [ -138.785408100000012, -20.8244077 ], [ -138.7797112, -20.7707841 ], [ -138.765369600000014, -20.7111663 ], [ -138.7365878, -20.6546584 ], [ -138.698954, -20.6156081 ], [ -138.6441039, -20.5838008 ], [ -138.6042836, -20.5725045 ], [ -138.567649, -20.568874 ], [ -138.509525, -20.5757332 ], [ -138.4635568, -20.5921167 ], [ -138.3799907, -20.6439846 ], [ -138.353772600000013, -20.6675115 ], [ -138.3280829, -20.7004633 ], [ -138.3032385, -20.7588279 ], [ -138.295366, -20.7971228 ], [ -138.2953252, -20.8483719 ], [ -138.3053175, -20.9180998 ], [ -138.318694, -20.9598331 ], [ -138.351829900000013, -21.0124664 ], [ -138.377369499999986, -21.0374118 ], [ -138.4176076, -21.063828 ], [ -138.4506929, -21.0773291 ], [ -138.499304599999988, -21.0871161 ], [ -138.5288348, -21.0879373 ], [ -138.5871448, -21.077599 ], [ -138.627317, -21.0612444 ], [ -138.690968, -21.018124 ], [ -138.731673300000011, -20.9803741 ], [ -138.7673479, -20.9245486 ], [ -138.7798668, -20.8827548 ], [ -138.785408100000012, -20.8244077 ] ] ], [ [ [ -139.35955580000001, -20.7802757 ], [ -139.3559267, -20.7410342 ], [ -139.334594399999986, -20.6819801 ], [ -139.311268399999989, -20.6470742 ], [ -139.265372500000012, -20.6052856 ], [ -139.227273200000013, -20.5848397 ], [ -139.188921, -20.5729093 ], [ -139.14152390000001, -20.5678373 ], [ -139.0988695, -20.5713501 ], [ -139.04193570000001, -20.5895078 ], [ -139.0047964, -20.6119818 ], [ -138.974097199999989, -20.6397573 ], [ -138.9388725, -20.6940285 ], [ -138.9248034, -20.7377474 ], [ -138.9210161, -20.7774432 ], [ -138.9258453, -20.8202124 ], [ -138.9484386, -20.8818578 ], [ -138.9876051, -20.9338725 ], [ -139.0197671, -20.9594931 ], [ -139.0807105, -20.9878597 ], [ -139.132046699999989, -20.9966164 ], [ -139.174233, -20.994703 ], [ -139.234928, -20.9765006 ], [ -139.2792374, -20.9489836 ], [ -139.3035927, -20.9261041 ], [ -139.329879299999988, -20.8904445 ], [ -139.3460145, -20.8567774 ], [ -139.3566892, -20.8163005 ], [ -139.35955580000001, -20.7802757 ] ] ], [ [ [ -142.0770408, -18.72259 ], [ -142.0733352, -18.6788652 ], [ -142.060743, -18.6366509 ], [ -142.044465300000013, -18.6058258 ], [ -142.0071465, -18.5621955 ], [ -141.9595373, -18.5296359 ], [ -141.9176558, -18.5135781 ], [ -141.8566183, -18.5051566 ], [ -141.765943, -18.5161457 ], [ -141.7115249, -18.5341793 ], [ -141.676939, -18.5529873 ], [ -141.6172556, -18.6019231 ], [ -141.5861946, -18.6354247 ], [ -141.55746, -18.6875683 ], [ -141.5471858, -18.7259229 ], [ -141.5449548, -18.7654821 ], [ -141.555126300000012, -18.8189819 ], [ -141.583249200000012, -18.8825255 ], [ -141.6024574, -18.9114112 ], [ -141.6266383, -18.9377829 ], [ -141.6654509, -18.9673083 ], [ -141.706881399999986, -18.9888501 ], [ -141.776537100000013, -19.0070386 ], [ -141.8323738, -19.0076725 ], [ -141.8886128, -18.9938003 ], [ -141.931955499999987, -18.971262 ], [ -141.9624158, -18.9466357 ], [ -141.9996552, -18.9017803 ], [ -142.0532476, -18.8235808 ], [ -142.0685657, -18.7830905 ], [ -142.0770408, -18.72259 ] ] ], [ [ [ -140.928552700000012, -19.1249238 ], [ -140.9258434, -19.0913775 ], [ -140.9116788, -19.0433398 ], [ -140.8768091, -18.9880571 ], [ -140.826930800000014, -18.9462169 ], [ -140.7884204, -18.9280838 ], [ -140.7594279, -18.919893 ], [ -140.7162796, -18.9152269 ], [ -140.6771162, -18.9175013 ], [ -140.622198, -18.9272268 ], [ -140.5867781, -18.9378772 ], [ -140.5441116, -18.9604155 ], [ -140.5199533, -18.9793828 ], [ -140.4905331, -19.0119199 ], [ -140.4746242, -19.0377554 ], [ -140.457622, -19.0815489 ], [ -140.4514566, -19.1188353 ], [ -140.4542583, -19.1709932 ], [ -140.47474170000001, -19.230209 ], [ -140.5028137, -19.2729671 ], [ -140.5514618, -19.316749 ], [ -140.595404300000013, -19.3409224 ], [ -140.6538381, -19.3561185 ], [ -140.7088357, -19.3564749 ], [ -140.7532641, -19.3471673 ], [ -140.7960433, -19.3296141 ], [ -140.8352615, -19.3044789 ], [ -140.863586700000013, -19.279681 ], [ -140.8941582, -19.2413873 ], [ -140.914587899999987, -19.2014637 ], [ -140.9257781, -19.1598129 ], [ -140.928552700000012, -19.1249238 ] ] ], [ [ [ -141.469346, -19.1893907 ], [ -141.464473700000013, -19.1468197 ], [ -141.444891899999988, -19.0921834 ], [ -141.4289645, -19.0663543 ], [ -141.384022, -19.0214345 ], [ -141.3453862, -18.9986665 ], [ -141.3074512, -18.9856809 ], [ -141.2736133, -18.9798259 ], [ -141.2340098, -18.9797193 ], [ -141.189221, -18.9882141 ], [ -141.1460822, -19.005685 ], [ -141.1112973, -19.0284721 ], [ -141.085317300000014, -19.0521574 ], [ -141.050598900000011, -19.0965824 ], [ -141.0304663, -19.1381583 ], [ -141.0187096, -19.1891509 ], [ -141.017904, -19.2223708 ], [ -141.0305151, -19.2836693 ], [ -141.0491221, -19.3214346 ], [ -141.0739098, -19.3531068 ], [ -141.1216489, -19.3911967 ], [ -141.161573, -19.4102597 ], [ -141.190485200000012, -19.4185534 ], [ -141.235638200000011, -19.4237375 ], [ -141.279999, -19.4201777 ], [ -141.32257580000001, -19.4083074 ], [ -141.352614499999987, -19.3938427 ], [ -141.3866514, -19.3699838 ], [ -141.4142531, -19.3416474 ], [ -141.434652, -19.3122845 ], [ -141.4588582, -19.2582538 ], [ -141.4673824, -19.2210878 ], [ -141.469346, -19.1893907 ] ] ], [ [ [ -136.6744728, -18.470822 ], [ -136.67211180000001, -18.4412158 ], [ -136.6611426, -18.3985564 ], [ -136.632788799999986, -18.3474856 ], [ -136.6095831, -18.3220756 ], [ -136.559628, -18.2869854 ], [ -136.5108339, -18.2687116 ], [ -136.4462802, -18.2618045 ], [ -136.406181800000013, -18.2657974 ], [ -136.3721367, -18.2746806 ], [ -136.263412100000011, -18.3272201 ], [ -136.1816272, -18.3852658 ], [ -136.131144299999988, -18.4346801 ], [ -136.113904600000012, -18.4594303 ], [ -136.0945882, -18.5006187 ], [ -136.0839919, -18.5499256 ], [ -136.08398170000001, -18.5902875 ], [ -136.0980462, -18.6471871 ], [ -136.1113086, -18.6738359 ], [ -136.1373528, -18.7090772 ], [ -136.1623783, -18.7324701 ], [ -136.1911146, -18.7514724 ], [ -136.250147700000014, -18.7740514 ], [ -136.3051611, -18.7803453 ], [ -136.3760135, -18.7721504 ], [ -136.418217700000014, -18.7583288 ], [ -136.4608883, -18.7353307 ], [ -136.4976443, -18.7055013 ], [ -136.5279488, -18.6745863 ], [ -136.5637317, -18.6571411 ], [ -136.6105087, -18.6207362 ], [ -136.6438082, -18.5788495 ], [ -136.6570356, -18.5532365 ], [ -136.6714503, -18.5053298 ], [ -136.6744728, -18.470822 ] ] ], [ [ [ -139.427599, -18.5571741 ], [ -139.416388899999987, -18.4925799 ], [ -139.3994068, -18.4565526 ], [ -139.3820126, -18.4320487 ], [ -139.3493656, -18.4006301 ], [ -139.301900499999988, -18.372307 ], [ -139.2576128, -18.3582614 ], [ -139.2057634, -18.35369 ], [ -139.1738584, -18.3567161 ], [ -139.1250804, -18.3704411 ], [ -139.087321300000013, -18.3902045 ], [ -139.0510711, -18.4200592 ], [ -139.0189661, -18.4635722 ], [ -139.001530300000013, -18.5062199 ], [ -138.9945483, -18.5497931 ], [ -138.9981706, -18.6280027 ], [ -138.9579941, -18.5996695 ], [ -138.8939449, -18.5732503 ], [ -138.8520605, -18.5644676 ], [ -138.8011731, -18.5609879 ], [ -138.738475, -18.5695696 ], [ -138.689186799999987, -18.5892074 ], [ -138.6445574, -18.6206046 ], [ -138.6181023, -18.649483 ], [ -138.6005151, -18.6767567 ], [ -138.582689499999987, -18.7233263 ], [ -138.5775834, -18.7577765 ], [ -138.579069, -18.79953 ], [ -138.5923295, -18.8484107 ], [ -138.6106849, -18.8829697 ], [ -138.655254, -18.9322272 ], [ -138.683767499999988, -18.9518077 ], [ -138.7285249, -18.9721136 ], [ -138.7754668, -18.9834187 ], [ -138.842441900000011, -18.9883881 ], [ -138.8828762, -18.9858863 ], [ -138.9507525, -18.964481 ], [ -138.9928208, -18.9380988 ], [ -139.0143668, -18.9181957 ], [ -139.0395738, -18.8852228 ], [ -139.0551273, -18.8546701 ], [ -139.06508, -18.8220089 ], [ -139.0692005, -18.7784507 ], [ -139.0588324, -18.7187819 ], [ -139.0789307, -18.7200341 ], [ -139.1040355, -18.7354324 ], [ -139.142724, -18.7513801 ], [ -139.200369, -18.7616535 ], [ -139.2588776, -18.7573437 ], [ -139.316324400000013, -18.7372198 ], [ -139.3539294, -18.7123711 ], [ -139.3787322, -18.6878842 ], [ -139.40690140000001, -18.64583 ], [ -139.4262866, -18.5812538 ], [ -139.427599, -18.5571741 ] ] ], [ [ [ -137.279984, -18.2641324 ], [ -137.2728196, -18.2110186 ], [ -137.2459422, -18.1533691 ], [ -137.216955399999989, -18.1195989 ], [ -137.1632841, -18.0834073 ], [ -137.120145400000013, -18.0676003 ], [ -137.0554152, -18.0614648 ], [ -137.0086806, -18.0684479 ], [ -136.9505728, -18.0928135 ], [ -136.8948064, -18.1300325 ], [ -136.8467914, -18.1737479 ], [ -136.8082451, -18.215657 ], [ -136.778977200000014, -18.2597018 ], [ -136.760482700000011, -18.3074853 ], [ -136.754100200000011, -18.3537534 ], [ -136.7568229, -18.3923972 ], [ -136.7639175, -18.4206476 ], [ -136.789013, -18.4710022 ], [ -136.810882099999986, -18.4979716 ], [ -136.8481698, -18.5292314 ], [ -136.87438130000001, -18.5440279 ], [ -136.9122767, -18.5576955 ], [ -136.9676385, -18.5646717 ], [ -137.0149465, -18.5606158 ], [ -137.0753779, -18.5414098 ], [ -137.1297357, -18.5127307 ], [ -137.1801726, -18.4730295 ], [ -137.2106767, -18.43591 ], [ -137.2589696, -18.3547484 ], [ -137.268080200000014, -18.3326745 ], [ -137.279984, -18.2641324 ] ] ], [ [ [ -143.2987281, -17.8650704 ], [ -143.2901818, -17.7970098 ], [ -143.2742002, -17.7569631 ], [ -143.236232300000012, -17.7043611 ], [ -143.1918104, -17.6688336 ], [ -143.1543764, -17.6498606 ], [ -143.10038, -17.6354638 ], [ -143.0559491, -17.6337924 ], [ -143.0243749, -17.6381073 ], [ -142.98119, -17.652183 ], [ -142.9504346, -17.6692654 ], [ -142.911815600000011, -17.7025847 ], [ -142.8775238, -17.7548305 ], [ -142.862909300000013, -17.7981299 ], [ -142.8536705, -17.8490232 ], [ -142.852450800000014, -17.887635 ], [ -142.858952499999987, -17.925751 ], [ -142.870791, -17.9575724 ], [ -142.8984573, -18.0010001 ], [ -142.9284946, -18.0305721 ], [ -142.9742941, -18.0590229 ], [ -143.0051823, -18.0710152 ], [ -143.056595499999986, -18.0803215 ], [ -143.1035842, -18.0784664 ], [ -143.144898899999987, -18.0688103 ], [ -143.20031130000001, -18.0409288 ], [ -143.251186, -17.9931981 ], [ -143.2761499, -17.9534476 ], [ -143.2878351, -17.9256814 ], [ -143.2987281, -17.8650704 ] ] ], [ [ [ -149.5813852, -17.5448667 ], [ -149.5671692, -17.5262661 ], [ -149.543051100000014, -17.520921 ], [ -149.5125276, -17.5223993 ], [ -149.5036173, -17.5117024 ], [ -149.4895291, -17.552328 ], [ -149.4945684, -17.6126505 ], [ -149.512820299999987, -17.6234262 ], [ -149.521774599999986, -17.5971371 ], [ -149.5825792, -17.5563973 ], [ -149.5813852, -17.5448667 ] ] ], [ [ [ -149.9159252, -17.5027033 ], [ -149.9079032, -17.490419 ], [ -149.8707444, -17.4918779 ], [ -149.854004, -17.4996762 ], [ -149.8449293, -17.4846681 ], [ -149.816768700000011, -17.4845358 ], [ -149.7750992, -17.4733101 ], [ -149.7636483, -17.4997456 ], [ -149.7768213, -17.5239572 ], [ -149.7985515, -17.5813752 ], [ -149.8084524, -17.5921175 ], [ -149.837479800000011, -17.5920623 ], [ -149.8519805, -17.5843904 ], [ -149.8737663, -17.5569268 ], [ -149.9035476, -17.5367854 ], [ -149.9159252, -17.5027033 ] ] ], [ [ [ -142.6048854, -18.0455691 ], [ -142.6002145, -18.0022893 ], [ -142.588252899999986, -17.956912 ], [ -142.5685077, -17.9128706 ], [ -142.5328352, -17.8685715 ], [ -142.486522400000013, -17.8352286 ], [ -142.4449356, -17.8180904 ], [ -142.4156147, -17.8111773 ], [ -142.3595818, -17.8075615 ], [ -142.3269996, -17.7871544 ], [ -142.26381, -17.7620148 ], [ -142.19984, -17.7543648 ], [ -142.1458332, -17.761603 ], [ -142.10830150000001, -17.7749129 ], [ -142.074125, -17.7949538 ], [ -142.027295400000014, -17.8413725 ], [ -142.000260200000014, -17.8931761 ], [ -141.9886845, -17.9380988 ], [ -141.9868242, -17.969772 ], [ -141.9775661, -18.0116141 ], [ -141.9811023, -18.0767951 ], [ -141.9590791, -18.1165609 ], [ -141.934485, -18.1492129 ], [ -141.9188073, -18.1800699 ], [ -141.9047994, -18.2276809 ], [ -141.9007815, -18.2629434 ], [ -141.9026706, -18.2965912 ], [ -141.9163838, -18.3459808 ], [ -141.953414400000014, -18.4042538 ], [ -141.979609399999987, -18.4293331 ], [ -142.0187201, -18.4541433 ], [ -142.0487034, -18.4805146 ], [ -142.0951607, -18.5061915 ], [ -142.1430805, -18.5194999 ], [ -142.172932, -18.5220002 ], [ -142.2225082, -18.5168583 ], [ -142.25891390000001, -18.5054972 ], [ -142.3036576, -18.480323 ], [ -142.338391300000012, -18.4480321 ], [ -142.3617056, -18.4153451 ], [ -142.3814907, -18.3698046 ], [ -142.3931428, -18.3019213 ], [ -142.422424299999989, -18.2806137 ], [ -142.4541659, -18.2683675 ], [ -142.508991400000014, -18.2304133 ], [ -142.5545995, -18.1790606 ], [ -142.5872862, -18.1289053 ], [ -142.6018598, -18.0815076 ], [ -142.6048854, -18.0455691 ] ] ], [ [ [ -141.7375649, -17.3770698 ], [ -141.728401, -17.3136708 ], [ -141.7074096, -17.2687022 ], [ -141.6812788, -17.2346498 ], [ -141.639783200000011, -17.1993778 ], [ -141.6082444, -17.1821838 ], [ -141.570027399999987, -17.168441 ], [ -141.5250045, -17.1604221 ], [ -141.4681363, -17.1628689 ], [ -141.4345141, -17.1707847 ], [ -141.3877137, -17.1921913 ], [ -141.350607, -17.2195743 ], [ -141.330071800000013, -17.241162 ], [ -141.305642400000011, -17.2783831 ], [ -141.2826833, -17.3342009 ], [ -141.2760146, -17.3722832 ], [ -141.276508, -17.4060877 ], [ -141.2852484, -17.4476771 ], [ -141.3057461, -17.4924575 ], [ -141.3431731, -17.5372741 ], [ -141.367158, -17.5561969 ], [ -141.4110629, -17.580086 ], [ -141.4460899, -17.5916404 ], [ -141.497165599999988, -17.6003955 ], [ -141.5322579, -17.5999447 ], [ -141.5990842, -17.5830467 ], [ -141.642769, -17.5576886 ], [ -141.6789507, -17.5233 ], [ -141.6994459, -17.4942936 ], [ -141.722109499999988, -17.4497867 ], [ -141.7346044, -17.4065771 ], [ -141.7375649, -17.3770698 ] ] ], [ [ [ -141.2792947, -18.1166771 ], [ -141.27193840000001, -18.0494179 ], [ -141.25700040000001, -18.0054515 ], [ -141.2309214, -17.9590558 ], [ -141.1973674, -17.9228254 ], [ -141.1426573, -17.8887818 ], [ -141.0812469, -17.8717472 ], [ -141.069215, -17.8247172 ], [ -141.047835099999986, -17.7672667 ], [ -141.0308043, -17.7377713 ], [ -140.9651606, -17.649438 ], [ -140.923547, -17.6143189 ], [ -140.8684187, -17.584405 ], [ -140.826365, -17.5516387 ], [ -140.7787046, -17.5239605 ], [ -140.7500791, -17.5142349 ], [ -140.695875, -17.5060085 ], [ -140.6478378, -17.5079752 ], [ -140.6095843, -17.5155801 ], [ -140.5619177, -17.5346581 ], [ -140.529502400000013, -17.5538751 ], [ -140.4995739, -17.5794004 ], [ -140.478082300000011, -17.6044453 ], [ -140.457015, -17.6400162 ], [ -140.4400718, -17.6974454 ], [ -140.4391807, -17.7438353 ], [ -140.4451391, -17.7805603 ], [ -140.4707574, -17.8456795 ], [ -140.5042085, -17.8986912 ], [ -140.5411298, -17.9398208 ], [ -140.5794166, -17.9671915 ], [ -140.6406863, -18.0334714 ], [ -140.674421700000011, -18.056576 ], [ -140.6509246, -18.0848433 ], [ -140.6247761, -18.1292972 ], [ -140.610049299999986, -18.1761301 ], [ -140.6065438, -18.2064081 ], [ -140.545272, -18.2490506 ], [ -140.510041699999988, -18.2851281 ], [ -140.4758235, -18.3395949 ], [ -140.4626508, -18.3733746 ], [ -140.455158399999988, -18.4222947 ], [ -140.4595238, -18.4694845 ], [ -140.4713179, -18.5067263 ], [ -140.4876162, -18.5369633 ], [ -140.5159639, -18.5711429 ], [ -140.542957199999989, -18.5931039 ], [ -140.5853377, -18.6159567 ], [ -140.624172, -18.6273568 ], [ -140.6757542, -18.6311459 ], [ -140.738462199999987, -18.6259785 ], [ -140.7917716, -18.6178321 ], [ -140.8669108, -18.5959455 ], [ -140.941947699999986, -18.5607539 ], [ -140.976962, -18.5316566 ], [ -141.0684143, -18.4315798 ], [ -141.089578499999988, -18.3982324 ], [ -141.124174399999987, -18.3710957 ], [ -141.148080599999986, -18.3461064 ], [ -141.1818897, -18.3236637 ], [ -141.2102444, -18.2954501 ], [ -141.2274439, -18.2710589 ], [ -141.260446800000011, -18.2107852 ], [ -141.2771533, -18.1500655 ], [ -141.2792947, -18.1166771 ] ] ], [ [ [ -138.663746800000013, -17.3466565 ], [ -138.659988700000014, -17.3132643 ], [ -138.6431753, -17.2628005 ], [ -138.6191653, -17.2249317 ], [ -138.6001492, -17.2037777 ], [ -138.562005699999986, -17.1739534 ], [ -138.5194473, -17.1513677 ], [ -138.4886285, -17.1404254 ], [ -138.4411455, -17.1298943 ], [ -138.3353775, -17.1258418 ], [ -138.291132299999987, -17.1305738 ], [ -138.233458500000012, -17.1510325 ], [ -138.197016499999989, -17.1746477 ], [ -138.1595592, -17.2132712 ], [ -138.133924400000012, -17.2600441 ], [ -138.1230469, -17.2996902 ], [ -138.120374, -17.3331682 ], [ -138.1235476, -17.3666057 ], [ -138.139332700000011, -17.4165255 ], [ -138.1715135, -17.4656342 ], [ -138.2048049, -17.4967713 ], [ -138.2685525, -17.5356259 ], [ -138.3097808, -17.5498113 ], [ -138.3428307, -17.5562822 ], [ -138.431340299999988, -17.5599483 ], [ -138.4769346, -17.5569187 ], [ -138.5344981, -17.5420083 ], [ -138.5730662, -17.5214581 ], [ -138.6098965, -17.4897564 ], [ -138.631515, -17.4624438 ], [ -138.6516383, -17.4227832 ], [ -138.660741800000011, -17.3895461 ], [ -138.663746800000013, -17.3466565 ] ] ], [ [ [ -142.880321900000013, -17.5530933 ], [ -142.868899699999986, -17.4826177 ], [ -142.8575615, -17.4558005 ], [ -142.8364329, -17.4230409 ], [ -142.8102749, -17.3952124 ], [ -142.784064199999989, -17.3752871 ], [ -142.794568199999986, -17.3383388 ], [ -142.7961118, -17.2802361 ], [ -142.784074, -17.2331632 ], [ -142.7577207, -17.1863246 ], [ -142.7329091, -17.1587076 ], [ -142.6814941, -17.1233028 ], [ -142.6320144, -17.1057519 ], [ -142.597911399999987, -17.1009093 ], [ -142.5549896, -17.1022721 ], [ -142.5223751, -17.1084297 ], [ -142.4760267, -17.1247801 ], [ -142.4255278, -17.1565225 ], [ -142.3921212, -17.1907933 ], [ -142.3588693, -17.2505542 ], [ -142.34753090000001, -17.302184 ], [ -142.3484143, -17.34198 ], [ -142.3549387, -17.3734742 ], [ -142.3692877, -17.4095688 ], [ -142.4006353, -17.4548713 ], [ -142.3690066, -17.492776 ], [ -142.3527393, -17.5238066 ], [ -142.337153199999989, -17.588775 ], [ -142.3384514, -17.6349145 ], [ -142.3442872, -17.6634074 ], [ -142.3585961, -17.6995555 ], [ -142.3840773, -17.7383315 ], [ -142.4336499, -17.7849861 ], [ -142.468683199999987, -17.8062843 ], [ -142.5127118, -17.8243009 ], [ -142.556378599999988, -17.8338151 ], [ -142.628064, -17.8348876 ], [ -142.6889897, -17.8217065 ], [ -142.7177699, -17.8118266 ], [ -142.7631557, -17.7868367 ], [ -142.7951095, -17.7623071 ], [ -142.8330999, -17.7203851 ], [ -142.8586747, -17.6751035 ], [ -142.873173799999989, -17.6339412 ], [ -142.880321900000013, -17.5530933 ] ] ], [ [ [ -143.689363500000013, -17.4456826 ], [ -143.6831176, -17.4002405 ], [ -143.667153, -17.3580084 ], [ -143.6384665, -17.3164729 ], [ -143.6226404, -17.3004908 ], [ -143.5734546, -17.2671166 ], [ -143.5360081, -17.253122 ], [ -143.4864282, -17.2458708 ], [ -143.4090977, -17.2498924 ], [ -143.3659571, -17.2622198 ], [ -143.3278532, -17.2787023 ], [ -143.296965199999988, -17.2977148 ], [ -143.2483303, -17.3452524 ], [ -143.219176800000014, -17.4001254 ], [ -143.2080712, -17.455376 ], [ -143.213987300000014, -17.5170037 ], [ -143.229227900000012, -17.5576976 ], [ -143.2614149, -17.6046246 ], [ -143.3119251, -17.6460256 ], [ -143.3652432, -17.6727117 ], [ -143.4008526, -17.6845785 ], [ -143.4437737, -17.6903366 ], [ -143.4789089, -17.6890568 ], [ -143.5312232, -17.6768228 ], [ -143.572266899999988, -17.6566942 ], [ -143.6057331, -17.6317557 ], [ -143.636629, -17.5977679 ], [ -143.65619670000001, -17.5648976 ], [ -143.6779821, -17.5155221 ], [ -143.6877381, -17.4746222 ], [ -143.689363500000013, -17.4456826 ] ] ], [ [ [ -145.8161417, -17.3507419 ], [ -145.81376370000001, -17.31927 ], [ -145.800249799999989, -17.2715196 ], [ -145.764337399999988, -17.2119229 ], [ -145.736520399999989, -17.1819524 ], [ -145.713271099999986, -17.1641219 ], [ -145.666215200000011, -17.1394971 ], [ -145.608807899999988, -17.1246542 ], [ -145.5374929, -17.1267555 ], [ -145.4642829, -17.1434964 ], [ -145.4159582, -17.1621528 ], [ -145.3666144, -17.1985132 ], [ -145.3292394, -17.2501108 ], [ -145.2902096, -17.277807 ], [ -145.233949, -17.3433598 ], [ -145.2078769, -17.3827054 ], [ -145.188656, -17.4276895 ], [ -145.1813994, -17.4650404 ], [ -145.181930099999988, -17.513792 ], [ -145.191324, -17.5530232 ], [ -145.2098902, -17.5924748 ], [ -145.2411524, -17.6319092 ], [ -145.2685961, -17.6544767 ], [ -145.3266413, -17.6848106 ], [ -145.360475400000013, -17.6951728 ], [ -145.395646, -17.6997904 ], [ -145.4577185, -17.6971571 ], [ -145.526418299999989, -17.6809399 ], [ -145.5677667, -17.6630214 ], [ -145.6043596, -17.6373589 ], [ -145.648639300000013, -17.5847727 ], [ -145.709562, -17.5538406 ], [ -145.7449897, -17.5213757 ], [ -145.7724107, -17.4839712 ], [ -145.7943655, -17.4439571 ], [ -145.8129059, -17.3867754 ], [ -145.8161417, -17.3507419 ] ] ], [ [ [ -142.1412887, -16.8294913 ], [ -142.1399235, -16.8053883 ], [ -142.128251799999987, -16.7585358 ], [ -142.1149637, -16.7307252 ], [ -142.085466200000013, -16.6912217 ], [ -142.0301595, -16.6498213 ], [ -141.9708326, -16.628591 ], [ -141.9198246, -16.6235053 ], [ -141.887912300000011, -16.626268 ], [ -141.8425203, -16.6386725 ], [ -141.806462, -16.6569697 ], [ -141.7799512, -16.6768902 ], [ -141.7522927, -16.7058791 ], [ -141.7202847, -16.7571165 ], [ -141.708954299999988, -16.7869197 ], [ -141.700543, -16.8371069 ], [ -141.7029858, -16.8766513 ], [ -141.713464, -16.9149513 ], [ -141.7263591, -16.9419488 ], [ -141.7565759, -16.9818941 ], [ -141.796275900000012, -17.014013 ], [ -141.858895, -17.0403781 ], [ -141.89831190000001, -17.0466851 ], [ -141.943202899999989, -17.0448825 ], [ -142.008332200000012, -17.0270146 ], [ -142.0377356, -17.0125263 ], [ -142.070179200000013, -16.9887905 ], [ -142.0989994, -16.9573931 ], [ -142.1194126, -16.9234312 ], [ -142.136763300000013, -16.8718125 ], [ -142.1412887, -16.8294913 ] ] ], [ [ [ -148.9237939, -14.8775793 ], [ -148.921253799999988, -14.8446212 ], [ -148.9084324, -14.7979981 ], [ -148.893302299999988, -14.7670442 ], [ -148.8679319, -14.7324238 ], [ -148.8315116, -14.6991402 ], [ -148.7988461, -14.6790457 ], [ -148.766563600000012, -14.665853 ], [ -148.701589500000011, -14.6557485 ], [ -148.629909199999986, -14.6636835 ], [ -148.564208, -14.682434 ], [ -148.514560100000011, -14.7075048 ], [ -148.466879299999988, -14.7502187 ], [ -148.4453435, -14.7818561 ], [ -148.4240427, -14.8350759 ], [ -148.4014196, -14.8105987 ], [ -148.3186159, -14.7461038 ], [ -148.264906200000013, -14.7202288 ], [ -148.189989, -14.7050861 ], [ -148.124152, -14.7048242 ], [ -148.0785467, -14.7138619 ], [ -148.03387570000001, -14.7294417 ], [ -147.9743334, -14.7571593 ], [ -147.926286800000014, -14.7309467 ], [ -147.891981, -14.7209103 ], [ -147.844845, -14.716155 ], [ -147.7841133, -14.7205366 ], [ -147.735400199999987, -14.7312374 ], [ -147.6499996, -14.7440993 ], [ -147.5585889, -14.774815 ], [ -147.5188121, -14.7954012 ], [ -147.4677407, -14.8308849 ], [ -147.4334199, -14.8609116 ], [ -147.407418, -14.8950378 ], [ -147.372255599999988, -14.9309893 ], [ -147.336771700000014, -14.9519338 ], [ -147.2943302, -14.9860843 ], [ -147.2605644, -15.020856 ], [ -147.2207515, -15.0245269 ], [ -147.175823400000013, -15.0343034 ], [ -147.1235048, -15.0599617 ], [ -147.08901130000001, -15.0889536 ], [ -147.064554500000014, -15.1203302 ], [ -147.0484818, -15.1511699 ], [ -147.021764100000013, -15.1231286 ], [ -146.9931578, -15.1022504 ], [ -146.957619599999987, -15.0568799 ], [ -146.9233075, -15.0298224 ], [ -146.8828977, -15.0095079 ], [ -146.8186829, -14.9962919 ], [ -146.758482, -15.0015456 ], [ -146.6355096, -15.0334901 ], [ -146.574632, -15.0452085 ], [ -146.500767599999989, -15.079288 ], [ -146.4611539, -15.1105749 ], [ -146.4228579, -15.101514 ], [ -146.3589663, -15.099597 ], [ -146.315635, -15.1088668 ], [ -146.256539299999986, -15.1135767 ], [ -146.2207546, -15.1247207 ], [ -146.145848699999988, -15.1386847 ], [ -146.1045957, -15.1522264 ], [ -146.071836, -15.1700829 ], [ -146.0446144, -15.1912922 ], [ -146.0214848, -15.2166313 ], [ -145.9975365, -15.2562927 ], [ -145.987207399999988, -15.2842737 ], [ -145.9798662, -15.330533 ], [ -145.9818706, -15.369844 ], [ -145.991561100000013, -15.4268114 ], [ -146.0153795, -15.4937006 ], [ -146.0158367, -15.5292861 ], [ -146.0297716, -15.5989181 ], [ -145.966678300000012, -15.6097974 ], [ -145.9320246, -15.6224087 ], [ -145.8424518, -15.6736174 ], [ -145.782180399999987, -15.7150186 ], [ -145.7601803, -15.7351932 ], [ -145.72603380000001, -15.7806774 ], [ -145.7029599, -15.8265695 ], [ -145.6845159, -15.851808 ], [ -145.6396498, -15.8474916 ], [ -145.598268100000013, -15.8497572 ], [ -145.5492749, -15.8615721 ], [ -145.520981, -15.8742583 ], [ -145.4803421, -15.9024321 ], [ -145.4576693, -15.925719 ], [ -145.4675489, -15.8632397 ], [ -145.466004199999986, -15.8254194 ], [ -145.5017159, -15.8288626 ], [ -145.5569892, -15.8238902 ], [ -145.5817477, -15.8168188 ], [ -145.62409310000001, -15.7970734 ], [ -145.6671594, -15.7703298 ], [ -145.6940505, -15.7470382 ], [ -145.7390239, -15.7000543 ], [ -145.7720242, -15.6490028 ], [ -145.7845687, -15.6115641 ], [ -145.7978606, -15.5286117 ], [ -145.7949197, -15.4727185 ], [ -145.7866019, -15.4399792 ], [ -145.7548184, -15.3715857 ], [ -145.7294478, -15.3361443 ], [ -145.6895213, -15.2993069 ], [ -145.6358511, -15.2698698 ], [ -145.567932399999989, -15.2557292 ], [ -145.518755199999987, -15.2583185 ], [ -145.4820058, -15.2676928 ], [ -145.4449994, -15.2836178 ], [ -145.3924369, -15.2912173 ], [ -145.356281, -15.3036575 ], [ -145.3215643, -15.3228343 ], [ -145.2893827, -15.3496686 ], [ -145.259258499999987, -15.3891598 ], [ -145.2435323, -15.4220204 ], [ -145.2331231, -15.4600019 ], [ -145.22969710000001, -15.5071632 ], [ -145.24365610000001, -15.5709828 ], [ -145.2556684, -15.5959883 ], [ -145.180382900000012, -15.5768111 ], [ -145.134929699999986, -15.5744293 ], [ -145.0919198, -15.5803785 ], [ -145.0175939, -15.604438 ], [ -144.973277200000012, -15.6327065 ], [ -144.9266419, -15.6863969 ], [ -144.9108489, -15.7170726 ], [ -144.8950466, -15.7696123 ], [ -144.8812983, -15.7900623 ], [ -144.857967699999989, -15.8416481 ], [ -144.8462963, -15.8900978 ], [ -144.7873783, -15.9107632 ], [ -144.7956734, -15.8922377 ], [ -144.8289543, -15.8492068 ], [ -144.8478773, -15.8089948 ], [ -144.8575984, -15.7730366 ], [ -144.8605192, -15.7421409 ], [ -144.8555676, -15.6911526 ], [ -144.8310059, -15.6269103 ], [ -144.807681300000013, -15.5935841 ], [ -144.785773, -15.5715208 ], [ -144.7455635, -15.5440029 ], [ -144.7024716, -15.5270648 ], [ -144.6731436, -15.5210669 ], [ -144.6150869, -15.5212662 ], [ -144.5569985, -15.5363325 ], [ -144.5223899, -15.5533518 ], [ -144.4783617, -15.5864583 ], [ -144.446100199999989, -15.6215691 ], [ -144.418925, -15.6653385 ], [ -144.4010351, -15.7288426 ], [ -144.400166500000012, -15.7647475 ], [ -144.4050236, -15.7980288 ], [ -144.41559190000001, -15.8300513 ], [ -144.4383681, -15.8701771 ], [ -144.4687382, -15.9033322 ], [ -144.51589, -15.9356273 ], [ -144.578501, -15.9583431 ], [ -144.620757200000014, -15.9630286 ], [ -144.6687516, -15.960666 ], [ -144.7030052, -15.9523444 ], [ -144.6400744, -16.006311 ], [ -144.611709100000013, -16.0442682 ], [ -144.5871989, -16.0939591 ], [ -144.570927, -16.1666649 ], [ -144.5679189, -16.1961347 ], [ -144.5443564, -16.1784164 ], [ -144.4955699, -16.1537421 ], [ -144.4569449, -16.1423772 ], [ -144.4047444, -16.1377931 ], [ -144.372442, -16.1402518 ], [ -144.319513199999989, -16.1537853 ], [ -144.2858343, -16.1691563 ], [ -144.207365, -16.2143064 ], [ -144.1821342, -16.2351926 ], [ -144.115410700000012, -16.3051868 ], [ -144.0697643, -16.2699985 ], [ -144.0363963, -16.2537832 ], [ -143.9659412, -16.2366033 ], [ -143.9105821, -16.2361773 ], [ -143.8511928, -16.2449694 ], [ -143.7814692, -16.26472 ], [ -143.726199900000012, -16.2932695 ], [ -143.701216100000011, -16.3124055 ], [ -143.6563414, -16.3643953 ], [ -143.598382, -16.3868751 ], [ -143.542698, -16.4161156 ], [ -143.503813400000013, -16.4067448 ], [ -143.4622851, -16.4043122 ], [ -143.405196, -16.409849 ], [ -143.4184821, -16.3814602 ], [ -143.4355851, -16.330158 ], [ -143.4398297, -16.2965183 ], [ -143.4342718, -16.2416945 ], [ -143.4146886, -16.1920581 ], [ -143.395404899999988, -16.1637787 ], [ -143.3611809, -16.129733 ], [ -143.321518, -16.1043673 ], [ -143.2895045, -16.0913063 ], [ -143.2319574, -16.0790604 ], [ -143.163414, -16.0789848 ], [ -143.1143137, -16.0897239 ], [ -143.0698459, -16.1100044 ], [ -143.020765399999988, -16.1436162 ], [ -142.9544043, -16.1728127 ], [ -142.89029450000001, -16.2167493 ], [ -142.860656400000011, -16.2427056 ], [ -142.823242599999986, -16.2941566 ], [ -142.801796599999989, -16.3584444 ], [ -142.7996852, -16.4015293 ], [ -142.8036174, -16.4315291 ], [ -142.7380322, -16.453588 ], [ -142.689423299999987, -16.483972 ], [ -142.6531422, -16.517083 ], [ -142.620373699999988, -16.5679571 ], [ -142.610126, -16.5951549 ], [ -142.5796584, -16.6531141 ], [ -142.5694212, -16.6981687 ], [ -142.5690354, -16.7461788 ], [ -142.5801535, -16.7947823 ], [ -142.6059588, -16.8445695 ], [ -142.634408900000011, -16.8780869 ], [ -142.69091370000001, -16.918853 ], [ -142.732370300000014, -16.9348365 ], [ -142.788658700000013, -16.9425501 ], [ -142.8514394, -16.958818 ], [ -142.84646, -17.0077222 ], [ -142.8556592, -17.0675983 ], [ -142.8413559, -17.0951651 ], [ -142.8228662, -17.1646111 ], [ -142.822692499999988, -17.2108671 ], [ -142.8289476, -17.2439445 ], [ -142.843445, -17.2831248 ], [ -142.8744592, -17.330271 ], [ -142.9014105, -17.3565415 ], [ -142.945497100000011, -17.3855311 ], [ -143.0046868, -17.4074438 ], [ -143.0402552, -17.41241 ], [ -143.0854348, -17.4108656 ], [ -143.1586608, -17.3942041 ], [ -143.1942192, -17.3768109 ], [ -143.250460299999986, -17.3375516 ], [ -143.279065, -17.3099323 ], [ -143.312294400000013, -17.2554101 ], [ -143.3503165, -17.2356356 ], [ -143.3926826, -17.2070362 ], [ -143.457285500000012, -17.1460585 ], [ -143.4837066, -17.1109567 ], [ -143.5177773, -17.0434862 ], [ -143.5328623, -16.9935975 ], [ -143.5394554, -16.9473475 ], [ -143.5666013, -16.9395547 ], [ -143.6069333, -16.9207768 ], [ -143.654962899999987, -16.9031758 ], [ -143.7254465, -16.8674505 ], [ -143.7598939, -16.8580628 ], [ -143.8326749, -16.825816 ], [ -143.873489299999989, -16.8023099 ], [ -143.8919816, -16.8426553 ], [ -143.934133800000012, -16.8945231 ], [ -143.9732405, -16.9226089 ], [ -144.0055404, -16.9379149 ], [ -144.0466396, -16.9497118 ], [ -144.1084381, -16.9530241 ], [ -144.1216416, -16.9673869 ], [ -144.1001899, -17.0210078 ], [ -144.0934866, -17.0611083 ], [ -144.0934301, -17.0987494 ], [ -144.1088153, -17.1654693 ], [ -144.13169, -17.2088254 ], [ -144.1505979, -17.2604007 ], [ -144.1881319, -17.3128238 ], [ -144.2364657, -17.3495143 ], [ -144.2730913, -17.366032 ], [ -144.3064781, -17.3747369 ], [ -144.366703, -17.3787355 ], [ -144.4106844, -17.3730156 ], [ -144.4570512, -17.3575709 ], [ -144.5189117, -17.326213 ], [ -144.564408500000013, -17.2874684 ], [ -144.587830700000012, -17.2557711 ], [ -144.620484, -17.1969249 ], [ -144.6771488, -17.1963124 ], [ -144.70700690000001, -17.1925585 ], [ -144.77381, -17.1737773 ], [ -144.8185614, -17.1548622 ], [ -144.8646836, -17.1306421 ], [ -144.905928100000011, -17.1039157 ], [ -144.9362356, -17.1003924 ], [ -144.9928807, -17.0816606 ], [ -145.0245012, -17.0629689 ], [ -145.0663926, -17.045893 ], [ -145.1156126, -17.0107547 ], [ -145.2277033, -17.0182028 ], [ -145.2572614, -17.0154574 ], [ -145.3000759, -17.003762 ], [ -145.3449762, -16.9804638 ], [ -145.417089800000014, -16.9540261 ], [ -145.4504401, -16.9335606 ], [ -145.4913148, -16.8988175 ], [ -145.5269961, -16.8528204 ], [ -145.5561486, -16.7865903 ], [ -145.5655679, -16.7385639 ], [ -145.6264708, -16.7099804 ], [ -145.6832704, -16.6652063 ], [ -145.7272908, -16.6225092 ], [ -145.8019127, -16.5604091 ], [ -145.855768, -16.4985738 ], [ -145.8860253, -16.4672788 ], [ -145.946456500000011, -16.3944413 ], [ -145.968321300000014, -16.3563848 ], [ -145.989173099999988, -16.304874 ], [ -146.021087, -16.2387364 ], [ -146.1076665, -16.2091623 ], [ -146.1268483, -16.2667553 ], [ -146.1500256, -16.3032227 ], [ -146.173107, -16.3282073 ], [ -146.208717299999989, -16.3553691 ], [ -146.235582099999988, -16.3691668 ], [ -146.2790726, -16.3823699 ], [ -146.3495159, -16.3897531 ], [ -146.4116347, -16.3854127 ], [ -146.449786100000011, -16.3737836 ], [ -146.4968611, -16.3472364 ], [ -146.5436508, -16.3014548 ], [ -146.5726424, -16.2591575 ], [ -146.591690199999988, -16.2210284 ], [ -146.6026125, -16.1831211 ], [ -146.6056194, -16.1413215 ], [ -146.59832, -16.0925114 ], [ -146.5832806, -16.0538189 ], [ -146.641942699999987, -16.0457649 ], [ -146.7699972, -16.0121616 ], [ -146.8702894, -15.9675987 ], [ -146.9061958, -15.9489172 ], [ -146.9787489, -15.9016572 ], [ -147.016966200000013, -15.8642707 ], [ -147.062641500000012, -15.802301 ], [ -147.0813868, -15.7625445 ], [ -147.0957098, -15.7010429 ], [ -147.0962261, -15.6612783 ], [ -147.087803400000013, -15.6148725 ], [ -147.0733587, -15.5759821 ], [ -147.052667500000013, -15.5423222 ], [ -147.0144965, -15.5025544 ], [ -147.0648228, -15.4231535 ], [ -147.099509, -15.4505396 ], [ -147.1348817, -15.4684376 ], [ -147.1809371, -15.4814664 ], [ -147.2312653, -15.508175 ], [ -147.2831214, -15.5221369 ], [ -147.3220172, -15.5253866 ], [ -147.3753376, -15.5232652 ], [ -147.419848699999989, -15.5151742 ], [ -147.4842858, -15.5175009 ], [ -147.528878, -15.5123367 ], [ -147.5712627, -15.4979903 ], [ -147.637229100000013, -15.4612751 ], [ -147.6641115, -15.4397817 ], [ -147.7417321, -15.4465361 ], [ -147.791827899999987, -15.4387895 ], [ -147.82428010000001, -15.4276409 ], [ -147.870959, -15.4015766 ], [ -147.9649335, -15.3727188 ], [ -148.0268987, -15.3345876 ], [ -148.0814308, -15.2826109 ], [ -148.1629757, -15.3166263 ], [ -148.1946806, -15.3242077 ], [ -148.2411076, -15.3268177 ], [ -148.2938206, -15.3181943 ], [ -148.3572115, -15.2887738 ], [ -148.3936467, -15.259343 ], [ -148.4303075, -15.217739 ], [ -148.4658412, -15.1576777 ], [ -148.4908058, -15.0931543 ], [ -148.4971899, -15.0548044 ], [ -148.5207729, -15.0711669 ], [ -148.5647203, -15.0910904 ], [ -148.6216939, -15.107591 ], [ -148.685429199999987, -15.1111541 ], [ -148.7455793, -15.1003161 ], [ -148.81168120000001, -15.0722602 ], [ -148.8466386, -15.0482092 ], [ -148.877787500000011, -15.0168635 ], [ -148.899000300000012, -14.9841066 ], [ -148.9142386, -14.94497 ], [ -148.9237939, -14.8775793 ] ], [ [ -145.4133488, -16.0131164 ], [ -145.4082913, -16.0347654 ], [ -145.3850663, -16.0723265 ], [ -145.3610707, -16.1440363 ], [ -145.338227100000012, -16.1682642 ], [ -145.3115004, -16.2114131 ], [ -145.2437366, -16.2661479 ], [ -145.1970229, -16.3213647 ], [ -145.177602, -16.3523329 ], [ -145.1584736, -16.4035543 ], [ -145.1526849, -16.4517109 ], [ -145.1607072, -16.5087558 ], [ -145.120420599999989, -16.517607 ], [ -145.0664286, -16.5369908 ], [ -145.0118458, -16.5665047 ], [ -144.986374500000011, -16.5859049 ], [ -144.8975941, -16.5879124 ], [ -144.8613393, -16.5781054 ], [ -144.8224132, -16.5732064 ], [ -144.76060720000001, -16.5730313 ], [ -144.7155142, -16.5803182 ], [ -144.669753, -16.5971271 ], [ -144.634910600000012, -16.6161435 ], [ -144.5783826, -16.6685938 ], [ -144.5423882, -16.6780314 ], [ -144.489762399999989, -16.6986872 ], [ -144.467543299999988, -16.7116185 ], [ -144.4525621, -16.6909313 ], [ -144.4542075, -16.6751211 ], [ -144.499956, -16.6491771 ], [ -144.536987900000014, -16.6223467 ], [ -144.6031145, -16.558745 ], [ -144.6242914, -16.5323655 ], [ -144.6469224, -16.4912805 ], [ -144.6674026, -16.4308751 ], [ -144.671511, -16.4039145 ], [ -144.6965155, -16.4281082 ], [ -144.7392795, -16.4566231 ], [ -144.7747087, -16.4719716 ], [ -144.828552699999989, -16.4837517 ], [ -144.9052767, -16.4812212 ], [ -144.964481400000011, -16.4644972 ], [ -144.9955974, -16.450351 ], [ -145.060493900000012, -16.4134649 ], [ -145.104968500000012, -16.3775538 ], [ -145.1450251, -16.3290669 ], [ -145.1893591, -16.2616214 ], [ -145.206981500000012, -16.2214329 ], [ -145.2178427, -16.1617256 ], [ -145.2824384, -16.128153 ], [ -145.38879080000001, -16.0407062 ], [ -145.4133488, -16.0131164 ] ], [ [ -143.1798489, -16.6096972 ], [ -143.170905, -16.6574984 ], [ -143.1708298, -16.6823036 ], [ -143.1783313, -16.724987 ], [ -143.1293229, -16.7316022 ], [ -143.08454660000001, -16.7455888 ], [ -143.083418099999989, -16.6937985 ], [ -143.0867187, -16.660187 ], [ -143.081767500000012, -16.6128539 ], [ -143.107903, -16.6074494 ], [ -143.1410271, -16.6111253 ], [ -143.1798489, -16.6096972 ] ] ], [ [ [ -141.642789, -14.1050844 ], [ -141.635128, -14.0392552 ], [ -141.6160003, -13.9938264 ], [ -141.5960361, -13.9653714 ], [ -141.563476799999989, -13.9343725 ], [ -141.5276853, -13.9122752 ], [ -141.4647699, -13.8928356 ], [ -141.3987184, -13.8935614 ], [ -141.3676149, -13.9010842 ], [ -141.326615800000013, -13.9191501 ], [ -141.2854278, -13.950022 ], [ -141.23931540000001, -13.9464429 ], [ -141.176288699999986, -13.9566242 ], [ -141.116285800000014, -13.978536 ], [ -141.082258, -14.0001597 ], [ -141.0458159, -14.0291806 ], [ -141.019264600000014, -14.0565227 ], [ -140.9882355, -14.1036523 ], [ -140.9710725, -14.154924 ], [ -140.967504100000014, -14.1995267 ], [ -140.9730453, -14.2389474 ], [ -140.982927100000012, -14.2691773 ], [ -141.0026526, -14.3056735 ], [ -141.0325731, -14.3410633 ], [ -141.0575179, -14.3611829 ], [ -141.093167099999988, -14.3812872 ], [ -141.1272223, -14.3929565 ], [ -141.169429799999989, -14.399486 ], [ -141.275241200000011, -14.3930126 ], [ -141.3327172, -14.3772481 ], [ -141.3735949, -14.3541926 ], [ -141.4237775, -14.3112979 ], [ -141.460644800000011, -14.3079557 ], [ -141.509134499999988, -14.2931068 ], [ -141.551902899999988, -14.2691499 ], [ -141.5810559, -14.2445287 ], [ -141.6086101, -14.2109377 ], [ -141.6271585, -14.1766136 ], [ -141.638901, -14.1391452 ], [ -141.642789, -14.1050844 ] ] ], [ [ [ -139.0549494, -14.8129205 ], [ -139.044191500000011, -14.7528191 ], [ -139.0226896, -14.7079577 ], [ -139.0045141, -14.6839894 ], [ -138.96609, -14.6472149 ], [ -138.923573299999987, -14.6204741 ], [ -138.8936885, -14.6084511 ], [ -138.8474364, -14.5976601 ], [ -138.7883635, -14.5983984 ], [ -138.7483131, -14.6081328 ], [ -138.7110658, -14.6253642 ], [ -138.6843304, -14.6437306 ], [ -138.6349514, -14.6925964 ], [ -138.5979635, -14.7518418 ], [ -138.583781499999986, -14.8037343 ], [ -138.5824878, -14.843222 ], [ -138.59625, -14.9051315 ], [ -138.615033, -14.9430484 ], [ -138.6595675, -14.9939268 ], [ -138.7051482, -15.0223824 ], [ -138.7614031, -15.0392488 ], [ -138.8043141, -15.0422379 ], [ -138.8639287, -15.0337408 ], [ -138.9092726, -15.0160266 ], [ -138.9532183, -14.9920114 ], [ -138.9867118, -14.9663897 ], [ -139.024773399999987, -14.9214915 ], [ -139.04862510000001, -14.8657023 ], [ -139.0549494, -14.8129205 ] ] ], [ [ [ -140.3769547, -15.9851594 ], [ -140.3666443, -15.9190664 ], [ -140.349576399999989, -15.8806997 ], [ -140.307875200000012, -15.829221 ], [ -140.2766545, -15.8057643 ], [ -140.2111531, -15.7763056 ], [ -140.1514508, -15.7649037 ], [ -140.108607, -15.7639958 ], [ -140.069279099999989, -15.7682078 ], [ -140.0265896, -15.7786453 ], [ -139.974819599999989, -15.8050222 ], [ -139.9384389, -15.8368312 ], [ -139.9142765, -15.8692158 ], [ -139.89987, -15.8976373 ], [ -139.887227700000011, -15.9424514 ], [ -139.8853645, -15.9966091 ], [ -139.8952725, -16.0426717 ], [ -139.913162699999987, -16.0822476 ], [ -139.955829, -16.1361851 ], [ -140.010739199999989, -16.1769867 ], [ -140.054168, -16.1959816 ], [ -140.0990382, -16.2069831 ], [ -140.1602208, -16.2089835 ], [ -140.198874600000011, -16.2027757 ], [ -140.2504539, -16.1846471 ], [ -140.2846037, -16.1644061 ], [ -140.3189083, -16.1338106 ], [ -140.347264700000011, -16.0958225 ], [ -140.371555199999989, -16.0330548 ], [ -140.3769547, -15.9851594 ] ] ], [ [ [ -142.739431599999989, -16.1641417 ], [ -142.735904299999987, -16.1230125 ], [ -142.7232894, -16.0812411 ], [ -142.7038375, -16.04566 ], [ -142.6807901, -15.9865906 ], [ -142.652028699999988, -15.9306218 ], [ -142.6020738, -15.8702978 ], [ -142.5231187, -15.7970878 ], [ -142.4516932, -15.753245 ], [ -142.4248598, -15.7084701 ], [ -142.3982428, -15.6786795 ], [ -142.340971599999989, -15.6335213 ], [ -142.2938373, -15.5843414 ], [ -142.249006, -15.5576324 ], [ -142.201373600000011, -15.5392529 ], [ -142.160358800000012, -15.5315506 ], [ -142.111860400000012, -15.5305254 ], [ -142.063190100000014, -15.5396092 ], [ -142.030904, -15.552316 ], [ -141.9993596, -15.5714049 ], [ -141.9661305, -15.6013514 ], [ -141.9404802, -15.6375889 ], [ -141.925054499999987, -15.6736701 ], [ -141.9157849, -15.7395187 ], [ -141.9208964, -15.7786484 ], [ -141.9447831, -15.8381651 ], [ -141.9719269, -15.8761736 ], [ -142.056956, -15.9675497 ], [ -142.0804635, -15.9983115 ], [ -142.1134304, -16.0273158 ], [ -142.13570820000001, -16.0869302 ], [ -142.1713748, -16.1599795 ], [ -142.1796534, -16.1860054 ], [ -142.203386599999988, -16.2357295 ], [ -142.2257177, -16.2714326 ], [ -142.2827907, -16.3531937 ], [ -142.327169199999986, -16.3974282 ], [ -142.361097699999988, -16.4193536 ], [ -142.413140199999987, -16.4389977 ], [ -142.4524504, -16.4459233 ], [ -142.5080672, -16.4469296 ], [ -142.5714036, -16.4324576 ], [ -142.6083995, -16.4142783 ], [ -142.6579516, -16.372257 ], [ -142.6784836, -16.3447422 ], [ -142.698230099999989, -16.30561 ], [ -142.7117251, -16.2613064 ], [ -142.725039900000013, -16.233582 ], [ -142.736601799999988, -16.1932135 ], [ -142.739431599999989, -16.1641417 ] ] ], [ [ [ -148.491090500000013, -15.8438654 ], [ -148.4889863, -15.8192191 ], [ -148.4717052, -15.7462612 ], [ -148.4480824, -15.7005053 ], [ -148.4279238, -15.6754749 ], [ -148.3919387, -15.6446305 ], [ -148.3557107, -15.6247713 ], [ -148.2885794, -15.6065816 ], [ -148.2405992, -15.6062247 ], [ -148.201004899999987, -15.6138025 ], [ -148.1681802, -15.626429 ], [ -148.12352150000001, -15.655396 ], [ -148.0674056, -15.7097521 ], [ -148.0371979, -15.7508281 ], [ -148.021547, -15.7869984 ], [ -148.0121208, -15.8465773 ], [ -148.018772399999989, -15.8982568 ], [ -148.0318599, -15.9347838 ], [ -148.0490547, -15.9649984 ], [ -148.074636, -15.9981643 ], [ -148.1051163, -16.0249885 ], [ -148.166309, -16.0583299 ], [ -148.2276086, -16.0724999 ], [ -148.2694917, -16.0725701 ], [ -148.3165324, -16.0633531 ], [ -148.3742235, -16.0373422 ], [ -148.4165275, -16.00582 ], [ -148.4564781, -15.9600916 ], [ -148.4845852, -15.8977724 ], [ -148.491090500000013, -15.8438654 ] ] ], [ [ [ -141.1094417, -15.8222334 ], [ -141.0995101, -15.7632573 ], [ -141.0781915, -15.7178995 ], [ -141.059636899999987, -15.6926237 ], [ -141.0312959, -15.665379 ], [ -140.9936147, -15.6416813 ], [ -140.895271400000013, -15.6082784 ], [ -140.851351, -15.6016212 ], [ -140.8174056, -15.6024199 ], [ -140.7703315, -15.6123053 ], [ -140.73060430000001, -15.6297564 ], [ -140.685683399999988, -15.6633595 ], [ -140.6678809, -15.6830772 ], [ -140.639584500000012, -15.7307824 ], [ -140.628949799999987, -15.7632024 ], [ -140.623211199999986, -15.8054635 ], [ -140.6295706, -15.8619723 ], [ -140.6490602, -15.913191 ], [ -140.6887082, -15.9677015 ], [ -140.7222253, -15.9956664 ], [ -140.7849163, -16.0271069 ], [ -140.827414, -16.0382205 ], [ -140.8894856, -16.0415661 ], [ -140.9375904, -16.033608 ], [ -140.9798353, -16.0179164 ], [ -141.011608200000012, -15.999974 ], [ -141.054675, -15.9637647 ], [ -141.07566030000001, -15.9366042 ], [ -141.0979321, -15.8916421 ], [ -141.1060186, -15.8614345 ], [ -141.1094417, -15.8222334 ] ] ], [ [ [ -144.7707316, -14.9600442 ], [ -144.768531, -14.9304339 ], [ -144.758844900000014, -14.8927613 ], [ -144.736451100000011, -14.8493766 ], [ -144.7080066, -14.81263 ], [ -144.6759678, -14.7846237 ], [ -144.6455501, -14.7665969 ], [ -144.610016699999989, -14.7529189 ], [ -144.5644354, -14.7435225 ], [ -144.5262775, -14.7429438 ], [ -144.4905367, -14.7483102 ], [ -144.4441084, -14.7646577 ], [ -144.416522500000013, -14.7800855 ], [ -144.3817891, -14.8084207 ], [ -144.3650178, -14.8275985 ], [ -144.341594500000014, -14.8666369 ], [ -144.3323465, -14.8911101 ], [ -144.32430260000001, -14.9351029 ], [ -144.3310534, -15.0001246 ], [ -144.3497318, -15.0454715 ], [ -144.3689815, -15.0735977 ], [ -144.408319400000011, -15.1103888 ], [ -144.4552569, -15.1380339 ], [ -144.5179914, -15.1570336 ], [ -144.5852142, -15.1589146 ], [ -144.621646, -15.1519657 ], [ -144.6577376, -15.1380804 ], [ -144.7123511, -15.0990985 ], [ -144.740592099999986, -15.0638547 ], [ -144.7655815, -15.0043332 ], [ -144.7707316, -14.9600442 ] ] ], [ [ [ -145.469432899999987, -14.693116 ], [ -145.4657057, -14.6588725 ], [ -145.4444101, -14.5954278 ], [ -145.4392655, -14.5685916 ], [ -145.4240955, -14.5286642 ], [ -145.3946884, -14.4819699 ], [ -145.3289282, -14.4129231 ], [ -145.2852393, -14.3841517 ], [ -145.213661, -14.3569522 ], [ -145.1794246, -14.3161558 ], [ -145.1510848, -14.2929381 ], [ -145.09351860000001, -14.2535105 ], [ -145.0555918, -14.2319536 ], [ -144.9670789, -14.1992573 ], [ -144.9135915, -14.1879911 ], [ -144.8603636, -14.1881533 ], [ -144.8327864, -14.1917807 ], [ -144.7870917, -14.2052944 ], [ -144.7531683, -14.222441 ], [ -144.721583399999986, -14.2458092 ], [ -144.6946379, -14.2744728 ], [ -144.6678795, -14.3180232 ], [ -144.655385, -14.3523398 ], [ -144.648915, -14.3894342 ], [ -144.6496378, -14.4275567 ], [ -144.663406400000014, -14.4812178 ], [ -144.68447, -14.5195207 ], [ -144.729761599999989, -14.5659679 ], [ -144.7840664, -14.5977315 ], [ -144.8372861, -14.6422379 ], [ -144.9298255, -14.6897736 ], [ -144.9735219, -14.7044625 ], [ -145.0074718, -14.7509443 ], [ -145.0692927, -14.8291488 ], [ -145.0988385, -14.8576353 ], [ -145.1463257, -14.8892757 ], [ -145.1710391, -14.9003692 ], [ -145.2182204, -14.9120525 ], [ -145.276190500000013, -14.9117669 ], [ -145.3165148, -14.9022548 ], [ -145.375713499999989, -14.8708836 ], [ -145.412230599999987, -14.8370111 ], [ -145.4312928, -14.8142038 ], [ -145.4559286, -14.7686612 ], [ -145.4677346, -14.7225932 ], [ -145.469432899999987, -14.693116 ] ] ], [ [ [ -146.6099053, -14.5518711 ], [ -146.606673, -14.520099 ], [ -146.5963346, -14.4829109 ], [ -146.577931400000011, -14.4423899 ], [ -146.5567202, -14.3805057 ], [ -146.5285189, -14.339137 ], [ -146.4882227, -14.2975309 ], [ -146.4428804, -14.2673045 ], [ -146.3702265, -14.2398405 ], [ -146.3322497, -14.2319825 ], [ -146.270015699999988, -14.2250246 ], [ -146.2253928, -14.2263688 ], [ -146.1584373, -14.244301 ], [ -146.053077699999989, -14.1876912 ], [ -146.015581700000013, -14.1654559 ], [ -145.9815921, -14.1503389 ], [ -145.9226208, -14.1343122 ], [ -145.8857425, -14.1290613 ], [ -145.83872980000001, -14.1291406 ], [ -145.8010783, -14.1364791 ], [ -145.7486231, -14.1590614 ], [ -145.7176561, -14.1811312 ], [ -145.682554, -14.2190127 ], [ -145.6450504, -14.2853967 ], [ -145.6315601, -14.3314296 ], [ -145.628691300000014, -14.3645478 ], [ -145.6341344, -14.4119292 ], [ -145.6441302, -14.4428846 ], [ -145.6621328, -14.4769068 ], [ -145.698865399999988, -14.521522 ], [ -145.7438553, -14.5631382 ], [ -145.793217199999987, -14.596264 ], [ -145.8448377, -14.6246436 ], [ -145.8736405, -14.6359918 ], [ -145.9577957, -14.6582866 ], [ -146.017501399999986, -14.6675028 ], [ -146.0565527, -14.6673958 ], [ -146.114103199999988, -14.6561921 ], [ -146.162746199999987, -14.6907275 ], [ -146.194940300000013, -14.7062751 ], [ -146.254447199999987, -14.7209268 ], [ -146.3143873, -14.7542438 ], [ -146.372498900000011, -14.7673741 ], [ -146.424673, -14.7661403 ], [ -146.4710196, -14.7545057 ], [ -146.5055916, -14.7382197 ], [ -146.5567356, -14.696404 ], [ -146.5840091, -14.6575552 ], [ -146.6050263, -14.602128 ], [ -146.6099053, -14.5518711 ] ] ], [ [ [ -135.3282126, -23.1752068 ], [ -135.3195227, -23.1173984 ], [ -135.293882, -23.0644943 ], [ -135.2684003, -23.0342154 ], [ -135.1698208, -22.9425566 ], [ -135.130016, -22.8856165 ], [ -135.082587100000012, -22.8407728 ], [ -135.0404078, -22.8178945 ], [ -134.987932300000011, -22.8039984 ], [ -134.9515082, -22.8020502 ], [ -134.8937603, -22.8101131 ], [ -134.8320163, -22.8330316 ], [ -134.783230300000014, -22.8631162 ], [ -134.7380689, -22.9146094 ], [ -134.7214004, -22.9480774 ], [ -134.6902211, -22.973149 ], [ -134.6677441, -22.9992983 ], [ -134.643067800000011, -23.0439349 ], [ -134.632463, -23.0809928 ], [ -134.6292301, -23.1253934 ], [ -134.6353389, -23.1660642 ], [ -134.5920471, -23.1384102 ], [ -134.5292358, -23.1190003 ], [ -134.4716223, -23.116629 ], [ -134.4310755, -23.1223055 ], [ -134.395922500000012, -23.1339436 ], [ -134.348488, -23.1621177 ], [ -134.318478699999986, -23.1910083 ], [ -134.2785546, -23.241676 ], [ -134.2563537, -23.2852935 ], [ -134.2462415, -23.3279539 ], [ -134.2451108, -23.363704 ], [ -134.2547036, -23.4141989 ], [ -134.2776792, -23.4646635 ], [ -134.294895200000013, -23.4888914 ], [ -134.340204199999988, -23.5297413 ], [ -134.4052575, -23.5627595 ], [ -134.4470972, -23.5732448 ], [ -134.5140471, -23.5729367 ], [ -134.5540245, -23.5627527 ], [ -134.6071679, -23.5351206 ], [ -134.6546486, -23.4883378 ], [ -134.6814817, -23.439916 ], [ -134.7024118, -23.3830218 ], [ -134.7087405, -23.3532422 ], [ -134.740620400000012, -23.3782624 ], [ -134.7988542, -23.4058154 ], [ -134.8937009, -23.4372019 ], [ -134.9269859, -23.4449226 ], [ -134.997114399999987, -23.4440569 ], [ -135.0404039, -23.431448 ], [ -135.1511745, -23.3805043 ], [ -135.2199592, -23.3537948 ], [ -135.2495309, -23.3337418 ], [ -135.2911509, -23.2892721 ], [ -135.3103648, -23.2558388 ], [ -135.323101400000013, -23.2188079 ], [ -135.3282126, -23.1752068 ] ] ], [ [ [ -137.3587535, -23.1669202 ], [ -137.352205700000013, -23.1117628 ], [ -137.335235899999986, -23.0635362 ], [ -137.3185111, -23.0348068 ], [ -137.293900799999989, -23.005277 ], [ -137.2679221, -22.9833191 ], [ -137.2248199, -22.9557085 ], [ -137.1640802, -22.9345645 ], [ -137.104643399999986, -22.9315157 ], [ -137.0433598, -22.9460064 ], [ -137.00660160000001, -22.964741 ], [ -136.973356700000011, -22.9908705 ], [ -136.9484024, -23.019071 ], [ -136.921297399999986, -23.0643267 ], [ -136.9050485, -23.1236838 ], [ -136.905209500000012, -23.1760878 ], [ -136.922377399999988, -23.235781 ], [ -136.9588192, -23.2985813 ], [ -136.9867021, -23.3291112 ], [ -137.0232862, -23.3552812 ], [ -137.0554948, -23.3701126 ], [ -137.1103, -23.382744 ], [ -137.1506738, -23.3832225 ], [ -137.2078122, -23.3712556 ], [ -137.2565289, -23.3479861 ], [ -137.3002812, -23.3127072 ], [ -137.3363684, -23.2610159 ], [ -137.3546087, -23.2080028 ], [ -137.3587535, -23.1669202 ] ] ], [ [ [ -140.893228099999988, -21.6838574 ], [ -140.8880044, -21.6403534 ], [ -140.8708567, -21.594622 ], [ -140.8358748, -21.5468793 ], [ -140.8122237, -21.5074589 ], [ -140.7835006, -21.4768704 ], [ -140.751004099999989, -21.4536559 ], [ -140.7129282, -21.4364289 ], [ -140.6834393, -21.4285848 ], [ -140.630946099999989, -21.4240676 ], [ -140.5622874, -21.4322979 ], [ -140.514216299999987, -21.45099 ], [ -140.479771699999986, -21.4737953 ], [ -140.4435815, -21.5116456 ], [ -140.426549200000011, -21.5388729 ], [ -140.410458799999986, -21.5795337 ], [ -140.387817899999988, -21.6114856 ], [ -140.3703628, -21.6520672 ], [ -140.362133300000011, -21.7051314 ], [ -140.3640987, -21.7362914 ], [ -140.374774, -21.7782772 ], [ -140.3894146, -21.8088137 ], [ -140.4214495, -21.8499322 ], [ -140.4477214, -21.8724738 ], [ -140.4810545, -21.8934453 ], [ -140.5266861, -21.9117089 ], [ -140.582569, -21.9253273 ], [ -140.6180115, -21.9281128 ], [ -140.663389, -21.9230194 ], [ -140.703832799999986, -21.9099756 ], [ -140.7815565, -21.8752474 ], [ -140.8110959, -21.8535725 ], [ -140.8455384, -21.8185057 ], [ -140.8687194, -21.7818678 ], [ -140.8824196, -21.7495101 ], [ -140.893228099999988, -21.6838574 ] ] ], [ [ [ -139.249062400000014, -21.8827769 ], [ -139.242999, -21.8324792 ], [ -139.227453, -21.7916076 ], [ -139.203103, -21.7549637 ], [ -139.1675813, -21.7205878 ], [ -139.124249600000013, -21.689215 ], [ -139.0885654, -21.6714439 ], [ -139.070509499999986, -21.6513863 ], [ -139.0206605, -21.6115358 ], [ -138.9792387, -21.59124 ], [ -138.9443865, -21.5819496 ], [ -138.8894072, -21.5779831 ], [ -138.8532408, -21.5814937 ], [ -138.7907093, -21.5981495 ], [ -138.759938799999986, -21.6130984 ], [ -138.6987772, -21.6354627 ], [ -138.6659439, -21.6569195 ], [ -138.6215225, -21.6995927 ], [ -138.5939347, -21.740642 ], [ -138.579519299999987, -21.7769079 ], [ -138.5721284, -21.8185682 ], [ -138.573455700000011, -21.8590732 ], [ -138.5852109, -21.905058 ], [ -138.600889599999988, -21.9366304 ], [ -138.6429116, -21.9860348 ], [ -138.674609, -22.0088497 ], [ -138.6172723, -22.0380878 ], [ -138.5929583, -22.0571371 ], [ -138.5433382, -22.1086211 ], [ -138.512821300000013, -22.1562455 ], [ -138.4958179, -22.2204272 ], [ -138.4994269, -22.2848548 ], [ -138.510795300000012, -22.3275977 ], [ -138.5336029, -22.3718052 ], [ -138.5631933, -22.4058798 ], [ -138.588312300000013, -22.426106 ], [ -138.627395400000012, -22.447527 ], [ -138.6847252, -22.4706144 ], [ -138.7342544, -22.4821353 ], [ -138.7699499, -22.4830413 ], [ -138.8330637, -22.4703335 ], [ -138.8717059, -22.4516412 ], [ -138.917728899999986, -22.4135818 ], [ -138.9385955, -22.385929 ], [ -138.959126199999986, -22.3418198 ], [ -138.9799071, -22.3074774 ], [ -138.9952467, -22.2604581 ], [ -138.998529, -22.2310007 ], [ -138.9959672, -22.1893865 ], [ -138.977385700000013, -22.133552 ], [ -138.943576400000012, -22.0861523 ], [ -139.0100272, -22.0922769 ], [ -139.050505, -22.0897672 ], [ -139.083316200000013, -22.0822247 ], [ -139.1404908, -22.0597569 ], [ -139.1731873, -22.0378645 ], [ -139.1974811, -22.0147292 ], [ -139.2214459, -21.9824742 ], [ -139.2413584, -21.9367759 ], [ -139.249062400000014, -21.8827769 ] ] ], [ [ [ -136.4137901, -22.0273844 ], [ -136.4116543, -21.9947398 ], [ -136.4027624, -21.9558956 ], [ -136.3753369, -21.8978841 ], [ -136.3472272, -21.8636864 ], [ -136.3132989, -21.8343802 ], [ -136.2662661, -21.8077653 ], [ -136.2032922, -21.7916352 ], [ -136.1672575, -21.7907425 ], [ -136.1069872, -21.8032332 ], [ -136.0649261, -21.8234921 ], [ -136.040390800000011, -21.8414073 ], [ -136.0124655, -21.8703769 ], [ -135.9901958, -21.9052227 ], [ -135.9725116, -21.9546321 ], [ -135.966156, -22.00497 ], [ -135.969488399999989, -22.0445673 ], [ -135.9813485, -22.085542 ], [ -136.011671400000012, -22.1447347 ], [ -136.0376707, -22.1757359 ], [ -136.087821600000012, -22.2126067 ], [ -136.1283487, -22.2294245 ], [ -136.1585277, -22.2360769 ], [ -136.1997202, -22.2380469 ], [ -136.2565908, -22.2290761 ], [ -136.299072599999988, -22.2115087 ], [ -136.3365085, -22.186457 ], [ -136.3782364, -22.1404281 ], [ -136.3985822, -22.1018451 ], [ -136.4112951, -22.0566473 ], [ -136.4137901, -22.0273844 ] ] ], [ [ [ -135.852261700000014, -21.4793715 ], [ -135.8504341, -21.4547835 ], [ -135.8350145, -21.4008781 ], [ -135.815086, -21.3661441 ], [ -135.7767419, -21.3252714 ], [ -135.748213099999987, -21.3058681 ], [ -135.7066222, -21.2873206 ], [ -135.6650457, -21.2776517 ], [ -135.6262769, -21.2754113 ], [ -135.5822226, -21.2813343 ], [ -135.5397974, -21.2747669 ], [ -135.480358700000011, -21.2788559 ], [ -135.4378317, -21.2919503 ], [ -135.3624979, -21.3320424 ], [ -135.323502, -21.3627448 ], [ -135.2786927, -21.4177501 ], [ -135.255305, -21.4683026 ], [ -135.2474977, -21.5036186 ], [ -135.2462906, -21.5392439 ], [ -135.2553443, -21.5892196 ], [ -135.271530399999989, -21.6263128 ], [ -135.2914884, -21.6556724 ], [ -135.335091799999987, -21.6955135 ], [ -135.3758458, -21.7176137 ], [ -135.4159903, -21.7294567 ], [ -135.4564273, -21.754142 ], [ -135.5090705, -21.7706014 ], [ -135.5492367, -21.7737564 ], [ -135.651812, -21.7632628 ], [ -135.708595800000012, -21.7432527 ], [ -135.73766470000001, -21.7253056 ], [ -135.778212, -21.6890007 ], [ -135.7997585, -21.6608915 ], [ -135.823786399999989, -21.6120844 ], [ -135.837905, -21.5696685 ], [ -135.8495294, -21.5137609 ], [ -135.852261700000014, -21.4793715 ] ] ], [ [ [ -136.9663026, -21.2969446 ], [ -136.9590556, -21.2486386 ], [ -136.9467338, -21.2161782 ], [ -136.916092, -21.1695946 ], [ -136.8883956, -21.1432693 ], [ -136.8424499, -21.1147409 ], [ -136.802944200000013, -21.1006406 ], [ -136.7541271, -21.0933411 ], [ -136.7110729, -21.095738 ], [ -136.6476362, -21.1158517 ], [ -136.6084971, -21.1196135 ], [ -136.5679041, -21.1308886 ], [ -136.527639099999988, -21.1270631 ], [ -136.4660852, -21.1356701 ], [ -136.4333533, -21.1481603 ], [ -136.389484399999986, -21.1760781 ], [ -136.358737600000012, -21.207394 ], [ -136.3303335, -21.2551897 ], [ -136.2687431, -21.2829623 ], [ -136.2298941, -21.3149038 ], [ -136.207545399999987, -21.3423576 ], [ -136.1843557, -21.3851979 ], [ -136.1672431, -21.4332619 ], [ -136.160948, -21.4705153 ], [ -136.1642354, -21.5254671 ], [ -136.1798442, -21.572786 ], [ -136.2077567, -21.6172741 ], [ -136.2559271, -21.6615852 ], [ -136.2815371, -21.676404 ], [ -136.3444667, -21.6967405 ], [ -136.387203, -21.7002019 ], [ -136.4331483, -21.6950845 ], [ -136.5008774, -21.6705319 ], [ -136.5505503, -21.6347137 ], [ -136.5878865, -21.5909231 ], [ -136.6091934, -21.5538261 ], [ -136.62936, -21.5470081 ], [ -136.6754518, -21.5465195 ], [ -136.7387837, -21.5309466 ], [ -136.7696, -21.5160864 ], [ -136.812349, -21.5066539 ], [ -136.8634351, -21.482442 ], [ -136.9162521, -21.4353552 ], [ -136.942142499999989, -21.397738 ], [ -136.954507799999988, -21.3699979 ], [ -136.9651867, -21.3238376 ], [ -136.9663026, -21.2969446 ] ] ], [ [ [ -143.7701243, -20.4407225 ], [ -143.7658734, -20.3992974 ], [ -143.7544035, -20.3623887 ], [ -143.7208612, -20.3089887 ], [ -143.6752746, -20.2622901 ], [ -143.6554322, -20.246927 ], [ -143.610665899999987, -20.2238061 ], [ -143.5764881, -20.2142515 ], [ -143.54112, -20.2105005 ], [ -143.4758582, -20.2191829 ], [ -143.438346599999988, -20.2343068 ], [ -143.4126257, -20.2501536 ], [ -143.363809, -20.2950239 ], [ -143.3437121, -20.3207088 ], [ -143.320244300000013, -20.3681082 ], [ -143.3118067, -20.4038516 ], [ -143.2863748, -20.401959 ], [ -143.236383600000011, -20.4064381 ], [ -143.206465900000012, -20.4147144 ], [ -143.164839699999987, -20.4350031 ], [ -143.134321300000011, -20.4578906 ], [ -143.1024708, -20.494416 ], [ -143.058109699999989, -20.489088 ], [ -143.0030882, -20.4954573 ], [ -142.96933820000001, -20.5063334 ], [ -142.9288812, -20.5285151 ], [ -142.90324480000001, -20.5493892 ], [ -142.871250300000014, -20.5861395 ], [ -142.8523583, -20.6206076 ], [ -142.837661, -20.6679274 ], [ -142.83351540000001, -20.6978569 ], [ -142.8365124, -20.7500857 ], [ -142.8477437, -20.7873406 ], [ -142.866223600000012, -20.8217933 ], [ -142.8877972, -20.8486139 ], [ -142.9190111, -20.8755084 ], [ -142.9688933, -20.9016195 ], [ -143.0033182, -20.9111307 ], [ -143.064492800000011, -20.9136844 ], [ -143.1090707, -20.9047518 ], [ -143.146659199999988, -20.88929 ], [ -143.202103099999988, -20.8518365 ], [ -143.2305605, -20.8229769 ], [ -143.2913278, -20.8300327 ], [ -143.334080300000011, -20.8249599 ], [ -143.373704, -20.8125381 ], [ -143.4043393, -20.7966453 ], [ -143.4522294, -20.7556775 ], [ -143.479651600000011, -20.7166511 ], [ -143.5012692, -20.6573952 ], [ -143.5486869, -20.6588688 ], [ -143.5945673, -20.650404 ], [ -143.6279973, -20.6373588 ], [ -143.6903652, -20.5985185 ], [ -143.7188763, -20.572245 ], [ -143.7522535, -20.521813 ], [ -143.7650501, -20.4845731 ], [ -143.7701243, -20.4407225 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZP002", "code_dpt": "ZP", "nom_dpt": "POLYNESIE-FRANCAISE", "nom_reg": "-", "num_circ": "2", "code_reg": "-" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -153.038424099999986, -22.6448564 ], [ -153.0332558, -22.6035292 ], [ -153.0195333, -22.5648842 ], [ -152.9987697, -22.5305092 ], [ -152.9670533, -22.4954454 ], [ -152.9133888, -22.4595129 ], [ -152.868428200000011, -22.4431992 ], [ -152.8282436, -22.4360917 ], [ -152.7675729, -22.4376125 ], [ -152.70395, -22.4551294 ], [ -152.6566583, -22.4823976 ], [ -152.6184552, -22.5200231 ], [ -152.594981, -22.5575912 ], [ -152.5811215, -22.594171 ], [ -152.5740429, -22.657453 ], [ -152.582950899999986, -22.7083866 ], [ -152.610660200000012, -22.765019 ], [ -152.6550566, -22.8130233 ], [ -152.695200699999987, -22.8390314 ], [ -152.748278699999986, -22.85887 ], [ -152.7815199, -22.8643972 ], [ -152.8409259, -22.8625722 ], [ -152.8846514, -22.8519269 ], [ -152.92181930000001, -22.8349273 ], [ -152.9552242, -22.8126504 ], [ -152.994828899999987, -22.7739315 ], [ -153.0262837, -22.7185203 ], [ -153.0370791, -22.6710935 ], [ -153.038424099999986, -22.6448564 ] ] ], [ [ [ -143.7366199, -27.8853489 ], [ -143.7316147, -27.8494733 ], [ -143.7048892, -27.78659 ], [ -143.6818625, -27.7530793 ], [ -143.6459423, -27.719938 ], [ -143.5985048, -27.6937027 ], [ -143.5747189, -27.6849674 ], [ -143.520286199999987, -27.6751266 ], [ -143.4864528, -27.6748962 ], [ -143.435683899999987, -27.6814069 ], [ -143.39449590000001, -27.6936837 ], [ -143.353790800000013, -27.7155476 ], [ -143.3128213, -27.7480007 ], [ -143.2937421, -27.7715186 ], [ -143.272501, -27.8093298 ], [ -143.258351, -27.8693321 ], [ -143.2677026, -27.9391259 ], [ -143.29316750000001, -27.9986809 ], [ -143.3206333, -28.0316802 ], [ -143.362451600000014, -28.0644728 ], [ -143.3908535, -28.0786659 ], [ -143.4426899, -28.0947924 ], [ -143.4966506, -28.0990231 ], [ -143.5589449, -28.0897807 ], [ -143.6081044, -28.074115 ], [ -143.6484663, -28.052496 ], [ -143.6727885, -28.0337659 ], [ -143.69941750000001, -28.0045612 ], [ -143.722559600000011, -27.9636127 ], [ -143.735198200000013, -27.9156432 ], [ -143.7366199, -27.8853489 ] ] ], [ [ [ -144.606319, -27.5960964 ], [ -144.6009345, -27.5427442 ], [ -144.586761599999988, -27.5014105 ], [ -144.5499747, -27.448013 ], [ -144.5096072, -27.4150526 ], [ -144.4586984, -27.387271 ], [ -144.4255283, -27.3762801 ], [ -144.3608628, -27.3670361 ], [ -144.2883347, -27.3714361 ], [ -144.230578400000013, -27.389373 ], [ -144.169934899999987, -27.4235338 ], [ -144.1377334, -27.4534535 ], [ -144.1117513, -27.4875425 ], [ -144.0915252, -27.5276172 ], [ -144.0821627, -27.5623333 ], [ -144.076523, -27.6303228 ], [ -144.0851313, -27.6856926 ], [ -144.102560899999986, -27.7318278 ], [ -144.127110499999986, -27.7674066 ], [ -144.1605549, -27.7986008 ], [ -144.1890252, -27.8170073 ], [ -144.2313419, -27.8349963 ], [ -144.2780032, -27.8477891 ], [ -144.3295004, -27.8525776 ], [ -144.376470899999987, -27.8477387 ], [ -144.4229651, -27.8343146 ], [ -144.49898, -27.7949174 ], [ -144.5419595, -27.7587943 ], [ -144.5648291, -27.729873 ], [ -144.58778430000001, -27.6896595 ], [ -144.6005375, -27.6530346 ], [ -144.606319, -27.5960964 ] ] ], [ [ [ -147.919209, -23.8984786 ], [ -147.9181021, -23.8425525 ], [ -147.9063104, -23.7915065 ], [ -147.8924771, -23.7628372 ], [ -147.8668319, -23.7283508 ], [ -147.8179615, -23.6890638 ], [ -147.7621914, -23.6656038 ], [ -147.7147679, -23.6578015 ], [ -147.6752342, -23.6426374 ], [ -147.6264008, -23.6335001 ], [ -147.5751656, -23.6337578 ], [ -147.547418099999987, -23.638264 ], [ -147.4946783, -23.6550933 ], [ -147.4406533, -23.6887044 ], [ -147.4197957, -23.7089006 ], [ -147.387571, -23.7555024 ], [ -147.3758121, -23.7849503 ], [ -147.367494599999986, -23.835578 ], [ -147.369089300000013, -23.8777934 ], [ -147.3813686, -23.9320347 ], [ -147.410874400000012, -23.9845109 ], [ -147.4435454, -24.0196348 ], [ -147.51139520000001, -24.0640514 ], [ -147.5861301, -24.0938317 ], [ -147.618931800000013, -24.1020814 ], [ -147.6789483, -24.1067595 ], [ -147.7305485, -24.1025889 ], [ -147.763748099999987, -24.0938582 ], [ -147.8109824, -24.0733777 ], [ -147.850709599999988, -24.0460819 ], [ -147.873783800000012, -24.0226716 ], [ -147.8994123, -23.9836653 ], [ -147.912203299999987, -23.9506154 ], [ -147.919209, -23.8984786 ] ] ], [ [ [ -149.747968, -23.3680274 ], [ -149.7443637, -23.3331582 ], [ -149.7299868, -23.2896426 ], [ -149.7139712, -23.261796 ], [ -149.6908975, -23.2340028 ], [ -149.638619799999987, -23.1898316 ], [ -149.5675348, -23.1475401 ], [ -149.5034961, -23.1281939 ], [ -149.4498322, -23.1268269 ], [ -149.357258300000012, -23.1451632 ], [ -149.3151057, -23.1611213 ], [ -149.2641133, -23.1941876 ], [ -149.2392337, -23.2190558 ], [ -149.202629699999989, -23.2713829 ], [ -149.1821071, -23.3209423 ], [ -149.1768049, -23.3824287 ], [ -149.1848247, -23.4244188 ], [ -149.214107899999988, -23.4821653 ], [ -149.243502, -23.5144063 ], [ -149.2995808, -23.5505951 ], [ -149.4002342, -23.5877693 ], [ -149.462201099999987, -23.5996681 ], [ -149.5014267, -23.6036552 ], [ -149.5581431, -23.5979255 ], [ -149.6141357, -23.5775261 ], [ -149.6519185, -23.5526323 ], [ -149.7017946, -23.4987682 ], [ -149.7262819, -23.4595938 ], [ -149.7389286, -23.426842 ], [ -149.747968, -23.3680274 ] ] ], [ [ [ -151.5927489, -22.4528337 ], [ -151.5890608, -22.4080903 ], [ -151.57641670000001, -22.3670573 ], [ -151.547830299999987, -22.3185416 ], [ -151.506853299999989, -22.2774372 ], [ -151.465899400000012, -22.2525297 ], [ -151.412521, -22.2349091 ], [ -151.3654852, -22.2304824 ], [ -151.3153678, -22.2359864 ], [ -151.2819824, -22.2456929 ], [ -151.2318347, -22.2697996 ], [ -151.1808826, -22.3051892 ], [ -151.1459357, -22.3419858 ], [ -151.1254489, -22.3763603 ], [ -151.111995799999988, -22.4148908 ], [ -151.105723899999987, -22.4728391 ], [ -151.1083092, -22.5169681 ], [ -151.119498, -22.5638704 ], [ -151.1364118, -22.5997121 ], [ -151.1660115, -22.6440045 ], [ -151.1868896, -22.6655859 ], [ -151.222422599999987, -22.6920128 ], [ -151.266143199999988, -22.7124473 ], [ -151.3011452, -22.7215855 ], [ -151.3505376, -22.7253245 ], [ -151.3846628, -22.7217154 ], [ -151.4322425, -22.7078513 ], [ -151.4806883, -22.6810032 ], [ -151.512976, -22.6516757 ], [ -151.5490469, -22.5948028 ], [ -151.585194199999989, -22.505591 ], [ -151.5927489, -22.4528337 ] ] ], [ [ [ -154.93605980000001, -21.8143121 ], [ -154.9321664, -21.7755653 ], [ -154.9191566, -21.7356072 ], [ -154.8996349, -21.7019328 ], [ -154.880670900000013, -21.6792915 ], [ -154.8362411, -21.6407706 ], [ -154.790075300000012, -21.6140859 ], [ -154.758449, -21.6032228 ], [ -154.706702799999988, -21.5959101 ], [ -154.6656401, -21.5985884 ], [ -154.62343820000001, -21.6093308 ], [ -154.5815017, -21.6292747 ], [ -154.5456513, -21.6564578 ], [ -154.52156020000001, -21.6825371 ], [ -154.5019144, -21.7118976 ], [ -154.4827704, -21.7609962 ], [ -154.477567599999986, -21.814865 ], [ -154.489076899999986, -21.8736768 ], [ -154.509778, -21.9191859 ], [ -154.535089, -21.95332 ], [ -154.558766, -21.9752909 ], [ -154.593415, -21.9977152 ], [ -154.6346767, -22.014305 ], [ -154.6787493, -22.0224679 ], [ -154.72140490000001, -22.0221383 ], [ -154.7765714, -22.009735 ], [ -154.8466421, -21.9764006 ], [ -154.8756656, -21.9530429 ], [ -154.9091699, -21.9109747 ], [ -154.9231751, -21.8823105 ], [ -154.9334623, -21.8450364 ], [ -154.93605980000001, -21.8143121 ] ] ], [ [ [ -149.5963583, -17.6640151 ], [ -149.5716334, -17.6496707 ], [ -149.5285893, -17.653474 ], [ -149.5039056, -17.6610953 ], [ -149.4832418, -17.6444309 ], [ -149.4777379, -17.6182341 ], [ -149.4945684, -17.6126505 ], [ -149.4895291, -17.552328 ], [ -149.5036173, -17.5117024 ], [ -149.4937038, -17.5009794 ], [ -149.4281597, -17.5083217 ], [ -149.3980135, -17.5189726 ], [ -149.3779343, -17.5368053 ], [ -149.3409842, -17.5439049 ], [ -149.3090338, -17.5779567 ], [ -149.300879900000012, -17.6071957 ], [ -149.3112868, -17.6618875 ], [ -149.3036983, -17.6786477 ], [ -149.304863, -17.7216256 ], [ -149.274445, -17.7366149 ], [ -149.2191129, -17.7367169 ], [ -149.212915900000013, -17.7447856 ], [ -149.1572122, -17.7553953 ], [ -149.1275405, -17.7819514 ], [ -149.1247424, -17.8243643 ], [ -149.1436407, -17.8695668 ], [ -149.1605743, -17.8803212 ], [ -149.2189827, -17.8637029 ], [ -149.249559799999986, -17.8611682 ], [ -149.2968917, -17.8196488 ], [ -149.2991848, -17.7891638 ], [ -149.327952399999987, -17.749099 ], [ -149.361388799999986, -17.7608242 ], [ -149.392788700000011, -17.762039 ], [ -149.410559, -17.774176 ], [ -149.4772003, -17.7781752 ], [ -149.4828085, -17.7689179 ], [ -149.5537223, -17.7531675 ], [ -149.5783974, -17.7405359 ], [ -149.5865624, -17.6842432 ], [ -149.5963583, -17.6640151 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID": "ZP003", "code_dpt": "ZP", "nom_dpt": "POLYNESIE-FRANCAISE", "nom_reg": "-", "num_circ": "3", "code_reg": "-" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -149.5813852, -17.5448667 ], [ -149.5825792, -17.5563973 ], [ -149.521774599999986, -17.5971371 ], [ -149.512820299999987, -17.6234262 ], [ -149.4945684, -17.6126505 ], [ -149.4777379, -17.6182341 ], [ -149.4832418, -17.6444309 ], [ -149.5039056, -17.6610953 ], [ -149.5285893, -17.653474 ], [ -149.5716334, -17.6496707 ], [ -149.5963583, -17.6640151 ], [ -149.6131858, -17.6258377 ], [ -149.6137694, -17.5905964 ], [ -149.6208733, -17.5623657 ], [ -149.6134197, -17.5519992 ], [ -149.5813852, -17.5448667 ] ] ], [ [ [ -151.5501212, -16.6201048 ], [ -151.5456993, -16.604077 ], [ -151.5155114, -16.5773987 ], [ -151.4839398, -16.5844802 ], [ -151.442873, -16.6051918 ], [ -151.4371582, -16.6308823 ], [ -151.4573174, -16.6490271 ], [ -151.4562732, -16.6768276 ], [ -151.472043, -16.6823991 ], [ -151.488514400000014, -16.6605908 ], [ -151.5036751, -16.6714631 ], [ -151.5451615, -16.6417057 ], [ -151.5501212, -16.6201048 ] ] ], [ [ [ -151.02755160000001, -16.7789733 ], [ -150.9822948, -16.7545427 ], [ -150.9643817, -16.7632476 ], [ -150.958648899999986, -16.7869679 ], [ -150.983207599999986, -16.8105217 ], [ -151.001341700000012, -16.8061796 ], [ -151.02755160000001, -16.7789733 ] ] ], [ [ [ -151.493491299999988, -16.7942601 ], [ -151.490006599999987, -16.7463005 ], [ -151.472916199999986, -16.7232946 ], [ -151.443735299999986, -16.7264987 ], [ -151.408005, -16.7864104 ], [ -151.4079963, -16.8045607 ], [ -151.3583501, -16.8351236 ], [ -151.3563421, -16.8638785 ], [ -151.3833232, -16.8769688 ], [ -151.3942396, -16.8909176 ], [ -151.4261248, -16.8927547 ], [ -151.4455877, -16.916984 ], [ -151.4704803, -16.9063437 ], [ -151.45812140000001, -16.889135 ], [ -151.4781757, -16.8502553 ], [ -151.4813596, -16.825892 ], [ -151.493491299999988, -16.7942601 ] ] ], [ [ [ -151.0473354, -16.7552992 ], [ -151.03373, -16.7154913 ], [ -151.0408916, -16.7047068 ], [ -151.0024564, -16.6965301 ], [ -150.985791299999988, -16.7018842 ], [ -150.986676100000011, -16.7223917 ], [ -150.9774914, -16.7450107 ], [ -151.0013003, -16.7475919 ], [ -151.02265890000001, -16.7689156 ], [ -151.0473354, -16.7552992 ] ] ], [ [ [ -151.763596, -16.4738192 ], [ -151.7466679, -16.4652399 ], [ -151.7226908, -16.4788584 ], [ -151.7202328, -16.5186763 ], [ -151.732632700000011, -16.520961 ], [ -151.7529357, -16.5064722 ], [ -151.7513181, -16.4800991 ], [ -151.763596, -16.4738192 ] ] ] ] } } +] +} diff --git a/migrations/README b/migrations/README new file mode 100644 index 0000000..0e04844 --- /dev/null +++ b/migrations/README @@ -0,0 +1 @@ +Single-database configuration for Flask. diff --git a/migrations/alembic.ini b/migrations/alembic.ini new file mode 100644 index 0000000..ec9d45c --- /dev/null +++ b/migrations/alembic.ini @@ -0,0 +1,50 @@ +# A generic, single database configuration. + +[alembic] +# template used to generate migration files +# file_template = %%(rev)s_%%(slug)s + +# set to 'true' to run the environment during +# the 'revision' command, regardless of autogenerate +# revision_environment = false + + +# Logging configuration +[loggers] +keys = root,sqlalchemy,alembic,flask_migrate + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = WARN +handlers = console +qualname = + +[logger_sqlalchemy] +level = WARN +handlers = +qualname = sqlalchemy.engine + +[logger_alembic] +level = INFO +handlers = +qualname = alembic + +[logger_flask_migrate] +level = INFO +handlers = +qualname = flask_migrate + +[handler_console] +class = StreamHandler +args = (sys.stderr,) +level = NOTSET +formatter = generic + +[formatter_generic] +format = %(levelname)-5.5s [%(name)s] %(message)s +datefmt = %H:%M:%S diff --git a/migrations/env.py b/migrations/env.py new file mode 100644 index 0000000..68feded --- /dev/null +++ b/migrations/env.py @@ -0,0 +1,91 @@ +from __future__ import with_statement + +import logging +from logging.config import fileConfig + +from flask import current_app + +from alembic import context + +# this is the Alembic Config object, which provides +# access to the values within the .ini file in use. +config = context.config + +# Interpret the config file for Python logging. +# This line sets up loggers basically. +fileConfig(config.config_file_name) +logger = logging.getLogger('alembic.env') + +# add your model's MetaData object here +# for 'autogenerate' support +# from myapp import mymodel +# target_metadata = mymodel.Base.metadata +config.set_main_option( + 'sqlalchemy.url', + str(current_app.extensions['migrate'].db.get_engine().url).replace( + '%', '%%')) +target_metadata = current_app.extensions['migrate'].db.metadata + +# other values from the config, defined by the needs of env.py, +# can be acquired: +# my_important_option = config.get_main_option("my_important_option") +# ... etc. + + +def run_migrations_offline(): + """Run migrations in 'offline' mode. + + This configures the context with just a URL + and not an Engine, though an Engine is acceptable + here as well. By skipping the Engine creation + we don't even need a DBAPI to be available. + + Calls to context.execute() here emit the given string to the + script output. + + """ + url = config.get_main_option("sqlalchemy.url") + context.configure( + url=url, target_metadata=target_metadata, literal_binds=True + ) + + with context.begin_transaction(): + context.run_migrations() + + +def run_migrations_online(): + """Run migrations in 'online' mode. + + In this scenario we need to create an Engine + and associate a connection with the context. + + """ + + # this callback is used to prevent an auto-migration from being generated + # when there are no changes to the schema + # reference: http://alembic.zzzcomputing.com/en/latest/cookbook.html + def process_revision_directives(context, revision, directives): + if getattr(config.cmd_opts, 'autogenerate', False): + script = directives[0] + if script.upgrade_ops.is_empty(): + directives[:] = [] + logger.info('No changes in schema detected.') + + connectable = current_app.extensions['migrate'].db.get_engine() + + with connectable.connect() as connection: + context.configure( + connection=connection, + target_metadata=target_metadata, + process_revision_directives=process_revision_directives, + **current_app.extensions['migrate'].configure_args + ) + + with context.begin_transaction(): + context.run_migrations() + + +if context.is_offline_mode(): + run_migrations_offline() +else: + run_migrations_online() diff --git a/migrations/script.py.mako b/migrations/script.py.mako new file mode 100644 index 0000000..2c01563 --- /dev/null +++ b/migrations/script.py.mako @@ -0,0 +1,24 @@ +"""${message} + +Revision ID: ${up_revision} +Revises: ${down_revision | comma,n} +Create Date: ${create_date} + +""" +from alembic import op +import sqlalchemy as sa +${imports if imports else ""} + +# revision identifiers, used by Alembic. +revision = ${repr(up_revision)} +down_revision = ${repr(down_revision)} +branch_labels = ${repr(branch_labels)} +depends_on = ${repr(depends_on)} + + +def upgrade(): + ${upgrades if upgrades else "pass"} + + +def downgrade(): + ${downgrades if downgrades else "pass"} diff --git a/refresh_all.py b/refresh_all.py new file mode 100755 index 0000000..937ac63 --- /dev/null +++ b/refresh_all.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python3 + +from time import sleep, time + +import requests + + +def main(): + with open('circos') as f: + circos = f.read().split() + + got_results = {} + + while True: + for circo in circos: + if circo in got_results: + pass + # continue + + resp = requests.get(f'http://localhost/refresh/{circo}') + if resp.status_code != 200: + print(circo) + print(resp.status_code) + continue + + data = resp.json() + if data['status'] == 'OK': + # print("Résultats accessibles pour", circo) + got_results[circo] = time() + + for circo, t in list(got_results.items()): + if time() - t >= 90: + del got_results[circo] + + print("Sleeping...") + sleep(600) + + +if __name__ == '__main__': + main() diff --git a/static/france.png b/static/france.png new file mode 100644 index 0000000..cf835b3 Binary files /dev/null and b/static/france.png differ